From 85030fd7c852c14f8a0b05dbfb241b2ce99c504c Mon Sep 17 00:00:00 2001 From: Nephiaust Date: Tue, 7 Dec 2021 11:45:04 +0930 Subject: [PATCH 001/965] Update Set-ADUser.md Added note to -Country to specify the use of the ISO-3166 2 character country code & linked to AD Schema definition. --- docset/winserver2019-ps/activedirectory/Set-ADUser.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docset/winserver2019-ps/activedirectory/Set-ADUser.md b/docset/winserver2019-ps/activedirectory/Set-ADUser.md index 0cacd58ec7..55d0f27f9d 100644 --- a/docset/winserver2019-ps/activedirectory/Set-ADUser.md +++ b/docset/winserver2019-ps/activedirectory/Set-ADUser.md @@ -496,6 +496,7 @@ Accept wildcard characters: False Specifies the country or region code for the user's language of choice. This parameter sets the **Country** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is c. +This value uses the ISO-3166 2 character code (see https://docs.microsoft.com/en-us/windows/win32/adschema/a-c). This value is not used by Windows 2000. ```yaml From f78d174963c967ce9214ac18ca8ef8cdd80a3cdf Mon Sep 17 00:00:00 2001 From: Nephiaust Date: Tue, 7 Dec 2021 19:26:24 +0930 Subject: [PATCH 002/965] Update docset/winserver2019-ps/activedirectory/Set-ADUser.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2019-ps/activedirectory/Set-ADUser.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/activedirectory/Set-ADUser.md b/docset/winserver2019-ps/activedirectory/Set-ADUser.md index 55d0f27f9d..80032c430f 100644 --- a/docset/winserver2019-ps/activedirectory/Set-ADUser.md +++ b/docset/winserver2019-ps/activedirectory/Set-ADUser.md @@ -496,7 +496,7 @@ Accept wildcard characters: False Specifies the country or region code for the user's language of choice. This parameter sets the **Country** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is c. -This value uses the ISO-3166 2 character code (see https://docs.microsoft.com/en-us/windows/win32/adschema/a-c). +This value uses the ISO-3166 2-character code (see [Country-Name attribute](/windows/win32/adschema/a-c). This value is not used by Windows 2000. ```yaml From 0736c21c521707529b475fc3291f1725634f2b5c Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Wed, 15 Dec 2021 00:04:35 +0530 Subject: [PATCH 003/965] Update Restart-VM.md Added information about wait and timeout parameters. --- docset/winserver2019-ps/hyper-v/Restart-VM.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docset/winserver2019-ps/hyper-v/Restart-VM.md b/docset/winserver2019-ps/hyper-v/Restart-VM.md index 1ecfe1b531..e6de5b62d3 100644 --- a/docset/winserver2019-ps/hyper-v/Restart-VM.md +++ b/docset/winserver2019-ps/hyper-v/Restart-VM.md @@ -218,6 +218,9 @@ Accept wildcard characters: False ### -Timeout +Specifies the duration of the wait, in seconds. When the timeout elapses, Restart-VM returns to the command prompt, even if the VM isn't restarted. + +The Timeout parameter is only valid with the Wait parameter. Timeout overrides the Wait parameter's indefinite waiting period. ```yaml Type: Int32 @@ -248,6 +251,9 @@ Accept wildcard characters: False ### -Wait +Restart-VM suppresses the PowerShell prompt and blocks the pipeline until the VM has restarted. You can use this parameter in a script to restart VM and then continue to process when the restart is finished. + +The Wait parameter waits indefinitely for the VM to restart. You can use Timeout to adjust the timing and the For and Delay parameters to wait for particular services to become available on the restarted VM. ```yaml Type: SwitchParameter From ae684c77b7abd0285f70f8b9f6eb9bb4c00f1505 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Wed, 15 Dec 2021 10:18:45 +0530 Subject: [PATCH 004/965] Update docset/winserver2019-ps/hyper-v/Restart-VM.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2019-ps/hyper-v/Restart-VM.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/hyper-v/Restart-VM.md b/docset/winserver2019-ps/hyper-v/Restart-VM.md index e6de5b62d3..1c2004fc0c 100644 --- a/docset/winserver2019-ps/hyper-v/Restart-VM.md +++ b/docset/winserver2019-ps/hyper-v/Restart-VM.md @@ -253,7 +253,7 @@ Accept wildcard characters: False Restart-VM suppresses the PowerShell prompt and blocks the pipeline until the VM has restarted. You can use this parameter in a script to restart VM and then continue to process when the restart is finished. -The Wait parameter waits indefinitely for the VM to restart. You can use Timeout to adjust the timing and the For and Delay parameters to wait for particular services to become available on the restarted VM. +The `-Wait` parameter waits indefinitely for the virtual machine to restart. You can use the `-Timeout` parameter to adjust the timing and the `-For` and `-Delay` parameters to wait for particular services to become available on the restarted virtual machine. ```yaml Type: SwitchParameter From 0b503364594efb362f411511fe64aaa61be58957 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Wed, 15 Dec 2021 16:03:35 +0530 Subject: [PATCH 005/965] Update docset/winserver2019-ps/hyper-v/Restart-VM.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2019-ps/hyper-v/Restart-VM.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/hyper-v/Restart-VM.md b/docset/winserver2019-ps/hyper-v/Restart-VM.md index 1c2004fc0c..d2cb700e4a 100644 --- a/docset/winserver2019-ps/hyper-v/Restart-VM.md +++ b/docset/winserver2019-ps/hyper-v/Restart-VM.md @@ -218,7 +218,7 @@ Accept wildcard characters: False ### -Timeout -Specifies the duration of the wait, in seconds. When the timeout elapses, Restart-VM returns to the command prompt, even if the VM isn't restarted. +Specifies the duration of the wait, in seconds. When the timeout elapses, **Restart-VM** returns to the command prompt, even if the virtual machine isn't restarted. The Timeout parameter is only valid with the Wait parameter. Timeout overrides the Wait parameter's indefinite waiting period. From 07d3c4bd42573a7435796ceb923337be3c5cc839 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Wed, 15 Dec 2021 16:03:41 +0530 Subject: [PATCH 006/965] Update docset/winserver2019-ps/hyper-v/Restart-VM.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2019-ps/hyper-v/Restart-VM.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/hyper-v/Restart-VM.md b/docset/winserver2019-ps/hyper-v/Restart-VM.md index d2cb700e4a..86a9ea9026 100644 --- a/docset/winserver2019-ps/hyper-v/Restart-VM.md +++ b/docset/winserver2019-ps/hyper-v/Restart-VM.md @@ -220,7 +220,7 @@ Accept wildcard characters: False Specifies the duration of the wait, in seconds. When the timeout elapses, **Restart-VM** returns to the command prompt, even if the virtual machine isn't restarted. -The Timeout parameter is only valid with the Wait parameter. Timeout overrides the Wait parameter's indefinite waiting period. +This parameter is only valid with the `-Wait` parameter. The `-Timeout` parameter overrides the `-Wait` parameter's indefinite waiting period. ```yaml Type: Int32 From b7de26b242c86dc79d61b3157d3b649d1bbd81bb Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Wed, 15 Dec 2021 16:03:53 +0530 Subject: [PATCH 007/965] Update docset/winserver2019-ps/hyper-v/Restart-VM.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2019-ps/hyper-v/Restart-VM.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/hyper-v/Restart-VM.md b/docset/winserver2019-ps/hyper-v/Restart-VM.md index 86a9ea9026..8f3c155e21 100644 --- a/docset/winserver2019-ps/hyper-v/Restart-VM.md +++ b/docset/winserver2019-ps/hyper-v/Restart-VM.md @@ -251,7 +251,7 @@ Accept wildcard characters: False ### -Wait -Restart-VM suppresses the PowerShell prompt and blocks the pipeline until the VM has restarted. You can use this parameter in a script to restart VM and then continue to process when the restart is finished. +**Restart-VM** suppresses the PowerShell prompt and blocks the pipeline until the virtual machine has restarted. You can use this parameter in a script to restart the virtual machine and then continue to process when the restart is finished. The `-Wait` parameter waits indefinitely for the virtual machine to restart. You can use the `-Timeout` parameter to adjust the timing and the `-For` and `-Delay` parameters to wait for particular services to become available on the restarted virtual machine. From 84c3018bf5ef427ecf0adcb682bfd33fb85e72b7 Mon Sep 17 00:00:00 2001 From: "Zane D. Purvis" Date: Fri, 17 Dec 2021 13:40:08 -0500 Subject: [PATCH 008/965] Clarify note on creating named pipe As it was, it has misled many engineers down an unnecessary and confusing path. --- docset/winserver2022-ps/hyper-v/Set-VMComPort.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/hyper-v/Set-VMComPort.md b/docset/winserver2022-ps/hyper-v/Set-VMComPort.md index 28f4b9248a..34d173356a 100644 --- a/docset/winserver2022-ps/hyper-v/Set-VMComPort.md +++ b/docset/winserver2022-ps/hyper-v/Set-VMComPort.md @@ -47,7 +47,7 @@ PS C:\> Set-VMComPort TestVM 2 \\.\pipe\TestPipe Configure the second COM port on virtual machine TestVM to connect to named pipe TestPipe on the local computer. > [!NOTE] -> This does not create the named pipe on the local computer. You will have to write your own application to create a named pipe. +> You can write write your own application to access the named pipe, or use an application like PuTTY. ## PARAMETERS From 5539f933821405c7a7651cad1f088112fd101329 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sun, 19 Dec 2021 07:03:38 +0530 Subject: [PATCH 009/965] Update Restart-VM.md Updated the 2016 file as well --- docset/winserver2016-ps/hyper-v/Restart-VM.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docset/winserver2016-ps/hyper-v/Restart-VM.md b/docset/winserver2016-ps/hyper-v/Restart-VM.md index f587874ef3..7fd65cc3e4 100644 --- a/docset/winserver2016-ps/hyper-v/Restart-VM.md +++ b/docset/winserver2016-ps/hyper-v/Restart-VM.md @@ -217,7 +217,9 @@ Accept wildcard characters: False ``` ### -Timeout +Specifies the duration of the wait, in seconds. When the timeout elapses, **Restart-VM** returns to the command prompt, even if the virtual machine isn't restarted. +This parameter is only valid with the `-Wait` parameter. The `-Timeout` parameter overrides the `-Wait` parameter's indefinite waiting period. ```yaml Type: Int32 @@ -247,7 +249,9 @@ Accept wildcard characters: False ``` ### -Wait +**Restart-VM** suppresses the PowerShell prompt and blocks the pipeline until the virtual machine has restarted. You can use this parameter in a script to restart the virtual machine and then continue to process when the restart is finished. +The `-Wait` parameter waits indefinitely for the virtual machine to restart. You can use the `-Timeout` parameter to adjust the timing and the `-For` and `-Delay` parameters to wait for particular services to become available on the restarted virtual machine. ```yaml Type: SwitchParameter From cf3b4680afe0d897609c16f3464ba3cca3fed271 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sun, 19 Dec 2021 07:03:51 +0530 Subject: [PATCH 010/965] Update Restart-VM.md Updated the 2022 file as well --- docset/winserver2022-ps/hyper-v/Restart-VM.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docset/winserver2022-ps/hyper-v/Restart-VM.md b/docset/winserver2022-ps/hyper-v/Restart-VM.md index dd196b832a..d17a075128 100644 --- a/docset/winserver2022-ps/hyper-v/Restart-VM.md +++ b/docset/winserver2022-ps/hyper-v/Restart-VM.md @@ -217,7 +217,9 @@ Accept wildcard characters: False ``` ### -Timeout +Specifies the duration of the wait, in seconds. When the timeout elapses, **Restart-VM** returns to the command prompt, even if the virtual machine isn't restarted. +This parameter is only valid with the `-Wait` parameter. The `-Timeout` parameter overrides the `-Wait` parameter's indefinite waiting period. ```yaml Type: Int32 @@ -247,7 +249,9 @@ Accept wildcard characters: False ``` ### -Wait +**Restart-VM** suppresses the PowerShell prompt and blocks the pipeline until the virtual machine has restarted. You can use this parameter in a script to restart the virtual machine and then continue to process when the restart is finished. +The `-Wait` parameter waits indefinitely for the virtual machine to restart. You can use the `-Timeout` parameter to adjust the timing and the `-For` and `-Delay` parameters to wait for particular services to become available on the restarted virtual machine. ```yaml Type: SwitchParameter From b0a023dd3079ba5422c250683dd2cd7b9e783cb7 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sun, 19 Dec 2021 08:06:08 +0530 Subject: [PATCH 011/965] Update New-AdfsAzureMfaTenantCertificate.md Updated the example as the output usually is not readable and is much bigger than the original file. This way it makes it easy --- .../adfs/New-AdfsAzureMfaTenantCertificate.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docset/winserver2019-ps/adfs/New-AdfsAzureMfaTenantCertificate.md b/docset/winserver2019-ps/adfs/New-AdfsAzureMfaTenantCertificate.md index 3e1a129ef8..741d2619b8 100644 --- a/docset/winserver2019-ps/adfs/New-AdfsAzureMfaTenantCertificate.md +++ b/docset/winserver2019-ps/adfs/New-AdfsAzureMfaTenantCertificate.md @@ -46,10 +46,11 @@ These commands create a certificate for Azure MFA, register the certificate in a ### Example 2: Determine which certificate Azure MFA is using ``` -PS C:\> New-AdfsAzureMfaTenantCertificate -TenantID | Out-File amfacert.cer +$CertInBase64 = New-AdfsAzureMfaTenantCertificate -TenantID +[Security.Cryptography.X509Certificates.X509Certificate2]([System.Convert]::FromBase64String($CertInBase64)) ``` -After AD FS has been configured for Azure MFA, this command determines which certificate Azure MFA is using. +After AD FS has been configured for Azure MFA, this command determines which certificate Azure MFA is using and when it expires. ## PARAMETERS From 05c1e621bc6bbd84af050d703d5dce10fd5fd708 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sun, 19 Dec 2021 08:07:26 +0530 Subject: [PATCH 012/965] Update New-AdfsAzureMfaTenantCertificate.md Updated 2022 version of the file --- .../adfs/New-AdfsAzureMfaTenantCertificate.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/adfs/New-AdfsAzureMfaTenantCertificate.md b/docset/winserver2022-ps/adfs/New-AdfsAzureMfaTenantCertificate.md index c29182d425..037718616b 100644 --- a/docset/winserver2022-ps/adfs/New-AdfsAzureMfaTenantCertificate.md +++ b/docset/winserver2022-ps/adfs/New-AdfsAzureMfaTenantCertificate.md @@ -46,10 +46,11 @@ These commands create a certificate for Azure MFA, register the certificate in a ### Example 2: Determine which certificate Azure MFA is using ``` -PS C:\> New-AdfsAzureMfaTenantCertificate -TenantID | Out-File amfacert.cer +$CertInBase64 = New-AdfsAzureMfaTenantCertificate -TenantID +[Security.Cryptography.X509Certificates.X509Certificate2]([System.Convert]::FromBase64String($CertInBase64)) ``` -After AD FS has been configured for Azure MFA, this command determines which certificate Azure MFA is using. +After AD FS has been configured for Azure MFA, this command determines which certificate Azure MFA is using and when it expires. ## PARAMETERS From 452c87b610f92676df6481c3b5c94bcf31eb1216 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sun, 19 Dec 2021 08:07:35 +0530 Subject: [PATCH 013/965] Update New-AdfsAzureMfaTenantCertificate.md Updated 2016 version of the file --- .../adfs/New-AdfsAzureMfaTenantCertificate.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docset/winserver2016-ps/adfs/New-AdfsAzureMfaTenantCertificate.md b/docset/winserver2016-ps/adfs/New-AdfsAzureMfaTenantCertificate.md index 6ee1f72b58..2966561b9d 100644 --- a/docset/winserver2016-ps/adfs/New-AdfsAzureMfaTenantCertificate.md +++ b/docset/winserver2016-ps/adfs/New-AdfsAzureMfaTenantCertificate.md @@ -46,10 +46,11 @@ These commands create a certificate for Azure MFA, register the certificate in a ### Example 2: Determine which certificate Azure MFA is using ``` -PS C:\> New-AdfsAzureMfaTenantCertificate -TenantID | Out-File amfacert.cer +$CertInBase64 = New-AdfsAzureMfaTenantCertificate -TenantID +[Security.Cryptography.X509Certificates.X509Certificate2]([System.Convert]::FromBase64String($CertInBase64)) ``` -After AD FS has been configured for Azure MFA, this command determines which certificate Azure MFA is using. +After AD FS has been configured for Azure MFA, this command determines which certificate Azure MFA is using and when it expires. ## PARAMETERS From 5d7e0a390ce9ef13c3525d21fa3beedcd8b3e312 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sun, 19 Dec 2021 08:23:01 +0530 Subject: [PATCH 014/965] Update New-NfsClientgroup.md Able to add one more IP like the user mentioned. Changing the value for accept wildcards to True --- docset/winserver2019-ps/nfs/New-NfsClientgroup.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/nfs/New-NfsClientgroup.md b/docset/winserver2019-ps/nfs/New-NfsClientgroup.md index b346cfcf28..d4190c71cf 100644 --- a/docset/winserver2019-ps/nfs/New-NfsClientgroup.md +++ b/docset/winserver2019-ps/nfs/New-NfsClientgroup.md @@ -72,7 +72,7 @@ Required: False Position: 1 Default value: None Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False +Accept wildcard characters: True ``` ### -AsJob From a4437629c53d498a58ee56faf288097dbb2f1a32 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sun, 19 Dec 2021 08:25:01 +0530 Subject: [PATCH 015/965] Update New-NfsClientgroup.md Updated 2012 r2 version of the document --- docset/winserver2012r2-ps/nfs/New-NfsClientgroup.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2012r2-ps/nfs/New-NfsClientgroup.md b/docset/winserver2012r2-ps/nfs/New-NfsClientgroup.md index 6435307f2c..8e38409506 100644 --- a/docset/winserver2012r2-ps/nfs/New-NfsClientgroup.md +++ b/docset/winserver2012r2-ps/nfs/New-NfsClientgroup.md @@ -71,7 +71,7 @@ Required: False Position: 1 Default value: None Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False +Accept wildcard characters: True ``` ### -AsJob From b6c68e0688dabd295f6b23dd7466cae3300b7e90 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sun, 19 Dec 2021 08:25:09 +0530 Subject: [PATCH 016/965] Update New-NfsClientgroup.md Updated 2022 version of the document --- docset/winserver2022-ps/nfs/New-NfsClientgroup.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/nfs/New-NfsClientgroup.md b/docset/winserver2022-ps/nfs/New-NfsClientgroup.md index ad837bfc16..a933be1d69 100644 --- a/docset/winserver2022-ps/nfs/New-NfsClientgroup.md +++ b/docset/winserver2022-ps/nfs/New-NfsClientgroup.md @@ -72,7 +72,7 @@ Required: False Position: 1 Default value: None Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False +Accept wildcard characters: True ``` ### -AsJob From 5e9daa5d60a07cabaa2ed7e4be47ffcf7cb046f9 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sun, 19 Dec 2021 08:25:19 +0530 Subject: [PATCH 017/965] Update New-NfsClientgroup.md updated 2016 version of the document --- docset/winserver2016-ps/nfs/New-NfsClientgroup.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2016-ps/nfs/New-NfsClientgroup.md b/docset/winserver2016-ps/nfs/New-NfsClientgroup.md index ffee323be1..21f10a6cae 100644 --- a/docset/winserver2016-ps/nfs/New-NfsClientgroup.md +++ b/docset/winserver2016-ps/nfs/New-NfsClientgroup.md @@ -72,7 +72,7 @@ Required: False Position: 1 Default value: None Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False +Accept wildcard characters: True ``` ### -AsJob From 71c8767962958d27fe4321a789906200480b61e6 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sun, 19 Dec 2021 08:25:25 +0530 Subject: [PATCH 018/965] Update New-NfsClientgroup.md updated 2012 version of the document --- docset/winserver2012-ps/nfs/New-NfsClientgroup.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2012-ps/nfs/New-NfsClientgroup.md b/docset/winserver2012-ps/nfs/New-NfsClientgroup.md index 8a08044729..170fe7f1bb 100644 --- a/docset/winserver2012-ps/nfs/New-NfsClientgroup.md +++ b/docset/winserver2012-ps/nfs/New-NfsClientgroup.md @@ -70,7 +70,7 @@ Required: False Position: 2 Default value: None Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False +Accept wildcard characters: True ``` ### -AsJob From 3d7d7e6ab00a637ebd71c46e3bba87de32b91596 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Mon, 20 Dec 2021 11:37:19 +0530 Subject: [PATCH 019/965] Update Set-AdfsAzureMfaTenant.md Updated Set-AdfsAzureMfaTenant 2022 version --- docset/winserver2022-ps/adfs/Set-AdfsAzureMfaTenant.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docset/winserver2022-ps/adfs/Set-AdfsAzureMfaTenant.md b/docset/winserver2022-ps/adfs/Set-AdfsAzureMfaTenant.md index 9687370676..fd2f46da88 100644 --- a/docset/winserver2022-ps/adfs/Set-AdfsAzureMfaTenant.md +++ b/docset/winserver2022-ps/adfs/Set-AdfsAzureMfaTenant.md @@ -33,12 +33,13 @@ PS C:\> Set-AdfsAzureMfaTenant -TenantId -ClientId 981f26a1-7f4 This command creates a certificate for Azure MFA, registers it in the tenant, and enables Azure MFA on the AD FS farm. -### Example 2: Determine the Azure MFA certificate +### Example 2: Determine which certificate Azure MFA is using ``` -PS C:\> New-AdfsAzureMfaTenantCertificate -TenantID -out-file amfacert.cer +$CertInBase64 = New-AdfsAzureMfaTenantCertificate -TenantID +[Security.Cryptography.X509Certificates.X509Certificate2]([System.Convert]::FromBase64String($CertInBase64)) ``` -This command determines which certificate Azure MFA is using, after AD FS has been configured for Azure MFA using the previous example. +After AD FS has been configured for Azure MFA, this command determines which certificate Azure MFA is using and when it expires. ## PARAMETERS From cc82f5fdf8e9d372b0f0e3072faf772549705158 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Mon, 20 Dec 2021 11:37:31 +0530 Subject: [PATCH 020/965] Update Set-AdfsAzureMfaTenant.md Updated Set-AdfsAzureMfaTenant 2019version --- docset/winserver2019-ps/adfs/Set-AdfsAzureMfaTenant.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docset/winserver2019-ps/adfs/Set-AdfsAzureMfaTenant.md b/docset/winserver2019-ps/adfs/Set-AdfsAzureMfaTenant.md index 844050507b..5503911f89 100644 --- a/docset/winserver2019-ps/adfs/Set-AdfsAzureMfaTenant.md +++ b/docset/winserver2019-ps/adfs/Set-AdfsAzureMfaTenant.md @@ -33,12 +33,13 @@ PS C:\> Set-AdfsAzureMfaTenant -TenantId -ClientId 981f26a1-7f4 This command creates a certificate for Azure MFA, registers it in the tenant, and enables Azure MFA on the AD FS farm. -### Example 2: Determine the Azure MFA certificate +### Example 2: Determine which certificate Azure MFA is using ``` -PS C:\> New-AdfsAzureMfaTenantCertificate -TenantID -out-file amfacert.cer +$CertInBase64 = New-AdfsAzureMfaTenantCertificate -TenantID +[Security.Cryptography.X509Certificates.X509Certificate2]([System.Convert]::FromBase64String($CertInBase64)) ``` -This command determines which certificate Azure MFA is using, after AD FS has been configured for Azure MFA using the previous example. +After AD FS has been configured for Azure MFA, this command determines which certificate Azure MFA is using and when it expires. ## PARAMETERS From 21c8eca681f5704f3d34b1436adc567999de2f49 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Mon, 20 Dec 2021 11:37:39 +0530 Subject: [PATCH 021/965] Update Set-AdfsAzureMfaTenant.md Updated Set-AdfsAzureMfaTenant 2016version --- docset/winserver2016-ps/adfs/Set-AdfsAzureMfaTenant.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docset/winserver2016-ps/adfs/Set-AdfsAzureMfaTenant.md b/docset/winserver2016-ps/adfs/Set-AdfsAzureMfaTenant.md index 3b5101e6cc..f10c7c1f3d 100644 --- a/docset/winserver2016-ps/adfs/Set-AdfsAzureMfaTenant.md +++ b/docset/winserver2016-ps/adfs/Set-AdfsAzureMfaTenant.md @@ -33,12 +33,13 @@ PS C:\> Set-AdfsAzureMfaTenant -TenantId -ClientId 981f26a1-7f4 This command creates a certificate for Azure MFA, registers it in the tenant, and enables Azure MFA on the AD FS farm. -### Example 2: Determine the Azure MFA certificate +### Example 2: Determine which certificate Azure MFA is using ``` -PS C:\> New-AdfsAzureMfaTenantCertificate -TenantID -out-file amfacert.cer +$CertInBase64 = New-AdfsAzureMfaTenantCertificate -TenantID +[Security.Cryptography.X509Certificates.X509Certificate2]([System.Convert]::FromBase64String($CertInBase64)) ``` -This command determines which certificate Azure MFA is using, after AD FS has been configured for Azure MFA using the previous example. +After AD FS has been configured for Azure MFA, this command determines which certificate Azure MFA is using and when it expires. ## PARAMETERS From 57953a5064e851e9d487e4671c569e0ce5b6616b Mon Sep 17 00:00:00 2001 From: "Zane D. Purvis" Date: Mon, 20 Dec 2021 11:06:12 -0500 Subject: [PATCH 022/965] Fix typo Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2022-ps/hyper-v/Set-VMComPort.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/hyper-v/Set-VMComPort.md b/docset/winserver2022-ps/hyper-v/Set-VMComPort.md index 34d173356a..05b2edd85f 100644 --- a/docset/winserver2022-ps/hyper-v/Set-VMComPort.md +++ b/docset/winserver2022-ps/hyper-v/Set-VMComPort.md @@ -47,7 +47,7 @@ PS C:\> Set-VMComPort TestVM 2 \\.\pipe\TestPipe Configure the second COM port on virtual machine TestVM to connect to named pipe TestPipe on the local computer. > [!NOTE] -> You can write write your own application to access the named pipe, or use an application like PuTTY. +> You can write your own application to access the named pipe, or use an application like PuTTY. ## PARAMETERS From d73aa57f3a91a1a109e9d7575e831caf16ccb4e6 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Mon, 3 Jan 2022 14:56:52 +0530 Subject: [PATCH 023/965] Update New-AdfsAzureMfaTenantCertificate.md Made change per suggestion --- .../adfs/New-AdfsAzureMfaTenantCertificate.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/adfs/New-AdfsAzureMfaTenantCertificate.md b/docset/winserver2022-ps/adfs/New-AdfsAzureMfaTenantCertificate.md index 037718616b..2124309c77 100644 --- a/docset/winserver2022-ps/adfs/New-AdfsAzureMfaTenantCertificate.md +++ b/docset/winserver2022-ps/adfs/New-AdfsAzureMfaTenantCertificate.md @@ -46,8 +46,9 @@ These commands create a certificate for Azure MFA, register the certificate in a ### Example 2: Determine which certificate Azure MFA is using ``` -$CertInBase64 = New-AdfsAzureMfaTenantCertificate -TenantID -[Security.Cryptography.X509Certificates.X509Certificate2]([System.Convert]::FromBase64String($CertInBase64)) +$CertInBase64 = New-AdfsAzureMfaTenantCertificate -TenantID +$cert = Security.Cryptography.X509Certificates.X509Certificate2 +$cert | Format-List * ``` After AD FS has been configured for Azure MFA, this command determines which certificate Azure MFA is using and when it expires. From 7efb21af50cea92199e7d2844088394b361b6c6b Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Mon, 3 Jan 2022 14:56:56 +0530 Subject: [PATCH 024/965] Update New-AdfsAzureMfaTenantCertificate.md Made change per suggestion --- .../adfs/New-AdfsAzureMfaTenantCertificate.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docset/winserver2019-ps/adfs/New-AdfsAzureMfaTenantCertificate.md b/docset/winserver2019-ps/adfs/New-AdfsAzureMfaTenantCertificate.md index 741d2619b8..cc10d1fe2b 100644 --- a/docset/winserver2019-ps/adfs/New-AdfsAzureMfaTenantCertificate.md +++ b/docset/winserver2019-ps/adfs/New-AdfsAzureMfaTenantCertificate.md @@ -46,8 +46,9 @@ These commands create a certificate for Azure MFA, register the certificate in a ### Example 2: Determine which certificate Azure MFA is using ``` -$CertInBase64 = New-AdfsAzureMfaTenantCertificate -TenantID -[Security.Cryptography.X509Certificates.X509Certificate2]([System.Convert]::FromBase64String($CertInBase64)) +$CertInBase64 = New-AdfsAzureMfaTenantCertificate -TenantID +$cert = Security.Cryptography.X509Certificates.X509Certificate2 +$cert | Format-List * ``` After AD FS has been configured for Azure MFA, this command determines which certificate Azure MFA is using and when it expires. From 7f46097a68e10e07d0e8c8da3dc0a4e4a8c0d360 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Mon, 3 Jan 2022 14:57:00 +0530 Subject: [PATCH 025/965] Update New-AdfsAzureMfaTenantCertificate.md Made change per suggestion --- .../adfs/New-AdfsAzureMfaTenantCertificate.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docset/winserver2016-ps/adfs/New-AdfsAzureMfaTenantCertificate.md b/docset/winserver2016-ps/adfs/New-AdfsAzureMfaTenantCertificate.md index 2966561b9d..9fad6321e0 100644 --- a/docset/winserver2016-ps/adfs/New-AdfsAzureMfaTenantCertificate.md +++ b/docset/winserver2016-ps/adfs/New-AdfsAzureMfaTenantCertificate.md @@ -46,8 +46,9 @@ These commands create a certificate for Azure MFA, register the certificate in a ### Example 2: Determine which certificate Azure MFA is using ``` -$CertInBase64 = New-AdfsAzureMfaTenantCertificate -TenantID -[Security.Cryptography.X509Certificates.X509Certificate2]([System.Convert]::FromBase64String($CertInBase64)) +$CertInBase64 = New-AdfsAzureMfaTenantCertificate -TenantID +$cert = Security.Cryptography.X509Certificates.X509Certificate2 +$cert | Format-List * ``` After AD FS has been configured for Azure MFA, this command determines which certificate Azure MFA is using and when it expires. From 165fc09b0598310e71d68157b955bc4035bb7ca5 Mon Sep 17 00:00:00 2001 From: Tungsten66 <40893034+Tungsten66@users.noreply.github.com> Date: Fri, 7 Jan 2022 14:45:40 -0500 Subject: [PATCH 026/965] Update Example Added -Active:$False to the end of the example to create a passive file screen template. Tested on Server 2019 Included outputs of old and new commands below: PS C:\Users\it> New-FsrmFileScreenTemplate "Filter Non-HTML text files" -IncludeGroup "Non-HTML text files" Active : True Description : IncludeGroup : {Non-HTML text files} Name : Filter Non-HTML text files Notification : UpdateDerived : False UpdateDerivedMatching : False PSComputerName : PS C:\Users\it> New-FsrmFileScreenTemplate "Filter Non-HTML text files" -IncludeGroup "Non-HTML text files" -Active:$False Active : False Description : IncludeGroup : {Non-HTML text files} Name : Filter Non-HTML text files Notification : UpdateDerived : False UpdateDerivedMatching : False PSComputerName : --- .../fileserverresourcemanager/New-FsrmFileScreenTemplate.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmFileScreenTemplate.md b/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmFileScreenTemplate.md index 7aacda0f20..cff9e6cc0e 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmFileScreenTemplate.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmFileScreenTemplate.md @@ -32,7 +32,7 @@ When you make changes to a template, you can choose to apply those changes to al ### Example 1: Create a passive file screen template ``` -PS C:\> New-FsrmFileScreenTemplate "Filter Non-HTML text files" -IncludeGroup "Non-HTML text files" +PS C:\> New-FsrmFileScreenTemplate "Filter Non-HTML text files" -IncludeGroup "Non-HTML text files" -Active:$False ``` This command creates a passive file screen template named "Filter Non-HTML text files" that logs any files that match the "Non-HTML text files" file group. From adff96226c5d78eb5718e32cb667b6242f119117 Mon Sep 17 00:00:00 2001 From: skycommand Date: Mon, 31 Jan 2022 11:01:34 +0330 Subject: [PATCH 027/965] Overhaul Enable-BitLocker doc page --- .../bitlocker/Enable-BitLocker.md | 422 ++++++++++-------- .../bitlocker/Enable-BitLocker.md | 297 ++++++------ .../bitlocker/Enable-BitLocker.md | 252 ++++++----- .../bitlocker/Enable-BitLocker.md | 252 ++++++----- .../bitlocker/Enable-BitLocker.md | 252 ++++++----- 5 files changed, 830 insertions(+), 645 deletions(-) diff --git a/docset/winserver2012-ps/bitlocker/Enable-BitLocker.md b/docset/winserver2012-ps/bitlocker/Enable-BitLocker.md index fd88f3e2a9..f265bbf4cf 100644 --- a/docset/winserver2012-ps/bitlocker/Enable-BitLocker.md +++ b/docset/winserver2012-ps/bitlocker/Enable-BitLocker.md @@ -1,136 +1,173 @@ --- -external help file: Bitlocker_Cmdlets.xml +description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. +external help file: BitLocker-help.xml Module Name: BitLocker +ms.date: 12/14/2021 online version: https://docs.microsoft.com/powershell/module/bitlocker/enable-bitlocker?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 +title: Enable-BitLocker --- # Enable-BitLocker ## SYNOPSIS -Enables encryption for a BitLocker volume. + +Enables BitLocker Drive Encryption for a volume. ## SYNTAX -### UNNAMED_PARAMETER_SET_1 -``` -Enable-BitLocker [-AdAccountOrGroup] [-Service] [-AdAccountOrGroupProtector] [-Confirm] [-WhatIf] -``` +### PasswordProtector -### UNNAMED_PARAMETER_SET_2 -``` -Enable-BitLocker [-MountPoint] [-EncryptionMethod] [-HardwareEncryption] [-SkipHardwareTest] - [-UsedSpaceOnly] [-Confirm] [-WhatIf] +```PowerShell +Enable-BitLocker [-MountPoint] -PasswordProtector [-Password] +[-EncryptionMethod ] [-HardwareEncryption] +[-SkipHardwareTest] [-UsedSpaceOnly][-WhatIf] [-Confirm] [] ``` -### UNNAMED_PARAMETER_SET_3 -``` -Enable-BitLocker [[-Password] ] [-PasswordProtector] [-Confirm] [-WhatIf] -``` +### RecoveryPasswordProtector -### UNNAMED_PARAMETER_SET_4 -``` -Enable-BitLocker [[-Pin] ] [-TpmAndPinProtector] [-Confirm] [-WhatIf] +```PowerShell +Enable-BitLocker [-MountPoint] -RecoveryPasswordProtector [[-RecoveryPassword] ] +[-EncryptionMethod ] [-HardwareEncryption] +[-SkipHardwareTest] [-UsedSpaceOnly] [-WhatIf] [-Confirm] [] ``` -### UNNAMED_PARAMETER_SET_5 -``` -Enable-BitLocker [-StartupKeyPath] [[-Pin] ] [-TpmAndPinAndStartupKeyProtector] - [-Confirm] [-WhatIf] -``` +### StartupKeyProtector -### UNNAMED_PARAMETER_SET_6 -``` -Enable-BitLocker [-RecoveryKeyPath] [-RecoveryKeyProtector] [-Confirm] [-WhatIf] +```PowerShell +Enable-BitLocker [-MountPoint] -StartupKeyProtector [-StartupKeyPath] +[-EncryptionMethod ] [-HardwareEncryption] +[-SkipHardwareTest] [-UsedSpaceOnly] [-WhatIf] [-Confirm] [] ``` -### UNNAMED_PARAMETER_SET_7 -``` -Enable-BitLocker [[-RecoveryPassword] ] [-RecoveryPasswordProtector] [-Confirm] [-WhatIf] -``` +### TpmAndStartupKeyProtector -### UNNAMED_PARAMETER_SET_8 +```PowerShell +Enable-BitLocker [-MountPoint] -TpmAndStartupKeyProtector [-StartupKeyPath] +[-EncryptionMethod ] [-HardwareEncryption] +[-SkipHardwareTest] [-UsedSpaceOnly] [-WhatIf] [-Confirm] [] ``` -Enable-BitLocker [-StartupKeyPath] [-StartupKeyProtector] [-Confirm] [-WhatIf] + +### TpmAndPinAndStartupKeyProtector + +```PowerShell +Enable-BitLocker [-MountPoint] -TpmAndPinAndStartupKeyProtector -StartupKeyPath +[-Pin] [-EncryptionMethod ] +[-HardwareEncryption] [-SkipHardwareTest] [-UsedSpaceOnly] [-WhatIf] [-Confirm] +[] ``` -### UNNAMED_PARAMETER_SET_9 +### AdAccountOrGroupProtector + +```PowerShell +Enable-BitLocker [-MountPoint] -AdAccountOrGroupProtector [-AdAccountOrGroup] +[-Service] [-EncryptionMethod ] [-HardwareEncryption] +[-SkipHardwareTest] [-UsedSpaceOnly] [-WhatIf] [-Confirm] [] ``` -Enable-BitLocker [-StartupKeyPath] [-TpmAndStartupKeyProtector] [-Confirm] [-WhatIf] + +### TpmAndPinProtector + +```PowerShell +Enable-BitLocker [-MountPoint] -TpmAndPinProtector [-Pin] +[-EncryptionMethod ] [-HardwareEncryption] +[-SkipHardwareTest] [-UsedSpaceOnly] [-WhatIf] [-Confirm] [] ``` -### UNNAMED_PARAMETER_SET_10 +### TpmProtector + +```PowerShell +Enable-BitLocker [-MountPoint] -TpmProtector +[-EncryptionMethod ] [-HardwareEncryption] +[-SkipHardwareTest] [-UsedSpaceOnly] [-WhatIf] [-Confirm] [] ``` -Enable-BitLocker [-TpmProtector] [-Confirm] [-WhatIf] + +### RecoveryKeyProtector + +```PowerShell +Enable-BitLocker [-MountPoint] -RecoveryKeyProtector [-RecoveryKeyPath] +[-EncryptionMethod ] [-HardwareEncryption] +[-SkipHardwareTest] [-UsedSpaceOnly] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION + The **Enable-BitLocker** cmdlet enables BitLocker Drive Encryption for a volume. -When you enable encryption, you must specify a volume and an encryption method for that volume. -You can specify a volume by drive letter or by specifying a BitLocker volume object. -For the encryption method, you can choose either Advanced Encryption Standard (AES) algorithms AES-128 or AES-256, or you can use hardware encryption, if it is supported by the disk hardware. - -You must also establish a key protector. -BitLocker uses a key protector to encrypt the volume encryption key. -When a user accesses a BitLocker encrypted drive, such as when starting a computer, BitLocker requests the relevant key protector. -For example, the user can enter a PIN or provide a USB drive that contains a key. -BitLocker decrypts the encryption key and uses it to read data from the drive. -You can use one of the following methods or combinations of methods for a key protector: - -- Trusted Platform Module (TPM). -BitLocker uses the computer's TPM to protect the encryption key. -If you select this key protector, users can access the encrypted drive as long as it is connected to the system board that hosts the TPM and system boot integrity is intact. -In general, TPM-based protectors can only be associated to an operating system volume. -- TPM and Personal Identification Number (PIN). -BitLocker uses a combination of the TPM and a user-supplied PIN. -A PIN is four to twenty digits or, if you allow enhanced PINs, is four to twenty letters, symbols, spaces, or numbers. -- TPM, PIN, and startup key. -BitLocker uses a combination of the TPM, a user-supplied PIN, and input from of a USB memory device that contains an external key. -- TPM and startup key. -BitLocker uses a combination of the TPM and input from of a USB memory device. -- Startup key. -BitLocker uses input from of a USB memory device that contains the external key. -- Password. -BitLocker uses a password. -- Recovery key. -BitLocker uses a recovery key stored as a specified file. -- Recovery password. -BitLocker uses a recovery password. -- Active Directory Domain Services (AD DS). -account. -BitLocker uses domain authentication. - -You can specify only one of these methods or combinations when you enable encryption, but you can use the **Add-BitLockerKeyProtector** cmdlet to add other protectors. - -For a password or PIN key protector, specify a secure string. -You can use the **ConvertTo-SecureString** cmdlet to create a secure string. -You can use secure strings in a script and still maintain confidentiality of passwords. - -This cmdlet returns a BitLocker volume object. -If you choose recovery password as your key protector but do not specify a 48-digit recovery password, this cmdlet creates a random 48-bit recovery password. -The cmdlet stores the password as the **RecoveryPassword** field of the **KeyProtector** attribute of the BitLocker volume object. - -If you use startup key or recovery key as part of your key protector, provide a path to store the key. -This cmdlet stores the name of the file that contains the key in the **KeyFileName** field of the **KeyProtector** field in the BitLocker volume object. - -If you use the Enable-BitLocker cmdlet on an encrypted volume or on a volume that with encryption in process, it takes no action. -If you use the cmdlet on a drive that has encryption paused, it resumes encryption on the volume. - -By default, this cmdlet encrypts the entire drive. -If you use the **UsedSpaceOnly** parameter, it only encrypts the used space in the disk. -This option can significant reduce encryption time. - -It is common practice to add a recovery password to an operating system volume by using the Add-BitLockerKeyProtector cmdlet, and then save the recovery password by using the Backup-BitLockerKeyProtector cmdlet, and then enable BitLocker for the drive. -This procedure ensures that you have a recovery option. - -For an overview of BitLocker, see BitLocker Drive Encryption Overviewhttp://technet.microsoft.com/en-us/library/cc732774.aspx (http://technet.microsoft.com/en-us/library/cc732774.aspx) on TechNet. +When you enable encryption, you must specify a volume, either by its drive letter or by its +BitLocker volume object. + +You must also establish a key protector. BitLocker uses a key protector to encrypt the volume +encryption key. When a user accesses a BitLocker encrypted drive, such as when starting a computer, +BitLocker requests the relevant key protector. For example, the user can enter a PIN or provide a +USB drive that contains a key. BitLocker decrypts the encryption key and uses it to read data from +the drive. You can use one of the following methods or combinations of methods for a key protector: + +- **Trusted Platform Module (TPM):** BitLocker uses the computer's TPM to protect the encryption + key. If you select this key protector, users can access the encrypted drive as long as it is + connected to the system board that hosts the TPM and system boot integrity is intact. In general, + TPM-based protectors can only be associated to an operating system volume. + +- **TPM and Personal Identification Number (PIN):** BitLocker uses a combination of the TPM and a + user-supplied PIN. A PIN is four to twenty digits or, if you allow enhanced PINs, is four to + twenty letters, symbols, spaces, or numbers. + +- **TPM, PIN, and startup key:** BitLocker uses a combination of the TPM, a user-supplied PIN, and + input from of a USB memory device that contains an external key. + +- **TPM and startup key:** BitLocker uses a combination of the TPM and a USB flash drive that + contains the external key. + +- **Startup key:** BitLocker uses a USB flash drive that contains the external key. + +- **Password:** BitLocker uses a password. + +- **Recovery key:** BitLocker uses a recovery key stored as a specified file. + +- **Recovery password:** BitLocker uses a recovery password. + +- **Active Directory Domain Services (AD DS) account:** BitLocker uses domain authentication. + +You can specify only one of these methods or combinations when you enable encryption, but you can +use the **Add-BitLockerKeyProtector** cmdlet to add other protectors. + +For a password or PIN key protector, specify a secure string. You can use the +**ConvertTo-SecureString** cmdlet to create a secure string. You can use secure strings in a script +and still maintain confidentiality of passwords. + +You may optionally select an encryption method. By default, BitLocker uses AES-128 but you can opt +AES-256 for stronger security. (Diffuser is not supported.) You may request hardware encryption but +Microsoft strongly advices against it. For further guidance, see the "[ADV180028 Security Advisory][1]". + +This cmdlet returns a BitLocker volume object. If you choose recovery password as your key protector +but do not specify a 48-digit recovery password, this cmdlet generates a random one for you, and +stores it in the **RecoveryPassword** field of the **KeyProtector** attribute of the BitLocker +volume object. + +If you use startup key or recovery key as part of your key protector, provide a path to store the +key. This cmdlet stores the name of the file that contains the key in the **KeyFileName** field of +the **KeyProtector** field in the BitLocker volume object. + +If you use the **Enable-BitLocker** cmdlet on an encrypted volume or on a volume that with +encryption in process, it takes no action. If you use the cmdlet on a drive that has encryption +paused, it resumes encryption on the volume. + +By default, this cmdlet encrypts the entire drive. If you use the *UsedSpaceOnly* parameter, it only +encrypts the used space on the disk. This option can significant reduce encryption time. + +It is common practice to add a recovery password for an operating system volume using the +**Add-BitLockerKeyProtector** cmdlet, save the recovery password using the +**Backup-BitLockerKeyProtector** cmdlet, and then enable BitLocker on that volume. This procedure +ensures that you have a recovery option. + +For an overview of BitLocker, see "[BitLocker Drive Encryption Overview][2]" on Microsoft Docs. ## EXAMPLES ### Example 1: Enable BitLocker -``` -PS C:\> $SecureString = ConvertTo-SecureString "1234" -AsPlainText -Force PS C:\>Enable-BitLocker -MountPoint "C:" -EncryptionMethod Aes256 -UsedSpaceOnly -Pin $SecureString -TPMandPinProtector + +```PowerShell +$SecureString = ConvertTo-SecureString "1234" -AsPlainText -Force +Enable-BitLocker -MountPoint "C:" -EncryptionMethod Aes256 -UsedSpaceOnly -Pin $SecureString -TPMandPinProtector ``` This example enables BitLocker for a specified drive using the TPM and a PIN for key protector. @@ -144,70 +181,86 @@ The command also specifies that this volume uses a combination of the TPM and th The command also specifies to encrypt the used space data on the disk, instead of the entire volume. When the system writes data to the volume in the future, that data is encrypted. -### Example 2: Enable BitLocker with a specified recovery key -``` -PS C:\>Get-BitLockerVolume | Enable-BitLocker -EncryptionMethod Aes128 -RecoveryKeyPath "E:\Recovery\" -RecoveryKeyProtector +### Example 2: Enable BitLocker with a recovery key + +```PowerShell +Get-BitLockerVolume | Enable-BitLocker -EncryptionMethod Aes128 -RecoveryKeyPath "E:\Recovery\" -RecoveryKeyProtector ``` -This command gets all the BitLocker volumes for the current computer and passes pipes them to the Enable-BitLocker cmdlet by using the pipe operator. +This command gets all the BitLocker volumes for the current computer and passes pipes them to the **Enable-BitLocker** cmdlet by using the pipe operator. This cmdlet specifies an encryption algorithm for the volume or volumes. This cmdlet specifies a path to a folder where the randomly generated recovery key will be stored and indicates that these volumes use a recovery key as a key protector. ### Example 3: Enable BitLocker with a specified user account -``` -PS C:\>Enable-BitLocker -MountPoint "C:" -EncryptionMethod Aes128 -AdAccountOrGroup "Western\SarahJones" -AdAccountOrGroupProtector + +```PowerShell +Enable-BitLocker -MountPoint "C:" -EncryptionMethod Aes128 -AdAccountOrGroup "Western\SarahJones" -AdAccountOrGroupProtector ``` -This command encrypts the BitLocker volume specified by the **MountPoint** parameter, and uses the AES 128 encryption method. +This command encrypts the BitLocker volume specified by the *MountPoint* parameter, and uses the AES 128 encryption method. The command also specifies an account and specifies that BitLocker uses user credentials as a key protector. When a user accesses this volume, BitLocker prompts for credentials for the user account Western\SarahJones. ## PARAMETERS ### -AdAccountOrGroup -Specifies an account using the format **Domain\User**. + +Specifies an account using the format Domain\User. This cmdlet adds the account you specify as a key protector for the volume encryption key. ```yaml Type: String -Parameter Sets: UNNAMED_PARAMETER_SET_1 +Parameter Sets: AdAccountOrGroupProtector Aliases: sid Required: True -Position: 2 +Position: 1 Default value: None Accept pipeline input: False Accept wildcard characters: False ``` ### -AdAccountOrGroupProtector + Indicates that BitLocker uses an AD DS account as a protector for the volume encryption key. ```yaml Type: SwitchParameter -Parameter Sets: UNNAMED_PARAMETER_SET_1 +Parameter Sets: AdAccountOrGroupProtector Aliases: sidp Required: True Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm + +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named Default value: False Accept pipeline input: False Accept wildcard characters: False ``` ### -EncryptionMethod -Specifies an encryption method for the encrypted drive. -The acceptable values for this parameter are: -- Aes128. -- Aes256. -- Hardware. +Specifies an encryption method for the encrypted drive. ```yaml -Type: SwitchParameter -Parameter Sets: UNNAMED_PARAMETER_SET_2 +Type: BitLockerVolumeEncryptionMethodOnEnable +Parameter Sets: (All) Aliases: -Accepted values: Aes128, Aes256, Hardware +Accepted values: Aes128, Aes256 Required: False Position: Named @@ -217,308 +270,312 @@ Accept wildcard characters: False ``` ### -HardwareEncryption + Indicates that the volume uses hardware encryption. ```yaml Type: SwitchParameter -Parameter Sets: UNNAMED_PARAMETER_SET_2 +Parameter Sets: (All) Aliases: Required: False Position: Named -Default value: False +Default value: None Accept pipeline input: False Accept wildcard characters: False ``` ### -MountPoint + Specifies an array of drive letters or BitLocker volume objects. This cmdlet enables protection for the volumes specified. -To obtain a BitLocker volume object, use the Get-BitLockerVolume cmdlet. +To obtain a BitLocker volume object, use the **Get-BitLockerVolume** cmdlet. ```yaml Type: String[] -Parameter Sets: UNNAMED_PARAMETER_SET_2 +Parameter Sets: (All) Aliases: Required: True -Position: 1 +Position: 0 Default value: None -Accept pipeline input: True (ByValue, ByPropertyName) +Accept pipeline input: True (ByPropertyName, ByValue) Accept wildcard characters: False ``` ### -Password + Specifies a secure string object that contains a password. The password specified acts as a protector for the volume encryption key. ```yaml Type: SecureString -Parameter Sets: UNNAMED_PARAMETER_SET_3 +Parameter Sets: PasswordProtector Aliases: pw Required: False -Position: 2 +Position: 1 Default value: None Accept pipeline input: False Accept wildcard characters: False ``` ### -PasswordProtector + Indicates that BitLocker uses a password as a protector for the volume encryption key. ```yaml Type: SwitchParameter -Parameter Sets: UNNAMED_PARAMETER_SET_3 +Parameter Sets: PasswordProtector Aliases: pwp Required: True Position: Named -Default value: False +Default value: None Accept pipeline input: False Accept wildcard characters: False ``` ### -Pin + Specifies a secure string object that contains a PIN. BitLocker uses the PIN specified, with other data, as a protector for the volume encryption key. ```yaml Type: SecureString -Parameter Sets: UNNAMED_PARAMETER_SET_4, UNNAMED_PARAMETER_SET_5 +Parameter Sets: TpmAndPinAndStartupKeyProtector, TpmAndPinProtector Aliases: p Required: False -Position: 2 +Position: 1 Default value: None Accept pipeline input: False Accept wildcard characters: False ``` ### -RecoveryKeyPath + Specifies a path to a folder. This cmdlet adds a randomly generated recovery key as a protector for the volume encryption key and stores it in the specified path. ```yaml Type: String -Parameter Sets: UNNAMED_PARAMETER_SET_6 +Parameter Sets: RecoveryKeyProtector Aliases: rk Required: True -Position: 2 +Position: 1 Default value: None Accept pipeline input: False Accept wildcard characters: False ``` ### -RecoveryKeyProtector + Indicates that BitLocker uses a recovery key as a protector for the volume encryption key. ```yaml Type: SwitchParameter -Parameter Sets: UNNAMED_PARAMETER_SET_6 +Parameter Sets: RecoveryKeyProtector Aliases: rkp Required: True Position: Named -Default value: False +Default value: None Accept pipeline input: False Accept wildcard characters: False ``` ### -RecoveryPassword + Specifies a recovery password. -If you do not specify this parameter, but you do include the **RecoveryPasswordProtector** parameter, the cmdlet creates a random password. -You can enter a 48 digit password. +If you do not specify this parameter, but you do include the *RecoveryPasswordProtector* parameter, the cmdlet creates a random password. +You can enter a 48-digit password. The password specified or created acts as a protector for the volume encryption key. ```yaml Type: String -Parameter Sets: UNNAMED_PARAMETER_SET_7 +Parameter Sets: RecoveryPasswordProtector Aliases: rp Required: False -Position: 2 +Position: 1 Default value: None Accept pipeline input: False Accept wildcard characters: False ``` ### -RecoveryPasswordProtector + Indicates that BitLocker uses a recovery password as a protector for the volume encryption key. ```yaml Type: SwitchParameter -Parameter Sets: UNNAMED_PARAMETER_SET_7 +Parameter Sets: RecoveryPasswordProtector Aliases: rpp Required: True Position: Named -Default value: False +Default value: None Accept pipeline input: False Accept wildcard characters: False ``` ### -Service + Indicates that the system account for this computer unlocks the encrypted volume. ```yaml Type: SwitchParameter -Parameter Sets: UNNAMED_PARAMETER_SET_1 +Parameter Sets: AdAccountOrGroupProtector Aliases: Required: False Position: Named -Default value: False +Default value: None Accept pipeline input: False Accept wildcard characters: False ``` ### -SkipHardwareTest + Indicates that BitLocker does not perform a hardware test before it begins encryption. BitLocker uses a hardware test as a dry run to make sure that all the key protectors are correctly set up and that the computer can start without issues. ```yaml Type: SwitchParameter -Parameter Sets: UNNAMED_PARAMETER_SET_2 +Parameter Sets: (All) Aliases: s Required: False Position: Named -Default value: False +Default value: None Accept pipeline input: False Accept wildcard characters: False ``` ### -StartupKeyPath + Specifies a path to a startup key. The key stored in the specified path acts as a protector for the volume encryption key. ```yaml Type: String -Parameter Sets: UNNAMED_PARAMETER_SET_5, UNNAMED_PARAMETER_SET_8, UNNAMED_PARAMETER_SET_9 +Parameter Sets: StartupKeyProtector, TpmAndStartupKeyProtector, TpmAndPinAndStartupKeyProtector Aliases: sk Required: True -Position: 2 +Position: 1 Default value: None Accept pipeline input: False Accept wildcard characters: False ``` ### -StartupKeyProtector + Indicates that BitLocker uses a startup key as a protector for the volume encryption key. ```yaml Type: SwitchParameter -Parameter Sets: UNNAMED_PARAMETER_SET_8 +Parameter Sets: StartupKeyProtector Aliases: skp Required: True Position: Named -Default value: False +Default value: None Accept pipeline input: False Accept wildcard characters: False ``` ### -TpmAndPinAndStartupKeyProtector + Indicates that BitLocker uses a combination of the TPM, a PIN, and a startup key as a protector for the volume encryption key. ```yaml Type: SwitchParameter -Parameter Sets: UNNAMED_PARAMETER_SET_5 +Parameter Sets: TpmAndPinAndStartupKeyProtector Aliases: tpskp Required: True Position: Named -Default value: False +Default value: None Accept pipeline input: False Accept wildcard characters: False ``` ### -TpmAndPinProtector + Indicates that BitLocker uses a combination of the TPM and a PIN as a protector for the volume encryption key. ```yaml Type: SwitchParameter -Parameter Sets: UNNAMED_PARAMETER_SET_4 +Parameter Sets: TpmAndPinProtector Aliases: tpp Required: True Position: Named -Default value: False +Default value: None Accept pipeline input: False Accept wildcard characters: False ``` ### -TpmAndStartupKeyProtector + Indicates that BitLocker uses a combination of the TPM and a startup key as a protector for the volume encryption key. ```yaml Type: SwitchParameter -Parameter Sets: UNNAMED_PARAMETER_SET_9 +Parameter Sets: TpmAndStartupKeyProtector Aliases: tskp Required: True Position: Named -Default value: False +Default value: None Accept pipeline input: False Accept wildcard characters: False ``` ### -TpmProtector + Indicates that BitLocker uses the TPM as a protector for the volume encryption key. ```yaml Type: SwitchParameter -Parameter Sets: UNNAMED_PARAMETER_SET_10 +Parameter Sets: TpmProtector Aliases: tpmp Required: True Position: Named -Default value: False +Default value: None Accept pipeline input: False Accept wildcard characters: False ``` ### -UsedSpaceOnly -Indicates that BitLocker does not encrypt disk space which contains unused data. - -```yaml -Type: SwitchParameter -Parameter Sets: UNNAMED_PARAMETER_SET_2 -Aliases: qe - -Required: False -Position: Named -Default value: False -Accept pipeline input: False -Accept wildcard characters: False -``` -### -Confirm -Prompts you for confirmation before running the cmdlet. +Indicates that BitLocker does not encrypt disk space which contains unused data. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: qe Required: False Position: Named -Default value: False +Default value: None Accept pipeline input: False Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: wi Required: False Position: Named @@ -527,9 +584,13 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + ## INPUTS -### BitLockerVolume[],String[] +### BitLockerVolume[], String[] ## OUTPUTS @@ -539,15 +600,12 @@ Accept wildcard characters: False ## RELATED LINKS -[Disable-BitLocker](./Disable-BitLocker.md) - -[Lock-BitLocker](./Lock-BitLocker.md) - -[Resume-BitLocker](./Resume-BitLocker.md) - -[Suspend-BitLocker](./Suspend-BitLocker.md) - -[Unlock-BitLocker](./Unlock-BitLocker.md) - -[Get-BitLockerVolume](./Get-BitLockerVolume.md) +- [Disable-BitLocker](./Disable-BitLocker.md) +- [Get-BitLockerVolume](./Get-BitLockerVolume.md) +- [Lock-BitLocker](./Lock-BitLocker.md) +- [Resume-BitLocker](./Resume-BitLocker.md) +- [Suspend-BitLocker](./Suspend-BitLocker.md) +- [Unlock-BitLocker](./Unlock-BitLocker.md) +[1]: https://msrc.microsoft.com/update-guide/vulnerability/ADV180028 +[2]: https://docs.microsoft.com/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/cc732774(v=ws.11) diff --git a/docset/winserver2012r2-ps/bitlocker/Enable-BitLocker.md b/docset/winserver2012r2-ps/bitlocker/Enable-BitLocker.md index a591a06cb4..6b6f590a0a 100644 --- a/docset/winserver2012r2-ps/bitlocker/Enable-BitLocker.md +++ b/docset/winserver2012r2-ps/bitlocker/Enable-BitLocker.md @@ -1,7 +1,8 @@ --- +description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: BitLocker-help.xml Module Name: BitLocker -ms.date: 10/29/2017 +ms.date: 12/14/2021 online version: https://docs.microsoft.com/powershell/module/bitlocker/enable-bitlocker?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-BitLocker @@ -10,150 +11,163 @@ title: Enable-BitLocker # Enable-BitLocker ## SYNOPSIS -Enables encryption for a BitLocker volume. + +Enables BitLocker Drive Encryption for a volume. ## SYNTAX ### PasswordProtector -``` -Enable-BitLocker [-MountPoint] [-EncryptionMethod ] - [-HardwareEncryption] [-SkipHardwareTest] [-UsedSpaceOnly] [-PasswordProtector] [[-Password] ] - [-WhatIf] [-Confirm] [] + +```PowerShell +Enable-BitLocker [-MountPoint] -PasswordProtector [-Password] +[-EncryptionMethod ] [-HardwareEncryption] +[-SkipHardwareTest] [-UsedSpaceOnly][-WhatIf] [-Confirm] [] ``` ### RecoveryPasswordProtector -``` -Enable-BitLocker [-MountPoint] [-EncryptionMethod ] - [-HardwareEncryption] [-SkipHardwareTest] [-UsedSpaceOnly] [-RecoveryPasswordProtector] - [[-RecoveryPassword] ] [-WhatIf] [-Confirm] [] + +```PowerShell +Enable-BitLocker [-MountPoint] -RecoveryPasswordProtector [[-RecoveryPassword] ] +[-EncryptionMethod ] [-HardwareEncryption] +[-SkipHardwareTest] [-UsedSpaceOnly] [-WhatIf] [-Confirm] [] ``` ### StartupKeyProtector -``` -Enable-BitLocker [-MountPoint] [-EncryptionMethod ] - [-HardwareEncryption] [-SkipHardwareTest] [-UsedSpaceOnly] [-StartupKeyProtector] [-StartupKeyPath] - [-WhatIf] [-Confirm] [] + +```PowerShell +Enable-BitLocker [-MountPoint] -StartupKeyProtector [-StartupKeyPath] +[-EncryptionMethod ] [-HardwareEncryption] +[-SkipHardwareTest] [-UsedSpaceOnly] [-WhatIf] [-Confirm] [] ``` ### TpmAndStartupKeyProtector -``` -Enable-BitLocker [-MountPoint] [-EncryptionMethod ] - [-HardwareEncryption] [-SkipHardwareTest] [-UsedSpaceOnly] [-StartupKeyPath] - [-TpmAndStartupKeyProtector] [-WhatIf] [-Confirm] [] + +```PowerShell +Enable-BitLocker [-MountPoint] -TpmAndStartupKeyProtector [-StartupKeyPath] +[-EncryptionMethod ] [-HardwareEncryption] +[-SkipHardwareTest] [-UsedSpaceOnly] [-WhatIf] [-Confirm] [] ``` ### TpmAndPinAndStartupKeyProtector -``` -Enable-BitLocker [-MountPoint] [-EncryptionMethod ] - [-HardwareEncryption] [-SkipHardwareTest] [-UsedSpaceOnly] [-StartupKeyPath] - [-TpmAndPinAndStartupKeyProtector] [[-Pin] ] [-WhatIf] [-Confirm] [] + +```PowerShell +Enable-BitLocker [-MountPoint] -TpmAndPinAndStartupKeyProtector -StartupKeyPath +[-Pin] [-EncryptionMethod ] +[-HardwareEncryption] [-SkipHardwareTest] [-UsedSpaceOnly] [-WhatIf] [-Confirm] +[] ``` ### AdAccountOrGroupProtector -``` -Enable-BitLocker [-MountPoint] [-EncryptionMethod ] - [-HardwareEncryption] [-SkipHardwareTest] [-UsedSpaceOnly] [-AdAccountOrGroupProtector] [-Service] - [-AdAccountOrGroup] [-WhatIf] [-Confirm] [] + +```PowerShell +Enable-BitLocker [-MountPoint] -AdAccountOrGroupProtector [-AdAccountOrGroup] +[-Service] [-EncryptionMethod ] [-HardwareEncryption] +[-SkipHardwareTest] [-UsedSpaceOnly] [-WhatIf] [-Confirm] [] ``` ### TpmAndPinProtector -``` -Enable-BitLocker [-MountPoint] [-EncryptionMethod ] - [-HardwareEncryption] [-SkipHardwareTest] [-UsedSpaceOnly] [[-Pin] ] [-TpmAndPinProtector] - [-WhatIf] [-Confirm] [] + +```PowerShell +Enable-BitLocker [-MountPoint] -TpmAndPinProtector [-Pin] +[-EncryptionMethod ] [-HardwareEncryption] +[-SkipHardwareTest] [-UsedSpaceOnly] [-WhatIf] [-Confirm] [] ``` ### TpmProtector -``` -Enable-BitLocker [-MountPoint] [-EncryptionMethod ] - [-HardwareEncryption] [-SkipHardwareTest] [-UsedSpaceOnly] [-TpmProtector] [-WhatIf] [-Confirm] - [] + +```PowerShell +Enable-BitLocker [-MountPoint] -TpmProtector +[-EncryptionMethod ] [-HardwareEncryption] +[-SkipHardwareTest] [-UsedSpaceOnly] [-WhatIf] [-Confirm] [] ``` ### RecoveryKeyProtector -``` -Enable-BitLocker [-MountPoint] [-EncryptionMethod ] - [-HardwareEncryption] [-SkipHardwareTest] [-UsedSpaceOnly] [-RecoveryKeyProtector] [-RecoveryKeyPath] - [-WhatIf] [-Confirm] [] + +```PowerShell +Enable-BitLocker [-MountPoint] -RecoveryKeyProtector [-RecoveryKeyPath] +[-EncryptionMethod ] [-HardwareEncryption] +[-SkipHardwareTest] [-UsedSpaceOnly] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION + The **Enable-BitLocker** cmdlet enables BitLocker Drive Encryption for a volume. -When you enable encryption, you must specify a volume and an encryption method for that volume. -You can specify a volume by drive letter or by specifying a BitLocker volume object. -For the encryption method, you can choose either Advanced Encryption Standard (AES) algorithms AES-128 or AES-256, or you can use hardware encryption, if it is supported by the disk hardware. +When you enable encryption, you must specify a volume, either by its drive letter or by its +BitLocker volume object. -You must also establish a key protector. -BitLocker uses a key protector to encrypt the volume encryption key. -When a user accesses a BitLocker encrypted drive, such as when starting a computer, BitLocker requests the relevant key protector. -For example, the user can enter a PIN or provide a USB drive that contains a key. -BitLocker decrypts the encryption key and uses it to read data from the drive. -You can use one of the following methods or combinations of methods for a key protector: +You must also establish a key protector. BitLocker uses a key protector to encrypt the volume +encryption key. When a user accesses a BitLocker encrypted drive, such as when starting a computer, +BitLocker requests the relevant key protector. For example, the user can enter a PIN or provide a +USB drive that contains a key. BitLocker decrypts the encryption key and uses it to read data from +the drive. You can use one of the following methods or combinations of methods for a key protector: +- **Trusted Platform Module (TPM):** BitLocker uses the computer's TPM to protect the encryption + key. If you select this key protector, users can access the encrypted drive as long as it is + connected to the system board that hosts the TPM and system boot integrity is intact. In general, + TPM-based protectors can only be associated to an operating system volume. -- Trusted Platform Module (TPM) . -BitLocker uses the computer's TPM to protect the encryption key. -If you select this key protector, users can access the encrypted drive as long as it is connected to the system board that hosts the TPM and system boot integrity is intact. -In general, TPM-based protectors can only be associated to an operating system volume. +- **TPM and Personal Identification Number (PIN):** BitLocker uses a combination of the TPM and a + user-supplied PIN. A PIN is four to twenty digits or, if you allow enhanced PINs, is four to + twenty letters, symbols, spaces, or numbers. -- TPM and Personal Identification Number (PIN) . -BitLocker uses a combination of the TPM and a user-supplied PIN. -A PIN is four to twenty digits or, if you allow enhanced PINs, is four to twenty letters, symbols, spaces, or numbers. +- **TPM, PIN, and startup key:** BitLocker uses a combination of the TPM, a user-supplied PIN, and + input from of a USB memory device that contains an external key. -- TPM, PIN, and startup key. -BitLocker uses a combination of the TPM, a user-supplied PIN, and input from of a USB memory device that contains an external key. +- **TPM and startup key:** BitLocker uses a combination of the TPM and a USB flash drive that + contains the external key. -- TPM and startup key. -BitLocker uses a combination of the TPM and input from of a USB memory device. +- **Startup key:** BitLocker uses a USB flash drive that contains the external key. -- Startup key. -BitLocker uses input from of a USB memory device that contains the external key. +- **Password:** BitLocker uses a password. -- Password. -BitLocker uses a password. +- **Recovery key:** BitLocker uses a recovery key stored as a specified file. -- Recovery key. -BitLocker uses a recovery key stored as a specified file. +- **Recovery password:** BitLocker uses a recovery password. -- Recovery password. -BitLocker uses a recovery password. +- **Active Directory Domain Services (AD DS) account:** BitLocker uses domain authentication. -- Active Directory Domain Services(AD DS). -account. -BitLocker uses domain authentication. +You can specify only one of these methods or combinations when you enable encryption, but you can +use the **Add-BitLockerKeyProtector** cmdlet to add other protectors. -You can specify only one of these methods or combinations when you enable encryption, but you can use the **Add-BitLockerKeyProtector** cmdlet to add other protectors. +For a password or PIN key protector, specify a secure string. You can use the +**ConvertTo-SecureString** cmdlet to create a secure string. You can use secure strings in a script +and still maintain confidentiality of passwords. -For a password or PIN key protector, specify a secure string. -You can use the **ConvertTo-SecureString** cmdlet to create a secure string. -You can use secure strings in a script and still maintain confidentiality of passwords. +You may optionally select an encryption method. By default, BitLocker uses AES-128 but you can opt +AES-256 for stronger security. You may request hardware encryption but Microsoft strongly advices +against it. For further guidance, see the "[ADV180028 Security Advisory][1]". -This cmdlet returns a BitLocker volume object. -If you choose recovery password as your key protector but do not specify a 48-digit recovery password, this cmdlet creates a random 48-bit recovery password. -The cmdlet stores the password as the **RecoveryPassword** field of the **KeyProtector** attribute of the BitLocker volume object. +This cmdlet returns a BitLocker volume object. If you choose recovery password as your key protector +but do not specify a 48-digit recovery password, this cmdlet generates a random one for you, and +stores it in the **RecoveryPassword** field of the **KeyProtector** attribute of the BitLocker +volume object. -If you use startup key or recovery key as part of your key protector, provide a path to store the key. -This cmdlet stores the name of the file that contains the key in the **KeyFileName** field of the **KeyProtector** field in the BitLocker volume object. +If you use startup key or recovery key as part of your key protector, provide a path to store the +key. This cmdlet stores the name of the file that contains the key in the **KeyFileName** field of +the **KeyProtector** field in the BitLocker volume object. -If you use the Enable-BitLocker cmdlet on an encrypted volume or on a volume that with encryption in process, it takes no action. -If you use the cmdlet on a drive that has encryption paused, it resumes encryption on the volume. +If you use the **Enable-BitLocker** cmdlet on an encrypted volume or on a volume that with +encryption in process, it takes no action. If you use the cmdlet on a drive that has encryption +paused, it resumes encryption on the volume. -By default, this cmdlet encrypts the entire drive. -If you use the **UsedSpaceOnly** parameter, it only encrypts the used space in the disk. -This option can significant reduce encryption time. +By default, this cmdlet encrypts the entire drive. If you use the *UsedSpaceOnly* parameter, it only +encrypts the used space on the disk. This option can significant reduce encryption time. -It is common practice to add a recovery password to an operating system volume by using the Add-BitLockerKeyProtector cmdlet, and then save the recovery password by using the Backup-BitLockerKeyProtector cmdlet, and then enable BitLocker for the drive. -This procedure ensures that you have a recovery option. +It is common practice to add a recovery password for an operating system volume using the +**Add-BitLockerKeyProtector** cmdlet, save the recovery password using the +**Backup-BitLockerKeyProtector** cmdlet, and then enable BitLocker on that volume. This procedure +ensures that you have a recovery option. -For an overview of BitLocker, see BitLocker Drive Encryption Overviewhttp://technet.microsoft.com/en-us/library/cc732774.aspx (http://technet.microsoft.com/en-us/library/cc732774.aspx) on TechNet. +For an overview of BitLocker, see "[BitLocker Drive Encryption Overview][2]" on Microsoft Docs. ## EXAMPLES ### Example 1: Enable BitLocker -``` -PS C:\> $SecureString = ConvertTo-SecureString "1234" -AsPlainText -Force -PS C:\> Enable-BitLocker -MountPoint "C:" -EncryptionMethod Aes256 -UsedSpaceOnly -Pin $SecureString -TPMandPinProtector + +```PowerShell +$SecureString = ConvertTo-SecureString "1234" -AsPlainText -Force +Enable-BitLocker -MountPoint "C:" -EncryptionMethod Aes256 -UsedSpaceOnly -Pin $SecureString -TPMandPinProtector ``` This example enables BitLocker for a specified drive using the TPM and a PIN for key protector. @@ -167,28 +181,31 @@ The command also specifies that this volume uses a combination of the TPM and th The command also specifies to encrypt the used space data on the disk, instead of the entire volume. When the system writes data to the volume in the future, that data is encrypted. -### Example 2: Enable BitLocker with a specified recovery key -``` -PS C:\> Get-BitLockerVolume | Enable-BitLocker -EncryptionMethod Aes128 -RecoveryKeyPath "E:\Recovery\" -RecoveryKeyProtector +### Example 2: Enable BitLocker with a recovery key + +```PowerShell +Get-BitLockerVolume | Enable-BitLocker -EncryptionMethod Aes128 -RecoveryKeyPath "E:\Recovery\" -RecoveryKeyProtector ``` -This command gets all the BitLocker volumes for the current computer and passes pipes them to the Enable-BitLocker cmdlet by using the pipe operator. +This command gets all the BitLocker volumes for the current computer and passes pipes them to the **Enable-BitLocker** cmdlet by using the pipe operator. This cmdlet specifies an encryption algorithm for the volume or volumes. This cmdlet specifies a path to a folder where the randomly generated recovery key will be stored and indicates that these volumes use a recovery key as a key protector. ### Example 3: Enable BitLocker with a specified user account -``` -PS C:\> Enable-BitLocker -MountPoint "C:" -EncryptionMethod Aes128 -AdAccountOrGroup "Western\SarahJones" -AdAccountOrGroupProtector + +```PowerShell +Enable-BitLocker -MountPoint "C:" -EncryptionMethod Aes128 -AdAccountOrGroup "Western\SarahJones" -AdAccountOrGroupProtector ``` -This command encrypts the BitLocker volume specified by the **MountPoint** parameter, and uses the AES 128 encryption method. +This command encrypts the BitLocker volume specified by the *MountPoint* parameter, and uses the AES 128 encryption method. The command also specifies an account and specifies that BitLocker uses user credentials as a key protector. When a user accesses this volume, BitLocker prompts for credentials for the user account Western\SarahJones. ## PARAMETERS ### -AdAccountOrGroup -Specifies an account using the format **Domain\User**. + +Specifies an account using the format Domain\User. This cmdlet adds the account you specify as a key protector for the volume encryption key. ```yaml @@ -204,6 +221,7 @@ Accept wildcard characters: False ``` ### -AdAccountOrGroupProtector + Indicates that BitLocker uses an AD DS account as a protector for the volume encryption key. ```yaml @@ -213,12 +231,13 @@ Aliases: sidp Required: True Position: Named -Default value: False +Default value: None Accept pipeline input: False Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -234,19 +253,14 @@ Accept wildcard characters: False ``` ### -EncryptionMethod -Specifies an encryption method for the encrypted drive. -The acceptable values for this parameter are: - -- Aes128 - -- Aes256 +Specifies an encryption method for the encrypted drive. ```yaml Type: BitLockerVolumeEncryptionMethodOnEnable Parameter Sets: (All) Aliases: -Accepted values: Aes128, Aes256, Hardware +Accepted values: Aes128, Aes256 Required: False Position: Named @@ -256,6 +270,7 @@ Accept wildcard characters: False ``` ### -HardwareEncryption + Indicates that the volume uses hardware encryption. ```yaml @@ -265,15 +280,16 @@ Aliases: Required: False Position: Named -Default value: False +Default value: None Accept pipeline input: False Accept wildcard characters: False ``` ### -MountPoint + Specifies an array of drive letters or BitLocker volume objects. This cmdlet enables protection for the volumes specified. -To obtain a BitLocker volume object, use the Get-BitLockerVolume cmdlet. +To obtain a BitLocker volume object, use the **Get-BitLockerVolume** cmdlet. ```yaml Type: String[] @@ -288,6 +304,7 @@ Accept wildcard characters: False ``` ### -Password + Specifies a secure string object that contains a password. The password specified acts as a protector for the volume encryption key. @@ -304,6 +321,7 @@ Accept wildcard characters: False ``` ### -PasswordProtector + Indicates that BitLocker uses a password as a protector for the volume encryption key. ```yaml @@ -313,12 +331,13 @@ Aliases: pwp Required: True Position: Named -Default value: False +Default value: None Accept pipeline input: False Accept wildcard characters: False ``` ### -Pin + Specifies a secure string object that contains a PIN. BitLocker uses the PIN specified, with other data, as a protector for the volume encryption key. @@ -335,6 +354,7 @@ Accept wildcard characters: False ``` ### -RecoveryKeyPath + Specifies a path to a folder. This cmdlet adds a randomly generated recovery key as a protector for the volume encryption key and stores it in the specified path. @@ -351,6 +371,7 @@ Accept wildcard characters: False ``` ### -RecoveryKeyProtector + Indicates that BitLocker uses a recovery key as a protector for the volume encryption key. ```yaml @@ -360,15 +381,16 @@ Aliases: rkp Required: True Position: Named -Default value: False +Default value: None Accept pipeline input: False Accept wildcard characters: False ``` ### -RecoveryPassword + Specifies a recovery password. -If you do not specify this parameter, but you do include the **RecoveryPasswordProtector** parameter, the cmdlet creates a random password. -You can enter a 48 digit password. +If you do not specify this parameter, but you do include the *RecoveryPasswordProtector* parameter, the cmdlet creates a random password. +You can enter a 48-digit password. The password specified or created acts as a protector for the volume encryption key. ```yaml @@ -384,6 +406,7 @@ Accept wildcard characters: False ``` ### -RecoveryPasswordProtector + Indicates that BitLocker uses a recovery password as a protector for the volume encryption key. ```yaml @@ -393,12 +416,13 @@ Aliases: rpp Required: True Position: Named -Default value: False +Default value: None Accept pipeline input: False Accept wildcard characters: False ``` ### -Service + Indicates that the system account for this computer unlocks the encrypted volume. ```yaml @@ -408,12 +432,13 @@ Aliases: Required: False Position: Named -Default value: False +Default value: None Accept pipeline input: False Accept wildcard characters: False ``` ### -SkipHardwareTest + Indicates that BitLocker does not perform a hardware test before it begins encryption. BitLocker uses a hardware test as a dry run to make sure that all the key protectors are correctly set up and that the computer can start without issues. @@ -424,12 +449,13 @@ Aliases: s Required: False Position: Named -Default value: False +Default value: None Accept pipeline input: False Accept wildcard characters: False ``` ### -StartupKeyPath + Specifies a path to a startup key. The key stored in the specified path acts as a protector for the volume encryption key. @@ -446,6 +472,7 @@ Accept wildcard characters: False ``` ### -StartupKeyProtector + Indicates that BitLocker uses a startup key as a protector for the volume encryption key. ```yaml @@ -455,12 +482,13 @@ Aliases: skp Required: True Position: Named -Default value: False +Default value: None Accept pipeline input: False Accept wildcard characters: False ``` ### -TpmAndPinAndStartupKeyProtector + Indicates that BitLocker uses a combination of the TPM, a PIN, and a startup key as a protector for the volume encryption key. ```yaml @@ -470,12 +498,13 @@ Aliases: tpskp Required: True Position: Named -Default value: False +Default value: None Accept pipeline input: False Accept wildcard characters: False ``` ### -TpmAndPinProtector + Indicates that BitLocker uses a combination of the TPM and a PIN as a protector for the volume encryption key. ```yaml @@ -485,12 +514,13 @@ Aliases: tpp Required: True Position: Named -Default value: False +Default value: None Accept pipeline input: False Accept wildcard characters: False ``` ### -TpmAndStartupKeyProtector + Indicates that BitLocker uses a combination of the TPM and a startup key as a protector for the volume encryption key. ```yaml @@ -500,12 +530,13 @@ Aliases: tskp Required: True Position: Named -Default value: False +Default value: None Accept pipeline input: False Accept wildcard characters: False ``` ### -TpmProtector + Indicates that BitLocker uses the TPM as a protector for the volume encryption key. ```yaml @@ -515,12 +546,13 @@ Aliases: tpmp Required: True Position: Named -Default value: False +Default value: None Accept pipeline input: False Accept wildcard characters: False ``` ### -UsedSpaceOnly + Indicates that BitLocker does not encrypt disk space which contains unused data. ```yaml @@ -530,12 +562,13 @@ Aliases: qe Required: False Position: Named -Default value: False +Default value: None Accept pipeline input: False Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. @@ -552,11 +585,12 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS -### BitLockerVolume[],String[] +### BitLockerVolume[], String[] ## OUTPUTS @@ -566,15 +600,12 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Disable-BitLocker](./Disable-BitLocker.md) - -[Lock-BitLocker](./Lock-BitLocker.md) - -[Resume-BitLocker](./Resume-BitLocker.md) - -[Suspend-BitLocker](./Suspend-BitLocker.md) - -[Unlock-BitLocker](./Unlock-BitLocker.md) - -[Get-BitLockerVolume](./Get-BitLockerVolume.md) +- [Disable-BitLocker](./Disable-BitLocker.md) +- [Get-BitLockerVolume](./Get-BitLockerVolume.md) +- [Lock-BitLocker](./Lock-BitLocker.md) +- [Resume-BitLocker](./Resume-BitLocker.md) +- [Suspend-BitLocker](./Suspend-BitLocker.md) +- [Unlock-BitLocker](./Unlock-BitLocker.md) +[1]: https://msrc.microsoft.com/update-guide/vulnerability/ADV180028 +[2]: https://docs.microsoft.com/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/cc732774(v=ws.11) diff --git a/docset/winserver2016-ps/bitlocker/Enable-BitLocker.md b/docset/winserver2016-ps/bitlocker/Enable-BitLocker.md index ea6cd0b941..0de4756f5f 100644 --- a/docset/winserver2016-ps/bitlocker/Enable-BitLocker.md +++ b/docset/winserver2016-ps/bitlocker/Enable-BitLocker.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: BitLocker-help.xml Module Name: BitLocker -ms.date: 12/20/2016 +ms.date: 12/14/2021 online version: https://docs.microsoft.com/powershell/module/bitlocker/enable-bitlocker?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-BitLocker @@ -11,149 +11,165 @@ title: Enable-BitLocker # Enable-BitLocker ## SYNOPSIS + Enables BitLocker Drive Encryption for a volume. ## SYNTAX ### PasswordProtector -``` -Enable-BitLocker [-MountPoint] [-EncryptionMethod ] - [-HardwareEncryption] [-SkipHardwareTest] [-UsedSpaceOnly] [-PasswordProtector] [[-Password] ] - [-WhatIf] [-Confirm] [] + +```PowerShell +Enable-BitLocker [-MountPoint] -PasswordProtector [-Password] +[-EncryptionMethod ] [-HardwareEncryption] +[-SkipHardwareTest] [-UsedSpaceOnly][-WhatIf] [-Confirm] [] ``` ### RecoveryPasswordProtector -``` -Enable-BitLocker [-MountPoint] [-EncryptionMethod ] - [-HardwareEncryption] [-SkipHardwareTest] [-UsedSpaceOnly] [-RecoveryPasswordProtector] - [[-RecoveryPassword] ] [-WhatIf] [-Confirm] [] + +```PowerShell +Enable-BitLocker [-MountPoint] -RecoveryPasswordProtector [[-RecoveryPassword] ] +[-EncryptionMethod ] [-HardwareEncryption] +[-SkipHardwareTest] [-UsedSpaceOnly] [-WhatIf] [-Confirm] [] ``` ### StartupKeyProtector -``` -Enable-BitLocker [-MountPoint] [-EncryptionMethod ] - [-HardwareEncryption] [-SkipHardwareTest] [-UsedSpaceOnly] [-StartupKeyProtector] [-StartupKeyPath] - [-WhatIf] [-Confirm] [] + +```PowerShell +Enable-BitLocker [-MountPoint] -StartupKeyProtector [-StartupKeyPath] +[-EncryptionMethod ] [-HardwareEncryption] +[-SkipHardwareTest] [-UsedSpaceOnly] [-WhatIf] [-Confirm] [] ``` ### TpmAndStartupKeyProtector -``` -Enable-BitLocker [-MountPoint] [-EncryptionMethod ] - [-HardwareEncryption] [-SkipHardwareTest] [-UsedSpaceOnly] [-StartupKeyPath] - [-TpmAndStartupKeyProtector] [-WhatIf] [-Confirm] [] + +```PowerShell +Enable-BitLocker [-MountPoint] -TpmAndStartupKeyProtector [-StartupKeyPath] +[-EncryptionMethod ] [-HardwareEncryption] +[-SkipHardwareTest] [-UsedSpaceOnly] [-WhatIf] [-Confirm] [] ``` ### TpmAndPinAndStartupKeyProtector -``` -Enable-BitLocker [-MountPoint] [-EncryptionMethod ] - [-HardwareEncryption] [-SkipHardwareTest] [-UsedSpaceOnly] [-StartupKeyPath] - [-TpmAndPinAndStartupKeyProtector] [[-Pin] ] [-WhatIf] [-Confirm] [] + +```PowerShell +Enable-BitLocker [-MountPoint] -TpmAndPinAndStartupKeyProtector -StartupKeyPath +[-Pin] [-EncryptionMethod ] +[-HardwareEncryption] [-SkipHardwareTest] [-UsedSpaceOnly] [-WhatIf] [-Confirm] +[] ``` ### AdAccountOrGroupProtector -``` -Enable-BitLocker [-MountPoint] [-EncryptionMethod ] - [-HardwareEncryption] [-SkipHardwareTest] [-UsedSpaceOnly] [-AdAccountOrGroupProtector] [-Service] - [-AdAccountOrGroup] [-WhatIf] [-Confirm] [] + +```PowerShell +Enable-BitLocker [-MountPoint] -AdAccountOrGroupProtector [-AdAccountOrGroup] +[-Service] [-EncryptionMethod ] [-HardwareEncryption] +[-SkipHardwareTest] [-UsedSpaceOnly] [-WhatIf] [-Confirm] [] ``` ### TpmAndPinProtector -``` -Enable-BitLocker [-MountPoint] [-EncryptionMethod ] - [-HardwareEncryption] [-SkipHardwareTest] [-UsedSpaceOnly] [[-Pin] ] [-TpmAndPinProtector] - [-WhatIf] [-Confirm] [] + +```PowerShell +Enable-BitLocker [-MountPoint] -TpmAndPinProtector [-Pin] +[-EncryptionMethod ] [-HardwareEncryption] +[-SkipHardwareTest] [-UsedSpaceOnly] [-WhatIf] [-Confirm] [] ``` ### TpmProtector -``` -Enable-BitLocker [-MountPoint] [-EncryptionMethod ] - [-HardwareEncryption] [-SkipHardwareTest] [-UsedSpaceOnly] [-TpmProtector] [-WhatIf] [-Confirm] - [] + +```PowerShell +Enable-BitLocker [-MountPoint] -TpmProtector +[-EncryptionMethod ] [-HardwareEncryption] +[-SkipHardwareTest] [-UsedSpaceOnly] [-WhatIf] [-Confirm] [] ``` ### RecoveryKeyProtector -``` -Enable-BitLocker [-MountPoint] [-EncryptionMethod ] - [-HardwareEncryption] [-SkipHardwareTest] [-UsedSpaceOnly] [-RecoveryKeyProtector] [-RecoveryKeyPath] - [-WhatIf] [-Confirm] [] + +```PowerShell +Enable-BitLocker [-MountPoint] -RecoveryKeyProtector [-RecoveryKeyPath] +[-EncryptionMethod ] [-HardwareEncryption] +[-SkipHardwareTest] [-UsedSpaceOnly] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION + The **Enable-BitLocker** cmdlet enables BitLocker Drive Encryption for a volume. -When you enable encryption, you must specify a volume and an encryption method for that volume. -You can specify a volume by drive letter or by specifying a BitLocker volume object. -For the encryption method, you can choose either Advanced Encryption Standard (AES) algorithms AES-128 or AES-256, or you can use hardware encryption if it is supported by the disk hardware. +When you enable encryption, you must specify a volume, either by its drive letter or by its +BitLocker volume object. -You must also establish a key protector. -BitLocker uses a key protector to encrypt the volume encryption key. -When a user accesses a BitLocker encrypted drive, such as when starting a computer, BitLocker requests the relevant key protector. -For example, the user can enter a PIN or provide a USB drive that contains a key. -BitLocker decrypts the encryption key and uses it to read data from the drive. -You can use one of the following methods or combinations of methods for a key protector: +You must also establish a key protector. BitLocker uses a key protector to encrypt the volume +encryption key. When a user accesses a BitLocker encrypted drive, such as when starting a computer, +BitLocker requests the relevant key protector. For example, the user can enter a PIN or provide a +USB drive that contains a key. BitLocker decrypts the encryption key and uses it to read data from +the drive. You can use one of the following methods or combinations of methods for a key protector: +- **Trusted Platform Module (TPM):** BitLocker uses the computer's TPM to protect the encryption + key. If you select this key protector, users can access the encrypted drive as long as it is + connected to the system board that hosts the TPM and system boot integrity is intact. In general, + TPM-based protectors can only be associated to an operating system volume. -- Trusted Platform Module (TPM). -BitLocker uses the computer's TPM to protect the encryption key. -If you select this key protector, users can access the encrypted drive as long as it is connected to the system board that hosts the TPM and system boot integrity is intact. -In general, TPM-based protectors can only be associated to an operating system volume. +- **TPM and Personal Identification Number (PIN):** BitLocker uses a combination of the TPM and a + user-supplied PIN. A PIN is four to twenty digits or, if you allow enhanced PINs, is four to + twenty letters, symbols, spaces, or numbers. -- TPM and Personal Identification Number (PIN). -BitLocker uses a combination of the TPM and a user-supplied PIN. -A PIN is four to twenty digits or, if you allow enhanced PINs, is four to twenty letters, symbols, spaces, or numbers. +- **TPM, PIN, and startup key:** BitLocker uses a combination of the TPM, a user-supplied PIN, and + input from of a USB memory device that contains an external key. -- TPM, PIN, and startup key. -BitLocker uses a combination of the TPM, a user-supplied PIN, and input from of a USB memory device that contains an external key. +- **TPM and startup key:** BitLocker uses a combination of the TPM and a USB flash drive that + contains the external key. -- TPM and startup key. -BitLocker uses a combination of the TPM and input from of a USB memory device. +- **Startup key:** BitLocker uses a USB flash drive that contains the external key. -- Startup key. -BitLocker uses input from of a USB memory device that contains the external key. +- **Password:** BitLocker uses a password. -- Password. -BitLocker uses a password. +- **Recovery key:** BitLocker uses a recovery key stored as a specified file. -- Recovery key. -BitLocker uses a recovery key stored as a specified file. +- **Recovery password:** BitLocker uses a recovery password. -- Recovery password. -BitLocker uses a recovery password. +- **Active Directory Domain Services (AD DS) account:** BitLocker uses domain authentication. -- Active Directory Domain Services (AD DS) account. -BitLocker uses domain authentication. +You can specify only one of these methods or combinations when you enable encryption, but you can +use the **Add-BitLockerKeyProtector** cmdlet to add other protectors. -You can specify only one of these methods or combinations when you enable encryption, but you can use the **Add-BitLockerKeyProtector** cmdlet to add other protectors. +For a password or PIN key protector, specify a secure string. You can use the +**ConvertTo-SecureString** cmdlet to create a secure string. You can use secure strings in a script +and still maintain confidentiality of passwords. -For a password or PIN key protector, specify a secure string. -You can use the **ConvertTo-SecureString** cmdlet to create a secure string. -You can use secure strings in a script and still maintain confidentiality of passwords. +We strongly recommend specifying the encryption method. By default, BitLocker uses XTS-AES-128. You +can opt XTS-AES-256 for stronger security. However, if you are encrypting a removable media and +intend to use it on Windows 8.1 or Windows Server 2012 R2, you must opt either AES-128 or AES-256 +for backward compatibility. You may request hardware encryption but Microsoft strongly advices +against it. For further guidance, see the "[ADV180028 Security Advisory][1]". -This cmdlet returns a BitLocker volume object. -If you choose recovery password as your key protector but do not specify a 48-digit recovery password, this cmdlet creates a random 48-digit recovery password. -The cmdlet stores the password as the **RecoveryPassword** field of the **KeyProtector** attribute of the BitLocker volume object. +This cmdlet returns a BitLocker volume object. If you choose recovery password as your key protector +but do not specify a 48-digit recovery password, this cmdlet generates a random one for you, and +stores it in the **RecoveryPassword** field of the **KeyProtector** attribute of the BitLocker +volume object. -If you use startup key or recovery key as part of your key protector, provide a path to store the key. -This cmdlet stores the name of the file that contains the key in the **KeyFileName** field of the **KeyProtector** field in the BitLocker volume object. +If you use startup key or recovery key as part of your key protector, provide a path to store the +key. This cmdlet stores the name of the file that contains the key in the **KeyFileName** field of +the **KeyProtector** field in the BitLocker volume object. -If you use the **Enable-BitLocker** cmdlet on an encrypted volume or on a volume that with encryption in process, it takes no action. -If you use the cmdlet on a drive that has encryption paused, it resumes encryption on the volume. +If you use the **Enable-BitLocker** cmdlet on an encrypted volume or on a volume that with +encryption in process, it takes no action. If you use the cmdlet on a drive that has encryption +paused, it resumes encryption on the volume. -By default, this cmdlet encrypts the entire drive. -If you use the *UsedSpaceOnly* parameter, it only encrypts the used space in the disk. -This option can significant reduce encryption time. +By default, this cmdlet encrypts the entire drive. If you use the *UsedSpaceOnly* parameter, it only +encrypts the used space on the disk. This option can significant reduce encryption time. -It is common practice to add a recovery password to an operating system volume by using the **Add-BitLockerKeyProtector** cmdlet, and then save the recovery password by using the **Backup-BitLockerKeyProtector** cmdlet, and then enable BitLocker for the drive. -This procedure ensures that you have a recovery option. +It is common practice to add a recovery password for an operating system volume using the +**Add-BitLockerKeyProtector** cmdlet, save the recovery password using the +**Backup-BitLockerKeyProtector** cmdlet, and then enable BitLocker on that volume. This procedure +ensures that you have a recovery option. -For an overview of BitLocker, see [BitLocker Drive Encryption Overview](https://technet.microsoft.com/en-us/library/cc732774.aspx) on TechNet. +For an overview of BitLocker, see "[BitLocker Drive Encryption Overview][2]" on Microsoft Docs. ## EXAMPLES ### Example 1: Enable BitLocker -``` -PS C:\> $SecureString = ConvertTo-SecureString "1234" -AsPlainText -Force -PS C:\> Enable-BitLocker -MountPoint "C:" -EncryptionMethod Aes256 -UsedSpaceOnly -Pin $SecureString -TPMandPinProtector + +```PowerShell +$SecureString = ConvertTo-SecureString "1234" -AsPlainText -Force +Enable-BitLocker -MountPoint "C:" -EncryptionMethod Aes256 -UsedSpaceOnly -Pin $SecureString -TPMandPinProtector ``` This example enables BitLocker for a specified drive using the TPM and a PIN for key protector. @@ -168,8 +184,9 @@ The command also specifies to encrypt the used space data on the disk, instead o When the system writes data to the volume in the future, that data is encrypted. ### Example 2: Enable BitLocker with a recovery key -``` -PS C:\> Get-BitLockerVolume | Enable-BitLocker -EncryptionMethod Aes128 -RecoveryKeyPath "E:\Recovery\" -RecoveryKeyProtector + +```PowerShell +Get-BitLockerVolume | Enable-BitLocker -EncryptionMethod Aes128 -RecoveryKeyPath "E:\Recovery\" -RecoveryKeyProtector ``` This command gets all the BitLocker volumes for the current computer and passes pipes them to the **Enable-BitLocker** cmdlet by using the pipe operator. @@ -177,8 +194,9 @@ This cmdlet specifies an encryption algorithm for the volume or volumes. This cmdlet specifies a path to a folder where the randomly generated recovery key will be stored and indicates that these volumes use a recovery key as a key protector. ### Example 3: Enable BitLocker with a specified user account -``` -PS C:\> Enable-BitLocker -MountPoint "C:" -EncryptionMethod Aes128 -AdAccountOrGroup "Western\SarahJones" -AdAccountOrGroupProtector + +```PowerShell +Enable-BitLocker -MountPoint "C:" -EncryptionMethod Aes128 -AdAccountOrGroup "Western\SarahJones" -AdAccountOrGroupProtector ``` This command encrypts the BitLocker volume specified by the *MountPoint* parameter, and uses the AES 128 encryption method. @@ -188,6 +206,7 @@ When a user accesses this volume, BitLocker prompts for credentials for the user ## PARAMETERS ### -AdAccountOrGroup + Specifies an account using the format Domain\User. This cmdlet adds the account you specify as a key protector for the volume encryption key. @@ -204,6 +223,7 @@ Accept wildcard characters: False ``` ### -AdAccountOrGroupProtector + Indicates that BitLocker uses an AD DS account as a protector for the volume encryption key. ```yaml @@ -219,6 +239,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -234,14 +255,8 @@ Accept wildcard characters: False ``` ### -EncryptionMethod -Specifies an encryption method for the encrypted drive. -The acceptable values for this parameter are: - -- Aes128 - -- Aes256 -- Hardware +Specifies an encryption method for the encrypted drive. ```yaml Type: BitLockerVolumeEncryptionMethodOnEnable @@ -257,6 +272,7 @@ Accept wildcard characters: False ``` ### -HardwareEncryption + Indicates that the volume uses hardware encryption. ```yaml @@ -272,6 +288,7 @@ Accept wildcard characters: False ``` ### -MountPoint + Specifies an array of drive letters or BitLocker volume objects. This cmdlet enables protection for the volumes specified. To obtain a BitLocker volume object, use the **Get-BitLockerVolume** cmdlet. @@ -289,6 +306,7 @@ Accept wildcard characters: False ``` ### -Password + Specifies a secure string object that contains a password. The password specified acts as a protector for the volume encryption key. @@ -305,6 +323,7 @@ Accept wildcard characters: False ``` ### -PasswordProtector + Indicates that BitLocker uses a password as a protector for the volume encryption key. ```yaml @@ -320,6 +339,7 @@ Accept wildcard characters: False ``` ### -Pin + Specifies a secure string object that contains a PIN. BitLocker uses the PIN specified, with other data, as a protector for the volume encryption key. @@ -336,6 +356,7 @@ Accept wildcard characters: False ``` ### -RecoveryKeyPath + Specifies a path to a folder. This cmdlet adds a randomly generated recovery key as a protector for the volume encryption key and stores it in the specified path. @@ -352,6 +373,7 @@ Accept wildcard characters: False ``` ### -RecoveryKeyProtector + Indicates that BitLocker uses a recovery key as a protector for the volume encryption key. ```yaml @@ -367,6 +389,7 @@ Accept wildcard characters: False ``` ### -RecoveryPassword + Specifies a recovery password. If you do not specify this parameter, but you do include the *RecoveryPasswordProtector* parameter, the cmdlet creates a random password. You can enter a 48-digit password. @@ -385,6 +408,7 @@ Accept wildcard characters: False ``` ### -RecoveryPasswordProtector + Indicates that BitLocker uses a recovery password as a protector for the volume encryption key. ```yaml @@ -400,6 +424,7 @@ Accept wildcard characters: False ``` ### -Service + Indicates that the system account for this computer unlocks the encrypted volume. ```yaml @@ -415,6 +440,7 @@ Accept wildcard characters: False ``` ### -SkipHardwareTest + Indicates that BitLocker does not perform a hardware test before it begins encryption. BitLocker uses a hardware test as a dry run to make sure that all the key protectors are correctly set up and that the computer can start without issues. @@ -431,6 +457,7 @@ Accept wildcard characters: False ``` ### -StartupKeyPath + Specifies a path to a startup key. The key stored in the specified path acts as a protector for the volume encryption key. @@ -447,6 +474,7 @@ Accept wildcard characters: False ``` ### -StartupKeyProtector + Indicates that BitLocker uses a startup key as a protector for the volume encryption key. ```yaml @@ -462,6 +490,7 @@ Accept wildcard characters: False ``` ### -TpmAndPinAndStartupKeyProtector + Indicates that BitLocker uses a combination of the TPM, a PIN, and a startup key as a protector for the volume encryption key. ```yaml @@ -477,6 +506,7 @@ Accept wildcard characters: False ``` ### -TpmAndPinProtector + Indicates that BitLocker uses a combination of the TPM and a PIN as a protector for the volume encryption key. ```yaml @@ -492,6 +522,7 @@ Accept wildcard characters: False ``` ### -TpmAndStartupKeyProtector + Indicates that BitLocker uses a combination of the TPM and a startup key as a protector for the volume encryption key. ```yaml @@ -507,6 +538,7 @@ Accept wildcard characters: False ``` ### -TpmProtector + Indicates that BitLocker uses the TPM as a protector for the volume encryption key. ```yaml @@ -522,6 +554,7 @@ Accept wildcard characters: False ``` ### -UsedSpaceOnly + Indicates that BitLocker does not encrypt disk space which contains unused data. ```yaml @@ -537,6 +570,7 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. @@ -553,11 +587,12 @@ Accept wildcard characters: False ``` ### CommonParameters + This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS -### BitLockerVolume[],String[] +### BitLockerVolume[], String[] ## OUTPUTS @@ -567,15 +602,12 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Disable-BitLocker](./Disable-BitLocker.md) - -[Get-BitLockerVolume](./Get-BitLockerVolume.md) - -[Lock-BitLocker](./Lock-BitLocker.md) - -[Resume-BitLocker](./Resume-BitLocker.md) - -[Suspend-BitLocker](./Suspend-BitLocker.md) - -[Unlock-BitLocker](./Unlock-BitLocker.md) +- [Disable-BitLocker](./Disable-BitLocker.md) +- [Get-BitLockerVolume](./Get-BitLockerVolume.md) +- [Lock-BitLocker](./Lock-BitLocker.md) +- [Resume-BitLocker](./Resume-BitLocker.md) +- [Suspend-BitLocker](./Suspend-BitLocker.md) +- [Unlock-BitLocker](./Unlock-BitLocker.md) +[1]: https://msrc.microsoft.com/update-guide/vulnerability/ADV180028 +[2]: https://docs.microsoft.com/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/cc732774(v=ws.11) diff --git a/docset/winserver2019-ps/bitlocker/Enable-BitLocker.md b/docset/winserver2019-ps/bitlocker/Enable-BitLocker.md index a6d031234c..bb64e3adba 100644 --- a/docset/winserver2019-ps/bitlocker/Enable-BitLocker.md +++ b/docset/winserver2019-ps/bitlocker/Enable-BitLocker.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: BitLocker-help.xml Module Name: BitLocker -ms.date: 12/20/2016 +ms.date: 12/14/2021 online version: https://docs.microsoft.com/powershell/module/bitlocker/enable-bitlocker?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-BitLocker @@ -11,149 +11,165 @@ title: Enable-BitLocker # Enable-BitLocker ## SYNOPSIS + Enables BitLocker Drive Encryption for a volume. ## SYNTAX ### PasswordProtector -``` -Enable-BitLocker [-MountPoint] [-EncryptionMethod ] - [-HardwareEncryption] [-SkipHardwareTest] [-UsedSpaceOnly] [-PasswordProtector] [[-Password] ] - [-WhatIf] [-Confirm] [] + +```PowerShell +Enable-BitLocker [-MountPoint] -PasswordProtector [-Password] +[-EncryptionMethod ] [-HardwareEncryption] +[-SkipHardwareTest] [-UsedSpaceOnly][-WhatIf] [-Confirm] [] ``` ### RecoveryPasswordProtector -``` -Enable-BitLocker [-MountPoint] [-EncryptionMethod ] - [-HardwareEncryption] [-SkipHardwareTest] [-UsedSpaceOnly] [-RecoveryPasswordProtector] - [[-RecoveryPassword] ] [-WhatIf] [-Confirm] [] + +```PowerShell +Enable-BitLocker [-MountPoint] -RecoveryPasswordProtector [[-RecoveryPassword] ] +[-EncryptionMethod ] [-HardwareEncryption] +[-SkipHardwareTest] [-UsedSpaceOnly] [-WhatIf] [-Confirm] [] ``` ### StartupKeyProtector -``` -Enable-BitLocker [-MountPoint] [-EncryptionMethod ] - [-HardwareEncryption] [-SkipHardwareTest] [-UsedSpaceOnly] [-StartupKeyProtector] [-StartupKeyPath] - [-WhatIf] [-Confirm] [] + +```PowerShell +Enable-BitLocker [-MountPoint] -StartupKeyProtector [-StartupKeyPath] +[-EncryptionMethod ] [-HardwareEncryption] +[-SkipHardwareTest] [-UsedSpaceOnly] [-WhatIf] [-Confirm] [] ``` ### TpmAndStartupKeyProtector -``` -Enable-BitLocker [-MountPoint] [-EncryptionMethod ] - [-HardwareEncryption] [-SkipHardwareTest] [-UsedSpaceOnly] [-StartupKeyPath] - [-TpmAndStartupKeyProtector] [-WhatIf] [-Confirm] [] + +```PowerShell +Enable-BitLocker [-MountPoint] -TpmAndStartupKeyProtector [-StartupKeyPath] +[-EncryptionMethod ] [-HardwareEncryption] +[-SkipHardwareTest] [-UsedSpaceOnly] [-WhatIf] [-Confirm] [] ``` ### TpmAndPinAndStartupKeyProtector -``` -Enable-BitLocker [-MountPoint] [-EncryptionMethod ] - [-HardwareEncryption] [-SkipHardwareTest] [-UsedSpaceOnly] [-StartupKeyPath] - [-TpmAndPinAndStartupKeyProtector] [[-Pin] ] [-WhatIf] [-Confirm] [] + +```PowerShell +Enable-BitLocker [-MountPoint] -TpmAndPinAndStartupKeyProtector -StartupKeyPath +[-Pin] [-EncryptionMethod ] +[-HardwareEncryption] [-SkipHardwareTest] [-UsedSpaceOnly] [-WhatIf] [-Confirm] +[] ``` ### AdAccountOrGroupProtector -``` -Enable-BitLocker [-MountPoint] [-EncryptionMethod ] - [-HardwareEncryption] [-SkipHardwareTest] [-UsedSpaceOnly] [-AdAccountOrGroupProtector] [-Service] - [-AdAccountOrGroup] [-WhatIf] [-Confirm] [] + +```PowerShell +Enable-BitLocker [-MountPoint] -AdAccountOrGroupProtector [-AdAccountOrGroup] +[-Service] [-EncryptionMethod ] [-HardwareEncryption] +[-SkipHardwareTest] [-UsedSpaceOnly] [-WhatIf] [-Confirm] [] ``` ### TpmAndPinProtector -``` -Enable-BitLocker [-MountPoint] [-EncryptionMethod ] - [-HardwareEncryption] [-SkipHardwareTest] [-UsedSpaceOnly] [[-Pin] ] [-TpmAndPinProtector] - [-WhatIf] [-Confirm] [] + +```PowerShell +Enable-BitLocker [-MountPoint] -TpmAndPinProtector [-Pin] +[-EncryptionMethod ] [-HardwareEncryption] +[-SkipHardwareTest] [-UsedSpaceOnly] [-WhatIf] [-Confirm] [] ``` ### TpmProtector -``` -Enable-BitLocker [-MountPoint] [-EncryptionMethod ] - [-HardwareEncryption] [-SkipHardwareTest] [-UsedSpaceOnly] [-TpmProtector] [-WhatIf] [-Confirm] - [] + +```PowerShell +Enable-BitLocker [-MountPoint] -TpmProtector +[-EncryptionMethod ] [-HardwareEncryption] +[-SkipHardwareTest] [-UsedSpaceOnly] [-WhatIf] [-Confirm] [] ``` ### RecoveryKeyProtector -``` -Enable-BitLocker [-MountPoint] [-EncryptionMethod ] - [-HardwareEncryption] [-SkipHardwareTest] [-UsedSpaceOnly] [-RecoveryKeyProtector] [-RecoveryKeyPath] - [-WhatIf] [-Confirm] [] + +```PowerShell +Enable-BitLocker [-MountPoint] -RecoveryKeyProtector [-RecoveryKeyPath] +[-EncryptionMethod ] [-HardwareEncryption] +[-SkipHardwareTest] [-UsedSpaceOnly] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION + The **Enable-BitLocker** cmdlet enables BitLocker Drive Encryption for a volume. -When you enable encryption, you must specify a volume and an encryption method for that volume. -You can specify a volume by drive letter or by specifying a BitLocker volume object. -For the encryption method, you can choose either Advanced Encryption Standard (AES) algorithms AES-128 or AES-256, or you can use hardware encryption if it is supported by the disk hardware. +When you enable encryption, you must specify a volume, either by its drive letter or by its +BitLocker volume object. -You must also establish a key protector. -BitLocker uses a key protector to encrypt the volume encryption key. -When a user accesses a BitLocker encrypted drive, such as when starting a computer, BitLocker requests the relevant key protector. -For example, the user can enter a PIN or provide a USB drive that contains a key. -BitLocker decrypts the encryption key and uses it to read data from the drive. -You can use one of the following methods or combinations of methods for a key protector: +You must also establish a key protector. BitLocker uses a key protector to encrypt the volume +encryption key. When a user accesses a BitLocker encrypted drive, such as when starting a computer, +BitLocker requests the relevant key protector. For example, the user can enter a PIN or provide a +USB drive that contains a key. BitLocker decrypts the encryption key and uses it to read data from +the drive. You can use one of the following methods or combinations of methods for a key protector: +- **Trusted Platform Module (TPM):** BitLocker uses the computer's TPM to protect the encryption + key. If you select this key protector, users can access the encrypted drive as long as it is + connected to the system board that hosts the TPM and system boot integrity is intact. In general, + TPM-based protectors can only be associated to an operating system volume. -- Trusted Platform Module (TPM). -BitLocker uses the computer's TPM to protect the encryption key. -If you select this key protector, users can access the encrypted drive as long as it is connected to the system board that hosts the TPM and system boot integrity is intact. -In general, TPM-based protectors can only be associated to an operating system volume. +- **TPM and Personal Identification Number (PIN):** BitLocker uses a combination of the TPM and a + user-supplied PIN. A PIN is four to twenty digits or, if you allow enhanced PINs, is four to + twenty letters, symbols, spaces, or numbers. -- TPM and Personal Identification Number (PIN). -BitLocker uses a combination of the TPM and a user-supplied PIN. -A PIN is four to twenty digits or, if you allow enhanced PINs, is four to twenty letters, symbols, spaces, or numbers. +- **TPM, PIN, and startup key:** BitLocker uses a combination of the TPM, a user-supplied PIN, and + input from of a USB memory device that contains an external key. -- TPM, PIN, and startup key. -BitLocker uses a combination of the TPM, a user-supplied PIN, and input from of a USB memory device that contains an external key. +- **TPM and startup key:** BitLocker uses a combination of the TPM and a USB flash drive that + contains the external key. -- TPM and startup key. -BitLocker uses a combination of the TPM and input from of a USB memory device. +- **Startup key:** BitLocker uses a USB flash drive that contains the external key. -- Startup key. -BitLocker uses input from of a USB memory device that contains the external key. +- **Password:** BitLocker uses a password. -- Password. -BitLocker uses a password. +- **Recovery key:** BitLocker uses a recovery key stored as a specified file. -- Recovery key. -BitLocker uses a recovery key stored as a specified file. +- **Recovery password:** BitLocker uses a recovery password. -- Recovery password. -BitLocker uses a recovery password. +- **Active Directory Domain Services (AD DS) account:** BitLocker uses domain authentication. -- Active Directory Domain Services (AD DS) account. -BitLocker uses domain authentication. +You can specify only one of these methods or combinations when you enable encryption, but you can +use the **Add-BitLockerKeyProtector** cmdlet to add other protectors. -You can specify only one of these methods or combinations when you enable encryption, but you can use the **Add-BitLockerKeyProtector** cmdlet to add other protectors. +For a password or PIN key protector, specify a secure string. You can use the +**ConvertTo-SecureString** cmdlet to create a secure string. You can use secure strings in a script +and still maintain confidentiality of passwords. -For a password or PIN key protector, specify a secure string. -You can use the **ConvertTo-SecureString** cmdlet to create a secure string. -You can use secure strings in a script and still maintain confidentiality of passwords. +We strongly recommend specifying the encryption method. By default, BitLocker uses XTS-AES-128. You +can opt XTS-AES-256 for stronger security. However, if you are encrypting a removable media and +intend to use it on Windows 8.1 or Windows Server 2012 R2, you must opt either AES-128 or AES-256 +for backward compatibility. You may request hardware encryption but Microsoft strongly advices +against it. For further guidance, see the "[ADV180028 Security Advisory][1]". -This cmdlet returns a BitLocker volume object. -If you choose recovery password as your key protector but do not specify a 48-digit recovery password, this cmdlet creates a random 48-digit recovery password. -The cmdlet stores the password as the **RecoveryPassword** field of the **KeyProtector** attribute of the BitLocker volume object. +This cmdlet returns a BitLocker volume object. If you choose recovery password as your key protector +but do not specify a 48-digit recovery password, this cmdlet generates a random one for you, and +stores it in the **RecoveryPassword** field of the **KeyProtector** attribute of the BitLocker +volume object. -If you use startup key or recovery key as part of your key protector, provide a path to store the key. -This cmdlet stores the name of the file that contains the key in the **KeyFileName** field of the **KeyProtector** field in the BitLocker volume object. +If you use startup key or recovery key as part of your key protector, provide a path to store the +key. This cmdlet stores the name of the file that contains the key in the **KeyFileName** field of +the **KeyProtector** field in the BitLocker volume object. -If you use the **Enable-BitLocker** cmdlet on an encrypted volume or on a volume that with encryption in process, it takes no action. -If you use the cmdlet on a drive that has encryption paused, it resumes encryption on the volume. +If you use the **Enable-BitLocker** cmdlet on an encrypted volume or on a volume that with +encryption in process, it takes no action. If you use the cmdlet on a drive that has encryption +paused, it resumes encryption on the volume. -By default, this cmdlet encrypts the entire drive. -If you use the *UsedSpaceOnly* parameter, it only encrypts the used space in the disk. -This option can significant reduce encryption time. +By default, this cmdlet encrypts the entire drive. If you use the *UsedSpaceOnly* parameter, it only +encrypts the used space on the disk. This option can significant reduce encryption time. -It is common practice to add a recovery password to an operating system volume by using the **Add-BitLockerKeyProtector** cmdlet, and then save the recovery password by using the **Backup-BitLockerKeyProtector** cmdlet, and then enable BitLocker for the drive. -This procedure ensures that you have a recovery option. +It is common practice to add a recovery password for an operating system volume using the +**Add-BitLockerKeyProtector** cmdlet, save the recovery password using the +**Backup-BitLockerKeyProtector** cmdlet, and then enable BitLocker on that volume. This procedure +ensures that you have a recovery option. -For an overview of BitLocker, see [BitLocker Drive Encryption Overview](https://technet.microsoft.com/en-us/library/cc732774.aspx) on TechNet. +For an overview of BitLocker, see "[BitLocker Drive Encryption Overview][2]" on Microsoft Docs. ## EXAMPLES ### Example 1: Enable BitLocker -``` -PS C:\> $SecureString = ConvertTo-SecureString "1234" -AsPlainText -Force -PS C:\> Enable-BitLocker -MountPoint "C:" -EncryptionMethod Aes256 -UsedSpaceOnly -Pin $SecureString -TPMandPinProtector + +```PowerShell +$SecureString = ConvertTo-SecureString "1234" -AsPlainText -Force +Enable-BitLocker -MountPoint "C:" -EncryptionMethod Aes256 -UsedSpaceOnly -Pin $SecureString -TPMandPinProtector ``` This example enables BitLocker for a specified drive using the TPM and a PIN for key protector. @@ -168,8 +184,9 @@ The command also specifies to encrypt the used space data on the disk, instead o When the system writes data to the volume in the future, that data is encrypted. ### Example 2: Enable BitLocker with a recovery key -``` -PS C:\> Get-BitLockerVolume | Enable-BitLocker -EncryptionMethod Aes128 -RecoveryKeyPath "E:\Recovery\" -RecoveryKeyProtector + +```PowerShell +Get-BitLockerVolume | Enable-BitLocker -EncryptionMethod Aes128 -RecoveryKeyPath "E:\Recovery\" -RecoveryKeyProtector ``` This command gets all the BitLocker volumes for the current computer and passes pipes them to the **Enable-BitLocker** cmdlet by using the pipe operator. @@ -177,8 +194,9 @@ This cmdlet specifies an encryption algorithm for the volume or volumes. This cmdlet specifies a path to a folder where the randomly generated recovery key will be stored and indicates that these volumes use a recovery key as a key protector. ### Example 3: Enable BitLocker with a specified user account -``` -PS C:\> Enable-BitLocker -MountPoint "C:" -EncryptionMethod Aes128 -AdAccountOrGroup "Western\SarahJones" -AdAccountOrGroupProtector + +```PowerShell +Enable-BitLocker -MountPoint "C:" -EncryptionMethod Aes128 -AdAccountOrGroup "Western\SarahJones" -AdAccountOrGroupProtector ``` This command encrypts the BitLocker volume specified by the *MountPoint* parameter, and uses the AES 128 encryption method. @@ -188,6 +206,7 @@ When a user accesses this volume, BitLocker prompts for credentials for the user ## PARAMETERS ### -AdAccountOrGroup + Specifies an account using the format Domain\User. This cmdlet adds the account you specify as a key protector for the volume encryption key. @@ -204,6 +223,7 @@ Accept wildcard characters: False ``` ### -AdAccountOrGroupProtector + Indicates that BitLocker uses an AD DS account as a protector for the volume encryption key. ```yaml @@ -219,6 +239,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -234,14 +255,8 @@ Accept wildcard characters: False ``` ### -EncryptionMethod -Specifies an encryption method for the encrypted drive. -The acceptable values for this parameter are: - -- Aes128 - -- Aes256 -- Hardware +Specifies an encryption method for the encrypted drive. ```yaml Type: BitLockerVolumeEncryptionMethodOnEnable @@ -257,6 +272,7 @@ Accept wildcard characters: False ``` ### -HardwareEncryption + Indicates that the volume uses hardware encryption. ```yaml @@ -272,6 +288,7 @@ Accept wildcard characters: False ``` ### -MountPoint + Specifies an array of drive letters or BitLocker volume objects. This cmdlet enables protection for the volumes specified. To obtain a BitLocker volume object, use the **Get-BitLockerVolume** cmdlet. @@ -289,6 +306,7 @@ Accept wildcard characters: False ``` ### -Password + Specifies a secure string object that contains a password. The password specified acts as a protector for the volume encryption key. @@ -305,6 +323,7 @@ Accept wildcard characters: False ``` ### -PasswordProtector + Indicates that BitLocker uses a password as a protector for the volume encryption key. ```yaml @@ -320,6 +339,7 @@ Accept wildcard characters: False ``` ### -Pin + Specifies a secure string object that contains a PIN. BitLocker uses the PIN specified, with other data, as a protector for the volume encryption key. @@ -336,6 +356,7 @@ Accept wildcard characters: False ``` ### -RecoveryKeyPath + Specifies a path to a folder. This cmdlet adds a randomly generated recovery key as a protector for the volume encryption key and stores it in the specified path. @@ -352,6 +373,7 @@ Accept wildcard characters: False ``` ### -RecoveryKeyProtector + Indicates that BitLocker uses a recovery key as a protector for the volume encryption key. ```yaml @@ -367,6 +389,7 @@ Accept wildcard characters: False ``` ### -RecoveryPassword + Specifies a recovery password. If you do not specify this parameter, but you do include the *RecoveryPasswordProtector* parameter, the cmdlet creates a random password. You can enter a 48-digit password. @@ -385,6 +408,7 @@ Accept wildcard characters: False ``` ### -RecoveryPasswordProtector + Indicates that BitLocker uses a recovery password as a protector for the volume encryption key. ```yaml @@ -400,6 +424,7 @@ Accept wildcard characters: False ``` ### -Service + Indicates that the system account for this computer unlocks the encrypted volume. ```yaml @@ -415,6 +440,7 @@ Accept wildcard characters: False ``` ### -SkipHardwareTest + Indicates that BitLocker does not perform a hardware test before it begins encryption. BitLocker uses a hardware test as a dry run to make sure that all the key protectors are correctly set up and that the computer can start without issues. @@ -431,6 +457,7 @@ Accept wildcard characters: False ``` ### -StartupKeyPath + Specifies a path to a startup key. The key stored in the specified path acts as a protector for the volume encryption key. @@ -447,6 +474,7 @@ Accept wildcard characters: False ``` ### -StartupKeyProtector + Indicates that BitLocker uses a startup key as a protector for the volume encryption key. ```yaml @@ -462,6 +490,7 @@ Accept wildcard characters: False ``` ### -TpmAndPinAndStartupKeyProtector + Indicates that BitLocker uses a combination of the TPM, a PIN, and a startup key as a protector for the volume encryption key. ```yaml @@ -477,6 +506,7 @@ Accept wildcard characters: False ``` ### -TpmAndPinProtector + Indicates that BitLocker uses a combination of the TPM and a PIN as a protector for the volume encryption key. ```yaml @@ -492,6 +522,7 @@ Accept wildcard characters: False ``` ### -TpmAndStartupKeyProtector + Indicates that BitLocker uses a combination of the TPM and a startup key as a protector for the volume encryption key. ```yaml @@ -507,6 +538,7 @@ Accept wildcard characters: False ``` ### -TpmProtector + Indicates that BitLocker uses the TPM as a protector for the volume encryption key. ```yaml @@ -522,6 +554,7 @@ Accept wildcard characters: False ``` ### -UsedSpaceOnly + Indicates that BitLocker does not encrypt disk space which contains unused data. ```yaml @@ -537,6 +570,7 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. @@ -553,11 +587,12 @@ Accept wildcard characters: False ``` ### CommonParameters + This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS -### BitLockerVolume[],String[] +### BitLockerVolume[], String[] ## OUTPUTS @@ -567,15 +602,12 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Disable-BitLocker](./Disable-BitLocker.md) - -[Get-BitLockerVolume](./Get-BitLockerVolume.md) - -[Lock-BitLocker](./Lock-BitLocker.md) - -[Resume-BitLocker](./Resume-BitLocker.md) - -[Suspend-BitLocker](./Suspend-BitLocker.md) - -[Unlock-BitLocker](./Unlock-BitLocker.md) +- [Disable-BitLocker](./Disable-BitLocker.md) +- [Get-BitLockerVolume](./Get-BitLockerVolume.md) +- [Lock-BitLocker](./Lock-BitLocker.md) +- [Resume-BitLocker](./Resume-BitLocker.md) +- [Suspend-BitLocker](./Suspend-BitLocker.md) +- [Unlock-BitLocker](./Unlock-BitLocker.md) +[1]: https://msrc.microsoft.com/update-guide/vulnerability/ADV180028 +[2]: https://docs.microsoft.com/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/cc732774(v=ws.11) diff --git a/docset/winserver2022-ps/bitlocker/Enable-BitLocker.md b/docset/winserver2022-ps/bitlocker/Enable-BitLocker.md index 228bc51e23..c0464424c8 100644 --- a/docset/winserver2022-ps/bitlocker/Enable-BitLocker.md +++ b/docset/winserver2022-ps/bitlocker/Enable-BitLocker.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: BitLocker-help.xml Module Name: BitLocker -ms.date: 12/20/2016 +ms.date: 12/14/2021 online version: https://docs.microsoft.com/powershell/module/bitlocker/enable-bitlocker?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-BitLocker @@ -11,149 +11,165 @@ title: Enable-BitLocker # Enable-BitLocker ## SYNOPSIS + Enables BitLocker Drive Encryption for a volume. ## SYNTAX ### PasswordProtector -``` -Enable-BitLocker [-MountPoint] [-EncryptionMethod ] - [-HardwareEncryption] [-SkipHardwareTest] [-UsedSpaceOnly] [-PasswordProtector] [[-Password] ] - [-WhatIf] [-Confirm] [] + +```PowerShell +Enable-BitLocker [-MountPoint] -PasswordProtector [-Password] +[-EncryptionMethod ] [-HardwareEncryption] +[-SkipHardwareTest] [-UsedSpaceOnly][-WhatIf] [-Confirm] [] ``` ### RecoveryPasswordProtector -``` -Enable-BitLocker [-MountPoint] [-EncryptionMethod ] - [-HardwareEncryption] [-SkipHardwareTest] [-UsedSpaceOnly] [-RecoveryPasswordProtector] - [[-RecoveryPassword] ] [-WhatIf] [-Confirm] [] + +```PowerShell +Enable-BitLocker [-MountPoint] -RecoveryPasswordProtector [[-RecoveryPassword] ] +[-EncryptionMethod ] [-HardwareEncryption] +[-SkipHardwareTest] [-UsedSpaceOnly] [-WhatIf] [-Confirm] [] ``` ### StartupKeyProtector -``` -Enable-BitLocker [-MountPoint] [-EncryptionMethod ] - [-HardwareEncryption] [-SkipHardwareTest] [-UsedSpaceOnly] [-StartupKeyProtector] [-StartupKeyPath] - [-WhatIf] [-Confirm] [] + +```PowerShell +Enable-BitLocker [-MountPoint] -StartupKeyProtector [-StartupKeyPath] +[-EncryptionMethod ] [-HardwareEncryption] +[-SkipHardwareTest] [-UsedSpaceOnly] [-WhatIf] [-Confirm] [] ``` ### TpmAndStartupKeyProtector -``` -Enable-BitLocker [-MountPoint] [-EncryptionMethod ] - [-HardwareEncryption] [-SkipHardwareTest] [-UsedSpaceOnly] [-StartupKeyPath] - [-TpmAndStartupKeyProtector] [-WhatIf] [-Confirm] [] + +```PowerShell +Enable-BitLocker [-MountPoint] -TpmAndStartupKeyProtector [-StartupKeyPath] +[-EncryptionMethod ] [-HardwareEncryption] +[-SkipHardwareTest] [-UsedSpaceOnly] [-WhatIf] [-Confirm] [] ``` ### TpmAndPinAndStartupKeyProtector -``` -Enable-BitLocker [-MountPoint] [-EncryptionMethod ] - [-HardwareEncryption] [-SkipHardwareTest] [-UsedSpaceOnly] [-StartupKeyPath] - [-TpmAndPinAndStartupKeyProtector] [[-Pin] ] [-WhatIf] [-Confirm] [] + +```PowerShell +Enable-BitLocker [-MountPoint] -TpmAndPinAndStartupKeyProtector -StartupKeyPath +[-Pin] [-EncryptionMethod ] +[-HardwareEncryption] [-SkipHardwareTest] [-UsedSpaceOnly] [-WhatIf] [-Confirm] +[] ``` ### AdAccountOrGroupProtector -``` -Enable-BitLocker [-MountPoint] [-EncryptionMethod ] - [-HardwareEncryption] [-SkipHardwareTest] [-UsedSpaceOnly] [-AdAccountOrGroupProtector] [-Service] - [-AdAccountOrGroup] [-WhatIf] [-Confirm] [] + +```PowerShell +Enable-BitLocker [-MountPoint] -AdAccountOrGroupProtector [-AdAccountOrGroup] +[-Service] [-EncryptionMethod ] [-HardwareEncryption] +[-SkipHardwareTest] [-UsedSpaceOnly] [-WhatIf] [-Confirm] [] ``` ### TpmAndPinProtector -``` -Enable-BitLocker [-MountPoint] [-EncryptionMethod ] - [-HardwareEncryption] [-SkipHardwareTest] [-UsedSpaceOnly] [[-Pin] ] [-TpmAndPinProtector] - [-WhatIf] [-Confirm] [] + +```PowerShell +Enable-BitLocker [-MountPoint] -TpmAndPinProtector [-Pin] +[-EncryptionMethod ] [-HardwareEncryption] +[-SkipHardwareTest] [-UsedSpaceOnly] [-WhatIf] [-Confirm] [] ``` ### TpmProtector -``` -Enable-BitLocker [-MountPoint] [-EncryptionMethod ] - [-HardwareEncryption] [-SkipHardwareTest] [-UsedSpaceOnly] [-TpmProtector] [-WhatIf] [-Confirm] - [] + +```PowerShell +Enable-BitLocker [-MountPoint] -TpmProtector +[-EncryptionMethod ] [-HardwareEncryption] +[-SkipHardwareTest] [-UsedSpaceOnly] [-WhatIf] [-Confirm] [] ``` ### RecoveryKeyProtector -``` -Enable-BitLocker [-MountPoint] [-EncryptionMethod ] - [-HardwareEncryption] [-SkipHardwareTest] [-UsedSpaceOnly] [-RecoveryKeyProtector] [-RecoveryKeyPath] - [-WhatIf] [-Confirm] [] + +```PowerShell +Enable-BitLocker [-MountPoint] -RecoveryKeyProtector [-RecoveryKeyPath] +[-EncryptionMethod ] [-HardwareEncryption] +[-SkipHardwareTest] [-UsedSpaceOnly] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION + The **Enable-BitLocker** cmdlet enables BitLocker Drive Encryption for a volume. -When you enable encryption, you must specify a volume and an encryption method for that volume. -You can specify a volume by drive letter or by specifying a BitLocker volume object. -For the encryption method, you can choose either Advanced Encryption Standard (AES) algorithms AES-128 or AES-256, or you can use hardware encryption if it is supported by the disk hardware. +When you enable encryption, you must specify a volume, either by its drive letter or by its +BitLocker volume object. -You must also establish a key protector. -BitLocker uses a key protector to encrypt the volume encryption key. -When a user accesses a BitLocker encrypted drive, such as when starting a computer, BitLocker requests the relevant key protector. -For example, the user can enter a PIN or provide a USB drive that contains a key. -BitLocker decrypts the encryption key and uses it to read data from the drive. -You can use one of the following methods or combinations of methods for a key protector: +You must also establish a key protector. BitLocker uses a key protector to encrypt the volume +encryption key. When a user accesses a BitLocker encrypted drive, such as when starting a computer, +BitLocker requests the relevant key protector. For example, the user can enter a PIN or provide a +USB drive that contains a key. BitLocker decrypts the encryption key and uses it to read data from +the drive. You can use one of the following methods or combinations of methods for a key protector: +- **Trusted Platform Module (TPM):** BitLocker uses the computer's TPM to protect the encryption + key. If you select this key protector, users can access the encrypted drive as long as it is + connected to the system board that hosts the TPM and system boot integrity is intact. In general, + TPM-based protectors can only be associated to an operating system volume. -- Trusted Platform Module (TPM). -BitLocker uses the computer's TPM to protect the encryption key. -If you select this key protector, users can access the encrypted drive as long as it is connected to the system board that hosts the TPM and system boot integrity is intact. -In general, TPM-based protectors can only be associated to an operating system volume. +- **TPM and Personal Identification Number (PIN):** BitLocker uses a combination of the TPM and a + user-supplied PIN. A PIN is four to twenty digits or, if you allow enhanced PINs, is four to + twenty letters, symbols, spaces, or numbers. -- TPM and Personal Identification Number (PIN). -BitLocker uses a combination of the TPM and a user-supplied PIN. -A PIN is four to twenty digits or, if you allow enhanced PINs, is four to twenty letters, symbols, spaces, or numbers. +- **TPM, PIN, and startup key:** BitLocker uses a combination of the TPM, a user-supplied PIN, and + input from of a USB memory device that contains an external key. -- TPM, PIN, and startup key. -BitLocker uses a combination of the TPM, a user-supplied PIN, and input from of a USB memory device that contains an external key. +- **TPM and startup key:** BitLocker uses a combination of the TPM and a USB flash drive that + contains the external key. -- TPM and startup key. -BitLocker uses a combination of the TPM and input from of a USB memory device. +- **Startup key:** BitLocker uses a USB flash drive that contains the external key. -- Startup key. -BitLocker uses input from of a USB memory device that contains the external key. +- **Password:** BitLocker uses a password. -- Password. -BitLocker uses a password. +- **Recovery key:** BitLocker uses a recovery key stored as a specified file. -- Recovery key. -BitLocker uses a recovery key stored as a specified file. +- **Recovery password:** BitLocker uses a recovery password. -- Recovery password. -BitLocker uses a recovery password. +- **Active Directory Domain Services (AD DS) account:** BitLocker uses domain authentication. -- Active Directory Domain Services (AD DS) account. -BitLocker uses domain authentication. +You can specify only one of these methods or combinations when you enable encryption, but you can +use the **Add-BitLockerKeyProtector** cmdlet to add other protectors. -You can specify only one of these methods or combinations when you enable encryption, but you can use the **Add-BitLockerKeyProtector** cmdlet to add other protectors. +For a password or PIN key protector, specify a secure string. You can use the +**ConvertTo-SecureString** cmdlet to create a secure string. You can use secure strings in a script +and still maintain confidentiality of passwords. -For a password or PIN key protector, specify a secure string. -You can use the **ConvertTo-SecureString** cmdlet to create a secure string. -You can use secure strings in a script and still maintain confidentiality of passwords. +We strongly recommend specifying the encryption method. By default, BitLocker uses XTS-AES-128. You +can opt XTS-AES-256 for stronger security. However, if you are encrypting a removable media and +intend to use it on Windows 8.1 or Windows Server 2012 R2, you must opt either AES-128 or AES-256 +for backward compatibility. You may request hardware encryption but Microsoft strongly advices +against it. For further guidance, see the "[ADV180028 Security Advisory][1]". -This cmdlet returns a BitLocker volume object. -If you choose recovery password as your key protector but do not specify a 48-digit recovery password, this cmdlet creates a random 48-digit recovery password. -The cmdlet stores the password as the **RecoveryPassword** field of the **KeyProtector** attribute of the BitLocker volume object. +This cmdlet returns a BitLocker volume object. If you choose recovery password as your key protector +but do not specify a 48-digit recovery password, this cmdlet generates a random one for you, and +stores it in the **RecoveryPassword** field of the **KeyProtector** attribute of the BitLocker +volume object. -If you use startup key or recovery key as part of your key protector, provide a path to store the key. -This cmdlet stores the name of the file that contains the key in the **KeyFileName** field of the **KeyProtector** field in the BitLocker volume object. +If you use startup key or recovery key as part of your key protector, provide a path to store the +key. This cmdlet stores the name of the file that contains the key in the **KeyFileName** field of +the **KeyProtector** field in the BitLocker volume object. -If you use the **Enable-BitLocker** cmdlet on an encrypted volume or on a volume that with encryption in process, it takes no action. -If you use the cmdlet on a drive that has encryption paused, it resumes encryption on the volume. +If you use the **Enable-BitLocker** cmdlet on an encrypted volume or on a volume that with +encryption in process, it takes no action. If you use the cmdlet on a drive that has encryption +paused, it resumes encryption on the volume. -By default, this cmdlet encrypts the entire drive. -If you use the *UsedSpaceOnly* parameter, it only encrypts the used space in the disk. -This option can significant reduce encryption time. +By default, this cmdlet encrypts the entire drive. If you use the *UsedSpaceOnly* parameter, it only +encrypts the used space on the disk. This option can significant reduce encryption time. -It is common practice to add a recovery password to an operating system volume by using the **Add-BitLockerKeyProtector** cmdlet, and then save the recovery password by using the **Backup-BitLockerKeyProtector** cmdlet, and then enable BitLocker for the drive. -This procedure ensures that you have a recovery option. +It is common practice to add a recovery password for an operating system volume using the +**Add-BitLockerKeyProtector** cmdlet, save the recovery password using the +**Backup-BitLockerKeyProtector** cmdlet, and then enable BitLocker on that volume. This procedure +ensures that you have a recovery option. -For an overview of BitLocker, see [BitLocker Drive Encryption Overview](https://technet.microsoft.com/en-us/library/cc732774.aspx) on TechNet. +For an overview of BitLocker, see "[BitLocker Drive Encryption Overview][2]" on Microsoft Docs. ## EXAMPLES ### Example 1: Enable BitLocker -``` -PS C:\> $SecureString = ConvertTo-SecureString "1234" -AsPlainText -Force -PS C:\> Enable-BitLocker -MountPoint "C:" -EncryptionMethod Aes256 -UsedSpaceOnly -Pin $SecureString -TPMandPinProtector + +```PowerShell +$SecureString = ConvertTo-SecureString "1234" -AsPlainText -Force +Enable-BitLocker -MountPoint "C:" -EncryptionMethod Aes256 -UsedSpaceOnly -Pin $SecureString -TPMandPinProtector ``` This example enables BitLocker for a specified drive using the TPM and a PIN for key protector. @@ -168,8 +184,9 @@ The command also specifies to encrypt the used space data on the disk, instead o When the system writes data to the volume in the future, that data is encrypted. ### Example 2: Enable BitLocker with a recovery key -``` -PS C:\> Get-BitLockerVolume | Enable-BitLocker -EncryptionMethod Aes128 -RecoveryKeyPath "E:\Recovery\" -RecoveryKeyProtector + +```PowerShell +Get-BitLockerVolume | Enable-BitLocker -EncryptionMethod Aes128 -RecoveryKeyPath "E:\Recovery\" -RecoveryKeyProtector ``` This command gets all the BitLocker volumes for the current computer and passes pipes them to the **Enable-BitLocker** cmdlet by using the pipe operator. @@ -177,8 +194,9 @@ This cmdlet specifies an encryption algorithm for the volume or volumes. This cmdlet specifies a path to a folder where the randomly generated recovery key will be stored and indicates that these volumes use a recovery key as a key protector. ### Example 3: Enable BitLocker with a specified user account -``` -PS C:\> Enable-BitLocker -MountPoint "C:" -EncryptionMethod Aes128 -AdAccountOrGroup "Western\SarahJones" -AdAccountOrGroupProtector + +```PowerShell +Enable-BitLocker -MountPoint "C:" -EncryptionMethod Aes128 -AdAccountOrGroup "Western\SarahJones" -AdAccountOrGroupProtector ``` This command encrypts the BitLocker volume specified by the *MountPoint* parameter, and uses the AES 128 encryption method. @@ -188,6 +206,7 @@ When a user accesses this volume, BitLocker prompts for credentials for the user ## PARAMETERS ### -AdAccountOrGroup + Specifies an account using the format Domain\User. This cmdlet adds the account you specify as a key protector for the volume encryption key. @@ -204,6 +223,7 @@ Accept wildcard characters: False ``` ### -AdAccountOrGroupProtector + Indicates that BitLocker uses an AD DS account as a protector for the volume encryption key. ```yaml @@ -219,6 +239,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -234,14 +255,8 @@ Accept wildcard characters: False ``` ### -EncryptionMethod -Specifies an encryption method for the encrypted drive. -The acceptable values for this parameter are: - -- Aes128 - -- Aes256 -- Hardware +Specifies an encryption method for the encrypted drive. ```yaml Type: BitLockerVolumeEncryptionMethodOnEnable @@ -257,6 +272,7 @@ Accept wildcard characters: False ``` ### -HardwareEncryption + Indicates that the volume uses hardware encryption. ```yaml @@ -272,6 +288,7 @@ Accept wildcard characters: False ``` ### -MountPoint + Specifies an array of drive letters or BitLocker volume objects. This cmdlet enables protection for the volumes specified. To obtain a BitLocker volume object, use the **Get-BitLockerVolume** cmdlet. @@ -289,6 +306,7 @@ Accept wildcard characters: False ``` ### -Password + Specifies a secure string object that contains a password. The password specified acts as a protector for the volume encryption key. @@ -305,6 +323,7 @@ Accept wildcard characters: False ``` ### -PasswordProtector + Indicates that BitLocker uses a password as a protector for the volume encryption key. ```yaml @@ -320,6 +339,7 @@ Accept wildcard characters: False ``` ### -Pin + Specifies a secure string object that contains a PIN. BitLocker uses the PIN specified, with other data, as a protector for the volume encryption key. @@ -336,6 +356,7 @@ Accept wildcard characters: False ``` ### -RecoveryKeyPath + Specifies a path to a folder. This cmdlet adds a randomly generated recovery key as a protector for the volume encryption key and stores it in the specified path. @@ -352,6 +373,7 @@ Accept wildcard characters: False ``` ### -RecoveryKeyProtector + Indicates that BitLocker uses a recovery key as a protector for the volume encryption key. ```yaml @@ -367,6 +389,7 @@ Accept wildcard characters: False ``` ### -RecoveryPassword + Specifies a recovery password. If you do not specify this parameter, but you do include the *RecoveryPasswordProtector* parameter, the cmdlet creates a random password. You can enter a 48-digit password. @@ -385,6 +408,7 @@ Accept wildcard characters: False ``` ### -RecoveryPasswordProtector + Indicates that BitLocker uses a recovery password as a protector for the volume encryption key. ```yaml @@ -400,6 +424,7 @@ Accept wildcard characters: False ``` ### -Service + Indicates that the system account for this computer unlocks the encrypted volume. ```yaml @@ -415,6 +440,7 @@ Accept wildcard characters: False ``` ### -SkipHardwareTest + Indicates that BitLocker does not perform a hardware test before it begins encryption. BitLocker uses a hardware test as a dry run to make sure that all the key protectors are correctly set up and that the computer can start without issues. @@ -431,6 +457,7 @@ Accept wildcard characters: False ``` ### -StartupKeyPath + Specifies a path to a startup key. The key stored in the specified path acts as a protector for the volume encryption key. @@ -447,6 +474,7 @@ Accept wildcard characters: False ``` ### -StartupKeyProtector + Indicates that BitLocker uses a startup key as a protector for the volume encryption key. ```yaml @@ -462,6 +490,7 @@ Accept wildcard characters: False ``` ### -TpmAndPinAndStartupKeyProtector + Indicates that BitLocker uses a combination of the TPM, a PIN, and a startup key as a protector for the volume encryption key. ```yaml @@ -477,6 +506,7 @@ Accept wildcard characters: False ``` ### -TpmAndPinProtector + Indicates that BitLocker uses a combination of the TPM and a PIN as a protector for the volume encryption key. ```yaml @@ -492,6 +522,7 @@ Accept wildcard characters: False ``` ### -TpmAndStartupKeyProtector + Indicates that BitLocker uses a combination of the TPM and a startup key as a protector for the volume encryption key. ```yaml @@ -507,6 +538,7 @@ Accept wildcard characters: False ``` ### -TpmProtector + Indicates that BitLocker uses the TPM as a protector for the volume encryption key. ```yaml @@ -522,6 +554,7 @@ Accept wildcard characters: False ``` ### -UsedSpaceOnly + Indicates that BitLocker does not encrypt disk space which contains unused data. ```yaml @@ -537,6 +570,7 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. @@ -553,11 +587,12 @@ Accept wildcard characters: False ``` ### CommonParameters + This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS -### BitLockerVolume[],String[] +### BitLockerVolume[], String[] ## OUTPUTS @@ -567,15 +602,12 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Disable-BitLocker](./Disable-BitLocker.md) - -[Get-BitLockerVolume](./Get-BitLockerVolume.md) - -[Lock-BitLocker](./Lock-BitLocker.md) - -[Resume-BitLocker](./Resume-BitLocker.md) - -[Suspend-BitLocker](./Suspend-BitLocker.md) - -[Unlock-BitLocker](./Unlock-BitLocker.md) +- [Disable-BitLocker](./Disable-BitLocker.md) +- [Get-BitLockerVolume](./Get-BitLockerVolume.md) +- [Lock-BitLocker](./Lock-BitLocker.md) +- [Resume-BitLocker](./Resume-BitLocker.md) +- [Suspend-BitLocker](./Suspend-BitLocker.md) +- [Unlock-BitLocker](./Unlock-BitLocker.md) +[1]: https://msrc.microsoft.com/update-guide/vulnerability/ADV180028 +[2]: https://docs.microsoft.com/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/cc732774(v=ws.11) From 9a2d8e97263037aae38ab78d4c0c53c2e2dc9f71 Mon Sep 17 00:00:00 2001 From: Adam Daniel Date: Mon, 7 Feb 2022 14:38:49 -0500 Subject: [PATCH 028/965] Fix Get-IpamDhcpServer copy-paste oversight This change should also be made in the other winserver*-ps docsets. --- docset/winserver2016-ps/ipamserver/Get-IpamDhcpServer.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2016-ps/ipamserver/Get-IpamDhcpServer.md b/docset/winserver2016-ps/ipamserver/Get-IpamDhcpServer.md index 0e8264f632..7fdc8cffd6 100644 --- a/docset/winserver2016-ps/ipamserver/Get-IpamDhcpServer.md +++ b/docset/winserver2016-ps/ipamserver/Get-IpamDhcpServer.md @@ -26,14 +26,14 @@ DHCP servers lease IP addresses to client devices. ## EXAMPLES -### Example 1: Get information about all DNS servers +### Example 1: Get information about all DHCP servers ``` PS C:\> Get-IpamDhcpServer ``` This command returns information about all the DHCP servers in the IPAM database. -### Example 2: Get information about a single DNS server +### Example 2: Get information about a single DHCP server ``` PS C:\> Get-IpamDhcpServer -ServerFqdn "dhcp.contoso.com" ``` From b9cb090acc79ffec4106d26b51710ca6f9f959ba Mon Sep 17 00:00:00 2001 From: Adam Daniel Date: Mon, 7 Feb 2022 14:43:58 -0500 Subject: [PATCH 029/965] Fix Get-IpamDhcpServer copy-paste oversight --- docset/winserver2019-ps/ipamserver/Get-IpamDhcpServer.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2019-ps/ipamserver/Get-IpamDhcpServer.md b/docset/winserver2019-ps/ipamserver/Get-IpamDhcpServer.md index 0ce6c7a089..4c992b41be 100644 --- a/docset/winserver2019-ps/ipamserver/Get-IpamDhcpServer.md +++ b/docset/winserver2019-ps/ipamserver/Get-IpamDhcpServer.md @@ -26,14 +26,14 @@ DHCP servers lease IP addresses to client devices. ## EXAMPLES -### Example 1: Get information about all DNS servers +### Example 1: Get information about all DHCP servers ``` PS C:\> Get-IpamDhcpServer ``` This command returns information about all the DHCP servers in the IPAM database. -### Example 2: Get information about a single DNS server +### Example 2: Get information about a single DHCP server ``` PS C:\> Get-IpamDhcpServer -ServerFqdn "dhcp.contoso.com" ``` From eb14a7f5e00414d4905c645cc8eb916ed0e2cc8d Mon Sep 17 00:00:00 2001 From: Adam Daniel Date: Mon, 7 Feb 2022 14:44:46 -0500 Subject: [PATCH 030/965] Fix Get-IpamDhcpServer copy-paste oversight --- docset/winserver2022-ps/ipamserver/Get-IpamDhcpServer.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/ipamserver/Get-IpamDhcpServer.md b/docset/winserver2022-ps/ipamserver/Get-IpamDhcpServer.md index fd7ea59ce4..26d7903602 100644 --- a/docset/winserver2022-ps/ipamserver/Get-IpamDhcpServer.md +++ b/docset/winserver2022-ps/ipamserver/Get-IpamDhcpServer.md @@ -26,14 +26,14 @@ DHCP servers lease IP addresses to client devices. ## EXAMPLES -### Example 1: Get information about all DNS servers +### Example 1: Get information about all DHCP servers ``` PS C:\> Get-IpamDhcpServer ``` This command returns information about all the DHCP servers in the IPAM database. -### Example 2: Get information about a single DNS server +### Example 2: Get information about a single DHCP server ``` PS C:\> Get-IpamDhcpServer -ServerFqdn "dhcp.contoso.com" ``` From 6c1d85835963a12b110776f8a15b6d337d30d69a Mon Sep 17 00:00:00 2001 From: Sai Hanuma Rahul Date: Sat, 26 Mar 2022 23:10:15 +0530 Subject: [PATCH 031/965] Fixed Typo priority was set to 5 --- .../scheduledtasks/New-ScheduledTaskSettingsSet.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/scheduledtasks/New-ScheduledTaskSettingsSet.md b/docset/winserver2022-ps/scheduledtasks/New-ScheduledTaskSettingsSet.md index 7420ac95af..e20c53c2f5 100644 --- a/docset/winserver2022-ps/scheduledtasks/New-ScheduledTaskSettingsSet.md +++ b/docset/winserver2022-ps/scheduledtasks/New-ScheduledTaskSettingsSet.md @@ -68,7 +68,7 @@ The first command creates a scheduled task action named Cmd and assig The second command creates scheduled task settings that sets a higher priority for the scheduled task, and assigns the **ScheduledTaskSettings** object to the $Stset variable. -The third command registers the scheduled task Task01 to run the task action named Cmd and to use the task settings that have a priority setting of 9. +The third command registers the scheduled task Task01 to run the task action named Cmd and to use the task settings that have a priority setting of 5. This example sets the priority of a scheduled task. From 756320308b3b0cdd90bc49e338de12072d698519 Mon Sep 17 00:00:00 2001 From: VARADHARAJAN K <3296790+RAJU2529@users.noreply.github.com> Date: Sun, 27 Mar 2022 21:50:26 +0530 Subject: [PATCH 032/965] typo correction as per user report #2913 , so i corrected word --- docset/winserver2022-ps/updateservices/Approve-WsusUpdate.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/updateservices/Approve-WsusUpdate.md b/docset/winserver2022-ps/updateservices/Approve-WsusUpdate.md index bca11f9d69..49d473fdca 100644 --- a/docset/winserver2022-ps/updateservices/Approve-WsusUpdate.md +++ b/docset/winserver2022-ps/updateservices/Approve-WsusUpdate.md @@ -44,7 +44,7 @@ This command approves for installation all unapproved updates with a status of f Specifies the action that clients should perform when applying the associated update. The acceptable values for this parameter are: - Install -- Not Approved +- NotApproved - Uninstall ```yaml From 7c5873ecceeef4bee425f9ff0dee7314aeeee3fc Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Thu, 31 Mar 2022 17:26:32 +0530 Subject: [PATCH 033/965] Update New-CIPolicyRule.md Removed -UserPEs as it is only used if you do not provide driver files or rules. --- docset/winserver2019-ps/configci/New-CIPolicyRule.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/configci/New-CIPolicyRule.md b/docset/winserver2019-ps/configci/New-CIPolicyRule.md index 01353de3e7..8a007781ce 100644 --- a/docset/winserver2019-ps/configci/New-CIPolicyRule.md +++ b/docset/winserver2019-ps/configci/New-CIPolicyRule.md @@ -41,7 +41,7 @@ Specify a rule level and an array of **DriverFile** objects or the path of a dri ### Example 1: Create policy rules for drivers ``` -PS C:\> $DriverFiles = Get-SystemDriver -ScanPath '.\temp\' -UserPEs -OmitPaths '.\temp\ConfigCITestBinaries' -NoScript +PS C:\> $DriverFiles = Get-SystemDriver -ScanPath '.\temp\' -OmitPaths '.\temp\ConfigCITestBinaries' -NoScript PS C:\> New-CIPolicyRule -Level FileName -DriverFiles $DriverFiles Scan completed successfully From e33443e926172e73bd74e88ecf367944fc74cbd4 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Thu, 31 Mar 2022 17:32:05 +0530 Subject: [PATCH 034/965] Update Search-ADAccount.md Updated the document to reflect the correct parameter passwordexpired --- docset/winserver2019-ps/activedirectory/Search-ADAccount.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/activedirectory/Search-ADAccount.md b/docset/winserver2019-ps/activedirectory/Search-ADAccount.md index cf28071fab..e8deda7071 100644 --- a/docset/winserver2019-ps/activedirectory/Search-ADAccount.md +++ b/docset/winserver2019-ps/activedirectory/Search-ADAccount.md @@ -291,7 +291,7 @@ Accept wildcard characters: False ``` ### -DateTime -Specifies a distinct time value for **Search-ADAccount** parameters such as *AccountExpiring*, *AccountInactive*, and *PasswordExpiring*. +Specifies a distinct time value for **Search-ADAccount** parameters such as *AccountExpiring*, *AccountInactive*, and *PasswordExpired*. Time is assumed to be local time unless otherwise specified. When a time value is not specified, the time is assumed to midnight local time. From 1a98b87104094fb47c84d50e31e2901a5e35f406 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Thu, 31 Mar 2022 17:33:25 +0530 Subject: [PATCH 035/965] Update Search-ADAccount.md Updated 2016 version of the document --- docset/winserver2016-ps/activedirectory/Search-ADAccount.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2016-ps/activedirectory/Search-ADAccount.md b/docset/winserver2016-ps/activedirectory/Search-ADAccount.md index 99f1423726..15672652ef 100644 --- a/docset/winserver2016-ps/activedirectory/Search-ADAccount.md +++ b/docset/winserver2016-ps/activedirectory/Search-ADAccount.md @@ -291,7 +291,7 @@ Accept wildcard characters: False ``` ### -DateTime -Specifies a distinct time value for **Search-ADAccount** parameters such as *AccountExpiring*, *AccountInactive*, and *PasswordExpiring*. +Specifies a distinct time value for **Search-ADAccount** parameters such as *AccountExpiring*, *AccountInactive*, and *PasswordExpired*. Time is assumed to be local time unless otherwise specified. When a time value is not specified, the time is assumed to midnight local time. From e8dc34129a43c443adfba110c9aaf9f3877b48fe Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Thu, 31 Mar 2022 17:33:59 +0530 Subject: [PATCH 036/965] Update Search-ADAccount.md updated the windows 2022 version --- docset/winserver2022-ps/activedirectory/Search-ADAccount.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/activedirectory/Search-ADAccount.md b/docset/winserver2022-ps/activedirectory/Search-ADAccount.md index bb14c57793..e9357fbbef 100644 --- a/docset/winserver2022-ps/activedirectory/Search-ADAccount.md +++ b/docset/winserver2022-ps/activedirectory/Search-ADAccount.md @@ -291,7 +291,7 @@ Accept wildcard characters: False ``` ### -DateTime -Specifies a distinct time value for **Search-ADAccount** parameters such as *AccountExpiring*, *AccountInactive*, and *PasswordExpiring*. +Specifies a distinct time value for **Search-ADAccount** parameters such as *AccountExpiring*, *AccountInactive*, and *PasswordExpired*. Time is assumed to be local time unless otherwise specified. When a time value is not specified, the time is assumed to midnight local time. From 4d84b7aa69d5ed11ab046803d3d331f9084165a2 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Thu, 31 Mar 2022 17:35:04 +0530 Subject: [PATCH 037/965] Update Search-ADAccount.md Made changes to win 2012r2 --- docset/winserver2012r2-ps/activedirectory/Search-ADAccount.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2012r2-ps/activedirectory/Search-ADAccount.md b/docset/winserver2012r2-ps/activedirectory/Search-ADAccount.md index 8d81d65c86..bfe3b0529a 100644 --- a/docset/winserver2012r2-ps/activedirectory/Search-ADAccount.md +++ b/docset/winserver2012r2-ps/activedirectory/Search-ADAccount.md @@ -297,7 +297,7 @@ Accept wildcard characters: False ``` ### -DateTime -Specifies a distinct time value for Search-ADAccount parameters such as **AccountExpiring**, **AccountInactive**, and **PasswordExpiring**. +Specifies a distinct time value for Search-ADAccount parameters such as **AccountExpiring**, **AccountInactive**, and **PasswordExpired**. Time is assumed to be local time unless otherwise specified. When a time value is not specified, the time is assumed to midnight local time. From a534908c84a40cb3802c86f93bfd607cfcffb3c9 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Fri, 1 Apr 2022 14:42:05 +0530 Subject: [PATCH 038/965] Update docset/winserver2016-ps/activedirectory/Search-ADAccount.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2016-ps/activedirectory/Search-ADAccount.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2016-ps/activedirectory/Search-ADAccount.md b/docset/winserver2016-ps/activedirectory/Search-ADAccount.md index 15672652ef..ad89ab496e 100644 --- a/docset/winserver2016-ps/activedirectory/Search-ADAccount.md +++ b/docset/winserver2016-ps/activedirectory/Search-ADAccount.md @@ -294,7 +294,7 @@ Accept wildcard characters: False Specifies a distinct time value for **Search-ADAccount** parameters such as *AccountExpiring*, *AccountInactive*, and *PasswordExpired*. Time is assumed to be local time unless otherwise specified. -When a time value is not specified, the time is assumed to midnight local time. +When a time value is not specified, the time is assumed to be midnight local time. If you do not specify a date, the date is assumed to be the current date. The following examples show commonly-used syntax to specify a *DateTime* object. From 623219e57e8d6d2296caa6b3e8723c9fa2e5cce4 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Fri, 1 Apr 2022 14:42:12 +0530 Subject: [PATCH 039/965] Update docset/winserver2022-ps/activedirectory/Search-ADAccount.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2022-ps/activedirectory/Search-ADAccount.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/activedirectory/Search-ADAccount.md b/docset/winserver2022-ps/activedirectory/Search-ADAccount.md index e9357fbbef..e6643eb769 100644 --- a/docset/winserver2022-ps/activedirectory/Search-ADAccount.md +++ b/docset/winserver2022-ps/activedirectory/Search-ADAccount.md @@ -294,7 +294,7 @@ Accept wildcard characters: False Specifies a distinct time value for **Search-ADAccount** parameters such as *AccountExpiring*, *AccountInactive*, and *PasswordExpired*. Time is assumed to be local time unless otherwise specified. -When a time value is not specified, the time is assumed to midnight local time. +When a time value is not specified, the time is assumed to be midnight local time. If you do not specify a date, the date is assumed to be the current date. The following examples show commonly-used syntax to specify a *DateTime* object. From 79d34feb2214393080e2c6264d11ebf0981c652e Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Fri, 1 Apr 2022 14:42:16 +0530 Subject: [PATCH 040/965] Update docset/winserver2019-ps/activedirectory/Search-ADAccount.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2019-ps/activedirectory/Search-ADAccount.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/activedirectory/Search-ADAccount.md b/docset/winserver2019-ps/activedirectory/Search-ADAccount.md index e8deda7071..920fa5d096 100644 --- a/docset/winserver2019-ps/activedirectory/Search-ADAccount.md +++ b/docset/winserver2019-ps/activedirectory/Search-ADAccount.md @@ -294,7 +294,7 @@ Accept wildcard characters: False Specifies a distinct time value for **Search-ADAccount** parameters such as *AccountExpiring*, *AccountInactive*, and *PasswordExpired*. Time is assumed to be local time unless otherwise specified. -When a time value is not specified, the time is assumed to midnight local time. +When a time value is not specified, the time is assumed to be midnight local time. If you do not specify a date, the date is assumed to be the current date. The following examples show commonly-used syntax to specify a *DateTime* object. From a55fd149f9ec3c767b3482c65d1d7a1a96524a3b Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Fri, 1 Apr 2022 14:42:21 +0530 Subject: [PATCH 041/965] Update docset/winserver2012r2-ps/activedirectory/Search-ADAccount.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2012r2-ps/activedirectory/Search-ADAccount.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2012r2-ps/activedirectory/Search-ADAccount.md b/docset/winserver2012r2-ps/activedirectory/Search-ADAccount.md index bfe3b0529a..8fdc864ab4 100644 --- a/docset/winserver2012r2-ps/activedirectory/Search-ADAccount.md +++ b/docset/winserver2012r2-ps/activedirectory/Search-ADAccount.md @@ -300,7 +300,7 @@ Accept wildcard characters: False Specifies a distinct time value for Search-ADAccount parameters such as **AccountExpiring**, **AccountInactive**, and **PasswordExpired**. Time is assumed to be local time unless otherwise specified. -When a time value is not specified, the time is assumed to midnight local time. +When a time value is not specified, the time is assumed to be midnight local time. If you do not specify a date, the date is assumed to be the current date. The following examples show commonly-used syntax to specify a **DateTime** object. From 997225cd336b86d883fcd64c01aaf0aad3609aea Mon Sep 17 00:00:00 2001 From: skycommand Date: Sat, 16 Apr 2022 11:55:51 +0430 Subject: [PATCH 042/965] Update docset/winserver2012-ps/bitlocker/Enable-BitLocker.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2012-ps/bitlocker/Enable-BitLocker.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2012-ps/bitlocker/Enable-BitLocker.md b/docset/winserver2012-ps/bitlocker/Enable-BitLocker.md index f265bbf4cf..04188e7110 100644 --- a/docset/winserver2012-ps/bitlocker/Enable-BitLocker.md +++ b/docset/winserver2012-ps/bitlocker/Enable-BitLocker.md @@ -152,7 +152,7 @@ encryption in process, it takes no action. If you use the cmdlet on a drive that paused, it resumes encryption on the volume. By default, this cmdlet encrypts the entire drive. If you use the *UsedSpaceOnly* parameter, it only -encrypts the used space on the disk. This option can significant reduce encryption time. +encrypts the used space on the disk. This option can significantly reduce encryption time. It is common practice to add a recovery password for an operating system volume using the **Add-BitLockerKeyProtector** cmdlet, save the recovery password using the From dca5fa24205de40e2eba7faa7685c1d779e8ed43 Mon Sep 17 00:00:00 2001 From: skycommand Date: Sat, 16 Apr 2022 11:56:16 +0430 Subject: [PATCH 043/965] Update docset/winserver2012-ps/bitlocker/Enable-BitLocker.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2012-ps/bitlocker/Enable-BitLocker.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docset/winserver2012-ps/bitlocker/Enable-BitLocker.md b/docset/winserver2012-ps/bitlocker/Enable-BitLocker.md index 04188e7110..1b259c77e4 100644 --- a/docset/winserver2012-ps/bitlocker/Enable-BitLocker.md +++ b/docset/winserver2012-ps/bitlocker/Enable-BitLocker.md @@ -389,7 +389,8 @@ Accept wildcard characters: False ### -RecoveryPassword Specifies a recovery password. -If you do not specify this parameter, but you do include the *RecoveryPasswordProtector* parameter, the cmdlet creates a random password. +If you do not specify this parameter but include the *RecoveryPasswordProtector* parameter, the cmdlet creates a random password. + You can enter a 48-digit password. The password specified or created acts as a protector for the volume encryption key. From e179d314c6f3428c6f6d6592d5f949d35b231de8 Mon Sep 17 00:00:00 2001 From: skycommand Date: Sat, 16 Apr 2022 11:56:44 +0430 Subject: [PATCH 044/965] Update docset/winserver2012-ps/bitlocker/Enable-BitLocker.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2012-ps/bitlocker/Enable-BitLocker.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2012-ps/bitlocker/Enable-BitLocker.md b/docset/winserver2012-ps/bitlocker/Enable-BitLocker.md index 1b259c77e4..92fc30ecfd 100644 --- a/docset/winserver2012-ps/bitlocker/Enable-BitLocker.md +++ b/docset/winserver2012-ps/bitlocker/Enable-BitLocker.md @@ -554,7 +554,7 @@ Accept wildcard characters: False ### -UsedSpaceOnly -Indicates that BitLocker does not encrypt disk space which contains unused data. +Indicates that BitLocker does not encrypt disk space that contains unused data. ```yaml Type: SwitchParameter From 62c05173d5405aa3439f0a5901d87c1dd5210d24 Mon Sep 17 00:00:00 2001 From: skycommand Date: Sat, 16 Apr 2022 12:06:01 +0430 Subject: [PATCH 045/965] Update docset/winserver2012-ps/bitlocker/Enable-BitLocker.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2012-ps/bitlocker/Enable-BitLocker.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2012-ps/bitlocker/Enable-BitLocker.md b/docset/winserver2012-ps/bitlocker/Enable-BitLocker.md index 92fc30ecfd..eea1c461b9 100644 --- a/docset/winserver2012-ps/bitlocker/Enable-BitLocker.md +++ b/docset/winserver2012-ps/bitlocker/Enable-BitLocker.md @@ -136,7 +136,7 @@ and still maintain confidentiality of passwords. You may optionally select an encryption method. By default, BitLocker uses AES-128 but you can opt AES-256 for stronger security. (Diffuser is not supported.) You may request hardware encryption but -Microsoft strongly advices against it. For further guidance, see the "[ADV180028 Security Advisory][1]". +Microsoft strongly advices against it. For further guidance, see the [ADV180028 Security Advisory][1]. This cmdlet returns a BitLocker volume object. If you choose recovery password as your key protector but do not specify a 48-digit recovery password, this cmdlet generates a random one for you, and From f5cbed442806c7b9085daa49c4ad11e67b0c214c Mon Sep 17 00:00:00 2001 From: skycommand Date: Sat, 16 Apr 2022 12:06:12 +0430 Subject: [PATCH 046/965] Update docset/winserver2012-ps/bitlocker/Enable-BitLocker.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2012-ps/bitlocker/Enable-BitLocker.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2012-ps/bitlocker/Enable-BitLocker.md b/docset/winserver2012-ps/bitlocker/Enable-BitLocker.md index eea1c461b9..c7d213c47c 100644 --- a/docset/winserver2012-ps/bitlocker/Enable-BitLocker.md +++ b/docset/winserver2012-ps/bitlocker/Enable-BitLocker.md @@ -159,7 +159,7 @@ It is common practice to add a recovery password for an operating system volume **Backup-BitLockerKeyProtector** cmdlet, and then enable BitLocker on that volume. This procedure ensures that you have a recovery option. -For an overview of BitLocker, see "[BitLocker Drive Encryption Overview][2]" on Microsoft Docs. +For an overview of BitLocker, see the [BitLocker Drive Encryption Overview][2]. ## EXAMPLES From 9ea456da4c3058d2541a203efb807661d9bbda6f Mon Sep 17 00:00:00 2001 From: skycommand Date: Sat, 16 Apr 2022 12:06:25 +0430 Subject: [PATCH 047/965] Update docset/winserver2012r2-ps/bitlocker/Enable-BitLocker.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2012r2-ps/bitlocker/Enable-BitLocker.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2012r2-ps/bitlocker/Enable-BitLocker.md b/docset/winserver2012r2-ps/bitlocker/Enable-BitLocker.md index 6b6f590a0a..5912714bcf 100644 --- a/docset/winserver2012r2-ps/bitlocker/Enable-BitLocker.md +++ b/docset/winserver2012r2-ps/bitlocker/Enable-BitLocker.md @@ -135,8 +135,8 @@ For a password or PIN key protector, specify a secure string. You can use the and still maintain confidentiality of passwords. You may optionally select an encryption method. By default, BitLocker uses AES-128 but you can opt -AES-256 for stronger security. You may request hardware encryption but Microsoft strongly advices -against it. For further guidance, see the "[ADV180028 Security Advisory][1]". +AES-256 for stronger security. You may request hardware encryption but we strongly advise +against it. For further guidance, see the [ADV180028 Security Advisory][1]. This cmdlet returns a BitLocker volume object. If you choose recovery password as your key protector but do not specify a 48-digit recovery password, this cmdlet generates a random one for you, and From 0f2a982e5ccb50f86ecec29008b961f2b308edb1 Mon Sep 17 00:00:00 2001 From: skycommand Date: Sat, 16 Apr 2022 12:06:42 +0430 Subject: [PATCH 048/965] Update docset/winserver2012r2-ps/bitlocker/Enable-BitLocker.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2012r2-ps/bitlocker/Enable-BitLocker.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2012r2-ps/bitlocker/Enable-BitLocker.md b/docset/winserver2012r2-ps/bitlocker/Enable-BitLocker.md index 5912714bcf..3bb93ee330 100644 --- a/docset/winserver2012r2-ps/bitlocker/Enable-BitLocker.md +++ b/docset/winserver2012r2-ps/bitlocker/Enable-BitLocker.md @@ -147,7 +147,7 @@ If you use startup key or recovery key as part of your key protector, provide a key. This cmdlet stores the name of the file that contains the key in the **KeyFileName** field of the **KeyProtector** field in the BitLocker volume object. -If you use the **Enable-BitLocker** cmdlet on an encrypted volume or on a volume that with +If you use the **Enable-BitLocker** cmdlet on an encrypted volume or on a volume with encryption in process, it takes no action. If you use the cmdlet on a drive that has encryption paused, it resumes encryption on the volume. From 0063d7a3d2e0cfff3ee4ff73abad0eaee5f53eb4 Mon Sep 17 00:00:00 2001 From: skycommand Date: Sat, 16 Apr 2022 12:06:48 +0430 Subject: [PATCH 049/965] Update docset/winserver2012r2-ps/bitlocker/Enable-BitLocker.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2012r2-ps/bitlocker/Enable-BitLocker.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2012r2-ps/bitlocker/Enable-BitLocker.md b/docset/winserver2012r2-ps/bitlocker/Enable-BitLocker.md index 3bb93ee330..5a05226aed 100644 --- a/docset/winserver2012r2-ps/bitlocker/Enable-BitLocker.md +++ b/docset/winserver2012r2-ps/bitlocker/Enable-BitLocker.md @@ -152,7 +152,7 @@ encryption in process, it takes no action. If you use the cmdlet on a drive that paused, it resumes encryption on the volume. By default, this cmdlet encrypts the entire drive. If you use the *UsedSpaceOnly* parameter, it only -encrypts the used space on the disk. This option can significant reduce encryption time. +encrypts the used space on the disk. This option can significantly reduce encryption time. It is common practice to add a recovery password for an operating system volume using the **Add-BitLockerKeyProtector** cmdlet, save the recovery password using the From 3b6b41ba2d6364392448e2fd747c301b50ad5342 Mon Sep 17 00:00:00 2001 From: skycommand Date: Sat, 16 Apr 2022 12:07:03 +0430 Subject: [PATCH 050/965] Update docset/winserver2012r2-ps/bitlocker/Enable-BitLocker.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2012r2-ps/bitlocker/Enable-BitLocker.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2012r2-ps/bitlocker/Enable-BitLocker.md b/docset/winserver2012r2-ps/bitlocker/Enable-BitLocker.md index 5a05226aed..0b53b19aec 100644 --- a/docset/winserver2012r2-ps/bitlocker/Enable-BitLocker.md +++ b/docset/winserver2012r2-ps/bitlocker/Enable-BitLocker.md @@ -159,7 +159,7 @@ It is common practice to add a recovery password for an operating system volume **Backup-BitLockerKeyProtector** cmdlet, and then enable BitLocker on that volume. This procedure ensures that you have a recovery option. -For an overview of BitLocker, see "[BitLocker Drive Encryption Overview][2]" on Microsoft Docs. +For an overview of BitLocker, see the [BitLocker Drive Encryption Overview][2]. ## EXAMPLES From 1a73126e0a67b55b071d502a301dd09ecd4ab68b Mon Sep 17 00:00:00 2001 From: skycommand Date: Sat, 16 Apr 2022 12:12:15 +0430 Subject: [PATCH 051/965] Update docset/winserver2012r2-ps/bitlocker/Enable-BitLocker.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2012r2-ps/bitlocker/Enable-BitLocker.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docset/winserver2012r2-ps/bitlocker/Enable-BitLocker.md b/docset/winserver2012r2-ps/bitlocker/Enable-BitLocker.md index 0b53b19aec..7a51659e5f 100644 --- a/docset/winserver2012r2-ps/bitlocker/Enable-BitLocker.md +++ b/docset/winserver2012r2-ps/bitlocker/Enable-BitLocker.md @@ -389,8 +389,10 @@ Accept wildcard characters: False ### -RecoveryPassword Specifies a recovery password. -If you do not specify this parameter, but you do include the *RecoveryPasswordProtector* parameter, the cmdlet creates a random password. +If you do not specify this parameter but you include the *RecoveryPasswordProtector* parameter, the cmdlet creates a random password. + You can enter a 48-digit password. + The password specified or created acts as a protector for the volume encryption key. ```yaml From bfbf3f5b5395439afc0c0ac761def3703475a503 Mon Sep 17 00:00:00 2001 From: skycommand Date: Sat, 16 Apr 2022 12:14:51 +0430 Subject: [PATCH 052/965] Update docset/winserver2016-ps/bitlocker/Enable-BitLocker.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2016-ps/bitlocker/Enable-BitLocker.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2016-ps/bitlocker/Enable-BitLocker.md b/docset/winserver2016-ps/bitlocker/Enable-BitLocker.md index 0de4756f5f..3d4d47ab83 100644 --- a/docset/winserver2016-ps/bitlocker/Enable-BitLocker.md +++ b/docset/winserver2016-ps/bitlocker/Enable-BitLocker.md @@ -137,8 +137,8 @@ and still maintain confidentiality of passwords. We strongly recommend specifying the encryption method. By default, BitLocker uses XTS-AES-128. You can opt XTS-AES-256 for stronger security. However, if you are encrypting a removable media and intend to use it on Windows 8.1 or Windows Server 2012 R2, you must opt either AES-128 or AES-256 -for backward compatibility. You may request hardware encryption but Microsoft strongly advices -against it. For further guidance, see the "[ADV180028 Security Advisory][1]". +for backward compatibility. You may request hardware encryption but we strongly advise +against it. For further guidance, see the [ADV180028 Security Advisory][1]. This cmdlet returns a BitLocker volume object. If you choose recovery password as your key protector but do not specify a 48-digit recovery password, this cmdlet generates a random one for you, and From 19768d9ae32fd70f5c23bfb0d918a71a6c923666 Mon Sep 17 00:00:00 2001 From: skycommand <17097175+skycommand@users.noreply.github.com> Date: Sat, 16 Apr 2022 12:40:16 +0430 Subject: [PATCH 053/965] Update docset/winserver2016-ps/bitlocker/Enable-BitLocker.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2016-ps/bitlocker/Enable-BitLocker.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2016-ps/bitlocker/Enable-BitLocker.md b/docset/winserver2016-ps/bitlocker/Enable-BitLocker.md index 3d4d47ab83..14566bf4ee 100644 --- a/docset/winserver2016-ps/bitlocker/Enable-BitLocker.md +++ b/docset/winserver2016-ps/bitlocker/Enable-BitLocker.md @@ -149,7 +149,7 @@ If you use startup key or recovery key as part of your key protector, provide a key. This cmdlet stores the name of the file that contains the key in the **KeyFileName** field of the **KeyProtector** field in the BitLocker volume object. -If you use the **Enable-BitLocker** cmdlet on an encrypted volume or on a volume that with +If you use the **Enable-BitLocker** cmdlet on an encrypted volume or on a volume with encryption in process, it takes no action. If you use the cmdlet on a drive that has encryption paused, it resumes encryption on the volume. From f86686831ba85662457384f56dda2ab96ce183ab Mon Sep 17 00:00:00 2001 From: skycommand <17097175+skycommand@users.noreply.github.com> Date: Sat, 16 Apr 2022 12:40:28 +0430 Subject: [PATCH 054/965] Update docset/winserver2016-ps/bitlocker/Enable-BitLocker.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2016-ps/bitlocker/Enable-BitLocker.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2016-ps/bitlocker/Enable-BitLocker.md b/docset/winserver2016-ps/bitlocker/Enable-BitLocker.md index 14566bf4ee..9b83393ebd 100644 --- a/docset/winserver2016-ps/bitlocker/Enable-BitLocker.md +++ b/docset/winserver2016-ps/bitlocker/Enable-BitLocker.md @@ -154,7 +154,7 @@ encryption in process, it takes no action. If you use the cmdlet on a drive that paused, it resumes encryption on the volume. By default, this cmdlet encrypts the entire drive. If you use the *UsedSpaceOnly* parameter, it only -encrypts the used space on the disk. This option can significant reduce encryption time. +encrypts the used space on the disk. This option can significantly reduce encryption time. It is common practice to add a recovery password for an operating system volume using the **Add-BitLockerKeyProtector** cmdlet, save the recovery password using the From fab803f32842fd596f756da458acd8ed77136ba6 Mon Sep 17 00:00:00 2001 From: skycommand <17097175+skycommand@users.noreply.github.com> Date: Sat, 16 Apr 2022 12:40:34 +0430 Subject: [PATCH 055/965] Update docset/winserver2016-ps/bitlocker/Enable-BitLocker.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2016-ps/bitlocker/Enable-BitLocker.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2016-ps/bitlocker/Enable-BitLocker.md b/docset/winserver2016-ps/bitlocker/Enable-BitLocker.md index 9b83393ebd..283332093a 100644 --- a/docset/winserver2016-ps/bitlocker/Enable-BitLocker.md +++ b/docset/winserver2016-ps/bitlocker/Enable-BitLocker.md @@ -161,7 +161,7 @@ It is common practice to add a recovery password for an operating system volume **Backup-BitLockerKeyProtector** cmdlet, and then enable BitLocker on that volume. This procedure ensures that you have a recovery option. -For an overview of BitLocker, see "[BitLocker Drive Encryption Overview][2]" on Microsoft Docs. +For an overview of BitLocker, see the [BitLocker Drive Encryption Overview][2]". ## EXAMPLES From c95a3a2fa25a1f955a8eb5b62e7339633330f90e Mon Sep 17 00:00:00 2001 From: skycommand <17097175+skycommand@users.noreply.github.com> Date: Sat, 16 Apr 2022 12:40:48 +0430 Subject: [PATCH 056/965] Update docset/winserver2019-ps/bitlocker/Enable-BitLocker.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2019-ps/bitlocker/Enable-BitLocker.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2019-ps/bitlocker/Enable-BitLocker.md b/docset/winserver2019-ps/bitlocker/Enable-BitLocker.md index bb64e3adba..5f9f7a98c1 100644 --- a/docset/winserver2019-ps/bitlocker/Enable-BitLocker.md +++ b/docset/winserver2019-ps/bitlocker/Enable-BitLocker.md @@ -137,8 +137,8 @@ and still maintain confidentiality of passwords. We strongly recommend specifying the encryption method. By default, BitLocker uses XTS-AES-128. You can opt XTS-AES-256 for stronger security. However, if you are encrypting a removable media and intend to use it on Windows 8.1 or Windows Server 2012 R2, you must opt either AES-128 or AES-256 -for backward compatibility. You may request hardware encryption but Microsoft strongly advices -against it. For further guidance, see the "[ADV180028 Security Advisory][1]". +for backward compatibility. You may request hardware encryption but we strongly advise +against it. For further guidance, see the [ADV180028 Security Advisory][1]. This cmdlet returns a BitLocker volume object. If you choose recovery password as your key protector but do not specify a 48-digit recovery password, this cmdlet generates a random one for you, and From dfeafdfbf5fc0b89c57b07c73f4d83bd51ec316c Mon Sep 17 00:00:00 2001 From: skycommand <17097175+skycommand@users.noreply.github.com> Date: Sat, 16 Apr 2022 12:40:56 +0430 Subject: [PATCH 057/965] Update docset/winserver2019-ps/bitlocker/Enable-BitLocker.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2019-ps/bitlocker/Enable-BitLocker.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/bitlocker/Enable-BitLocker.md b/docset/winserver2019-ps/bitlocker/Enable-BitLocker.md index 5f9f7a98c1..cbfea42f8d 100644 --- a/docset/winserver2019-ps/bitlocker/Enable-BitLocker.md +++ b/docset/winserver2019-ps/bitlocker/Enable-BitLocker.md @@ -149,7 +149,7 @@ If you use startup key or recovery key as part of your key protector, provide a key. This cmdlet stores the name of the file that contains the key in the **KeyFileName** field of the **KeyProtector** field in the BitLocker volume object. -If you use the **Enable-BitLocker** cmdlet on an encrypted volume or on a volume that with +If you use the **Enable-BitLocker** cmdlet on an encrypted volume or on a volume with encryption in process, it takes no action. If you use the cmdlet on a drive that has encryption paused, it resumes encryption on the volume. From 3d69ad848da3ac36d0ed133d097348b5d0323fd3 Mon Sep 17 00:00:00 2001 From: skycommand <17097175+skycommand@users.noreply.github.com> Date: Sat, 16 Apr 2022 12:41:02 +0430 Subject: [PATCH 058/965] Update docset/winserver2019-ps/bitlocker/Enable-BitLocker.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2019-ps/bitlocker/Enable-BitLocker.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/bitlocker/Enable-BitLocker.md b/docset/winserver2019-ps/bitlocker/Enable-BitLocker.md index cbfea42f8d..f47af05e99 100644 --- a/docset/winserver2019-ps/bitlocker/Enable-BitLocker.md +++ b/docset/winserver2019-ps/bitlocker/Enable-BitLocker.md @@ -154,7 +154,7 @@ encryption in process, it takes no action. If you use the cmdlet on a drive that paused, it resumes encryption on the volume. By default, this cmdlet encrypts the entire drive. If you use the *UsedSpaceOnly* parameter, it only -encrypts the used space on the disk. This option can significant reduce encryption time. +encrypts the used space on the disk. This option can significantly reduce encryption time. It is common practice to add a recovery password for an operating system volume using the **Add-BitLockerKeyProtector** cmdlet, save the recovery password using the From 62b0007db9a0b90ee93cb6486e1c068798f0898f Mon Sep 17 00:00:00 2001 From: skycommand <17097175+skycommand@users.noreply.github.com> Date: Sat, 16 Apr 2022 12:41:10 +0430 Subject: [PATCH 059/965] Update docset/winserver2019-ps/bitlocker/Enable-BitLocker.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2019-ps/bitlocker/Enable-BitLocker.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/bitlocker/Enable-BitLocker.md b/docset/winserver2019-ps/bitlocker/Enable-BitLocker.md index f47af05e99..626c8bdeed 100644 --- a/docset/winserver2019-ps/bitlocker/Enable-BitLocker.md +++ b/docset/winserver2019-ps/bitlocker/Enable-BitLocker.md @@ -161,7 +161,7 @@ It is common practice to add a recovery password for an operating system volume **Backup-BitLockerKeyProtector** cmdlet, and then enable BitLocker on that volume. This procedure ensures that you have a recovery option. -For an overview of BitLocker, see "[BitLocker Drive Encryption Overview][2]" on Microsoft Docs. +For an overview of BitLocker, see the [BitLocker Drive Encryption Overview][2]. ## EXAMPLES From 19c29c406384c7eaa63ae1c4c541e6329143cbb9 Mon Sep 17 00:00:00 2001 From: skycommand <17097175+skycommand@users.noreply.github.com> Date: Sat, 16 Apr 2022 12:41:22 +0430 Subject: [PATCH 060/965] Update docset/winserver2022-ps/bitlocker/Enable-BitLocker.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2022-ps/bitlocker/Enable-BitLocker.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/bitlocker/Enable-BitLocker.md b/docset/winserver2022-ps/bitlocker/Enable-BitLocker.md index c0464424c8..f2c9a666bb 100644 --- a/docset/winserver2022-ps/bitlocker/Enable-BitLocker.md +++ b/docset/winserver2022-ps/bitlocker/Enable-BitLocker.md @@ -137,8 +137,8 @@ and still maintain confidentiality of passwords. We strongly recommend specifying the encryption method. By default, BitLocker uses XTS-AES-128. You can opt XTS-AES-256 for stronger security. However, if you are encrypting a removable media and intend to use it on Windows 8.1 or Windows Server 2012 R2, you must opt either AES-128 or AES-256 -for backward compatibility. You may request hardware encryption but Microsoft strongly advices -against it. For further guidance, see the "[ADV180028 Security Advisory][1]". +for backward compatibility. You may request hardware encryption but we strongly advise +against it. For further guidance, see the [ADV180028 Security Advisory][1]. This cmdlet returns a BitLocker volume object. If you choose recovery password as your key protector but do not specify a 48-digit recovery password, this cmdlet generates a random one for you, and From 66b94cf6bfc048fa03e53baf47c35e056410eee0 Mon Sep 17 00:00:00 2001 From: skycommand <17097175+skycommand@users.noreply.github.com> Date: Sat, 16 Apr 2022 12:41:34 +0430 Subject: [PATCH 061/965] Update docset/winserver2022-ps/bitlocker/Enable-BitLocker.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2022-ps/bitlocker/Enable-BitLocker.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/bitlocker/Enable-BitLocker.md b/docset/winserver2022-ps/bitlocker/Enable-BitLocker.md index f2c9a666bb..5bb828e5cc 100644 --- a/docset/winserver2022-ps/bitlocker/Enable-BitLocker.md +++ b/docset/winserver2022-ps/bitlocker/Enable-BitLocker.md @@ -149,7 +149,7 @@ If you use startup key or recovery key as part of your key protector, provide a key. This cmdlet stores the name of the file that contains the key in the **KeyFileName** field of the **KeyProtector** field in the BitLocker volume object. -If you use the **Enable-BitLocker** cmdlet on an encrypted volume or on a volume that with +If you use the **Enable-BitLocker** cmdlet on an encrypted volume or on a volume with encryption in process, it takes no action. If you use the cmdlet on a drive that has encryption paused, it resumes encryption on the volume. From 557e4434dbacb24324396d623460ef1e2b49c0f4 Mon Sep 17 00:00:00 2001 From: skycommand <17097175+skycommand@users.noreply.github.com> Date: Sat, 16 Apr 2022 12:41:40 +0430 Subject: [PATCH 062/965] Update docset/winserver2022-ps/bitlocker/Enable-BitLocker.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2022-ps/bitlocker/Enable-BitLocker.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/bitlocker/Enable-BitLocker.md b/docset/winserver2022-ps/bitlocker/Enable-BitLocker.md index 5bb828e5cc..1f5e639079 100644 --- a/docset/winserver2022-ps/bitlocker/Enable-BitLocker.md +++ b/docset/winserver2022-ps/bitlocker/Enable-BitLocker.md @@ -154,7 +154,7 @@ encryption in process, it takes no action. If you use the cmdlet on a drive that paused, it resumes encryption on the volume. By default, this cmdlet encrypts the entire drive. If you use the *UsedSpaceOnly* parameter, it only -encrypts the used space on the disk. This option can significant reduce encryption time. +encrypts the used space on the disk. This option can significantly reduce encryption time. It is common practice to add a recovery password for an operating system volume using the **Add-BitLockerKeyProtector** cmdlet, save the recovery password using the From a87c33f229c621220bcf3e2545755be7b3fd6796 Mon Sep 17 00:00:00 2001 From: skycommand <17097175+skycommand@users.noreply.github.com> Date: Sat, 16 Apr 2022 12:42:02 +0430 Subject: [PATCH 063/965] Update docset/winserver2022-ps/bitlocker/Enable-BitLocker.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2022-ps/bitlocker/Enable-BitLocker.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/bitlocker/Enable-BitLocker.md b/docset/winserver2022-ps/bitlocker/Enable-BitLocker.md index 1f5e639079..9fc301bd33 100644 --- a/docset/winserver2022-ps/bitlocker/Enable-BitLocker.md +++ b/docset/winserver2022-ps/bitlocker/Enable-BitLocker.md @@ -161,7 +161,7 @@ It is common practice to add a recovery password for an operating system volume **Backup-BitLockerKeyProtector** cmdlet, and then enable BitLocker on that volume. This procedure ensures that you have a recovery option. -For an overview of BitLocker, see "[BitLocker Drive Encryption Overview][2]" on Microsoft Docs. +For an overview of BitLocker, see the [BitLocker Drive Encryption Overview][2]. ## EXAMPLES From 710e7f6d1d660f9de25c35921ad4100b2bf97336 Mon Sep 17 00:00:00 2001 From: skycommand Date: Wed, 20 Apr 2022 05:05:55 +0430 Subject: [PATCH 064/965] c.e. --- .../bitlocker/Enable-BitLocker.md | 17 +++++++++++------ .../bitlocker/Enable-BitLocker.md | 14 +++++++++----- .../bitlocker/Enable-BitLocker.md | 7 ++++--- .../bitlocker/Enable-BitLocker.md | 5 +++-- .../bitlocker/Enable-BitLocker.md | 5 +++-- 5 files changed, 30 insertions(+), 18 deletions(-) diff --git a/docset/winserver2012-ps/bitlocker/Enable-BitLocker.md b/docset/winserver2012-ps/bitlocker/Enable-BitLocker.md index c7d213c47c..f7617a8135 100644 --- a/docset/winserver2012-ps/bitlocker/Enable-BitLocker.md +++ b/docset/winserver2012-ps/bitlocker/Enable-BitLocker.md @@ -136,7 +136,7 @@ and still maintain confidentiality of passwords. You may optionally select an encryption method. By default, BitLocker uses AES-128 but you can opt AES-256 for stronger security. (Diffuser is not supported.) You may request hardware encryption but -Microsoft strongly advices against it. For further guidance, see the [ADV180028 Security Advisory][1]. +we strongly advise against it. For further guidance, see the [ADV180028 Security Advisory][1]. This cmdlet returns a BitLocker volume object. If you choose recovery password as your key protector but do not specify a 48-digit recovery password, this cmdlet generates a random one for you, and @@ -147,7 +147,7 @@ If you use startup key or recovery key as part of your key protector, provide a key. This cmdlet stores the name of the file that contains the key in the **KeyFileName** field of the **KeyProtector** field in the BitLocker volume object. -If you use the **Enable-BitLocker** cmdlet on an encrypted volume or on a volume that with +If you use the **Enable-BitLocker** cmdlet on an encrypted volume or on a volume with encryption in process, it takes no action. If you use the cmdlet on a drive that has encryption paused, it resumes encryption on the volume. @@ -254,13 +254,16 @@ Accept wildcard characters: False ### -EncryptionMethod -Specifies an encryption method for the encrypted drive. +Specifies an encryption method for the encrypted drive. The accepted values are "Aes128", "Aes256", +and "Hardware". The latter has been deprecated and doesn't appear in the next versions of Windows. +We strongly advise not enabling hardware encryption. For further guidance, see the +[ADV180028 Security Advisory][1]. ```yaml Type: BitLockerVolumeEncryptionMethodOnEnable Parameter Sets: (All) Aliases: -Accepted values: Aes128, Aes256 +Accepted values: Aes128, Aes256, Hardware Required: False Position: Named @@ -271,7 +274,8 @@ Accept wildcard characters: False ### -HardwareEncryption -Indicates that the volume uses hardware encryption. +Indicates that the volume uses hardware encryption. We strongly advise against hardware encryption. +For further guidance, see the [ADV180028 Security Advisory][1]. ```yaml Type: SwitchParameter @@ -392,6 +396,7 @@ Specifies a recovery password. If you do not specify this parameter but include the *RecoveryPasswordProtector* parameter, the cmdlet creates a random password. You can enter a 48-digit password. + The password specified or created acts as a protector for the volume encryption key. ```yaml @@ -554,7 +559,7 @@ Accept wildcard characters: False ### -UsedSpaceOnly -Indicates that BitLocker does not encrypt disk space that contains unused data. +Indicates that BitLocker does not encrypt unallocated disk space. ```yaml Type: SwitchParameter diff --git a/docset/winserver2012r2-ps/bitlocker/Enable-BitLocker.md b/docset/winserver2012r2-ps/bitlocker/Enable-BitLocker.md index 7a51659e5f..6bedb04708 100644 --- a/docset/winserver2012r2-ps/bitlocker/Enable-BitLocker.md +++ b/docset/winserver2012r2-ps/bitlocker/Enable-BitLocker.md @@ -254,13 +254,16 @@ Accept wildcard characters: False ### -EncryptionMethod -Specifies an encryption method for the encrypted drive. +Specifies an encryption method for the encrypted drive. The accepted values are "Aes128", "Aes256", +and "Hardware". The latter has been deprecated and doesn't appear in the next versions of Windows. +We strongly advise not enabling hardware encryption. For further guidance, see the +[ADV180028 Security Advisory][1]. ```yaml Type: BitLockerVolumeEncryptionMethodOnEnable Parameter Sets: (All) Aliases: -Accepted values: Aes128, Aes256 +Accepted values: Aes128, Aes256, Hardware Required: False Position: Named @@ -271,7 +274,8 @@ Accept wildcard characters: False ### -HardwareEncryption -Indicates that the volume uses hardware encryption. +Indicates that the volume uses hardware encryption. We strongly advise against hardware encryption. +For further guidance, see the [ADV180028 Security Advisory][1]. ```yaml Type: SwitchParameter @@ -389,7 +393,7 @@ Accept wildcard characters: False ### -RecoveryPassword Specifies a recovery password. -If you do not specify this parameter but you include the *RecoveryPasswordProtector* parameter, the cmdlet creates a random password. +If you do not specify this parameter but include the *RecoveryPasswordProtector* parameter, the cmdlet creates a random password. You can enter a 48-digit password. @@ -555,7 +559,7 @@ Accept wildcard characters: False ### -UsedSpaceOnly -Indicates that BitLocker does not encrypt disk space which contains unused data. +Indicates that BitLocker does not encrypt unallocated disk space. ```yaml Type: SwitchParameter diff --git a/docset/winserver2016-ps/bitlocker/Enable-BitLocker.md b/docset/winserver2016-ps/bitlocker/Enable-BitLocker.md index 283332093a..a55cabd7d7 100644 --- a/docset/winserver2016-ps/bitlocker/Enable-BitLocker.md +++ b/docset/winserver2016-ps/bitlocker/Enable-BitLocker.md @@ -161,7 +161,7 @@ It is common practice to add a recovery password for an operating system volume **Backup-BitLockerKeyProtector** cmdlet, and then enable BitLocker on that volume. This procedure ensures that you have a recovery option. -For an overview of BitLocker, see the [BitLocker Drive Encryption Overview][2]". +For an overview of BitLocker, see the [BitLocker Drive Encryption Overview][2]. ## EXAMPLES @@ -273,7 +273,8 @@ Accept wildcard characters: False ### -HardwareEncryption -Indicates that the volume uses hardware encryption. +Indicates that the volume uses hardware encryption. We strongly advise against hardware encryption. +For further guidance, see the [ADV180028 Security Advisory][1]. ```yaml Type: SwitchParameter @@ -555,7 +556,7 @@ Accept wildcard characters: False ### -UsedSpaceOnly -Indicates that BitLocker does not encrypt disk space which contains unused data. +Indicates that BitLocker does not encrypt unallocated disk space. ```yaml Type: SwitchParameter diff --git a/docset/winserver2019-ps/bitlocker/Enable-BitLocker.md b/docset/winserver2019-ps/bitlocker/Enable-BitLocker.md index 626c8bdeed..d8e81aab32 100644 --- a/docset/winserver2019-ps/bitlocker/Enable-BitLocker.md +++ b/docset/winserver2019-ps/bitlocker/Enable-BitLocker.md @@ -256,7 +256,8 @@ Accept wildcard characters: False ### -EncryptionMethod -Specifies an encryption method for the encrypted drive. +Indicates that the volume uses hardware encryption. We strongly advise against hardware encryption. +For further guidance, see the [ADV180028 Security Advisory][1]. ```yaml Type: BitLockerVolumeEncryptionMethodOnEnable @@ -555,7 +556,7 @@ Accept wildcard characters: False ### -UsedSpaceOnly -Indicates that BitLocker does not encrypt disk space which contains unused data. +Indicates that BitLocker does not encrypt unallocated disk space. ```yaml Type: SwitchParameter diff --git a/docset/winserver2022-ps/bitlocker/Enable-BitLocker.md b/docset/winserver2022-ps/bitlocker/Enable-BitLocker.md index 9fc301bd33..553f499c00 100644 --- a/docset/winserver2022-ps/bitlocker/Enable-BitLocker.md +++ b/docset/winserver2022-ps/bitlocker/Enable-BitLocker.md @@ -273,7 +273,8 @@ Accept wildcard characters: False ### -HardwareEncryption -Indicates that the volume uses hardware encryption. +Indicates that the volume uses hardware encryption. We strongly advise against hardware encryption. +For further guidance, see the [ADV180028 Security Advisory][1]. ```yaml Type: SwitchParameter @@ -555,7 +556,7 @@ Accept wildcard characters: False ### -UsedSpaceOnly -Indicates that BitLocker does not encrypt disk space which contains unused data. +Indicates that BitLocker does not encrypt unallocated disk space. ```yaml Type: SwitchParameter From 71c7e219204778410e059a9cb1960644c5824b79 Mon Sep 17 00:00:00 2001 From: "Tim Warner [MSFT]" Date: Fri, 29 Apr 2022 07:14:27 -0500 Subject: [PATCH 065/965] Correct examples to use -featureID In my use of this command, passing the -Feature parameters results in an error. Using -featureID work as expected. ------- cc: @JasonGerend --- .../servermigration/Import-SmigServerSetting.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docset/winserver2012r2-ps/servermigration/Import-SmigServerSetting.md b/docset/winserver2012r2-ps/servermigration/Import-SmigServerSetting.md index 8850029ee0..78e22bd3e4 100644 --- a/docset/winserver2012r2-ps/servermigration/Import-SmigServerSetting.md +++ b/docset/winserver2012r2-ps/servermigration/Import-SmigServerSetting.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Windows.ServerManager.Migration.dll-Help.xml Module Name: ServerMigration -ms.date: 12/06/2017 +ms.date: 04/29/2022 online version: https://docs.microsoft.com/powershell/module/servermigration/import-smigserversetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-SmigServerSetting @@ -35,7 +35,7 @@ For online Help about the Windows Server Migration Tools cmdlets, see http://go. ### EXAMPLE 1 ``` -PS C:\> Import-SmigServerSetting -Feature "DHCP" -User All -Group -Path "c:\temp\store" -Verbose +Import-SmigServerSetting -featureID "DHCP" -User All -Group -Path "c:\temp\store" -Verbose ``` This sample command imports the Dynamic Host Configuration Protocol (DHCP) Server, and all other Windows features required by this technology. @@ -50,7 +50,7 @@ By using the -Verbose parameter, the command also displays detailed information ### EXAMPLE 2 ``` -PS C:\> Import-SmigServerSetting -IPConfig All -SourcePhysicalAddress "00-13-D3-F7-A1-3A","00-13-D3-F7-A1-4A" -TargetPhysicalAddress "11-13-D3-F7-A1-3A","11-13-D3-F7-A1-4A" -Path "c:\temp\store" -Password (Read-Host "Enter a Password:" -AsSecureString)-Verbose +Import-SmigServerSetting -IPConfig All -SourcePhysicalAddress "00-13-D3-F7-A1-3A","00-13-D3-F7-A1-4A" -TargetPhysicalAddress "11-13-D3-F7-A1-3A","11-13-D3-F7-A1-4A" -Path "c:\temp\store" -Password (Read-Host -Prompt "Enter a Password:" -AsSecureString)-Verbose ``` This sample command imports the IP configuration from the migration store specified at c:\temp\store, and applies it to the local server. @@ -65,8 +65,8 @@ By using the -Verbose parameter, the command also displays detailed information ### EXAMPLE 3 ``` -PS C:\> $c = Get-SmigServerFeature -Path "c:\temp\store" -PS C:\> Import-SmigServerSetting -Feature $c -Path "c:\temp\store" -Verbose +$c = Get-SmigServerFeature -Path "c:\temp\store" +Import-SmigServerSetting -featureID $c -Path "c:\temp\store" -Verbose ``` This sample command imports a set of Windows features that have already been retrieved by using the Get-SmigServerFeature cmdlet. @@ -83,7 +83,7 @@ By using the -Verbose parameter, the command also displays detailed information ### EXAMPLE 4 ``` -PS C:\> Get-SmigServerFeature -Path "c:\temp\store" | Import-SmigServerSetting -Path "c:\temp\store" -Verbose +Get-SmigServerFeature -Path "c:\temp\store" | Import-SmigServerSetting -Path "c:\temp\store" -Verbose ``` This sample command pipes a set of features that have already been retrieved by using the Get-SmigServerFeature cmdlet to the Import-SmigServerSetting cmdlet. @@ -100,8 +100,8 @@ By using the -Verbose parameter, the command also displays detailed information ### EXAMPLE 5 ``` -PS C:\> $pass = ConvertTo-SecureString -String "password" -AsPlainText -Force -PS C:\> Import-SmigServerSetting -User All -Password $pass -Path "c:\store" -Verbose +$pass = ConvertTo-SecureString -String "password" -AsPlainText -Force +Import-SmigServerSetting -User All -Password $pass -Path "c:\store" -Verbose ``` In this example, the first command convert the store encryption password, represented by "password," to a secure string, and store it in the variable $pass. From f43f82a884227cd5b686c830903170535371ffc9 Mon Sep 17 00:00:00 2001 From: Borislav Velkov Date: Thu, 5 May 2022 16:03:55 +0300 Subject: [PATCH 066/965] Resolved #2875 Update parameter description https://github.com/MicrosoftDocs/windows-powershell-docs/issues/2875 --- docset/winserver2016-ps/appx/Get-AppxPackage.md | 9 +-------- docset/winserver2019-ps/appx/Get-AppxPackage.md | 9 +-------- docset/winserver2022-ps/appx/Get-AppxPackage.md | 9 +-------- 3 files changed, 3 insertions(+), 24 deletions(-) diff --git a/docset/winserver2016-ps/appx/Get-AppxPackage.md b/docset/winserver2016-ps/appx/Get-AppxPackage.md index c6f776bf2e..de28ff6338 100644 --- a/docset/winserver2016-ps/appx/Get-AppxPackage.md +++ b/docset/winserver2016-ps/appx/Get-AppxPackage.md @@ -78,13 +78,6 @@ Accept wildcard characters: False ### -PackageTypeFilter Specifies one or more comma-separated types of packages that the cmdlet gets from the package repository. -Valid values are: - -- Bundle -- Framework -- Main -- Resource -- None By default, this cmdlet returns only packages of types Main and Framework. @@ -92,7 +85,7 @@ By default, this cmdlet returns only packages of types Main and Framework. Type: PackageTypes Parameter Sets: (All) Aliases: -Accepted values: None, Main, Framework, Resource, Bundle, Xap +Accepted values: None, Main, Framework, Resource, Bundle, Xap, Optional Required: False Position: Named diff --git a/docset/winserver2019-ps/appx/Get-AppxPackage.md b/docset/winserver2019-ps/appx/Get-AppxPackage.md index 8899fd79cd..1ec17c0f26 100644 --- a/docset/winserver2019-ps/appx/Get-AppxPackage.md +++ b/docset/winserver2019-ps/appx/Get-AppxPackage.md @@ -78,13 +78,6 @@ Accept wildcard characters: False ### -PackageTypeFilter Specifies one or more comma-separated types of packages that the cmdlet gets from the package repository. -Valid values are: - -- Bundle -- Framework -- Main -- Resource -- None By default, this cmdlet returns only packages of types Main and Framework. @@ -92,7 +85,7 @@ By default, this cmdlet returns only packages of types Main and Framework. Type: PackageTypes Parameter Sets: (All) Aliases: -Accepted values: None, Main, Framework, Resource, Bundle, Xap +Accepted values: None, Main, Framework, Resource, Bundle, Xap, Optional Required: False Position: Named diff --git a/docset/winserver2022-ps/appx/Get-AppxPackage.md b/docset/winserver2022-ps/appx/Get-AppxPackage.md index 9664c3fe4e..a182e57f56 100644 --- a/docset/winserver2022-ps/appx/Get-AppxPackage.md +++ b/docset/winserver2022-ps/appx/Get-AppxPackage.md @@ -78,13 +78,6 @@ Accept wildcard characters: False ### -PackageTypeFilter Specifies one or more comma-separated types of packages that the cmdlet gets from the package repository. -Valid values are: - -- Bundle -- Framework -- Main -- Resource -- None By default, this cmdlet returns only packages of types Main and Framework. @@ -92,7 +85,7 @@ By default, this cmdlet returns only packages of types Main and Framework. Type: PackageTypes Parameter Sets: (All) Aliases: -Accepted values: None, Main, Framework, Resource, Bundle, Xap +Accepted values: None, Main, Framework, Resource, Bundle, Xap, Optional Required: False Position: Named From 645feb372001cd6aec922bbb8b15cd93e6c14a60 Mon Sep 17 00:00:00 2001 From: Borislav Velkov Date: Thu, 5 May 2022 16:16:28 +0300 Subject: [PATCH 067/965] Resolve #2874 Correct output description https://github.com/MicrosoftDocs/windows-powershell-docs/issues/2874 --- .../international/Get-WinUserLanguageList.md | 37 ++++++++++++------- .../international/Get-WinUserLanguageList.md | 37 ++++++++++++------- .../international/Get-WinUserLanguageList.md | 18 ++++----- .../international/Get-WinUserLanguageList.md | 18 ++++----- .../international/Get-WinUserLanguageList.md | 18 ++++----- 5 files changed, 73 insertions(+), 55 deletions(-) diff --git a/docset/winserver2012-ps/international/Get-WinUserLanguageList.md b/docset/winserver2012-ps/international/Get-WinUserLanguageList.md index 979475e1fb..6fa84ded8e 100644 --- a/docset/winserver2012-ps/international/Get-WinUserLanguageList.md +++ b/docset/winserver2012-ps/international/Get-WinUserLanguageList.md @@ -85,24 +85,33 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS ### System.Collections.Generic.List -A list of WinUserLanguage objects that contain one or more languages and associated properties from the current user account's language list. -For information about the Generic.List object, see System.Collections.Generic.List Classhttp://go.microsoft.com/fwlink/?LinkID=243342. +This cmdlet returns a list of **WinUserLanguage** objects that contain one or more languages and associated properties from the current user account's language list. +For information about the **Generic.List** object, see [List(Of T) Class](https://go.microsoft.com/fwlink/?LinkID=243342). -The generic list object supports the following methods: +The generic list object supports the following methods: -- Add("BCP-47") -- Insert(index, "BCP-47") +- Add("`LanguageTag`") +- Insert(index, "`LanguageTag`") - Remove(Index) -The output language object contains the following properties: - -- BCP-47 (READ). A standard language tag that is used to identify languages. For more information, see the [Internet Engineering Task Force (IETF) BCP 47 RFC](https://go.microsoft.com/fwlink/?LinkID=242207). -- Autonym (LP database) (READ). The name of the language in the language itself. -- English name (LP database) (READ). The name of the language in English. -- Localized name (LP database) (READ). The name of the language in the current Windows display language. -- Script (LP database) (READ). The writing system of the language. -- Input methods (READ/WRITE). A list of input method Tablet Input Panel (TIP) strings that are enabled for this language. The enabled Input methods are listed in the format Language ID: Keyboard layout ID. -- Handwriting recognition input mode (READ/WRITE). This value is either 0 (freehand) or 1 (write each character separately). +The output language object contains the following properties: + +- **LanguageTag** (READ). +A standard BCP-47 language tag that is used to identify languages. +For more information, see the [Internet Engineering Task Force (IETF) BCP 47 RFC](https://go.microsoft.com/fwlink/?LinkID=242207). +- **Autonym** (LP database) (READ). +The name of the language in the language itself. +- **EnglishName** (LP database) (READ). +The name of the language in English. +- **LocalizedName** (LP database) (READ). +The name of the language in the current Windows display language. +- **ScriptName** (LP database) (READ). +The writing system of the language. +- **InputMethodTips** (READ/WRITE). +A list of input method Tablet Input Panel (TIP) strings that are enabled for this language. +The enabled Input methods are listed in the format `Language ID: Keyboard layout ID`. +- **Handwriting** (READ/WRITE). +This value is either 0 (freehand) or 1 (write each character separately). ## NOTES diff --git a/docset/winserver2012r2-ps/international/Get-WinUserLanguageList.md b/docset/winserver2012r2-ps/international/Get-WinUserLanguageList.md index 137d0abf1f..5436791f9c 100644 --- a/docset/winserver2012r2-ps/international/Get-WinUserLanguageList.md +++ b/docset/winserver2012r2-ps/international/Get-WinUserLanguageList.md @@ -87,24 +87,33 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS ### System.Collections.Generic.List -A list of WinUserLanguage objects that contain one or more languages and associated properties from the current user account's language list. -For information about the Generic.List object, see List(Of T) Classhttp://go.microsoft.com/fwlink/?LinkID=243342. +This cmdlet returns a list of **WinUserLanguage** objects that contain one or more languages and associated properties from the current user account's language list. +For information about the **Generic.List** object, see [List(Of T) Class](https://go.microsoft.com/fwlink/?LinkID=243342). -The generic list object supports the following methods: +The generic list object supports the following methods: -- Add("BCP-47") -- Insert(index, "BCP-47") +- Add("`LanguageTag`") +- Insert(index, "`LanguageTag`") - Remove(Index) -The output language object contains the following properties: - ---**BCP-47** (READ). A standard language tag that is used to identify languages. For more information, see the Internet Engineering Task Force (IETF) BCP 47 RFChttp://go.microsoft.com/fwlink/?LinkID=242207. ---**Autonym** (LP database) (READ). The name of the language in the language itself. ---**English name** (LP database) (READ). The name of the language in English. ---**Localized name** (LP database) (READ). The name of the language in the current Windows display language. ---**Script** (LP database) (READ). The writing system of the language. ---**Input methods** (READ/WRITE). A list of input method Tablet Input Panel (TIP) strings that are enabled for this language. The enabled Input methods are listed in the format Language ID: Keyboard layout ID. ---**Handwriting recognition input mode** (READ/WRITE). This value is either 0 (freehand) or 1 (write each character separately). +The output language object contains the following properties: + +- **LanguageTag** (READ). +A standard BCP-47 language tag that is used to identify languages. +For more information, see the [Internet Engineering Task Force (IETF) BCP 47 RFC](https://go.microsoft.com/fwlink/?LinkID=242207). +- **Autonym** (LP database) (READ). +The name of the language in the language itself. +- **EnglishName** (LP database) (READ). +The name of the language in English. +- **LocalizedName** (LP database) (READ). +The name of the language in the current Windows display language. +- **ScriptName** (LP database) (READ). +The writing system of the language. +- **InputMethodTips** (READ/WRITE). +A list of input method Tablet Input Panel (TIP) strings that are enabled for this language. +The enabled Input methods are listed in the format `Language ID: Keyboard layout ID`. +- **Handwriting** (READ/WRITE). +This value is either 0 (freehand) or 1 (write each character separately). ## NOTES diff --git a/docset/winserver2016-ps/international/Get-WinUserLanguageList.md b/docset/winserver2016-ps/international/Get-WinUserLanguageList.md index ca0b0399f1..997940e2ca 100644 --- a/docset/winserver2016-ps/international/Get-WinUserLanguageList.md +++ b/docset/winserver2016-ps/international/Get-WinUserLanguageList.md @@ -79,27 +79,27 @@ For information about the **Generic.List** object, see [List(Of T) Class](https: The generic list object supports the following methods: -- Add("BCP-47") -- Insert(index, "BCP-47") +- Add("`LanguageTag`") +- Insert(index, "`LanguageTag`") - Remove(Index) The output language object contains the following properties: -- **BCP-47** (READ). -A standard language tag that is used to identify languages. +- **LanguageTag** (READ). +A standard BCP-47 language tag that is used to identify languages. For more information, see the [Internet Engineering Task Force (IETF) BCP 47 RFC](https://go.microsoft.com/fwlink/?LinkID=242207). - **Autonym** (LP database) (READ). The name of the language in the language itself. -- **English name** (LP database) (READ). +- **EnglishName** (LP database) (READ). The name of the language in English. -- **Localized name** (LP database) (READ). +- **LocalizedName** (LP database) (READ). The name of the language in the current Windows display language. -- **Script** (LP database) (READ). +- **ScriptName** (LP database) (READ). The writing system of the language. -- **Input methods** (READ/WRITE). +- **InputMethodTips** (READ/WRITE). A list of input method Tablet Input Panel (TIP) strings that are enabled for this language. The enabled Input methods are listed in the format `Language ID: Keyboard layout ID`. -- **Handwriting recognition input mode** (READ/WRITE). +- **Handwriting** (READ/WRITE). This value is either 0 (freehand) or 1 (write each character separately). ## NOTES diff --git a/docset/winserver2019-ps/international/Get-WinUserLanguageList.md b/docset/winserver2019-ps/international/Get-WinUserLanguageList.md index 4ce36e9b8c..b13fc9caa9 100644 --- a/docset/winserver2019-ps/international/Get-WinUserLanguageList.md +++ b/docset/winserver2019-ps/international/Get-WinUserLanguageList.md @@ -79,27 +79,27 @@ For information about the **Generic.List** object, see [List(Of T) Class](https: The generic list object supports the following methods: -- Add("BCP-47") -- Insert(index, "BCP-47") +- Add("`LanguageTag`") +- Insert(index, "`LanguageTag`") - Remove(Index) The output language object contains the following properties: -- **BCP-47** (READ). -A standard language tag that is used to identify languages. +- **LanguageTag** (READ). +A standard BCP-47 language tag that is used to identify languages. For more information, see the [Internet Engineering Task Force (IETF) BCP 47 RFC](https://go.microsoft.com/fwlink/?LinkID=242207). - **Autonym** (LP database) (READ). The name of the language in the language itself. -- **English name** (LP database) (READ). +- **EnglishName** (LP database) (READ). The name of the language in English. -- **Localized name** (LP database) (READ). +- **LocalizedName** (LP database) (READ). The name of the language in the current Windows display language. -- **Script** (LP database) (READ). +- **ScriptName** (LP database) (READ). The writing system of the language. -- **Input methods** (READ/WRITE). +- **InputMethodTips** (READ/WRITE). A list of input method Tablet Input Panel (TIP) strings that are enabled for this language. The enabled Input methods are listed in the format `Language ID: Keyboard layout ID`. -- **Handwriting recognition input mode** (READ/WRITE). +- **Handwriting** (READ/WRITE). This value is either 0 (freehand) or 1 (write each character separately). ## NOTES diff --git a/docset/winserver2022-ps/international/Get-WinUserLanguageList.md b/docset/winserver2022-ps/international/Get-WinUserLanguageList.md index 2b1274a2d3..03d1c98e77 100644 --- a/docset/winserver2022-ps/international/Get-WinUserLanguageList.md +++ b/docset/winserver2022-ps/international/Get-WinUserLanguageList.md @@ -79,27 +79,27 @@ For information about the **Generic.List** object, see [List(Of T) Class](https: The generic list object supports the following methods: -- Add("BCP-47") -- Insert(index, "BCP-47") +- Add("`LanguageTag`") +- Insert(index, "`LanguageTag`") - Remove(Index) The output language object contains the following properties: -- **BCP-47** (READ). -A standard language tag that is used to identify languages. +- **LanguageTag** (READ). +A standard BCP-47 language tag that is used to identify languages. For more information, see the [Internet Engineering Task Force (IETF) BCP 47 RFC](https://go.microsoft.com/fwlink/?LinkID=242207). - **Autonym** (LP database) (READ). The name of the language in the language itself. -- **English name** (LP database) (READ). +- **EnglishName** (LP database) (READ). The name of the language in English. -- **Localized name** (LP database) (READ). +- **LocalizedName** (LP database) (READ). The name of the language in the current Windows display language. -- **Script** (LP database) (READ). +- **ScriptName** (LP database) (READ). The writing system of the language. -- **Input methods** (READ/WRITE). +- **InputMethodTips** (READ/WRITE). A list of input method Tablet Input Panel (TIP) strings that are enabled for this language. The enabled Input methods are listed in the format `Language ID: Keyboard layout ID`. -- **Handwriting recognition input mode** (READ/WRITE). +- **Handwriting** (READ/WRITE). This value is either 0 (freehand) or 1 (write each character separately). ## NOTES From 64d0983e417b896c619f3bedeb6259ddc95666fc Mon Sep 17 00:00:00 2001 From: "Tim Warner [MSFT]" Date: Fri, 6 May 2022 09:27:51 -0500 Subject: [PATCH 068/965] Apply suggestions from code review Co-authored-by: Sean Wheeler --- .../Import-SmigServerSetting.md | 22 +++++++++++++------ 1 file changed, 15 insertions(+), 7 deletions(-) diff --git a/docset/winserver2012r2-ps/servermigration/Import-SmigServerSetting.md b/docset/winserver2012r2-ps/servermigration/Import-SmigServerSetting.md index 78e22bd3e4..ee50ac7c69 100644 --- a/docset/winserver2012r2-ps/servermigration/Import-SmigServerSetting.md +++ b/docset/winserver2012r2-ps/servermigration/Import-SmigServerSetting.md @@ -35,7 +35,7 @@ For online Help about the Windows Server Migration Tools cmdlets, see http://go. ### EXAMPLE 1 ``` -Import-SmigServerSetting -featureID "DHCP" -User All -Group -Path "c:\temp\store" -Verbose +Import-SmigServerSetting -FeatureID 'DHCP' -User All -Group -Path 'c:\temp\store' -Verbose ``` This sample command imports the Dynamic Host Configuration Protocol (DHCP) Server, and all other Windows features required by this technology. @@ -50,7 +50,15 @@ By using the -Verbose parameter, the command also displays detailed information ### EXAMPLE 2 ``` -Import-SmigServerSetting -IPConfig All -SourcePhysicalAddress "00-13-D3-F7-A1-3A","00-13-D3-F7-A1-4A" -TargetPhysicalAddress "11-13-D3-F7-A1-3A","11-13-D3-F7-A1-4A" -Path "c:\temp\store" -Password (Read-Host -Prompt "Enter a Password:" -AsSecureString)-Verbose +$parameters = @{ + IPConfig = 'All' + SourcePhysicalAddress = '00-13-D3-F7-A1-3A','00-13-D3-F7-A1-4A' + TargetPhysicalAddress = '11-13-D3-F7-A1-3A','11-13-D3-F7-A1-4A' + Path = 'c:\temp\store' + Password = (Read-Host -Prompt 'Enter a Password:' -AsSecureString) + Verbose = $true +} +Import-SmigServerSetting @parameters ``` This sample command imports the IP configuration from the migration store specified at c:\temp\store, and applies it to the local server. @@ -65,8 +73,8 @@ By using the -Verbose parameter, the command also displays detailed information ### EXAMPLE 3 ``` -$c = Get-SmigServerFeature -Path "c:\temp\store" -Import-SmigServerSetting -featureID $c -Path "c:\temp\store" -Verbose +$c = Get-SmigServerFeature -Path 'c:\temp\store' +Import-SmigServerSetting -FeatureID $c -Path 'c:\temp\store' -Verbose ``` This sample command imports a set of Windows features that have already been retrieved by using the Get-SmigServerFeature cmdlet. @@ -83,7 +91,7 @@ By using the -Verbose parameter, the command also displays detailed information ### EXAMPLE 4 ``` -Get-SmigServerFeature -Path "c:\temp\store" | Import-SmigServerSetting -Path "c:\temp\store" -Verbose +Get-SmigServerFeature -Path 'c:\temp\store' | Import-SmigServerSetting -Path 'c:\temp\store' -Verbose ``` This sample command pipes a set of features that have already been retrieved by using the Get-SmigServerFeature cmdlet to the Import-SmigServerSetting cmdlet. @@ -100,8 +108,8 @@ By using the -Verbose parameter, the command also displays detailed information ### EXAMPLE 5 ``` -$pass = ConvertTo-SecureString -String "password" -AsPlainText -Force -Import-SmigServerSetting -User All -Password $pass -Path "c:\store" -Verbose +$pass = ConvertTo-SecureString -String 'password' -AsPlainText -Force +Import-SmigServerSetting -User All -Password $pass -Path 'c:\store' -Verbose ``` In this example, the first command convert the store encryption password, represented by "password," to a secure string, and store it in the variable $pass. From fd97c521fa5301e6c72b7104da88e8e86df661bd Mon Sep 17 00:00:00 2001 From: Borislav Velkov Date: Sat, 7 May 2022 14:23:02 +0300 Subject: [PATCH 069/965] Apply suggestions from code review Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- .../winserver2012-ps/international/Get-WinUserLanguageList.md | 2 +- .../winserver2012r2-ps/international/Get-WinUserLanguageList.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2012-ps/international/Get-WinUserLanguageList.md b/docset/winserver2012-ps/international/Get-WinUserLanguageList.md index 6fa84ded8e..6598404b15 100644 --- a/docset/winserver2012-ps/international/Get-WinUserLanguageList.md +++ b/docset/winserver2012-ps/international/Get-WinUserLanguageList.md @@ -86,7 +86,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### System.Collections.Generic.List This cmdlet returns a list of **WinUserLanguage** objects that contain one or more languages and associated properties from the current user account's language list. -For information about the **Generic.List** object, see [List(Of T) Class](https://go.microsoft.com/fwlink/?LinkID=243342). +For information about the **Generic.List** object, see [List Class](https://go.microsoft.com/fwlink/?LinkID=243342). The generic list object supports the following methods: diff --git a/docset/winserver2012r2-ps/international/Get-WinUserLanguageList.md b/docset/winserver2012r2-ps/international/Get-WinUserLanguageList.md index 5436791f9c..8408a5c52e 100644 --- a/docset/winserver2012r2-ps/international/Get-WinUserLanguageList.md +++ b/docset/winserver2012r2-ps/international/Get-WinUserLanguageList.md @@ -88,7 +88,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### System.Collections.Generic.List This cmdlet returns a list of **WinUserLanguage** objects that contain one or more languages and associated properties from the current user account's language list. -For information about the **Generic.List** object, see [List(Of T) Class](https://go.microsoft.com/fwlink/?LinkID=243342). +For information about the **Generic.List** object, see [List Class](https://go.microsoft.com/fwlink/?LinkID=243342). The generic list object supports the following methods: From a0ff4b9c76d75a637927f2133b4103e555585d14 Mon Sep 17 00:00:00 2001 From: Borislav Velkov Date: Mon, 9 May 2022 09:25:00 +0300 Subject: [PATCH 070/965] Apply suggestions from code review Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- .../winserver2012-ps/international/Get-WinUserLanguageList.md | 2 +- .../winserver2012r2-ps/international/Get-WinUserLanguageList.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2012-ps/international/Get-WinUserLanguageList.md b/docset/winserver2012-ps/international/Get-WinUserLanguageList.md index 6598404b15..6fa84ded8e 100644 --- a/docset/winserver2012-ps/international/Get-WinUserLanguageList.md +++ b/docset/winserver2012-ps/international/Get-WinUserLanguageList.md @@ -86,7 +86,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### System.Collections.Generic.List This cmdlet returns a list of **WinUserLanguage** objects that contain one or more languages and associated properties from the current user account's language list. -For information about the **Generic.List** object, see [List Class](https://go.microsoft.com/fwlink/?LinkID=243342). +For information about the **Generic.List** object, see [List(Of T) Class](https://go.microsoft.com/fwlink/?LinkID=243342). The generic list object supports the following methods: diff --git a/docset/winserver2012r2-ps/international/Get-WinUserLanguageList.md b/docset/winserver2012r2-ps/international/Get-WinUserLanguageList.md index 8408a5c52e..5436791f9c 100644 --- a/docset/winserver2012r2-ps/international/Get-WinUserLanguageList.md +++ b/docset/winserver2012r2-ps/international/Get-WinUserLanguageList.md @@ -88,7 +88,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### System.Collections.Generic.List This cmdlet returns a list of **WinUserLanguage** objects that contain one or more languages and associated properties from the current user account's language list. -For information about the **Generic.List** object, see [List Class](https://go.microsoft.com/fwlink/?LinkID=243342). +For information about the **Generic.List** object, see [List(Of T) Class](https://go.microsoft.com/fwlink/?LinkID=243342). The generic list object supports the following methods: From b4f6e0451ddc0fe7b763f08fe8fad553913692b2 Mon Sep 17 00:00:00 2001 From: Borislav Velkov Date: Mon, 9 May 2022 11:16:47 +0300 Subject: [PATCH 071/965] Resolve #2853 Updated cmdlet output https://github.com/MicrosoftDocs/windows-powershell-docs/issues/2853 --- .../trustedplatformmodule/Get-Tpm.md | 32 +++++++++++++------ .../trustedplatformmodule/Get-Tpm.md | 32 +++++++++++++------ 2 files changed, 44 insertions(+), 20 deletions(-) diff --git a/docset/winserver2019-ps/trustedplatformmodule/Get-Tpm.md b/docset/winserver2019-ps/trustedplatformmodule/Get-Tpm.md index af171ff15f..d2aa14a957 100644 --- a/docset/winserver2019-ps/trustedplatformmodule/Get-Tpm.md +++ b/docset/winserver2019-ps/trustedplatformmodule/Get-Tpm.md @@ -30,16 +30,28 @@ For more information on TPM, see the [Trusted Platform Module Technology Overvie ### Example 1: Display TPM information ``` PS C:\> Get-Tpm - - -TpmReady : False -TpmPresent : True -ManagedAuthLevel : Full -OwnerAuth : -OwnerClearDisabled : True -AutoProvisioning : Enabled -LockedOut : False -SelfTest : {191, 191, 245, 191...} +``` +```output +TpmPresent : True +TpmReady : True +TpmEnabled : True +TpmActivated : True +TpmOwned : True +RestartPending : True +ManufacturerId : 1229870147 +ManufacturerIdTxt : INTC +ManufacturerVersion : 402.1.0.0 +ManufacturerVersionFull20 : 402.1.0.0 + +ManagedAuthLevel : Full +OwnerAuth : +OwnerClearDisabled : False +AutoProvisioning : Enabled +LockedOut : False +LockoutHealTime : 10 minutes +LockoutCount : 0 +LockoutMax : 31 +SelfTest : {} ``` This command displays information about the TPM of the current computer. diff --git a/docset/winserver2022-ps/trustedplatformmodule/Get-Tpm.md b/docset/winserver2022-ps/trustedplatformmodule/Get-Tpm.md index 5e6595a0e3..71d79c3849 100644 --- a/docset/winserver2022-ps/trustedplatformmodule/Get-Tpm.md +++ b/docset/winserver2022-ps/trustedplatformmodule/Get-Tpm.md @@ -30,16 +30,28 @@ For more information on TPM, see the [Trusted Platform Module Technology Overvie ### Example 1: Display TPM information ``` PS C:\> Get-Tpm - - -TpmReady : False -TpmPresent : True -ManagedAuthLevel : Full -OwnerAuth : -OwnerClearDisabled : True -AutoProvisioning : Enabled -LockedOut : False -SelfTest : {191, 191, 245, 191...} +``` +```output +TpmPresent : True +TpmReady : True +TpmEnabled : True +TpmActivated : True +TpmOwned : True +RestartPending : True +ManufacturerId : 1229870147 +ManufacturerIdTxt : INTC +ManufacturerVersion : 402.1.0.0 +ManufacturerVersionFull20 : 402.1.0.0 + +ManagedAuthLevel : Full +OwnerAuth : +OwnerClearDisabled : False +AutoProvisioning : Enabled +LockedOut : False +LockoutHealTime : 10 minutes +LockoutCount : 0 +LockoutMax : 31 +SelfTest : {} ``` This command displays information about the TPM of the current computer. From 6ca1a1e2ac63f61817feb9f67e560873f731ae17 Mon Sep 17 00:00:00 2001 From: Borislav Velkov Date: Thu, 5 May 2022 16:47:11 +0300 Subject: [PATCH 072/965] Resolves #2859 Fix typo. https://github.com/MicrosoftDocs/windows-powershell-docs/issues/2859 --- docset/winserver2012r2-ps/activedirectory/Search-ADAccount.md | 2 +- docset/winserver2016-ps/activedirectory/Search-ADAccount.md | 2 +- docset/winserver2019-ps/activedirectory/Search-ADAccount.md | 2 +- docset/winserver2022-ps/activedirectory/Search-ADAccount.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docset/winserver2012r2-ps/activedirectory/Search-ADAccount.md b/docset/winserver2012r2-ps/activedirectory/Search-ADAccount.md index 8d81d65c86..df96f22a0b 100644 --- a/docset/winserver2012r2-ps/activedirectory/Search-ADAccount.md +++ b/docset/winserver2012r2-ps/activedirectory/Search-ADAccount.md @@ -323,7 +323,7 @@ This example defines time by using Greenwich Mean Time (GMT). The following example shows how to specify a value as Coordinated Universal Time (UTC). This example represents Monday, April 17, 2006 at 2:22:48 PM UTC. - "2000-04-17T14:22:48.0000000" + "2006-04-17T14:22:48.0000000" The following example shows how to set the **AccountExpiring** parameter to a **DateTime** value of June 18, 2012 at 2:00:00 AM. diff --git a/docset/winserver2016-ps/activedirectory/Search-ADAccount.md b/docset/winserver2016-ps/activedirectory/Search-ADAccount.md index 99f1423726..13ad9cb679 100644 --- a/docset/winserver2016-ps/activedirectory/Search-ADAccount.md +++ b/docset/winserver2016-ps/activedirectory/Search-ADAccount.md @@ -317,7 +317,7 @@ This example defines time by using Greenwich Mean Time (GMT). The following example shows how to specify a value as Coordinated Universal Time (UTC). This example represents Monday, April 17, 2006 at 2:22:48 PM UTC. -- "2000-04-17T14:22:48.0000000" +- "2006-04-17T14:22:48.0000000" The following example shows how to set the *AccountExpiring* parameter to a *DateTime* value of June 18, 2012 at 2:00:00 AM. diff --git a/docset/winserver2019-ps/activedirectory/Search-ADAccount.md b/docset/winserver2019-ps/activedirectory/Search-ADAccount.md index cf28071fab..a4fdd706d2 100644 --- a/docset/winserver2019-ps/activedirectory/Search-ADAccount.md +++ b/docset/winserver2019-ps/activedirectory/Search-ADAccount.md @@ -317,7 +317,7 @@ This example defines time by using Greenwich Mean Time (GMT). The following example shows how to specify a value as Coordinated Universal Time (UTC). This example represents Monday, April 17, 2006 at 2:22:48 PM UTC. -- "2000-04-17T14:22:48.0000000" +- "2006-04-17T14:22:48.0000000" The following example shows how to set the *AccountExpiring* parameter to a *DateTime* value of June 18, 2012 at 2:00:00 AM. diff --git a/docset/winserver2022-ps/activedirectory/Search-ADAccount.md b/docset/winserver2022-ps/activedirectory/Search-ADAccount.md index bb14c57793..adef8e5e1d 100644 --- a/docset/winserver2022-ps/activedirectory/Search-ADAccount.md +++ b/docset/winserver2022-ps/activedirectory/Search-ADAccount.md @@ -317,7 +317,7 @@ This example defines time by using Greenwich Mean Time (GMT). The following example shows how to specify a value as Coordinated Universal Time (UTC). This example represents Monday, April 17, 2006 at 2:22:48 PM UTC. -- "2000-04-17T14:22:48.0000000" +- "2006-04-17T14:22:48.0000000" The following example shows how to set the *AccountExpiring* parameter to a *DateTime* value of June 18, 2012 at 2:00:00 AM. From 46b70b671b1ac068ab50450371dd7ad0c5b8095d Mon Sep 17 00:00:00 2001 From: Borislav Velkov Date: Mon, 9 May 2022 12:19:49 +0300 Subject: [PATCH 073/965] Resolves #2847 Update parameter description https://github.com/MicrosoftDocs/windows-powershell-docs/issues/2847 --- .../pki/New-SelfSignedCertificate.md | 16 ++-------------- .../pki/New-SelfSignedCertificate.md | 16 ++-------------- .../pki/New-SelfSignedCertificate.md | 16 ++-------------- 3 files changed, 6 insertions(+), 42 deletions(-) diff --git a/docset/winserver2016-ps/pki/New-SelfSignedCertificate.md b/docset/winserver2016-ps/pki/New-SelfSignedCertificate.md index ecfde1dc02..0e31b5dc00 100644 --- a/docset/winserver2016-ps/pki/New-SelfSignedCertificate.md +++ b/docset/winserver2016-ps/pki/New-SelfSignedCertificate.md @@ -403,11 +403,6 @@ Accept wildcard characters: False ### -KeyExportPolicy Specifies the policy that governs the export of the private key that is associated with the certificate. -The acceptable values for this parameter are: - -- Exportable -- ExportableEncrypted (default) -- NonExportable The default value of ExportableEncrypted is not compatible with KSP and CSPs that do not allow key export. These include the Microsoft Smart Card Key Storage Provider and the Microsoft Platform Crypto Key Storage Provider. @@ -421,7 +416,7 @@ Accepted values: NonExportable, ExportableEncrypted, Exportable Required: False Position: Named -Default value: None +Default value: ExportableEncrypted Accept pipeline input: False Accept wildcard characters: False ``` @@ -968,13 +963,6 @@ Accept wildcard characters: False ### -Type Specifies the type of certificate that this cmdlet creates. -The acceptable values for this parameter are: - -- CodeSigningCert -- Custom -- DocumentEncryptionCert -- DocumentEncryptionCertLegacyCsp -- SSLServerAuthentication (default) ```yaml Type: CertificateType @@ -984,7 +972,7 @@ Accepted values: Custom, CodeSigningCert, DocumentEncryptionCert, SSLServerAuthe Required: False Position: Named -Default value: None +Default value: SSLServerAuthentication Accept pipeline input: False Accept wildcard characters: False ``` diff --git a/docset/winserver2019-ps/pki/New-SelfSignedCertificate.md b/docset/winserver2019-ps/pki/New-SelfSignedCertificate.md index 8adb994d3b..19c549c4cd 100644 --- a/docset/winserver2019-ps/pki/New-SelfSignedCertificate.md +++ b/docset/winserver2019-ps/pki/New-SelfSignedCertificate.md @@ -403,11 +403,6 @@ Accept wildcard characters: False ### -KeyExportPolicy Specifies the policy that governs the export of the private key that is associated with the certificate. -The acceptable values for this parameter are: - -- Exportable -- ExportableEncrypted (default) -- NonExportable The default value of ExportableEncrypted is not compatible with KSP and CSPs that do not allow key export. These include the Microsoft Smart Card Key Storage Provider and the Microsoft Platform Crypto Key Storage Provider. @@ -421,7 +416,7 @@ Accepted values: NonExportable, ExportableEncrypted, Exportable Required: False Position: Named -Default value: None +Default value: ExportableEncrypted Accept pipeline input: False Accept wildcard characters: False ``` @@ -968,13 +963,6 @@ Accept wildcard characters: False ### -Type Specifies the type of certificate that this cmdlet creates. -The acceptable values for this parameter are: - -- CodeSigningCert -- Custom -- DocumentEncryptionCert -- DocumentEncryptionCertLegacyCsp -- SSLServerAuthentication (default) ```yaml Type: CertificateType @@ -984,7 +972,7 @@ Accepted values: Custom, CodeSigningCert, DocumentEncryptionCert, SSLServerAuthe Required: False Position: Named -Default value: None +Default value: SSLServerAuthentication Accept pipeline input: False Accept wildcard characters: False ``` diff --git a/docset/winserver2022-ps/pki/New-SelfSignedCertificate.md b/docset/winserver2022-ps/pki/New-SelfSignedCertificate.md index cfa4553d30..f8145b08d9 100644 --- a/docset/winserver2022-ps/pki/New-SelfSignedCertificate.md +++ b/docset/winserver2022-ps/pki/New-SelfSignedCertificate.md @@ -403,11 +403,6 @@ Accept wildcard characters: False ### -KeyExportPolicy Specifies the policy that governs the export of the private key that is associated with the certificate. -The acceptable values for this parameter are: - -- Exportable -- ExportableEncrypted (default) -- NonExportable The default value of ExportableEncrypted is not compatible with KSP and CSPs that do not allow key export. These include the Microsoft Smart Card Key Storage Provider and the Microsoft Platform Crypto Key Storage Provider. @@ -421,7 +416,7 @@ Accepted values: NonExportable, ExportableEncrypted, Exportable Required: False Position: Named -Default value: None +Default value: ExportableEncrypted Accept pipeline input: False Accept wildcard characters: False ``` @@ -968,13 +963,6 @@ Accept wildcard characters: False ### -Type Specifies the type of certificate that this cmdlet creates. -The acceptable values for this parameter are: - -- CodeSigningCert -- Custom -- DocumentEncryptionCert -- DocumentEncryptionCertLegacyCsp -- SSLServerAuthentication (default) ```yaml Type: CertificateType @@ -984,7 +972,7 @@ Accepted values: Custom, CodeSigningCert, DocumentEncryptionCert, SSLServerAuthe Required: False Position: Named -Default value: None +Default value: SSLServerAuthentication Accept pipeline input: False Accept wildcard characters: False ``` From 5bb5f53e04c9dcdc0f8b4a40dc6462143508cf4a Mon Sep 17 00:00:00 2001 From: Borislav Velkov Date: Mon, 9 May 2022 13:18:20 +0300 Subject: [PATCH 074/965] Resolves #2842 Fix example https://github.com/MicrosoftDocs/windows-powershell-docs/issues/2842 --- docset/winserver2012-ps/mmagent/Set-MMAgent.md | 2 +- docset/winserver2012r2-ps/mmagent/Set-MMAgent.md | 2 +- docset/winserver2016-ps/mmagent/Set-MMAgent.md | 2 +- docset/winserver2019-ps/mmagent/Set-MMAgent.md | 2 +- docset/winserver2022-ps/mmagent/Set-MMAgent.md | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docset/winserver2012-ps/mmagent/Set-MMAgent.md b/docset/winserver2012-ps/mmagent/Set-MMAgent.md index 41c5b985ec..5db4b4a865 100644 --- a/docset/winserver2012-ps/mmagent/Set-MMAgent.md +++ b/docset/winserver2012-ps/mmagent/Set-MMAgent.md @@ -24,7 +24,7 @@ The Operation Recorder API stores prefetch files (.pf) specific to a particular ### Example 1: Set the maximum number of prefetch files ``` -PS C:\> Set-MMAgent MaxOperationAPIFiles 128 +PS C:\> Set-MMAgent -MaxOperationAPIFiles 128 ``` This command sets the maximum number of prefetch files for scenarios that the Operation Recorder API records to 128. diff --git a/docset/winserver2012r2-ps/mmagent/Set-MMAgent.md b/docset/winserver2012r2-ps/mmagent/Set-MMAgent.md index 32b92af69b..be6521c3bd 100644 --- a/docset/winserver2012r2-ps/mmagent/Set-MMAgent.md +++ b/docset/winserver2012r2-ps/mmagent/Set-MMAgent.md @@ -27,7 +27,7 @@ The Operation Recorder API stores prefetch files (.pf) specific to a particular ### Example 1: Set the maximum number of prefetch files ``` -PS C:\> Set-MMAgent MaxOperationAPIFiles 128 +PS C:\> Set-MMAgent -MaxOperationAPIFiles 128 ``` This command sets the maximum number of prefetch files for scenarios that the Operation Recorder API records to 128. diff --git a/docset/winserver2016-ps/mmagent/Set-MMAgent.md b/docset/winserver2016-ps/mmagent/Set-MMAgent.md index 02558a485c..43376fdb72 100644 --- a/docset/winserver2016-ps/mmagent/Set-MMAgent.md +++ b/docset/winserver2016-ps/mmagent/Set-MMAgent.md @@ -28,7 +28,7 @@ The Operation Recorder API stores prefetch files (.pf) specific to a particular ### Example 1: Set the maximum number of prefetch files ``` -PS C:\> Set-MMAgent MaxOperationAPIFiles 128 +PS C:\> Set-MMAgent -MaxOperationAPIFiles 128 ``` This command sets the maximum number of prefetch files for scenarios that the Operation Recorder API records to 128. diff --git a/docset/winserver2019-ps/mmagent/Set-MMAgent.md b/docset/winserver2019-ps/mmagent/Set-MMAgent.md index 2db1ee99cd..1472bd7342 100644 --- a/docset/winserver2019-ps/mmagent/Set-MMAgent.md +++ b/docset/winserver2019-ps/mmagent/Set-MMAgent.md @@ -28,7 +28,7 @@ The Operation Recorder API stores prefetch files (.pf) specific to a particular ### Example 1: Set the maximum number of prefetch files ``` -PS C:\> Set-MMAgent MaxOperationAPIFiles 128 +PS C:\> Set-MMAgent -MaxOperationAPIFiles 128 ``` This command sets the maximum number of prefetch files for scenarios that the Operation Recorder API records to 128. diff --git a/docset/winserver2022-ps/mmagent/Set-MMAgent.md b/docset/winserver2022-ps/mmagent/Set-MMAgent.md index eb4b185229..7b86347cad 100644 --- a/docset/winserver2022-ps/mmagent/Set-MMAgent.md +++ b/docset/winserver2022-ps/mmagent/Set-MMAgent.md @@ -28,7 +28,7 @@ The Operation Recorder API stores prefetch files (.pf) specific to a particular ### Example 1: Set the maximum number of prefetch files ``` -PS C:\> Set-MMAgent MaxOperationAPIFiles 128 +PS C:\> Set-MMAgent -MaxOperationAPIFiles 128 ``` This command sets the maximum number of prefetch files for scenarios that the Operation Recorder API records to 128. From 46de96accdd07be23a1fb51dfb9c9f97c4db7c48 Mon Sep 17 00:00:00 2001 From: Borislav Velkov Date: Mon, 9 May 2022 13:57:15 +0300 Subject: [PATCH 075/965] Resolves #2828 Add parameter and example https://github.com/MicrosoftDocs/windows-powershell-docs/issues/2828 --- .../Add-ClusterScaleOutFileServerRole.md | 32 +++++++++++++++++-- .../Add-ClusterScaleOutFileServerRole.md | 32 +++++++++++++++++-- 2 files changed, 58 insertions(+), 6 deletions(-) diff --git a/docset/winserver2019-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md b/docset/winserver2019-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md index 2fcbbb45c5..d93c05f495 100644 --- a/docset/winserver2019-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md +++ b/docset/winserver2019-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md @@ -16,7 +16,7 @@ Creates a clustered file server for scale-out application data. ## SYNTAX ``` -Add-ClusterScaleOutFileServerRole [[-Name] ] [-Wait ] [-InputObject ] +Add-ClusterScaleOutFileServerRole [[-Name] ] [-Wait ] [-Infrastructure] [-InputObject ] [-Cluster ] [] ``` @@ -32,8 +32,10 @@ Note: This cmdlet cannot be run remotely without Credential Security Service Pro ## EXAMPLES ### Example 1 -``` +```powershell PS C:\> Add-ClusterScaleOutFileServerRole +``` +```output Name OwnerNode State ---- --------- ----- clusterSOFS CLUSTER-N2 Online @@ -42,8 +44,10 @@ clusterSOFS CLUSTER-N2 This example creates a highly available Scale-out file server role. ### Example 2 -``` +```powershell PS C:\> Add-ClusterScaleOutFileServerRole -Wait 0 +``` +```output Name OwnerNode State ---- --------- ----- clusterSOFS CLUSTER-N2 Pending @@ -52,6 +56,13 @@ clusterSOFS CLUSTER-N2 This example creates a highly available scale out file server role. The cmdlet completes without waiting for all resources to come online. +### Example 3 +```powershell +Add-ClusterScaleOutFileServerRole -Cluster MyCluster -Infrastructure -Name InfraSOFSName +``` + +This example create Scale-Out File Server role - Infrastructure File Server. It will create a single namespace share automatically for the CSV drive (i.e. `\\InfraSOFSName\Volume1`, etc.). In hyper-converged configurations, an Infrastructure SOFS allows an SMB client (Hyper-V host) to communicate with guaranteed Continuous Availability (CA) to the Infrastructure SOFS SMB server. There can be at most only one infrastructure SOFS cluster role on a Failover Cluster. + ## PARAMETERS ### -Cluster @@ -70,6 +81,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Infrastructure +Specifies whether to create Infrastructure File Server Scale-Out File Server role + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -InputObject Specifies the cluster on which to create the highly available scale-out file server. diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md index b63102f11a..6c5af5999b 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md @@ -16,7 +16,7 @@ Creates a clustered file server for scale-out application data. ## SYNTAX ``` -Add-ClusterScaleOutFileServerRole [[-Name] ] [-Wait ] [-InputObject ] +Add-ClusterScaleOutFileServerRole [[-Name] ] [-Wait ] [-Infrastructure] [-InputObject ] [-Cluster ] [] ``` @@ -32,8 +32,10 @@ Note: This cmdlet cannot be run remotely without Credential Security Service Pro ## EXAMPLES ### Example 1 -``` +```powershell PS C:\> Add-ClusterScaleOutFileServerRole +``` +```output Name OwnerNode State ---- --------- ----- clusterSOFS CLUSTER-N2 Online @@ -42,8 +44,10 @@ clusterSOFS CLUSTER-N2 This example creates a highly available Scale-out file server role. ### Example 2 -``` +```powershell PS C:\> Add-ClusterScaleOutFileServerRole -Wait 0 +``` +```output Name OwnerNode State ---- --------- ----- clusterSOFS CLUSTER-N2 Pending @@ -52,6 +56,13 @@ clusterSOFS CLUSTER-N2 This example creates a highly available scale out file server role. The cmdlet completes without waiting for all resources to come online. +### Example 3 +```powershell +Add-ClusterScaleOutFileServerRole -Cluster MyCluster -Infrastructure -Name InfraSOFSName +``` + +This example create Scale-Out File Server role - Infrastructure File Server. It will create a single namespace share automatically for the CSV drive (i.e. `\\InfraSOFSName\Volume1`, etc.). In hyper-converged configurations, an Infrastructure SOFS allows an SMB client (Hyper-V host) to communicate with guaranteed Continuous Availability (CA) to the Infrastructure SOFS SMB server. There can be at most only one infrastructure SOFS cluster role on a Failover Cluster. + ## PARAMETERS ### -Cluster @@ -70,6 +81,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Infrastructure +Specifies whether to create Infrastructure File Server Scale-Out File Server role + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -InputObject Specifies the cluster on which to create the highly available scale-out file server. From 0b2634cccbe2f4abb88ad8016346f5f8989d18ec Mon Sep 17 00:00:00 2001 From: Huzaifa Danish Date: Wed, 30 Mar 2022 16:25:20 -0700 Subject: [PATCH 076/965] Update Get-AppSharedPackageContainer.md --- .../appx/Get-AppSharedPackageContainer.md | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/docset/winserver2022-ps/appx/Get-AppSharedPackageContainer.md b/docset/winserver2022-ps/appx/Get-AppSharedPackageContainer.md index 7ee0a2368c..a2ab230cf7 100644 --- a/docset/winserver2022-ps/appx/Get-AppSharedPackageContainer.md +++ b/docset/winserver2022-ps/appx/Get-AppSharedPackageContainer.md @@ -13,7 +13,7 @@ Gets information about the shared package container. ## SYNTAX ``` -Get-AppSharedPackageContainer [[-Name] ] [[-Id] ] [-AllUsers] [] +Get-AppSharedPackageContainer [[-Name] ] [[-Id] ] [] ``` ## DESCRIPTION @@ -40,21 +40,6 @@ This command shows the packages in any shared package container that has a prefi ## PARAMETERS -### -AllUsers -Get matching packages that are either deployed to any user or are provisioned to the machine. - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -Id Id of the container. Can be acquired by running `Get-AppSharedPackageContainer`. From 46f6a8fe1fc666a1c55ff942fb400bb7b1ca4709 Mon Sep 17 00:00:00 2001 From: Huzaifa Danish Date: Wed, 30 Mar 2022 16:28:02 -0700 Subject: [PATCH 077/965] Update RemoveAppSharedPackage.md --- .../appx/Remove-AppSharedPackageContainer.md | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/docset/winserver2022-ps/appx/Remove-AppSharedPackageContainer.md b/docset/winserver2022-ps/appx/Remove-AppSharedPackageContainer.md index b6c85b8ec4..9ef1de0a6a 100644 --- a/docset/winserver2022-ps/appx/Remove-AppSharedPackageContainer.md +++ b/docset/winserver2022-ps/appx/Remove-AppSharedPackageContainer.md @@ -13,7 +13,7 @@ Removes the shared package container. ## SYNTAX ``` -Remove-AppSharedPackageContainer [-Name] [-ForceApplicationShutdown] [-AllUsers] [] +Remove-AppSharedPackageContainer [-Name] [-ForceApplicationShutdown] [] ``` ## DESCRIPTION @@ -30,21 +30,6 @@ This command removes the shared package container definition with the name Conto ## PARAMETERS -### -AllUsers -Remove matching packages that are deployed to any user. - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -ForceApplicationShutdown Closes all packages in the Shared Package Container. From 9e732c6cc8f3de67c3e39a674f219672a3a743d3 Mon Sep 17 00:00:00 2001 From: Huzaifa Danish Date: Fri, 1 Apr 2022 16:19:19 -0700 Subject: [PATCH 078/965] Revert "Update RemoveAppSharedPackage.md" This reverts commit ad7e71aecd67eb69eee78325d4a3a4dee7740f2b. --- .../appx/Remove-AppSharedPackageContainer.md | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/appx/Remove-AppSharedPackageContainer.md b/docset/winserver2022-ps/appx/Remove-AppSharedPackageContainer.md index 9ef1de0a6a..b6c85b8ec4 100644 --- a/docset/winserver2022-ps/appx/Remove-AppSharedPackageContainer.md +++ b/docset/winserver2022-ps/appx/Remove-AppSharedPackageContainer.md @@ -13,7 +13,7 @@ Removes the shared package container. ## SYNTAX ``` -Remove-AppSharedPackageContainer [-Name] [-ForceApplicationShutdown] [] +Remove-AppSharedPackageContainer [-Name] [-ForceApplicationShutdown] [-AllUsers] [] ``` ## DESCRIPTION @@ -30,6 +30,21 @@ This command removes the shared package container definition with the name Conto ## PARAMETERS +### -AllUsers +Remove matching packages that are deployed to any user. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ForceApplicationShutdown Closes all packages in the Shared Package Container. From 045429375a4c1b0f3ea94b37ced27fa16d20ebff Mon Sep 17 00:00:00 2001 From: Huzaifa Danish Date: Fri, 1 Apr 2022 16:19:38 -0700 Subject: [PATCH 079/965] Revert "Update Get-AppSharedPackageContainer.md" This reverts commit 46271db6eed154e8002f88f0000bffa062da7837. --- .../appx/Get-AppSharedPackageContainer.md | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/appx/Get-AppSharedPackageContainer.md b/docset/winserver2022-ps/appx/Get-AppSharedPackageContainer.md index a2ab230cf7..7ee0a2368c 100644 --- a/docset/winserver2022-ps/appx/Get-AppSharedPackageContainer.md +++ b/docset/winserver2022-ps/appx/Get-AppSharedPackageContainer.md @@ -13,7 +13,7 @@ Gets information about the shared package container. ## SYNTAX ``` -Get-AppSharedPackageContainer [[-Name] ] [[-Id] ] [] +Get-AppSharedPackageContainer [[-Name] ] [[-Id] ] [-AllUsers] [] ``` ## DESCRIPTION @@ -40,6 +40,21 @@ This command shows the packages in any shared package container that has a prefi ## PARAMETERS +### -AllUsers +Get matching packages that are either deployed to any user or are provisioned to the machine. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Id Id of the container. Can be acquired by running `Get-AppSharedPackageContainer`. From 73268fbcc51eb745fe5f0ba310f80d417466a0c4 Mon Sep 17 00:00:00 2001 From: Huzaifa Danish Date: Fri, 1 Apr 2022 16:22:13 -0700 Subject: [PATCH 080/965] Changed help text --- docset/winserver2022-ps/appx/Get-AppSharedPackageContainer.md | 2 +- .../winserver2022-ps/appx/Remove-AppSharedPackageContainer.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/appx/Get-AppSharedPackageContainer.md b/docset/winserver2022-ps/appx/Get-AppSharedPackageContainer.md index 7ee0a2368c..2b5c4beace 100644 --- a/docset/winserver2022-ps/appx/Get-AppSharedPackageContainer.md +++ b/docset/winserver2022-ps/appx/Get-AppSharedPackageContainer.md @@ -41,7 +41,7 @@ This command shows the packages in any shared package container that has a prefi ## PARAMETERS ### -AllUsers -Get matching packages that are either deployed to any user or are provisioned to the machine. +Unsupported. Will result in "A parameter cannot be found that matches parameter name" error. ```yaml Type: SwitchParameter diff --git a/docset/winserver2022-ps/appx/Remove-AppSharedPackageContainer.md b/docset/winserver2022-ps/appx/Remove-AppSharedPackageContainer.md index b6c85b8ec4..1a4c3ee7cc 100644 --- a/docset/winserver2022-ps/appx/Remove-AppSharedPackageContainer.md +++ b/docset/winserver2022-ps/appx/Remove-AppSharedPackageContainer.md @@ -31,7 +31,7 @@ This command removes the shared package container definition with the name Conto ## PARAMETERS ### -AllUsers -Remove matching packages that are deployed to any user. +Unsupported. Will result in "A parameter cannot be found that matches parameter name" error. ```yaml Type: SwitchParameter From 8170cefaed6aed0df954859b1b0aab87d5a27bfc Mon Sep 17 00:00:00 2001 From: Huzaifa Danish Date: Mon, 25 Apr 2022 12:51:29 -0700 Subject: [PATCH 081/965] Changed error message --- docset/winserver2022-ps/appx/Get-AppSharedPackageContainer.md | 2 +- .../winserver2022-ps/appx/Remove-AppSharedPackageContainer.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/appx/Get-AppSharedPackageContainer.md b/docset/winserver2022-ps/appx/Get-AppSharedPackageContainer.md index 2b5c4beace..2788fd4c73 100644 --- a/docset/winserver2022-ps/appx/Get-AppSharedPackageContainer.md +++ b/docset/winserver2022-ps/appx/Get-AppSharedPackageContainer.md @@ -41,7 +41,7 @@ This command shows the packages in any shared package container that has a prefi ## PARAMETERS ### -AllUsers -Unsupported. Will result in "A parameter cannot be found that matches parameter name" error. +Unsupported. Will result in "-AllUsers functionality is not yet implemented" error. ```yaml Type: SwitchParameter diff --git a/docset/winserver2022-ps/appx/Remove-AppSharedPackageContainer.md b/docset/winserver2022-ps/appx/Remove-AppSharedPackageContainer.md index 1a4c3ee7cc..3b44e52221 100644 --- a/docset/winserver2022-ps/appx/Remove-AppSharedPackageContainer.md +++ b/docset/winserver2022-ps/appx/Remove-AppSharedPackageContainer.md @@ -31,7 +31,7 @@ This command removes the shared package container definition with the name Conto ## PARAMETERS ### -AllUsers -Unsupported. Will result in "A parameter cannot be found that matches parameter name" error. +Unsupported. Will result in "-AllUsers functionality is not yet implemented" error. ```yaml Type: SwitchParameter From d13bdc43173b30ce99256f0edfc64bb2cf7badf9 Mon Sep 17 00:00:00 2001 From: Borislav Velkov Date: Tue, 10 May 2022 16:40:02 +0300 Subject: [PATCH 082/965] Resolves #2807 Fix example https://github.com/MicrosoftDocs/windows-powershell-docs/issues/2807 --- .../winserver2016-ps/dnsserver/Set-DnsServerResourceRecord.md | 2 +- .../winserver2022-ps/dnsserver/Set-DnsServerResourceRecord.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2016-ps/dnsserver/Set-DnsServerResourceRecord.md b/docset/winserver2016-ps/dnsserver/Set-DnsServerResourceRecord.md index 99a2a80d64..5707c028fe 100644 --- a/docset/winserver2016-ps/dnsserver/Set-DnsServerResourceRecord.md +++ b/docset/winserver2016-ps/dnsserver/Set-DnsServerResourceRecord.md @@ -32,7 +32,7 @@ This cmdlet cannot change the Name or Type of a DNS server resource record objec ### Example 1: Change the timespan of a resource record ``` PS C:\> $OldObj = Get-DnsServerResourceRecord -Name "Host01" -ZoneName "contoso.com" -RRType "A" -PS C:\> $NewObj = $OldObj.Clone() +PS C:\> $NewObj = [ciminstance]::new($OldObj) PS C:\> $NewObj.TimeToLive = [System.TimeSpan]::FromHours(2) PS C:\> Set-DnsServerResourceRecord -NewInputObject $NewObj -OldInputObject $OldObj -ZoneName "contoso.com" -PassThru diff --git a/docset/winserver2022-ps/dnsserver/Set-DnsServerResourceRecord.md b/docset/winserver2022-ps/dnsserver/Set-DnsServerResourceRecord.md index 8a37688244..3dc637124e 100644 --- a/docset/winserver2022-ps/dnsserver/Set-DnsServerResourceRecord.md +++ b/docset/winserver2022-ps/dnsserver/Set-DnsServerResourceRecord.md @@ -32,7 +32,7 @@ This cmdlet cannot change the Name or Type of a DNS server resource record objec ### Example 1: Change the timespan of a resource record ``` PS C:\> $OldObj = Get-DnsServerResourceRecord -Name "Host01" -ZoneName "contoso.com" -RRType "A" -PS C:\> $NewObj = $OldObj.Clone() +PS C:\> $NewObj = [ciminstance]::new($OldObj) PS C:\> $NewObj.TimeToLive = [System.TimeSpan]::FromHours(2) PS C:\> Set-DnsServerResourceRecord -NewInputObject $NewObj -OldInputObject $OldObj -ZoneName "contoso.com" -PassThru From d9d1d704b6dc90577154c9471e520e6106e61cc8 Mon Sep 17 00:00:00 2001 From: Borislav Velkov Date: Tue, 10 May 2022 16:49:21 +0300 Subject: [PATCH 083/965] Apply suggestions from code review Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- .../failoverclusters/Add-ClusterScaleOutFileServerRole.md | 8 ++++---- .../failoverclusters/Add-ClusterScaleOutFileServerRole.md | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docset/winserver2019-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md b/docset/winserver2019-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md index d93c05f495..6bb2c1cc23 100644 --- a/docset/winserver2019-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md +++ b/docset/winserver2019-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md @@ -41,7 +41,7 @@ Name OwnerNode clusterSOFS CLUSTER-N2 Online ``` -This example creates a highly available Scale-out file server role. +This example creates a highly available scale-out file server role. ### Example 2 ```powershell @@ -53,7 +53,7 @@ Name OwnerNode clusterSOFS CLUSTER-N2 Pending ``` -This example creates a highly available scale out file server role. +This example creates a highly available scale-out file server role. The cmdlet completes without waiting for all resources to come online. ### Example 3 @@ -61,7 +61,7 @@ The cmdlet completes without waiting for all resources to come online. Add-ClusterScaleOutFileServerRole -Cluster MyCluster -Infrastructure -Name InfraSOFSName ``` -This example create Scale-Out File Server role - Infrastructure File Server. It will create a single namespace share automatically for the CSV drive (i.e. `\\InfraSOFSName\Volume1`, etc.). In hyper-converged configurations, an Infrastructure SOFS allows an SMB client (Hyper-V host) to communicate with guaranteed Continuous Availability (CA) to the Infrastructure SOFS SMB server. There can be at most only one infrastructure SOFS cluster role on a Failover Cluster. +This example creates an infrastructure file server scale-out file server role. It automatically creates a single namespace share for the CSV drive (such as `\\InfraSOFSName\Volume1`). In hyper-converged configurations, an infrastructure scale-out file server allows an SMB client (Hyper-V host) to communicate with guaranteed continuous availability with the infrastructure scale-out SMB file server. There can be at most only one infrastructure scale-out file server cluster role on a failover cluster. ## PARAMETERS @@ -82,7 +82,7 @@ Accept wildcard characters: False ``` ### -Infrastructure -Specifies whether to create Infrastructure File Server Scale-Out File Server role +Specifies whether to create an infrastructure file server scale-out file server role. ```yaml Type: SwitchParameter diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md index 6c5af5999b..62eaeb9af2 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md @@ -41,7 +41,7 @@ Name OwnerNode clusterSOFS CLUSTER-N2 Online ``` -This example creates a highly available Scale-out file server role. +This example creates a highly available scale-out file server role. ### Example 2 ```powershell @@ -61,7 +61,7 @@ The cmdlet completes without waiting for all resources to come online. Add-ClusterScaleOutFileServerRole -Cluster MyCluster -Infrastructure -Name InfraSOFSName ``` -This example create Scale-Out File Server role - Infrastructure File Server. It will create a single namespace share automatically for the CSV drive (i.e. `\\InfraSOFSName\Volume1`, etc.). In hyper-converged configurations, an Infrastructure SOFS allows an SMB client (Hyper-V host) to communicate with guaranteed Continuous Availability (CA) to the Infrastructure SOFS SMB server. There can be at most only one infrastructure SOFS cluster role on a Failover Cluster. +This example creates an infrastructure file server scale-out file server role. It automatically creates a single namespace share for the CSV drive (such as `\\InfraSOFSName\Volume1`). In hyper-converged configurations, an infrastructure scale-out file server allows an SMB client (Hyper-V host) to communicate with guaranteed continuous availability with the infrastructure scale-out SMB file server. There can be at most only one infrastructure scale-out file server cluster role on a failover cluster. ## PARAMETERS @@ -82,7 +82,7 @@ Accept wildcard characters: False ``` ### -Infrastructure -Specifies whether to create Infrastructure File Server Scale-Out File Server role +Specifies whether to create infrastructure file server scale-out file server role. ```yaml Type: SwitchParameter From f90e1865a718beb6f49ffe3cc809bff9ab65078b Mon Sep 17 00:00:00 2001 From: Tami Fosmark Date: Sun, 15 May 2022 14:50:19 -0700 Subject: [PATCH 084/965] fix redirects: add 2022 versions Redirects not working for: -/powershell/module/pkiclient -/powershell/module/pkiclient/export-pfxcertificate -/powershell/module/pkiclient/new-selfsignedcertificate --- .openpublishing.redirection.json | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/.openpublishing.redirection.json b/.openpublishing.redirection.json index 01710b3930..ff8686836e 100644 --- a/.openpublishing.redirection.json +++ b/.openpublishing.redirection.json @@ -5200,6 +5200,21 @@ "redirect_url": "/powershell/module/windowsdeveloperlicense/WindowsDeveloperLicense?view=windowsserver2019-ps", "redirect_document_id": false }, + { + "source_path": "docset/winserver2022-ps/pkiclient/Export-PfxCertificate.md", + "redirect_url": "/powershell/module/pki/Export-PfxCertificate?view=windowsserver2022-ps", + "redirect_document_id": false + }, + { + "source_path": "docset/winserver2022-ps/pkiclient/PKIClient.md", + "redirect_url": "/powershell/module/pki/?view=windowsserver2022-ps", + "redirect_document_id": false + }, + { + "source_path": "docset/winserver2022-ps/pkiclient/New-SelfSignedCertificate.md", + "redirect_url": "/powershell/module/pki/New-SelfSignedCertificate?view=winserver2022-ps", + "redirect_document_id": false + }, { "source_path": "docset/winserver2022-ps/remotedesktop/Set-RDDeploymentGatewayConfiguration.md", "redirect_url": "/powershell/module/rdmgmt/Set-RDDeploymentGatewayConfiguration.md?view=windowsserver2022-ps", @@ -5406,4 +5421,4 @@ "redirect_document_id": false } ] -} \ No newline at end of file +} From 68aed7255f2d9b7483e463d29f5ade229813f365 Mon Sep 17 00:00:00 2001 From: valemieux <98555474+valemieux@users.noreply.github.com> Date: Fri, 20 May 2022 16:14:31 -0700 Subject: [PATCH 085/965] 29447660 - Add cmdlet multiple packaged app warning --- .../configci/New-CIPolicyRule.md | 92 +++++++++++++------ 1 file changed, 64 insertions(+), 28 deletions(-) diff --git a/docset/winserver2022-ps/configci/New-CIPolicyRule.md b/docset/winserver2022-ps/configci/New-CIPolicyRule.md index 7fd818f834..47aadbe184 100644 --- a/docset/winserver2022-ps/configci/New-CIPolicyRule.md +++ b/docset/winserver2022-ps/configci/New-CIPolicyRule.md @@ -202,43 +202,79 @@ This command generates a filepath rule for the specific path verbatim string. Th ### Example 5: Create a policy rule for a packaged application and its dependencies ``` -PS C:\> $package = Get-AppxPackage -Name *Microsoft.Whiteboard* -PS C:\> $package_dependencies = $package.Dependencies - -PS C:\> $package_rule = New-CIPolicyRule -Package $package -PS C:\> $package_rule += New-CIPolicyRule -Package $dependency[0] # repeat for all dependencies in array -``` -```output -PS C:\> $package_rule - - -Name : Microsoft.Whiteboard_8wekyb3d8bbwe FileRule -Id : ID_ALLOW_A_D +PS C:\> $packages = Get-AppxPackage -Name *Microsoft* +PS C:\> $packages + +Name              : Microsoft.NET.Native.Runtime.1.4 +Publisher         : CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US +Architecture      : X86 +ResourceId        : +Version           : 1.4.24201.0 +PackageFullName   : Microsoft.NET.Native.Runtime.1.4_1.4.24201.0_x86__8wekyb3d8bbwe +InstallLocation   : C:\Program Files\WindowsApps\Microsoft.NET.Native.Runtime.1.4_1.4.24201.0_x86__8wekyb3d8bbwe +IsFramework       : True +PackageFamilyName : Microsoft.NET.Native.Runtime.1.4_8wekyb3d8bbwe +PublisherId       : 8wekyb3d8bbwe +IsResourcePackage : False +IsBundle          : False +IsDevelopmentMode : False +NonRemovable      : False +IsPartiallyStaged : False +SignatureKind     : Store +Status            : Ok +... +Name              : Microsoft.NET.Native.Runtime.1.4 +Publisher         : CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US +Architecture      : X64 +ResourceId        : +Version           : 1.4.24201.0 +PackageFullName   : Microsoft.NET.Native.Runtime.1.4_1.4.24201.0_x64__8wekyb3d8bbwe +InstallLocation   : C:\Program Files\WindowsApps\Microsoft.NET.Native.Runtime.1.4_1.4.24201.0_x64__8wekyb3d8bbwe +IsFramework       : True +PackageFamilyName : Microsoft.NET.Native.Runtime.1.4_8wekyb3d8bbwe +PublisherId       : 8wekyb3d8bbwe +IsResourcePackage : False +IsBundle          : False +IsDevelopmentMode : False +NonRemovable      : False +IsPartiallyStaged : False +SignatureKind     : Store +Status            : Ok + +$package_dependencies = $packages.Dependencies +$package_rule = New-CIPolicyRule -Package $packages[0] #repeat for all desired packages in the array +$package_rule += New-CIPolicyRule -Package $package_dependencies[0] # repeat for all dependencies in the array +$package_rule + +Name : Microsoft.NET.Native.Runtime.1.4_8wekyb3d8bbwe FileRule +Id : ID_ALLOW_A_1 TypeId : Allow -Root : -FileVersionRef : -AppIDRef : +Root : +FileVersionRef : +AppIDRef : Wellknown : False -Ekus : -Exceptions : -FileAttributes : +Ekus : +Exceptions : +FileAttributes : FileException : False UserMode : True -attributes : {[AppIDs, ], [MinimumFileVersion, 0.0.0.0], [PackageFamilyName, Microsoft.Whiteboard_8wekyb3d8bbwe], [PackageVersion, 21.10503.5662.0]} +attributes : {[AppIDs, ], [MinimumFileVersion, 0.0.0.0], [PackageFamilyName, + Microsoft.NET.Native.Runtime.1.4_8wekyb3d8bbwe], [PackageVersion, 1.4.24201.0]} -Name : Microsoft.NET.Native.Runtime.2.2_8wekyb3d8bbwe FileRule -Id : ID_ALLOW_A_E +Name : Microsoft.NET.Native.Framework.2.2_8wekyb3d8bbwe FileRule +Id : ID_ALLOW_A_2 TypeId : Allow -Root : -FileVersionRef : -AppIDRef : +Root : +FileVersionRef : +AppIDRef : Wellknown : False -Ekus : -Exceptions : -FileAttributes : +Ekus : +Exceptions : +FileAttributes : FileException : False UserMode : True -attributes : {[AppIDs, ], [MinimumFileVersion, 0.0.0.0], [PackageFamilyName, Microsoft.NET.Native.Runtime.2.2_8wekyb3d8bbwe], [PackageVersion, 2.2.28604.0]} +attributes : {[AppIDs, ], [MinimumFileVersion, 0.0.0.0], [PackageFamilyName, + Microsoft.NET.Native.Framework.2.2_8wekyb3d8bbwe], [PackageVersion, 2.2.29512.0]} ``` This set of commands finds a packaged application matching the specified name and generates an allow rule for the packaged application and its dependencies. From ac3d97766c390d5fe46e0acdc7e69f776fe014d3 Mon Sep 17 00:00:00 2001 From: Denise Vangel-MSFT Date: Mon, 23 May 2022 16:03:02 -0700 Subject: [PATCH 086/965] Update New-CIPolicyRule.md --- docset/winserver2022-ps/configci/New-CIPolicyRule.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/configci/New-CIPolicyRule.md b/docset/winserver2022-ps/configci/New-CIPolicyRule.md index 47aadbe184..7473d23dc0 100644 --- a/docset/winserver2022-ps/configci/New-CIPolicyRule.md +++ b/docset/winserver2022-ps/configci/New-CIPolicyRule.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.ConfigCI.Commands.dll-Help.xml Module Name: ConfigCI -ms.date: 12/20/2016 +ms.date: 05/23/2022 online version: https://docs.microsoft.com/powershell/module/configci/new-cipolicyrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-CIPolicyRule From abd2567bd1b03c8bbb15160e3aeeb93319e286c2 Mon Sep 17 00:00:00 2001 From: mohitp930 <103079000+mohitp930@users.noreply.github.com> Date: Tue, 24 May 2022 12:31:22 -0400 Subject: [PATCH 087/965] [BrokenLinksH2] --- .../winserver2016-ps/get-started.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docset/docs-conceptual/winserver2016-ps/get-started.md b/docset/docs-conceptual/winserver2016-ps/get-started.md index fced951871..066ee31e39 100644 --- a/docset/docs-conceptual/winserver2016-ps/get-started.md +++ b/docset/docs-conceptual/winserver2016-ps/get-started.md @@ -21,7 +21,7 @@ computer. For more information, see | Module name | Title and link to Web version | | - | - | -| ActiveDirectory | [Active Directory Domain Services Administration](/powershell/module/addsadministration) | +| ActiveDirectory | [Active Directory Domain Services Administration](/powershell/module/activedirectory) | | ADCSAdministration | [Active Directory Certificate Services Administration](/powershell/module/adcsadministration) | | ADCSDeployment | [Active Directory Certificate Services Deployment](/powershell/module/adcsdeployment) | | ADDSDeployment | [Active Directory Domain Services Deployment](/powershell/module/addsdeployment) | @@ -48,7 +48,7 @@ computer. For more information, see | Dfsn | [Distributed File System (DFS) Namespaces](/powershell/module/dfsn/) | | Dfsr | [DFS Replication](/powershell/module/dfsr) | | DHCPServer | [DHCP Server](/powershell/module/dhcpserver) | -| DirectAccessClientComponent | [Direct Access client](/powershell/module/directaccessclientcomponent) | +| DirectAccessClientComponent | [Direct Access client](/powershell/module/directaccessclientcomponents) | | DISM | [DISM](/powershell/module/dism) | | DNSClient | [DNS client](/powershell/module/dnsclient) | | DNSServer | [DNS Server](/powershell/module/dnsserver) | @@ -71,7 +71,7 @@ computer. For more information, see | Iscsi | [iSCSI](/powershell/module/iscsi) | | IscsiTarget | [iSCSI Target](/powershell/module/iscsitarget) | | KDS | [Key Distribution Server](/powershell/module/kds) | -| Microsoft.Windows.ServerManager.Migration | [Server Migration](/powershell/module/Microsoft.Windows.ServerManager.Migration) | +| Microsoft.Windows.ServerManager.Migration | [Server Migration](/powershell/module/servermigration/) | | MMAgent | [Memory Management Agent](/powershell/module/mmagent) | | Mpio | [MPIO](/powershell/module/mpio) | | MSDTC | [Distributed Transaction Coordinator](/powershell/module/msdtc) | @@ -79,7 +79,7 @@ computer. For more information, see | Multipoint | [MultiPoint Services](/powershell/module/multipoint) | | MultiPointVdi | [Multipoint VDI](/powershell/module/multipointvdi) | | NanoServerImageGenerator | [Nano Server Image Generator](/powershell/module/nanoserverimagegenerator) | -| NetLdpAgent | [NetLdpAgent](/powershell/module/netldpagent) | +| NetLdpAgent | [NetLdpAgent](/powershell/module/netlldpagent) | | NetAdapter | [Network Adapter](/powershell/module/netadapter) | | NetConnection | [Network connection](/powershell/module/netconnection) | | NetEventPacketCapture | [Network Event Packet Capture](/powershell/module/neteventpacketcapture) | @@ -99,7 +99,7 @@ computer. For more information, see | NFS | [Network File System](/powershell/module/nfs) | | NPS | [Network Policy Server](/powershell/module/nps) | | PCSVDevice | [Physical Computer System View device](/powershell/module/pcsvdevice) | -| PKIClient | [Public Key Infrastructure](/powershell/module/pkiclient) | +| PKIClient | [Public Key Infrastructure](/powershell/module/pki) | | PlatformIdentifier | [Platform Identifier](/powershell/module/platformidentifier) | | PnpDevice | [Plug and Play](/powershell/module/pnpdevice) | | PrintManagement | [Print management](/powershell/module/printmanagement) | @@ -113,7 +113,7 @@ computer. For more information, see | ServerManager | [Server Manager](/powershell/module/servermanager) | | ServerManagerTasks | [Server Manager tasks](/powershell/module/servermanagertasks) | | ShieldedVMDataFile | [Shielded Virtual Machine data file](/powershell/module/shieldedvmdatafile) | -| ShieldedVMProvisioning | [Shielded Virtual Machine provisioning](/powershell/module/shieldedvmprovisioning) | +| ShieldedVMProvisioning | [Shielded Virtual Machine provisioning](/powershell/module/shieldedvmcmdlets/) | | ShieldedVMTemplate | [Shielded Virtual Machine template](/powershell/module/shieldedvmtemplate) | | SmbShare | [SmbShare share](/powershell/module/smbshare) | | SmbWitness | [SMB Witness](/powershell/module/smbwitness) | @@ -128,7 +128,7 @@ computer. For more information, see | TLS | [TLS](/powershell/module/tls) | | TroubleshootingPack | [Troubleshooting Pack](/powershell/module/troubleshootingpack) | | TrustedPlatformModule | [Trusted Platform Module](/powershell/module/trustedplatformmodule) | -| UpdateServices | [Windows Server Update Services](/powershell/module/wsus) | +| UpdateServices | [Windows Server Update Services](/powershell/module/updateservices/) | | UserAccessLogging | [User Access Logging](/powershell/module/useraccesslogging/) | | UEV | [User Experience Virtualization](/powershell/module/uev) | | VAMT | [Volume Activation Management Tool](/powershell/module/vamt) | @@ -138,7 +138,7 @@ computer. For more information, see | WebApplicationProxy | [Web Application Proxy](/powershell/module/webapplicationproxy) | | WDS | [Windows Deployment Services](/powershell/module/wds) | | WHEA | [Windows Hardware Error Architecture](/powershell/module/whea) | -| WindowsDevLic | [Windows Developer License](/powershell/module/windowsdevlic) | +| WindowsDevLic | [Windows Developer License](/powershell/module/windowsdeveloperlicense) | | WindowsErrorReporting | [Windows Error Reporting](/powershell/module/windowserrorreporting) | | WindowsSearch | [Windows Search](/powershell/module/windowssearch) | | WindowsServerBackup | [Windows Server Backup](/powershell/module/windowsserverbackup) | From 8747bea092fd35c9250590812d7b02acb3229e6c Mon Sep 17 00:00:00 2001 From: mohitp930 <103079000+mohitp930@users.noreply.github.com> Date: Tue, 24 May 2022 17:35:39 -0400 Subject: [PATCH 088/965] broken links --- .../winserver2012-ps/get-started.md | 12 ++++++------ .../winserver2012r2-ps/get-started.md | 10 +++++----- .../winserver2019-ps/get-started.md | 16 ++++++++-------- .../winserver2022-ps/get-started.md | 16 ++++++++-------- 4 files changed, 27 insertions(+), 27 deletions(-) diff --git a/docset/docs-conceptual/winserver2012-ps/get-started.md b/docset/docs-conceptual/winserver2012-ps/get-started.md index ea7fe8076e..9480eb7477 100644 --- a/docset/docs-conceptual/winserver2012-ps/get-started.md +++ b/docset/docs-conceptual/winserver2012-ps/get-started.md @@ -43,15 +43,15 @@ more information. | Deduplication | [Deduplication Cmdlets](/powershell/module/deduplication) | | DFSN | [DFSN Cmdlets](/powershell/module/dfsn) | | DhcpServer | [DHCP Cmdlets](/powershell/module/dfsr) | -| DirectAccessClientComponents | [DirectAccess Client Cmdlets](/powershell/module/directaccessclient) | +| DirectAccessClientComponents | [DirectAccess Client Cmdlets](/powershell/module/directaccessclientcomponents) | | Dism | [DISM Cmdlets](/powershell/module/dism) | | DnsClient | [DNS Client Cmdlets](/powershell/module/dnsclient) | | DnsServer | [DNS Server Cmdlets](/powershell/module/dnsserver) | | FailoverClusters | [Failover Clusters Cmdlets](/powershell/module/failoverclusters) | -| FileServerResourceManager | [FSRM Cmdlets](/powershell/module/fsrm) | +| FileServerResourceManager | [FSRM Cmdlets](/powershell/module/fileserverresourcemanager) | | GroupPolicy | [Group Policy Cmdlets](/powershell/module/grouppolicy) | | Hyper-V | [Hyper-V Cmdlets](/powershell/module/hyper-v) | -| International | [International Settings Cmdlets](/powershell/module/international_cmdlets) | +| International | [International Settings Cmdlets](/powershell/module/international) | | IpamServer | [IPAM Cmdlets](/powershell/module/ipamserver) | | iScsi | [iSCSI Cmdlets](/powershell/module/iscsi) | | iScsiTarget | [iSCSI Target Cmdlets](/powershell/module/iscsitarget) | @@ -83,12 +83,12 @@ more information. | ServerCore | [Server Core Cmdlets](/powershell/module/servercore) | | ServerManager | [Server Manager Cmdlets](/powershell/module/servermanager) | | ServerManagerTasks | [Server Manager Tasks Cmdlets](/powershell/module/servermanagertasks) | -| ServerMig_Cmdlets | [Server Migration Cmdlets](/powershell/module/servermig_cmdlets) | +| ServerMig_Cmdlets | [Server Migration Cmdlets](/powershell/module/servermigration) | | SMBShare | [SMB Share Cmdlets](/powershell/module/smbshare) | | SMBWitness | [SMB Witness Cmdlets](/powershell/module/smbwitness) | -| SMISConfig | [SMI-S Cmdlets](/powershell/module/smisconfiguration) | +| SMISConfig | [SMI-S Cmdlets](/powershell/module/smisconfig) | | Storage | [Storage Cmdlets](/powershell/module/storage) | -| TroubleshootingPack | [Troubleshooting Pack (TP) Cmdlets](/powershell/module/troubleshootingtack) | +| TroubleshootingPack | [Troubleshooting Pack (TP) Cmdlets](/powershell/module/troubleshootingpack) | | TrustedPlatformModule | [Trusted Platform Module (TPM) Cmdlets](/powershell/module/trustedplatformmodule) | | UpdateServices | [Windows Server Update Services (WSUS) Cmdlets](/powershell/module/updateservices) | | UserAccessLogging | [User Access Logging (UAL) Cmdlets](/powershell/module/useraccesslogging) | diff --git a/docset/docs-conceptual/winserver2012r2-ps/get-started.md b/docset/docs-conceptual/winserver2012r2-ps/get-started.md index 4eaa5c4a42..1e5fc3d177 100644 --- a/docset/docs-conceptual/winserver2012r2-ps/get-started.md +++ b/docset/docs-conceptual/winserver2012r2-ps/get-started.md @@ -43,17 +43,17 @@ for more information. | DFSN | [DFSN Cmdlets](/powershell/module/dfsn) | | Dfsr | [Distributed File System (DFS) Replication Cmdlets](/powershell/module/dfsn) | | DhcpServer | [DHCP Server Cmdlets](/powershell/module/dhcpserver) | -| DirectAccessClientComponents | [DirectAccess Client Cmdlets](/powershell/module/directaccessclient) | +| DirectAccessClientComponents | [DirectAccess Client Cmdlets](/powershell/module/directaccessclientcomponents/) | | Dism | [DISM Cmdlets](/powershell/module/dism) | | DnsClient | [DNS Client Cmdlets](/powershell/module/dnsclient) | | DnsServer | [DNS Server Cmdlets](/powershell/module/dnsserver) | | FailoverClusters | [Failover Clusters Cmdlets](/powershell/module/failoverclusters) | -| FileServerResourceManager | [FSRM Cmdlets](/powershell/module/fsrm) | +| FileServerResourceManager | [FSRM Cmdlets](/powershell/module/fileserverresourcemanager) | | GroupPolicy | [Group Policy Cmdlets](/powershell/module/grouppolicy) | | HCS | [High Performance Computing Pack](/powershell/module/hpc) | | HPC | [StorSimple Hybrid Cloud Storage (HCS) Cmdlets](/powershell/module/hcs) | | Hyper-V | [Hyper-V Cmdlets](/powershell/module/hyper-v) | -| International | [International Settings Cmdlets](/powershell/module/international_cmdlets) | +| International | [International Settings Cmdlets](/powershell/module/international) | | IpamServer | [IPAM Cmdlets](/powershell/module/ipamserver) | | iScsi | [iSCSI Cmdlets](/powershell/module/iscsi) | | iScsiTarget | [iSCSI Target Cmdlets](/powershell/module/iscsitarget) | @@ -79,7 +79,7 @@ for more information. | PcsvDevice | [Physical Computer System View (PSCV) Cmdlets](/powershell/module/pcsvdevice) | | PEF | [Message Analyzer Cmdlets](/powershell/module/pef) | | PKI | [PKI Client Cmdlets](/powershell/module/pki) | -| PowerShellWebAccess | [Windows PowerShell Web Access Cmdlets](/powershell/module/powershellwebacccess) | +| PowerShellWebAccess | [Windows PowerShell Web Access Cmdlets](/powershell/module/powershellwebaccess) | | PrintManagement | [Print Management Cmdlets](/powershell/module/printmanagement) | | RemoteAccess | [Remote Access Cmdlets](/powershell/module/remoteaccess) | | RemoteDesktop | [Remote Desktop Cmdlets](/powershell/module/remotedesktop) | @@ -99,7 +99,7 @@ for more information. | StorageSpaces | [Storage Spaces Cmdlets](/powershell/module/storagespaces) | | SyncShare | [Sync Share Cmdlets](/powershell/module/syncshare) | | TLS | [Transport Layer Security (TLS) Authentication Cmdlets](/powershell/module/tls) | -| TroubleshootingPack | [Troubleshooting Pack (TP) Cmdlets](/powershell/module/troubleshootingtack) | +| TroubleshootingPack | [Troubleshooting Pack (TP) Cmdlets](/powershell/module/troubleshootingpack) | | TrustedPlatformModule | [Trusted Platform Module (TPM) Cmdlets](/powershell/module/trustedplatformmodule) | | UpdateServices | [Windows Server Update Services (WSUS) Cmdlets](/powershell/module/updateservices) | | UserAccessLogging | [User Access Logging (UAL) Cmdlets](/powershell/module/useraccesslogging) | diff --git a/docset/docs-conceptual/winserver2019-ps/get-started.md b/docset/docs-conceptual/winserver2019-ps/get-started.md index 79965e4401..328ddc902e 100644 --- a/docset/docs-conceptual/winserver2019-ps/get-started.md +++ b/docset/docs-conceptual/winserver2019-ps/get-started.md @@ -20,7 +20,7 @@ computer. For more information, see | Module name | Title and link to Web version | | - | - | -| ActiveDirectory | [Active Directory Domain Services Administration](/powershell/module/addsadministration) | +| ActiveDirectory | [Active Directory Domain Services Administration](/powershell/module/activedirectory) | | ADCSAdministration | [Active Directory Certificate Services Administration](/powershell/module/adcsadministration) | | ADCSDeployment | [Active Directory Certificate Services Deployment](/powershell/module/adcsdeployment) | | ADDSDeployment | [Active Directory Domain Services Deployment](/powershell/module/addsdeployment) | @@ -47,7 +47,7 @@ computer. For more information, see | Dfsn | [Distributed File System (DFS) Namespaces](/powershell/module/dfsn/) | | Dfsr | [DFS Replication](/powershell/module/dfsr) | | DHCPServer | [DHCP Server](/powershell/module/dhcpserver) | -| DirectAccessClientComponent | [Direct Access client](/powershell/module/directaccessclientcomponent) | +| DirectAccessClientComponent | [Direct Access client](/powershell/module/directaccessclientcomponents) | | DISM | [DISM](/powershell/module/dism) | | DNSClient | [DNS client](/powershell/module/dnsclient) | | DNSServer | [DNS Server](/powershell/module/dnsserver) | @@ -70,7 +70,7 @@ computer. For more information, see | Iscsi | [iSCSI](/powershell/module/iscsi) | | IscsiTarget | [iSCSI Target](/powershell/module/iscsitarget) | | KDS | [Key Distribution Server](/powershell/module/kds) | -| Microsoft.Windows.ServerManager.Migration | [Server Migration](/powershell/module/Microsoft.Windows.ServerManager.Migration) | +| Microsoft.Windows.ServerManager.Migration | [Server Migration](/powershell/module/servermigration/) | | MMAgent | [Memory Management Agent](/powershell/module/mmagent) | | Mpio | [MPIO](/powershell/module/mpio) | | MSDTC | [Distributed Transaction Coordinator](/powershell/module/msdtc) | @@ -78,7 +78,7 @@ computer. For more information, see | Multipoint | [MultiPoint Services](/powershell/module/multipoint) | | MultiPointVdi | [Multipoint VDI](/powershell/module/multipointvdi) | | NanoServerImageGenerator | [Nano Server Image Generator](/powershell/module/nanoserverimagegenerator) | -| NetLdpAgent | [NetLdpAgent](/powershell/module/netldpagent) | +| NetLdpAgent | [NetLdpAgent](/powershell/module/netlldpagent) | | NetAdapter | [Network Adapter](/powershell/module/netadapter) | | NetConnection | [Network connection](/powershell/module/netconnection) | | NetEventPacketCapture | [Network Event Packet Capture](/powershell/module/neteventpacketcapture) | @@ -98,7 +98,7 @@ computer. For more information, see | NFS | [Network File System](/powershell/module/nfs) | | NPS | [Network Policy Server](/powershell/module/nps) | | PCSVDevice | [Physical Computer System View device](/powershell/module/pcsvdevice) | -| PKIClient | [Public Key Infrastructure](/powershell/module/pkiclient) | +| PKIClient | [Public Key Infrastructure](/powershell/module/pki) | | PlatformIdentifier | [Platform Identifier](/powershell/module/platformidentifier) | | PnpDevice | [Plug and Play](/powershell/module/pnpdevice) | | PrintManagement | [Print management](/powershell/module/printmanagement) | @@ -112,7 +112,7 @@ computer. For more information, see | ServerManager | [Server Manager](/powershell/module/servermanager) | | ServerManagerTasks | [Server Manager tasks](/powershell/module/servermanagertasks) | | ShieldedVMDataFile | [Shielded Virtual Machine data file](/powershell/module/shieldedvmdatafile) | -| ShieldedVMProvisioning | [Shielded Virtual Machine provisioning](/powershell/module/shieldedvmprovisioning) | +| ShieldedVMProvisioning | [Shielded Virtual Machine provisioning](/powershell/module/shieldedvmcmdlets/) | | ShieldedVMTemplate | [Shielded Virtual Machine template](/powershell/module/shieldedvmtemplate) | | SmbShare | [SmbShare share](/powershell/module/smbshare) | | SmbWitness | [SMB Witness](/powershell/module/smbwitness) | @@ -127,7 +127,7 @@ computer. For more information, see | TLS | [TLS](/powershell/module/tls) | | TroubleshootingPack | [Troubleshooting Pack](/powershell/module/troubleshootingpack) | | TrustedPlatformModule | [Trusted Platform Module](/powershell/module/trustedplatformmodule) | -| UpdateServices | [Windows Server Update Services](/powershell/module/wsus) | +| UpdateServices | [Windows Server Update Services](/powershell/module/updateservices/) | | UserAccessLogging | [User Access Logging](/powershell/module/useraccesslogging/) | | UEV | [User Experience Virtualization](/powershell/module/uev) | | VAMT | [Volume Activation Management Tool](/powershell/module/vamt) | @@ -137,7 +137,7 @@ computer. For more information, see | WebApplicationProxy | [Web Application Proxy](/powershell/module/webapplicationproxy) | | WDS | [Windows Deployment Services](/powershell/module/wds) | | WHEA | [Windows Hardware Error Architecture](/powershell/module/whea) | -| WindowsDevLic | [Windows Developer License](/powershell/module/windowsdevlic) | +| WindowsDevLic | [Windows Developer License](/powershell/module/windowsdeveloperlicense) | | WindowsErrorReporting | [Windows Error Reporting](/powershell/module/windowserrorreporting) | | WindowsSearch | [Windows Search](/powershell/module/windowssearch) | | WindowsServerBackup | [Windows Server Backup](/powershell/module/windowsserverbackup) | diff --git a/docset/docs-conceptual/winserver2022-ps/get-started.md b/docset/docs-conceptual/winserver2022-ps/get-started.md index 890f59f586..3bcd625ca2 100644 --- a/docset/docs-conceptual/winserver2022-ps/get-started.md +++ b/docset/docs-conceptual/winserver2022-ps/get-started.md @@ -20,7 +20,7 @@ computer. For more information, see | Module name | Title and link to Web version | | - | - | -| ActiveDirectory | [Active Directory Domain Services Administration](/powershell/module/addsadministration) | +| ActiveDirectory | [Active Directory Domain Services Administration](/powershell/module/activedirectory) | | ADCSAdministration | [Active Directory Certificate Services Administration](/powershell/module/adcsadministration) | | ADCSDeployment | [Active Directory Certificate Services Deployment](/powershell/module/adcsdeployment) | | ADDSDeployment | [Active Directory Domain Services Deployment](/powershell/module/addsdeployment) | @@ -47,7 +47,7 @@ computer. For more information, see | Dfsn | [Distributed File System (DFS) Namespaces](/powershell/module/dfsn/) | | Dfsr | [DFS Replication](/powershell/module/dfsr) | | DHCPServer | [DHCP Server](/powershell/module/dhcpserver) | -| DirectAccessClientComponent | [Direct Access client](/powershell/module/directaccessclientcomponent) | +| DirectAccessClientComponent | [Direct Access client](/powershell/module/directaccessclientcomponents) | | DISM | [DISM](/powershell/module/dism) | | DNSClient | [DNS client](/powershell/module/dnsclient) | | DNSServer | [DNS Server](/powershell/module/dnsserver) | @@ -70,7 +70,7 @@ computer. For more information, see | Iscsi | [iSCSI](/powershell/module/iscsi) | | IscsiTarget | [iSCSI Target](/powershell/module/iscsitarget) | | KDS | [Key Distribution Server](/powershell/module/kds) | -| Microsoft.Windows.ServerManager.Migration | [Server Migration](/powershell/module/Microsoft.Windows.ServerManager.Migration) | +| Microsoft.Windows.ServerManager.Migration | [Server Migration](/powershell/module/servermigration/) | | MMAgent | [Memory Management Agent](/powershell/module/mmagent) | | Mpio | [MPIO](/powershell/module/mpio) | | MSDTC | [Distributed Transaction Coordinator](/powershell/module/msdtc) | @@ -78,7 +78,7 @@ computer. For more information, see | Multipoint | [MultiPoint Services](/powershell/module/multipoint) | | MultiPointVdi | [Multipoint VDI](/powershell/module/multipointvdi) | | NanoServerImageGenerator | [Nano Server Image Generator](/powershell/module/nanoserverimagegenerator) | -| NetLdpAgent | [NetLdpAgent](/powershell/module/netldpagent) | +| NetLdpAgent | [NetLdpAgent](/powershell/module/netlldpagent) | | NetAdapter | [Network Adapter](/powershell/module/netadapter) | | NetConnection | [Network connection](/powershell/module/netconnection) | | NetEventPacketCapture | [Network Event Packet Capture](/powershell/module/neteventpacketcapture) | @@ -98,7 +98,7 @@ computer. For more information, see | NFS | [Network File System](/powershell/module/nfs) | | NPS | [Network Policy Server](/powershell/module/nps) | | PCSVDevice | [Physical Computer System View device](/powershell/module/pcsvdevice) | -| PKIClient | [Public Key Infrastructure](/powershell/module/pkiclient) | +| PKIClient | [Public Key Infrastructure](/powershell/module/pki) | | PlatformIdentifier | [Platform Identifier](/powershell/module/platformidentifier) | | PnpDevice | [Plug and Play](/powershell/module/pnpdevice) | | PrintManagement | [Print management](/powershell/module/printmanagement) | @@ -112,7 +112,7 @@ computer. For more information, see | ServerManager | [Server Manager](/powershell/module/servermanager) | | ServerManagerTasks | [Server Manager tasks](/powershell/module/servermanagertasks) | | ShieldedVMDataFile | [Shielded Virtual Machine data file](/powershell/module/shieldedvmdatafile) | -| ShieldedVMProvisioning | [Shielded Virtual Machine provisioning](/powershell/module/shieldedvmprovisioning) | +| ShieldedVMProvisioning | [Shielded Virtual Machine provisioning](/powershell/module/shieldedvmcmdlets/) | | ShieldedVMTemplate | [Shielded Virtual Machine template](/powershell/module/shieldedvmtemplate) | | SmbShare | [SmbShare share](/powershell/module/smbshare) | | SmbWitness | [SMB Witness](/powershell/module/smbwitness) | @@ -127,7 +127,7 @@ computer. For more information, see | TLS | [TLS](/powershell/module/tls) | | TroubleshootingPack | [Troubleshooting Pack](/powershell/module/troubleshootingpack) | | TrustedPlatformModule | [Trusted Platform Module](/powershell/module/trustedplatformmodule) | -| UpdateServices | [Windows Server Update Services](/powershell/module/wsus) | +| UpdateServices | [Windows Server Update Services](/powershell/module/updateservices/) | | UserAccessLogging | [User Access Logging](/powershell/module/useraccesslogging/) | | UEV | [User Experience Virtualization](/powershell/module/uev) | | VAMT | [Volume Activation Management Tool](/powershell/module/vamt) | @@ -137,7 +137,7 @@ computer. For more information, see | WebApplicationProxy | [Web Application Proxy](/powershell/module/webapplicationproxy) | | WDS | [Windows Deployment Services](/powershell/module/wds) | | WHEA | [Windows Hardware Error Architecture](/powershell/module/whea) | -| WindowsDevLic | [Windows Developer License](/powershell/module/windowsdevlic) | +| WindowsDevLic | [Windows Developer License](/powershell/module/windowsdeveloperlicense) | | WindowsErrorReporting | [Windows Error Reporting](/powershell/module/windowserrorreporting) | | WindowsSearch | [Windows Search](/powershell/module/windowssearch) | | WindowsServerBackup | [Windows Server Backup](/powershell/module/windowsserverbackup) | From 707e69d71585ee7e5d72cadbc2e7508318ec0646 Mon Sep 17 00:00:00 2001 From: Mohit Patel <103079000+mohitp930@users.noreply.github.com> Date: Wed, 25 May 2022 09:59:56 -0400 Subject: [PATCH 089/965] [BrokenLinksH2] --- docset/docs-conceptual/mdop/get-started.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docset/docs-conceptual/mdop/get-started.md b/docset/docs-conceptual/mdop/get-started.md index 09cb06301c..c90eefffce 100644 --- a/docset/docs-conceptual/mdop/get-started.md +++ b/docset/docs-conceptual/mdop/get-started.md @@ -25,5 +25,4 @@ available locally on your computer by using the Update-Help cmdlet. For more inf | [Advanced Group Policy Management](/powershell/module/agpm) | 4.0 SP3 | | [Microsoft Application Virtualization](/powershell/module/appv) | 5.1 | | [Microsoft Bitlocker Administration and Monitoring](/powershell/module/mbam) | 2.5 | -| [Microsoft Enterprise Desktop Virtualization](/powershell/module/medv) | 2.0 | | [User Experience Virtualization](/powershell/module/uev) | 2.1 SP1 | From 1f1994f05f72fd0af6de1ea75066d97757fd6d2f Mon Sep 17 00:00:00 2001 From: Mohit Patel <103079000+mohitp930@users.noreply.github.com> Date: Wed, 25 May 2022 11:18:34 -0400 Subject: [PATCH 090/965] Update docset/docs-conceptual/winserver2012-ps/get-started.md Co-authored-by: Sean Wheeler --- docset/docs-conceptual/winserver2012-ps/get-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/docs-conceptual/winserver2012-ps/get-started.md b/docset/docs-conceptual/winserver2012-ps/get-started.md index 9480eb7477..486694e4f1 100644 --- a/docset/docs-conceptual/winserver2012-ps/get-started.md +++ b/docset/docs-conceptual/winserver2012-ps/get-started.md @@ -83,7 +83,7 @@ more information. | ServerCore | [Server Core Cmdlets](/powershell/module/servercore) | | ServerManager | [Server Manager Cmdlets](/powershell/module/servermanager) | | ServerManagerTasks | [Server Manager Tasks Cmdlets](/powershell/module/servermanagertasks) | -| ServerMig_Cmdlets | [Server Migration Cmdlets](/powershell/module/servermigration) | +| ServerMig_Cmdlets | [Server Migration Cmdlets](/powershell/module/servermigrationcmdlets) | | SMBShare | [SMB Share Cmdlets](/powershell/module/smbshare) | | SMBWitness | [SMB Witness Cmdlets](/powershell/module/smbwitness) | | SMISConfig | [SMI-S Cmdlets](/powershell/module/smisconfig) | From 932d8400faf88534702fec495c252cc70d51e0bb Mon Sep 17 00:00:00 2001 From: Mohit Patel <103079000+mohitp930@users.noreply.github.com> Date: Wed, 25 May 2022 11:18:43 -0400 Subject: [PATCH 091/965] Update docset/docs-conceptual/winserver2016-ps/get-started.md Co-authored-by: Sean Wheeler --- docset/docs-conceptual/winserver2016-ps/get-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/docs-conceptual/winserver2016-ps/get-started.md b/docset/docs-conceptual/winserver2016-ps/get-started.md index 066ee31e39..224471c720 100644 --- a/docset/docs-conceptual/winserver2016-ps/get-started.md +++ b/docset/docs-conceptual/winserver2016-ps/get-started.md @@ -71,7 +71,7 @@ computer. For more information, see | Iscsi | [iSCSI](/powershell/module/iscsi) | | IscsiTarget | [iSCSI Target](/powershell/module/iscsitarget) | | KDS | [Key Distribution Server](/powershell/module/kds) | -| Microsoft.Windows.ServerManager.Migration | [Server Migration](/powershell/module/servermigration/) | +| Microsoft.Windows.ServerManager.Migration | [Server Migration](/powershell/module/Microsoft.Windows.ServerManager.Migration) | | MMAgent | [Memory Management Agent](/powershell/module/mmagent) | | Mpio | [MPIO](/powershell/module/mpio) | | MSDTC | [Distributed Transaction Coordinator](/powershell/module/msdtc) | From 499f628e45912cabeb970270ae24994a69cef09a Mon Sep 17 00:00:00 2001 From: Mohit Patel <103079000+mohitp930@users.noreply.github.com> Date: Wed, 25 May 2022 11:18:50 -0400 Subject: [PATCH 092/965] Update docset/docs-conceptual/winserver2016-ps/get-started.md Co-authored-by: Sean Wheeler --- docset/docs-conceptual/winserver2016-ps/get-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/docs-conceptual/winserver2016-ps/get-started.md b/docset/docs-conceptual/winserver2016-ps/get-started.md index 224471c720..634c6f0c5d 100644 --- a/docset/docs-conceptual/winserver2016-ps/get-started.md +++ b/docset/docs-conceptual/winserver2016-ps/get-started.md @@ -79,7 +79,7 @@ computer. For more information, see | Multipoint | [MultiPoint Services](/powershell/module/multipoint) | | MultiPointVdi | [Multipoint VDI](/powershell/module/multipointvdi) | | NanoServerImageGenerator | [Nano Server Image Generator](/powershell/module/nanoserverimagegenerator) | -| NetLdpAgent | [NetLdpAgent](/powershell/module/netlldpagent) | +| NetLldpAgent | [NetLldpAgent](/powershell/module/netlldpagent) | | NetAdapter | [Network Adapter](/powershell/module/netadapter) | | NetConnection | [Network connection](/powershell/module/netconnection) | | NetEventPacketCapture | [Network Event Packet Capture](/powershell/module/neteventpacketcapture) | From 5531774a30e37023c5729392ab7d4c450e725c74 Mon Sep 17 00:00:00 2001 From: Mohit Patel <103079000+mohitp930@users.noreply.github.com> Date: Wed, 25 May 2022 11:18:56 -0400 Subject: [PATCH 093/965] Update docset/docs-conceptual/winserver2019-ps/get-started.md Co-authored-by: Sean Wheeler --- docset/docs-conceptual/winserver2019-ps/get-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/docs-conceptual/winserver2019-ps/get-started.md b/docset/docs-conceptual/winserver2019-ps/get-started.md index 328ddc902e..35518efd47 100644 --- a/docset/docs-conceptual/winserver2019-ps/get-started.md +++ b/docset/docs-conceptual/winserver2019-ps/get-started.md @@ -70,7 +70,7 @@ computer. For more information, see | Iscsi | [iSCSI](/powershell/module/iscsi) | | IscsiTarget | [iSCSI Target](/powershell/module/iscsitarget) | | KDS | [Key Distribution Server](/powershell/module/kds) | -| Microsoft.Windows.ServerManager.Migration | [Server Migration](/powershell/module/servermigration/) | +| Microsoft.Windows.ServerManager.Migration | [Server Migration](/powershell/module/Microsoft.Windows.ServerManager.Migration/) | | MMAgent | [Memory Management Agent](/powershell/module/mmagent) | | Mpio | [MPIO](/powershell/module/mpio) | | MSDTC | [Distributed Transaction Coordinator](/powershell/module/msdtc) | From ab006d96cf476f0ae9893896a8414f623201b169 Mon Sep 17 00:00:00 2001 From: Mohit Patel <103079000+mohitp930@users.noreply.github.com> Date: Wed, 25 May 2022 11:19:05 -0400 Subject: [PATCH 094/965] Update docset/docs-conceptual/winserver2019-ps/get-started.md Co-authored-by: Sean Wheeler --- docset/docs-conceptual/winserver2019-ps/get-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/docs-conceptual/winserver2019-ps/get-started.md b/docset/docs-conceptual/winserver2019-ps/get-started.md index 35518efd47..144f471026 100644 --- a/docset/docs-conceptual/winserver2019-ps/get-started.md +++ b/docset/docs-conceptual/winserver2019-ps/get-started.md @@ -78,7 +78,7 @@ computer. For more information, see | Multipoint | [MultiPoint Services](/powershell/module/multipoint) | | MultiPointVdi | [Multipoint VDI](/powershell/module/multipointvdi) | | NanoServerImageGenerator | [Nano Server Image Generator](/powershell/module/nanoserverimagegenerator) | -| NetLdpAgent | [NetLdpAgent](/powershell/module/netlldpagent) | +| NetLldpAgent | [NetLldpAgent](/powershell/module/netlldpagent) | | NetAdapter | [Network Adapter](/powershell/module/netadapter) | | NetConnection | [Network connection](/powershell/module/netconnection) | | NetEventPacketCapture | [Network Event Packet Capture](/powershell/module/neteventpacketcapture) | From fa5a98d061c32de638b7872ba87314efc449cfca Mon Sep 17 00:00:00 2001 From: Mohit Patel <103079000+mohitp930@users.noreply.github.com> Date: Wed, 25 May 2022 11:19:11 -0400 Subject: [PATCH 095/965] Update docset/docs-conceptual/winserver2022-ps/get-started.md Co-authored-by: Sean Wheeler --- docset/docs-conceptual/winserver2022-ps/get-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/docs-conceptual/winserver2022-ps/get-started.md b/docset/docs-conceptual/winserver2022-ps/get-started.md index 3bcd625ca2..c30ba09666 100644 --- a/docset/docs-conceptual/winserver2022-ps/get-started.md +++ b/docset/docs-conceptual/winserver2022-ps/get-started.md @@ -70,7 +70,7 @@ computer. For more information, see | Iscsi | [iSCSI](/powershell/module/iscsi) | | IscsiTarget | [iSCSI Target](/powershell/module/iscsitarget) | | KDS | [Key Distribution Server](/powershell/module/kds) | -| Microsoft.Windows.ServerManager.Migration | [Server Migration](/powershell/module/servermigration/) | +| Microsoft.Windows.ServerManager.Migration | [Server Migration](/powershell/module/Microsoft.Windows.ServerManager.Migration/) | | MMAgent | [Memory Management Agent](/powershell/module/mmagent) | | Mpio | [MPIO](/powershell/module/mpio) | | MSDTC | [Distributed Transaction Coordinator](/powershell/module/msdtc) | From 6690cbb4c87d495fda4d3f4ac7dc549469fea59f Mon Sep 17 00:00:00 2001 From: Mohit Patel <103079000+mohitp930@users.noreply.github.com> Date: Wed, 25 May 2022 11:19:25 -0400 Subject: [PATCH 096/965] Update docset/docs-conceptual/winserver2022-ps/get-started.md Co-authored-by: Sean Wheeler --- docset/docs-conceptual/winserver2022-ps/get-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/docs-conceptual/winserver2022-ps/get-started.md b/docset/docs-conceptual/winserver2022-ps/get-started.md index c30ba09666..b4a9c83434 100644 --- a/docset/docs-conceptual/winserver2022-ps/get-started.md +++ b/docset/docs-conceptual/winserver2022-ps/get-started.md @@ -78,7 +78,7 @@ computer. For more information, see | Multipoint | [MultiPoint Services](/powershell/module/multipoint) | | MultiPointVdi | [Multipoint VDI](/powershell/module/multipointvdi) | | NanoServerImageGenerator | [Nano Server Image Generator](/powershell/module/nanoserverimagegenerator) | -| NetLdpAgent | [NetLdpAgent](/powershell/module/netlldpagent) | +| NetLldpAgent | [NetLldpAgent](/powershell/module/netlldpagent) | | NetAdapter | [Network Adapter](/powershell/module/netadapter) | | NetConnection | [Network connection](/powershell/module/netconnection) | | NetEventPacketCapture | [Network Event Packet Capture](/powershell/module/neteventpacketcapture) | From 83cd99fc3bb823510c76d3634041edf4d6a3ff1a Mon Sep 17 00:00:00 2001 From: mohitp930 <103079000+mohitp930@users.noreply.github.com> Date: Wed, 25 May 2022 11:25:01 -0400 Subject: [PATCH 097/965] removing relevant folders --- ...ministration.Commands.WorkspacePackager.md | 19 - .../export-medvworkspace.md | 133 --- .../new-medvworkspace.md | 111 -- docset/mdop/medv/export-medvconfiguration.md | 195 ---- docset/mdop/medv/medv.md | 24 - docset/mdop/medv/new-medvconfiguration.md | 960 ------------------ 6 files changed, 1442 deletions(-) delete mode 100644 docset/mdop/Microsoft.Medv.Administration.Commands.WorkspacePackager/Microsoft.Medv.Administration.Commands.WorkspacePackager.md delete mode 100644 docset/mdop/Microsoft.Medv.Administration.Commands.WorkspacePackager/export-medvworkspace.md delete mode 100644 docset/mdop/Microsoft.Medv.Administration.Commands.WorkspacePackager/new-medvworkspace.md delete mode 100644 docset/mdop/medv/export-medvconfiguration.md delete mode 100644 docset/mdop/medv/medv.md delete mode 100644 docset/mdop/medv/new-medvconfiguration.md diff --git a/docset/mdop/Microsoft.Medv.Administration.Commands.WorkspacePackager/Microsoft.Medv.Administration.Commands.WorkspacePackager.md b/docset/mdop/Microsoft.Medv.Administration.Commands.WorkspacePackager/Microsoft.Medv.Administration.Commands.WorkspacePackager.md deleted file mode 100644 index d5115d4e5a..0000000000 --- a/docset/mdop/Microsoft.Medv.Administration.Commands.WorkspacePackager/Microsoft.Medv.Administration.Commands.WorkspacePackager.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -description: Use this topic to help manage MDOP technologies with Windows PowerShell. -Locale: en-US -Module Name: Microsoft.Medv.Administration.Commands.WorkspacePackager -ms.date: 12/05/2016 -ms.devlang: powershell -title: MEDVWorkspaceCmdlets ---- - -# Microsoft.Medv.Administration.Commands.WorkspacePackager Module -## Description -Microsoft Enterprise Desktop Virtualization (MED-V) provides the following set of Windows PowerShell cmdlets. Administrators can use these cmdlets to perform various workspace configuration tasks from the command line rather than from the console. These cmdlets allow administrators to automate the creation of MED-V workspaces. - -## Microsoft.Medv.Administration.Commands.WorkspacePackager Cmdlets -### [Export-MedvWorkspace](./Export-MedvWorkspace.md) -Creates Windows Installer file and related files. - -### [New-MedvWorkspace](./New-MedvWorkspace.md) -Creates an object that contains the properties for a workspace Windows Installer file. diff --git a/docset/mdop/Microsoft.Medv.Administration.Commands.WorkspacePackager/export-medvworkspace.md b/docset/mdop/Microsoft.Medv.Administration.Commands.WorkspacePackager/export-medvworkspace.md deleted file mode 100644 index d162105262..0000000000 --- a/docset/mdop/Microsoft.Medv.Administration.Commands.WorkspacePackager/export-medvworkspace.md +++ /dev/null @@ -1,133 +0,0 @@ ---- -description: Use this topic to help manage MDOP technologies with Windows PowerShell. -external help file: Microsoft.Medv.Administration.Commands.WorkspacePackager.dll-Help.xml -ms.date: 12/05/2016 -ms.devlang: powershell -schema: 2.0.0 -title: Export-MedvWorkspace ---- - -# Export-MedvWorkspace - -## SYNOPSIS -Creates Windows Installer file and related files. - -## SYNTAX - -``` -Export-MedvWorkspace [-Path] [-InputObject] [-Overwrite []] [-Confirm []] [-WhatIf []] [] -``` - -## DESCRIPTION -The **Export-MedvWorkspace** cmdlet creates a Windows Installer file and related files. -Specify a **MedvWorkspace** object that contains the package details. - -## EXAMPLES - -### Example 1: Create a workspace package -``` -C:\PS>New-MedvWorkspace -WorkspaceName "XPCompat" -VhdfilePath "C:\xpImage.vhd" -SettingsFilePath "XPCompat.reg" | Export-MedvWorkspace -Path "XPCompat.msi" -``` - -This command uses the **New-MedvWorkspace** to create an object that contains all the information necessary to create a MED-V workspace. -The command passes the result to the current cmdlet. -That cmdlet creates a workspace package that includes files necessary to install a workspace package with the name XPCompat that uses the settings in the specified registry file. - -## PARAMETERS - -### -InputObject -Specifies a **MedvWorkspace** object. -To obtain a **MedvWorkspace** object, use the **New-MedvWorkspace** cmdlet. - -```yaml -Type: MedvWorkspace -Parameter Sets: (All) -Aliases: i - -Required: True -Position: 2 -Default value: None -Accept pipeline input: True (ByValue) -Accept wildcard characters: False -``` - -### -Overwrite -Indicates that this cmdlet overwrites an existing MED-V workspace package. - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Path -Specifies the full path of the Windows Installer file to generate. - -```yaml -Type: String -Parameter Sets: (All) -Aliases: p - -Required: True -Position: 1 -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -Confirm -Prompts you for confirmation before running the cmdlet.Prompts you for confirmation before running the cmdlet. - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: cf - -Required: False -Position: Named -Default value: False -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run.Shows what would happen if the cmdlet runs. -The cmdlet is not run. - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: wi - -Required: False -Position: Named -Default value: False -Accept pipeline input: False -Accept wildcard characters: False -``` - -### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). - -## INPUTS - -### Microsoft.Medv.Administration.Commands.MedvWorkspace -This cmdlet accepts a **MedvWorkspace** object. -A **MedvWorkspace** object contains the information and location of all files needed to make the workspace setup files. - -## OUTPUTS - -## NOTES - -## RELATED LINKS - -[New-MedvWorkspace](./New-MedvWorkspace.md) - - diff --git a/docset/mdop/Microsoft.Medv.Administration.Commands.WorkspacePackager/new-medvworkspace.md b/docset/mdop/Microsoft.Medv.Administration.Commands.WorkspacePackager/new-medvworkspace.md deleted file mode 100644 index 3b581b7471..0000000000 --- a/docset/mdop/Microsoft.Medv.Administration.Commands.WorkspacePackager/new-medvworkspace.md +++ /dev/null @@ -1,111 +0,0 @@ ---- -description: Use this topic to help manage MDOP technologies with Windows PowerShell. -external help file: Microsoft.Medv.Administration.Commands.WorkspacePackager.dll-Help.xml -ms.date: 12/05/2016 -ms.devlang: powershell -schema: 2.0.0 -title: New-MedvWorkspace ---- - -# New-MedvWorkspace - -## SYNOPSIS -Creates an object that contains the properties for a workspace Windows Installer file. - -## SYNTAX - -``` -New-MedvWorkspace [-WorkspaceName] [-VhdFilePath] [-SettingsFilePath] [] -``` - -## DESCRIPTION -The **New-MedvWorkspace** cmdlet creates an object that contains the properties needed to create a workspace Windows Installer file. -You can use the **Export-MedvWorkspace** cmdlet to create the setup files necessary to deploy a workspace. - -## EXAMPLES - -### Example 1: Create a workspace configuration object -``` -C:\PS>New-MedvWorkspace -WorkspaceName "XPCompat" -VhdfilePath "C:\xpImage.vhd" -SettingsFilePath "XPCompat.reg" -``` - -This command creates an object that contains all the information necessary to create a MED-V workspace named XPCompat. -The command specifies a .vhd file and registry settings. - -### Example 2: Create a workspace package -``` -C:\PS>New-MedvWorkspace -WorkspaceName "XPCompat" -VhdfilePath "C:\xpImage.vhd" -SettingsFilePath "XPCompat.reg" | Export-MedvWorkspace -Path "XPCompat.msi" -``` - -This command creates an object that contains all the information necessary to create a MED-V workspace. -The command passes the result to the **Export-MedvWorkspace** cmdlet. -That cmdlet creates a workspace package. - -## PARAMETERS - -### -SettingsFilePath -Specifies the full path of a file that has the .reg file name extension. -That file contains the MED-V settings for the MED-V workspace. -This file is packaged with the setup files. -The MED-V workspace packager imports these settings into the registry of the target computer. -You can generate this file by using the **New-MedvConfiguration** and **Export-MedvConfiguration** cmdlets. - -```yaml -Type: String -Parameter Sets: (All) -Aliases: s, sfp, settings - -Required: True -Position: 3 -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -VhdFilePath -Specifies the full path of the virtual hard drive (.vhd) file. -This file is converted to a MED-V file and stored with the Windows Installer file. -When deployed, the Windows Installer file must be in the same folder as the newly created MED-V file. - -```yaml -Type: String -Parameter Sets: (All) -Aliases: vhd, vfp - -Required: True -Position: 2 -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -WorkspaceName -Specifies the name of the MED-V workspace. -The name of the MED-V workspace is displayed to end users. - -```yaml -Type: String -Parameter Sets: (All) -Aliases: w, wn, ws, n, name - -Required: True -Position: 1 -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). - -## INPUTS - -## OUTPUTS - -## NOTES - -## RELATED LINKS - -[Export-MedvWorkspace](./Export-MedvWorkspace.md) - - diff --git a/docset/mdop/medv/export-medvconfiguration.md b/docset/mdop/medv/export-medvconfiguration.md deleted file mode 100644 index 950435cf34..0000000000 --- a/docset/mdop/medv/export-medvconfiguration.md +++ /dev/null @@ -1,195 +0,0 @@ ---- -description: Use this topic to help manage MDOP technologies with Windows PowerShell. -external help file: Microsoft.Medv.Administration.Commands.Configuration.dll-Help.xml -ms.date: 12/05/2016 -ms.devlang: powershell -schema: 2.0.0 -title: Export-MedvConfiguration ---- - -# Export-MedvConfiguration - -## SYNOPSIS -Exports a MED-V configuration object to a registry file. - -## SYNTAX - -``` -Export-MedvConfiguration [-Path] [-Append []] [-Force []] [-NoClobber []] [-PassThru []] -InputObject [-Confirm []] [-WhatIf []] [] -``` - -## DESCRIPTION -The **Export-MedvConfiguration** cmdlet exports a **MedvConfiguration** object to a file that has a .reg file name extension. -These registry settings changes will be made to the HKLM hive. - -## EXAMPLES - -### Example 1: Export new object to a file -``` -C:\PS>New-MedvConfiguration -UxLogonStartEnabled $True -CloseActionMode HIBERNATE | Export-MedvConfiguration -Path "c:\temp\medvsettings.reg" -``` - -This command uses the **New-MedvConfiguration** cmdlet to create a **MedvConfiguration** object, and then passes that object to the current cmdlet by using the pipeline operator. -That cmdlet saves the object as a .reg file. - -### Example 2: Export an object that contains redirection URLs -``` -C:\PS>New-MedvConfiguration -RedirectUrls "http://webapp1/contoso.com","http://webapp2/contoso.com" | Export-MedvConfiguration -Path "c:\temp\redirUrls.reg" -``` - -This command creates a **MedvConfiguration** object that contains redirection URLs for the browser in the guest virtual machine. -The command exports the configuration object to a file. - -## PARAMETERS - -### -Append -Indicates that this cmdlet appends the settings in the **MedvConfiguration** object to an existing registry file. -The existing registry file must contain a registry file header. -If you specify this parameter but the specified registry file does not exist, the cmdlet creates a new registry file. - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: False -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Force -Indicates that this cmdlet attempts to clear the read-only attribute of the output file, if necessary. -The cmdlet attempts to reset the read-only attribute after the command has run. - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -InputObject -Specifies a **MedvConfiguration** object to export to a registry file. - -```yaml -Type: MedvConfiguration -Parameter Sets: (All) -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: True (ByValue) -Accept wildcard characters: False -``` - -### -NoClobber -Indicates that this cmdlet does not overwrite an existing file. -By default, if a file exists in the specified path, this cmdlet overwrites that file without warning. - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -PassThru -Indicates that this cmdlet returns a **FileInfo** object for the registry file. -By default, this cmdlet does not return any object. - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Path -Specifies the path of a file that receives the registry settings. -You must have permission to write in the specified location. -If you specify a file that already exists, the cmdlet overwrites that file without warning. -To prevent overwriting, specify the *NoClobber* parameter. -To append to an existing file, specify the *Append* parameter. - -```yaml -Type: String -Parameter Sets: (All) -Aliases: - -Required: True -Position: 1 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Confirm -Prompts you for confirmation before running the cmdlet. - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: cf - -Required: False -Position: Named -Default value: False -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: wi - -Required: False -Position: Named -Default value: False -Accept pipeline input: False -Accept wildcard characters: False -``` - -### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). - -## INPUTS - -### Microsoft.Medv.Administration.Commands.MedvConfiguration -This cmdlet accepts a **MedvConfiguration** object. -A **MedvConfiguration** object contains MED-V settings to set for a particular scope. - -## OUTPUTS - -### FileInfo -This cmdlet generates **FileInfo** object. - -## NOTES - -## RELATED LINKS - -[New-MedvConfiguration](./New-MedvConfiguration.md) - - diff --git a/docset/mdop/medv/medv.md b/docset/mdop/medv/medv.md deleted file mode 100644 index a8424cdbc1..0000000000 --- a/docset/mdop/medv/medv.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -description: Use this topic to help manage MDOP technologies with Windows PowerShell. -Locale: en-US -Module Name: medv -ms.date: 12/05/2016 -ms.devlang: powershell -title: MEDVWorkspaceCmdlets ---- - -# Microsoft.Medv.Administration.Commands.WorkspacePackager Module -## Description -Microsoft Enterprise Desktop Virtualization (MED-V) provides the following set of Windows PowerShell cmdlets. Administrators can use these cmdlets to perform various workspace configuration tasks from the command line rather than from the console. These cmdlets allow administrators to automate the creation of MED-V workspaces. - -## Microsoft.Medv.Administration.Commands.WorkspacePackager Cmdlets -### [Export-MedvWorkspace](./Export-MedvWorkspace.md) -Creates Windows Installer file and related files. - -### [New-MedvWorkspace](./New-MedvWorkspace.md) -Creates an object that contains the properties for a workspace Windows Installer file. - -### [Export-medvconfiguration](./export-medvconfiguration.md) - - -### [New-medvconfiguration](./new-medvconfiguration.md) diff --git a/docset/mdop/medv/new-medvconfiguration.md b/docset/mdop/medv/new-medvconfiguration.md deleted file mode 100644 index 11f0346d5e..0000000000 --- a/docset/mdop/medv/new-medvconfiguration.md +++ /dev/null @@ -1,960 +0,0 @@ ---- -description: Use this topic to help manage MDOP technologies with Windows PowerShell. -external help file: Microsoft.Medv.Administration.Commands.Configuration.dll-Help.xml -ms.date: 12/05/2016 -ms.devlang: powershell -schema: 2.0.0 -title: New-MedvConfiguration ---- - -# New-MedvConfiguration - -## SYNOPSIS -Creates an object that contains configuration settings for MED-V. - -## SYNTAX - -``` -New-MedvConfiguration [-DiagEventLogLevel {NONE | ERROR | WARNING | INFORMATION | DEBUG}] [-ForceDefaults []] - [-FtsAddUserToAdminGroupEnabled ] [-FtsComputerNameMask ] [-FtsDeleteVMStateTimeout ] - [-FtsDetachVfdTimeout ] [-FtsDialogUrl ] [-FtsExplorerTimeout ] - [-FtsFailureDialogMsg ] [-FtsLogFilePaths ] [-FtsMaxPostponeTime ] - [-FtsMaxRetryCount ] [-FtsMode {ATTENDED | UNATTENDED | SILENT}] - [-FtsNonInteractiveRetryTimeoutInc ] [-FtsNonInteractiveTimeout ] - [-FtsPostponeUtcDateTimeLimit ] [-FtsRetryDialogMsg ] [-FtsSetComputerNameEnabled ] - [-FtsSetJoinDomainEnabled ] [-FtsSetMachineObjectOUEnabled ] - [-FtsSetRegionalSettingsEnabled ] [-FtsSetUserDataEnabled ] [-FtsStartDialogMsg ] - [-FtsTaskCancelTimeout ] [-FtsTaskVMTurnOffTimeout ] [-FtsUpgradeTimeout ] - [-UxAppPublishingEnabled ] [-UxAudioSharingEnabled ] [-UxClipboardSharingEnabled ] - [-UxCredentialCacheEnabled ] [-UxDialogTimeout ] [-UxHideVmTimeout ] - [-UxLogonStartEnabled ] [-UxPrinterSharingEnabled ] [-UxRebootAbsoluteDelayTimeout ] - [-UxRedirectUrls ] [-UxShowExit ] [-UxSmartCardLogonEnabled ] - [-UxSmartCardSharingEnabled ] [-UxUSBDeviceSharingEnabled ] - [-VmCloseAction {HIBERNATE | SHUTDOWN | TURN-OFF}] [-VmGuestMemFromHostMem ] - [-VmGuestUpdateDuration ] [-VmGuestUpdateTime ] [-VmHostMemToGuestMem ] - [-VmHostMemToGuestMemCalcEnabled ] [-VmMemory ] [-VmMultiUserEnabled ] - [-VmNetworkingMode {BRIDGED | NAT}] [-VmTaskTimeout ] [] -``` - -## DESCRIPTION -The **New-MedvConfiguration** cmdlet creates an object that contains configuration settings for Microsoft Enterprise Desktop Virtualization (MED-V). -You can use the **Export-MedvConfiguration** cmdlet to save the settings to a registry file that has the .reg file name extension. -That file can be packaged with a MED-V workspace or imported into the registry of a MED-V computer. - -This cmdlet creates a **MedvConfiguration** object. -You can modify the settings in that object directly. - -If you do not specify a setting, **Export-MedvConfiguration** does not export that setting to the registry file. -When you apply settings to a MED-V client, if a setting is not specified, the client uses the default value. - -## EXAMPLES - -### Example 1: Create a configuration object -``` -C:\PS>New-MedvConfiguration -UxLogonStartEnabled $True -VmCloseAction HIBERNATE -DiagEventLogLevel : -FtsAddUserToAdminGroupEnabled : -FtsComputerNameMask : -FtsDeleteVMStateTimeout : -FtsDetachVfdTimeout : -FtsDialogUrl : -FtsExplorerTimeout : -FtsFailureDialogMsg : -FtsLogFilePaths : -FtsMaxPostponeTime : -FtsMaxRetryCount : -FtsMode : -FtsNonInteractiveRetryTimeoutInc : -FtsNonInteractiveTimeout : -FtsPostponeUtcDateTimeLimit : -FtsRetryDialogMsg : -FtsSetComputerNameEnabled : -FtsSetJoinDomainEnabled : -FtsSetMachineObjectOUEnabled : -FtsSetRegionalSettingsEnabled : -FtsSetUserDataEnabled : -FtsStartDialogMsg : -FtsTaskCancelTimeout : -FtsTaskVMTurnOffTimeout : -FtsUpgradeTimeout : -UxAppPublishingEnabled : -UxAudioSharingEnabled : -UxClipboardSharingEnabled : -UxCredentialCacheEnabled : -UxDialogTimeout : -UxHideVmTimeout : -UxLogonStartEnabled : True -UxPrinterSharingEnabled : -UxRebootAbsoluteDelayTimeout : -UxRedirectUrls : -UxSmartCardLogonEnabled : -UxSmartCardSharingEnabled : -UxShowExit : -UxUSBDeviceSharingEnabled : -VmCloseAction : HIBERNATE -VmGuestMemFromHostMem : -VmGuestUpdateDuration : -VmGuestUpdateTime : -VmHostMemToGuestMem : -VmHostMemToGuestMemCalcEnabled : -VmMemory : -VmMultiUserEnabled : -VmNetworkingMode : -VmTaskTimeout : -``` - -This command creates a **MedvConfiguration** object. -The cmdlet sets **LogonStartEnabled** to $True and sets **CloseAction** to a value of HIBERNATE. - -### Example 2: Export new object to a file -``` -C:\PS>New-MedvConfiguration -UxLogonStartEnabled $True -VmCloseAction HIBERNATE | Export-MedvConfiguration -Path "c:\temp\medvsettings.reg" -``` - -This command creates a **MedvConfiguration** object, and then passes that object to the **Export-MedvConfiguration** cmdlet by using the pipeline operator. -That cmdlet saves the object as a .reg file. - -### Example 3: Add redirection URLs -``` -C:\PS>New-MedvConfiguration -UxRedirectUrls "http://webapp1/contoso.com","http://webapp2/contoso.com" | Export-MedvConfiguration -Path "c:\temp\redirUrls.reg" -``` - -This command creates a **MedvConfiguration** object that contains redirection for the browser in the guest virtual machine. -The command exports the configuration object to a file. - -### Example 4: Add redirection URLs from a file -``` -C:\PS>New-MedvConfiguration -UxRedirectUrls (Get-Content "url.txt") | Export-MedvConfiguration -Path "UpdatedUrls.reg" -``` - -This command gets a list of redirected URLs from the file named url.txt. -The command adds those URLs to a new configuration object, and then saves that object in a .reg file. - -## PARAMETERS - -### -DiagEventLogLevel -Specifies levels of information to log in the Event Log. -Valid values are: - -- None -- Error -- Warning -- Information -- Debug - -Each warning level includes information from the prior levels. -For example, the Information event level includes both Warning and Error level events. - -```yaml -Type: String -Parameter Sets: (All) -Aliases: Log - -Required: False -Position: Named -Default value: Warning -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -ForceDefaults -Indicates that this cmdlet sets each setting to its default before it applies other settings. -This is not necessary in most cases because unspecified settings use the default. -If you specify this parameter, the cmdlet applies user-specified settings to the HKLM registry hive that is governed completely by the administrator. - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -FtsAddUserToAdminGroupEnabled -Indicates whether to automatically add the user to the Administrator group of the virtual machine. - -```yaml -Type: Boolean -Parameter Sets: (All) -Aliases: AddAdmin - -Required: False -Position: Named -Default value: False -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -FtsComputerNameMask -Specifies a mask used to create the computer name for the MED-V workspace. -Specify the `%username%` tag to insert the user name as part of the computer name. -Specify the `%hostname%` tag to insert the name of the host computer. -Capture a specific number of characters from `%hostname%` and `%username%` by using square brackets. -For example `%username%\[3\]` specifies the first three character of the user name. -The cmdlet replaces every `#` character in the mask with a random digit. -The cmdlet replaces a `*` character at the end of the mask by a random alphanumeric character. - -```yaml -Type: String -Parameter Sets: (All) -Aliases: CompMask - -Required: False -Position: Named -Default value: MEDV* -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -FtsDeleteVMStateTimeout -Specifies the time-out value, in seconds, when initial setup attempts to delete a virtual machine. - -```yaml -Type: Int32 -Parameter Sets: (All) -Aliases: DeleteTime - -Required: False -Position: Named -Default value: 90 -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -FtsDetachVfdTimeout -Specifies the time-out value, in seconds, when initial setup attempts to detach the virtual floppy drive from the virtual machine. - -```yaml -Type: Int32 -Parameter Sets: (All) -Aliases: DetachTime - -Required: False -Position: Named -Default value: 120 -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -FtsDialogUrl -Specifies a custom URL displayed in the initial setup dialog messages. - -```yaml -Type: String -Parameter Sets: (All) -Aliases: FtsUrl - -Required: False -Position: Named -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -FtsExplorerTimeout -Specifies the time-out value, in seconds, that the initial setup completion application waits for the Windows Explorer process prior to issuing the command to shut down the virtual machine. - -```yaml -Type: Int32 -Parameter Sets: (All) -Aliases: MaxExplorerTime - -Required: False -Position: Named -Default value: 900 -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -FtsFailureDialogMsg -Specifies a customizable message to display when initial setup fails. - -```yaml -Type: String -Parameter Sets: (All) -Aliases: FailMsg - -Required: False -Position: Named -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -FtsLogFilePaths -Specifies an array of log files to collect during initial setup. - -```yaml -Type: String[] -Parameter Sets: (All) -Aliases: SetupLog - -Required: False -Position: Named -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -FtsMaxPostponeTime -Specifies the maximum number of hours that initial setup can be postponed. - -```yaml -Type: Int32 -Parameter Sets: (All) -Aliases: MaxPostpone - -Required: False -Position: Named -Default value: 120 -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -FtsMaxRetryCount -Specifies the maximum number of times initial setup can attempt to run. - -```yaml -Type: Int32 -Parameter Sets: (All) -Aliases: MaxRetry - -Required: False -Position: Named -Default value: 3 -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -FtsMode -Specifies how initial setup interacts with the user. -Valid values are: - -- Attended. -Shows the virtual machine window during initial setup. -- Unattended. -Hides the virtual machine windows during initial setup. -- Silent. -Hides all user interaction during initial setup. - -```yaml -Type: String -Parameter Sets: (All) -Aliases: Mode - -Required: False -Position: Named -Default value: UnAttended -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -FtsNonInteractiveRetryTimeoutInc -Specifies the amount of time, in minutes, by which to increase the **NonInteractive Timeout** value for each retry of the initial setup in Unattended or Silent mode. - -```yaml -Type: Int32 -Parameter Sets: (All) -Aliases: FtsTimeoutInc - -Required: False -Position: Named -Default value: 15 -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -FtsNonInteractiveTimeout -Specifies the time-out value, in minutes, on the first attempt to perform initial setup in Unattended or Silent mode. - -```yaml -Type: Int32 -Parameter Sets: (All) -Aliases: FtsTimeout - -Required: False -Position: Named -Default value: 45 -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -FtsPostponeUtcDateTimeLimit -Specifies the date and time, in UTC **DateTime** format, that initial setup can be postponed. -Specify this parameter in the format yyyy-mm-dd hh:mm with hours in 24 hour-clock format. - -```yaml -Type: String -Parameter Sets: (All) -Aliases: PostponeDate - -Required: False -Position: Named -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -FtsRetryDialogMsg -Specifies a message to display when initial setup fails and must retry. - -```yaml -Type: String -Parameter Sets: (All) -Aliases: RetryMsg - -Required: False -Position: Named -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -FtsSetComputerNameEnabled -Indicates whether to update the **ComputerName** setting under the **\[UserData\]** section of the Sysprep.Inf file in the MED-V workspace according to the configured **ComputerNameMask**. - -```yaml -Type: Boolean -Parameter Sets: (All) -Aliases: SetCompName - -Required: False -Position: Named -Default value: False -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -FtsSetJoinDomainEnabled -Specifies whether to update the **JoinDomain** setting under the **\[Identification\]** section of the Sysprep.Inf file in the MED-V workspace should to match the settings on the host computer. - -```yaml -Type: Boolean -Parameter Sets: (All) -Aliases: JoinDomain - -Required: False -Position: Named -Default value: False -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -FtsSetMachineObjectOUEnabled -Specifies whether to update the **MachineObjectOU** setting under the **\[Identification\]** section of the Sysprep.Inf file in the MED-V workspace to match the host computer. -If the value of **FtsSetJoinDomainEnabled** is not ENABLED, this parameter has no effect. - -```yaml -Type: Boolean -Parameter Sets: (All) -Aliases: MachineOU - -Required: False -Position: Named -Default value: False -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -FtsSetRegionalSettingsEnabled -Specifies whether to update the settings under the **\[RegionalSettings\]** section and the **TimeZone** setting under the **\[GuiUnattended\]** section of the Sysprep.Inf file in the MED-V workspace to match the host computer. - -```yaml -Type: Boolean -Parameter Sets: (All) -Aliases: SetRegion - -Required: False -Position: Named -Default value: False -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -FtsSetUserDataEnabled -Specifies whether to update the **FullName** and the **OrgName** settings under the **\[UserData\]** section of the Sysprep.Inf file in the MED-V workspace to match the settings on the host computer. - -```yaml -Type: Boolean -Parameter Sets: (All) -Aliases: SetUserData - -Required: False -Position: Named -Default value: False -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -FtsStartDialogMsg -Specifies the message to display when initial setup is ready to start. - -```yaml -Type: String -Parameter Sets: (All) -Aliases: StartMsg - -Required: False -Position: Named -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -FtsTaskCancelTimeout -Specifies the time-out value, in seconds, that initial setup waits for the virtual machine to respond to a cancel operation. - -```yaml -Type: Int32 -Parameter Sets: (All) -Aliases: CancelTime - -Required: False -Position: Named -Default value: 30 -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -FtsTaskVMTurnOffTimeout -Specifies the time-out value, in seconds, that initial setup waits for the virtual machine to shut down. - -```yaml -Type: Int32 -Parameter Sets: (All) -Aliases: TurnOffTime - -Required: False -Position: Named -Default value: 60 -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -FtsUpgradeTimeout -Specifies the time-out value, in minutes, to use when trying to upgrade the MED-V agent software in a virtual machine. - -```yaml -Type: Int32 -Parameter Sets: (All) -Aliases: UpgradeTime - -Required: False -Position: Named -Default value: 15 -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -UxAppPublishingEnabled -Indicates whether to enable application publishing from the MED-V workspace to the host computer. -If application publishing is enabled, applications in the MED-V workspace are published in the Start menu of the host. - -```yaml -Type: Boolean -Parameter Sets: (All) -Aliases: AppPub - -Required: False -Position: Named -Default value: True -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -UxAudioSharingEnabled -Indicates whether to enable sharing of the audio I/O device between the MED-V workspace and the host computer. - -```yaml -Type: Boolean -Parameter Sets: (All) -Aliases: Audio - -Required: False -Position: Named -Default value: True -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -UxClipboardSharingEnabled -Indicates whether to enable sharing of the clipboard between the MED-V workspace and the host computer. - -```yaml -Type: Boolean -Parameter Sets: (All) -Aliases: Clipboard - -Required: False -Position: Named -Default value: True -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -UxCredentialCacheEnabled -Indicates whether to cache end user credentials. -If *UxSmartCardLogonEnabled* and *UxCredentialCacheEnabled* are both enabled, *UxSmartCardLogonEnabled* overrides *UxCredentialCacheEnabled*. - -The end user domain credential is stored in a reversible format in the Windows Credential Manager. -As a result, an attacker could write a program that retrieves the password and could gain access to the user credentials. -You can lessen the risk to user credentials by disabling the storing of end-user credentials. - -```yaml -Type: Boolean -Parameter Sets: (All) -Aliases: Cred - -Required: False -Position: Named -Default value: True -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -UxDialogTimeout -Specifies the amount of time, in seconds, for dialogs that prompt a user to postpone an action. - -```yaml -Type: Int32 -Parameter Sets: (All) -Aliases: DialogTime - -Required: False -Position: Named -Default value: 300 -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -UxHideVmTimeout -Specifies time-out value, in minutes, that the full screen virtual machine window is hidden from the end user during a long login attempt. - -```yaml -Type: Int32 -Parameter Sets: (All) -Aliases: HideTime - -Required: False -Position: Named -Default value: 30 -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -UxLogonStartEnabled -Specifies whether to start the MED-V workspace when the user logs on to the host computer. -If you specify a value of $False, the MED-V workspace is started when the first MED-V workspace application is launched. - -```yaml -Type: Boolean -Parameter Sets: (All) -Aliases: Logon - -Required: False -Position: Named -Default value: True -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -UxPrinterSharingEnabled -Indicates whether to enable sharing of printers between the MED-V workspace and the host computer. - -```yaml -Type: Boolean -Parameter Sets: (All) -Aliases: Print - -Required: False -Position: Named -Default value: True -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -UxRebootAbsoluteDelayTimeout -Specifies the time-out value, in minutes, before MED-V restarts. - -```yaml -Type: Int32 -Parameter Sets: (All) -Aliases: Reboot - -Required: False -Position: Named -Default value: 1440 -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -UxRedirectUrls -Specifies an array of URLs to redirect to the MED-V workspace. - -```yaml -Type: String[] -Parameter Sets: (All) -Aliases: Urls - -Required: False -Position: Named -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -UxShowExit -Indicates whether to show the Exit menu in the MED-V Host Agent tray icon. - -```yaml -Type: Boolean -Parameter Sets: (All) -Aliases: ShowExit - -Required: False -Position: Named -Default value: True -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -UxSmartCardLogonEnabled -Indicates whether smart cards can be used to authenticate users to MED-V. -If *UxSmartCardLogonEnabled* and *UxCredentialCacheEnabled* are both enabled, *UxSmartCardLogonEnabled* overrides *UxCredentialCacheEnabled*. - -```yaml -Type: Boolean -Parameter Sets: (All) -Aliases: SmartCardLogon - -Required: False -Position: Named -Default value: False -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -UxSmartCardSharingEnabled -Indicates whether to share smart cards between the MED-V workspace and the host computer. - -```yaml -Type: Boolean -Parameter Sets: (All) -Aliases: SmartCard - -Required: False -Position: Named -Default value: True -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -UxUSBDeviceSharingEnabled -Specifies whether to share USB devices between the MED-V workspace and the host computer. - -```yaml -Type: Boolean -Parameter Sets: (All) -Aliases: USB - -Required: False -Position: Named -Default value: True -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -VmCloseAction -Specifies the action of the virtual machine when the last MED-V application is closed. -Valid values are: - -- HIBERNATE -- SHUTDOWN -- TURN-OFF - -If the **LogonStart** is enabled, the value of this parameter has no effect. - -```yaml -Type: String -Parameter Sets: (All) -Aliases: Close - -Required: False -Position: Named -Default value: HIBERNATE -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -VmGuestMemFromHostMem -Specifies the amount of memory, in megabytes, for the MED-V workspace that sets the amount of random access memory (RAM) available to the MED-V workspace. -Valid values are: integers from 128 MB to 2048 MB. - -Combined with **HostMemToGuestMem**, a lookup table is created to determine how much RAM to allocate on the MED-V workspace virtual machine. -The amount of RAM on the host computer is read to determine the nearest value, rounded down, in **HostMemToGuestMem**. -The cmdlet indexes this array at the same location to determine the RAM value of the virtual machine. - -If **HostMemToVmMemCalcEnabled** is not enabled, the value that you specify for this parameter has no effect. - -```yaml -Type: Int32[] -Parameter Sets: (All) -Aliases: GuestMem - -Required: False -Position: Named -Default value: 378 512 1024 1536 2048 -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -VmGuestUpdateDuration -Specifies the number of minutes that MED-V should keep the MED-V workspace awake for updating, starting at the time contained in **GuestUpdateTime**. -Specify a value of zero to disable this feature. -Valid values are: 0 to 1440 minutes. - -```yaml -Type: Int32 -Parameter Sets: (All) -Aliases: UpdateDuration - -Required: False -Position: Named -Default value: 240 -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -VmGuestUpdateTime -Specifies the hour and minute when the MED-V workspace should wake up for updating. -Specify a time in the format hh:mm using 24-hour clock time. - -```yaml -Type: String -Parameter Sets: (All) -Aliases: UpdateTime - -Required: False -Position: Named -Default value: 00:00 -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -VmHostMemToGuestMem -Specifies an array of values, in megabtyes, for the MED-V workspace determined by the amount of RAM available on the host computer. -Combined with **GuestMemFromHostMem**, a lookup table is created to determine how much RAM to allocate on the MED-V workspace virtual machine. -Valid values are: integers from 1024 MB to 16384 MB. -The amount of RAM on the host computer is read and the nearest value in this list is used to index the **GuestMemFromHostMem** list. - -```yaml -Type: Int32[] -Parameter Sets: (All) -Aliases: HostMem - -Required: False -Position: Named -Default value: 1024 2048 4096 8192 16384 -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -VmHostMemToGuestMemCalcEnabled -Indicates whether to calculate the amount of memory allocated for the MED-V workspace from the amount of memory present on the host computer. - -```yaml -Type: Boolean -Parameter Sets: (All) -Aliases: MemCalc - -Required: False -Position: Named -Default value: True -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -VmMemory -Specifies the amount of RAM, in megabytes, allocated for the MED-V virtual machine. -Valid values are: integers from 128 MB to 2048 MB. -If **HostMemToVmMemCalc** is enabled, the value that you specify for this parameter has no effect. - -```yaml -Type: Int32 -Parameter Sets: (All) -Aliases: Mem - -Required: False -Position: Named -Default value: 512 -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -VmMultiUserEnabled -Indicates whether multiple users share a single MED-V workspace. - -```yaml -Type: Boolean -Parameter Sets: (All) -Aliases: MultiUser - -Required: False -Position: Named -Default value: False -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -VmNetworkingMode -Specifies the type of network connection that the MED-V workspace uses. -Valid values are: NAT and BRIDGED. - -```yaml -Type: String -Parameter Sets: (All) -Aliases: Net - -Required: False -Position: Named -Default value: NAT -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -VmTaskTimeout -Specifies a general time-out value, in seconds, that MED-V waits for a task such as shutdown to complete. - -```yaml -Type: Int32 -Parameter Sets: (All) -Aliases: TaskTime - -Required: False -Position: Named -Default value: 600 -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). - -## INPUTS - -## OUTPUTS - -### Microsoft.Medv.Administration.Commands.MedvConfiguration -This cmdlet generates a **MedvConfiguration** object that contains configuration settings. - -## NOTES - -## RELATED LINKS - -[Export-MedvConfiguration](./Export-MedvConfiguration.md) - - From 46c5f6ba9e4280847fd55b455420c13383ffef84 Mon Sep 17 00:00:00 2001 From: RanhaoXu Date: Wed, 1 Jun 2022 15:50:23 +0800 Subject: [PATCH 098/965] Add cabgen-bootstrap-test.yml --- cabgen-bootstrap-test.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 cabgen-bootstrap-test.yml diff --git a/cabgen-bootstrap-test.yml b/cabgen-bootstrap-test.yml new file mode 100644 index 0000000000..39d4a9e289 --- /dev/null +++ b/cabgen-bootstrap-test.yml @@ -0,0 +1,15 @@ +trigger: +- live +- onboard-cabgen # delete after test! + +pr: none # Disable pull request triggers. + +resources: + repositories: + - repository: templates + type: git + name: Content CI/ReferenceAutomation + ref: refs/heads/master + +extends: + template: PowerShell/cabgen.yml@templates \ No newline at end of file From 7036ca8b9adb59b8dc3ca6eb83d28b3e33fe4650 Mon Sep 17 00:00:00 2001 From: xmdanni Date: Thu, 2 Jun 2022 13:44:52 +0800 Subject: [PATCH 099/965] Add the status badge for cabgen CI It shows build status on live branch. --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0d9aede858..f8caac7543 100644 --- a/README.md +++ b/README.md @@ -7,9 +7,13 @@ Edits to this content are published in the following places: - [Windows 10 and Windows Server 2016](https://docs.microsoft.com/en-us/powershell/windows/get-started?view=win10-ps) - [Microsoft Desktop Optimization Pack](https://docs.microsoft.com/en-us/powershell/mdop/get-started?view=win-mdop2-ps) +## PowerShell Updatable Help (CabGen) CI Build Status + +[![Build Status](https://apidrop.visualstudio.com/Content%20CI/_apis/build/status/PROD/CabGen(PowerShell_Updatable_Help)/GitHub_MicrosoftDocs_windows-powershell-docs/46a32786-a1f6-1250-e1e1-2a4554025dc9_cabgen_Publish-Updatable-Help?repoName=MicrosoftDocs%2Fwindows-powershell-docs&branchName=live)](https://apidrop.visualstudio.com/Content%20CI/_build/latest?definitionId=5077&repoName=MicrosoftDocs%2Fwindows-powershell-docs&branchName=live) + ## Contributing -We actively merge contributions into this repository via [pull request](https://help.github.com/articles/using-pull-requests/) into the *master* branch. +We actively merge contributions into this repository via [pull request](https://help.github.com/articles/using-pull-requests/) into the *main* branch. If you are not a Microsoft employee, before you submit a pull request you must [sign a Contribution License Agreement](https://cla.microsoft.com/) to ensure that the community is free to use your submissions. For more information on contributing, read our [contributions guide](CONTRIBUTING.md). From 501018798b39da149530812c74c092daccc8f5b9 Mon Sep 17 00:00:00 2001 From: xmdanni Date: Thu, 2 Jun 2022 19:22:52 +0800 Subject: [PATCH 100/965] Delete cabgen-bootstrap-test.yml Finished test, will upload the official file. --- cabgen-bootstrap-test.yml | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 cabgen-bootstrap-test.yml diff --git a/cabgen-bootstrap-test.yml b/cabgen-bootstrap-test.yml deleted file mode 100644 index 39d4a9e289..0000000000 --- a/cabgen-bootstrap-test.yml +++ /dev/null @@ -1,15 +0,0 @@ -trigger: -- live -- onboard-cabgen # delete after test! - -pr: none # Disable pull request triggers. - -resources: - repositories: - - repository: templates - type: git - name: Content CI/ReferenceAutomation - ref: refs/heads/master - -extends: - template: PowerShell/cabgen.yml@templates \ No newline at end of file From 2e8dfc1a735577314a5e169f56cccb180edca087 Mon Sep 17 00:00:00 2001 From: xmdanni Date: Thu, 2 Jun 2022 19:23:48 +0800 Subject: [PATCH 101/965] Add the yaml file for cabgen pipeline This is a pipeline source for a content repo to onboard PowerShell Updatable Help (CabGen) CI. --- cabgen-bootstrap.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 cabgen-bootstrap.yml diff --git a/cabgen-bootstrap.yml b/cabgen-bootstrap.yml new file mode 100644 index 0000000000..51843abfaa --- /dev/null +++ b/cabgen-bootstrap.yml @@ -0,0 +1,14 @@ +trigger: +- live + +pr: none # Disable pull request triggers. + +resources: + repositories: + - repository: templates + type: git + name: Content CI/ReferenceAutomation + ref: refs/heads/master + +extends: + template: PowerShell/cabgen.yml@templates \ No newline at end of file From 2f4aaca444b33f6853517b9f616e95dfce856dcf Mon Sep 17 00:00:00 2001 From: VARADHARAJAN K <3296790+RAJU2529@users.noreply.github.com> Date: Wed, 8 Jun 2022 21:46:23 +0530 Subject: [PATCH 102/965] removed technet link added docs.microsoft link as per user report #2943, so i removed Technet link and added docs.microsoft.com link **https://docs.microsoft.com/previous-versions/windows/it-pro/windows-8.1-and-8/jj131725(v=ws.11)?redirectedfrom=MSDN** --- .../trustedplatformmodule/Disable-TpmAutoProvisioning.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/trustedplatformmodule/Disable-TpmAutoProvisioning.md b/docset/winserver2022-ps/trustedplatformmodule/Disable-TpmAutoProvisioning.md index 275976a71c..ba4860cdcb 100644 --- a/docset/winserver2022-ps/trustedplatformmodule/Disable-TpmAutoProvisioning.md +++ b/docset/winserver2022-ps/trustedplatformmodule/Disable-TpmAutoProvisioning.md @@ -25,7 +25,7 @@ Provisioning is the process of preparing a TPM to be used. You can disable provisioning completely or only for the next restart. You can use the Enable-TpmAutoProvisioning cmdlet to enable auto-provisioning. -For more information on TPM, see the [Trusted Platform Module Technology Overview](https://technet.microsoft.com/en-us/library/jj131725.aspx) in the Technet library. +For more information on TPM, see the [Trusted Platform Module Technology Overview](https://docs.microsoft.com/previous-versions/windows/it-pro/windows-8.1-and-8/jj131725(v=ws.11)?redirectedfrom=MSDN) in the Technet library. ## EXAMPLES From dcffc32f25bb2eeb0e50fc8f44594baf509e1778 Mon Sep 17 00:00:00 2001 From: "Peter Torr (MSFT)" Date: Wed, 4 May 2022 12:16:20 -0700 Subject: [PATCH 103/965] Update Invoke-CommandInDesktopPackage.md Added more detailed info --- .../appx/Invoke-CommandInDesktopPackage.md | 43 ++++++++++++------- 1 file changed, 27 insertions(+), 16 deletions(-) diff --git a/docset/winserver2022-ps/appx/Invoke-CommandInDesktopPackage.md b/docset/winserver2022-ps/appx/Invoke-CommandInDesktopPackage.md index e5a3731d48..14706ec8f2 100644 --- a/docset/winserver2022-ps/appx/Invoke-CommandInDesktopPackage.md +++ b/docset/winserver2022-ps/appx/Invoke-CommandInDesktopPackage.md @@ -1,5 +1,5 @@ --- -description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. +description: A debugging tool that creates a new process in the context of a packaged app. external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: Appx ms.date: 05/19/2017 @@ -11,43 +11,52 @@ title: Invoke-CommandInDesktopPackage # Invoke-CommandInDesktopPackage ## SYNOPSIS -Runs a command in the context of a specified app package. +A debugging tool that creates a new process in the context of a packaged app. ## SYNTAX ``` -Invoke-CommandInDesktopPackage [-PackageFamilyName] [[-AppId] ] [-Command] +Invoke-CommandInDesktopPackage [-PackageFamilyName] [-AppId] [-Command] [[-Args] ] [-PreventBreakaway] [] ``` ## DESCRIPTION -**Invoke-CommandInDesktopPackage** will have a package token and identity. It's primarily designed to be used as a debugging utility. +**Invoke-CommandInDesktopPackage** creates a new process in the context of the supplied `PackageFamilyName` and `AppId`. + +The created process will have the identity of the provided `AppId` and will have access to its virtualized file system and registry (if any). The new process will have a token that is similar to, but not identical to, a real `AppId` process. + +The primary use-case of this command is to invoke debugging or troubleshooting tools in the context of the packaged app to easily access its virtualized resources. For exampple, you can run the Registry Editor to see virtualized registry keys, or Notepad to read virtualized files. See important note below on using tools such as the Registry Editor that require elevation. + +No guarantees are made about the behavior of the created process, other than it having the package identity and access to the package's virtualized resources. In particular, the new process will **not** be created in an AppContainer even if an `AppId` process would normally be created in an AppContainer. Features as Privacy Controls or other App Settings may or may not apply to the new process. You should not rely on any specific side-effects of using this command, as they are undefined and subject to change. ## EXAMPLES -### Example 1: Invoke an executable from app package +### Example 1: Invoke Notepad to read virtualized files + +The following command invokes Notepad in the context of the `ContosoApp` app from the `Constoso.MyApp` package. This allows you to access resources such as a log file or configuration file stored in the app's virtualized filesystem. + ``` -PS C:\> Invoke-CommandInDesktopPackage -AppId "AppPackage1" -PackageFamilyName "29270sandstorm.AppPackage1_gah1vdar1nn7a" -Command "demo.exe" +PS C:\> Invoke-CommandInDesktopPackage -AppId "ContosoApp" -PackageFamilyName "Contoso.MyApp_abcdefgh23456" -Command "notepad.exe" ``` -This command invokes the demo.exe that can be found in '29270sandstorm.AppPackage1_gah1vdar1nn7a' app package under the 'AppPackage1' Application element. + ## PARAMETERS ### -AppId -AppId is the Application ID from the package manifest. +`AppId` is the Application Id from the target package's manifest. - - - +```XML + +``` ```yaml Type: String Parameter Sets: (All) Aliases: -Required: False +Required: True Position: 2 Default value: None Accept pipeline input: True (ByPropertyName, ByValue) @@ -55,7 +64,7 @@ Accept wildcard characters: False ``` ### -Args -Optional arguments that should be passed to the Command (e.g. "/od") +Optional arguments to be passed to the new process (e.g. "/foo /bar") ```yaml Type: String @@ -70,7 +79,9 @@ Accept wildcard characters: False ``` ### -Command -An executable to invoke (e.g. "cmd.exe") +An executable to invoke (e.g. "regedit.exe"). + +Note that if the executable requires elevation (like regedit), you **must** call `Invoke-CommandInDesktopPackage` from an already-elevated context. Calling `Invoke-CommandInDesktopPackage` from a non-elevated context will not work as expected: the new process will be created without the package context, and the PowerShell command will fail. ```yaml Type: String @@ -85,7 +96,7 @@ Accept wildcard characters: False ``` ### -PackageFamilyName -Family Name of the package. You can retrieve this by calling [Get-AppxPackage](./Get-AppxPackage.md). +The Package Family Name of the target package. You can retrieve this by calling [Get-AppxPackage](./Get-AppxPackage.md). ```yaml Type: String @@ -100,7 +111,7 @@ Accept wildcard characters: False ``` ### -PreventBreakaway -Switch that causes the entire process tree to stay in the package context. +Causes all child processes of the invoked process to also be created in the context of the `AppId`. By default, child processes are created without any context. This switch is useful for running `cmd.exe` so that you can launch multiple other tools in the package context. ```yaml Type: SwitchParameter From 152293894d6f19d74a505ee12b58b8da78aa3323 Mon Sep 17 00:00:00 2001 From: "Peter Torr (MSFT)" Date: Mon, 9 May 2022 09:14:28 -0700 Subject: [PATCH 104/965] Update docset/winserver2022-ps/appx/Invoke-CommandInDesktopPackage.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2022-ps/appx/Invoke-CommandInDesktopPackage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/appx/Invoke-CommandInDesktopPackage.md b/docset/winserver2022-ps/appx/Invoke-CommandInDesktopPackage.md index 14706ec8f2..6d24eb7a38 100644 --- a/docset/winserver2022-ps/appx/Invoke-CommandInDesktopPackage.md +++ b/docset/winserver2022-ps/appx/Invoke-CommandInDesktopPackage.md @@ -25,7 +25,7 @@ Invoke-CommandInDesktopPackage [-PackageFamilyName] [-AppId] [ The created process will have the identity of the provided `AppId` and will have access to its virtualized file system and registry (if any). The new process will have a token that is similar to, but not identical to, a real `AppId` process. -The primary use-case of this command is to invoke debugging or troubleshooting tools in the context of the packaged app to easily access its virtualized resources. For exampple, you can run the Registry Editor to see virtualized registry keys, or Notepad to read virtualized files. See important note below on using tools such as the Registry Editor that require elevation. +The primary use-case of this command is to invoke debugging or troubleshooting tools in the context of the packaged app to easily access its virtualized resources. For example, you can run the Registry Editor to see virtualized registry keys, or Notepad to read virtualized files. See the important note that follows on using tools such as the Registry Editor that require elevation. No guarantees are made about the behavior of the created process, other than it having the package identity and access to the package's virtualized resources. In particular, the new process will **not** be created in an AppContainer even if an `AppId` process would normally be created in an AppContainer. Features as Privacy Controls or other App Settings may or may not apply to the new process. You should not rely on any specific side-effects of using this command, as they are undefined and subject to change. From c44c1c1a49a1fc9a59b876515f3317a89055ca4b Mon Sep 17 00:00:00 2001 From: "Peter Torr (MSFT)" Date: Mon, 9 May 2022 09:14:59 -0700 Subject: [PATCH 105/965] Update docset/winserver2022-ps/appx/Invoke-CommandInDesktopPackage.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2022-ps/appx/Invoke-CommandInDesktopPackage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/appx/Invoke-CommandInDesktopPackage.md b/docset/winserver2022-ps/appx/Invoke-CommandInDesktopPackage.md index 6d24eb7a38..fe87c68182 100644 --- a/docset/winserver2022-ps/appx/Invoke-CommandInDesktopPackage.md +++ b/docset/winserver2022-ps/appx/Invoke-CommandInDesktopPackage.md @@ -27,7 +27,7 @@ The created process will have the identity of the provided `AppId` and will have The primary use-case of this command is to invoke debugging or troubleshooting tools in the context of the packaged app to easily access its virtualized resources. For example, you can run the Registry Editor to see virtualized registry keys, or Notepad to read virtualized files. See the important note that follows on using tools such as the Registry Editor that require elevation. -No guarantees are made about the behavior of the created process, other than it having the package identity and access to the package's virtualized resources. In particular, the new process will **not** be created in an AppContainer even if an `AppId` process would normally be created in an AppContainer. Features as Privacy Controls or other App Settings may or may not apply to the new process. You should not rely on any specific side-effects of using this command, as they are undefined and subject to change. +No guarantees are made about the behavior of the created process, other than it having the package identity and access to the package's virtualized resources. In particular, the new process will **not** be created in an AppContainer even if an `AppId` process would normally be created in an AppContainer. Features such as Privacy Controls or other App Settings may or may not apply to the new process. You should not rely on any specific side-effects of using this command, as they are undefined and subject to change. ## EXAMPLES From 6dd301fe05802639dda040bdc7039be4e34d81af Mon Sep 17 00:00:00 2001 From: "Peter Torr (MSFT)" Date: Mon, 9 May 2022 09:15:14 -0700 Subject: [PATCH 106/965] Update docset/winserver2022-ps/appx/Invoke-CommandInDesktopPackage.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2022-ps/appx/Invoke-CommandInDesktopPackage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/appx/Invoke-CommandInDesktopPackage.md b/docset/winserver2022-ps/appx/Invoke-CommandInDesktopPackage.md index fe87c68182..08cb4c612a 100644 --- a/docset/winserver2022-ps/appx/Invoke-CommandInDesktopPackage.md +++ b/docset/winserver2022-ps/appx/Invoke-CommandInDesktopPackage.md @@ -44,7 +44,7 @@ PS C:\> Invoke-CommandInDesktopPackage -AppId "ContosoApp" -PackageFamilyName "C ## PARAMETERS ### -AppId -`AppId` is the Application Id from the target package's manifest. +`AppId` is the Application ID from the target package's manifest. ```XML From 0c9fd319ec51774f7b6521d898145710c8cd41f8 Mon Sep 17 00:00:00 2001 From: "Peter Torr (MSFT)" Date: Mon, 9 May 2022 09:15:21 -0700 Subject: [PATCH 107/965] Update docset/winserver2022-ps/appx/Invoke-CommandInDesktopPackage.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2022-ps/appx/Invoke-CommandInDesktopPackage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/appx/Invoke-CommandInDesktopPackage.md b/docset/winserver2022-ps/appx/Invoke-CommandInDesktopPackage.md index 08cb4c612a..4eafb1606f 100644 --- a/docset/winserver2022-ps/appx/Invoke-CommandInDesktopPackage.md +++ b/docset/winserver2022-ps/appx/Invoke-CommandInDesktopPackage.md @@ -79,7 +79,7 @@ Accept wildcard characters: False ``` ### -Command -An executable to invoke (e.g. "regedit.exe"). +An executable to invoke (for example, "regedit.exe"). Note that if the executable requires elevation (like regedit), you **must** call `Invoke-CommandInDesktopPackage` from an already-elevated context. Calling `Invoke-CommandInDesktopPackage` from a non-elevated context will not work as expected: the new process will be created without the package context, and the PowerShell command will fail. From 0495ec2bf80b114a3911a6861d987fd494b2c45b Mon Sep 17 00:00:00 2001 From: "Peter Torr (MSFT)" Date: Tue, 10 May 2022 11:45:53 -0700 Subject: [PATCH 108/965] Update docset/winserver2022-ps/appx/Invoke-CommandInDesktopPackage.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2022-ps/appx/Invoke-CommandInDesktopPackage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/appx/Invoke-CommandInDesktopPackage.md b/docset/winserver2022-ps/appx/Invoke-CommandInDesktopPackage.md index 4eafb1606f..a34c797032 100644 --- a/docset/winserver2022-ps/appx/Invoke-CommandInDesktopPackage.md +++ b/docset/winserver2022-ps/appx/Invoke-CommandInDesktopPackage.md @@ -33,7 +33,7 @@ No guarantees are made about the behavior of the created process, other than it ### Example 1: Invoke Notepad to read virtualized files -The following command invokes Notepad in the context of the `ContosoApp` app from the `Constoso.MyApp` package. This allows you to access resources such as a log file or configuration file stored in the app's virtualized filesystem. +The following command invokes Notepad in the context of the `ContosoApp` app from the `Contoso.MyApp` package. This allows you to access resources such as a log file or configuration file stored in the app's virtualized filesystem. ``` PS C:\> Invoke-CommandInDesktopPackage -AppId "ContosoApp" -PackageFamilyName "Contoso.MyApp_abcdefgh23456" -Command "notepad.exe" From 6df50fed4c04e8b976cf462f5bbc5901f47215b3 Mon Sep 17 00:00:00 2001 From: "Peter Torr (MSFT)" Date: Tue, 10 May 2022 11:46:06 -0700 Subject: [PATCH 109/965] Update docset/winserver2022-ps/appx/Invoke-CommandInDesktopPackage.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2022-ps/appx/Invoke-CommandInDesktopPackage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/appx/Invoke-CommandInDesktopPackage.md b/docset/winserver2022-ps/appx/Invoke-CommandInDesktopPackage.md index a34c797032..7c14d251b3 100644 --- a/docset/winserver2022-ps/appx/Invoke-CommandInDesktopPackage.md +++ b/docset/winserver2022-ps/appx/Invoke-CommandInDesktopPackage.md @@ -64,7 +64,7 @@ Accept wildcard characters: False ``` ### -Args -Optional arguments to be passed to the new process (e.g. "/foo /bar") +Optional arguments to be passed to the new process (for example, "/foo /bar") ```yaml Type: String From 61bbd76038d8e10c31c1ea0167018c77a49f6ebd Mon Sep 17 00:00:00 2001 From: Sean Wheeler Date: Fri, 10 Jun 2022 08:39:34 -0500 Subject: [PATCH 110/965] Fix formatting --- .../appx/Invoke-CommandInDesktopPackage.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docset/winserver2022-ps/appx/Invoke-CommandInDesktopPackage.md b/docset/winserver2022-ps/appx/Invoke-CommandInDesktopPackage.md index 7c14d251b3..5c4a0e47e8 100644 --- a/docset/winserver2022-ps/appx/Invoke-CommandInDesktopPackage.md +++ b/docset/winserver2022-ps/appx/Invoke-CommandInDesktopPackage.md @@ -21,13 +21,13 @@ Invoke-CommandInDesktopPackage [-PackageFamilyName] [-AppId] [ ``` ## DESCRIPTION -**Invoke-CommandInDesktopPackage** creates a new process in the context of the supplied `PackageFamilyName` and `AppId`. +`Invoke-CommandInDesktopPackage` creates a new process in the context of the supplied **PackageFamilyName** and **AppId**. -The created process will have the identity of the provided `AppId` and will have access to its virtualized file system and registry (if any). The new process will have a token that is similar to, but not identical to, a real `AppId` process. +The created process will have the identity of the provided **AppId** and will have access to its virtualized file system and registry (if any). The new process will have a token that is similar to, but not identical to, a real **AppId** process. The primary use-case of this command is to invoke debugging or troubleshooting tools in the context of the packaged app to easily access its virtualized resources. For example, you can run the Registry Editor to see virtualized registry keys, or Notepad to read virtualized files. See the important note that follows on using tools such as the Registry Editor that require elevation. -No guarantees are made about the behavior of the created process, other than it having the package identity and access to the package's virtualized resources. In particular, the new process will **not** be created in an AppContainer even if an `AppId` process would normally be created in an AppContainer. Features such as Privacy Controls or other App Settings may or may not apply to the new process. You should not rely on any specific side-effects of using this command, as they are undefined and subject to change. +No guarantees are made about the behavior of the created process, other than it having the package identity and access to the package's virtualized resources. In particular, the new process will _not_ be created in an AppContainer even if an **AppId** process would normally be created in an AppContainer. Features such as Privacy Controls or other App Settings may or may not apply to the new process. You should not rely on any specific side-effects of using this command, as they are undefined and subject to change. ## EXAMPLES @@ -44,7 +44,7 @@ PS C:\> Invoke-CommandInDesktopPackage -AppId "ContosoApp" -PackageFamilyName "C ## PARAMETERS ### -AppId -`AppId` is the Application ID from the target package's manifest. +**AppId** is the Application ID from the target package's manifest. ```XML @@ -79,9 +79,9 @@ Accept wildcard characters: False ``` ### -Command -An executable to invoke (for example, "regedit.exe"). +An executable to invoke (for example, `regedit.exe`). -Note that if the executable requires elevation (like regedit), you **must** call `Invoke-CommandInDesktopPackage` from an already-elevated context. Calling `Invoke-CommandInDesktopPackage` from a non-elevated context will not work as expected: the new process will be created without the package context, and the PowerShell command will fail. +Note that if the executable requires elevation (like `regedit`), you must call `Invoke-CommandInDesktopPackage` from an already-elevated context. Calling `Invoke-CommandInDesktopPackage` from a non-elevated context does not work as expected. The new process is created without the package context, and the PowerShell command fails. ```yaml Type: String @@ -111,7 +111,7 @@ Accept wildcard characters: False ``` ### -PreventBreakaway -Causes all child processes of the invoked process to also be created in the context of the `AppId`. By default, child processes are created without any context. This switch is useful for running `cmd.exe` so that you can launch multiple other tools in the package context. +Causes all child processes of the invoked process to also be created in the context of the **AppId**. By default, child processes are created without any context. This switch is useful for running `cmd.exe` so that you can launch multiple other tools in the package context. ```yaml Type: SwitchParameter From 22cd91ae214d77849c9248dd19c8936e63f30e02 Mon Sep 17 00:00:00 2001 From: Borislav Velkov Date: Tue, 10 May 2022 16:26:41 +0300 Subject: [PATCH 111/965] Resolves #2825 Move WhatIf note in cmdlet description NOTE: The WhatIf switch does not work with this cmdlet. --- docset/winserver2012-ps/smbshare/New-SmbShare.md | 4 ++-- docset/winserver2012r2-ps/smbshare/New-SmbShare.md | 4 ++-- docset/winserver2016-ps/smbshare/New-SmbShare.md | 4 ++-- docset/winserver2019-ps/smbshare/New-SmbShare.md | 4 ++-- docset/winserver2022-ps/smbshare/New-SmbShare.md | 4 ++-- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/docset/winserver2012-ps/smbshare/New-SmbShare.md b/docset/winserver2012-ps/smbshare/New-SmbShare.md index a135320c05..2953fe1936 100644 --- a/docset/winserver2012-ps/smbshare/New-SmbShare.md +++ b/docset/winserver2012-ps/smbshare/New-SmbShare.md @@ -25,6 +25,8 @@ The **New-SMBShare** cmdlet exposes a file system folder to remote clients as a To delete a share that was created by this cmdlet, use the Remove-SMBShare cmdlet. +NOTE: The WhatIf switch does not work with this cmdlet. + ## EXAMPLES ### EXAMPLE 1 @@ -376,8 +378,6 @@ Accept wildcard characters: False Shows what would happen if the cmdlet runs. The cmdlet is not run. -NOTE: The WhatIf switch does not work with this cmdlet. - ```yaml Type: SwitchParameter Parameter Sets: (All) diff --git a/docset/winserver2012r2-ps/smbshare/New-SmbShare.md b/docset/winserver2012r2-ps/smbshare/New-SmbShare.md index b5aea12aa4..5b62093632 100644 --- a/docset/winserver2012r2-ps/smbshare/New-SmbShare.md +++ b/docset/winserver2012r2-ps/smbshare/New-SmbShare.md @@ -28,6 +28,8 @@ The **New-SMBShare** cmdlet exposes a file system folder to remote clients as a To delete a share that was created by this cmdlet, use the Remove-SMBShare cmdlet. +NOTE: The WhatIf switch does not work with this cmdlet. + ## EXAMPLES ### EXAMPLE 1 @@ -396,8 +398,6 @@ Accept wildcard characters: False Shows what would happen if the cmdlet runs. The cmdlet is not run. -NOTE: The WhatIf switch does not work with this cmdlet. - ```yaml Type: SwitchParameter Parameter Sets: (All) diff --git a/docset/winserver2016-ps/smbshare/New-SmbShare.md b/docset/winserver2016-ps/smbshare/New-SmbShare.md index 23713f56bb..b9bcfa93c8 100644 --- a/docset/winserver2016-ps/smbshare/New-SmbShare.md +++ b/docset/winserver2016-ps/smbshare/New-SmbShare.md @@ -29,6 +29,8 @@ The **New-SmbShare** cmdlet exposes a file system folder to remote clients as a To delete a share that was created by this cmdlet, use the Remove-SmbShare cmdlet. +NOTE: The WhatIf switch does not work with this cmdlet. + ## EXAMPLES ### Example 1: Create an SMB share @@ -412,8 +414,6 @@ Accept wildcard characters: False Shows what would happen if the cmdlet runs. The cmdlet is not run. -NOTE: The WhatIf switch does not work with this cmdlet. - ```yaml Type: SwitchParameter Parameter Sets: (All) diff --git a/docset/winserver2019-ps/smbshare/New-SmbShare.md b/docset/winserver2019-ps/smbshare/New-SmbShare.md index 975baa0655..9583c53688 100644 --- a/docset/winserver2019-ps/smbshare/New-SmbShare.md +++ b/docset/winserver2019-ps/smbshare/New-SmbShare.md @@ -29,6 +29,8 @@ The **New-SmbShare** cmdlet exposes a file system folder to remote clients as a To delete a share that was created by this cmdlet, use the Remove-SmbShare cmdlet. +NOTE: The WhatIf switch does not work with this cmdlet. + ## EXAMPLES ### Example 1: Create an SMB share @@ -412,8 +414,6 @@ Accept wildcard characters: False Shows what would happen if the cmdlet runs. The cmdlet is not run. -NOTE: The WhatIf switch does not work with this cmdlet. - ```yaml Type: SwitchParameter Parameter Sets: (All) diff --git a/docset/winserver2022-ps/smbshare/New-SmbShare.md b/docset/winserver2022-ps/smbshare/New-SmbShare.md index 802935f6e6..f944df8007 100644 --- a/docset/winserver2022-ps/smbshare/New-SmbShare.md +++ b/docset/winserver2022-ps/smbshare/New-SmbShare.md @@ -29,6 +29,8 @@ The **New-SmbShare** cmdlet exposes a file system folder to remote clients as a To delete a share that was created by this cmdlet, use the Remove-SmbShare cmdlet. +NOTE: The WhatIf switch does not work with this cmdlet. + ## EXAMPLES ### Example 1: Create an SMB share @@ -462,8 +464,6 @@ Accept wildcard characters: False Shows what would happen if the cmdlet runs. The cmdlet is not run. -NOTE: The WhatIf switch does not work with this cmdlet. - ```yaml Type: SwitchParameter Parameter Sets: (All) From dd6d4eb5c2c0dd270c148ce2abdaabe07abb280f Mon Sep 17 00:00:00 2001 From: Borislav Velkov Date: Fri, 10 Jun 2022 18:06:51 +0300 Subject: [PATCH 112/965] Apply suggestions from code review Co-authored-by: Sean Wheeler --- docset/winserver2012-ps/smbshare/New-SmbShare.md | 3 ++- docset/winserver2012r2-ps/smbshare/New-SmbShare.md | 3 ++- docset/winserver2016-ps/smbshare/New-SmbShare.md | 3 ++- docset/winserver2019-ps/smbshare/New-SmbShare.md | 3 ++- docset/winserver2022-ps/smbshare/New-SmbShare.md | 3 ++- 5 files changed, 10 insertions(+), 5 deletions(-) diff --git a/docset/winserver2012-ps/smbshare/New-SmbShare.md b/docset/winserver2012-ps/smbshare/New-SmbShare.md index 2953fe1936..a5045308a4 100644 --- a/docset/winserver2012-ps/smbshare/New-SmbShare.md +++ b/docset/winserver2012-ps/smbshare/New-SmbShare.md @@ -25,7 +25,8 @@ The **New-SMBShare** cmdlet exposes a file system folder to remote clients as a To delete a share that was created by this cmdlet, use the Remove-SMBShare cmdlet. -NOTE: The WhatIf switch does not work with this cmdlet. +> [!NOTE] +> The **WhatIf** parameter does not work with this cmdlet. ## EXAMPLES diff --git a/docset/winserver2012r2-ps/smbshare/New-SmbShare.md b/docset/winserver2012r2-ps/smbshare/New-SmbShare.md index 5b62093632..b27ac096f2 100644 --- a/docset/winserver2012r2-ps/smbshare/New-SmbShare.md +++ b/docset/winserver2012r2-ps/smbshare/New-SmbShare.md @@ -28,7 +28,8 @@ The **New-SMBShare** cmdlet exposes a file system folder to remote clients as a To delete a share that was created by this cmdlet, use the Remove-SMBShare cmdlet. -NOTE: The WhatIf switch does not work with this cmdlet. +> [!NOTE] +> The **WhatIf** parameter does not work with this cmdlet. ## EXAMPLES diff --git a/docset/winserver2016-ps/smbshare/New-SmbShare.md b/docset/winserver2016-ps/smbshare/New-SmbShare.md index b9bcfa93c8..72ba30bdfd 100644 --- a/docset/winserver2016-ps/smbshare/New-SmbShare.md +++ b/docset/winserver2016-ps/smbshare/New-SmbShare.md @@ -29,7 +29,8 @@ The **New-SmbShare** cmdlet exposes a file system folder to remote clients as a To delete a share that was created by this cmdlet, use the Remove-SmbShare cmdlet. -NOTE: The WhatIf switch does not work with this cmdlet. +> [!NOTE] +> The **WhatIf** parameter does not work with this cmdlet. ## EXAMPLES diff --git a/docset/winserver2019-ps/smbshare/New-SmbShare.md b/docset/winserver2019-ps/smbshare/New-SmbShare.md index 9583c53688..82d2ac1b85 100644 --- a/docset/winserver2019-ps/smbshare/New-SmbShare.md +++ b/docset/winserver2019-ps/smbshare/New-SmbShare.md @@ -29,7 +29,8 @@ The **New-SmbShare** cmdlet exposes a file system folder to remote clients as a To delete a share that was created by this cmdlet, use the Remove-SmbShare cmdlet. -NOTE: The WhatIf switch does not work with this cmdlet. +> [!NOTE] +> The **WhatIf** parameter does not work with this cmdlet. ## EXAMPLES diff --git a/docset/winserver2022-ps/smbshare/New-SmbShare.md b/docset/winserver2022-ps/smbshare/New-SmbShare.md index f944df8007..3891168739 100644 --- a/docset/winserver2022-ps/smbshare/New-SmbShare.md +++ b/docset/winserver2022-ps/smbshare/New-SmbShare.md @@ -29,7 +29,8 @@ The **New-SmbShare** cmdlet exposes a file system folder to remote clients as a To delete a share that was created by this cmdlet, use the Remove-SmbShare cmdlet. -NOTE: The WhatIf switch does not work with this cmdlet. +> [!NOTE] +> The **WhatIf** parameter does not work with this cmdlet. ## EXAMPLES From 27a7d513e5ec2a651a93a733d0c2d1e33caba010 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Fri, 10 Jun 2022 14:48:52 +0100 Subject: [PATCH 113/965] Servicing updates for the SmbShare module --- .../smbshare/Get-SmbClientConfiguration.md | 17 +- .../smbshare/Get-SmbServerConfiguration.md | 94 ++- .../smbshare/Reset-SmbClientConfiguration.md | 563 +++++++++++++ .../smbshare/Reset-SmbServerConfiguration.md | 761 ++++++++++++++++++ .../smbshare/Set-SmbClientConfiguration.md | 41 +- .../smbshare/Set-SmbServerConfiguration.md | 44 +- docset/winserver2022-ps/smbshare/SmbShare.md | 6 + 7 files changed, 1462 insertions(+), 64 deletions(-) create mode 100644 docset/winserver2022-ps/smbshare/Reset-SmbClientConfiguration.md create mode 100644 docset/winserver2022-ps/smbshare/Reset-SmbServerConfiguration.md diff --git a/docset/winserver2022-ps/smbshare/Get-SmbClientConfiguration.md b/docset/winserver2022-ps/smbshare/Get-SmbClientConfiguration.md index 0b14693b77..b553427409 100644 --- a/docset/winserver2022-ps/smbshare/Get-SmbClientConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Get-SmbClientConfiguration.md @@ -26,35 +26,42 @@ The **Get-SmbClientConfiguration** cmdlet retrieves the Server Message Block (SM ## EXAMPLES ### Example 1: Get the client configuration +```PowerShell +Get-SmbClientConfiguration ``` -PS C:\>Get-SmbClientConfiguration +```Output +SkipCertificateCheck : False ConnectionCountPerRssNetworkInterface : 4 DirectoryCacheEntriesMax : 16 -DirectoryCacheEntrySizeMax : 65536 +DirectoryCacheEntrySizeMax : 0 DirectoryCacheLifetime : 10 +DormantFileLimit : 1023 EnableBandwidthThrottling : True EnableByteRangeLockingOnReadOnlyFiles : True EnableLargeMtu : True +EnableLoadBalanceScaleOut : True EnableMultiChannel : True -DormantFileLimit : 1023 -EnableSecuritySignature : True ExtendedSessionTimeout : 1000 FileInfoCacheEntriesMax : 64 FileInfoCacheLifetime : 10 FileNotFoundCacheEntriesMax : 128 FileNotFoundCacheLifetime : 5 +ForceSMBEncryptionOverQuic : False KeepConn : 600 MaxCmds : 50 MaximumConnectionCountPerServer : 32 OplocksDisabled : False -RequireSecuritySignature : False SessionTimeout : 60 UseOpportunisticLocking : True WindowSizeThreshold : 1 +EncryptionCiphers : AES_128_GCM, AES_128_CCM, AES_256_GCM, AES_256_CCM ``` This command retrieves the SMB client configuration. +> [!NOTE] +> The EncryptionCiphers parameter is available beginning with 2022-06 Cumulative Update for Windows Server 2022 (build 20348.681), and Cumulative Update for Windows 11 (build 22000.652). + ## PARAMETERS ### -AsJob diff --git a/docset/winserver2022-ps/smbshare/Get-SmbServerConfiguration.md b/docset/winserver2022-ps/smbshare/Get-SmbServerConfiguration.md index 9c5ba1d5a0..3d283bac29 100644 --- a/docset/winserver2022-ps/smbshare/Get-SmbServerConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Get-SmbServerConfiguration.md @@ -26,53 +26,63 @@ The **Get-SmbServerConfiguration** cmdlet retrieves the Server Message Block (SM ## EXAMPLES ### Example 1: Get SMB server configuration +```PowerShell +Get-SmbServerConfiguration ``` -PS C:\>Get-SmbServerConfiguration -AnnounceServer : False -AsynchronousCredits : 64 -AutoShareServer : True -AutoShareWorkstation : True -CachedOpenLimit : 5 -AnnounceComment : -EnableDownlevelTimewarp : False -EnableLeasing : True -EnableMultiChannel : True -EnableStrictNameChecking : True -AutoDisconnectTimeout : 0 -DurableHandleV2TimeoutInSeconds : 30 -EnableAuthenticateUserSharing : False -EnableForcedLogoff : True -EnableOplocks : True -EnableSecuritySignature : False -ServerHidden : True -IrpStackSize : 15 -KeepAliveTime : 2 -MaxChannelPerSession : 32 -MaxMpxCount : 50 -MaxSessionPerConnection : 16384 -MaxThreadsPerQueue : 20 -MaxWorkItems : 1 -NullSessionPipes : -NullSessionShares : -OplockBreakWait : 35 -PendingClientTimeoutInSeconds : 120 -RequireSecuritySignature : False -EnableSMB1Protocol : True -EnableSMB2Protocol : True -Smb2CreditsMax : 2048 -Smb2CreditsMin : 128 -SmbServerNameHardeningLevel : 0 -TreatHostAsStableStorage : False -ValidateAliasNotCircular : True -ValidateShareScope : True -ValidateShareScopeNotAliased : True -ValidateTargetName : True -EncryptData : False -RejectUnencryptedAccess : True +```Output +AnnounceComment : +AnnounceServer : False +AsynchronousCredits : 512 +AuditSmb1Access : False +AutoDisconnectTimeout : 15 +AutoShareServer : True +AutoShareWorkstation : True +CachedOpenLimit : 10 +DisableSmbEncryptionOnSecureConnection : True +DurableHandleV2TimeoutInSeconds : 180 +EnableAuthenticateUserSharing : False +EnableDownlevelTimewarp : False +EnableForcedLogoff : True +EnableLeasing : True +EnableMultiChannel : True +EnableOplocks : True +EnableSecuritySignature : False +EnableSMB1Protocol : False +EnableSMB2Protocol : True +EnableStrictNameChecking : True +EncryptData : False +IrpStackSize : 15 +KeepAliveTime : 2 +MaxChannelPerSession : 32 +MaxMpxCount : 50 +MaxSessionPerConnection : 16384 +MaxThreadsPerQueue : 20 +MaxWorkItems : 1 +NullSessionPipes : +NullSessionShares : +OplockBreakWait : 35 +PendingClientTimeoutInSeconds : 120 +RejectUnencryptedAccess : True +RequireSecuritySignature : False +ServerHidden : True +Smb2CreditsMax : 8192 +Smb2CreditsMin : 512 +SmbServerNameHardeningLevel : 0 +TreatHostAsStableStorage : False +ValidateAliasNotCircular : True +ValidateShareScope : True +ValidateShareScopeNotAliased : True +ValidateTargetName : True +RestrictNamedpipeAccessViaQuic : True +EnableSMBQUIC : True +EncryptionCiphers : AES_128_GCM, AES_128_CCM, AES_256_GCM, AES_256_CCM ``` This command retrieves the SMB server configuration. +> [!NOTE] +> The EncryptionCiphers parameter is available beginning with 2022-06 Cumulative Update for Windows Server 2022 (build 20348.681), and Cumulative Update for Windows 11 (build 22000.652). + ## PARAMETERS ### -AsJob diff --git a/docset/winserver2022-ps/smbshare/Reset-SmbClientConfiguration.md b/docset/winserver2022-ps/smbshare/Reset-SmbClientConfiguration.md new file mode 100644 index 0000000000..30e4e3a6b8 --- /dev/null +++ b/docset/winserver2022-ps/smbshare/Reset-SmbClientConfiguration.md @@ -0,0 +1,563 @@ +--- +description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. +external help file: SmbClientConfiguration.cdxml-help.xml +Module Name: SmbShare +ms.date: 06/10/2022 +online version: http://go.microsoft.com/fwlink/?LinkID=241959 +schema: 2.0.0 +title: Reset-SmbClientConfiguration +--- + +# Reset-SmbClientConfiguration + +## SYNOPSIS +Resets the Server Message Block (SMB) client configuration parameters to their default values. + +## SYNTAX + +``` +Reset-SmbClientConfiguration [-All] [-ConnectionCountPerRssNetworkInterface] [-DirectoryCacheEntriesMax] + [-DirectoryCacheEntrySizeMax] [-DirectoryCacheLifetime] [-DisableCompression] [-DormantFileLimit] + [-EnableBandwidthThrottling] [-EnableByteRangeLockingOnReadOnlyFiles] [-EnableLargeMtu] + [-EnableLoadBalanceScaleOut] [-EnableMultiChannel] [-EncryptionCiphers] [-ExtendedSessionTimeout] + [-FileInfoCacheEntriesMax] [-FileInfoCacheLifetime] [-FileNotFoundCacheEntriesMax] + [-FileNotFoundCacheLifetime] [-ForceSMBEncryptionOverQuic] [-KeepConn] [-MaxCmds] + [-MaximumConnectionCountPerServer] [-OplocksDisabled] [-SessionTimeout] [-SkipCertificateCheck] + [-UseOpportunisticLocking] [-WindowSizeThreshold] [-Force] [-CimSession ] + [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **Reset-SmbClientConfiguration** cmdlet resets SMB client configuration parameters to their default values. + +> [!NOTE] +> This cmdlet is available beginning with 2022-06 Cumulative Update for Windows Server 2022 (build 20348.681), and Cumulative Update for Windows 11 (build 22000.652). + +## EXAMPLES + +### Example 1: Reset the large MTU behavior +```powershell +Reset-SmbClientConfiguration -EnableLargeMtu +``` + +This commands resets only the large MTU behavior to its default value. + +## PARAMETERS + +### -All +Resets all the SMB client configuration parameters to their default values. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AsJob +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CimSession +Runs the cmdlet in a remote session or on a remote computer. +Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +The default is the current session on the local computer. + +```yaml +Type: CimSession[] +Parameter Sets: (All) +Aliases: Session + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ConnectionCountPerRssNetworkInterface +Resets the SMB connection count for each RSS network interface to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DirectoryCacheEntriesMax +Resets the maximum cache entries that can be in the directory cache to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DirectoryCacheEntrySizeMax +Resets the maximum size of directory cache entry value to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DirectoryCacheLifetime +Resets the directory cache lifetime to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DisableCompression +Resets the SMB compression behavior to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DormantFileLimit +Resets the dormant file limit to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -EnableBandwidthThrottling +Resets the bandwidth throttling behavior to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -EnableByteRangeLockingOnReadOnlyFiles +Resets the enabled byte range locking behavior on read-only file to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -EnableLargeMtu +Resets the enable large MTU value to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -EnableLoadBalanceScaleOut +Resets the enable load balance scale out value to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -EnableMultiChannel +Resets the enable multi-channel value to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -EncryptionCiphers +Resets the encryption ciphers used by the SMB client to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ExtendedSessionTimeout +Resets the extended session time-out value to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -FileInfoCacheEntriesMax +Resets the maximum number entries that can be in the file information cache to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -FileInfoCacheLifetime +Resets the file information cache lifetime value to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -FileNotFoundCacheEntriesMax +Resets the maximum number entries that can be in the file not found cache to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -FileNotFoundCacheLifetime +Resets the file not found cache lifetime value to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +Forces the command to run without asking for user confirmation. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ForceSMBEncryptionOverQuic +Resets the for SMB encryption over QUIC value to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -KeepConn +Reset the time, in seconds, before the SMB client session is automatically disconnected to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MaxCmds +Resets the maximum number of concurrent outstanding network requests that the SMB client supports to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MaximumConnectionCountPerServer +Resets the maximum connection count per server to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -OplocksDisabled +Resets the opportunistic locks disabled value to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SessionTimeout +Resets the session time-out value to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SkipCertificateCheck +Resets the skip certificate check value to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ThrottleLimit +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. +If this parameter is omitted or a value of `0` is entered, then Windows PowerShell calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. +The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -UseOpportunisticLocking +Resets the use opportunistic locks value to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WindowSizeThreshold +Resets the window size threshold value to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None + +## OUTPUTS + +### Microsoft.Management.Infrastructure.CimInstance + +## NOTES + +## RELATED LINKS + +[Get-SmbClientConfiguration](./Get-SmbClientConfiguration.md) +[Set-SmbClientConfiguration](./Set-SmbClientConfiguration.md) diff --git a/docset/winserver2022-ps/smbshare/Reset-SmbServerConfiguration.md b/docset/winserver2022-ps/smbshare/Reset-SmbServerConfiguration.md new file mode 100644 index 0000000000..44952dfdd9 --- /dev/null +++ b/docset/winserver2022-ps/smbshare/Reset-SmbServerConfiguration.md @@ -0,0 +1,761 @@ +--- +description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. +external help file: SmbServerConfiguration.cdxml-help.xml +Module Name: SmbShare +ms.date: 06/10/2022 +online version: http://go.microsoft.com/fwlink/?LinkID=241959 +schema: 2.0.0 +title: Reset-SmbServerConfiguration +--- + +# Reset-SmbServerConfiguration + +## SYNOPSIS +Resets the Server Message Block (SMB) server configuration parameters to their default values. + +## SYNTAX + +``` +Reset-SmbServerConfiguration [-All] [-AnnounceComment] [-AnnounceServer] [-AsynchronousCredits] + [-AuditSmb1Access] [-AutoShareServer] [-AutoShareWorkstation] [-CachedOpenLimit] + [-DisableSmbEncryptionOnSecureConnection] [-DurableHandleV2TimeoutInSeconds] [-EnableDownlevelTimewarp] + [-EnableLeasing] [-EnableMultiChannel] [-EnableOplocks] [-EnableSMB2Protocol] [-EnableSMBQUIC] + [-EnableStrictNameChecking] [-EncryptData] [-EncryptionCiphers] [-IrpStackSize] [-KeepAliveTime] + [-MaxChannelPerSession] [-MaxMpxCount] [-MaxSessionPerConnection] [-MaxThreadsPerQueue] [-MaxWorkItems] + [-NullSessionShares] [-OplockBreakWait] [-PendingClientTimeoutInSeconds] [-RejectUnencryptedAccess] + [-RestrictNamedpipeAccessViaQuic] [-ServerHidden] [-Smb2CreditsMax] [-Smb2CreditsMin] + [-SmbServerNameHardeningLevel] [-TreatHostAsStableStorage] [-ValidateAliasNotCircular] [-ValidateShareScope] + [-ValidateShareScopeNotAliased] [-ValidateTargetName] [-Force] [-CimSession ] + [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **Reset-SmbServerConfiguration** cmdlet resets SMB server configuration parameters to their default values. For more information on SMB server and protocol specifications, see [Overview of file sharing using the SMB 3 protocol in Windows Server](https://docs.microsoft.com/windows-server/storage/file-server/file-server-smb-overview) and [[MS-SMB2]: Server Message Block (SMB) Protocol Versions 2 and 3](https://docs.microsoft.com/openspecs/windows_protocols/ms-smb2/5606ad47-5ee0-437a-817e-70c366052962). + +> [!NOTE] +> This cmdlet is available beginning with 2022-06 Cumulative Update for Windows Server 2022 (build 20348.681), and Cumulative Update for Windows 11 (build 22000.652). + +## EXAMPLES + +### Example 1: Reset the unencrypted access behavior +```powershell +Reset-SmbServerConfiguration -RejectUnencryptedAccess +``` + +This commands resets only the unencrypted access behavior to its default value. + +## PARAMETERS + +### -All +Resets all the SMB server configuration parameters to their default values. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AnnounceComment +Resets the SMB server announce comment to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AnnounceServer +Resets the SMB server announce server to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AsJob +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AsynchronousCredits +Resets the asynchronous credits to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AuditSmb1Access +Resets the auditing of SMB version 1 protocol behavior to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AutoShareServer +Resets the automatic sharing behavior for default server shares to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AutoShareWorkstation +Resets the automatic sharing behavior for default workstation shares to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CachedOpenLimit +Resets the cache open file limit to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CimSession +Runs the cmdlet in a remote session or on a remote computer. +Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +The default is the current session on the local computer. + +```yaml +Type: CimSession[] +Parameter Sets: (All) +Aliases: Session + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DisableSmbEncryptionOnSecureConnection +Resets the disable SMB encryption on secure connection behavior to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DurableHandleV2TimeoutInSeconds +Resets the durable handle v2 time-out period value to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -EnableDownlevelTimewarp +Resets the down-level timewarp support behavior to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -EnableLeasing +Resets the enable leasing behavior to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -EnableMultiChannel +Resets the enable multi-channel behavior to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -EnableOplocks +Resets the opportunistic locks behavior to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -EnableSMB2Protocol +Resets whether the SMB2 protocol is enabled to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -EnableSMBQUIC +Resets whether the SMB over QUIC protocol is enabled to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -EnableStrictNameChecking +Resets the strict name checking on incoming connections behavior to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -EncryptData +Resets the session encryption behavior to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -EncryptionCiphers +Resets the encryption ciphers used by the SMB client to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +Forces the command to run without asking for user confirmation. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -IrpStackSize +Resets the IRP stack size default to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -KeepAliveTime +Resets the keep alive time to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MaxChannelPerSession +Resets the maximum channels per session to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MaxMpxCount +Resets the maximum MPX count for SMB1 to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MaxSessionPerConnection +Resets the maximum sessions per connection to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MaxThreadsPerQueue +Resets the maximum threads per queue to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MaxWorkItems +Resets the maximum SMB1 work items to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NullSessionShares +Resets the null session pipes to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -OplockBreakWait +Resets how long the create caller waits for an opportunistic lock break to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PendingClientTimeoutInSeconds +Resets the pending client time-out period to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -RejectUnencryptedAccess +Resets the unencrypted access behavior to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -RestrictNamedpipeAccessViaQuic +Resets the named pipes behavior when using SMB over QUIC to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ServerHidden +Resets whether the server announces itself to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Smb2CreditsMax +Resets the maximum SMB2 credits to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Smb2CreditsMin +Resets the minimum SMB2 credits to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SmbServerNameHardeningLevel +Resets the SMB Service name hardening level to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ThrottleLimit +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. +If this parameter is omitted or a value of `0` is entered, then Windows PowerShell calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. + +The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -TreatHostAsStableStorage +Resets whether the host is treated as the stable storage to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ValidateAliasNotCircular +Resets whether the aliases that are not circular are validated to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ValidateShareScope +Resets whether the existence of share scopes is checked during share creation to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ValidateShareScopeNotAliased +Resets whether the share scope being aliased is validated to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ValidateTargetName +Resets whether the target name is validated to its default value. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None + +## OUTPUTS + +### Microsoft.Management.Infrastructure.CimInstance + +## NOTES + +## RELATED LINKS + +[Get-SmbServerConfiguration](./Get-SmbServerConfiguration.md) +[Set-SmbServerConfiguration](./Set-SmbServerConfiguration.md) diff --git a/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md b/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md index 534597c2cc..7fba2db5af 100644 --- a/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: SmbClientConfiguration.cdxml-help.xml Module Name: SmbShare -ms.date: 12/20/2016 +ms.date: 06/10/2022 online version: https://docs.microsoft.com/powershell/module/smbshare/set-smbclientconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SmbClientConfiguration @@ -16,23 +16,26 @@ Sets the SMB client configuration. ## SYNTAX ``` -Set-SmbClientConfiguration [-SkipCertificateCheck ] [-ConnectionCountPerRssNetworkInterface ] +Set-SmbClientConfiguration [-ConnectionCountPerRssNetworkInterface ] [-DirectoryCacheEntriesMax ] [-DirectoryCacheEntrySizeMax ] [-DirectoryCacheLifetime ] - [-DormantFileLimit ] [-EnableBandwidthThrottling ] + [-DisableCompression ] [-DormantFileLimit ] [-EnableBandwidthThrottling ] [-EnableByteRangeLockingOnReadOnlyFiles ] [-EnableInsecureGuestLogons ] [-EnableLargeMtu ] [-EnableLoadBalanceScaleOut ] [-EnableMultiChannel ] - [-EnableSecuritySignature ] [-ExtendedSessionTimeout ] [-FileInfoCacheEntriesMax ] - [-FileInfoCacheLifetime ] [-FileNotFoundCacheEntriesMax ] + [-EnableSecuritySignature ] [-EncryptionCiphers ] [-ExtendedSessionTimeout ] + [-FileInfoCacheEntriesMax ] [-FileInfoCacheLifetime ] [-FileNotFoundCacheEntriesMax ] [-FileNotFoundCacheLifetime ] [-ForceSMBEncryptionOverQuic ] [-KeepConn ] [-MaxCmds ] [-MaximumConnectionCountPerServer ] [-OplocksDisabled ] - [-RequireSecuritySignature ] [-SessionTimeout ] [-UseOpportunisticLocking ] - [-WindowSizeThreshold ] [-DisableCompression ] [-Force] [-CimSession ] + [-RequireSecuritySignature ] [-SessionTimeout ] [-SkipCertificateCheck ] + [-UseOpportunisticLocking ] [-WindowSizeThreshold ] [-Force] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION The **Set-SmbClientConfiguration** cmdlet sets the Server Message Block (SMB) client configuration. +> [!NOTE] +> The EncryptionCiphers parameter is available beginning with 2022-06 Cumulative Update for Windows Server 2022 (build 20348.681), and Cumulative Update for Windows 11 (build 22000.652). + ## EXAMPLES ### Example 1: Set the SMB client configuration @@ -53,6 +56,13 @@ PS C:\>Set-SmbClientConfiguration -ConnectionCountPerRssNetworkInterface 4 -Forc This command sets the SMB client configuration without user confirmation. +### Example 3: Specify encryption ciphers +```powershell +PS C:\>Set-SmbClientConfiguration -EncryptionCiphers "AES_128_GCM, AES_256_GCM" +``` + +This command specifies the encryption ciphers used by the SMB client. + ## PARAMETERS ### -AsJob @@ -282,6 +292,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -EncryptionCiphers +Specifies the encryption ciphers used by the SMB client. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ExtendedSessionTimeout Specifies the extended session time-out. @@ -586,4 +611,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS [Get-SmbClientConfiguration](./Get-SmbClientConfiguration.md) - +[Reset-SmbClientConfiguration](./Reset-SmbClientConfiguration.md) diff --git a/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md b/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md index 992740f0ca..7d8663ddb3 100644 --- a/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: SmbServerConfiguration.cdxml-help.xml Module Name: SmbShare -ms.date: 12/20/2016 +ms.date: 06/10/2022 online version: https://docs.microsoft.com/powershell/module/smbshare/set-smbserverconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SmbServerConfiguration @@ -24,21 +24,24 @@ Set-SmbServerConfiguration [-AnnounceComment ] [-AnnounceServer ] [-EnableLeasing ] [-EnableMultiChannel ] [-EnableOplocks ] [-EnableSecuritySignature ] [-EnableSMB1Protocol ] [-EnableSMB2Protocol ] [-EnableSMBQUIC ] [-EnableStrictNameChecking ] - [-EncryptData ] [-IrpStackSize ] [-KeepAliveTime ] [-MaxChannelPerSession ] - [-MaxMpxCount ] [-MaxSessionPerConnection ] [-MaxThreadsPerQueue ] - [-MaxWorkItems ] [-NullSessionPipes ] [-NullSessionShares ] - [-OplockBreakWait ] [-PendingClientTimeoutInSeconds ] [-RejectUnencryptedAccess ] - [-RequireSecuritySignature ] [-ServerHidden ] [-Smb2CreditsMax ] + [-EncryptData ] [-EncryptionCiphers ] [-IrpStackSize ] [-KeepAliveTime ] + [-MaxChannelPerSession ] [-MaxMpxCount ] [-MaxSessionPerConnection ] + [-MaxThreadsPerQueue ] [-MaxWorkItems ] [-NullSessionPipes ] + [-NullSessionShares ] [-OplockBreakWait ] [-PendingClientTimeoutInSeconds ] + [-RejectUnencryptedAccess ] [-RequireSecuritySignature ] + [-RestrictNamedpipeAccessViaQuic ] [-ServerHidden ] [-Smb2CreditsMax ] [-Smb2CreditsMin ] [-SmbServerNameHardeningLevel ] [-TreatHostAsStableStorage ] [-ValidateAliasNotCircular ] [-ValidateShareScope ] - [-ValidateShareScopeNotAliased ] [-ValidateTargetName ] - [-RestrictNamedpipeAccessViaQuic ] [-Force] [-CimSession ] [-ThrottleLimit ] - [-AsJob] [-WhatIf] [-Confirm] [] + [-ValidateShareScopeNotAliased ] [-ValidateTargetName ] [-Force] + [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION The **Set-SmbServerConfiguration** cmdlet sets the Server Message Block (SMB) Service configuration. For more information on SMB server and protocol specifications, see [Overview of file sharing using the SMB 3 protocol in Windows Server](https://docs.microsoft.com/windows-server/storage/file-server/file-server-smb-overview) and [[MS-SMB2]: Server Message Block (SMB) Protocol Versions 2 and 3](https://docs.microsoft.com/openspecs/windows_protocols/ms-smb2/5606ad47-5ee0-437a-817e-70c366052962). +> [!NOTE] +> The EncryptionCiphers parameter is available beginning with 2022-06 Cumulative Update for Windows Server 2022 (build 20348.681), and Cumulative Update for Windows 11 (build 22000.652). + ## EXAMPLES ### Example 1: Set the SMB Service configuration @@ -89,6 +92,13 @@ PS C:\>Set-SmbServerConfiguration -EnableSMB1Protocol $false This command disables SMB1 on the SMB server. +### Example 7: Specify encryption ciphers +```powershell +PS C:\>Set-SmbServerConfiguration -EncryptionCiphers "AES_128_GCM, AES_256_GCM" +``` + +This command specifies the encryption ciphers used by the SMB server. + ## PARAMETERS ### -AnnounceComment @@ -453,6 +463,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -EncryptionCiphers +Specifies the encryption ciphers used by the SMB server. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Force Forces the command to run without asking for user confirmation. @@ -878,3 +903,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS [Get-SmbServerConfiguration](./Get-SmbServerConfiguration.md) +[Reset-SmbServerConfiguration](./Reset-SmbServerConfiguration.md) diff --git a/docset/winserver2022-ps/smbshare/SmbShare.md b/docset/winserver2022-ps/smbshare/SmbShare.md index 155e720af1..a70bec20d5 100644 --- a/docset/winserver2022-ps/smbshare/SmbShare.md +++ b/docset/winserver2022-ps/smbshare/SmbShare.md @@ -119,6 +119,12 @@ Removes a certificate mapping from the SMB server for SMB over QUIC. ### [Remove-SmbShare](./Remove-SmbShare.md) Deletes the specified SMB shares. +### [Reset-SmbClientConfiguration](./Reset-SmbClientConfiguration.md) +Resets the Server Message Block (SMB) client configuration parameters to their default values. + +### [Reset-SmbServerConfiguration](./Reset-SmbServerConfiguration.md) +Resets the Server Message Block (SMB) server configuration parameters to their default values. + ### [Revoke-SmbShareAccess](./Revoke-SmbShareAccess.md) Removes all of the allow ACEs for a trustee from the security descriptor of the SMB share. From ab3664aa7caec1e5daf425466ae3f7ac9867d729 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Mon, 13 Jun 2022 10:03:22 +0100 Subject: [PATCH 114/965] Updates to EncryptionCiphers parameter and alert box --- .../smbshare/Reset-SmbClientConfiguration.md | 4 ++-- .../smbshare/Reset-SmbServerConfiguration.md | 6 +++--- .../winserver2022-ps/smbshare/Set-SmbClientConfiguration.md | 4 ++-- .../winserver2022-ps/smbshare/Set-SmbServerConfiguration.md | 4 ++-- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/docset/winserver2022-ps/smbshare/Reset-SmbClientConfiguration.md b/docset/winserver2022-ps/smbshare/Reset-SmbClientConfiguration.md index 30e4e3a6b8..bc3ccf0300 100644 --- a/docset/winserver2022-ps/smbshare/Reset-SmbClientConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Reset-SmbClientConfiguration.md @@ -31,7 +31,7 @@ Reset-SmbClientConfiguration [-All] [-ConnectionCountPerRssNetworkInterface] [-D The **Reset-SmbClientConfiguration** cmdlet resets SMB client configuration parameters to their default values. > [!NOTE] -> This cmdlet is available beginning with 2022-06 Cumulative Update for Windows Server 2022 (build 20348.681), and Cumulative Update for Windows 11 (build 22000.652). +> This cmdlet is available beginning with 2022-06 Cumulative Update for Microsoft server operating system version 21H2 for x64-based Systems (KB5014665), and Cumulative Update for Windows 11, version 22H2 (KB5014668). ## EXAMPLES @@ -257,7 +257,7 @@ Accept wildcard characters: False ``` ### -EncryptionCiphers -Resets the encryption ciphers used by the SMB client to its default value. +Resets the encryption ciphers used by the SMB client to its default value and order. ```yaml Type: SwitchParameter diff --git a/docset/winserver2022-ps/smbshare/Reset-SmbServerConfiguration.md b/docset/winserver2022-ps/smbshare/Reset-SmbServerConfiguration.md index 44952dfdd9..0541951193 100644 --- a/docset/winserver2022-ps/smbshare/Reset-SmbServerConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Reset-SmbServerConfiguration.md @@ -33,7 +33,7 @@ Reset-SmbServerConfiguration [-All] [-AnnounceComment] [-AnnounceServer] [-Async The **Reset-SmbServerConfiguration** cmdlet resets SMB server configuration parameters to their default values. For more information on SMB server and protocol specifications, see [Overview of file sharing using the SMB 3 protocol in Windows Server](https://docs.microsoft.com/windows-server/storage/file-server/file-server-smb-overview) and [[MS-SMB2]: Server Message Block (SMB) Protocol Versions 2 and 3](https://docs.microsoft.com/openspecs/windows_protocols/ms-smb2/5606ad47-5ee0-437a-817e-70c366052962). > [!NOTE] -> This cmdlet is available beginning with 2022-06 Cumulative Update for Windows Server 2022 (build 20348.681), and Cumulative Update for Windows 11 (build 22000.652). +> This cmdlet is available beginning with 2022-06 Cumulative Update for Microsoft server operating system version 21H2 for x64-based Systems (KB5014665), and Cumulative Update for Windows 11, version 22H2 (KB5014668). ## EXAMPLES @@ -334,7 +334,7 @@ Accept wildcard characters: False ``` ### -EncryptData -Resets the session encryption behavior to its default value. +Resets the session encryption behavior to its default value and order. ```yaml Type: SwitchParameter @@ -349,7 +349,7 @@ Accept wildcard characters: False ``` ### -EncryptionCiphers -Resets the encryption ciphers used by the SMB client to its default value. +Resets the encryption ciphers used by the SMB client to its default value and order. ```yaml Type: SwitchParameter diff --git a/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md b/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md index 7fba2db5af..5c78f7d9f0 100644 --- a/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md @@ -34,7 +34,7 @@ Set-SmbClientConfiguration [-ConnectionCountPerRssNetworkInterface ] The **Set-SmbClientConfiguration** cmdlet sets the Server Message Block (SMB) client configuration. > [!NOTE] -> The EncryptionCiphers parameter is available beginning with 2022-06 Cumulative Update for Windows Server 2022 (build 20348.681), and Cumulative Update for Windows 11 (build 22000.652). +> The EncryptionCiphers parameter is available beginning with 2022-06 Cumulative Update for Microsoft server operating system version 21H2 for x64-based Systems (KB5014665), and Cumulative Update for Windows 11, version 22H2 (KB5014668). ## EXAMPLES @@ -293,7 +293,7 @@ Accept wildcard characters: False ``` ### -EncryptionCiphers -Specifies the encryption ciphers used by the SMB client. +Specifies the encryption ciphers used by the SMB client and the preferred order. ```yaml Type: String diff --git a/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md b/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md index 7d8663ddb3..6cb0041798 100644 --- a/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md @@ -40,7 +40,7 @@ Set-SmbServerConfiguration [-AnnounceComment ] [-AnnounceServer [!NOTE] -> The EncryptionCiphers parameter is available beginning with 2022-06 Cumulative Update for Windows Server 2022 (build 20348.681), and Cumulative Update for Windows 11 (build 22000.652). +> The EncryptionCiphers parameter is available beginning with 2022-06 Cumulative Update for Microsoft server operating system version 21H2 for x64-based Systems (KB5014665), and Cumulative Update for Windows 11, version 22H2 (KB5014668). ## EXAMPLES @@ -464,7 +464,7 @@ Accept wildcard characters: False ``` ### -EncryptionCiphers -Specifies the encryption ciphers used by the SMB server. +Specifies the encryption ciphers used by the SMB server and the preferred order. ```yaml Type: String From 13d46ace40c9b9be562a2eebd39753cc9e7630bd Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Thu, 16 Jun 2022 09:45:32 +0100 Subject: [PATCH 115/965] Quality updates for the SMB share module --- .../winserver2022-ps/smbshare/Reset-SmbServerConfiguration.md | 2 +- docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md | 2 +- docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docset/winserver2022-ps/smbshare/Reset-SmbServerConfiguration.md b/docset/winserver2022-ps/smbshare/Reset-SmbServerConfiguration.md index 0541951193..e04d2b284a 100644 --- a/docset/winserver2022-ps/smbshare/Reset-SmbServerConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Reset-SmbServerConfiguration.md @@ -334,7 +334,7 @@ Accept wildcard characters: False ``` ### -EncryptData -Resets the session encryption behavior to its default value and order. +Resets the session encryption behavior to its default value. ```yaml Type: SwitchParameter diff --git a/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md b/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md index 5c78f7d9f0..b9d06b36c3 100644 --- a/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md @@ -61,7 +61,7 @@ This command sets the SMB client configuration without user confirmation. PS C:\>Set-SmbClientConfiguration -EncryptionCiphers "AES_128_GCM, AES_256_GCM" ``` -This command specifies the encryption ciphers used by the SMB client. +This command specifies the encryption ciphers used by the SMB client, and the preferred order. ## PARAMETERS diff --git a/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md b/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md index 6cb0041798..11484576e7 100644 --- a/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md @@ -97,7 +97,7 @@ This command disables SMB1 on the SMB server. PS C:\>Set-SmbServerConfiguration -EncryptionCiphers "AES_128_GCM, AES_256_GCM" ``` -This command specifies the encryption ciphers used by the SMB server. +This command specifies the encryption ciphers used by the SMB client, and the preferred order. ## PARAMETERS From 443746f76074dcc6be6d2c45752dba4ee044e2b2 Mon Sep 17 00:00:00 2001 From: Angela Fleischmann Date: Mon, 20 Jun 2022 13:01:07 -0600 Subject: [PATCH 116/965] Update docfx.json Add aliases to contrib to exclude: "AngelaMotherofDragons", "dstrome", "v-dihans", --- docset/docfx.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docset/docfx.json b/docset/docfx.json index d1984ad09b..db6155d8ff 100644 --- a/docset/docfx.json +++ b/docset/docfx.json @@ -83,6 +83,9 @@ "jborsecnik", "tiburd", "garycentric", + "AngelaMotherofDragons", + "dstrome", + "v-dihans", "sdwheeler" ], "_op_documentIdPathDepotMapping": { From 52eec51ba8fe8c50c008e58b815ffa95ebfc2704 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Thu, 23 Jun 2022 22:35:29 +0100 Subject: [PATCH 117/965] Added links to Support KB articles --- docset/winserver2022-ps/smbshare/Get-SmbClientConfiguration.md | 2 +- docset/winserver2022-ps/smbshare/Get-SmbServerConfiguration.md | 2 +- .../winserver2022-ps/smbshare/Reset-SmbClientConfiguration.md | 2 +- .../winserver2022-ps/smbshare/Reset-SmbServerConfiguration.md | 2 +- docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md | 2 +- docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docset/winserver2022-ps/smbshare/Get-SmbClientConfiguration.md b/docset/winserver2022-ps/smbshare/Get-SmbClientConfiguration.md index b553427409..31e40c0026 100644 --- a/docset/winserver2022-ps/smbshare/Get-SmbClientConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Get-SmbClientConfiguration.md @@ -60,7 +60,7 @@ EncryptionCiphers : AES_128_GCM, AES_128_CCM, AES_256_GCM, A This command retrieves the SMB client configuration. > [!NOTE] -> The EncryptionCiphers parameter is available beginning with 2022-06 Cumulative Update for Windows Server 2022 (build 20348.681), and Cumulative Update for Windows 11 (build 22000.652). +> The EncryptionCiphers parameter is available beginning with 2022-06 Cumulative Update for Microsoft server operating system version 21H2 for x64-based Systems ([KB5014665](https://support.microsoft.com/help/5014665)), and Cumulative Update for Windows 11, version 22H2 ([KB5014668](https://support.microsoft.com/help/5014668)). ## PARAMETERS diff --git a/docset/winserver2022-ps/smbshare/Get-SmbServerConfiguration.md b/docset/winserver2022-ps/smbshare/Get-SmbServerConfiguration.md index 3d283bac29..6b63786a80 100644 --- a/docset/winserver2022-ps/smbshare/Get-SmbServerConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Get-SmbServerConfiguration.md @@ -81,7 +81,7 @@ EncryptionCiphers : AES_128_GCM, AES_128_CCM, AES_256_GCM, This command retrieves the SMB server configuration. > [!NOTE] -> The EncryptionCiphers parameter is available beginning with 2022-06 Cumulative Update for Windows Server 2022 (build 20348.681), and Cumulative Update for Windows 11 (build 22000.652). +> The EncryptionCiphers parameter is available beginning with 2022-06 Cumulative Update for Microsoft server operating system version 21H2 for x64-based Systems ([KB5014665](https://support.microsoft.com/help/5014665)), and Cumulative Update for Windows 11, version 22H2 ([KB5014668](https://support.microsoft.com/help/5014668)). ## PARAMETERS diff --git a/docset/winserver2022-ps/smbshare/Reset-SmbClientConfiguration.md b/docset/winserver2022-ps/smbshare/Reset-SmbClientConfiguration.md index bc3ccf0300..622c6eb10a 100644 --- a/docset/winserver2022-ps/smbshare/Reset-SmbClientConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Reset-SmbClientConfiguration.md @@ -31,7 +31,7 @@ Reset-SmbClientConfiguration [-All] [-ConnectionCountPerRssNetworkInterface] [-D The **Reset-SmbClientConfiguration** cmdlet resets SMB client configuration parameters to their default values. > [!NOTE] -> This cmdlet is available beginning with 2022-06 Cumulative Update for Microsoft server operating system version 21H2 for x64-based Systems (KB5014665), and Cumulative Update for Windows 11, version 22H2 (KB5014668). +> This cmdlet is available beginning with 2022-06 Cumulative Update for Microsoft server operating system version 21H2 for x64-based Systems ([KB5014665](https://support.microsoft.com/help/5014665)), and Cumulative Update for Windows 11, version 22H2 ([KB5014668](https://support.microsoft.com/help/5014668)). ## EXAMPLES diff --git a/docset/winserver2022-ps/smbshare/Reset-SmbServerConfiguration.md b/docset/winserver2022-ps/smbshare/Reset-SmbServerConfiguration.md index e04d2b284a..fd1f8a7a12 100644 --- a/docset/winserver2022-ps/smbshare/Reset-SmbServerConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Reset-SmbServerConfiguration.md @@ -33,7 +33,7 @@ Reset-SmbServerConfiguration [-All] [-AnnounceComment] [-AnnounceServer] [-Async The **Reset-SmbServerConfiguration** cmdlet resets SMB server configuration parameters to their default values. For more information on SMB server and protocol specifications, see [Overview of file sharing using the SMB 3 protocol in Windows Server](https://docs.microsoft.com/windows-server/storage/file-server/file-server-smb-overview) and [[MS-SMB2]: Server Message Block (SMB) Protocol Versions 2 and 3](https://docs.microsoft.com/openspecs/windows_protocols/ms-smb2/5606ad47-5ee0-437a-817e-70c366052962). > [!NOTE] -> This cmdlet is available beginning with 2022-06 Cumulative Update for Microsoft server operating system version 21H2 for x64-based Systems (KB5014665), and Cumulative Update for Windows 11, version 22H2 (KB5014668). +> This cmdlet is available beginning with 2022-06 Cumulative Update for Microsoft server operating system version 21H2 for x64-based Systems ([KB5014665](https://support.microsoft.com/help/5014665)), and Cumulative Update for Windows 11, version 22H2 ([KB5014668](https://support.microsoft.com/help/5014668)). ## EXAMPLES diff --git a/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md b/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md index b9d06b36c3..2150abd60b 100644 --- a/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md @@ -34,7 +34,7 @@ Set-SmbClientConfiguration [-ConnectionCountPerRssNetworkInterface ] The **Set-SmbClientConfiguration** cmdlet sets the Server Message Block (SMB) client configuration. > [!NOTE] -> The EncryptionCiphers parameter is available beginning with 2022-06 Cumulative Update for Microsoft server operating system version 21H2 for x64-based Systems (KB5014665), and Cumulative Update for Windows 11, version 22H2 (KB5014668). +> The EncryptionCiphers parameter is available beginning with 2022-06 Cumulative Update for Microsoft server operating system version 21H2 for x64-based Systems ([KB5014665](https://support.microsoft.com/help/5014665)), and Cumulative Update for Windows 11, version 22H2 ([KB5014668](https://support.microsoft.com/help/5014668)). ## EXAMPLES diff --git a/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md b/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md index 11484576e7..e8feda681c 100644 --- a/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md @@ -40,7 +40,7 @@ Set-SmbServerConfiguration [-AnnounceComment ] [-AnnounceServer [!NOTE] -> The EncryptionCiphers parameter is available beginning with 2022-06 Cumulative Update for Microsoft server operating system version 21H2 for x64-based Systems (KB5014665), and Cumulative Update for Windows 11, version 22H2 (KB5014668). +> The EncryptionCiphers parameter is available beginning with 2022-06 Cumulative Update for Microsoft server operating system version 21H2 for x64-based Systems ([KB5014665](https://support.microsoft.com/help/5014665)), and Cumulative Update for Windows 11, version 22H2 ([KB5014668](https://support.microsoft.com/help/5014668)). ## EXAMPLES From f4019df450e222cf045e1a9095b0a7d46a2eaad0 Mon Sep 17 00:00:00 2001 From: Sean Wheeler Date: Fri, 24 Jun 2022 06:49:07 -0500 Subject: [PATCH 118/965] Editorial updates --- .../smbshare/Get-SmbClientConfiguration.md | 53 ++++-- .../smbshare/Get-SmbServerConfiguration.md | 52 ++++-- .../smbshare/Reset-SmbClientConfiguration.md | 95 +++++++--- .../smbshare/Reset-SmbServerConfiguration.md | 104 ++++++++--- .../smbshare/Set-SmbClientConfiguration.md | 169 ++++++++++++------ .../smbshare/Set-SmbServerConfiguration.md | 151 ++++++++++++---- docset/winserver2022-ps/smbshare/SmbShare.md | 24 +-- 7 files changed, 468 insertions(+), 180 deletions(-) diff --git a/docset/winserver2022-ps/smbshare/Get-SmbClientConfiguration.md b/docset/winserver2022-ps/smbshare/Get-SmbClientConfiguration.md index 31e40c0026..9f14111537 100644 --- a/docset/winserver2022-ps/smbshare/Get-SmbClientConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Get-SmbClientConfiguration.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: SmbClientConfiguration.cdxml-help.xml Module Name: SmbShare -ms.date: 12/20/2016 +ms.date: 06/23/2022 online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbclientconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbClientConfiguration @@ -16,19 +16,23 @@ Retrieves the SMB client configuration. ## SYNTAX ``` -Get-SmbClientConfiguration [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] - [] +Get-SmbClientConfiguration [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] + [-Confirm] [] ``` ## DESCRIPTION -The **Get-SmbClientConfiguration** cmdlet retrieves the Server Message Block (SMB) client configuration. + +The `Get-SmbClientConfiguration` cmdlet retrieves the Server Message Block (SMB) client +configuration. ## EXAMPLES ### Example 1: Get the client configuration -```PowerShell + +```powershell Get-SmbClientConfiguration ``` + ```Output SkipCertificateCheck : False ConnectionCountPerRssNetworkInterface : 4 @@ -60,17 +64,21 @@ EncryptionCiphers : AES_128_GCM, AES_128_CCM, AES_256_GCM, A This command retrieves the SMB client configuration. > [!NOTE] -> The EncryptionCiphers parameter is available beginning with 2022-06 Cumulative Update for Microsoft server operating system version 21H2 for x64-based Systems ([KB5014665](https://support.microsoft.com/help/5014665)), and Cumulative Update for Windows 11, version 22H2 ([KB5014668](https://support.microsoft.com/help/5014668)). +> The **EncryptionCiphers** parameter is available beginning with 2022-06 Cumulative Update for +> Microsoft server operating system version 21H2 for x64-based Systems +> ([KB5014665](https://support.microsoft.com/help/5014665)), and Cumulative Update for Windows 11, +> version 22H2 ([KB5014668](https://support.microsoft.com/help/5014668)). ## PARAMETERS ### -AsJob + Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -80,9 +88,11 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml Type: CimSession[] @@ -97,14 +107,17 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -114,6 +127,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -129,8 +143,8 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml Type: SwitchParameter @@ -145,7 +159,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -154,6 +172,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS ### Microsoft.Management.Infrastructure.CimInstance#root/Microsoft/Windows/SMB/MSFT_SmbClientConfiguration + The **MSFT_SmbClientConfiguration** object represents the configuration of the SMB client. ## NOTES diff --git a/docset/winserver2022-ps/smbshare/Get-SmbServerConfiguration.md b/docset/winserver2022-ps/smbshare/Get-SmbServerConfiguration.md index 6b63786a80..a98d710bc5 100644 --- a/docset/winserver2022-ps/smbshare/Get-SmbServerConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Get-SmbServerConfiguration.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: SmbServerConfiguration.cdxml-help.xml Module Name: SmbShare -ms.date: 12/20/2016 +ms.date: 06/23/2022 online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbserverconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbServerConfiguration @@ -16,19 +16,22 @@ Retrieves the SMB server configuration. ## SYNTAX ``` -Get-SmbServerConfiguration [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] - [] +Get-SmbServerConfiguration [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] + [-Confirm] [] ``` ## DESCRIPTION -The **Get-SmbServerConfiguration** cmdlet retrieves the Server Message Block (SMB) server configuration. + +The `Get-SmbServerConfiguration` cmdlet retrieves the Server Message Block (SMB) server configuration. ## EXAMPLES ### Example 1: Get SMB server configuration -```PowerShell + +```powershell Get-SmbServerConfiguration ``` + ```Output AnnounceComment : AnnounceServer : False @@ -81,17 +84,22 @@ EncryptionCiphers : AES_128_GCM, AES_128_CCM, AES_256_GCM, This command retrieves the SMB server configuration. > [!NOTE] -> The EncryptionCiphers parameter is available beginning with 2022-06 Cumulative Update for Microsoft server operating system version 21H2 for x64-based Systems ([KB5014665](https://support.microsoft.com/help/5014665)), and Cumulative Update for Windows 11, version 22H2 ([KB5014668](https://support.microsoft.com/help/5014668)). +> The **EncryptionCiphers** parameter is available beginning with 2022-06 Cumulative Update for +> Microsoft server operating system version 21H2 for x64-based Systems +> ([KB5014665](https://support.microsoft.com/help/5014665)), and Cumulative Update for Windows 11, +> version 22H2 ([KB5014668](https://support.microsoft.com/help/5014668)). ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. + +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -101,9 +109,11 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml Type: CimSession[] @@ -118,14 +128,17 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -135,6 +148,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -150,6 +164,7 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. @@ -166,7 +181,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -175,6 +194,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS ### Microsoft.Management.Infrastructure.CimInstance#root/Microsoft/Windows/SMB/MSFT_SmbServerConfiguration + The **MSFT_SmbServerConfiguration** object represents the configuration of the SMB server. ## NOTES diff --git a/docset/winserver2022-ps/smbshare/Reset-SmbClientConfiguration.md b/docset/winserver2022-ps/smbshare/Reset-SmbClientConfiguration.md index 622c6eb10a..87b19c2882 100644 --- a/docset/winserver2022-ps/smbshare/Reset-SmbClientConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Reset-SmbClientConfiguration.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: SmbClientConfiguration.cdxml-help.xml Module Name: SmbShare -ms.date: 06/10/2022 +ms.date: 06/23/2022 online version: http://go.microsoft.com/fwlink/?LinkID=241959 schema: 2.0.0 title: Reset-SmbClientConfiguration @@ -16,26 +16,33 @@ Resets the Server Message Block (SMB) client configuration parameters to their d ## SYNTAX ``` -Reset-SmbClientConfiguration [-All] [-ConnectionCountPerRssNetworkInterface] [-DirectoryCacheEntriesMax] - [-DirectoryCacheEntrySizeMax] [-DirectoryCacheLifetime] [-DisableCompression] [-DormantFileLimit] - [-EnableBandwidthThrottling] [-EnableByteRangeLockingOnReadOnlyFiles] [-EnableLargeMtu] - [-EnableLoadBalanceScaleOut] [-EnableMultiChannel] [-EncryptionCiphers] [-ExtendedSessionTimeout] - [-FileInfoCacheEntriesMax] [-FileInfoCacheLifetime] [-FileNotFoundCacheEntriesMax] - [-FileNotFoundCacheLifetime] [-ForceSMBEncryptionOverQuic] [-KeepConn] [-MaxCmds] - [-MaximumConnectionCountPerServer] [-OplocksDisabled] [-SessionTimeout] [-SkipCertificateCheck] - [-UseOpportunisticLocking] [-WindowSizeThreshold] [-Force] [-CimSession ] - [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] [] +Reset-SmbClientConfiguration [-All] [-ConnectionCountPerRssNetworkInterface] + [-DirectoryCacheEntriesMax] [-DirectoryCacheEntrySizeMax] [-DirectoryCacheLifetime] + [-DisableCompression] [-DormantFileLimit] [-EnableBandwidthThrottling] + [-EnableByteRangeLockingOnReadOnlyFiles] [-EnableLargeMtu] [-EnableLoadBalanceScaleOut] + [-EnableMultiChannel] [-EncryptionCiphers] [-ExtendedSessionTimeout] [-FileInfoCacheEntriesMax] + [-FileInfoCacheLifetime] [-FileNotFoundCacheEntriesMax] [-FileNotFoundCacheLifetime] + [-ForceSMBEncryptionOverQuic] [-KeepConn] [-MaxCmds] [-MaximumConnectionCountPerServer] + [-OplocksDisabled] [-SessionTimeout] [-SkipCertificateCheck] [-UseOpportunisticLocking] + [-WindowSizeThreshold] [-Force] [-CimSession ] [-ThrottleLimit ] [-AsJob] + [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Reset-SmbClientConfiguration** cmdlet resets SMB client configuration parameters to their default values. + +The `Reset-SmbClientConfiguration` cmdlet resets SMB client configuration parameters to their +default values. > [!NOTE] -> This cmdlet is available beginning with 2022-06 Cumulative Update for Microsoft server operating system version 21H2 for x64-based Systems ([KB5014665](https://support.microsoft.com/help/5014665)), and Cumulative Update for Windows 11, version 22H2 ([KB5014668](https://support.microsoft.com/help/5014668)). +> This cmdlet is available beginning with 2022-06 Cumulative Update for Microsoft server operating +> system version 21H2 for x64-based Systems +> ([KB5014665](https://support.microsoft.com/help/5014665)), and Cumulative Update for Windows 11, +> version 22H2 ([KB5014668](https://support.microsoft.com/help/5014668)). ## EXAMPLES ### Example 1: Reset the large MTU behavior + ```powershell Reset-SmbClientConfiguration -EnableLargeMtu ``` @@ -45,6 +52,7 @@ This commands resets only the large MTU behavior to its default value. ## PARAMETERS ### -All + Resets all the SMB client configuration parameters to their default values. ```yaml @@ -60,7 +68,9 @@ Accept wildcard characters: False ``` ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. + +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. ```yaml Type: SwitchParameter @@ -75,9 +85,11 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml Type: CimSession[] @@ -92,6 +104,7 @@ Accept wildcard characters: False ``` ### -ConnectionCountPerRssNetworkInterface + Resets the SMB connection count for each RSS network interface to its default value. ```yaml @@ -107,6 +120,7 @@ Accept wildcard characters: False ``` ### -DirectoryCacheEntriesMax + Resets the maximum cache entries that can be in the directory cache to its default value. ```yaml @@ -122,6 +136,7 @@ Accept wildcard characters: False ``` ### -DirectoryCacheEntrySizeMax + Resets the maximum size of directory cache entry value to its default value. ```yaml @@ -137,6 +152,7 @@ Accept wildcard characters: False ``` ### -DirectoryCacheLifetime + Resets the directory cache lifetime to its default value. ```yaml @@ -152,6 +168,7 @@ Accept wildcard characters: False ``` ### -DisableCompression + Resets the SMB compression behavior to its default value. ```yaml @@ -167,6 +184,7 @@ Accept wildcard characters: False ``` ### -DormantFileLimit + Resets the dormant file limit to its default value. ```yaml @@ -182,6 +200,7 @@ Accept wildcard characters: False ``` ### -EnableBandwidthThrottling + Resets the bandwidth throttling behavior to its default value. ```yaml @@ -197,6 +216,7 @@ Accept wildcard characters: False ``` ### -EnableByteRangeLockingOnReadOnlyFiles + Resets the enabled byte range locking behavior on read-only file to its default value. ```yaml @@ -212,6 +232,7 @@ Accept wildcard characters: False ``` ### -EnableLargeMtu + Resets the enable large MTU value to its default value. ```yaml @@ -227,6 +248,7 @@ Accept wildcard characters: False ``` ### -EnableLoadBalanceScaleOut + Resets the enable load balance scale out value to its default value. ```yaml @@ -242,6 +264,7 @@ Accept wildcard characters: False ``` ### -EnableMultiChannel + Resets the enable multi-channel value to its default value. ```yaml @@ -257,6 +280,7 @@ Accept wildcard characters: False ``` ### -EncryptionCiphers + Resets the encryption ciphers used by the SMB client to its default value and order. ```yaml @@ -272,6 +296,7 @@ Accept wildcard characters: False ``` ### -ExtendedSessionTimeout + Resets the extended session time-out value to its default value. ```yaml @@ -287,6 +312,7 @@ Accept wildcard characters: False ``` ### -FileInfoCacheEntriesMax + Resets the maximum number entries that can be in the file information cache to its default value. ```yaml @@ -302,6 +328,7 @@ Accept wildcard characters: False ``` ### -FileInfoCacheLifetime + Resets the file information cache lifetime value to its default value. ```yaml @@ -317,6 +344,7 @@ Accept wildcard characters: False ``` ### -FileNotFoundCacheEntriesMax + Resets the maximum number entries that can be in the file not found cache to its default value. ```yaml @@ -332,6 +360,7 @@ Accept wildcard characters: False ``` ### -FileNotFoundCacheLifetime + Resets the file not found cache lifetime value to its default value. ```yaml @@ -347,6 +376,7 @@ Accept wildcard characters: False ``` ### -Force + Forces the command to run without asking for user confirmation. ```yaml @@ -362,6 +392,7 @@ Accept wildcard characters: False ``` ### -ForceSMBEncryptionOverQuic + Resets the for SMB encryption over QUIC value to its default value. ```yaml @@ -377,7 +408,9 @@ Accept wildcard characters: False ``` ### -KeepConn -Reset the time, in seconds, before the SMB client session is automatically disconnected to its default value. + +Reset the time, in seconds, before the SMB client session is automatically disconnected to its +default value. ```yaml Type: SwitchParameter @@ -392,7 +425,9 @@ Accept wildcard characters: False ``` ### -MaxCmds -Resets the maximum number of concurrent outstanding network requests that the SMB client supports to its default value. + +Resets the maximum number of concurrent outstanding network requests that the SMB client supports to +its default value. ```yaml Type: SwitchParameter @@ -407,6 +442,7 @@ Accept wildcard characters: False ``` ### -MaximumConnectionCountPerServer + Resets the maximum connection count per server to its default value. ```yaml @@ -422,6 +458,7 @@ Accept wildcard characters: False ``` ### -OplocksDisabled + Resets the opportunistic locks disabled value to its default value. ```yaml @@ -437,6 +474,7 @@ Accept wildcard characters: False ``` ### -SessionTimeout + Resets the session time-out value to its default value. ```yaml @@ -452,6 +490,7 @@ Accept wildcard characters: False ``` ### -SkipCertificateCheck + Resets the skip certificate check value to its default value. ```yaml @@ -467,9 +506,12 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml Type: Int32 @@ -484,6 +526,7 @@ Accept wildcard characters: False ``` ### -UseOpportunisticLocking + Resets the use opportunistic locks value to its default value. ```yaml @@ -499,6 +542,7 @@ Accept wildcard characters: False ``` ### -WindowSizeThreshold + Resets the window size threshold value to its default value. ```yaml @@ -514,6 +558,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -529,6 +574,7 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. @@ -545,7 +591,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -560,4 +610,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS [Get-SmbClientConfiguration](./Get-SmbClientConfiguration.md) + [Set-SmbClientConfiguration](./Set-SmbClientConfiguration.md) diff --git a/docset/winserver2022-ps/smbshare/Reset-SmbServerConfiguration.md b/docset/winserver2022-ps/smbshare/Reset-SmbServerConfiguration.md index fd1f8a7a12..011fd23c22 100644 --- a/docset/winserver2022-ps/smbshare/Reset-SmbServerConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Reset-SmbServerConfiguration.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: SmbServerConfiguration.cdxml-help.xml Module Name: SmbShare -ms.date: 06/10/2022 +ms.date: 06/23/2022 online version: http://go.microsoft.com/fwlink/?LinkID=241959 schema: 2.0.0 title: Reset-SmbServerConfiguration @@ -18,26 +18,36 @@ Resets the Server Message Block (SMB) server configuration parameters to their d ``` Reset-SmbServerConfiguration [-All] [-AnnounceComment] [-AnnounceServer] [-AsynchronousCredits] [-AuditSmb1Access] [-AutoShareServer] [-AutoShareWorkstation] [-CachedOpenLimit] - [-DisableSmbEncryptionOnSecureConnection] [-DurableHandleV2TimeoutInSeconds] [-EnableDownlevelTimewarp] - [-EnableLeasing] [-EnableMultiChannel] [-EnableOplocks] [-EnableSMB2Protocol] [-EnableSMBQUIC] - [-EnableStrictNameChecking] [-EncryptData] [-EncryptionCiphers] [-IrpStackSize] [-KeepAliveTime] - [-MaxChannelPerSession] [-MaxMpxCount] [-MaxSessionPerConnection] [-MaxThreadsPerQueue] [-MaxWorkItems] - [-NullSessionShares] [-OplockBreakWait] [-PendingClientTimeoutInSeconds] [-RejectUnencryptedAccess] + [-DisableSmbEncryptionOnSecureConnection] [-DurableHandleV2TimeoutInSeconds] + [-EnableDownlevelTimewarp] [-EnableLeasing] [-EnableMultiChannel] [-EnableOplocks] + [-EnableSMB2Protocol] [-EnableSMBQUIC] [-EnableStrictNameChecking] [-EncryptData] + [-EncryptionCiphers] [-IrpStackSize] [-KeepAliveTime] [-MaxChannelPerSession] [-MaxMpxCount] + [-MaxSessionPerConnection] [-MaxThreadsPerQueue] [-MaxWorkItems] [-NullSessionShares] + [-OplockBreakWait] [-PendingClientTimeoutInSeconds] [-RejectUnencryptedAccess] [-RestrictNamedpipeAccessViaQuic] [-ServerHidden] [-Smb2CreditsMax] [-Smb2CreditsMin] - [-SmbServerNameHardeningLevel] [-TreatHostAsStableStorage] [-ValidateAliasNotCircular] [-ValidateShareScope] - [-ValidateShareScopeNotAliased] [-ValidateTargetName] [-Force] [-CimSession ] - [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] [] + [-SmbServerNameHardeningLevel] [-TreatHostAsStableStorage] [-ValidateAliasNotCircular] + [-ValidateShareScope] [-ValidateShareScopeNotAliased] [-ValidateTargetName] [-Force] + [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION -The **Reset-SmbServerConfiguration** cmdlet resets SMB server configuration parameters to their default values. For more information on SMB server and protocol specifications, see [Overview of file sharing using the SMB 3 protocol in Windows Server](https://docs.microsoft.com/windows-server/storage/file-server/file-server-smb-overview) and [[MS-SMB2]: Server Message Block (SMB) Protocol Versions 2 and 3](https://docs.microsoft.com/openspecs/windows_protocols/ms-smb2/5606ad47-5ee0-437a-817e-70c366052962). + +The `Reset-SmbServerConfiguration` cmdlet resets SMB server configuration parameters to their +default values. For more information on SMB server and protocol specifications, see +[Overview of file sharing using the SMB 3 protocol in Windows Server](/windows-server/storage/file-server/file-server-smb-overview) +and [[MS-SMB2]:Server Message Block (SMB) Protocol Versions 2 and3](/openspecs/windows_protocols/ms-smb2/5606ad47-5ee0-437a-817e-70c366052962). > [!NOTE] -> This cmdlet is available beginning with 2022-06 Cumulative Update for Microsoft server operating system version 21H2 for x64-based Systems ([KB5014665](https://support.microsoft.com/help/5014665)), and Cumulative Update for Windows 11, version 22H2 ([KB5014668](https://support.microsoft.com/help/5014668)). +> This cmdlet is available beginning with 2022-06 Cumulative Update for Microsoft server operating +> system version 21H2 for x64-based Systems +> ([KB5014665](https://support.microsoft.com/help/5014665)), and Cumulative Update for Windows 11, +> version 22H2 ([KB5014668](https://support.microsoft.com/help/5014668)). ## EXAMPLES ### Example 1: Reset the unencrypted access behavior + ```powershell Reset-SmbServerConfiguration -RejectUnencryptedAccess ``` @@ -47,6 +57,7 @@ This commands resets only the unencrypted access behavior to its default value. ## PARAMETERS ### -All + Resets all the SMB server configuration parameters to their default values. ```yaml @@ -62,6 +73,7 @@ Accept wildcard characters: False ``` ### -AnnounceComment + Resets the SMB server announce comment to its default value. ```yaml @@ -77,6 +89,7 @@ Accept wildcard characters: False ``` ### -AnnounceServer + Resets the SMB server announce server to its default value. ```yaml @@ -92,7 +105,9 @@ Accept wildcard characters: False ``` ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. + +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. ```yaml Type: SwitchParameter @@ -107,6 +122,7 @@ Accept wildcard characters: False ``` ### -AsynchronousCredits + Resets the asynchronous credits to its default value. ```yaml @@ -122,6 +138,7 @@ Accept wildcard characters: False ``` ### -AuditSmb1Access + Resets the auditing of SMB version 1 protocol behavior to its default value. ```yaml @@ -137,6 +154,7 @@ Accept wildcard characters: False ``` ### -AutoShareServer + Resets the automatic sharing behavior for default server shares to its default value. ```yaml @@ -152,6 +170,7 @@ Accept wildcard characters: False ``` ### -AutoShareWorkstation + Resets the automatic sharing behavior for default workstation shares to its default value. ```yaml @@ -167,6 +186,7 @@ Accept wildcard characters: False ``` ### -CachedOpenLimit + Resets the cache open file limit to its default value. ```yaml @@ -182,9 +202,11 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml Type: CimSession[] @@ -199,6 +221,7 @@ Accept wildcard characters: False ``` ### -DisableSmbEncryptionOnSecureConnection + Resets the disable SMB encryption on secure connection behavior to its default value. ```yaml @@ -214,6 +237,7 @@ Accept wildcard characters: False ``` ### -DurableHandleV2TimeoutInSeconds + Resets the durable handle v2 time-out period value to its default value. ```yaml @@ -229,6 +253,7 @@ Accept wildcard characters: False ``` ### -EnableDownlevelTimewarp + Resets the down-level timewarp support behavior to its default value. ```yaml @@ -244,6 +269,7 @@ Accept wildcard characters: False ``` ### -EnableLeasing + Resets the enable leasing behavior to its default value. ```yaml @@ -259,6 +285,7 @@ Accept wildcard characters: False ``` ### -EnableMultiChannel + Resets the enable multi-channel behavior to its default value. ```yaml @@ -274,6 +301,7 @@ Accept wildcard characters: False ``` ### -EnableOplocks + Resets the opportunistic locks behavior to its default value. ```yaml @@ -289,6 +317,7 @@ Accept wildcard characters: False ``` ### -EnableSMB2Protocol + Resets whether the SMB2 protocol is enabled to its default value. ```yaml @@ -304,6 +333,7 @@ Accept wildcard characters: False ``` ### -EnableSMBQUIC + Resets whether the SMB over QUIC protocol is enabled to its default value. ```yaml @@ -319,6 +349,7 @@ Accept wildcard characters: False ``` ### -EnableStrictNameChecking + Resets the strict name checking on incoming connections behavior to its default value. ```yaml @@ -334,6 +365,7 @@ Accept wildcard characters: False ``` ### -EncryptData + Resets the session encryption behavior to its default value. ```yaml @@ -349,6 +381,7 @@ Accept wildcard characters: False ``` ### -EncryptionCiphers + Resets the encryption ciphers used by the SMB client to its default value and order. ```yaml @@ -364,6 +397,7 @@ Accept wildcard characters: False ``` ### -Force + Forces the command to run without asking for user confirmation. ```yaml @@ -379,6 +413,7 @@ Accept wildcard characters: False ``` ### -IrpStackSize + Resets the IRP stack size default to its default value. ```yaml @@ -394,6 +429,7 @@ Accept wildcard characters: False ``` ### -KeepAliveTime + Resets the keep alive time to its default value. ```yaml @@ -409,6 +445,7 @@ Accept wildcard characters: False ``` ### -MaxChannelPerSession + Resets the maximum channels per session to its default value. ```yaml @@ -424,6 +461,7 @@ Accept wildcard characters: False ``` ### -MaxMpxCount + Resets the maximum MPX count for SMB1 to its default value. ```yaml @@ -439,6 +477,7 @@ Accept wildcard characters: False ``` ### -MaxSessionPerConnection + Resets the maximum sessions per connection to its default value. ```yaml @@ -454,6 +493,7 @@ Accept wildcard characters: False ``` ### -MaxThreadsPerQueue + Resets the maximum threads per queue to its default value. ```yaml @@ -469,6 +509,7 @@ Accept wildcard characters: False ``` ### -MaxWorkItems + Resets the maximum SMB1 work items to its default value. ```yaml @@ -484,6 +525,7 @@ Accept wildcard characters: False ``` ### -NullSessionShares + Resets the null session pipes to its default value. ```yaml @@ -499,6 +541,7 @@ Accept wildcard characters: False ``` ### -OplockBreakWait + Resets how long the create caller waits for an opportunistic lock break to its default value. ```yaml @@ -514,6 +557,7 @@ Accept wildcard characters: False ``` ### -PendingClientTimeoutInSeconds + Resets the pending client time-out period to its default value. ```yaml @@ -529,6 +573,7 @@ Accept wildcard characters: False ``` ### -RejectUnencryptedAccess + Resets the unencrypted access behavior to its default value. ```yaml @@ -544,6 +589,7 @@ Accept wildcard characters: False ``` ### -RestrictNamedpipeAccessViaQuic + Resets the named pipes behavior when using SMB over QUIC to its default value. ```yaml @@ -559,6 +605,7 @@ Accept wildcard characters: False ``` ### -ServerHidden + Resets whether the server announces itself to its default value. ```yaml @@ -574,6 +621,7 @@ Accept wildcard characters: False ``` ### -Smb2CreditsMax + Resets the maximum SMB2 credits to its default value. ```yaml @@ -589,6 +637,7 @@ Accept wildcard characters: False ``` ### -Smb2CreditsMin + Resets the minimum SMB2 credits to its default value. ```yaml @@ -604,6 +653,7 @@ Accept wildcard characters: False ``` ### -SmbServerNameHardeningLevel + Resets the SMB Service name hardening level to its default value. ```yaml @@ -619,8 +669,11 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the computer. @@ -637,6 +690,7 @@ Accept wildcard characters: False ``` ### -TreatHostAsStableStorage + Resets whether the host is treated as the stable storage to its default value. ```yaml @@ -652,6 +706,7 @@ Accept wildcard characters: False ``` ### -ValidateAliasNotCircular + Resets whether the aliases that are not circular are validated to its default value. ```yaml @@ -667,6 +722,7 @@ Accept wildcard characters: False ``` ### -ValidateShareScope + Resets whether the existence of share scopes is checked during share creation to its default value. ```yaml @@ -682,6 +738,7 @@ Accept wildcard characters: False ``` ### -ValidateShareScopeNotAliased + Resets whether the share scope being aliased is validated to its default value. ```yaml @@ -697,6 +754,7 @@ Accept wildcard characters: False ``` ### -ValidateTargetName + Resets whether the target name is validated to its default value. ```yaml @@ -712,6 +770,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -727,8 +786,8 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml Type: SwitchParameter @@ -743,7 +802,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -758,4 +821,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS [Get-SmbServerConfiguration](./Get-SmbServerConfiguration.md) + [Set-SmbServerConfiguration](./Set-SmbServerConfiguration.md) diff --git a/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md b/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md index 2150abd60b..12c0ef3b8d 100644 --- a/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: SmbClientConfiguration.cdxml-help.xml Module Name: SmbShare -ms.date: 06/10/2022 +ms.date: 06/23/2022 online version: https://docs.microsoft.com/powershell/module/smbshare/set-smbclientconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SmbClientConfiguration @@ -17,61 +17,70 @@ Sets the SMB client configuration. ``` Set-SmbClientConfiguration [-ConnectionCountPerRssNetworkInterface ] - [-DirectoryCacheEntriesMax ] [-DirectoryCacheEntrySizeMax ] [-DirectoryCacheLifetime ] - [-DisableCompression ] [-DormantFileLimit ] [-EnableBandwidthThrottling ] - [-EnableByteRangeLockingOnReadOnlyFiles ] [-EnableInsecureGuestLogons ] - [-EnableLargeMtu ] [-EnableLoadBalanceScaleOut ] [-EnableMultiChannel ] - [-EnableSecuritySignature ] [-EncryptionCiphers ] [-ExtendedSessionTimeout ] - [-FileInfoCacheEntriesMax ] [-FileInfoCacheLifetime ] [-FileNotFoundCacheEntriesMax ] + [-DirectoryCacheEntriesMax ] [-DirectoryCacheEntrySizeMax ] + [-DirectoryCacheLifetime ] [-DisableCompression ] [-DormantFileLimit ] + [-EnableBandwidthThrottling ] [-EnableByteRangeLockingOnReadOnlyFiles ] + [-EnableInsecureGuestLogons ] [-EnableLargeMtu ] + [-EnableLoadBalanceScaleOut ] [-EnableMultiChannel ] + [-EnableSecuritySignature ] [-EncryptionCiphers ] + [-ExtendedSessionTimeout ] [-FileInfoCacheEntriesMax ] + [-FileInfoCacheLifetime ] [-FileNotFoundCacheEntriesMax ] [-FileNotFoundCacheLifetime ] [-ForceSMBEncryptionOverQuic ] [-KeepConn ] [-MaxCmds ] [-MaximumConnectionCountPerServer ] [-OplocksDisabled ] [-RequireSecuritySignature ] [-SessionTimeout ] [-SkipCertificateCheck ] - [-UseOpportunisticLocking ] [-WindowSizeThreshold ] [-Force] [-CimSession ] - [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] [] + [-UseOpportunisticLocking ] [-WindowSizeThreshold ] [-Force] + [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION -The **Set-SmbClientConfiguration** cmdlet sets the Server Message Block (SMB) client configuration. + +The `Set-SmbClientConfiguration` cmdlet sets the Server Message Block (SMB) client configuration. > [!NOTE] -> The EncryptionCiphers parameter is available beginning with 2022-06 Cumulative Update for Microsoft server operating system version 21H2 for x64-based Systems ([KB5014665](https://support.microsoft.com/help/5014665)), and Cumulative Update for Windows 11, version 22H2 ([KB5014668](https://support.microsoft.com/help/5014668)). +> The **EncryptionCiphers** parameter is available beginning with 2022-06 Cumulative Update for +> Microsoft server operating system version 21H2 for x64-based Systems +> ([KB5014665](https://support.microsoft.com/help/5014665)), and Cumulative Update for Windows 11, +> version 22H2 ([KB5014668](https://support.microsoft.com/help/5014668)). ## EXAMPLES ### Example 1: Set the SMB client configuration -``` -PS C:\>Set-SmbClientConfiguration -ConnectionCountPerRssNetworkInterface 8 -Confirm -Are you sure you want to perform this action? -Performing operation 'Modify' on Target 'SMB Client Configuration'. -[Y] Yes [A] Yes to All [N] No [L] No to All [S] Suspend [?] Help (default is "Y"): + +```powershell +Set-SmbClientConfiguration -ConnectionCountPerRssNetworkInterface 8 -Confirm:$false ``` This command sets the SMB client configuration. ### Example 2: Set the SMB client configuration without confirmation -``` -PS C:\>Set-SmbClientConfiguration -ConnectionCountPerRssNetworkInterface 4 -Force + +```powershell +Set-SmbClientConfiguration -ConnectionCountPerRssNetworkInterface 4 -Force ``` This command sets the SMB client configuration without user confirmation. ### Example 3: Specify encryption ciphers + ```powershell -PS C:\>Set-SmbClientConfiguration -EncryptionCiphers "AES_128_GCM, AES_256_GCM" +Set-SmbClientConfiguration -EncryptionCiphers "AES_128_GCM, AES_256_GCM" ``` This command specifies the encryption ciphers used by the SMB client, and the preferred order. ## PARAMETERS + ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. + +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -81,9 +90,11 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml Type: CimSession[] @@ -98,12 +109,13 @@ Accept wildcard characters: False ``` ### -ConnectionCountPerRssNetworkInterface + Specifies the SMB connection count per each RSS network interface. ```yaml Type: UInt32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -113,12 +125,13 @@ Accept wildcard characters: False ``` ### -DirectoryCacheEntriesMax + Specifies the maximum cache entries that can be in the directory cache. ```yaml Type: UInt32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -128,12 +141,13 @@ Accept wildcard characters: False ``` ### -DirectoryCacheEntrySizeMax + Specifies the maximum size of directory cache entry. ```yaml Type: UInt32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -143,6 +157,7 @@ Accept wildcard characters: False ``` ### -DirectoryCacheLifetime + Specifies the directory cache lifetime. ```yaml @@ -158,12 +173,13 @@ Accept wildcard characters: False ``` ### -DisableCompression + Specifies that the SMB client ignores all requests for compression from applications or SMB servers. ```yaml Type: Boolean Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -173,12 +189,13 @@ Accept wildcard characters: False ``` ### -DormantFileLimit + Specifies the dormant file limit. ```yaml Type: UInt32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -188,12 +205,13 @@ Accept wildcard characters: False ``` ### -EnableBandwidthThrottling + Indicates that bandwidth throttling is enabled. ```yaml Type: Boolean Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -203,12 +221,13 @@ Accept wildcard characters: False ``` ### -EnableByteRangeLockingOnReadOnlyFiles + Indicates that byte range locking on read-only files is enabled. ```yaml Type: Boolean Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -218,12 +237,13 @@ Accept wildcard characters: False ``` ### -EnableInsecureGuestLogons + Indicates whether SMB client will allow insecure guest logons to an SMB server. ```yaml Type: Boolean Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -233,12 +253,13 @@ Accept wildcard characters: False ``` ### -EnableLargeMtu + Indicates that large MTU is enabled. ```yaml Type: Boolean Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -248,12 +269,13 @@ Accept wildcard characters: False ``` ### -EnableLoadBalanceScaleOut + Indicates whether load balance scale out is enabled. ```yaml Type: Boolean Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -263,12 +285,13 @@ Accept wildcard characters: False ``` ### -EnableMultiChannel + Indicates that multi-channel is enabled. ```yaml Type: Boolean Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -278,12 +301,13 @@ Accept wildcard characters: False ``` ### -EnableSecuritySignature + Indicates that the security signature is enabled. ```yaml Type: Boolean Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -293,6 +317,7 @@ Accept wildcard characters: False ``` ### -EncryptionCiphers + Specifies the encryption ciphers used by the SMB client and the preferred order. ```yaml @@ -308,12 +333,13 @@ Accept wildcard characters: False ``` ### -ExtendedSessionTimeout + Specifies the extended session time-out. ```yaml Type: UInt32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -323,12 +349,13 @@ Accept wildcard characters: False ``` ### -FileInfoCacheEntriesMax + Specifies the maximum number entries that can be in the file information cache. ```yaml Type: UInt32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -338,12 +365,13 @@ Accept wildcard characters: False ``` ### -FileInfoCacheLifetime + Specifies the file information cache lifetime. ```yaml Type: UInt32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -353,12 +381,13 @@ Accept wildcard characters: False ``` ### -FileNotFoundCacheEntriesMax + Specifies the maximum number entries that can be in the file not found cache. ```yaml Type: UInt32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -368,12 +397,13 @@ Accept wildcard characters: False ``` ### -FileNotFoundCacheLifetime + Specifies the file not found cache lifetime. ```yaml Type: UInt32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -383,12 +413,13 @@ Accept wildcard characters: False ``` ### -Force + Forces the command to run without asking for user confirmation. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -398,7 +429,9 @@ Accept wildcard characters: False ``` ### -ForceSMBEncryptionOverQuic -Specifies that the SMB client uses SMB encryption inside of the SMB over QUIC TLS 1.3 encrypted tunnel even if the SMB server does not require it. + +Specifies that the SMB client uses SMB encryption inside of the SMB over QUIC TLS 1.3 encrypted +tunnel even if the SMB server does not require it. ```yaml Type: Boolean @@ -413,12 +446,13 @@ Accept wildcard characters: False ``` ### -KeepConn + Specifies the time, in seconds, before the SMB client session is automatically disconnected. ```yaml Type: UInt32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -428,12 +462,13 @@ Accept wildcard characters: False ``` ### -MaxCmds + Specifies the maximum number of concurrent outstanding network requests that the SMB client supports. ```yaml Type: UInt32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -443,12 +478,13 @@ Accept wildcard characters: False ``` ### -MaximumConnectionCountPerServer + Specifies the maximum connection count per server. ```yaml Type: UInt32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -458,12 +494,13 @@ Accept wildcard characters: False ``` ### -OplocksDisabled + Indicates that opportunistic locks are disabled. ```yaml Type: Boolean Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -473,12 +510,13 @@ Accept wildcard characters: False ``` ### -RequireSecuritySignature + Indicates that the security signature is required. ```yaml Type: Boolean Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -488,12 +526,13 @@ Accept wildcard characters: False ``` ### -SessionTimeout + Specifies the session time-out. ```yaml Type: UInt32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -503,7 +542,9 @@ Accept wildcard characters: False ``` ### -SkipCertificateCheck -Specifies that the SMB client not trust the SMB over QUIC SMB server certificate issuer. Required when using a self-signed certificate. + +Specifies that the SMB client not trust the SMB over QUIC SMB server certificate issuer. Required +when using a self-signed certificate. ```yaml Type: Boolean @@ -518,14 +559,17 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -535,12 +579,13 @@ Accept wildcard characters: False ``` ### -UseOpportunisticLocking + Indicates that opportunistic locks are used. ```yaml Type: Boolean Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -550,6 +595,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -565,6 +611,7 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. @@ -581,12 +628,13 @@ Accept wildcard characters: False ``` ### -WindowSizeThreshold + Specifies the window size threshold. ```yaml Type: UInt32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -596,7 +644,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -611,4 +663,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS [Get-SmbClientConfiguration](./Get-SmbClientConfiguration.md) + [Reset-SmbClientConfiguration](./Reset-SmbClientConfiguration.md) diff --git a/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md b/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md index e8feda681c..e2f0e563b2 100644 --- a/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md @@ -2,8 +2,8 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: SmbServerConfiguration.cdxml-help.xml Module Name: SmbShare -ms.date: 06/10/2022 -online version: https://docs.microsoft.com/powershell/module/smbshare/set-smbserverconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +ms.date: 06/23/2022 +online version: /powershell/module/smbshare/set-smbserverconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SmbServerConfiguration --- @@ -24,77 +24,87 @@ Set-SmbServerConfiguration [-AnnounceComment ] [-AnnounceServer ] [-EnableLeasing ] [-EnableMultiChannel ] [-EnableOplocks ] [-EnableSecuritySignature ] [-EnableSMB1Protocol ] [-EnableSMB2Protocol ] [-EnableSMBQUIC ] [-EnableStrictNameChecking ] - [-EncryptData ] [-EncryptionCiphers ] [-IrpStackSize ] [-KeepAliveTime ] - [-MaxChannelPerSession ] [-MaxMpxCount ] [-MaxSessionPerConnection ] - [-MaxThreadsPerQueue ] [-MaxWorkItems ] [-NullSessionPipes ] - [-NullSessionShares ] [-OplockBreakWait ] [-PendingClientTimeoutInSeconds ] - [-RejectUnencryptedAccess ] [-RequireSecuritySignature ] - [-RestrictNamedpipeAccessViaQuic ] [-ServerHidden ] [-Smb2CreditsMax ] - [-Smb2CreditsMin ] [-SmbServerNameHardeningLevel ] [-TreatHostAsStableStorage ] + [-EncryptData ] [-EncryptionCiphers ] [-IrpStackSize ] + [-KeepAliveTime ] [-MaxChannelPerSession ] [-MaxMpxCount ] + [-MaxSessionPerConnection ] [-MaxThreadsPerQueue ] [-MaxWorkItems ] + [-NullSessionPipes ] [-NullSessionShares ] [-OplockBreakWait ] + [-PendingClientTimeoutInSeconds ] [-RejectUnencryptedAccess ] + [-RequireSecuritySignature ] [-RestrictNamedpipeAccessViaQuic ] + [-ServerHidden ] [-Smb2CreditsMax ] [-Smb2CreditsMin ] + [-SmbServerNameHardeningLevel ] [-TreatHostAsStableStorage ] [-ValidateAliasNotCircular ] [-ValidateShareScope ] [-ValidateShareScopeNotAliased ] [-ValidateTargetName ] [-Force] - [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] [] + [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION -The **Set-SmbServerConfiguration** cmdlet sets the Server Message Block (SMB) Service configuration. For more information on SMB server and protocol specifications, see [Overview of file sharing using the SMB 3 protocol in Windows Server](https://docs.microsoft.com/windows-server/storage/file-server/file-server-smb-overview) and [[MS-SMB2]: Server Message Block (SMB) Protocol Versions 2 and 3](https://docs.microsoft.com/openspecs/windows_protocols/ms-smb2/5606ad47-5ee0-437a-817e-70c366052962). + +The `Set-SmbServerConfiguration` cmdlet sets the Server Message Block (SMB) Service configuration. +For more information on SMB server and protocol specifications, see +[Overview of file sharing using the SMB 3 protocol in Windows Server](/windows-server/storage/file-server/file-server-smb-overview) +and [[MS-SMB2]:Server Message Block (SMB) Protocol Versions 2 and 3](/openspecs/windows_protocols/ms-smb2/5606ad47-5ee0-437a-817e-70c366052962). > [!NOTE] -> The EncryptionCiphers parameter is available beginning with 2022-06 Cumulative Update for Microsoft server operating system version 21H2 for x64-based Systems ([KB5014665](https://support.microsoft.com/help/5014665)), and Cumulative Update for Windows 11, version 22H2 ([KB5014668](https://support.microsoft.com/help/5014668)). +> The **EncryptionCiphers** parameter is available beginning with 2022-06 Cumulative Update for +> Microsoft server operating system version 21H2 for x64-based Systems +> ([KB5014665](https://support.microsoft.com/help/5014665)), and Cumulative Update for Windows 11, +> version 22H2 ([KB5014668](https://support.microsoft.com/help/5014668)). ## EXAMPLES ### Example 1: Set the SMB Service configuration + ```powershell -PS C:\>Set-SmbServerConfiguration -MaxChannelPerSession 16 -``` -```output -Confirm -Are you sure you want to perform this action? -Performing operation 'Modify' on Target 'SMB Service Configuration'. -[Y] Yes [A] Yes to All [N] No [L] No to All [S] Suspend [?] Help (default is "Y"): +Set-SmbServerConfiguration -MaxChannelPerSession 16 -Confirm:$false ``` This command sets the SMB Service configuration. ### Example 2: Set the SMB Service configuration without confirmation + ```powershell -PS C:\>Set-SmbServerConfiguration -MaxChannelPerSession 32 -Force +Set-SmbServerConfiguration -MaxChannelPerSession 32 -Force ``` This command sets the SMB Service configuration without user confirmation. ### Example 3: Turn on SMB signing and encryption + ```powershell -PS C:\>Set-SmbServerConfiguration -RequireSecuritySignature $True -EnableSecuritySignature $True -EncryptData $True -Confirm:$false +Set-SmbServerConfiguration -RequireSecuritySignature $True -EnableSecuritySignature $True -EncryptData $True -Confirm:$false ``` This command turns on SMB signing and encryption. ### Example 4: Turn off the default server and workstations shares + ```powershell -PS C:\>Set-SmbServerConfiguration -AutoShareServer $False -AutoShareWorkstation $False -Confirm:$false +Set-SmbServerConfiguration -AutoShareServer $False -AutoShareWorkstation $False -Confirm:$false ``` This command turns off the default server and workstations shares. ### Example 5: Turn off server announcements + ```powershell -PS C:\>Set-SmbServerConfiguration -ServerHidden $False -AnnounceServer $False -Confirm:$false +Set-SmbServerConfiguration -ServerHidden $False -AnnounceServer $False -Confirm:$false ``` This command turns off server announcements. ### Example 6: Turn off SMB1 + ```powershell -PS C:\>Set-SmbServerConfiguration -EnableSMB1Protocol $false +Set-SmbServerConfiguration -EnableSMB1Protocol $false ``` This command disables SMB1 on the SMB server. ### Example 7: Specify encryption ciphers + ```powershell -PS C:\>Set-SmbServerConfiguration -EncryptionCiphers "AES_128_GCM, AES_256_GCM" +Set-SmbServerConfiguration -EncryptionCiphers "AES_128_GCM, AES_256_GCM" ``` This command specifies the encryption ciphers used by the SMB client, and the preferred order. @@ -102,6 +112,7 @@ This command specifies the encryption ciphers used by the SMB client, and the pr ## PARAMETERS ### -AnnounceComment + Specifies the announce comment string. ```yaml @@ -117,6 +128,7 @@ Accept wildcard characters: False ``` ### -AnnounceServer + Indicates that this server announces itself by using browser announcements. ```yaml @@ -132,7 +144,9 @@ Accept wildcard characters: False ``` ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. + +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. ```yaml Type: SwitchParameter @@ -147,6 +161,7 @@ Accept wildcard characters: False ``` ### -AsynchronousCredits + Specifies the asynchronous credits. ```yaml @@ -162,6 +177,7 @@ Accept wildcard characters: False ``` ### -AuditSmb1Access + Enables auditing of SMB version 1 protocol in Windows Event Log. ```yaml @@ -177,6 +193,7 @@ Accept wildcard characters: False ``` ### -AutoDisconnectTimeout + Specifies the auto disconnect time-out. ```yaml @@ -192,6 +209,7 @@ Accept wildcard characters: False ``` ### -AutoShareServer + Indicates that the default server shares are shared out. ```yaml @@ -207,6 +225,7 @@ Accept wildcard characters: False ``` ### -AutoShareWorkstation + Indicates whether the default workstation shares are shared out. ```yaml @@ -222,6 +241,7 @@ Accept wildcard characters: False ``` ### -CachedOpenLimit + Specifies the maximum number of cached open files. ```yaml @@ -237,9 +257,12 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a +[New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or +[Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml Type: CimSession[] @@ -254,7 +277,12 @@ Accept wildcard characters: False ``` ### -DisableSmbEncryptionOnSecureConnection -Specifies that SMB encryption will also be used if configured on the SMB server. By default, QUIC encryption only is used in order to avoid double encryption affecting performance unnecessarily. If a client requires SMB encryption using Set-SmbClientConfiguration -ForceSMBEncryptionOverQuic $true then the DisableSmbEncryptionOnSecureConnection value is ignored and SMB encryption occurs. + +Specifies that SMB encryption will also be used if configured on the SMB server. By default, QUIC +encryption only is used in order to avoid double encryption affecting performance unnecessarily. If +a client requires SMB encryption using +`Set-SmbClientConfiguration -ForceSMBEncryptionOverQuic $true` then the +**DisableSmbEncryptionOnSecureConnection** value is ignored and SMB encryption occurs. ```yaml Type: Boolean @@ -269,6 +297,7 @@ Accept wildcard characters: False ``` ### -DurableHandleV2TimeoutInSeconds + Specifies the durable handle v2 time-out period, in seconds. ```yaml @@ -284,6 +313,7 @@ Accept wildcard characters: False ``` ### -EnableAuthenticateUserSharing + Indicates whether authenticate user sharing is enabled. ```yaml @@ -299,6 +329,7 @@ Accept wildcard characters: False ``` ### -EnableDownlevelTimewarp + Indicates whether down-level timewarp support is disabled. ```yaml @@ -314,6 +345,7 @@ Accept wildcard characters: False ``` ### -EnableForcedLogoff + Indicates whether forced logoff is enabled. ```yaml @@ -329,6 +361,7 @@ Accept wildcard characters: False ``` ### -EnableLeasing + Indicates whether leasing is disabled. ```yaml @@ -344,6 +377,7 @@ Accept wildcard characters: False ``` ### -EnableMultiChannel + Indicates whether multi-channel is disabled. ```yaml @@ -359,6 +393,7 @@ Accept wildcard characters: False ``` ### -EnableOplocks + Indicates whether the opportunistic locks are enabled. ```yaml @@ -374,6 +409,7 @@ Accept wildcard characters: False ``` ### -EnableSecuritySignature + Indicates whether the security signature is enabled. ```yaml @@ -389,6 +425,7 @@ Accept wildcard characters: False ``` ### -EnableSMB1Protocol + Indicates whether the SMB1 protocol is enabled. ```yaml @@ -404,6 +441,7 @@ Accept wildcard characters: False ``` ### -EnableSMB2Protocol + Indicates whether the SMB2 protocol is enabled. ```yaml @@ -419,6 +457,7 @@ Accept wildcard characters: False ``` ### -EnableSMBQUIC + Specifies that the SMB over QUIC protocol is enabled. ```yaml @@ -434,6 +473,7 @@ Accept wildcard characters: False ``` ### -EnableStrictNameChecking + Indicates whether the server should perform strict name checking on incoming connects. ```yaml @@ -449,6 +489,7 @@ Accept wildcard characters: False ``` ### -EncryptData + Indicates whether the sessions established on this server are encrypted. ```yaml @@ -464,6 +505,7 @@ Accept wildcard characters: False ``` ### -EncryptionCiphers + Specifies the encryption ciphers used by the SMB server and the preferred order. ```yaml @@ -479,6 +521,7 @@ Accept wildcard characters: False ``` ### -Force + Forces the command to run without asking for user confirmation. ```yaml @@ -494,6 +537,7 @@ Accept wildcard characters: False ``` ### -IrpStackSize + Specifies the default IRP stack size. ```yaml @@ -509,6 +553,7 @@ Accept wildcard characters: False ``` ### -KeepAliveTime + Specifies the keep alive time. ```yaml @@ -524,6 +569,7 @@ Accept wildcard characters: False ``` ### -MaxChannelPerSession + Specifies the maximum channels per session. ```yaml @@ -539,6 +585,7 @@ Accept wildcard characters: False ``` ### -MaxMpxCount + Specifies the maximum MPX count for SMB1. ```yaml @@ -554,6 +601,7 @@ Accept wildcard characters: False ``` ### -MaxSessionPerConnection + Specifies the maximum sessions per connection. ```yaml @@ -569,6 +617,7 @@ Accept wildcard characters: False ``` ### -MaxThreadsPerQueue + Specifies the maximum threads per queue. ```yaml @@ -584,6 +633,7 @@ Accept wildcard characters: False ``` ### -MaxWorkItems + Specifies the maximum SMB1 work items. ```yaml @@ -599,6 +649,7 @@ Accept wildcard characters: False ``` ### -NullSessionPipes + Specifies the null session pipes. ```yaml @@ -614,6 +665,7 @@ Accept wildcard characters: False ``` ### -NullSessionShares + Specifies the null session shares. ```yaml @@ -629,6 +681,7 @@ Accept wildcard characters: False ``` ### -OplockBreakWait + Specifies how long the create caller waits for an opportunistic lock break. ```yaml @@ -644,6 +697,7 @@ Accept wildcard characters: False ``` ### -PendingClientTimeoutInSeconds + Specifies the pending client time-out period, in seconds. ```yaml @@ -659,7 +713,9 @@ Accept wildcard characters: False ``` ### -RejectUnencryptedAccess -Indicates whether the client that does not support encryption is denied access if it attempts to connect to an encrypted share. + +Indicates whether the client that does not support encryption is denied access if it attempts to +connect to an encrypted share. ```yaml Type: Boolean @@ -674,6 +730,7 @@ Accept wildcard characters: False ``` ### -RequireSecuritySignature + Indicates whether the security signature is required. ```yaml @@ -689,7 +746,9 @@ Accept wildcard characters: False ``` ### -RestrictNamedpipeAccessViaQuic -Specifies that named pipes are allowed when using SMB over QUIC. A value of $TRUE prevents use of named pipes and is the default. + +Specifies that named pipes are allowed when using SMB over QUIC. A value of $TRUE prevents use of +named pipes and is the default. ```yaml Type: Boolean @@ -704,6 +763,7 @@ Accept wildcard characters: False ``` ### -ServerHidden + Indicates whether the server announces itself. ```yaml @@ -719,6 +779,7 @@ Accept wildcard characters: False ``` ### -Smb2CreditsMax + Specifies the maximum SMB2 credits. ```yaml @@ -734,6 +795,7 @@ Accept wildcard characters: False ``` ### -Smb2CreditsMin + Specifies the minimum SMB2 credits. ```yaml @@ -749,6 +811,7 @@ Accept wildcard characters: False ``` ### -SmbServerNameHardeningLevel + Specifies the SMB Service name hardening level. ```yaml @@ -764,8 +827,11 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the computer. @@ -782,6 +848,7 @@ Accept wildcard characters: False ``` ### -TreatHostAsStableStorage + Indicates whether the host is treated as the stable storage. ```yaml @@ -797,6 +864,7 @@ Accept wildcard characters: False ``` ### -ValidateAliasNotCircular + Indicates whether the aliases that are not circular are validated. ```yaml @@ -812,6 +880,7 @@ Accept wildcard characters: False ``` ### -ValidateShareScope + Indicates that the existence of share scopes is checked during share creation. ```yaml @@ -827,6 +896,7 @@ Accept wildcard characters: False ``` ### -ValidateShareScopeNotAliased + Indicates whether the share scope being aliased is validated. ```yaml @@ -842,6 +912,7 @@ Accept wildcard characters: False ``` ### -ValidateTargetName + Indicates whether the target name is validated. ```yaml @@ -857,6 +928,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -872,8 +944,8 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml Type: SwitchParameter @@ -888,7 +960,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -903,4 +979,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS [Get-SmbServerConfiguration](./Get-SmbServerConfiguration.md) + [Reset-SmbServerConfiguration](./Reset-SmbServerConfiguration.md) diff --git a/docset/winserver2022-ps/smbshare/SmbShare.md b/docset/winserver2022-ps/smbshare/SmbShare.md index a70bec20d5..d5b03cd3ab 100644 --- a/docset/winserver2022-ps/smbshare/SmbShare.md +++ b/docset/winserver2022-ps/smbshare/SmbShare.md @@ -5,13 +5,15 @@ Help Version: 5.0.1.1 Locale: en-US Module Guid: 3af1699d-cc54-4e54-81cf-28d2df5cce0a Module Name: SmbShare -ms.date: 12/20/2016 +ms.date: 06/23/2022 title: SmbShare --- # SmbShare Module ## Description -This reference provides cmdlet descriptions and syntax for all Server Message Block (SMB) Share-specific cmdlets. It lists the cmdlets in alphabetical order based on the verb at the beginning of the cmdlet. +This reference provides cmdlet descriptions and syntax for all Server Message Block (SMB) +Share-specific cmdlets. It lists the cmdlets in alphabetical order based on the verb at the +beginning of the cmdlet. ## SmbShare Cmdlets ### [Block-SmbShareAccess](./Block-SmbShareAccess.md) @@ -51,19 +53,22 @@ Retrieves the properties of an SMB global mapping. Retrieves the SMB client directory mappings created for a server. ### [Get-SmbMultichannelConnection](./Get-SmbMultichannelConnection.md) -Retrieves the SMB connections made between the SMB client network interfaces and the SMB server network interfaces. +Retrieves the SMB connections made between the SMB client network interfaces and the SMB server +network interfaces. ### [Get-SmbMultichannelConstraint](./Get-SmbMultichannelConstraint.md) -Retrieves the constraints that define how the SMB client uses network interfaces to connect to the servers. +Retrieves the constraints that define how the SMB client uses network interfaces to connect to the +servers. ### [Get-SmbOpenFile](./Get-SmbOpenFile.md) -Retrieves basic information about the files that are open on behalf of the clients of the SMB server. +Retrieves basic information about the files that are open on behalf of the clients of the SMB +server. ### [Get-SmbServerCertificateMapping](./Get-SmbServerCertificateMapping.md) Retrieves a certificate association with the SMB server for SMB over QUIC. ### [Get-SmbServerCertProps](./Get-SmbServerCertProps.md) -Retrieves an SMB over QUIC-mapped certificate’s properties and tests certificate validity. +Retrieves an SMB over QUIC-mapped certificate's properties and tests certificate validity. ### [Get-SmbServerConfiguration](./Get-SmbServerConfiguration.md) Retrieves the SMB server configuration. @@ -72,7 +77,8 @@ Retrieves the SMB server configuration. Retrieves the network interfaces used by the SMB server. ### [Get-SmbSession](./Get-SmbSession.md) -Retrieves information about the SMB sessions that are currently established between the SMB server and the associated clients. +Retrieves information about the SMB sessions that are currently established between the SMB server +and the associated clients. ### [Get-SmbShare](./Get-SmbShare.md) Retrieves the SMB shares on the computer. @@ -119,7 +125,7 @@ Removes a certificate mapping from the SMB server for SMB over QUIC. ### [Remove-SmbShare](./Remove-SmbShare.md) Deletes the specified SMB shares. -### [Reset-SmbClientConfiguration](./Reset-SmbClientConfiguration.md) +### [Reset-SmbClientConfiguration](./Reset-SmbClientConfiguration.md) Resets the Server Message Block (SMB) client configuration parameters to their default values. ### [Reset-SmbServerConfiguration](./Reset-SmbServerConfiguration.md) @@ -151,5 +157,3 @@ Removes all of the deny ACEs for the trustee from the security descriptor of the ### [Update-SmbMultichannelConnection](./Update-SmbMultichannelConnection.md) Forces the SMB client to update the multi-channel-related information. - - From d83be2a0d282ffd09a624f898d021f2201de849e Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Fri, 24 Jun 2022 14:47:29 +0100 Subject: [PATCH 119/965] Formatting updates --- .../smbshare/Reset-SmbClientConfiguration.md | 6 +-- .../smbshare/Reset-SmbServerConfiguration.md | 7 ++-- .../smbshare/Set-SmbClientConfiguration.md | 17 +++------ .../smbshare/Set-SmbServerConfiguration.md | 38 ++++++++----------- 4 files changed, 28 insertions(+), 40 deletions(-) diff --git a/docset/winserver2022-ps/smbshare/Reset-SmbClientConfiguration.md b/docset/winserver2022-ps/smbshare/Reset-SmbClientConfiguration.md index 87b19c2882..c6dee8b052 100644 --- a/docset/winserver2022-ps/smbshare/Reset-SmbClientConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Reset-SmbClientConfiguration.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: SmbClientConfiguration.cdxml-help.xml Module Name: SmbShare -ms.date: 06/23/2022 +ms.date: 06/24/2022 online version: http://go.microsoft.com/fwlink/?LinkID=241959 schema: 2.0.0 title: Reset-SmbClientConfiguration @@ -44,10 +44,10 @@ default values. ### Example 1: Reset the large MTU behavior ```powershell -Reset-SmbClientConfiguration -EnableLargeMtu +Reset-SmbClientConfiguration -EnableLargeMtu -Confirm:$false ``` -This commands resets only the large MTU behavior to its default value. +This commands resets only the large MTU behavior to its default value without user confirmation. ## PARAMETERS diff --git a/docset/winserver2022-ps/smbshare/Reset-SmbServerConfiguration.md b/docset/winserver2022-ps/smbshare/Reset-SmbServerConfiguration.md index 011fd23c22..c95628a77f 100644 --- a/docset/winserver2022-ps/smbshare/Reset-SmbServerConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Reset-SmbServerConfiguration.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: SmbServerConfiguration.cdxml-help.xml Module Name: SmbShare -ms.date: 06/23/2022 +ms.date: 06/24/2022 online version: http://go.microsoft.com/fwlink/?LinkID=241959 schema: 2.0.0 title: Reset-SmbServerConfiguration @@ -49,10 +49,11 @@ and [[MS-SMB2]:Server Message Block (SMB) Protocol Versions 2 and3](/openspecs/w ### Example 1: Reset the unencrypted access behavior ```powershell -Reset-SmbServerConfiguration -RejectUnencryptedAccess +Reset-SmbServerConfiguration -RejectUnencryptedAccess -Confirm:$false ``` -This commands resets only the unencrypted access behavior to its default value. +This commands resets only the unencrypted access behavior to its default value without user +confirmation. ## PARAMETERS diff --git a/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md b/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md index 12c0ef3b8d..d8ff6cb5a4 100644 --- a/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: SmbClientConfiguration.cdxml-help.xml Module Name: SmbShare -ms.date: 06/23/2022 +ms.date: 06/24/2022 online version: https://docs.microsoft.com/powershell/module/smbshare/set-smbclientconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SmbClientConfiguration @@ -51,23 +51,16 @@ The `Set-SmbClientConfiguration` cmdlet sets the Server Message Block (SMB) clie Set-SmbClientConfiguration -ConnectionCountPerRssNetworkInterface 8 -Confirm:$false ``` -This command sets the SMB client configuration. - -### Example 2: Set the SMB client configuration without confirmation - -```powershell -Set-SmbClientConfiguration -ConnectionCountPerRssNetworkInterface 4 -Force -``` - This command sets the SMB client configuration without user confirmation. -### Example 3: Specify encryption ciphers +### Example 2: Specify encryption ciphers ```powershell -Set-SmbClientConfiguration -EncryptionCiphers "AES_128_GCM, AES_256_GCM" +Set-SmbClientConfiguration -EncryptionCiphers "AES_128_GCM, AES_256_GCM" -Confirm:$false ``` -This command specifies the encryption ciphers used by the SMB client, and the preferred order. +This command specifies the encryption ciphers used by the SMB client, and the preferred order +without user confirmation. ## PARAMETERS diff --git a/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md b/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md index e2f0e563b2..68b1f95159 100644 --- a/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: SmbServerConfiguration.cdxml-help.xml Module Name: SmbShare -ms.date: 06/23/2022 +ms.date: 06/24/2022 online version: /powershell/module/smbshare/set-smbserverconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SmbServerConfiguration @@ -59,55 +59,49 @@ and [[MS-SMB2]:Server Message Block (SMB) Protocol Versions 2 and 3](/openspecs/ Set-SmbServerConfiguration -MaxChannelPerSession 16 -Confirm:$false ``` -This command sets the SMB Service configuration. - -### Example 2: Set the SMB Service configuration without confirmation - -```powershell -Set-SmbServerConfiguration -MaxChannelPerSession 32 -Force -``` - This command sets the SMB Service configuration without user confirmation. -### Example 3: Turn on SMB signing and encryption +### Example 2: Turn on SMB signing and encryption ```powershell -Set-SmbServerConfiguration -RequireSecuritySignature $True -EnableSecuritySignature $True -EncryptData $True -Confirm:$false +Set-SmbServerConfiguration -RequireSecuritySignature $True -EnableSecuritySignature $True + -EncryptData $True -Confirm:$false ``` -This command turns on SMB signing and encryption. +This command turns on SMB signing and encryption without user confirmation. -### Example 4: Turn off the default server and workstations shares +### Example 3: Turn off the default server and workstations shares ```powershell Set-SmbServerConfiguration -AutoShareServer $False -AutoShareWorkstation $False -Confirm:$false ``` -This command turns off the default server and workstations shares. +This command turns off the default server and workstations shares without user confirmation. -### Example 5: Turn off server announcements +### Example 4: Turn off server announcements ```powershell Set-SmbServerConfiguration -ServerHidden $False -AnnounceServer $False -Confirm:$false ``` -This command turns off server announcements. +This command turns off server announcements without user confirmation. -### Example 6: Turn off SMB1 +### Example 5: Turn off SMB1 ```powershell -Set-SmbServerConfiguration -EnableSMB1Protocol $false +Set-SmbServerConfiguration -EnableSMB1Protocol $false -Confirm:$false ``` -This command disables SMB1 on the SMB server. +This command disables SMB1 on the SMB server without user confirmation. -### Example 7: Specify encryption ciphers +### Example 6: Specify encryption ciphers ```powershell -Set-SmbServerConfiguration -EncryptionCiphers "AES_128_GCM, AES_256_GCM" +Set-SmbServerConfiguration -EncryptionCiphers "AES_128_GCM, AES_256_GCM" -Confirm:$false ``` -This command specifies the encryption ciphers used by the SMB client, and the preferred order. +This command specifies the encryption ciphers used by the SMB client, and the preferred order +without user confirmation. ## PARAMETERS From ec406348877ab94b68f37173573d65bde7a843e6 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Fri, 24 Jun 2022 15:07:56 +0100 Subject: [PATCH 120/965] Updated example formatting --- docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md b/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md index 68b1f95159..ad6b7abb83 100644 --- a/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md @@ -64,8 +64,7 @@ This command sets the SMB Service configuration without user confirmation. ### Example 2: Turn on SMB signing and encryption ```powershell -Set-SmbServerConfiguration -RequireSecuritySignature $True -EnableSecuritySignature $True - -EncryptData $True -Confirm:$false +Set-SmbServerConfiguration -RequireSecuritySignature $True -EnableSecuritySignature $True -EncryptData $True -Confirm:$false ``` This command turns on SMB signing and encryption without user confirmation. From 3efd48c6c0cc21e93ead86e9f01e9280d881672d Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Fri, 24 Jun 2022 15:28:58 +0100 Subject: [PATCH 121/965] Updated Set-SmbServerConfiguration example --- .../smbshare/Set-SmbServerConfiguration.md | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md b/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md index ad6b7abb83..a34cbf6ce1 100644 --- a/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md @@ -64,10 +64,18 @@ This command sets the SMB Service configuration without user confirmation. ### Example 2: Turn on SMB signing and encryption ```powershell -Set-SmbServerConfiguration -RequireSecuritySignature $True -EnableSecuritySignature $True -EncryptData $True -Confirm:$false -``` - -This command turns on SMB signing and encryption without user confirmation. +$Parameters = @{ + RequireSecuritySignature = $True + EnableSecuritySignature = $True + EncryptData = $True + Confirm = $false +} +Set-SmbServerConfiguration @Parameters +``` + +This command turns on SMB signing and encryption without user confirmation. This example uses +splatting to pass parameter values from the '$Parameters' variable to the command. Learn more about +[Splatting](/powershell/module/microsoft.powershell.core/about/about_splatting). ### Example 3: Turn off the default server and workstations shares From a361d818ac116b2ddc4a88d6bdcff540ccdef482 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Fri, 24 Jun 2022 15:44:35 +0100 Subject: [PATCH 122/965] Updated example formatting --- docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md b/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md index a34cbf6ce1..5935b53cd5 100644 --- a/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md @@ -74,7 +74,7 @@ Set-SmbServerConfiguration @Parameters ``` This command turns on SMB signing and encryption without user confirmation. This example uses -splatting to pass parameter values from the '$Parameters' variable to the command. Learn more about +splatting to pass parameter values from the `$Parameters` variable to the command. Learn more about [Splatting](/powershell/module/microsoft.powershell.core/about/about_splatting). ### Example 3: Turn off the default server and workstations shares From ad51326f4af599f70aaac244f44137c34d5176bc Mon Sep 17 00:00:00 2001 From: David Lamb <43100963+fuselamb@users.noreply.github.com> Date: Mon, 4 Jul 2022 09:34:55 -0600 Subject: [PATCH 123/965] Update Remove-ADPrincipalGroupMembership.md Changed add to remove in the -MemberOf section. --- .../activedirectory/Remove-ADPrincipalGroupMembership.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/activedirectory/Remove-ADPrincipalGroupMembership.md b/docset/winserver2022-ps/activedirectory/Remove-ADPrincipalGroupMembership.md index e555f71913..2f48e00fad 100644 --- a/docset/winserver2022-ps/activedirectory/Remove-ADPrincipalGroupMembership.md +++ b/docset/winserver2022-ps/activedirectory/Remove-ADPrincipalGroupMembership.md @@ -159,7 +159,7 @@ Accept wildcard characters: False ``` ### -MemberOf -Specifies the Active Directory groups to add a user, computer, or group to as a member. +Specifies the Active Directory groups to remove a user, computer, or group to as a member. You can identify a group by providing one of the following values. Note: The identifier in parentheses is the LDAP display name for the attribute. The acceptable values for this parameter are: From 6ea7ed0ac7daf719759a1942d37d5767a85aa0b2 Mon Sep 17 00:00:00 2001 From: Matthew Ige Date: Fri, 8 Jul 2022 10:44:21 -0700 Subject: [PATCH 124/965] Update hyper-v firewall documentation --- .../Disable-NetFirewallHyperVRule.md | 331 +++++++++++++++ .../Enable-NetFirewallHyperVRule.md | 329 +++++++++++++++ .../netsecurity/Get-NetFirewallHyperVPort.md | 120 ++++++ .../netsecurity/Get-NetFirewallHyperVRule.md | 334 +++++++++++++++ .../Get-NetFirewallHyperVVMCreator.md | 124 ++++++ .../Get-NetFirewallHyperVVMSetting.md | 181 ++++++++ .../netsecurity/New-NetFirewallHyperVRule.md | 394 ++++++++++++++++++ .../New-NetFirewallHyperVVMSetting.md | 219 ++++++++++ .../Remove-NetFirewallHyperVRule.md | 329 +++++++++++++++ .../Rename-NetFirewallHyperVRule.md | 340 +++++++++++++++ .../netsecurity/Set-NetFirewallHyperVRule.md | 386 +++++++++++++++++ .../Set-NetFirewallHyperVVMSetting.md | 223 ++++++++++ 12 files changed, 3310 insertions(+) create mode 100644 docset/winserver2022-ps/netsecurity/Disable-NetFirewallHyperVRule.md create mode 100644 docset/winserver2022-ps/netsecurity/Enable-NetFirewallHyperVRule.md create mode 100644 docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVPort.md create mode 100644 docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVRule.md create mode 100644 docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVVMCreator.md create mode 100644 docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVVMSetting.md create mode 100644 docset/winserver2022-ps/netsecurity/New-NetFirewallHyperVRule.md create mode 100644 docset/winserver2022-ps/netsecurity/New-NetFirewallHyperVVMSetting.md create mode 100644 docset/winserver2022-ps/netsecurity/Remove-NetFirewallHyperVRule.md create mode 100644 docset/winserver2022-ps/netsecurity/Rename-NetFirewallHyperVRule.md create mode 100644 docset/winserver2022-ps/netsecurity/Set-NetFirewallHyperVRule.md create mode 100644 docset/winserver2022-ps/netsecurity/Set-NetFirewallHyperVVMSetting.md diff --git a/docset/winserver2022-ps/netsecurity/Disable-NetFirewallHyperVRule.md b/docset/winserver2022-ps/netsecurity/Disable-NetFirewallHyperVRule.md new file mode 100644 index 0000000000..c68667216e --- /dev/null +++ b/docset/winserver2022-ps/netsecurity/Disable-NetFirewallHyperVRule.md @@ -0,0 +1,331 @@ +--- +description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. +external help file: NetFirewallHyperVRule.cmdletDefinition.cdxml-help.xml +Module Name: NetSecurity +ms.date: 12/27/2016 +online version: https://docs.microsoft.com/powershell/module/netsecurity/disable-netfirewallhypervrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +title: Disable-NetFirewallHyperVRule +--- + +# Disable-NetFirewallHyperVRule + +## SYNOPSIS +Disables one or more Hyper-V firewall rules that match the specified criteria. + +## SYNTAX + +``` +Disable-NetFirewallHyperVRule [-All] [-PolicyStore ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] +``` + +``` +Disable-NetFirewallHyperVRule [-Name] [-PolicyStore ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] +``` + +``` +Disable-NetFirewallHyperVRule -DisplayName [-PolicyStore ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] +``` + +``` +Disable-NetFirewallHyperVRule [-Direction {Inbound | Outbound}] [-VMCreatorId ] [-Protocol ] [-Action {NotConfigured | Allow | Block}] [-Enabled {True | False}] [-EnforcementStatus {Unknown | OK | PartiallyEnforced | NoApplicablePorts | ParsingError | Error}] [-PolicyStoreSourceType {None | Local | MDM}] [-PolicyStore ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] +``` + +``` +Disable-NetFirewallHyperVRule -InputObject [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +IMPORTANT NOTE: Running this cmdlet without parameters disables all Windows Hyper-V firewall rules on the target computer. Always run this cmdlet with the WhatIf parameter if you are not targeting a specific Windows Hyper-V Firewall rule. + +The **Disable-NetFirewallHyperVRule** cmdlet disables a previously enabled Hyper-V firewall rule to be inactive. A Disabled rule will not actively modify system behavior, but the rule still exists on the computer so it can be re-enabled later. This is different from the Remove-NetFirewallHyperVRule cmdlet, which will permanently remove the rule. + +This cmdlet gets disables one or more Hyper-V firewall rules with the Name parameter, DisplayName parameter, or rule properties. + +Disabling Hyper-V firewall rules can be useful for debugging Hyper-V firewall policy mismatch issues. + +## EXAMPLES + +### EXAMPLE 1 +``` +PS C:\> Disable-NetFirewallHyperVRule -PolicyStore ActiveStore +``` + +This retrieves all of the Hyper-V firewall rules in the active store, which is a collection of all the policy stores that apply to the computer, and disables all of them. + +### EXAMPLE 2 +``` +PS C:\> Disable-NetFirewallHyperVRule -DisplayName 'MyServerIPBlock' +``` + +This retrieves all of the Hyper-V firewall rules with DisplayName 'MyServerIPBlock' and disables the rules. + +## PARAMETERS + +### -Action +Specifies that matching Hyper-V firewall rules of the indicated action are disabled. +The acceptable values for this parameter are: Allow or Block. + +- Allow: Network packets that match all criteria specified in this rule are permitted through the firewall. +This is the default value. +- Block: Network packets that match all criteria specified in this rule are dropped by the firewall. + +```yaml +Type: Action +Parameter Sets: (All) +Aliases: +Accepted values: NotConfigured, Allow, Block +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AsJob +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CimSession +Runs the cmdlet in a remote session or on a remote computer. +Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +The default is the current session on the local computer. + +```yaml +Type: CimSession[] +Parameter Sets: (All) +Aliases: Session +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Direction +Specifies that matching Hyper-V firewall rules of the indicated direction are disabled. +This parameter specifies which direction of traffic to match with this rule. +The acceptable values for this parameter are: Inbound or Outbound. + +```yaml +Type: Direction +Parameter Sets: (All) +Aliases: +Accepted values: Inbound, Outbound +Required: False +Position: Named +Default value: Inbound +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DisplayName +Specifies that only matching Hyper-V firewall rules of the indicated display name are disabled. Wildcard characters are accepted. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Enabled +Specifies that matching Hyper-V firewall rules of the indicated state are disabled. +This parameter specifies that the rule object is administratively enabled or administratively disabled. +The acceptable values for this parameter are: +- True: Specifies the rule is currently enabled. +- False: Specifies the rule is currently disabled. + +Note, that the type of this parameter is not boolean, therefore `$true` and `$false` variables are not acceptable values here. Use "True" and "False" text strings instead. + +A disabled rule will not actively modify computer behavior, but the management construct still exists on the computer so it can be re-enabled. + +```yaml +Type: Enabled +Parameter Sets: (All) +Aliases: +Accepted values: True, False +Required: False +Position: Named +Default value: True +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -EnforcementStatus +Specifies that firewall rules that match the indicated enforcement status are disabled. +This parameter specifies the overall status of the rule. +- OK: Specifies that the rule will work as specified. +- PartiallyEnforced: Specifies that one or more parts of the rule will not be enforced. +- NoApplicablePorts: Specifies that the rule is functioning as expected, but there are no ports applicable for this rule and therefore is not active. +- ParsingError: Specifies that the rule is corrupted and the computer is unable to use the rule at all. +- Error: Specifies that the computer is unable to use the rule at all. + +```yaml +Type: PrimaryStatus[] +Parameter Sets: ByQuery +Aliases: +Accepted values: Unknown, OK, Inactive, Error + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + + +### -Name +Specifies that only matching Hyper-V firewall rules of the indicated name are disabled. +This name serves as the unique identifier for this rule. This parameter acts just like a file name, in that only one rule with a given name may exist in a policy store at a time. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: ID +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PolicyStore +Targets the policy store from which to disable the rules. +A policy store is a container for firewall policy. +The acceptable values for this parameter are: +- PersistentStore: Sometimes called static rules, this store contains the persistent policy for the local computer. +This policy is not from GPOs, and has been created manually or programmatically (during application installation) on the computer. +Rules created in this store are attached to the ActiveStore and activated on the computer immediately. +- ActiveStore: This store contains the currently active policy, which is the sum of all policy stores that apply to the computer. +- SystemDefaults: This read-only store contains the default state of firewall rules. +- MDM: This store contains the rules configured via MDM. + +By default, the PersistentStore is queried. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PolicyStoreSourceType +Specifies that Hyper-V firewall rules that match the indicated policy store source type are disabled. +This parameter value is automatically generated and should not be modified. +The acceptable values for this parameter are: +- Local: The object originates from the local store. +- MDM: The object originates from the MDM store. + +By default, the Local store is queried. + +```yaml +Type: PolicyStoreType[] +Parameter Sets: ByQuery +Aliases: +Accepted values: None, Local, MDM + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Protocol +Specifies that only matching Hyper-V firewall rules with the indicated Protocol are disabled. +The acceptable values for this parameter are: +- Protocols by number: 0-255. +- Protocols by name: TCP, UDP, ICMPv4, or ICMPv6. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ThrottleLimit +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. +If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. +The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -VMCreatorId +Specifies that only matching Hyper-V firewall rules with the specified VMCreatorId are disabled. +The format for this value is a Guid enclosed in brackets, i.e '{9E288F02-CE00-4D9E-BE2B-14CE463B0298}' + +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None + +## OUTPUTS + +### Microsoft.Management.Infrastructure.CimInstance#root\StandardCimv2\NetFirewallHyperVRule +The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. +The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. + +## NOTES + +## RELATED LINKS + +[New-NetFirewallHyperVRule](./New-NetFirewallHyperVRule.md) + +[Get-NetFirewallHyperVRule](./Get-NetFirewallHyperVRule.md) + +[Disable-NetFirewallHyperVRule](./Disable-NetFirewallHyperVRule.md) + +[Remove-NetFirewallHyperVRule](./Remove-NetFirewallHyperVRule.md) + +[Rename-NetFirewallHyperVRule](./Rename-NetFirewallHyperVRule.md) + +[Set-NetFirewallHyperVRule](./Set-NetFirewallHyperVRule.md) + +[Get-NetfirewallHyperVVMCreator](./Get-NetFirewallHyperVVMCreator.md) \ No newline at end of file diff --git a/docset/winserver2022-ps/netsecurity/Enable-NetFirewallHyperVRule.md b/docset/winserver2022-ps/netsecurity/Enable-NetFirewallHyperVRule.md new file mode 100644 index 0000000000..a167f68b52 --- /dev/null +++ b/docset/winserver2022-ps/netsecurity/Enable-NetFirewallHyperVRule.md @@ -0,0 +1,329 @@ +--- +description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. +external help file: NetFirewallHyperVRule.cmdletDefinition.cdxml-help.xml +Module Name: NetSecurity +ms.date: 12/27/2016 +online version: https://docs.microsoft.com/powershell/module/netsecurity/enable-netfirewallhypervrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +title: Enable-NetFirewallHyperVRule +--- + +# Enable-NetFirewallHyperVRule + +## SYNOPSIS +Enables one or more Hyper-V firewall rules that match the specified criteria. + +## SYNTAX + +``` +Enable-NetFirewallHyperVRule [-All] [-PolicyStore ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] +``` + +``` +Enable-NetFirewallHyperVRule [-Name] [-PolicyStore ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] +``` + +``` +Enable-NetFirewallHyperVRule -DisplayName [-PolicyStore ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] +``` + +``` +Enable-NetFirewallHyperVRule [-Direction {Inbound | Outbound}] [-VMCreatorId ] [-Protocol ] [-Action {NotConfigured | Allow | Block}] [-Enabled {True | False}] [-EnforcementStatus {Unknown | OK | PartiallyEnforced | NoApplicablePorts | ParsingError | Error}] [-PolicyStoreSourceType {None | Local | MDM}] [-PolicyStore ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] +``` + +``` +Enable-NetFirewallHyperVRule -InputObject [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +IMPORTANT NOTE: Running this cmdlet without parameters enables all Windows Hyper-V firewall rules on the target computer. Always run this cmdlet with the WhatIf parameter if you are not targeting a specific Windows Hyper-V Firewall rule. + +The **Enable-NetFirewallHyperVRule** cmdlet enables a previously disabled Hyper-V firewall rule to be active. A Disabled rule will not actively modify system behavior, but the rule still exists on the computer so it can be re-enabled later. + +This cmdlet enables one or more Hyper-V firewall rules with the Name parameter, DisplayName parameter, or rule properties. + +## EXAMPLES + +### EXAMPLE 1 +``` +PS C:\> Enable-NetFirewallHyperVRule -PolicyStore ActiveStore +``` + +This retrieves all of the Hyper-V firewall rules in the active store, which is a collection of all the policy stores that apply to the computer, and enables all of them. + +### EXAMPLE 2 +``` +PS C:\> Enable-NetFirewallHyperVRule -DisplayName 'MyServerIPBlock' +``` + +This retrieves all of the Hyper-V firewall rules with DisplayName 'MyServerIPBlock' and enables the rules. + +## PARAMETERS + +### -Action +Specifies that matching Hyper-V firewall rules of the indicated action are enable. +The acceptable values for this parameter are: Allow or Block. + +- Allow: Network packets that match all criteria specified in this rule are permitted through the firewall. +This is the default value. +- Block: Network packets that match all criteria specified in this rule are dropped by the firewall. + +```yaml +Type: Action +Parameter Sets: (All) +Aliases: +Accepted values: NotConfigured, Allow, Block +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AsJob +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CimSession +Runs the cmdlet in a remote session or on a remote computer. +Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +The default is the current session on the local computer. + +```yaml +Type: CimSession[] +Parameter Sets: (All) +Aliases: Session +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Direction +Specifies that matching Hyper-V firewall rules of the indicated direction are enabled. +This parameter specifies which direction of traffic to match with this rule. +The acceptable values for this parameter are: Inbound or Outbound. + +```yaml +Type: Direction +Parameter Sets: (All) +Aliases: +Accepted values: Inbound, Outbound +Required: False +Position: Named +Default value: Inbound +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DisplayName +Specifies that only matching Hyper-V firewall rules of the indicated display name are enabled. Wildcard characters are accepted. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Enabled +Specifies that matching Hyper-V firewall rules of the indicated state are enabled. +This parameter specifies that the rule object is administratively enabled or administratively disabled. +The acceptable values for this parameter are: +- True: Specifies the rule is currently enabled. +- False: Specifies the rule is currently disabled. + +Note, that the type of this parameter is not boolean, therefore `$true` and `$false` variables are not acceptable values here. Use "True" and "False" text strings instead. + +A disabled rule will not actively modify computer behavior, but the management construct still exists on the computer so it can be re-enabled. + +```yaml +Type: Enabled +Parameter Sets: (All) +Aliases: +Accepted values: True, False +Required: False +Position: Named +Default value: True +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -EnforcementStatus +Specifies that firewall rules that match the indicated enforcement status are enabled. +This parameter specifies the overall status of the rule. +- OK: Specifies that the rule will work as specified. +- PartiallyEnforced: Specifies that one or more parts of the rule will not be enforced. +- NoApplicablePorts: Specifies that the rule is functioning as expected, but there are no ports applicable for this rule and therefore is not active. +- ParsingError: Specifies that the rule is corrupted and the computer is unable to use the rule at all. +- Error: Specifies that the computer is unable to use the rule at all. + +```yaml +Type: PrimaryStatus[] +Parameter Sets: ByQuery +Aliases: +Accepted values: Unknown, OK, Inactive, Error + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + + +### -Name +Specifies that only matching Hyper-V firewall rules of the indicated name are enabled. +This name serves as the unique identifier for this rule. This parameter acts just like a file name, in that only one rule with a given name may exist in a policy store at a time. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: ID +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PolicyStore +Targets the policy store from which to enable the rules. +A policy store is a container for firewall policy. +The acceptable values for this parameter are: +- PersistentStore: Sometimes called static rules, this store contains the persistent policy for the local computer. +This policy is not from GPOs, and has been created manually or programmatically (during application installation) on the computer. +Rules created in this store are attached to the ActiveStore and activated on the computer immediately. +- ActiveStore: This store contains the currently active policy, which is the sum of all policy stores that apply to the computer. +- SystemDefaults: This read-only store contains the default state of firewall rules. +- MDM: This store contains the rules configured via MDM. + +By default, the PersistentStore is queried. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PolicyStoreSourceType +Specifies that Hyper-V firewall rules that match the indicated policy store source type are enabled. +This parameter value is automatically generated and should not be modified. +The acceptable values for this parameter are: +- Local: The object originates from the local store. +- MDM: The object originates from the MDM store. + +By default, the Local store is queried. + +```yaml +Type: PolicyStoreType[] +Parameter Sets: ByQuery +Aliases: +Accepted values: None, Local, MDM + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Protocol +Specifies that only matching Hyper-V firewall rules with the indicated Protocol are enabled. +The acceptable values for this parameter are: +- Protocols by number: 0-255. +- Protocols by name: TCP, UDP, ICMPv4, or ICMPv6. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ThrottleLimit +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. +If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. +The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -VMCreatorId +Specifies that only matching Hyper-V firewall rules with the specified VMCreatorId are enabled. +The format for this value is a Guid enclosed in brackets, i.e '{9E288F02-CE00-4D9E-BE2B-14CE463B0298}' + +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None + +## OUTPUTS + +### Microsoft.Management.Infrastructure.CimInstance#root\StandardCimv2\NetFirewallHyperVRule +The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. +The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. + +## NOTES + +## RELATED LINKS + +[New-NetFirewallHyperVRule](./New-NetFirewallHyperVRule.md) + +[Get-NetFirewallHyperVRule](./Get-NetFirewallHyperVRule.md) + +[Enable-NetFirewallHyperVRule](./Enable-NetFirewallHyperVRule.md) + +[Remove-NetFirewallHyperVRule](./Remove-NetFirewallHyperVRule.md) + +[Rename-NetFirewallHyperVRule](./Rename-NetFirewallHyperVRule.md) + +[Set-NetFirewallHyperVRule](./Set-NetFirewallHyperVRule.md) + +[Get-NetfirewallHyperVVMCreator](./Get-NetFirewallHyperVVMCreator.md) \ No newline at end of file diff --git a/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVPort.md b/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVPort.md new file mode 100644 index 0000000000..95c1575fb6 --- /dev/null +++ b/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVPort.md @@ -0,0 +1,120 @@ +--- +description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. +external help file: NetFirewallHyperVPort.cmdletDefinition.cdxml-help.xml +Module Name: NetSecurity +ms.date: 12/27/2016 +online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewallhypervport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +title: Get-NetFirewallHyperVPort +--- + +# Get-NetFirewallHyperVRule + +## SYNOPSIS +Retrieves Hyper-V firewall ports from the target computer. + +## SYNTAX + +``` +Get-NetFirewallHyperVPort [-All] [-CimSession ] [-ThrottleLimit ] [-AsJob] [] +``` + +## DESCRIPTION +The **Get-NetFirewallHyperVPort** cmdlet returns the instances of the Hyper-V firewall ports. Hyper-V firewall rules are applied on a per port basis. This cmdlet queries the active ports on the system and displays associated data about the port. + +## EXAMPLES + +### EXAMPLE 1 +``` +PS C:\> Get-NetFirewallHyperVPort +``` + +This retrieves all of the Hyper-V firewall ports that are currently on the system. + +## PARAMETERS + +### -All +Specifies that all Hyper-V firewall ports should be retrieved. + +```yaml +Type: SwitchParameter +Parameter Sets: GetAll +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AsJob +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CimSession +Runs the cmdlet in a remote session or on a remote computer. +Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +The default is the current session on the local computer. + +```yaml +Type: CimSession[] +Parameter Sets: (All) +Aliases: Session +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ThrottleLimit +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. +If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. +The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None + +## OUTPUTS + +### Microsoft.Management.Infrastructure.CimInstance#root\StandardCimv2\NetFirewallHyperVPort +The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. +The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. + +## NOTES + +## RELATED LINKS + +[Get-NetfirewallHyperVRule](./Get-NetFirewallHyperVRule.md) + +[Get-NetfirewallHyperVVMCreator](./Get-NetFirewallHyperVVMCreator.md) + +[Get-NetFirewallHyperVVMSetting](./Get-NetFirewallHyperVVMSetting.md) + +[Set-NetFirewallHyperVVMSetting](./Set-NetFirewallHyperVVMSetting.md) \ No newline at end of file diff --git a/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVRule.md b/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVRule.md new file mode 100644 index 0000000000..4a6e162963 --- /dev/null +++ b/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVRule.md @@ -0,0 +1,334 @@ +--- +description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. +external help file: NetFirewallHyperVRule.cmdletDefinition.cdxml-help.xml +Module Name: NetSecurity +ms.date: 12/27/2016 +online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewallhypervrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +title: Get-NetFirewallHyperVRule +--- + +# Get-NetFirewallHyperVRule + +## SYNOPSIS +Retrieves Hyper-V firewall rules from the target computer. + +## SYNTAX + +``` +Get-NetFirewallHyperVRule [-All] [-PolicyStore ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [] +``` + +``` +Get-NetFirewallHyperVRule [-Name] [-PolicyStore ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [] +``` + +``` +Get-NetFirewallHyperVRule -DisplayName [-PolicyStore ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [] +``` + +``` +Get-NetFirewallHyperVRule [-Direction {Inbound | Outbound}] [-VMCreatorId ] [-Protocol ] [-Action {NotConfigured | Allow | Block}] [-Enabled {True | False}] [-EnforcementStatus {Unknown | OK | PartiallyEnforced | NoApplicablePorts | ParsingError | Error}] [-PolicyStoreSourceType {None | Local | Dynamic | Hardcoded | MDM}] [-PolicyStore ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [] +``` + +## DESCRIPTION +The **Get-NetFirewallHyperVRule** cmdlet returns the instances of the Hyper-V firewall rules that match the search parameters from the user. See the New-NetFirewallHyperVrule cmdlet for more information. + +This cmdlet returns one or more Hyper-V firewall rules by specifying the Name parameter, the DisplayName parameter, or rule properties. The queried rules can be placed intro variables and piped to other cmdlets for further modifications. + +In addition to the rule parameters, a read-only field called 'PortStatuses' will be enumerated. A Hyper-V firewall rule is applied to individual Hyper-V firewall ports based on the rule parameters. This output displays all Hyper-V ports that this rule is currently applied to. + +## EXAMPLES + +### EXAMPLE 1 +``` +PS C:\> Get-NetFirewallHyperVRule -PolicyStore ActiveStore +``` + +This retrieves all of the Hyper-V firewall rules in the active store, which is a collection of all the policy stores that apply to the computer. Running this cmdlet without specifying the policy store retrieves the persistent store. + +### EXAMPLE 2 +``` +PS C:\> Get-NetFirewallHyperVRule -EnforcementStatus OK +``` + +This retrieves all of the Hyper-V firewall rules with EnforcementStatus OK, which means that the rule is active and being enforced. + +### EXAMPLE 3 +``` +PS C:\> Get-NetFirewallHyperVRule -Name 'MyRuleId' +``` + +This retrieves the Hyper-V firewall rule with the Name 'MyRuleId' + +## PARAMETERS + +### -Action +Specifies that matching Hyper-V firewall rules of the indicated action are retrieved. +The acceptable values for this parameter are: Allow or Block. + +- Allow: Network packets that match all criteria specified in this rule are permitted through the firewall. +This is the default value. +- Block: Network packets that match all criteria specified in this rule are dropped by the firewall. + +```yaml +Type: Action +Parameter Sets: (All) +Aliases: +Accepted values: NotConfigured, Allow, Block +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AsJob +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CimSession +Runs the cmdlet in a remote session or on a remote computer. +Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +The default is the current session on the local computer. + +```yaml +Type: CimSession[] +Parameter Sets: (All) +Aliases: Session +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Direction +Specifies that matching Hyper-V firewall rules of the indicated direction are retrieved. +This parameter specifies which direction of traffic to match with this rule. +The acceptable values for this parameter are: Inbound or Outbound. + +```yaml +Type: Direction +Parameter Sets: (All) +Aliases: +Accepted values: Inbound, Outbound +Required: False +Position: Named +Default value: Inbound +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DisplayName +Specifies that only matching Hyper-V firewall rules of the indicated display name are retrieved. Wildcard characters are accepted. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Enabled +Specifies that matching Hyper-V firewall rules of the indicated state are retrieved. +This parameter specifies that the rule object is administratively enabled or administratively disabled. +The acceptable values for this parameter are: +- True: Specifies the rule is currently enabled. +- False: Specifies the rule is currently disabled. + +Note, that the type of this parameter is not boolean, therefore `$true` and `$false` variables are not acceptable values here. Use "True" and "False" text strings instead. + +A disabled rule will not actively modify computer behavior, but the management construct still exists on the computer so it can be re-enabled. + +```yaml +Type: Enabled +Parameter Sets: (All) +Aliases: +Accepted values: True, False +Required: False +Position: Named +Default value: True +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -EnforcementStatus +Specifies that firewall rules that match the indicated enforcement status are retrieved. +This parameter specifies the overall status of the rule. +- OK: Specifies that the rule will work as specified. +- PartiallyEnforced: Specifies that one or more parts of the rule will not be enforced. +- NoApplicablePorts: Specifies that the rule is functioning as expected, but there are no ports applicable for this rule and therefore is not active. +- ParsingError: Specifies that the rule is corrupted and the computer is unable to use the rule at all. +- Error: Specifies that the computer is unable to use the rule at all. + +```yaml +Type: PrimaryStatus[] +Parameter Sets: ByQuery +Aliases: +Accepted values: Unknown, OK, Inactive, Error + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + + +### -Name +Specifies that only matching Hyper-V firewall rules of the indicated name are retrieved. +This name serves as the unique identifier for this rule. This parameter acts just like a file name, in that only one rule with a given name may exist in a policy store at a time. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: ID +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PolicyStore +Targets the policy store from which to retrieve the rules. +A policy store is a container for firewall policy. +The acceptable values for this parameter are: +- PersistentStore: Sometimes called static rules, this store contains the persistent policy for the local computer. +This policy is not from GPOs, and has been created manually or programmatically (during application installation) on the computer. +Rules created in this store are attached to the ActiveStore and activated on the computer immediately. +- ActiveStore: This store contains the currently active policy, which is the sum of all policy stores that apply to the computer. +- SystemDefaults: This read-only store contains the default state of firewall rules. +- MDM: This store contains the rules configured via MDM. + +By default, the PersistentStore is queried. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PolicyStoreSourceType +Specifies that Hyper-V firewall rules that match the indicated policy store source type are retrieved. +This parameter value is automatically generated and should not be modified. +The acceptable values for this parameter are: +- Local: The object originates from the local store. +- MDM: The object originates from the MDM store. + +By default, the Local store is queried. + +```yaml +Type: PolicyStoreType[] +Parameter Sets: ByQuery +Aliases: +Accepted values: None, Local, MDM + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Protocol +Specifies that only matching Hyper-V firewall rules with the indicated Protocol are retrieved. +The acceptable values for this parameter are: +- Protocols by number: 0-255. +- Protocols by name: TCP, UDP, ICMPv4, or ICMPv6. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ThrottleLimit +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. +If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. +The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -VMCreatorId +Specifies that only matching Hyper-V firewall rules with the specified VMCreatorId are retrieved. +The format for this value is a GUID enclosed in brackets: '{9E288F02-CE00-4D9E-BE2B-14CE463B0298}'. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None + +## OUTPUTS + +### Microsoft.Management.Infrastructure.CimInstance#root\StandardCimv2\NetFirewallHyperVRule +The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. +The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. + +## NOTES + +## RELATED LINKS + +[New-NetFirewallHyperVRule](./New-NetFirewallHyperVRule.md) + +[Enable-NetFirewallHyperVRule](./Enable-NetFirewallHyperVRule.md) + +[Disable-NetFirewallHyperVRule](./Disable-NetFirewallHyperVRule.md) + +[Remove-NetFirewallHyperVRule](./Remove-NetFirewallHyperVRule.md) + +[Rename-NetFirewallHyperVRule](./Rename-NetFirewallHyperVRule.md) + +[Set-NetFirewallHyperVRule](./Set-NetFirewallHyperVRule.md) + +[Get-NetfirewallHyperVPort](./Get-NetFirewallHyperVPort.md) + +[Get-NetfirewallHyperVVMCreator](./Get-NetFirewallHyperVVMCreator.md) \ No newline at end of file diff --git a/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVVMCreator.md b/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVVMCreator.md new file mode 100644 index 0000000000..663aa55dc9 --- /dev/null +++ b/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVVMCreator.md @@ -0,0 +1,124 @@ +--- +description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. +external help file: NetFirewallHyperVVMCreator.cmdletDefinition.cdxml-help.xml +Module Name: NetSecurity +ms.date: 12/27/2016 +online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewallhypervvmcreator?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +title: Get-NetFirewallHyperVVMCreator +--- + +# Get-NetFirewallHyperVVMCreator + +## SYNOPSIS +Retrieves Hyper-V firewall VM Creators from the target computer. + +## SYNTAX + +``` +Get-NetFirewallHyperVVMCreator [-All] [-CimSession ] [-ThrottleLimit ] [-AsJob] [] +``` + +## DESCRIPTION +The **Get-NetFirewallHyperVVMCreator** cmdlet returns the instances of the Hyper-V firewall VM creators on the system. + +A Hyper-V firewall rule can be scoped to apply only to Hyper-V firewall ports created by specific Hyper-V VM creators. This cmdlet is used to query the list of creators currently on the system. + +A rule can scoped to a specific VM creator even if it is not yet on the system. This can be useful when configuring policy when a particular application may be installed at an unknown point in time. + +## EXAMPLES + +### EXAMPLE 1 +``` +PS C:\> Get-NetFirewallHyperVVMCreator +``` + +This retrieves all of the Hyper-V firewall VM creators that are currently on the system. + +## PARAMETERS + +### -All +Specifies that all Hyper-V firewall VM creators should be retrieved. + +```yaml +Type: SwitchParameter +Parameter Sets: GetAll +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AsJob +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CimSession +Runs the cmdlet in a remote session or on a remote computer. +Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +The default is the current session on the local computer. + +```yaml +Type: CimSession[] +Parameter Sets: (All) +Aliases: Session +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ThrottleLimit +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. +If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. +The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None + +## OUTPUTS + +### Microsoft.Management.Infrastructure.CimInstance#root\StandardCimv2\NetFirewallHyperVVMCreator +The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. +The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. + +## NOTES + +## RELATED LINKS + +[Get-NetfirewallHyperVRule](./Get-NetFirewallHyperVRule.md) + +[Get-NetFirewallHyperVPort](./Get-NetFirewallHyperVPort.md) + +[Get-NetFirewallHyperVVMSetting](./Get-NetFirewallHyperVVMSetting.md) + +[Set-NetFirewallHyperVVMSetting](./Set-NetFirewallHyperVVMSetting.md) \ No newline at end of file diff --git a/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVVMSetting.md b/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVVMSetting.md new file mode 100644 index 0000000000..1323519fab --- /dev/null +++ b/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVVMSetting.md @@ -0,0 +1,181 @@ +--- +description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. +external help file: NetFirewallHyperVVMSetting.cmdletDefinition.cdxml-help.xml +Module Name: NetSecurity +ms.date: 12/27/2016 +online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewallhypervvmsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +title: Get-NetFirewallHyperVVMSetting +--- + +# Get-NetFirewallHyperVVMSetting + +## SYNOPSIS +Retrieves Hyper-V firewall per-VM settings from the target computer. + +## SYNTAX + +``` +Get-NetFirewallHyperVVMSetting [-All] [-PolicyStore ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [] +``` + +``` +Get-NetFirewallHyperVVMSetting [-Name] [-PolicyStore ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [] +``` + +## DESCRIPTION +The **Get-NetFirewallHyperVVMSetting** cmdlet returns the the Hyper-V firewall per-VM settings on the system. These settings are applicable to all Hyper-V firewall ports created by a specific Hyper-V firewall VM creator. + +These settings are configurable on a per-store basis. By default, this cmdlet queries the local store. + +## EXAMPLES + +### EXAMPLE 1 +``` +PS C:\> Get-NetFirewallHyperVVMSetting +``` + +This retrieves all of the Hyper-V firewall per-VM settings. With no parameters, this cmdlet queries the settings in the local store. + +### EXAMPLE 2 +``` +PS C:\> Get-NetFirewallHyperVVMSetting -Name '{9E288F02-CE00-4D9E-BE2B-14CE463B0298}' +``` + +This retrieves all of the Hyper-V firewall per-VM settings for the specified VM creator Id. + +### EXAMPLE 3 +``` +PS C:\> Get-NetFirewallHyperVVMSetting -PolicyStore ActiveStore +``` + +This retrieves all of the Hyper-V firewall per-VM settings from the ActiveStore. + +## PARAMETERS + +### -All +Specifies that all Hyper-V firewall per-VM settings should be retrieved. + +```yaml +Type: SwitchParameter +Parameter Sets: GetAll +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AsJob +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CimSession +Runs the cmdlet in a remote session or on a remote computer. +Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +The default is the current session on the local computer. + +```yaml +Type: CimSession[] +Parameter Sets: (All) +Aliases: Session +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +Specifies that only matching Hyper-V firewall per-VM settings of the indicated Hyper-V firewall VM creator should be retrieved. +The format for this value is a GUID enclosed in brackets: '{9E288F02-CE00-4D9E-BE2B-14CE463B0298}'. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: VMCreatorId +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PolicyStore +Targets the policy store from which to retrieve the rules. +A policy store is a container for firewall policy. +The acceptable values for this parameter are: +- PersistentStore: Sometimes called static rules, this store contains the persistent policy for the local computer. +This policy is not from GPOs, and has been created manually or programmatically (during application installation) on the computer. +Rules created in this store are attached to the ActiveStore and activated on the computer immediately. +- ActiveStore: This store contains the currently active policy, which is the sum of all policy stores that apply to the computer. +- MDM: This store contains the rules configured via MDM. + +By default, the PersistentStore is queried. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ThrottleLimit +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. +If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. +The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None + +## OUTPUTS + +### Microsoft.Management.Infrastructure.CimInstance#root\StandardCimv2\NetFirewallHyperVVMSettings +The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. +The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. + +## NOTES + +## RELATED LINKS + +[Get-NetfirewallHyperVRule](./Get-NetFirewallHyperVRule.md) + +[Get-NetfirewallHyperVPort](./Get-NetFirewallHyperVPort.md) + +[Get-NetfirewallHyperVVMCreator](./Get-NetFirewallHyperVVMCreator.md) + +[New-NetFirewallHyperVVMSetting](./New-NetFirewallHyperVVMSetting.md) + +[Set-NetFirewallHyperVVMSetting](./Set-NetFirewallHyperVVMSetting.md) \ No newline at end of file diff --git a/docset/winserver2022-ps/netsecurity/New-NetFirewallHyperVRule.md b/docset/winserver2022-ps/netsecurity/New-NetFirewallHyperVRule.md new file mode 100644 index 0000000000..c7debd3090 --- /dev/null +++ b/docset/winserver2022-ps/netsecurity/New-NetFirewallHyperVRule.md @@ -0,0 +1,394 @@ +--- +description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. +external help file: NetFirewallHyperVRule.cmdletDefinition.cdxml-help.xml +Module Name: NetSecurity +ms.date: 12/27/2016 +online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netfirewallhypervrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +title: New-NetFirewallHyperVRule +--- + +# New-NetFirewallHyperVRule + +## SYNOPSIS +Creates a new inbound or outbound Hyper-V firewall rule and adds the rule to the target computer. + +## SYNTAX + +``` +New-NetFirewallHyperVRule -DisplayName [-Name ] [-RulePriority ] [-Direction {Inbound | Outbound}] [-VMCreatorId ] [-Protocol ] [-LocalAddresses ] [-LocalPorts ] [-RemoteAddresses ] [-RemotePorts ] [-Action {NotConfigured | Allow | Block}] [-Enabled {True | False}] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **New-NetFirewallHyperVRule** cmdlet creates an inbound or outbound Hyper-V firewall rule and adds the rule to the target computer. + +Some parameters are used to specify the conditions that must be matched for the rule to apply, such as the *LocalAddress* and *RemoteAddress* parameters. + +Rules that already exist can be managed with the Get-NetFirewallHyperVRule and Set-NetFirewallHyperVRule cmdlets. + +## EXAMPLES + +### EXAMPLE 1 +``` +PS C:\> New-NetFirewallHyperVRule -DisplayName "Block Outbound Port 80" -Direction Outbound -LocalPorts 80 -Protocol TCP -Action Block +``` + +This example creates an outbound Hyper-V firewall rule to block all traffic from applicable Hyper-V VMs that originates on TCP port 80. + +### EXAMPLE 2 +``` +PS C:\> New-NetFirewallRule -DisplayName "Block HTTP from VM Creator" -Direction Outbound -Action Block -RemotePorts 443 -VMCreatorId '{9E288F02-CE00-4D9E-BE2B-14CE463B0298}' +``` + +This example creates an outbound Hyper-V firewall rule to block HTTP traffic from VMs created by the input ID. + +## PARAMETERS + +### -Action +Specifies that matching Hyper-V firewall rules of the indicated action are created. +This parameter specifies the action to take on traffic that matches this rule. +The acceptable values for this parameter are: Allow or Block. + +- Allow: Network packets that match all criteria specified in this rule are permitted through the firewall. +This is the default value. +- Block: Network packets that match all criteria specified in this rule are dropped by the firewall. + +The default value is Allow. + +```yaml +Type: Action +Parameter Sets: (All) +Aliases: +Accepted values: NotConfigured, Allow, Block +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AsJob +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CimSession +Runs the cmdlet in a remote session or on a remote computer. +Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +The default is the current session on the local computer. + +```yaml +Type: CimSession[] +Parameter Sets: (All) +Aliases: Session +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Direction +Specifies that matching Hyper-V firewall rules of the indicated direction are created. +This parameter specifies which direction of traffic to match with this rule. +The acceptable values for this parameter are: Inbound or Outbound. + +The default value is Inbound. + +```yaml +Type: Direction +Parameter Sets: (All) +Aliases: +Accepted values: Inbound, Outbound +Required: False +Position: Named +Default value: Inbound +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DisplayName +Specifies that only matching Hyper-V firewall rules of the indicated display name are created. +Specifies the localized, user-facing name of the Hyper-V firewall rule being created. +When creating a rule this parameter is required. +This parameter value is locale-dependent. +When writing scripts in multi-lingual environments, the *Name* parameter should be used instead, where the default value is a randomly assigned value. +This parameter cannot be set to All. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Enabled +Specifies that matching Hyper-V firewall rules of the indicated state are created. +This parameter specifies that the rule object is administratively enabled or administratively disabled. +The acceptable values for this parameter are: +- True: Specifies the rule is currently enabled. +- False: Specifies the rule is currently disabled. + +Note, that the type of this parameter is not boolean, therefore `$true` and `$false` variables are not acceptable values here. Use "True" and "False" text strings instead. + +A disabled rule will not actively modify computer behavior, but the management construct still exists on the computer so it can be re-enabled. + +The default value is True. + +```yaml +Type: Enabled +Parameter Sets: (All) +Aliases: +Accepted values: True, False +Required: False +Position: Named +Default value: True +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -LocalAddresses +Specifies that network packets with matching IP addresses match this rule. +This parameter value is an IPv4 or IPv6 address, hostname, subnet, or range. +The acceptable formats for this parameter are: + +- Single IPv4 Address: 1.2.3.4 +- Single IPv6 Address: fe80::1 +- IPv4 Subnet (by network bit count): 1.2.3.4/24 +- IPv6 Subnet (by network bit count): fe80::1/48 +- IPv4 Subnet (by network mask): 1.2.3.4/255.255.255.0 +- IPv4 Range: 1.2.3.4-1.2.3.7 +- IPv6 Range: fe80::1-fe80::9 + +The default value is Any. + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` +### -LocalPorts +Specifies that network packets with matching IP local port numbers match this rule. +The acceptable values are: +- Port range: 0-65535 +- Port number: 80 + +The default value is Any. + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +Specifies that only matching Hyper-V firewall rules of the indicated name are created. +This name serves as the unique identifier for this rule. This parameter acts just like a file name, in that only one rule with a given name may exist in a policy store at a time. + +The default value is a randomly assigned value. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: ID +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Protocol +Specifies that network packets with matching IP protocol match this rule. +The acceptable values for this parameter are: +- Protocols by number: 0-255. +- Protocols by name: TCP, UDP, ICMPv4, or ICMPv6. + +The default value is Any. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -RemoteAddresses +Specifies that network packets with matching IP addresses match this rule. +This parameter value is an IPv4 or IPv6 address, subnet, or range. +The acceptable formats for this parameter are: + +- Single IPv4 Address: 1.2.3.4 +- Single IPv6 Address: fe80::1 +- IPv4 Subnet (by network bit count): 1.2.3.4/24 +- IPv6 Subnet (by network bit count): fe80::1/48 +- IPv4 Subnet (by network mask): 1.2.3.4/255.255.255.0 +- IPv4 Range: 1.2.3.4-1.2.3.7 +- IPv6 Range: fe80::1-fe80::9 + +The default value is Any. + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -RemotePorts +Specifies that network packets with matching IP port numbers match this rule. +The acceptable values are: +- Port range: 0-65535 +- Port number: 80 + +The defauly value is Any. + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -RulePriority +Specifies the order in which rules are evaluated. A lower priority rule is evaluated before a higher priority rule. + +The default value is based on the Action of the rule. A rule with Action Allow is set to priority 2, and a rule with Action Block is 1. This configures, by default, Block rules to take precedence over Allow rules. + +```yaml +Type: uint16 +Parameter Sets: (All) +Aliases: +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ThrottleLimit +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. +If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. +The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -VMCreatorId +Specifies that network packets originating from a VM matching this VMCreatorId matches this rule. The format for this value is a GUID enclosed in brackets: '{9E288F02-CE00-4D9E-BE2B-14CE463B0298}'. + +The default value is Any. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None + +## OUTPUTS + +### Microsoft.Management.Infrastructure.CimInstance#root\StandardCimv2\NetFirewallHyperVRule +The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. +The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. + +## NOTES + +## RELATED LINKS + +[Get-NetFirewallHyperVRule](./Get-NetFirewallHyperVRule.md) + +[Enable-NetFirewallHyperVRule](./Enable-NetFirewallHyperVRule.md) + +[Disable-NetFirewallHyperVRule](./Disable-NetFirewallHyperVRule.md) + +[Remove-NetFirewallHyperVRule](./Remove-NetFirewallHyperVRule.md) + +[Rename-NetFirewallHyperVRule](./Rename-NetFirewallHyperVRule.md) + +[Set-NetFirewallHyperVRule](./Set-NetFirewallHyperVRule.md) + +[Get-NetfirewallHyperVVMCreator](./Get-NetFirewallHyperVVMCreator.md) \ No newline at end of file diff --git a/docset/winserver2022-ps/netsecurity/New-NetFirewallHyperVVMSetting.md b/docset/winserver2022-ps/netsecurity/New-NetFirewallHyperVVMSetting.md new file mode 100644 index 0000000000..119ea03023 --- /dev/null +++ b/docset/winserver2022-ps/netsecurity/New-NetFirewallHyperVVMSetting.md @@ -0,0 +1,219 @@ +--- +description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. +external help file: NetFirewallHyperVVMSetting.cmdletDefinition.cdxml-help.xml +Module Name: NetSecurity +ms.date: 12/27/2016 +online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netfirewallhypervvmsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +title: New-NetFirewallHyperVVMSetting +--- + +# New-NetFirewallHyperVVMSetting + +## SYNOPSIS +Configures Hyper-V firewall per-VM settings on the target computer. + +## SYNTAX + +``` +New-NetFirewallHyperVVMSetting [-PolicyStore ] [-GPOSession ] [-Name ] [-Enabled {False | True | NotConfigured}] [-DefaultInboundAction {NotConfigured | Allow | Block}] [-DefaultOutboundAction {NotConfigured | Allow | Block}] [-LoopbackEnabled {False | True | NotConfigured}] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **New-NetFirewallHyperVVMSetting** cmdlet configures settings for the Hyper-V firewall per-VM settings on the system. These settings are applicable to all Hyper-V firewall ports created by a specific Hyper-V firewall VM creator. + +This cmdlet should be used when none of the following are true: a Hyper-V VM creator has registered its VM creator ID with the system, when another Hyper-V per-VM setting is already configured for the specified VM creator ID, or when a Hyper-V firewall port is created with the specified VM creator ID. If any of the above are true, the Set-NetFirewallHyperVVMSetting cmdlet should be used. In other words, this cmdlet can be used to configure policy prior to the application corresponding to the specific VM creator ID has running on the system. + +## EXAMPLES + +### EXAMPLE 1 +``` +PS C:\> New-NetFirewallHyperVVMSetting -Name '9E288F02-CE00-4D9E-BE2B-14CE463B0298}' -LoopbackEnabled True +``` + +This configures the LoopbackEnabled setting for all Hyper-V firewall ports created by the Hyper-V firewall VM creator specified. + +## PARAMETERS + +### -AsJob +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CimSession +Runs the cmdlet in a remote session or on a remote computer. +Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +The default is the current session on the local computer. + +```yaml +Type: CimSession[] +Parameter Sets: (All) +Aliases: Session +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultInboundAction +Specifies how to filter inbound traffic which does not match any Hyper-V firewall rules. +The acceptable values for this parameter are: NotConfigured, Allow, or Block. + +- Block: Blocks inbound network traffic that does not match an inbound rule. +- Allow: Allows all inbound network traffic, whether or not it matches an inbound rule. +- NotConfigured: Resets this value back to its default. + +The default setting is Block. + +```yaml +Type: Action +Parameter Sets: (All) +Aliases: +Accepted values: NotConfigured, Allow, Block + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultOutboundAction +Specifies how to filter outbound traffic which does not match any Hyper-V firewall rules. +The acceptable values for this parameter are: NotConfigured, Allow, or Block. + +- Block: Blocks outbound network traffic that does not match an outbound rule. +- Allow: Allows all outbound network traffic, whether or not it matches an outbound rule. +- NotConfigured: Resets this value back to its default. + +The default setting is Block. + +```yaml +Type: Action +Parameter Sets: (All) +Aliases: +Accepted values: NotConfigured, Allow, Block + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Enabled +Determines whether or not the Hyper-V firewall is active and enforced. +The acceptable values for this parameter are: False, True, or NotConfigured. + +- True: Enables Windows Hyper-V firewall. +- False: Disables Windows Hyper-V firewall. +- NotConfigured: Resets this value back to its default. + +The default setting is True. + +```yaml +Type: GpoBoolean +Parameter Sets: (All) +Aliases: +Accepted values: False, True, NotConfigured + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -LoopbackEnabled +Determines whether or not guest-host loopback traffic is allowed. + +This setting is orthogonal to any existing Hyper-V firewall rules. That is, both this setting and the set of Hyper-V firewall rules must both be configured to allow guest-host communication. Furthermore, if either this setting or a Hyper-V firewall rule blocks the communication, it will be blocked. + +The acceptable values for this parameter are: False, True, or NotConfigured. + +- True: Hyper-V firewall allows traffic between guest and host. +- False: Hyper-V firewall blocks traffic between guest and host. +- NotConfigured: Resets this value back to its default. + +The default setting is False. + +```yaml +Type: GpoBoolean +Parameter Sets: (All) +Aliases: +Accepted values: False, True, NotConfigured + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +Specifies that the settings are applicable only to the Hyper-V firewall VM creator with the matching Id. +The format for this value is a GUID enclosed in brackets: '{9E288F02-CE00-4D9E-BE2B-14CE463B0298}'. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: VMCreatorId +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ThrottleLimit +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. +If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. +The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None + +## OUTPUTS + +### Microsoft.Management.Infrastructure.CimInstance#root\StandardCimv2\NetFirewallHyperVVMSettings +The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. +The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. + +## NOTES + +## RELATED LINKS + +[Get-NetfirewallHyperVRule](./Get-NetFirewallHyperVRule.md) + +[Get-NetfirewallHyperVPort](./Get-NetFirewallHyperVPort.md) + +[Get-NetfirewallHyperVVMCreator](./Get-NetFirewallHyperVVMCreator.md) + +[Get-NetFirewallHyperVVMSetting](./Get-NetFirewallHyperVVMSetting.md) + +[Set-NetFirewallHyperVVMSetting](./Set-NetFirewallHyperVVMSetting.md) \ No newline at end of file diff --git a/docset/winserver2022-ps/netsecurity/Remove-NetFirewallHyperVRule.md b/docset/winserver2022-ps/netsecurity/Remove-NetFirewallHyperVRule.md new file mode 100644 index 0000000000..3104d876f9 --- /dev/null +++ b/docset/winserver2022-ps/netsecurity/Remove-NetFirewallHyperVRule.md @@ -0,0 +1,329 @@ +--- +description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. +external help file: NetFirewallHyperVRule.cmdletDefinition.cdxml-help.xml +Module Name: NetSecurity +ms.date: 12/27/2016 +online version: https://docs.microsoft.com/powershell/module/netsecurity/remove-netfirewallhypervrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +title: Remove-NetFirewallHyperVRule +--- + +# Remove-NetFirewallHyperVRule + +## SYNOPSIS +Deletes one or more Hyper-V firewall rules that match the specified criteria. + +## SYNTAX + +``` +Remove-NetFirewallHyperVRule [-All] [-PolicyStore ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] +``` + +``` +Remove-NetFirewallHyperVRule [-Name] [-PolicyStore ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] +``` + +``` +Remove-NetFirewallHyperVRule -DisplayName [-PolicyStore ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] +``` + +``` +Remove-NetFirewallHyperVRule [-Direction {Inbound | Outbound}] [-VMCreatorId ] [-Protocol ] [-Action {NotConfigured | Allow | Block}] [-Enabled {True | False}] [-EnforcementStatus {Unknown | OK | PartiallyEnforced | NoApplicablePorts | ParsingError | Error}] [-PolicyStoreSourceType {None | Local | MDM}] [-PolicyStore ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] +``` + +``` +Remove-NetFirewallHyperVRule -InputObject [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +IMPORTANT NOTE: Running this cmdlet without parameters removes all Windows Hyper-V firewall rules on the target computer. Always run this cmdlet with the WhatIf parameter if you are not targeting a specific Windows Hyper-V Firewall rule. + +The **Remove-NetFirewallHyperVRule** cmdlet permanently deletes a Hyper-V firewall rule to be inactive. This is different from the Disable-NetFirewallHyperVRule cmdlet, which will only disable the rule. A Disabled rule will not actively modify system behavior, but the rule still exists on the computer so it can be re-enabled later. + +This cmdlet gets removes one or more Hyper-V firewall rules with the Name parameter, DisplayName parameter, or rule properties. + +## EXAMPLES + +### EXAMPLE 1 +``` +PS C:\> Remove-NetFirewallHyperVRule +``` + +This retrieves all of the Hyper-V firewall rules in the local store and removes all of them. + +### EXAMPLE 2 +``` +PS C:\> Remove-NetFirewallHyperVRule -DisplayName 'MyServerIPBlock' +``` + +This retrieves all of the Hyper-V firewall rules with DisplayName 'MyServerIPBlock' and removes them. + +## PARAMETERS + +### -Action +Specifies that matching Hyper-V firewall rules of the indicated action are removed. +The acceptable values for this parameter are: Allow or Block. + +- Allow: Network packets that match all criteria specified in this rule are permitted through the firewall. +This is the default value. +- Block: Network packets that match all criteria specified in this rule are dropped by the firewall. + +```yaml +Type: Action +Parameter Sets: (All) +Aliases: +Accepted values: NotConfigured, Allow, Block +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AsJob +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CimSession +Runs the cmdlet in a remote session or on a remote computer. +Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +The default is the current session on the local computer. + +```yaml +Type: CimSession[] +Parameter Sets: (All) +Aliases: Session +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Direction +Specifies that matching Hyper-V firewall rules of the indicated direction are removed. +This parameter specifies which direction of traffic to match with this rule. +The acceptable values for this parameter are: Inbound or Outbound. + +```yaml +Type: Direction +Parameter Sets: (All) +Aliases: +Accepted values: Inbound, Outbound +Required: False +Position: Named +Default value: Inbound +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DisplayName +Specifies that only matching Hyper-V firewall rules of the indicated display name are removed. Wildcard characters are accepted. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Enabled +Specifies that matching Hyper-V firewall rules of the indicated state are removed. +This parameter specifies that the rule object is administratively enabled or administratively disabled. +The acceptable values for this parameter are: +- True: Specifies the rule is currently enabled. +- False: Specifies the rule is currently disabled. + +Note, that the type of this parameter is not boolean, therefore `$true` and `$false` variables are not acceptable values here. Use "True" and "False" text strings instead. + +A disabled rule will not actively modify computer behavior, but the management construct still exists on the computer so it can be re-enabled. + +```yaml +Type: Enabled +Parameter Sets: (All) +Aliases: +Accepted values: True, False +Required: False +Position: Named +Default value: True +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -EnforcementStatus +Specifies that firewall rules that match the indicated enforcement status are removed. +This parameter specifies the overall status of the rule. +- OK: Specifies that the rule will work as specified. +- PartiallyEnforced: Specifies that one or more parts of the rule will not be enforced. +- NoApplicablePorts: Specifies that the rule is functioning as expected, but there are no ports applicable for this rule and therefore is not active. +- ParsingError: Specifies that the rule is corrupted and the computer is unable to use the rule at all. +- Error: Specifies that the computer is unable to use the rule at all. + +```yaml +Type: PrimaryStatus[] +Parameter Sets: ByQuery +Aliases: +Accepted values: Unknown, OK, Inactive, Error + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + + +### -Name +Specifies that only matching Hyper-V firewall rules of the indicated name are removed. +This name serves as the unique identifier for this rule. This parameter acts just like a file name, in that only one rule with a given name may exist in a policy store at a time. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: ID +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PolicyStore +Targets the policy store from which to remove the rules. +A policy store is a container for firewall policy. +The acceptable values for this parameter are: +- PersistentStore: Sometimes called static rules, this store contains the persistent policy for the local computer. +This policy is not from GPOs, and has been created manually or programmatically (during application installation) on the computer. +Rules created in this store are attached to the ActiveStore and activated on the computer immediately. +- ActiveStore: This store contains the currently active policy, which is the sum of all policy stores that apply to the computer. +- SystemDefaults: This read-only store contains the default state of firewall rules. +- MDM: This store contains the rules configured via MDM. + +By default, the PersistentStore is queried. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PolicyStoreSourceType +Specifies that Hyper-V firewall rules that match the indicated policy store source type are removed. +This parameter value is automatically generated and should not be modified. +The acceptable values for this parameter are: +- Local: The object originates from the local store. +- MDM: The object originates from the MDM store. + +By default, the Local store is queried. + +```yaml +Type: PolicyStoreType[] +Parameter Sets: ByQuery +Aliases: +Accepted values: None, Local, MDM + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Protocol +Specifies that only matching Hyper-V firewall rules with the indicated Protocol are removed. +The acceptable values for this parameter are: +- Protocols by number: 0-255. +- Protocols by name: TCP, UDP, ICMPv4, or ICMPv6. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ThrottleLimit +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. +If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. +The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -VMCreatorId +Specifies that only matching Hyper-V firewall rules with the specified VMCreatorId are removed. +The format for this value is a Guid enclosed in brackets, i.e '{9E288F02-CE00-4D9E-BE2B-14CE463B0298}' + +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None + +## OUTPUTS + +### Microsoft.Management.Infrastructure.CimInstance#root\StandardCimv2\NetFirewallHyperVRule +The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. +The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. + +## NOTES + +## RELATED LINKS + +[New-NetFirewallHyperVRule](./New-NetFirewallHyperVRule.md) + +[Get-NetFirewallHyperVRule](./Get-NetFirewallHyperVRule.md) + +[Enable-NetFirewallHyperVRule](./Enable-NetFirewallHyperVRule.md) + +[Disable-NetFirewallHyperVRule](./Disable-NetFirewallHyperVRule.md) + +[Rename-NetFirewallHyperVRule](./Rename-NetFirewallHyperVRule.md) + +[Set-NetFirewallHyperVRule](./Set-NetFirewallHyperVRule.md) + +[Get-NetfirewallHyperVVMCreator](./Get-NetFirewallHyperVVMCreator.md) \ No newline at end of file diff --git a/docset/winserver2022-ps/netsecurity/Rename-NetFirewallHyperVRule.md b/docset/winserver2022-ps/netsecurity/Rename-NetFirewallHyperVRule.md new file mode 100644 index 0000000000..19a1c4e977 --- /dev/null +++ b/docset/winserver2022-ps/netsecurity/Rename-NetFirewallHyperVRule.md @@ -0,0 +1,340 @@ +--- +description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. +external help file: NetFirewallHyperVRule.cmdletDefinition.cdxml-help.xml +Module Name: NetSecurity +ms.date: 12/27/2016 +online version: https://docs.microsoft.com/powershell/module/netsecurity/rename-netfirewallhypervrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +title: Rename-NetFirewallHyperVRule +--- + +# Rename-NetFirewallHyperVRule + +## SYNOPSIS +Renames a single Hyper-V firewall rule. + +## SYNTAX + +``` +Rename-NetFirewallHyperVRule -NewName [-All] [-PolicyStore ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] +``` + +``` +Rename-NetFirewallHyperVRule [-Name] -NewName [-PolicyStore ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] +``` + +``` +Rename-NetFirewallHyperVRule -DisplayName -NewName [-PolicyStore ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] +``` + +``` +Rename-NetFirewallHyperVRule -NewName [-Direction {Inbound | Outbound}] [-VMCreatorId ] [-Protocol ] [-Action {NotConfigured | Allow | Block}] [-Enabled {True | False}] [-EnforcementStatus {Unknown | OK | PartiallyEnforced | NoApplicablePorts | ParsingError | Error}] [-PolicyStoreSourceType {None | Local | MDM}] [-PolicyStore ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] +``` + +``` +Rename-NetFirewallHyperVRule -InputObject -NewName [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **Rename-NetFirewallHyperVRule** cmdlet renames an existing Hyper-V firewall rule. When creating a rule, if the Name parameter is not specified, then a random GUID is used. This cmdlet specifies a friendly and descriptive rule name. The newly specified name, using the NewName parameter, must still be unique since it identifies a single rule object on the computer. + +This cmdlet gets renames the Hyper-V firewall rule with the Name parameter, DisplayName parameter, or rule properties. Only one Hyper-V firewall rule can be renamed at a time. + +To modify the DisplayName parameter, run the Set-NetFirewallHyperVRule cmdlet with the NewDisplayName parameter. + +The names are unique identifiers for rules, similar to file names. Each name must be unique within a given policy store. + +## EXAMPLES + +### EXAMPLE 1 +``` +PS C:\> Rename-NetFirewallHyperVRule -Name "{ed8384a9-a78b-4d0d-8f3d-eb5615edb4a0}" -NewName "Contoso-Out-TCP-Block" +``` + +This example renames a Hyper-V firewall rule so that the identifier is descriptive and user friendly. + +## PARAMETERS + +### -Action +Specifies that matching Hyper-V firewall rules of the indicated action are renamed. +The acceptable values for this parameter are: Allow or Block. + +- Allow: Network packets that match all criteria specified in this rule are permitted through the firewall. +This is the default value. +- Block: Network packets that match all criteria specified in this rule are dropped by the firewall. + +```yaml +Type: Action +Parameter Sets: (All) +Aliases: +Accepted values: NotConfigured, Allow, Block +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AsJob +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CimSession +Runs the cmdlet in a remote session or on a remote computer. +Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +The default is the current session on the local computer. + +```yaml +Type: CimSession[] +Parameter Sets: (All) +Aliases: Session +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Direction +Specifies that matching Hyper-V firewall rules of the indicated direction are renamed. +This parameter specifies which direction of traffic to match with this rule. +The acceptable values for this parameter are: Inbound or Outbound. + +```yaml +Type: Direction +Parameter Sets: (All) +Aliases: +Accepted values: Inbound, Outbound +Required: False +Position: Named +Default value: Inbound +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DisplayName +Specifies that only matching Hyper-V firewall rules of the indicated display name are renamed. Wildcard characters are accepted. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Enabled +Specifies that matching Hyper-V firewall rules of the indicated state are renamed. +This parameter specifies that the rule object is administratively enabled or administratively disabled. +The acceptable values for this parameter are: +- True: Specifies the rule is currently enabled. +- False: Specifies the rule is currently disabled. + +Note, that the type of this parameter is not boolean, therefore `$true` and `$false` variables are not acceptable values here. Use "True" and "False" text strings instead. + +A disabled rule will not actively modify computer behavior, but the management construct still exists on the computer so it can be re-enabled. + +```yaml +Type: Enabled +Parameter Sets: (All) +Aliases: +Accepted values: True, False +Required: False +Position: Named +Default value: True +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -EnforcementStatus +Specifies that firewall rules that match the indicated enforcement status are renamed. +This parameter specifies the overall status of the rule. +- OK: Specifies that the rule will work as specified. +- PartiallyEnforced: Specifies that one or more parts of the rule will not be enforced. +- NoApplicablePorts: Specifies that the rule is functioning as expected, but there are no ports applicable for this rule and therefore is not active. +- ParsingError: Specifies that the rule is corrupted and the computer is unable to use the rule at all. +- Error: Specifies that the computer is unable to use the rule at all. + +```yaml +Type: PrimaryStatus[] +Parameter Sets: ByQuery +Aliases: +Accepted values: Unknown, OK, Inactive, Error + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + + +### -Name +Specifies that only matching Hyper-V firewall rules of the indicated name are renamed. +This name serves as the unique identifier for this rule. This parameter acts just like a file name, in that only one rule with a given name may exist in a policy store at a time. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: ID +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + + +### -NewName +Specifies the new name for the Hyper-V firewall rule. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PolicyStore +Targets the policy store from which to rename the rules. +A policy store is a container for firewall policy. +The acceptable values for this parameter are: +- PersistentStore: Sometimes called static rules, this store contains the persistent policy for the local computer. +This policy is not from GPOs, and has been created manually or programmatically (during application installation) on the computer. +Rules created in this store are attached to the ActiveStore and activated on the computer immediately. +- ActiveStore: This store contains the currently active policy, which is the sum of all policy stores that apply to the computer. +- SystemDefaults: This read-only store contains the default state of firewall rules. +- MDM: This store contains the rules configured via MDM. + +By default, the PersistentStore is queried. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PolicyStoreSourceType +Specifies that Hyper-V firewall rules that match the indicated policy store source type are renamed. +This parameter value is automatically generated and should not be modified. +The acceptable values for this parameter are: +- Local: The object originates from the local store. +- MDM: The object originates from the MDM store. + +By default, the Local store is queried. + +```yaml +Type: PolicyStoreType[] +Parameter Sets: ByQuery +Aliases: +Accepted values: None, Local, MDM + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Protocol +Specifies that only matching Hyper-V firewall rules with the indicated Protocol are renamed. +The acceptable values for this parameter are: +- Protocols by number: 0-255. +- Protocols by name: TCP, UDP, ICMPv4, or ICMPv6. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ThrottleLimit +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. +If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. +The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -VMCreatorId +Specifies that only matching Hyper-V firewall rules with the specified VMCreatorId are renamed. +The format for this value is a Guid enclosed in brackets, i.e '{9E288F02-CE00-4D9E-BE2B-14CE463B0298}' + +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None + +## OUTPUTS + +### Microsoft.Management.Infrastructure.CimInstance#root\StandardCimv2\NetFirewallHyperVRule +The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. +The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. + +## NOTES + +## RELATED LINKS + +[New-NetFirewallHyperVRule](./New-NetFirewallHyperVRule.md) + +[Get-NetFirewallHyperVRule](./Get-NetFirewallHyperVRule.md) + +[Enable-NetFirewallHyperVRule](./Enable-NetFirewallHyperVRule.md) + +[Disable-NetFirewallHyperVRule](./Disable-NetFirewallHyperVRule.md) + +[Remove-NetFirewallHyperVRule](./Remove-NetFirewallHyperVRule.md) + +[Set-NetFirewallHyperVRule](./Set-NetFirewallHyperVRule.md) + +[Get-NetfirewallHyperVVMCreator](./Get-NetFirewallHyperVVMCreator.md) \ No newline at end of file diff --git a/docset/winserver2022-ps/netsecurity/Set-NetFirewallHyperVRule.md b/docset/winserver2022-ps/netsecurity/Set-NetFirewallHyperVRule.md new file mode 100644 index 0000000000..201dd4e29f --- /dev/null +++ b/docset/winserver2022-ps/netsecurity/Set-NetFirewallHyperVRule.md @@ -0,0 +1,386 @@ +--- +description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. +external help file: NetFirewallHyperVRule.cmdletDefinition.cdxml-help.xml +Module Name: NetSecurity +ms.date: 12/27/2016 +online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewallhypervrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +title: Set-NetFirewallHyperVRule +--- + +# Set-NetFirewallHyperVRule + +## SYNOPSIS +Modifies existing Hyper-V firewall rules. + +## SYNTAX + +``` +Set-NetFirewallHyperVRule [-Name] [-NewDisplayName ] [-RulePriority ] [-Direction {Inbound | Outbound}] [-VMCreatorId ] [-Protocol ] [-LocalAddresses ] [-LocalPorts ] [-RemoteAddresses ] [-RemotePorts ] [-Action {NotConfigured | Allow | Block}] [-Enabled {True | False}] [-CimSession ] [-ThrottleLimit +] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] +``` + +``` +Set-NetFirewallHyperVRule -DisplayName [-NewDisplayName ] [-RulePriority ] [-Direction {Inbound | Outbound}] [-VMCreatorId ] [-Protocol ] [-LocalAddresses ] [-LocalPorts ] [-RemoteAddresses ] [-RemotePorts ] [-Action {NotConfigured | Allow | Block}] [-Enabled {True | False}] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] +``` + +``` +Set-NetFirewallHyperVRule -InputObject [-NewDisplayName ] [-RulePriority ] [-Direction {Inbound | Outbound}] [-VMCreatorId ] [-Protocol ] [-LocalAddresses ] [-LocalPorts ] [-RemoteAddresses ] [-RemotePorts ] [-Action {NotConfigured | Allow | Block}] [-Enabled {True | False}] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **Set-NetFirewallHyperVRule** cmdlet modifies existing Hyper-V firewall rule properties. This cmdlet gets one or more rules to be modified using the *Name* parameter or the *DisplayName* parameter. + +Rules cannot be queried by property in this cmdlet, but the querying can be done by the Get-NetFirewallHyperVRule cmdlet and piped into this cmdlet. The remaining parameters modify the properties of the specified rules. + +## EXAMPLES + +### EXAMPLE 1 +``` +PS C:\> Set-NetFirewallHyperVRule -Name DisplayName "Block Outbound to My Servers" -RemoteAddresses "10.0.0.0/32" +``` + +This example modifies the existing Hyper-V firewall rules with DisplayName "Block Outbound to My Servers" and updates the RemoteAddresses condition. + +## PARAMETERS + +### -Action +Updates the Action value for the matching Hyper-V firewall rules. +This parameter specifies the action to take on traffic that matches this rule. +The acceptable values for this parameter are: Allow or Block. + +- Allow: Network packets that match all criteria specified in this rule are permitted through the firewall. +This is the default value. +- Block: Network packets that match all criteria specified in this rule are dropped by the firewall. + +```yaml +Type: Action +Parameter Sets: (All) +Aliases: +Accepted values: NotConfigured, Allow, Block +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AsJob +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CimSession +Runs the cmdlet in a remote session or on a remote computer. +Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +The default is the current session on the local computer. + +```yaml +Type: CimSession[] +Parameter Sets: (All) +Aliases: Session +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Direction +Updates the Direction value for the matching Hyper-V firewall rules. +This parameter specifies which direction of traffic to match with this rule. +The acceptable values for this parameter are: Inbound or Outbound. + +```yaml +Type: Direction +Parameter Sets: (All) +Aliases: +Accepted values: Inbound, Outbound +Required: False +Position: Named +Default value: Inbound +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DisplayName +Specifies that only matching Hyper-V firewall rules of the indicated display name are updated. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Enabled +Updates the Enabled value of the matching Hyper-V firewall rules. +This parameter specifies that the rule object is administratively enabled or administratively disabled. +The acceptable values for this parameter are: +- True: Specifies the rule is currently enabled. +- False: Specifies the rule is currently disabled. + +Note, that the type of this parameter is not boolean, therefore `$true` and `$false` variables are not acceptable values here. Use "True" and "False" text strings instead. + +A disabled rule will not actively modify computer behavior, but the management construct still exists on the computer so it can be re-enabled. + +```yaml +Type: Enabled +Parameter Sets: (All) +Aliases: +Accepted values: True, False +Required: False +Position: Named +Default value: True +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -LocalAddresses +Updates the LocalAddresses value for the matching Hyper-V firewall rules. +This parameter specifies that network packets with matching IP addresses match this rule. +This parameter value is an IPv4 or IPv6 address, hostname, subnet, or range. +The acceptable formats for this parameter are: + +- Single IPv4 Address: 1.2.3.4 +- Single IPv6 Address: fe80::1 +- IPv4 Subnet (by network bit count): 1.2.3.4/24 +- IPv6 Subnet (by network bit count): fe80::1/48 +- IPv4 Subnet (by network mask): 1.2.3.4/255.255.255.0 +- IPv4 Range: 1.2.3.4-1.2.3.7 +- IPv6 Range: fe80::1-fe80::9 + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` +### -LocalPorts +Updates the LocalPorts avlue for the matching Hyper-V firewall rules. +This parameter specifies that network packets with matching IP local port numbers match this rule. +The acceptable values are: +- Port range: 0-65535 +- Port number: 80 + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +Specifies that only matching Hyper-V firewall rules of the indicated Name are updated. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: ID +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NewDisplayName +Updates the DisplayName of the matching Hyper-V firewall rules. + +```yaml +Type: String +Parameter Sets: (All) +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Protocol +Updates the Protocol value of the matching Hyper-V firewall rules. +This parameter specifies that network packets with matching IP protocol match this rule. +The acceptable values for this parameter are: +- Protocols by number: 0-255. +- Protocols by name: TCP, UDP, ICMPv4, or ICMPv6. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -RemoteAddresses +Updates the RemoteAddresses value of the matching Hyper-V firewall rules. +This parameter specifies that network packets with matching IP addresses match this rule. +This parameter value is an IPv4 or IPv6 address, subnet, or range. +The acceptable formats for this parameter are: + +- Single IPv4 Address: 1.2.3.4 +- Single IPv6 Address: fe80::1 +- IPv4 Subnet (by network bit count): 1.2.3.4/24 +- IPv6 Subnet (by network bit count): fe80::1/48 +- IPv4 Subnet (by network mask): 1.2.3.4/255.255.255.0 +- IPv4 Range: 1.2.3.4-1.2.3.7 +- IPv6 Range: fe80::1-fe80::9 + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -RemotePorts +Updates the RemotePorts value of the matching Hyper-V firewall rules. +This parameter specifies that network packets with matching IP port numbers match this rule. +The acceptable values are: +- Port range: 0-65535 +- Port number: 80 + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -RulePriority +Updates the RulePriority value of the matching Hyper-V firewall rules. +This parameter specifies the order in which rules are evaluated. A lower priority rule is evaluated before a higher priority rule. + +```yaml +Type: uint16 +Parameter Sets: (All) +Aliases: +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ThrottleLimit +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. +If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. +The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -VMCreatorId +Updates the VMCreatorId value of the matching Hyper-V firewall rules. +This parameter specifies that network packets originating from a VM matching this VMCreatorId matches this rule. The format for this value is a GUID enclosed in brackets: '{9E288F02-CE00-4D9E-BE2B-14CE463B0298}'. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None + +## OUTPUTS + +### Microsoft.Management.Infrastructure.CimInstance#root\StandardCimv2\NetFirewallHyperVRule +The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. +The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. + +## NOTES + +## RELATED LINKS + +[New-NetFirewallHyperVRule](./New-NetFirewallHyperVRule.md) + +[Get-NetFirewallHyperVRule](./Get-NetFirewallHyperVRule.md) + +[Enable-NetFirewallHyperVRule](./Enable-NetFirewallHyperVRule.md) + +[Disable-NetFirewallHyperVRule](./Disable-NetFirewallHyperVRule.md) + +[Remove-NetFirewallHyperVRule](./Remove-NetFirewallHyperVRule.md) + +[Rename-NetFirewallHyperVRule](./Rename-NetFirewallHyperVRule.md) + +[Get-NetfirewallHyperVVMCreator](./Get-NetFirewallHyperVVMCreator.md) \ No newline at end of file diff --git a/docset/winserver2022-ps/netsecurity/Set-NetFirewallHyperVVMSetting.md b/docset/winserver2022-ps/netsecurity/Set-NetFirewallHyperVVMSetting.md new file mode 100644 index 0000000000..4cea4b68ce --- /dev/null +++ b/docset/winserver2022-ps/netsecurity/Set-NetFirewallHyperVVMSetting.md @@ -0,0 +1,223 @@ +--- +description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. +external help file: NetFirewallHyperVVMSetting.cmdletDefinition.cdxml-help.xml +Module Name: NetSecurity +ms.date: 12/27/2016 +online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewallhypervvmsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +title: Set-NetFirewallHyperVVMSetting +--- + +# Set-NetFirewallHyperVVMSetting + +## SYNOPSIS +Configures Hyper-V firewall per-VM settings on the target computer. + +## SYNTAX + +``` +Set-NetFirewallHyperVVMSetting [-Name] [-Enabled {False | True | NotConfigured}] [-DefaultInboundAction {NotConfigured | Allow | Block}] [-DefaultOutboundAction {NotConfigured | Allow | Block}] [-LoopbackEnabled {False | True | NotConfigured}] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] +``` + +``` +Set-NetFirewallHyperVVMSetting -InputObject [-Enabled {False | True | NotConfigured}] [-DefaultInboundAction {NotConfigured | Allow | Block}] [-DefaultOutboundAction {NotConfigured | Allow | Block}] [-LoopbackEnabled {False | True | NotConfigured}] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **Set-NetFirewallHyperVVMSetting** cmdlet configures settings for the Hyper-V firewall per-VM settings on the system. These settings are applicable to all Hyper-V firewall ports created by a specific Hyper-V firewall VM creator. + +This cmdlet should be used when a Hyper-V VM creator has registered its VM creator ID with the system, when another Hyper-V per-VM setting is already configured for the specified VM creator ID, or when a Hyper-V firewall port is created with the specified VM creator ID. If none of the above are true, then the New-NetFirewallHyperVVMSetting cmdlet should be used. + +## EXAMPLES + +### EXAMPLE 1 +``` +PS C:\> Set-NetFirewallHyperVVMSetting -Name '9E288F02-CE00-4D9E-BE2B-14CE463B0298}' -LoopbackEnabled True +``` + +This updates the LoopbackEnabled setting for all Hyper-V firewall ports created by the Hyper-V firewall VM creator specified. + +## PARAMETERS + +### -AsJob +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CimSession +Runs the cmdlet in a remote session or on a remote computer. +Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +The default is the current session on the local computer. + +```yaml +Type: CimSession[] +Parameter Sets: (All) +Aliases: Session +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultInboundAction +Specifies how to filter inbound traffic which does not match any Hyper-V firewall rules. +The acceptable values for this parameter are: NotConfigured, Allow, or Block. + +- Block: Blocks inbound network traffic that does not match an inbound rule. +- Allow: Allows all inbound network traffic, whether or not it matches an inbound rule. +- NotConfigured: Resets this value back to its default. + +The default setting is Block. + +```yaml +Type: Action +Parameter Sets: (All) +Aliases: +Accepted values: NotConfigured, Allow, Block + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultOutboundAction +Specifies how to filter outbound traffic which does not match any Hyper-V firewall rules. +The acceptable values for this parameter are: NotConfigured, Allow, or Block. + +- Block: Blocks outbound network traffic that does not match an outbound rule. +- Allow: Allows all outbound network traffic, whether or not it matches an outbound rule. +- NotConfigured: Resets this value back to its default. + +The default setting is Block. + +```yaml +Type: Action +Parameter Sets: (All) +Aliases: +Accepted values: NotConfigured, Allow, Block + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Enabled +Determines whether or not the Hyper-V firewall is active and enforced. +The acceptable values for this parameter are: False, True, or NotConfigured. + +- True: Enables Windows Hyper-V firewall. +- False: Disables Windows Hyper-V firewall. +- NotConfigured: Resets this value back to its default. + +The default setting is True. + +```yaml +Type: GpoBoolean +Parameter Sets: (All) +Aliases: +Accepted values: False, True, NotConfigured + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -LoopbackEnabled +Determines whether or not guest-host loopback traffic is allowed. + +This setting is orthogonal to any existing Hyper-V firewall rules. That is, both this setting and the set of Hyper-V firewall rules must both be configured to allow guest-host communication. Furthermore, if either this setting or a Hyper-V firewall rule blocks the communication, it will be blocked. + +The acceptable values for this parameter are: False, True, or NotConfigured. + +- True: Hyper-V firewall allows traffic between guest and host. +- False: Hyper-V firewall blocks traffic between guest and host. +- NotConfigured: Resets this value back to its default. + +The default setting is False. + +```yaml +Type: GpoBoolean +Parameter Sets: (All) +Aliases: +Accepted values: False, True, NotConfigured + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +Specifies that the settings are applicable only to the Hyper-V firewall VM creator with the matching Id. +The format for this value is a GUID enclosed in brackets: '{9E288F02-CE00-4D9E-BE2B-14CE463B0298}'. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: VMCreatorId +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ThrottleLimit +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. +If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. +The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None + +## OUTPUTS + +### Microsoft.Management.Infrastructure.CimInstance#root\StandardCimv2\NetFirewallHyperVVMSettings +The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. +The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. + +## NOTES + +## RELATED LINKS + +[Get-NetfirewallHyperVRule](./Get-NetFirewallHyperVRule.md) + +[Get-NetfirewallHyperVPort](./Get-NetFirewallHyperVPort.md) + +[Get-NetfirewallHyperVVMCreator](./Get-NetFirewallHyperVVMCreator.md) + +[Get-NetFirewallHyperVVMSetting](./Get-NetFirewallHyperVVMSetting.md) + +[New-NetFirewallHyperVVMSetting](./New-NetFirewallHyperVVMSetting.md) \ No newline at end of file From 95e21af86b520f229e60cf47e1f69712f167ea97 Mon Sep 17 00:00:00 2001 From: Ashok-Lobo Date: Thu, 14 Jul 2022 12:57:33 +0530 Subject: [PATCH 125/965] Updated Set-MpPreference - task - 6246606 --- .../winserver2016-ps/defender/Set-MpPreference.md | 14 +++++++------- .../winserver2022-ps/defender/Set-MpPreference.md | 12 ++++++------ 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/docset/winserver2016-ps/defender/Set-MpPreference.md b/docset/winserver2016-ps/defender/Set-MpPreference.md index 0c995bfae6..3242e8a355 100644 --- a/docset/winserver2016-ps/defender/Set-MpPreference.md +++ b/docset/winserver2016-ps/defender/Set-MpPreference.md @@ -1,5 +1,5 @@ --- -description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. +description: Use this article to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: MSFT_MpPreference.cdxml-help.xml Module Name: Defender ms.date: 12/20/2016 @@ -23,7 +23,7 @@ Set-MpPreference [-ExclusionPath ] [-ExclusionExtension ] [- [-ReportingNonCriticalTimeOut ] [-ScanAvgCPULoadFactor ] [-CheckForSignaturesBeforeRunningScan ] [-ScanPurgeItemsAfterDelay ] [-ScanOnlyIfIdleEnabled ] [-ScanParameters ] [-ScanScheduleDay ] - [-ScanScheduleQuickScanTime ] [-ScanScheduleTime ] [-SignatureFirstAuGracePeriod ] + [-ScanScheduleQuickScanTime ] [-ScanScheduleOffset ] [-SignatureFirstAuGracePeriod ] [-SignatureAuGracePeriod ] [-SignatureDefinitionUpdateFileSharesSources ] [-SignatureDisableUpdateOnStartupWithoutEngine ] [-SignatureFallbackOrder ] [-SignatureScheduleDay ] [-SignatureScheduleTime ] [-SignatureUpdateCatchupInterval ] @@ -58,7 +58,7 @@ The following table provides remediation action values for detected threats at l |3 |Remove the detected threat. | |6 |Allow the detected threat. | |8 |Allow the user to determine the action to take with the detected threat. | -|9 |Do not take any action. | +|9 |Don't take any action. | |10 |Block the detected threat. | |0 | (NULL)|Apply action based on the Security Intelligence Update (SIU). This is the default value. | @@ -76,7 +76,7 @@ This command configures preferences to check for definition updates every day. PS C:\> Set-MpPreference -SignatureScheduleTime 120 ``` -This command configures preferences to check for definition updates 120 minutes after midnight on days when it is scheduled to check. +This command configures preferences to check for definition updates 120 minutes after midnight on days when it's scheduled to check. ## PARAMETERS @@ -105,8 +105,8 @@ Accept wildcard characters: False ### -CheckForSignaturesBeforeRunningScan Indicates whether to check for new virus and spyware definitions before Windows Defender runs a scan. If you specify a value of $True, Windows Defender checks for new definitions. -If you specify $False or do not specify a value, the scan begins with existing definitions. -This value applies to scheduled scans and to scans that you start from the command line, but it does not affect scans that you start from the user interface. +If you specify $False or don't specify a value, the scan begins with existing definitions. +This value applies to scheduled scans and to scans that you start from the command line, but it doesn't affect scans that you start from the user interface. ```yaml Type: Boolean @@ -204,7 +204,7 @@ Accept wildcard characters: False ### -DisableCatchupFullScan Indicates whether Windows Defender runs catch-up scans for scheduled full scans. A computer can miss a scheduled scan, usually because the computer is turned off at the scheduled time. -If you specify a value of $False, after the computer misses two scheduled full scans, Windows Defender runs a catch-up scan the next time someone logs on to the computer. If you specify a value of $True, the computer does not run catch-up scans for scheduled full scans. +If you specify a value of $False, after the computer misses two scheduled full scans, Windows Defender runs a catch-up scan the next time someone logs on to the computer. If you specify a value of $True, the computer doesn't run catch-up scans for scheduled full scans. ```yaml Type: Boolean diff --git a/docset/winserver2022-ps/defender/Set-MpPreference.md b/docset/winserver2022-ps/defender/Set-MpPreference.md index 9c1a4688f1..297b3f3753 100644 --- a/docset/winserver2022-ps/defender/Set-MpPreference.md +++ b/docset/winserver2022-ps/defender/Set-MpPreference.md @@ -23,7 +23,7 @@ Set-MpPreference [-ExclusionPath ] [-ExclusionExtension ] [- [-ReportingCriticalFailureTimeOut ] [-ReportingNonCriticalTimeOut ] [-ScanAvgCPULoadFactor ] [-CheckForSignaturesBeforeRunningScan ] [-ScanPurgeItemsAfterDelay ] [-ScanOnlyIfIdleEnabled ] [-ScanParameters ] - [-ScanScheduleDay ] [-ScanScheduleQuickScanTime ] [-ScanScheduleTime ] + [-ScanScheduleDay ] [-ScanScheduleQuickScanTime ] [-ScanScheduleOffset ] [-SignatureFirstAuGracePeriod ] [-SignatureAuGracePeriod ] [-SignatureDefinitionUpdateFileSharesSources ] [-SignatureDisableUpdateOnStartupWithoutEngine ] [-SignatureFallbackOrder ] @@ -75,7 +75,7 @@ The following table provides remediation action values for detected threats at l |3 |Remove the detected threat. | |6 |Allow the detected threat. | |8 |Allow the user to determine the action to take with the detected threat. | -|9 |Do not take any action. | +|9 |Don't take any action. | |10 |Block the detected threat. | |0 | (NULL)|Apply action based on the Security Intelligence Update (SIU). This is the default value. | @@ -93,7 +93,7 @@ This command configures preferences to check for definition updates every day. PS C:\> Set-MpPreference -SignatureScheduleTime 120 ``` -This command configures preferences to check for definition updates 120 minutes after midnight on days when it is scheduled to check. +This command configures preferences to check for definition updates 120 minutes after midnight on days when it's scheduled to check. ## PARAMETERS @@ -216,8 +216,8 @@ Accept wildcard characters: False ### -CheckForSignaturesBeforeRunningScan Indicates whether to check for new virus and spyware definitions before Windows Defender runs a scan. If you specify a value of $True, Windows Defender checks for new definitions. -If you specify $False or do not specify a value, the scan begins with existing definitions. -This value applies to scheduled scans and to scans that you start from the command line, but it does not affect scans that you start from the user interface. +If you specify $False or don't specify a value, the scan begins with existing definitions. +This value applies to scheduled scans and to scans that you start from the command line, but it doesn't affect scans that you start from the user interface. ```yaml Type: Boolean @@ -408,7 +408,7 @@ Accept wildcard characters: False ``` ### -DisableCpuThrottleOnIdleScans -Indicates whether the CPU will be throttled for scheduled scans while the device is idle. This parameter is enabled by default, thus ensuring that the CPU will not be throttled for scheduled scans performed when the device is idle, regardless of what **ScanAvgCPULoadFactor** is set to. For all other scheduled scans, this flag does not have any impact and normal throttling will occur. +Indicates whether the CPU will be throttled for scheduled scans while the device is idle. This parameter is enabled by default, thus ensuring that the CPU won't be throttled for scheduled scans performed when the device is idle, regardless of what **ScanAvgCPULoadFactor** is set to. For all other scheduled scans, this flag does not have any impact and normal throttling will occur. ```yaml Type: Boolean From a22e5ead4aa04ef3b923ac850fbc5d74f186373a Mon Sep 17 00:00:00 2001 From: Denise Vangel-MSFT Date: Thu, 14 Jul 2022 07:55:08 -0700 Subject: [PATCH 126/965] Update Set-MpPreference.md --- docset/winserver2016-ps/defender/Set-MpPreference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2016-ps/defender/Set-MpPreference.md b/docset/winserver2016-ps/defender/Set-MpPreference.md index 3242e8a355..0910ca638d 100644 --- a/docset/winserver2016-ps/defender/Set-MpPreference.md +++ b/docset/winserver2016-ps/defender/Set-MpPreference.md @@ -2,7 +2,7 @@ description: Use this article to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: MSFT_MpPreference.cdxml-help.xml Module Name: Defender -ms.date: 12/20/2016 +ms.date: 07/14/2022 online version: https://docs.microsoft.com/powershell/module/defender/set-mppreference?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-MpPreference From ce9d78ec2cacc021cdea47a4ce81621df6c27779 Mon Sep 17 00:00:00 2001 From: Denise Vangel-MSFT Date: Thu, 14 Jul 2022 07:55:25 -0700 Subject: [PATCH 127/965] Update Set-MpPreference.md --- docset/winserver2022-ps/defender/Set-MpPreference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/defender/Set-MpPreference.md b/docset/winserver2022-ps/defender/Set-MpPreference.md index 297b3f3753..09dad57b7d 100644 --- a/docset/winserver2022-ps/defender/Set-MpPreference.md +++ b/docset/winserver2022-ps/defender/Set-MpPreference.md @@ -2,7 +2,7 @@ description: The Set-MpPreference cmdlet configures preferences for Windows Defender scans and updates. external help file: MSFT_MpPreference.cdxml-help.xml Module Name: Defender -ms.date: 04/21/2022 +ms.date: 07/14/2022 online version: https://docs.microsoft.com/powershell/module/defender/set-mppreference?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-MpPreference From 2da683817007202d9f7f9e9b65ada78384e8cc9a Mon Sep 17 00:00:00 2001 From: GlennChia Date: Wed, 27 Jul 2022 11:15:54 +0800 Subject: [PATCH 128/965] docs: typos for winserver2012 partitions --- docset/winserver2012-ps/storage/Get-Partition.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docset/winserver2012-ps/storage/Get-Partition.md b/docset/winserver2012-ps/storage/Get-Partition.md index 7179f33ff1..3cd728cb23 100644 --- a/docset/winserver2012-ps/storage/Get-Partition.md +++ b/docset/winserver2012-ps/storage/Get-Partition.md @@ -50,7 +50,7 @@ This cmdlet will return a Volume object or a set of Volume objects given paramet PS C:\>Get-Partition ``` -This example return all partitions, on all disks. +This example returns all partitions, on all disks. ### EXAMPLE 2 ``` @@ -62,7 +62,7 @@ PartitionNumber DriveLetter Offset Size 1 H 1048576 298.09 GB IFS ``` -This example return all partitions on disk 5. +This example returns all partitions on disk 5. ### EXAMPLE 3 ``` @@ -74,7 +74,7 @@ PartitionNumber DriveLetter Offset Size 2 C 368050176 465.42 GB IFS ``` -This example partition associated with the volume for drive letter C. +This example returns partitions associated with the volume for drive letter C. ### EXAMPLE 4 ``` From c377e514a10714e42435960145b823a6d45de3bb Mon Sep 17 00:00:00 2001 From: GlennChia Date: Wed, 27 Jul 2022 11:16:27 +0800 Subject: [PATCH 129/965] docs: typos for winserver2012r2 partitions --- docset/winserver2012r2-ps/storage/Get-Partition.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docset/winserver2012r2-ps/storage/Get-Partition.md b/docset/winserver2012r2-ps/storage/Get-Partition.md index e2b834e933..bfcff61346 100644 --- a/docset/winserver2012r2-ps/storage/Get-Partition.md +++ b/docset/winserver2012r2-ps/storage/Get-Partition.md @@ -55,7 +55,7 @@ This cmdlet will return a Volume object or a set of Volume objects given paramet PS C:\>Get-Partition ``` -This example return all partitions, on all disks. +This example returns all partitions, on all disks. ### EXAMPLE 2 ``` @@ -67,7 +67,7 @@ PartitionNumber DriveLetter Offset Size 1 H 1048576 298.09 GB IFS ``` -This example return all partitions on disk 5. +This example returns all partitions on disk 5. ### EXAMPLE 3 ``` @@ -79,7 +79,7 @@ PartitionNumber DriveLetter Offset Size 2 C 368050176 465.42 GB IFS ``` -This example partition associated with the volume for drive letter C. +This example returns partitions associated with the volume for drive letter C. ### EXAMPLE 4 ``` From 3b8a6259bb20d2c55845a493dc8badbe20bb3c22 Mon Sep 17 00:00:00 2001 From: GlennChia Date: Wed, 27 Jul 2022 11:16:55 +0800 Subject: [PATCH 130/965] docs: typos for winserver2016 partitions --- docset/winserver2016-ps/storage/Get-Partition.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docset/winserver2016-ps/storage/Get-Partition.md b/docset/winserver2016-ps/storage/Get-Partition.md index 21bdcaec43..f7c3f615d5 100644 --- a/docset/winserver2016-ps/storage/Get-Partition.md +++ b/docset/winserver2016-ps/storage/Get-Partition.md @@ -68,7 +68,7 @@ This cmdlet will return a Volume object or a set of Volume objects given paramet PS C:\>Get-Partition ``` -This example return all partitions, on all disks. +This example returns all partitions, on all disks. ### Example 2 ``` @@ -80,7 +80,7 @@ PartitionNumber DriveLetter Offset Size 1 H 1048576 298.09 GB IFS ``` -This example return all partitions on disk 5. +This example returns all partitions on disk 5. ### Example 3 ``` @@ -92,7 +92,7 @@ PartitionNumber DriveLetter Offset Size 2 C 368050176 465.42 GB IFS ``` -This example partition associated with the volume for drive letter C. +This example returns partitions associated with the volume for drive letter C. ### Example 4 ``` From 0ad576090bdf06ed5f6cf45735071cda8d4de525 Mon Sep 17 00:00:00 2001 From: GlennChia Date: Wed, 27 Jul 2022 11:17:26 +0800 Subject: [PATCH 131/965] docs: typos for winserver2019 partitions --- docset/winserver2019-ps/storage/Get-Partition.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docset/winserver2019-ps/storage/Get-Partition.md b/docset/winserver2019-ps/storage/Get-Partition.md index cb7c57a7d6..f6a4273427 100644 --- a/docset/winserver2019-ps/storage/Get-Partition.md +++ b/docset/winserver2019-ps/storage/Get-Partition.md @@ -68,7 +68,7 @@ This cmdlet will return a Volume object or a set of Volume objects given paramet PS C:\>Get-Partition ``` -This example return all partitions, on all disks. +This example returns all partitions, on all disks. ### Example 2 ``` @@ -80,7 +80,7 @@ PartitionNumber DriveLetter Offset Size 1 H 1048576 298.09 GB IFS ``` -This example return all partitions on disk 5. +This example returns all partitions on disk 5. ### Example 3 ``` @@ -92,7 +92,7 @@ PartitionNumber DriveLetter Offset Size 2 C 368050176 465.42 GB IFS ``` -This example partition associated with the volume for drive letter C. +This example returns partitions associated with the volume for drive letter C. ### Example 4 ``` From 366e8c1315a66293da79ccc49ed31c5719af4e25 Mon Sep 17 00:00:00 2001 From: GlennChia Date: Wed, 27 Jul 2022 11:17:40 +0800 Subject: [PATCH 132/965] docs: typos for winserver2022 partitions --- docset/winserver2022-ps/storage/Get-Partition.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docset/winserver2022-ps/storage/Get-Partition.md b/docset/winserver2022-ps/storage/Get-Partition.md index 4ff917978b..b580ec24e4 100644 --- a/docset/winserver2022-ps/storage/Get-Partition.md +++ b/docset/winserver2022-ps/storage/Get-Partition.md @@ -68,7 +68,7 @@ This cmdlet will return a Volume object or a set of Volume objects given paramet PS C:\>Get-Partition ``` -This example return all partitions, on all disks. +This example returns all partitions, on all disks. ### Example 2 ``` @@ -80,7 +80,7 @@ PartitionNumber DriveLetter Offset Size 1 H 1048576 298.09 GB IFS ``` -This example return all partitions on disk 5. +This example returns all partitions on disk 5. ### Example 3 ``` @@ -92,7 +92,7 @@ PartitionNumber DriveLetter Offset Size 2 C 368050176 465.42 GB IFS ``` -This example partition associated with the volume for drive letter C. +This example returns partitions associated with the volume for drive letter C. ### Example 4 ``` From cbaba34b60c7b59075c84d562215b9ff01ab4093 Mon Sep 17 00:00:00 2001 From: Manika Dhiman <48934119+ManikaDhiman@users.noreply.github.com> Date: Wed, 3 Aug 2022 13:53:18 -0700 Subject: [PATCH 133/965] Updated AllowManagementOS description --- docset/winserver2012-ps/hyper-v/Set-VMSwitch.md | 2 +- docset/winserver2012r2-ps/hyper-v/Set-VMSwitch.md | 2 +- docset/winserver2016-ps/hyper-v/Set-VMSwitch.md | 2 +- docset/winserver2019-ps/hyper-v/Set-VMSwitch.md | 2 +- docset/winserver2022-ps/hyper-v/Set-VMSwitch.md | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docset/winserver2012-ps/hyper-v/Set-VMSwitch.md b/docset/winserver2012-ps/hyper-v/Set-VMSwitch.md index 44933b9844..c0763f7cc6 100644 --- a/docset/winserver2012-ps/hyper-v/Set-VMSwitch.md +++ b/docset/winserver2012-ps/hyper-v/Set-VMSwitch.md @@ -82,7 +82,7 @@ This example sets the minimum bandwidth allocation to 500Mbps on a virtual switc ## PARAMETERS ### -AllowManagementOS -Specifies whether the management operating system can use the physical network adapter that is bound to the external virtual switch. +Specifies whether the management operating system can use the physical network adapter that is bound to the virtual switch. Setting AllowManagementOS to true creates management operating system virtual network adapters (VMNetworkAdapters) in the parent partition and connects it to the virtual switch. Setting AllowManagementOS to false removes any management operating system virtual network adapters (VMNetworkAdapters) connected to the virtual switch. ```yaml Type: Boolean diff --git a/docset/winserver2012r2-ps/hyper-v/Set-VMSwitch.md b/docset/winserver2012r2-ps/hyper-v/Set-VMSwitch.md index 952744205b..b9116de604 100644 --- a/docset/winserver2012r2-ps/hyper-v/Set-VMSwitch.md +++ b/docset/winserver2012r2-ps/hyper-v/Set-VMSwitch.md @@ -84,7 +84,7 @@ This example sets the minimum bandwidth allocation to 500Mbps on a virtual switc ## PARAMETERS ### -AllowManagementOS -Specifies whether the management operating system can use the physical network adapter that is bound to the external virtual switch. +Specifies whether the management operating system can use the physical network adapter that is bound to the virtual switch. Setting AllowManagementOS to true creates management operating system virtual network adapters (VMNetworkAdapters) in the parent partition and connects it to the virtual switch. Setting AllowManagementOS to false removes any management operating system virtual network adapters (VMNetworkAdapters) connected to the virtual switch. ```yaml Type: Boolean diff --git a/docset/winserver2016-ps/hyper-v/Set-VMSwitch.md b/docset/winserver2016-ps/hyper-v/Set-VMSwitch.md index 9abd45602f..2c12e3b619 100644 --- a/docset/winserver2016-ps/hyper-v/Set-VMSwitch.md +++ b/docset/winserver2016-ps/hyper-v/Set-VMSwitch.md @@ -104,7 +104,7 @@ This example sets the minimum bandwidth allocation to 500Mbps on a virtual switc ## PARAMETERS ### -AllowManagementOS -Specifies whether the management operating system can use the physical network adapter that is bound to the external virtual switch. +Specifies whether the management operating system can use the physical network adapter that is bound to the virtual switch. Setting AllowManagementOS to true creates management operating system virtual network adapters (VMNetworkAdapters) in the parent partition and connects it to the virtual switch. Setting AllowManagementOS to false removes any management operating system virtual network adapters (VMNetworkAdapters) connected to the virtual switch. ```yaml Type: Boolean diff --git a/docset/winserver2019-ps/hyper-v/Set-VMSwitch.md b/docset/winserver2019-ps/hyper-v/Set-VMSwitch.md index 0440156385..5cd1bf090e 100644 --- a/docset/winserver2019-ps/hyper-v/Set-VMSwitch.md +++ b/docset/winserver2019-ps/hyper-v/Set-VMSwitch.md @@ -104,7 +104,7 @@ This example sets the minimum bandwidth allocation to 500Mbps on a virtual switc ## PARAMETERS ### -AllowManagementOS -Specifies whether the management operating system can use the physical network adapter that is bound to the external virtual switch. +Specifies whether the management operating system can use the physical network adapter that is bound to the virtual switch. Setting AllowManagementOS to true creates management operating system virtual network adapters (VMNetworkAdapters) in the parent partition and connects it to the virtual switch. Setting AllowManagementOS to false removes any management operating system virtual network adapters (VMNetworkAdapters) connected to the virtual switch. ```yaml Type: Boolean diff --git a/docset/winserver2022-ps/hyper-v/Set-VMSwitch.md b/docset/winserver2022-ps/hyper-v/Set-VMSwitch.md index 9dab0615c3..8bb8d05f0d 100644 --- a/docset/winserver2022-ps/hyper-v/Set-VMSwitch.md +++ b/docset/winserver2022-ps/hyper-v/Set-VMSwitch.md @@ -104,7 +104,7 @@ This example sets the minimum bandwidth allocation to 500Mbps on a virtual switc ## PARAMETERS ### -AllowManagementOS -Specifies whether the management operating system can use the physical network adapter that is bound to the external virtual switch. +Specifies whether the management operating system can use the physical network adapter that is bound to the virtual switch. Setting AllowManagementOS to true creates management operating system virtual network adapters (VMNetworkAdapters) in the parent partition and connects it to the virtual switch. Setting AllowManagementOS to false removes any management operating system virtual network adapters (VMNetworkAdapters) connected to the virtual switch. ```yaml Type: Boolean From 784efed7a2a8dec15b799ef2e4beb381132c91e9 Mon Sep 17 00:00:00 2001 From: Sean Wheeler Date: Wed, 3 Aug 2022 16:23:44 -0500 Subject: [PATCH 134/965] Apply suggestions from code review --- docset/winserver2012-ps/hyper-v/Set-VMSwitch.md | 2 +- docset/winserver2012r2-ps/hyper-v/Set-VMSwitch.md | 2 +- docset/winserver2016-ps/hyper-v/Set-VMSwitch.md | 2 +- docset/winserver2019-ps/hyper-v/Set-VMSwitch.md | 2 +- docset/winserver2022-ps/hyper-v/Set-VMSwitch.md | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docset/winserver2012-ps/hyper-v/Set-VMSwitch.md b/docset/winserver2012-ps/hyper-v/Set-VMSwitch.md index c0763f7cc6..c824644141 100644 --- a/docset/winserver2012-ps/hyper-v/Set-VMSwitch.md +++ b/docset/winserver2012-ps/hyper-v/Set-VMSwitch.md @@ -82,7 +82,7 @@ This example sets the minimum bandwidth allocation to 500Mbps on a virtual switc ## PARAMETERS ### -AllowManagementOS -Specifies whether the management operating system can use the physical network adapter that is bound to the virtual switch. Setting AllowManagementOS to true creates management operating system virtual network adapters (VMNetworkAdapters) in the parent partition and connects it to the virtual switch. Setting AllowManagementOS to false removes any management operating system virtual network adapters (VMNetworkAdapters) connected to the virtual switch. +Specifies whether the management operating system can use the physical network adapter that is bound to the virtual switch. Setting **AllowManagementOS** to `$true` creates management operating system virtual network adapters (VMNetworkAdapters) in the parent partition and connects it to the virtual switch. Setting **AllowManagementOS** to `$false` removes any VMNetworkAdapters connected to the virtual switch. ```yaml Type: Boolean diff --git a/docset/winserver2012r2-ps/hyper-v/Set-VMSwitch.md b/docset/winserver2012r2-ps/hyper-v/Set-VMSwitch.md index b9116de604..849725014f 100644 --- a/docset/winserver2012r2-ps/hyper-v/Set-VMSwitch.md +++ b/docset/winserver2012r2-ps/hyper-v/Set-VMSwitch.md @@ -84,7 +84,7 @@ This example sets the minimum bandwidth allocation to 500Mbps on a virtual switc ## PARAMETERS ### -AllowManagementOS -Specifies whether the management operating system can use the physical network adapter that is bound to the virtual switch. Setting AllowManagementOS to true creates management operating system virtual network adapters (VMNetworkAdapters) in the parent partition and connects it to the virtual switch. Setting AllowManagementOS to false removes any management operating system virtual network adapters (VMNetworkAdapters) connected to the virtual switch. +Specifies whether the management operating system can use the physical network adapter that is bound to the virtual switch. Setting **AllowManagementOS** to `$true` creates management operating system virtual network adapters (VMNetworkAdapters) in the parent partition and connects it to the virtual switch. Setting **AllowManagementOS** to `$false` removes any VMNetworkAdapters connected to the virtual switch. ```yaml Type: Boolean diff --git a/docset/winserver2016-ps/hyper-v/Set-VMSwitch.md b/docset/winserver2016-ps/hyper-v/Set-VMSwitch.md index 2c12e3b619..2a202b6648 100644 --- a/docset/winserver2016-ps/hyper-v/Set-VMSwitch.md +++ b/docset/winserver2016-ps/hyper-v/Set-VMSwitch.md @@ -104,7 +104,7 @@ This example sets the minimum bandwidth allocation to 500Mbps on a virtual switc ## PARAMETERS ### -AllowManagementOS -Specifies whether the management operating system can use the physical network adapter that is bound to the virtual switch. Setting AllowManagementOS to true creates management operating system virtual network adapters (VMNetworkAdapters) in the parent partition and connects it to the virtual switch. Setting AllowManagementOS to false removes any management operating system virtual network adapters (VMNetworkAdapters) connected to the virtual switch. +Specifies whether the management operating system can use the physical network adapter that is bound to the virtual switch. Setting **AllowManagementOS** to `$true` creates management operating system virtual network adapters (VMNetworkAdapters) in the parent partition and connects it to the virtual switch. Setting **AllowManagementOS** to `$false` removes any VMNetworkAdapters connected to the virtual switch. ```yaml Type: Boolean diff --git a/docset/winserver2019-ps/hyper-v/Set-VMSwitch.md b/docset/winserver2019-ps/hyper-v/Set-VMSwitch.md index 5cd1bf090e..8e5f7ea58c 100644 --- a/docset/winserver2019-ps/hyper-v/Set-VMSwitch.md +++ b/docset/winserver2019-ps/hyper-v/Set-VMSwitch.md @@ -104,7 +104,7 @@ This example sets the minimum bandwidth allocation to 500Mbps on a virtual switc ## PARAMETERS ### -AllowManagementOS -Specifies whether the management operating system can use the physical network adapter that is bound to the virtual switch. Setting AllowManagementOS to true creates management operating system virtual network adapters (VMNetworkAdapters) in the parent partition and connects it to the virtual switch. Setting AllowManagementOS to false removes any management operating system virtual network adapters (VMNetworkAdapters) connected to the virtual switch. +Specifies whether the management operating system can use the physical network adapter that is bound to the virtual switch. Setting **AllowManagementOS** to `$true` creates management operating system virtual network adapters (VMNetworkAdapters) in the parent partition and connects it to the virtual switch. Setting **AllowManagementOS** to `$false` removes any VMNetworkAdapters connected to the virtual switch. ```yaml Type: Boolean diff --git a/docset/winserver2022-ps/hyper-v/Set-VMSwitch.md b/docset/winserver2022-ps/hyper-v/Set-VMSwitch.md index 8bb8d05f0d..2d86284193 100644 --- a/docset/winserver2022-ps/hyper-v/Set-VMSwitch.md +++ b/docset/winserver2022-ps/hyper-v/Set-VMSwitch.md @@ -104,7 +104,7 @@ This example sets the minimum bandwidth allocation to 500Mbps on a virtual switc ## PARAMETERS ### -AllowManagementOS -Specifies whether the management operating system can use the physical network adapter that is bound to the virtual switch. Setting AllowManagementOS to true creates management operating system virtual network adapters (VMNetworkAdapters) in the parent partition and connects it to the virtual switch. Setting AllowManagementOS to false removes any management operating system virtual network adapters (VMNetworkAdapters) connected to the virtual switch. +Specifies whether the management operating system can use the physical network adapter that is bound to the virtual switch. Setting **AllowManagementOS** to `$true` creates management operating system virtual network adapters (VMNetworkAdapters) in the parent partition and connects it to the virtual switch. Setting **AllowManagementOS** to `$false` removes any VMNetworkAdapters connected to the virtual switch. ```yaml Type: Boolean From 71ba46ad971a4e31f22c9613354196a4f4f894e5 Mon Sep 17 00:00:00 2001 From: Evgenij Smirnov Date: Fri, 5 Aug 2022 08:12:13 +0200 Subject: [PATCH 135/965] Update Export-DnsServerZone.md The current docs say you can specify a path as a value for -FileName. The actual cmdlet will not accept this. --- docset/winserver2022-ps/dnsserver/Export-DnsServerZone.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/dnsserver/Export-DnsServerZone.md b/docset/winserver2022-ps/dnsserver/Export-DnsServerZone.md index 6ad152360b..6d2b19f119 100644 --- a/docset/winserver2022-ps/dnsserver/Export-DnsServerZone.md +++ b/docset/winserver2022-ps/dnsserver/Export-DnsServerZone.md @@ -109,7 +109,7 @@ Accept wildcard characters: False ### -FileName Specifies a name for the export file. -You can include a file path. +The file will be created in the default DNS directory. ```yaml Type: String From 5e99af9e9a06a572d730bf6c7be828e476c972c2 Mon Sep 17 00:00:00 2001 From: Evgenij Smirnov Date: Fri, 5 Aug 2022 08:14:06 +0200 Subject: [PATCH 136/965] Update Export-DnsServerZone.md Corrected the path acceptance in the -File parameter. --- docset/winserver2016-ps/dnsserver/Export-DnsServerZone.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2016-ps/dnsserver/Export-DnsServerZone.md b/docset/winserver2016-ps/dnsserver/Export-DnsServerZone.md index 718dbd38b9..e6b12a80b0 100644 --- a/docset/winserver2016-ps/dnsserver/Export-DnsServerZone.md +++ b/docset/winserver2016-ps/dnsserver/Export-DnsServerZone.md @@ -109,7 +109,7 @@ Accept wildcard characters: False ### -FileName Specifies a name for the export file. -You can include a file path. +The file will be created in the default DNS directory. ```yaml Type: String From 1f6f77fc644b5fd402b8fdc8503bf8c4f9bc1907 Mon Sep 17 00:00:00 2001 From: Evgenij Smirnov Date: Fri, 5 Aug 2022 08:15:08 +0200 Subject: [PATCH 137/965] Update Export-DnsServerZone.md Path handling in -FileName --- docset/winserver2012r2-ps/dnsserver/Export-DnsServerZone.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2012r2-ps/dnsserver/Export-DnsServerZone.md b/docset/winserver2012r2-ps/dnsserver/Export-DnsServerZone.md index 9d51736001..dd6ade7bf3 100644 --- a/docset/winserver2012r2-ps/dnsserver/Export-DnsServerZone.md +++ b/docset/winserver2012r2-ps/dnsserver/Export-DnsServerZone.md @@ -101,7 +101,7 @@ Accept wildcard characters: False ### -FileName Specifies a name for the export file. -You can include a file path. +The file will be created in the default DNS directory. ```yaml Type: String From 1ebde3b1c525173bab52c77bb3f49fad7bdb4e7e Mon Sep 17 00:00:00 2001 From: Evgenij Smirnov Date: Fri, 5 Aug 2022 08:16:01 +0200 Subject: [PATCH 138/965] Update Export-DnsServerZone.md -FileName logic --- docset/winserver2012-ps/dnsserver/Export-DnsServerZone.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2012-ps/dnsserver/Export-DnsServerZone.md b/docset/winserver2012-ps/dnsserver/Export-DnsServerZone.md index 55fa88d138..0e3df349fa 100644 --- a/docset/winserver2012-ps/dnsserver/Export-DnsServerZone.md +++ b/docset/winserver2012-ps/dnsserver/Export-DnsServerZone.md @@ -84,7 +84,7 @@ Accept wildcard characters: False ### -FileName Specifies a name for the export file. -You can include a file path. +The file will be created in the default DNS directory. ```yaml Type: String From 1c2a4dae820cd9ee8375fc7b51bc8ec5118aa0c5 Mon Sep 17 00:00:00 2001 From: Sean Wheeler Date: Mon, 8 Aug 2022 12:49:30 -0500 Subject: [PATCH 139/965] Fix Related Links formatting --- .../bitlocker/Enable-BitLocker.md | 18 ++++++++----- .../bitlocker/Enable-BitLocker.md | 18 ++++++++----- .../bitlocker/Enable-BitLocker.md | 18 ++++++++----- .../bitlocker/Enable-BitLocker.md | 18 ++++++++----- .../bitlocker/Enable-BitLocker.md | 26 ++++++++++++------- 5 files changed, 64 insertions(+), 34 deletions(-) diff --git a/docset/winserver2012-ps/bitlocker/Enable-BitLocker.md b/docset/winserver2012-ps/bitlocker/Enable-BitLocker.md index f7617a8135..a7de2a30a2 100644 --- a/docset/winserver2012-ps/bitlocker/Enable-BitLocker.md +++ b/docset/winserver2012-ps/bitlocker/Enable-BitLocker.md @@ -606,12 +606,18 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Disable-BitLocker](./Disable-BitLocker.md) -- [Get-BitLockerVolume](./Get-BitLockerVolume.md) -- [Lock-BitLocker](./Lock-BitLocker.md) -- [Resume-BitLocker](./Resume-BitLocker.md) -- [Suspend-BitLocker](./Suspend-BitLocker.md) -- [Unlock-BitLocker](./Unlock-BitLocker.md) +[Disable-BitLocker](./Disable-BitLocker.md) +[Get-BitLockerVolume](./Get-BitLockerVolume.md) + +[Lock-BitLocker](./Lock-BitLocker.md) + +[Resume-BitLocker](./Resume-BitLocker.md) + +[Suspend-BitLocker](./Suspend-BitLocker.md) + +[Unlock-BitLocker](./Unlock-BitLocker.md) + + [1]: https://msrc.microsoft.com/update-guide/vulnerability/ADV180028 [2]: https://docs.microsoft.com/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/cc732774(v=ws.11) diff --git a/docset/winserver2012r2-ps/bitlocker/Enable-BitLocker.md b/docset/winserver2012r2-ps/bitlocker/Enable-BitLocker.md index 6bedb04708..bfdc0d1ba2 100644 --- a/docset/winserver2012r2-ps/bitlocker/Enable-BitLocker.md +++ b/docset/winserver2012r2-ps/bitlocker/Enable-BitLocker.md @@ -606,12 +606,18 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Disable-BitLocker](./Disable-BitLocker.md) -- [Get-BitLockerVolume](./Get-BitLockerVolume.md) -- [Lock-BitLocker](./Lock-BitLocker.md) -- [Resume-BitLocker](./Resume-BitLocker.md) -- [Suspend-BitLocker](./Suspend-BitLocker.md) -- [Unlock-BitLocker](./Unlock-BitLocker.md) +[Disable-BitLocker](./Disable-BitLocker.md) +[Get-BitLockerVolume](./Get-BitLockerVolume.md) + +[Lock-BitLocker](./Lock-BitLocker.md) + +[Resume-BitLocker](./Resume-BitLocker.md) + +[Suspend-BitLocker](./Suspend-BitLocker.md) + +[Unlock-BitLocker](./Unlock-BitLocker.md) + + [1]: https://msrc.microsoft.com/update-guide/vulnerability/ADV180028 [2]: https://docs.microsoft.com/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/cc732774(v=ws.11) diff --git a/docset/winserver2016-ps/bitlocker/Enable-BitLocker.md b/docset/winserver2016-ps/bitlocker/Enable-BitLocker.md index a55cabd7d7..37f5369f1d 100644 --- a/docset/winserver2016-ps/bitlocker/Enable-BitLocker.md +++ b/docset/winserver2016-ps/bitlocker/Enable-BitLocker.md @@ -603,12 +603,18 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Disable-BitLocker](./Disable-BitLocker.md) -- [Get-BitLockerVolume](./Get-BitLockerVolume.md) -- [Lock-BitLocker](./Lock-BitLocker.md) -- [Resume-BitLocker](./Resume-BitLocker.md) -- [Suspend-BitLocker](./Suspend-BitLocker.md) -- [Unlock-BitLocker](./Unlock-BitLocker.md) +[Disable-BitLocker](./Disable-BitLocker.md) +[Get-BitLockerVolume](./Get-BitLockerVolume.md) + +[Lock-BitLocker](./Lock-BitLocker.md) + +[Resume-BitLocker](./Resume-BitLocker.md) + +[Suspend-BitLocker](./Suspend-BitLocker.md) + +[Unlock-BitLocker](./Unlock-BitLocker.md) + + [1]: https://msrc.microsoft.com/update-guide/vulnerability/ADV180028 [2]: https://docs.microsoft.com/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/cc732774(v=ws.11) diff --git a/docset/winserver2019-ps/bitlocker/Enable-BitLocker.md b/docset/winserver2019-ps/bitlocker/Enable-BitLocker.md index d8e81aab32..32bbe0e0d2 100644 --- a/docset/winserver2019-ps/bitlocker/Enable-BitLocker.md +++ b/docset/winserver2019-ps/bitlocker/Enable-BitLocker.md @@ -603,12 +603,18 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Disable-BitLocker](./Disable-BitLocker.md) -- [Get-BitLockerVolume](./Get-BitLockerVolume.md) -- [Lock-BitLocker](./Lock-BitLocker.md) -- [Resume-BitLocker](./Resume-BitLocker.md) -- [Suspend-BitLocker](./Suspend-BitLocker.md) -- [Unlock-BitLocker](./Unlock-BitLocker.md) +[Disable-BitLocker](./Disable-BitLocker.md) +[Get-BitLockerVolume](./Get-BitLockerVolume.md) + +[Lock-BitLocker](./Lock-BitLocker.md) + +[Resume-BitLocker](./Resume-BitLocker.md) + +[Suspend-BitLocker](./Suspend-BitLocker.md) + +[Unlock-BitLocker](./Unlock-BitLocker.md) + + [1]: https://msrc.microsoft.com/update-guide/vulnerability/ADV180028 [2]: https://docs.microsoft.com/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/cc732774(v=ws.11) diff --git a/docset/winserver2022-ps/bitlocker/Enable-BitLocker.md b/docset/winserver2022-ps/bitlocker/Enable-BitLocker.md index 553f499c00..da9bb17e27 100644 --- a/docset/winserver2022-ps/bitlocker/Enable-BitLocker.md +++ b/docset/winserver2022-ps/bitlocker/Enable-BitLocker.md @@ -261,7 +261,7 @@ Specifies an encryption method for the encrypted drive. ```yaml Type: BitLockerVolumeEncryptionMethodOnEnable Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Aes128, Aes256, XtsAes128, XtsAes256 Required: False @@ -279,7 +279,7 @@ For further guidance, see the [ADV180028 Security Advisory][1]. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -297,7 +297,7 @@ To obtain a BitLocker volume object, use the **Get-BitLockerVolume** cmdlet. ```yaml Type: String[] Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: 0 @@ -431,7 +431,7 @@ Indicates that the system account for this computer unlocks the encrypted volume ```yaml Type: SwitchParameter Parameter Sets: AdAccountOrGroupProtector -Aliases: +Aliases: Required: False Position: Named @@ -603,12 +603,18 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Disable-BitLocker](./Disable-BitLocker.md) -- [Get-BitLockerVolume](./Get-BitLockerVolume.md) -- [Lock-BitLocker](./Lock-BitLocker.md) -- [Resume-BitLocker](./Resume-BitLocker.md) -- [Suspend-BitLocker](./Suspend-BitLocker.md) -- [Unlock-BitLocker](./Unlock-BitLocker.md) +[Disable-BitLocker](./Disable-BitLocker.md) +[Get-BitLockerVolume](./Get-BitLockerVolume.md) + +[Lock-BitLocker](./Lock-BitLocker.md) + +[Resume-BitLocker](./Resume-BitLocker.md) + +[Suspend-BitLocker](./Suspend-BitLocker.md) + +[Unlock-BitLocker](./Unlock-BitLocker.md) + + [1]: https://msrc.microsoft.com/update-guide/vulnerability/ADV180028 [2]: https://docs.microsoft.com/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/cc732774(v=ws.11) From c50b221ed01b52eb04662d90b262a27dfe9b4efa Mon Sep 17 00:00:00 2001 From: Sean Wheeler Date: Tue, 9 Aug 2022 08:26:29 -0500 Subject: [PATCH 140/965] Remove link refs to fix build --- .../bitlocker/Enable-BitLocker.md | 23 +++++++++---------- .../bitlocker/Enable-BitLocker.md | 15 ++++++------ .../bitlocker/Enable-BitLocker.md | 16 ++++++------- .../bitlocker/Enable-BitLocker.md | 18 +++++++-------- .../bitlocker/Enable-BitLocker.md | 16 ++++++------- 5 files changed, 43 insertions(+), 45 deletions(-) diff --git a/docset/winserver2012-ps/bitlocker/Enable-BitLocker.md b/docset/winserver2012-ps/bitlocker/Enable-BitLocker.md index a7de2a30a2..7002c63896 100644 --- a/docset/winserver2012-ps/bitlocker/Enable-BitLocker.md +++ b/docset/winserver2012-ps/bitlocker/Enable-BitLocker.md @@ -136,7 +136,8 @@ and still maintain confidentiality of passwords. You may optionally select an encryption method. By default, BitLocker uses AES-128 but you can opt AES-256 for stronger security. (Diffuser is not supported.) You may request hardware encryption but -we strongly advise against it. For further guidance, see the [ADV180028 Security Advisory][1]. +we strongly advise against it. For further guidance, see the +[ADV180028 Security Advisory](https://msrc.microsoft.com/update-guide/vulnerability/ADV180028). This cmdlet returns a BitLocker volume object. If you choose recovery password as your key protector but do not specify a 48-digit recovery password, this cmdlet generates a random one for you, and @@ -159,7 +160,8 @@ It is common practice to add a recovery password for an operating system volume **Backup-BitLockerKeyProtector** cmdlet, and then enable BitLocker on that volume. This procedure ensures that you have a recovery option. -For an overview of BitLocker, see the [BitLocker Drive Encryption Overview][2]. +For an overview of BitLocker, see the +[BitLocker Drive Encryption Overview](/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/cc732774(v=ws.11)). ## EXAMPLES @@ -257,12 +259,12 @@ Accept wildcard characters: False Specifies an encryption method for the encrypted drive. The accepted values are "Aes128", "Aes256", and "Hardware". The latter has been deprecated and doesn't appear in the next versions of Windows. We strongly advise not enabling hardware encryption. For further guidance, see the -[ADV180028 Security Advisory][1]. +[ADV180028 Security Advisory](https://msrc.microsoft.com/update-guide/vulnerability/ADV180028). ```yaml Type: BitLockerVolumeEncryptionMethodOnEnable Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Aes128, Aes256, Hardware Required: False @@ -275,12 +277,13 @@ Accept wildcard characters: False ### -HardwareEncryption Indicates that the volume uses hardware encryption. We strongly advise against hardware encryption. -For further guidance, see the [ADV180028 Security Advisory][1]. +For further guidance, see the +[ADV180028 Security Advisory](https://msrc.microsoft.com/update-guide/vulnerability/ADV180028). ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -298,7 +301,7 @@ To obtain a BitLocker volume object, use the **Get-BitLockerVolume** cmdlet. ```yaml Type: String[] Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: 0 @@ -434,7 +437,7 @@ Indicates that the system account for this computer unlocks the encrypted volume ```yaml Type: SwitchParameter Parameter Sets: AdAccountOrGroupProtector -Aliases: +Aliases: Required: False Position: Named @@ -617,7 +620,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Suspend-BitLocker](./Suspend-BitLocker.md) [Unlock-BitLocker](./Unlock-BitLocker.md) - - -[1]: https://msrc.microsoft.com/update-guide/vulnerability/ADV180028 -[2]: https://docs.microsoft.com/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/cc732774(v=ws.11) diff --git a/docset/winserver2012r2-ps/bitlocker/Enable-BitLocker.md b/docset/winserver2012r2-ps/bitlocker/Enable-BitLocker.md index bfdc0d1ba2..13f0340704 100644 --- a/docset/winserver2012r2-ps/bitlocker/Enable-BitLocker.md +++ b/docset/winserver2012r2-ps/bitlocker/Enable-BitLocker.md @@ -136,7 +136,8 @@ and still maintain confidentiality of passwords. You may optionally select an encryption method. By default, BitLocker uses AES-128 but you can opt AES-256 for stronger security. You may request hardware encryption but we strongly advise -against it. For further guidance, see the [ADV180028 Security Advisory][1]. +against it. For further guidance, see the +[ADV180028 Security Advisory](https://msrc.microsoft.com/update-guide/vulnerability/ADV180028). This cmdlet returns a BitLocker volume object. If you choose recovery password as your key protector but do not specify a 48-digit recovery password, this cmdlet generates a random one for you, and @@ -159,7 +160,8 @@ It is common practice to add a recovery password for an operating system volume **Backup-BitLockerKeyProtector** cmdlet, and then enable BitLocker on that volume. This procedure ensures that you have a recovery option. -For an overview of BitLocker, see the [BitLocker Drive Encryption Overview][2]. +For an overview of BitLocker, see the +[BitLocker Drive Encryption Overview](/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/cc732774(v=ws.11)). ## EXAMPLES @@ -257,7 +259,7 @@ Accept wildcard characters: False Specifies an encryption method for the encrypted drive. The accepted values are "Aes128", "Aes256", and "Hardware". The latter has been deprecated and doesn't appear in the next versions of Windows. We strongly advise not enabling hardware encryption. For further guidance, see the -[ADV180028 Security Advisory][1]. +[ADV180028 Security Advisory](https://msrc.microsoft.com/update-guide/vulnerability/ADV180028). ```yaml Type: BitLockerVolumeEncryptionMethodOnEnable @@ -275,7 +277,8 @@ Accept wildcard characters: False ### -HardwareEncryption Indicates that the volume uses hardware encryption. We strongly advise against hardware encryption. -For further guidance, see the [ADV180028 Security Advisory][1]. +For further guidance, see the +[ADV180028 Security Advisory](https://msrc.microsoft.com/update-guide/vulnerability/ADV180028). ```yaml Type: SwitchParameter @@ -617,7 +620,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Suspend-BitLocker](./Suspend-BitLocker.md) [Unlock-BitLocker](./Unlock-BitLocker.md) - - -[1]: https://msrc.microsoft.com/update-guide/vulnerability/ADV180028 -[2]: https://docs.microsoft.com/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/cc732774(v=ws.11) diff --git a/docset/winserver2016-ps/bitlocker/Enable-BitLocker.md b/docset/winserver2016-ps/bitlocker/Enable-BitLocker.md index 37f5369f1d..4bd09b6146 100644 --- a/docset/winserver2016-ps/bitlocker/Enable-BitLocker.md +++ b/docset/winserver2016-ps/bitlocker/Enable-BitLocker.md @@ -138,7 +138,8 @@ We strongly recommend specifying the encryption method. By default, BitLocker us can opt XTS-AES-256 for stronger security. However, if you are encrypting a removable media and intend to use it on Windows 8.1 or Windows Server 2012 R2, you must opt either AES-128 or AES-256 for backward compatibility. You may request hardware encryption but we strongly advise -against it. For further guidance, see the [ADV180028 Security Advisory][1]. +against it. For further guidance, see the +[ADV180028 Security Advisory](https://msrc.microsoft.com/update-guide/vulnerability/ADV180028). This cmdlet returns a BitLocker volume object. If you choose recovery password as your key protector but do not specify a 48-digit recovery password, this cmdlet generates a random one for you, and @@ -161,7 +162,8 @@ It is common practice to add a recovery password for an operating system volume **Backup-BitLockerKeyProtector** cmdlet, and then enable BitLocker on that volume. This procedure ensures that you have a recovery option. -For an overview of BitLocker, see the [BitLocker Drive Encryption Overview][2]. +For an overview of BitLocker, see the +[BitLocker Drive Encryption Overview](/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/cc732774(v=ws.11)). ## EXAMPLES @@ -256,7 +258,8 @@ Accept wildcard characters: False ### -EncryptionMethod -Specifies an encryption method for the encrypted drive. +Specifies an encryption method for the encrypted drive. For further guidance, see the +[ADV180028 Security Advisory](https://msrc.microsoft.com/update-guide/vulnerability/ADV180028). ```yaml Type: BitLockerVolumeEncryptionMethodOnEnable @@ -274,7 +277,8 @@ Accept wildcard characters: False ### -HardwareEncryption Indicates that the volume uses hardware encryption. We strongly advise against hardware encryption. -For further guidance, see the [ADV180028 Security Advisory][1]. +For further guidance, see the +[ADV180028 Security Advisory](https://msrc.microsoft.com/update-guide/vulnerability/ADV180028). ```yaml Type: SwitchParameter @@ -614,7 +618,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Suspend-BitLocker](./Suspend-BitLocker.md) [Unlock-BitLocker](./Unlock-BitLocker.md) - - -[1]: https://msrc.microsoft.com/update-guide/vulnerability/ADV180028 -[2]: https://docs.microsoft.com/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/cc732774(v=ws.11) diff --git a/docset/winserver2019-ps/bitlocker/Enable-BitLocker.md b/docset/winserver2019-ps/bitlocker/Enable-BitLocker.md index 32bbe0e0d2..3729cba7fe 100644 --- a/docset/winserver2019-ps/bitlocker/Enable-BitLocker.md +++ b/docset/winserver2019-ps/bitlocker/Enable-BitLocker.md @@ -138,7 +138,8 @@ We strongly recommend specifying the encryption method. By default, BitLocker us can opt XTS-AES-256 for stronger security. However, if you are encrypting a removable media and intend to use it on Windows 8.1 or Windows Server 2012 R2, you must opt either AES-128 or AES-256 for backward compatibility. You may request hardware encryption but we strongly advise -against it. For further guidance, see the [ADV180028 Security Advisory][1]. +against it. For further guidance, see the +[ADV180028 Security Advisory](https://msrc.microsoft.com/update-guide/vulnerability/ADV180028). This cmdlet returns a BitLocker volume object. If you choose recovery password as your key protector but do not specify a 48-digit recovery password, this cmdlet generates a random one for you, and @@ -161,7 +162,8 @@ It is common practice to add a recovery password for an operating system volume **Backup-BitLockerKeyProtector** cmdlet, and then enable BitLocker on that volume. This procedure ensures that you have a recovery option. -For an overview of BitLocker, see the [BitLocker Drive Encryption Overview][2]. +For an overview of BitLocker, see the +[BitLocker Drive Encryption Overview](/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/cc732774(v=ws.11)). ## EXAMPLES @@ -256,8 +258,8 @@ Accept wildcard characters: False ### -EncryptionMethod -Indicates that the volume uses hardware encryption. We strongly advise against hardware encryption. -For further guidance, see the [ADV180028 Security Advisory][1]. +Specifies an encryption method for the encrypted drive. For further guidance, see the +[ADV180028 Security Advisory](https://msrc.microsoft.com/update-guide/vulnerability/ADV180028). ```yaml Type: BitLockerVolumeEncryptionMethodOnEnable @@ -274,7 +276,9 @@ Accept wildcard characters: False ### -HardwareEncryption -Indicates that the volume uses hardware encryption. +Indicates that the volume uses hardware encryption. We strongly advise against hardware encryption. +For further guidance, see the +[ADV180028 Security Advisory](https://msrc.microsoft.com/update-guide/vulnerability/ADV180028). ```yaml Type: SwitchParameter @@ -614,7 +618,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Suspend-BitLocker](./Suspend-BitLocker.md) [Unlock-BitLocker](./Unlock-BitLocker.md) - - -[1]: https://msrc.microsoft.com/update-guide/vulnerability/ADV180028 -[2]: https://docs.microsoft.com/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/cc732774(v=ws.11) diff --git a/docset/winserver2022-ps/bitlocker/Enable-BitLocker.md b/docset/winserver2022-ps/bitlocker/Enable-BitLocker.md index da9bb17e27..d2b4ab071f 100644 --- a/docset/winserver2022-ps/bitlocker/Enable-BitLocker.md +++ b/docset/winserver2022-ps/bitlocker/Enable-BitLocker.md @@ -138,7 +138,8 @@ We strongly recommend specifying the encryption method. By default, BitLocker us can opt XTS-AES-256 for stronger security. However, if you are encrypting a removable media and intend to use it on Windows 8.1 or Windows Server 2012 R2, you must opt either AES-128 or AES-256 for backward compatibility. You may request hardware encryption but we strongly advise -against it. For further guidance, see the [ADV180028 Security Advisory][1]. +against it. For further guidance, see the +[ADV180028 Security Advisory](https://msrc.microsoft.com/update-guide/vulnerability/ADV180028). This cmdlet returns a BitLocker volume object. If you choose recovery password as your key protector but do not specify a 48-digit recovery password, this cmdlet generates a random one for you, and @@ -161,7 +162,8 @@ It is common practice to add a recovery password for an operating system volume **Backup-BitLockerKeyProtector** cmdlet, and then enable BitLocker on that volume. This procedure ensures that you have a recovery option. -For an overview of BitLocker, see the [BitLocker Drive Encryption Overview][2]. +For an overview of BitLocker, see the +[BitLocker Drive Encryption Overview](/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/cc732774(v=ws.11)). ## EXAMPLES @@ -256,7 +258,8 @@ Accept wildcard characters: False ### -EncryptionMethod -Specifies an encryption method for the encrypted drive. +Specifies an encryption method for the encrypted drive. For further guidance, see the +[ADV180028 Security Advisory](https://msrc.microsoft.com/update-guide/vulnerability/ADV180028). ```yaml Type: BitLockerVolumeEncryptionMethodOnEnable @@ -274,7 +277,8 @@ Accept wildcard characters: False ### -HardwareEncryption Indicates that the volume uses hardware encryption. We strongly advise against hardware encryption. -For further guidance, see the [ADV180028 Security Advisory][1]. +For further guidance, see the +[ADV180028 Security Advisory](https://msrc.microsoft.com/update-guide/vulnerability/ADV180028). ```yaml Type: SwitchParameter @@ -614,7 +618,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Suspend-BitLocker](./Suspend-BitLocker.md) [Unlock-BitLocker](./Unlock-BitLocker.md) - - -[1]: https://msrc.microsoft.com/update-guide/vulnerability/ADV180028 -[2]: https://docs.microsoft.com/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/cc732774(v=ws.11) From b90d7051e75e518ac20f3d046380b405c6533a38 Mon Sep 17 00:00:00 2001 From: VARADHARAJAN K <3296790+RAJU2529@users.noreply.github.com> Date: Tue, 16 Aug 2022 20:53:23 +0530 Subject: [PATCH 141/965] Update docset/winserver2022-ps/trustedplatformmodule/Disable-TpmAutoProvisioning.md Accepted Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- .../trustedplatformmodule/Disable-TpmAutoProvisioning.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/trustedplatformmodule/Disable-TpmAutoProvisioning.md b/docset/winserver2022-ps/trustedplatformmodule/Disable-TpmAutoProvisioning.md index ba4860cdcb..d44ef60249 100644 --- a/docset/winserver2022-ps/trustedplatformmodule/Disable-TpmAutoProvisioning.md +++ b/docset/winserver2022-ps/trustedplatformmodule/Disable-TpmAutoProvisioning.md @@ -25,7 +25,7 @@ Provisioning is the process of preparing a TPM to be used. You can disable provisioning completely or only for the next restart. You can use the Enable-TpmAutoProvisioning cmdlet to enable auto-provisioning. -For more information on TPM, see the [Trusted Platform Module Technology Overview](https://docs.microsoft.com/previous-versions/windows/it-pro/windows-8.1-and-8/jj131725(v=ws.11)?redirectedfrom=MSDN) in the Technet library. +For more information on TPM, see [Trusted Platform Module Technology Overview](/windows/security/information-protection/tpm/trusted-platform-module-overview). ## EXAMPLES From bf5eaf167c04572acd303a66af456e491a4754f1 Mon Sep 17 00:00:00 2001 From: "Zane D. Purvis" Date: Mon, 22 Aug 2022 16:32:10 -0400 Subject: [PATCH 142/965] Accept get-itips's rewording. Co-authored-by: Andres Mariano Gorzelany <36666927+get-itips@users.noreply.github.com> --- docset/winserver2022-ps/hyper-v/Set-VMComPort.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/hyper-v/Set-VMComPort.md b/docset/winserver2022-ps/hyper-v/Set-VMComPort.md index 05b2edd85f..1674986bb6 100644 --- a/docset/winserver2022-ps/hyper-v/Set-VMComPort.md +++ b/docset/winserver2022-ps/hyper-v/Set-VMComPort.md @@ -47,7 +47,7 @@ PS C:\> Set-VMComPort TestVM 2 \\.\pipe\TestPipe Configure the second COM port on virtual machine TestVM to connect to named pipe TestPipe on the local computer. > [!NOTE] -> You can write your own application to access the named pipe, or use an application like PuTTY. +> You can then access the named pipe using a third-party application or develop your own application. ## PARAMETERS From 04cee024c5b6ff4abe4d14bdf1d4ec4d6dc8a365 Mon Sep 17 00:00:00 2001 From: themar-msft <33436507+themar-msft@users.noreply.github.com> Date: Mon, 22 Aug 2022 13:35:26 -0700 Subject: [PATCH 143/965] Create LanguagePackManagement.md --- .../LanguagePackManagement.md | 42 +++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 docset/winserver2019-ps/languagepackmanagement/LanguagePackManagement.md diff --git a/docset/winserver2019-ps/languagepackmanagement/LanguagePackManagement.md b/docset/winserver2019-ps/languagepackmanagement/LanguagePackManagement.md new file mode 100644 index 0000000000..e0b2e84dfa --- /dev/null +++ b/docset/winserver2019-ps/languagepackmanagement/LanguagePackManagement.md @@ -0,0 +1,42 @@ +--- +Module Name: LanguagePackManagement +Module Guid: f42dbdd4-4358-4067-8155-a4567a0aaee5 +Download Help Link: https://aka.ms/winsvr-2019-pshelp +Help Version: 5.0.0.1 +Locale: en-US +ms.date: 08/15/2022 +title: LanguagePackManagement module +description: The LanguagePackManagement module includes cmdlets that help you easily manage languages and language settings on a running Windows installation +--- + +# LanguagePackManagement Module +## Description + +This module can be used to easily [add languages](/windows-hardware/manufacture/desktop/available-language-packs-for-windows) and [related language features](/windows-hardware/manufacture/desktop/features-on-demand-language-fod?view=windows-11) and manage settings like System Preferred UI Language, System Locale, Input method (Keyboard), Locale, Speech Recognizer, User Preferred Language List using the new cmdlets. + +**Notes**: + +- These cmdlets will be supported on client operating system only. +- To run the Install and Set commands you must run the PowerShell as an admin (right click on the icon). +- These cmdlets work in conjunction with the [International module](/powershell/module/international/?view=windowsserver2022-ps&source=docs) which allows users to control the language that is used for various elements of the user interface (UI). + +## LanguagePackManagement Cmdlets +### [Get-InstalledLanguage](Get-InstalledLanguage.md) + +Returns information about the installed languages on a device. + +### [Get-SystemPreferredUILanguage](Get-SystemPreferredUILanguage.md) + +Returns the current System Preferred Language. + +### [Install-Language](Install-Language.md) + +Installs a language onto a device. + +### [Set-SystemPreferredUILanguage](Set-SystemPreferredUILanguage.md) + +Sets the provided language as the System Preferred UI Language. + +### [Uninstall-Language](Uninstall-Language.md) + +Removes a language from a device. From 12d864df23dd052640df4ea651af49259aa1932d Mon Sep 17 00:00:00 2001 From: themar-msft <33436507+themar-msft@users.noreply.github.com> Date: Mon, 22 Aug 2022 13:35:52 -0700 Subject: [PATCH 144/965] Add files via upload --- .../Get-InstalledLanguage.md | 78 +++++++++++ .../Get-SystemPreferredUILanguage.md | 52 +++++++ .../Install-Language.md | 128 ++++++++++++++++++ .../Set-SystemPreferredUILanguage.md | 94 +++++++++++++ .../Uninstall-Language.md | 92 +++++++++++++ 5 files changed, 444 insertions(+) create mode 100644 docset/winserver2019-ps/languagepackmanagement/Get-InstalledLanguage.md create mode 100644 docset/winserver2019-ps/languagepackmanagement/Get-SystemPreferredUILanguage.md create mode 100644 docset/winserver2019-ps/languagepackmanagement/Install-Language.md create mode 100644 docset/winserver2019-ps/languagepackmanagement/Set-SystemPreferredUILanguage.md create mode 100644 docset/winserver2019-ps/languagepackmanagement/Uninstall-Language.md diff --git a/docset/winserver2019-ps/languagepackmanagement/Get-InstalledLanguage.md b/docset/winserver2019-ps/languagepackmanagement/Get-InstalledLanguage.md new file mode 100644 index 0000000000..0a63eafc6a --- /dev/null +++ b/docset/winserver2019-ps/languagepackmanagement/Get-InstalledLanguage.md @@ -0,0 +1,78 @@ +--- +external help file: Microsoft.LanguagePackManagement.Powershell.Commands.dll-Help.xml +Module Name: LanguagePackManagement +online version: https://go.microsoft.com/fwlink/?linkid=2185383 +schema: 2.0.0 +ms.date: 08/15/2022 +title: Get-InstalledLanguage (LanguagePackManagement) +description: The Get-InstalledLanguage cmdlet lets you see which languages are installed in a running Windows installation +--- + +# Get-InstalledLanguage + +## SYNOPSIS + +Returns information about the installed languages on a device. + +## SYNTAX + +```PowerShell +Get-InstalledLanguage + [-Language] + [] +``` + +## DESCRIPTION + +Returns a list of the installed languages and related Language features installed on the device. +## EXAMPLES + +### Example 1: See what languages are installed on a device +```powershell +PS C:\> Get-InstalledLanguage +``` + +This command will show all of the language components that are installed on a device. + +### Example 2: See which language components are installed for a particular language +```powershell +PS C:\> Get-InstalledLanguage -language en-US +``` + +This command will show the language features that are installed for the en-US language. + +## PARAMETERS + +### -Language + +Shows the language components that are installed for the specified language. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: LanguageId, LanguageTag + +Required: False +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +## OUTPUTS + +### System.Collections.Generic.List`1[[Microsoft.LanguagePackManagement.Powershell.Commands.InstalledLanguage, Microsoft.LanguagePackManagement.Powershell.Commands, Version=10.0.0.0, Culture=neutral, PublicKeyToken=null]] + +## NOTES + +## RELATED LINKS + +[https://go.microsoft.com/fwlink/?linkid=2185383](https://go.microsoft.com/fwlink/?linkid=2185383) + diff --git a/docset/winserver2019-ps/languagepackmanagement/Get-SystemPreferredUILanguage.md b/docset/winserver2019-ps/languagepackmanagement/Get-SystemPreferredUILanguage.md new file mode 100644 index 0000000000..ff2c7fe3bc --- /dev/null +++ b/docset/winserver2019-ps/languagepackmanagement/Get-SystemPreferredUILanguage.md @@ -0,0 +1,52 @@ +--- +external help file: Microsoft.LanguagePackManagement.Powershell.Commands.dll-Help.xml +Module Name: LanguagePackManagement +online version: https://go.microsoft.com/fwlink/?linkid=2185384 +schema: 2.0.0 +ms.date: 08/15/2022 +title: Get-SystemPreferredUILanguage (LanguagePackManagement) +description: The Get-SystemPreferredUILanguage cmdlet lets you see which language is set as the System Preferred UI Language in a running Windows installation +--- + +# Get-SystemPreferredUILanguage + +## SYNOPSIS + +Returns the current System Preferred Language. + +## SYNTAX + +```PowerShell +Get-SystemPreferredUILanguage + [] +``` + +## DESCRIPTION + +Returns the language that is set as the System Preferred Language + +## EXAMPLES + +### Example 1 + +```powershell +PS C:\> Get-SystemPrefferedUILanguage +``` + +This command returns the language that's currently set as the System Preferred UI Language + +## PARAMETERS + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.String + +## RELATED LINKS + +[https://go.microsoft.com/fwlink/?linkid=2185384](https://go.microsoft.com/fwlink/?linkid=2185384) + diff --git a/docset/winserver2019-ps/languagepackmanagement/Install-Language.md b/docset/winserver2019-ps/languagepackmanagement/Install-Language.md new file mode 100644 index 0000000000..dce754b837 --- /dev/null +++ b/docset/winserver2019-ps/languagepackmanagement/Install-Language.md @@ -0,0 +1,128 @@ +--- +external help file: Microsoft.LanguagePackManagement.Powershell.Commands.dll-Help.xml +Module Name: LanguagePackManagement +online version: https://go.microsoft.com/fwlink/?linkid=2185611 +schema: 2.0.0 +ms.date: 08/15/2022 +title: Install-Language (LanguagePackManagement) +description: The Install-Language cmdlet lets you add a language to a running Windows installation +--- + +# Install-Language + +## SYNOPSIS + +Installs a language onto a device. + +## SYNTAX + +```PowerShell +Install-Language + [-Language] + [-CopyToSettings] + [-ExcludeFeatures] + [-AsJob] + [] +``` + +## DESCRIPTION + +Downloads and installs the available language components for the specified language onto a device. + +You can also change your Display Language by using the International module commands (`Set-WinUILanguageOverride `) + +## EXAMPLES + +### Example 1: Add a language to a device + +```powershell +PS C:\> Install-Language ja-JP +``` + +This command adds the Japanese language to a device. + +## PARAMETERS + +### -AsJob + +If specified, this parameter will execute the language installation as an [async PowerShell job](/powershell/module/microsoft.powershell.core/about/about_jobs). + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CopyToSettings + +If specified, this parameter sets the System and Default Device Settings (Windows Display Language, regional and locale formats) to the installed language following the installation. + +After a language is added with this command, you have to restart the device or login again for changes to take effect. Once you log back in, you can change your Windows Display Language in Settings App to change the device UI language. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: ApplyToSettings, ApplyToInternationalSettings, CopyToInternationalSettings + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ExcludeFeatures + +If specified, the associated language Features on Demand won't be installed. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Language + +The bcp47 tag of the language that you're installing. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: LanguageId, LanguageTag + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +## OUTPUTS + +### Microsoft.LanguagePackManagement.Powershell.Commands.InstallLanguage+InstallLanguageJob + +### System.Collections.Generic.List`1[[Microsoft.LanguagePackManagement.Powershell.Commands.InstalledLanguage, Microsoft.LanguagePackManagement.Powershell.Commands, Version=10.0.0.0, Culture=neutral, PublicKeyToken=null]] + +## RELATED LINKS + +[https://go.microsoft.com/fwlink/?linkid=2185611](https://go.microsoft.com/fwlink/?linkid=2185611) + diff --git a/docset/winserver2019-ps/languagepackmanagement/Set-SystemPreferredUILanguage.md b/docset/winserver2019-ps/languagepackmanagement/Set-SystemPreferredUILanguage.md new file mode 100644 index 0000000000..c764a8cabe --- /dev/null +++ b/docset/winserver2019-ps/languagepackmanagement/Set-SystemPreferredUILanguage.md @@ -0,0 +1,94 @@ +--- +external help file: Microsoft.LanguagePackManagement.Powershell.Commands.dll-Help.xml +Module Name: LanguagePackManagement +online version: https://go.microsoft.com/fwlink/?linkid=2185385 +schema: 2.0.0 +ms.date: 08/15/2022 +title: Set-SystemPreferredUILanguage (LanguagePackManagement) +description: The Set-SystemPreferredUILanguage cmdlet lets you set an installed language as the System Preferred UI Language in a running Windows installation +--- + +# Set-SystemPreferredUILanguage + +## SYNOPSIS + +Sets the provided language as the System Preferred UI Language. + +## SYNTAX + +```PowerShell +Set-SystemPreferredUILanguage + [-Language] + [-PassThru] + [] +``` + +## DESCRIPTION + +Sets the provided language as the System Preferred UI Language. + +After a language is set as the System Preferred UI Language, you have to restart the device or login again for changes to take effect. Additional accounts created after setting the System Preferred UI Langauge will be configured to use the new language. + +## EXAMPLES + +### Example 1: Set the System Preferred UI Language on a Windows installation + +```powershell +PS C:\> Set-SystemPreferredUILanguage ja-JP +``` + +This command sets the System Preferred UI Language to Japanese. + +## PARAMETERS + +### -Language + +The bcp47 tag of the language to set as the System Preferred UI Language. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: LanguageId, LanguageTag + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -PassThru + +If specified, this parameter returns the bcp47 tag of the language upon successful configuration of the System Preferred UI Language. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +## OUTPUTS + +### System.Void + +### System.String + +## NOTES + +## RELATED LINKS + +[https://go.microsoft.com/fwlink/?linkid=2185385](https://go.microsoft.com/fwlink/?linkid=2185385) + diff --git a/docset/winserver2019-ps/languagepackmanagement/Uninstall-Language.md b/docset/winserver2019-ps/languagepackmanagement/Uninstall-Language.md new file mode 100644 index 0000000000..e1358e47f1 --- /dev/null +++ b/docset/winserver2019-ps/languagepackmanagement/Uninstall-Language.md @@ -0,0 +1,92 @@ +--- +external help file: Microsoft.LanguagePackManagement.Powershell.Commands.dll-Help.xml +Module Name: LanguagePackManagement +online version: https://go.microsoft.com/fwlink/?linkid=2185386 +schema: 2.0.0 +ms.date: 08/15/2022 +title: Uninstall-Language (LanguagePackManagement) +description: The Uninstall-Language cmdlet lets you remove a language and its components from a running Windows installation +--- + +# Uninstall-Language + +## SYNOPSIS + +Uninstalls a language from a device. + +## SYNTAX + +```PowerShell +Uninstall-Language + [-Language] + [-PassThru] + [] +``` + +## DESCRIPTION + +Uninstalls a language, including all language components, from a device. This operation runs asynchronously. + +## EXAMPLES + +### Example 1: Remove a language from a device + +```powershell +PS C:\> Uninstall-Language ja-jp +``` + +This command removes the Japanese language from the device. + +## PARAMETERS + +### -Language + +The bcp47 tag of the language to install. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: LanguageId, LanguageTag + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -PassThru + +If specified, this parameter returns the bcp47 tag of the newly installed language upon successful installation. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +## OUTPUTS + +### System.Void + +### System.String + +## NOTES + +## RELATED LINKS + +[https://go.microsoft.com/fwlink/?linkid=2185386](https://go.microsoft.com/fwlink/?linkid=2185386) + From 9558d9831fe8a9078ea10f7380692454900792e0 Mon Sep 17 00:00:00 2001 From: themar-msft <33436507+themar-msft@users.noreply.github.com> Date: Tue, 23 Aug 2022 13:13:22 -0700 Subject: [PATCH 145/965] Update Get-InstalledLanguage.md --- .../languagepackmanagement/Get-InstalledLanguage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/languagepackmanagement/Get-InstalledLanguage.md b/docset/winserver2019-ps/languagepackmanagement/Get-InstalledLanguage.md index 0a63eafc6a..8b45afec02 100644 --- a/docset/winserver2019-ps/languagepackmanagement/Get-InstalledLanguage.md +++ b/docset/winserver2019-ps/languagepackmanagement/Get-InstalledLanguage.md @@ -4,7 +4,7 @@ Module Name: LanguagePackManagement online version: https://go.microsoft.com/fwlink/?linkid=2185383 schema: 2.0.0 ms.date: 08/15/2022 -title: Get-InstalledLanguage (LanguagePackManagement) +title: Get-InstalledLanguage description: The Get-InstalledLanguage cmdlet lets you see which languages are installed in a running Windows installation --- From 31ae160b5eb01da75a3985b7f46defe8bb3c45e9 Mon Sep 17 00:00:00 2001 From: themar-msft <33436507+themar-msft@users.noreply.github.com> Date: Tue, 23 Aug 2022 13:13:33 -0700 Subject: [PATCH 146/965] Update Get-SystemPreferredUILanguage.md --- .../languagepackmanagement/Get-SystemPreferredUILanguage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/languagepackmanagement/Get-SystemPreferredUILanguage.md b/docset/winserver2019-ps/languagepackmanagement/Get-SystemPreferredUILanguage.md index ff2c7fe3bc..a180906158 100644 --- a/docset/winserver2019-ps/languagepackmanagement/Get-SystemPreferredUILanguage.md +++ b/docset/winserver2019-ps/languagepackmanagement/Get-SystemPreferredUILanguage.md @@ -4,7 +4,7 @@ Module Name: LanguagePackManagement online version: https://go.microsoft.com/fwlink/?linkid=2185384 schema: 2.0.0 ms.date: 08/15/2022 -title: Get-SystemPreferredUILanguage (LanguagePackManagement) +title: Get-SystemPreferredUILanguage description: The Get-SystemPreferredUILanguage cmdlet lets you see which language is set as the System Preferred UI Language in a running Windows installation --- From ac588eeb931bbd1a5c96d704cc3658b9f8ea02b7 Mon Sep 17 00:00:00 2001 From: themar-msft <33436507+themar-msft@users.noreply.github.com> Date: Tue, 23 Aug 2022 13:13:48 -0700 Subject: [PATCH 147/965] Update Install-Language.md --- .../winserver2019-ps/languagepackmanagement/Install-Language.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/languagepackmanagement/Install-Language.md b/docset/winserver2019-ps/languagepackmanagement/Install-Language.md index dce754b837..5066e1e697 100644 --- a/docset/winserver2019-ps/languagepackmanagement/Install-Language.md +++ b/docset/winserver2019-ps/languagepackmanagement/Install-Language.md @@ -4,7 +4,7 @@ Module Name: LanguagePackManagement online version: https://go.microsoft.com/fwlink/?linkid=2185611 schema: 2.0.0 ms.date: 08/15/2022 -title: Install-Language (LanguagePackManagement) +title: Install-Language description: The Install-Language cmdlet lets you add a language to a running Windows installation --- From d0efccc1f339e98fa7933d4cf79b6b59b4e9a527 Mon Sep 17 00:00:00 2001 From: themar-msft <33436507+themar-msft@users.noreply.github.com> Date: Tue, 23 Aug 2022 13:14:10 -0700 Subject: [PATCH 148/965] Update Set-SystemPreferredUILanguage.md --- .../languagepackmanagement/Set-SystemPreferredUILanguage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/languagepackmanagement/Set-SystemPreferredUILanguage.md b/docset/winserver2019-ps/languagepackmanagement/Set-SystemPreferredUILanguage.md index c764a8cabe..a3178d2af1 100644 --- a/docset/winserver2019-ps/languagepackmanagement/Set-SystemPreferredUILanguage.md +++ b/docset/winserver2019-ps/languagepackmanagement/Set-SystemPreferredUILanguage.md @@ -4,7 +4,7 @@ Module Name: LanguagePackManagement online version: https://go.microsoft.com/fwlink/?linkid=2185385 schema: 2.0.0 ms.date: 08/15/2022 -title: Set-SystemPreferredUILanguage (LanguagePackManagement) +title: Set-SystemPreferredUILanguage description: The Set-SystemPreferredUILanguage cmdlet lets you set an installed language as the System Preferred UI Language in a running Windows installation --- From 66d858b38d617f0fc740560d2df1588cd4281740 Mon Sep 17 00:00:00 2001 From: themar-msft <33436507+themar-msft@users.noreply.github.com> Date: Tue, 23 Aug 2022 13:14:23 -0700 Subject: [PATCH 149/965] Update Uninstall-Language.md --- .../languagepackmanagement/Uninstall-Language.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/languagepackmanagement/Uninstall-Language.md b/docset/winserver2019-ps/languagepackmanagement/Uninstall-Language.md index e1358e47f1..49493c3dc8 100644 --- a/docset/winserver2019-ps/languagepackmanagement/Uninstall-Language.md +++ b/docset/winserver2019-ps/languagepackmanagement/Uninstall-Language.md @@ -4,7 +4,7 @@ Module Name: LanguagePackManagement online version: https://go.microsoft.com/fwlink/?linkid=2185386 schema: 2.0.0 ms.date: 08/15/2022 -title: Uninstall-Language (LanguagePackManagement) +title: Uninstall-Language description: The Uninstall-Language cmdlet lets you remove a language and its components from a running Windows installation --- From e7369a4384c0215a0560cf2f4c6c229335547f15 Mon Sep 17 00:00:00 2001 From: themar-msft <33436507+themar-msft@users.noreply.github.com> Date: Tue, 23 Aug 2022 13:29:34 -0700 Subject: [PATCH 150/965] removes whitespace Co-authored-by: Sean Wheeler --- .../languagepackmanagement/LanguagePackManagement.md | 5 ----- 1 file changed, 5 deletions(-) diff --git a/docset/winserver2019-ps/languagepackmanagement/LanguagePackManagement.md b/docset/winserver2019-ps/languagepackmanagement/LanguagePackManagement.md index e0b2e84dfa..a6c4807c75 100644 --- a/docset/winserver2019-ps/languagepackmanagement/LanguagePackManagement.md +++ b/docset/winserver2019-ps/languagepackmanagement/LanguagePackManagement.md @@ -22,21 +22,16 @@ This module can be used to easily [add languages](/windows-hardware/manufacture/ ## LanguagePackManagement Cmdlets ### [Get-InstalledLanguage](Get-InstalledLanguage.md) - Returns information about the installed languages on a device. ### [Get-SystemPreferredUILanguage](Get-SystemPreferredUILanguage.md) - Returns the current System Preferred Language. ### [Install-Language](Install-Language.md) - Installs a language onto a device. ### [Set-SystemPreferredUILanguage](Set-SystemPreferredUILanguage.md) - Sets the provided language as the System Preferred UI Language. ### [Uninstall-Language](Uninstall-Language.md) - Removes a language from a device. From 344bd01026c1da6ec6f4cc2f2d139a638981c29a Mon Sep 17 00:00:00 2001 From: themar-msft <33436507+themar-msft@users.noreply.github.com> Date: Tue, 23 Aug 2022 13:32:03 -0700 Subject: [PATCH 151/965] change to docs alert and fix versioned link Co-authored-by: Sean Wheeler --- .../languagepackmanagement/LanguagePackManagement.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/docset/winserver2019-ps/languagepackmanagement/LanguagePackManagement.md b/docset/winserver2019-ps/languagepackmanagement/LanguagePackManagement.md index a6c4807c75..56ff20c181 100644 --- a/docset/winserver2019-ps/languagepackmanagement/LanguagePackManagement.md +++ b/docset/winserver2019-ps/languagepackmanagement/LanguagePackManagement.md @@ -14,11 +14,10 @@ description: The LanguagePackManagement module includes cmdlets that help you ea This module can be used to easily [add languages](/windows-hardware/manufacture/desktop/available-language-packs-for-windows) and [related language features](/windows-hardware/manufacture/desktop/features-on-demand-language-fod?view=windows-11) and manage settings like System Preferred UI Language, System Locale, Input method (Keyboard), Locale, Speech Recognizer, User Preferred Language List using the new cmdlets. -**Notes**: - -- These cmdlets will be supported on client operating system only. -- To run the Install and Set commands you must run the PowerShell as an admin (right click on the icon). -- These cmdlets work in conjunction with the [International module](/powershell/module/international/?view=windowsserver2022-ps&source=docs) which allows users to control the language that is used for various elements of the user interface (UI). +> [!NOTE] +> - These cmdlets are supported on client operating system only. +> - To run the `Install-Language` and `Set-Language` cmdlets you must run the PowerShell as an admin (right click on the icon). +> - These cmdlets work in conjunction with the [International module](/powershell/module/international/), which allows users to control the language used for various elements of the user interface (UI). ## LanguagePackManagement Cmdlets ### [Get-InstalledLanguage](Get-InstalledLanguage.md) From d0dbbca1b739d4264c3838fc7ffe917b1200bb1d Mon Sep 17 00:00:00 2001 From: themar-msft <33436507+themar-msft@users.noreply.github.com> Date: Tue, 23 Aug 2022 13:34:36 -0700 Subject: [PATCH 152/965] Clean up output section Co-authored-by: Sean Wheeler --- .../languagepackmanagement/Get-InstalledLanguage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/languagepackmanagement/Get-InstalledLanguage.md b/docset/winserver2019-ps/languagepackmanagement/Get-InstalledLanguage.md index 8b45afec02..c6e440fce8 100644 --- a/docset/winserver2019-ps/languagepackmanagement/Get-InstalledLanguage.md +++ b/docset/winserver2019-ps/languagepackmanagement/Get-InstalledLanguage.md @@ -68,7 +68,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### System.Collections.Generic.List`1[[Microsoft.LanguagePackManagement.Powershell.Commands.InstalledLanguage, Microsoft.LanguagePackManagement.Powershell.Commands, Version=10.0.0.0, Culture=neutral, PublicKeyToken=null]] +### System.Collections.Generic.List ## NOTES From b35854a8f2e38586cb0c0d7ce49196ec9a07ba46 Mon Sep 17 00:00:00 2001 From: themar-msft <33436507+themar-msft@users.noreply.github.com> Date: Tue, 23 Aug 2022 13:36:24 -0700 Subject: [PATCH 153/965] remove fwlink and replaced with a better link Co-authored-by: Sean Wheeler --- .../languagepackmanagement/Get-InstalledLanguage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/languagepackmanagement/Get-InstalledLanguage.md b/docset/winserver2019-ps/languagepackmanagement/Get-InstalledLanguage.md index c6e440fce8..8135d26c89 100644 --- a/docset/winserver2019-ps/languagepackmanagement/Get-InstalledLanguage.md +++ b/docset/winserver2019-ps/languagepackmanagement/Get-InstalledLanguage.md @@ -74,5 +74,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[https://go.microsoft.com/fwlink/?linkid=2185383](https://go.microsoft.com/fwlink/?linkid=2185383) +[Set-SystemPreferredUILanguage](Set-SystemPreferredUILanguage.md) From 3b4cf3fec1249721aad7c443abe08d32a0c788d9 Mon Sep 17 00:00:00 2001 From: themar-msft <33436507+themar-msft@users.noreply.github.com> Date: Tue, 23 Aug 2022 13:46:38 -0700 Subject: [PATCH 154/965] remove blank before synopsis --- .../languagepackmanagement/Get-InstalledLanguage.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docset/winserver2019-ps/languagepackmanagement/Get-InstalledLanguage.md b/docset/winserver2019-ps/languagepackmanagement/Get-InstalledLanguage.md index 8135d26c89..b55867bd3d 100644 --- a/docset/winserver2019-ps/languagepackmanagement/Get-InstalledLanguage.md +++ b/docset/winserver2019-ps/languagepackmanagement/Get-InstalledLanguage.md @@ -11,7 +11,6 @@ description: The Get-InstalledLanguage cmdlet lets you see which languages are i # Get-InstalledLanguage ## SYNOPSIS - Returns information about the installed languages on a device. ## SYNTAX From a705cad04e3d2591484cb515fdde96416af56ada Mon Sep 17 00:00:00 2001 From: themar-msft <33436507+themar-msft@users.noreply.github.com> Date: Tue, 23 Aug 2022 13:46:50 -0700 Subject: [PATCH 155/965] remove blank before synopsis --- .../languagepackmanagement/Get-SystemPreferredUILanguage.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docset/winserver2019-ps/languagepackmanagement/Get-SystemPreferredUILanguage.md b/docset/winserver2019-ps/languagepackmanagement/Get-SystemPreferredUILanguage.md index a180906158..026b8b3dd0 100644 --- a/docset/winserver2019-ps/languagepackmanagement/Get-SystemPreferredUILanguage.md +++ b/docset/winserver2019-ps/languagepackmanagement/Get-SystemPreferredUILanguage.md @@ -11,7 +11,6 @@ description: The Get-SystemPreferredUILanguage cmdlet lets you see which languag # Get-SystemPreferredUILanguage ## SYNOPSIS - Returns the current System Preferred Language. ## SYNTAX From 8a1748b25cef8871e55207e1974312f58e34f1c1 Mon Sep 17 00:00:00 2001 From: themar-msft <33436507+themar-msft@users.noreply.github.com> Date: Tue, 23 Aug 2022 13:47:12 -0700 Subject: [PATCH 156/965] remove blank before synopsis --- .../winserver2019-ps/languagepackmanagement/Install-Language.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docset/winserver2019-ps/languagepackmanagement/Install-Language.md b/docset/winserver2019-ps/languagepackmanagement/Install-Language.md index 5066e1e697..a6cf79d006 100644 --- a/docset/winserver2019-ps/languagepackmanagement/Install-Language.md +++ b/docset/winserver2019-ps/languagepackmanagement/Install-Language.md @@ -11,7 +11,6 @@ description: The Install-Language cmdlet lets you add a language to a running Wi # Install-Language ## SYNOPSIS - Installs a language onto a device. ## SYNTAX From 2e9d3cece9cc2c2015b70def86a18040675ce12f Mon Sep 17 00:00:00 2001 From: themar-msft <33436507+themar-msft@users.noreply.github.com> Date: Tue, 23 Aug 2022 13:48:29 -0700 Subject: [PATCH 157/965] remove blank before synopsis --- .../languagepackmanagement/Set-SystemPreferredUILanguage.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docset/winserver2019-ps/languagepackmanagement/Set-SystemPreferredUILanguage.md b/docset/winserver2019-ps/languagepackmanagement/Set-SystemPreferredUILanguage.md index a3178d2af1..8a355c9fe7 100644 --- a/docset/winserver2019-ps/languagepackmanagement/Set-SystemPreferredUILanguage.md +++ b/docset/winserver2019-ps/languagepackmanagement/Set-SystemPreferredUILanguage.md @@ -11,12 +11,11 @@ description: The Set-SystemPreferredUILanguage cmdlet lets you set an installed # Set-SystemPreferredUILanguage ## SYNOPSIS - Sets the provided language as the System Preferred UI Language. ## SYNTAX -```PowerShell +``` Set-SystemPreferredUILanguage [-Language] [-PassThru] @@ -33,7 +32,7 @@ After a language is set as the System Preferred UI Language, you have to restart ### Example 1: Set the System Preferred UI Language on a Windows installation -```powershell +``` PS C:\> Set-SystemPreferredUILanguage ja-JP ``` From efbf26109f64317d492f858552c4470816ba4b03 Mon Sep 17 00:00:00 2001 From: themar-msft <33436507+themar-msft@users.noreply.github.com> Date: Tue, 23 Aug 2022 13:49:08 -0700 Subject: [PATCH 158/965] remove blank before synopsis --- .../languagepackmanagement/Uninstall-Language.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docset/winserver2019-ps/languagepackmanagement/Uninstall-Language.md b/docset/winserver2019-ps/languagepackmanagement/Uninstall-Language.md index 49493c3dc8..988dcbcafc 100644 --- a/docset/winserver2019-ps/languagepackmanagement/Uninstall-Language.md +++ b/docset/winserver2019-ps/languagepackmanagement/Uninstall-Language.md @@ -11,12 +11,11 @@ description: The Uninstall-Language cmdlet lets you remove a language and its co # Uninstall-Language ## SYNOPSIS - Uninstalls a language from a device. ## SYNTAX -```PowerShell +``` Uninstall-Language [-Language] [-PassThru] @@ -31,7 +30,7 @@ Uninstalls a language, including all language components, from a device. This op ### Example 1: Remove a language from a device -```powershell +``` PS C:\> Uninstall-Language ja-jp ``` From 62898d9eb4fcaf41e8d289ca22d2d9111fd26753 Mon Sep 17 00:00:00 2001 From: themar-msft <33436507+themar-msft@users.noreply.github.com> Date: Tue, 23 Aug 2022 13:49:48 -0700 Subject: [PATCH 159/965] syntax --- .../languagepackmanagement/Get-InstalledLanguage.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/docset/winserver2019-ps/languagepackmanagement/Get-InstalledLanguage.md b/docset/winserver2019-ps/languagepackmanagement/Get-InstalledLanguage.md index b55867bd3d..ac4121d8dd 100644 --- a/docset/winserver2019-ps/languagepackmanagement/Get-InstalledLanguage.md +++ b/docset/winserver2019-ps/languagepackmanagement/Get-InstalledLanguage.md @@ -15,7 +15,7 @@ Returns information about the installed languages on a device. ## SYNTAX -```PowerShell +``` Get-InstalledLanguage [-Language] [] @@ -27,14 +27,16 @@ Returns a list of the installed languages and related Language features installe ## EXAMPLES ### Example 1: See what languages are installed on a device -```powershell + +``` PS C:\> Get-InstalledLanguage ``` This command will show all of the language components that are installed on a device. ### Example 2: See which language components are installed for a particular language -```powershell + +``` PS C:\> Get-InstalledLanguage -language en-US ``` From a485214697a3196e57578a4cb8397ed41bdf92ff Mon Sep 17 00:00:00 2001 From: themar-msft <33436507+themar-msft@users.noreply.github.com> Date: Tue, 23 Aug 2022 13:50:30 -0700 Subject: [PATCH 160/965] syntax --- .../Get-SystemPreferredUILanguage.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/docset/winserver2019-ps/languagepackmanagement/Get-SystemPreferredUILanguage.md b/docset/winserver2019-ps/languagepackmanagement/Get-SystemPreferredUILanguage.md index 026b8b3dd0..f6c1ef0867 100644 --- a/docset/winserver2019-ps/languagepackmanagement/Get-SystemPreferredUILanguage.md +++ b/docset/winserver2019-ps/languagepackmanagement/Get-SystemPreferredUILanguage.md @@ -15,9 +15,8 @@ Returns the current System Preferred Language. ## SYNTAX -```PowerShell -Get-SystemPreferredUILanguage - [] +``` +Get-SystemPreferredUILanguage [] ``` ## DESCRIPTION @@ -28,7 +27,7 @@ Returns the language that is set as the System Preferred Language ### Example 1 -```powershell +``` PS C:\> Get-SystemPrefferedUILanguage ``` From 15621eb1a5f00a355f0df24e0bdea7e9ff45cc64 Mon Sep 17 00:00:00 2001 From: themar-msft <33436507+themar-msft@users.noreply.github.com> Date: Tue, 23 Aug 2022 13:51:27 -0700 Subject: [PATCH 161/965] Update Install-Language.md --- .../languagepackmanagement/Install-Language.md | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/docset/winserver2019-ps/languagepackmanagement/Install-Language.md b/docset/winserver2019-ps/languagepackmanagement/Install-Language.md index a6cf79d006..370332bd35 100644 --- a/docset/winserver2019-ps/languagepackmanagement/Install-Language.md +++ b/docset/winserver2019-ps/languagepackmanagement/Install-Language.md @@ -15,13 +15,8 @@ Installs a language onto a device. ## SYNTAX -```PowerShell -Install-Language - [-Language] - [-CopyToSettings] - [-ExcludeFeatures] - [-AsJob] - [] +``` +Install-Language [-Language] [-CopyToSettings] [-ExcludeFeatures] [-AsJob] [] ``` ## DESCRIPTION @@ -34,7 +29,7 @@ You can also change your Display Language by using the International module comm ### Example 1: Add a language to a device -```powershell +``` PS C:\> Install-Language ja-JP ``` From 38c566c4af14ed87656a1a12bdcf82fc89972bb8 Mon Sep 17 00:00:00 2001 From: themar-msft <33436507+themar-msft@users.noreply.github.com> Date: Tue, 23 Aug 2022 13:52:02 -0700 Subject: [PATCH 162/965] syntax --- .../languagepackmanagement/Set-SystemPreferredUILanguage.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/docset/winserver2019-ps/languagepackmanagement/Set-SystemPreferredUILanguage.md b/docset/winserver2019-ps/languagepackmanagement/Set-SystemPreferredUILanguage.md index 8a355c9fe7..2417bf3081 100644 --- a/docset/winserver2019-ps/languagepackmanagement/Set-SystemPreferredUILanguage.md +++ b/docset/winserver2019-ps/languagepackmanagement/Set-SystemPreferredUILanguage.md @@ -16,10 +16,7 @@ Sets the provided language as the System Preferred UI Language. ## SYNTAX ``` -Set-SystemPreferredUILanguage - [-Language] - [-PassThru] - [] +Set-SystemPreferredUILanguage [-Language] [-PassThru] [] ``` ## DESCRIPTION From dbaaaee41239ab374b2a63122153bc787bc7d1d9 Mon Sep 17 00:00:00 2001 From: themar-msft <33436507+themar-msft@users.noreply.github.com> Date: Tue, 23 Aug 2022 13:52:48 -0700 Subject: [PATCH 163/965] syntax --- .../languagepackmanagement/Uninstall-Language.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/docset/winserver2019-ps/languagepackmanagement/Uninstall-Language.md b/docset/winserver2019-ps/languagepackmanagement/Uninstall-Language.md index 988dcbcafc..58e27ea22e 100644 --- a/docset/winserver2019-ps/languagepackmanagement/Uninstall-Language.md +++ b/docset/winserver2019-ps/languagepackmanagement/Uninstall-Language.md @@ -16,10 +16,7 @@ Uninstalls a language from a device. ## SYNTAX ``` -Uninstall-Language - [-Language] - [-PassThru] - [] +Uninstall-Language [-Language] [-PassThru] [] ``` ## DESCRIPTION From 6874965c8f04ce197d2b6a9b83046cc20830ae50 Mon Sep 17 00:00:00 2001 From: themar-msft <33436507+themar-msft@users.noreply.github.com> Date: Tue, 23 Aug 2022 13:53:26 -0700 Subject: [PATCH 164/965] line breaks --- .../languagepackmanagement/Get-InstalledLanguage.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/docset/winserver2019-ps/languagepackmanagement/Get-InstalledLanguage.md b/docset/winserver2019-ps/languagepackmanagement/Get-InstalledLanguage.md index ac4121d8dd..69e0eb0f2a 100644 --- a/docset/winserver2019-ps/languagepackmanagement/Get-InstalledLanguage.md +++ b/docset/winserver2019-ps/languagepackmanagement/Get-InstalledLanguage.md @@ -16,14 +16,12 @@ Returns information about the installed languages on a device. ## SYNTAX ``` -Get-InstalledLanguage - [-Language] - [] +Get-InstalledLanguage [-Language] [] ``` ## DESCRIPTION - Returns a list of the installed languages and related Language features installed on the device. + ## EXAMPLES ### Example 1: See what languages are installed on a device From e350a484a54ece73a1bb53511c0e3b2c77908b85 Mon Sep 17 00:00:00 2001 From: themar-msft <33436507+themar-msft@users.noreply.github.com> Date: Tue, 23 Aug 2022 13:55:54 -0700 Subject: [PATCH 165/965] fix versioned link --- .../languagepackmanagement/LanguagePackManagement.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/languagepackmanagement/LanguagePackManagement.md b/docset/winserver2019-ps/languagepackmanagement/LanguagePackManagement.md index 56ff20c181..fac09cb6b5 100644 --- a/docset/winserver2019-ps/languagepackmanagement/LanguagePackManagement.md +++ b/docset/winserver2019-ps/languagepackmanagement/LanguagePackManagement.md @@ -12,7 +12,7 @@ description: The LanguagePackManagement module includes cmdlets that help you ea # LanguagePackManagement Module ## Description -This module can be used to easily [add languages](/windows-hardware/manufacture/desktop/available-language-packs-for-windows) and [related language features](/windows-hardware/manufacture/desktop/features-on-demand-language-fod?view=windows-11) and manage settings like System Preferred UI Language, System Locale, Input method (Keyboard), Locale, Speech Recognizer, User Preferred Language List using the new cmdlets. +This module can be used to easily [add languages](/windows-hardware/manufacture/desktop/available-language-packs-for-windows) and [related language features](/windows-hardware/manufacture/desktop/features-on-demand-language-fod) and manage settings like System Preferred UI Language, System Locale, Input method (Keyboard), Locale, Speech Recognizer, User Preferred Language List using the new cmdlets. > [!NOTE] > - These cmdlets are supported on client operating system only. From be1a1e4f91ec3e7335f79db3638f8dd9baf092d3 Mon Sep 17 00:00:00 2001 From: themar-msft <33436507+themar-msft@users.noreply.github.com> Date: Tue, 23 Aug 2022 14:00:41 -0700 Subject: [PATCH 166/965] fix syntax --- .../languagepackmanagement/Get-InstalledLanguage.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2019-ps/languagepackmanagement/Get-InstalledLanguage.md b/docset/winserver2019-ps/languagepackmanagement/Get-InstalledLanguage.md index 69e0eb0f2a..4a52ad3840 100644 --- a/docset/winserver2019-ps/languagepackmanagement/Get-InstalledLanguage.md +++ b/docset/winserver2019-ps/languagepackmanagement/Get-InstalledLanguage.md @@ -34,8 +34,8 @@ This command will show all of the language components that are installed on a de ### Example 2: See which language components are installed for a particular language -``` -PS C:\> Get-InstalledLanguage -language en-US +```PowerShell +Get-InstalledLanguage -language en-US ``` This command will show the language features that are installed for the en-US language. From c71193ac15ce0e4a2dde7aa41d8cb1235a3982b1 Mon Sep 17 00:00:00 2001 From: themar-msft <33436507+themar-msft@users.noreply.github.com> Date: Tue, 23 Aug 2022 14:11:19 -0700 Subject: [PATCH 167/965] syntax --- .../languagepackmanagement/Get-InstalledLanguage.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2019-ps/languagepackmanagement/Get-InstalledLanguage.md b/docset/winserver2019-ps/languagepackmanagement/Get-InstalledLanguage.md index 4a52ad3840..b797ba1dd8 100644 --- a/docset/winserver2019-ps/languagepackmanagement/Get-InstalledLanguage.md +++ b/docset/winserver2019-ps/languagepackmanagement/Get-InstalledLanguage.md @@ -26,8 +26,8 @@ Returns a list of the installed languages and related Language features installe ### Example 1: See what languages are installed on a device -``` -PS C:\> Get-InstalledLanguage +```PowerShell +Get-InstalledLanguage ``` This command will show all of the language components that are installed on a device. From 495bd2386d844a07c6d6e912222bd87154bcf822 Mon Sep 17 00:00:00 2001 From: themar-msft <33436507+themar-msft@users.noreply.github.com> Date: Tue, 23 Aug 2022 14:11:39 -0700 Subject: [PATCH 168/965] Update Get-SystemPreferredUILanguage.md --- .../languagepackmanagement/Get-SystemPreferredUILanguage.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2019-ps/languagepackmanagement/Get-SystemPreferredUILanguage.md b/docset/winserver2019-ps/languagepackmanagement/Get-SystemPreferredUILanguage.md index f6c1ef0867..233daa021e 100644 --- a/docset/winserver2019-ps/languagepackmanagement/Get-SystemPreferredUILanguage.md +++ b/docset/winserver2019-ps/languagepackmanagement/Get-SystemPreferredUILanguage.md @@ -27,8 +27,8 @@ Returns the language that is set as the System Preferred Language ### Example 1 -``` -PS C:\> Get-SystemPrefferedUILanguage +```PowerShell +Get-SystemPrefferedUILanguage ``` This command returns the language that's currently set as the System Preferred UI Language From 25e94441da33843a403d4beeb825b6017d22bc75 Mon Sep 17 00:00:00 2001 From: themar-msft <33436507+themar-msft@users.noreply.github.com> Date: Tue, 23 Aug 2022 14:12:11 -0700 Subject: [PATCH 169/965] syntax --- .../languagepackmanagement/Install-Language.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2019-ps/languagepackmanagement/Install-Language.md b/docset/winserver2019-ps/languagepackmanagement/Install-Language.md index 370332bd35..10f0e4fec6 100644 --- a/docset/winserver2019-ps/languagepackmanagement/Install-Language.md +++ b/docset/winserver2019-ps/languagepackmanagement/Install-Language.md @@ -29,8 +29,8 @@ You can also change your Display Language by using the International module comm ### Example 1: Add a language to a device -``` -PS C:\> Install-Language ja-JP +```powershell +Install-Language ja-JP ``` This command adds the Japanese language to a device. From 8ab2f27dfb95b499b2f922ab1be073e15524cd76 Mon Sep 17 00:00:00 2001 From: themar-msft <33436507+themar-msft@users.noreply.github.com> Date: Tue, 23 Aug 2022 14:12:46 -0700 Subject: [PATCH 170/965] Update Set-SystemPreferredUILanguage.md --- .../languagepackmanagement/Set-SystemPreferredUILanguage.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2019-ps/languagepackmanagement/Set-SystemPreferredUILanguage.md b/docset/winserver2019-ps/languagepackmanagement/Set-SystemPreferredUILanguage.md index 2417bf3081..91889d0c7b 100644 --- a/docset/winserver2019-ps/languagepackmanagement/Set-SystemPreferredUILanguage.md +++ b/docset/winserver2019-ps/languagepackmanagement/Set-SystemPreferredUILanguage.md @@ -29,8 +29,8 @@ After a language is set as the System Preferred UI Language, you have to restart ### Example 1: Set the System Preferred UI Language on a Windows installation -``` -PS C:\> Set-SystemPreferredUILanguage ja-JP +```powershell +Set-SystemPreferredUILanguage ja-JP ``` This command sets the System Preferred UI Language to Japanese. From 01770169c7156b1b726ebbc8e04f584fe1713d51 Mon Sep 17 00:00:00 2001 From: themar-msft <33436507+themar-msft@users.noreply.github.com> Date: Tue, 23 Aug 2022 14:13:02 -0700 Subject: [PATCH 171/965] Update Uninstall-Language.md --- .../languagepackmanagement/Uninstall-Language.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2019-ps/languagepackmanagement/Uninstall-Language.md b/docset/winserver2019-ps/languagepackmanagement/Uninstall-Language.md index 58e27ea22e..c1d62a5f21 100644 --- a/docset/winserver2019-ps/languagepackmanagement/Uninstall-Language.md +++ b/docset/winserver2019-ps/languagepackmanagement/Uninstall-Language.md @@ -27,8 +27,8 @@ Uninstalls a language, including all language components, from a device. This op ### Example 1: Remove a language from a device -``` -PS C:\> Uninstall-Language ja-jp +```powershell +Uninstall-Language ja-jp ``` This command removes the Japanese language from the device. From eba23c948a61f3e4ea4d3a0163bc0278839a2b81 Mon Sep 17 00:00:00 2001 From: themar-msft <33436507+themar-msft@users.noreply.github.com> Date: Tue, 23 Aug 2022 14:13:22 -0700 Subject: [PATCH 172/965] Update Get-InstalledLanguage.md --- .../languagepackmanagement/Get-InstalledLanguage.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2019-ps/languagepackmanagement/Get-InstalledLanguage.md b/docset/winserver2019-ps/languagepackmanagement/Get-InstalledLanguage.md index b797ba1dd8..20221a2abf 100644 --- a/docset/winserver2019-ps/languagepackmanagement/Get-InstalledLanguage.md +++ b/docset/winserver2019-ps/languagepackmanagement/Get-InstalledLanguage.md @@ -26,7 +26,7 @@ Returns a list of the installed languages and related Language features installe ### Example 1: See what languages are installed on a device -```PowerShell +```powershell Get-InstalledLanguage ``` @@ -34,7 +34,7 @@ This command will show all of the language components that are installed on a de ### Example 2: See which language components are installed for a particular language -```PowerShell +```powershell Get-InstalledLanguage -language en-US ``` From 578421c3a886f78f904b81850b271f94d03f8ab9 Mon Sep 17 00:00:00 2001 From: themar-msft <33436507+themar-msft@users.noreply.github.com> Date: Tue, 23 Aug 2022 14:13:43 -0700 Subject: [PATCH 173/965] Update Get-SystemPreferredUILanguage.md --- .../languagepackmanagement/Get-SystemPreferredUILanguage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/languagepackmanagement/Get-SystemPreferredUILanguage.md b/docset/winserver2019-ps/languagepackmanagement/Get-SystemPreferredUILanguage.md index 233daa021e..bd55c6a8be 100644 --- a/docset/winserver2019-ps/languagepackmanagement/Get-SystemPreferredUILanguage.md +++ b/docset/winserver2019-ps/languagepackmanagement/Get-SystemPreferredUILanguage.md @@ -27,7 +27,7 @@ Returns the language that is set as the System Preferred Language ### Example 1 -```PowerShell +```powershell Get-SystemPrefferedUILanguage ``` From ca88f9a7704be973b55a0c3bf058d239030d8424 Mon Sep 17 00:00:00 2001 From: themar-msft <33436507+themar-msft@users.noreply.github.com> Date: Tue, 23 Aug 2022 14:15:26 -0700 Subject: [PATCH 174/965] Update Get-InstalledLanguage.md --- .../languagepackmanagement/Get-InstalledLanguage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/languagepackmanagement/Get-InstalledLanguage.md b/docset/winserver2019-ps/languagepackmanagement/Get-InstalledLanguage.md index 20221a2abf..a2d7f5a09a 100644 --- a/docset/winserver2019-ps/languagepackmanagement/Get-InstalledLanguage.md +++ b/docset/winserver2019-ps/languagepackmanagement/Get-InstalledLanguage.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.LanguagePackManagement.Powershell.Commands.dll-Help.xml Module Name: LanguagePackManagement -online version: https://go.microsoft.com/fwlink/?linkid=2185383 +online version: https://docs.microsoft.com/powershell/module/languagepackmanagement/get-installedlanguage?view=windowsserver2019-ps schema: 2.0.0 ms.date: 08/15/2022 title: Get-InstalledLanguage From 7f1fd8d27871c627d4d5d2c268c23402568bdcbc Mon Sep 17 00:00:00 2001 From: themar-msft <33436507+themar-msft@users.noreply.github.com> Date: Tue, 23 Aug 2022 14:16:04 -0700 Subject: [PATCH 175/965] Update Get-SystemPreferredUILanguage.md --- .../languagepackmanagement/Get-SystemPreferredUILanguage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/languagepackmanagement/Get-SystemPreferredUILanguage.md b/docset/winserver2019-ps/languagepackmanagement/Get-SystemPreferredUILanguage.md index bd55c6a8be..9a9d5d7b8a 100644 --- a/docset/winserver2019-ps/languagepackmanagement/Get-SystemPreferredUILanguage.md +++ b/docset/winserver2019-ps/languagepackmanagement/Get-SystemPreferredUILanguage.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.LanguagePackManagement.Powershell.Commands.dll-Help.xml Module Name: LanguagePackManagement -online version: https://go.microsoft.com/fwlink/?linkid=2185384 +online version: https://docs.microsoft.com/powershell/module/languagepackmanagement/get-systempreferreduilanguage?view=windowsserver2019-ps schema: 2.0.0 ms.date: 08/15/2022 title: Get-SystemPreferredUILanguage From d3161e5fa40c4b9989843262b52acda83919e63d Mon Sep 17 00:00:00 2001 From: themar-msft <33436507+themar-msft@users.noreply.github.com> Date: Tue, 23 Aug 2022 14:16:59 -0700 Subject: [PATCH 176/965] Update Install-Language.md --- .../winserver2019-ps/languagepackmanagement/Install-Language.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/languagepackmanagement/Install-Language.md b/docset/winserver2019-ps/languagepackmanagement/Install-Language.md index 10f0e4fec6..8bdb3bc206 100644 --- a/docset/winserver2019-ps/languagepackmanagement/Install-Language.md +++ b/docset/winserver2019-ps/languagepackmanagement/Install-Language.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.LanguagePackManagement.Powershell.Commands.dll-Help.xml Module Name: LanguagePackManagement -online version: https://go.microsoft.com/fwlink/?linkid=2185611 +online version: https://docs.microsoft.com/powershell/module/languagepackmanagement/install-language?view=windowsserver2019-ps schema: 2.0.0 ms.date: 08/15/2022 title: Install-Language From 19eee4b3d6179764118be464af915dbc0e3ea262 Mon Sep 17 00:00:00 2001 From: themar-msft <33436507+themar-msft@users.noreply.github.com> Date: Tue, 23 Aug 2022 14:18:47 -0700 Subject: [PATCH 177/965] Update Set-SystemPreferredUILanguage.md --- .../languagepackmanagement/Set-SystemPreferredUILanguage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/languagepackmanagement/Set-SystemPreferredUILanguage.md b/docset/winserver2019-ps/languagepackmanagement/Set-SystemPreferredUILanguage.md index 91889d0c7b..3a5eb4a6d6 100644 --- a/docset/winserver2019-ps/languagepackmanagement/Set-SystemPreferredUILanguage.md +++ b/docset/winserver2019-ps/languagepackmanagement/Set-SystemPreferredUILanguage.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.LanguagePackManagement.Powershell.Commands.dll-Help.xml Module Name: LanguagePackManagement -online version: https://go.microsoft.com/fwlink/?linkid=2185385 +online version: https://docs.microsoft.com/powershell/module/languagepackmanagement/set-systempreferreduilanguage?view=windowsserver2019-ps schema: 2.0.0 ms.date: 08/15/2022 title: Set-SystemPreferredUILanguage From b85dcb1689ca609c156b8b247208dbc72bd9bf14 Mon Sep 17 00:00:00 2001 From: themar-msft <33436507+themar-msft@users.noreply.github.com> Date: Tue, 23 Aug 2022 14:19:29 -0700 Subject: [PATCH 178/965] Update Uninstall-Language.md --- .../languagepackmanagement/Uninstall-Language.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/languagepackmanagement/Uninstall-Language.md b/docset/winserver2019-ps/languagepackmanagement/Uninstall-Language.md index c1d62a5f21..4fd6e4f9a7 100644 --- a/docset/winserver2019-ps/languagepackmanagement/Uninstall-Language.md +++ b/docset/winserver2019-ps/languagepackmanagement/Uninstall-Language.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.LanguagePackManagement.Powershell.Commands.dll-Help.xml Module Name: LanguagePackManagement -online version: https://go.microsoft.com/fwlink/?linkid=2185386 +online version: https://docs.microsoft.com/powershell/module/languagepackmanagement/uninstall-language?view=windowsserver2019-ps schema: 2.0.0 ms.date: 08/15/2022 title: Uninstall-Language From 30bf69c3f553f70a1904ac7dddb03eb0cadc7260 Mon Sep 17 00:00:00 2001 From: themar-msft <33436507+themar-msft@users.noreply.github.com> Date: Tue, 23 Aug 2022 14:24:32 -0700 Subject: [PATCH 179/965] links --- .../languagepackmanagement/Get-SystemPreferredUILanguage.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/languagepackmanagement/Get-SystemPreferredUILanguage.md b/docset/winserver2019-ps/languagepackmanagement/Get-SystemPreferredUILanguage.md index 9a9d5d7b8a..67407f488a 100644 --- a/docset/winserver2019-ps/languagepackmanagement/Get-SystemPreferredUILanguage.md +++ b/docset/winserver2019-ps/languagepackmanagement/Get-SystemPreferredUILanguage.md @@ -46,5 +46,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[https://go.microsoft.com/fwlink/?linkid=2185384](https://go.microsoft.com/fwlink/?linkid=2185384) +[Set-SystemPreferredUILanguage](set-systempreferreduilanguage.md) +[InstallLanguage](install-language.md) From b2fa6d90960df9ad2408b3d4317457e24843e33c Mon Sep 17 00:00:00 2001 From: themar-msft <33436507+themar-msft@users.noreply.github.com> Date: Tue, 23 Aug 2022 14:25:22 -0700 Subject: [PATCH 180/965] link --- .../winserver2019-ps/languagepackmanagement/Install-Language.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/languagepackmanagement/Install-Language.md b/docset/winserver2019-ps/languagepackmanagement/Install-Language.md index 8bdb3bc206..a5a5e8d19e 100644 --- a/docset/winserver2019-ps/languagepackmanagement/Install-Language.md +++ b/docset/winserver2019-ps/languagepackmanagement/Install-Language.md @@ -118,5 +118,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[https://go.microsoft.com/fwlink/?linkid=2185611](https://go.microsoft.com/fwlink/?linkid=2185611) +[UninstallLanguage](uninstall-language.md) From 63b3187d895728bd33f43ce61536d917e8e2b367 Mon Sep 17 00:00:00 2001 From: themar-msft <33436507+themar-msft@users.noreply.github.com> Date: Tue, 23 Aug 2022 14:26:13 -0700 Subject: [PATCH 181/965] link --- .../languagepackmanagement/Set-SystemPreferredUILanguage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/languagepackmanagement/Set-SystemPreferredUILanguage.md b/docset/winserver2019-ps/languagepackmanagement/Set-SystemPreferredUILanguage.md index 3a5eb4a6d6..84dbbc73fb 100644 --- a/docset/winserver2019-ps/languagepackmanagement/Set-SystemPreferredUILanguage.md +++ b/docset/winserver2019-ps/languagepackmanagement/Set-SystemPreferredUILanguage.md @@ -86,5 +86,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[https://go.microsoft.com/fwlink/?linkid=2185385](https://go.microsoft.com/fwlink/?linkid=2185385) +[Get-SystemPreferredUILanguage](Set-SystemPreferredUILanguage.md) From 41422adf909ffb710b302f1e8456f91c356bbe02 Mon Sep 17 00:00:00 2001 From: themar-msft <33436507+themar-msft@users.noreply.github.com> Date: Tue, 23 Aug 2022 14:26:56 -0700 Subject: [PATCH 182/965] link --- .../languagepackmanagement/Uninstall-Language.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/languagepackmanagement/Uninstall-Language.md b/docset/winserver2019-ps/languagepackmanagement/Uninstall-Language.md index 4fd6e4f9a7..cad725fb30 100644 --- a/docset/winserver2019-ps/languagepackmanagement/Uninstall-Language.md +++ b/docset/winserver2019-ps/languagepackmanagement/Uninstall-Language.md @@ -84,5 +84,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[https://go.microsoft.com/fwlink/?linkid=2185386](https://go.microsoft.com/fwlink/?linkid=2185386) +[InstallLanguage](Install-Language.md) From 6f26e547fa48fb847edc82c3594c01a8cb4bc4c5 Mon Sep 17 00:00:00 2001 From: themar-msft <33436507+themar-msft@users.noreply.github.com> Date: Tue, 23 Aug 2022 14:27:51 -0700 Subject: [PATCH 183/965] Update docset/winserver2019-ps/languagepackmanagement/Install-Language.md Co-authored-by: Sean Wheeler --- .../winserver2019-ps/languagepackmanagement/Install-Language.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/languagepackmanagement/Install-Language.md b/docset/winserver2019-ps/languagepackmanagement/Install-Language.md index a5a5e8d19e..7873a2a288 100644 --- a/docset/winserver2019-ps/languagepackmanagement/Install-Language.md +++ b/docset/winserver2019-ps/languagepackmanagement/Install-Language.md @@ -114,7 +114,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.LanguagePackManagement.Powershell.Commands.InstallLanguage+InstallLanguageJob -### System.Collections.Generic.List`1[[Microsoft.LanguagePackManagement.Powershell.Commands.InstalledLanguage, Microsoft.LanguagePackManagement.Powershell.Commands, Version=10.0.0.0, Culture=neutral, PublicKeyToken=null]] +### System.Collections.Generic.List ## RELATED LINKS From e93a9fce9f52cbcad3e0c27d4f9976446e658ce8 Mon Sep 17 00:00:00 2001 From: themar-msft <33436507+themar-msft@users.noreply.github.com> Date: Tue, 23 Aug 2022 14:33:09 -0700 Subject: [PATCH 184/965] Update LanguagePackManagement.md --- .../languagepackmanagement/LanguagePackManagement.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/languagepackmanagement/LanguagePackManagement.md b/docset/winserver2019-ps/languagepackmanagement/LanguagePackManagement.md index fac09cb6b5..6a2cba237f 100644 --- a/docset/winserver2019-ps/languagepackmanagement/LanguagePackManagement.md +++ b/docset/winserver2019-ps/languagepackmanagement/LanguagePackManagement.md @@ -1,7 +1,7 @@ --- Module Name: LanguagePackManagement Module Guid: f42dbdd4-4358-4067-8155-a4567a0aaee5 -Download Help Link: https://aka.ms/winsvr-2019-pshelp +Download Help Link: https://aka.ms/winsvr-2022-pshelp Help Version: 5.0.0.1 Locale: en-US ms.date: 08/15/2022 From 219e31455d6f64396e744fadba0def110a5eb324 Mon Sep 17 00:00:00 2001 From: themar-msft <33436507+themar-msft@users.noreply.github.com> Date: Tue, 23 Aug 2022 14:47:57 -0700 Subject: [PATCH 185/965] Create Install-Language.md --- .../Install-Language.md | 121 ++++++++++++++++++ 1 file changed, 121 insertions(+) create mode 100644 docset/winserver2022-ps/languagepackmanagement/Install-Language.md diff --git a/docset/winserver2022-ps/languagepackmanagement/Install-Language.md b/docset/winserver2022-ps/languagepackmanagement/Install-Language.md new file mode 100644 index 0000000000..da83efe76c --- /dev/null +++ b/docset/winserver2022-ps/languagepackmanagement/Install-Language.md @@ -0,0 +1,121 @@ +--- +external help file: Microsoft.LanguagePackManagement.Powershell.Commands.dll-Help.xml +Module Name: LanguagePackManagement +online version: https://docs.microsoft.com/powershell/module/languagepackmanagement/install-language?view=windowsserver2022-ps +schema: 2.0.0 +ms.date: 08/15/2022 +title: Install-Language +description: The Install-Language cmdlet lets you add a language to a running Windows installation +--- + +# Install-Language + +## SYNOPSIS +Installs a language onto a device. + +## SYNTAX + +``` +Install-Language [-Language] [-CopyToSettings] [-ExcludeFeatures] [-AsJob] [] +``` + +## DESCRIPTION + +Downloads and installs the available language components for the specified language onto a device. + +You can also change your Display Language by using the International module commands (`Set-WinUILanguageOverride `) + +## EXAMPLES + +### Example 1: Add a language to a device + +```powershell +Install-Language ja-JP +``` + +This command adds the Japanese language to a device. + +## PARAMETERS + +### -AsJob + +If specified, this parameter will execute the language installation as an [async PowerShell job](/powershell/module/microsoft.powershell.core/about/about_jobs). + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CopyToSettings + +If specified, this parameter sets the System and Default Device Settings (Windows Display Language, regional and locale formats) to the installed language following the installation. + +After a language is added with this command, you have to restart the device or login again for changes to take effect. Once you log back in, you can change your Windows Display Language in Settings App to change the device UI language. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: ApplyToSettings, ApplyToInternationalSettings, CopyToInternationalSettings + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ExcludeFeatures + +If specified, the associated language Features on Demand won't be installed. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Language + +The bcp47 tag of the language that you're installing. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: LanguageId, LanguageTag + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +## OUTPUTS + +### Microsoft.LanguagePackManagement.Powershell.Commands.InstallLanguage+InstallLanguageJob + +### System.Collections.Generic.List + +## RELATED LINKS + +[UninstallLanguage](uninstall-language.md) From 1d86ef580f343dd1d3980a17cf617857fc87e71b Mon Sep 17 00:00:00 2001 From: themar-msft <33436507+themar-msft@users.noreply.github.com> Date: Tue, 23 Aug 2022 14:48:20 -0700 Subject: [PATCH 186/965] Add files via upload --- .../Get-InstalledLanguage.md | 76 ++++++++++++++++ .../Get-SystemPreferredUILanguage.md | 50 +++++++++++ .../LanguagePackManagement.md | 36 ++++++++ .../Set-SystemPreferredUILanguage.md | 89 +++++++++++++++++++ .../Uninstall-Language.md | 87 ++++++++++++++++++ 5 files changed, 338 insertions(+) create mode 100644 docset/winserver2022-ps/languagepackmanagement/Get-InstalledLanguage.md create mode 100644 docset/winserver2022-ps/languagepackmanagement/Get-SystemPreferredUILanguage.md create mode 100644 docset/winserver2022-ps/languagepackmanagement/LanguagePackManagement.md create mode 100644 docset/winserver2022-ps/languagepackmanagement/Set-SystemPreferredUILanguage.md create mode 100644 docset/winserver2022-ps/languagepackmanagement/Uninstall-Language.md diff --git a/docset/winserver2022-ps/languagepackmanagement/Get-InstalledLanguage.md b/docset/winserver2022-ps/languagepackmanagement/Get-InstalledLanguage.md new file mode 100644 index 0000000000..1a241d46bb --- /dev/null +++ b/docset/winserver2022-ps/languagepackmanagement/Get-InstalledLanguage.md @@ -0,0 +1,76 @@ +--- +external help file: Microsoft.LanguagePackManagement.Powershell.Commands.dll-Help.xml +Module Name: LanguagePackManagement +online version: https://docs.microsoft.com/powershell/module/languagepackmanagement/get-installedlanguage?view=windowsserver2022-ps +schema: 2.0.0 +ms.date: 08/15/2022 +title: Get-InstalledLanguage +description: The Get-InstalledLanguage cmdlet lets you see which languages are installed in a running Windows installation +--- + +# Get-InstalledLanguage + +## SYNOPSIS +Returns information about the installed languages on a device. + +## SYNTAX + +``` +Get-InstalledLanguage [-Language] [] +``` + +## DESCRIPTION +Returns a list of the installed languages and related Language features installed on the device. + +## EXAMPLES + +### Example 1: See what languages are installed on a device + +```powershell +Get-InstalledLanguage +``` + +This command will show all of the language components that are installed on a device. + +### Example 2: See which language components are installed for a particular language + +```powershell +Get-InstalledLanguage -language en-US +``` + +This command will show the language features that are installed for the en-US language. + +## PARAMETERS + +### -Language + +Shows the language components that are installed for the specified language. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: LanguageId, LanguageTag + +Required: False +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +## OUTPUTS + +### System.Collections.Generic.List + +## NOTES + +## RELATED LINKS + +[Set-SystemPreferredUILanguage](Set-SystemPreferredUILanguage.md) diff --git a/docset/winserver2022-ps/languagepackmanagement/Get-SystemPreferredUILanguage.md b/docset/winserver2022-ps/languagepackmanagement/Get-SystemPreferredUILanguage.md new file mode 100644 index 0000000000..a77a573d2e --- /dev/null +++ b/docset/winserver2022-ps/languagepackmanagement/Get-SystemPreferredUILanguage.md @@ -0,0 +1,50 @@ +--- +external help file: Microsoft.LanguagePackManagement.Powershell.Commands.dll-Help.xml +Module Name: LanguagePackManagement +online version: https://docs.microsoft.com/powershell/module/languagepackmanagement/get-systempreferreduilanguage?view=windowsserver2022-ps +schema: 2.0.0 +ms.date: 08/15/2022 +title: Get-SystemPreferredUILanguage +description: The Get-SystemPreferredUILanguage cmdlet lets you see which language is set as the System Preferred UI Language in a running Windows installation +--- + +# Get-SystemPreferredUILanguage + +## SYNOPSIS +Returns the current System Preferred Language. + +## SYNTAX + +``` +Get-SystemPreferredUILanguage [] +``` + +## DESCRIPTION + +Returns the language that is set as the System Preferred Language + +## EXAMPLES + +### Example 1 + +```powershell +Get-SystemPrefferedUILanguage +``` + +This command returns the language that's currently set as the System Preferred UI Language + +## PARAMETERS + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.String + +## RELATED LINKS + +[Set-SystemPreferredUILanguage](set-systempreferreduilanguage.md) +[InstallLanguage](install-language.md) diff --git a/docset/winserver2022-ps/languagepackmanagement/LanguagePackManagement.md b/docset/winserver2022-ps/languagepackmanagement/LanguagePackManagement.md new file mode 100644 index 0000000000..b9cd71bcef --- /dev/null +++ b/docset/winserver2022-ps/languagepackmanagement/LanguagePackManagement.md @@ -0,0 +1,36 @@ +--- +Module Name: LanguagePackManagement +Module Guid: f42dbdd4-4358-4067-8155-a4567a0aaee5 +Download Help Link: https://aka.ms/winsvr-2022-pshelp +Help Version: 5.0.0.1 +Locale: en-US +ms.date: 08/15/2022 +title: LanguagePackManagement module +description: The LanguagePackManagement module includes cmdlets that help you easily manage languages and language settings on a running Windows installation +--- + +# LanguagePackManagement Module +## Description + +This module can be used to easily [add languages](/windows-hardware/manufacture/desktop/available-language-packs-for-windows) and [related language features](/windows-hardware/manufacture/desktop/features-on-demand-language-fod) and manage settings like System Preferred UI Language, System Locale, Input method (Keyboard), Locale, Speech Recognizer, User Preferred Language List using the new cmdlets. + +> [!NOTE] +> - These cmdlets are supported on client operating system only. +> - To run the `Install-Language` and `Set-Language` cmdlets you must run the PowerShell as an admin (right click on the icon). +> - These cmdlets work in conjunction with the [International module](/powershell/module/international/), which allows users to control the language used for various elements of the user interface (UI). + +## LanguagePackManagement Cmdlets +### [Get-InstalledLanguage](Get-InstalledLanguage.md) +Returns information about the installed languages on a device. + +### [Get-SystemPreferredUILanguage](Get-SystemPreferredUILanguage.md) +Returns the current System Preferred Language. + +### [Install-Language](Install-Language.md) +Installs a language onto a device. + +### [Set-SystemPreferredUILanguage](Set-SystemPreferredUILanguage.md) +Sets the provided language as the System Preferred UI Language. + +### [Uninstall-Language](Uninstall-Language.md) +Removes a language from a device. \ No newline at end of file diff --git a/docset/winserver2022-ps/languagepackmanagement/Set-SystemPreferredUILanguage.md b/docset/winserver2022-ps/languagepackmanagement/Set-SystemPreferredUILanguage.md new file mode 100644 index 0000000000..6d676f1a5d --- /dev/null +++ b/docset/winserver2022-ps/languagepackmanagement/Set-SystemPreferredUILanguage.md @@ -0,0 +1,89 @@ +--- +external help file: Microsoft.LanguagePackManagement.Powershell.Commands.dll-Help.xml +Module Name: LanguagePackManagement +online version: https://docs.microsoft.com/powershell/module/languagepackmanagement/set-systempreferreduilanguage?view=windowsserver2022-ps +schema: 2.0.0 +ms.date: 08/15/2022 +title: Set-SystemPreferredUILanguage +description: The Set-SystemPreferredUILanguage cmdlet lets you set an installed language as the System Preferred UI Language in a running Windows installation +--- + +# Set-SystemPreferredUILanguage + +## SYNOPSIS +Sets the provided language as the System Preferred UI Language. + +## SYNTAX + +``` +Set-SystemPreferredUILanguage [-Language] [-PassThru] [] +``` + +## DESCRIPTION + +Sets the provided language as the System Preferred UI Language. + +After a language is set as the System Preferred UI Language, you have to restart the device or login again for changes to take effect. Additional accounts created after setting the System Preferred UI Langauge will be configured to use the new language. + +## EXAMPLES + +### Example 1: Set the System Preferred UI Language on a Windows installation + +```powershell +Set-SystemPreferredUILanguage ja-JP +``` + +This command sets the System Preferred UI Language to Japanese. + +## PARAMETERS + +### -Language + +The bcp47 tag of the language to set as the System Preferred UI Language. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: LanguageId, LanguageTag + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -PassThru + +If specified, this parameter returns the bcp47 tag of the language upon successful configuration of the System Preferred UI Language. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +## OUTPUTS + +### System.Void + +### System.String + +## NOTES + +## RELATED LINKS + +[Get-SystemPreferredUILanguage](Set-SystemPreferredUILanguage.md) diff --git a/docset/winserver2022-ps/languagepackmanagement/Uninstall-Language.md b/docset/winserver2022-ps/languagepackmanagement/Uninstall-Language.md new file mode 100644 index 0000000000..e4e3c6282c --- /dev/null +++ b/docset/winserver2022-ps/languagepackmanagement/Uninstall-Language.md @@ -0,0 +1,87 @@ +--- +external help file: Microsoft.LanguagePackManagement.Powershell.Commands.dll-Help.xml +Module Name: LanguagePackManagement +online version: https://docs.microsoft.com/powershell/module/languagepackmanagement/uninstall-language?view=windowsserver2022-ps +schema: 2.0.0 +ms.date: 08/15/2022 +title: Uninstall-Language +description: The Uninstall-Language cmdlet lets you remove a language and its components from a running Windows installation +--- + +# Uninstall-Language + +## SYNOPSIS +Uninstalls a language from a device. + +## SYNTAX + +``` +Uninstall-Language [-Language] [-PassThru] [] +``` + +## DESCRIPTION + +Uninstalls a language, including all language components, from a device. This operation runs asynchronously. + +## EXAMPLES + +### Example 1: Remove a language from a device + +```powershell +Uninstall-Language ja-jp +``` + +This command removes the Japanese language from the device. + +## PARAMETERS + +### -Language + +The bcp47 tag of the language to install. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: LanguageId, LanguageTag + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -PassThru + +If specified, this parameter returns the bcp47 tag of the newly installed language upon successful installation. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +## OUTPUTS + +### System.Void + +### System.String + +## NOTES + +## RELATED LINKS + +[InstallLanguage](Install-Language.md) From 6dfd4dfd4e09504aa20c25e02d5d9a1593d48f53 Mon Sep 17 00:00:00 2001 From: Alekhya Jupudi <89069896+alekyaj@users.noreply.github.com> Date: Tue, 30 Aug 2022 11:14:20 +0530 Subject: [PATCH 187/965] Update Set-MpPreference.md --- .../defender/Set-MpPreference.md | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/docset/winserver2016-ps/defender/Set-MpPreference.md b/docset/winserver2016-ps/defender/Set-MpPreference.md index 0910ca638d..a6aba728f5 100644 --- a/docset/winserver2016-ps/defender/Set-MpPreference.md +++ b/docset/winserver2016-ps/defender/Set-MpPreference.md @@ -846,7 +846,7 @@ Accept wildcard characters: False ### -ScanScheduleQuickScanTime Specifies the time of day, as the number of minutes after midnight, to perform a scheduled quick scan. The time refers to the local time on the computer. -If you do not specify a value for this parameter, a scheduled quick scan runs at the time specified by the **ScanScheduleTime** parameter. +If you do not specify a value for this parameter, a scheduled quick scan runs at the time specified by the **ScanScheduleOffset** parameter. That parameter has a default time of two hours after midnight. ```yaml @@ -862,16 +862,14 @@ Accept wildcard characters: False ``` ### -ScanScheduleTime -Specifies the time of day, as the number of minutes after midnight, to perform a scheduled scan. -The time refers to the local time on the computer. -If you do not specify a value for this parameter, a scheduled scan runs at a default time of two hours after midnight. +This setting is discontinued and replaced with **ScanScheduleOffset** as of the January 2022 (version 4.18.2201.X) update to Microsoft Defender Antivirus. -```yaml -Type: DateTime -Parameter Sets: (All) -Aliases: scst +### -ScanScheduleOffset +Configures the number of minutes after midnight to perform a scheduled scan. The time on the endpoint is used to determine the local time. If you enable this setting, a scheduled scan will run at the time specified. If you disable or don’t enable this setting, a scheduled scan runs at the default time of two hours (120 minutes) after midnight. -Required: False +```yaml +Type: UInt32 +Aliases: scso Position: Named Default value: None Accept pipeline input: False From 636defe71c1bdfc2587a4df35ea3d7e34c4c7de1 Mon Sep 17 00:00:00 2001 From: Alekhya Jupudi <89069896+alekyaj@users.noreply.github.com> Date: Tue, 30 Aug 2022 11:16:05 +0530 Subject: [PATCH 188/965] Update Set-MpPreference.md --- .../defender/Set-MpPreference.md | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/docset/winserver2022-ps/defender/Set-MpPreference.md b/docset/winserver2022-ps/defender/Set-MpPreference.md index 09dad57b7d..36a27fc4ea 100644 --- a/docset/winserver2022-ps/defender/Set-MpPreference.md +++ b/docset/winserver2022-ps/defender/Set-MpPreference.md @@ -1385,7 +1385,7 @@ Accept wildcard characters: False ### -ScanScheduleQuickScanTime Specifies the time of day, as the number of minutes after midnight, to perform a scheduled quick scan. The time refers to the local time on the computer. -If you do not specify a value for this parameter, a scheduled quick scan runs at the time specified by the **ScanScheduleTime** parameter. +If you do not specify a value for this parameter, a scheduled quick scan runs at the time specified by the **ScanScheduleOffset** parameter. That parameter has a default time of two hours after midnight. ```yaml @@ -1401,16 +1401,14 @@ Accept wildcard characters: False ``` ### -ScanScheduleTime -Specifies the time of day, as the number of minutes after midnight, to perform a scheduled scan. -The time refers to the local time on the computer. -If you do not specify a value for this parameter, a scheduled scan runs at a default time of two hours after midnight. +This setting is discontinued and replaced with **ScanScheduleOffset** as of the January 2022 (version 4.18.2201.X) update to Microsoft Defender Antivirus. -```yaml -Type: DateTime -Parameter Sets: (All) -Aliases: scst +### -ScanScheduleOffset +Configures the number of minutes after midnight to perform a scheduled scan. The time on the endpoint is used to determine the local time. If you enable this setting, a scheduled scan will run at the time specified. If you disable or don’t enable this setting, a scheduled scan runs at the default time of two hours (120 minutes) after midnight. -Required: False +```yaml +Type: UInt32 +Aliases: scso Position: Named Default value: None Accept pipeline input: False From 79333acf767aad71d0261ece2a4b9b28d940d224 Mon Sep 17 00:00:00 2001 From: Alekhya Jupudi <89069896+alekyaj@users.noreply.github.com> Date: Tue, 30 Aug 2022 11:58:49 +0530 Subject: [PATCH 189/965] Update Set-MpPreference.md --- docset/winserver2019-ps/defender/Set-MpPreference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/defender/Set-MpPreference.md b/docset/winserver2019-ps/defender/Set-MpPreference.md index 86fc09f8b1..e523ff70ec 100644 --- a/docset/winserver2019-ps/defender/Set-MpPreference.md +++ b/docset/winserver2019-ps/defender/Set-MpPreference.md @@ -995,7 +995,7 @@ Accept wildcard characters: False ``` ### -ScanScheduleTime -This setting is discontinued and replaced with -ScanScheduleOffset as of the January 2022 (version 4.18.2201.X) update to Microsoft Defender Antivirus. +This setting is discontinued and replaced with **ScanScheduleOffset** as a part of Microsoft Defender Antivirus update. ### -ScanScheduleOffset Configures the number of minutes after midnight to perform a scheduled scan. The time on the endpoint is used to determine the local time. If you enable this setting, a scheduled scan will run at the time specified. If you disable or don’t enable this setting, a scheduled scan runs at the default time of two hours (120 minutes) after midnight. From 145105a1939038017005191714c4e9b3b6741af1 Mon Sep 17 00:00:00 2001 From: Alekhya Jupudi <89069896+alekyaj@users.noreply.github.com> Date: Tue, 30 Aug 2022 12:03:38 +0530 Subject: [PATCH 190/965] Update Set-MpPreference.md --- docset/winserver2016-ps/defender/Set-MpPreference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2016-ps/defender/Set-MpPreference.md b/docset/winserver2016-ps/defender/Set-MpPreference.md index a6aba728f5..9b66c1c4c9 100644 --- a/docset/winserver2016-ps/defender/Set-MpPreference.md +++ b/docset/winserver2016-ps/defender/Set-MpPreference.md @@ -862,7 +862,7 @@ Accept wildcard characters: False ``` ### -ScanScheduleTime -This setting is discontinued and replaced with **ScanScheduleOffset** as of the January 2022 (version 4.18.2201.X) update to Microsoft Defender Antivirus. +This setting is discontinued and replaced with **ScanScheduleOffset** as a part of Microsoft Defender Antivirus update. ### -ScanScheduleOffset Configures the number of minutes after midnight to perform a scheduled scan. The time on the endpoint is used to determine the local time. If you enable this setting, a scheduled scan will run at the time specified. If you disable or don’t enable this setting, a scheduled scan runs at the default time of two hours (120 minutes) after midnight. From c9eee9dc810e71e0108b67633d738e8aa183d5be Mon Sep 17 00:00:00 2001 From: Alekhya Jupudi <89069896+alekyaj@users.noreply.github.com> Date: Tue, 30 Aug 2022 12:05:20 +0530 Subject: [PATCH 191/965] Update Set-MpPreference.md --- docset/winserver2022-ps/defender/Set-MpPreference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/defender/Set-MpPreference.md b/docset/winserver2022-ps/defender/Set-MpPreference.md index 36a27fc4ea..8dec725e6a 100644 --- a/docset/winserver2022-ps/defender/Set-MpPreference.md +++ b/docset/winserver2022-ps/defender/Set-MpPreference.md @@ -1401,7 +1401,7 @@ Accept wildcard characters: False ``` ### -ScanScheduleTime -This setting is discontinued and replaced with **ScanScheduleOffset** as of the January 2022 (version 4.18.2201.X) update to Microsoft Defender Antivirus. +This setting is discontinued and replaced with **ScanScheduleOffset** as a part of Microsoft Defender Antivirus update. ### -ScanScheduleOffset Configures the number of minutes after midnight to perform a scheduled scan. The time on the endpoint is used to determine the local time. If you enable this setting, a scheduled scan will run at the time specified. If you disable or don’t enable this setting, a scheduled scan runs at the default time of two hours (120 minutes) after midnight. From 74593e06e6dc036ee70d9eca8429fbad685da44d Mon Sep 17 00:00:00 2001 From: Denise Vangel-MSFT Date: Tue, 30 Aug 2022 09:27:29 -0700 Subject: [PATCH 192/965] Update Set-MpPreference.md --- docset/winserver2016-ps/defender/Set-MpPreference.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2016-ps/defender/Set-MpPreference.md b/docset/winserver2016-ps/defender/Set-MpPreference.md index 9b66c1c4c9..c157c7fe93 100644 --- a/docset/winserver2016-ps/defender/Set-MpPreference.md +++ b/docset/winserver2016-ps/defender/Set-MpPreference.md @@ -2,7 +2,7 @@ description: Use this article to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: MSFT_MpPreference.cdxml-help.xml Module Name: Defender -ms.date: 07/14/2022 +ms.date: 08/30/2022 online version: https://docs.microsoft.com/powershell/module/defender/set-mppreference?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-MpPreference @@ -862,7 +862,7 @@ Accept wildcard characters: False ``` ### -ScanScheduleTime -This setting is discontinued and replaced with **ScanScheduleOffset** as a part of Microsoft Defender Antivirus update. +This setting is discontinued and replaced with **ScanScheduleOffset** as a part of a recent Microsoft Defender Antivirus update. ### -ScanScheduleOffset Configures the number of minutes after midnight to perform a scheduled scan. The time on the endpoint is used to determine the local time. If you enable this setting, a scheduled scan will run at the time specified. If you disable or don’t enable this setting, a scheduled scan runs at the default time of two hours (120 minutes) after midnight. From e24e3b3722f3501b98554d597dc375ab7f4cb862 Mon Sep 17 00:00:00 2001 From: Denise Vangel-MSFT Date: Tue, 30 Aug 2022 09:28:15 -0700 Subject: [PATCH 193/965] Update Set-MpPreference.md --- docset/winserver2019-ps/defender/Set-MpPreference.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2019-ps/defender/Set-MpPreference.md b/docset/winserver2019-ps/defender/Set-MpPreference.md index e523ff70ec..bc66191c78 100644 --- a/docset/winserver2019-ps/defender/Set-MpPreference.md +++ b/docset/winserver2019-ps/defender/Set-MpPreference.md @@ -2,7 +2,7 @@ description: Use this article to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: MSFT_MpPreference.cdxml-help.xml Module Name: Defender -ms.date: 02/01/2022 +ms.date: 08/30/2022 online version: https://docs.microsoft.com/powershell/module/defender/set-mppreference?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-MpPreference @@ -995,7 +995,7 @@ Accept wildcard characters: False ``` ### -ScanScheduleTime -This setting is discontinued and replaced with **ScanScheduleOffset** as a part of Microsoft Defender Antivirus update. +This setting is discontinued and replaced with **ScanScheduleOffset** as a part of a recent Microsoft Defender Antivirus update. ### -ScanScheduleOffset Configures the number of minutes after midnight to perform a scheduled scan. The time on the endpoint is used to determine the local time. If you enable this setting, a scheduled scan will run at the time specified. If you disable or don’t enable this setting, a scheduled scan runs at the default time of two hours (120 minutes) after midnight. From 29eaa1a346ad2537ef8c48ae86ad856f561c0476 Mon Sep 17 00:00:00 2001 From: Denise Vangel-MSFT Date: Tue, 30 Aug 2022 09:28:40 -0700 Subject: [PATCH 194/965] Update Set-MpPreference.md --- docset/winserver2022-ps/defender/Set-MpPreference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/defender/Set-MpPreference.md b/docset/winserver2022-ps/defender/Set-MpPreference.md index 8dec725e6a..e1b7c5fb0e 100644 --- a/docset/winserver2022-ps/defender/Set-MpPreference.md +++ b/docset/winserver2022-ps/defender/Set-MpPreference.md @@ -2,7 +2,7 @@ description: The Set-MpPreference cmdlet configures preferences for Windows Defender scans and updates. external help file: MSFT_MpPreference.cdxml-help.xml Module Name: Defender -ms.date: 07/14/2022 +ms.date: 08/30/2022 online version: https://docs.microsoft.com/powershell/module/defender/set-mppreference?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-MpPreference From fa258b6b6902a11b82ac4042e8eb5100b555a913 Mon Sep 17 00:00:00 2001 From: Denise Vangel-MSFT Date: Wed, 31 Aug 2022 09:43:00 -0700 Subject: [PATCH 195/965] Update docset/winserver2022-ps/defender/Set-MpPreference.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2022-ps/defender/Set-MpPreference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/defender/Set-MpPreference.md b/docset/winserver2022-ps/defender/Set-MpPreference.md index e1b7c5fb0e..3146d95bfa 100644 --- a/docset/winserver2022-ps/defender/Set-MpPreference.md +++ b/docset/winserver2022-ps/defender/Set-MpPreference.md @@ -1401,7 +1401,7 @@ Accept wildcard characters: False ``` ### -ScanScheduleTime -This setting is discontinued and replaced with **ScanScheduleOffset** as a part of Microsoft Defender Antivirus update. +This setting is discontinued and replaced with **ScanScheduleOffset** as a part of a recent Microsoft Defender Antivirus update. ### -ScanScheduleOffset Configures the number of minutes after midnight to perform a scheduled scan. The time on the endpoint is used to determine the local time. If you enable this setting, a scheduled scan will run at the time specified. If you disable or don’t enable this setting, a scheduled scan runs at the default time of two hours (120 minutes) after midnight. From 2991b16c55efe5399a0158c1bbd801e8e919d456 Mon Sep 17 00:00:00 2001 From: Alex Buck Date: Sat, 3 Sep 2022 12:57:42 -0400 Subject: [PATCH 196/965] [BULK UPDATE] DocuTune - Fix build validation issues: docs-link-absolute --- .../dhcpserver/Get-DhcpServerv4FreeIPAddress.md | 3 +-- docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4Lease.md | 3 +-- .../dhcpserver/Get-DhcpServerv6FreeIPAddress.md | 3 +-- .../dhcpserver/Get-DhcpServerv6Statistics.md | 3 +-- docset/winserver2019-ps/dhcpserver/Import-DhcpServer.md | 3 +-- docset/winserver2019-ps/dism/Add-AppxProvisionedPackage.md | 4 ++-- docset/winserver2019-ps/dism/Add-WindowsCapability.md | 3 +-- .../dism/Set-WindowsReservedStorageState.md | 2 +- docset/winserver2019-ps/dnsclient/Set-DnsClient.md | 3 +-- docset/winserver2019-ps/dnsserver/Get-DnsServer.md | 3 +-- docset/winserver2019-ps/hyper-v/Debug-VM.md | 2 +- docset/winserver2019-ps/hyper-v/Mount-VHD.md | 2 +- docset/winserver2019-ps/hyper-v/Move-VM.md | 3 +-- docset/winserver2019-ps/hyper-v/New-VM.md | 2 +- docset/winserver2019-ps/hyper-v/Remove-VMHardDiskDrive.md | 3 +-- docset/winserver2019-ps/hyper-v/Set-VMNetworkAdapterVlan.md | 2 +- docset/winserver2019-ps/hyper-v/Set-VMProcessor.md | 4 ++-- docset/winserver2019-ps/hyper-v/Set-VMReplicationServer.md | 4 ++-- .../international/Set-WinDefaultInputMethodOverride.md | 3 +-- docset/winserver2019-ps/msdtc/Test-Dtc.md | 3 +-- docset/winserver2019-ps/netadapter/Enable-NetAdapterVmq.md | 3 +-- docset/winserver2019-ps/netadapter/Get-NetAdapter.md | 5 ++--- .../netconnection/Set-NetConnectionProfile.md | 3 +-- docset/winserver2019-ps/netlldpagent/NetLldpAgent.md | 4 +--- .../netsecurity/Set-NetFirewallAddressFilter.md | 3 +-- docset/winserver2019-ps/nettcpip/New-NetRoute.md | 3 +-- docset/winserver2019-ps/pki/Get-Certificate.md | 3 +-- docset/winserver2019-ps/pki/Import-Certificate.md | 2 +- docset/winserver2019-ps/pki/Import-PfxCertificate.md | 2 +- docset/winserver2019-ps/pki/New-SelfSignedCertificate.md | 4 ++-- .../printmanagement/Get-PrintConfiguration.md | 3 +-- .../provisioning/Install-ProvisioningPackage.md | 3 +-- docset/winserver2019-ps/rdmgmt/Set-RDCertificate.md | 6 +++--- docset/winserver2019-ps/scheduledtasks/New-ScheduledTask.md | 2 +- .../scheduledtasks/New-ScheduledTaskSettingsSet.md | 3 +-- .../scheduledtasks/Register-ScheduledTask.md | 4 ++-- docset/winserver2019-ps/smbshare/Grant-SmbShareAccess.md | 3 +-- .../winserver2019-ps/smbshare/Set-SmbServerConfiguration.md | 4 ++-- .../storage/Enable-PhysicalDiskIdentification.md | 3 +-- docset/winserver2019-ps/storage/Format-Volume.md | 3 +-- docset/winserver2019-ps/storage/Get-Disk.md | 3 +-- docset/winserver2019-ps/storage/Get-PhysicalDisk.md | 3 +-- docset/winserver2019-ps/storage/Get-VirtualDisk.md | 3 +-- docset/winserver2019-ps/tls/Get-TlsCipherSuite.md | 2 +- .../updateservices/Add-WsusDynamicCategory.md | 2 +- docset/winserver2019-ps/vpnclient/Add-VpnConnection.md | 3 +-- docset/winserver2019-ps/vpnclient/New-EapConfiguration.md | 5 ++--- docset/winserver2019-ps/vpnclient/Set-VpnConnectionProxy.md | 2 +- .../webadministration/Get-WebApplication.md | 2 +- docset/winserver2019-ps/webadministration/New-WebAppPool.md | 2 +- 50 files changed, 60 insertions(+), 91 deletions(-) diff --git a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4FreeIPAddress.md b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4FreeIPAddress.md index 7b2901c7d2..8da9d09950 100644 --- a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4FreeIPAddress.md +++ b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4FreeIPAddress.md @@ -90,7 +90,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -215,4 +215,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th ## RELATED LINKS [Get-DhcpServerv6FreeIPAddress](./Get-DhcpServerv6FreeIPAddress.md) - diff --git a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4Lease.md b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4Lease.md index 0dcb23ed47..de756c6274 100644 --- a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4Lease.md +++ b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4Lease.md @@ -157,7 +157,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -285,4 +285,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Get-DhcpServerv4Scope](./Get-DhcpServerv4Scope.md) [Remove-DhcpServerv4Lease](./Remove-DhcpServerv4Lease.md) - diff --git a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6FreeIPAddress.md b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6FreeIPAddress.md index 75b4dcdd28..8fde88118e 100644 --- a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6FreeIPAddress.md +++ b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6FreeIPAddress.md @@ -90,7 +90,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. ```yaml Type: CimSession[] @@ -214,4 +214,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th ## RELATED LINKS [Get-DhcpServerv4FreeIPAddress](./Get-DhcpServerv4FreeIPAddress.md) - diff --git a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6Statistics.md b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6Statistics.md index c532df6d07..5fd5237291 100644 --- a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6Statistics.md +++ b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6Statistics.md @@ -57,7 +57,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -122,4 +122,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th ## RELATED LINKS [Get-DhcpServerv6ScopeStatistics](./Get-DhcpServerv6ScopeStatistics.md) - diff --git a/docset/winserver2019-ps/dhcpserver/Import-DhcpServer.md b/docset/winserver2019-ps/dhcpserver/Import-DhcpServer.md index c78209ff06..7f99b23378 100644 --- a/docset/winserver2019-ps/dhcpserver/Import-DhcpServer.md +++ b/docset/winserver2019-ps/dhcpserver/Import-DhcpServer.md @@ -155,7 +155,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -357,4 +357,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Export-DhcpServer](./Export-DhcpServer.md) [Restore-DhcpServer](./Restore-DhcpServer.md) - diff --git a/docset/winserver2019-ps/dism/Add-AppxProvisionedPackage.md b/docset/winserver2019-ps/dism/Add-AppxProvisionedPackage.md index c8c6084694..bc0064eefc 100644 --- a/docset/winserver2019-ps/dism/Add-AppxProvisionedPackage.md +++ b/docset/winserver2019-ps/dism/Add-AppxProvisionedPackage.md @@ -39,7 +39,7 @@ For example, you must install the x86 dependency on the x86 image. You cannot install an app package (.appx) on an operating system that does not support Windows 8 apps. Apps are not supported on Server Core installations of Windows Server 2012, Windows Preinstallation Environment (Windows PE) 4.0, or on any versions of Windows older than Windows 8 and Windows Server 2012. -To install and run apps on Windows Server 2016, you must install the [Install Server with Desktop Experience](https://docs.microsoft.com/windows-server/get-started/getting-started-with-server-with-desktop-experience). +To install and run apps on Windows Server 2016, you must install the [Install Server with Desktop Experience](/windows-server/get-started/getting-started-with-server-with-desktop-experience). Use the *Online* parameter to specify the running operating system on your local computer, or use the *Path* parameter to specify the location of a mounted Windows image. @@ -50,7 +50,7 @@ Use the *FolderPath* parameter to specify the location of a folder of unpacked a To add an app package (.appx) for a particular user, or to test a package while developing your app, use the **Add-AppxPackage** cmdlet instead. -For more information, including requirements for app package provisioning, see [Sideload Apps with DISM](https://docs.microsoft.com/windows-hardware/manufacture/desktop/sideload-apps-with-dism-s14) and [How to develop an OEM app that uses a custom file](https://docs.microsoft.com/windows/win32/appxpkg/how-to-develop-oem-app-with-custom-file) in MicrosoftDocs. +For more information, including requirements for app package provisioning, see [Sideload Apps with DISM](/windows-hardware/manufacture/desktop/sideload-apps-with-dism-s14) and [How to develop an OEM app that uses a custom file](/windows/win32/appxpkg/how-to-develop-oem-app-with-custom-file) in MicrosoftDocs. ## EXAMPLES diff --git a/docset/winserver2019-ps/dism/Add-WindowsCapability.md b/docset/winserver2019-ps/dism/Add-WindowsCapability.md index 2ea8303ed2..b991d44592 100644 --- a/docset/winserver2019-ps/dism/Add-WindowsCapability.md +++ b/docset/winserver2019-ps/dism/Add-WindowsCapability.md @@ -239,10 +239,9 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES -As of Windows 10 version 1709, you cannot use Windows Server Update Services (WSUS) to host Features on Demand (FOD) and language packs for Windows 10 clients. Instead, you can enforce a Group Policy setting that tells the clients to download them directly from Windows Update. You can also host FOD and language packs on a network share, but starting with Windows 10 version 1809, FOD and language packs can only be installed from Windows Update. For more information, see [How to make Features on Demand and language packs available when you're using WSUS/Configuration Manager](https://docs.microsoft.com/windows/deployment/update/fod-and-lang-packs). +As of Windows 10 version 1709, you cannot use Windows Server Update Services (WSUS) to host Features on Demand (FOD) and language packs for Windows 10 clients. Instead, you can enforce a Group Policy setting that tells the clients to download them directly from Windows Update. You can also host FOD and language packs on a network share, but starting with Windows 10 version 1809, FOD and language packs can only be installed from Windows Update. For more information, see [How to make Features on Demand and language packs available when you're using WSUS/Configuration Manager](/windows/deployment/update/fod-and-lang-packs). ## RELATED LINKS [Get-WindowsCapability](./Get-WindowsCapability.md) [Remove-WindowsCapability](./Remove-WindowsCapability.md) - diff --git a/docset/winserver2019-ps/dism/Set-WindowsReservedStorageState.md b/docset/winserver2019-ps/dism/Set-WindowsReservedStorageState.md index 823da46c1b..4be2ef0dc1 100644 --- a/docset/winserver2019-ps/dism/Set-WindowsReservedStorageState.md +++ b/docset/winserver2019-ps/dism/Set-WindowsReservedStorageState.md @@ -18,7 +18,7 @@ Set-WindowsReservedStorageState -State [-LogPath ``` ## DESCRIPTION -Sets the state of reserved storage. This command line option is only supported for online Windows images. If reserved storage is in use, it may not be disabled, and the following error is returned: This operation is not supported when reserved storage is in use. Please wait for any servicing operations to complete and then try again later. Changes to reserved storage state are reflected in Sysprep generalized Windows images. For more information see [Sysprep (Generalize) a Windows installation](https://docs.microsoft.com/windows-hardware/manufacture/desktop/sysprep--system-preparation--overview) +Sets the state of reserved storage. This command line option is only supported for online Windows images. If reserved storage is in use, it may not be disabled, and the following error is returned: This operation is not supported when reserved storage is in use. Please wait for any servicing operations to complete and then try again later. Changes to reserved storage state are reflected in Sysprep generalized Windows images. For more information see [Sysprep (Generalize) a Windows installation](/windows-hardware/manufacture/desktop/sysprep--system-preparation--overview) ## EXAMPLES diff --git a/docset/winserver2019-ps/dnsclient/Set-DnsClient.md b/docset/winserver2019-ps/dnsclient/Set-DnsClient.md index c235d653ba..5fb18a0022 100644 --- a/docset/winserver2019-ps/dnsclient/Set-DnsClient.md +++ b/docset/winserver2019-ps/dnsclient/Set-DnsClient.md @@ -78,7 +78,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -299,4 +299,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Get-DnsClient](./Get-DnsClient.md) [Register-DnsClient](./Register-DnsClient.md) - diff --git a/docset/winserver2019-ps/dnsserver/Get-DnsServer.md b/docset/winserver2019-ps/dnsserver/Get-DnsServer.md index a25538eefc..1e75c71309 100644 --- a/docset/winserver2019-ps/dnsserver/Get-DnsServer.md +++ b/docset/winserver2019-ps/dnsserver/Get-DnsServer.md @@ -26,7 +26,7 @@ The **Get-DnsServer** cmdlet retrieves a Domain Name System (DNS) server configu You can pass the output of the **Get-DnsServer** cmdlet to the **Export-Clixml** cmdlet by using the pipeline operator. That cmdlet generates an XML file of the configuration. You can use the XML file to back up or transfer DNS settings between computers. -For more information about **Export-Clixml**, see [Using the Export-Clixml cmdlet](https://docs.microsoft.com/powershell/module/microsoft.powershell.utility/export-clixml). +For more information about **Export-Clixml**, see [Using the Export-Clixml cmdlet](/powershell/module/microsoft.powershell.utility/export-clixml). ## EXAMPLES @@ -134,4 +134,3 @@ This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVar [Set-DnsServer](./Set-DnsServer.md) [Test-DnsServer](./Test-DnsServer.md) - diff --git a/docset/winserver2019-ps/hyper-v/Debug-VM.md b/docset/winserver2019-ps/hyper-v/Debug-VM.md index a9840ae7a9..f72c3b704f 100644 --- a/docset/winserver2019-ps/hyper-v/Debug-VM.md +++ b/docset/winserver2019-ps/hyper-v/Debug-VM.md @@ -230,4 +230,4 @@ Shielded virtual machines do not support debugging or nonmaskable interrupts. ## RELATED LINKS -[Configuring Automatic Debugging](https://docs.microsoft.com/windows/win32/debug/configuring-automatic-debugging) +[Configuring Automatic Debugging](/windows/win32/debug/configuring-automatic-debugging) diff --git a/docset/winserver2019-ps/hyper-v/Mount-VHD.md b/docset/winserver2019-ps/hyper-v/Mount-VHD.md index caf28fa5f4..0366bb7a61 100644 --- a/docset/winserver2019-ps/hyper-v/Mount-VHD.md +++ b/docset/winserver2019-ps/hyper-v/Mount-VHD.md @@ -219,4 +219,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS -[Mount-DiskImage](https://docs.microsoft.com/powershell/module/storage/mount-diskimage) +[Mount-DiskImage](/powershell/module/storage/mount-diskimage) diff --git a/docset/winserver2019-ps/hyper-v/Move-VM.md b/docset/winserver2019-ps/hyper-v/Move-VM.md index 3e6884410b..c31778dcb3 100644 --- a/docset/winserver2019-ps/hyper-v/Move-VM.md +++ b/docset/winserver2019-ps/hyper-v/Move-VM.md @@ -127,7 +127,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -479,4 +479,3 @@ None, by default. ## NOTES ## RELATED LINKS - diff --git a/docset/winserver2019-ps/hyper-v/New-VM.md b/docset/winserver2019-ps/hyper-v/New-VM.md index b9c2d5cfc3..c0815dad24 100644 --- a/docset/winserver2019-ps/hyper-v/New-VM.md +++ b/docset/winserver2019-ps/hyper-v/New-VM.md @@ -147,7 +147,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml diff --git a/docset/winserver2019-ps/hyper-v/Remove-VMHardDiskDrive.md b/docset/winserver2019-ps/hyper-v/Remove-VMHardDiskDrive.md index 32898e3cd8..400b4c9461 100644 --- a/docset/winserver2019-ps/hyper-v/Remove-VMHardDiskDrive.md +++ b/docset/winserver2019-ps/hyper-v/Remove-VMHardDiskDrive.md @@ -51,7 +51,7 @@ Removes all virtual hard drives on IDE controller 1 from virtual machine TestVM. ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -243,4 +243,3 @@ If **-PassThru** is specified. ## NOTES ## RELATED LINKS - diff --git a/docset/winserver2019-ps/hyper-v/Set-VMNetworkAdapterVlan.md b/docset/winserver2019-ps/hyper-v/Set-VMNetworkAdapterVlan.md index 832b291708..8426ea2953 100644 --- a/docset/winserver2019-ps/hyper-v/Set-VMNetworkAdapterVlan.md +++ b/docset/winserver2019-ps/hyper-v/Set-VMNetworkAdapterVlan.md @@ -485,4 +485,4 @@ If **-PassThru** is specified. ## NOTES ## RELATED LINKS -[Configure and View VLAN Settings on Hyper-V Virtual Switch Ports](https://docs.microsoft.com/windows-server/virtualization/hyper-v-virtual-switch/configure-and-view-vlan-settings-on-hyper-v-virtual-switch-ports) +[Configure and View VLAN Settings on Hyper-V Virtual Switch Ports](/windows-server/virtualization/hyper-v-virtual-switch/configure-and-view-vlan-settings-on-hyper-v-virtual-switch-ports) diff --git a/docset/winserver2019-ps/hyper-v/Set-VMProcessor.md b/docset/winserver2019-ps/hyper-v/Set-VMProcessor.md index 00b8f91370..12ddcf7b9a 100644 --- a/docset/winserver2019-ps/hyper-v/Set-VMProcessor.md +++ b/docset/winserver2019-ps/hyper-v/Set-VMProcessor.md @@ -234,7 +234,7 @@ Accept wildcard characters: False ### -HwThreadCountPerCore Specifies the number of virtual SMT threads exposed to the virtual machine. Setting this value to 0 indicates the virtual machine will inherit the host's number of threads per core. This setting may not exceed the host's number of threads per core. -Note: Windows Server 2016 does not support setting HwThreadCountPerCore to 0. For more details, see [Configuring VM SMT settings using PowerShell](https://docs.microsoft.com/windows-server/virtualization/hyper-v/manage/about-hyper-v-scheduler-type-selection#configuring-vm-smt-settings-using-powershell). +Note: Windows Server 2016 does not support setting HwThreadCountPerCore to 0. For more details, see [Configuring VM SMT settings using PowerShell](/windows-server/virtualization/hyper-v/manage/about-hyper-v-scheduler-type-selection#configuring-vm-smt-settings-using-powershell). ```yaml Type: Int64 @@ -295,7 +295,7 @@ Accept wildcard characters: False ``` ### -Perfmon -Specifies the hardware to be Exposed for Performance Monitoring. For more information about requirements, visit [Enable Intel Performance Monitoring Hardware in a Hyper-V virtual machine](https://docs.microsoft.com/windows-server/virtualization/hyper-v/manage/performance-monitoring-hardware). +Specifies the hardware to be Exposed for Performance Monitoring. For more information about requirements, visit [Enable Intel Performance Monitoring Hardware in a Hyper-V virtual machine](/windows-server/virtualization/hyper-v/manage/performance-monitoring-hardware). ```yaml diff --git a/docset/winserver2019-ps/hyper-v/Set-VMReplicationServer.md b/docset/winserver2019-ps/hyper-v/Set-VMReplicationServer.md index f788b176e1..512110666e 100644 --- a/docset/winserver2019-ps/hyper-v/Set-VMReplicationServer.md +++ b/docset/winserver2019-ps/hyper-v/Set-VMReplicationServer.md @@ -146,7 +146,7 @@ To display a list of certificates in the computer's My store and the thumbprint `PS C:\\\> dir | format-list` -For more information about certificate stores, see [Certificate stores](https://docs.microsoft.com/previous-versions/windows/it-pro/windows-server-2003/cc757138(v=ws.10). +For more information about certificate stores, see [Certificate stores](/previous-versions/windows/it-pro/windows-server-2003/cc757138(v=ws.10). ```yaml Type: String @@ -162,7 +162,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml diff --git a/docset/winserver2019-ps/international/Set-WinDefaultInputMethodOverride.md b/docset/winserver2019-ps/international/Set-WinDefaultInputMethodOverride.md index 514bba660d..b3c6ccf722 100644 --- a/docset/winserver2019-ps/international/Set-WinDefaultInputMethodOverride.md +++ b/docset/winserver2019-ps/international/Set-WinDefaultInputMethodOverride.md @@ -56,7 +56,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS ### InputTIP -You can pipe a locale ID and a keyboard language ID (KLID). See [Default Input Profiles (Input Locales) in Windows](https://docs.microsoft.com/windows-hardware/manufacture/desktop/default-input-locales-for-windows-language-packs) +You can pipe a locale ID and a keyboard language ID (KLID). See [Default Input Profiles (Input Locales) in Windows](/windows-hardware/manufacture/desktop/default-input-locales-for-windows-language-packs) ## OUTPUTS @@ -65,4 +65,3 @@ You can pipe a locale ID and a keyboard language ID (KLID). See [Default Input P ## RELATED LINKS [Get-WinDefaultInputMethodOverride](./Get-WinDefaultInputMethodOverride.md) - diff --git a/docset/winserver2019-ps/msdtc/Test-Dtc.md b/docset/winserver2019-ps/msdtc/Test-Dtc.md index cd0d01ac4a..8f30ae9c97 100644 --- a/docset/winserver2019-ps/msdtc/Test-Dtc.md +++ b/docset/winserver2019-ps/msdtc/Test-Dtc.md @@ -33,7 +33,7 @@ To run this cmdlet, you must first enable the firewall rule for Distributed Tran `netsh advfirewall firewall set rule group="Distributed Transaction Coordinator" new enable=yes` -For more information, see [Netsh Command Syntax, Contexts, and Formatting](https://docs.microsoft.com/en-us/windows-server/networking/technologies/netsh/netsh-contexts). +For more information, see [Netsh Command Syntax, Contexts, and Formatting](/windows-server/networking/technologies/netsh/netsh-contexts). To enable the rule using PowerShell run the following command: @@ -318,4 +318,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Stop-Dtc](./Stop-Dtc.md) [Uninstall-Dtc](./Uninstall-Dtc.md) - diff --git a/docset/winserver2019-ps/netadapter/Enable-NetAdapterVmq.md b/docset/winserver2019-ps/netadapter/Enable-NetAdapterVmq.md index 9ddaf19735..31056fb2f0 100644 --- a/docset/winserver2019-ps/netadapter/Enable-NetAdapterVmq.md +++ b/docset/winserver2019-ps/netadapter/Enable-NetAdapterVmq.md @@ -71,7 +71,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -255,4 +255,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Get-NetAdapterVmqQueue](./Get-NetAdapterVmqQueue.md) [Set-NetAdapterVmq](./Set-NetAdapterVmq.md) - diff --git a/docset/winserver2019-ps/netadapter/Get-NetAdapter.md b/docset/winserver2019-ps/netadapter/Get-NetAdapter.md index e082cd5444..35a070b9e1 100644 --- a/docset/winserver2019-ps/netadapter/Get-NetAdapter.md +++ b/docset/winserver2019-ps/netadapter/Get-NetAdapter.md @@ -155,7 +155,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -278,7 +278,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. -[CIM_NetworkAdapter class](https://docs.microsoft.com/windows/win32/cimwin32prov/cim-networkadapter) +[CIM_NetworkAdapter class](/windows/win32/cimwin32prov/cim-networkadapter) ## NOTES @@ -293,4 +293,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Restart-NetAdapter](./Restart-NetAdapter.md) [Set-NetAdapter](./Set-NetAdapter.md) - diff --git a/docset/winserver2019-ps/netconnection/Set-NetConnectionProfile.md b/docset/winserver2019-ps/netconnection/Set-NetConnectionProfile.md index ef6e90524d..ad37a413f3 100644 --- a/docset/winserver2019-ps/netconnection/Set-NetConnectionProfile.md +++ b/docset/winserver2019-ps/netconnection/Set-NetConnectionProfile.md @@ -67,7 +67,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -288,4 +288,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS [Get-NetConnectionProfile](./Get-NetConnectionProfile.md) - diff --git a/docset/winserver2019-ps/netlldpagent/NetLldpAgent.md b/docset/winserver2019-ps/netlldpagent/NetLldpAgent.md index a9475f2825..7329252ea5 100644 --- a/docset/winserver2019-ps/netlldpagent/NetLldpAgent.md +++ b/docset/winserver2019-ps/netlldpagent/NetLldpAgent.md @@ -11,7 +11,7 @@ title: NetLldpAgent # NetLldpAgent Module ## Description -This reference provides cmdlet descriptions and syntax for the Network Logical Link Discovery Protocol (LLDP) Agent. Use of the NetLldpAgent module requires the [DataCenterBridging](https://docs.microsoft.com/windows-server/networking/technologies/dcb/dcb-install) feature to be installed. The following cmdlets are covered by this reference: +This reference provides cmdlet descriptions and syntax for the Network Logical Link Discovery Protocol (LLDP) Agent. Use of the NetLldpAgent module requires the [DataCenterBridging](/windows-server/networking/technologies/dcb/dcb-install) feature to be installed. The following cmdlets are covered by this reference: ## NetLldpAgent Cmdlets ### [Disable-NetLldpAgent](./Disable-NetLldpAgent.md) @@ -22,5 +22,3 @@ Enables LLDP on a network interface on a computer. ### [Get-NetLldpAgent](./Get-NetLldpAgent.md) Gets the settings of the LLDP agent on a network interface on a host computer. - - diff --git a/docset/winserver2019-ps/netsecurity/Set-NetFirewallAddressFilter.md b/docset/winserver2019-ps/netsecurity/Set-NetFirewallAddressFilter.md index 927aeecadc..ce92f414d8 100644 --- a/docset/winserver2019-ps/netsecurity/Set-NetFirewallAddressFilter.md +++ b/docset/winserver2019-ps/netsecurity/Set-NetFirewallAddressFilter.md @@ -92,7 +92,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -350,4 +350,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Get-NetIPsecMainModeRule](./Get-NetIPsecMainModeRule.md) [Set-NetIPsecRule](./Set-NetIPsecRule.md) - diff --git a/docset/winserver2019-ps/nettcpip/New-NetRoute.md b/docset/winserver2019-ps/nettcpip/New-NetRoute.md index 5fb6352760..357c4bb509 100644 --- a/docset/winserver2019-ps/nettcpip/New-NetRoute.md +++ b/docset/winserver2019-ps/nettcpip/New-NetRoute.md @@ -103,7 +103,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/New-CimSession) or [Get-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/Get-CimSession) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/New-CimSession) or [Get-CimSession](/powershell/module/cimcmdlets/Get-CimSession) cmdlet. The default is the current session on the local computer. ```yaml @@ -408,4 +408,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Set-NetRoute](./Set-NetRoute.md) [Set-NetIPInterface](./Set-NetIPInterface.md) - diff --git a/docset/winserver2019-ps/pki/Get-Certificate.md b/docset/winserver2019-ps/pki/Get-Certificate.md index 1bf2d36dc1..16ce10abfc 100644 --- a/docset/winserver2019-ps/pki/Get-Certificate.md +++ b/docset/winserver2019-ps/pki/Get-Certificate.md @@ -274,5 +274,4 @@ The EnrollmentResult object contains the results of enrollment. [Set-Location](https://go.microsoft.com/fwlink/p/?LinkId=293912) -[System Store Locations](https://docs.microsoft.com/windows/desktop/seccrypto/system-store-locations) - +[System Store Locations](/windows/desktop/seccrypto/system-store-locations) diff --git a/docset/winserver2019-ps/pki/Import-Certificate.md b/docset/winserver2019-ps/pki/Import-Certificate.md index 0ce1421dd1..cbcde3f84a 100644 --- a/docset/winserver2019-ps/pki/Import-Certificate.md +++ b/docset/winserver2019-ps/pki/Import-Certificate.md @@ -137,4 +137,4 @@ The output is an array of **X509Certificate2\[\]** objects. [Export-Certificate](./Export-Certificate.md) -[System Store Locations](https://docs.microsoft.com/windows/desktop/seccrypto/system-store-locations) +[System Store Locations](/windows/desktop/seccrypto/system-store-locations) diff --git a/docset/winserver2019-ps/pki/Import-PfxCertificate.md b/docset/winserver2019-ps/pki/Import-PfxCertificate.md index ad3b8af7e8..a18c28548f 100644 --- a/docset/winserver2019-ps/pki/Import-PfxCertificate.md +++ b/docset/winserver2019-ps/pki/Import-PfxCertificate.md @@ -176,4 +176,4 @@ The imported **X509Certificate2** object contained in the PFX file that is assoc [Export-PfxCertificate](./Export-PfxCertificate.md) -[System Store Locations](https://docs.microsoft.com/windows/desktop/seccrypto/system-store-locations) +[System Store Locations](/windows/desktop/seccrypto/system-store-locations) diff --git a/docset/winserver2019-ps/pki/New-SelfSignedCertificate.md b/docset/winserver2019-ps/pki/New-SelfSignedCertificate.md index 19c549c4cd..4c14ea9194 100644 --- a/docset/winserver2019-ps/pki/New-SelfSignedCertificate.md +++ b/docset/winserver2019-ps/pki/New-SelfSignedCertificate.md @@ -623,7 +623,7 @@ Accept wildcard characters: False ``` ### -Provider -Specifies the name of the KSP or CSP that this cmdlet uses to create the certificate. See [Cryptographic Providers](https://docs.microsoft.com/en-us/windows/desktop/SecCertEnroll/understanding-cryptographic-providers) for more information. +Specifies the name of the KSP or CSP that this cmdlet uses to create the certificate. See [Cryptographic Providers](/windows/desktop/SecCertEnroll/understanding-cryptographic-providers) for more information. Some acceptable values include: - Microsoft Software Key Storage Provider @@ -1010,4 +1010,4 @@ An **X509Certificate2** object for the certificate that has been created. ## RELATED LINKS -[System Store Locations](https://docs.microsoft.com/windows/desktop/seccrypto/system-store-locations) +[System Store Locations](/windows/desktop/seccrypto/system-store-locations) diff --git a/docset/winserver2019-ps/printmanagement/Get-PrintConfiguration.md b/docset/winserver2019-ps/printmanagement/Get-PrintConfiguration.md index fe0242c079..c60bd914cb 100644 --- a/docset/winserver2019-ps/printmanagement/Get-PrintConfiguration.md +++ b/docset/winserver2019-ps/printmanagement/Get-PrintConfiguration.md @@ -85,7 +85,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -180,4 +180,3 @@ This cmdlet returns a printer configuration object. ## RELATED LINKS [Set-PrintConfiguration](./Set-PrintConfiguration.md) - diff --git a/docset/winserver2019-ps/provisioning/Install-ProvisioningPackage.md b/docset/winserver2019-ps/provisioning/Install-ProvisioningPackage.md index 506ce51f7e..eec360679f 100644 --- a/docset/winserver2019-ps/provisioning/Install-ProvisioningPackage.md +++ b/docset/winserver2019-ps/provisioning/Install-ProvisioningPackage.md @@ -21,7 +21,7 @@ Install-ProvisioningPackage [-PackagePath] [-ForceInstall] [-QuietInsta ``` ## DESCRIPTION -This cmdlet is used to install .ppkg files that are generated and exported by the [Windows Configuration Designer tool](https://docs.microsoft.com/windows/configuration/provisioning-packages/provisioning-install-icd). +This cmdlet is used to install .ppkg files that are generated and exported by the [Windows Configuration Designer tool](/windows/configuration/provisioning-packages/provisioning-install-icd). The **Install-ProvisioningPackage** cmdlet is supported on Windows 10 client operating system only. @@ -145,4 +145,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS - diff --git a/docset/winserver2019-ps/rdmgmt/Set-RDCertificate.md b/docset/winserver2019-ps/rdmgmt/Set-RDCertificate.md index 24dfa24baa..22c6197844 100644 --- a/docset/winserver2019-ps/rdmgmt/Set-RDCertificate.md +++ b/docset/winserver2019-ps/rdmgmt/Set-RDCertificate.md @@ -46,7 +46,7 @@ PS C:\>$Password = ConvertTo-SecureString -String "Cups34Horses&&" -AsPlainText PS C:\>Set-RDCertificate -Role RDRedirector -ImportPath "C:\Certificates\Redirector07.pfx" -Password $Password -ConnectionBroker "RDCB.Contoso.com" ``` -The first part of the example uses the **ConvertTo-SecureString** cmdlet to create a secure string based on a string that the user supplies and stores it in the **$Password** variable. For more information, see [ConvertTo-SecureString](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.security/ConvertTo-SecureString?view=powershell-6). You can also enter the `Get-Help ConvertTo-SecureString` cmdlet into your PowerShell window. +The first part of the example uses the **ConvertTo-SecureString** cmdlet to create a secure string based on a string that the user supplies and stores it in the **$Password** variable. For more information, see [ConvertTo-SecureString](/powershell/module/microsoft.powershell.security/ConvertTo-SecureString?view=powershell-6). You can also enter the `Get-Help ConvertTo-SecureString` cmdlet into your PowerShell window. The second part of the example specifies the file name of the certificate to use for the redirector role for the RD Connection Broker named RDCB.Contoso.com. The cmdlet uses the secure string stored in the **$Password** variable to help secure the certificate. @@ -178,7 +178,7 @@ Accept wildcard characters: False ### CommonParameters This cmdlet supports the following common parameters: *-Debug*, *-ErrorAction*, *-ErrorVariable*, *-InformationAction*, *-InformationVariable*, *-OutVariable*, *-OutBuffer*, *-PipelineVariable*, *-Verbose*, *-WarningAction*, and *-WarningVariable*. -For more information, see [about_CommonParameters](https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-6). +For more information, see [about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-6). ## Inputs @@ -196,4 +196,4 @@ For more information, see [about_CommonParameters](https://docs.microsoft.com/po [New-RDCertificate](./New-RDCertificate.md) -[about_CommonParameters](https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-6) +[about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-6) diff --git a/docset/winserver2019-ps/scheduledtasks/New-ScheduledTask.md b/docset/winserver2019-ps/scheduledtasks/New-ScheduledTask.md index 98ead15410..2304acfc7d 100644 --- a/docset/winserver2019-ps/scheduledtasks/New-ScheduledTask.md +++ b/docset/winserver2019-ps/scheduledtasks/New-ScheduledTask.md @@ -104,7 +104,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml diff --git a/docset/winserver2019-ps/scheduledtasks/New-ScheduledTaskSettingsSet.md b/docset/winserver2019-ps/scheduledtasks/New-ScheduledTaskSettingsSet.md index ee0b83a4b2..6da574459d 100644 --- a/docset/winserver2019-ps/scheduledtasks/New-ScheduledTaskSettingsSet.md +++ b/docset/winserver2019-ps/scheduledtasks/New-ScheduledTaskSettingsSet.md @@ -144,7 +144,7 @@ The second command creates scheduled task settings that specify if the task is n The third command registers the scheduled task Task01 to run the task action named Cmd, only then finish the task after one hour. -Without the ExecutionTimeLimit setting defined, the time limit set to it's default of three days for the Task Scheduler is allowed to complete the task. To configure the time limit, see [New-TimeSpan](https://docs.microsoft.com/powershell/module/microsoft.powershell.utility/new-timespan). +Without the ExecutionTimeLimit setting defined, the time limit set to it's default of three days for the Task Scheduler is allowed to complete the task. To configure the time limit, see [New-TimeSpan](/powershell/module/microsoft.powershell.utility/new-timespan). ## PARAMETERS @@ -651,4 +651,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Start-ScheduledTask](./Start-ScheduledTask.md) [Unregister-ScheduledTask](./Unregister-ScheduledTask.md) - diff --git a/docset/winserver2019-ps/scheduledtasks/Register-ScheduledTask.md b/docset/winserver2019-ps/scheduledtasks/Register-ScheduledTask.md index f222bf4a8b..8a767187d6 100644 --- a/docset/winserver2019-ps/scheduledtasks/Register-ScheduledTask.md +++ b/docset/winserver2019-ps/scheduledtasks/Register-ScheduledTask.md @@ -110,7 +110,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/en-us/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://docs.microsoft.com/en-us/powershell/module/cimcmdlets/get-cimsession) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](/powershell/module/cimcmdlets/get-cimsession) cmdlet. The default is the current session on the local computer. ```yaml @@ -342,7 +342,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_commonparameters). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters). ## INPUTS diff --git a/docset/winserver2019-ps/smbshare/Grant-SmbShareAccess.md b/docset/winserver2019-ps/smbshare/Grant-SmbShareAccess.md index 1c073ea756..1c149c20d7 100644 --- a/docset/winserver2019-ps/smbshare/Grant-SmbShareAccess.md +++ b/docset/winserver2019-ps/smbshare/Grant-SmbShareAccess.md @@ -116,7 +116,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -281,4 +281,3 @@ This cmdlet returns a **MSFT_SmbShareAccessControlEntry** object. [Revoke-SmbShareAccess](./Revoke-SmbShareAccess.md) [Unblock-SmbShareAccess](./Unblock-SmbShareAccess.md) - diff --git a/docset/winserver2019-ps/smbshare/Set-SmbServerConfiguration.md b/docset/winserver2019-ps/smbshare/Set-SmbServerConfiguration.md index b9a2210017..fb3b658015 100644 --- a/docset/winserver2019-ps/smbshare/Set-SmbServerConfiguration.md +++ b/docset/winserver2019-ps/smbshare/Set-SmbServerConfiguration.md @@ -35,7 +35,7 @@ Set-SmbServerConfiguration [-AnnounceComment ] [-AnnounceServer [!NOTE] -> This cmdlet returns physical disk objects like basic disks and partitioned drive partitions. Dynamic disks can span multiple pieces of physical media, so they will not be returned by Get-Disk. For more information, see [Basic and Dynamic Disks](https://docs.microsoft.com/windows/desktop/FileIO/basic-and-dynamic-disks). +> This cmdlet returns physical disk objects like basic disks and partitioned drive partitions. Dynamic disks can span multiple pieces of physical media, so they will not be returned by Get-Disk. For more information, see [Basic and Dynamic Disks](/windows/desktop/FileIO/basic-and-dynamic-disks). ## SYNTAX @@ -401,4 +401,3 @@ This cmdlet outputs one or more objects representing disks. [Set-Disk](./Set-Disk.md) [Update-Disk](./Update-Disk.md) - diff --git a/docset/winserver2019-ps/storage/Get-PhysicalDisk.md b/docset/winserver2019-ps/storage/Get-PhysicalDisk.md index 340422ccd0..9aac284222 100644 --- a/docset/winserver2019-ps/storage/Get-PhysicalDisk.md +++ b/docset/winserver2019-ps/storage/Get-PhysicalDisk.md @@ -119,7 +119,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -523,4 +523,3 @@ The Get-PhysicalDisk cmdlet returns objects that represent physical disks. [New-VirtualDisk](./New-VirtualDisk.md) [Get-StorageNode](./Get-StorageNode.md) - diff --git a/docset/winserver2019-ps/storage/Get-VirtualDisk.md b/docset/winserver2019-ps/storage/Get-VirtualDisk.md index 0ac7b0377a..3afce59ed9 100644 --- a/docset/winserver2019-ps/storage/Get-VirtualDisk.md +++ b/docset/winserver2019-ps/storage/Get-VirtualDisk.md @@ -624,7 +624,7 @@ You can use the pipeline operator to pass an MSFT_TargetVirtualDisk object to th ## OUTPUTS ### Microsoft.Management.Infrastructure.CimInstance#ROOT/Microsoft/Windows/Storage/MSFT_VirtualDisk -This cmdlet outputs an object that represents the specified virtual disk. For more information about output object type, please see [MSFT_VirtualDisk class](https://docs.microsoft.com/previous-versions/windows/desktop/stormgmt/msft-virtualdisk) +This cmdlet outputs an object that represents the specified virtual disk. For more information about output object type, please see [MSFT_VirtualDisk class](/previous-versions/windows/desktop/stormgmt/msft-virtualdisk) ## NOTES @@ -655,4 +655,3 @@ This cmdlet outputs an object that represents the specified virtual disk. For mo [Set-VirtualDisk](./Set-VirtualDisk.md) [Show-VirtualDisk](./Show-VirtualDisk.md) - diff --git a/docset/winserver2019-ps/tls/Get-TlsCipherSuite.md b/docset/winserver2019-ps/tls/Get-TlsCipherSuite.md index 0125e7c5f9..9aea845b2a 100644 --- a/docset/winserver2019-ps/tls/Get-TlsCipherSuite.md +++ b/docset/winserver2019-ps/tls/Get-TlsCipherSuite.md @@ -24,7 +24,7 @@ The **Get-TlsCipherSuite** cmdlet gets an ordered collection of cipher suites fo For more information about the TLS cipher suites, see the documentation for the Enable-TlsCipherSuite cmdlet or type `Get-Help Enable-TlsCipherSuite`. -For more information about protocol versions , see [BCRYPT_KDF_TLS_PRF (L"TLS_PRF")](https://docs.microsoft.com/windows/desktop/api/bcrypt/nf-bcrypt-bcryptderivekey#bcrypt_kdf_tls_prf-ltls_prf) . +For more information about protocol versions , see [BCRYPT_KDF_TLS_PRF (L"TLS_PRF")](/windows/desktop/api/bcrypt/nf-bcrypt-bcryptderivekey#bcrypt_kdf_tls_prf-ltls_prf) . ## EXAMPLES diff --git a/docset/winserver2019-ps/updateservices/Add-WsusDynamicCategory.md b/docset/winserver2019-ps/updateservices/Add-WsusDynamicCategory.md index 791ec3d6ee..a03b65b132 100644 --- a/docset/winserver2019-ps/updateservices/Add-WsusDynamicCategory.md +++ b/docset/winserver2019-ps/updateservices/Add-WsusDynamicCategory.md @@ -38,7 +38,7 @@ In order to transfer dynamic categories from one update server to another, pass This cmdlet is used to add Dynamic Categories to WSUS, based on the type of requirement (computer model, device or application). The definition of Dynamic Categories in a WSUS implementation helps to categorize the applying of updates to the different categories available. -In some cases, you need advanced automation when using Dynamic Categories. If you want to download a specific device driver for a specific group of computers in the physical network, for example, advanced automation is required to use Dynamic Categories. In this case, the use of [Microsoft Endpoint Configuration Manager](https://docs.microsoft.com/configmgr/) is needed to [install and configure a software update point](https://docs.microsoft.com/configmgr/sum/get-started/install-a-software-update-point) feature. +In some cases, you need advanced automation when using Dynamic Categories. If you want to download a specific device driver for a specific group of computers in the physical network, for example, advanced automation is required to use Dynamic Categories. In this case, the use of [Microsoft Endpoint Configuration Manager](/configmgr/) is needed to [install and configure a software update point](/configmgr/sum/get-started/install-a-software-update-point) feature. ## EXAMPLES diff --git a/docset/winserver2019-ps/vpnclient/Add-VpnConnection.md b/docset/winserver2019-ps/vpnclient/Add-VpnConnection.md index fdc2c8645b..e689b22321 100644 --- a/docset/winserver2019-ps/vpnclient/Add-VpnConnection.md +++ b/docset/winserver2019-ps/vpnclient/Add-VpnConnection.md @@ -157,7 +157,7 @@ PS C:\> $EAPXml = [xml]Get-Content -Path C:\eap-config.xml PS C:\> Add-VpnConnection -Name "Test6" -ServerAddress "10.1.1.1" -TunnelType "L2tp" -EncryptionLevel "Required" -AuthenticationMethod Eap -SplitTunneling -AllUserConnection -RememberCredential -EapConfigXmlStream $EAPXml ``` -This set of commands adds a VPN connection using an already generated EAP XML configuration. For more information about how to generate EAP XML configuration, see [EAP Configuration](https://docs.microsoft.com/windows/client-management/mdm/eap-configuration). +This set of commands adds a VPN connection using an already generated EAP XML configuration. For more information about how to generate EAP XML configuration, see [EAP Configuration](/windows/client-management/mdm/eap-configuration). ## PARAMETERS @@ -574,4 +574,3 @@ This cmdlet returns a **VpnConnection** object that contains the VPN connection [Remove-VpnConnection](./Remove-VpnConnection.md) [New-EapConfiguration](./New-EapConfiguration.md) - diff --git a/docset/winserver2019-ps/vpnclient/New-EapConfiguration.md b/docset/winserver2019-ps/vpnclient/New-EapConfiguration.md index bd3b7f5f95..68297083de 100644 --- a/docset/winserver2019-ps/vpnclient/New-EapConfiguration.md +++ b/docset/winserver2019-ps/vpnclient/New-EapConfiguration.md @@ -64,8 +64,8 @@ PS C:\> $A = New-EapConfiguration -UseWinlogonCredential This command creates an EAP configuration object, customized by the *UseWinlogonCredential* parameter, and stores it in the variable named $A. By specifying the *UseWinlogonCredential* parameter, the EAP configuration object is configured to use MSCHAPv2 as the authentication method, and that Windows logon credentials are used automatically when connecting with the VPN connection profile. -See [VPN authentication options](https://docs.microsoft.com/windows/security/identity-protection/vpn/vpn-authentication) -and [Add connectivity profiles](https://docs.microsoft.com/windows/configuration/wcd/wcd-connectivityprofiles#vpn-1) to learn more about VPN authentication methods. +See [VPN authentication options](/windows/security/identity-protection/vpn/vpn-authentication) +and [Add connectivity profiles](/windows/configuration/wcd/wcd-connectivityprofiles#vpn-1) to learn more about VPN authentication methods. ### Example 3: Create a TLS customized EAP configuration object ``` @@ -416,4 +416,3 @@ This cmdlet returns a **VpnConnection** object that contains the VPN connection [Add-VpnConnection](./Add-VpnConnection.md) [Set-VpnConnection](./Set-VpnConnection.md) - diff --git a/docset/winserver2019-ps/vpnclient/Set-VpnConnectionProxy.md b/docset/winserver2019-ps/vpnclient/Set-VpnConnectionProxy.md index 9fd5ba0666..4a8e4e42a3 100644 --- a/docset/winserver2019-ps/vpnclient/Set-VpnConnectionProxy.md +++ b/docset/winserver2019-ps/vpnclient/Set-VpnConnectionProxy.md @@ -108,7 +108,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml diff --git a/docset/winserver2019-ps/webadministration/Get-WebApplication.md b/docset/winserver2019-ps/webadministration/Get-WebApplication.md index 60bca7b875..a434f969ff 100644 --- a/docset/winserver2019-ps/webadministration/Get-WebApplication.md +++ b/docset/winserver2019-ps/webadministration/Get-WebApplication.md @@ -84,4 +84,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Remove-WebApplication](./Remove-WebApplication.md) -[Microsoft.Web.Administration.ConfigurationElement#Application](https://docs.microsoft.com/dotnet/api/microsoft.web.administration.application?view=iis-dotnet) +[Microsoft.Web.Administration.ConfigurationElement#Application](/dotnet/api/microsoft.web.administration.application?view=iis-dotnet) diff --git a/docset/winserver2019-ps/webadministration/New-WebAppPool.md b/docset/winserver2019-ps/webadministration/New-WebAppPool.md index ed04d27f60..386a267566 100644 --- a/docset/winserver2019-ps/webadministration/New-WebAppPool.md +++ b/docset/winserver2019-ps/webadministration/New-WebAppPool.md @@ -20,7 +20,7 @@ New-WebAppPool [-Name] [-Force] [] ``` ## DESCRIPTION -The **New-WebAppPool** cmdlet creates an Internet Information Services (IIS) application pool. For changing different properties of the application pool after creation, see [PowerShell Snap-in: Making Configuration Changes to Websites and App Pools](https://docs.microsoft.com/iis/manage/powershell/powershell-snap-in-making-simple-configuration-changes-to-web-sites-and-application-pools). +The **New-WebAppPool** cmdlet creates an Internet Information Services (IIS) application pool. For changing different properties of the application pool after creation, see [PowerShell Snap-in: Making Configuration Changes to Websites and App Pools](/iis/manage/powershell/powershell-snap-in-making-simple-configuration-changes-to-web-sites-and-application-pools). ## EXAMPLES From 5193dddd45d19390e63f79f2e461c51640787f34 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Tue, 6 Sep 2022 19:42:32 +0530 Subject: [PATCH 197/965] Update New-AdfsAzureMfaTenantCertificate.md Made changes reflecting what we did with https://docs.microsoft.com/en-us/powershell/module/adfs/set-adfsazuremfatenant?view=windowsserver2019-ps --- .../winserver2019-ps/adfs/New-AdfsAzureMfaTenantCertificate.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docset/winserver2019-ps/adfs/New-AdfsAzureMfaTenantCertificate.md b/docset/winserver2019-ps/adfs/New-AdfsAzureMfaTenantCertificate.md index cc10d1fe2b..fee5322970 100644 --- a/docset/winserver2019-ps/adfs/New-AdfsAzureMfaTenantCertificate.md +++ b/docset/winserver2019-ps/adfs/New-AdfsAzureMfaTenantCertificate.md @@ -47,8 +47,7 @@ These commands create a certificate for Azure MFA, register the certificate in a ### Example 2: Determine which certificate Azure MFA is using ``` $CertInBase64 = New-AdfsAzureMfaTenantCertificate -TenantID -$cert = Security.Cryptography.X509Certificates.X509Certificate2 -$cert | Format-List * +[Security.Cryptography.X509Certificates.X509Certificate2]([System.Convert]::FromBase64String($CertInBase64)) ``` After AD FS has been configured for Azure MFA, this command determines which certificate Azure MFA is using and when it expires. From e66a3472fb930ed576d11cdc530da51a8f049444 Mon Sep 17 00:00:00 2001 From: Sean Wheeler Date: Wed, 7 Sep 2022 08:02:36 -0500 Subject: [PATCH 198/965] Update Set-RDCertificate.md --- docset/winserver2019-ps/rdmgmt/Set-RDCertificate.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docset/winserver2019-ps/rdmgmt/Set-RDCertificate.md b/docset/winserver2019-ps/rdmgmt/Set-RDCertificate.md index 22c6197844..b6c4089cee 100644 --- a/docset/winserver2019-ps/rdmgmt/Set-RDCertificate.md +++ b/docset/winserver2019-ps/rdmgmt/Set-RDCertificate.md @@ -176,9 +176,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the following common parameters: *-Debug*, *-ErrorAction*, *-ErrorVariable*, *-InformationAction*, *-InformationVariable*, *-OutVariable*, *-OutBuffer*, *-PipelineVariable*, *-Verbose*, *-WarningAction*, and *-WarningVariable*. -For more information, see [about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-6). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## Inputs From 039576af0a28d1ba755f0747b7d1439dfbc29115 Mon Sep 17 00:00:00 2001 From: Alex Buck Date: Fri, 9 Sep 2022 07:55:51 -0400 Subject: [PATCH 199/965] Update docset/winserver2019-ps/dism/Set-WindowsReservedStorageState.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2019-ps/dism/Set-WindowsReservedStorageState.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/dism/Set-WindowsReservedStorageState.md b/docset/winserver2019-ps/dism/Set-WindowsReservedStorageState.md index 4be2ef0dc1..37e7ef737e 100644 --- a/docset/winserver2019-ps/dism/Set-WindowsReservedStorageState.md +++ b/docset/winserver2019-ps/dism/Set-WindowsReservedStorageState.md @@ -18,7 +18,7 @@ Set-WindowsReservedStorageState -State [-LogPath ``` ## DESCRIPTION -Sets the state of reserved storage. This command line option is only supported for online Windows images. If reserved storage is in use, it may not be disabled, and the following error is returned: This operation is not supported when reserved storage is in use. Please wait for any servicing operations to complete and then try again later. Changes to reserved storage state are reflected in Sysprep generalized Windows images. For more information see [Sysprep (Generalize) a Windows installation](/windows-hardware/manufacture/desktop/sysprep--system-preparation--overview) +Sets the state of reserved storage. This command line option is only supported for online Windows images. If reserved storage is in use, it may not be disabled, and the following error is returned: This operation is not supported when reserved storage is in use. Please wait for any servicing operations to complete and then try again later. Changes to reserved storage state are reflected in Sysprep generalized Windows images. For more information, see [Sysprep (Generalize) a Windows installation](/windows-hardware/manufacture/desktop/sysprep--system-preparation--overview). ## EXAMPLES From b9856c62d512aa88cafae88ffb445fddbc2a2037 Mon Sep 17 00:00:00 2001 From: Alex Buck Date: Fri, 9 Sep 2022 07:56:00 -0400 Subject: [PATCH 200/965] Update docset/winserver2019-ps/storage/Get-VirtualDisk.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2019-ps/storage/Get-VirtualDisk.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/storage/Get-VirtualDisk.md b/docset/winserver2019-ps/storage/Get-VirtualDisk.md index 3afce59ed9..271f1b3e89 100644 --- a/docset/winserver2019-ps/storage/Get-VirtualDisk.md +++ b/docset/winserver2019-ps/storage/Get-VirtualDisk.md @@ -624,7 +624,7 @@ You can use the pipeline operator to pass an MSFT_TargetVirtualDisk object to th ## OUTPUTS ### Microsoft.Management.Infrastructure.CimInstance#ROOT/Microsoft/Windows/Storage/MSFT_VirtualDisk -This cmdlet outputs an object that represents the specified virtual disk. For more information about output object type, please see [MSFT_VirtualDisk class](/previous-versions/windows/desktop/stormgmt/msft-virtualdisk) +This cmdlet outputs an object that represents the specified virtual disk. For more information about output object type, see [MSFT_VirtualDisk class](/previous-versions/windows/desktop/stormgmt/msft-virtualdisk). ## NOTES From 062511649aa4e5c72a73d149081cc1955bc72a80 Mon Sep 17 00:00:00 2001 From: Alex Buck Date: Fri, 9 Sep 2022 07:56:19 -0400 Subject: [PATCH 201/965] Update docset/winserver2019-ps/international/Set-WinDefaultInputMethodOverride.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- .../international/Set-WinDefaultInputMethodOverride.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/international/Set-WinDefaultInputMethodOverride.md b/docset/winserver2019-ps/international/Set-WinDefaultInputMethodOverride.md index b3c6ccf722..780444c1d3 100644 --- a/docset/winserver2019-ps/international/Set-WinDefaultInputMethodOverride.md +++ b/docset/winserver2019-ps/international/Set-WinDefaultInputMethodOverride.md @@ -56,7 +56,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS ### InputTIP -You can pipe a locale ID and a keyboard language ID (KLID). See [Default Input Profiles (Input Locales) in Windows](/windows-hardware/manufacture/desktop/default-input-locales-for-windows-language-packs) +You can pipe a locale ID and a keyboard language ID (KLID). See [Default Input Profiles (Input Locales) in Windows](/windows-hardware/manufacture/desktop/default-input-locales-for-windows-language-packs). ## OUTPUTS From bc63dbd4fa6b8c4e9b9f544b0b10f17ec5214665 Mon Sep 17 00:00:00 2001 From: Alex Buck Date: Fri, 9 Sep 2022 07:56:30 -0400 Subject: [PATCH 202/965] Update docset/winserver2019-ps/tls/Get-TlsCipherSuite.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2019-ps/tls/Get-TlsCipherSuite.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/tls/Get-TlsCipherSuite.md b/docset/winserver2019-ps/tls/Get-TlsCipherSuite.md index 9aea845b2a..9205a6c92f 100644 --- a/docset/winserver2019-ps/tls/Get-TlsCipherSuite.md +++ b/docset/winserver2019-ps/tls/Get-TlsCipherSuite.md @@ -24,7 +24,7 @@ The **Get-TlsCipherSuite** cmdlet gets an ordered collection of cipher suites fo For more information about the TLS cipher suites, see the documentation for the Enable-TlsCipherSuite cmdlet or type `Get-Help Enable-TlsCipherSuite`. -For more information about protocol versions , see [BCRYPT_KDF_TLS_PRF (L"TLS_PRF")](/windows/desktop/api/bcrypt/nf-bcrypt-bcryptderivekey#bcrypt_kdf_tls_prf-ltls_prf) . +For more information about protocol versions , see [BCRYPT_KDF_TLS_PRF (L"TLS_PRF")](/windows/desktop/api/bcrypt/nf-bcrypt-bcryptderivekey#bcrypt_kdf_tls_prf-ltls_prf). ## EXAMPLES From 4343345ed0e2abae10c9da2214cbccb79de812a1 Mon Sep 17 00:00:00 2001 From: Alex Buck Date: Fri, 9 Sep 2022 07:56:47 -0400 Subject: [PATCH 203/965] Update docset/winserver2019-ps/scheduledtasks/Register-ScheduledTask.md Co-authored-by: Sean Wheeler --- .../scheduledtasks/Register-ScheduledTask.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/scheduledtasks/Register-ScheduledTask.md b/docset/winserver2019-ps/scheduledtasks/Register-ScheduledTask.md index 8a767187d6..b05619e2e8 100644 --- a/docset/winserver2019-ps/scheduledtasks/Register-ScheduledTask.md +++ b/docset/winserver2019-ps/scheduledtasks/Register-ScheduledTask.md @@ -342,7 +342,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS From a3c09f9d63918c484d8be8329eecb56cec552f28 Mon Sep 17 00:00:00 2001 From: Alex Buck Date: Sat, 3 Sep 2022 12:40:41 -0400 Subject: [PATCH 204/965] [BULK UPDATE] DocuTune - Fix build validation issues: docs-link-absolute --- README.md | 4 ++-- docset/docs-conceptual/mdop/get-started.md | 2 +- docset/mdop/mbam/get-mbambitlockerrecoverykey.md | 4 +--- docset/mdop/mbam/get-mbamtpmownerpassword.md | 4 +--- docset/mdop/mbam/read-adrecoveryinformation.md | 4 +--- docset/mdop/mbam/read-adtpminformation.md | 4 +--- docset/mdop/mbam/test-mbamdatabase.md | 4 +--- docset/mdop/mbam/test-mbamreport.md | 4 +--- docset/mdop/mbam/test-mbamwebapplication.md | 4 +--- docset/mdop/mbam/write-mbamcomputeruser.md | 4 +--- docset/mdop/mbam/write-mbamrecoveryinformation.md | 4 +--- docset/mdop/mbam/write-mbamtpminformation.md | 4 +--- docset/winserver2012-ps/activedirectory/Get-ADComputer.md | 7 +++---- docset/winserver2012-ps/activedirectory/Get-ADUser.md | 2 +- docset/winserver2012-ps/activedirectory/New-ADGroup.md | 3 +-- .../adcsdeployment/install-adcscertificationauthority.md | 2 +- docset/winserver2012-ps/adrmsadmin/Export-RmsTPD.md | 3 +-- docset/winserver2012-ps/bitlocker/Get-BitLockerVolume.md | 5 ++--- .../bitlocker/Remove-BitLockerKeyProtector.md | 2 +- .../winserver2012-ps/deduplication/Disable-DedupVolume.md | 3 +-- .../winserver2012-ps/deduplication/Enable-DedupVolume.md | 3 +-- docset/winserver2012-ps/deduplication/Get-DedupJob.md | 3 +-- docset/winserver2012-ps/deduplication/Get-DedupMetadata.md | 3 +-- docset/winserver2012-ps/deduplication/Get-DedupSchedule.md | 3 +-- docset/winserver2012-ps/deduplication/Get-DedupStatus.md | 3 +-- docset/winserver2012-ps/deduplication/Get-DedupVolume.md | 3 +-- .../deduplication/Measure-DedupFileMetadata.md | 3 +-- docset/winserver2012-ps/deduplication/New-DedupSchedule.md | 3 +-- .../winserver2012-ps/deduplication/Remove-DedupSchedule.md | 3 +-- docset/winserver2012-ps/deduplication/Set-DedupSchedule.md | 3 +-- docset/winserver2012-ps/deduplication/Set-DedupVolume.md | 3 +-- docset/winserver2012-ps/deduplication/Start-DedupJob.md | 3 +-- docset/winserver2012-ps/deduplication/Stop-DedupJob.md | 3 +-- .../winserver2012-ps/deduplication/Update-DedupStatus.md | 3 +-- docset/winserver2012-ps/dfsn/Get-DfsnFolderTarget.md | 5 ++--- .../winserver2012-ps/dhcpserver/Get-DhcpServerVersion.md | 3 +-- .../dhcpserver/Get-DhcpServerv4FreeIPAddress.md | 3 +-- .../winserver2012-ps/dhcpserver/Get-DhcpServerv4Lease.md | 3 +-- .../dhcpserver/Get-DhcpServerv6FreeIPAddress.md | 3 +-- .../dhcpserver/Get-DhcpServerv6Statistics.md | 3 +-- docset/winserver2012-ps/dhcpserver/Import-DhcpServer.md | 3 +-- docset/winserver2012-ps/dism/Add-AppxProvisionedPackage.md | 4 ++-- docset/winserver2012-ps/dnsclient/Set-DnsClient.md | 3 +-- docset/winserver2012-ps/dnsserver/Get-DnsServer.md | 3 +-- docset/winserver2012-ps/hyper-v/Set-VMReplicationServer.md | 2 +- docset/winserver2012-ps/iscsi/Connect-IscsiTarget.md | 3 +-- docset/winserver2012-ps/iscsi/Disconnect-IscsiTarget.md | 2 +- docset/winserver2012-ps/iscsi/Get-IscsiConnection.md | 2 +- docset/winserver2012-ps/iscsi/Get-IscsiSession.md | 2 +- docset/winserver2012-ps/iscsi/Get-IscsiTarget.md | 2 +- 50 files changed, 56 insertions(+), 105 deletions(-) diff --git a/README.md b/README.md index f8caac7543..20d7a806e7 100644 --- a/README.md +++ b/README.md @@ -4,8 +4,8 @@ Welcome! This repository houses the Windows 10, Windows Server 2016, and MDOP Po Edits to this content are published in the following places: -- [Windows 10 and Windows Server 2016](https://docs.microsoft.com/en-us/powershell/windows/get-started?view=win10-ps) -- [Microsoft Desktop Optimization Pack](https://docs.microsoft.com/en-us/powershell/mdop/get-started?view=win-mdop2-ps) +- [Windows 10 and Windows Server 2016](https://docs.microsoft.com/powershell/windows/get-started?view=win10-ps) +- [Microsoft Desktop Optimization Pack](https://docs.microsoft.com/powershell/mdop/get-started?view=win-mdop2-ps) ## PowerShell Updatable Help (CabGen) CI Build Status diff --git a/docset/docs-conceptual/mdop/get-started.md b/docset/docs-conceptual/mdop/get-started.md index c90eefffce..ec24f1292d 100644 --- a/docset/docs-conceptual/mdop/get-started.md +++ b/docset/docs-conceptual/mdop/get-started.md @@ -15,7 +15,7 @@ maintain, configure, and develop new features for MDOP. ## MDOP Automation with Windows PowerShell The table below shows the latest published version of the Help for each module. The Help is -available in docs.microsoft.com through the links below, or as Updateable Help files. Updateable +available through the links below, or as Updateable Help files. Updateable Help was introduced with Windows PowerShell 3.0 and enables you to have the latest Help topics available locally on your computer by using the Update-Help cmdlet. For more information, see [about_Updatable_Help](/powershell/module/microsoft.powershell.core/about/about_updatable_help). diff --git a/docset/mdop/mbam/get-mbambitlockerrecoverykey.md b/docset/mdop/mbam/get-mbambitlockerrecoverykey.md index a3cf56e468..769cce138e 100644 --- a/docset/mdop/mbam/get-mbambitlockerrecoverykey.md +++ b/docset/mdop/mbam/get-mbambitlockerrecoverykey.md @@ -136,6 +136,4 @@ The BitLocker recovery key for the specified volume. ## RELATED LINKS -[Microsoft BitLocker Administration and Monitoring](https://docs.microsoft.com/microsoft-desktop-optimization-pack/mbam-v25/) - - +[Microsoft BitLocker Administration and Monitoring](/microsoft-desktop-optimization-pack/mbam-v25/) diff --git a/docset/mdop/mbam/get-mbamtpmownerpassword.md b/docset/mdop/mbam/get-mbamtpmownerpassword.md index 28eced7193..5e23d782c3 100644 --- a/docset/mdop/mbam/get-mbamtpmownerpassword.md +++ b/docset/mdop/mbam/get-mbamtpmownerpassword.md @@ -145,6 +145,4 @@ The TPM owner password. [Write-MbamTPMInformation](write-mbamtpminformation.md) -[Microsoft BitLocker Administration and Monitoring](https://docs.microsoft.com/microsoft-desktop-optimization-pack/mbam-v25/) - - +[Microsoft BitLocker Administration and Monitoring](/microsoft-desktop-optimization-pack/mbam-v25/) diff --git a/docset/mdop/mbam/read-adrecoveryinformation.md b/docset/mdop/mbam/read-adrecoveryinformation.md index 6ca1920e0b..2f81dfa71b 100644 --- a/docset/mdop/mbam/read-adrecoveryinformation.md +++ b/docset/mdop/mbam/read-adrecoveryinformation.md @@ -277,6 +277,4 @@ Time DateTime [Read-ADTpmInformation](read-adtpminformation.md) -[Microsoft BitLocker Administration and Monitoring](https://docs.microsoft.com/microsoft-desktop-optimization-pack/mbam-v25/) - - +[Microsoft BitLocker Administration and Monitoring](/microsoft-desktop-optimization-pack/mbam-v25/) diff --git a/docset/mdop/mbam/read-adtpminformation.md b/docset/mdop/mbam/read-adtpminformation.md index 4a77d2dba0..513e8ffebe 100644 --- a/docset/mdop/mbam/read-adtpminformation.md +++ b/docset/mdop/mbam/read-adtpminformation.md @@ -222,6 +222,4 @@ Time DateTime [Write-MbamRecoveryInformation](write-mbamrecoveryinformation.md) -[Microsoft BitLocker Administration and Monitoring](https://docs.microsoft.com/microsoft-desktop-optimization-pack/mbam-v25/) - - +[Microsoft BitLocker Administration and Monitoring](/microsoft-desktop-optimization-pack/mbam-v25/) diff --git a/docset/mdop/mbam/test-mbamdatabase.md b/docset/mdop/mbam/test-mbamdatabase.md index abada0a6c7..bf0e46893f 100644 --- a/docset/mdop/mbam/test-mbamdatabase.md +++ b/docset/mdop/mbam/test-mbamdatabase.md @@ -197,6 +197,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Enable-MbamWebApplication](enable-mbamwebapplication.md) -[Microsoft BitLocker Administration and Monitoring](https://docs.microsoft.com/microsoft-desktop-optimization-pack/mbam-v25/) - - +[Microsoft BitLocker Administration and Monitoring](/microsoft-desktop-optimization-pack/mbam-v25/) diff --git a/docset/mdop/mbam/test-mbamreport.md b/docset/mdop/mbam/test-mbamreport.md index b555eee778..f8e1da0f1b 100644 --- a/docset/mdop/mbam/test-mbamreport.md +++ b/docset/mdop/mbam/test-mbamreport.md @@ -153,6 +153,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Get-MbamReport](get-mbamreport.md) -[Microsoft BitLocker Administration and Monitoring](https://docs.microsoft.com/microsoft-desktop-optimization-pack/mbam-v25/) - - +[Microsoft BitLocker Administration and Monitoring](/microsoft-desktop-optimization-pack/mbam-v25/) diff --git a/docset/mdop/mbam/test-mbamwebapplication.md b/docset/mdop/mbam/test-mbamwebapplication.md index 6a84a2bcfb..2872894bee 100644 --- a/docset/mdop/mbam/test-mbamwebapplication.md +++ b/docset/mdop/mbam/test-mbamwebapplication.md @@ -526,6 +526,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Get-MbamWebApplication](get-mbamwebapplication.md) -[Microsoft BitLocker Administration and Monitoring](https://docs.microsoft.com/microsoft-desktop-optimization-pack/mbam-v25/) - - +[Microsoft BitLocker Administration and Monitoring](/microsoft-desktop-optimization-pack/mbam-v25/) diff --git a/docset/mdop/mbam/write-mbamcomputeruser.md b/docset/mdop/mbam/write-mbamcomputeruser.md index d7beb8b082..939f151cab 100644 --- a/docset/mdop/mbam/write-mbamcomputeruser.md +++ b/docset/mdop/mbam/write-mbamcomputeruser.md @@ -207,6 +207,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Write-MbamTPMInformation](write-mbamtpminformation.md) -[Microsoft BitLocker Administration and Monitoring](https://docs.microsoft.com/microsoft-desktop-optimization-pack/mbam-v25/) - - +[Microsoft BitLocker Administration and Monitoring](/microsoft-desktop-optimization-pack/mbam-v25/) diff --git a/docset/mdop/mbam/write-mbamrecoveryinformation.md b/docset/mdop/mbam/write-mbamrecoveryinformation.md index 228bc53008..d1f423e964 100644 --- a/docset/mdop/mbam/write-mbamrecoveryinformation.md +++ b/docset/mdop/mbam/write-mbamrecoveryinformation.md @@ -288,6 +288,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Write-MbamTPMInformation](write-mbamtpminformation.md) -[Microsoft BitLocker Administration and Monitoring](https://docs.microsoft.com/microsoft-desktop-optimization-pack/mbam-v25/) - - +[Microsoft BitLocker Administration and Monitoring](/microsoft-desktop-optimization-pack/mbam-v25/) diff --git a/docset/mdop/mbam/write-mbamtpminformation.md b/docset/mdop/mbam/write-mbamtpminformation.md index 5b60d3e4df..5f5efeca6f 100644 --- a/docset/mdop/mbam/write-mbamtpminformation.md +++ b/docset/mdop/mbam/write-mbamtpminformation.md @@ -205,6 +205,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Write-MbamRecoveryInformation](write-mbamrecoveryinformation.md) -[Microsoft BitLocker Administration and Monitoring](https://docs.microsoft.com/microsoft-desktop-optimization-pack/mbam-v25/) - - +[Microsoft BitLocker Administration and Monitoring](/microsoft-desktop-optimization-pack/mbam-v25/) diff --git a/docset/winserver2012-ps/activedirectory/Get-ADComputer.md b/docset/winserver2012-ps/activedirectory/Get-ADComputer.md index 443dc5659e..152813d59f 100644 --- a/docset/winserver2012-ps/activedirectory/Get-ADComputer.md +++ b/docset/winserver2012-ps/activedirectory/Get-ADComputer.md @@ -42,7 +42,7 @@ You can also set the parameter to a computer object variable, such as `$, type `Get-Help about_ActiveDirectory_ObjectModel`. -Note: For String parameter type, PowerShell will cast the filter query to a string while processing the command. When using a string variable as a value in the filter component, make sure that it complies with the [PowerShell Quoting Rules](https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_quoting_rules). For example, if the filter expression is double-quoted, the variable should be enclosed using single quotation marks: +Note: For String parameter type, PowerShell will cast the filter query to a string while processing the command. When using a string variable as a value in the filter component, make sure that it complies with the [PowerShell Quoting Rules](/powershell/module/microsoft.powershell.core/about/about_quoting_rules). For example, if the filter expression is double-quoted, the variable should be enclosed using single quotation marks: **Get-ADUser -Filter "Name -like '$UserName'"**. On the contrary, if curly braces are used to enclose the filter, the variable should not be quoted at all: **Get-ADUser -Filter {Name -like $UserName}**. Note: PowerShell wildcards other than \*, such as ?, are not supported by the *Filter* syntax. diff --git a/docset/winserver2012-ps/activedirectory/New-ADGroup.md b/docset/winserver2012-ps/activedirectory/New-ADGroup.md index 61b55815ac..5161b38e8b 100644 --- a/docset/winserver2012-ps/activedirectory/New-ADGroup.md +++ b/docset/winserver2012-ps/activedirectory/New-ADGroup.md @@ -602,5 +602,4 @@ By default, this cmdlet does not generate any output. [Set-ADGroup](./Set-ADGroup.md) -[Import-CSV](https://docs.microsoft.com/previous-versions/powershell/module/microsoft.powershell.utility/import-csv) - +[Import-CSV](/previous-versions/powershell/module/microsoft.powershell.utility/import-csv) diff --git a/docset/winserver2012-ps/adcsdeployment/install-adcscertificationauthority.md b/docset/winserver2012-ps/adcsdeployment/install-adcscertificationauthority.md index 357ccce64b..4aa7f2a4f7 100644 --- a/docset/winserver2012-ps/adcsdeployment/install-adcscertificationauthority.md +++ b/docset/winserver2012-ps/adcsdeployment/install-adcscertificationauthority.md @@ -50,7 +50,7 @@ You can import the cmdlet by running the following commands from Windows PowerSh To include the Certification Authority and Certificate Templates consoles in a CA installation, you must use the *IncludeManagementTools* parameter at the end of the `Install-WindowsFeature Adcs-Cert-Authority` command. -Int is equivalent to Int32 in the [.NET Framework](https://docs.microsoft.com/dotnet/csharp/language-reference/builtin-types/built-in-types). +Int is equivalent to Int32 in the [.NET Framework](/dotnet/csharp/language-reference/builtin-types/built-in-types). ## EXAMPLES diff --git a/docset/winserver2012-ps/adrmsadmin/Export-RmsTPD.md b/docset/winserver2012-ps/adrmsadmin/Export-RmsTPD.md index 03cda43ac5..54a7002a80 100644 --- a/docset/winserver2012-ps/adrmsadmin/Export-RmsTPD.md +++ b/docset/winserver2012-ps/adrmsadmin/Export-RmsTPD.md @@ -182,7 +182,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Import-RmsTUD](./Import-RmsTUD.md) -[Read-Host](https://docs.microsoft.com/powershell/module/microsoft.powershell.utility/read-host) +[Read-Host](/powershell/module/microsoft.powershell.utility/read-host) [ADRMSAdmin Module](./ADRMSAdmin.md) - diff --git a/docset/winserver2012-ps/bitlocker/Get-BitLockerVolume.md b/docset/winserver2012-ps/bitlocker/Get-BitLockerVolume.md index 77ff6ea401..313b66eafb 100644 --- a/docset/winserver2012-ps/bitlocker/Get-BitLockerVolume.md +++ b/docset/winserver2012-ps/bitlocker/Get-BitLockerVolume.md @@ -34,9 +34,9 @@ You can also use this cmdlet to view the following information about a BitLocker - Protection Status - Whether BitLocker currently uses a key protector to encrypt the volume encryption key. - EncryptionMethod - Indicates the encryption algorithm and key size used on the volume. -See [BitLocker Overview](https://docs.microsoft.com/windows/security/information-protection/bitlocker/bitlocker-overview) for more information. +See [BitLocker Overview](/windows/security/information-protection/bitlocker/bitlocker-overview) for more information. -For an overview of encryption methods, see [GetEncryptionMethod method](https://docs.microsoft.com/windows/win32/secprov/getencryptionmethod-win32-encryptablevolume). +For an overview of encryption methods, see [GetEncryptionMethod method](/windows/win32/secprov/getencryptionmethod-win32-encryptablevolume). ## EXAMPLES @@ -127,4 +127,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Enable-BitLocker](./Enable-BitLocker.md) [Enable-BitLockerAutoUnlock](./Enable-BitLockerAutoUnlock.md) - diff --git a/docset/winserver2012-ps/bitlocker/Remove-BitLockerKeyProtector.md b/docset/winserver2012-ps/bitlocker/Remove-BitLockerKeyProtector.md index 08b41459fa..7d0114fb03 100644 --- a/docset/winserver2012-ps/bitlocker/Remove-BitLockerKeyProtector.md +++ b/docset/winserver2012-ps/bitlocker/Remove-BitLockerKeyProtector.md @@ -28,7 +28,7 @@ Any encrypted data on the drive remains encrypted. We recommend you have at least one recovery password as key protector to a volume in case you need to recover a system. -For an overview of BitLocker, see [BitLocker Overview](https://docs.microsoft.com/previous-versions/windows/it-pro/windows-8.1-and-8/dn641993(v=ws.11)). +For an overview of BitLocker, see [BitLocker Overview](/previous-versions/windows/it-pro/windows-8.1-and-8/dn641993(v=ws.11)). ## EXAMPLES diff --git a/docset/winserver2012-ps/deduplication/Disable-DedupVolume.md b/docset/winserver2012-ps/deduplication/Disable-DedupVolume.md index 3efc490f9e..24543ded0c 100644 --- a/docset/winserver2012-ps/deduplication/Disable-DedupVolume.md +++ b/docset/winserver2012-ps/deduplication/Disable-DedupVolume.md @@ -79,7 +79,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -169,4 +169,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Set-DedupVolume](./Set-DedupVolume.md) [Update-DedupStatus](./Update-DedupStatus.md) - diff --git a/docset/winserver2012-ps/deduplication/Enable-DedupVolume.md b/docset/winserver2012-ps/deduplication/Enable-DedupVolume.md index d65ee31296..310e114b5b 100644 --- a/docset/winserver2012-ps/deduplication/Enable-DedupVolume.md +++ b/docset/winserver2012-ps/deduplication/Enable-DedupVolume.md @@ -64,7 +64,7 @@ Accept wildcard characters: False ``` ### -CimSession -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. ```yaml Type: CimSession[] Parameter Sets: (All) @@ -145,4 +145,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Get-DedupVolume](./Get-DedupVolume.md) [Set-DedupVolume](./Set-DedupVolume.md) - diff --git a/docset/winserver2012-ps/deduplication/Get-DedupJob.md b/docset/winserver2012-ps/deduplication/Get-DedupJob.md index d61fc18c7b..df768f9e3e 100644 --- a/docset/winserver2012-ps/deduplication/Get-DedupJob.md +++ b/docset/winserver2012-ps/deduplication/Get-DedupJob.md @@ -54,7 +54,7 @@ Accept wildcard characters: False ``` ### -CimSession -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. ```yaml Type: CimSession[] Parameter Sets: (All) @@ -142,4 +142,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Start-DedupJob](./Start-DedupJob.md) [Stop-DedupJob](./Stop-DedupJob.md) - diff --git a/docset/winserver2012-ps/deduplication/Get-DedupMetadata.md b/docset/winserver2012-ps/deduplication/Get-DedupMetadata.md index ff307ee344..cc81541f6e 100644 --- a/docset/winserver2012-ps/deduplication/Get-DedupMetadata.md +++ b/docset/winserver2012-ps/deduplication/Get-DedupMetadata.md @@ -90,7 +90,7 @@ Accept wildcard characters: False ``` ### -CimSession -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. ```yaml Type: CimSession[] Parameter Sets: (All) @@ -152,4 +152,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th ## NOTES ## RELATED LINKS - diff --git a/docset/winserver2012-ps/deduplication/Get-DedupSchedule.md b/docset/winserver2012-ps/deduplication/Get-DedupSchedule.md index 9c6424d55c..0e70c05cfe 100644 --- a/docset/winserver2012-ps/deduplication/Get-DedupSchedule.md +++ b/docset/winserver2012-ps/deduplication/Get-DedupSchedule.md @@ -70,7 +70,7 @@ Accept wildcard characters: False ``` ### -CimSession -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. ```yaml Type: CimSession[] Parameter Sets: (All) @@ -156,4 +156,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Remove-DedupSchedule](./Remove-DedupSchedule.md) [Set-DedupSchedule](./Set-DedupSchedule.md) - diff --git a/docset/winserver2012-ps/deduplication/Get-DedupStatus.md b/docset/winserver2012-ps/deduplication/Get-DedupStatus.md index 370a4d387d..17e790b335 100644 --- a/docset/winserver2012-ps/deduplication/Get-DedupStatus.md +++ b/docset/winserver2012-ps/deduplication/Get-DedupStatus.md @@ -54,7 +54,7 @@ Accept wildcard characters: False ``` ### -CimSession -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. ```yaml Type: CimSession[] Parameter Sets: (All) @@ -120,4 +120,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th ## RELATED LINKS [Update-DedupStatus](./Update-DedupStatus.md) - diff --git a/docset/winserver2012-ps/deduplication/Get-DedupVolume.md b/docset/winserver2012-ps/deduplication/Get-DedupVolume.md index 60940cb9fc..7e2e294bbd 100644 --- a/docset/winserver2012-ps/deduplication/Get-DedupVolume.md +++ b/docset/winserver2012-ps/deduplication/Get-DedupVolume.md @@ -67,7 +67,7 @@ Accept wildcard characters: False ``` ### -CimSession -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. ```yaml Type: CimSession[] Parameter Sets: (All) @@ -152,4 +152,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Enable-DedupVolume](./Enable-DedupVolume.md) [Set-DedupVolume](./Set-DedupVolume.md) - diff --git a/docset/winserver2012-ps/deduplication/Measure-DedupFileMetadata.md b/docset/winserver2012-ps/deduplication/Measure-DedupFileMetadata.md index ce3890c0ce..1457347529 100644 --- a/docset/winserver2012-ps/deduplication/Measure-DedupFileMetadata.md +++ b/docset/winserver2012-ps/deduplication/Measure-DedupFileMetadata.md @@ -58,7 +58,7 @@ Accept wildcard characters: False ``` ### -CimSession -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. ```yaml Type: CimSession[] Parameter Sets: (All) @@ -143,4 +143,3 @@ Accept wildcard characters: False ## RELATED LINKS [Update-DedupStatus](./Update-DedupStatus.md) - diff --git a/docset/winserver2012-ps/deduplication/New-DedupSchedule.md b/docset/winserver2012-ps/deduplication/New-DedupSchedule.md index 6bbf0161f0..0fa8b3be56 100644 --- a/docset/winserver2012-ps/deduplication/New-DedupSchedule.md +++ b/docset/winserver2012-ps/deduplication/New-DedupSchedule.md @@ -87,7 +87,7 @@ Accept wildcard characters: False ``` ### -CimSession -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. ```yaml Type: CimSession[] Parameter Sets: (All) @@ -346,4 +346,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Remove-DedupSchedule](./Remove-DedupSchedule.md) [Set-DedupSchedule](./Set-DedupSchedule.md) - diff --git a/docset/winserver2012-ps/deduplication/Remove-DedupSchedule.md b/docset/winserver2012-ps/deduplication/Remove-DedupSchedule.md index 4a1d47d66a..bbc110f756 100644 --- a/docset/winserver2012-ps/deduplication/Remove-DedupSchedule.md +++ b/docset/winserver2012-ps/deduplication/Remove-DedupSchedule.md @@ -70,7 +70,7 @@ Accept wildcard characters: False ``` ### -CimSession -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. ```yaml Type: CimSession[] Parameter Sets: (All) @@ -174,4 +174,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [New-DedupSchedule](./New-DedupSchedule.md) [Set-DedupSchedule](./Set-DedupSchedule.md) - diff --git a/docset/winserver2012-ps/deduplication/Set-DedupSchedule.md b/docset/winserver2012-ps/deduplication/Set-DedupSchedule.md index e8044d615d..8ce1966ab1 100644 --- a/docset/winserver2012-ps/deduplication/Set-DedupSchedule.md +++ b/docset/winserver2012-ps/deduplication/Set-DedupSchedule.md @@ -85,7 +85,7 @@ Accept wildcard characters: False ``` ### -CimSession -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. ```yaml Type: CimSession[] Parameter Sets: (All) @@ -372,4 +372,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [New-DedupSchedule](./New-DedupSchedule.md) [Remove-DedupSchedule](./Remove-DedupSchedule.md) - diff --git a/docset/winserver2012-ps/deduplication/Set-DedupVolume.md b/docset/winserver2012-ps/deduplication/Set-DedupVolume.md index 74804886d1..e4da6e3824 100644 --- a/docset/winserver2012-ps/deduplication/Set-DedupVolume.md +++ b/docset/winserver2012-ps/deduplication/Set-DedupVolume.md @@ -104,7 +104,7 @@ Accept wildcard characters: False ``` ### -CimSession -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. ```yaml Type: CimSession[] Parameter Sets: (All) @@ -328,4 +328,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Enable-DedupVolume](./Enable-DedupVolume.md) [Get-DedupVolume](./Get-DedupVolume.md) - diff --git a/docset/winserver2012-ps/deduplication/Start-DedupJob.md b/docset/winserver2012-ps/deduplication/Start-DedupJob.md index 696a786397..0fc0b26fb2 100644 --- a/docset/winserver2012-ps/deduplication/Start-DedupJob.md +++ b/docset/winserver2012-ps/deduplication/Start-DedupJob.md @@ -58,7 +58,7 @@ Accept wildcard characters: False ``` ### -CimSession -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. ```yaml Type: CimSession[] Parameter Sets: (All) @@ -289,4 +289,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Get-DedupJob](./Get-DedupJob.md) [Stop-DedupJob](./Stop-DedupJob.md) - diff --git a/docset/winserver2012-ps/deduplication/Stop-DedupJob.md b/docset/winserver2012-ps/deduplication/Stop-DedupJob.md index 4aade54c46..bd72f24184 100644 --- a/docset/winserver2012-ps/deduplication/Stop-DedupJob.md +++ b/docset/winserver2012-ps/deduplication/Stop-DedupJob.md @@ -66,7 +66,7 @@ Accept wildcard characters: False ``` ### -CimSession -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. ```yaml Type: CimSession[] Parameter Sets: (All) @@ -204,4 +204,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Get-DedupJob](./Get-DedupJob.md) [Start-DedupJob](./Start-DedupJob.md) - diff --git a/docset/winserver2012-ps/deduplication/Update-DedupStatus.md b/docset/winserver2012-ps/deduplication/Update-DedupStatus.md index 0fb9632243..494f62e2ee 100644 --- a/docset/winserver2012-ps/deduplication/Update-DedupStatus.md +++ b/docset/winserver2012-ps/deduplication/Update-DedupStatus.md @@ -99,7 +99,7 @@ Accept wildcard characters: False ``` ### -CimSession -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. ```yaml Type: CimSession[] Parameter Sets: (All) @@ -161,4 +161,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th ## RELATED LINKS [Get-DedupStatus](./Get-DedupStatus.md) - diff --git a/docset/winserver2012-ps/dfsn/Get-DfsnFolderTarget.md b/docset/winserver2012-ps/dfsn/Get-DfsnFolderTarget.md index 7b837f6144..267ed51735 100644 --- a/docset/winserver2012-ps/dfsn/Get-DfsnFolderTarget.md +++ b/docset/winserver2012-ps/dfsn/Get-DfsnFolderTarget.md @@ -22,7 +22,7 @@ The **Get-DfsnFolderTarget** cmdlet gets settings for targets of a Distributed F You can specify a DFS namespace folder path to see all the targets for that path. You can specify a namespace path and a target path to see settings for a particular target. -For more information about DFS namespaces, see [DFS Namespaces overview](https://docs.microsoft.com/windows-server/storage/dfs-namespaces/dfs-overview). +For more information about DFS namespaces, see [DFS Namespaces overview](/windows-server/storage/dfs-namespaces/dfs-overview). ## EXAMPLES @@ -65,7 +65,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -146,4 +146,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Remove-DfsnFolderTarget](./Remove-DfsnFolderTarget.md) [Set-DfsnFolderTarget](./Set-DfsnFolderTarget.md) - diff --git a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerVersion.md b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerVersion.md index a141bfd5cd..56b124fe73 100644 --- a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerVersion.md +++ b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerVersion.md @@ -53,7 +53,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -119,4 +119,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Get-DhcpServerDatabase](./Get-DhcpServerDatabase.md) [Get-DhcpServerSetting](./Get-DhcpServerSetting.md) - diff --git a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4FreeIPAddress.md b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4FreeIPAddress.md index 0609c9052c..f1ec5a6573 100644 --- a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4FreeIPAddress.md +++ b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4FreeIPAddress.md @@ -87,7 +87,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -209,4 +209,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th ## RELATED LINKS [Get-DhcpServerv6FreeIPAddress](./Get-DhcpServerv6FreeIPAddress.md) - diff --git a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4Lease.md b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4Lease.md index f39e33c1be..a3817f788c 100644 --- a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4Lease.md +++ b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4Lease.md @@ -155,7 +155,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -280,4 +280,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Get-DhcpServerv4Scope](./Get-DhcpServerv4Scope.md) [Remove-DhcpServerv4Lease](./Remove-DhcpServerv4Lease.md) - diff --git a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6FreeIPAddress.md b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6FreeIPAddress.md index 40499b8784..26dbfe65a3 100644 --- a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6FreeIPAddress.md +++ b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6FreeIPAddress.md @@ -87,7 +87,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. ```yaml Type: CimSession[] @@ -208,4 +208,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th ## RELATED LINKS [Get-DhcpServerv4FreeIPAddress](./Get-DhcpServerv4FreeIPAddress.md) - diff --git a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6Statistics.md b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6Statistics.md index ec9bf50318..693dddfb36 100644 --- a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6Statistics.md +++ b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6Statistics.md @@ -54,7 +54,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -116,4 +116,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th ## RELATED LINKS [Get-DhcpServerv6ScopeStatistics](./Get-DhcpServerv6ScopeStatistics.md) - diff --git a/docset/winserver2012-ps/dhcpserver/Import-DhcpServer.md b/docset/winserver2012-ps/dhcpserver/Import-DhcpServer.md index 1aea6404ac..989c1d1a76 100644 --- a/docset/winserver2012-ps/dhcpserver/Import-DhcpServer.md +++ b/docset/winserver2012-ps/dhcpserver/Import-DhcpServer.md @@ -151,7 +151,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -320,4 +320,3 @@ Accept wildcard characters: False [Export-DhcpServer](./Export-DhcpServer.md) [Restore-DhcpServer](./Restore-DhcpServer.md) - diff --git a/docset/winserver2012-ps/dism/Add-AppxProvisionedPackage.md b/docset/winserver2012-ps/dism/Add-AppxProvisionedPackage.md index 5f869e3593..2ca3035bab 100644 --- a/docset/winserver2012-ps/dism/Add-AppxProvisionedPackage.md +++ b/docset/winserver2012-ps/dism/Add-AppxProvisionedPackage.md @@ -36,7 +36,7 @@ For example, you must install the x86 dependency on the x86 image. You cannot install an app package (.appx) on an operating system that does not support Windows 8 apps. Apps are not supported on Server Core installations of Windows Server 2012, Windows Preinstallation Environment (Windows PE) 4.0, or on any versions of Windows older than Windows 8 and Windows Server 2012. -To install and run apps on Windows Server 2012, you must install the [Desktop Experience Overview](https://docs.microsoft.com/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/dn609826(v=ws.11)). +To install and run apps on Windows Server 2012, you must install the [Desktop Experience Overview](/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/dn609826(v=ws.11)). Use the *Online* parameter to specify the running operating system on your local computer, or use the *Path* parameter to specify the location of a mounted Windows image. @@ -47,7 +47,7 @@ Use the *FolderPath* parameter to specify the location of a folder of unpacked a To add an app package (.appx) for a particular user, or to test a package while developing your app, use the **Add-AppxPackage** cmdlet instead. -For more information, including requirements for app package provisioning, see [Sideload Apps with DISM](https://docs.microsoft.com/windows-hardware/manufacture/desktop/sideload-apps-with-dism-s14) and [How to develop an OEM app that uses a custom file](https://docs.microsoft.com/windows/win32/appxpkg/how-to-develop-oem-app-with-custom-file) in MicrosoftDocs. +For more information, including requirements for app package provisioning, see [Sideload Apps with DISM](/windows-hardware/manufacture/desktop/sideload-apps-with-dism-s14) and [How to develop an OEM app that uses a custom file](/windows/win32/appxpkg/how-to-develop-oem-app-with-custom-file) in MicrosoftDocs. ## EXAMPLES diff --git a/docset/winserver2012-ps/dnsclient/Set-DnsClient.md b/docset/winserver2012-ps/dnsclient/Set-DnsClient.md index 492d028a80..bcbe53efdb 100644 --- a/docset/winserver2012-ps/dnsclient/Set-DnsClient.md +++ b/docset/winserver2012-ps/dnsclient/Set-DnsClient.md @@ -74,7 +74,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -295,4 +295,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Get-DnsClient](./Get-DnsClient.md) [Register-DnsClient](./Register-DnsClient.md) - diff --git a/docset/winserver2012-ps/dnsserver/Get-DnsServer.md b/docset/winserver2012-ps/dnsserver/Get-DnsServer.md index fefec9ea60..161e076a69 100644 --- a/docset/winserver2012-ps/dnsserver/Get-DnsServer.md +++ b/docset/winserver2012-ps/dnsserver/Get-DnsServer.md @@ -21,7 +21,7 @@ The **Get-DnsServer** cmdlet retrieves a Domain Name System (DNS) server configu You can pipe the output of the **Get-DnsServer** cmdlet to the **Export-Clixml** cmdlet, which generates an XML file of the configuration. You can use the XML file to back up or transfer DNS settings between computers. -For more information about **Export-Clixml**, see [Using the Export-Clixml cmdlet](https://docs.microsoft.com/powershell/module/microsoft.powershell.utility/export-clixml). +For more information about **Export-Clixml**, see [Using the Export-Clixml cmdlet](/powershell/module/microsoft.powershell.utility/export-clixml). ## EXAMPLES @@ -126,4 +126,3 @@ Accept wildcard characters: False [Set-DnsServer](./Set-DnsServer.md) [Test-DnsServer](./Test-DnsServer.md) - diff --git a/docset/winserver2012-ps/hyper-v/Set-VMReplicationServer.md b/docset/winserver2012-ps/hyper-v/Set-VMReplicationServer.md index 3347cfff0e..ed30ae37c6 100644 --- a/docset/winserver2012-ps/hyper-v/Set-VMReplicationServer.md +++ b/docset/winserver2012-ps/hyper-v/Set-VMReplicationServer.md @@ -141,7 +141,7 @@ To display a list of certificates in the computer's My store and the thumbprint `PS C:\\\> dir | format-list` -For more information about certificate stores, see [Certificate stores](https://docs.microsoft.com/previous-versions/windows/it-pro/windows-server-2003/cc757138(v=ws.10). +For more information about certificate stores, see [Certificate stores](/previous-versions/windows/it-pro/windows-server-2003/cc757138(v=ws.10). ```yaml Type: String diff --git a/docset/winserver2012-ps/iscsi/Connect-IscsiTarget.md b/docset/winserver2012-ps/iscsi/Connect-IscsiTarget.md index f3bb5930cf..5496dec010 100644 --- a/docset/winserver2012-ps/iscsi/Connect-IscsiTarget.md +++ b/docset/winserver2012-ps/iscsi/Connect-IscsiTarget.md @@ -357,5 +357,4 @@ The path after the pound sign (`#`) provides the namespace and class name for th ## RELATED LINKS -[iSCSI Target Server Overview](https://docs.microsoft.com/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/hh848272(v=ws.11)) - +[iSCSI Target Server Overview](/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/hh848272(v=ws.11)) diff --git a/docset/winserver2012-ps/iscsi/Disconnect-IscsiTarget.md b/docset/winserver2012-ps/iscsi/Disconnect-IscsiTarget.md index 660a7c5451..ce3987758f 100644 --- a/docset/winserver2012-ps/iscsi/Disconnect-IscsiTarget.md +++ b/docset/winserver2012-ps/iscsi/Disconnect-IscsiTarget.md @@ -212,6 +212,6 @@ Accept wildcard characters: False ## RELATED LINKS -[iSCSI Target Server Overview](https://docs.microsoft.com/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/hh848272(v=ws.11)) +[iSCSI Target Server Overview](/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/hh848272(v=ws.11)) [Get-iSCSITarget](./Get-IscsiTarget.md) diff --git a/docset/winserver2012-ps/iscsi/Get-IscsiConnection.md b/docset/winserver2012-ps/iscsi/Get-IscsiConnection.md index 927e95db16..f241c4c1fe 100644 --- a/docset/winserver2012-ps/iscsi/Get-IscsiConnection.md +++ b/docset/winserver2012-ps/iscsi/Get-IscsiConnection.md @@ -338,7 +338,7 @@ The path after the pound sign (`#`) provides the namespace and class name for th ## RELATED LINKS -[iSCSI Target Server Overview](https://docs.microsoft.com/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/hh848272(v=ws.11)) +[iSCSI Target Server Overview](/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/hh848272(v=ws.11)) [Get-IscsiSession](./Get-IscsiSession.md) diff --git a/docset/winserver2012-ps/iscsi/Get-IscsiSession.md b/docset/winserver2012-ps/iscsi/Get-IscsiSession.md index 5a2ee7ae7a..5a6afde8f9 100644 --- a/docset/winserver2012-ps/iscsi/Get-IscsiSession.md +++ b/docset/winserver2012-ps/iscsi/Get-IscsiSession.md @@ -339,7 +339,7 @@ The path after the pound sign (`#`) provides the namespace and class name for th ## RELATED LINKS -[iSCSI Target Server Overview](https://docs.microsoft.com/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/hh848272(v=ws.11)) +[iSCSI Target Server Overview](/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/hh848272(v=ws.11)) [Get-IscsiConnection](./Get-IscsiConnection.md) diff --git a/docset/winserver2012-ps/iscsi/Get-IscsiTarget.md b/docset/winserver2012-ps/iscsi/Get-IscsiTarget.md index aedaf20f3e..3dd07f6444 100644 --- a/docset/winserver2012-ps/iscsi/Get-IscsiTarget.md +++ b/docset/winserver2012-ps/iscsi/Get-IscsiTarget.md @@ -209,7 +209,7 @@ The path after the pound sign (`#`) provides the namespace and class name for th ## RELATED LINKS -[iSCSI Target Server Overview](https://docs.microsoft.com/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/hh848272(v=ws.11)) +[iSCSI Target Server Overview](/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/hh848272(v=ws.11)) [Get-IscsiConnection](./Get-IscsiConnection.md) From 6147e694edf5c1a76121ceab6734e8eb92dd61ee Mon Sep 17 00:00:00 2001 From: Alex Buck Date: Tue, 6 Sep 2022 18:08:07 -0400 Subject: [PATCH 205/965] Update Set-VMReplicationServer.md --- docset/winserver2012-ps/hyper-v/Set-VMReplicationServer.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2012-ps/hyper-v/Set-VMReplicationServer.md b/docset/winserver2012-ps/hyper-v/Set-VMReplicationServer.md index ed30ae37c6..fd10a44070 100644 --- a/docset/winserver2012-ps/hyper-v/Set-VMReplicationServer.md +++ b/docset/winserver2012-ps/hyper-v/Set-VMReplicationServer.md @@ -141,7 +141,7 @@ To display a list of certificates in the computer's My store and the thumbprint `PS C:\\\> dir | format-list` -For more information about certificate stores, see [Certificate stores](/previous-versions/windows/it-pro/windows-server-2003/cc757138(v=ws.10). +For more information about certificate stores, see [Certificate stores](/previous-versions/windows/it-pro/windows-server-2003/cc757138(v=ws.10)). ```yaml Type: String From 6f4ddca909d26659ac5e51d9b6b9c27ce0234b88 Mon Sep 17 00:00:00 2001 From: Alex Buck Date: Fri, 9 Sep 2022 08:07:29 -0400 Subject: [PATCH 206/965] Update README.md Co-authored-by: Sean Wheeler --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 20d7a806e7..ed89ba0f65 100644 --- a/README.md +++ b/README.md @@ -4,8 +4,8 @@ Welcome! This repository houses the Windows 10, Windows Server 2016, and MDOP Po Edits to this content are published in the following places: -- [Windows 10 and Windows Server 2016](https://docs.microsoft.com/powershell/windows/get-started?view=win10-ps) -- [Microsoft Desktop Optimization Pack](https://docs.microsoft.com/powershell/mdop/get-started?view=win-mdop2-ps) +- [Windows 10 and Windows Server 2016](/powershell/windows/get-started?view=win10-ps&preserve-view=true) +- [Microsoft Desktop Optimization Pack](/powershell/mdop/get-started) ## PowerShell Updatable Help (CabGen) CI Build Status From 07ec9a997dee0c062139b027f80dbd080a17cfb1 Mon Sep 17 00:00:00 2001 From: Alex Buck Date: Fri, 9 Sep 2022 08:09:11 -0400 Subject: [PATCH 207/965] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ed89ba0f65..a6bc74039b 100644 --- a/README.md +++ b/README.md @@ -4,8 +4,8 @@ Welcome! This repository houses the Windows 10, Windows Server 2016, and MDOP Po Edits to this content are published in the following places: -- [Windows 10 and Windows Server 2016](/powershell/windows/get-started?view=win10-ps&preserve-view=true) -- [Microsoft Desktop Optimization Pack](/powershell/mdop/get-started) +- [Windows 10 and Windows Server 2016](https://docs.microsoft.com/powershell/windows/get-started?view=win10-ps&preserve-view=true) +- [Microsoft Desktop Optimization Pack](https://docs.microsoft.com/powershell/mdop/get-started) ## PowerShell Updatable Help (CabGen) CI Build Status From c22fdf4a3cde5ad3c7486a28ae6cfa3abbc3c04e Mon Sep 17 00:00:00 2001 From: Alex Buck Date: Sat, 3 Sep 2022 12:45:40 -0400 Subject: [PATCH 208/965] [BULK UPDATE] DocuTune - Fix build validation issues: docs-link-absolute --- docset/winserver2012-ps/iscsi/Get-IscsiTargetPortal.md | 2 +- docset/winserver2012-ps/iscsi/New-IscsiTargetPortal.md | 2 +- docset/winserver2012-ps/iscsi/Register-IscsiSession.md | 2 +- docset/winserver2012-ps/iscsi/Remove-IscsiTargetPortal.md | 2 +- docset/winserver2012-ps/iscsi/Set-IscsiChapSecret.md | 2 +- docset/winserver2012-ps/iscsi/Unregister-IscsiSession.md | 2 +- docset/winserver2012-ps/iscsi/Update-IscsiTarget.md | 2 +- docset/winserver2012-ps/msdtc/Test-Dtc.md | 3 +-- docset/winserver2012-ps/netadapter/Enable-NetAdapterVmq.md | 3 +-- docset/winserver2012-ps/netadapter/Get-NetAdapter.md | 5 ++--- .../netconnection/Get-NetConnectionProfile.md | 3 +-- .../netconnection/Set-NetConnectionProfile.md | 3 +-- .../netsecurity/Set-NetFirewallAddressFilter.md | 3 +-- docset/winserver2012-ps/nettcpip/New-NetRoute.md | 2 +- docset/winserver2012-ps/nettcpip/Set-NetRoute.md | 7 +++---- .../printmanagement/Get-PrintConfiguration.md | 3 +-- .../winserver2012-ps/scheduledtasks/New-ScheduledTask.md | 2 +- .../scheduledtasks/Register-ScheduledTask.md | 4 ++-- docset/winserver2012-ps/smbshare/Grant-SmbShareAccess.md | 3 +-- .../smbshare/Set-SmbServerConfiguration.md | 4 ++-- docset/winserver2012-ps/storage/Get-PhysicalDisk.md | 3 +-- docset/winserver2012-ps/vpnclient/Add-VpnConnection.md | 3 +-- .../webadministration/Get-WebApplication.md | 2 +- .../winserver2012-ps/webadministration/New-WebAppPool.md | 2 +- .../winserver2012r2-ps/activedirectory/Get-ADComputer.md | 7 +++---- docset/winserver2012r2-ps/activedirectory/Get-ADUser.md | 2 +- .../adcsdeployment/install-adcscertificationauthority.md | 2 +- .../bitlocker/Enable-BitLockerAutoUnlock.md | 3 +-- docset/winserver2012r2-ps/bitlocker/Get-BitLockerVolume.md | 5 ++--- .../bitlocker/Remove-BitLockerKeyProtector.md | 2 +- .../deduplication/Disable-DedupVolume.md | 3 +-- .../winserver2012r2-ps/deduplication/Enable-DedupVolume.md | 3 +-- .../winserver2012r2-ps/deduplication/Expand-DedupFile.md | 3 +-- docset/winserver2012r2-ps/deduplication/Get-DedupJob.md | 3 +-- .../winserver2012r2-ps/deduplication/Get-DedupMetadata.md | 3 +-- .../winserver2012r2-ps/deduplication/Get-DedupSchedule.md | 3 +-- docset/winserver2012r2-ps/deduplication/Get-DedupStatus.md | 3 +-- docset/winserver2012r2-ps/deduplication/Get-DedupVolume.md | 3 +-- .../deduplication/Measure-DedupFileMetadata.md | 3 +-- .../winserver2012r2-ps/deduplication/New-DedupSchedule.md | 3 +-- .../deduplication/Remove-DedupSchedule.md | 3 +-- .../winserver2012r2-ps/deduplication/Set-DedupSchedule.md | 3 +-- docset/winserver2012r2-ps/deduplication/Set-DedupVolume.md | 3 +-- docset/winserver2012r2-ps/deduplication/Start-DedupJob.md | 3 +-- docset/winserver2012r2-ps/deduplication/Stop-DedupJob.md | 3 +-- .../winserver2012r2-ps/deduplication/Update-DedupStatus.md | 3 +-- docset/winserver2012r2-ps/dfsn/Get-DfsnFolderTarget.md | 5 ++--- .../winserver2012r2-ps/dhcpserver/Get-DhcpServerVersion.md | 3 +-- .../dhcpserver/Get-DhcpServerv4FreeIPAddress.md | 3 +-- .../winserver2012r2-ps/dhcpserver/Get-DhcpServerv4Lease.md | 3 +-- 50 files changed, 59 insertions(+), 93 deletions(-) diff --git a/docset/winserver2012-ps/iscsi/Get-IscsiTargetPortal.md b/docset/winserver2012-ps/iscsi/Get-IscsiTargetPortal.md index 5671eca777..278371e713 100644 --- a/docset/winserver2012-ps/iscsi/Get-IscsiTargetPortal.md +++ b/docset/winserver2012-ps/iscsi/Get-IscsiTargetPortal.md @@ -273,7 +273,7 @@ The path after the pound sign (`#`) provides the namespace and class name for th ## RELATED LINKS -[iSCSI Target Server Overview](https://docs.microsoft.com/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/hh848272(v=ws.11)) +[iSCSI Target Server Overview](/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/hh848272(v=ws.11)) [Get-IscsiConnection](./Get-IscsiConnection.md) diff --git a/docset/winserver2012-ps/iscsi/New-IscsiTargetPortal.md b/docset/winserver2012-ps/iscsi/New-IscsiTargetPortal.md index 72edd7c9bb..bf15ac4c0a 100644 --- a/docset/winserver2012-ps/iscsi/New-IscsiTargetPortal.md +++ b/docset/winserver2012-ps/iscsi/New-IscsiTargetPortal.md @@ -244,4 +244,4 @@ The path after the pound sign (`#`) provides the namespace and class name for th ## RELATED LINKS -[iSCSI Target Server Overview](https://docs.microsoft.com/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/hh848272(v=ws.11)) +[iSCSI Target Server Overview](/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/hh848272(v=ws.11)) diff --git a/docset/winserver2012-ps/iscsi/Register-IscsiSession.md b/docset/winserver2012-ps/iscsi/Register-IscsiSession.md index 435826d81e..1ac42ec1cd 100644 --- a/docset/winserver2012-ps/iscsi/Register-IscsiSession.md +++ b/docset/winserver2012-ps/iscsi/Register-IscsiSession.md @@ -198,4 +198,4 @@ The path after the pound sign (`#`) provides the namespace and class name for th ## RELATED LINKS -[iSCSI Target Server Overview](https://docs.microsoft.com/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/hh848272(v=ws.11)) +[iSCSI Target Server Overview](/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/hh848272(v=ws.11)) diff --git a/docset/winserver2012-ps/iscsi/Remove-IscsiTargetPortal.md b/docset/winserver2012-ps/iscsi/Remove-IscsiTargetPortal.md index c4d62db60b..81737a98e6 100644 --- a/docset/winserver2012-ps/iscsi/Remove-IscsiTargetPortal.md +++ b/docset/winserver2012-ps/iscsi/Remove-IscsiTargetPortal.md @@ -239,4 +239,4 @@ Accept wildcard characters: False ## RELATED LINKS -[iSCSI Target Server Overview](https://docs.microsoft.com/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/hh848272(v=ws.11)) +[iSCSI Target Server Overview](/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/hh848272(v=ws.11)) diff --git a/docset/winserver2012-ps/iscsi/Set-IscsiChapSecret.md b/docset/winserver2012-ps/iscsi/Set-IscsiChapSecret.md index 27bb39667a..1452967b0e 100644 --- a/docset/winserver2012-ps/iscsi/Set-IscsiChapSecret.md +++ b/docset/winserver2012-ps/iscsi/Set-IscsiChapSecret.md @@ -106,4 +106,4 @@ Accept wildcard characters: False ## RELATED LINKS -[iSCSI Target Server Overview](https://docs.microsoft.com/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/hh848272(v=ws.11)) +[iSCSI Target Server Overview](/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/hh848272(v=ws.11)) diff --git a/docset/winserver2012-ps/iscsi/Unregister-IscsiSession.md b/docset/winserver2012-ps/iscsi/Unregister-IscsiSession.md index 21c547e564..2f857936d8 100644 --- a/docset/winserver2012-ps/iscsi/Unregister-IscsiSession.md +++ b/docset/winserver2012-ps/iscsi/Unregister-IscsiSession.md @@ -200,6 +200,6 @@ Accept wildcard characters: False ## RELATED LINKS -[iSCSI Target Server Overview](https://docs.microsoft.com/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/hh848272(v=ws.11)) +[iSCSI Target Server Overview](/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/hh848272(v=ws.11)) [Get-iSCSISession](./Get-IscsiSession.md) diff --git a/docset/winserver2012-ps/iscsi/Update-IscsiTarget.md b/docset/winserver2012-ps/iscsi/Update-IscsiTarget.md index 0e9a6a65a3..bbf47b4aef 100644 --- a/docset/winserver2012-ps/iscsi/Update-IscsiTarget.md +++ b/docset/winserver2012-ps/iscsi/Update-IscsiTarget.md @@ -249,7 +249,7 @@ The path after the pound sign (`#`) provides the namespace and class name for th ## RELATED LINKS -[iSCSI Target Server Overview](https://docs.microsoft.com/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/hh848272(v=ws.11)) +[iSCSI Target Server Overview](/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/hh848272(v=ws.11)) [Get-IscsiConnection](./Get-IscsiConnection.md) diff --git a/docset/winserver2012-ps/msdtc/Test-Dtc.md b/docset/winserver2012-ps/msdtc/Test-Dtc.md index dd42347890..3f4017e5ee 100644 --- a/docset/winserver2012-ps/msdtc/Test-Dtc.md +++ b/docset/winserver2012-ps/msdtc/Test-Dtc.md @@ -30,7 +30,7 @@ To run this cmdlet, you must first enable the firewall rule for Distributed Tran `netsh advfirewall firewall set rule group="Distributed Transaction Coordinator" new enable=yes` -For more information, see [Netsh Command Syntax, Contexts, and Formatting](https://docs.microsoft.com/en-us/windows-server/networking/technologies/netsh/netsh-contexts). +For more information, see [Netsh Command Syntax, Contexts, and Formatting](/windows-server/networking/technologies/netsh/netsh-contexts). To enable the rule using PowerShell run the following command: @@ -312,4 +312,3 @@ Accept wildcard characters: False [Stop-Dtc](./Stop-Dtc.md) [Uninstall-Dtc](./Uninstall-Dtc.md) - diff --git a/docset/winserver2012-ps/netadapter/Enable-NetAdapterVmq.md b/docset/winserver2012-ps/netadapter/Enable-NetAdapterVmq.md index 11d24a17b6..4994cbe3de 100644 --- a/docset/winserver2012-ps/netadapter/Enable-NetAdapterVmq.md +++ b/docset/winserver2012-ps/netadapter/Enable-NetAdapterVmq.md @@ -68,7 +68,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -250,4 +250,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Get-NetAdapterVmqQueue](./Get-NetAdapterVmqQueue.md) [Set-NetAdapterVmq](./Set-NetAdapterVmq.md) - diff --git a/docset/winserver2012-ps/netadapter/Get-NetAdapter.md b/docset/winserver2012-ps/netadapter/Get-NetAdapter.md index 9664942cb4..ff9a3779a1 100644 --- a/docset/winserver2012-ps/netadapter/Get-NetAdapter.md +++ b/docset/winserver2012-ps/netadapter/Get-NetAdapter.md @@ -152,7 +152,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -272,7 +272,7 @@ Accept wildcard characters: False The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. -[CIM_NetworkAdapter class](https://docs.microsoft.com/windows/win32/cimwin32prov/cim-networkadapter) +[CIM_NetworkAdapter class](/windows/win32/cimwin32prov/cim-networkadapter) ## NOTES @@ -291,4 +291,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Restart-NetAdapter](./Restart-NetAdapter.md) [Set-NetAdapter](./Set-NetAdapter.md) - diff --git a/docset/winserver2012-ps/netconnection/Get-NetConnectionProfile.md b/docset/winserver2012-ps/netconnection/Get-NetConnectionProfile.md index ae69da33f8..c204d534a2 100644 --- a/docset/winserver2012-ps/netconnection/Get-NetConnectionProfile.md +++ b/docset/winserver2012-ps/netconnection/Get-NetConnectionProfile.md @@ -62,7 +62,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -216,4 +216,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS [Set-NetConnectionProfile](./Set-NetConnectionProfile.md) - diff --git a/docset/winserver2012-ps/netconnection/Set-NetConnectionProfile.md b/docset/winserver2012-ps/netconnection/Set-NetConnectionProfile.md index f3352ce7f4..27b60eaded 100644 --- a/docset/winserver2012-ps/netconnection/Set-NetConnectionProfile.md +++ b/docset/winserver2012-ps/netconnection/Set-NetConnectionProfile.md @@ -66,7 +66,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -285,4 +285,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS [Get-NetConnectionProfile](./Get-NetConnectionProfile.md) - diff --git a/docset/winserver2012-ps/netsecurity/Set-NetFirewallAddressFilter.md b/docset/winserver2012-ps/netsecurity/Set-NetFirewallAddressFilter.md index 2bbb2b3bda..cb4a75f40b 100644 --- a/docset/winserver2012-ps/netsecurity/Set-NetFirewallAddressFilter.md +++ b/docset/winserver2012-ps/netsecurity/Set-NetFirewallAddressFilter.md @@ -90,7 +90,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -348,4 +348,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Set-NetIPSecRule](./Set-NetIPsecRule.md) [New-GPO](../grouppolicy/New-GPO.md) - diff --git a/docset/winserver2012-ps/nettcpip/New-NetRoute.md b/docset/winserver2012-ps/nettcpip/New-NetRoute.md index 8c4d9f4be9..4d0e3bdd6e 100644 --- a/docset/winserver2012-ps/nettcpip/New-NetRoute.md +++ b/docset/winserver2012-ps/nettcpip/New-NetRoute.md @@ -98,7 +98,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/en-us/powershell/module/cimcmdlets/New-CimSession) or [Get-CimSession](https://docs.microsoft.com/en-us/powershell/module/cimcmdlets/Get-CimSession) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/New-CimSession) or [Get-CimSession](/powershell/module/cimcmdlets/Get-CimSession) cmdlet. The default is the current session on the local computer. ```yaml diff --git a/docset/winserver2012-ps/nettcpip/Set-NetRoute.md b/docset/winserver2012-ps/nettcpip/Set-NetRoute.md index 4305b556d5..ce1a6906a0 100644 --- a/docset/winserver2012-ps/nettcpip/Set-NetRoute.md +++ b/docset/winserver2012-ps/nettcpip/Set-NetRoute.md @@ -249,7 +249,7 @@ Accept wildcard characters: False ### -PreferredLifetime Modifies the preferred lifetime of the IP route. -This parameter value uses time as defined by the TimeSpanhttp://msdn.microsoft.com/library/system.timespan.aspx structure. +This parameter value uses time as defined by the [TimeSpan](http://msdn.microsoft.com/library/system.timespan.aspx) structure. ```yaml Type: TimeSpan @@ -324,7 +324,7 @@ Accept wildcard characters: False ### -ValidLifetime Modifies the valid lifetime of a route. -This parameter value uses time as defined by the TimeSpanhttp://msdn.microsoft.com/library/system.timespan.aspx structure. +This parameter value uses time as defined by the [TimeSpan](http://msdn.microsoft.com/library/system.timespan.aspx) structure. ```yaml Type: TimeSpan @@ -389,5 +389,4 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Remove-NetRoute](./Remove-NetRoute.md) -[New-TimeSpan](https://docs.microsoft.com/powershell/module/microsoft.powershell.utility/new-timespan) - +[New-TimeSpan](/powershell/module/microsoft.powershell.utility/new-timespan) diff --git a/docset/winserver2012-ps/printmanagement/Get-PrintConfiguration.md b/docset/winserver2012-ps/printmanagement/Get-PrintConfiguration.md index 512fdf0350..edabede36e 100644 --- a/docset/winserver2012-ps/printmanagement/Get-PrintConfiguration.md +++ b/docset/winserver2012-ps/printmanagement/Get-PrintConfiguration.md @@ -82,7 +82,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -174,4 +174,3 @@ This cmdlet returns a printer configuration object. ## RELATED LINKS [Set-PrintConfiguration](./Set-PrintConfiguration.md) - diff --git a/docset/winserver2012-ps/scheduledtasks/New-ScheduledTask.md b/docset/winserver2012-ps/scheduledtasks/New-ScheduledTask.md index 1ff82a2f5e..521f28e0c2 100644 --- a/docset/winserver2012-ps/scheduledtasks/New-ScheduledTask.md +++ b/docset/winserver2012-ps/scheduledtasks/New-ScheduledTask.md @@ -101,7 +101,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml diff --git a/docset/winserver2012-ps/scheduledtasks/Register-ScheduledTask.md b/docset/winserver2012-ps/scheduledtasks/Register-ScheduledTask.md index 4dd135ea6a..c85d58f14d 100644 --- a/docset/winserver2012-ps/scheduledtasks/Register-ScheduledTask.md +++ b/docset/winserver2012-ps/scheduledtasks/Register-ScheduledTask.md @@ -107,7 +107,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/get-cimsession) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](/powershell/module/cimcmdlets/get-cimsession) cmdlet. The default is the current session on the local computer. ```yaml @@ -339,7 +339,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_commonparameters). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters). ## INPUTS diff --git a/docset/winserver2012-ps/smbshare/Grant-SmbShareAccess.md b/docset/winserver2012-ps/smbshare/Grant-SmbShareAccess.md index 4309850dd5..61caeb9c82 100644 --- a/docset/winserver2012-ps/smbshare/Grant-SmbShareAccess.md +++ b/docset/winserver2012-ps/smbshare/Grant-SmbShareAccess.md @@ -112,7 +112,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -275,4 +275,3 @@ This cmdlet returns a **MSFT_SmbShareAccessControlEntry** object. [Revoke-SmbShareAccess](./Revoke-SmbShareAccess.md) [Unblock-SmbShareAccess](./Unblock-SmbShareAccess.md) - diff --git a/docset/winserver2012-ps/smbshare/Set-SmbServerConfiguration.md b/docset/winserver2012-ps/smbshare/Set-SmbServerConfiguration.md index e7575ba756..f001b3d349 100644 --- a/docset/winserver2012-ps/smbshare/Set-SmbServerConfiguration.md +++ b/docset/winserver2012-ps/smbshare/Set-SmbServerConfiguration.md @@ -32,7 +32,7 @@ Set-SmbServerConfiguration [-AnnounceComment ] [-AnnounceServer $EAPXml = [xml]Get-Content -Path C:\eap-config.xml PS C:\> Add-VpnConnection -Name "Test6" -ServerAddress "10.1.1.1" -TunnelType "L2tp" -EncryptionLevel "Required" -AuthenticationMethod Eap -SplitTunneling -AllUserConnection -RememberCredential -EapConfigXmlStream $EAPXml ``` -This set of commands adds a VPN connection using an already generated EAP XML configuration. For more information about how to generate EAP XML configuration, see [EAP Configuration](https://docs.microsoft.com/windows/client-management/mdm/eap-configuration). +This set of commands adds a VPN connection using an already generated EAP XML configuration. For more information about how to generate EAP XML configuration, see [EAP Configuration](/windows/client-management/mdm/eap-configuration). ## PARAMETERS @@ -447,4 +447,3 @@ The VpnConnection object contains the VpnConnection configuration settings. [Remove-VpnConnection](./Remove-VpnConnection.md) [New-EapConfiguration](./New-EapConfiguration.md) - diff --git a/docset/winserver2012-ps/webadministration/Get-WebApplication.md b/docset/winserver2012-ps/webadministration/Get-WebApplication.md index 49323dd5c9..5f58c0e1b1 100644 --- a/docset/winserver2012-ps/webadministration/Get-WebApplication.md +++ b/docset/winserver2012-ps/webadministration/Get-WebApplication.md @@ -82,4 +82,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Remove-WebApplication](./Remove-WebApplication.md) -[Microsoft.Web.Administration.ConfigurationElement#Application](https://docs.microsoft.com/dotnet/api/microsoft.web.administration.application?view=iis-dotnet) +[Microsoft.Web.Administration.ConfigurationElement#Application](/dotnet/api/microsoft.web.administration.application?view=iis-dotnet) diff --git a/docset/winserver2012-ps/webadministration/New-WebAppPool.md b/docset/winserver2012-ps/webadministration/New-WebAppPool.md index 58c36bf831..b333193689 100644 --- a/docset/winserver2012-ps/webadministration/New-WebAppPool.md +++ b/docset/winserver2012-ps/webadministration/New-WebAppPool.md @@ -17,7 +17,7 @@ New-WebAppPool [-Name] [-Force] [] ``` ## DESCRIPTION -The **New-WebAppPool** cmdlet creates an Internet Information Services (IIS) application pool. For changing different properties of the application pool after creation, see [PowerShell Snap-in: Making Configuration Changes to Websites and App Pools](https://docs.microsoft.com/iis/manage/powershell/powershell-snap-in-making-simple-configuration-changes-to-web-sites-and-application-pools). +The **New-WebAppPool** cmdlet creates an Internet Information Services (IIS) application pool. For changing different properties of the application pool after creation, see [PowerShell Snap-in: Making Configuration Changes to Websites and App Pools](/iis/manage/powershell/powershell-snap-in-making-simple-configuration-changes-to-web-sites-and-application-pools). ## EXAMPLES diff --git a/docset/winserver2012r2-ps/activedirectory/Get-ADComputer.md b/docset/winserver2012r2-ps/activedirectory/Get-ADComputer.md index 6139197f5b..80639510e7 100644 --- a/docset/winserver2012r2-ps/activedirectory/Get-ADComputer.md +++ b/docset/winserver2012r2-ps/activedirectory/Get-ADComputer.md @@ -44,7 +44,7 @@ You can also set the parameter to a computer object variable, such as `$, type `Get-Help about_ActiveDirectory_ObjectModel`. -Note: For String parameter type, PowerShell will cast the filter query to a string while processing the command. When using a string variable as a value in the filter component, make sure that it complies with the [PowerShell Quoting Rules](https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_quoting_rules). For example, if the filter expression is double-quoted, the variable should be enclosed using single quotation marks: +Note: For String parameter type, PowerShell will cast the filter query to a string while processing the command. When using a string variable as a value in the filter component, make sure that it complies with the [PowerShell Quoting Rules](/powershell/module/microsoft.powershell.core/about/about_quoting_rules). For example, if the filter expression is double-quoted, the variable should be enclosed using single quotation marks: **Get-ADUser -Filter "Name -like '$UserName'"**. On the contrary, if curly braces are used to enclose the filter, the variable should not be quoted at all: **Get-ADUser -Filter {Name -like $UserName}**. Note: PowerShell wildcards other than \*, such as ?, are not supported by the *Filter* syntax. diff --git a/docset/winserver2012r2-ps/adcsdeployment/install-adcscertificationauthority.md b/docset/winserver2012r2-ps/adcsdeployment/install-adcscertificationauthority.md index 1040d37164..48d11d173e 100644 --- a/docset/winserver2012r2-ps/adcsdeployment/install-adcscertificationauthority.md +++ b/docset/winserver2012r2-ps/adcsdeployment/install-adcscertificationauthority.md @@ -52,7 +52,7 @@ You can import the cmdlet by running the following commands from Windows PowerSh To include the Certification Authority and Certificate Templates consoles in a CA installation, you must use the *IncludeManagementTools* parameter at the end of the `Install-WindowsFeature Adcs-Cert-Authority` command. -Int is equivalent to Int32 in the [.NET Framework](https://docs.microsoft.com/dotnet/csharp/language-reference/builtin-types/built-in-types). +Int is equivalent to Int32 in the [.NET Framework](/dotnet/csharp/language-reference/builtin-types/built-in-types). ## EXAMPLES diff --git a/docset/winserver2012r2-ps/bitlocker/Enable-BitLockerAutoUnlock.md b/docset/winserver2012r2-ps/bitlocker/Enable-BitLockerAutoUnlock.md index 180b191dd4..ef9a163448 100644 --- a/docset/winserver2012r2-ps/bitlocker/Enable-BitLockerAutoUnlock.md +++ b/docset/winserver2012r2-ps/bitlocker/Enable-BitLockerAutoUnlock.md @@ -24,7 +24,7 @@ The **Enable-BitLockerAutoUnlock** cmdlet enables automatic unlocking for a volu You can configure BitLocker to automatically unlock volumes that do not host an operating system. After a user unlocks the operating system volume, BitLocker uses encrypted information stored in the registry and volume metadata to unlock any data volumes that use automatic unlocking. -For an overview of BitLocker, see [BitLocker Drive Encryption Overview](https://docs.microsoft.com/windows/security/information-protection/bitlocker/bitlocker-device-encryption-overview-windows-10). +For an overview of BitLocker, see [BitLocker Drive Encryption Overview](/windows/security/information-protection/bitlocker/bitlocker-device-encryption-overview-windows-10). ## EXAMPLES @@ -105,4 +105,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Disable-BitLockerAutoUnlock](./Disable-BitLockerAutoUnlock.md) [Get-BitLockerVolume](./Get-BitLockerVolume.md) - diff --git a/docset/winserver2012r2-ps/bitlocker/Get-BitLockerVolume.md b/docset/winserver2012r2-ps/bitlocker/Get-BitLockerVolume.md index cf7f062589..61971bbe5f 100644 --- a/docset/winserver2012r2-ps/bitlocker/Get-BitLockerVolume.md +++ b/docset/winserver2012r2-ps/bitlocker/Get-BitLockerVolume.md @@ -36,9 +36,9 @@ You can also use this cmdlet to view the following information about a BitLocker - Protection Status - Whether BitLocker currently uses a key protector to encrypt the volume encryption key. - EncryptionMethod - Indicates the encryption algorithm and key size used on the volume. -See [BitLocker Overview](https://docs.microsoft.com/windows/security/information-protection/bitlocker/bitlocker-overview) for more information. +See [BitLocker Overview](/windows/security/information-protection/bitlocker/bitlocker-overview) for more information. -For an overview of encryption methods, see [GetEncryptionMethod method](https://docs.microsoft.com/windows/win32/secprov/getencryptionmethod-win32-encryptablevolume). +For an overview of encryption methods, see [GetEncryptionMethod method](/windows/win32/secprov/getencryptionmethod-win32-encryptablevolume). ## EXAMPLES @@ -129,4 +129,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Enable-BitLocker](./Enable-BitLocker.md) [Enable-BitLockerAutoUnlock](./Enable-BitLockerAutoUnlock.md) - diff --git a/docset/winserver2012r2-ps/bitlocker/Remove-BitLockerKeyProtector.md b/docset/winserver2012r2-ps/bitlocker/Remove-BitLockerKeyProtector.md index 74de66c062..b93d153ece 100644 --- a/docset/winserver2012r2-ps/bitlocker/Remove-BitLockerKeyProtector.md +++ b/docset/winserver2012r2-ps/bitlocker/Remove-BitLockerKeyProtector.md @@ -31,7 +31,7 @@ Any encrypted data on the drive remains encrypted. We recommend you have at least one recovery password as key protector to a volume in case you need to recover a system. -For an overview of BitLocker, see [BitLocker Overview](https://docs.microsoft.com/previous-versions/windows/it-pro/windows-8.1-and-8/dn641993(v=ws.11)). +For an overview of BitLocker, see [BitLocker Overview](/previous-versions/windows/it-pro/windows-8.1-and-8/dn641993(v=ws.11)). ## EXAMPLES diff --git a/docset/winserver2012r2-ps/deduplication/Disable-DedupVolume.md b/docset/winserver2012r2-ps/deduplication/Disable-DedupVolume.md index 33af8d4a01..cfef5778ee 100644 --- a/docset/winserver2012r2-ps/deduplication/Disable-DedupVolume.md +++ b/docset/winserver2012r2-ps/deduplication/Disable-DedupVolume.md @@ -81,7 +81,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -171,4 +171,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Set-DedupVolume](./Set-DedupVolume.md) [Update-DedupStatus](./Update-DedupStatus.md) - diff --git a/docset/winserver2012r2-ps/deduplication/Enable-DedupVolume.md b/docset/winserver2012r2-ps/deduplication/Enable-DedupVolume.md index 55015c448c..bee43d2c93 100644 --- a/docset/winserver2012r2-ps/deduplication/Enable-DedupVolume.md +++ b/docset/winserver2012r2-ps/deduplication/Enable-DedupVolume.md @@ -82,7 +82,7 @@ Accept wildcard characters: False ``` ### -CimSession -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. ```yaml Type: CimSession[] Parameter Sets: (All) @@ -198,4 +198,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Get-DedupVolume](./Get-DedupVolume.md) [Set-DedupVolume](./Set-DedupVolume.md) - diff --git a/docset/winserver2012r2-ps/deduplication/Expand-DedupFile.md b/docset/winserver2012r2-ps/deduplication/Expand-DedupFile.md index 4116538c41..c3b482a5bf 100644 --- a/docset/winserver2012r2-ps/deduplication/Expand-DedupFile.md +++ b/docset/winserver2012r2-ps/deduplication/Expand-DedupFile.md @@ -62,7 +62,7 @@ Accept wildcard characters: False ``` ### -CimSession -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. ```yaml Type: CimSession[] Parameter Sets: (All) @@ -124,4 +124,3 @@ A value of zero indicates success. ## RELATED LINKS [Get-DedupVolume](./Get-DedupVolume.md) - diff --git a/docset/winserver2012r2-ps/deduplication/Get-DedupJob.md b/docset/winserver2012r2-ps/deduplication/Get-DedupJob.md index 9a7452fc22..01a3fbef70 100644 --- a/docset/winserver2012r2-ps/deduplication/Get-DedupJob.md +++ b/docset/winserver2012r2-ps/deduplication/Get-DedupJob.md @@ -58,7 +58,7 @@ Accept wildcard characters: False ``` ### -CimSession -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. ```yaml Type: CimSession[] Parameter Sets: (All) @@ -150,4 +150,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Start-DedupJob](./Start-DedupJob.md) [Stop-DedupJob](./Stop-DedupJob.md) - diff --git a/docset/winserver2012r2-ps/deduplication/Get-DedupMetadata.md b/docset/winserver2012r2-ps/deduplication/Get-DedupMetadata.md index 82264291bf..bbb4827148 100644 --- a/docset/winserver2012r2-ps/deduplication/Get-DedupMetadata.md +++ b/docset/winserver2012r2-ps/deduplication/Get-DedupMetadata.md @@ -86,7 +86,7 @@ Accept wildcard characters: False ``` ### -CimSession -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. ```yaml Type: CimSession[] Parameter Sets: (All) @@ -151,4 +151,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th ## NOTES ## RELATED LINKS - diff --git a/docset/winserver2012r2-ps/deduplication/Get-DedupSchedule.md b/docset/winserver2012r2-ps/deduplication/Get-DedupSchedule.md index 2dc19907b4..56b7fbee3d 100644 --- a/docset/winserver2012r2-ps/deduplication/Get-DedupSchedule.md +++ b/docset/winserver2012r2-ps/deduplication/Get-DedupSchedule.md @@ -72,7 +72,7 @@ Accept wildcard characters: False ``` ### -CimSession -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. ```yaml Type: CimSession[] Parameter Sets: (All) @@ -162,4 +162,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Remove-DedupSchedule](./Remove-DedupSchedule.md) [Set-DedupSchedule](./Set-DedupSchedule.md) - diff --git a/docset/winserver2012r2-ps/deduplication/Get-DedupStatus.md b/docset/winserver2012r2-ps/deduplication/Get-DedupStatus.md index d2da18689a..dd3b908290 100644 --- a/docset/winserver2012r2-ps/deduplication/Get-DedupStatus.md +++ b/docset/winserver2012r2-ps/deduplication/Get-DedupStatus.md @@ -59,7 +59,7 @@ Accept wildcard characters: False ``` ### -CimSession -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. ```yaml Type: CimSession[] Parameter Sets: (All) @@ -128,4 +128,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th ## RELATED LINKS [Update-DedupStatus](./Update-DedupStatus.md) - diff --git a/docset/winserver2012r2-ps/deduplication/Get-DedupVolume.md b/docset/winserver2012r2-ps/deduplication/Get-DedupVolume.md index df2fe73862..15125e28e7 100644 --- a/docset/winserver2012r2-ps/deduplication/Get-DedupVolume.md +++ b/docset/winserver2012r2-ps/deduplication/Get-DedupVolume.md @@ -73,7 +73,7 @@ Accept wildcard characters: False ``` ### -CimSession -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. ```yaml Type: CimSession[] Parameter Sets: (All) @@ -161,4 +161,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Enable-DedupVolume](./Enable-DedupVolume.md) [Set-DedupVolume](./Set-DedupVolume.md) - diff --git a/docset/winserver2012r2-ps/deduplication/Measure-DedupFileMetadata.md b/docset/winserver2012r2-ps/deduplication/Measure-DedupFileMetadata.md index 6c2ddd8f99..5996482a09 100644 --- a/docset/winserver2012r2-ps/deduplication/Measure-DedupFileMetadata.md +++ b/docset/winserver2012r2-ps/deduplication/Measure-DedupFileMetadata.md @@ -60,7 +60,7 @@ Accept wildcard characters: False ``` ### -CimSession -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. ```yaml Type: CimSession[] Parameter Sets: (All) @@ -117,4 +117,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS [Update-DedupStatus](./Update-DedupStatus.md) - diff --git a/docset/winserver2012r2-ps/deduplication/New-DedupSchedule.md b/docset/winserver2012r2-ps/deduplication/New-DedupSchedule.md index 990b64decb..4be0db50a7 100644 --- a/docset/winserver2012r2-ps/deduplication/New-DedupSchedule.md +++ b/docset/winserver2012r2-ps/deduplication/New-DedupSchedule.md @@ -90,7 +90,7 @@ Accept wildcard characters: False ``` ### -CimSession -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. ```yaml Type: CimSession[] Parameter Sets: (All) @@ -376,4 +376,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Remove-DedupSchedule](./Remove-DedupSchedule.md) [Set-DedupSchedule](./Set-DedupSchedule.md) - diff --git a/docset/winserver2012r2-ps/deduplication/Remove-DedupSchedule.md b/docset/winserver2012r2-ps/deduplication/Remove-DedupSchedule.md index f517d4715d..b3fe9851d8 100644 --- a/docset/winserver2012r2-ps/deduplication/Remove-DedupSchedule.md +++ b/docset/winserver2012r2-ps/deduplication/Remove-DedupSchedule.md @@ -65,7 +65,7 @@ Accept wildcard characters: False ``` ### -CimSession -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. ```yaml Type: CimSession[] Parameter Sets: (All) @@ -172,4 +172,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [New-DedupSchedule](./New-DedupSchedule.md) [Set-DedupSchedule](./Set-DedupSchedule.md) - diff --git a/docset/winserver2012r2-ps/deduplication/Set-DedupSchedule.md b/docset/winserver2012r2-ps/deduplication/Set-DedupSchedule.md index 508b04b346..922df7d147 100644 --- a/docset/winserver2012r2-ps/deduplication/Set-DedupSchedule.md +++ b/docset/winserver2012r2-ps/deduplication/Set-DedupSchedule.md @@ -90,7 +90,7 @@ Accept wildcard characters: False ``` ### -CimSession -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. ```yaml Type: CimSession[] Parameter Sets: (All) @@ -404,4 +404,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [New-DedupSchedule](./New-DedupSchedule.md) [Remove-DedupSchedule](./Remove-DedupSchedule.md) - diff --git a/docset/winserver2012r2-ps/deduplication/Set-DedupVolume.md b/docset/winserver2012r2-ps/deduplication/Set-DedupVolume.md index 43b0e57054..600a87e337 100644 --- a/docset/winserver2012r2-ps/deduplication/Set-DedupVolume.md +++ b/docset/winserver2012r2-ps/deduplication/Set-DedupVolume.md @@ -108,7 +108,7 @@ Accept wildcard characters: False ``` ### -CimSession -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. ```yaml Type: CimSession[] Parameter Sets: (All) @@ -389,4 +389,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Enable-DedupVolume](./Enable-DedupVolume.md) [Get-DedupVolume](./Get-DedupVolume.md) - diff --git a/docset/winserver2012r2-ps/deduplication/Start-DedupJob.md b/docset/winserver2012r2-ps/deduplication/Start-DedupJob.md index d5fe1ae05d..b833afcf7e 100644 --- a/docset/winserver2012r2-ps/deduplication/Start-DedupJob.md +++ b/docset/winserver2012r2-ps/deduplication/Start-DedupJob.md @@ -63,7 +63,7 @@ Accept wildcard characters: False ``` ### -CimSession -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. ```yaml Type: CimSession[] Parameter Sets: (All) @@ -322,4 +322,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Get-DedupJob](./Get-DedupJob.md) [Stop-DedupJob](./Stop-DedupJob.md) - diff --git a/docset/winserver2012r2-ps/deduplication/Stop-DedupJob.md b/docset/winserver2012r2-ps/deduplication/Stop-DedupJob.md index c09380c4da..6a437c17de 100644 --- a/docset/winserver2012r2-ps/deduplication/Stop-DedupJob.md +++ b/docset/winserver2012r2-ps/deduplication/Stop-DedupJob.md @@ -71,7 +71,7 @@ Accept wildcard characters: False ``` ### -CimSession -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. ```yaml Type: CimSession[] Parameter Sets: (All) @@ -213,4 +213,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Get-DedupJob](./Get-DedupJob.md) [Start-DedupJob](./Start-DedupJob.md) - diff --git a/docset/winserver2012r2-ps/deduplication/Update-DedupStatus.md b/docset/winserver2012r2-ps/deduplication/Update-DedupStatus.md index b0422b10fc..5e1bf17cd7 100644 --- a/docset/winserver2012r2-ps/deduplication/Update-DedupStatus.md +++ b/docset/winserver2012r2-ps/deduplication/Update-DedupStatus.md @@ -95,7 +95,7 @@ Accept wildcard characters: False ``` ### -CimSession -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. ```yaml Type: CimSession[] Parameter Sets: (All) @@ -160,4 +160,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th ## RELATED LINKS [Get-DedupStatus](./Get-DedupStatus.md) - diff --git a/docset/winserver2012r2-ps/dfsn/Get-DfsnFolderTarget.md b/docset/winserver2012r2-ps/dfsn/Get-DfsnFolderTarget.md index e72d3393ed..56e5c70503 100644 --- a/docset/winserver2012r2-ps/dfsn/Get-DfsnFolderTarget.md +++ b/docset/winserver2012r2-ps/dfsn/Get-DfsnFolderTarget.md @@ -24,7 +24,7 @@ The **Get-DfsnFolderTarget** cmdlet gets settings for targets of a Distributed F You can specify a DFS namespace folder path to see all the targets for that path. You can specify a namespace path and a target path to see settings for a particular target. -For more information about DFS namespaces, see [DFS Namespaces overview](https://docs.microsoft.com/windows-server/storage/dfs-namespaces/dfs-overview). +For more information about DFS namespaces, see [DFS Namespaces overview](/windows-server/storage/dfs-namespaces/dfs-overview). ## EXAMPLES @@ -67,7 +67,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -148,4 +148,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Remove-DfsnFolderTarget](./Remove-DfsnFolderTarget.md) [Set-DfsnFolderTarget](./Set-DfsnFolderTarget.md) - diff --git a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerVersion.md b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerVersion.md index cd854dbdac..54d58c0f4a 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerVersion.md +++ b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerVersion.md @@ -56,7 +56,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -125,4 +125,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Get-DhcpServerDatabase](./Get-DhcpServerDatabase.md) [Get-DhcpServerSetting](./Get-DhcpServerSetting.md) - diff --git a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4FreeIPAddress.md b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4FreeIPAddress.md index c9944e792e..a712ac480f 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4FreeIPAddress.md +++ b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4FreeIPAddress.md @@ -89,7 +89,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -215,4 +215,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th ## RELATED LINKS [Get-DhcpServerv6FreeIPAddress](./Get-DhcpServerv6FreeIPAddress.md) - diff --git a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4Lease.md b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4Lease.md index d699ad93c8..056368bb5f 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4Lease.md +++ b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4Lease.md @@ -157,7 +157,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -285,4 +285,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Get-DhcpServerv4Scope](./Get-DhcpServerv4Scope.md) [Remove-DhcpServerv4Lease](./Remove-DhcpServerv4Lease.md) - From 372746c0d50636dedbe0b6b65d3c533f069ee612 Mon Sep 17 00:00:00 2001 From: Alex Buck Date: Fri, 9 Sep 2022 08:00:49 -0400 Subject: [PATCH 209/965] Update docset/winserver2012-ps/scheduledtasks/Register-ScheduledTask.md Co-authored-by: Sean Wheeler --- .../scheduledtasks/Register-ScheduledTask.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docset/winserver2012-ps/scheduledtasks/Register-ScheduledTask.md b/docset/winserver2012-ps/scheduledtasks/Register-ScheduledTask.md index c85d58f14d..8ba6d6e19a 100644 --- a/docset/winserver2012-ps/scheduledtasks/Register-ScheduledTask.md +++ b/docset/winserver2012-ps/scheduledtasks/Register-ScheduledTask.md @@ -339,7 +339,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS From 8b0bc5d47618e39bd7c317be3f957c9cd021fb65 Mon Sep 17 00:00:00 2001 From: Alex Buck Date: Sat, 3 Sep 2022 12:46:56 -0400 Subject: [PATCH 210/965] [BULK UPDATE] DocuTune - Fix build validation issues: docs-link-absolute --- .../deduplication/Measure-DedupFileMetadata.md | 3 +-- docset/winserver2016-ps/deduplication/New-DedupSchedule.md | 3 +-- .../winserver2016-ps/deduplication/Remove-DedupSchedule.md | 3 +-- docset/winserver2016-ps/deduplication/Set-DedupSchedule.md | 3 +-- docset/winserver2016-ps/deduplication/Set-DedupVolume.md | 3 +-- docset/winserver2016-ps/deduplication/Start-DedupJob.md | 3 +-- docset/winserver2016-ps/deduplication/Stop-DedupJob.md | 3 +-- docset/winserver2016-ps/deduplication/Update-DedupStatus.md | 3 +-- docset/winserver2016-ps/defender/Add-MpPreference.md | 2 +- docset/winserver2016-ps/defender/Get-MpComputerStatus.md | 2 +- docset/winserver2016-ps/defender/Get-MpPreference.md | 3 +-- docset/winserver2016-ps/defender/Get-MpThreatDetection.md | 3 +-- docset/winserver2016-ps/defender/Remove-MpPreference.md | 2 +- docset/winserver2016-ps/dfsn/Get-DfsnFolderTarget.md | 5 ++--- docset/winserver2016-ps/dhcpserver/Get-DhcpServerVersion.md | 3 +-- .../dhcpserver/Get-DhcpServerv4FreeIPAddress.md | 3 +-- docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4Lease.md | 3 +-- .../dhcpserver/Get-DhcpServerv6FreeIPAddress.md | 3 +-- .../dhcpserver/Get-DhcpServerv6Statistics.md | 3 +-- docset/winserver2016-ps/dhcpserver/Import-DhcpServer.md | 3 +-- docset/winserver2016-ps/dism/Add-AppxProvisionedPackage.md | 4 ++-- docset/winserver2016-ps/dism/Add-WindowsCapability.md | 3 +-- .../dism/Set-WindowsReservedStorageState.md | 2 +- docset/winserver2016-ps/dnsclient/Set-DnsClient.md | 3 +-- docset/winserver2016-ps/dnsserver/Get-DnsServer.md | 3 +-- docset/winserver2016-ps/hyper-v/Debug-VM.md | 2 +- docset/winserver2016-ps/hyper-v/Mount-VHD.md | 2 +- docset/winserver2016-ps/hyper-v/Move-VM.md | 3 +-- docset/winserver2016-ps/hyper-v/New-VM.md | 2 +- docset/winserver2016-ps/hyper-v/Remove-VMHardDiskDrive.md | 3 +-- docset/winserver2016-ps/hyper-v/Set-VMNetworkAdapterVlan.md | 2 +- docset/winserver2016-ps/hyper-v/Set-VMProcessor.md | 4 ++-- docset/winserver2016-ps/hyper-v/Set-VMReplicationServer.md | 4 ++-- .../international/Set-WinDefaultInputMethodOverride.md | 3 +-- docset/winserver2016-ps/msdtc/Test-Dtc.md | 3 +-- docset/winserver2016-ps/netadapter/Enable-NetAdapterVmq.md | 3 +-- docset/winserver2016-ps/netadapter/Get-NetAdapter.md | 5 ++--- .../netconnection/Set-NetConnectionProfile.md | 3 +-- docset/winserver2016-ps/netlldpagent/NetLldpAgent.md | 4 +--- .../netsecurity/Set-NetFirewallAddressFilter.md | 3 +-- docset/winserver2016-ps/nettcpip/New-NetRoute.md | 3 +-- docset/winserver2016-ps/pki/Get-Certificate.md | 3 +-- docset/winserver2016-ps/pki/Import-Certificate.md | 2 +- docset/winserver2016-ps/pki/Import-PfxCertificate.md | 2 +- docset/winserver2016-ps/pki/New-SelfSignedCertificate.md | 4 ++-- .../printmanagement/Get-PrintConfiguration.md | 3 +-- docset/winserver2016-ps/remotedesktop/Set-RDCertificate.md | 6 +++--- docset/winserver2016-ps/scheduledtasks/New-ScheduledTask.md | 2 +- .../scheduledtasks/New-ScheduledTaskSettingsSet.md | 3 +-- .../scheduledtasks/Register-ScheduledTask.md | 4 ++-- 50 files changed, 59 insertions(+), 93 deletions(-) diff --git a/docset/winserver2016-ps/deduplication/Measure-DedupFileMetadata.md b/docset/winserver2016-ps/deduplication/Measure-DedupFileMetadata.md index 00e408c513..ab7e522153 100644 --- a/docset/winserver2016-ps/deduplication/Measure-DedupFileMetadata.md +++ b/docset/winserver2016-ps/deduplication/Measure-DedupFileMetadata.md @@ -62,7 +62,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -121,4 +121,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS [Update-DedupStatus](./Update-DedupStatus.md) - diff --git a/docset/winserver2016-ps/deduplication/New-DedupSchedule.md b/docset/winserver2016-ps/deduplication/New-DedupSchedule.md index 175b440aba..ef46949c2d 100644 --- a/docset/winserver2016-ps/deduplication/New-DedupSchedule.md +++ b/docset/winserver2016-ps/deduplication/New-DedupSchedule.md @@ -101,7 +101,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -422,4 +422,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Remove-DedupSchedule](./Remove-DedupSchedule.md) [Set-DedupSchedule](./Set-DedupSchedule.md) - diff --git a/docset/winserver2016-ps/deduplication/Remove-DedupSchedule.md b/docset/winserver2016-ps/deduplication/Remove-DedupSchedule.md index bdd9200f04..dbf765e256 100644 --- a/docset/winserver2016-ps/deduplication/Remove-DedupSchedule.md +++ b/docset/winserver2016-ps/deduplication/Remove-DedupSchedule.md @@ -67,7 +67,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -175,4 +175,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [New-DedupSchedule](./New-DedupSchedule.md) [Set-DedupSchedule](./Set-DedupSchedule.md) - diff --git a/docset/winserver2016-ps/deduplication/Set-DedupSchedule.md b/docset/winserver2016-ps/deduplication/Set-DedupSchedule.md index 1a8c3670ee..451388c683 100644 --- a/docset/winserver2016-ps/deduplication/Set-DedupSchedule.md +++ b/docset/winserver2016-ps/deduplication/Set-DedupSchedule.md @@ -92,7 +92,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -441,4 +441,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [New-DedupSchedule](./New-DedupSchedule.md) [Remove-DedupSchedule](./Remove-DedupSchedule.md) - diff --git a/docset/winserver2016-ps/deduplication/Set-DedupVolume.md b/docset/winserver2016-ps/deduplication/Set-DedupVolume.md index d2e55f66ac..35ca078cc6 100644 --- a/docset/winserver2016-ps/deduplication/Set-DedupVolume.md +++ b/docset/winserver2016-ps/deduplication/Set-DedupVolume.md @@ -124,7 +124,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -440,4 +440,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Enable-DedupVolume](./Enable-DedupVolume.md) [Get-DedupVolume](./Get-DedupVolume.md) - diff --git a/docset/winserver2016-ps/deduplication/Start-DedupJob.md b/docset/winserver2016-ps/deduplication/Start-DedupJob.md index cd34e0fa2f..9e55bc0cfa 100644 --- a/docset/winserver2016-ps/deduplication/Start-DedupJob.md +++ b/docset/winserver2016-ps/deduplication/Start-DedupJob.md @@ -65,7 +65,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -361,4 +361,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Get-DedupJob](./Get-DedupJob.md) [Stop-DedupJob](./Stop-DedupJob.md) - diff --git a/docset/winserver2016-ps/deduplication/Stop-DedupJob.md b/docset/winserver2016-ps/deduplication/Stop-DedupJob.md index b8721b0828..694aae3da2 100644 --- a/docset/winserver2016-ps/deduplication/Stop-DedupJob.md +++ b/docset/winserver2016-ps/deduplication/Stop-DedupJob.md @@ -73,7 +73,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -223,4 +223,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Get-DedupJob](./Get-DedupJob.md) [Start-DedupJob](./Start-DedupJob.md) - diff --git a/docset/winserver2016-ps/deduplication/Update-DedupStatus.md b/docset/winserver2016-ps/deduplication/Update-DedupStatus.md index 7e6aad35bb..582d876b48 100644 --- a/docset/winserver2016-ps/deduplication/Update-DedupStatus.md +++ b/docset/winserver2016-ps/deduplication/Update-DedupStatus.md @@ -99,7 +99,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -168,4 +168,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th ## RELATED LINKS [Get-DedupStatus](./Get-DedupStatus.md) - diff --git a/docset/winserver2016-ps/defender/Add-MpPreference.md b/docset/winserver2016-ps/defender/Add-MpPreference.md index 83a9fae480..f3d8035cda 100644 --- a/docset/winserver2016-ps/defender/Add-MpPreference.md +++ b/docset/winserver2016-ps/defender/Add-MpPreference.md @@ -120,7 +120,7 @@ Specifies an array of processes, as paths to process images. This cmdlet excludes any files opened by the processes that you specify from scheduled and real-time scanning. Specifying this parameter excludes files opened by executable programs only. The cmdlet does not exclude the processes themselves. -For more details, see [Configure exclusions for files opened by processes](https://docs.microsoft.com/windows/security/threat-protection/microsoft-defender-antivirus/configure-process-opened-file-exclusions-microsoft-defender-antivirus). +For more details, see [Configure exclusions for files opened by processes](/windows/security/threat-protection/microsoft-defender-antivirus/configure-process-opened-file-exclusions-microsoft-defender-antivirus). ```yaml Type: String[] diff --git a/docset/winserver2016-ps/defender/Get-MpComputerStatus.md b/docset/winserver2016-ps/defender/Get-MpComputerStatus.md index 98789ece7b..84b9064703 100644 --- a/docset/winserver2016-ps/defender/Get-MpComputerStatus.md +++ b/docset/winserver2016-ps/defender/Get-MpComputerStatus.md @@ -130,4 +130,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS -[Get-MpComputerStatus Properties](https://docs.microsoft.com/previous-versions/windows/desktop/defender/msft-mpcomputerstatus#properties) +[Get-MpComputerStatus Properties](/previous-versions/windows/desktop/defender/msft-mpcomputerstatus#properties) diff --git a/docset/winserver2016-ps/defender/Get-MpPreference.md b/docset/winserver2016-ps/defender/Get-MpPreference.md index b80bbc1e5c..55623dc093 100644 --- a/docset/winserver2016-ps/defender/Get-MpPreference.md +++ b/docset/winserver2016-ps/defender/Get-MpPreference.md @@ -20,7 +20,7 @@ Get-MpPreference [-CimSession ] [-ThrottleLimit ] [-AsJob] ``` ## DESCRIPTION -The **Get-MpPreference** cmdlet gets preferences for the Windows Defender scans and updates. For more information about the preferences that this cmdlet retrieves, see [Windows Defender Preferences Class](https://docs.microsoft.com/previous-versions/windows/desktop/legacy/dn455323(v=vs.85)) +The **Get-MpPreference** cmdlet gets preferences for the Windows Defender scans and updates. For more information about the preferences that this cmdlet retrieves, see [Windows Defender Preferences Class](/previous-versions/windows/desktop/legacy/dn455323(v=vs.85)) ## EXAMPLES @@ -108,4 +108,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Remove-MpPreference](./Remove-MpPreference.md) [Set-MpPreference](./Set-MpPreference.md) - diff --git a/docset/winserver2016-ps/defender/Get-MpThreatDetection.md b/docset/winserver2016-ps/defender/Get-MpThreatDetection.md index 281de792e4..4907a01816 100644 --- a/docset/winserver2016-ps/defender/Get-MpThreatDetection.md +++ b/docset/winserver2016-ps/defender/Get-MpThreatDetection.md @@ -43,7 +43,7 @@ This command returns the list of past malware detections for the local computer. The following table lists the hexadecimal and decimal error codes for this cmdlet. Each hexadecimal error code has a 0x8050 prefix. Therefore, an ERROR_MP_BAD_SCANID error corresponds to error code 0x80508012. Additionally, an ERR_MP_REMOVE_FAILED error corresponds to error code 0x80508017. -For a list of error codes, along with possible reasons and resolutions, see [Windows Defender Antivirus client error codes](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-antivirus/troubleshoot-windows-defender-antivirus#windows-defender-antivirus-client-error-codes) in the topic [Review event logs and error codes to troubleshoot issues with Windows Defender Antivirus](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-antivirus/troubleshoot-windows-defender-antivirus#windows-defender-antivirus-client-error-codes). +For a list of error codes, along with possible reasons and resolutions, see [Windows Defender Antivirus client error codes](/windows/security/threat-protection/windows-defender-antivirus/troubleshoot-windows-defender-antivirus#windows-defender-antivirus-client-error-codes) in the topic [Review event logs and error codes to troubleshoot issues with Windows Defender Antivirus](/windows/security/threat-protection/windows-defender-antivirus/troubleshoot-windows-defender-antivirus#windows-defender-antivirus-client-error-codes). |Symbolic Name | Error Number (hexadecimal) | Error number (decimal) | |------------------------------------|----------------------------|------------------------| @@ -174,4 +174,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Remove-MpThreat](./Remove-MpThreat.md) [Get-MpThreatCatalog](./Get-MpThreatCatalog.md) - diff --git a/docset/winserver2016-ps/defender/Remove-MpPreference.md b/docset/winserver2016-ps/defender/Remove-MpPreference.md index fcfa00a316..a6738a3486 100644 --- a/docset/winserver2016-ps/defender/Remove-MpPreference.md +++ b/docset/winserver2016-ps/defender/Remove-MpPreference.md @@ -71,7 +71,7 @@ Accept wildcard characters: False ### -AttackSurfaceReductionOnlyExclusions Exclude files and paths from Attack Surface Reduction (ASR) rules. Specify the folders or files and resources that should be excluded from ASR rules. Enter a folder path or a fully qualified resource name. For example, ""C:\Windows"" will exclude all files in that directory. ""C:\Windows\App.exe"" will exclude only that specific file in that specific folder. -For more information about excluding files and folders from [ASR rules](https://docs.microsoft.com/windows/security/threat-protection/microsoft-defender-atp/enable-attack-surface-reduction#exclude-files-and-folders-from-asr-rules). +For more information about excluding files and folders from [ASR rules](/windows/security/threat-protection/microsoft-defender-atp/enable-attack-surface-reduction#exclude-files-and-folders-from-asr-rules). ```yaml Type: String[] diff --git a/docset/winserver2016-ps/dfsn/Get-DfsnFolderTarget.md b/docset/winserver2016-ps/dfsn/Get-DfsnFolderTarget.md index 3bf3eece53..f8da8d6aa8 100644 --- a/docset/winserver2016-ps/dfsn/Get-DfsnFolderTarget.md +++ b/docset/winserver2016-ps/dfsn/Get-DfsnFolderTarget.md @@ -25,7 +25,7 @@ The **Get-DfsnFolderTarget** cmdlet gets settings for targets of a Distributed F You can specify a DFS namespace folder path to see all the targets for that path. You can specify a namespace path and a target path to see settings for a particular target. -For more information about DFS namespaces, see [DFS Namespaces overview](https://docs.microsoft.com/windows-server/storage/dfs-namespaces/dfs-overview). +For more information about DFS namespaces, see [DFS Namespaces overview](/windows-server/storage/dfs-namespaces/dfs-overview). ## EXAMPLES @@ -68,7 +68,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -149,4 +149,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Remove-DfsnFolderTarget](./Remove-DfsnFolderTarget.md) [Set-DfsnFolderTarget](./Set-DfsnFolderTarget.md) - diff --git a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerVersion.md b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerVersion.md index 77a7a2ec3f..fb846371bc 100644 --- a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerVersion.md +++ b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerVersion.md @@ -57,7 +57,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -126,4 +126,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Get-DhcpServerDatabase](./Get-DhcpServerDatabase.md) [Get-DhcpServerSetting](./Get-DhcpServerSetting.md) - diff --git a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4FreeIPAddress.md b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4FreeIPAddress.md index 96a16f6005..fea65f7463 100644 --- a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4FreeIPAddress.md +++ b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4FreeIPAddress.md @@ -90,7 +90,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -215,4 +215,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th ## RELATED LINKS [Get-DhcpServerv6FreeIPAddress](./Get-DhcpServerv6FreeIPAddress.md) - diff --git a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4Lease.md b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4Lease.md index bac5fe5e68..eb3d0d5220 100644 --- a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4Lease.md +++ b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4Lease.md @@ -157,7 +157,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -285,4 +285,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Get-DhcpServerv4Scope](./Get-DhcpServerv4Scope.md) [Remove-DhcpServerv4Lease](./Remove-DhcpServerv4Lease.md) - diff --git a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6FreeIPAddress.md b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6FreeIPAddress.md index bc94307f6f..1e306a9a99 100644 --- a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6FreeIPAddress.md +++ b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6FreeIPAddress.md @@ -90,7 +90,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. ```yaml Type: CimSession[] @@ -214,4 +214,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th ## RELATED LINKS [Get-DhcpServerv4FreeIPAddress](./Get-DhcpServerv4FreeIPAddress.md) - diff --git a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6Statistics.md b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6Statistics.md index d20660b389..22d1cef82e 100644 --- a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6Statistics.md +++ b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6Statistics.md @@ -57,7 +57,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -122,4 +122,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th ## RELATED LINKS [Get-DhcpServerv6ScopeStatistics](./Get-DhcpServerv6ScopeStatistics.md) - diff --git a/docset/winserver2016-ps/dhcpserver/Import-DhcpServer.md b/docset/winserver2016-ps/dhcpserver/Import-DhcpServer.md index 551b8d6253..e1850916d4 100644 --- a/docset/winserver2016-ps/dhcpserver/Import-DhcpServer.md +++ b/docset/winserver2016-ps/dhcpserver/Import-DhcpServer.md @@ -155,7 +155,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -357,4 +357,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Export-DhcpServer](./Export-DhcpServer.md) [Restore-DhcpServer](./Restore-DhcpServer.md) - diff --git a/docset/winserver2016-ps/dism/Add-AppxProvisionedPackage.md b/docset/winserver2016-ps/dism/Add-AppxProvisionedPackage.md index 2ddd8d84e8..a0b8d75da1 100644 --- a/docset/winserver2016-ps/dism/Add-AppxProvisionedPackage.md +++ b/docset/winserver2016-ps/dism/Add-AppxProvisionedPackage.md @@ -39,7 +39,7 @@ For example, you must install the x86 dependency on the x86 image. You cannot install an app package (.appx) on an operating system that does not support Windows 8 apps. Apps are not supported on Server Core installations of Windows Server 2012, Windows Preinstallation Environment (Windows PE) 4.0, or on any versions of Windows older than Windows 8 and Windows Server 2012. -To install and run apps on Windows Server 2016, you must install the [Install Server with Desktop Experience](https://docs.microsoft.com/windows-server/get-started/getting-started-with-server-with-desktop-experience). +To install and run apps on Windows Server 2016, you must install the [Install Server with Desktop Experience](/windows-server/get-started/getting-started-with-server-with-desktop-experience). Use the *Online* parameter to specify the running operating system on your local computer, or use the *Path* parameter to specify the location of a mounted Windows image. @@ -50,7 +50,7 @@ Use the *FolderPath* parameter to specify the location of a folder of unpacked a To add an app package (.appx) for a particular user, or to test a package while developing your app, use the **Add-AppxPackage** cmdlet instead. -For more information, including requirements for app package provisioning, see [Sideload Apps with DISM](https://docs.microsoft.com/windows-hardware/manufacture/desktop/sideload-apps-with-dism-s14) and [How to develop an OEM app that uses a custom file](https://docs.microsoft.com/windows/win32/appxpkg/how-to-develop-oem-app-with-custom-file) in MicrosoftDocs. +For more information, including requirements for app package provisioning, see [Sideload Apps with DISM](/windows-hardware/manufacture/desktop/sideload-apps-with-dism-s14) and [How to develop an OEM app that uses a custom file](/windows/win32/appxpkg/how-to-develop-oem-app-with-custom-file) in MicrosoftDocs. ## EXAMPLES diff --git a/docset/winserver2016-ps/dism/Add-WindowsCapability.md b/docset/winserver2016-ps/dism/Add-WindowsCapability.md index 6c22ceb37c..4b947e9a75 100644 --- a/docset/winserver2016-ps/dism/Add-WindowsCapability.md +++ b/docset/winserver2016-ps/dism/Add-WindowsCapability.md @@ -239,10 +239,9 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES -As of Windows 10 version 1709, you cannot use Windows Server Update Services (WSUS) to host Features on Demand (FOD) and language packs for Windows 10 clients. Instead, you can enforce a Group Policy setting that tells the clients to download them directly from Windows Update. You can also host FOD and language packs on a network share, but starting with Windows 10 version 1809, FOD and language packs can only be installed from Windows Update. For more information, see [How to make Features on Demand and language packs available when you're using WSUS/Configuration Manager](https://docs.microsoft.com/windows/deployment/update/fod-and-lang-packs). +As of Windows 10 version 1709, you cannot use Windows Server Update Services (WSUS) to host Features on Demand (FOD) and language packs for Windows 10 clients. Instead, you can enforce a Group Policy setting that tells the clients to download them directly from Windows Update. You can also host FOD and language packs on a network share, but starting with Windows 10 version 1809, FOD and language packs can only be installed from Windows Update. For more information, see [How to make Features on Demand and language packs available when you're using WSUS/Configuration Manager](/windows/deployment/update/fod-and-lang-packs). ## RELATED LINKS [Get-WindowsCapability](./Get-WindowsCapability.md) [Remove-WindowsCapability](./Remove-WindowsCapability.md) - diff --git a/docset/winserver2016-ps/dism/Set-WindowsReservedStorageState.md b/docset/winserver2016-ps/dism/Set-WindowsReservedStorageState.md index 61a376889f..ebb0555887 100644 --- a/docset/winserver2016-ps/dism/Set-WindowsReservedStorageState.md +++ b/docset/winserver2016-ps/dism/Set-WindowsReservedStorageState.md @@ -18,7 +18,7 @@ Set-WindowsReservedStorageState -State [-LogPath ``` ## DESCRIPTION -Sets the state of reserved storage. This command line option is only supported for online Windows images. If reserved storage is in use, it may not be disabled, and the following error is returned: This operation is not supported when reserved storage is in use. Please wait for any servicing operations to complete and then try again later. Changes to reserved storage state are reflected in Sysprep generalized Windows images. For more information see [Sysprep (Generalize) a Windows installation](https://docs.microsoft.com/windows-hardware/manufacture/desktop/sysprep--system-preparation--overview) +Sets the state of reserved storage. This command line option is only supported for online Windows images. If reserved storage is in use, it may not be disabled, and the following error is returned: This operation is not supported when reserved storage is in use. Please wait for any servicing operations to complete and then try again later. Changes to reserved storage state are reflected in Sysprep generalized Windows images. For more information see [Sysprep (Generalize) a Windows installation](/windows-hardware/manufacture/desktop/sysprep--system-preparation--overview) ## EXAMPLES diff --git a/docset/winserver2016-ps/dnsclient/Set-DnsClient.md b/docset/winserver2016-ps/dnsclient/Set-DnsClient.md index ec53de7e06..c407091832 100644 --- a/docset/winserver2016-ps/dnsclient/Set-DnsClient.md +++ b/docset/winserver2016-ps/dnsclient/Set-DnsClient.md @@ -78,7 +78,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -299,4 +299,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Get-DnsClient](./Get-DnsClient.md) [Register-DnsClient](./Register-DnsClient.md) - diff --git a/docset/winserver2016-ps/dnsserver/Get-DnsServer.md b/docset/winserver2016-ps/dnsserver/Get-DnsServer.md index 956c4042ca..19f204a5aa 100644 --- a/docset/winserver2016-ps/dnsserver/Get-DnsServer.md +++ b/docset/winserver2016-ps/dnsserver/Get-DnsServer.md @@ -26,7 +26,7 @@ The **Get-DnsServer** cmdlet retrieves a Domain Name System (DNS) server configu You can pass the output of the **Get-DnsServer** cmdlet to the **Export-Clixml** cmdlet by using the pipeline operator. That cmdlet generates an XML file of the configuration. You can use the XML file to back up or transfer DNS settings between computers. -For more information about **Export-Clixml**, see [Using the Export-Clixml cmdlet](https://docs.microsoft.com/powershell/module/microsoft.powershell.utility/export-clixml). +For more information about **Export-Clixml**, see [Using the Export-Clixml cmdlet](/powershell/module/microsoft.powershell.utility/export-clixml). ## EXAMPLES @@ -134,4 +134,3 @@ This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVar [Set-DnsServer](./Set-DnsServer.md) [Test-DnsServer](./Test-DnsServer.md) - diff --git a/docset/winserver2016-ps/hyper-v/Debug-VM.md b/docset/winserver2016-ps/hyper-v/Debug-VM.md index 6f8bb409e1..c76943d538 100644 --- a/docset/winserver2016-ps/hyper-v/Debug-VM.md +++ b/docset/winserver2016-ps/hyper-v/Debug-VM.md @@ -230,4 +230,4 @@ Shielded virtual machines do not support debugging or nonmaskable interrupts. ## RELATED LINKS -[Configuring Automatic Debugging](https://docs.microsoft.com/windows/win32/debug/configuring-automatic-debugging) +[Configuring Automatic Debugging](/windows/win32/debug/configuring-automatic-debugging) diff --git a/docset/winserver2016-ps/hyper-v/Mount-VHD.md b/docset/winserver2016-ps/hyper-v/Mount-VHD.md index 0c13a95f7f..0cd943865c 100644 --- a/docset/winserver2016-ps/hyper-v/Mount-VHD.md +++ b/docset/winserver2016-ps/hyper-v/Mount-VHD.md @@ -219,4 +219,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS -[Mount-DiskImage](https://docs.microsoft.com/powershell/module/storage/mount-diskimage) +[Mount-DiskImage](/powershell/module/storage/mount-diskimage) diff --git a/docset/winserver2016-ps/hyper-v/Move-VM.md b/docset/winserver2016-ps/hyper-v/Move-VM.md index 0d9413e524..d54cd45dc6 100644 --- a/docset/winserver2016-ps/hyper-v/Move-VM.md +++ b/docset/winserver2016-ps/hyper-v/Move-VM.md @@ -127,7 +127,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -479,4 +479,3 @@ None, by default. ## NOTES ## RELATED LINKS - diff --git a/docset/winserver2016-ps/hyper-v/New-VM.md b/docset/winserver2016-ps/hyper-v/New-VM.md index efcfffa01b..1f192b9133 100644 --- a/docset/winserver2016-ps/hyper-v/New-VM.md +++ b/docset/winserver2016-ps/hyper-v/New-VM.md @@ -147,7 +147,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml diff --git a/docset/winserver2016-ps/hyper-v/Remove-VMHardDiskDrive.md b/docset/winserver2016-ps/hyper-v/Remove-VMHardDiskDrive.md index 23a237a7bb..8b5c58f262 100644 --- a/docset/winserver2016-ps/hyper-v/Remove-VMHardDiskDrive.md +++ b/docset/winserver2016-ps/hyper-v/Remove-VMHardDiskDrive.md @@ -51,7 +51,7 @@ Removes all virtual hard drives on IDE controller 1 from virtual machine TestVM. ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -243,4 +243,3 @@ If **-PassThru** is specified. ## NOTES ## RELATED LINKS - diff --git a/docset/winserver2016-ps/hyper-v/Set-VMNetworkAdapterVlan.md b/docset/winserver2016-ps/hyper-v/Set-VMNetworkAdapterVlan.md index 7d2d5f3c89..22986a103c 100644 --- a/docset/winserver2016-ps/hyper-v/Set-VMNetworkAdapterVlan.md +++ b/docset/winserver2016-ps/hyper-v/Set-VMNetworkAdapterVlan.md @@ -485,4 +485,4 @@ If **-PassThru** is specified. ## NOTES ## RELATED LINKS -[Configure and View VLAN Settings on Hyper-V Virtual Switch Ports](https://docs.microsoft.com/windows-server/virtualization/hyper-v-virtual-switch/configure-and-view-vlan-settings-on-hyper-v-virtual-switch-ports) +[Configure and View VLAN Settings on Hyper-V Virtual Switch Ports](/windows-server/virtualization/hyper-v-virtual-switch/configure-and-view-vlan-settings-on-hyper-v-virtual-switch-ports) diff --git a/docset/winserver2016-ps/hyper-v/Set-VMProcessor.md b/docset/winserver2016-ps/hyper-v/Set-VMProcessor.md index c9bba90ed6..d4b26f1e90 100644 --- a/docset/winserver2016-ps/hyper-v/Set-VMProcessor.md +++ b/docset/winserver2016-ps/hyper-v/Set-VMProcessor.md @@ -234,7 +234,7 @@ Accept wildcard characters: False ### -HwThreadCountPerCore Specifies the number of virtual SMT threads exposed to the virtual machine. Setting this value to 0 indicates the virtual machine will inherit the host's number of threads per core. This setting may not exceed the host's number of threads per core. -Note: Windows Server 2016 does not support setting HwThreadCountPerCore to 0. For more details, see [Configuring VM SMT settings using PowerShell](https://docs.microsoft.com/windows-server/virtualization/hyper-v/manage/about-hyper-v-scheduler-type-selection#configuring-vm-smt-settings-using-powershell). +Note: Windows Server 2016 does not support setting HwThreadCountPerCore to 0. For more details, see [Configuring VM SMT settings using PowerShell](/windows-server/virtualization/hyper-v/manage/about-hyper-v-scheduler-type-selection#configuring-vm-smt-settings-using-powershell). ```yaml Type: Int64 @@ -295,7 +295,7 @@ Accept wildcard characters: False ``` ### -Perfmon -Specifies the hardware to be Exposed for Performance Monitoring. For more information about requirements, visit [Enable Intel Performance Monitoring Hardware in a Hyper-V virtual machine](https://docs.microsoft.com/windows-server/virtualization/hyper-v/manage/performance-monitoring-hardware). +Specifies the hardware to be Exposed for Performance Monitoring. For more information about requirements, visit [Enable Intel Performance Monitoring Hardware in a Hyper-V virtual machine](/windows-server/virtualization/hyper-v/manage/performance-monitoring-hardware). ```yaml diff --git a/docset/winserver2016-ps/hyper-v/Set-VMReplicationServer.md b/docset/winserver2016-ps/hyper-v/Set-VMReplicationServer.md index 7ad5ab4336..d7e85744e9 100644 --- a/docset/winserver2016-ps/hyper-v/Set-VMReplicationServer.md +++ b/docset/winserver2016-ps/hyper-v/Set-VMReplicationServer.md @@ -146,7 +146,7 @@ To display a list of certificates in the computer's My store and the thumbprint `PS C:\\\> dir | format-list` -For more information about certificate stores, see [Certificate stores](https://docs.microsoft.com/previous-versions/windows/it-pro/windows-server-2003/cc757138(v=ws.10). +For more information about certificate stores, see [Certificate stores](/previous-versions/windows/it-pro/windows-server-2003/cc757138(v=ws.10)). ```yaml Type: String @@ -162,7 +162,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml diff --git a/docset/winserver2016-ps/international/Set-WinDefaultInputMethodOverride.md b/docset/winserver2016-ps/international/Set-WinDefaultInputMethodOverride.md index 1be3e76815..daf011470e 100644 --- a/docset/winserver2016-ps/international/Set-WinDefaultInputMethodOverride.md +++ b/docset/winserver2016-ps/international/Set-WinDefaultInputMethodOverride.md @@ -56,7 +56,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS ### InputTIP -You can pipe a locale ID and a keyboard language ID (KLID). See [Default Input Profiles (Input Locales) in Windows](https://docs.microsoft.com/windows-hardware/manufacture/desktop/default-input-locales-for-windows-language-packs) +You can pipe a locale ID and a keyboard language ID (KLID). See [Default Input Profiles (Input Locales) in Windows](/windows-hardware/manufacture/desktop/default-input-locales-for-windows-language-packs) ## OUTPUTS @@ -65,4 +65,3 @@ You can pipe a locale ID and a keyboard language ID (KLID). See [Default Input P ## RELATED LINKS [Get-WinDefaultInputMethodOverride](./Get-WinDefaultInputMethodOverride.md) - diff --git a/docset/winserver2016-ps/msdtc/Test-Dtc.md b/docset/winserver2016-ps/msdtc/Test-Dtc.md index a817e917a0..4ac3046866 100644 --- a/docset/winserver2016-ps/msdtc/Test-Dtc.md +++ b/docset/winserver2016-ps/msdtc/Test-Dtc.md @@ -33,7 +33,7 @@ To run this cmdlet, you must first enable the firewall rule for Distributed Tran `netsh advfirewall firewall set rule group="Distributed Transaction Coordinator" new enable=yes` -For more information, see [Netsh Command Syntax, Contexts, and Formatting](https://docs.microsoft.com/en-us/windows-server/networking/technologies/netsh/netsh-contexts). +For more information, see [Netsh Command Syntax, Contexts, and Formatting](/windows-server/networking/technologies/netsh/netsh-contexts). To enable the rule using PowerShell run the following command: @@ -318,4 +318,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Stop-Dtc](./Stop-Dtc.md) [Uninstall-Dtc](./Uninstall-Dtc.md) - diff --git a/docset/winserver2016-ps/netadapter/Enable-NetAdapterVmq.md b/docset/winserver2016-ps/netadapter/Enable-NetAdapterVmq.md index be7c601276..75ebdfa991 100644 --- a/docset/winserver2016-ps/netadapter/Enable-NetAdapterVmq.md +++ b/docset/winserver2016-ps/netadapter/Enable-NetAdapterVmq.md @@ -71,7 +71,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -255,4 +255,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Get-NetAdapterVmqQueue](./Get-NetAdapterVmqQueue.md) [Set-NetAdapterVmq](./Set-NetAdapterVmq.md) - diff --git a/docset/winserver2016-ps/netadapter/Get-NetAdapter.md b/docset/winserver2016-ps/netadapter/Get-NetAdapter.md index 217fb3da27..8954e30aae 100644 --- a/docset/winserver2016-ps/netadapter/Get-NetAdapter.md +++ b/docset/winserver2016-ps/netadapter/Get-NetAdapter.md @@ -155,7 +155,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -278,7 +278,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. -[CIM_NetworkAdapter class](https://docs.microsoft.com/windows/win32/cimwin32prov/cim-networkadapter) +[CIM_NetworkAdapter class](/windows/win32/cimwin32prov/cim-networkadapter) ## NOTES @@ -293,4 +293,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Restart-NetAdapter](./Restart-NetAdapter.md) [Set-NetAdapter](./Set-NetAdapter.md) - diff --git a/docset/winserver2016-ps/netconnection/Set-NetConnectionProfile.md b/docset/winserver2016-ps/netconnection/Set-NetConnectionProfile.md index efbcfcabcf..4666f81b08 100644 --- a/docset/winserver2016-ps/netconnection/Set-NetConnectionProfile.md +++ b/docset/winserver2016-ps/netconnection/Set-NetConnectionProfile.md @@ -67,7 +67,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -288,4 +288,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS [Get-NetConnectionProfile](./Get-NetConnectionProfile.md) - diff --git a/docset/winserver2016-ps/netlldpagent/NetLldpAgent.md b/docset/winserver2016-ps/netlldpagent/NetLldpAgent.md index e51c7bbead..f03da26663 100644 --- a/docset/winserver2016-ps/netlldpagent/NetLldpAgent.md +++ b/docset/winserver2016-ps/netlldpagent/NetLldpAgent.md @@ -11,7 +11,7 @@ title: NetLldpAgent # NetLldpAgent Module ## Description -This reference provides cmdlet descriptions and syntax for the Network Logical Link Discovery Protocol (LLDP) Agent. Use of the NetLldpAgent module requires the [DataCenterBridging](https://docs.microsoft.com/windows-server/networking/technologies/dcb/dcb-install) feature to be installed. The following cmdlets are covered by this reference: +This reference provides cmdlet descriptions and syntax for the Network Logical Link Discovery Protocol (LLDP) Agent. Use of the NetLldpAgent module requires the [DataCenterBridging](/windows-server/networking/technologies/dcb/dcb-install) feature to be installed. The following cmdlets are covered by this reference: ## NetLldpAgent Cmdlets ### [Disable-NetLldpAgent](./Disable-NetLldpAgent.md) @@ -22,5 +22,3 @@ Enables LLDP on a network interface on a computer. ### [Get-NetLldpAgent](./Get-NetLldpAgent.md) Gets the settings of the LLDP agent on a network interface on a host computer. - - diff --git a/docset/winserver2016-ps/netsecurity/Set-NetFirewallAddressFilter.md b/docset/winserver2016-ps/netsecurity/Set-NetFirewallAddressFilter.md index 06ad4e449e..e71b4d94be 100644 --- a/docset/winserver2016-ps/netsecurity/Set-NetFirewallAddressFilter.md +++ b/docset/winserver2016-ps/netsecurity/Set-NetFirewallAddressFilter.md @@ -92,7 +92,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -350,4 +350,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Get-NetIPsecMainModeRule](./Get-NetIPsecMainModeRule.md) [Set-NetIPsecRule](./Set-NetIPsecRule.md) - diff --git a/docset/winserver2016-ps/nettcpip/New-NetRoute.md b/docset/winserver2016-ps/nettcpip/New-NetRoute.md index 71c1a4129d..f64f69d9c3 100644 --- a/docset/winserver2016-ps/nettcpip/New-NetRoute.md +++ b/docset/winserver2016-ps/nettcpip/New-NetRoute.md @@ -103,7 +103,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/New-CimSession) or [Get-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/Get-CimSession) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/New-CimSession) or [Get-CimSession](/powershell/module/cimcmdlets/Get-CimSession) cmdlet. The default is the current session on the local computer. ```yaml @@ -408,4 +408,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Set-NetRoute](./Set-NetRoute.md) [Set-NetIPInterface](./Set-NetIPInterface.md) - diff --git a/docset/winserver2016-ps/pki/Get-Certificate.md b/docset/winserver2016-ps/pki/Get-Certificate.md index 0c2a881518..8545bc8e95 100644 --- a/docset/winserver2016-ps/pki/Get-Certificate.md +++ b/docset/winserver2016-ps/pki/Get-Certificate.md @@ -274,5 +274,4 @@ The EnrollmentResult object contains the results of enrollment. [Set-Location](https://go.microsoft.com/fwlink/p/?LinkId=293912) -[System Store Locations](https://docs.microsoft.com/windows/desktop/seccrypto/system-store-locations) - +[System Store Locations](/windows/desktop/seccrypto/system-store-locations) diff --git a/docset/winserver2016-ps/pki/Import-Certificate.md b/docset/winserver2016-ps/pki/Import-Certificate.md index 7de22572b2..fe1b7d0a75 100644 --- a/docset/winserver2016-ps/pki/Import-Certificate.md +++ b/docset/winserver2016-ps/pki/Import-Certificate.md @@ -137,4 +137,4 @@ The output is an array of **X509Certificate2\[\]** objects. [Export-Certificate](./Export-Certificate.md) -[System Store Locations](https://docs.microsoft.com/windows/desktop/seccrypto/system-store-locations) +[System Store Locations](/windows/desktop/seccrypto/system-store-locations) diff --git a/docset/winserver2016-ps/pki/Import-PfxCertificate.md b/docset/winserver2016-ps/pki/Import-PfxCertificate.md index 05b03e0c9e..9b44b76cea 100644 --- a/docset/winserver2016-ps/pki/Import-PfxCertificate.md +++ b/docset/winserver2016-ps/pki/Import-PfxCertificate.md @@ -176,4 +176,4 @@ The imported **X509Certificate2** object contained in the PFX file that is assoc [Export-PfxCertificate](./Export-PfxCertificate.md) -[System Store Locations](https://docs.microsoft.com/windows/desktop/seccrypto/system-store-locations) +[System Store Locations](/windows/desktop/seccrypto/system-store-locations) diff --git a/docset/winserver2016-ps/pki/New-SelfSignedCertificate.md b/docset/winserver2016-ps/pki/New-SelfSignedCertificate.md index 0e31b5dc00..fc294ad970 100644 --- a/docset/winserver2016-ps/pki/New-SelfSignedCertificate.md +++ b/docset/winserver2016-ps/pki/New-SelfSignedCertificate.md @@ -623,7 +623,7 @@ Accept wildcard characters: False ``` ### -Provider -Specifies the name of the KSP or CSP that this cmdlet uses to create the certificate. See [Cryptographic Providers](https://docs.microsoft.com/en-us/windows/desktop/SecCertEnroll/understanding-cryptographic-providers) for more information. +Specifies the name of the KSP or CSP that this cmdlet uses to create the certificate. See [Cryptographic Providers](/windows/desktop/SecCertEnroll/understanding-cryptographic-providers) for more information. Some acceptable values include: - Microsoft Software Key Storage Provider @@ -1010,4 +1010,4 @@ An **X509Certificate2** object for the certificate that has been created. ## RELATED LINKS -[System Store Locations](https://docs.microsoft.com/windows/desktop/seccrypto/system-store-locations) +[System Store Locations](/windows/desktop/seccrypto/system-store-locations) diff --git a/docset/winserver2016-ps/printmanagement/Get-PrintConfiguration.md b/docset/winserver2016-ps/printmanagement/Get-PrintConfiguration.md index 68fb20c05c..236821088a 100644 --- a/docset/winserver2016-ps/printmanagement/Get-PrintConfiguration.md +++ b/docset/winserver2016-ps/printmanagement/Get-PrintConfiguration.md @@ -85,7 +85,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -180,4 +180,3 @@ This cmdlet returns a printer configuration object. ## RELATED LINKS [Set-PrintConfiguration](./Set-PrintConfiguration.md) - diff --git a/docset/winserver2016-ps/remotedesktop/Set-RDCertificate.md b/docset/winserver2016-ps/remotedesktop/Set-RDCertificate.md index 94e83fad37..1776416167 100644 --- a/docset/winserver2016-ps/remotedesktop/Set-RDCertificate.md +++ b/docset/winserver2016-ps/remotedesktop/Set-RDCertificate.md @@ -46,7 +46,7 @@ PS C:\>$Password = ConvertTo-SecureString -String "Cups34Horses&&" -AsPlainText PS C:\>Set-RDCertificate -Role RDRedirector -ImportPath "C:\Certificates\Redirector07.pfx" -Password $Password -ConnectionBroker "RDCB.Contoso.com" ``` -The first part of the example uses the **ConvertTo-SecureString** cmdlet to create a secure string based on a string that the user supplies and stores it in the **$Password** variable. For more information, see [ConvertTo-SecureString](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.security/ConvertTo-SecureString?view=powershell-6). You can also enter the `Get-Help ConvertTo-SecureString` cmdlet into your PowerShell window. +The first part of the example uses the **ConvertTo-SecureString** cmdlet to create a secure string based on a string that the user supplies and stores it in the **$Password** variable. For more information, see [ConvertTo-SecureString](/powershell/module/microsoft.powershell.security/ConvertTo-SecureString?view=powershell-6). You can also enter the `Get-Help ConvertTo-SecureString` cmdlet into your PowerShell window. The second part of the example specifies the file name of the certificate to use for the redirector role for the RD Connection Broker named RDCB.Contoso.com. The cmdlet uses the secure string stored in the **$Password** variable to help secure the certificate. @@ -178,7 +178,7 @@ Accept wildcard characters: False ### CommonParameters This cmdlet supports the following common parameters: *-Debug*, *-ErrorAction*, *-ErrorVariable*, *-InformationAction*, *-InformationVariable*, *-OutVariable*, *-OutBuffer*, *-PipelineVariable*, *-Verbose*, *-WarningAction*, and *-WarningVariable*. -For more information, see [about_CommonParameters](https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-6). +For more information, see [about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-6). ## Inputs @@ -196,4 +196,4 @@ For more information, see [about_CommonParameters](https://docs.microsoft.com/po [New-RDCertificate](./New-RDCertificate.md) -[about_CommonParameters](https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-6) +[about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-6) diff --git a/docset/winserver2016-ps/scheduledtasks/New-ScheduledTask.md b/docset/winserver2016-ps/scheduledtasks/New-ScheduledTask.md index 52d462db79..90f67561ff 100644 --- a/docset/winserver2016-ps/scheduledtasks/New-ScheduledTask.md +++ b/docset/winserver2016-ps/scheduledtasks/New-ScheduledTask.md @@ -104,7 +104,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml diff --git a/docset/winserver2016-ps/scheduledtasks/New-ScheduledTaskSettingsSet.md b/docset/winserver2016-ps/scheduledtasks/New-ScheduledTaskSettingsSet.md index ac9cd414ed..397071cb2f 100644 --- a/docset/winserver2016-ps/scheduledtasks/New-ScheduledTaskSettingsSet.md +++ b/docset/winserver2016-ps/scheduledtasks/New-ScheduledTaskSettingsSet.md @@ -144,7 +144,7 @@ The second command creates scheduled task settings that specify if the task is n The third command registers the scheduled task Task01 to run the task action named Cmd, only then finish the task after one hour. -Without the ExecutionTimeLimit setting defined, the time limit set to it's default of three days for the Task Scheduler is allowed to complete the task. To configure the time limit, see [New-TimeSpan](https://docs.microsoft.com/powershell/module/microsoft.powershell.utility/new-timespan). +Without the ExecutionTimeLimit setting defined, the time limit set to it's default of three days for the Task Scheduler is allowed to complete the task. To configure the time limit, see [New-TimeSpan](/powershell/module/microsoft.powershell.utility/new-timespan). ## PARAMETERS @@ -651,4 +651,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Start-ScheduledTask](./Start-ScheduledTask.md) [Unregister-ScheduledTask](./Unregister-ScheduledTask.md) - diff --git a/docset/winserver2016-ps/scheduledtasks/Register-ScheduledTask.md b/docset/winserver2016-ps/scheduledtasks/Register-ScheduledTask.md index 47575f3eb3..0d973caa80 100644 --- a/docset/winserver2016-ps/scheduledtasks/Register-ScheduledTask.md +++ b/docset/winserver2016-ps/scheduledtasks/Register-ScheduledTask.md @@ -110,7 +110,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/en-us/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://docs.microsoft.com/en-us/powershell/module/cimcmdlets/get-cimsession) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](/powershell/module/cimcmdlets/get-cimsession) cmdlet. The default is the current session on the local computer. ```yaml @@ -342,7 +342,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_commonparameters). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters). ## INPUTS From 3cc3a143558e676eb9c59153a251885c409e68b6 Mon Sep 17 00:00:00 2001 From: Sean Wheeler Date: Wed, 7 Sep 2022 08:08:59 -0500 Subject: [PATCH 211/965] Update Set-RDCertificate.md --- docset/winserver2016-ps/remotedesktop/Set-RDCertificate.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docset/winserver2016-ps/remotedesktop/Set-RDCertificate.md b/docset/winserver2016-ps/remotedesktop/Set-RDCertificate.md index 1776416167..ae203e672c 100644 --- a/docset/winserver2016-ps/remotedesktop/Set-RDCertificate.md +++ b/docset/winserver2016-ps/remotedesktop/Set-RDCertificate.md @@ -176,9 +176,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the following common parameters: *-Debug*, *-ErrorAction*, *-ErrorVariable*, *-InformationAction*, *-InformationVariable*, *-OutVariable*, *-OutBuffer*, *-PipelineVariable*, *-Verbose*, *-WarningAction*, and *-WarningVariable*. -For more information, see [about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-6). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## Inputs From 9da454c91bc9eaa07a403ed33addb641e975392a Mon Sep 17 00:00:00 2001 From: Alex Buck Date: Fri, 9 Sep 2022 07:58:20 -0400 Subject: [PATCH 212/965] Update docset/winserver2016-ps/defender/Get-MpPreference.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2016-ps/defender/Get-MpPreference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2016-ps/defender/Get-MpPreference.md b/docset/winserver2016-ps/defender/Get-MpPreference.md index 55623dc093..a8642dab27 100644 --- a/docset/winserver2016-ps/defender/Get-MpPreference.md +++ b/docset/winserver2016-ps/defender/Get-MpPreference.md @@ -20,7 +20,7 @@ Get-MpPreference [-CimSession ] [-ThrottleLimit ] [-AsJob] ``` ## DESCRIPTION -The **Get-MpPreference** cmdlet gets preferences for the Windows Defender scans and updates. For more information about the preferences that this cmdlet retrieves, see [Windows Defender Preferences Class](/previous-versions/windows/desktop/legacy/dn455323(v=vs.85)) +The **Get-MpPreference** cmdlet gets preferences for the Windows Defender scans and updates. For more information about the preferences that this cmdlet retrieves, see [Windows Defender Preferences Class](/previous-versions/windows/desktop/legacy/dn455323(v=vs.85)). ## EXAMPLES From cf5862fd127ac3c815b78dea050bb02f6916e69b Mon Sep 17 00:00:00 2001 From: Alex Buck Date: Fri, 9 Sep 2022 07:58:32 -0400 Subject: [PATCH 213/965] Update docset/winserver2016-ps/dism/Set-WindowsReservedStorageState.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- .../winserver2016-ps/dism/Set-WindowsReservedStorageState.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docset/winserver2016-ps/dism/Set-WindowsReservedStorageState.md b/docset/winserver2016-ps/dism/Set-WindowsReservedStorageState.md index ebb0555887..b9bb92ca2f 100644 --- a/docset/winserver2016-ps/dism/Set-WindowsReservedStorageState.md +++ b/docset/winserver2016-ps/dism/Set-WindowsReservedStorageState.md @@ -18,7 +18,8 @@ Set-WindowsReservedStorageState -State [-LogPath ``` ## DESCRIPTION -Sets the state of reserved storage. This command line option is only supported for online Windows images. If reserved storage is in use, it may not be disabled, and the following error is returned: This operation is not supported when reserved storage is in use. Please wait for any servicing operations to complete and then try again later. Changes to reserved storage state are reflected in Sysprep generalized Windows images. For more information see [Sysprep (Generalize) a Windows installation](/windows-hardware/manufacture/desktop/sysprep--system-preparation--overview) +Sets the state of reserved storage. This command line option is only supported for online Windows images. If reserved storage is in use, it may not be disabled, and the following error is returned: This operation is not supported when reserved storage is in use. Please wait for any servicing operations to complete and then try again later. Changes to reserved storage state are reflected in Sysprep generalized Windows images. For more information, see [Sysprep (Generalize) a Windows installation](/windows-hardware/manufacture/desktop/sysprep--system-preparation--overview). + ## EXAMPLES From 5a04a46fa395abf6f420bf78ef621b044a4afefa Mon Sep 17 00:00:00 2001 From: Alex Buck Date: Fri, 9 Sep 2022 07:58:47 -0400 Subject: [PATCH 214/965] Update docset/winserver2016-ps/remotedesktop/Set-RDCertificate.md Co-authored-by: Sean Wheeler --- docset/winserver2016-ps/remotedesktop/Set-RDCertificate.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2016-ps/remotedesktop/Set-RDCertificate.md b/docset/winserver2016-ps/remotedesktop/Set-RDCertificate.md index ae203e672c..88ed80b21f 100644 --- a/docset/winserver2016-ps/remotedesktop/Set-RDCertificate.md +++ b/docset/winserver2016-ps/remotedesktop/Set-RDCertificate.md @@ -46,7 +46,7 @@ PS C:\>$Password = ConvertTo-SecureString -String "Cups34Horses&&" -AsPlainText PS C:\>Set-RDCertificate -Role RDRedirector -ImportPath "C:\Certificates\Redirector07.pfx" -Password $Password -ConnectionBroker "RDCB.Contoso.com" ``` -The first part of the example uses the **ConvertTo-SecureString** cmdlet to create a secure string based on a string that the user supplies and stores it in the **$Password** variable. For more information, see [ConvertTo-SecureString](/powershell/module/microsoft.powershell.security/ConvertTo-SecureString?view=powershell-6). You can also enter the `Get-Help ConvertTo-SecureString` cmdlet into your PowerShell window. +The first part of the example uses the **ConvertTo-SecureString** cmdlet to create a secure string based on a string that the user supplies and stores it in the **$Password** variable. For more information, see [ConvertTo-SecureString](/powershell/module/microsoft.powershell.security/ConvertTo-SecureString). You can also enter the `Get-Help ConvertTo-SecureString` cmdlet into your PowerShell window. The second part of the example specifies the file name of the certificate to use for the redirector role for the RD Connection Broker named RDCB.Contoso.com. The cmdlet uses the secure string stored in the **$Password** variable to help secure the certificate. From d2ebc04a05e997c5fd9b9c3268002b994cdbd5a8 Mon Sep 17 00:00:00 2001 From: Alex Buck Date: Fri, 9 Sep 2022 07:58:59 -0400 Subject: [PATCH 215/965] Update docset/winserver2016-ps/scheduledtasks/Register-ScheduledTask.md Co-authored-by: Sean Wheeler --- .../scheduledtasks/Register-ScheduledTask.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docset/winserver2016-ps/scheduledtasks/Register-ScheduledTask.md b/docset/winserver2016-ps/scheduledtasks/Register-ScheduledTask.md index 0d973caa80..9627430784 100644 --- a/docset/winserver2016-ps/scheduledtasks/Register-ScheduledTask.md +++ b/docset/winserver2016-ps/scheduledtasks/Register-ScheduledTask.md @@ -342,7 +342,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS From dbab869672b805e6142d7fdf4cab7a3b588ad4cc Mon Sep 17 00:00:00 2001 From: Alex Buck Date: Fri, 9 Sep 2022 07:59:14 -0400 Subject: [PATCH 216/965] Update docset/winserver2016-ps/international/Set-WinDefaultInputMethodOverride.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- .../international/Set-WinDefaultInputMethodOverride.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2016-ps/international/Set-WinDefaultInputMethodOverride.md b/docset/winserver2016-ps/international/Set-WinDefaultInputMethodOverride.md index daf011470e..3a59d9bba7 100644 --- a/docset/winserver2016-ps/international/Set-WinDefaultInputMethodOverride.md +++ b/docset/winserver2016-ps/international/Set-WinDefaultInputMethodOverride.md @@ -56,7 +56,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS ### InputTIP -You can pipe a locale ID and a keyboard language ID (KLID). See [Default Input Profiles (Input Locales) in Windows](/windows-hardware/manufacture/desktop/default-input-locales-for-windows-language-packs) +You can pipe a locale ID and a keyboard language ID (KLID). See [Default Input Profiles (Input Locales) in Windows](/windows-hardware/manufacture/desktop/default-input-locales-for-windows-language-packs). ## OUTPUTS From a68d9c56fcb10de39c36b6722d8d44b92712a761 Mon Sep 17 00:00:00 2001 From: Alex Buck Date: Fri, 9 Sep 2022 07:59:29 -0400 Subject: [PATCH 217/965] Update docset/winserver2016-ps/remotedesktop/Set-RDCertificate.md Co-authored-by: Sean Wheeler --- docset/winserver2016-ps/remotedesktop/Set-RDCertificate.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docset/winserver2016-ps/remotedesktop/Set-RDCertificate.md b/docset/winserver2016-ps/remotedesktop/Set-RDCertificate.md index 88ed80b21f..bbb9088b11 100644 --- a/docset/winserver2016-ps/remotedesktop/Set-RDCertificate.md +++ b/docset/winserver2016-ps/remotedesktop/Set-RDCertificate.md @@ -198,4 +198,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [New-RDCertificate](./New-RDCertificate.md) -[about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-6) +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216) + From 412ad12f8fa6fbc29f246b708b4440ab2fedc0f7 Mon Sep 17 00:00:00 2001 From: Alex Buck Date: Sat, 3 Sep 2022 12:56:51 -0400 Subject: [PATCH 218/965] [BULK UPDATE] DocuTune - Fix build validation issues: docs-link-absolute --- docset/winserver2016-ps/smbshare/Grant-SmbShareAccess.md | 3 +-- .../smbshare/Set-SmbServerConfiguration.md | 4 ++-- .../storage/Enable-PhysicalDiskIdentification.md | 3 +-- docset/winserver2016-ps/storage/Format-Volume.md | 3 +-- docset/winserver2016-ps/storage/Get-Disk.md | 3 +-- docset/winserver2016-ps/storage/Get-PhysicalDisk.md | 3 +-- docset/winserver2016-ps/storage/Get-VirtualDisk.md | 3 +-- docset/winserver2016-ps/tls/Get-TlsCipherSuite.md | 3 +-- .../updateservices/Add-WsusDynamicCategory.md | 2 +- docset/winserver2016-ps/vpnclient/Add-VpnConnection.md | 3 +-- docset/winserver2016-ps/vpnclient/New-EapConfiguration.md | 5 ++--- .../winserver2016-ps/vpnclient/Set-VpnConnectionProxy.md | 2 +- .../webadministration/Get-WebApplication.md | 2 +- .../winserver2016-ps/webadministration/New-WebAppPool.md | 2 +- .../Set-WebApplicationProxyConfiguration.md | 3 +-- .../windowserrorreporting/Disable-WindowsErrorReporting.md | 3 +-- .../Microsoft.DiagnosticDataViewer/Get-DiagnosticData.md | 2 +- .../Get-DiagnosticDataTypes.md | 3 +-- docset/winserver2019-ps/activedirectory/Get-ADComputer.md | 6 +++--- .../adcsdeployment/Install-AdcsCertificationAuthority.md | 2 +- .../winserver2019-ps/adfs/Enable-AdfsDeviceRegistration.md | 3 +-- .../adfs/New-AdfsAzureMfaTenantCertificate.md | 2 +- docset/winserver2019-ps/appx/Remove-AppxPackage.md | 2 +- docset/winserver2019-ps/bitlocker/Get-BitLockerVolume.md | 5 ++--- .../bitlocker/Remove-BitLockerKeyProtector.md | 2 +- docset/winserver2019-ps/configci/New-CIPolicy.md | 2 +- docset/winserver2019-ps/configci/New-CIPolicyRule.md | 7 +++---- docset/winserver2019-ps/configci/Set-RuleOption.md | 3 +-- .../winserver2019-ps/deduplication/Disable-DedupVolume.md | 3 +-- .../winserver2019-ps/deduplication/Enable-DedupVolume.md | 3 +-- docset/winserver2019-ps/deduplication/Expand-DedupFile.md | 3 +-- docset/winserver2019-ps/deduplication/Get-DedupJob.md | 3 +-- docset/winserver2019-ps/deduplication/Get-DedupMetadata.md | 3 +-- docset/winserver2019-ps/deduplication/Get-DedupSchedule.md | 3 +-- docset/winserver2019-ps/deduplication/Get-DedupStatus.md | 3 +-- docset/winserver2019-ps/deduplication/Get-DedupVolume.md | 3 +-- .../deduplication/Measure-DedupFileMetadata.md | 3 +-- docset/winserver2019-ps/deduplication/New-DedupSchedule.md | 3 +-- .../winserver2019-ps/deduplication/Remove-DedupSchedule.md | 3 +-- docset/winserver2019-ps/deduplication/Set-DedupSchedule.md | 3 +-- docset/winserver2019-ps/deduplication/Set-DedupVolume.md | 3 +-- docset/winserver2019-ps/deduplication/Start-DedupJob.md | 3 +-- docset/winserver2019-ps/deduplication/Stop-DedupJob.md | 3 +-- .../winserver2019-ps/deduplication/Update-DedupStatus.md | 3 +-- docset/winserver2019-ps/defender/Get-MpComputerStatus.md | 2 +- docset/winserver2019-ps/defender/Get-MpPreference.md | 3 +-- docset/winserver2019-ps/defender/Get-MpThreatDetection.md | 3 +-- docset/winserver2019-ps/defender/Remove-MpPreference.md | 2 +- docset/winserver2019-ps/dfsn/Get-DfsnFolderTarget.md | 5 ++--- .../winserver2019-ps/dhcpserver/Get-DhcpServerVersion.md | 3 +-- 50 files changed, 58 insertions(+), 94 deletions(-) diff --git a/docset/winserver2016-ps/smbshare/Grant-SmbShareAccess.md b/docset/winserver2016-ps/smbshare/Grant-SmbShareAccess.md index a0c05b220b..885782d361 100644 --- a/docset/winserver2016-ps/smbshare/Grant-SmbShareAccess.md +++ b/docset/winserver2016-ps/smbshare/Grant-SmbShareAccess.md @@ -116,7 +116,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -281,4 +281,3 @@ This cmdlet returns a **MSFT_SmbShareAccessControlEntry** object. [Revoke-SmbShareAccess](./Revoke-SmbShareAccess.md) [Unblock-SmbShareAccess](./Unblock-SmbShareAccess.md) - diff --git a/docset/winserver2016-ps/smbshare/Set-SmbServerConfiguration.md b/docset/winserver2016-ps/smbshare/Set-SmbServerConfiguration.md index 6a22ba73b6..711c942980 100644 --- a/docset/winserver2016-ps/smbshare/Set-SmbServerConfiguration.md +++ b/docset/winserver2016-ps/smbshare/Set-SmbServerConfiguration.md @@ -35,7 +35,7 @@ Set-SmbServerConfiguration [-AnnounceComment ] [-AnnounceServer [!NOTE] -> This cmdlet returns physical disk objects like basic disks and partitioned drive partitions. Dynamic disks can span multiple pieces of physical media, so they will not be returned by Get-Disk. For more information, see [Basic and Dynamic Disks](https://docs.microsoft.com/windows/desktop/FileIO/basic-and-dynamic-disks). +> This cmdlet returns physical disk objects like basic disks and partitioned drive partitions. Dynamic disks can span multiple pieces of physical media, so they will not be returned by Get-Disk. For more information, see [Basic and Dynamic Disks](/windows/desktop/FileIO/basic-and-dynamic-disks). ## SYNTAX @@ -401,4 +401,3 @@ This cmdlet outputs one or more objects representing disks. [Set-Disk](./Set-Disk.md) [Update-Disk](./Update-Disk.md) - diff --git a/docset/winserver2016-ps/storage/Get-PhysicalDisk.md b/docset/winserver2016-ps/storage/Get-PhysicalDisk.md index fe5f64a5ef..7b5f992819 100644 --- a/docset/winserver2016-ps/storage/Get-PhysicalDisk.md +++ b/docset/winserver2016-ps/storage/Get-PhysicalDisk.md @@ -119,7 +119,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -523,4 +523,3 @@ The Get-PhysicalDisk cmdlet returns objects that represent physical disks. [New-VirtualDisk](./New-VirtualDisk.md) [Get-StorageNode](./Get-StorageNode.md) - diff --git a/docset/winserver2016-ps/storage/Get-VirtualDisk.md b/docset/winserver2016-ps/storage/Get-VirtualDisk.md index cefdc0f5a8..4bac4d845d 100644 --- a/docset/winserver2016-ps/storage/Get-VirtualDisk.md +++ b/docset/winserver2016-ps/storage/Get-VirtualDisk.md @@ -624,7 +624,7 @@ You can use the pipeline operator to pass an MSFT_TargetVirtualDisk object to th ## OUTPUTS ### Microsoft.Management.Infrastructure.CimInstance#ROOT/Microsoft/Windows/Storage/MSFT_VirtualDisk -This cmdlet outputs an object that represents the specified virtual disk. For more information about output object type, please see [MSFT_VirtualDisk class](https://docs.microsoft.com/previous-versions/windows/desktop/stormgmt/msft-virtualdisk) +This cmdlet outputs an object that represents the specified virtual disk. For more information about output object type, please see [MSFT_VirtualDisk class](/previous-versions/windows/desktop/stormgmt/msft-virtualdisk) ## NOTES @@ -655,4 +655,3 @@ This cmdlet outputs an object that represents the specified virtual disk. For mo [Set-VirtualDisk](./Set-VirtualDisk.md) [Show-VirtualDisk](./Show-VirtualDisk.md) - diff --git a/docset/winserver2016-ps/tls/Get-TlsCipherSuite.md b/docset/winserver2016-ps/tls/Get-TlsCipherSuite.md index 6ace2641c6..0694fffb3e 100644 --- a/docset/winserver2016-ps/tls/Get-TlsCipherSuite.md +++ b/docset/winserver2016-ps/tls/Get-TlsCipherSuite.md @@ -24,7 +24,7 @@ The **Get-TlsCipherSuite** cmdlet gets an ordered collection of cipher suites fo For more information about the TLS cipher suites, see the documentation for the Enable-TlsCipherSuite cmdlet or type `Get-Help Enable-TlsCipherSuite`. -For more information about protocol versions , see [BCRYPT_KDF_TLS_PRF (L"TLS_PRF")](https://docs.microsoft.com/windows/desktop/api/bcrypt/nf-bcrypt-bcryptderivekey#bcrypt_kdf_tls_prf-ltls_prf) . +For more information about protocol versions , see [BCRYPT_KDF_TLS_PRF (L"TLS_PRF")](/windows/desktop/api/bcrypt/nf-bcrypt-bcryptderivekey#bcrypt_kdf_tls_prf-ltls_prf) . ## EXAMPLES @@ -138,4 +138,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Disable-TlsCipherSuite](./Disable-TlsCipherSuite.md) [Enable-TlsCipherSuite](./Enable-TlsCipherSuite.md) - diff --git a/docset/winserver2016-ps/updateservices/Add-WsusDynamicCategory.md b/docset/winserver2016-ps/updateservices/Add-WsusDynamicCategory.md index 0bb95e5665..3513974f98 100644 --- a/docset/winserver2016-ps/updateservices/Add-WsusDynamicCategory.md +++ b/docset/winserver2016-ps/updateservices/Add-WsusDynamicCategory.md @@ -38,7 +38,7 @@ In order to transfer dynamic categories from one update server to another, pass This cmdlet is used to add Dynamic Categories to WSUS, based on the type of requirement (computer model, device or application). The definition of Dynamic Categories in a WSUS implementation helps to categorize the applying of updates to the different categories available. -In some cases, you need advanced automation when using Dynamic Categories. If you want to download a specific device driver for a specific group of computers in the physical network, for example, advanced automation is required to use Dynamic Categories. In this case, the use of [Microsoft Endpoint Configuration Manager](https://docs.microsoft.com/configmgr/) is needed to [install and configure a software update point](https://docs.microsoft.com/configmgr/sum/get-started/install-a-software-update-point) feature. +In some cases, you need advanced automation when using Dynamic Categories. If you want to download a specific device driver for a specific group of computers in the physical network, for example, advanced automation is required to use Dynamic Categories. In this case, the use of [Microsoft Endpoint Configuration Manager](/configmgr/) is needed to [install and configure a software update point](/configmgr/sum/get-started/install-a-software-update-point) feature. ## EXAMPLES diff --git a/docset/winserver2016-ps/vpnclient/Add-VpnConnection.md b/docset/winserver2016-ps/vpnclient/Add-VpnConnection.md index 7112ec134d..7a06c97401 100644 --- a/docset/winserver2016-ps/vpnclient/Add-VpnConnection.md +++ b/docset/winserver2016-ps/vpnclient/Add-VpnConnection.md @@ -157,7 +157,7 @@ PS C:\> $EAPXml = [xml]Get-Content -Path C:\eap-config.xml PS C:\> Add-VpnConnection -Name "Test6" -ServerAddress "10.1.1.1" -TunnelType "L2tp" -EncryptionLevel "Required" -AuthenticationMethod Eap -SplitTunneling -AllUserConnection -RememberCredential -EapConfigXmlStream $EAPXml ``` -This set of commands adds a VPN connection using an already generated EAP XML configuration. For more information about how to generate EAP XML configuration, see [EAP Configuration](https://docs.microsoft.com/windows/client-management/mdm/eap-configuration). +This set of commands adds a VPN connection using an already generated EAP XML configuration. For more information about how to generate EAP XML configuration, see [EAP Configuration](/windows/client-management/mdm/eap-configuration). ## PARAMETERS @@ -574,4 +574,3 @@ This cmdlet returns a **VpnConnection** object that contains the VPN connection [Remove-VpnConnection](./Remove-VpnConnection.md) [New-EapConfiguration](./New-EapConfiguration.md) - diff --git a/docset/winserver2016-ps/vpnclient/New-EapConfiguration.md b/docset/winserver2016-ps/vpnclient/New-EapConfiguration.md index 9f9153c0c6..136f33138e 100644 --- a/docset/winserver2016-ps/vpnclient/New-EapConfiguration.md +++ b/docset/winserver2016-ps/vpnclient/New-EapConfiguration.md @@ -64,8 +64,8 @@ PS C:\> $A = New-EapConfiguration -UseWinlogonCredential This command creates an EAP configuration object, customized by the *UseWinlogonCredential* parameter, and stores it in the variable named $A. By specifying the *UseWinlogonCredential* parameter, the EAP configuration object is configured to use MSCHAPv2 as the authentication method, and that Windows logon credentials are used automatically when connecting with the VPN connection profile. -See [VPN authentication options](https://docs.microsoft.com/windows/security/identity-protection/vpn/vpn-authentication) -and [Add connectivity profiles](https://docs.microsoft.com/windows/configuration/wcd/wcd-connectivityprofiles#vpn-1) to learn more about VPN authentication methods. +See [VPN authentication options](/windows/security/identity-protection/vpn/vpn-authentication) +and [Add connectivity profiles](/windows/configuration/wcd/wcd-connectivityprofiles#vpn-1) to learn more about VPN authentication methods. ### Example 3: Create a TLS customized EAP configuration object ``` @@ -416,4 +416,3 @@ This cmdlet returns a **VpnConnection** object that contains the VPN connection [Add-VpnConnection](./Add-VpnConnection.md) [Set-VpnConnection](./Set-VpnConnection.md) - diff --git a/docset/winserver2016-ps/vpnclient/Set-VpnConnectionProxy.md b/docset/winserver2016-ps/vpnclient/Set-VpnConnectionProxy.md index 5ca9b3b298..2bf2701abf 100644 --- a/docset/winserver2016-ps/vpnclient/Set-VpnConnectionProxy.md +++ b/docset/winserver2016-ps/vpnclient/Set-VpnConnectionProxy.md @@ -108,7 +108,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml diff --git a/docset/winserver2016-ps/webadministration/Get-WebApplication.md b/docset/winserver2016-ps/webadministration/Get-WebApplication.md index f0d081491f..dd820c23ac 100644 --- a/docset/winserver2016-ps/webadministration/Get-WebApplication.md +++ b/docset/winserver2016-ps/webadministration/Get-WebApplication.md @@ -84,4 +84,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Remove-WebApplication](./Remove-WebApplication.md) -[Microsoft.Web.Administration.ConfigurationElement#Application](https://docs.microsoft.com/dotnet/api/microsoft.web.administration.application?view=iis-dotnet) +[Microsoft.Web.Administration.ConfigurationElement#Application](/dotnet/api/microsoft.web.administration.application?view=iis-dotnet) diff --git a/docset/winserver2016-ps/webadministration/New-WebAppPool.md b/docset/winserver2016-ps/webadministration/New-WebAppPool.md index 6e1894554f..399f42bc94 100644 --- a/docset/winserver2016-ps/webadministration/New-WebAppPool.md +++ b/docset/winserver2016-ps/webadministration/New-WebAppPool.md @@ -20,7 +20,7 @@ New-WebAppPool [-Name] [-Force] [] ``` ## DESCRIPTION -The **New-WebAppPool** cmdlet creates an Internet Information Services (IIS) application pool. For changing different properties of the application pool after creation, see [PowerShell Snap-in: Making Configuration Changes to Websites and App Pools](https://docs.microsoft.com/iis/manage/powershell/powershell-snap-in-making-simple-configuration-changes-to-web-sites-and-application-pools). +The **New-WebAppPool** cmdlet creates an Internet Information Services (IIS) application pool. For changing different properties of the application pool after creation, see [PowerShell Snap-in: Making Configuration Changes to Websites and App Pools](/iis/manage/powershell/powershell-snap-in-making-simple-configuration-changes-to-web-sites-and-application-pools). ## EXAMPLES diff --git a/docset/winserver2016-ps/webapplicationproxy/Set-WebApplicationProxyConfiguration.md b/docset/winserver2016-ps/webapplicationproxy/Set-WebApplicationProxyConfiguration.md index fdbcc6af21..098eeaf217 100644 --- a/docset/winserver2016-ps/webapplicationproxy/Set-WebApplicationProxyConfiguration.md +++ b/docset/winserver2016-ps/webapplicationproxy/Set-WebApplicationProxyConfiguration.md @@ -135,7 +135,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -288,4 +288,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS [Get-WebApplicationProxyConfiguration](./Get-WebApplicationProxyConfiguration.md) - diff --git a/docset/winserver2016-ps/windowserrorreporting/Disable-WindowsErrorReporting.md b/docset/winserver2016-ps/windowserrorreporting/Disable-WindowsErrorReporting.md index a63ff4a595..40223b6e1e 100644 --- a/docset/winserver2016-ps/windowserrorreporting/Disable-WindowsErrorReporting.md +++ b/docset/winserver2016-ps/windowserrorreporting/Disable-WindowsErrorReporting.md @@ -27,7 +27,7 @@ Windows Error Reporting generates reports in response to system events, such as To get the current WER status, use the [Get-WindowsErrorReporting](./Get-WindowsErrorReporting.md) cmdlet. If you disable WER, you can use the [Enable-WindowsErrorReporting](./Enable-WindowsErrorReporting.md) cmdlet to re-enable it. -After you run this cmdlet, WER again sends information about application failures to Microsoft. To customize the settings of Windows Error Reporting, use registry keys described in [WER Settings](https://docs.microsoft.com/windows/desktop/wer/wer-settings) article. +After you run this cmdlet, WER again sends information about application failures to Microsoft. To customize the settings of Windows Error Reporting, use registry keys described in [WER Settings](/windows/desktop/wer/wer-settings) article. ## EXAMPLES @@ -58,4 +58,3 @@ Otherwise, it returns $False. [Enable-WindowsErrorReporting](./Enable-WindowsErrorReporting.md) [Get-WindowsErrorReporting](./Get-WindowsErrorReporting.md) - diff --git a/docset/winserver2019-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticData.md b/docset/winserver2019-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticData.md index 7d421e4004..1e0a67f10e 100644 --- a/docset/winserver2019-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticData.md +++ b/docset/winserver2019-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticData.md @@ -165,4 +165,4 @@ Persisted event record. Requires Windows 10 version 17134 (1803) or higher ## RELATED LINKS -[About Windows Diagnostic Data](https://docs.microsoft.com/en-us/windows/privacy/windows-diagnostic-data) +[About Windows Diagnostic Data](/windows/privacy/windows-diagnostic-data) diff --git a/docset/winserver2019-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticDataTypes.md b/docset/winserver2019-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticDataTypes.md index 58b60636ef..c91e65c7fa 100644 --- a/docset/winserver2019-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticDataTypes.md +++ b/docset/winserver2019-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticDataTypes.md @@ -48,5 +48,4 @@ Requires Windows 10 version 17134 (1803) or higher ## RELATED LINKS -[About Windows Diagnostic Data](https://docs.microsoft.com/en-us/windows/privacy/windows-diagnostic-data) - +[About Windows Diagnostic Data](/windows/privacy/windows-diagnostic-data) diff --git a/docset/winserver2019-ps/activedirectory/Get-ADComputer.md b/docset/winserver2019-ps/activedirectory/Get-ADComputer.md index 60b17c8f62..66905c4570 100644 --- a/docset/winserver2019-ps/activedirectory/Get-ADComputer.md +++ b/docset/winserver2019-ps/activedirectory/Get-ADComputer.md @@ -45,7 +45,7 @@ You can also set the parameter to a computer object variable, such as `$] [-Force] [-WhatIf] [- ## DESCRIPTION This cmdlet has been deprecated for AD FS 2016. -For more information, see [Configure On-Premises Conditional Access using registered devices](https://docs.microsoft.com/windows-server/identity/ad-fs/operations/configure-device-based-conditional-access-on-premises). +For more information, see [Configure On-Premises Conditional Access using registered devices](/windows-server/identity/ad-fs/operations/configure-device-based-conditional-access-on-premises). The **Enable-AdfsDeviceRegistration** cmdlet configures a server in an Active Directory Federation Services (AD FS) farm to host the Device Registration Service. To completely enable the Device Registration Service, you must run this command on each AD FS server in your AD FS farm. @@ -121,4 +121,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Initialize-ADDeviceRegistration](./Initialize-ADDeviceRegistration.md) [Set-AdfsDeviceRegistration](./Set-AdfsDeviceRegistration.md) - diff --git a/docset/winserver2019-ps/adfs/New-AdfsAzureMfaTenantCertificate.md b/docset/winserver2019-ps/adfs/New-AdfsAzureMfaTenantCertificate.md index cc10d1fe2b..ffa14175f3 100644 --- a/docset/winserver2019-ps/adfs/New-AdfsAzureMfaTenantCertificate.md +++ b/docset/winserver2019-ps/adfs/New-AdfsAzureMfaTenantCertificate.md @@ -42,7 +42,7 @@ PS C:\> Set-AdfsAzureMfaTenant -TenantId -ClientId 981f26a1-7f4 These commands create a certificate for Azure MFA, register the certificate in a tenant, and enable Azure MFA on an AD FS farm. > [!NOTE] -> Customers are encouraged to use the newer Azure Active Directory PowerShell 2.0 module. For more information about the v2.0 module please see [AzureAD PowerShell 2.0](https://docs.microsoft.com/powershell/module/Azuread/?view=azureadps-2.0). +> Customers are encouraged to use the newer Azure Active Directory PowerShell 2.0 module. For more information about the v2.0 module please see [AzureAD PowerShell 2.0](/powershell/module/Azuread/?view=azureadps-2.0). ### Example 2: Determine which certificate Azure MFA is using ``` diff --git a/docset/winserver2019-ps/appx/Remove-AppxPackage.md b/docset/winserver2019-ps/appx/Remove-AppxPackage.md index 2b68661146..3459b2755e 100644 --- a/docset/winserver2019-ps/appx/Remove-AppxPackage.md +++ b/docset/winserver2019-ps/appx/Remove-AppxPackage.md @@ -140,7 +140,7 @@ If you specify this parameter, the cmdlet removes the app package for only the u > [!NOTE] > > - This parameter only accepts user SIDs -> - Use the **whoami /user** command to display the current SID of a user. See [whoami syntax](https://docs.microsoft.com/windows-server/administration/windows-commands/whoami) for details. +> - Use the **whoami /user** command to display the current SID of a user. See [whoami syntax](/windows-server/administration/windows-commands/whoami) for details. diff --git a/docset/winserver2019-ps/bitlocker/Get-BitLockerVolume.md b/docset/winserver2019-ps/bitlocker/Get-BitLockerVolume.md index a1b48a9b89..3079c13730 100644 --- a/docset/winserver2019-ps/bitlocker/Get-BitLockerVolume.md +++ b/docset/winserver2019-ps/bitlocker/Get-BitLockerVolume.md @@ -41,9 +41,9 @@ You can also use this cmdlet to view the following information about a BitLocker - Protection Status - Whether BitLocker currently uses a key protector to encrypt the volume encryption key. - EncryptionMethod - Indicates the encryption algorithm and key size used on the volume. -See [BitLocker Overview](https://docs.microsoft.com/windows/security/information-protection/bitlocker/bitlocker-overview) for more information. +See [BitLocker Overview](/windows/security/information-protection/bitlocker/bitlocker-overview) for more information. -For an overview of encryption methods, see [GetEncryptionMethod method](https://docs.microsoft.com/windows/win32/secprov/getencryptionmethod-win32-encryptablevolume). +For an overview of encryption methods, see [GetEncryptionMethod method](/windows/win32/secprov/getencryptionmethod-win32-encryptablevolume). ## EXAMPLES @@ -134,4 +134,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Enable-BitLocker](./Enable-BitLocker.md) [Enable-BitLockerAutoUnlock](./Enable-BitLockerAutoUnlock.md) - diff --git a/docset/winserver2019-ps/bitlocker/Remove-BitLockerKeyProtector.md b/docset/winserver2019-ps/bitlocker/Remove-BitLockerKeyProtector.md index 178b065996..f0fb2d4760 100644 --- a/docset/winserver2019-ps/bitlocker/Remove-BitLockerKeyProtector.md +++ b/docset/winserver2019-ps/bitlocker/Remove-BitLockerKeyProtector.md @@ -32,7 +32,7 @@ Any encrypted data on the drive remains encrypted. We recommend you have at least one recovery password as key protector to a volume in case you need to recover a system. -For an overview of BitLocker, see [Overview of BitLocker Device Encryption](https://docs.microsoft.com/windows/security/information-protection/bitlocker/bitlocker-device-encryption-overview-windows-10). +For an overview of BitLocker, see [Overview of BitLocker Device Encryption](/windows/security/information-protection/bitlocker/bitlocker-device-encryption-overview-windows-10). ## EXAMPLES diff --git a/docset/winserver2019-ps/configci/New-CIPolicy.md b/docset/winserver2019-ps/configci/New-CIPolicy.md index 3384b7c322..27a71ed422 100644 --- a/docset/winserver2019-ps/configci/New-CIPolicy.md +++ b/docset/winserver2019-ps/configci/New-CIPolicy.md @@ -390,7 +390,7 @@ Accept wildcard characters: False ``` ### -Level -Specifies the primary level of detail for generated rules. Refer to [WDAC File Rule Levels](https://docs.microsoft.com/windows/security/threat-protection/windows-defender-application-control/select-types-of-rules-to-create#windows-defender-application-control-file-rule-levels) for acceptable parameter values and descriptions. +Specifies the primary level of detail for generated rules. Refer to [WDAC File Rule Levels](/windows/security/threat-protection/windows-defender-application-control/select-types-of-rules-to-create#windows-defender-application-control-file-rule-levels) for acceptable parameter values and descriptions. ```yaml Type: RuleLevel diff --git a/docset/winserver2019-ps/configci/New-CIPolicyRule.md b/docset/winserver2019-ps/configci/New-CIPolicyRule.md index 8a007781ce..b77581a683 100644 --- a/docset/winserver2019-ps/configci/New-CIPolicyRule.md +++ b/docset/winserver2019-ps/configci/New-CIPolicyRule.md @@ -261,7 +261,7 @@ Accept wildcard characters: False ``` ### -FilePathRule -Specifies the path of a folder for generating a rule with level set to FilePath. Refer to [Filepath Rules Info](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/select-types-of-rules-to-create#more-information-about-filepath-rules) for acceptable wildcard values and usage. +Specifies the path of a folder for generating a rule with level set to FilePath. Refer to [Filepath Rules Info](/windows/security/threat-protection/windows-defender-application-control/select-types-of-rules-to-create#more-information-about-filepath-rules) for acceptable wildcard values and usage. This cmdlet will not check whether the filepath string is a valid filepath. ```yaml @@ -278,7 +278,7 @@ Accept wildcard characters: True ``` ### -Level -Specifies the primary level of detail for generated rules. Refer to [WDAC File Rule Levels](https://docs.microsoft.com/windows/security/threat-protection/windows-defender-application-control/select-types-of-rules-to-create#windows-defender-application-control-file-rule-levels) for acceptable parameter values and descriptions. +Specifies the primary level of detail for generated rules. Refer to [WDAC File Rule Levels](/windows/security/threat-protection/windows-defender-application-control/select-types-of-rules-to-create#windows-defender-application-control-file-rule-levels) for acceptable parameter values and descriptions. ```yaml Type: RuleLevel @@ -309,7 +309,7 @@ Accept wildcard characters: False ### -SpecificFileNameLevel Specifies the attribute of the file off which to base a file name rule. -Refer to [File Name Rules Info](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/select-types-of-rules-to-create#windows-defender-application-control-filename-rules) for a description of the acceptable values. +Refer to [File Name Rules Info](/windows/security/threat-protection/windows-defender-application-control/select-types-of-rules-to-create#windows-defender-application-control-filename-rules) for a description of the acceptable values. ```yaml Type: SwitchParameter @@ -339,4 +339,3 @@ This cmdlet returns the rules that it creates. ## RELATED LINKS [Get-SystemDriver](./Get-SystemDriver.md) - diff --git a/docset/winserver2019-ps/configci/Set-RuleOption.md b/docset/winserver2019-ps/configci/Set-RuleOption.md index c7ec04eb38..386b63c6f9 100644 --- a/docset/winserver2019-ps/configci/Set-RuleOption.md +++ b/docset/winserver2019-ps/configci/Set-RuleOption.md @@ -130,7 +130,7 @@ Accept wildcard characters: False ### -Option Specifies the index of the rule option that this cmdlet modifies. -Specify the **Help** parameter for option information. Refer to [WDAC Policy Rule Options](https://docs.microsoft.com/windows/security/threat-protection/windows-defender-application-control/select-types-of-rules-to-create#windows-defender-application-control-policy-rules) for more detailed descriptions of each option. +Specify the **Help** parameter for option information. Refer to [WDAC Policy Rule Options](/windows/security/threat-protection/windows-defender-application-control/select-types-of-rules-to-create#windows-defender-application-control-policy-rules) for more detailed descriptions of each option. ```yaml Type: Int32 @@ -156,4 +156,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS [Set-HVCIOptions](./Set-HVCIOptions.md) - diff --git a/docset/winserver2019-ps/deduplication/Disable-DedupVolume.md b/docset/winserver2019-ps/deduplication/Disable-DedupVolume.md index 77f0349960..aadfffbd8c 100644 --- a/docset/winserver2019-ps/deduplication/Disable-DedupVolume.md +++ b/docset/winserver2019-ps/deduplication/Disable-DedupVolume.md @@ -82,7 +82,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -172,4 +172,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Set-DedupVolume](./Set-DedupVolume.md) [Update-DedupStatus](./Update-DedupStatus.md) - diff --git a/docset/winserver2019-ps/deduplication/Enable-DedupVolume.md b/docset/winserver2019-ps/deduplication/Enable-DedupVolume.md index 44572b0ac2..81852b5602 100644 --- a/docset/winserver2019-ps/deduplication/Enable-DedupVolume.md +++ b/docset/winserver2019-ps/deduplication/Enable-DedupVolume.md @@ -85,7 +85,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -204,4 +204,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Get-DedupVolume](./Get-DedupVolume.md) [Set-DedupVolume](./Set-DedupVolume.md) - diff --git a/docset/winserver2019-ps/deduplication/Expand-DedupFile.md b/docset/winserver2019-ps/deduplication/Expand-DedupFile.md index 9fe9a37512..54a4707aa4 100644 --- a/docset/winserver2019-ps/deduplication/Expand-DedupFile.md +++ b/docset/winserver2019-ps/deduplication/Expand-DedupFile.md @@ -64,7 +64,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -128,4 +128,3 @@ A value of zero indicates success. ## RELATED LINKS [Get-DedupVolume](./Get-DedupVolume.md) - diff --git a/docset/winserver2019-ps/deduplication/Get-DedupJob.md b/docset/winserver2019-ps/deduplication/Get-DedupJob.md index 38d0fa971c..69d3a6f526 100644 --- a/docset/winserver2019-ps/deduplication/Get-DedupJob.md +++ b/docset/winserver2019-ps/deduplication/Get-DedupJob.md @@ -60,7 +60,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -159,4 +159,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Start-DedupJob](./Start-DedupJob.md) [Stop-DedupJob](./Stop-DedupJob.md) - diff --git a/docset/winserver2019-ps/deduplication/Get-DedupMetadata.md b/docset/winserver2019-ps/deduplication/Get-DedupMetadata.md index 2446b24929..8a38be7889 100644 --- a/docset/winserver2019-ps/deduplication/Get-DedupMetadata.md +++ b/docset/winserver2019-ps/deduplication/Get-DedupMetadata.md @@ -90,7 +90,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -159,4 +159,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th ## RELATED LINKS [Measure-DedupFileMetadata](./Measure-DedupFileMetadata.md) - diff --git a/docset/winserver2019-ps/deduplication/Get-DedupSchedule.md b/docset/winserver2019-ps/deduplication/Get-DedupSchedule.md index c9b4bdc54b..d4b0a873d3 100644 --- a/docset/winserver2019-ps/deduplication/Get-DedupSchedule.md +++ b/docset/winserver2019-ps/deduplication/Get-DedupSchedule.md @@ -74,7 +74,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -171,4 +171,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Remove-DedupSchedule](./Remove-DedupSchedule.md) [Set-DedupSchedule](./Set-DedupSchedule.md) - diff --git a/docset/winserver2019-ps/deduplication/Get-DedupStatus.md b/docset/winserver2019-ps/deduplication/Get-DedupStatus.md index 91514cee72..07544c138c 100644 --- a/docset/winserver2019-ps/deduplication/Get-DedupStatus.md +++ b/docset/winserver2019-ps/deduplication/Get-DedupStatus.md @@ -61,7 +61,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -134,4 +134,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th ## RELATED LINKS [Update-DedupStatus](./Update-DedupStatus.md) - diff --git a/docset/winserver2019-ps/deduplication/Get-DedupVolume.md b/docset/winserver2019-ps/deduplication/Get-DedupVolume.md index 517812e9f5..ec67848de0 100644 --- a/docset/winserver2019-ps/deduplication/Get-DedupVolume.md +++ b/docset/winserver2019-ps/deduplication/Get-DedupVolume.md @@ -75,7 +75,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -167,4 +167,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Enable-DedupVolume](./Enable-DedupVolume.md) [Set-DedupVolume](./Set-DedupVolume.md) - diff --git a/docset/winserver2019-ps/deduplication/Measure-DedupFileMetadata.md b/docset/winserver2019-ps/deduplication/Measure-DedupFileMetadata.md index faea0d8fce..ca0a69a4a8 100644 --- a/docset/winserver2019-ps/deduplication/Measure-DedupFileMetadata.md +++ b/docset/winserver2019-ps/deduplication/Measure-DedupFileMetadata.md @@ -62,7 +62,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -121,4 +121,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS [Update-DedupStatus](./Update-DedupStatus.md) - diff --git a/docset/winserver2019-ps/deduplication/New-DedupSchedule.md b/docset/winserver2019-ps/deduplication/New-DedupSchedule.md index a5ae44d533..735634ad19 100644 --- a/docset/winserver2019-ps/deduplication/New-DedupSchedule.md +++ b/docset/winserver2019-ps/deduplication/New-DedupSchedule.md @@ -101,7 +101,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -422,4 +422,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Remove-DedupSchedule](./Remove-DedupSchedule.md) [Set-DedupSchedule](./Set-DedupSchedule.md) - diff --git a/docset/winserver2019-ps/deduplication/Remove-DedupSchedule.md b/docset/winserver2019-ps/deduplication/Remove-DedupSchedule.md index f64f0bbe26..6f1242b393 100644 --- a/docset/winserver2019-ps/deduplication/Remove-DedupSchedule.md +++ b/docset/winserver2019-ps/deduplication/Remove-DedupSchedule.md @@ -67,7 +67,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -175,4 +175,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [New-DedupSchedule](./New-DedupSchedule.md) [Set-DedupSchedule](./Set-DedupSchedule.md) - diff --git a/docset/winserver2019-ps/deduplication/Set-DedupSchedule.md b/docset/winserver2019-ps/deduplication/Set-DedupSchedule.md index 10e9e3998a..e9c86ac01f 100644 --- a/docset/winserver2019-ps/deduplication/Set-DedupSchedule.md +++ b/docset/winserver2019-ps/deduplication/Set-DedupSchedule.md @@ -92,7 +92,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -441,4 +441,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [New-DedupSchedule](./New-DedupSchedule.md) [Remove-DedupSchedule](./Remove-DedupSchedule.md) - diff --git a/docset/winserver2019-ps/deduplication/Set-DedupVolume.md b/docset/winserver2019-ps/deduplication/Set-DedupVolume.md index 6ee89d8b16..cb97b11cdd 100644 --- a/docset/winserver2019-ps/deduplication/Set-DedupVolume.md +++ b/docset/winserver2019-ps/deduplication/Set-DedupVolume.md @@ -124,7 +124,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -440,4 +440,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Enable-DedupVolume](./Enable-DedupVolume.md) [Get-DedupVolume](./Get-DedupVolume.md) - diff --git a/docset/winserver2019-ps/deduplication/Start-DedupJob.md b/docset/winserver2019-ps/deduplication/Start-DedupJob.md index 01ab409033..f92530b9f5 100644 --- a/docset/winserver2019-ps/deduplication/Start-DedupJob.md +++ b/docset/winserver2019-ps/deduplication/Start-DedupJob.md @@ -65,7 +65,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -361,4 +361,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Get-DedupJob](./Get-DedupJob.md) [Stop-DedupJob](./Stop-DedupJob.md) - diff --git a/docset/winserver2019-ps/deduplication/Stop-DedupJob.md b/docset/winserver2019-ps/deduplication/Stop-DedupJob.md index d0daca5222..961f2f7956 100644 --- a/docset/winserver2019-ps/deduplication/Stop-DedupJob.md +++ b/docset/winserver2019-ps/deduplication/Stop-DedupJob.md @@ -73,7 +73,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -223,4 +223,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Get-DedupJob](./Get-DedupJob.md) [Start-DedupJob](./Start-DedupJob.md) - diff --git a/docset/winserver2019-ps/deduplication/Update-DedupStatus.md b/docset/winserver2019-ps/deduplication/Update-DedupStatus.md index f71fa325aa..0693c5964a 100644 --- a/docset/winserver2019-ps/deduplication/Update-DedupStatus.md +++ b/docset/winserver2019-ps/deduplication/Update-DedupStatus.md @@ -99,7 +99,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -168,4 +168,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th ## RELATED LINKS [Get-DedupStatus](./Get-DedupStatus.md) - diff --git a/docset/winserver2019-ps/defender/Get-MpComputerStatus.md b/docset/winserver2019-ps/defender/Get-MpComputerStatus.md index 56eb5da672..1e32852dd8 100644 --- a/docset/winserver2019-ps/defender/Get-MpComputerStatus.md +++ b/docset/winserver2019-ps/defender/Get-MpComputerStatus.md @@ -131,4 +131,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS -[Get-MpComputerStatus Properties](https://docs.microsoft.com/previous-versions/windows/desktop/defender/msft-mpcomputerstatus#properties) +[Get-MpComputerStatus Properties](/previous-versions/windows/desktop/defender/msft-mpcomputerstatus#properties) diff --git a/docset/winserver2019-ps/defender/Get-MpPreference.md b/docset/winserver2019-ps/defender/Get-MpPreference.md index 4db4ff2f9d..f21af5a1bc 100644 --- a/docset/winserver2019-ps/defender/Get-MpPreference.md +++ b/docset/winserver2019-ps/defender/Get-MpPreference.md @@ -20,7 +20,7 @@ Get-MpPreference [-CimSession ] [-ThrottleLimit ] [-AsJob] ``` ## DESCRIPTION -The **Get-MpPreference** cmdlet gets preferences for the Windows Defender scans and updates. For more information about the preferences that this cmdlet retrieves, see [Windows Defender Preferences Class](https://docs.microsoft.com/previous-versions/windows/desktop/legacy/dn455323(v=vs.85)) +The **Get-MpPreference** cmdlet gets preferences for the Windows Defender scans and updates. For more information about the preferences that this cmdlet retrieves, see [Windows Defender Preferences Class](/previous-versions/windows/desktop/legacy/dn455323(v=vs.85)) ## EXAMPLES @@ -108,4 +108,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Remove-MpPreference](./Remove-MpPreference.md) [Set-MpPreference](./Set-MpPreference.md) - diff --git a/docset/winserver2019-ps/defender/Get-MpThreatDetection.md b/docset/winserver2019-ps/defender/Get-MpThreatDetection.md index 8ab2113134..d7824f94df 100644 --- a/docset/winserver2019-ps/defender/Get-MpThreatDetection.md +++ b/docset/winserver2019-ps/defender/Get-MpThreatDetection.md @@ -43,7 +43,7 @@ This command returns the list of past malware detections for the local computer. The following table lists the hexadecimal and decimal error codes for this cmdlet. Each hexadecimal error code has a 0x8050 prefix. Therefore, an ERROR_MP_BAD_SCANID error corresponds to error code 0x80508012. Additionally, an ERR_MP_REMOVE_FAILED error corresponds to error code 0x80508017. -For a list of error codes, along with possible reasons and resolutions, see [Windows Defender Antivirus client error codes](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-antivirus/troubleshoot-windows-defender-antivirus#windows-defender-antivirus-client-error-codes) in the topic [Review event logs and error codes to troubleshoot issues with Windows Defender Antivirus](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-antivirus/troubleshoot-windows-defender-antivirus#windows-defender-antivirus-client-error-codes). +For a list of error codes, along with possible reasons and resolutions, see [Windows Defender Antivirus client error codes](/windows/security/threat-protection/windows-defender-antivirus/troubleshoot-windows-defender-antivirus#windows-defender-antivirus-client-error-codes) in the topic [Review event logs and error codes to troubleshoot issues with Windows Defender Antivirus](/windows/security/threat-protection/windows-defender-antivirus/troubleshoot-windows-defender-antivirus#windows-defender-antivirus-client-error-codes). |Symbolic Name | Error Number (hexadecimal) | Error number (decimal) | |------------------------------------|----------------------------|------------------------| @@ -174,4 +174,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Remove-MpThreat](./Remove-MpThreat.md) [Get-MpThreatCatalog](./Get-MpThreatCatalog.md) - diff --git a/docset/winserver2019-ps/defender/Remove-MpPreference.md b/docset/winserver2019-ps/defender/Remove-MpPreference.md index d3e599bb8b..8ce0c1f848 100644 --- a/docset/winserver2019-ps/defender/Remove-MpPreference.md +++ b/docset/winserver2019-ps/defender/Remove-MpPreference.md @@ -71,7 +71,7 @@ Accept wildcard characters: False ### -AttackSurfaceReductionOnlyExclusions Exclude files and paths from Attack Surface Reduction (ASR) rules. Specify the folders or files and resources that should be excluded from ASR rules. Enter a folder path or a fully qualified resource name. For example, ""C:\Windows"" will exclude all files in that directory. ""C:\Windows\App.exe"" will exclude only that specific file in that specific folder. -For more information about excluding files and folders from [ASR rules](https://docs.microsoft.com/windows/security/threat-protection/microsoft-defender-atp/enable-attack-surface-reduction#exclude-files-and-folders-from-asr-rules). +For more information about excluding files and folders from [ASR rules](/windows/security/threat-protection/microsoft-defender-atp/enable-attack-surface-reduction#exclude-files-and-folders-from-asr-rules). ```yaml Type: String[] diff --git a/docset/winserver2019-ps/dfsn/Get-DfsnFolderTarget.md b/docset/winserver2019-ps/dfsn/Get-DfsnFolderTarget.md index 846295a0cb..30e0a9d9c6 100644 --- a/docset/winserver2019-ps/dfsn/Get-DfsnFolderTarget.md +++ b/docset/winserver2019-ps/dfsn/Get-DfsnFolderTarget.md @@ -25,7 +25,7 @@ The **Get-DfsnFolderTarget** cmdlet gets settings for targets of a Distributed F You can specify a DFS namespace folder path to see all the targets for that path. You can specify a namespace path and a target path to see settings for a particular target. -For more information about DFS namespaces, see [DFS Namespaces overview](https://docs.microsoft.com/windows-server/storage/dfs-namespaces/dfs-overview). +For more information about DFS namespaces, see [DFS Namespaces overview](/windows-server/storage/dfs-namespaces/dfs-overview). ## EXAMPLES @@ -68,7 +68,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -149,4 +149,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Remove-DfsnFolderTarget](./Remove-DfsnFolderTarget.md) [Set-DfsnFolderTarget](./Set-DfsnFolderTarget.md) - diff --git a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerVersion.md b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerVersion.md index 6b59ad6a60..224eba617a 100644 --- a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerVersion.md +++ b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerVersion.md @@ -57,7 +57,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -126,4 +126,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Get-DhcpServerDatabase](./Get-DhcpServerDatabase.md) [Get-DhcpServerSetting](./Get-DhcpServerSetting.md) - From 0e68035c1434ca9c24316b2d5e2faf0ca6a70358 Mon Sep 17 00:00:00 2001 From: Alex Buck Date: Fri, 9 Sep 2022 08:11:40 -0400 Subject: [PATCH 219/965] Update docset/winserver2016-ps/storage/Get-VirtualDisk.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2016-ps/storage/Get-VirtualDisk.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2016-ps/storage/Get-VirtualDisk.md b/docset/winserver2016-ps/storage/Get-VirtualDisk.md index 4bac4d845d..94a81e4f42 100644 --- a/docset/winserver2016-ps/storage/Get-VirtualDisk.md +++ b/docset/winserver2016-ps/storage/Get-VirtualDisk.md @@ -624,7 +624,7 @@ You can use the pipeline operator to pass an MSFT_TargetVirtualDisk object to th ## OUTPUTS ### Microsoft.Management.Infrastructure.CimInstance#ROOT/Microsoft/Windows/Storage/MSFT_VirtualDisk -This cmdlet outputs an object that represents the specified virtual disk. For more information about output object type, please see [MSFT_VirtualDisk class](/previous-versions/windows/desktop/stormgmt/msft-virtualdisk) +This cmdlet outputs an object that represents the specified virtual disk. For more information about output object type, see [MSFT_VirtualDisk class](/previous-versions/windows/desktop/stormgmt/msft-virtualdisk). ## NOTES From f1b76a56b2749955013d521f6d132003612a0dad Mon Sep 17 00:00:00 2001 From: Alex Buck Date: Fri, 9 Sep 2022 08:11:52 -0400 Subject: [PATCH 220/965] Update docset/winserver2019-ps/defender/Get-MpPreference.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2019-ps/defender/Get-MpPreference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/defender/Get-MpPreference.md b/docset/winserver2019-ps/defender/Get-MpPreference.md index f21af5a1bc..2aa589874b 100644 --- a/docset/winserver2019-ps/defender/Get-MpPreference.md +++ b/docset/winserver2019-ps/defender/Get-MpPreference.md @@ -20,7 +20,7 @@ Get-MpPreference [-CimSession ] [-ThrottleLimit ] [-AsJob] ``` ## DESCRIPTION -The **Get-MpPreference** cmdlet gets preferences for the Windows Defender scans and updates. For more information about the preferences that this cmdlet retrieves, see [Windows Defender Preferences Class](/previous-versions/windows/desktop/legacy/dn455323(v=vs.85)) +The **Get-MpPreference** cmdlet gets preferences for the Windows Defender scans and updates. For more information about the preferences that this cmdlet retrieves, see [Windows Defender Preferences Class](/previous-versions/windows/desktop/legacy/dn455323(v=vs.85)). ## EXAMPLES From ca2eca8fa40a9e48d70fe0d794542b82452fc781 Mon Sep 17 00:00:00 2001 From: Alex Buck Date: Fri, 9 Sep 2022 08:12:00 -0400 Subject: [PATCH 221/965] Update docset/winserver2016-ps/tls/Get-TlsCipherSuite.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2016-ps/tls/Get-TlsCipherSuite.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2016-ps/tls/Get-TlsCipherSuite.md b/docset/winserver2016-ps/tls/Get-TlsCipherSuite.md index 0694fffb3e..7adf156e8a 100644 --- a/docset/winserver2016-ps/tls/Get-TlsCipherSuite.md +++ b/docset/winserver2016-ps/tls/Get-TlsCipherSuite.md @@ -24,7 +24,7 @@ The **Get-TlsCipherSuite** cmdlet gets an ordered collection of cipher suites fo For more information about the TLS cipher suites, see the documentation for the Enable-TlsCipherSuite cmdlet or type `Get-Help Enable-TlsCipherSuite`. -For more information about protocol versions , see [BCRYPT_KDF_TLS_PRF (L"TLS_PRF")](/windows/desktop/api/bcrypt/nf-bcrypt-bcryptderivekey#bcrypt_kdf_tls_prf-ltls_prf) . +For more information about protocol versions , see [BCRYPT_KDF_TLS_PRF (L"TLS_PRF")](/windows/desktop/api/bcrypt/nf-bcrypt-bcryptderivekey#bcrypt_kdf_tls_prf-ltls_prf). ## EXAMPLES From 323d28bf726b8bbde6daa9995d762d894272317d Mon Sep 17 00:00:00 2001 From: Alex Buck Date: Sat, 3 Sep 2022 12:45:59 -0400 Subject: [PATCH 222/965] [BULK UPDATE] DocuTune - Fix build validation issues: docs-link-absolute --- .../dhcpserver/Get-DhcpServerv6FreeIPAddress.md | 3 +-- .../dhcpserver/Get-DhcpServerv6Statistics.md | 3 +-- docset/winserver2012r2-ps/dhcpserver/Import-DhcpServer.md | 3 +-- .../winserver2012r2-ps/dism/Add-AppxProvisionedPackage.md | 4 ++-- docset/winserver2012r2-ps/dnsclient/Set-DnsClient.md | 3 +-- docset/winserver2012r2-ps/dnsserver/Get-DnsServer.md | 3 +-- .../winserver2012r2-ps/hyper-v/Set-VMReplicationServer.md | 2 +- docset/winserver2012r2-ps/msdtc/Get-DtcLog.md | 3 +-- docset/winserver2012r2-ps/msdtc/Get-DtcTransaction.md | 3 +-- docset/winserver2012r2-ps/msdtc/Test-Dtc.md | 3 +-- .../winserver2012r2-ps/netadapter/Enable-NetAdapterVmq.md | 3 +-- docset/winserver2012r2-ps/netadapter/Get-NetAdapter.md | 5 ++--- .../netconnection/Get-NetConnectionProfile.md | 3 +-- .../netconnection/Set-NetConnectionProfile.md | 3 +-- .../netsecurity/Set-NetFirewallAddressFilter.md | 3 +-- docset/winserver2012r2-ps/nettcpip/New-NetRoute.md | 3 +-- .../printmanagement/Get-PrintConfiguration.md | 3 +-- .../winserver2012r2-ps/scheduledtasks/New-ScheduledTask.md | 2 +- .../scheduledtasks/Register-ScheduledTask.md | 4 ++-- .../smbshare/Get-SmbServerNetworkInterface.md | 3 +-- docset/winserver2012r2-ps/smbshare/Grant-SmbShareAccess.md | 3 +-- .../smbshare/Set-SmbServerConfiguration.md | 4 ++-- docset/winserver2012r2-ps/storage/Get-PhysicalDisk.md | 3 +-- docset/winserver2012r2-ps/vpnclient/Add-VpnConnection.md | 3 +-- .../winserver2012r2-ps/vpnclient/Set-VpnConnectionProxy.md | 2 +- .../webadministration/Get-WebApplication.md | 2 +- .../winserver2012r2-ps/webadministration/New-WebAppPool.md | 2 +- .../Set-WebApplicationProxyConfiguration.md | 3 +-- .../Microsoft.DiagnosticDataViewer/Get-DiagnosticData.md | 2 +- .../Get-DiagnosticDataTypes.md | 3 +-- docset/winserver2016-ps/activedirectory/ActiveDirectory.md | 3 +-- docset/winserver2016-ps/activedirectory/Get-ADComputer.md | 6 +++--- docset/winserver2016-ps/activedirectory/Get-ADUser.md | 2 +- .../adcsdeployment/Install-AdcsCertificationAuthority.md | 2 +- .../winserver2016-ps/adfs/Enable-AdfsDeviceRegistration.md | 3 +-- .../adfs/New-AdfsAzureMfaTenantCertificate.md | 2 +- docset/winserver2016-ps/appx/Remove-AppxPackage.md | 2 +- docset/winserver2016-ps/bitlocker/Get-BitLockerVolume.md | 5 ++--- .../bitlocker/Remove-BitLockerKeyProtector.md | 2 +- docset/winserver2016-ps/configci/New-CIPolicy.md | 3 +-- docset/winserver2016-ps/configci/New-CIPolicyRule.md | 7 +++---- docset/winserver2016-ps/configci/Set-RuleOption.md | 3 +-- .../winserver2016-ps/deduplication/Disable-DedupVolume.md | 3 +-- .../winserver2016-ps/deduplication/Enable-DedupVolume.md | 3 +-- docset/winserver2016-ps/deduplication/Expand-DedupFile.md | 3 +-- docset/winserver2016-ps/deduplication/Get-DedupJob.md | 3 +-- docset/winserver2016-ps/deduplication/Get-DedupMetadata.md | 3 +-- docset/winserver2016-ps/deduplication/Get-DedupSchedule.md | 3 +-- docset/winserver2016-ps/deduplication/Get-DedupStatus.md | 3 +-- docset/winserver2016-ps/deduplication/Get-DedupVolume.md | 3 +-- 50 files changed, 59 insertions(+), 94 deletions(-) diff --git a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6FreeIPAddress.md b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6FreeIPAddress.md index dbcfb41f49..af3ffc4947 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6FreeIPAddress.md +++ b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6FreeIPAddress.md @@ -89,7 +89,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. ```yaml Type: CimSession[] @@ -213,4 +213,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th ## RELATED LINKS [Get-DhcpServerv4FreeIPAddress](./Get-DhcpServerv4FreeIPAddress.md) - diff --git a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6Statistics.md b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6Statistics.md index 4e5f83595a..a2ee2ecd7c 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6Statistics.md +++ b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6Statistics.md @@ -56,7 +56,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -121,4 +121,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th ## RELATED LINKS [Get-DhcpServerv6ScopeStatistics](./Get-DhcpServerv6ScopeStatistics.md) - diff --git a/docset/winserver2012r2-ps/dhcpserver/Import-DhcpServer.md b/docset/winserver2012r2-ps/dhcpserver/Import-DhcpServer.md index 609cbe3f30..fe68a7e40b 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Import-DhcpServer.md +++ b/docset/winserver2012r2-ps/dhcpserver/Import-DhcpServer.md @@ -154,7 +154,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -356,4 +356,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Export-DhcpServer](./Export-DhcpServer.md) [Restore-DhcpServer](./Restore-DhcpServer.md) - diff --git a/docset/winserver2012r2-ps/dism/Add-AppxProvisionedPackage.md b/docset/winserver2012r2-ps/dism/Add-AppxProvisionedPackage.md index 87bf11e808..4b7b60c9d9 100644 --- a/docset/winserver2012r2-ps/dism/Add-AppxProvisionedPackage.md +++ b/docset/winserver2012r2-ps/dism/Add-AppxProvisionedPackage.md @@ -38,7 +38,7 @@ For example, you must install the x86 dependency on the x86 image. You cannot install an app package (.appx) on an operating system that does not support Windows 8 apps. Apps are not supported on Server Core installations of Windows Server 2012, Windows Preinstallation Environment (Windows PE) 4.0, or on any versions of Windows older than Windows 8 and Windows Server 2012. -To install and run apps on Windows Server 2012 R2, you must install the [Desktop Experience Overview](https://docs.microsoft.com/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/dn609826(v=ws.11)). +To install and run apps on Windows Server 2012 R2, you must install the [Desktop Experience Overview](/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/dn609826(v=ws.11)). Use the *Online* parameter to specify the running operating system on your local computer, or use the *Path* parameter to specify the location of a mounted Windows image. @@ -49,7 +49,7 @@ Use the *FolderPath* parameter to specify the location of a folder of unpacked a To add an app package (.appx) for a particular user, or to test a package while developing your app, use the **Add-AppxPackage** cmdlet instead. -For more information, including requirements for app package provisioning, see [Sideload Apps with DISM](https://docs.microsoft.com/windows-hardware/manufacture/desktop/sideload-apps-with-dism-s14) and [How to develop an OEM app that uses a custom file](https://docs.microsoft.com/windows/win32/appxpkg/how-to-develop-oem-app-with-custom-file) in MicrosoftDocs. +For more information, including requirements for app package provisioning, see [Sideload Apps with DISM](/windows-hardware/manufacture/desktop/sideload-apps-with-dism-s14) and [How to develop an OEM app that uses a custom file](/windows/win32/appxpkg/how-to-develop-oem-app-with-custom-file) in MicrosoftDocs. ## EXAMPLES diff --git a/docset/winserver2012r2-ps/dnsclient/Set-DnsClient.md b/docset/winserver2012r2-ps/dnsclient/Set-DnsClient.md index edceff8ea4..7b35793c4a 100644 --- a/docset/winserver2012r2-ps/dnsclient/Set-DnsClient.md +++ b/docset/winserver2012r2-ps/dnsclient/Set-DnsClient.md @@ -76,7 +76,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -297,4 +297,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Get-DnsClient](./Get-DnsClient.md) [Register-DnsClient](./Register-DnsClient.md) - diff --git a/docset/winserver2012r2-ps/dnsserver/Get-DnsServer.md b/docset/winserver2012r2-ps/dnsserver/Get-DnsServer.md index 7e9fa66140..9b9cab17d0 100644 --- a/docset/winserver2012r2-ps/dnsserver/Get-DnsServer.md +++ b/docset/winserver2012r2-ps/dnsserver/Get-DnsServer.md @@ -24,7 +24,7 @@ The **Get-DnsServer** cmdlet retrieves a Domain Name System (DNS) server configu You can pipe the output of the **Get-DnsServer** cmdlet to the **Export-Clixml** cmdlet, which generates an XML file of the configuration. You can use the XML file to back up or transfer DNS settings between computers. -For more information about **Export-Clixml**, see [Using the Export-Clixml cmdlet](https://docs.microsoft.com/powershell/module/microsoft.powershell.utility/export-clixml). +For more information about **Export-Clixml**, see [Using the Export-Clixml cmdlet](/powershell/module/microsoft.powershell.utility/export-clixml). ## EXAMPLES @@ -132,4 +132,3 @@ This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVar [Set-DnsServer](./Set-DnsServer.md) [Test-DnsServer](./Test-DnsServer.md) - diff --git a/docset/winserver2012r2-ps/hyper-v/Set-VMReplicationServer.md b/docset/winserver2012r2-ps/hyper-v/Set-VMReplicationServer.md index 31ba14916c..f59298165e 100644 --- a/docset/winserver2012r2-ps/hyper-v/Set-VMReplicationServer.md +++ b/docset/winserver2012r2-ps/hyper-v/Set-VMReplicationServer.md @@ -142,7 +142,7 @@ To display a list of certificates in the computer's My store and the thumbprint `PS C:\\\> cd cert:\LocalMachine\My` `PS C:\\\> dir | format-list` -For more information about certificate stores, see [Certificate stores](https://docs.microsoft.com/previous-versions/windows/it-pro/windows-server-2003/cc757138(v=ws.10). +For more information about certificate stores, see [Certificate stores](/previous-versions/windows/it-pro/windows-server-2003/cc757138(v=ws.10)). ```yaml Type: String diff --git a/docset/winserver2012r2-ps/msdtc/Get-DtcLog.md b/docset/winserver2012r2-ps/msdtc/Get-DtcLog.md index d9a931e632..7d48cda163 100644 --- a/docset/winserver2012r2-ps/msdtc/Get-DtcLog.md +++ b/docset/winserver2012r2-ps/msdtc/Get-DtcLog.md @@ -71,7 +71,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -134,4 +134,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Reset-DtcLog](./Reset-DtcLog.md) [Set-DtcLog](./Set-DtcLog.md) - diff --git a/docset/winserver2012r2-ps/msdtc/Get-DtcTransaction.md b/docset/winserver2012r2-ps/msdtc/Get-DtcTransaction.md index a0d2c8df8c..024dc99cce 100644 --- a/docset/winserver2012r2-ps/msdtc/Get-DtcTransaction.md +++ b/docset/winserver2012r2-ps/msdtc/Get-DtcTransaction.md @@ -63,7 +63,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -124,4 +124,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS [Set-DtcTransaction](./Set-DtcTransaction.md) - diff --git a/docset/winserver2012r2-ps/msdtc/Test-Dtc.md b/docset/winserver2012r2-ps/msdtc/Test-Dtc.md index fde8f34a3b..fa056491a6 100644 --- a/docset/winserver2012r2-ps/msdtc/Test-Dtc.md +++ b/docset/winserver2012r2-ps/msdtc/Test-Dtc.md @@ -32,7 +32,7 @@ To run this cmdlet, you must first enable the firewall rule for Distributed Tran `netsh advfirewall firewall set rule group="Distributed Transaction Coordinator" new enable=yes` -For more information, see [Netsh Command Syntax, Contexts, and Formatting](https://docs.microsoft.com/en-us/windows-server/networking/technologies/netsh/netsh-contexts). +For more information, see [Netsh Command Syntax, Contexts, and Formatting](/windows-server/networking/technologies/netsh/netsh-contexts). To enable the rule using PowerShell run the following command: @@ -317,4 +317,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Stop-Dtc](./Stop-Dtc.md) [Uninstall-Dtc](./Uninstall-Dtc.md) - diff --git a/docset/winserver2012r2-ps/netadapter/Enable-NetAdapterVmq.md b/docset/winserver2012r2-ps/netadapter/Enable-NetAdapterVmq.md index cffd9b4f60..3c4817581d 100644 --- a/docset/winserver2012r2-ps/netadapter/Enable-NetAdapterVmq.md +++ b/docset/winserver2012r2-ps/netadapter/Enable-NetAdapterVmq.md @@ -70,7 +70,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -255,4 +255,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Get-NetAdapterVmqQueue](./Get-NetAdapterVmqQueue.md) [Set-NetAdapterVmq](./Set-NetAdapterVmq.md) - diff --git a/docset/winserver2012r2-ps/netadapter/Get-NetAdapter.md b/docset/winserver2012r2-ps/netadapter/Get-NetAdapter.md index 5f903b547c..636b08529b 100644 --- a/docset/winserver2012r2-ps/netadapter/Get-NetAdapter.md +++ b/docset/winserver2012r2-ps/netadapter/Get-NetAdapter.md @@ -153,7 +153,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -276,7 +276,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. -[CIM_NetworkAdapter class](https://docs.microsoft.com/windows/win32/cimwin32prov/cim-networkadapter) +[CIM_NetworkAdapter class](/windows/win32/cimwin32prov/cim-networkadapter) ## NOTES @@ -295,4 +295,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Restart-NetAdapter](./Restart-NetAdapter.md) [Set-NetAdapter](./Set-NetAdapter.md) - diff --git a/docset/winserver2012r2-ps/netconnection/Get-NetConnectionProfile.md b/docset/winserver2012r2-ps/netconnection/Get-NetConnectionProfile.md index d847e3123e..23f238d542 100644 --- a/docset/winserver2012r2-ps/netconnection/Get-NetConnectionProfile.md +++ b/docset/winserver2012r2-ps/netconnection/Get-NetConnectionProfile.md @@ -62,7 +62,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -216,4 +216,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS [Set-NetConnectionProfile](./Set-NetConnectionProfile.md) - diff --git a/docset/winserver2012r2-ps/netconnection/Set-NetConnectionProfile.md b/docset/winserver2012r2-ps/netconnection/Set-NetConnectionProfile.md index fb0c940369..1cb3b081a5 100644 --- a/docset/winserver2012r2-ps/netconnection/Set-NetConnectionProfile.md +++ b/docset/winserver2012r2-ps/netconnection/Set-NetConnectionProfile.md @@ -66,7 +66,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -285,4 +285,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS [Get-NetConnectionProfile](./Get-NetConnectionProfile.md) - diff --git a/docset/winserver2012r2-ps/netsecurity/Set-NetFirewallAddressFilter.md b/docset/winserver2012r2-ps/netsecurity/Set-NetFirewallAddressFilter.md index 05c90b9b83..77b23768d0 100644 --- a/docset/winserver2012r2-ps/netsecurity/Set-NetFirewallAddressFilter.md +++ b/docset/winserver2012r2-ps/netsecurity/Set-NetFirewallAddressFilter.md @@ -93,7 +93,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -354,4 +354,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Set-NetIPSecRule](./Set-NetIPsecRule.md) [New-GPO](../grouppolicy/New-GPO.md) - diff --git a/docset/winserver2012r2-ps/nettcpip/New-NetRoute.md b/docset/winserver2012r2-ps/nettcpip/New-NetRoute.md index b213208a86..73933ea817 100644 --- a/docset/winserver2012r2-ps/nettcpip/New-NetRoute.md +++ b/docset/winserver2012r2-ps/nettcpip/New-NetRoute.md @@ -102,7 +102,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/en-us/powershell/module/cimcmdlets/New-CimSession) or [Get-CimSession](https://docs.microsoft.com/en-us/powershell/module/cimcmdlets/Get-CimSession) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/New-CimSession) or [Get-CimSession](/powershell/module/cimcmdlets/Get-CimSession) cmdlet. The default is the current session on the local computer. ```yaml @@ -410,4 +410,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Set-NetRoute](./Set-NetRoute.md) [Set-NetIPInterface](./Set-NetIPInterface.md) - diff --git a/docset/winserver2012r2-ps/printmanagement/Get-PrintConfiguration.md b/docset/winserver2012r2-ps/printmanagement/Get-PrintConfiguration.md index 962a4af8f4..5140ee1f27 100644 --- a/docset/winserver2012r2-ps/printmanagement/Get-PrintConfiguration.md +++ b/docset/winserver2012r2-ps/printmanagement/Get-PrintConfiguration.md @@ -84,7 +84,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -179,4 +179,3 @@ This cmdlet returns a printer configuration object. ## RELATED LINKS [Set-PrintConfiguration](./Set-PrintConfiguration.md) - diff --git a/docset/winserver2012r2-ps/scheduledtasks/New-ScheduledTask.md b/docset/winserver2012r2-ps/scheduledtasks/New-ScheduledTask.md index 5aa4385f82..05bc5b484e 100644 --- a/docset/winserver2012r2-ps/scheduledtasks/New-ScheduledTask.md +++ b/docset/winserver2012r2-ps/scheduledtasks/New-ScheduledTask.md @@ -103,7 +103,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml diff --git a/docset/winserver2012r2-ps/scheduledtasks/Register-ScheduledTask.md b/docset/winserver2012r2-ps/scheduledtasks/Register-ScheduledTask.md index dc46b099ba..28a70b79d9 100644 --- a/docset/winserver2012r2-ps/scheduledtasks/Register-ScheduledTask.md +++ b/docset/winserver2012r2-ps/scheduledtasks/Register-ScheduledTask.md @@ -109,7 +109,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/get-cimsession) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](/powershell/module/cimcmdlets/get-cimsession) cmdlet. The default is the current session on the local computer. ```yaml @@ -341,7 +341,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_commonparameters). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters). ## INPUTS diff --git a/docset/winserver2012r2-ps/smbshare/Get-SmbServerNetworkInterface.md b/docset/winserver2012r2-ps/smbshare/Get-SmbServerNetworkInterface.md index 15a862cfa5..b26906d2c8 100644 --- a/docset/winserver2012r2-ps/smbshare/Get-SmbServerNetworkInterface.md +++ b/docset/winserver2012r2-ps/smbshare/Get-SmbServerNetworkInterface.md @@ -185,5 +185,4 @@ The MSFT_SmbServerNetworkInterface object represents the network interfaces of t ## RELATED LINKS -[Get-SmbClientNetworkInterface](/.Get-SmbClientNetworkInterface.md) - +[Get-SmbClientNetworkInterface](./Get-SmbClientNetworkInterface.md) diff --git a/docset/winserver2012r2-ps/smbshare/Grant-SmbShareAccess.md b/docset/winserver2012r2-ps/smbshare/Grant-SmbShareAccess.md index d45ee69bc4..c4a79bd8e3 100644 --- a/docset/winserver2012r2-ps/smbshare/Grant-SmbShareAccess.md +++ b/docset/winserver2012r2-ps/smbshare/Grant-SmbShareAccess.md @@ -115,7 +115,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -281,4 +281,3 @@ This cmdlet returns a **MSFT_SmbShareAccessControlEntry** object. [Revoke-SmbShareAccess](./Revoke-SmbShareAccess.md) [Unblock-SmbShareAccess](./Unblock-SmbShareAccess.md) - diff --git a/docset/winserver2012r2-ps/smbshare/Set-SmbServerConfiguration.md b/docset/winserver2012r2-ps/smbshare/Set-SmbServerConfiguration.md index 114dc8c43d..92c305175c 100644 --- a/docset/winserver2012r2-ps/smbshare/Set-SmbServerConfiguration.md +++ b/docset/winserver2012r2-ps/smbshare/Set-SmbServerConfiguration.md @@ -34,7 +34,7 @@ Set-SmbServerConfiguration [-AnnounceServer ] [-AsynchronousCredits $EAPXml = [xml]Get-Content -Path C:\eap-config.xml PS C:\> Add-VpnConnection -Name "Test6" -ServerAddress "10.1.1.1" -TunnelType "L2tp" -EncryptionLevel "Required" -AuthenticationMethod Eap -SplitTunneling -AllUserConnection -RememberCredential -EapConfigXmlStream $EAPXml ``` -This set of commands adds a VPN connection using an already generated EAP XML configuration. For more information about how to generate EAP XML configuration, see [EAP Configuration](https://docs.microsoft.com/windows/client-management/mdm/eap-configuration). +This set of commands adds a VPN connection using an already generated EAP XML configuration. For more information about how to generate EAP XML configuration, see [EAP Configuration](/windows/client-management/mdm/eap-configuration). ## PARAMETERS @@ -573,4 +573,3 @@ The VpnConnection object contains the VpnConnection configuration settings. [Remove-VpnConnection](./Remove-VpnConnection.md) [New-EapConfiguration](./New-EapConfiguration.md) - diff --git a/docset/winserver2012r2-ps/vpnclient/Set-VpnConnectionProxy.md b/docset/winserver2012r2-ps/vpnclient/Set-VpnConnectionProxy.md index 8193572dcd..ddf5a83050 100644 --- a/docset/winserver2012r2-ps/vpnclient/Set-VpnConnectionProxy.md +++ b/docset/winserver2012r2-ps/vpnclient/Set-VpnConnectionProxy.md @@ -105,7 +105,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml diff --git a/docset/winserver2012r2-ps/webadministration/Get-WebApplication.md b/docset/winserver2012r2-ps/webadministration/Get-WebApplication.md index 42d585c757..0d8f431b4d 100644 --- a/docset/winserver2012r2-ps/webadministration/Get-WebApplication.md +++ b/docset/winserver2012r2-ps/webadministration/Get-WebApplication.md @@ -83,4 +83,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Remove-WebApplication](./Remove-WebApplication.md) -[Microsoft.Web.Administration.ConfigurationElement#Application](https://docs.microsoft.com/dotnet/api/microsoft.web.administration.application?view=iis-dotnet) +[Microsoft.Web.Administration.ConfigurationElement#Application](/dotnet/api/microsoft.web.administration.application?view=iis-dotnet) diff --git a/docset/winserver2012r2-ps/webadministration/New-WebAppPool.md b/docset/winserver2012r2-ps/webadministration/New-WebAppPool.md index 7a598c250a..4e6abdb73b 100644 --- a/docset/winserver2012r2-ps/webadministration/New-WebAppPool.md +++ b/docset/winserver2012r2-ps/webadministration/New-WebAppPool.md @@ -19,7 +19,7 @@ New-WebAppPool [-Name] [-Force] [] ``` ## DESCRIPTION -The **New-WebAppPool** cmdlet creates an Internet Information Services (IIS) application pool. For changing different properties of the application pool after creation, see [PowerShell Snap-in: Making Configuration Changes to Websites and App Pools](https://docs.microsoft.com/iis/manage/powershell/powershell-snap-in-making-simple-configuration-changes-to-web-sites-and-application-pools). +The **New-WebAppPool** cmdlet creates an Internet Information Services (IIS) application pool. For changing different properties of the application pool after creation, see [PowerShell Snap-in: Making Configuration Changes to Websites and App Pools](/iis/manage/powershell/powershell-snap-in-making-simple-configuration-changes-to-web-sites-and-application-pools). ## EXAMPLES diff --git a/docset/winserver2012r2-ps/webapplicationproxy/Set-WebApplicationProxyConfiguration.md b/docset/winserver2012r2-ps/webapplicationproxy/Set-WebApplicationProxyConfiguration.md index 98924a5efa..833e216661 100644 --- a/docset/winserver2012r2-ps/webapplicationproxy/Set-WebApplicationProxyConfiguration.md +++ b/docset/winserver2012r2-ps/webapplicationproxy/Set-WebApplicationProxyConfiguration.md @@ -101,7 +101,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -208,4 +208,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS [Get-WebApplicationProxyConfiguration](./Get-WebApplicationProxyConfiguration.md) - diff --git a/docset/winserver2016-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticData.md b/docset/winserver2016-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticData.md index c04d202182..9b9f60db26 100644 --- a/docset/winserver2016-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticData.md +++ b/docset/winserver2016-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticData.md @@ -165,4 +165,4 @@ Persisted event record. Requires Windows 10 version 17134 (1803) or higher ## RELATED LINKS -[About Windows Diagnostic Data](https://docs.microsoft.com/en-us/windows/privacy/windows-diagnostic-data) +[About Windows Diagnostic Data](/windows/privacy/windows-diagnostic-data) diff --git a/docset/winserver2016-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticDataTypes.md b/docset/winserver2016-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticDataTypes.md index 37a622f5e5..37d71a61d9 100644 --- a/docset/winserver2016-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticDataTypes.md +++ b/docset/winserver2016-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticDataTypes.md @@ -48,5 +48,4 @@ Requires Windows 10 version 17134 (1803) or higher ## RELATED LINKS -[About Windows Diagnostic Data](https://docs.microsoft.com/en-us/windows/privacy/windows-diagnostic-data) - +[About Windows Diagnostic Data](/windows/privacy/windows-diagnostic-data) diff --git a/docset/winserver2016-ps/activedirectory/ActiveDirectory.md b/docset/winserver2016-ps/activedirectory/ActiveDirectory.md index 5dba7d576a..38c68c683c 100644 --- a/docset/winserver2016-ps/activedirectory/ActiveDirectory.md +++ b/docset/winserver2016-ps/activedirectory/ActiveDirectory.md @@ -15,7 +15,7 @@ The Active Directory module for Windows PowerShell is a PowerShell module that c If you don't have the Active Directory module installed on your machine, you need to download the correct Remote Server Administration Tools (RSAT) package for your OS. If you're running Windows 7, you will also need to run the `import-module ActiveDirectory` command from an elevated PowerShell prompt. For more detail, see [RSAT for Windows operating systems](https://support.microsoft.com/help/2693643/remote-server-administration-tools-rsat-for-windows-operating-systems). Starting with Windows 10 October 2018 Update, RSAT is included as a set of Features on Demand right from Windows 10. Now, instead of downloading an RSAT package you can just go to Manage optional features in Settings and click Add a feature to see the list of available RSAT tools. Select and install the specific RSAT tools you need. To see installation progress, click the Back button to view status on the Manage optional features page. -If you want to use this module in PowerShell 7, please see [PowerShell 7 module compatibility](https://docs.microsoft.com/powershell/scripting/whats-new/module-compatibility). +If you want to use this module in PowerShell 7, please see [PowerShell 7 module compatibility](/powershell/scripting/whats-new/module-compatibility). ## ActiveDirectory Cmdlets ### [Add-ADCentralAccessPolicyMember](./Add-ADCentralAccessPolicyMember.md) @@ -458,4 +458,3 @@ Uninstalls an Active Directory managed service account from a computer or remove ### [Unlock-ADAccount](./Unlock-ADAccount.md) Unlocks an Active Directory account. - diff --git a/docset/winserver2016-ps/activedirectory/Get-ADComputer.md b/docset/winserver2016-ps/activedirectory/Get-ADComputer.md index 944355ac59..037d6d9a23 100644 --- a/docset/winserver2016-ps/activedirectory/Get-ADComputer.md +++ b/docset/winserver2016-ps/activedirectory/Get-ADComputer.md @@ -45,7 +45,7 @@ You can also set the parameter to a computer object variable, such as `$, type `Get-Help about_ActiveDirectory_ObjectModel`. -Note: For String parameter type, PowerShell will cast the filter query to a string while processing the command. When using a string variable as a value in the filter component, make sure that it complies with the [PowerShell Quoting Rules](https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_quoting_rules). For example, if the filter expression is double-quoted, the variable should be enclosed using single quotation marks: +Note: For String parameter type, PowerShell will cast the filter query to a string while processing the command. When using a string variable as a value in the filter component, make sure that it complies with the [PowerShell Quoting Rules](/powershell/module/microsoft.powershell.core/about/about_quoting_rules). For example, if the filter expression is double-quoted, the variable should be enclosed using single quotation marks: **Get-ADUser -Filter "Name -like '$UserName'"**. On the contrary, if curly braces are used to enclose the filter, the variable should not be quoted at all: **Get-ADUser -Filter {Name -like $UserName}**. Note: PowerShell wildcards other than \*, such as ?, are not supported by the *Filter* syntax. diff --git a/docset/winserver2016-ps/adcsdeployment/Install-AdcsCertificationAuthority.md b/docset/winserver2016-ps/adcsdeployment/Install-AdcsCertificationAuthority.md index 7bc832f205..d6f8a49572 100644 --- a/docset/winserver2016-ps/adcsdeployment/Install-AdcsCertificationAuthority.md +++ b/docset/winserver2016-ps/adcsdeployment/Install-AdcsCertificationAuthority.md @@ -53,7 +53,7 @@ You can import the cmdlet by running the following commands from Windows PowerSh To include the Certification Authority and Certificate Templates consoles in a CA installation, you must use the *IncludeManagementTools* parameter at the end of the `Install-WindowsFeature Adcs-Cert-Authority` command. -Int is equivalent to Int32 in the [.NET Framework](https://docs.microsoft.com/dotnet/csharp/language-reference/builtin-types/built-in-types). +Int is equivalent to Int32 in the [.NET Framework](/dotnet/csharp/language-reference/builtin-types/built-in-types). ## EXAMPLES diff --git a/docset/winserver2016-ps/adfs/Enable-AdfsDeviceRegistration.md b/docset/winserver2016-ps/adfs/Enable-AdfsDeviceRegistration.md index 9b4086094a..38e055a56f 100644 --- a/docset/winserver2016-ps/adfs/Enable-AdfsDeviceRegistration.md +++ b/docset/winserver2016-ps/adfs/Enable-AdfsDeviceRegistration.md @@ -21,7 +21,7 @@ Enable-AdfsDeviceRegistration [-Credential ] [-Force] [-WhatIf] [- ## DESCRIPTION This cmdlet has been deprecated for AD FS 2016. -For more information, see [Configure On-Premises Conditional Access using registered devices](https://docs.microsoft.com/windows-server/identity/ad-fs/operations/configure-device-based-conditional-access-on-premises). +For more information, see [Configure On-Premises Conditional Access using registered devices](/windows-server/identity/ad-fs/operations/configure-device-based-conditional-access-on-premises). The **Enable-AdfsDeviceRegistration** cmdlet configures a server in an Active Directory Federation Services (AD FS) farm to host the Device Registration Service. To completely enable the Device Registration Service, you must run this command on each AD FS server in your AD FS farm. @@ -121,4 +121,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Initialize-ADDeviceRegistration](./Initialize-ADDeviceRegistration.md) [Set-AdfsDeviceRegistration](./Set-AdfsDeviceRegistration.md) - diff --git a/docset/winserver2016-ps/adfs/New-AdfsAzureMfaTenantCertificate.md b/docset/winserver2016-ps/adfs/New-AdfsAzureMfaTenantCertificate.md index 9fad6321e0..fa7167447e 100644 --- a/docset/winserver2016-ps/adfs/New-AdfsAzureMfaTenantCertificate.md +++ b/docset/winserver2016-ps/adfs/New-AdfsAzureMfaTenantCertificate.md @@ -42,7 +42,7 @@ PS C:\> Set-AdfsAzureMfaTenant -TenantId -ClientId 981f26a1-7f4 These commands create a certificate for Azure MFA, register the certificate in a tenant, and enable Azure MFA on an AD FS farm. > [!NOTE] -> Customers are encouraged to use the newer Azure Active Directory PowerShell 2.0 module. For more information about the v2.0 module please see [AzureAD PowerShell 2.0](https://docs.microsoft.com/powershell/module/Azuread/?view=azureadps-2.0). +> Customers are encouraged to use the newer Azure Active Directory PowerShell 2.0 module. For more information about the v2.0 module please see [AzureAD PowerShell 2.0](/powershell/module/Azuread/?view=azureadps-2.0). ### Example 2: Determine which certificate Azure MFA is using ``` diff --git a/docset/winserver2016-ps/appx/Remove-AppxPackage.md b/docset/winserver2016-ps/appx/Remove-AppxPackage.md index e50dc09304..8118bcfeff 100644 --- a/docset/winserver2016-ps/appx/Remove-AppxPackage.md +++ b/docset/winserver2016-ps/appx/Remove-AppxPackage.md @@ -140,7 +140,7 @@ If you specify this parameter, the cmdlet removes the app package for only the u > [!NOTE] > > - This parameter only accepts user SIDs -> - Use the **whoami /user** command to display the current SID of a user. See [whoami syntax](https://docs.microsoft.com/windows-server/administration/windows-commands/whoami) for details. +> - Use the **whoami /user** command to display the current SID of a user. See [whoami syntax](/windows-server/administration/windows-commands/whoami) for details. diff --git a/docset/winserver2016-ps/bitlocker/Get-BitLockerVolume.md b/docset/winserver2016-ps/bitlocker/Get-BitLockerVolume.md index 4524fee61a..4ce464f222 100644 --- a/docset/winserver2016-ps/bitlocker/Get-BitLockerVolume.md +++ b/docset/winserver2016-ps/bitlocker/Get-BitLockerVolume.md @@ -41,9 +41,9 @@ You can also use this cmdlet to view the following information about a BitLocker - Protection Status - Whether BitLocker currently uses a key protector to encrypt the volume encryption key. - EncryptionMethod - Indicates the encryption algorithm and key size used on the volume. -See [BitLocker Overview](https://docs.microsoft.com/windows/security/information-protection/bitlocker/bitlocker-overview) for more information. +See [BitLocker Overview](/windows/security/information-protection/bitlocker/bitlocker-overview) for more information. -For an overview of encryption methods, see [GetEncryptionMethod method](https://docs.microsoft.com/windows/win32/secprov/getencryptionmethod-win32-encryptablevolume). +For an overview of encryption methods, see [GetEncryptionMethod method](/windows/win32/secprov/getencryptionmethod-win32-encryptablevolume). ## EXAMPLES @@ -134,4 +134,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Enable-BitLocker](./Enable-BitLocker.md) [Enable-BitLockerAutoUnlock](./Enable-BitLockerAutoUnlock.md) - diff --git a/docset/winserver2016-ps/bitlocker/Remove-BitLockerKeyProtector.md b/docset/winserver2016-ps/bitlocker/Remove-BitLockerKeyProtector.md index f8f4ec173b..c000fdae97 100644 --- a/docset/winserver2016-ps/bitlocker/Remove-BitLockerKeyProtector.md +++ b/docset/winserver2016-ps/bitlocker/Remove-BitLockerKeyProtector.md @@ -32,7 +32,7 @@ Any encrypted data on the drive remains encrypted. We recommend you have at least one recovery password as key protector to a volume in case you need to recover a system. -For an overview of BitLocker, see [Overview of BitLocker Device Encryption](https://docs.microsoft.com/windows/security/information-protection/bitlocker/bitlocker-device-encryption-overview-windows-10). +For an overview of BitLocker, see [Overview of BitLocker Device Encryption](/windows/security/information-protection/bitlocker/bitlocker-device-encryption-overview-windows-10). ## EXAMPLES diff --git a/docset/winserver2016-ps/configci/New-CIPolicy.md b/docset/winserver2016-ps/configci/New-CIPolicy.md index 1714b6aa9f..9bb51546b4 100644 --- a/docset/winserver2016-ps/configci/New-CIPolicy.md +++ b/docset/winserver2016-ps/configci/New-CIPolicy.md @@ -321,7 +321,7 @@ Accept wildcard characters: False ``` ### -Level -Specifies the primary level of detail for generated rules. Refer to [WDAC File Rule Levels](https://docs.microsoft.com/windows/security/threat-protection/windows-defender-application-control/select-types-of-rules-to-create#windows-defender-application-control-file-rule-levels) for acceptable parameter values and descriptions. +Specifies the primary level of detail for generated rules. Refer to [WDAC File Rule Levels](/windows/security/threat-protection/windows-defender-application-control/select-types-of-rules-to-create#windows-defender-application-control-file-rule-levels) for acceptable parameter values and descriptions. ```yaml Type: RuleLevel @@ -488,4 +488,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Merge-CIPolicy](./Merge-CIPolicy.md) [New-CIPolicyRule](./New-CIPolicyRule.md) - diff --git a/docset/winserver2016-ps/configci/New-CIPolicyRule.md b/docset/winserver2016-ps/configci/New-CIPolicyRule.md index 6446346084..8b445e7530 100644 --- a/docset/winserver2016-ps/configci/New-CIPolicyRule.md +++ b/docset/winserver2016-ps/configci/New-CIPolicyRule.md @@ -261,7 +261,7 @@ Accept wildcard characters: False ``` ### -FilePathRule -Specifies the path of a folder for generating a rule with level set to FilePath. Refer to [Filepath Rules Info](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/select-types-of-rules-to-create#more-information-about-filepath-rules) for acceptable wildcard values and usage. +Specifies the path of a folder for generating a rule with level set to FilePath. Refer to [Filepath Rules Info](/windows/security/threat-protection/windows-defender-application-control/select-types-of-rules-to-create#more-information-about-filepath-rules) for acceptable wildcard values and usage. This cmdlet will not check whether the filepath string is a valid filepath. ```yaml @@ -278,7 +278,7 @@ Accept wildcard characters: True ``` ### -Level -Specifies the primary level of detail for generated rules. Refer to [WDAC File Rule Levels](https://docs.microsoft.com/windows/security/threat-protection/windows-defender-application-control/select-types-of-rules-to-create#windows-defender-application-control-file-rule-levels) for acceptable parameter values and descriptions. +Specifies the primary level of detail for generated rules. Refer to [WDAC File Rule Levels](/windows/security/threat-protection/windows-defender-application-control/select-types-of-rules-to-create#windows-defender-application-control-file-rule-levels) for acceptable parameter values and descriptions. ```yaml Type: RuleLevel @@ -309,7 +309,7 @@ Accept wildcard characters: False ### -SpecificFileNameLevel Specifies the attribute of the file off which to base a file name rule. The -Level must be set to FileName for this option. -Refer to [File Name Rules Info](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/select-types-of-rules-to-create#windows-defender-application-control-filename-rules) for a description of the acceptable values. +Refer to [File Name Rules Info](/windows/security/threat-protection/windows-defender-application-control/select-types-of-rules-to-create#windows-defender-application-control-filename-rules) for a description of the acceptable values. ```yaml Type: SwitchParameter @@ -339,4 +339,3 @@ This cmdlet returns the rules that it creates. ## RELATED LINKS [Get-SystemDriver](./Get-SystemDriver.md) - diff --git a/docset/winserver2016-ps/configci/Set-RuleOption.md b/docset/winserver2016-ps/configci/Set-RuleOption.md index e2ad344b87..87580ba905 100644 --- a/docset/winserver2016-ps/configci/Set-RuleOption.md +++ b/docset/winserver2016-ps/configci/Set-RuleOption.md @@ -130,7 +130,7 @@ Accept wildcard characters: False ### -Option Specifies the index of the rule option that this cmdlet modifies. -Specify the **Help** parameter for option information. Refer to [WDAC Policy Rule Options](https://docs.microsoft.com/windows/security/threat-protection/windows-defender-application-control/select-types-of-rules-to-create#windows-defender-application-control-policy-rules) for more detailed descriptions of each option. +Specify the **Help** parameter for option information. Refer to [WDAC Policy Rule Options](/windows/security/threat-protection/windows-defender-application-control/select-types-of-rules-to-create#windows-defender-application-control-policy-rules) for more detailed descriptions of each option. ```yaml Type: Int32 @@ -156,4 +156,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS [Set-HVCIOptions](./Set-HVCIOptions.md) - diff --git a/docset/winserver2016-ps/deduplication/Disable-DedupVolume.md b/docset/winserver2016-ps/deduplication/Disable-DedupVolume.md index f572ee12e8..6747fe01c8 100644 --- a/docset/winserver2016-ps/deduplication/Disable-DedupVolume.md +++ b/docset/winserver2016-ps/deduplication/Disable-DedupVolume.md @@ -82,7 +82,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -172,4 +172,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Set-DedupVolume](./Set-DedupVolume.md) [Update-DedupStatus](./Update-DedupStatus.md) - diff --git a/docset/winserver2016-ps/deduplication/Enable-DedupVolume.md b/docset/winserver2016-ps/deduplication/Enable-DedupVolume.md index 97d05ccb21..2e38662e07 100644 --- a/docset/winserver2016-ps/deduplication/Enable-DedupVolume.md +++ b/docset/winserver2016-ps/deduplication/Enable-DedupVolume.md @@ -85,7 +85,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -204,4 +204,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Get-DedupVolume](./Get-DedupVolume.md) [Set-DedupVolume](./Set-DedupVolume.md) - diff --git a/docset/winserver2016-ps/deduplication/Expand-DedupFile.md b/docset/winserver2016-ps/deduplication/Expand-DedupFile.md index ac3ed9633d..4ce9b0b3f0 100644 --- a/docset/winserver2016-ps/deduplication/Expand-DedupFile.md +++ b/docset/winserver2016-ps/deduplication/Expand-DedupFile.md @@ -64,7 +64,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -128,4 +128,3 @@ A value of zero indicates success. ## RELATED LINKS [Get-DedupVolume](./Get-DedupVolume.md) - diff --git a/docset/winserver2016-ps/deduplication/Get-DedupJob.md b/docset/winserver2016-ps/deduplication/Get-DedupJob.md index fe824e61a5..90304de7b5 100644 --- a/docset/winserver2016-ps/deduplication/Get-DedupJob.md +++ b/docset/winserver2016-ps/deduplication/Get-DedupJob.md @@ -60,7 +60,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -159,4 +159,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Start-DedupJob](./Start-DedupJob.md) [Stop-DedupJob](./Stop-DedupJob.md) - diff --git a/docset/winserver2016-ps/deduplication/Get-DedupMetadata.md b/docset/winserver2016-ps/deduplication/Get-DedupMetadata.md index 5f243ff7d0..c84b6c5c7c 100644 --- a/docset/winserver2016-ps/deduplication/Get-DedupMetadata.md +++ b/docset/winserver2016-ps/deduplication/Get-DedupMetadata.md @@ -90,7 +90,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -159,4 +159,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th ## RELATED LINKS [Measure-DedupFileMetadata](./Measure-DedupFileMetadata.md) - diff --git a/docset/winserver2016-ps/deduplication/Get-DedupSchedule.md b/docset/winserver2016-ps/deduplication/Get-DedupSchedule.md index 63d7b02cb6..e8ab60ba31 100644 --- a/docset/winserver2016-ps/deduplication/Get-DedupSchedule.md +++ b/docset/winserver2016-ps/deduplication/Get-DedupSchedule.md @@ -74,7 +74,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -171,4 +171,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Remove-DedupSchedule](./Remove-DedupSchedule.md) [Set-DedupSchedule](./Set-DedupSchedule.md) - diff --git a/docset/winserver2016-ps/deduplication/Get-DedupStatus.md b/docset/winserver2016-ps/deduplication/Get-DedupStatus.md index 44fc1ed627..58f6fd3c6d 100644 --- a/docset/winserver2016-ps/deduplication/Get-DedupStatus.md +++ b/docset/winserver2016-ps/deduplication/Get-DedupStatus.md @@ -61,7 +61,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -134,4 +134,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th ## RELATED LINKS [Update-DedupStatus](./Update-DedupStatus.md) - diff --git a/docset/winserver2016-ps/deduplication/Get-DedupVolume.md b/docset/winserver2016-ps/deduplication/Get-DedupVolume.md index 51f5ecbbce..30dcde1f72 100644 --- a/docset/winserver2016-ps/deduplication/Get-DedupVolume.md +++ b/docset/winserver2016-ps/deduplication/Get-DedupVolume.md @@ -75,7 +75,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -167,4 +167,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Enable-DedupVolume](./Enable-DedupVolume.md) [Set-DedupVolume](./Set-DedupVolume.md) - From 1a78cbb3e5906fe7c7761635f259693197bcfcf4 Mon Sep 17 00:00:00 2001 From: Alex Buck Date: Fri, 9 Sep 2022 08:06:08 -0400 Subject: [PATCH 223/965] Update docset/winserver2012r2-ps/scheduledtasks/Register-ScheduledTask.md Co-authored-by: Sean Wheeler --- .../scheduledtasks/Register-ScheduledTask.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docset/winserver2012r2-ps/scheduledtasks/Register-ScheduledTask.md b/docset/winserver2012r2-ps/scheduledtasks/Register-ScheduledTask.md index 28a70b79d9..d58e2cc45d 100644 --- a/docset/winserver2012r2-ps/scheduledtasks/Register-ScheduledTask.md +++ b/docset/winserver2012r2-ps/scheduledtasks/Register-ScheduledTask.md @@ -341,7 +341,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS From be70625197146c323dabe691bd9d975d5acfa8ce Mon Sep 17 00:00:00 2001 From: Alex Buck Date: Sat, 3 Sep 2022 12:58:02 -0400 Subject: [PATCH 224/965] [BULK UPDATE] DocuTune - Fix build validation issues: docs-link-absolute --- .../Set-WebApplicationProxyConfiguration.md | 3 +-- .../windowserrorreporting/Disable-WindowsErrorReporting.md | 3 +-- .../Microsoft.DiagnosticDataViewer/Get-DiagnosticData.md | 2 +- .../Get-DiagnosticDataTypes.md | 3 +-- docset/winserver2022-ps/activedirectory/ActiveDirectory.md | 3 +-- docset/winserver2022-ps/activedirectory/Get-ADComputer.md | 6 +++--- docset/winserver2022-ps/activedirectory/Get-ADUser.md | 2 +- .../adcsdeployment/Install-AdcsCertificationAuthority.md | 2 +- .../winserver2022-ps/adfs/Enable-AdfsDeviceRegistration.md | 3 +-- .../adfs/New-AdfsAzureMfaTenantCertificate.md | 2 +- docset/winserver2022-ps/appx/Remove-AppxPackage.md | 2 +- docset/winserver2022-ps/bitlocker/Get-BitLockerVolume.md | 5 ++--- .../bitlocker/Remove-BitLockerKeyProtector.md | 2 +- docset/winserver2022-ps/configci/New-CIPolicy.md | 3 +-- docset/winserver2022-ps/configci/New-CIPolicyRule.md | 3 +-- docset/winserver2022-ps/configci/Set-RuleOption.md | 3 +-- .../winserver2022-ps/deduplication/Disable-DedupVolume.md | 3 +-- docset/winserver2022-ps/deduplication/Enable-DedupVolume.md | 3 +-- docset/winserver2022-ps/deduplication/Expand-DedupFile.md | 3 +-- docset/winserver2022-ps/deduplication/Get-DedupJob.md | 3 +-- docset/winserver2022-ps/deduplication/Get-DedupMetadata.md | 3 +-- docset/winserver2022-ps/deduplication/Get-DedupSchedule.md | 3 +-- docset/winserver2022-ps/deduplication/Get-DedupStatus.md | 3 +-- docset/winserver2022-ps/deduplication/Get-DedupVolume.md | 3 +-- .../deduplication/Measure-DedupFileMetadata.md | 3 +-- docset/winserver2022-ps/deduplication/New-DedupSchedule.md | 3 +-- .../winserver2022-ps/deduplication/Remove-DedupSchedule.md | 3 +-- docset/winserver2022-ps/deduplication/Set-DedupSchedule.md | 3 +-- docset/winserver2022-ps/deduplication/Set-DedupVolume.md | 3 +-- docset/winserver2022-ps/deduplication/Start-DedupJob.md | 3 +-- docset/winserver2022-ps/deduplication/Stop-DedupJob.md | 3 +-- docset/winserver2022-ps/deduplication/Update-DedupStatus.md | 3 +-- docset/winserver2022-ps/defender/Get-MpComputerStatus.md | 2 +- docset/winserver2022-ps/defender/Get-MpPreference.md | 3 +-- docset/winserver2022-ps/defender/Get-MpThreatDetection.md | 3 +-- docset/winserver2022-ps/dfsn/Get-DfsnFolderTarget.md | 5 ++--- docset/winserver2022-ps/dhcpserver/Get-DhcpServerVersion.md | 3 +-- .../dhcpserver/Get-DhcpServerv4FreeIPAddress.md | 3 +-- docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4Lease.md | 3 +-- .../dhcpserver/Get-DhcpServerv6FreeIPAddress.md | 3 +-- .../dhcpserver/Get-DhcpServerv6Statistics.md | 3 +-- docset/winserver2022-ps/dhcpserver/Import-DhcpServer.md | 3 +-- docset/winserver2022-ps/dism/Add-AppxProvisionedPackage.md | 4 ++-- docset/winserver2022-ps/dism/Add-WindowsCapability.md | 3 +-- .../dism/Set-WindowsReservedStorageState.md | 2 +- docset/winserver2022-ps/dnsclient/Set-DnsClient.md | 3 +-- docset/winserver2022-ps/dnsserver/Get-DnsServer.md | 3 +-- docset/winserver2022-ps/hyper-v/Debug-VM.md | 2 +- docset/winserver2022-ps/hyper-v/Mount-VHD.md | 2 +- docset/winserver2022-ps/hyper-v/Move-VM.md | 3 +-- 50 files changed, 55 insertions(+), 93 deletions(-) diff --git a/docset/winserver2019-ps/webapplicationproxy/Set-WebApplicationProxyConfiguration.md b/docset/winserver2019-ps/webapplicationproxy/Set-WebApplicationProxyConfiguration.md index f42826f29d..305b3777ad 100644 --- a/docset/winserver2019-ps/webapplicationproxy/Set-WebApplicationProxyConfiguration.md +++ b/docset/winserver2019-ps/webapplicationproxy/Set-WebApplicationProxyConfiguration.md @@ -135,7 +135,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -288,4 +288,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS [Get-WebApplicationProxyConfiguration](./Get-WebApplicationProxyConfiguration.md) - diff --git a/docset/winserver2019-ps/windowserrorreporting/Disable-WindowsErrorReporting.md b/docset/winserver2019-ps/windowserrorreporting/Disable-WindowsErrorReporting.md index 6aa3774336..683a1a27ac 100644 --- a/docset/winserver2019-ps/windowserrorreporting/Disable-WindowsErrorReporting.md +++ b/docset/winserver2019-ps/windowserrorreporting/Disable-WindowsErrorReporting.md @@ -27,7 +27,7 @@ Windows Error Reporting generates reports in response to system events, such as To get the current WER status, use the [Get-WindowsErrorReporting](./Get-WindowsErrorReporting.md) cmdlet. If you disable WER, you can use the [Enable-WindowsErrorReporting](./Enable-WindowsErrorReporting.md) cmdlet to re-enable it. -After you run this cmdlet, WER again sends information about application failures to Microsoft. To customize the settings of Windows Error Reporting, use registry keys described in [WER Settings](https://docs.microsoft.com/windows/desktop/wer/wer-settings) article. +After you run this cmdlet, WER again sends information about application failures to Microsoft. To customize the settings of Windows Error Reporting, use registry keys described in [WER Settings](/windows/desktop/wer/wer-settings) article. ## EXAMPLES @@ -58,4 +58,3 @@ Otherwise, it returns $False. [Enable-WindowsErrorReporting](./Enable-WindowsErrorReporting.md) [Get-WindowsErrorReporting](./Get-WindowsErrorReporting.md) - diff --git a/docset/winserver2022-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticData.md b/docset/winserver2022-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticData.md index 37417dae46..8c5e6fe729 100644 --- a/docset/winserver2022-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticData.md +++ b/docset/winserver2022-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticData.md @@ -165,4 +165,4 @@ Persisted event record. Requires Windows 10 version 17134 (1803) or higher ## RELATED LINKS -[About Windows Diagnostic Data](https://docs.microsoft.com/en-us/windows/privacy/windows-diagnostic-data) +[About Windows Diagnostic Data](/windows/privacy/windows-diagnostic-data) diff --git a/docset/winserver2022-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticDataTypes.md b/docset/winserver2022-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticDataTypes.md index 324bb7e04f..c953b78301 100644 --- a/docset/winserver2022-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticDataTypes.md +++ b/docset/winserver2022-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticDataTypes.md @@ -48,5 +48,4 @@ Requires Windows 10 version 17134 (1803) or higher ## RELATED LINKS -[About Windows Diagnostic Data](https://docs.microsoft.com/en-us/windows/privacy/windows-diagnostic-data) - +[About Windows Diagnostic Data](/windows/privacy/windows-diagnostic-data) diff --git a/docset/winserver2022-ps/activedirectory/ActiveDirectory.md b/docset/winserver2022-ps/activedirectory/ActiveDirectory.md index f438c905c1..15e8a510a5 100644 --- a/docset/winserver2022-ps/activedirectory/ActiveDirectory.md +++ b/docset/winserver2022-ps/activedirectory/ActiveDirectory.md @@ -15,7 +15,7 @@ The Active Directory module for Windows PowerShell is a PowerShell module that c If you don't have the Active Directory module installed on your machine, you need to download the correct Remote Server Administration Tools (RSAT) package for your OS. If you're running Windows 7, you will also need to run the `import-module ActiveDirectory` command from an elevated PowerShell prompt. For more detail, see [RSAT for Windows operating systems](https://support.microsoft.com/help/2693643/remote-server-administration-tools-rsat-for-windows-operating-systems). Starting with Windows 10 October 2018 Update, RSAT is included as a set of Features on Demand right from Windows 10. Now, instead of downloading an RSAT package you can just go to Manage optional features in Settings and click Add a feature to see the list of available RSAT tools. Select and install the specific RSAT tools you need. To see installation progress, click the Back button to view status on the Manage optional features page. -If you want to use this module in PowerShell 7, please see [PowerShell 7 module compatibility](https://docs.microsoft.com/powershell/scripting/whats-new/module-compatibility). +If you want to use this module in PowerShell 7, please see [PowerShell 7 module compatibility](/powershell/scripting/whats-new/module-compatibility). ## ActiveDirectory Cmdlets ### [Add-ADCentralAccessPolicyMember](./Add-ADCentralAccessPolicyMember.md) @@ -458,4 +458,3 @@ Uninstalls an Active Directory managed service account from a computer or remove ### [Unlock-ADAccount](./Unlock-ADAccount.md) Unlocks an Active Directory account. - diff --git a/docset/winserver2022-ps/activedirectory/Get-ADComputer.md b/docset/winserver2022-ps/activedirectory/Get-ADComputer.md index a9389d02df..26a5f39c7a 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADComputer.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADComputer.md @@ -45,7 +45,7 @@ You can also set the parameter to a computer object variable, such as `$, type `Get-Help about_ActiveDirectory_ObjectModel`. -Note: For String parameter type, PowerShell will cast the filter query to a string while processing the command. When using a string variable as a value in the filter component, make sure that it complies with the [PowerShell Quoting Rules](https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_quoting_rules). For example, if the filter expression is double-quoted, the variable should be enclosed using single quotation marks: +Note: For String parameter type, PowerShell will cast the filter query to a string while processing the command. When using a string variable as a value in the filter component, make sure that it complies with the [PowerShell Quoting Rules](/powershell/module/microsoft.powershell.core/about/about_quoting_rules). For example, if the filter expression is double-quoted, the variable should be enclosed using single quotation marks: **Get-ADUser -Filter "Name -like '$UserName'"**. On the contrary, if curly braces are used to enclose the filter, the variable should not be quoted at all: **Get-ADUser -Filter {Name -like $UserName}**. Note: PowerShell wildcards other than \*, such as ?, are not supported by the *Filter* syntax. diff --git a/docset/winserver2022-ps/adcsdeployment/Install-AdcsCertificationAuthority.md b/docset/winserver2022-ps/adcsdeployment/Install-AdcsCertificationAuthority.md index 7475c20843..d6416ba17d 100644 --- a/docset/winserver2022-ps/adcsdeployment/Install-AdcsCertificationAuthority.md +++ b/docset/winserver2022-ps/adcsdeployment/Install-AdcsCertificationAuthority.md @@ -53,7 +53,7 @@ You can import the cmdlet by running the following commands from Windows PowerSh To include the Certification Authority and Certificate Templates consoles in a CA installation, you must use the *IncludeManagementTools* parameter at the end of the `Install-WindowsFeature Adcs-Cert-Authority` command. -Int is equivalent to Int32 in the [.NET Framework](https://docs.microsoft.com/dotnet/csharp/language-reference/builtin-types/built-in-types). +Int is equivalent to Int32 in the [.NET Framework](/dotnet/csharp/language-reference/builtin-types/built-in-types). ## EXAMPLES diff --git a/docset/winserver2022-ps/adfs/Enable-AdfsDeviceRegistration.md b/docset/winserver2022-ps/adfs/Enable-AdfsDeviceRegistration.md index 04a9f4cd88..2343afc4cf 100644 --- a/docset/winserver2022-ps/adfs/Enable-AdfsDeviceRegistration.md +++ b/docset/winserver2022-ps/adfs/Enable-AdfsDeviceRegistration.md @@ -21,7 +21,7 @@ Enable-AdfsDeviceRegistration [-Credential ] [-Force] [-WhatIf] [- ## DESCRIPTION This cmdlet has been deprecated for AD FS 2016. -For more information, see [Configure On-Premises Conditional Access using registered devices](https://docs.microsoft.com/windows-server/identity/ad-fs/operations/configure-device-based-conditional-access-on-premises). +For more information, see [Configure On-Premises Conditional Access using registered devices](/windows-server/identity/ad-fs/operations/configure-device-based-conditional-access-on-premises). The **Enable-AdfsDeviceRegistration** cmdlet configures a server in an Active Directory Federation Services (AD FS) farm to host the Device Registration Service. To completely enable the Device Registration Service, you must run this command on each AD FS server in your AD FS farm. @@ -121,4 +121,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Initialize-ADDeviceRegistration](./Initialize-ADDeviceRegistration.md) [Set-AdfsDeviceRegistration](./Set-AdfsDeviceRegistration.md) - diff --git a/docset/winserver2022-ps/adfs/New-AdfsAzureMfaTenantCertificate.md b/docset/winserver2022-ps/adfs/New-AdfsAzureMfaTenantCertificate.md index 2124309c77..d11a65c8b1 100644 --- a/docset/winserver2022-ps/adfs/New-AdfsAzureMfaTenantCertificate.md +++ b/docset/winserver2022-ps/adfs/New-AdfsAzureMfaTenantCertificate.md @@ -42,7 +42,7 @@ PS C:\> Set-AdfsAzureMfaTenant -TenantId -ClientId 981f26a1-7f4 These commands create a certificate for Azure MFA, register the certificate in a tenant, and enable Azure MFA on an AD FS farm. > [!NOTE] -> Customers are encouraged to use the newer Azure Active Directory PowerShell 2.0 module. For more information about the v2.0 module please see [AzureAD PowerShell 2.0](https://docs.microsoft.com/powershell/module/Azuread/?view=azureadps-2.0). +> Customers are encouraged to use the newer Azure Active Directory PowerShell 2.0 module. For more information about the v2.0 module please see [AzureAD PowerShell 2.0](/powershell/module/Azuread/?view=azureadps-2.0). ### Example 2: Determine which certificate Azure MFA is using ``` diff --git a/docset/winserver2022-ps/appx/Remove-AppxPackage.md b/docset/winserver2022-ps/appx/Remove-AppxPackage.md index 5cbe036270..f91f4a33b1 100644 --- a/docset/winserver2022-ps/appx/Remove-AppxPackage.md +++ b/docset/winserver2022-ps/appx/Remove-AppxPackage.md @@ -163,7 +163,7 @@ If you specify this parameter, the cmdlet removes the app package for only the u > [!NOTE] > > - This parameter only accepts user SIDs -> - Use the **whoami /user** command to display the current SID of a user. See [whoami syntax](https://docs.microsoft.com/windows-server/administration/windows-commands/whoami) for details. +> - Use the **whoami /user** command to display the current SID of a user. See [whoami syntax](/windows-server/administration/windows-commands/whoami) for details. diff --git a/docset/winserver2022-ps/bitlocker/Get-BitLockerVolume.md b/docset/winserver2022-ps/bitlocker/Get-BitLockerVolume.md index 8710706373..f474ef1e8d 100644 --- a/docset/winserver2022-ps/bitlocker/Get-BitLockerVolume.md +++ b/docset/winserver2022-ps/bitlocker/Get-BitLockerVolume.md @@ -41,9 +41,9 @@ You can also use this cmdlet to view the following information about a BitLocker - Protection Status - Whether BitLocker currently uses a key protector to encrypt the volume encryption key. - EncryptionMethod - Indicates the encryption algorithm and key size used on the volume. -See [BitLocker Overview](https://docs.microsoft.com/windows/security/information-protection/bitlocker/bitlocker-overview) for more information. +See [BitLocker Overview](/windows/security/information-protection/bitlocker/bitlocker-overview) for more information. -For an overview of encryption methods, see [GetEncryptionMethod method](https://docs.microsoft.com/windows/win32/secprov/getencryptionmethod-win32-encryptablevolume). +For an overview of encryption methods, see [GetEncryptionMethod method](/windows/win32/secprov/getencryptionmethod-win32-encryptablevolume). ## EXAMPLES @@ -134,4 +134,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Enable-BitLocker](./Enable-BitLocker.md) [Enable-BitLockerAutoUnlock](./Enable-BitLockerAutoUnlock.md) - diff --git a/docset/winserver2022-ps/bitlocker/Remove-BitLockerKeyProtector.md b/docset/winserver2022-ps/bitlocker/Remove-BitLockerKeyProtector.md index 4091e034a0..49ba0b7b48 100644 --- a/docset/winserver2022-ps/bitlocker/Remove-BitLockerKeyProtector.md +++ b/docset/winserver2022-ps/bitlocker/Remove-BitLockerKeyProtector.md @@ -32,7 +32,7 @@ Any encrypted data on the drive remains encrypted. We recommend you have at least one recovery password as key protector to a volume in case you need to recover a system. -For an overview of BitLocker, see [Overview of BitLocker Device Encryption](https://docs.microsoft.com/windows/security/information-protection/bitlocker/bitlocker-device-encryption-overview-windows-10). +For an overview of BitLocker, see [Overview of BitLocker Device Encryption](/windows/security/information-protection/bitlocker/bitlocker-device-encryption-overview-windows-10). ## EXAMPLES diff --git a/docset/winserver2022-ps/configci/New-CIPolicy.md b/docset/winserver2022-ps/configci/New-CIPolicy.md index 8e10c13055..e9f04bb9d6 100644 --- a/docset/winserver2022-ps/configci/New-CIPolicy.md +++ b/docset/winserver2022-ps/configci/New-CIPolicy.md @@ -460,7 +460,7 @@ Accept wildcard characters: False ``` ### -Level -Specifies the primary level of detail for generated rules. Refer to [WDAC File Rule Levels](https://docs.microsoft.com/windows/security/threat-protection/windows-defender-application-control/select-types-of-rules-to-create#windows-defender-application-control-file-rule-levels) for acceptable parameter values and descriptions. +Specifies the primary level of detail for generated rules. Refer to [WDAC File Rule Levels](/windows/security/threat-protection/windows-defender-application-control/select-types-of-rules-to-create#windows-defender-application-control-file-rule-levels) for acceptable parameter values and descriptions. ```yaml Type: RuleLevel @@ -674,4 +674,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Merge-CIPolicy](./Merge-CIPolicy.md) [New-CIPolicyRule](./New-CIPolicyRule.md) - diff --git a/docset/winserver2022-ps/configci/New-CIPolicyRule.md b/docset/winserver2022-ps/configci/New-CIPolicyRule.md index 7473d23dc0..14223d2166 100644 --- a/docset/winserver2022-ps/configci/New-CIPolicyRule.md +++ b/docset/winserver2022-ps/configci/New-CIPolicyRule.md @@ -385,7 +385,7 @@ Accept wildcard characters: False ``` ### -FilePathRule -Specifies the path of a folder for generating a rule with level set to FilePath. Refer to [Filepath Rules Info](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/select-types-of-rules-to-create#more-information-about-filepath-rules) for acceptable wildcard values and usage. +Specifies the path of a folder for generating a rule with level set to FilePath. Refer to [Filepath Rules Info](/windows/security/threat-protection/windows-defender-application-control/select-types-of-rules-to-create#more-information-about-filepath-rules) for acceptable wildcard values and usage. This cmdlet will not check whether the filepath string is a valid filepath. ```yaml @@ -492,4 +492,3 @@ This cmdlet returns the rules that it creates. ## RELATED LINKS [Get-SystemDriver](./Get-SystemDriver.md) - diff --git a/docset/winserver2022-ps/configci/Set-RuleOption.md b/docset/winserver2022-ps/configci/Set-RuleOption.md index da06f05553..4d00bb45e2 100644 --- a/docset/winserver2022-ps/configci/Set-RuleOption.md +++ b/docset/winserver2022-ps/configci/Set-RuleOption.md @@ -130,7 +130,7 @@ Accept wildcard characters: False ### -Option Specifies the index of the rule option that this cmdlet modifies. -Specify the **Help** parameter for option information. Refer to [WDAC Policy Rule Options](https://docs.microsoft.com/windows/security/threat-protection/windows-defender-application-control/select-types-of-rules-to-create#windows-defender-application-control-policy-rules) for more detailed descriptions of each option. +Specify the **Help** parameter for option information. Refer to [WDAC Policy Rule Options](/windows/security/threat-protection/windows-defender-application-control/select-types-of-rules-to-create#windows-defender-application-control-policy-rules) for more detailed descriptions of each option. ```yaml Type: Int32 @@ -156,4 +156,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS [Set-HVCIOptions](./Set-HVCIOptions.md) - diff --git a/docset/winserver2022-ps/deduplication/Disable-DedupVolume.md b/docset/winserver2022-ps/deduplication/Disable-DedupVolume.md index 7e823fd435..44366fda0c 100644 --- a/docset/winserver2022-ps/deduplication/Disable-DedupVolume.md +++ b/docset/winserver2022-ps/deduplication/Disable-DedupVolume.md @@ -82,7 +82,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -172,4 +172,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Set-DedupVolume](./Set-DedupVolume.md) [Update-DedupStatus](./Update-DedupStatus.md) - diff --git a/docset/winserver2022-ps/deduplication/Enable-DedupVolume.md b/docset/winserver2022-ps/deduplication/Enable-DedupVolume.md index 3881746782..761a2f4927 100644 --- a/docset/winserver2022-ps/deduplication/Enable-DedupVolume.md +++ b/docset/winserver2022-ps/deduplication/Enable-DedupVolume.md @@ -85,7 +85,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -204,4 +204,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Get-DedupVolume](./Get-DedupVolume.md) [Set-DedupVolume](./Set-DedupVolume.md) - diff --git a/docset/winserver2022-ps/deduplication/Expand-DedupFile.md b/docset/winserver2022-ps/deduplication/Expand-DedupFile.md index bd50424064..c73ee9c107 100644 --- a/docset/winserver2022-ps/deduplication/Expand-DedupFile.md +++ b/docset/winserver2022-ps/deduplication/Expand-DedupFile.md @@ -64,7 +64,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -128,4 +128,3 @@ A value of zero indicates success. ## RELATED LINKS [Get-DedupVolume](./Get-DedupVolume.md) - diff --git a/docset/winserver2022-ps/deduplication/Get-DedupJob.md b/docset/winserver2022-ps/deduplication/Get-DedupJob.md index e5b32438ba..c922f5b7b8 100644 --- a/docset/winserver2022-ps/deduplication/Get-DedupJob.md +++ b/docset/winserver2022-ps/deduplication/Get-DedupJob.md @@ -60,7 +60,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -159,4 +159,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Start-DedupJob](./Start-DedupJob.md) [Stop-DedupJob](./Stop-DedupJob.md) - diff --git a/docset/winserver2022-ps/deduplication/Get-DedupMetadata.md b/docset/winserver2022-ps/deduplication/Get-DedupMetadata.md index dcd2c6e067..6e25f630ae 100644 --- a/docset/winserver2022-ps/deduplication/Get-DedupMetadata.md +++ b/docset/winserver2022-ps/deduplication/Get-DedupMetadata.md @@ -90,7 +90,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -159,4 +159,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th ## RELATED LINKS [Measure-DedupFileMetadata](./Measure-DedupFileMetadata.md) - diff --git a/docset/winserver2022-ps/deduplication/Get-DedupSchedule.md b/docset/winserver2022-ps/deduplication/Get-DedupSchedule.md index 16903ec6f6..65b38fd518 100644 --- a/docset/winserver2022-ps/deduplication/Get-DedupSchedule.md +++ b/docset/winserver2022-ps/deduplication/Get-DedupSchedule.md @@ -74,7 +74,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -171,4 +171,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Remove-DedupSchedule](./Remove-DedupSchedule.md) [Set-DedupSchedule](./Set-DedupSchedule.md) - diff --git a/docset/winserver2022-ps/deduplication/Get-DedupStatus.md b/docset/winserver2022-ps/deduplication/Get-DedupStatus.md index 7e6cc3c1a2..1e517d0623 100644 --- a/docset/winserver2022-ps/deduplication/Get-DedupStatus.md +++ b/docset/winserver2022-ps/deduplication/Get-DedupStatus.md @@ -61,7 +61,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -134,4 +134,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th ## RELATED LINKS [Update-DedupStatus](./Update-DedupStatus.md) - diff --git a/docset/winserver2022-ps/deduplication/Get-DedupVolume.md b/docset/winserver2022-ps/deduplication/Get-DedupVolume.md index 8b028b9ce1..3955abc4d5 100644 --- a/docset/winserver2022-ps/deduplication/Get-DedupVolume.md +++ b/docset/winserver2022-ps/deduplication/Get-DedupVolume.md @@ -75,7 +75,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -167,4 +167,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Enable-DedupVolume](./Enable-DedupVolume.md) [Set-DedupVolume](./Set-DedupVolume.md) - diff --git a/docset/winserver2022-ps/deduplication/Measure-DedupFileMetadata.md b/docset/winserver2022-ps/deduplication/Measure-DedupFileMetadata.md index d9440b3bcb..b7159ab772 100644 --- a/docset/winserver2022-ps/deduplication/Measure-DedupFileMetadata.md +++ b/docset/winserver2022-ps/deduplication/Measure-DedupFileMetadata.md @@ -62,7 +62,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -121,4 +121,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS [Update-DedupStatus](./Update-DedupStatus.md) - diff --git a/docset/winserver2022-ps/deduplication/New-DedupSchedule.md b/docset/winserver2022-ps/deduplication/New-DedupSchedule.md index a9c748e09e..5aa6665bc8 100644 --- a/docset/winserver2022-ps/deduplication/New-DedupSchedule.md +++ b/docset/winserver2022-ps/deduplication/New-DedupSchedule.md @@ -101,7 +101,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -422,4 +422,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Remove-DedupSchedule](./Remove-DedupSchedule.md) [Set-DedupSchedule](./Set-DedupSchedule.md) - diff --git a/docset/winserver2022-ps/deduplication/Remove-DedupSchedule.md b/docset/winserver2022-ps/deduplication/Remove-DedupSchedule.md index c33defb350..d46e258510 100644 --- a/docset/winserver2022-ps/deduplication/Remove-DedupSchedule.md +++ b/docset/winserver2022-ps/deduplication/Remove-DedupSchedule.md @@ -67,7 +67,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -175,4 +175,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [New-DedupSchedule](./New-DedupSchedule.md) [Set-DedupSchedule](./Set-DedupSchedule.md) - diff --git a/docset/winserver2022-ps/deduplication/Set-DedupSchedule.md b/docset/winserver2022-ps/deduplication/Set-DedupSchedule.md index 215010f464..fb9ed5737e 100644 --- a/docset/winserver2022-ps/deduplication/Set-DedupSchedule.md +++ b/docset/winserver2022-ps/deduplication/Set-DedupSchedule.md @@ -92,7 +92,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -441,4 +441,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [New-DedupSchedule](./New-DedupSchedule.md) [Remove-DedupSchedule](./Remove-DedupSchedule.md) - diff --git a/docset/winserver2022-ps/deduplication/Set-DedupVolume.md b/docset/winserver2022-ps/deduplication/Set-DedupVolume.md index bc036ce2f0..dd1e2153b8 100644 --- a/docset/winserver2022-ps/deduplication/Set-DedupVolume.md +++ b/docset/winserver2022-ps/deduplication/Set-DedupVolume.md @@ -124,7 +124,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -440,4 +440,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Enable-DedupVolume](./Enable-DedupVolume.md) [Get-DedupVolume](./Get-DedupVolume.md) - diff --git a/docset/winserver2022-ps/deduplication/Start-DedupJob.md b/docset/winserver2022-ps/deduplication/Start-DedupJob.md index 714a8cf3a4..5f8f04be2c 100644 --- a/docset/winserver2022-ps/deduplication/Start-DedupJob.md +++ b/docset/winserver2022-ps/deduplication/Start-DedupJob.md @@ -65,7 +65,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -361,4 +361,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Get-DedupJob](./Get-DedupJob.md) [Stop-DedupJob](./Stop-DedupJob.md) - diff --git a/docset/winserver2022-ps/deduplication/Stop-DedupJob.md b/docset/winserver2022-ps/deduplication/Stop-DedupJob.md index 0c15df7260..0dba274879 100644 --- a/docset/winserver2022-ps/deduplication/Stop-DedupJob.md +++ b/docset/winserver2022-ps/deduplication/Stop-DedupJob.md @@ -73,7 +73,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -223,4 +223,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Get-DedupJob](./Get-DedupJob.md) [Start-DedupJob](./Start-DedupJob.md) - diff --git a/docset/winserver2022-ps/deduplication/Update-DedupStatus.md b/docset/winserver2022-ps/deduplication/Update-DedupStatus.md index efd7faeaf2..c63258e09b 100644 --- a/docset/winserver2022-ps/deduplication/Update-DedupStatus.md +++ b/docset/winserver2022-ps/deduplication/Update-DedupStatus.md @@ -99,7 +99,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -168,4 +168,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th ## RELATED LINKS [Get-DedupStatus](./Get-DedupStatus.md) - diff --git a/docset/winserver2022-ps/defender/Get-MpComputerStatus.md b/docset/winserver2022-ps/defender/Get-MpComputerStatus.md index be18419198..51c1226894 100644 --- a/docset/winserver2022-ps/defender/Get-MpComputerStatus.md +++ b/docset/winserver2022-ps/defender/Get-MpComputerStatus.md @@ -130,4 +130,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS -[Get-MpComputerStatus Properties](https://docs.microsoft.com/previous-versions/windows/desktop/defender/msft-mpcomputerstatus#properties) +[Get-MpComputerStatus Properties](/previous-versions/windows/desktop/defender/msft-mpcomputerstatus#properties) diff --git a/docset/winserver2022-ps/defender/Get-MpPreference.md b/docset/winserver2022-ps/defender/Get-MpPreference.md index 3f9485af4f..3dbf561c76 100644 --- a/docset/winserver2022-ps/defender/Get-MpPreference.md +++ b/docset/winserver2022-ps/defender/Get-MpPreference.md @@ -20,7 +20,7 @@ Get-MpPreference [-CimSession ] [-ThrottleLimit ] [-AsJob] ``` ## DESCRIPTION -The **Get-MpPreference** cmdlet gets preferences for the Windows Defender scans and updates. For more information about the preferences that this cmdlet retrieves, see [Windows Defender Preferences Class](https://docs.microsoft.com/previous-versions/windows/desktop/legacy/dn455323(v=vs.85)) +The **Get-MpPreference** cmdlet gets preferences for the Windows Defender scans and updates. For more information about the preferences that this cmdlet retrieves, see [Windows Defender Preferences Class](/previous-versions/windows/desktop/legacy/dn455323(v=vs.85)) ## EXAMPLES @@ -108,4 +108,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Remove-MpPreference](./Remove-MpPreference.md) [Set-MpPreference](./Set-MpPreference.md) - diff --git a/docset/winserver2022-ps/defender/Get-MpThreatDetection.md b/docset/winserver2022-ps/defender/Get-MpThreatDetection.md index 544348ce4f..3c28d27f75 100644 --- a/docset/winserver2022-ps/defender/Get-MpThreatDetection.md +++ b/docset/winserver2022-ps/defender/Get-MpThreatDetection.md @@ -43,7 +43,7 @@ This command returns the list of past malware detections for the local computer. The following table lists the hexadecimal and decimal error codes for this cmdlet. Each hexadecimal error code has a 0x8050 prefix. Therefore, an ERROR_MP_BAD_SCANID error corresponds to error code 0x80508012. Additionally, an ERR_MP_REMOVE_FAILED error corresponds to error code 0x80508017. -For a list of error codes, along with possible reasons and resolutions, see [Windows Defender Antivirus client error codes](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-antivirus/troubleshoot-windows-defender-antivirus#windows-defender-antivirus-client-error-codes) in the topic [Review event logs and error codes to troubleshoot issues with Windows Defender Antivirus](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-antivirus/troubleshoot-windows-defender-antivirus#windows-defender-antivirus-client-error-codes). +For a list of error codes, along with possible reasons and resolutions, see [Windows Defender Antivirus client error codes](/windows/security/threat-protection/windows-defender-antivirus/troubleshoot-windows-defender-antivirus#windows-defender-antivirus-client-error-codes) in the topic [Review event logs and error codes to troubleshoot issues with Windows Defender Antivirus](/windows/security/threat-protection/windows-defender-antivirus/troubleshoot-windows-defender-antivirus#windows-defender-antivirus-client-error-codes). |Symbolic Name | Error Number (hexadecimal) | Error number (decimal) | |------------------------------------|----------------------------|------------------------| @@ -174,4 +174,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Remove-MpThreat](./Remove-MpThreat.md) [Get-MpThreatCatalog](./Get-MpThreatCatalog.md) - diff --git a/docset/winserver2022-ps/dfsn/Get-DfsnFolderTarget.md b/docset/winserver2022-ps/dfsn/Get-DfsnFolderTarget.md index f987224b2f..d9168c8da6 100644 --- a/docset/winserver2022-ps/dfsn/Get-DfsnFolderTarget.md +++ b/docset/winserver2022-ps/dfsn/Get-DfsnFolderTarget.md @@ -25,7 +25,7 @@ The **Get-DfsnFolderTarget** cmdlet gets settings for targets of a Distributed F You can specify a DFS namespace folder path to see all the targets for that path. You can specify a namespace path and a target path to see settings for a particular target. -For more information about DFS namespaces, see [DFS Namespaces overview](https://docs.microsoft.com/windows-server/storage/dfs-namespaces/dfs-overview). +For more information about DFS namespaces, see [DFS Namespaces overview](/windows-server/storage/dfs-namespaces/dfs-overview). ## EXAMPLES @@ -68,7 +68,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -151,4 +151,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Remove-DfsnFolderTarget](./Remove-DfsnFolderTarget.md) [Set-DfsnFolderTarget](./Set-DfsnFolderTarget.md) - diff --git a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerVersion.md b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerVersion.md index fe6a726a5e..04e9c8464d 100644 --- a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerVersion.md +++ b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerVersion.md @@ -57,7 +57,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -126,4 +126,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Get-DhcpServerDatabase](./Get-DhcpServerDatabase.md) [Get-DhcpServerSetting](./Get-DhcpServerSetting.md) - diff --git a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4FreeIPAddress.md b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4FreeIPAddress.md index e6af7e423b..e96897747c 100644 --- a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4FreeIPAddress.md +++ b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4FreeIPAddress.md @@ -90,7 +90,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -215,4 +215,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th ## RELATED LINKS [Get-DhcpServerv6FreeIPAddress](./Get-DhcpServerv6FreeIPAddress.md) - diff --git a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4Lease.md b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4Lease.md index e43effb1ea..75911f0bf9 100644 --- a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4Lease.md +++ b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4Lease.md @@ -157,7 +157,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -285,4 +285,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Get-DhcpServerv4Scope](./Get-DhcpServerv4Scope.md) [Remove-DhcpServerv4Lease](./Remove-DhcpServerv4Lease.md) - diff --git a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6FreeIPAddress.md b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6FreeIPAddress.md index abad104b95..8345712753 100644 --- a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6FreeIPAddress.md +++ b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6FreeIPAddress.md @@ -90,7 +90,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. ```yaml Type: CimSession[] @@ -214,4 +214,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th ## RELATED LINKS [Get-DhcpServerv4FreeIPAddress](./Get-DhcpServerv4FreeIPAddress.md) - diff --git a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6Statistics.md b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6Statistics.md index 6c3c0fe91d..2a650a309d 100644 --- a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6Statistics.md +++ b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6Statistics.md @@ -57,7 +57,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -122,4 +122,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th ## RELATED LINKS [Get-DhcpServerv6ScopeStatistics](./Get-DhcpServerv6ScopeStatistics.md) - diff --git a/docset/winserver2022-ps/dhcpserver/Import-DhcpServer.md b/docset/winserver2022-ps/dhcpserver/Import-DhcpServer.md index 7936a155c4..315a1da020 100644 --- a/docset/winserver2022-ps/dhcpserver/Import-DhcpServer.md +++ b/docset/winserver2022-ps/dhcpserver/Import-DhcpServer.md @@ -155,7 +155,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -357,4 +357,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Export-DhcpServer](./Export-DhcpServer.md) [Restore-DhcpServer](./Restore-DhcpServer.md) - diff --git a/docset/winserver2022-ps/dism/Add-AppxProvisionedPackage.md b/docset/winserver2022-ps/dism/Add-AppxProvisionedPackage.md index 48f7d6d121..e988fc11f5 100644 --- a/docset/winserver2022-ps/dism/Add-AppxProvisionedPackage.md +++ b/docset/winserver2022-ps/dism/Add-AppxProvisionedPackage.md @@ -41,7 +41,7 @@ For example, you must install the x86 dependency on the x86 image. You cannot install an app package (.appx) on an operating system that does not support Windows 8 apps. Apps are not supported on Server Core installations of Windows Server 2012, Windows Preinstallation Environment (Windows PE) 4.0, or on any versions of Windows older than Windows 8 and Windows Server 2012. -To install and run apps on Windows Server 2016, you must install the [Install Server with Desktop Experience](https://docs.microsoft.com/windows-server/get-started/getting-started-with-server-with-desktop-experience). +To install and run apps on Windows Server 2016, you must install the [Install Server with Desktop Experience](/windows-server/get-started/getting-started-with-server-with-desktop-experience). Use the *Online* parameter to specify the running operating system on your local computer, or use the *Path* parameter to specify the location of a mounted Windows image. @@ -52,7 +52,7 @@ Use the *FolderPath* parameter to specify the location of a folder of unpacked a To add an app package (.appx) for a particular user, or to test a package while developing your app, use the **Add-AppxPackage** cmdlet instead. -For more information, including requirements for app package provisioning, see [Sideload Apps with DISM](https://docs.microsoft.com/windows-hardware/manufacture/desktop/sideload-apps-with-dism-s14) and [How to develop an OEM app that uses a custom file](https://docs.microsoft.com/windows/win32/appxpkg/how-to-develop-oem-app-with-custom-file) in MicrosoftDocs. +For more information, including requirements for app package provisioning, see [Sideload Apps with DISM](/windows-hardware/manufacture/desktop/sideload-apps-with-dism-s14) and [How to develop an OEM app that uses a custom file](/windows/win32/appxpkg/how-to-develop-oem-app-with-custom-file) in MicrosoftDocs. ## EXAMPLES diff --git a/docset/winserver2022-ps/dism/Add-WindowsCapability.md b/docset/winserver2022-ps/dism/Add-WindowsCapability.md index a37e86911b..5ecf72c9cd 100644 --- a/docset/winserver2022-ps/dism/Add-WindowsCapability.md +++ b/docset/winserver2022-ps/dism/Add-WindowsCapability.md @@ -240,10 +240,9 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES -As of Windows 10 version 1709, you cannot use Windows Server Update Services (WSUS) to host Features on Demand (FOD) and language packs for Windows 10 clients. Instead, you can enforce a Group Policy setting that tells the clients to download them directly from Windows Update. You can also host FOD and language packs on a network share, but starting with Windows 10 version 1809, FOD and language packs can only be installed from Windows Update. For more information, see [How to make Features on Demand and language packs available when you're using WSUS/Configuration Manager](https://docs.microsoft.com/windows/deployment/update/fod-and-lang-packs). +As of Windows 10 version 1709, you cannot use Windows Server Update Services (WSUS) to host Features on Demand (FOD) and language packs for Windows 10 clients. Instead, you can enforce a Group Policy setting that tells the clients to download them directly from Windows Update. You can also host FOD and language packs on a network share, but starting with Windows 10 version 1809, FOD and language packs can only be installed from Windows Update. For more information, see [How to make Features on Demand and language packs available when you're using WSUS/Configuration Manager](/windows/deployment/update/fod-and-lang-packs). ## RELATED LINKS [Get-WindowsCapability](./Get-WindowsCapability.md) [Remove-WindowsCapability](./Remove-WindowsCapability.md) - diff --git a/docset/winserver2022-ps/dism/Set-WindowsReservedStorageState.md b/docset/winserver2022-ps/dism/Set-WindowsReservedStorageState.md index dfcb20953b..bf008d551b 100644 --- a/docset/winserver2022-ps/dism/Set-WindowsReservedStorageState.md +++ b/docset/winserver2022-ps/dism/Set-WindowsReservedStorageState.md @@ -18,7 +18,7 @@ Set-WindowsReservedStorageState -State [-LogPath ``` ## DESCRIPTION -Sets the state of reserved storage. This command line option is only supported for online Windows images. If reserved storage is in use, it may not be disabled, and the following error is returned: This operation is not supported when reserved storage is in use. Please wait for any servicing operations to complete and then try again later. Changes to reserved storage state are reflected in Sysprep generalized Windows images. For more information see [Sysprep (Generalize) a Windows installation](https://docs.microsoft.com/windows-hardware/manufacture/desktop/sysprep--system-preparation--overview) +Sets the state of reserved storage. This command line option is only supported for online Windows images. If reserved storage is in use, it may not be disabled, and the following error is returned: This operation is not supported when reserved storage is in use. Please wait for any servicing operations to complete and then try again later. Changes to reserved storage state are reflected in Sysprep generalized Windows images. For more information see [Sysprep (Generalize) a Windows installation](/windows-hardware/manufacture/desktop/sysprep--system-preparation--overview) ## EXAMPLES diff --git a/docset/winserver2022-ps/dnsclient/Set-DnsClient.md b/docset/winserver2022-ps/dnsclient/Set-DnsClient.md index e0484f1290..c2a63bee5e 100644 --- a/docset/winserver2022-ps/dnsclient/Set-DnsClient.md +++ b/docset/winserver2022-ps/dnsclient/Set-DnsClient.md @@ -78,7 +78,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -299,4 +299,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Get-DnsClient](./Get-DnsClient.md) [Register-DnsClient](./Register-DnsClient.md) - diff --git a/docset/winserver2022-ps/dnsserver/Get-DnsServer.md b/docset/winserver2022-ps/dnsserver/Get-DnsServer.md index 0d2ad175d3..ba30826f8c 100644 --- a/docset/winserver2022-ps/dnsserver/Get-DnsServer.md +++ b/docset/winserver2022-ps/dnsserver/Get-DnsServer.md @@ -26,7 +26,7 @@ The **Get-DnsServer** cmdlet retrieves a Domain Name System (DNS) server configu You can pass the output of the **Get-DnsServer** cmdlet to the **Export-Clixml** cmdlet by using the pipeline operator. That cmdlet generates an XML file of the configuration. You can use the XML file to back up or transfer DNS settings between computers. -For more information about **Export-Clixml**, see [Using the Export-Clixml cmdlet](https://docs.microsoft.com/powershell/module/microsoft.powershell.utility/export-clixml). +For more information about **Export-Clixml**, see [Using the Export-Clixml cmdlet](/powershell/module/microsoft.powershell.utility/export-clixml). ## EXAMPLES @@ -134,4 +134,3 @@ This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVar [Set-DnsServer](./Set-DnsServer.md) [Test-DnsServer](./Test-DnsServer.md) - diff --git a/docset/winserver2022-ps/hyper-v/Debug-VM.md b/docset/winserver2022-ps/hyper-v/Debug-VM.md index 9f68221320..fec713f1c5 100644 --- a/docset/winserver2022-ps/hyper-v/Debug-VM.md +++ b/docset/winserver2022-ps/hyper-v/Debug-VM.md @@ -230,4 +230,4 @@ Shielded virtual machines do not support debugging or nonmaskable interrupts. ## RELATED LINKS -[Configuring Automatic Debugging](https://docs.microsoft.com/windows/win32/debug/configuring-automatic-debugging) +[Configuring Automatic Debugging](/windows/win32/debug/configuring-automatic-debugging) diff --git a/docset/winserver2022-ps/hyper-v/Mount-VHD.md b/docset/winserver2022-ps/hyper-v/Mount-VHD.md index cf54018da0..2bc3fd7147 100644 --- a/docset/winserver2022-ps/hyper-v/Mount-VHD.md +++ b/docset/winserver2022-ps/hyper-v/Mount-VHD.md @@ -219,4 +219,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS -[Mount-DiskImage](https://docs.microsoft.com/powershell/module/storage/mount-diskimage) +[Mount-DiskImage](/powershell/module/storage/mount-diskimage) diff --git a/docset/winserver2022-ps/hyper-v/Move-VM.md b/docset/winserver2022-ps/hyper-v/Move-VM.md index 39514681b5..3137f47f96 100644 --- a/docset/winserver2022-ps/hyper-v/Move-VM.md +++ b/docset/winserver2022-ps/hyper-v/Move-VM.md @@ -127,7 +127,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -479,4 +479,3 @@ None, by default. ## NOTES ## RELATED LINKS - From aa0c532281d4a19a6fedacabc7b3d9b8945eedcf Mon Sep 17 00:00:00 2001 From: Alex Buck Date: Fri, 9 Sep 2022 08:10:38 -0400 Subject: [PATCH 225/965] Update docset/winserver2022-ps/activedirectory/ActiveDirectory.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2022-ps/activedirectory/ActiveDirectory.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/activedirectory/ActiveDirectory.md b/docset/winserver2022-ps/activedirectory/ActiveDirectory.md index 15e8a510a5..8cb26e9a15 100644 --- a/docset/winserver2022-ps/activedirectory/ActiveDirectory.md +++ b/docset/winserver2022-ps/activedirectory/ActiveDirectory.md @@ -15,7 +15,7 @@ The Active Directory module for Windows PowerShell is a PowerShell module that c If you don't have the Active Directory module installed on your machine, you need to download the correct Remote Server Administration Tools (RSAT) package for your OS. If you're running Windows 7, you will also need to run the `import-module ActiveDirectory` command from an elevated PowerShell prompt. For more detail, see [RSAT for Windows operating systems](https://support.microsoft.com/help/2693643/remote-server-administration-tools-rsat-for-windows-operating-systems). Starting with Windows 10 October 2018 Update, RSAT is included as a set of Features on Demand right from Windows 10. Now, instead of downloading an RSAT package you can just go to Manage optional features in Settings and click Add a feature to see the list of available RSAT tools. Select and install the specific RSAT tools you need. To see installation progress, click the Back button to view status on the Manage optional features page. -If you want to use this module in PowerShell 7, please see [PowerShell 7 module compatibility](/powershell/scripting/whats-new/module-compatibility). +If you want to use this module in PowerShell 7, see [PowerShell 7 module compatibility](/powershell/scripting/whats-new/module-compatibility). ## ActiveDirectory Cmdlets ### [Add-ADCentralAccessPolicyMember](./Add-ADCentralAccessPolicyMember.md) From d4079cb1b181e5f08a88caaed4ac5e4b7e515223 Mon Sep 17 00:00:00 2001 From: Alex Buck Date: Fri, 9 Sep 2022 08:10:51 -0400 Subject: [PATCH 226/965] Update docset/winserver2022-ps/adfs/New-AdfsAzureMfaTenantCertificate.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- .../winserver2022-ps/adfs/New-AdfsAzureMfaTenantCertificate.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/adfs/New-AdfsAzureMfaTenantCertificate.md b/docset/winserver2022-ps/adfs/New-AdfsAzureMfaTenantCertificate.md index d11a65c8b1..85d4390309 100644 --- a/docset/winserver2022-ps/adfs/New-AdfsAzureMfaTenantCertificate.md +++ b/docset/winserver2022-ps/adfs/New-AdfsAzureMfaTenantCertificate.md @@ -42,7 +42,7 @@ PS C:\> Set-AdfsAzureMfaTenant -TenantId -ClientId 981f26a1-7f4 These commands create a certificate for Azure MFA, register the certificate in a tenant, and enable Azure MFA on an AD FS farm. > [!NOTE] -> Customers are encouraged to use the newer Azure Active Directory PowerShell 2.0 module. For more information about the v2.0 module please see [AzureAD PowerShell 2.0](/powershell/module/Azuread/?view=azureadps-2.0). +> Customers are encouraged to use the newer Azure Active Directory PowerShell 2.0 module. For more information about the v2.0 module, see [AzureAD PowerShell 2.0](/powershell/module/Azuread/?view=azureadps-2.0). ### Example 2: Determine which certificate Azure MFA is using ``` From b175b13716c72b82874b95aa7ac571b6f0e16b7a Mon Sep 17 00:00:00 2001 From: Alex Buck Date: Fri, 9 Sep 2022 08:11:01 -0400 Subject: [PATCH 227/965] Update docset/winserver2022-ps/defender/Get-MpPreference.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2022-ps/defender/Get-MpPreference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/defender/Get-MpPreference.md b/docset/winserver2022-ps/defender/Get-MpPreference.md index 3dbf561c76..4bfde0d521 100644 --- a/docset/winserver2022-ps/defender/Get-MpPreference.md +++ b/docset/winserver2022-ps/defender/Get-MpPreference.md @@ -20,7 +20,7 @@ Get-MpPreference [-CimSession ] [-ThrottleLimit ] [-AsJob] ``` ## DESCRIPTION -The **Get-MpPreference** cmdlet gets preferences for the Windows Defender scans and updates. For more information about the preferences that this cmdlet retrieves, see [Windows Defender Preferences Class](/previous-versions/windows/desktop/legacy/dn455323(v=vs.85)) +The **Get-MpPreference** cmdlet gets preferences for the Windows Defender scans and updates. For more information about the preferences that this cmdlet retrieves, see [Windows Defender Preferences Class](/previous-versions/windows/desktop/legacy/dn455323(v=vs.85)). ## EXAMPLES From 3f00c4a975a9981be7722f966d167fd8d7b095fb Mon Sep 17 00:00:00 2001 From: Alex Buck Date: Fri, 9 Sep 2022 08:11:13 -0400 Subject: [PATCH 228/965] Update docset/winserver2022-ps/dism/Set-WindowsReservedStorageState.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2022-ps/dism/Set-WindowsReservedStorageState.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/dism/Set-WindowsReservedStorageState.md b/docset/winserver2022-ps/dism/Set-WindowsReservedStorageState.md index bf008d551b..bd920faf92 100644 --- a/docset/winserver2022-ps/dism/Set-WindowsReservedStorageState.md +++ b/docset/winserver2022-ps/dism/Set-WindowsReservedStorageState.md @@ -18,7 +18,7 @@ Set-WindowsReservedStorageState -State [-LogPath ``` ## DESCRIPTION -Sets the state of reserved storage. This command line option is only supported for online Windows images. If reserved storage is in use, it may not be disabled, and the following error is returned: This operation is not supported when reserved storage is in use. Please wait for any servicing operations to complete and then try again later. Changes to reserved storage state are reflected in Sysprep generalized Windows images. For more information see [Sysprep (Generalize) a Windows installation](/windows-hardware/manufacture/desktop/sysprep--system-preparation--overview) +Sets the state of reserved storage. This command line option is only supported for online Windows images. If reserved storage is in use, it may not be disabled, and the following error is returned: This operation is not supported when reserved storage is in use. Please wait for any servicing operations to complete and then try again later. Changes to reserved storage state are reflected in Sysprep generalized Windows images. For more information see [Sysprep (Generalize) a Windows installation](/windows-hardware/manufacture/desktop/sysprep--system-preparation--overview). ## EXAMPLES From dfccde6369ab8eef75e79d3fdd37ad81ae5cca1f Mon Sep 17 00:00:00 2001 From: Alex Buck Date: Sat, 3 Sep 2022 12:59:05 -0400 Subject: [PATCH 229/965] [BULK UPDATE] DocuTune - Fix build validation issues: docs-link-absolute --- docset/winserver2022-ps/hyper-v/New-VM.md | 2 +- docset/winserver2022-ps/hyper-v/Remove-VMHardDiskDrive.md | 3 +-- docset/winserver2022-ps/hyper-v/Set-VMNetworkAdapterVlan.md | 2 +- docset/winserver2022-ps/hyper-v/Set-VMProcessor.md | 4 ++-- docset/winserver2022-ps/hyper-v/Set-VMReplicationServer.md | 4 ++-- .../international/Set-WinDefaultInputMethodOverride.md | 3 +-- docset/winserver2022-ps/msdtc/Test-Dtc.md | 3 +-- docset/winserver2022-ps/netadapter/Enable-NetAdapterVmq.md | 3 +-- docset/winserver2022-ps/netadapter/Get-NetAdapter.md | 5 ++--- .../netconnection/Set-NetConnectionProfile.md | 3 +-- docset/winserver2022-ps/netlldpagent/NetLldpAgent.md | 4 +--- .../netsecurity/Set-NetFirewallAddressFilter.md | 3 +-- docset/winserver2022-ps/nettcpip/New-NetRoute.md | 3 +-- docset/winserver2022-ps/pki/Get-Certificate.md | 3 +-- docset/winserver2022-ps/pki/Import-Certificate.md | 2 +- docset/winserver2022-ps/pki/Import-PfxCertificate.md | 2 +- docset/winserver2022-ps/pki/New-SelfSignedCertificate.md | 4 ++-- .../printmanagement/Get-PrintConfiguration.md | 3 +-- .../provisioning/Install-ProvisioningPackage.md | 4 ++-- docset/winserver2022-ps/rdmgmt/Set-RDCertificate.md | 6 +++--- docset/winserver2022-ps/scheduledtasks/New-ScheduledTask.md | 2 +- .../scheduledtasks/New-ScheduledTaskSettingsSet.md | 3 +-- .../scheduledtasks/Register-ScheduledTask.md | 4 ++-- docset/winserver2022-ps/smbshare/Grant-SmbShareAccess.md | 3 +-- docset/winserver2022-ps/smbshare/Remove-SmbComponent.md | 2 +- .../storage/Enable-PhysicalDiskIdentification.md | 3 +-- docset/winserver2022-ps/storage/Format-Volume.md | 3 +-- docset/winserver2022-ps/storage/Get-Disk.md | 3 +-- docset/winserver2022-ps/storage/Get-PhysicalDisk.md | 3 +-- docset/winserver2022-ps/storage/Get-VirtualDisk.md | 3 +-- docset/winserver2022-ps/tls/Get-TlsCipherSuite.md | 2 +- .../updateservices/Add-WsusDynamicCategory.md | 2 +- docset/winserver2022-ps/vpnclient/Add-VpnConnection.md | 3 +-- docset/winserver2022-ps/vpnclient/New-EapConfiguration.md | 5 ++--- docset/winserver2022-ps/vpnclient/Set-VpnConnectionProxy.md | 2 +- .../webadministration/Get-WebApplication.md | 2 +- docset/winserver2022-ps/webadministration/New-WebAppPool.md | 2 +- .../Set-WebApplicationProxyConfiguration.md | 3 +-- .../windowserrorreporting/Disable-WindowsErrorReporting.md | 3 +-- 39 files changed, 48 insertions(+), 71 deletions(-) diff --git a/docset/winserver2022-ps/hyper-v/New-VM.md b/docset/winserver2022-ps/hyper-v/New-VM.md index 96a4bdea9f..a3f5081602 100644 --- a/docset/winserver2022-ps/hyper-v/New-VM.md +++ b/docset/winserver2022-ps/hyper-v/New-VM.md @@ -147,7 +147,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml diff --git a/docset/winserver2022-ps/hyper-v/Remove-VMHardDiskDrive.md b/docset/winserver2022-ps/hyper-v/Remove-VMHardDiskDrive.md index befd014bfc..4481559315 100644 --- a/docset/winserver2022-ps/hyper-v/Remove-VMHardDiskDrive.md +++ b/docset/winserver2022-ps/hyper-v/Remove-VMHardDiskDrive.md @@ -51,7 +51,7 @@ Removes all virtual hard drives on IDE controller 1 from virtual machine TestVM. ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -243,4 +243,3 @@ If **-PassThru** is specified. ## NOTES ## RELATED LINKS - diff --git a/docset/winserver2022-ps/hyper-v/Set-VMNetworkAdapterVlan.md b/docset/winserver2022-ps/hyper-v/Set-VMNetworkAdapterVlan.md index 91393db2fa..49a6dfb7f0 100644 --- a/docset/winserver2022-ps/hyper-v/Set-VMNetworkAdapterVlan.md +++ b/docset/winserver2022-ps/hyper-v/Set-VMNetworkAdapterVlan.md @@ -485,4 +485,4 @@ If **-PassThru** is specified. ## NOTES ## RELATED LINKS -[Configure and View VLAN Settings on Hyper-V Virtual Switch Ports](https://docs.microsoft.com/windows-server/virtualization/hyper-v-virtual-switch/configure-and-view-vlan-settings-on-hyper-v-virtual-switch-ports) +[Configure and View VLAN Settings on Hyper-V Virtual Switch Ports](/windows-server/virtualization/hyper-v-virtual-switch/configure-and-view-vlan-settings-on-hyper-v-virtual-switch-ports) diff --git a/docset/winserver2022-ps/hyper-v/Set-VMProcessor.md b/docset/winserver2022-ps/hyper-v/Set-VMProcessor.md index fbcc199714..9099ca2985 100644 --- a/docset/winserver2022-ps/hyper-v/Set-VMProcessor.md +++ b/docset/winserver2022-ps/hyper-v/Set-VMProcessor.md @@ -234,7 +234,7 @@ Accept wildcard characters: False ### -HwThreadCountPerCore Specifies the number of virtual SMT threads exposed to the virtual machine. Setting this value to 0 indicates the virtual machine will inherit the host's number of threads per core. This setting may not exceed the host's number of threads per core. -Note: Windows Server 2016 does not support setting HwThreadCountPerCore to 0. For more details, see [Configuring VM SMT settings using PowerShell](https://docs.microsoft.com/windows-server/virtualization/hyper-v/manage/about-hyper-v-scheduler-type-selection#configuring-vm-smt-settings-using-powershell). +Note: Windows Server 2016 does not support setting HwThreadCountPerCore to 0. For more details, see [Configuring VM SMT settings using PowerShell](/windows-server/virtualization/hyper-v/manage/about-hyper-v-scheduler-type-selection#configuring-vm-smt-settings-using-powershell). ```yaml Type: Int64 @@ -295,7 +295,7 @@ Accept wildcard characters: False ``` ### -Perfmon -Specifies the hardware to be Exposed for Performance Monitoring. For more information about requirements, visit [Enable Intel Performance Monitoring Hardware in a Hyper-V virtual machine](https://docs.microsoft.com/windows-server/virtualization/hyper-v/manage/performance-monitoring-hardware). +Specifies the hardware to be Exposed for Performance Monitoring. For more information about requirements, visit [Enable Intel Performance Monitoring Hardware in a Hyper-V virtual machine](/windows-server/virtualization/hyper-v/manage/performance-monitoring-hardware). ```yaml diff --git a/docset/winserver2022-ps/hyper-v/Set-VMReplicationServer.md b/docset/winserver2022-ps/hyper-v/Set-VMReplicationServer.md index 4d80e9c469..1ec65b61da 100644 --- a/docset/winserver2022-ps/hyper-v/Set-VMReplicationServer.md +++ b/docset/winserver2022-ps/hyper-v/Set-VMReplicationServer.md @@ -146,7 +146,7 @@ To display a list of certificates in the computer's My store and the thumbprint `PS C:\\\> dir | format-list` -For more information about certificate stores, see [Certificate stores](https://docs.microsoft.com/previous-versions/windows/it-pro/windows-server-2003/cc757138(v=ws.10). +For more information about certificate stores, see [Certificate stores](/previous-versions/windows/it-pro/windows-server-2003/cc757138(v=ws.10)). ```yaml Type: String @@ -162,7 +162,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml diff --git a/docset/winserver2022-ps/international/Set-WinDefaultInputMethodOverride.md b/docset/winserver2022-ps/international/Set-WinDefaultInputMethodOverride.md index 55c360cfb1..2e787d5862 100644 --- a/docset/winserver2022-ps/international/Set-WinDefaultInputMethodOverride.md +++ b/docset/winserver2022-ps/international/Set-WinDefaultInputMethodOverride.md @@ -56,7 +56,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS ### InputTIP -You can pipe a locale ID and a keyboard language ID (KLID). See [Default Input Profiles (Input Locales) in Windows](https://docs.microsoft.com/windows-hardware/manufacture/desktop/default-input-locales-for-windows-language-packs) +You can pipe a locale ID and a keyboard language ID (KLID). See [Default Input Profiles (Input Locales) in Windows](/windows-hardware/manufacture/desktop/default-input-locales-for-windows-language-packs) ## OUTPUTS @@ -65,4 +65,3 @@ You can pipe a locale ID and a keyboard language ID (KLID). See [Default Input P ## RELATED LINKS [Get-WinDefaultInputMethodOverride](./Get-WinDefaultInputMethodOverride.md) - diff --git a/docset/winserver2022-ps/msdtc/Test-Dtc.md b/docset/winserver2022-ps/msdtc/Test-Dtc.md index db4ee87aa8..feb5901368 100644 --- a/docset/winserver2022-ps/msdtc/Test-Dtc.md +++ b/docset/winserver2022-ps/msdtc/Test-Dtc.md @@ -33,7 +33,7 @@ To run this cmdlet, you must first enable the firewall rule for Distributed Tran `netsh advfirewall firewall set rule group="Distributed Transaction Coordinator" new enable=yes` -For more information, see [Netsh Command Syntax, Contexts, and Formatting](https://docs.microsoft.com/en-us/windows-server/networking/technologies/netsh/netsh-contexts). +For more information, see [Netsh Command Syntax, Contexts, and Formatting](/windows-server/networking/technologies/netsh/netsh-contexts). To enable the rule using PowerShell run the following command: @@ -318,4 +318,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Stop-Dtc](./Stop-Dtc.md) [Uninstall-Dtc](./Uninstall-Dtc.md) - diff --git a/docset/winserver2022-ps/netadapter/Enable-NetAdapterVmq.md b/docset/winserver2022-ps/netadapter/Enable-NetAdapterVmq.md index 998afc451d..580e07db5b 100644 --- a/docset/winserver2022-ps/netadapter/Enable-NetAdapterVmq.md +++ b/docset/winserver2022-ps/netadapter/Enable-NetAdapterVmq.md @@ -71,7 +71,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -255,4 +255,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Get-NetAdapterVmqQueue](./Get-NetAdapterVmqQueue.md) [Set-NetAdapterVmq](./Set-NetAdapterVmq.md) - diff --git a/docset/winserver2022-ps/netadapter/Get-NetAdapter.md b/docset/winserver2022-ps/netadapter/Get-NetAdapter.md index 9d16e7d54a..2bd4bdbbe5 100644 --- a/docset/winserver2022-ps/netadapter/Get-NetAdapter.md +++ b/docset/winserver2022-ps/netadapter/Get-NetAdapter.md @@ -155,7 +155,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -278,7 +278,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. -[CIM_NetworkAdapter class](https://docs.microsoft.com/windows/win32/cimwin32prov/cim-networkadapter) +[CIM_NetworkAdapter class](/windows/win32/cimwin32prov/cim-networkadapter) ## NOTES @@ -293,4 +293,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Restart-NetAdapter](./Restart-NetAdapter.md) [Set-NetAdapter](./Set-NetAdapter.md) - diff --git a/docset/winserver2022-ps/netconnection/Set-NetConnectionProfile.md b/docset/winserver2022-ps/netconnection/Set-NetConnectionProfile.md index 9ba808b564..fd0627cf7c 100644 --- a/docset/winserver2022-ps/netconnection/Set-NetConnectionProfile.md +++ b/docset/winserver2022-ps/netconnection/Set-NetConnectionProfile.md @@ -67,7 +67,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -288,4 +288,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS [Get-NetConnectionProfile](./Get-NetConnectionProfile.md) - diff --git a/docset/winserver2022-ps/netlldpagent/NetLldpAgent.md b/docset/winserver2022-ps/netlldpagent/NetLldpAgent.md index 5bff6f1dc5..5262e10212 100644 --- a/docset/winserver2022-ps/netlldpagent/NetLldpAgent.md +++ b/docset/winserver2022-ps/netlldpagent/NetLldpAgent.md @@ -11,7 +11,7 @@ title: NetLldpAgent # NetLldpAgent Module ## Description -This reference provides cmdlet descriptions and syntax for the Network Logical Link Discovery Protocol (LLDP) Agent. Use of the NetLldpAgent module requires the [DataCenterBridging](https://docs.microsoft.com/windows-server/networking/technologies/dcb/dcb-install) feature to be installed. The following cmdlets are covered by this reference: +This reference provides cmdlet descriptions and syntax for the Network Logical Link Discovery Protocol (LLDP) Agent. Use of the NetLldpAgent module requires the [DataCenterBridging](/windows-server/networking/technologies/dcb/dcb-install) feature to be installed. The following cmdlets are covered by this reference: ## NetLldpAgent Cmdlets ### [Disable-NetLldpAgent](./Disable-NetLldpAgent.md) @@ -22,5 +22,3 @@ Enables LLDP on a network interface on a computer. ### [Get-NetLldpAgent](./Get-NetLldpAgent.md) Gets the settings of the LLDP agent on a network interface on a host computer. - - diff --git a/docset/winserver2022-ps/netsecurity/Set-NetFirewallAddressFilter.md b/docset/winserver2022-ps/netsecurity/Set-NetFirewallAddressFilter.md index 66f6ec52a5..375cd525e1 100644 --- a/docset/winserver2022-ps/netsecurity/Set-NetFirewallAddressFilter.md +++ b/docset/winserver2022-ps/netsecurity/Set-NetFirewallAddressFilter.md @@ -92,7 +92,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -350,4 +350,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Get-NetIPsecMainModeRule](./Get-NetIPsecMainModeRule.md) [Set-NetIPsecRule](./Set-NetIPsecRule.md) - diff --git a/docset/winserver2022-ps/nettcpip/New-NetRoute.md b/docset/winserver2022-ps/nettcpip/New-NetRoute.md index 9ae827f7d2..0fe7e3e0da 100644 --- a/docset/winserver2022-ps/nettcpip/New-NetRoute.md +++ b/docset/winserver2022-ps/nettcpip/New-NetRoute.md @@ -103,7 +103,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/New-CimSession) or [Get-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/Get-CimSession) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/New-CimSession) or [Get-CimSession](/powershell/module/cimcmdlets/Get-CimSession) cmdlet. The default is the current session on the local computer. ```yaml @@ -408,4 +408,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Set-NetRoute](./Set-NetRoute.md) [Set-NetIPInterface](./Set-NetIPInterface.md) - diff --git a/docset/winserver2022-ps/pki/Get-Certificate.md b/docset/winserver2022-ps/pki/Get-Certificate.md index 35c97ee3af..230a67669e 100644 --- a/docset/winserver2022-ps/pki/Get-Certificate.md +++ b/docset/winserver2022-ps/pki/Get-Certificate.md @@ -274,5 +274,4 @@ The EnrollmentResult object contains the results of enrollment. [Set-Location](https://go.microsoft.com/fwlink/p/?LinkId=293912) -[System Store Locations](https://docs.microsoft.com/windows/desktop/seccrypto/system-store-locations) - +[System Store Locations](/windows/desktop/seccrypto/system-store-locations) diff --git a/docset/winserver2022-ps/pki/Import-Certificate.md b/docset/winserver2022-ps/pki/Import-Certificate.md index 21334407b0..18af74138d 100644 --- a/docset/winserver2022-ps/pki/Import-Certificate.md +++ b/docset/winserver2022-ps/pki/Import-Certificate.md @@ -137,4 +137,4 @@ The output is an array of **X509Certificate2\[\]** objects. [Export-Certificate](./Export-Certificate.md) -[System Store Locations](https://docs.microsoft.com/windows/desktop/seccrypto/system-store-locations) +[System Store Locations](/windows/desktop/seccrypto/system-store-locations) diff --git a/docset/winserver2022-ps/pki/Import-PfxCertificate.md b/docset/winserver2022-ps/pki/Import-PfxCertificate.md index 3982003838..f53cbc583e 100644 --- a/docset/winserver2022-ps/pki/Import-PfxCertificate.md +++ b/docset/winserver2022-ps/pki/Import-PfxCertificate.md @@ -176,4 +176,4 @@ The imported **X509Certificate2** object contained in the PFX file that is assoc [Export-PfxCertificate](./Export-PfxCertificate.md) -[System Store Locations](https://docs.microsoft.com/windows/desktop/seccrypto/system-store-locations) +[System Store Locations](/windows/desktop/seccrypto/system-store-locations) diff --git a/docset/winserver2022-ps/pki/New-SelfSignedCertificate.md b/docset/winserver2022-ps/pki/New-SelfSignedCertificate.md index f8145b08d9..0883875f73 100644 --- a/docset/winserver2022-ps/pki/New-SelfSignedCertificate.md +++ b/docset/winserver2022-ps/pki/New-SelfSignedCertificate.md @@ -623,7 +623,7 @@ Accept wildcard characters: False ``` ### -Provider -Specifies the name of the KSP or CSP that this cmdlet uses to create the certificate. See [Cryptographic Providers](https://docs.microsoft.com/en-us/windows/desktop/SecCertEnroll/understanding-cryptographic-providers) for more information. +Specifies the name of the KSP or CSP that this cmdlet uses to create the certificate. See [Cryptographic Providers](/windows/desktop/SecCertEnroll/understanding-cryptographic-providers) for more information. Some acceptable values include: - Microsoft Software Key Storage Provider @@ -1010,4 +1010,4 @@ An **X509Certificate2** object for the certificate that has been created. ## RELATED LINKS -[System Store Locations](https://docs.microsoft.com/windows/desktop/seccrypto/system-store-locations) +[System Store Locations](/windows/desktop/seccrypto/system-store-locations) diff --git a/docset/winserver2022-ps/printmanagement/Get-PrintConfiguration.md b/docset/winserver2022-ps/printmanagement/Get-PrintConfiguration.md index 362fe8e807..37ba81429a 100644 --- a/docset/winserver2022-ps/printmanagement/Get-PrintConfiguration.md +++ b/docset/winserver2022-ps/printmanagement/Get-PrintConfiguration.md @@ -85,7 +85,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -182,4 +182,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS [Set-PrintConfiguration](./Set-PrintConfiguration.md) - diff --git a/docset/winserver2022-ps/provisioning/Install-ProvisioningPackage.md b/docset/winserver2022-ps/provisioning/Install-ProvisioningPackage.md index 8861f6c10f..73bd4873fc 100644 --- a/docset/winserver2022-ps/provisioning/Install-ProvisioningPackage.md +++ b/docset/winserver2022-ps/provisioning/Install-ProvisioningPackage.md @@ -1,4 +1,4 @@ ---- +--- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: provcmdlets.dll-Help.xml Module Name: Provisioning @@ -21,7 +21,7 @@ Install-ProvisioningPackage [-PackagePath] [-ForceInstall] [-QuietInsta ``` ## DESCRIPTION -This cmdlet is used to install .ppkg files that are generated and exported by the [Windows Configuration Designer tool](https://docs.microsoft.com/windows/configuration/provisioning-packages/provisioning-install-icd). +This cmdlet is used to install .ppkg files that are generated and exported by the [Windows Configuration Designer tool](/windows/configuration/provisioning-packages/provisioning-install-icd). The **Install-ProvisioningPackage** cmdlet is supported on Windows 11 client operating system only. diff --git a/docset/winserver2022-ps/rdmgmt/Set-RDCertificate.md b/docset/winserver2022-ps/rdmgmt/Set-RDCertificate.md index c823a14993..6a3533dc09 100644 --- a/docset/winserver2022-ps/rdmgmt/Set-RDCertificate.md +++ b/docset/winserver2022-ps/rdmgmt/Set-RDCertificate.md @@ -46,7 +46,7 @@ PS C:\>$Password = ConvertTo-SecureString -String "Cups34Horses&&" -AsPlainText PS C:\>Set-RDCertificate -Role RDRedirector -ImportPath "C:\Certificates\Redirector07.pfx" -Password $Password -ConnectionBroker "RDCB.Contoso.com" ``` -The first part of the example uses the **ConvertTo-SecureString** cmdlet to create a secure string based on a string that the user supplies and stores it in the **$Password** variable. For more information, see [ConvertTo-SecureString](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.security/ConvertTo-SecureString?view=powershell-6). You can also enter the `Get-Help ConvertTo-SecureString` cmdlet into your PowerShell window. +The first part of the example uses the **ConvertTo-SecureString** cmdlet to create a secure string based on a string that the user supplies and stores it in the **$Password** variable. For more information, see [ConvertTo-SecureString](/powershell/module/microsoft.powershell.security/ConvertTo-SecureString?view=powershell-6). You can also enter the `Get-Help ConvertTo-SecureString` cmdlet into your PowerShell window. The second part of the example specifies the file name of the certificate to use for the redirector role for the RD Connection Broker named RDCB.Contoso.com. The cmdlet uses the secure string stored in the **$Password** variable to help secure the certificate. @@ -178,7 +178,7 @@ Accept wildcard characters: False ### CommonParameters This cmdlet supports the following common parameters: *-Debug*, *-ErrorAction*, *-ErrorVariable*, *-InformationAction*, *-InformationVariable*, *-OutVariable*, *-OutBuffer*, *-PipelineVariable*, *-Verbose*, *-WarningAction*, and *-WarningVariable*. -For more information, see [about_CommonParameters](https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-6). +For more information, see [about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-6). ## Inputs @@ -196,4 +196,4 @@ For more information, see [about_CommonParameters](https://docs.microsoft.com/po [New-RDCertificate](./New-RDCertificate.md) -[about_CommonParameters](https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-6) +[about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-6) diff --git a/docset/winserver2022-ps/scheduledtasks/New-ScheduledTask.md b/docset/winserver2022-ps/scheduledtasks/New-ScheduledTask.md index ac36d4ce86..a9023b706d 100644 --- a/docset/winserver2022-ps/scheduledtasks/New-ScheduledTask.md +++ b/docset/winserver2022-ps/scheduledtasks/New-ScheduledTask.md @@ -104,7 +104,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml diff --git a/docset/winserver2022-ps/scheduledtasks/New-ScheduledTaskSettingsSet.md b/docset/winserver2022-ps/scheduledtasks/New-ScheduledTaskSettingsSet.md index e20c53c2f5..7f2ba0b863 100644 --- a/docset/winserver2022-ps/scheduledtasks/New-ScheduledTaskSettingsSet.md +++ b/docset/winserver2022-ps/scheduledtasks/New-ScheduledTaskSettingsSet.md @@ -144,7 +144,7 @@ The second command creates scheduled task settings that specify if the task is n The third command registers the scheduled task Task01 to run the task action named Cmd, only then finish the task after one hour. -Without the ExecutionTimeLimit setting defined, the time limit set to it's default of three days for the Task Scheduler is allowed to complete the task. To configure the time limit, see [New-TimeSpan](https://docs.microsoft.com/powershell/module/microsoft.powershell.utility/new-timespan). +Without the ExecutionTimeLimit setting defined, the time limit set to it's default of three days for the Task Scheduler is allowed to complete the task. To configure the time limit, see [New-TimeSpan](/powershell/module/microsoft.powershell.utility/new-timespan). ## PARAMETERS @@ -651,4 +651,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Start-ScheduledTask](./Start-ScheduledTask.md) [Unregister-ScheduledTask](./Unregister-ScheduledTask.md) - diff --git a/docset/winserver2022-ps/scheduledtasks/Register-ScheduledTask.md b/docset/winserver2022-ps/scheduledtasks/Register-ScheduledTask.md index 781c2211f9..7548a4d63f 100644 --- a/docset/winserver2022-ps/scheduledtasks/Register-ScheduledTask.md +++ b/docset/winserver2022-ps/scheduledtasks/Register-ScheduledTask.md @@ -110,7 +110,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/en-us/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://docs.microsoft.com/en-us/powershell/module/cimcmdlets/get-cimsession) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](/powershell/module/cimcmdlets/get-cimsession) cmdlet. The default is the current session on the local computer. ```yaml @@ -342,7 +342,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_commonparameters). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters). ## INPUTS diff --git a/docset/winserver2022-ps/smbshare/Grant-SmbShareAccess.md b/docset/winserver2022-ps/smbshare/Grant-SmbShareAccess.md index 1c65e46bc3..088366313a 100644 --- a/docset/winserver2022-ps/smbshare/Grant-SmbShareAccess.md +++ b/docset/winserver2022-ps/smbshare/Grant-SmbShareAccess.md @@ -116,7 +116,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -281,4 +281,3 @@ This cmdlet returns a **MSFT_SmbShareAccessControlEntry** object. [Revoke-SmbShareAccess](./Revoke-SmbShareAccess.md) [Unblock-SmbShareAccess](./Unblock-SmbShareAccess.md) - diff --git a/docset/winserver2022-ps/smbshare/Remove-SmbComponent.md b/docset/winserver2022-ps/smbshare/Remove-SmbComponent.md index 87254bc148..87e72edbb4 100644 --- a/docset/winserver2022-ps/smbshare/Remove-SmbComponent.md +++ b/docset/winserver2022-ps/smbshare/Remove-SmbComponent.md @@ -21,7 +21,7 @@ Remove-SmbComponent [-Name] [-CimSession ] [-ThrottleLi ``` ## DESCRIPTION -The Remove-SmbComponent cmdlet removes SMB1 components. SMB1 is a deprecated and unsafe protocol that’s no longer installed by default in most versions of Windows and Windows Server. For more information, review [SMBv1 is not installed by default in Windows 10 version 1709, Windows Server version 1709, and later versions](https://docs.microsoft.com/windows-server/storage/file-server/troubleshoot/smbv1-not-installed-by-default-in-windows). +The Remove-SmbComponent cmdlet removes SMB1 components. SMB1 is a deprecated and unsafe protocol that’s no longer installed by default in most versions of Windows and Windows Server. For more information, review [SMBv1 is not installed by default in Windows 10 version 1709, Windows Server version 1709, and later versions](/windows-server/storage/file-server/troubleshoot/smbv1-not-installed-by-default-in-windows). ## EXAMPLES diff --git a/docset/winserver2022-ps/storage/Enable-PhysicalDiskIdentification.md b/docset/winserver2022-ps/storage/Enable-PhysicalDiskIdentification.md index cd0e5a1ad9..f374928b9f 100644 --- a/docset/winserver2022-ps/storage/Enable-PhysicalDiskIdentification.md +++ b/docset/winserver2022-ps/storage/Enable-PhysicalDiskIdentification.md @@ -80,7 +80,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -177,4 +177,3 @@ This cmdlet outputs an object that represents the physical disk for which you en ## RELATED LINKS [Disable-PhysicalDiskIdentification](./Disable-PhysicalDiskIdentification.md) - diff --git a/docset/winserver2022-ps/storage/Format-Volume.md b/docset/winserver2022-ps/storage/Format-Volume.md index 987aab907c..341b1e4c72 100644 --- a/docset/winserver2022-ps/storage/Format-Volume.md +++ b/docset/winserver2022-ps/storage/Format-Volume.md @@ -147,7 +147,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -499,4 +499,3 @@ This cmdlet returns an object that represents the newly formatted volume. [Repair-Volume](./Repair-Volume.md) [Set-Volume](./Set-Volume.md) - diff --git a/docset/winserver2022-ps/storage/Get-Disk.md b/docset/winserver2022-ps/storage/Get-Disk.md index be8350dd93..cd7cc3c5a8 100644 --- a/docset/winserver2022-ps/storage/Get-Disk.md +++ b/docset/winserver2022-ps/storage/Get-Disk.md @@ -14,7 +14,7 @@ title: Get-Disk Gets one or more disks visible to the operating system. > [!NOTE] -> This cmdlet returns physical disk objects like basic disks and partitioned drive partitions. Dynamic disks can span multiple pieces of physical media, so they will not be returned by Get-Disk. For more information, see [Basic and Dynamic Disks](https://docs.microsoft.com/windows/desktop/FileIO/basic-and-dynamic-disks). +> This cmdlet returns physical disk objects like basic disks and partitioned drive partitions. Dynamic disks can span multiple pieces of physical media, so they will not be returned by Get-Disk. For more information, see [Basic and Dynamic Disks](/windows/desktop/FileIO/basic-and-dynamic-disks). ## SYNTAX @@ -401,4 +401,3 @@ This cmdlet outputs one or more objects representing disks. [Set-Disk](./Set-Disk.md) [Update-Disk](./Update-Disk.md) - diff --git a/docset/winserver2022-ps/storage/Get-PhysicalDisk.md b/docset/winserver2022-ps/storage/Get-PhysicalDisk.md index defdcd3d7b..d58115fac4 100644 --- a/docset/winserver2022-ps/storage/Get-PhysicalDisk.md +++ b/docset/winserver2022-ps/storage/Get-PhysicalDisk.md @@ -119,7 +119,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -523,4 +523,3 @@ The Get-PhysicalDisk cmdlet returns objects that represent physical disks. [New-VirtualDisk](./New-VirtualDisk.md) [Get-StorageNode](./Get-StorageNode.md) - diff --git a/docset/winserver2022-ps/storage/Get-VirtualDisk.md b/docset/winserver2022-ps/storage/Get-VirtualDisk.md index 624bf10f72..72d89edc9d 100644 --- a/docset/winserver2022-ps/storage/Get-VirtualDisk.md +++ b/docset/winserver2022-ps/storage/Get-VirtualDisk.md @@ -624,7 +624,7 @@ You can use the pipeline operator to pass an MSFT_TargetVirtualDisk object to th ## OUTPUTS ### Microsoft.Management.Infrastructure.CimInstance#ROOT/Microsoft/Windows/Storage/MSFT_VirtualDisk -This cmdlet outputs an object that represents the specified virtual disk. For more information about output object type, please see [MSFT_VirtualDisk class](https://docs.microsoft.com/previous-versions/windows/desktop/stormgmt/msft-virtualdisk) +This cmdlet outputs an object that represents the specified virtual disk. For more information about output object type, please see [MSFT_VirtualDisk class](/previous-versions/windows/desktop/stormgmt/msft-virtualdisk) ## NOTES @@ -655,4 +655,3 @@ This cmdlet outputs an object that represents the specified virtual disk. For mo [Set-VirtualDisk](./Set-VirtualDisk.md) [Show-VirtualDisk](./Show-VirtualDisk.md) - diff --git a/docset/winserver2022-ps/tls/Get-TlsCipherSuite.md b/docset/winserver2022-ps/tls/Get-TlsCipherSuite.md index ec02aa2309..acf4d4e534 100644 --- a/docset/winserver2022-ps/tls/Get-TlsCipherSuite.md +++ b/docset/winserver2022-ps/tls/Get-TlsCipherSuite.md @@ -24,7 +24,7 @@ The **Get-TlsCipherSuite** cmdlet gets an ordered collection of cipher suites fo For more information about the TLS cipher suites, see the documentation for the Enable-TlsCipherSuite cmdlet or type `Get-Help Enable-TlsCipherSuite`. -For more information about protocol versions , see [BCRYPT_KDF_TLS_PRF (L"TLS_PRF")](https://docs.microsoft.com/windows/desktop/api/bcrypt/nf-bcrypt-bcryptderivekey#bcrypt_kdf_tls_prf-ltls_prf) . +For more information about protocol versions , see [BCRYPT_KDF_TLS_PRF (L"TLS_PRF")](/windows/desktop/api/bcrypt/nf-bcrypt-bcryptderivekey#bcrypt_kdf_tls_prf-ltls_prf) . ## EXAMPLES diff --git a/docset/winserver2022-ps/updateservices/Add-WsusDynamicCategory.md b/docset/winserver2022-ps/updateservices/Add-WsusDynamicCategory.md index 5a0a5b9716..5a82be6322 100644 --- a/docset/winserver2022-ps/updateservices/Add-WsusDynamicCategory.md +++ b/docset/winserver2022-ps/updateservices/Add-WsusDynamicCategory.md @@ -38,7 +38,7 @@ In order to transfer dynamic categories from one update server to another, pass This cmdlet is used to add Dynamic Categories to WSUS, based on the type of requirement (computer model, device or application). The definition of Dynamic Categories in a WSUS implementation helps to categorize the applying of updates to the different categories available. -In some cases, you need advanced automation when using Dynamic Categories. If you want to download a specific device driver for a specific group of computers in the physical network, for example, advanced automation is required to use Dynamic Categories. In this case, the use of [Microsoft Endpoint Configuration Manager](https://docs.microsoft.com/configmgr/) is needed to [install and configure a software update point](https://docs.microsoft.com/configmgr/sum/get-started/install-a-software-update-point) feature. +In some cases, you need advanced automation when using Dynamic Categories. If you want to download a specific device driver for a specific group of computers in the physical network, for example, advanced automation is required to use Dynamic Categories. In this case, the use of [Microsoft Endpoint Configuration Manager](/configmgr/) is needed to [install and configure a software update point](/configmgr/sum/get-started/install-a-software-update-point) feature. ## EXAMPLES diff --git a/docset/winserver2022-ps/vpnclient/Add-VpnConnection.md b/docset/winserver2022-ps/vpnclient/Add-VpnConnection.md index c44ce063f2..fdfb1764e5 100644 --- a/docset/winserver2022-ps/vpnclient/Add-VpnConnection.md +++ b/docset/winserver2022-ps/vpnclient/Add-VpnConnection.md @@ -157,7 +157,7 @@ PS C:\> $EAPXml = [xml]Get-Content -Path C:\eap-config.xml PS C:\> Add-VpnConnection -Name "Test6" -ServerAddress "10.1.1.1" -TunnelType "L2tp" -EncryptionLevel "Required" -AuthenticationMethod Eap -SplitTunneling -AllUserConnection -RememberCredential -EapConfigXmlStream $EAPXml ``` -This set of commands adds a VPN connection using an already generated EAP XML configuration. For more information about how to generate EAP XML configuration, see [EAP Configuration](https://docs.microsoft.com/windows/client-management/mdm/eap-configuration). +This set of commands adds a VPN connection using an already generated EAP XML configuration. For more information about how to generate EAP XML configuration, see [EAP Configuration](/windows/client-management/mdm/eap-configuration). ## PARAMETERS @@ -574,4 +574,3 @@ This cmdlet returns a **VpnConnection** object that contains the VPN connection [Remove-VpnConnection](./Remove-VpnConnection.md) [New-EapConfiguration](./New-EapConfiguration.md) - diff --git a/docset/winserver2022-ps/vpnclient/New-EapConfiguration.md b/docset/winserver2022-ps/vpnclient/New-EapConfiguration.md index 7ceeff7118..ede38bfa32 100644 --- a/docset/winserver2022-ps/vpnclient/New-EapConfiguration.md +++ b/docset/winserver2022-ps/vpnclient/New-EapConfiguration.md @@ -64,8 +64,8 @@ PS C:\> $A = New-EapConfiguration -UseWinlogonCredential This command creates an EAP configuration object, customized by the *UseWinlogonCredential* parameter, and stores it in the variable named $A. By specifying the *UseWinlogonCredential* parameter, the EAP configuration object is configured to use MSCHAPv2 as the authentication method, and that Windows logon credentials are used automatically when connecting with the VPN connection profile. -See [VPN authentication options](https://docs.microsoft.com/windows/security/identity-protection/vpn/vpn-authentication) -and [Add connectivity profiles](https://docs.microsoft.com/windows/configuration/wcd/wcd-connectivityprofiles#vpn-1) to learn more about VPN authentication methods. +See [VPN authentication options](/windows/security/identity-protection/vpn/vpn-authentication) +and [Add connectivity profiles](/windows/configuration/wcd/wcd-connectivityprofiles#vpn-1) to learn more about VPN authentication methods. ### Example 3: Create a TLS customized EAP configuration object ``` @@ -416,4 +416,3 @@ This cmdlet returns a **VpnConnection** object that contains the VPN connection [Add-VpnConnection](./Add-VpnConnection.md) [Set-VpnConnection](./Set-VpnConnection.md) - diff --git a/docset/winserver2022-ps/vpnclient/Set-VpnConnectionProxy.md b/docset/winserver2022-ps/vpnclient/Set-VpnConnectionProxy.md index c651233458..22a890b69a 100644 --- a/docset/winserver2022-ps/vpnclient/Set-VpnConnectionProxy.md +++ b/docset/winserver2022-ps/vpnclient/Set-VpnConnectionProxy.md @@ -108,7 +108,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml diff --git a/docset/winserver2022-ps/webadministration/Get-WebApplication.md b/docset/winserver2022-ps/webadministration/Get-WebApplication.md index 70ad748bd6..6eb38e16c3 100644 --- a/docset/winserver2022-ps/webadministration/Get-WebApplication.md +++ b/docset/winserver2022-ps/webadministration/Get-WebApplication.md @@ -84,4 +84,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Remove-WebApplication](./Remove-WebApplication.md) -[Microsoft.Web.Administration.ConfigurationElement#Application](https://docs.microsoft.com/dotnet/api/microsoft.web.administration.application?view=iis-dotnet) +[Microsoft.Web.Administration.ConfigurationElement#Application](/dotnet/api/microsoft.web.administration.application?view=iis-dotnet) diff --git a/docset/winserver2022-ps/webadministration/New-WebAppPool.md b/docset/winserver2022-ps/webadministration/New-WebAppPool.md index 9f27e51097..981e0641c2 100644 --- a/docset/winserver2022-ps/webadministration/New-WebAppPool.md +++ b/docset/winserver2022-ps/webadministration/New-WebAppPool.md @@ -20,7 +20,7 @@ New-WebAppPool [-Name] [-Force] [] ``` ## DESCRIPTION -The **New-WebAppPool** cmdlet creates an Internet Information Services (IIS) application pool. For changing different properties of the application pool after creation, see [PowerShell Snap-in: Making Configuration Changes to Websites and App Pools](https://docs.microsoft.com/iis/manage/powershell/powershell-snap-in-making-simple-configuration-changes-to-web-sites-and-application-pools). +The **New-WebAppPool** cmdlet creates an Internet Information Services (IIS) application pool. For changing different properties of the application pool after creation, see [PowerShell Snap-in: Making Configuration Changes to Websites and App Pools](/iis/manage/powershell/powershell-snap-in-making-simple-configuration-changes-to-web-sites-and-application-pools). ## EXAMPLES diff --git a/docset/winserver2022-ps/webapplicationproxy/Set-WebApplicationProxyConfiguration.md b/docset/winserver2022-ps/webapplicationproxy/Set-WebApplicationProxyConfiguration.md index 97abf3c6b8..eb26696ac9 100644 --- a/docset/winserver2022-ps/webapplicationproxy/Set-WebApplicationProxyConfiguration.md +++ b/docset/winserver2022-ps/webapplicationproxy/Set-WebApplicationProxyConfiguration.md @@ -135,7 +135,7 @@ Accept wildcard characters: False ### -CimSession Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://docs.microsoft.com/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -298,4 +298,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS [Get-WebApplicationProxyConfiguration](./Get-WebApplicationProxyConfiguration.md) - diff --git a/docset/winserver2022-ps/windowserrorreporting/Disable-WindowsErrorReporting.md b/docset/winserver2022-ps/windowserrorreporting/Disable-WindowsErrorReporting.md index 2ecf19f349..b95f17227a 100644 --- a/docset/winserver2022-ps/windowserrorreporting/Disable-WindowsErrorReporting.md +++ b/docset/winserver2022-ps/windowserrorreporting/Disable-WindowsErrorReporting.md @@ -27,7 +27,7 @@ Windows Error Reporting generates reports in response to system events, such as To get the current WER status, use the [Get-WindowsErrorReporting](./Get-WindowsErrorReporting.md) cmdlet. If you disable WER, you can use the [Enable-WindowsErrorReporting](./Enable-WindowsErrorReporting.md) cmdlet to re-enable it. -After you run this cmdlet, WER again sends information about application failures to Microsoft. To customize the settings of Windows Error Reporting, use registry keys described in [WER Settings](https://docs.microsoft.com/windows/desktop/wer/wer-settings) article. +After you run this cmdlet, WER again sends information about application failures to Microsoft. To customize the settings of Windows Error Reporting, use registry keys described in [WER Settings](/windows/desktop/wer/wer-settings) article. ## EXAMPLES @@ -58,4 +58,3 @@ Otherwise, it returns $False. [Enable-WindowsErrorReporting](./Enable-WindowsErrorReporting.md) [Get-WindowsErrorReporting](./Get-WindowsErrorReporting.md) - From 8c36130676b1ac1f43e208bde0696cef07762795 Mon Sep 17 00:00:00 2001 From: Alex Buck Date: Fri, 9 Sep 2022 08:01:13 -0400 Subject: [PATCH 230/965] Update docset/winserver2022-ps/scheduledtasks/Register-ScheduledTask.md Co-authored-by: Sean Wheeler --- .../winserver2022-ps/scheduledtasks/Register-ScheduledTask.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/scheduledtasks/Register-ScheduledTask.md b/docset/winserver2022-ps/scheduledtasks/Register-ScheduledTask.md index 7548a4d63f..cdffc0b2b9 100644 --- a/docset/winserver2022-ps/scheduledtasks/Register-ScheduledTask.md +++ b/docset/winserver2022-ps/scheduledtasks/Register-ScheduledTask.md @@ -342,7 +342,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS From 6e0a0dfa911e098be11e603a58d30f2750ed2739 Mon Sep 17 00:00:00 2001 From: Alex Buck Date: Fri, 9 Sep 2022 08:01:25 -0400 Subject: [PATCH 231/965] Update docset/winserver2022-ps/rdmgmt/Set-RDCertificate.md Co-authored-by: Sean Wheeler --- docset/winserver2022-ps/rdmgmt/Set-RDCertificate.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/rdmgmt/Set-RDCertificate.md b/docset/winserver2022-ps/rdmgmt/Set-RDCertificate.md index 6a3533dc09..b354fc96c6 100644 --- a/docset/winserver2022-ps/rdmgmt/Set-RDCertificate.md +++ b/docset/winserver2022-ps/rdmgmt/Set-RDCertificate.md @@ -196,4 +196,4 @@ For more information, see [about_CommonParameters](/powershell/module/microsoft. [New-RDCertificate](./New-RDCertificate.md) -[about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-6) +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216) From f6865ea38099680b06c07690b90dcd68845c18b7 Mon Sep 17 00:00:00 2001 From: Alex Buck Date: Fri, 9 Sep 2022 08:01:33 -0400 Subject: [PATCH 232/965] Update docset/winserver2022-ps/rdmgmt/Set-RDCertificate.md Co-authored-by: Sean Wheeler --- docset/winserver2022-ps/rdmgmt/Set-RDCertificate.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/rdmgmt/Set-RDCertificate.md b/docset/winserver2022-ps/rdmgmt/Set-RDCertificate.md index b354fc96c6..99be6a982e 100644 --- a/docset/winserver2022-ps/rdmgmt/Set-RDCertificate.md +++ b/docset/winserver2022-ps/rdmgmt/Set-RDCertificate.md @@ -178,7 +178,7 @@ Accept wildcard characters: False ### CommonParameters This cmdlet supports the following common parameters: *-Debug*, *-ErrorAction*, *-ErrorVariable*, *-InformationAction*, *-InformationVariable*, *-OutVariable*, *-OutBuffer*, *-PipelineVariable*, *-Verbose*, *-WarningAction*, and *-WarningVariable*. -For more information, see [about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-6). +For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## Inputs From e15b0ca438407d8f64999f465973fd199aaa4445 Mon Sep 17 00:00:00 2001 From: Alex Buck Date: Fri, 9 Sep 2022 08:02:01 -0400 Subject: [PATCH 233/965] Update docset/winserver2022-ps/windowserrorreporting/Disable-WindowsErrorReporting.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- .../windowserrorreporting/Disable-WindowsErrorReporting.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/windowserrorreporting/Disable-WindowsErrorReporting.md b/docset/winserver2022-ps/windowserrorreporting/Disable-WindowsErrorReporting.md index b95f17227a..e3026e6328 100644 --- a/docset/winserver2022-ps/windowserrorreporting/Disable-WindowsErrorReporting.md +++ b/docset/winserver2022-ps/windowserrorreporting/Disable-WindowsErrorReporting.md @@ -27,7 +27,7 @@ Windows Error Reporting generates reports in response to system events, such as To get the current WER status, use the [Get-WindowsErrorReporting](./Get-WindowsErrorReporting.md) cmdlet. If you disable WER, you can use the [Enable-WindowsErrorReporting](./Enable-WindowsErrorReporting.md) cmdlet to re-enable it. -After you run this cmdlet, WER again sends information about application failures to Microsoft. To customize the settings of Windows Error Reporting, use registry keys described in [WER Settings](/windows/desktop/wer/wer-settings) article. +After you run this cmdlet, WER again sends information about application failures to Microsoft. To customize the settings of Windows Error Reporting, use registry keys described in the [WER Settings](/windows/desktop/wer/wer-settings) article. ## EXAMPLES From b435d401daa873907f7d6d513381ef502d8bca45 Mon Sep 17 00:00:00 2001 From: Alex Buck Date: Fri, 9 Sep 2022 08:02:16 -0400 Subject: [PATCH 234/965] Update docset/winserver2022-ps/tls/Get-TlsCipherSuite.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2022-ps/tls/Get-TlsCipherSuite.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/tls/Get-TlsCipherSuite.md b/docset/winserver2022-ps/tls/Get-TlsCipherSuite.md index acf4d4e534..4e6deaae94 100644 --- a/docset/winserver2022-ps/tls/Get-TlsCipherSuite.md +++ b/docset/winserver2022-ps/tls/Get-TlsCipherSuite.md @@ -24,7 +24,7 @@ The **Get-TlsCipherSuite** cmdlet gets an ordered collection of cipher suites fo For more information about the TLS cipher suites, see the documentation for the Enable-TlsCipherSuite cmdlet or type `Get-Help Enable-TlsCipherSuite`. -For more information about protocol versions , see [BCRYPT_KDF_TLS_PRF (L"TLS_PRF")](/windows/desktop/api/bcrypt/nf-bcrypt-bcryptderivekey#bcrypt_kdf_tls_prf-ltls_prf) . +For more information about protocol versions , see [BCRYPT_KDF_TLS_PRF (L"TLS_PRF")](/windows/desktop/api/bcrypt/nf-bcrypt-bcryptderivekey#bcrypt_kdf_tls_prf-ltls_prf). ## EXAMPLES From 380b8d86517345ebe81cf531ea61446e657b8b1b Mon Sep 17 00:00:00 2001 From: Sean Wheeler Date: Fri, 9 Sep 2022 09:34:11 -0500 Subject: [PATCH 235/965] Apply suggestions from code review Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2022-ps/storage/Get-VirtualDisk.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/storage/Get-VirtualDisk.md b/docset/winserver2022-ps/storage/Get-VirtualDisk.md index 72d89edc9d..77288a300c 100644 --- a/docset/winserver2022-ps/storage/Get-VirtualDisk.md +++ b/docset/winserver2022-ps/storage/Get-VirtualDisk.md @@ -624,7 +624,7 @@ You can use the pipeline operator to pass an MSFT_TargetVirtualDisk object to th ## OUTPUTS ### Microsoft.Management.Infrastructure.CimInstance#ROOT/Microsoft/Windows/Storage/MSFT_VirtualDisk -This cmdlet outputs an object that represents the specified virtual disk. For more information about output object type, please see [MSFT_VirtualDisk class](/previous-versions/windows/desktop/stormgmt/msft-virtualdisk) +This cmdlet outputs an object that represents the specified virtual disk. For more information about output object type, see [MSFT_VirtualDisk class](/previous-versions/windows/desktop/stormgmt/msft-virtualdisk). ## NOTES From 625c4fafcbbeab67e03900e34549f7a9232599b0 Mon Sep 17 00:00:00 2001 From: Ashok-Lobo Date: Fri, 16 Sep 2022 11:43:53 +0530 Subject: [PATCH 236/965] Updated Set-MpPreference cmdlet - task - 6669854 --- .../defender/Set-MpPreference.md | 16 +++++++++++++--- .../defender/Set-MpPreference.md | 17 ++++++++++++++--- 2 files changed, 27 insertions(+), 6 deletions(-) diff --git a/docset/winserver2019-ps/defender/Set-MpPreference.md b/docset/winserver2019-ps/defender/Set-MpPreference.md index bc66191c78..c2d2fb0b29 100644 --- a/docset/winserver2019-ps/defender/Set-MpPreference.md +++ b/docset/winserver2019-ps/defender/Set-MpPreference.md @@ -24,6 +24,7 @@ Set-MpPreference [-ExclusionPath ] [-ExclusionExtension ] [- [-CheckForSignaturesBeforeRunningScan ] [-ScanPurgeItemsAfterDelay ] [-ScanOnlyIfIdleEnabled ] [-ScanParameters ] [-ScanScheduleDay ] [-ScanScheduleQuickScanTime ] [-ScanScheduleOffset ] [-SignatureFirstAuGracePeriod ] + [-ScanScheduleTime ] [-SignatureAuGracePeriod ] [-SignatureDefinitionUpdateFileSharesSources ] [-SignatureDisableUpdateOnStartupWithoutEngine ] [-SignatureFallbackOrder ] [-SignatureScheduleDay ] [-SignatureScheduleTime ] [-SignatureUpdateCatchupInterval ] @@ -994,9 +995,6 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -ScanScheduleTime -This setting is discontinued and replaced with **ScanScheduleOffset** as a part of a recent Microsoft Defender Antivirus update. - ### -ScanScheduleOffset Configures the number of minutes after midnight to perform a scheduled scan. The time on the endpoint is used to determine the local time. If you enable this setting, a scheduled scan will run at the time specified. If you disable or don’t enable this setting, a scheduled scan runs at the default time of two hours (120 minutes) after midnight. @@ -1012,6 +1010,18 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -ScanScheduleTime +Specify the time of day to run a scheduled scan. The time refers to the local time on the computer. Specify the number of minutes after midnight (for example, enter 60 for 1 a.m.). That parameter has a default time of two hours after midnight (2:00 a.m.). + +```yaml +Type: DateTime +Aliases: scsqst +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ServiceHealthReportInterval This policy setting configures the time interval (in minutes) for the service health reports to be sent from endpoints. diff --git a/docset/winserver2022-ps/defender/Set-MpPreference.md b/docset/winserver2022-ps/defender/Set-MpPreference.md index 3146d95bfa..7183d2c71f 100644 --- a/docset/winserver2022-ps/defender/Set-MpPreference.md +++ b/docset/winserver2022-ps/defender/Set-MpPreference.md @@ -24,6 +24,7 @@ Set-MpPreference [-ExclusionPath ] [-ExclusionExtension ] [- [-ScanAvgCPULoadFactor ] [-CheckForSignaturesBeforeRunningScan ] [-ScanPurgeItemsAfterDelay ] [-ScanOnlyIfIdleEnabled ] [-ScanParameters ] [-ScanScheduleDay ] [-ScanScheduleQuickScanTime ] [-ScanScheduleOffset ] + [-ScanScheduleTime ] [-SignatureFirstAuGracePeriod ] [-SignatureAuGracePeriod ] [-SignatureDefinitionUpdateFileSharesSources ] [-SignatureDisableUpdateOnStartupWithoutEngine ] [-SignatureFallbackOrder ] @@ -39,6 +40,7 @@ Set-MpPreference [-ExclusionPath ] [-ExclusionExtension ] [- [-DisableCatchupFullScan ] [-DisableCatchupQuickScan ] [-DisableEmailScanning ] [-DisableRemovableDriveScanning ] [-DisableRestorePoint ] [-DisableScanningMappedNetworkDrivesForFullScan ] [-DisableScanningNetworkFiles ] + [-DisableIOAVProtection ] [-UILockdown ] [-ThreatIDDefaultAction_Ids ] [-ThreatIDDefaultAction_Actions ] [-UnknownThreatDefaultAction ] [-LowThreatDefaultAction ] [-ModerateThreatDefaultAction ] @@ -1400,9 +1402,6 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -ScanScheduleTime -This setting is discontinued and replaced with **ScanScheduleOffset** as a part of a recent Microsoft Defender Antivirus update. - ### -ScanScheduleOffset Configures the number of minutes after midnight to perform a scheduled scan. The time on the endpoint is used to determine the local time. If you enable this setting, a scheduled scan will run at the time specified. If you disable or don’t enable this setting, a scheduled scan runs at the default time of two hours (120 minutes) after midnight. @@ -1415,6 +1414,18 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -ScanScheduleTime +Specify the time of day to run a scheduled scan. The time refers to the local time on the computer. Specify the number of minutes after midnight (for example, enter 60 for 1 a.m.). That parameter has a default time of two hours after midnight (2:00 a.m.). + +```yaml +Type: DateTime +Aliases: scsqst +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -SchedulerRandomizationTime Specifies the randomization time for the scheduler. From 1949f4686f1b47e4dae9f22d717157f7bd37b168 Mon Sep 17 00:00:00 2001 From: Ashok-Lobo Date: Fri, 16 Sep 2022 12:19:31 +0530 Subject: [PATCH 237/965] Update Set-MpPreference.md --- docset/winserver2022-ps/defender/Set-MpPreference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/defender/Set-MpPreference.md b/docset/winserver2022-ps/defender/Set-MpPreference.md index 7183d2c71f..bc4b43bee3 100644 --- a/docset/winserver2022-ps/defender/Set-MpPreference.md +++ b/docset/winserver2022-ps/defender/Set-MpPreference.md @@ -24,7 +24,7 @@ Set-MpPreference [-ExclusionPath ] [-ExclusionExtension ] [- [-ScanAvgCPULoadFactor ] [-CheckForSignaturesBeforeRunningScan ] [-ScanPurgeItemsAfterDelay ] [-ScanOnlyIfIdleEnabled ] [-ScanParameters ] [-ScanScheduleDay ] [-ScanScheduleQuickScanTime ] [-ScanScheduleOffset ] - [-ScanScheduleTime ] + [-ScanScheduleTime ] [-SignatureFirstAuGracePeriod ] [-SignatureAuGracePeriod ] [-SignatureDefinitionUpdateFileSharesSources ] [-SignatureDisableUpdateOnStartupWithoutEngine ] [-SignatureFallbackOrder ] From 1c1e1d255976f738bba51bbe4090a68cc42b2002 Mon Sep 17 00:00:00 2001 From: Tami Fosmark Date: Mon, 19 Sep 2022 17:39:02 -0700 Subject: [PATCH 238/965] update path to pki.md --- .openpublishing.redirection.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.openpublishing.redirection.json b/.openpublishing.redirection.json index ff8686836e..da6ef5036b 100644 --- a/.openpublishing.redirection.json +++ b/.openpublishing.redirection.json @@ -457,7 +457,7 @@ }, { "source_path": "docset/virtual-directory-module/pkiclient/pkiclient.md", - "redirect_url": "/powershell/module/pki", + "redirect_url": "/powershell/module/pki/pki", "redirect_document_id": false }, { @@ -1312,7 +1312,7 @@ }, { "source_path": "docset/winserver2012-ps/pkiclient/PKIClient.md", - "redirect_url": "/powershell/module/pki/?view=winserver2012-ps", + "redirect_url": "/powershell/module/pki/pki.md?view=winserver2012-ps", "redirect_document_id": false }, { @@ -2552,7 +2552,7 @@ }, { "source_path": "docset/winserver2012r2-ps/pkiclient/PKIClient.md", - "redirect_url": "/powershell/module/pki/?view=winserver2012r2-ps", + "redirect_url": "/powershell/module/pki/pki.md?view=winserver2012r2-ps", "redirect_document_id": false }, { @@ -3742,7 +3742,7 @@ }, { "source_path": "docset/winserver2016-ps/pkiclient/PKIClient.md", - "redirect_url": "/powershell/module/pki/?view=windowsserver2016-ps", + "redirect_url": "/powershell/module/pki/pki.md?view=windowsserver2016-ps", "redirect_document_id": false }, { @@ -4722,7 +4722,7 @@ }, { "source_path": "docset/winserver2019-ps/pkiclient/PKIClient.md", - "redirect_url": "/powershell/module/pki/?view=windowsserver2019-ps", + "redirect_url": "/powershell/module/pki/pki.md?view=windowsserver2019-ps", "redirect_document_id": false }, { @@ -5207,7 +5207,7 @@ }, { "source_path": "docset/winserver2022-ps/pkiclient/PKIClient.md", - "redirect_url": "/powershell/module/pki/?view=windowsserver2022-ps", + "redirect_url": "/powershell/module/pki/pki.md?view=windowsserver2022-ps", "redirect_document_id": false }, { From caa74f59ce893d0a5be65d2b9e7706c960644711 Mon Sep 17 00:00:00 2001 From: Ashok-Lobo Date: Tue, 20 Sep 2022 10:29:06 +0530 Subject: [PATCH 239/965] Update Set-MpPreference.md --- docset/winserver2019-ps/defender/Set-MpPreference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/defender/Set-MpPreference.md b/docset/winserver2019-ps/defender/Set-MpPreference.md index c2d2fb0b29..af106b9f85 100644 --- a/docset/winserver2019-ps/defender/Set-MpPreference.md +++ b/docset/winserver2019-ps/defender/Set-MpPreference.md @@ -1011,7 +1011,7 @@ Accept wildcard characters: False ``` ### -ScanScheduleTime -Specify the time of day to run a scheduled scan. The time refers to the local time on the computer. Specify the number of minutes after midnight (for example, enter 60 for 1 a.m.). That parameter has a default time of two hours after midnight (2:00 a.m.). +Specifies the time of day to run a scheduled scan. The time refers to the local time on the computer. Specify the number of minutes after midnight (for example, enter 60 for 1 a.m.). This parameter has a default time of two hours after midnight (2 a.m.). ```yaml Type: DateTime From 2a5b31986da71e99f4238186ebd5b2fa53486f66 Mon Sep 17 00:00:00 2001 From: Ashok-Lobo Date: Tue, 20 Sep 2022 10:46:08 +0530 Subject: [PATCH 240/965] Update Set-MpPreference.md --- docset/winserver2022-ps/defender/Set-MpPreference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/defender/Set-MpPreference.md b/docset/winserver2022-ps/defender/Set-MpPreference.md index bc4b43bee3..a07cde526a 100644 --- a/docset/winserver2022-ps/defender/Set-MpPreference.md +++ b/docset/winserver2022-ps/defender/Set-MpPreference.md @@ -1415,7 +1415,7 @@ Accept wildcard characters: False ``` ### -ScanScheduleTime -Specify the time of day to run a scheduled scan. The time refers to the local time on the computer. Specify the number of minutes after midnight (for example, enter 60 for 1 a.m.). That parameter has a default time of two hours after midnight (2:00 a.m.). +Specifies the time of day to run a scheduled scan. The time refers to the local time on the computer. Specify the number of minutes after midnight (for example, enter 60 for 1 a.m.). This parameter has a default time of two hours after midnight (2 a.m.). ```yaml Type: DateTime From af3454a2b0a7012cb749507361a4c6df8bc36d03 Mon Sep 17 00:00:00 2001 From: Ashok-Lobo Date: Tue, 20 Sep 2022 11:02:53 +0530 Subject: [PATCH 241/965] Update Set-MpPreference.md --- docset/winserver2019-ps/defender/Set-MpPreference.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/defender/Set-MpPreference.md b/docset/winserver2019-ps/defender/Set-MpPreference.md index af106b9f85..cdf3615ebd 100644 --- a/docset/winserver2019-ps/defender/Set-MpPreference.md +++ b/docset/winserver2019-ps/defender/Set-MpPreference.md @@ -42,7 +42,8 @@ Set-MpPreference [-ExclusionPath ] [-ExclusionExtension ] [- [-LowThreatDefaultAction ] [-ModerateThreatDefaultAction ] [-HighThreatDefaultAction ] [-SevereThreatDefaultAction ] [-Force] [-DisableBlockAtFirstSeen ] [-PUAProtection ] [-CimSession ] - [-ThrottleLimit ] [-AsJob] [] [-DisableGradualRelease ] [-DefinitionUpdatesChannel ] [-EngineUpdatesChannel ] [-PlatformUpdatesChannel ][-CloudBlockLevel ][-ServiceHealthReportInterval ] + [-ThrottleLimit ] [-AsJob] [] + [-DisableGradualRelease ] [-DefinitionUpdatesChannel ] [-EngineUpdatesChannel ] [-PlatformUpdatesChannel ][-CloudBlockLevel ][-ServiceHealthReportInterval ] ``` ## DESCRIPTION From 844c048a5f1152a698acccfaf4469d07a7778174 Mon Sep 17 00:00:00 2001 From: Denise Vangel-MSFT Date: Tue, 20 Sep 2022 08:51:57 -0700 Subject: [PATCH 242/965] Update Set-MpPreference.md --- docset/winserver2019-ps/defender/Set-MpPreference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/defender/Set-MpPreference.md b/docset/winserver2019-ps/defender/Set-MpPreference.md index cdf3615ebd..b766af3beb 100644 --- a/docset/winserver2019-ps/defender/Set-MpPreference.md +++ b/docset/winserver2019-ps/defender/Set-MpPreference.md @@ -2,7 +2,7 @@ description: Use this article to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: MSFT_MpPreference.cdxml-help.xml Module Name: Defender -ms.date: 08/30/2022 +ms.date: 09/20/2022 online version: https://docs.microsoft.com/powershell/module/defender/set-mppreference?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-MpPreference From 8db245338a9a353c970b90c5848aed6ea9c532d4 Mon Sep 17 00:00:00 2001 From: Denise Vangel-MSFT Date: Tue, 20 Sep 2022 08:52:14 -0700 Subject: [PATCH 243/965] Update Set-MpPreference.md --- docset/winserver2022-ps/defender/Set-MpPreference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/defender/Set-MpPreference.md b/docset/winserver2022-ps/defender/Set-MpPreference.md index a07cde526a..11b44d275c 100644 --- a/docset/winserver2022-ps/defender/Set-MpPreference.md +++ b/docset/winserver2022-ps/defender/Set-MpPreference.md @@ -2,7 +2,7 @@ description: The Set-MpPreference cmdlet configures preferences for Windows Defender scans and updates. external help file: MSFT_MpPreference.cdxml-help.xml Module Name: Defender -ms.date: 08/30/2022 +ms.date: 09/20/2022 online version: https://docs.microsoft.com/powershell/module/defender/set-mppreference?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-MpPreference From 9f33344e0e1b4b23484200170270b04a96727e82 Mon Sep 17 00:00:00 2001 From: Sean Wheeler Date: Tue, 20 Sep 2022 12:48:56 -0500 Subject: [PATCH 244/965] Update URLs for site rebrand --- .../activedirectory/Add-ADCentralAccessPolicyMember.md | 2 +- .../activedirectory/Add-ADComputerServiceAccount.md | 2 +- .../Add-ADDomainControllerPasswordReplicationPolicy.md | 2 +- .../activedirectory/Add-ADFineGrainedPasswordPolicySubject.md | 2 +- docset/winserver2012-ps/activedirectory/Add-ADGroupMember.md | 2 +- .../activedirectory/Add-ADPrincipalGroupMembership.md | 2 +- .../activedirectory/Add-ADResourcePropertyListMember.md | 2 +- .../activedirectory/Clear-ADAccountExpiration.md | 2 +- .../activedirectory/Clear-ADClaimTransformLink.md | 2 +- docset/winserver2012-ps/activedirectory/Disable-ADAccount.md | 2 +- .../activedirectory/Disable-ADOptionalFeature.md | 2 +- docset/winserver2012-ps/activedirectory/Enable-ADAccount.md | 2 +- .../activedirectory/Enable-ADOptionalFeature.md | 2 +- .../activedirectory/Get-ADAccountAuthorizationGroup.md | 2 +- .../Get-ADAccountResultantPasswordReplicationPolicy.md | 2 +- .../activedirectory/Get-ADCentralAccessPolicy.md | 2 +- .../winserver2012-ps/activedirectory/Get-ADCentralAccessRule.md | 2 +- .../activedirectory/Get-ADClaimTransformPolicy.md | 2 +- docset/winserver2012-ps/activedirectory/Get-ADClaimType.md | 2 +- docset/winserver2012-ps/activedirectory/Get-ADComputer.md | 2 +- .../activedirectory/Get-ADComputerServiceAccount.md | 2 +- .../activedirectory/Get-ADDCCloningExcludedApplicationList.md | 2 +- .../activedirectory/Get-ADDefaultDomainPasswordPolicy.md | 2 +- docset/winserver2012-ps/activedirectory/Get-ADDomain.md | 2 +- .../winserver2012-ps/activedirectory/Get-ADDomainController.md | 2 +- .../Get-ADDomainControllerPasswordReplicationPolicy.md | 2 +- .../Get-ADDomainControllerPasswordReplicationPolicyUsage.md | 2 +- .../activedirectory/Get-ADFineGrainedPasswordPolicy.md | 2 +- .../activedirectory/Get-ADFineGrainedPasswordPolicySubject.md | 2 +- docset/winserver2012-ps/activedirectory/Get-ADForest.md | 2 +- docset/winserver2012-ps/activedirectory/Get-ADGroup.md | 2 +- docset/winserver2012-ps/activedirectory/Get-ADGroupMember.md | 2 +- docset/winserver2012-ps/activedirectory/Get-ADObject.md | 2 +- .../winserver2012-ps/activedirectory/Get-ADOptionalFeature.md | 2 +- .../activedirectory/Get-ADOrganizationalUnit.md | 2 +- .../activedirectory/Get-ADPrincipalGroupMembership.md | 2 +- .../activedirectory/Get-ADReplicationAttributeMetadata.md | 2 +- .../activedirectory/Get-ADReplicationConnection.md | 2 +- .../activedirectory/Get-ADReplicationFailure.md | 2 +- .../activedirectory/Get-ADReplicationPartnerMetadata.md | 2 +- .../activedirectory/Get-ADReplicationQueueOperation.md | 2 +- .../winserver2012-ps/activedirectory/Get-ADReplicationSite.md | 2 +- .../activedirectory/Get-ADReplicationSiteLink.md | 2 +- .../activedirectory/Get-ADReplicationSiteLinkBridge.md | 2 +- .../winserver2012-ps/activedirectory/Get-ADReplicationSubnet.md | 2 +- .../activedirectory/Get-ADReplicationUpToDatenessVectorTable.md | 2 +- .../winserver2012-ps/activedirectory/Get-ADResourceProperty.md | 2 +- .../activedirectory/Get-ADResourcePropertyList.md | 2 +- .../activedirectory/Get-ADResourcePropertyValueType.md | 2 +- docset/winserver2012-ps/activedirectory/Get-ADRootDSE.md | 2 +- docset/winserver2012-ps/activedirectory/Get-ADServiceAccount.md | 2 +- docset/winserver2012-ps/activedirectory/Get-ADTrust.md | 2 +- docset/winserver2012-ps/activedirectory/Get-ADUser.md | 2 +- .../activedirectory/Get-ADUserResultantPasswordPolicy.md | 2 +- .../activedirectory/Install-ADServiceAccount.md | 2 +- .../winserver2012-ps/activedirectory/Move-ADDirectoryServer.md | 2 +- .../Move-ADDirectoryServerOperationMasterRole.md | 2 +- docset/winserver2012-ps/activedirectory/Move-ADObject.md | 2 +- .../activedirectory/New-ADCentralAccessPolicy.md | 2 +- .../winserver2012-ps/activedirectory/New-ADCentralAccessRule.md | 2 +- .../activedirectory/New-ADClaimTransformPolicy.md | 2 +- docset/winserver2012-ps/activedirectory/New-ADClaimType.md | 2 +- docset/winserver2012-ps/activedirectory/New-ADComputer.md | 2 +- .../winserver2012-ps/activedirectory/New-ADDCCloneConfigFile.md | 2 +- .../activedirectory/New-ADFineGrainedPasswordPolicy.md | 2 +- docset/winserver2012-ps/activedirectory/New-ADGroup.md | 2 +- docset/winserver2012-ps/activedirectory/New-ADObject.md | 2 +- .../activedirectory/New-ADOrganizationalUnit.md | 2 +- .../winserver2012-ps/activedirectory/New-ADReplicationSite.md | 2 +- .../activedirectory/New-ADReplicationSiteLink.md | 2 +- .../activedirectory/New-ADReplicationSiteLinkBridge.md | 2 +- .../winserver2012-ps/activedirectory/New-ADReplicationSubnet.md | 2 +- .../winserver2012-ps/activedirectory/New-ADResourceProperty.md | 2 +- .../activedirectory/New-ADResourcePropertyList.md | 2 +- docset/winserver2012-ps/activedirectory/New-ADServiceAccount.md | 2 +- docset/winserver2012-ps/activedirectory/New-ADUser.md | 2 +- .../activedirectory/Remove-ADCentralAccessPolicy.md | 2 +- .../activedirectory/Remove-ADCentralAccessPolicyMember.md | 2 +- .../activedirectory/Remove-ADCentralAccessRule.md | 2 +- .../activedirectory/Remove-ADClaimTransformPolicy.md | 2 +- docset/winserver2012-ps/activedirectory/Remove-ADClaimType.md | 2 +- docset/winserver2012-ps/activedirectory/Remove-ADComputer.md | 2 +- .../activedirectory/Remove-ADComputerServiceAccount.md | 2 +- .../Remove-ADDomainControllerPasswordReplicationPolicy.md | 2 +- .../activedirectory/Remove-ADFineGrainedPasswordPolicy.md | 2 +- .../Remove-ADFineGrainedPasswordPolicySubject.md | 2 +- docset/winserver2012-ps/activedirectory/Remove-ADGroup.md | 2 +- docset/winserver2012-ps/activedirectory/Remove-ADGroupMember.md | 2 +- docset/winserver2012-ps/activedirectory/Remove-ADObject.md | 2 +- .../activedirectory/Remove-ADOrganizationalUnit.md | 2 +- .../activedirectory/Remove-ADPrincipalGroupMembership.md | 2 +- .../activedirectory/Remove-ADReplicationSite.md | 2 +- .../activedirectory/Remove-ADReplicationSiteLink.md | 2 +- .../activedirectory/Remove-ADReplicationSiteLinkBridge.md | 2 +- .../activedirectory/Remove-ADReplicationSubnet.md | 2 +- .../activedirectory/Remove-ADResourceProperty.md | 2 +- .../activedirectory/Remove-ADResourcePropertyList.md | 2 +- .../activedirectory/Remove-ADResourcePropertyListMember.md | 2 +- .../winserver2012-ps/activedirectory/Remove-ADServiceAccount.md | 2 +- docset/winserver2012-ps/activedirectory/Remove-ADUser.md | 2 +- docset/winserver2012-ps/activedirectory/Rename-ADObject.md | 2 +- .../activedirectory/Reset-ADServiceAccountPassword.md | 2 +- docset/winserver2012-ps/activedirectory/Restore-ADObject.md | 2 +- docset/winserver2012-ps/activedirectory/Search-ADAccount.md | 2 +- docset/winserver2012-ps/activedirectory/Set-ADAccountControl.md | 2 +- .../winserver2012-ps/activedirectory/Set-ADAccountExpiration.md | 2 +- .../winserver2012-ps/activedirectory/Set-ADAccountPassword.md | 2 +- .../activedirectory/Set-ADCentralAccessPolicy.md | 2 +- .../winserver2012-ps/activedirectory/Set-ADCentralAccessRule.md | 2 +- .../activedirectory/Set-ADClaimTransformLink.md | 2 +- .../activedirectory/Set-ADClaimTransformPolicy.md | 2 +- docset/winserver2012-ps/activedirectory/Set-ADClaimType.md | 2 +- docset/winserver2012-ps/activedirectory/Set-ADComputer.md | 2 +- .../activedirectory/Set-ADDefaultDomainPasswordPolicy.md | 2 +- docset/winserver2012-ps/activedirectory/Set-ADDomain.md | 2 +- docset/winserver2012-ps/activedirectory/Set-ADDomainMode.md | 2 +- .../activedirectory/Set-ADFineGrainedPasswordPolicy.md | 2 +- docset/winserver2012-ps/activedirectory/Set-ADForest.md | 2 +- docset/winserver2012-ps/activedirectory/Set-ADForestMode.md | 2 +- docset/winserver2012-ps/activedirectory/Set-ADGroup.md | 2 +- docset/winserver2012-ps/activedirectory/Set-ADObject.md | 2 +- .../activedirectory/Set-ADOrganizationalUnit.md | 2 +- .../activedirectory/Set-ADReplicationConnection.md | 2 +- .../winserver2012-ps/activedirectory/Set-ADReplicationSite.md | 2 +- .../activedirectory/Set-ADReplicationSiteLink.md | 2 +- .../activedirectory/Set-ADReplicationSiteLinkBridge.md | 2 +- .../winserver2012-ps/activedirectory/Set-ADReplicationSubnet.md | 2 +- .../winserver2012-ps/activedirectory/Set-ADResourceProperty.md | 2 +- .../activedirectory/Set-ADResourcePropertyList.md | 2 +- docset/winserver2012-ps/activedirectory/Set-ADServiceAccount.md | 2 +- docset/winserver2012-ps/activedirectory/Set-ADUser.md | 2 +- docset/winserver2012-ps/activedirectory/Sync-ADObject.md | 2 +- .../winserver2012-ps/activedirectory/Test-ADServiceAccount.md | 2 +- .../activedirectory/Uninstall-ADServiceAccount.md | 2 +- docset/winserver2012-ps/activedirectory/Unlock-ADAccount.md | 2 +- .../adcsadministration/add-caauthorityinformationaccess.md | 2 +- .../adcsadministration/add-cacrldistributionpoint.md | 2 +- docset/winserver2012-ps/adcsadministration/add-catemplate.md | 2 +- .../winserver2012-ps/adcsadministration/backup-caroleservice.md | 2 +- .../adcsadministration/confirm-caendorsementkeyinfo.md | 2 +- .../adcsadministration/get-caauthorityinformationaccess.md | 2 +- .../adcsadministration/get-cacrldistributionpoint.md | 2 +- docset/winserver2012-ps/adcsadministration/get-catemplate.md | 2 +- .../adcsadministration/remove-caauthorityinformationaccess.md | 2 +- .../adcsadministration/remove-cacrldistributionpoint.md | 2 +- docset/winserver2012-ps/adcsadministration/remove-catemplate.md | 2 +- .../adcsadministration/restore-caroleservice.md | 2 +- .../adcsdeployment/install-adcscertificationauthority.md | 2 +- .../adcsdeployment/install-adcsenrollmentpolicywebservice.md | 2 +- .../adcsdeployment/install-adcsenrollmentwebservice.md | 2 +- .../install-adcsnetworkdeviceenrollmentservice.md | 2 +- .../adcsdeployment/install-adcsonlineresponder.md | 2 +- .../adcsdeployment/install-adcswebenrollment.md | 2 +- .../adcsdeployment/uninstall-adcscertificationauthority.md | 2 +- .../adcsdeployment/uninstall-adcsenrollmentpolicywebservice.md | 2 +- .../adcsdeployment/uninstall-adcsenrollmentwebservice.md | 2 +- .../uninstall-adcsnetworkdeviceenrollmentservice.md | 2 +- .../adcsdeployment/uninstall-adcsonlineresponder.md | 2 +- .../adcsdeployment/uninstall-adcswebenrollment.md | 2 +- .../addsdeployment/Add-ADDSReadOnlyDomainControllerAccount.md | 2 +- docset/winserver2012-ps/addsdeployment/Install-ADDSDomain.md | 2 +- .../addsdeployment/Install-ADDSDomainController.md | 2 +- docset/winserver2012-ps/addsdeployment/Install-ADDSForest.md | 2 +- .../addsdeployment/Test-ADDSDomainControllerInstallation.md | 2 +- .../addsdeployment/Test-ADDSDomainControllerUninstallation.md | 2 +- .../addsdeployment/Test-ADDSDomainInstallation.md | 2 +- .../addsdeployment/Test-ADDSForestInstallation.md | 2 +- .../Test-ADDSReadOnlyDomainControllerAccountCreation.md | 2 +- .../addsdeployment/Uninstall-ADDSDomainController.md | 2 +- docset/winserver2012-ps/adfs/Add-ADFSAttributeStore.md | 2 +- docset/winserver2012-ps/adfs/Add-ADFSCertificate.md | 2 +- docset/winserver2012-ps/adfs/Add-ADFSClaimDescription.md | 2 +- docset/winserver2012-ps/adfs/Add-ADFSClaimsProviderTrust.md | 2 +- docset/winserver2012-ps/adfs/Add-ADFSRelyingPartyTrust.md | 2 +- docset/winserver2012-ps/adfs/Add-AdfsFarmNode.md | 2 +- docset/winserver2012-ps/adfs/Add-AdfsProxy.md | 2 +- docset/winserver2012-ps/adfs/Disable-ADFSClaimsProviderTrust.md | 2 +- docset/winserver2012-ps/adfs/Disable-ADFSEndpoint.md | 2 +- docset/winserver2012-ps/adfs/Disable-ADFSRelyingPartyTrust.md | 2 +- docset/winserver2012-ps/adfs/Enable-ADFSClaimsProviderTrust.md | 2 +- docset/winserver2012-ps/adfs/Enable-ADFSEndpoint.md | 2 +- docset/winserver2012-ps/adfs/Enable-ADFSRelyingPartyTrust.md | 2 +- docset/winserver2012-ps/adfs/Export-AdfsDeploymentSQLScript.md | 2 +- docset/winserver2012-ps/adfs/Get-ADFSAttributeStore.md | 2 +- docset/winserver2012-ps/adfs/Get-ADFSCertificate.md | 2 +- docset/winserver2012-ps/adfs/Get-ADFSClaimDescription.md | 2 +- docset/winserver2012-ps/adfs/Get-ADFSClaimsProviderTrust.md | 2 +- docset/winserver2012-ps/adfs/Get-ADFSConfiguration.md | 2 +- docset/winserver2012-ps/adfs/Get-ADFSEndpoint.md | 2 +- docset/winserver2012-ps/adfs/Get-ADFSProxyConfiguration.md | 2 +- docset/winserver2012-ps/adfs/Get-ADFSRelyingPartyTrust.md | 2 +- docset/winserver2012-ps/adfs/Get-ADFSSyncConfiguration.md | 2 +- docset/winserver2012-ps/adfs/Install-AdfsFarm.md | 2 +- docset/winserver2012-ps/adfs/Install-AdfsStandalone.md | 2 +- docset/winserver2012-ps/adfs/New-ADFSClaimRuleSet.md | 2 +- docset/winserver2012-ps/adfs/New-ADFSContactPerson.md | 2 +- docset/winserver2012-ps/adfs/New-ADFSOrganization.md | 2 +- docset/winserver2012-ps/adfs/New-ADFSSamlEndpoint.md | 2 +- docset/winserver2012-ps/adfs/Remove-ADFSAttributeStore.md | 2 +- docset/winserver2012-ps/adfs/Remove-ADFSCertificate.md | 2 +- docset/winserver2012-ps/adfs/Remove-ADFSClaimDescription.md | 2 +- docset/winserver2012-ps/adfs/Remove-ADFSClaimsProviderTrust.md | 2 +- docset/winserver2012-ps/adfs/Remove-ADFSRelyingPartyTrust.md | 2 +- docset/winserver2012-ps/adfs/Revoke-ADFSProxyTrust.md | 2 +- docset/winserver2012-ps/adfs/Set-ADFSAttributeStore.md | 2 +- docset/winserver2012-ps/adfs/Set-ADFSCertificate.md | 2 +- docset/winserver2012-ps/adfs/Set-ADFSClaimDescription.md | 2 +- docset/winserver2012-ps/adfs/Set-ADFSClaimsProviderTrust.md | 2 +- docset/winserver2012-ps/adfs/Set-ADFSConfiguration.md | 2 +- docset/winserver2012-ps/adfs/Set-ADFSEndpoint.md | 2 +- docset/winserver2012-ps/adfs/Set-ADFSProxyConfiguration.md | 2 +- docset/winserver2012-ps/adfs/Set-ADFSRelyingPartyTrust.md | 2 +- docset/winserver2012-ps/adfs/Set-ADFSSyncConfiguration.md | 2 +- docset/winserver2012-ps/adfs/Update-ADFSCertificate.md | 2 +- docset/winserver2012-ps/adfs/Update-ADFSClaimsProviderTrust.md | 2 +- docset/winserver2012-ps/adfs/Update-ADFSRelyingPartyTrust.md | 2 +- docset/winserver2012-ps/adrms/Install-ADRMS.md | 2 +- docset/winserver2012-ps/adrms/Uninstall-ADRMS.md | 2 +- docset/winserver2012-ps/adrms/Update-ADRMS.md | 2 +- .../adrmsadmin/Export-RmsReportDefinitionLanguage.md | 2 +- docset/winserver2012-ps/adrmsadmin/Export-RmsTPD.md | 2 +- docset/winserver2012-ps/adrmsadmin/Export-RmsTUD.md | 2 +- docset/winserver2012-ps/adrmsadmin/Get-RmsCertChain.md | 2 +- docset/winserver2012-ps/adrmsadmin/Get-RmsCertInfo.md | 2 +- docset/winserver2012-ps/adrmsadmin/Get-RmsChildCert.md | 2 +- docset/winserver2012-ps/adrmsadmin/Get-RmsEncryptedIL.md | 2 +- docset/winserver2012-ps/adrmsadmin/Get-RmsRequestInfo.md | 2 +- docset/winserver2012-ps/adrmsadmin/Get-RmsSvcAccount.md | 2 +- docset/winserver2012-ps/adrmsadmin/Get-RmsSystemHealthReport.md | 2 +- docset/winserver2012-ps/adrmsadmin/Get-RmsUserRequestReport.md | 2 +- docset/winserver2012-ps/adrmsadmin/Import-RmsTPD.md | 2 +- docset/winserver2012-ps/adrmsadmin/Import-RmsTUD.md | 2 +- docset/winserver2012-ps/adrmsadmin/Initialize-RmsCryptoMode2.md | 2 +- docset/winserver2012-ps/adrmsadmin/Install-RmsMfgEnrollment.md | 2 +- docset/winserver2012-ps/adrmsadmin/Install-RmsMfgSupport.md | 2 +- docset/winserver2012-ps/adrmsadmin/Set-RmsSvcAccount.md | 2 +- .../winserver2012-ps/adrmsadmin/Uninstall-RmsMfgEnrollment.md | 2 +- docset/winserver2012-ps/adrmsadmin/Uninstall-RmsMfgSupport.md | 2 +- docset/winserver2012-ps/adrmsadmin/Update-RmsCluster.md | 2 +- docset/winserver2012-ps/adrmsadmin/Update-RmsMfgEnrollment.md | 2 +- .../winserver2012-ps/applocker/Get-AppLockerFileInformation.md | 2 +- docset/winserver2012-ps/applocker/Get-AppLockerPolicy.md | 2 +- docset/winserver2012-ps/applocker/New-AppLockerPolicy.md | 2 +- docset/winserver2012-ps/applocker/Set-AppLockerPolicy.md | 2 +- docset/winserver2012-ps/applocker/Test-AppLockerPolicy.md | 2 +- docset/winserver2012-ps/appx/Add-AppxPackage.md | 2 +- docset/winserver2012-ps/appx/Get-AppxLastError.md | 2 +- docset/winserver2012-ps/appx/Get-AppxLog.md | 2 +- docset/winserver2012-ps/appx/Get-AppxPackage.md | 2 +- docset/winserver2012-ps/appx/Get-AppxPackageManifest.md | 2 +- docset/winserver2012-ps/appx/Remove-AppxPackage.md | 2 +- docset/winserver2012-ps/bestpractices/Get-BpaModel.md | 2 +- docset/winserver2012-ps/bestpractices/Get-BpaResult.md | 2 +- docset/winserver2012-ps/bestpractices/Invoke-BpaModel.md | 2 +- docset/winserver2012-ps/bestpractices/Set-BpaResult.md | 2 +- docset/winserver2012-ps/bitlocker/Add-BitLockerKeyProtector.md | 2 +- .../winserver2012-ps/bitlocker/Backup-BitLockerKeyProtector.md | 2 +- docset/winserver2012-ps/bitlocker/Clear-BitLockerAutoUnlock.md | 2 +- docset/winserver2012-ps/bitlocker/Disable-BitLocker.md | 2 +- .../winserver2012-ps/bitlocker/Disable-BitLockerAutoUnlock.md | 2 +- docset/winserver2012-ps/bitlocker/Enable-BitLocker.md | 2 +- docset/winserver2012-ps/bitlocker/Enable-BitLockerAutoUnlock.md | 2 +- docset/winserver2012-ps/bitlocker/Get-BitLockerVolume.md | 2 +- docset/winserver2012-ps/bitlocker/Lock-BitLocker.md | 2 +- .../winserver2012-ps/bitlocker/Remove-BitLockerKeyProtector.md | 2 +- docset/winserver2012-ps/bitlocker/Resume-BitLocker.md | 2 +- docset/winserver2012-ps/bitlocker/Suspend-BitLocker.md | 2 +- docset/winserver2012-ps/bitlocker/Unlock-BitLocker.md | 2 +- docset/winserver2012-ps/branchcache/Add-BCDataCacheExtension.md | 2 +- docset/winserver2012-ps/branchcache/Clear-BCCache.md | 2 +- docset/winserver2012-ps/branchcache/Disable-BC.md | 2 +- docset/winserver2012-ps/branchcache/Disable-BCDowngrading.md | 2 +- docset/winserver2012-ps/branchcache/Disable-BCServeOnBattery.md | 2 +- docset/winserver2012-ps/branchcache/Enable-BCDistributed.md | 2 +- docset/winserver2012-ps/branchcache/Enable-BCDowngrading.md | 2 +- docset/winserver2012-ps/branchcache/Enable-BCHostedClient.md | 2 +- docset/winserver2012-ps/branchcache/Enable-BCHostedServer.md | 2 +- docset/winserver2012-ps/branchcache/Enable-BCLocal.md | 2 +- docset/winserver2012-ps/branchcache/Enable-BCServeOnBattery.md | 2 +- docset/winserver2012-ps/branchcache/Export-BCCachePackage.md | 2 +- docset/winserver2012-ps/branchcache/Export-BCSecretKey.md | 2 +- .../winserver2012-ps/branchcache/Get-BCClientConfiguration.md | 2 +- .../branchcache/Get-BCContentServerConfiguration.md | 2 +- docset/winserver2012-ps/branchcache/Get-BCDataCache.md | 2 +- docset/winserver2012-ps/branchcache/Get-BCDataCacheExtension.md | 2 +- docset/winserver2012-ps/branchcache/Get-BCHashCache.md | 2 +- .../branchcache/Get-BCHostedCacheServerConfiguration.md | 2 +- .../winserver2012-ps/branchcache/Get-BCNetworkConfiguration.md | 2 +- docset/winserver2012-ps/branchcache/Get-BCStatus.md | 2 +- docset/winserver2012-ps/branchcache/Import-BCCachePackage.md | 2 +- docset/winserver2012-ps/branchcache/Import-BCSecretKey.md | 2 +- docset/winserver2012-ps/branchcache/Publish-BCFileContent.md | 2 +- docset/winserver2012-ps/branchcache/Publish-BCWebContent.md | 2 +- .../winserver2012-ps/branchcache/Remove-BCDataCacheExtension.md | 2 +- docset/winserver2012-ps/branchcache/Reset-BC.md | 2 +- docset/winserver2012-ps/branchcache/Set-BCAuthentication.md | 2 +- docset/winserver2012-ps/branchcache/Set-BCCache.md | 2 +- .../winserver2012-ps/branchcache/Set-BCDataCacheEntryMaxAge.md | 2 +- docset/winserver2012-ps/branchcache/Set-BCMinSMBLatency.md | 2 +- docset/winserver2012-ps/branchcache/Set-BCSecretKey.md | 2 +- .../winserver2012-ps/clusterawareupdating/Add-CauClusterRole.md | 2 +- .../clusterawareupdating/Disable-CauClusterRole.md | 2 +- .../clusterawareupdating/Enable-CauClusterRole.md | 2 +- .../winserver2012-ps/clusterawareupdating/Export-CauReport.md | 2 +- .../winserver2012-ps/clusterawareupdating/Get-CauClusterRole.md | 2 +- docset/winserver2012-ps/clusterawareupdating/Get-CauPlugin.md | 2 +- docset/winserver2012-ps/clusterawareupdating/Get-CauReport.md | 2 +- docset/winserver2012-ps/clusterawareupdating/Get-CauRun.md | 2 +- docset/winserver2012-ps/clusterawareupdating/Invoke-CauRun.md | 2 +- docset/winserver2012-ps/clusterawareupdating/Invoke-CauScan.md | 2 +- .../winserver2012-ps/clusterawareupdating/Register-CauPlugin.md | 2 +- .../clusterawareupdating/Remove-CauClusterRole.md | 2 +- .../winserver2012-ps/clusterawareupdating/Save-CauDebugTrace.md | 2 +- .../winserver2012-ps/clusterawareupdating/Set-CauClusterRole.md | 2 +- docset/winserver2012-ps/clusterawareupdating/Stop-CauRun.md | 2 +- docset/winserver2012-ps/clusterawareupdating/Test-CauSetup.md | 2 +- .../clusterawareupdating/Unregister-CauPlugin.md | 2 +- docset/winserver2012-ps/dcbqos/Disable-NetQosFlowControl.md | 2 +- docset/winserver2012-ps/dcbqos/Enable-NetQosFlowControl.md | 2 +- docset/winserver2012-ps/dcbqos/Get-NetQosDcbxSetting.md | 2 +- docset/winserver2012-ps/dcbqos/Get-NetQosFlowControl.md | 2 +- docset/winserver2012-ps/dcbqos/Get-NetQosTrafficClass.md | 2 +- docset/winserver2012-ps/dcbqos/New-NetQosTrafficClass.md | 2 +- docset/winserver2012-ps/dcbqos/Remove-NetQosTrafficClass.md | 2 +- docset/winserver2012-ps/dcbqos/Set-NetQosDcbxSetting.md | 2 +- docset/winserver2012-ps/dcbqos/Set-NetQosFlowControl.md | 2 +- docset/winserver2012-ps/dcbqos/Set-NetQosTrafficClass.md | 2 +- docset/winserver2012-ps/deduplication/Disable-DedupVolume.md | 2 +- docset/winserver2012-ps/deduplication/Enable-DedupVolume.md | 2 +- docset/winserver2012-ps/deduplication/Get-DedupJob.md | 2 +- docset/winserver2012-ps/deduplication/Get-DedupMetadata.md | 2 +- docset/winserver2012-ps/deduplication/Get-DedupSchedule.md | 2 +- docset/winserver2012-ps/deduplication/Get-DedupStatus.md | 2 +- docset/winserver2012-ps/deduplication/Get-DedupVolume.md | 2 +- .../winserver2012-ps/deduplication/Measure-DedupFileMetadata.md | 2 +- docset/winserver2012-ps/deduplication/New-DedupSchedule.md | 2 +- docset/winserver2012-ps/deduplication/Remove-DedupSchedule.md | 2 +- docset/winserver2012-ps/deduplication/Set-DedupSchedule.md | 2 +- docset/winserver2012-ps/deduplication/Set-DedupVolume.md | 2 +- docset/winserver2012-ps/deduplication/Start-DedupJob.md | 2 +- docset/winserver2012-ps/deduplication/Stop-DedupJob.md | 2 +- docset/winserver2012-ps/deduplication/Update-DedupStatus.md | 2 +- docset/winserver2012-ps/dfsn/Get-DfsnAccess.md | 2 +- docset/winserver2012-ps/dfsn/Get-DfsnFolder.md | 2 +- docset/winserver2012-ps/dfsn/Get-DfsnFolderTarget.md | 2 +- docset/winserver2012-ps/dfsn/Get-DfsnRoot.md | 2 +- docset/winserver2012-ps/dfsn/Get-DfsnRootTarget.md | 2 +- docset/winserver2012-ps/dfsn/Get-DfsnServerConfiguration.md | 2 +- docset/winserver2012-ps/dfsn/Grant-DfsnAccess.md | 2 +- docset/winserver2012-ps/dfsn/Move-DfsnFolder.md | 2 +- docset/winserver2012-ps/dfsn/New-DfsnFolder.md | 2 +- docset/winserver2012-ps/dfsn/New-DfsnFolderTarget.md | 2 +- docset/winserver2012-ps/dfsn/New-DfsnRoot.md | 2 +- docset/winserver2012-ps/dfsn/New-DfsnRootTarget.md | 2 +- docset/winserver2012-ps/dfsn/Remove-DfsnAccess.md | 2 +- docset/winserver2012-ps/dfsn/Remove-DfsnFolder.md | 2 +- docset/winserver2012-ps/dfsn/Remove-DfsnFolderTarget.md | 2 +- docset/winserver2012-ps/dfsn/Remove-DfsnRoot.md | 2 +- docset/winserver2012-ps/dfsn/Remove-DfsnRootTarget.md | 2 +- docset/winserver2012-ps/dfsn/Revoke-DfsnAccess.md | 2 +- docset/winserver2012-ps/dfsn/Set-DfsnFolder.md | 2 +- docset/winserver2012-ps/dfsn/Set-DfsnFolderTarget.md | 2 +- docset/winserver2012-ps/dfsn/Set-DfsnRoot.md | 2 +- docset/winserver2012-ps/dfsn/Set-DfsnRootTarget.md | 2 +- docset/winserver2012-ps/dfsn/Set-DfsnServerConfiguration.md | 2 +- docset/winserver2012-ps/dhcpserver/Add-DhcpServerInDC.md | 2 +- docset/winserver2012-ps/dhcpserver/Add-DhcpServerv4Class.md | 2 +- .../dhcpserver/Add-DhcpServerv4ExclusionRange.md | 2 +- docset/winserver2012-ps/dhcpserver/Add-DhcpServerv4Failover.md | 2 +- .../dhcpserver/Add-DhcpServerv4FailoverScope.md | 2 +- docset/winserver2012-ps/dhcpserver/Add-DhcpServerv4Filter.md | 2 +- docset/winserver2012-ps/dhcpserver/Add-DhcpServerv4Lease.md | 2 +- .../dhcpserver/Add-DhcpServerv4OptionDefinition.md | 2 +- docset/winserver2012-ps/dhcpserver/Add-DhcpServerv4Policy.md | 2 +- .../dhcpserver/Add-DhcpServerv4PolicyIPRange.md | 2 +- .../winserver2012-ps/dhcpserver/Add-DhcpServerv4Reservation.md | 2 +- docset/winserver2012-ps/dhcpserver/Add-DhcpServerv4Scope.md | 2 +- .../winserver2012-ps/dhcpserver/Add-DhcpServerv4Superscope.md | 2 +- docset/winserver2012-ps/dhcpserver/Add-DhcpServerv6Class.md | 2 +- .../dhcpserver/Add-DhcpServerv6ExclusionRange.md | 2 +- docset/winserver2012-ps/dhcpserver/Add-DhcpServerv6Lease.md | 2 +- .../dhcpserver/Add-DhcpServerv6OptionDefinition.md | 2 +- .../winserver2012-ps/dhcpserver/Add-DhcpServerv6Reservation.md | 2 +- docset/winserver2012-ps/dhcpserver/Add-DhcpServerv6Scope.md | 2 +- docset/winserver2012-ps/dhcpserver/Backup-DhcpServer.md | 2 +- docset/winserver2012-ps/dhcpserver/Export-DhcpServer.md | 2 +- docset/winserver2012-ps/dhcpserver/Get-DhcpServerAuditLog.md | 2 +- docset/winserver2012-ps/dhcpserver/Get-DhcpServerDatabase.md | 2 +- docset/winserver2012-ps/dhcpserver/Get-DhcpServerInDC.md | 2 +- docset/winserver2012-ps/dhcpserver/Get-DhcpServerSetting.md | 2 +- docset/winserver2012-ps/dhcpserver/Get-DhcpServerVersion.md | 2 +- docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4Binding.md | 2 +- docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4Class.md | 2 +- .../winserver2012-ps/dhcpserver/Get-DhcpServerv4DnsSetting.md | 2 +- .../dhcpserver/Get-DhcpServerv4ExclusionRange.md | 2 +- docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4Failover.md | 2 +- docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4Filter.md | 2 +- .../winserver2012-ps/dhcpserver/Get-DhcpServerv4FilterList.md | 2 +- .../dhcpserver/Get-DhcpServerv4FreeIPAddress.md | 2 +- docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4Lease.md | 2 +- .../dhcpserver/Get-DhcpServerv4OptionDefinition.md | 2 +- .../winserver2012-ps/dhcpserver/Get-DhcpServerv4OptionValue.md | 2 +- docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4Policy.md | 2 +- .../dhcpserver/Get-DhcpServerv4PolicyIPRange.md | 2 +- .../winserver2012-ps/dhcpserver/Get-DhcpServerv4Reservation.md | 2 +- docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4Scope.md | 2 +- .../dhcpserver/Get-DhcpServerv4ScopeStatistics.md | 2 +- .../winserver2012-ps/dhcpserver/Get-DhcpServerv4Statistics.md | 2 +- .../winserver2012-ps/dhcpserver/Get-DhcpServerv4Superscope.md | 2 +- docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6Binding.md | 2 +- docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6Class.md | 2 +- .../winserver2012-ps/dhcpserver/Get-DhcpServerv6DnsSetting.md | 2 +- .../dhcpserver/Get-DhcpServerv6ExclusionRange.md | 2 +- .../dhcpserver/Get-DhcpServerv6FreeIPAddress.md | 2 +- docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6Lease.md | 2 +- .../dhcpserver/Get-DhcpServerv6OptionDefinition.md | 2 +- .../winserver2012-ps/dhcpserver/Get-DhcpServerv6OptionValue.md | 2 +- .../winserver2012-ps/dhcpserver/Get-DhcpServerv6Reservation.md | 2 +- docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6Scope.md | 2 +- .../dhcpserver/Get-DhcpServerv6ScopeStatistics.md | 2 +- .../dhcpserver/Get-DhcpServerv6StatelessStatistics.md | 2 +- .../dhcpserver/Get-DhcpServerv6StatelessStore.md | 2 +- .../winserver2012-ps/dhcpserver/Get-DhcpServerv6Statistics.md | 2 +- docset/winserver2012-ps/dhcpserver/Import-DhcpServer.md | 2 +- .../dhcpserver/Invoke-DhcpServerv4FailoverReplication.md | 2 +- docset/winserver2012-ps/dhcpserver/Remove-DhcpServerInDC.md | 2 +- docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4Class.md | 2 +- .../dhcpserver/Remove-DhcpServerv4ExclusionRange.md | 2 +- .../winserver2012-ps/dhcpserver/Remove-DhcpServerv4Failover.md | 2 +- .../dhcpserver/Remove-DhcpServerv4FailoverScope.md | 2 +- docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4Filter.md | 2 +- docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4Lease.md | 2 +- .../dhcpserver/Remove-DhcpServerv4OptionDefinition.md | 2 +- .../dhcpserver/Remove-DhcpServerv4OptionValue.md | 2 +- docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4Policy.md | 2 +- .../dhcpserver/Remove-DhcpServerv4PolicyIPRange.md | 2 +- .../dhcpserver/Remove-DhcpServerv4Reservation.md | 2 +- docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4Scope.md | 2 +- .../dhcpserver/Remove-DhcpServerv4Superscope.md | 2 +- docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv6Class.md | 2 +- .../dhcpserver/Remove-DhcpServerv6ExclusionRange.md | 2 +- docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv6Lease.md | 2 +- .../dhcpserver/Remove-DhcpServerv6OptionDefinition.md | 2 +- .../dhcpserver/Remove-DhcpServerv6OptionValue.md | 2 +- .../dhcpserver/Remove-DhcpServerv6Reservation.md | 2 +- docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv6Scope.md | 2 +- docset/winserver2012-ps/dhcpserver/Restore-DhcpServer.md | 2 +- docset/winserver2012-ps/dhcpserver/Set-DhcpServerAuditLog.md | 2 +- docset/winserver2012-ps/dhcpserver/Set-DhcpServerDatabase.md | 2 +- docset/winserver2012-ps/dhcpserver/Set-DhcpServerSetting.md | 2 +- docset/winserver2012-ps/dhcpserver/Set-DhcpServerv4Binding.md | 2 +- docset/winserver2012-ps/dhcpserver/Set-DhcpServerv4Class.md | 2 +- .../winserver2012-ps/dhcpserver/Set-DhcpServerv4DnsSetting.md | 2 +- docset/winserver2012-ps/dhcpserver/Set-DhcpServerv4Failover.md | 2 +- .../winserver2012-ps/dhcpserver/Set-DhcpServerv4FilterList.md | 2 +- .../dhcpserver/Set-DhcpServerv4OptionDefinition.md | 2 +- .../winserver2012-ps/dhcpserver/Set-DhcpServerv4OptionValue.md | 2 +- docset/winserver2012-ps/dhcpserver/Set-DhcpServerv4Policy.md | 2 +- .../winserver2012-ps/dhcpserver/Set-DhcpServerv4Reservation.md | 2 +- docset/winserver2012-ps/dhcpserver/Set-DhcpServerv4Scope.md | 2 +- docset/winserver2012-ps/dhcpserver/Set-DhcpServerv6Binding.md | 2 +- docset/winserver2012-ps/dhcpserver/Set-DhcpServerv6Class.md | 2 +- .../winserver2012-ps/dhcpserver/Set-DhcpServerv6DnsSetting.md | 2 +- .../dhcpserver/Set-DhcpServerv6OptionDefinition.md | 2 +- .../winserver2012-ps/dhcpserver/Set-DhcpServerv6OptionValue.md | 2 +- .../winserver2012-ps/dhcpserver/Set-DhcpServerv6Reservation.md | 2 +- docset/winserver2012-ps/dhcpserver/Set-DhcpServerv6Scope.md | 2 +- .../dhcpserver/Set-DhcpServerv6StatelessStore.md | 2 +- .../Disable-DAManualEntryPointSelection.md | 2 +- .../Enable-DAManualEntryPointSelection.md | 2 +- .../Get-DAClientExperienceConfiguration.md | 2 +- .../directaccessclientcomponents/Get-DAEntryPointTableItem.md | 2 +- .../directaccessclientcomponents/New-DAEntryPointTableItem.md | 2 +- .../Remove-DAEntryPointTableItem.md | 2 +- .../Rename-DAEntryPointTableItem.md | 2 +- .../Reset-DAClientExperienceConfiguration.md | 2 +- .../directaccessclientcomponents/Reset-DAEntryPointTableItem.md | 2 +- .../Set-DAClientExperienceConfiguration.md | 2 +- .../directaccessclientcomponents/Set-DAEntryPointTableItem.md | 2 +- docset/winserver2012-ps/dism/Add-AppxProvisionedPackage.md | 2 +- docset/winserver2012-ps/dism/Add-WindowsDriver.md | 2 +- docset/winserver2012-ps/dism/Add-WindowsPackage.md | 2 +- docset/winserver2012-ps/dism/Clear-WindowsCorruptMountPoint.md | 2 +- docset/winserver2012-ps/dism/Disable-WindowsOptionalFeature.md | 2 +- docset/winserver2012-ps/dism/Dismount-WindowsImage.md | 2 +- docset/winserver2012-ps/dism/Enable-WindowsOptionalFeature.md | 2 +- docset/winserver2012-ps/dism/Get-AppxProvisionedPackage.md | 2 +- docset/winserver2012-ps/dism/Get-WindowsDriver.md | 2 +- docset/winserver2012-ps/dism/Get-WindowsEdition.md | 2 +- docset/winserver2012-ps/dism/Get-WindowsImage.md | 2 +- docset/winserver2012-ps/dism/Get-WindowsOptionalFeature.md | 2 +- docset/winserver2012-ps/dism/Get-WindowsPackage.md | 2 +- docset/winserver2012-ps/dism/Mount-WindowsImage.md | 2 +- docset/winserver2012-ps/dism/Remove-AppxProvisionedPackage.md | 2 +- docset/winserver2012-ps/dism/Remove-WindowsDriver.md | 2 +- docset/winserver2012-ps/dism/Remove-WindowsPackage.md | 2 +- docset/winserver2012-ps/dism/Repair-WindowsImage.md | 2 +- docset/winserver2012-ps/dism/Save-WindowsImage.md | 2 +- docset/winserver2012-ps/dism/Set-WindowsEdition.md | 2 +- docset/winserver2012-ps/dism/Set-WindowsProductKey.md | 2 +- docset/winserver2012-ps/dism/Use-WindowsUnattend.md | 2 +- docset/winserver2012-ps/dnsclient/Add-DnsClientNrptRule.md | 2 +- docset/winserver2012-ps/dnsclient/Clear-DnsClientCache.md | 2 +- docset/winserver2012-ps/dnsclient/Get-DnsClient.md | 2 +- docset/winserver2012-ps/dnsclient/Get-DnsClientCache.md | 2 +- docset/winserver2012-ps/dnsclient/Get-DnsClientGlobalSetting.md | 2 +- docset/winserver2012-ps/dnsclient/Get-DnsClientNrptGlobal.md | 2 +- docset/winserver2012-ps/dnsclient/Get-DnsClientNrptPolicy.md | 2 +- docset/winserver2012-ps/dnsclient/Get-DnsClientNrptRule.md | 2 +- docset/winserver2012-ps/dnsclient/Get-DnsClientServerAddress.md | 2 +- docset/winserver2012-ps/dnsclient/Register-DnsClient.md | 2 +- docset/winserver2012-ps/dnsclient/Remove-DnsClientNrptRule.md | 2 +- docset/winserver2012-ps/dnsclient/Resolve-DnsName.md | 2 +- docset/winserver2012-ps/dnsclient/Set-DnsClient.md | 2 +- docset/winserver2012-ps/dnsclient/Set-DnsClientGlobalSetting.md | 2 +- docset/winserver2012-ps/dnsclient/Set-DnsClientNrptGlobal.md | 2 +- docset/winserver2012-ps/dnsclient/Set-DnsClientNrptRule.md | 2 +- docset/winserver2012-ps/dnsclient/Set-DnsClientServerAddress.md | 2 +- .../dnsserver/Add-DnsServerConditionalForwarderZone.md | 2 +- .../dnsserver/Add-DnsServerDirectoryPartition.md | 2 +- docset/winserver2012-ps/dnsserver/Add-DnsServerForwarder.md | 2 +- docset/winserver2012-ps/dnsserver/Add-DnsServerPrimaryZone.md | 2 +- .../winserver2012-ps/dnsserver/Add-DnsServerResourceRecord.md | 2 +- .../winserver2012-ps/dnsserver/Add-DnsServerResourceRecordA.md | 2 +- .../dnsserver/Add-DnsServerResourceRecordAAAA.md | 2 +- .../dnsserver/Add-DnsServerResourceRecordCName.md | 2 +- .../winserver2012-ps/dnsserver/Add-DnsServerResourceRecordDS.md | 2 +- .../dnsserver/Add-DnsServerResourceRecordDnsKey.md | 2 +- .../winserver2012-ps/dnsserver/Add-DnsServerResourceRecordMX.md | 2 +- .../dnsserver/Add-DnsServerResourceRecordPtr.md | 2 +- docset/winserver2012-ps/dnsserver/Add-DnsServerRootHint.md | 2 +- docset/winserver2012-ps/dnsserver/Add-DnsServerSecondaryZone.md | 2 +- docset/winserver2012-ps/dnsserver/Add-DnsServerSigningKey.md | 2 +- docset/winserver2012-ps/dnsserver/Add-DnsServerStubZone.md | 2 +- docset/winserver2012-ps/dnsserver/Add-DnsServerTrustAnchor.md | 2 +- .../winserver2012-ps/dnsserver/Add-DnsServerZoneDelegation.md | 2 +- docset/winserver2012-ps/dnsserver/Clear-DnsServerCache.md | 2 +- docset/winserver2012-ps/dnsserver/Clear-DnsServerStatistics.md | 2 +- .../dnsserver/ConvertTo-DnsServerPrimaryZone.md | 2 +- .../dnsserver/ConvertTo-DnsServerSecondaryZone.md | 2 +- .../dnsserver/Disable-DnsServerSigningKeyRollover.md | 2 +- .../dnsserver/Enable-DnsServerSigningKeyRollover.md | 2 +- .../dnsserver/Export-DnsServerDnsSecPublicKey.md | 2 +- docset/winserver2012-ps/dnsserver/Export-DnsServerZone.md | 2 +- docset/winserver2012-ps/dnsserver/Get-DnsServer.md | 2 +- docset/winserver2012-ps/dnsserver/Get-DnsServerCache.md | 2 +- docset/winserver2012-ps/dnsserver/Get-DnsServerDiagnostics.md | 2 +- .../dnsserver/Get-DnsServerDirectoryPartition.md | 2 +- .../dnsserver/Get-DnsServerDnsSecZoneSetting.md | 2 +- docset/winserver2012-ps/dnsserver/Get-DnsServerDsSetting.md | 2 +- docset/winserver2012-ps/dnsserver/Get-DnsServerEDns.md | 2 +- docset/winserver2012-ps/dnsserver/Get-DnsServerForwarder.md | 2 +- .../winserver2012-ps/dnsserver/Get-DnsServerGlobalNameZone.md | 2 +- .../dnsserver/Get-DnsServerGlobalQueryBlockList.md | 2 +- docset/winserver2012-ps/dnsserver/Get-DnsServerRecursion.md | 2 +- .../winserver2012-ps/dnsserver/Get-DnsServerResourceRecord.md | 2 +- docset/winserver2012-ps/dnsserver/Get-DnsServerRootHint.md | 2 +- docset/winserver2012-ps/dnsserver/Get-DnsServerScavenging.md | 2 +- docset/winserver2012-ps/dnsserver/Get-DnsServerSetting.md | 2 +- docset/winserver2012-ps/dnsserver/Get-DnsServerSigningKey.md | 2 +- docset/winserver2012-ps/dnsserver/Get-DnsServerStatistics.md | 2 +- docset/winserver2012-ps/dnsserver/Get-DnsServerTrustAnchor.md | 2 +- docset/winserver2012-ps/dnsserver/Get-DnsServerTrustPoint.md | 2 +- docset/winserver2012-ps/dnsserver/Get-DnsServerZone.md | 2 +- docset/winserver2012-ps/dnsserver/Get-DnsServerZoneAging.md | 2 +- .../winserver2012-ps/dnsserver/Get-DnsServerZoneDelegation.md | 2 +- .../dnsserver/Import-DnsServerResourceRecordDS.md | 2 +- docset/winserver2012-ps/dnsserver/Import-DnsServerRootHint.md | 2 +- .../winserver2012-ps/dnsserver/Import-DnsServerTrustAnchor.md | 2 +- .../dnsserver/Invoke-DnsServerSigningKeyRollover.md | 2 +- docset/winserver2012-ps/dnsserver/Invoke-DnsServerZoneSign.md | 2 +- docset/winserver2012-ps/dnsserver/Invoke-DnsServerZoneUnsign.md | 2 +- .../dnsserver/Register-DnsServerDirectoryPartition.md | 2 +- .../dnsserver/Remove-DnsServerDirectoryPartition.md | 2 +- docset/winserver2012-ps/dnsserver/Remove-DnsServerForwarder.md | 2 +- .../dnsserver/Remove-DnsServerResourceRecord.md | 2 +- docset/winserver2012-ps/dnsserver/Remove-DnsServerRootHint.md | 2 +- docset/winserver2012-ps/dnsserver/Remove-DnsServerSigningKey.md | 2 +- .../winserver2012-ps/dnsserver/Remove-DnsServerTrustAnchor.md | 2 +- docset/winserver2012-ps/dnsserver/Remove-DnsServerZone.md | 2 +- .../dnsserver/Remove-DnsServerZoneDelegation.md | 2 +- .../dnsserver/Reset-DnsServerZoneKeyMasterRole.md | 2 +- .../winserver2012-ps/dnsserver/Restore-DnsServerPrimaryZone.md | 2 +- .../dnsserver/Restore-DnsServerSecondaryZone.md | 2 +- docset/winserver2012-ps/dnsserver/Resume-DnsServerZone.md | 2 +- docset/winserver2012-ps/dnsserver/Set-DnsServer.md | 2 +- docset/winserver2012-ps/dnsserver/Set-DnsServerCache.md | 2 +- .../dnsserver/Set-DnsServerConditionalForwarderZone.md | 2 +- docset/winserver2012-ps/dnsserver/Set-DnsServerDiagnostics.md | 2 +- .../dnsserver/Set-DnsServerDnsSecZoneSetting.md | 2 +- docset/winserver2012-ps/dnsserver/Set-DnsServerDsSetting.md | 2 +- docset/winserver2012-ps/dnsserver/Set-DnsServerEDns.md | 2 +- docset/winserver2012-ps/dnsserver/Set-DnsServerForwarder.md | 2 +- .../winserver2012-ps/dnsserver/Set-DnsServerGlobalNameZone.md | 2 +- .../dnsserver/Set-DnsServerGlobalQueryBlockList.md | 2 +- docset/winserver2012-ps/dnsserver/Set-DnsServerPrimaryZone.md | 2 +- docset/winserver2012-ps/dnsserver/Set-DnsServerRecursion.md | 2 +- .../winserver2012-ps/dnsserver/Set-DnsServerResourceRecord.md | 2 +- .../dnsserver/Set-DnsServerResourceRecordAging.md | 2 +- docset/winserver2012-ps/dnsserver/Set-DnsServerRootHint.md | 2 +- docset/winserver2012-ps/dnsserver/Set-DnsServerScavenging.md | 2 +- docset/winserver2012-ps/dnsserver/Set-DnsServerSecondaryZone.md | 2 +- docset/winserver2012-ps/dnsserver/Set-DnsServerSetting.md | 2 +- docset/winserver2012-ps/dnsserver/Set-DnsServerSigningKey.md | 2 +- docset/winserver2012-ps/dnsserver/Set-DnsServerStubZone.md | 2 +- docset/winserver2012-ps/dnsserver/Set-DnsServerZoneAging.md | 2 +- .../winserver2012-ps/dnsserver/Set-DnsServerZoneDelegation.md | 2 +- docset/winserver2012-ps/dnsserver/Show-DnsServerCache.md | 2 +- .../dnsserver/Show-DnsServerKeyStorageProvider.md | 2 +- docset/winserver2012-ps/dnsserver/Start-DnsServerScavenging.md | 2 +- .../winserver2012-ps/dnsserver/Start-DnsServerZoneTransfer.md | 2 +- docset/winserver2012-ps/dnsserver/Suspend-DnsServerZone.md | 2 +- docset/winserver2012-ps/dnsserver/Sync-DnsServerZone.md | 2 +- docset/winserver2012-ps/dnsserver/Test-DnsServer.md | 2 +- .../dnsserver/Test-DnsServerDnsSecZoneSetting.md | 2 +- .../dnsserver/Unregister-DnsServerDirectoryPartition.md | 2 +- docset/winserver2012-ps/dnsserver/Update-DnsServerTrustPoint.md | 2 +- .../winserver2012-ps/failoverclusters/Add-ClusterCheckpoint.md | 2 +- docset/winserver2012-ps/failoverclusters/Add-ClusterDisk.md | 2 +- .../failoverclusters/Add-ClusterFileServerRole.md | 2 +- .../failoverclusters/Add-ClusterGenericApplicationRole.md | 2 +- .../failoverclusters/Add-ClusterGenericScriptRole.md | 2 +- .../failoverclusters/Add-ClusterGenericServiceRole.md | 2 +- docset/winserver2012-ps/failoverclusters/Add-ClusterGroup.md | 2 +- docset/winserver2012-ps/failoverclusters/Add-ClusterNode.md | 2 +- .../failoverclusters/Add-ClusterPrintServerRole.md | 2 +- docset/winserver2012-ps/failoverclusters/Add-ClusterResource.md | 2 +- .../failoverclusters/Add-ClusterResourceDependency.md | 2 +- .../failoverclusters/Add-ClusterResourceType.md | 2 +- .../failoverclusters/Add-ClusterScaleOutFileServerRole.md | 2 +- .../winserver2012-ps/failoverclusters/Add-ClusterServerRole.md | 2 +- .../failoverclusters/Add-ClusterSharedVolume.md | 2 +- .../failoverclusters/Add-ClusterVMMonitoredItem.md | 2 +- .../failoverclusters/Add-ClusterVirtualMachineRole.md | 2 +- .../failoverclusters/Add-ClusteriSCSITargetServerRole.md | 2 +- docset/winserver2012-ps/failoverclusters/Block-ClusterAccess.md | 2 +- .../failoverclusters/Clear-ClusterDiskReservation.md | 2 +- docset/winserver2012-ps/failoverclusters/Clear-ClusterNode.md | 2 +- docset/winserver2012-ps/failoverclusters/Get-Cluster.md | 2 +- docset/winserver2012-ps/failoverclusters/Get-ClusterAccess.md | 2 +- .../failoverclusters/Get-ClusterAvailableDisk.md | 2 +- .../winserver2012-ps/failoverclusters/Get-ClusterCheckpoint.md | 2 +- docset/winserver2012-ps/failoverclusters/Get-ClusterGroup.md | 2 +- docset/winserver2012-ps/failoverclusters/Get-ClusterLog.md | 2 +- docset/winserver2012-ps/failoverclusters/Get-ClusterNetwork.md | 2 +- .../failoverclusters/Get-ClusterNetworkInterface.md | 2 +- docset/winserver2012-ps/failoverclusters/Get-ClusterNode.md | 2 +- .../winserver2012-ps/failoverclusters/Get-ClusterOwnerNode.md | 2 +- .../winserver2012-ps/failoverclusters/Get-ClusterParameter.md | 2 +- docset/winserver2012-ps/failoverclusters/Get-ClusterQuorum.md | 2 +- docset/winserver2012-ps/failoverclusters/Get-ClusterResource.md | 2 +- .../failoverclusters/Get-ClusterResourceDependency.md | 2 +- .../failoverclusters/Get-ClusterResourceDependencyReport.md | 2 +- .../failoverclusters/Get-ClusterResourceType.md | 2 +- .../failoverclusters/Get-ClusterSharedVolume.md | 2 +- .../failoverclusters/Get-ClusterVMMonitoredItem.md | 2 +- docset/winserver2012-ps/failoverclusters/Grant-ClusterAccess.md | 2 +- docset/winserver2012-ps/failoverclusters/Move-ClusterGroup.md | 2 +- .../winserver2012-ps/failoverclusters/Move-ClusterResource.md | 2 +- .../failoverclusters/Move-ClusterSharedVolume.md | 2 +- .../failoverclusters/Move-ClusterVirtualMachineRole.md | 2 +- docset/winserver2012-ps/failoverclusters/New-Cluster.md | 2 +- docset/winserver2012-ps/failoverclusters/Remove-Cluster.md | 2 +- .../winserver2012-ps/failoverclusters/Remove-ClusterAccess.md | 2 +- .../failoverclusters/Remove-ClusterCheckpoint.md | 2 +- docset/winserver2012-ps/failoverclusters/Remove-ClusterGroup.md | 2 +- docset/winserver2012-ps/failoverclusters/Remove-ClusterNode.md | 2 +- .../winserver2012-ps/failoverclusters/Remove-ClusterResource.md | 2 +- .../failoverclusters/Remove-ClusterResourceDependency.md | 2 +- .../failoverclusters/Remove-ClusterResourceType.md | 2 +- .../failoverclusters/Remove-ClusterSharedVolume.md | 2 +- .../failoverclusters/Remove-ClusterVMMonitoredItem.md | 2 +- .../failoverclusters/Repair-ClusterSharedVolume.md | 2 +- .../failoverclusters/Reset-ClusterVMMonitoredState.md | 2 +- docset/winserver2012-ps/failoverclusters/Resume-ClusterNode.md | 2 +- .../winserver2012-ps/failoverclusters/Resume-ClusterResource.md | 2 +- docset/winserver2012-ps/failoverclusters/Set-ClusterLog.md | 2 +- .../winserver2012-ps/failoverclusters/Set-ClusterOwnerNode.md | 2 +- .../winserver2012-ps/failoverclusters/Set-ClusterParameter.md | 2 +- docset/winserver2012-ps/failoverclusters/Set-ClusterQuorum.md | 2 +- .../failoverclusters/Set-ClusterResourceDependency.md | 2 +- docset/winserver2012-ps/failoverclusters/Start-Cluster.md | 2 +- docset/winserver2012-ps/failoverclusters/Start-ClusterGroup.md | 2 +- docset/winserver2012-ps/failoverclusters/Start-ClusterNode.md | 2 +- .../winserver2012-ps/failoverclusters/Start-ClusterResource.md | 2 +- docset/winserver2012-ps/failoverclusters/Stop-Cluster.md | 2 +- docset/winserver2012-ps/failoverclusters/Stop-ClusterGroup.md | 2 +- docset/winserver2012-ps/failoverclusters/Stop-ClusterNode.md | 2 +- .../winserver2012-ps/failoverclusters/Stop-ClusterResource.md | 2 +- docset/winserver2012-ps/failoverclusters/Suspend-ClusterNode.md | 2 +- .../failoverclusters/Suspend-ClusterResource.md | 2 +- docset/winserver2012-ps/failoverclusters/Test-Cluster.md | 2 +- .../failoverclusters/Test-ClusterResourceFailure.md | 2 +- .../failoverclusters/Update-ClusterIPResource.md | 2 +- .../failoverclusters/Update-ClusterNetworkNameResource.md | 2 +- .../Update-ClusterVirtualMachineConfiguration.md | 2 +- .../fileserverresourcemanager/Get-FsrmAdrSetting.md | 2 +- .../fileserverresourcemanager/Get-FsrmAutoQuota.md | 2 +- .../fileserverresourcemanager/Get-FsrmClassification.md | 2 +- .../Get-FsrmClassificationPropertyDefinition.md | 2 +- .../fileserverresourcemanager/Get-FsrmClassificationRule.md | 2 +- .../fileserverresourcemanager/Get-FsrmEffectiveNamespace.md | 2 +- .../fileserverresourcemanager/Get-FsrmFileGroup.md | 2 +- .../fileserverresourcemanager/Get-FsrmFileManagementJob.md | 2 +- .../fileserverresourcemanager/Get-FsrmFileScreen.md | 2 +- .../fileserverresourcemanager/Get-FsrmFileScreenException.md | 2 +- .../fileserverresourcemanager/Get-FsrmFileScreenTemplate.md | 2 +- .../winserver2012-ps/fileserverresourcemanager/Get-FsrmMacro.md | 2 +- .../fileserverresourcemanager/Get-FsrmMgmtProperty.md | 2 +- .../winserver2012-ps/fileserverresourcemanager/Get-FsrmQuota.md | 2 +- .../fileserverresourcemanager/Get-FsrmQuotaTemplate.md | 2 +- .../fileserverresourcemanager/Get-FsrmRmsTemplate.md | 2 +- .../fileserverresourcemanager/Get-FsrmSetting.md | 2 +- .../fileserverresourcemanager/Get-FsrmStorageReport.md | 2 +- .../fileserverresourcemanager/New-FsrmAction.md | 2 +- .../fileserverresourcemanager/New-FsrmAutoQuota.md | 2 +- .../New-FsrmClassificationPropertyDefinition.md | 2 +- .../New-FsrmClassificationPropertyValue.md | 2 +- .../fileserverresourcemanager/New-FsrmClassificationRule.md | 2 +- .../fileserverresourcemanager/New-FsrmFMJNotification.md | 2 +- .../fileserverresourcemanager/New-FsrmFileGroup.md | 2 +- .../fileserverresourcemanager/New-FsrmFileManagementJob.md | 2 +- .../fileserverresourcemanager/New-FsrmFileScreen.md | 2 +- .../fileserverresourcemanager/New-FsrmFileScreenException.md | 2 +- .../fileserverresourcemanager/New-FsrmFileScreenTemplate.md | 2 +- .../fileserverresourcemanager/New-FsrmFmjAction.md | 2 +- .../fileserverresourcemanager/New-FsrmFmjCondition.md | 2 +- .../fileserverresourcemanager/New-FsrmFmjNotificationAction.md | 2 +- .../winserver2012-ps/fileserverresourcemanager/New-FsrmQuota.md | 2 +- .../fileserverresourcemanager/New-FsrmQuotaTemplate.md | 2 +- .../fileserverresourcemanager/New-FsrmQuotaThreshold.md | 2 +- .../fileserverresourcemanager/New-FsrmScheduledTask.md | 2 +- .../fileserverresourcemanager/New-FsrmStorageReport.md | 2 +- .../fileserverresourcemanager/Remove-FsrmAutoQuota.md | 2 +- .../Remove-FsrmClassificationPropertyDefinition.md | 2 +- .../fileserverresourcemanager/Remove-FsrmClassificationRule.md | 2 +- .../fileserverresourcemanager/Remove-FsrmFileGroup.md | 2 +- .../fileserverresourcemanager/Remove-FsrmFileManagementJob.md | 2 +- .../fileserverresourcemanager/Remove-FsrmFileScreen.md | 2 +- .../fileserverresourcemanager/Remove-FsrmFileScreenException.md | 2 +- .../fileserverresourcemanager/Remove-FsrmFileScreenTemplate.md | 2 +- .../fileserverresourcemanager/Remove-FsrmMgmtProperty.md | 2 +- .../fileserverresourcemanager/Remove-FsrmQuota.md | 2 +- .../fileserverresourcemanager/Remove-FsrmQuotaTemplate.md | 2 +- .../fileserverresourcemanager/Remove-FsrmStorageReport.md | 2 +- .../fileserverresourcemanager/Reset-FsrmFileScreen.md | 2 +- .../fileserverresourcemanager/Reset-FsrmQuota.md | 2 +- .../fileserverresourcemanager/Send-FsrmTestEmail.md | 2 +- .../fileserverresourcemanager/Set-FsrmAdrSetting.md | 2 +- .../fileserverresourcemanager/Set-FsrmAutoQuota.md | 2 +- .../fileserverresourcemanager/Set-FsrmClassification.md | 2 +- .../Set-FsrmClassificationPropertyDefinition.md | 2 +- .../fileserverresourcemanager/Set-FsrmClassificationRule.md | 2 +- .../fileserverresourcemanager/Set-FsrmFileGroup.md | 2 +- .../fileserverresourcemanager/Set-FsrmFileManagementJob.md | 2 +- .../fileserverresourcemanager/Set-FsrmFileScreen.md | 2 +- .../fileserverresourcemanager/Set-FsrmFileScreenException.md | 2 +- .../fileserverresourcemanager/Set-FsrmFileScreenTemplate.md | 2 +- .../fileserverresourcemanager/Set-FsrmMgmtProperty.md | 2 +- .../winserver2012-ps/fileserverresourcemanager/Set-FsrmQuota.md | 2 +- .../fileserverresourcemanager/Set-FsrmQuotaTemplate.md | 2 +- .../fileserverresourcemanager/Set-FsrmSetting.md | 2 +- .../fileserverresourcemanager/Set-FsrmStorageReport.md | 2 +- .../fileserverresourcemanager/Start-FsrmClassification.md | 2 +- .../fileserverresourcemanager/Start-FsrmFileManagementJob.md | 2 +- .../fileserverresourcemanager/Start-FsrmStorageReport.md | 2 +- .../fileserverresourcemanager/Stop-FsrmClassification.md | 2 +- .../fileserverresourcemanager/Stop-FsrmFileManagementJob.md | 2 +- .../fileserverresourcemanager/Stop-FsrmStorageReport.md | 2 +- .../fileserverresourcemanager/Update-FsrmAutoQuota.md | 2 +- .../Update-FsrmClassificationPropertyDefinition.md | 2 +- .../fileserverresourcemanager/Update-FsrmQuota.md | 2 +- .../fileserverresourcemanager/Wait-FsrmClassification.md | 2 +- .../fileserverresourcemanager/Wait-FsrmFileManagementJob.md | 2 +- .../fileserverresourcemanager/Wait-FsrmStorageReport.md | 2 +- docset/winserver2012-ps/grouppolicy/Backup-GPO.md | 2 +- docset/winserver2012-ps/grouppolicy/Copy-GPO.md | 2 +- docset/winserver2012-ps/grouppolicy/Get-GPInheritance.md | 2 +- docset/winserver2012-ps/grouppolicy/Get-GPO.md | 2 +- docset/winserver2012-ps/grouppolicy/Get-GPOReport.md | 2 +- docset/winserver2012-ps/grouppolicy/Get-GPPermission.md | 2 +- docset/winserver2012-ps/grouppolicy/Get-GPPrefRegistryValue.md | 2 +- docset/winserver2012-ps/grouppolicy/Get-GPRegistryValue.md | 2 +- .../winserver2012-ps/grouppolicy/Get-GPResultantSetOfPolicy.md | 2 +- docset/winserver2012-ps/grouppolicy/Get-GPStarterGPO.md | 2 +- docset/winserver2012-ps/grouppolicy/Import-GPO.md | 2 +- docset/winserver2012-ps/grouppolicy/Invoke-GPUpdate.md | 2 +- docset/winserver2012-ps/grouppolicy/New-GPLink.md | 2 +- docset/winserver2012-ps/grouppolicy/New-GPO.md | 2 +- docset/winserver2012-ps/grouppolicy/New-GPStarterGPO.md | 2 +- docset/winserver2012-ps/grouppolicy/Remove-GPLink.md | 2 +- docset/winserver2012-ps/grouppolicy/Remove-GPO.md | 2 +- .../winserver2012-ps/grouppolicy/Remove-GPPrefRegistryValue.md | 2 +- docset/winserver2012-ps/grouppolicy/Remove-GPRegistryValue.md | 2 +- docset/winserver2012-ps/grouppolicy/Rename-GPO.md | 2 +- docset/winserver2012-ps/grouppolicy/Restore-GPO.md | 2 +- docset/winserver2012-ps/grouppolicy/Set-GPInheritance.md | 2 +- docset/winserver2012-ps/grouppolicy/Set-GPLink.md | 2 +- docset/winserver2012-ps/grouppolicy/Set-GPPermission.md | 2 +- docset/winserver2012-ps/grouppolicy/Set-GPPrefRegistryValue.md | 2 +- docset/winserver2012-ps/grouppolicy/Set-GPRegistryValue.md | 2 +- docset/winserver2012-ps/hyper-v/Add-VMDvdDrive.md | 2 +- docset/winserver2012-ps/hyper-v/Add-VMFibreChannelHba.md | 2 +- docset/winserver2012-ps/hyper-v/Add-VMHardDiskDrive.md | 2 +- docset/winserver2012-ps/hyper-v/Add-VMMigrationNetwork.md | 2 +- docset/winserver2012-ps/hyper-v/Add-VMNetworkAdapter.md | 2 +- docset/winserver2012-ps/hyper-v/Add-VMNetworkAdapterAcl.md | 2 +- docset/winserver2012-ps/hyper-v/Add-VMRemoteFx3dVideoAdapter.md | 2 +- docset/winserver2012-ps/hyper-v/Add-VMScsiController.md | 2 +- docset/winserver2012-ps/hyper-v/Add-VMStoragePath.md | 2 +- docset/winserver2012-ps/hyper-v/Add-VMSwitch.md | 2 +- .../hyper-v/Add-VMSwitchExtensionPortFeature.md | 2 +- .../hyper-v/Add-VMSwitchExtensionSwitchFeature.md | 2 +- docset/winserver2012-ps/hyper-v/Checkpoint-VM.md | 2 +- docset/winserver2012-ps/hyper-v/Compare-VM.md | 2 +- docset/winserver2012-ps/hyper-v/Complete-VMFailover.md | 2 +- docset/winserver2012-ps/hyper-v/Connect-VMNetworkAdapter.md | 2 +- docset/winserver2012-ps/hyper-v/Connect-VMSan.md | 2 +- docset/winserver2012-ps/hyper-v/Convert-VHD.md | 2 +- docset/winserver2012-ps/hyper-v/Disable-VMEventing.md | 2 +- docset/winserver2012-ps/hyper-v/Disable-VMIntegrationService.md | 2 +- docset/winserver2012-ps/hyper-v/Disable-VMMigration.md | 2 +- .../hyper-v/Disable-VMRemoteFXPhysicalVideoAdapter.md | 2 +- docset/winserver2012-ps/hyper-v/Disable-VMResourceMetering.md | 2 +- docset/winserver2012-ps/hyper-v/Disable-VMSwitchExtension.md | 2 +- docset/winserver2012-ps/hyper-v/Disconnect-VMNetworkAdapter.md | 2 +- docset/winserver2012-ps/hyper-v/Disconnect-VMSan.md | 2 +- docset/winserver2012-ps/hyper-v/Dismount-VHD.md | 2 +- docset/winserver2012-ps/hyper-v/Enable-VMEventing.md | 2 +- docset/winserver2012-ps/hyper-v/Enable-VMIntegrationService.md | 2 +- docset/winserver2012-ps/hyper-v/Enable-VMMigration.md | 2 +- .../hyper-v/Enable-VMRemoteFXPhysicalVideoAdapter.md | 2 +- docset/winserver2012-ps/hyper-v/Enable-VMReplication.md | 2 +- docset/winserver2012-ps/hyper-v/Enable-VMResourceMetering.md | 2 +- docset/winserver2012-ps/hyper-v/Enable-VMSwitchExtension.md | 2 +- docset/winserver2012-ps/hyper-v/Export-VM.md | 2 +- docset/winserver2012-ps/hyper-v/Export-VMSnapshot.md | 2 +- docset/winserver2012-ps/hyper-v/Get-VHD.md | 2 +- docset/winserver2012-ps/hyper-v/Get-VM.md | 2 +- docset/winserver2012-ps/hyper-v/Get-VMBios.md | 2 +- docset/winserver2012-ps/hyper-v/Get-VMComPort.md | 2 +- docset/winserver2012-ps/hyper-v/Get-VMConnectAccess.md | 2 +- docset/winserver2012-ps/hyper-v/Get-VMDvdDrive.md | 2 +- docset/winserver2012-ps/hyper-v/Get-VMFibreChannelHba.md | 2 +- docset/winserver2012-ps/hyper-v/Get-VMFloppyDiskDrive.md | 2 +- docset/winserver2012-ps/hyper-v/Get-VMHardDiskDrive.md | 2 +- docset/winserver2012-ps/hyper-v/Get-VMHost.md | 2 +- docset/winserver2012-ps/hyper-v/Get-VMHostNumaNode.md | 2 +- docset/winserver2012-ps/hyper-v/Get-VMHostNumaNodeStatus.md | 2 +- docset/winserver2012-ps/hyper-v/Get-VMIdeController.md | 2 +- docset/winserver2012-ps/hyper-v/Get-VMIntegrationService.md | 2 +- docset/winserver2012-ps/hyper-v/Get-VMMemory.md | 2 +- docset/winserver2012-ps/hyper-v/Get-VMMigrationNetwork.md | 2 +- docset/winserver2012-ps/hyper-v/Get-VMNetworkAdapter.md | 2 +- docset/winserver2012-ps/hyper-v/Get-VMNetworkAdapterAcl.md | 2 +- .../hyper-v/Get-VMNetworkAdapterFailoverConfiguration.md | 2 +- docset/winserver2012-ps/hyper-v/Get-VMNetworkAdapterVlan.md | 2 +- docset/winserver2012-ps/hyper-v/Get-VMProcessor.md | 2 +- .../hyper-v/Get-VMRemoteFXPhysicalVideoAdapter.md | 2 +- docset/winserver2012-ps/hyper-v/Get-VMRemoteFx3dVideoAdapter.md | 2 +- docset/winserver2012-ps/hyper-v/Get-VMReplication.md | 2 +- .../hyper-v/Get-VMReplicationAuthorizationEntry.md | 2 +- docset/winserver2012-ps/hyper-v/Get-VMReplicationServer.md | 2 +- docset/winserver2012-ps/hyper-v/Get-VMResourcePool.md | 2 +- docset/winserver2012-ps/hyper-v/Get-VMSan.md | 2 +- docset/winserver2012-ps/hyper-v/Get-VMScsiController.md | 2 +- docset/winserver2012-ps/hyper-v/Get-VMSnapshot.md | 2 +- docset/winserver2012-ps/hyper-v/Get-VMStoragePath.md | 2 +- docset/winserver2012-ps/hyper-v/Get-VMSwitch.md | 2 +- docset/winserver2012-ps/hyper-v/Get-VMSwitchExtension.md | 2 +- .../winserver2012-ps/hyper-v/Get-VMSwitchExtensionPortData.md | 2 +- .../hyper-v/Get-VMSwitchExtensionPortFeature.md | 2 +- .../winserver2012-ps/hyper-v/Get-VMSwitchExtensionSwitchData.md | 2 +- .../hyper-v/Get-VMSwitchExtensionSwitchFeature.md | 2 +- docset/winserver2012-ps/hyper-v/Get-VMSystemSwitchExtension.md | 2 +- .../hyper-v/Get-VMSystemSwitchExtensionPortFeature.md | 2 +- .../hyper-v/Get-VMSystemSwitchExtensionSwitchFeature.md | 2 +- docset/winserver2012-ps/hyper-v/Grant-VMConnectAccess.md | 2 +- docset/winserver2012-ps/hyper-v/Import-VM.md | 2 +- docset/winserver2012-ps/hyper-v/Import-VMInitialReplication.md | 2 +- docset/winserver2012-ps/hyper-v/Measure-VM.md | 2 +- docset/winserver2012-ps/hyper-v/Measure-VMReplication.md | 2 +- docset/winserver2012-ps/hyper-v/Measure-VMResourcePool.md | 2 +- docset/winserver2012-ps/hyper-v/Merge-VHD.md | 2 +- docset/winserver2012-ps/hyper-v/Mount-VHD.md | 2 +- docset/winserver2012-ps/hyper-v/Move-VM.md | 2 +- docset/winserver2012-ps/hyper-v/Move-VMStorage.md | 2 +- docset/winserver2012-ps/hyper-v/New-VFD.md | 2 +- docset/winserver2012-ps/hyper-v/New-VHD.md | 2 +- docset/winserver2012-ps/hyper-v/New-VM.md | 2 +- .../hyper-v/New-VMReplicationAuthorizationEntry.md | 2 +- docset/winserver2012-ps/hyper-v/New-VMResourcePool.md | 2 +- docset/winserver2012-ps/hyper-v/New-VMSan.md | 2 +- docset/winserver2012-ps/hyper-v/New-VMSwitch.md | 2 +- docset/winserver2012-ps/hyper-v/Optimize-VHD.md | 2 +- docset/winserver2012-ps/hyper-v/Remove-VM.md | 2 +- docset/winserver2012-ps/hyper-v/Remove-VMDvdDrive.md | 2 +- docset/winserver2012-ps/hyper-v/Remove-VMFibreChannelHba.md | 2 +- docset/winserver2012-ps/hyper-v/Remove-VMHardDiskDrive.md | 2 +- docset/winserver2012-ps/hyper-v/Remove-VMMigrationNetwork.md | 2 +- docset/winserver2012-ps/hyper-v/Remove-VMNetworkAdapter.md | 2 +- docset/winserver2012-ps/hyper-v/Remove-VMNetworkAdapterAcl.md | 2 +- .../winserver2012-ps/hyper-v/Remove-VMRemoteFx3dVideoAdapter.md | 2 +- docset/winserver2012-ps/hyper-v/Remove-VMReplication.md | 2 +- .../hyper-v/Remove-VMReplicationAuthorizationEntry.md | 2 +- docset/winserver2012-ps/hyper-v/Remove-VMResourcePool.md | 2 +- docset/winserver2012-ps/hyper-v/Remove-VMSan.md | 2 +- docset/winserver2012-ps/hyper-v/Remove-VMSavedState.md | 2 +- docset/winserver2012-ps/hyper-v/Remove-VMScsiController.md | 2 +- docset/winserver2012-ps/hyper-v/Remove-VMSnapshot.md | 2 +- docset/winserver2012-ps/hyper-v/Remove-VMStoragePath.md | 2 +- docset/winserver2012-ps/hyper-v/Remove-VMSwitch.md | 2 +- .../hyper-v/Remove-VMSwitchExtensionPortFeature.md | 2 +- .../hyper-v/Remove-VMSwitchExtensionSwitchFeature.md | 2 +- docset/winserver2012-ps/hyper-v/Rename-VM.md | 2 +- docset/winserver2012-ps/hyper-v/Rename-VMNetworkAdapter.md | 2 +- docset/winserver2012-ps/hyper-v/Rename-VMResourcePool.md | 2 +- docset/winserver2012-ps/hyper-v/Rename-VMSan.md | 2 +- docset/winserver2012-ps/hyper-v/Rename-VMSnapshot.md | 2 +- docset/winserver2012-ps/hyper-v/Rename-VMSwitch.md | 2 +- docset/winserver2012-ps/hyper-v/Repair-VM.md | 2 +- .../winserver2012-ps/hyper-v/Reset-VMReplicationStatistics.md | 2 +- docset/winserver2012-ps/hyper-v/Reset-VMResourceMetering.md | 2 +- docset/winserver2012-ps/hyper-v/Resize-VHD.md | 2 +- docset/winserver2012-ps/hyper-v/Restart-VM.md | 2 +- docset/winserver2012-ps/hyper-v/Restore-VMSnapshot.md | 2 +- docset/winserver2012-ps/hyper-v/Resume-VM.md | 2 +- docset/winserver2012-ps/hyper-v/Resume-VMReplication.md | 2 +- docset/winserver2012-ps/hyper-v/Revoke-VMConnectAccess.md | 2 +- docset/winserver2012-ps/hyper-v/Save-VM.md | 2 +- docset/winserver2012-ps/hyper-v/Set-VHD.md | 2 +- docset/winserver2012-ps/hyper-v/Set-VM.md | 2 +- docset/winserver2012-ps/hyper-v/Set-VMBios.md | 2 +- docset/winserver2012-ps/hyper-v/Set-VMComPort.md | 2 +- docset/winserver2012-ps/hyper-v/Set-VMDvdDrive.md | 2 +- docset/winserver2012-ps/hyper-v/Set-VMFibreChannelHba.md | 2 +- docset/winserver2012-ps/hyper-v/Set-VMFloppyDiskDrive.md | 2 +- docset/winserver2012-ps/hyper-v/Set-VMHardDiskDrive.md | 2 +- docset/winserver2012-ps/hyper-v/Set-VMHost.md | 2 +- docset/winserver2012-ps/hyper-v/Set-VMMemory.md | 2 +- docset/winserver2012-ps/hyper-v/Set-VMMigrationNetwork.md | 2 +- docset/winserver2012-ps/hyper-v/Set-VMNetworkAdapter.md | 2 +- .../hyper-v/Set-VMNetworkAdapterFailoverConfiguration.md | 2 +- docset/winserver2012-ps/hyper-v/Set-VMNetworkAdapterVlan.md | 2 +- docset/winserver2012-ps/hyper-v/Set-VMProcessor.md | 2 +- docset/winserver2012-ps/hyper-v/Set-VMRemoteFx3dVideoAdapter.md | 2 +- docset/winserver2012-ps/hyper-v/Set-VMReplication.md | 2 +- .../hyper-v/Set-VMReplicationAuthorizationEntry.md | 2 +- docset/winserver2012-ps/hyper-v/Set-VMReplicationServer.md | 2 +- docset/winserver2012-ps/hyper-v/Set-VMResourcePool.md | 2 +- docset/winserver2012-ps/hyper-v/Set-VMSan.md | 2 +- docset/winserver2012-ps/hyper-v/Set-VMSwitch.md | 2 +- .../hyper-v/Set-VMSwitchExtensionPortFeature.md | 2 +- .../hyper-v/Set-VMSwitchExtensionSwitchFeature.md | 2 +- docset/winserver2012-ps/hyper-v/Start-VM.md | 2 +- docset/winserver2012-ps/hyper-v/Start-VMFailover.md | 2 +- docset/winserver2012-ps/hyper-v/Start-VMInitialReplication.md | 2 +- docset/winserver2012-ps/hyper-v/Stop-VM.md | 2 +- docset/winserver2012-ps/hyper-v/Stop-VMFailover.md | 2 +- docset/winserver2012-ps/hyper-v/Stop-VMInitialReplication.md | 2 +- docset/winserver2012-ps/hyper-v/Stop-VMReplication.md | 2 +- docset/winserver2012-ps/hyper-v/Suspend-VM.md | 2 +- docset/winserver2012-ps/hyper-v/Suspend-VMReplication.md | 2 +- docset/winserver2012-ps/hyper-v/Test-VHD.md | 2 +- docset/winserver2012-ps/hyper-v/Test-VMReplicationConnection.md | 2 +- .../Get-WinAcceptLanguageFromLanguageListOptOut.md | 2 +- .../international/Get-WinCultureFromLanguageListOptOut.md | 2 +- .../international/Get-WinDefaultInputMethodOverride.md | 2 +- docset/winserver2012-ps/international/Get-WinHomeLocation.md | 2 +- .../winserver2012-ps/international/Get-WinLanguageBarOption.md | 2 +- docset/winserver2012-ps/international/Get-WinSystemLocale.md | 2 +- .../winserver2012-ps/international/Get-WinUILanguageOverride.md | 2 +- .../winserver2012-ps/international/Get-WinUserLanguageList.md | 2 +- .../winserver2012-ps/international/New-WinUserLanguageList.md | 2 +- docset/winserver2012-ps/international/Set-Culture.md | 2 +- .../Set-WinAcceptLanguageFromLanguageListOptOut.md | 2 +- .../international/Set-WinCultureFromLanguageListOptOut.md | 2 +- .../international/Set-WinDefaultInputMethodOverride.md | 2 +- docset/winserver2012-ps/international/Set-WinHomeLocation.md | 2 +- .../winserver2012-ps/international/Set-WinLanguageBarOption.md | 2 +- docset/winserver2012-ps/international/Set-WinSystemLocale.md | 2 +- .../winserver2012-ps/international/Set-WinUILanguageOverride.md | 2 +- .../winserver2012-ps/international/Set-WinUserLanguageList.md | 2 +- docset/winserver2012-ps/ipamserver/Add-IpamCustomField.md | 2 +- docset/winserver2012-ps/ipamserver/Add-IpamCustomValue.md | 2 +- docset/winserver2012-ps/ipamserver/Export-IpamAddress.md | 2 +- docset/winserver2012-ps/ipamserver/Export-IpamRange.md | 2 +- docset/winserver2012-ps/ipamserver/Get-IpamConfiguration.md | 2 +- docset/winserver2012-ps/ipamserver/Get-IpamCustomField.md | 2 +- docset/winserver2012-ps/ipamserver/Import-IpamAddress.md | 2 +- docset/winserver2012-ps/ipamserver/Import-IpamRange.md | 2 +- .../winserver2012-ps/ipamserver/Invoke-IpamGpoProvisioning.md | 2 +- docset/winserver2012-ps/ipamserver/Set-IpamConfiguration.md | 2 +- docset/winserver2012-ps/iscsi/Connect-IscsiTarget.md | 2 +- docset/winserver2012-ps/iscsi/Disconnect-IscsiTarget.md | 2 +- docset/winserver2012-ps/iscsi/Get-IscsiConnection.md | 2 +- docset/winserver2012-ps/iscsi/Get-IscsiSession.md | 2 +- docset/winserver2012-ps/iscsi/Get-IscsiTarget.md | 2 +- docset/winserver2012-ps/iscsi/Get-IscsiTargetPortal.md | 2 +- docset/winserver2012-ps/iscsi/New-IscsiTargetPortal.md | 2 +- docset/winserver2012-ps/iscsi/Register-IscsiSession.md | 2 +- docset/winserver2012-ps/iscsi/Remove-IscsiTargetPortal.md | 2 +- docset/winserver2012-ps/iscsi/Set-IscsiChapSecret.md | 2 +- docset/winserver2012-ps/iscsi/Unregister-IscsiSession.md | 2 +- docset/winserver2012-ps/iscsi/Update-IscsiTarget.md | 2 +- docset/winserver2012-ps/iscsi/Update-IscsiTargetPortal.md | 2 +- .../iscsitarget/Add-IscsiVirtualDiskTargetMapping.md | 2 +- .../winserver2012-ps/iscsitarget/Checkpoint-IscsiVirtualDisk.md | 2 +- docset/winserver2012-ps/iscsitarget/Convert-IscsiVirtualDisk.md | 2 +- .../iscsitarget/Dismount-IscsiVirtualDiskSnapshot.md | 2 +- docset/winserver2012-ps/iscsitarget/Expand-IscsiVirtualDisk.md | 2 +- .../iscsitarget/Export-IscsiVirtualDiskSnapshot.md | 2 +- docset/winserver2012-ps/iscsitarget/Get-IscsiServerTarget.md | 2 +- .../iscsitarget/Get-IscsiTargetServerSetting.md | 2 +- docset/winserver2012-ps/iscsitarget/Get-IscsiVirtualDisk.md | 2 +- .../iscsitarget/Get-IscsiVirtualDiskSnapshot.md | 2 +- docset/winserver2012-ps/iscsitarget/Import-IscsiVirtualDisk.md | 2 +- .../iscsitarget/Mount-IscsiVirtualDiskSnapshot.md | 2 +- docset/winserver2012-ps/iscsitarget/New-IscsiServerTarget.md | 2 +- docset/winserver2012-ps/iscsitarget/New-IscsiVirtualDisk.md | 2 +- docset/winserver2012-ps/iscsitarget/Remove-IscsiServerTarget.md | 2 +- docset/winserver2012-ps/iscsitarget/Remove-IscsiVirtualDisk.md | 2 +- .../iscsitarget/Remove-IscsiVirtualDiskSnapshot.md | 2 +- .../iscsitarget/Remove-IscsiVirtualDiskTargetMapping.md | 2 +- docset/winserver2012-ps/iscsitarget/Restore-IscsiVirtualDisk.md | 2 +- docset/winserver2012-ps/iscsitarget/Set-IscsiServerTarget.md | 2 +- .../iscsitarget/Set-IscsiTargetServerSetting.md | 2 +- docset/winserver2012-ps/iscsitarget/Set-IscsiVirtualDisk.md | 2 +- .../iscsitarget/Set-IscsiVirtualDiskSnapshot.md | 2 +- docset/winserver2012-ps/kds/Add-KdsRootKey.md | 2 +- docset/winserver2012-ps/kds/Clear-KdsCache.md | 2 +- docset/winserver2012-ps/kds/Get-KdsConfiguration.md | 2 +- docset/winserver2012-ps/kds/Get-KdsRootKey.md | 2 +- docset/winserver2012-ps/kds/Set-KdsConfiguration.md | 2 +- docset/winserver2012-ps/kds/Test-KdsRootKey.md | 2 +- docset/winserver2012-ps/mmagent/Disable-MMAgent.md | 2 +- docset/winserver2012-ps/mmagent/Enable-MMAgent.md | 2 +- docset/winserver2012-ps/mmagent/Get-MMAgent.md | 2 +- docset/winserver2012-ps/mmagent/Set-MMAgent.md | 2 +- docset/winserver2012-ps/mpio/Clear-MSDSMSupportedHW.md | 2 +- docset/winserver2012-ps/mpio/Disable-MSDSMAutomaticClaim.md | 2 +- docset/winserver2012-ps/mpio/Enable-MSDSMAutomaticClaim.md | 2 +- docset/winserver2012-ps/mpio/Get-MPIOAvailableHW.md | 2 +- docset/winserver2012-ps/mpio/Get-MPIOSetting.md | 2 +- docset/winserver2012-ps/mpio/Get-MSDSMAutomaticClaimSettings.md | 2 +- .../mpio/Get-MSDSMGlobalDefaultLoadBalancePolicy.md | 2 +- docset/winserver2012-ps/mpio/Get-MSDSMSupportedHW.md | 2 +- docset/winserver2012-ps/mpio/New-MSDSMSupportedHW.md | 2 +- docset/winserver2012-ps/mpio/Remove-MSDSMSupportedHW.md | 2 +- docset/winserver2012-ps/mpio/Set-MPIOSetting.md | 2 +- .../mpio/Set-MSDSMGlobalDefaultLoadBalancePolicy.md | 2 +- docset/winserver2012-ps/mpio/Update-MPIOClaimedHW.md | 2 +- docset/winserver2012-ps/msdtc/Add-DtcClusterTMMapping.md | 2 +- .../winserver2012-ps/msdtc/Complete-DtcDiagnosticTransaction.md | 2 +- docset/winserver2012-ps/msdtc/Get-Dtc.md | 2 +- docset/winserver2012-ps/msdtc/Get-DtcAdvancedHostSetting.md | 2 +- docset/winserver2012-ps/msdtc/Get-DtcAdvancedSetting.md | 2 +- docset/winserver2012-ps/msdtc/Get-DtcClusterDefault.md | 2 +- docset/winserver2012-ps/msdtc/Get-DtcClusterTMMapping.md | 2 +- docset/winserver2012-ps/msdtc/Get-DtcDefault.md | 2 +- docset/winserver2012-ps/msdtc/Get-DtcLog.md | 2 +- docset/winserver2012-ps/msdtc/Get-DtcNetworkSetting.md | 2 +- docset/winserver2012-ps/msdtc/Get-DtcTransaction.md | 2 +- docset/winserver2012-ps/msdtc/Get-DtcTransactionsStatistics.md | 2 +- .../winserver2012-ps/msdtc/Get-DtcTransactionsTraceSession.md | 2 +- .../winserver2012-ps/msdtc/Get-DtcTransactionsTraceSetting.md | 2 +- docset/winserver2012-ps/msdtc/Install-Dtc.md | 2 +- .../winserver2012-ps/msdtc/Join-DtcDiagnosticResourceManager.md | 2 +- docset/winserver2012-ps/msdtc/New-DtcDiagnosticTransaction.md | 2 +- .../winserver2012-ps/msdtc/Receive-DtcDiagnosticTransaction.md | 2 +- docset/winserver2012-ps/msdtc/Remove-DtcClusterTMMapping.md | 2 +- docset/winserver2012-ps/msdtc/Reset-DtcLog.md | 2 +- docset/winserver2012-ps/msdtc/Send-DtcDiagnosticTransaction.md | 2 +- docset/winserver2012-ps/msdtc/Set-DtcAdvancedHostSetting.md | 2 +- docset/winserver2012-ps/msdtc/Set-DtcAdvancedSetting.md | 2 +- docset/winserver2012-ps/msdtc/Set-DtcClusterDefault.md | 2 +- docset/winserver2012-ps/msdtc/Set-DtcClusterTMMapping.md | 2 +- docset/winserver2012-ps/msdtc/Set-DtcDefault.md | 2 +- docset/winserver2012-ps/msdtc/Set-DtcLog.md | 2 +- docset/winserver2012-ps/msdtc/Set-DtcNetworkSetting.md | 2 +- docset/winserver2012-ps/msdtc/Set-DtcTransaction.md | 2 +- .../winserver2012-ps/msdtc/Set-DtcTransactionsTraceSession.md | 2 +- .../winserver2012-ps/msdtc/Set-DtcTransactionsTraceSetting.md | 2 +- docset/winserver2012-ps/msdtc/Start-Dtc.md | 2 +- .../msdtc/Start-DtcDiagnosticResourceManager.md | 2 +- .../winserver2012-ps/msdtc/Start-DtcTransactionsTraceSession.md | 2 +- docset/winserver2012-ps/msdtc/Stop-Dtc.md | 2 +- .../winserver2012-ps/msdtc/Stop-DtcDiagnosticResourceManager.md | 2 +- .../winserver2012-ps/msdtc/Stop-DtcTransactionsTraceSession.md | 2 +- docset/winserver2012-ps/msdtc/Test-Dtc.md | 2 +- docset/winserver2012-ps/msdtc/Undo-DtcDiagnosticTransaction.md | 2 +- docset/winserver2012-ps/msdtc/Uninstall-Dtc.md | 2 +- .../winserver2012-ps/msdtc/Write-DtcTransactionsTraceSession.md | 2 +- docset/winserver2012-ps/msmq/Clear-MsmqOutgoingQueue.md | 2 +- docset/winserver2012-ps/msmq/Clear-MsmqQueue.md | 2 +- docset/winserver2012-ps/msmq/Enable-MsmqCertificate.md | 2 +- docset/winserver2012-ps/msmq/Get-MsmqCertificate.md | 2 +- docset/winserver2012-ps/msmq/Get-MsmqOutgoingQueue.md | 2 +- docset/winserver2012-ps/msmq/Get-MsmqQueue.md | 2 +- docset/winserver2012-ps/msmq/Get-MsmqQueueACL.md | 2 +- docset/winserver2012-ps/msmq/Get-MsmqQueueManager.md | 2 +- docset/winserver2012-ps/msmq/Get-MsmqQueueManagerACL.md | 2 +- docset/winserver2012-ps/msmq/Move-MsmqMessage.md | 2 +- docset/winserver2012-ps/msmq/New-MsmqMessage.md | 2 +- docset/winserver2012-ps/msmq/New-MsmqQueue.md | 2 +- docset/winserver2012-ps/msmq/Receive-MsmqQueue.md | 2 +- docset/winserver2012-ps/msmq/Remove-MsmqCertificate.md | 2 +- docset/winserver2012-ps/msmq/Remove-MsmqQueue.md | 2 +- docset/winserver2012-ps/msmq/Resume-MsmqOutgoingQueue.md | 2 +- docset/winserver2012-ps/msmq/Send-MsmqQueue.md | 2 +- docset/winserver2012-ps/msmq/Set-MsmqQueue.md | 2 +- docset/winserver2012-ps/msmq/Set-MsmqQueueACL.md | 2 +- docset/winserver2012-ps/msmq/Set-MsmqQueueManager.md | 2 +- docset/winserver2012-ps/msmq/Set-MsmqQueueManagerACL.md | 2 +- docset/winserver2012-ps/msmq/Suspend-MsmqOutgoingQueue.md | 2 +- docset/winserver2012-ps/netadapter/Disable-NetAdapter.md | 2 +- docset/winserver2012-ps/netadapter/Disable-NetAdapterBinding.md | 2 +- .../netadapter/Disable-NetAdapterChecksumOffload.md | 2 +- .../Disable-NetAdapterEncapsulatedPacketTaskOffload.md | 2 +- .../netadapter/Disable-NetAdapterIPsecOffload.md | 2 +- docset/winserver2012-ps/netadapter/Disable-NetAdapterLso.md | 2 +- .../netadapter/Disable-NetAdapterPowerManagement.md | 2 +- docset/winserver2012-ps/netadapter/Disable-NetAdapterQos.md | 2 +- docset/winserver2012-ps/netadapter/Disable-NetAdapterRdma.md | 2 +- docset/winserver2012-ps/netadapter/Disable-NetAdapterRsc.md | 2 +- docset/winserver2012-ps/netadapter/Disable-NetAdapterRss.md | 2 +- docset/winserver2012-ps/netadapter/Disable-NetAdapterSriov.md | 2 +- docset/winserver2012-ps/netadapter/Disable-NetAdapterVmq.md | 2 +- docset/winserver2012-ps/netadapter/Enable-NetAdapter.md | 2 +- docset/winserver2012-ps/netadapter/Enable-NetAdapterBinding.md | 2 +- .../netadapter/Enable-NetAdapterChecksumOffload.md | 2 +- .../Enable-NetAdapterEncapsulatedPacketTaskOffload.md | 2 +- .../netadapter/Enable-NetAdapterIPsecOffload.md | 2 +- docset/winserver2012-ps/netadapter/Enable-NetAdapterLso.md | 2 +- .../netadapter/Enable-NetAdapterPowerManagement.md | 2 +- docset/winserver2012-ps/netadapter/Enable-NetAdapterQos.md | 2 +- docset/winserver2012-ps/netadapter/Enable-NetAdapterRdma.md | 2 +- docset/winserver2012-ps/netadapter/Enable-NetAdapterRsc.md | 2 +- docset/winserver2012-ps/netadapter/Enable-NetAdapterRss.md | 2 +- docset/winserver2012-ps/netadapter/Enable-NetAdapterSriov.md | 2 +- docset/winserver2012-ps/netadapter/Enable-NetAdapterVmq.md | 2 +- docset/winserver2012-ps/netadapter/Get-NetAdapter.md | 2 +- .../netadapter/Get-NetAdapterAdvancedProperty.md | 2 +- docset/winserver2012-ps/netadapter/Get-NetAdapterBinding.md | 2 +- .../netadapter/Get-NetAdapterChecksumOffload.md | 2 +- .../netadapter/Get-NetAdapterEncapsulatedPacketTaskOffload.md | 2 +- .../winserver2012-ps/netadapter/Get-NetAdapterHardwareInfo.md | 2 +- .../winserver2012-ps/netadapter/Get-NetAdapterIPsecOffload.md | 2 +- docset/winserver2012-ps/netadapter/Get-NetAdapterLso.md | 2 +- .../netadapter/Get-NetAdapterPowerManagement.md | 2 +- docset/winserver2012-ps/netadapter/Get-NetAdapterQos.md | 2 +- docset/winserver2012-ps/netadapter/Get-NetAdapterRdma.md | 2 +- docset/winserver2012-ps/netadapter/Get-NetAdapterRsc.md | 2 +- docset/winserver2012-ps/netadapter/Get-NetAdapterRss.md | 2 +- docset/winserver2012-ps/netadapter/Get-NetAdapterSriov.md | 2 +- docset/winserver2012-ps/netadapter/Get-NetAdapterSriovVf.md | 2 +- docset/winserver2012-ps/netadapter/Get-NetAdapterStatistics.md | 2 +- docset/winserver2012-ps/netadapter/Get-NetAdapterVPort.md | 2 +- docset/winserver2012-ps/netadapter/Get-NetAdapterVmq.md | 2 +- docset/winserver2012-ps/netadapter/Get-NetAdapterVmqQueue.md | 2 +- .../netadapter/New-NetAdapterAdvancedProperty.md | 2 +- .../netadapter/Remove-NetAdapterAdvancedProperty.md | 2 +- docset/winserver2012-ps/netadapter/Rename-NetAdapter.md | 2 +- .../netadapter/Reset-NetAdapterAdvancedProperty.md | 2 +- docset/winserver2012-ps/netadapter/Restart-NetAdapter.md | 2 +- docset/winserver2012-ps/netadapter/Set-NetAdapter.md | 2 +- .../netadapter/Set-NetAdapterAdvancedProperty.md | 2 +- docset/winserver2012-ps/netadapter/Set-NetAdapterBinding.md | 2 +- .../netadapter/Set-NetAdapterChecksumOffload.md | 2 +- .../netadapter/Set-NetAdapterEncapsulatedPacketTaskOffload.md | 2 +- .../winserver2012-ps/netadapter/Set-NetAdapterIPsecOffload.md | 2 +- docset/winserver2012-ps/netadapter/Set-NetAdapterLso.md | 2 +- .../netadapter/Set-NetAdapterPowerManagement.md | 2 +- docset/winserver2012-ps/netadapter/Set-NetAdapterQos.md | 2 +- docset/winserver2012-ps/netadapter/Set-NetAdapterRdma.md | 2 +- docset/winserver2012-ps/netadapter/Set-NetAdapterRsc.md | 2 +- docset/winserver2012-ps/netadapter/Set-NetAdapterRss.md | 2 +- docset/winserver2012-ps/netadapter/Set-NetAdapterSriov.md | 2 +- docset/winserver2012-ps/netadapter/Set-NetAdapterVmq.md | 2 +- .../winserver2012-ps/netconnection/Get-NetConnectionProfile.md | 2 +- .../winserver2012-ps/netconnection/Set-NetConnectionProfile.md | 2 +- docset/winserver2012-ps/netlbfo/Add-NetLbfoTeamMember.md | 2 +- docset/winserver2012-ps/netlbfo/Add-NetLbfoTeamNic.md | 2 +- docset/winserver2012-ps/netlbfo/Get-NetLbfoTeam.md | 2 +- docset/winserver2012-ps/netlbfo/Get-NetLbfoTeamMember.md | 2 +- docset/winserver2012-ps/netlbfo/Get-NetLbfoTeamNic.md | 2 +- docset/winserver2012-ps/netlbfo/New-NetLbfoTeam.md | 2 +- docset/winserver2012-ps/netlbfo/Remove-NetLbfoTeam.md | 2 +- docset/winserver2012-ps/netlbfo/Remove-NetLbfoTeamMember.md | 2 +- docset/winserver2012-ps/netlbfo/Remove-NetLbfoTeamNic.md | 2 +- docset/winserver2012-ps/netlbfo/Rename-NetLbfoTeam.md | 2 +- docset/winserver2012-ps/netlbfo/Set-NetLbfoTeam.md | 2 +- docset/winserver2012-ps/netlbfo/Set-NetLbfoTeamMember.md | 2 +- docset/winserver2012-ps/netlbfo/Set-NetLbfoTeamNic.md | 2 +- docset/winserver2012-ps/netqos/Get-NetQosPolicy.md | 2 +- docset/winserver2012-ps/netqos/New-NetQosPolicy.md | 2 +- docset/winserver2012-ps/netqos/Remove-NetQosPolicy.md | 2 +- docset/winserver2012-ps/netqos/Set-NetQosPolicy.md | 2 +- docset/winserver2012-ps/netsecurity/Copy-NetFirewallRule.md | 2 +- .../netsecurity/Copy-NetIPsecMainModeCryptoSet.md | 2 +- .../winserver2012-ps/netsecurity/Copy-NetIPsecMainModeRule.md | 2 +- .../winserver2012-ps/netsecurity/Copy-NetIPsecPhase1AuthSet.md | 2 +- .../winserver2012-ps/netsecurity/Copy-NetIPsecPhase2AuthSet.md | 2 +- .../netsecurity/Copy-NetIPsecQuickModeCryptoSet.md | 2 +- docset/winserver2012-ps/netsecurity/Copy-NetIPsecRule.md | 2 +- docset/winserver2012-ps/netsecurity/Disable-NetFirewallRule.md | 2 +- .../netsecurity/Disable-NetIPsecMainModeRule.md | 2 +- docset/winserver2012-ps/netsecurity/Disable-NetIPsecRule.md | 2 +- docset/winserver2012-ps/netsecurity/Enable-NetFirewallRule.md | 2 +- .../winserver2012-ps/netsecurity/Enable-NetIPsecMainModeRule.md | 2 +- docset/winserver2012-ps/netsecurity/Enable-NetIPsecRule.md | 2 +- docset/winserver2012-ps/netsecurity/Get-DAPolicyChange.md | 2 +- .../netsecurity/Get-NetFirewallAddressFilter.md | 2 +- .../netsecurity/Get-NetFirewallApplicationFilter.md | 2 +- .../netsecurity/Get-NetFirewallInterfaceFilter.md | 2 +- .../netsecurity/Get-NetFirewallInterfaceTypeFilter.md | 2 +- .../winserver2012-ps/netsecurity/Get-NetFirewallPortFilter.md | 2 +- docset/winserver2012-ps/netsecurity/Get-NetFirewallProfile.md | 2 +- docset/winserver2012-ps/netsecurity/Get-NetFirewallRule.md | 2 +- .../netsecurity/Get-NetFirewallSecurityFilter.md | 2 +- .../netsecurity/Get-NetFirewallServiceFilter.md | 2 +- docset/winserver2012-ps/netsecurity/Get-NetFirewallSetting.md | 2 +- docset/winserver2012-ps/netsecurity/Get-NetIPsecDospSetting.md | 2 +- .../netsecurity/Get-NetIPsecMainModeCryptoSet.md | 2 +- docset/winserver2012-ps/netsecurity/Get-NetIPsecMainModeRule.md | 2 +- docset/winserver2012-ps/netsecurity/Get-NetIPsecMainModeSA.md | 2 +- .../winserver2012-ps/netsecurity/Get-NetIPsecPhase1AuthSet.md | 2 +- .../winserver2012-ps/netsecurity/Get-NetIPsecPhase2AuthSet.md | 2 +- .../netsecurity/Get-NetIPsecQuickModeCryptoSet.md | 2 +- docset/winserver2012-ps/netsecurity/Get-NetIPsecQuickModeSA.md | 2 +- docset/winserver2012-ps/netsecurity/Get-NetIPsecRule.md | 2 +- docset/winserver2012-ps/netsecurity/New-NetFirewallRule.md | 2 +- docset/winserver2012-ps/netsecurity/New-NetIPsecAuthProposal.md | 2 +- docset/winserver2012-ps/netsecurity/New-NetIPsecDospSetting.md | 2 +- .../netsecurity/New-NetIPsecMainModeCryptoProposal.md | 2 +- .../netsecurity/New-NetIPsecMainModeCryptoSet.md | 2 +- docset/winserver2012-ps/netsecurity/New-NetIPsecMainModeRule.md | 2 +- .../winserver2012-ps/netsecurity/New-NetIPsecPhase1AuthSet.md | 2 +- .../winserver2012-ps/netsecurity/New-NetIPsecPhase2AuthSet.md | 2 +- .../netsecurity/New-NetIPsecQuickModeCryptoProposal.md | 2 +- .../netsecurity/New-NetIPsecQuickModeCryptoSet.md | 2 +- docset/winserver2012-ps/netsecurity/New-NetIPsecRule.md | 2 +- docset/winserver2012-ps/netsecurity/Open-NetGPO.md | 2 +- docset/winserver2012-ps/netsecurity/Remove-NetFirewallRule.md | 2 +- .../winserver2012-ps/netsecurity/Remove-NetIPsecDospSetting.md | 2 +- .../netsecurity/Remove-NetIPsecMainModeCryptoSet.md | 2 +- .../winserver2012-ps/netsecurity/Remove-NetIPsecMainModeRule.md | 2 +- .../winserver2012-ps/netsecurity/Remove-NetIPsecMainModeSA.md | 2 +- .../netsecurity/Remove-NetIPsecPhase1AuthSet.md | 2 +- .../netsecurity/Remove-NetIPsecPhase2AuthSet.md | 2 +- .../netsecurity/Remove-NetIPsecQuickModeCryptoSet.md | 2 +- .../winserver2012-ps/netsecurity/Remove-NetIPsecQuickModeSA.md | 2 +- docset/winserver2012-ps/netsecurity/Remove-NetIPsecRule.md | 2 +- docset/winserver2012-ps/netsecurity/Rename-NetFirewallRule.md | 2 +- .../netsecurity/Rename-NetIPsecMainModeCryptoSet.md | 2 +- .../winserver2012-ps/netsecurity/Rename-NetIPsecMainModeRule.md | 2 +- .../netsecurity/Rename-NetIPsecPhase1AuthSet.md | 2 +- .../netsecurity/Rename-NetIPsecPhase2AuthSet.md | 2 +- .../netsecurity/Rename-NetIPsecQuickModeCryptoSet.md | 2 +- docset/winserver2012-ps/netsecurity/Rename-NetIPsecRule.md | 2 +- docset/winserver2012-ps/netsecurity/Save-NetGPO.md | 2 +- .../netsecurity/Set-NetFirewallAddressFilter.md | 2 +- .../netsecurity/Set-NetFirewallApplicationFilter.md | 2 +- .../netsecurity/Set-NetFirewallInterfaceFilter.md | 2 +- .../netsecurity/Set-NetFirewallInterfaceTypeFilter.md | 2 +- .../winserver2012-ps/netsecurity/Set-NetFirewallPortFilter.md | 2 +- docset/winserver2012-ps/netsecurity/Set-NetFirewallProfile.md | 2 +- docset/winserver2012-ps/netsecurity/Set-NetFirewallRule.md | 2 +- .../netsecurity/Set-NetFirewallSecurityFilter.md | 2 +- .../netsecurity/Set-NetFirewallServiceFilter.md | 2 +- docset/winserver2012-ps/netsecurity/Set-NetFirewallSetting.md | 2 +- docset/winserver2012-ps/netsecurity/Set-NetIPsecDospSetting.md | 2 +- .../netsecurity/Set-NetIPsecMainModeCryptoSet.md | 2 +- docset/winserver2012-ps/netsecurity/Set-NetIPsecMainModeRule.md | 2 +- .../winserver2012-ps/netsecurity/Set-NetIPsecPhase1AuthSet.md | 2 +- .../winserver2012-ps/netsecurity/Set-NetIPsecPhase2AuthSet.md | 2 +- .../netsecurity/Set-NetIPsecQuickModeCryptoSet.md | 2 +- docset/winserver2012-ps/netsecurity/Set-NetIPsecRule.md | 2 +- docset/winserver2012-ps/netsecurity/Show-NetFirewallRule.md | 2 +- docset/winserver2012-ps/netsecurity/Show-NetIPsecRule.md | 2 +- docset/winserver2012-ps/netsecurity/Sync-NetIPsecRule.md | 2 +- docset/winserver2012-ps/netsecurity/Update-NetIPsecRule.md | 2 +- .../winserver2012-ps/netswitchteam/Add-NetSwitchTeamMember.md | 2 +- docset/winserver2012-ps/netswitchteam/Get-NetSwitchTeam.md | 2 +- .../winserver2012-ps/netswitchteam/Get-NetSwitchTeamMember.md | 2 +- docset/winserver2012-ps/netswitchteam/New-NetSwitchTeam.md | 2 +- docset/winserver2012-ps/netswitchteam/Remove-NetSwitchTeam.md | 2 +- .../netswitchteam/Remove-NetSwitchTeamMember.md | 2 +- docset/winserver2012-ps/netswitchteam/Rename-NetSwitchTeam.md | 2 +- docset/winserver2012-ps/nettcpip/Get-NetIPAddress.md | 2 +- docset/winserver2012-ps/nettcpip/Get-NetIPConfiguration.md | 2 +- docset/winserver2012-ps/nettcpip/Get-NetIPInterface.md | 2 +- docset/winserver2012-ps/nettcpip/Get-NetIPv4Protocol.md | 2 +- docset/winserver2012-ps/nettcpip/Get-NetIPv6Protocol.md | 2 +- docset/winserver2012-ps/nettcpip/Get-NetNeighbor.md | 2 +- docset/winserver2012-ps/nettcpip/Get-NetOffloadGlobalSetting.md | 2 +- docset/winserver2012-ps/nettcpip/Get-NetPrefixPolicy.md | 2 +- docset/winserver2012-ps/nettcpip/Get-NetRoute.md | 2 +- docset/winserver2012-ps/nettcpip/Get-NetTCPConnection.md | 2 +- docset/winserver2012-ps/nettcpip/Get-NetTCPSetting.md | 2 +- docset/winserver2012-ps/nettcpip/Get-NetTransportFilter.md | 2 +- docset/winserver2012-ps/nettcpip/Get-NetUDPEndpoint.md | 2 +- docset/winserver2012-ps/nettcpip/Get-NetUDPSetting.md | 2 +- docset/winserver2012-ps/nettcpip/New-NetIPAddress.md | 2 +- docset/winserver2012-ps/nettcpip/New-NetNeighbor.md | 2 +- docset/winserver2012-ps/nettcpip/New-NetRoute.md | 2 +- docset/winserver2012-ps/nettcpip/New-NetTransportFilter.md | 2 +- docset/winserver2012-ps/nettcpip/Remove-NetIPAddress.md | 2 +- docset/winserver2012-ps/nettcpip/Remove-NetNeighbor.md | 2 +- docset/winserver2012-ps/nettcpip/Remove-NetRoute.md | 2 +- docset/winserver2012-ps/nettcpip/Remove-NetTransportFilter.md | 2 +- docset/winserver2012-ps/nettcpip/Set-NetIPAddress.md | 2 +- docset/winserver2012-ps/nettcpip/Set-NetIPInterface.md | 2 +- docset/winserver2012-ps/nettcpip/Set-NetIPv4Protocol.md | 2 +- docset/winserver2012-ps/nettcpip/Set-NetIPv6Protocol.md | 2 +- docset/winserver2012-ps/nettcpip/Set-NetNeighbor.md | 2 +- docset/winserver2012-ps/nettcpip/Set-NetOffloadGlobalSetting.md | 2 +- docset/winserver2012-ps/nettcpip/Set-NetRoute.md | 2 +- docset/winserver2012-ps/nettcpip/Set-NetTCPSetting.md | 2 +- docset/winserver2012-ps/nettcpip/Set-NetUDPSetting.md | 2 +- .../netwnv/Get-NetVirtualizationCustomerRoute.md | 2 +- docset/winserver2012-ps/netwnv/Get-NetVirtualizationGlobal.md | 2 +- .../netwnv/Get-NetVirtualizationLookupRecord.md | 2 +- .../netwnv/Get-NetVirtualizationProviderAddress.md | 2 +- .../netwnv/Get-NetVirtualizationProviderRoute.md | 2 +- .../netwnv/New-NetVirtualizationCustomerRoute.md | 2 +- .../netwnv/New-NetVirtualizationLookupRecord.md | 2 +- .../netwnv/New-NetVirtualizationProviderAddress.md | 2 +- .../netwnv/New-NetVirtualizationProviderRoute.md | 2 +- .../netwnv/Remove-NetVirtualizationCustomerRoute.md | 2 +- .../netwnv/Remove-NetVirtualizationLookupRecord.md | 2 +- .../netwnv/Remove-NetVirtualizationProviderAddress.md | 2 +- .../netwnv/Remove-NetVirtualizationProviderRoute.md | 2 +- .../netwnv/Set-NetVirtualizationCustomerRoute.md | 2 +- docset/winserver2012-ps/netwnv/Set-NetVirtualizationGlobal.md | 2 +- .../netwnv/Set-NetVirtualizationLookupRecord.md | 2 +- .../netwnv/Set-NetVirtualizationProviderAddress.md | 2 +- .../netwnv/Set-NetVirtualizationProviderRoute.md | 2 +- .../networkconnectivity/Get-DAConnectionStatus.md | 2 +- .../networkconnectivity/Get-NCSIPolicyConfiguration.md | 2 +- .../networkconnectivity/Reset-NCSIPolicyConfiguration.md | 2 +- .../networkconnectivity/Set-NCSIPolicyConfiguration.md | 2 +- .../networkloadbalancingclusters/Add-NlbClusterNode.md | 2 +- .../networkloadbalancingclusters/Add-NlbClusterNodeDip.md | 2 +- .../networkloadbalancingclusters/Add-NlbClusterPortRule.md | 2 +- .../networkloadbalancingclusters/Add-NlbClusterVip.md | 2 +- .../networkloadbalancingclusters/Disable-NlbClusterPortRule.md | 2 +- .../networkloadbalancingclusters/Enable-NlbClusterPortRule.md | 2 +- .../networkloadbalancingclusters/Get-NlbCluster.md | 2 +- .../networkloadbalancingclusters/Get-NlbClusterDriverInfo.md | 2 +- .../networkloadbalancingclusters/Get-NlbClusterNode.md | 2 +- .../networkloadbalancingclusters/Get-NlbClusterNodeDip.md | 2 +- .../Get-NlbClusterNodeNetworkInterface.md | 2 +- .../networkloadbalancingclusters/Get-NlbClusterPortRule.md | 2 +- .../networkloadbalancingclusters/Get-NlbClusterVip.md | 2 +- .../networkloadbalancingclusters/New-NlbCluster.md | 2 +- .../networkloadbalancingclusters/New-NlbClusterIpv6Address.md | 2 +- .../networkloadbalancingclusters/Remove-NlbCluster.md | 2 +- .../networkloadbalancingclusters/Remove-NlbClusterNode.md | 2 +- .../networkloadbalancingclusters/Remove-NlbClusterNodeDip.md | 2 +- .../networkloadbalancingclusters/Remove-NlbClusterPortRule.md | 2 +- .../networkloadbalancingclusters/Remove-NlbClusterVip.md | 2 +- .../networkloadbalancingclusters/Resume-NlbCluster.md | 2 +- .../networkloadbalancingclusters/Resume-NlbClusterNode.md | 2 +- .../networkloadbalancingclusters/Set-NlbCluster.md | 2 +- .../networkloadbalancingclusters/Set-NlbClusterNode.md | 2 +- .../networkloadbalancingclusters/Set-NlbClusterNodeDip.md | 2 +- .../networkloadbalancingclusters/Set-NlbClusterPortRule.md | 2 +- .../Set-NlbClusterPortRuleNodeHandlingPriority.md | 2 +- .../Set-NlbClusterPortRuleNodeWeight.md | 2 +- .../networkloadbalancingclusters/Set-NlbClusterVip.md | 2 +- .../networkloadbalancingclusters/Start-NlbCluster.md | 2 +- .../networkloadbalancingclusters/Start-NlbClusterNode.md | 2 +- .../networkloadbalancingclusters/Stop-NlbCluster.md | 2 +- .../networkloadbalancingclusters/Stop-NlbClusterNode.md | 2 +- .../networkloadbalancingclusters/Suspend-NlbCluster.md | 2 +- .../networkloadbalancingclusters/Suspend-NlbClusterNode.md | 2 +- .../networktransition/Add-NetIPHttpsCertBinding.md | 2 +- .../networktransition/Disable-NetDnsTransitionConfiguration.md | 2 +- .../networktransition/Disable-NetIPHttpsProfile.md | 2 +- .../networktransition/Disable-NetNatTransitionConfiguration.md | 2 +- .../networktransition/Enable-NetDnsTransitionConfiguration.md | 2 +- .../networktransition/Enable-NetIPHttpsProfile.md | 2 +- .../networktransition/Enable-NetNatTransitionConfiguration.md | 2 +- .../networktransition/Get-Net6to4Configuration.md | 2 +- .../networktransition/Get-NetDnsTransitionConfiguration.md | 2 +- .../networktransition/Get-NetDnsTransitionMonitoring.md | 2 +- .../networktransition/Get-NetIPHttpsConfiguration.md | 2 +- .../winserver2012-ps/networktransition/Get-NetIPHttpsState.md | 2 +- .../networktransition/Get-NetIsatapConfiguration.md | 2 +- .../networktransition/Get-NetNatTransitionConfiguration.md | 2 +- .../networktransition/Get-NetNatTransitionMonitoring.md | 2 +- .../networktransition/Get-NetTeredoConfiguration.md | 2 +- docset/winserver2012-ps/networktransition/Get-NetTeredoState.md | 2 +- .../networktransition/New-NetIPHttpsConfiguration.md | 2 +- .../networktransition/New-NetNatTransitionConfiguration.md | 2 +- .../networktransition/Remove-NetIPHttpsCertBinding.md | 2 +- .../networktransition/Remove-NetIPHttpsConfiguration.md | 2 +- .../networktransition/Remove-NetNatTransitionConfiguration.md | 2 +- .../networktransition/Rename-NetIPHttpsConfiguration.md | 2 +- .../networktransition/Reset-Net6to4Configuration.md | 2 +- .../networktransition/Reset-NetDnsTransitionConfiguration.md | 2 +- .../networktransition/Reset-NetIPHttpsConfiguration.md | 2 +- .../networktransition/Reset-NetIsatapConfiguration.md | 2 +- .../networktransition/Reset-NetTeredoConfiguration.md | 2 +- .../networktransition/Set-Net6to4Configuration.md | 2 +- .../networktransition/Set-NetDnsTransitionConfiguration.md | 2 +- .../networktransition/Set-NetIPHttpsConfiguration.md | 2 +- .../networktransition/Set-NetIsatapConfiguration.md | 2 +- .../networktransition/Set-NetNatTransitionConfiguration.md | 2 +- .../networktransition/Set-NetTeredoConfiguration.md | 2 +- docset/winserver2012-ps/nfs/Disconnect-NfsSession.md | 2 +- docset/winserver2012-ps/nfs/Get-NfsClientConfiguration.md | 2 +- docset/winserver2012-ps/nfs/Get-NfsClientLock.md | 2 +- docset/winserver2012-ps/nfs/Get-NfsClientgroup.md | 2 +- docset/winserver2012-ps/nfs/Get-NfsMappedIdentity.md | 2 +- docset/winserver2012-ps/nfs/Get-NfsMappingStore.md | 2 +- docset/winserver2012-ps/nfs/Get-NfsMountedClient.md | 2 +- docset/winserver2012-ps/nfs/Get-NfsNetgroup.md | 2 +- docset/winserver2012-ps/nfs/Get-NfsNetgroupStore.md | 2 +- docset/winserver2012-ps/nfs/Get-NfsOpenFile.md | 2 +- docset/winserver2012-ps/nfs/Get-NfsServerConfiguration.md | 2 +- docset/winserver2012-ps/nfs/Get-NfsSession.md | 2 +- docset/winserver2012-ps/nfs/Get-NfsShare.md | 2 +- docset/winserver2012-ps/nfs/Get-NfsSharePermission.md | 2 +- docset/winserver2012-ps/nfs/Get-NfsStatistics.md | 2 +- docset/winserver2012-ps/nfs/Grant-NfsSharePermission.md | 2 +- docset/winserver2012-ps/nfs/Install-NfsMappingStore.md | 2 +- docset/winserver2012-ps/nfs/New-NfsClientgroup.md | 2 +- docset/winserver2012-ps/nfs/New-NfsMappedIdentity.md | 2 +- docset/winserver2012-ps/nfs/New-NfsNetgroup.md | 2 +- docset/winserver2012-ps/nfs/New-NfsShare.md | 2 +- docset/winserver2012-ps/nfs/Remove-NfsClientgroup.md | 2 +- docset/winserver2012-ps/nfs/Remove-NfsMappedIdentity.md | 2 +- docset/winserver2012-ps/nfs/Remove-NfsNetgroup.md | 2 +- docset/winserver2012-ps/nfs/Remove-NfsShare.md | 2 +- docset/winserver2012-ps/nfs/Rename-NfsClientgroup.md | 2 +- docset/winserver2012-ps/nfs/Reset-NfsStatistics.md | 2 +- docset/winserver2012-ps/nfs/Resolve-NfsMappedIdentity.md | 2 +- docset/winserver2012-ps/nfs/Revoke-NfsClientLock.md | 2 +- docset/winserver2012-ps/nfs/Revoke-NfsMountedClient.md | 2 +- docset/winserver2012-ps/nfs/Revoke-NfsOpenFile.md | 2 +- docset/winserver2012-ps/nfs/Revoke-NfsSharePermission.md | 2 +- docset/winserver2012-ps/nfs/Set-NfsClientConfiguration.md | 2 +- docset/winserver2012-ps/nfs/Set-NfsClientgroup.md | 2 +- docset/winserver2012-ps/nfs/Set-NfsMappedIdentity.md | 2 +- docset/winserver2012-ps/nfs/Set-NfsMappingStore.md | 2 +- docset/winserver2012-ps/nfs/Set-NfsNetgroup.md | 2 +- docset/winserver2012-ps/nfs/Set-NfsNetgroupStore.md | 2 +- docset/winserver2012-ps/nfs/Set-NfsServerConfiguration.md | 2 +- docset/winserver2012-ps/nfs/Set-NfsShare.md | 2 +- docset/winserver2012-ps/nfs/Test-NfsMappedIdentity.md | 2 +- docset/winserver2012-ps/nfs/Test-NfsMappingStore.md | 2 +- docset/winserver2012-ps/nps/Export-NpsConfiguration.md | 2 +- docset/winserver2012-ps/nps/Get-NpsRadiusClient.md | 2 +- docset/winserver2012-ps/nps/Get-NpsRemediationServer.md | 2 +- docset/winserver2012-ps/nps/Get-NpsRemediationServerGroup.md | 2 +- docset/winserver2012-ps/nps/Get-NpsSharedSecretTemplate.md | 2 +- docset/winserver2012-ps/nps/Import-NpsConfiguration.md | 2 +- docset/winserver2012-ps/nps/New-NpsRadiusClient.md | 2 +- docset/winserver2012-ps/nps/New-NpsRemediationServer.md | 2 +- docset/winserver2012-ps/nps/New-NpsRemediationServerGroup.md | 2 +- docset/winserver2012-ps/nps/Remove-NpsRadiusClient.md | 2 +- docset/winserver2012-ps/nps/Remove-NpsRemediationServer.md | 2 +- docset/winserver2012-ps/nps/Remove-NpsRemediationServerGroup.md | 2 +- docset/winserver2012-ps/nps/Set-NpsRadiusClient.md | 2 +- .../pki/Add-CertificateEnrollmentPolicyServer.md | 2 +- docset/winserver2012-ps/pki/Export-Certificate.md | 2 +- docset/winserver2012-ps/pki/Export-PfxCertificate.md | 2 +- docset/winserver2012-ps/pki/Get-Certificate.md | 2 +- .../winserver2012-ps/pki/Get-CertificateAutoEnrollmentPolicy.md | 2 +- .../pki/Get-CertificateEnrollmentPolicyServer.md | 2 +- docset/winserver2012-ps/pki/Get-CertificateNotificationTask.md | 2 +- docset/winserver2012-ps/pki/Get-PfxData.md | 2 +- docset/winserver2012-ps/pki/Import-Certificate.md | 2 +- docset/winserver2012-ps/pki/Import-PfxCertificate.md | 2 +- docset/winserver2012-ps/pki/New-CertificateNotificationTask.md | 2 +- docset/winserver2012-ps/pki/New-SelfSignedCertificate.md | 2 +- .../pki/Remove-CertificateEnrollmentPolicyServer.md | 2 +- .../winserver2012-ps/pki/Remove-CertificateNotificationTask.md | 2 +- .../winserver2012-ps/pki/Set-CertificateAutoEnrollmentPolicy.md | 2 +- docset/winserver2012-ps/pki/Switch-Certificate.md | 2 +- docset/winserver2012-ps/pki/Test-Certificate.md | 2 +- docset/winserver2012-ps/printmanagement/Add-Printer.md | 2 +- docset/winserver2012-ps/printmanagement/Add-PrinterDriver.md | 2 +- docset/winserver2012-ps/printmanagement/Add-PrinterPort.md | 2 +- .../winserver2012-ps/printmanagement/Get-PrintConfiguration.md | 2 +- docset/winserver2012-ps/printmanagement/Get-PrintJob.md | 2 +- docset/winserver2012-ps/printmanagement/Get-Printer.md | 2 +- docset/winserver2012-ps/printmanagement/Get-PrinterDriver.md | 2 +- docset/winserver2012-ps/printmanagement/Get-PrinterPort.md | 2 +- docset/winserver2012-ps/printmanagement/Get-PrinterProperty.md | 2 +- docset/winserver2012-ps/printmanagement/Remove-PrintJob.md | 2 +- docset/winserver2012-ps/printmanagement/Remove-Printer.md | 2 +- docset/winserver2012-ps/printmanagement/Remove-PrinterDriver.md | 2 +- docset/winserver2012-ps/printmanagement/Remove-PrinterPort.md | 2 +- docset/winserver2012-ps/printmanagement/Rename-Printer.md | 2 +- docset/winserver2012-ps/printmanagement/Restart-PrintJob.md | 2 +- docset/winserver2012-ps/printmanagement/Resume-PrintJob.md | 2 +- .../winserver2012-ps/printmanagement/Set-PrintConfiguration.md | 2 +- docset/winserver2012-ps/printmanagement/Set-Printer.md | 2 +- docset/winserver2012-ps/printmanagement/Set-PrinterProperty.md | 2 +- docset/winserver2012-ps/printmanagement/Suspend-PrintJob.md | 2 +- docset/winserver2012-ps/remoteaccess/Add-DAAppServer.md | 2 +- docset/winserver2012-ps/remoteaccess/Add-DAClient.md | 2 +- .../remoteaccess/Add-DAClientDnsConfiguration.md | 2 +- docset/winserver2012-ps/remoteaccess/Add-DAEntryPoint.md | 2 +- docset/winserver2012-ps/remoteaccess/Add-DAMgmtServer.md | 2 +- .../remoteaccess/Add-RemoteAccessLoadBalancerNode.md | 2 +- docset/winserver2012-ps/remoteaccess/Add-RemoteAccessRadius.md | 2 +- docset/winserver2012-ps/remoteaccess/Add-VpnIPAddressRange.md | 2 +- docset/winserver2012-ps/remoteaccess/Add-VpnS2SInterface.md | 2 +- .../remoteaccess/Clear-RemoteAccessInboxAccountingStore.md | 2 +- .../remoteaccess/Clear-VpnS2SInterfaceStatistics.md | 2 +- docset/winserver2012-ps/remoteaccess/Connect-VpnS2SInterface.md | 2 +- docset/winserver2012-ps/remoteaccess/Disable-DAMultiSite.md | 2 +- .../remoteaccess/Disable-DAOtpAuthentication.md | 2 +- .../winserver2012-ps/remoteaccess/Disconnect-VpnS2SInterface.md | 2 +- docset/winserver2012-ps/remoteaccess/Disconnect-VpnUser.md | 2 +- docset/winserver2012-ps/remoteaccess/Enable-DAMultiSite.md | 2 +- .../winserver2012-ps/remoteaccess/Enable-DAOtpAuthentication.md | 2 +- docset/winserver2012-ps/remoteaccess/Get-DAAppServer.md | 2 +- docset/winserver2012-ps/remoteaccess/Get-DAClient.md | 2 +- .../remoteaccess/Get-DAClientDnsConfiguration.md | 2 +- docset/winserver2012-ps/remoteaccess/Get-DAEntryPoint.md | 2 +- docset/winserver2012-ps/remoteaccess/Get-DAEntryPointDC.md | 2 +- docset/winserver2012-ps/remoteaccess/Get-DAMgmtServer.md | 2 +- docset/winserver2012-ps/remoteaccess/Get-DAMultiSite.md | 2 +- .../remoteaccess/Get-DANetworkLocationServer.md | 2 +- docset/winserver2012-ps/remoteaccess/Get-DAOtpAuthentication.md | 2 +- docset/winserver2012-ps/remoteaccess/Get-DAServer.md | 2 +- docset/winserver2012-ps/remoteaccess/Get-RemoteAccess.md | 2 +- .../winserver2012-ps/remoteaccess/Get-RemoteAccessAccounting.md | 2 +- .../remoteaccess/Get-RemoteAccessConnectionStatistics.md | 2 +- .../remoteaccess/Get-RemoteAccessConnectionStatisticsSummary.md | 2 +- docset/winserver2012-ps/remoteaccess/Get-RemoteAccessHealth.md | 2 +- .../remoteaccess/Get-RemoteAccessLoadBalancer.md | 2 +- docset/winserver2012-ps/remoteaccess/Get-RemoteAccessRadius.md | 2 +- .../remoteaccess/Get-RemoteAccessUserActivity.md | 2 +- docset/winserver2012-ps/remoteaccess/Get-VpnAuthProtocol.md | 2 +- docset/winserver2012-ps/remoteaccess/Get-VpnS2SInterface.md | 2 +- .../remoteaccess/Get-VpnS2SInterfaceStatistics.md | 2 +- .../remoteaccess/Get-VpnServerIPsecConfiguration.md | 2 +- docset/winserver2012-ps/remoteaccess/Install-RemoteAccess.md | 2 +- docset/winserver2012-ps/remoteaccess/Remove-DAAppServer.md | 2 +- docset/winserver2012-ps/remoteaccess/Remove-DAClient.md | 2 +- .../remoteaccess/Remove-DAClientDnsConfiguration.md | 2 +- docset/winserver2012-ps/remoteaccess/Remove-DAEntryPoint.md | 2 +- docset/winserver2012-ps/remoteaccess/Remove-DAMgmtServer.md | 2 +- .../remoteaccess/Remove-RemoteAccessLoadBalancerNode.md | 2 +- .../winserver2012-ps/remoteaccess/Remove-RemoteAccessRadius.md | 2 +- .../winserver2012-ps/remoteaccess/Remove-VpnIPAddressRange.md | 2 +- docset/winserver2012-ps/remoteaccess/Remove-VpnS2SInterface.md | 2 +- .../winserver2012-ps/remoteaccess/Set-DAAppServerConnection.md | 2 +- docset/winserver2012-ps/remoteaccess/Set-DAClient.md | 2 +- .../remoteaccess/Set-DAClientDnsConfiguration.md | 2 +- docset/winserver2012-ps/remoteaccess/Set-DAEntryPoint.md | 2 +- docset/winserver2012-ps/remoteaccess/Set-DAEntryPointDC.md | 2 +- docset/winserver2012-ps/remoteaccess/Set-DAMultiSite.md | 2 +- .../remoteaccess/Set-DANetworkLocationServer.md | 2 +- docset/winserver2012-ps/remoteaccess/Set-DAOtpAuthentication.md | 2 +- docset/winserver2012-ps/remoteaccess/Set-DAServer.md | 2 +- docset/winserver2012-ps/remoteaccess/Set-RemoteAccess.md | 2 +- .../winserver2012-ps/remoteaccess/Set-RemoteAccessAccounting.md | 2 +- .../remoteaccess/Set-RemoteAccessInboxAccountingStore.md | 2 +- .../remoteaccess/Set-RemoteAccessLoadBalancer.md | 2 +- docset/winserver2012-ps/remoteaccess/Set-RemoteAccessRadius.md | 2 +- docset/winserver2012-ps/remoteaccess/Set-VpnAuthProtocol.md | 2 +- docset/winserver2012-ps/remoteaccess/Set-VpnAuthType.md | 2 +- .../winserver2012-ps/remoteaccess/Set-VpnIPAddressAssignment.md | 2 +- docset/winserver2012-ps/remoteaccess/Set-VpnS2SInterface.md | 2 +- .../remoteaccess/Set-VpnServerIPsecConfiguration.md | 2 +- docset/winserver2012-ps/remoteaccess/Uninstall-RemoteAccess.md | 2 +- docset/winserver2012-ps/remoteaccess/Update-DAMgmtServer.md | 2 +- docset/winserver2012-ps/remotedesktop/Add-RDServer.md | 2 +- docset/winserver2012-ps/remotedesktop/Add-RDSessionHost.md | 2 +- .../remotedesktop/Add-RDVirtualDesktopToCollection.md | 2 +- .../Disable-RDVirtualDesktopADMachineAccountReuse.md | 2 +- docset/winserver2012-ps/remotedesktop/Disconnect-RDUser.md | 2 +- .../Enable-RDVirtualDesktopADMachineAccountReuse.md | 2 +- .../remotedesktop/Export-RDPersonalVirtualDesktopAssignment.md | 2 +- docset/winserver2012-ps/remotedesktop/Get-RDAvailableApp.md | 2 +- docset/winserver2012-ps/remotedesktop/Get-RDCertificate.md | 2 +- .../remotedesktop/Get-RDConnectionBrokerHighAvailability.md | 2 +- .../remotedesktop/Get-RDDeploymentGatewayConfiguration.md | 2 +- .../winserver2012-ps/remotedesktop/Get-RDFileTypeAssociation.md | 2 +- .../remotedesktop/Get-RDLicenseConfiguration.md | 2 +- .../remotedesktop/Get-RDPersonalVirtualDesktopAssignment.md | 2 +- .../remotedesktop/Get-RDPersonalVirtualDesktopPatchSchedule.md | 2 +- docset/winserver2012-ps/remotedesktop/Get-RDRemoteApp.md | 2 +- docset/winserver2012-ps/remotedesktop/Get-RDRemoteDesktop.md | 2 +- docset/winserver2012-ps/remotedesktop/Get-RDServer.md | 2 +- .../winserver2012-ps/remotedesktop/Get-RDSessionCollection.md | 2 +- .../remotedesktop/Get-RDSessionCollectionConfiguration.md | 2 +- docset/winserver2012-ps/remotedesktop/Get-RDSessionHost.md | 2 +- docset/winserver2012-ps/remotedesktop/Get-RDUserSession.md | 2 +- docset/winserver2012-ps/remotedesktop/Get-RDVirtualDesktop.md | 2 +- .../remotedesktop/Get-RDVirtualDesktopCollection.md | 2 +- .../Get-RDVirtualDesktopCollectionConfiguration.md | 2 +- .../remotedesktop/Get-RDVirtualDesktopCollectionJobStatus.md | 2 +- .../remotedesktop/Get-RDVirtualDesktopConcurrency.md | 2 +- .../remotedesktop/Get-RDVirtualDesktopIdleCount.md | 2 +- .../remotedesktop/Get-RDVirtualDesktopTemplateExportPath.md | 2 +- docset/winserver2012-ps/remotedesktop/Get-RDWorkspace.md | 2 +- docset/winserver2012-ps/remotedesktop/Grant-RDOUAccess.md | 2 +- .../remotedesktop/Import-RDPersonalVirtualDesktopAssignment.md | 2 +- docset/winserver2012-ps/remotedesktop/Invoke-RDUserLogoff.md | 2 +- docset/winserver2012-ps/remotedesktop/Move-RDVirtualDesktop.md | 2 +- docset/winserver2012-ps/remotedesktop/New-RDCertificate.md | 2 +- .../remotedesktop/New-RDPersonalVirtualDesktopPatchSchedule.md | 2 +- docset/winserver2012-ps/remotedesktop/New-RDRemoteApp.md | 2 +- .../winserver2012-ps/remotedesktop/New-RDSessionCollection.md | 2 +- .../winserver2012-ps/remotedesktop/New-RDSessionDeployment.md | 2 +- .../remotedesktop/New-RDVirtualDesktopCollection.md | 2 +- .../remotedesktop/New-RDVirtualDesktopDeployment.md | 2 +- .../remotedesktop/Remove-RDPersonalVirtualDesktopAssignment.md | 2 +- .../Remove-RDPersonalVirtualDesktopPatchSchedule.md | 2 +- docset/winserver2012-ps/remotedesktop/Remove-RDRemoteApp.md | 2 +- docset/winserver2012-ps/remotedesktop/Remove-RDServer.md | 2 +- .../remotedesktop/Remove-RDSessionCollection.md | 2 +- docset/winserver2012-ps/remotedesktop/Remove-RDSessionHost.md | 2 +- .../remotedesktop/Remove-RDVirtualDesktopCollection.md | 2 +- .../remotedesktop/Remove-RDVirtualDesktopFromCollection.md | 2 +- docset/winserver2012-ps/remotedesktop/Send-RDUserMessage.md | 2 +- .../remotedesktop/Set-RDActiveManagementServer.md | 2 +- docset/winserver2012-ps/remotedesktop/Set-RDCertificate.md | 2 +- docset/winserver2012-ps/remotedesktop/Set-RDClientAccessName.md | 2 +- .../remotedesktop/Set-RDConnectionBrokerHighAvailability.md | 2 +- .../remotedesktop/Set-RDDatabaseConnectionString.md | 2 +- .../remotedesktop/Set-RDDeploymentGatewayConfiguration.md | 2 +- .../winserver2012-ps/remotedesktop/Set-RDFileTypeAssociation.md | 2 +- .../remotedesktop/Set-RDLicenseConfiguration.md | 2 +- .../remotedesktop/Set-RDPersonalVirtualDesktopAssignment.md | 2 +- .../remotedesktop/Set-RDPersonalVirtualDesktopPatchSchedule.md | 2 +- docset/winserver2012-ps/remotedesktop/Set-RDRemoteApp.md | 2 +- docset/winserver2012-ps/remotedesktop/Set-RDRemoteDesktop.md | 2 +- .../remotedesktop/Set-RDSessionCollectionConfiguration.md | 2 +- docset/winserver2012-ps/remotedesktop/Set-RDSessionHost.md | 2 +- .../Set-RDVirtualDesktopCollectionConfiguration.md | 2 +- .../remotedesktop/Set-RDVirtualDesktopConcurrency.md | 2 +- .../remotedesktop/Set-RDVirtualDesktopIdleCount.md | 2 +- .../remotedesktop/Set-RDVirtualDesktopTemplateExportPath.md | 2 +- docset/winserver2012-ps/remotedesktop/Set-RDWorkspace.md | 2 +- .../remotedesktop/Stop-RDVirtualDesktopCollectionJob.md | 2 +- docset/winserver2012-ps/remotedesktop/Test-RDOUAccess.md | 2 +- .../remotedesktop/Test-RDVirtualDesktopADMachineAccountReuse.md | 2 +- .../remotedesktop/Update-RDVirtualDesktopCollection.md | 2 +- docset/winserver2012-ps/scheduledtasks/Disable-ScheduledTask.md | 2 +- docset/winserver2012-ps/scheduledtasks/Enable-ScheduledTask.md | 2 +- docset/winserver2012-ps/scheduledtasks/Export-ScheduledTask.md | 2 +- .../scheduledtasks/Get-ClusteredScheduledTask.md | 2 +- docset/winserver2012-ps/scheduledtasks/Get-ScheduledTask.md | 2 +- docset/winserver2012-ps/scheduledtasks/Get-ScheduledTaskInfo.md | 2 +- docset/winserver2012-ps/scheduledtasks/New-ScheduledTask.md | 2 +- .../winserver2012-ps/scheduledtasks/New-ScheduledTaskAction.md | 2 +- .../scheduledtasks/New-ScheduledTaskPrincipal.md | 2 +- .../scheduledtasks/New-ScheduledTaskSettingsSet.md | 2 +- .../winserver2012-ps/scheduledtasks/New-ScheduledTaskTrigger.md | 2 +- .../scheduledtasks/Register-ClusteredScheduledTask.md | 2 +- .../winserver2012-ps/scheduledtasks/Register-ScheduledTask.md | 2 +- .../scheduledtasks/Set-ClusteredScheduledTask.md | 2 +- docset/winserver2012-ps/scheduledtasks/Set-ScheduledTask.md | 2 +- docset/winserver2012-ps/scheduledtasks/Start-ScheduledTask.md | 2 +- docset/winserver2012-ps/scheduledtasks/Stop-ScheduledTask.md | 2 +- .../scheduledtasks/Unregister-ClusteredScheduledTask.md | 2 +- .../winserver2012-ps/scheduledtasks/Unregister-ScheduledTask.md | 2 +- docset/winserver2012-ps/secureboot/Confirm-SecureBootUEFI.md | 2 +- docset/winserver2012-ps/secureboot/Format-SecureBootUEFI.md | 2 +- docset/winserver2012-ps/secureboot/Get-SecureBootPolicy.md | 2 +- docset/winserver2012-ps/secureboot/Get-SecureBootUEFI.md | 2 +- docset/winserver2012-ps/secureboot/Set-SecureBootUEFI.md | 2 +- docset/winserver2012-ps/servercore/Get-DisplayResolution.md | 2 +- docset/winserver2012-ps/servercore/Set-DisplayResolution.md | 2 +- .../servermanager/Disable-ServerManagerStandardUserRemoting.md | 2 +- .../servermanager/Enable-ServerManagerStandardUserRemoting.md | 2 +- docset/winserver2012-ps/servermanager/Get-WindowsFeature.md | 2 +- docset/winserver2012-ps/servermanager/Install-WindowsFeature.md | 2 +- .../winserver2012-ps/servermanager/Uninstall-WindowsFeature.md | 2 +- .../winserver2012-ps/servermanagertasks/Get-SMCounterSample.md | 2 +- .../servermanagertasks/Get-SMPerformanceCollector.md | 2 +- .../servermanagertasks/Get-SMServerBpaResult.md | 2 +- .../servermanagertasks/Get-SMServerClusterName.md | 2 +- docset/winserver2012-ps/servermanagertasks/Get-SMServerEvent.md | 2 +- .../winserver2012-ps/servermanagertasks/Get-SMServerFeature.md | 2 +- .../servermanagertasks/Get-SMServerInventory.md | 2 +- .../winserver2012-ps/servermanagertasks/Get-SMServerService.md | 2 +- .../servermanagertasks/Remove-SMServerPerformanceLog.md | 2 +- .../servermanagertasks/Start-SMPerformanceCollector.md | 2 +- .../servermanagertasks/Stop-SMPerformanceCollector.md | 2 +- .../servermigrationcmdlets/Export-SmigServerSetting.md | 2 +- .../servermigrationcmdlets/Get-SmigServerFeature.md | 2 +- .../servermigrationcmdlets/Import-SmigServerSetting.md | 2 +- .../servermigrationcmdlets/Receive-SmigServerData.md | 2 +- .../servermigrationcmdlets/Send-SmigServerData.md | 2 +- docset/winserver2012-ps/smbshare/Block-SmbShareAccess.md | 2 +- docset/winserver2012-ps/smbshare/Close-SmbOpenFile.md | 2 +- docset/winserver2012-ps/smbshare/Close-SmbSession.md | 2 +- docset/winserver2012-ps/smbshare/Get-SmbClientConfiguration.md | 2 +- .../winserver2012-ps/smbshare/Get-SmbClientNetworkInterface.md | 2 +- docset/winserver2012-ps/smbshare/Get-SmbConnection.md | 2 +- docset/winserver2012-ps/smbshare/Get-SmbMapping.md | 2 +- .../winserver2012-ps/smbshare/Get-SmbMultichannelConnection.md | 2 +- .../winserver2012-ps/smbshare/Get-SmbMultichannelConstraint.md | 2 +- docset/winserver2012-ps/smbshare/Get-SmbOpenFile.md | 2 +- docset/winserver2012-ps/smbshare/Get-SmbServerConfiguration.md | 2 +- .../winserver2012-ps/smbshare/Get-SmbServerNetworkInterface.md | 2 +- docset/winserver2012-ps/smbshare/Get-SmbSession.md | 2 +- docset/winserver2012-ps/smbshare/Get-SmbShare.md | 2 +- docset/winserver2012-ps/smbshare/Get-SmbShareAccess.md | 2 +- docset/winserver2012-ps/smbshare/Grant-SmbShareAccess.md | 2 +- docset/winserver2012-ps/smbshare/New-SmbMapping.md | 2 +- .../winserver2012-ps/smbshare/New-SmbMultichannelConstraint.md | 2 +- docset/winserver2012-ps/smbshare/New-SmbShare.md | 2 +- docset/winserver2012-ps/smbshare/Remove-SmbMapping.md | 2 +- .../smbshare/Remove-SmbMultichannelConstraint.md | 2 +- docset/winserver2012-ps/smbshare/Remove-SmbShare.md | 2 +- docset/winserver2012-ps/smbshare/Revoke-SmbShareAccess.md | 2 +- docset/winserver2012-ps/smbshare/Set-SmbClientConfiguration.md | 2 +- docset/winserver2012-ps/smbshare/Set-SmbServerConfiguration.md | 2 +- docset/winserver2012-ps/smbshare/Set-SmbShare.md | 2 +- docset/winserver2012-ps/smbshare/Unblock-SmbShareAccess.md | 2 +- .../smbshare/Update-SmbMultichannelConnection.md | 2 +- docset/winserver2012-ps/smbwitness/Get-SmbWitnessClient.md | 2 +- docset/winserver2012-ps/smbwitness/Move-SmbWitnessClient.md | 2 +- docset/winserver2012-ps/smisconfig/Register-SmisProvider.md | 2 +- docset/winserver2012-ps/smisconfig/Search-SmisProvider.md | 2 +- docset/winserver2012-ps/smisconfig/Unregister-SmisProvider.md | 2 +- docset/winserver2012-ps/storage/Add-InitiatorIdToMaskingSet.md | 2 +- docset/winserver2012-ps/storage/Add-PartitionAccessPath.md | 2 +- docset/winserver2012-ps/storage/Add-PhysicalDisk.md | 2 +- docset/winserver2012-ps/storage/Add-TargetPortToMaskingSet.md | 2 +- docset/winserver2012-ps/storage/Add-VirtualDiskToMaskingSet.md | 2 +- docset/winserver2012-ps/storage/Clear-Disk.md | 2 +- docset/winserver2012-ps/storage/Connect-VirtualDisk.md | 2 +- .../winserver2012-ps/storage/Disable-PhysicalDiskIndication.md | 2 +- docset/winserver2012-ps/storage/Disconnect-VirtualDisk.md | 2 +- docset/winserver2012-ps/storage/Dismount-DiskImage.md | 2 +- .../winserver2012-ps/storage/Enable-PhysicalDiskIndication.md | 2 +- docset/winserver2012-ps/storage/Format-Volume.md | 2 +- docset/winserver2012-ps/storage/Get-Disk.md | 2 +- docset/winserver2012-ps/storage/Get-DiskImage.md | 2 +- docset/winserver2012-ps/storage/Get-FileIntegrity.md | 2 +- docset/winserver2012-ps/storage/Get-InitiatorId.md | 2 +- docset/winserver2012-ps/storage/Get-InitiatorPort.md | 2 +- docset/winserver2012-ps/storage/Get-MaskingSet.md | 2 +- .../winserver2012-ps/storage/Get-OffloadDataTransferSetting.md | 2 +- docset/winserver2012-ps/storage/Get-Partition.md | 2 +- docset/winserver2012-ps/storage/Get-PartitionSupportedSize.md | 2 +- docset/winserver2012-ps/storage/Get-PhysicalDisk.md | 2 +- docset/winserver2012-ps/storage/Get-ResiliencySetting.md | 2 +- docset/winserver2012-ps/storage/Get-StorageJob.md | 2 +- docset/winserver2012-ps/storage/Get-StoragePool.md | 2 +- docset/winserver2012-ps/storage/Get-StorageProvider.md | 2 +- .../winserver2012-ps/storage/Get-StorageReliabilityCounter.md | 2 +- docset/winserver2012-ps/storage/Get-StorageSetting.md | 2 +- docset/winserver2012-ps/storage/Get-StorageSubsystem.md | 2 +- docset/winserver2012-ps/storage/Get-SupportedClusterSizes.md | 2 +- docset/winserver2012-ps/storage/Get-SupportedFileSystems.md | 2 +- docset/winserver2012-ps/storage/Get-TargetPort.md | 2 +- docset/winserver2012-ps/storage/Get-TargetPortal.md | 2 +- docset/winserver2012-ps/storage/Get-VirtualDisk.md | 2 +- docset/winserver2012-ps/storage/Get-VirtualDiskSupportedSize.md | 2 +- docset/winserver2012-ps/storage/Get-Volume.md | 2 +- docset/winserver2012-ps/storage/Get-VolumeCorruptionCount.md | 2 +- docset/winserver2012-ps/storage/Get-VolumeScrubPolicy.md | 2 +- docset/winserver2012-ps/storage/Hide-VirtualDisk.md | 2 +- docset/winserver2012-ps/storage/Initialize-Disk.md | 2 +- docset/winserver2012-ps/storage/Mount-DiskImage.md | 2 +- docset/winserver2012-ps/storage/New-MaskingSet.md | 2 +- docset/winserver2012-ps/storage/New-Partition.md | 2 +- docset/winserver2012-ps/storage/New-StoragePool.md | 2 +- .../winserver2012-ps/storage/New-StorageSubsystemVirtualDisk.md | 2 +- docset/winserver2012-ps/storage/New-VirtualDisk.md | 2 +- docset/winserver2012-ps/storage/New-VirtualDiskClone.md | 2 +- docset/winserver2012-ps/storage/New-VirtualDiskSnapshot.md | 2 +- docset/winserver2012-ps/storage/Optimize-Volume.md | 2 +- docset/winserver2012-ps/storage/Remove-InitiatorId.md | 2 +- .../storage/Remove-InitiatorIdFromMaskingSet.md | 2 +- docset/winserver2012-ps/storage/Remove-MaskingSet.md | 2 +- docset/winserver2012-ps/storage/Remove-Partition.md | 2 +- docset/winserver2012-ps/storage/Remove-PartitionAccessPath.md | 2 +- docset/winserver2012-ps/storage/Remove-PhysicalDisk.md | 2 +- docset/winserver2012-ps/storage/Remove-StoragePool.md | 2 +- .../winserver2012-ps/storage/Remove-TargetPortFromMaskingSet.md | 2 +- docset/winserver2012-ps/storage/Remove-VirtualDisk.md | 2 +- .../storage/Remove-VirtualDiskFromMaskingSet.md | 2 +- docset/winserver2012-ps/storage/Rename-MaskingSet.md | 2 +- docset/winserver2012-ps/storage/Repair-FileIntegrity.md | 2 +- docset/winserver2012-ps/storage/Repair-VirtualDisk.md | 2 +- docset/winserver2012-ps/storage/Repair-Volume.md | 2 +- docset/winserver2012-ps/storage/Reset-PhysicalDisk.md | 2 +- .../winserver2012-ps/storage/Reset-StorageReliabilityCounter.md | 2 +- docset/winserver2012-ps/storage/Resize-Partition.md | 2 +- docset/winserver2012-ps/storage/Resize-VirtualDisk.md | 2 +- docset/winserver2012-ps/storage/Set-Disk.md | 2 +- docset/winserver2012-ps/storage/Set-FileIntegrity.md | 2 +- docset/winserver2012-ps/storage/Set-InitiatorPort.md | 2 +- docset/winserver2012-ps/storage/Set-Partition.md | 2 +- docset/winserver2012-ps/storage/Set-PhysicalDisk.md | 2 +- docset/winserver2012-ps/storage/Set-ResiliencySetting.md | 2 +- docset/winserver2012-ps/storage/Set-StoragePool.md | 2 +- docset/winserver2012-ps/storage/Set-StorageSetting.md | 2 +- docset/winserver2012-ps/storage/Set-StorageSubsystem.md | 2 +- docset/winserver2012-ps/storage/Set-VirtualDisk.md | 2 +- docset/winserver2012-ps/storage/Set-Volume.md | 2 +- docset/winserver2012-ps/storage/Set-VolumeScrubPolicy.md | 2 +- docset/winserver2012-ps/storage/Show-VirtualDisk.md | 2 +- docset/winserver2012-ps/storage/Update-Disk.md | 2 +- docset/winserver2012-ps/storage/Update-HostStorageCache.md | 2 +- docset/winserver2012-ps/storage/Update-StorageProviderCache.md | 2 +- .../troubleshootingpack/Get-TroubleshootingPack.md | 2 +- .../troubleshootingpack/Invoke-TroubleshootingPack.md | 2 +- docset/winserver2012-ps/trustedplatformmodule/Clear-Tpm.md | 2 +- .../trustedplatformmodule/ConvertTo-TpmOwnerAuth.md | 2 +- .../trustedplatformmodule/Disable-TpmAutoProvisioning.md | 2 +- .../trustedplatformmodule/Enable-TpmAutoProvisioning.md | 2 +- docset/winserver2012-ps/trustedplatformmodule/Get-Tpm.md | 2 +- .../trustedplatformmodule/Import-TpmOwnerAuth.md | 2 +- docset/winserver2012-ps/trustedplatformmodule/Initialize-Tpm.md | 2 +- .../winserver2012-ps/trustedplatformmodule/Set-TpmOwnerAuth.md | 2 +- docset/winserver2012-ps/trustedplatformmodule/Unblock-Tpm.md | 2 +- docset/winserver2012-ps/updateservices/Add-WsusComputer.md | 2 +- docset/winserver2012-ps/updateservices/Approve-WsusUpdate.md | 2 +- docset/winserver2012-ps/updateservices/Deny-WsusUpdate.md | 2 +- .../winserver2012-ps/updateservices/Get-WsusClassification.md | 2 +- docset/winserver2012-ps/updateservices/Get-WsusComputer.md | 2 +- docset/winserver2012-ps/updateservices/Get-WsusProduct.md | 2 +- docset/winserver2012-ps/updateservices/Get-WsusServer.md | 2 +- docset/winserver2012-ps/updateservices/Get-WsusUpdate.md | 2 +- .../winserver2012-ps/updateservices/Invoke-WsusServerCleanup.md | 2 +- .../winserver2012-ps/updateservices/Set-WsusClassification.md | 2 +- docset/winserver2012-ps/updateservices/Set-WsusProduct.md | 2 +- .../updateservices/Set-WsusServerSynchronization.md | 2 +- docset/winserver2012-ps/useraccesslogging/Disable-Ual.md | 2 +- docset/winserver2012-ps/useraccesslogging/Enable-Ual.md | 2 +- docset/winserver2012-ps/useraccesslogging/Get-Ual.md | 2 +- docset/winserver2012-ps/useraccesslogging/Get-UalDailyAccess.md | 2 +- .../useraccesslogging/Get-UalDailyDeviceAccess.md | 2 +- .../useraccesslogging/Get-UalDailyUserAccess.md | 2 +- .../winserver2012-ps/useraccesslogging/Get-UalDeviceAccess.md | 2 +- docset/winserver2012-ps/useraccesslogging/Get-UalDns.md | 2 +- docset/winserver2012-ps/useraccesslogging/Get-UalHyperV.md | 2 +- docset/winserver2012-ps/useraccesslogging/Get-UalOverview.md | 2 +- .../winserver2012-ps/useraccesslogging/Get-UalServerDevice.md | 2 +- docset/winserver2012-ps/useraccesslogging/Get-UalServerUser.md | 2 +- docset/winserver2012-ps/useraccesslogging/Get-UalSystemId.md | 2 +- docset/winserver2012-ps/useraccesslogging/Get-UalUserAccess.md | 2 +- docset/winserver2012-ps/vamt/Add-VamtProductKey.md | 2 +- docset/winserver2012-ps/vamt/Export-VamtData.md | 2 +- docset/winserver2012-ps/vamt/Find-VamtManagedMachine.md | 2 +- docset/winserver2012-ps/vamt/Get-VamtConfirmationId.md | 2 +- docset/winserver2012-ps/vamt/Get-VamtProduct.md | 2 +- docset/winserver2012-ps/vamt/Get-VamtProductKey.md | 2 +- docset/winserver2012-ps/vamt/Import-VamtData.md | 2 +- docset/winserver2012-ps/vamt/Initialize-VamtData.md | 2 +- docset/winserver2012-ps/vamt/Install-VamtConfirmationId.md | 2 +- docset/winserver2012-ps/vamt/Install-VamtProductActivation.md | 2 +- docset/winserver2012-ps/vamt/Install-VamtProductKey.md | 2 +- docset/winserver2012-ps/vamt/Update-VamtProduct.md | 2 +- docset/winserver2012-ps/vpnclient/Add-VpnConnection.md | 2 +- docset/winserver2012-ps/vpnclient/Get-VpnConnection.md | 2 +- docset/winserver2012-ps/vpnclient/New-EapConfiguration.md | 2 +- docset/winserver2012-ps/vpnclient/Remove-VpnConnection.md | 2 +- docset/winserver2012-ps/vpnclient/Set-VpnConnection.md | 2 +- docset/winserver2012-ps/vpnclient/Set-VpnConnectionProxy.md | 2 +- docset/winserver2012-ps/waspsext/Get-WASAssessment.md | 2 +- docset/winserver2012-ps/waspsext/Get-WASComputer.md | 2 +- docset/winserver2012-ps/waspsext/Get-WASImage.md | 2 +- docset/winserver2012-ps/waspsext/Get-WASJob.md | 2 +- docset/winserver2012-ps/waspsext/Get-WASJobInstance.md | 2 +- docset/winserver2012-ps/waspsext/Get-WASJobInstanceStatus.md | 2 +- docset/winserver2012-ps/waspsext/Invoke-WASJob.md | 2 +- docset/winserver2012-ps/waspsext/Register-WASImage.md | 2 +- docset/winserver2012-ps/waspsext/Reset-WASComputer.md | 2 +- docset/winserver2012-ps/waspsext/Resume-WASComputer.md | 2 +- docset/winserver2012-ps/waspsext/Skip-WASJobInstance.md | 2 +- docset/winserver2012-ps/waspsext/Stop-WASJobInstance.md | 2 +- docset/winserver2012-ps/waspsext/Update-WASJob.md | 2 +- docset/winserver2012-ps/wdac/Add-OdbcDsn.md | 2 +- docset/winserver2012-ps/wdac/Disable-OdbcPerfCounter.md | 2 +- docset/winserver2012-ps/wdac/Disable-WdacBidTrace.md | 2 +- docset/winserver2012-ps/wdac/Enable-OdbcPerfCounter.md | 2 +- docset/winserver2012-ps/wdac/Enable-WdacBidTrace.md | 2 +- docset/winserver2012-ps/wdac/Get-OdbcDriver.md | 2 +- docset/winserver2012-ps/wdac/Get-OdbcDsn.md | 2 +- docset/winserver2012-ps/wdac/Get-OdbcPerfCounter.md | 2 +- docset/winserver2012-ps/wdac/Get-WdacBidTrace.md | 2 +- docset/winserver2012-ps/wdac/Remove-OdbcDsn.md | 2 +- docset/winserver2012-ps/wdac/Set-OdbcDriver.md | 2 +- docset/winserver2012-ps/wdac/Set-OdbcDsn.md | 2 +- .../winserver2012-ps/webadministration/Add-WebConfiguration.md | 2 +- .../webadministration/Add-WebConfigurationLock.md | 2 +- .../webadministration/Add-WebConfigurationProperty.md | 2 +- .../webadministration/Backup-WebConfiguration.md | 2 +- .../webadministration/Clear-WebCentralCertProvider.md | 2 +- .../webadministration/Clear-WebConfiguration.md | 2 +- .../webadministration/Clear-WebRequestTracingSetting.md | 2 +- .../webadministration/Clear-WebRequestTracingSettings.md | 2 +- .../webadministration/ConvertTo-WebApplication.md | 2 +- .../webadministration/Disable-WebCentralCertProvider.md | 2 +- .../webadministration/Disable-WebGlobalModule.md | 2 +- .../webadministration/Disable-WebRequestTracing.md | 2 +- .../webadministration/Enable-WebCentralCertProvider.md | 2 +- .../webadministration/Enable-WebGlobalModule.md | 2 +- .../webadministration/Enable-WebRequestTracing.md | 2 +- docset/winserver2012-ps/webadministration/Get-WebAppDomain.md | 2 +- .../winserver2012-ps/webadministration/Get-WebAppPoolState.md | 2 +- docset/winserver2012-ps/webadministration/Get-WebApplication.md | 2 +- docset/winserver2012-ps/webadministration/Get-WebBinding.md | 2 +- .../webadministration/Get-WebCentralCertProvider.md | 2 +- docset/winserver2012-ps/webadministration/Get-WebConfigFile.md | 2 +- .../winserver2012-ps/webadministration/Get-WebConfiguration.md | 2 +- .../webadministration/Get-WebConfigurationBackup.md | 2 +- .../webadministration/Get-WebConfigurationLocation.md | 2 +- .../webadministration/Get-WebConfigurationLock.md | 2 +- .../webadministration/Get-WebConfigurationProperty.md | 2 +- docset/winserver2012-ps/webadministration/Get-WebFilePath.md | 2 +- docset/winserver2012-ps/webadministration/Get-WebHandler.md | 2 +- docset/winserver2012-ps/webadministration/Get-WebItemState.md | 2 +- .../winserver2012-ps/webadministration/Get-WebManagedModule.md | 2 +- docset/winserver2012-ps/webadministration/Get-WebRequest.md | 2 +- docset/winserver2012-ps/webadministration/Get-WebURL.md | 2 +- .../webadministration/Get-WebVirtualDirectory.md | 2 +- docset/winserver2012-ps/webadministration/Get-Website.md | 2 +- docset/winserver2012-ps/webadministration/Get-WebsiteState.md | 2 +- docset/winserver2012-ps/webadministration/New-WebAppPool.md | 2 +- docset/winserver2012-ps/webadministration/New-WebApplication.md | 2 +- docset/winserver2012-ps/webadministration/New-WebBinding.md | 2 +- docset/winserver2012-ps/webadministration/New-WebFtpSite.md | 2 +- .../winserver2012-ps/webadministration/New-WebGlobalModule.md | 2 +- docset/winserver2012-ps/webadministration/New-WebHandler.md | 2 +- .../winserver2012-ps/webadministration/New-WebManagedModule.md | 2 +- .../webadministration/New-WebVirtualDirectory.md | 2 +- docset/winserver2012-ps/webadministration/New-Website.md | 2 +- docset/winserver2012-ps/webadministration/Remove-WebAppPool.md | 2 +- .../winserver2012-ps/webadministration/Remove-WebApplication.md | 2 +- docset/winserver2012-ps/webadministration/Remove-WebBinding.md | 2 +- .../webadministration/Remove-WebConfigurationBackup.md | 2 +- .../webadministration/Remove-WebConfigurationLocation.md | 2 +- .../webadministration/Remove-WebConfigurationLock.md | 2 +- .../webadministration/Remove-WebConfigurationProperty.md | 2 +- .../webadministration/Remove-WebGlobalModule.md | 2 +- docset/winserver2012-ps/webadministration/Remove-WebHandler.md | 2 +- .../webadministration/Remove-WebManagedModule.md | 2 +- .../webadministration/Remove-WebVirtualDirectory.md | 2 +- docset/winserver2012-ps/webadministration/Remove-Website.md | 2 +- .../webadministration/Rename-WebConfigurationLocation.md | 2 +- docset/winserver2012-ps/webadministration/Restart-WebAppPool.md | 2 +- docset/winserver2012-ps/webadministration/Restart-WebItem.md | 2 +- .../webadministration/Restore-WebConfiguration.md | 2 +- .../webadministration/Select-WebConfiguration.md | 2 +- docset/winserver2012-ps/webadministration/Set-WebBinding.md | 2 +- .../webadministration/Set-WebCentralCertProvider.md | 2 +- .../webadministration/Set-WebCentralCertProviderCredential.md | 2 +- .../winserver2012-ps/webadministration/Set-WebConfiguration.md | 2 +- .../webadministration/Set-WebConfigurationProperty.md | 2 +- .../winserver2012-ps/webadministration/Set-WebGlobalModule.md | 2 +- docset/winserver2012-ps/webadministration/Set-WebHandler.md | 2 +- .../winserver2012-ps/webadministration/Set-WebManagedModule.md | 2 +- docset/winserver2012-ps/webadministration/Start-WebAppPool.md | 2 +- .../winserver2012-ps/webadministration/Start-WebCommitDelay.md | 2 +- docset/winserver2012-ps/webadministration/Start-WebItem.md | 2 +- docset/winserver2012-ps/webadministration/Start-Website.md | 2 +- docset/winserver2012-ps/webadministration/Stop-WebAppPool.md | 2 +- .../winserver2012-ps/webadministration/Stop-WebCommitDelay.md | 2 +- docset/winserver2012-ps/webadministration/Stop-WebItem.md | 2 +- docset/winserver2012-ps/webadministration/Stop-Website.md | 2 +- docset/winserver2012-ps/whea/Get-WheaMemoryPolicy.md | 2 +- docset/winserver2012-ps/whea/Set-WheaMemoryPolicy.md | 2 +- .../windowsdeveloperlicense/Get-WindowsDeveloperLicense.md | 2 +- .../Show-WindowsDeveloperLicenseRegistration.md | 2 +- .../Unregister-WindowsDeveloperLicense.md | 2 +- .../windowserrorreporting/Disable-WindowsErrorReporting.md | 2 +- .../windowserrorreporting/Enable-WindowsErrorReporting.md | 2 +- .../windowserrorreporting/Get-WindowsErrorReporting.md | 2 +- .../winserver2012-ps/windowsserverbackup/Add-WBBackupTarget.md | 2 +- .../windowsserverbackup/Add-WBBareMetalRecovery.md | 2 +- docset/winserver2012-ps/windowsserverbackup/Add-WBFileSpec.md | 2 +- .../winserver2012-ps/windowsserverbackup/Add-WBSystemState.md | 2 +- .../windowsserverbackup/Add-WBVirtualMachine.md | 2 +- docset/winserver2012-ps/windowsserverbackup/Add-WBVolume.md | 2 +- docset/winserver2012-ps/windowsserverbackup/Get-WBBackupSet.md | 2 +- .../winserver2012-ps/windowsserverbackup/Get-WBBackupTarget.md | 2 +- .../windowsserverbackup/Get-WBBackupVolumeBrowsePath.md | 2 +- .../windowsserverbackup/Get-WBBareMetalRecovery.md | 2 +- docset/winserver2012-ps/windowsserverbackup/Get-WBDisk.md | 2 +- docset/winserver2012-ps/windowsserverbackup/Get-WBFileSpec.md | 2 +- docset/winserver2012-ps/windowsserverbackup/Get-WBJob.md | 2 +- .../windowsserverbackup/Get-WBPerformanceConfiguration.md | 2 +- docset/winserver2012-ps/windowsserverbackup/Get-WBPolicy.md | 2 +- docset/winserver2012-ps/windowsserverbackup/Get-WBSchedule.md | 2 +- docset/winserver2012-ps/windowsserverbackup/Get-WBSummary.md | 2 +- .../winserver2012-ps/windowsserverbackup/Get-WBSystemState.md | 2 +- .../windowsserverbackup/Get-WBVirtualMachine.md | 2 +- docset/winserver2012-ps/windowsserverbackup/Get-WBVolume.md | 2 +- .../windowsserverbackup/Get-WBVssBackupOption.md | 2 +- .../winserver2012-ps/windowsserverbackup/New-WBBackupTarget.md | 2 +- docset/winserver2012-ps/windowsserverbackup/New-WBFileSpec.md | 2 +- docset/winserver2012-ps/windowsserverbackup/New-WBPolicy.md | 2 +- .../winserver2012-ps/windowsserverbackup/Remove-WBBackupSet.md | 2 +- .../windowsserverbackup/Remove-WBBackupTarget.md | 2 +- .../windowsserverbackup/Remove-WBBareMetalRecovery.md | 2 +- docset/winserver2012-ps/windowsserverbackup/Remove-WBCatalog.md | 2 +- .../winserver2012-ps/windowsserverbackup/Remove-WBFileSpec.md | 2 +- docset/winserver2012-ps/windowsserverbackup/Remove-WBPolicy.md | 2 +- .../windowsserverbackup/Remove-WBSystemState.md | 2 +- .../windowsserverbackup/Remove-WBVirtualMachine.md | 2 +- docset/winserver2012-ps/windowsserverbackup/Remove-WBVolume.md | 2 +- .../winserver2012-ps/windowsserverbackup/Restore-WBCatalog.md | 2 +- docset/winserver2012-ps/windowsserverbackup/Resume-WBBackup.md | 2 +- .../windowsserverbackup/Resume-WBVolumeRecovery.md | 2 +- .../windowsserverbackup/Set-WBPerformanceConfiguration.md | 2 +- docset/winserver2012-ps/windowsserverbackup/Set-WBPolicy.md | 2 +- docset/winserver2012-ps/windowsserverbackup/Set-WBSchedule.md | 2 +- .../windowsserverbackup/Set-WBVssBackupOption.md | 2 +- .../windowsserverbackup/Start-WBApplicationRecovery.md | 2 +- docset/winserver2012-ps/windowsserverbackup/Start-WBBackup.md | 2 +- .../windowsserverbackup/Start-WBFileRecovery.md | 2 +- .../windowsserverbackup/Start-WBHyperVRecovery.md | 2 +- .../windowsserverbackup/Start-WBSystemStateRecovery.md | 2 +- .../windowsserverbackup/Start-WBVolumeRecovery.md | 2 +- docset/winserver2012-ps/windowsserverbackup/Stop-WBJob.md | 2 +- .../winserver2012-ps/wsscmdlets/Add-WssBackupConfiguration.md | 2 +- docset/winserver2012-ps/wsscmdlets/Add-WssBackupSchedule.md | 2 +- .../winserver2012-ps/wsscmdlets/Add-WssBackupSystemRecovery.md | 2 +- docset/winserver2012-ps/wsscmdlets/Add-WssBackupTarget.md | 2 +- docset/winserver2012-ps/wsscmdlets/Add-WssBackupVolume.md | 2 +- docset/winserver2012-ps/wsscmdlets/Add-WssComputerAccess.md | 2 +- docset/winserver2012-ps/wsscmdlets/Add-WssDisksToSpacesPool.md | 2 +- docset/winserver2012-ps/wsscmdlets/Add-WssFolder.md | 2 +- docset/winserver2012-ps/wsscmdlets/Add-WssLocalMachineCert.md | 2 +- .../winserver2012-ps/wsscmdlets/Add-WssRemoteWebAccessLink.md | 2 +- docset/winserver2012-ps/wsscmdlets/Add-WssUser.md | 2 +- docset/winserver2012-ps/wsscmdlets/Clear-WssAlert.md | 2 +- .../winserver2012-ps/wsscmdlets/Copy-WssClientRecoveryImage.md | 2 +- docset/winserver2012-ps/wsscmdlets/Disable-FolderRedirection.md | 2 +- docset/winserver2012-ps/wsscmdlets/Disable-SecurityPolicy.md | 2 +- docset/winserver2012-ps/wsscmdlets/Disable-WssAlert.md | 2 +- docset/winserver2012-ps/wsscmdlets/Disable-WssBackupPolicy.md | 2 +- docset/winserver2012-ps/wsscmdlets/Disable-WssClientBackup.md | 2 +- .../wsscmdlets/Disable-WssClientBackupVolume.md | 2 +- .../winserver2012-ps/wsscmdlets/Disable-WssRemoteWebAccess.md | 2 +- docset/winserver2012-ps/wsscmdlets/Enable-FolderRedirection.md | 2 +- docset/winserver2012-ps/wsscmdlets/Enable-SecurityPolicy.md | 2 +- docset/winserver2012-ps/wsscmdlets/Enable-WssAlert.md | 2 +- docset/winserver2012-ps/wsscmdlets/Enable-WssClientBackup.md | 2 +- .../winserver2012-ps/wsscmdlets/Enable-WssClientBackupVolume.md | 2 +- docset/winserver2012-ps/wsscmdlets/Enable-WssRemoteWebAccess.md | 2 +- docset/winserver2012-ps/wsscmdlets/Exit-WssDomain.md | 2 +- docset/winserver2012-ps/wsscmdlets/Get-WssAddIn.md | 2 +- docset/winserver2012-ps/wsscmdlets/Get-WssAlert.md | 2 +- docset/winserver2012-ps/wsscmdlets/Get-WssAlertEmailSetting.md | 2 +- .../winserver2012-ps/wsscmdlets/Get-WssBackupConfiguration.md | 2 +- docset/winserver2012-ps/wsscmdlets/Get-WssBackupDisk.md | 2 +- docset/winserver2012-ps/wsscmdlets/Get-WssBackupJob.md | 2 +- docset/winserver2012-ps/wsscmdlets/Get-WssBackupPolicy.md | 2 +- docset/winserver2012-ps/wsscmdlets/Get-WssBackupSchedule.md | 2 +- docset/winserver2012-ps/wsscmdlets/Get-WssBackupSet.md | 2 +- .../winserver2012-ps/wsscmdlets/Get-WssBackupSystemRecovery.md | 2 +- docset/winserver2012-ps/wsscmdlets/Get-WssBackupTarget.md | 2 +- docset/winserver2012-ps/wsscmdlets/Get-WssBackupVolume.md | 2 +- docset/winserver2012-ps/wsscmdlets/Get-WssBpaScanResult.md | 2 +- docset/winserver2012-ps/wsscmdlets/Get-WssClientBackup.md | 2 +- docset/winserver2012-ps/wsscmdlets/Get-WssClientBackupClient.md | 2 +- .../wsscmdlets/Get-WssClientBackupOperationStatus.md | 2 +- docset/winserver2012-ps/wsscmdlets/Get-WssClientBackupVolume.md | 2 +- .../winserver2012-ps/wsscmdlets/Get-WssClientBackupVolumeJob.md | 2 +- docset/winserver2012-ps/wsscmdlets/Get-WssComputer.md | 2 +- docset/winserver2012-ps/wsscmdlets/Get-WssDisk.md | 2 +- .../wsscmdlets/Get-WssDomainNameConfiguration.md | 2 +- docset/winserver2012-ps/wsscmdlets/Get-WssDrive.md | 2 +- docset/winserver2012-ps/wsscmdlets/Get-WssDriveInUse.md | 2 +- .../wsscmdlets/Get-WssFileHistoryConfiguration.md | 2 +- .../wsscmdlets/Get-WssFileHistoryManagementStatus.md | 2 +- docset/winserver2012-ps/wsscmdlets/Get-WssFolder.md | 2 +- .../wsscmdlets/Get-WssGlobalClientBackupPolicy.md | 2 +- docset/winserver2012-ps/wsscmdlets/Get-WssMediaLibraryName.md | 2 +- docset/winserver2012-ps/wsscmdlets/Get-WssMediaServerEnabled.md | 2 +- docset/winserver2012-ps/wsscmdlets/Get-WssMediaSharedFolder.md | 2 +- docset/winserver2012-ps/wsscmdlets/Get-WssMountVhd.md | 2 +- docset/winserver2012-ps/wsscmdlets/Get-WssPasswordPolicy.md | 2 +- docset/winserver2012-ps/wsscmdlets/Get-WssRecoveryItem.md | 2 +- docset/winserver2012-ps/wsscmdlets/Get-WssRemoteConnection.md | 2 +- .../wsscmdlets/Get-WssRemoteWebAccessBackgroundImage.md | 2 +- .../winserver2012-ps/wsscmdlets/Get-WssRemoteWebAccessLink.md | 2 +- .../winserver2012-ps/wsscmdlets/Get-WssRemoteWebAccessLogo.md | 2 +- .../winserver2012-ps/wsscmdlets/Get-WssRemoteWebAccessStatus.md | 2 +- .../winserver2012-ps/wsscmdlets/Get-WssRemoteWebAccessTitle.md | 2 +- docset/winserver2012-ps/wsscmdlets/Get-WssRouterInformation.md | 2 +- .../wsscmdlets/Get-WssServerConnectionOption.md | 2 +- docset/winserver2012-ps/wsscmdlets/Get-WssSpacesPool.md | 2 +- docset/winserver2012-ps/wsscmdlets/Get-WssUser.md | 2 +- docset/winserver2012-ps/wsscmdlets/Get-WssWinSatCpuScore.md | 2 +- .../wsscmdlets/Get-WssWinSatCpuScoreUserConfigurable.md | 2 +- docset/winserver2012-ps/wsscmdlets/Import-WssUser.md | 2 +- docset/winserver2012-ps/wsscmdlets/Initialize-WssBackupDisk.md | 2 +- docset/winserver2012-ps/wsscmdlets/Initialize-WssDisk.md | 2 +- docset/winserver2012-ps/wsscmdlets/Install-WssAddIn.md | 2 +- docset/winserver2012-ps/wsscmdlets/Install-WssVpnServer.md | 2 +- docset/winserver2012-ps/wsscmdlets/Invoke-WssBpaScan.md | 2 +- docset/winserver2012-ps/wsscmdlets/Join-WssDomain.md | 2 +- docset/winserver2012-ps/wsscmdlets/Measure-WssFolder.md | 2 +- docset/winserver2012-ps/wsscmdlets/Move-WssFolder.md | 2 +- .../winserver2012-ps/wsscmdlets/New-WssBackupConfiguration.md | 2 +- docset/winserver2012-ps/wsscmdlets/New-WssBackupTarget.md | 2 +- docset/winserver2012-ps/wsscmdlets/New-WssRecoveryOption.md | 2 +- .../wsscmdlets/Remove-WssBackupConfiguration.md | 2 +- docset/winserver2012-ps/wsscmdlets/Remove-WssBackupSchedule.md | 2 +- .../wsscmdlets/Remove-WssBackupSystemRecovery.md | 2 +- docset/winserver2012-ps/wsscmdlets/Remove-WssBackupTarget.md | 2 +- docset/winserver2012-ps/wsscmdlets/Remove-WssBackupVolume.md | 2 +- docset/winserver2012-ps/wsscmdlets/Remove-WssComputer.md | 2 +- docset/winserver2012-ps/wsscmdlets/Remove-WssComputerAccess.md | 2 +- docset/winserver2012-ps/wsscmdlets/Remove-WssFolder.md | 2 +- .../wsscmdlets/Remove-WssRemoteWebAccessLink.md | 2 +- docset/winserver2012-ps/wsscmdlets/Remove-WssUser.md | 2 +- docset/winserver2012-ps/wsscmdlets/Repair-WssAlert.md | 2 +- .../wsscmdlets/Repair-WssMediaStreamingMetadata.md | 2 +- docset/winserver2012-ps/wsscmdlets/Repair-WssRemoteWebAccess.md | 2 +- .../wsscmdlets/Repair-WssRouterConfiguration.md | 2 +- docset/winserver2012-ps/wsscmdlets/Resume-WssBackupPolicy.md | 2 +- docset/winserver2012-ps/wsscmdlets/Select-WssMountVhd.md | 2 +- docset/winserver2012-ps/wsscmdlets/Set-WssAlertEmailSetting.md | 2 +- docset/winserver2012-ps/wsscmdlets/Set-WssBackupPolicy.md | 2 +- docset/winserver2012-ps/wsscmdlets/Set-WssClientBackup.md | 2 +- .../wsscmdlets/Set-WssClientBackupVolumeExcludedFolder.md | 2 +- .../wsscmdlets/Set-WssDomainNameConfiguration.md | 2 +- docset/winserver2012-ps/wsscmdlets/Set-WssDrive.md | 2 +- .../wsscmdlets/Set-WssFileHistoryConfiguration.md | 2 +- .../wsscmdlets/Set-WssFileHistoryManagementStatus.md | 2 +- docset/winserver2012-ps/wsscmdlets/Set-WssFolder.md | 2 +- .../wsscmdlets/Set-WssGlobalClientBackupPolicy.md | 2 +- docset/winserver2012-ps/wsscmdlets/Set-WssImportGroup.md | 2 +- .../winserver2012-ps/wsscmdlets/Set-WssMediaLibraryInclusion.md | 2 +- docset/winserver2012-ps/wsscmdlets/Set-WssMediaLibraryName.md | 2 +- docset/winserver2012-ps/wsscmdlets/Set-WssMediaServerEnabled.md | 2 +- .../wsscmdlets/Set-WssRemoteWebAccessBackgroundImage.md | 2 +- .../winserver2012-ps/wsscmdlets/Set-WssRemoteWebAccessLogo.md | 2 +- .../winserver2012-ps/wsscmdlets/Set-WssRemoteWebAccessTitle.md | 2 +- .../wsscmdlets/Set-WssServerConnectionOption.md | 2 +- docset/winserver2012-ps/wsscmdlets/Set-WssUserAccess.md | 2 +- docset/winserver2012-ps/wsscmdlets/Set-WssWinSatCpuScore.md | 2 +- docset/winserver2012-ps/wsscmdlets/Start-WssBackupJob.md | 2 +- docset/winserver2012-ps/wsscmdlets/Start-WssClientBackup.md | 2 +- .../winserver2012-ps/wsscmdlets/Start-WssClientBackupRepair.md | 2 +- .../winserver2012-ps/wsscmdlets/Start-WssServerFileRestore.md | 2 +- .../winserver2012-ps/wsscmdlets/Start-WssServerVolumeRestore.md | 2 +- docset/winserver2012-ps/wsscmdlets/Stop-WssBackupJob.md | 2 +- docset/winserver2012-ps/wsscmdlets/Stop-WssClientBackup.md | 2 +- .../winserver2012-ps/wsscmdlets/Stop-WssClientBackupRepair.md | 2 +- docset/winserver2012-ps/wsscmdlets/Suspend-WssBackupPolicy.md | 2 +- docset/winserver2012-ps/wsscmdlets/Sync-WssUser.md | 2 +- docset/winserver2012-ps/wsscmdlets/Test-WssAlertEmail.md | 2 +- docset/winserver2012-ps/wsscmdlets/Test-WssDrive.md | 2 +- docset/winserver2012-ps/wsscmdlets/Test-WssHealth.md | 2 +- .../wsscmdlets/Test-WssVpnServerInstallation.md | 2 +- docset/winserver2012-ps/wsscmdlets/Uninstall-WssAddIn.md | 2 +- docset/winserver2012-ps/wsscmdlets/Uninstall-WssVpnServer.md | 2 +- .../activedirectory/Get-ADAccountAuthorizationGroup.md | 2 +- 2159 files changed, 2159 insertions(+), 2159 deletions(-) diff --git a/docset/winserver2012-ps/activedirectory/Add-ADCentralAccessPolicyMember.md b/docset/winserver2012-ps/activedirectory/Add-ADCentralAccessPolicyMember.md index 84e08b97ad..086f02df51 100644 --- a/docset/winserver2012-ps/activedirectory/Add-ADCentralAccessPolicyMember.md +++ b/docset/winserver2012-ps/activedirectory/Add-ADCentralAccessPolicyMember.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/add-adcentralaccesspolicymember?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/add-adcentralaccesspolicymember?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Add-ADComputerServiceAccount.md b/docset/winserver2012-ps/activedirectory/Add-ADComputerServiceAccount.md index 224de66393..ebd12d7b49 100644 --- a/docset/winserver2012-ps/activedirectory/Add-ADComputerServiceAccount.md +++ b/docset/winserver2012-ps/activedirectory/Add-ADComputerServiceAccount.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/add-adcomputerserviceaccount?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/add-adcomputerserviceaccount?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Add-ADDomainControllerPasswordReplicationPolicy.md b/docset/winserver2012-ps/activedirectory/Add-ADDomainControllerPasswordReplicationPolicy.md index affb7b9546..a028f9d161 100644 --- a/docset/winserver2012-ps/activedirectory/Add-ADDomainControllerPasswordReplicationPolicy.md +++ b/docset/winserver2012-ps/activedirectory/Add-ADDomainControllerPasswordReplicationPolicy.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/add-addomaincontrollerpasswordreplicationpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/add-addomaincontrollerpasswordreplicationpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Add-ADFineGrainedPasswordPolicySubject.md b/docset/winserver2012-ps/activedirectory/Add-ADFineGrainedPasswordPolicySubject.md index 364facf3e8..391ec0f8cf 100644 --- a/docset/winserver2012-ps/activedirectory/Add-ADFineGrainedPasswordPolicySubject.md +++ b/docset/winserver2012-ps/activedirectory/Add-ADFineGrainedPasswordPolicySubject.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/add-adfinegrainedpasswordpolicysubject?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/add-adfinegrainedpasswordpolicysubject?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Add-ADGroupMember.md b/docset/winserver2012-ps/activedirectory/Add-ADGroupMember.md index eb81ce66ef..9338b1a427 100644 --- a/docset/winserver2012-ps/activedirectory/Add-ADGroupMember.md +++ b/docset/winserver2012-ps/activedirectory/Add-ADGroupMember.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/add-adgroupmember?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/add-adgroupmember?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Add-ADPrincipalGroupMembership.md b/docset/winserver2012-ps/activedirectory/Add-ADPrincipalGroupMembership.md index 7b76507cbb..e8e37255b5 100644 --- a/docset/winserver2012-ps/activedirectory/Add-ADPrincipalGroupMembership.md +++ b/docset/winserver2012-ps/activedirectory/Add-ADPrincipalGroupMembership.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/add-adprincipalgroupmembership?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/add-adprincipalgroupmembership?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Add-ADResourcePropertyListMember.md b/docset/winserver2012-ps/activedirectory/Add-ADResourcePropertyListMember.md index a7d20a4d6a..21a24ab122 100644 --- a/docset/winserver2012-ps/activedirectory/Add-ADResourcePropertyListMember.md +++ b/docset/winserver2012-ps/activedirectory/Add-ADResourcePropertyListMember.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/add-adresourcepropertylistmember?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/add-adresourcepropertylistmember?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Clear-ADAccountExpiration.md b/docset/winserver2012-ps/activedirectory/Clear-ADAccountExpiration.md index b9ea79b897..43f879751b 100644 --- a/docset/winserver2012-ps/activedirectory/Clear-ADAccountExpiration.md +++ b/docset/winserver2012-ps/activedirectory/Clear-ADAccountExpiration.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/clear-adaccountexpiration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/clear-adaccountexpiration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Clear-ADClaimTransformLink.md b/docset/winserver2012-ps/activedirectory/Clear-ADClaimTransformLink.md index 113e8415c4..241745305f 100644 --- a/docset/winserver2012-ps/activedirectory/Clear-ADClaimTransformLink.md +++ b/docset/winserver2012-ps/activedirectory/Clear-ADClaimTransformLink.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/clear-adclaimtransformlink?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/clear-adclaimtransformlink?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Disable-ADAccount.md b/docset/winserver2012-ps/activedirectory/Disable-ADAccount.md index 59f4367cdf..f9d635fa29 100644 --- a/docset/winserver2012-ps/activedirectory/Disable-ADAccount.md +++ b/docset/winserver2012-ps/activedirectory/Disable-ADAccount.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/disable-adaccount?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/disable-adaccount?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Disable-ADOptionalFeature.md b/docset/winserver2012-ps/activedirectory/Disable-ADOptionalFeature.md index 232bfa25cb..d90dd54136 100644 --- a/docset/winserver2012-ps/activedirectory/Disable-ADOptionalFeature.md +++ b/docset/winserver2012-ps/activedirectory/Disable-ADOptionalFeature.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/disable-adoptionalfeature?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/disable-adoptionalfeature?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Enable-ADAccount.md b/docset/winserver2012-ps/activedirectory/Enable-ADAccount.md index 0aafbd52c5..107f344c06 100644 --- a/docset/winserver2012-ps/activedirectory/Enable-ADAccount.md +++ b/docset/winserver2012-ps/activedirectory/Enable-ADAccount.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/enable-adaccount?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/enable-adaccount?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Enable-ADOptionalFeature.md b/docset/winserver2012-ps/activedirectory/Enable-ADOptionalFeature.md index 711f2d9ac2..e517279c16 100644 --- a/docset/winserver2012-ps/activedirectory/Enable-ADOptionalFeature.md +++ b/docset/winserver2012-ps/activedirectory/Enable-ADOptionalFeature.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/enable-adoptionalfeature?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/enable-adoptionalfeature?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Get-ADAccountAuthorizationGroup.md b/docset/winserver2012-ps/activedirectory/Get-ADAccountAuthorizationGroup.md index 7611341927..38b63cb27d 100644 --- a/docset/winserver2012-ps/activedirectory/Get-ADAccountAuthorizationGroup.md +++ b/docset/winserver2012-ps/activedirectory/Get-ADAccountAuthorizationGroup.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adaccountauthorizationgroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adaccountauthorizationgroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Get-ADAccountResultantPasswordReplicationPolicy.md b/docset/winserver2012-ps/activedirectory/Get-ADAccountResultantPasswordReplicationPolicy.md index 366c01c913..d4756f861c 100644 --- a/docset/winserver2012-ps/activedirectory/Get-ADAccountResultantPasswordReplicationPolicy.md +++ b/docset/winserver2012-ps/activedirectory/Get-ADAccountResultantPasswordReplicationPolicy.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adaccountresultantpasswordreplicationpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adaccountresultantpasswordreplicationpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Get-ADCentralAccessPolicy.md b/docset/winserver2012-ps/activedirectory/Get-ADCentralAccessPolicy.md index 72a3701bb2..1155a634c1 100644 --- a/docset/winserver2012-ps/activedirectory/Get-ADCentralAccessPolicy.md +++ b/docset/winserver2012-ps/activedirectory/Get-ADCentralAccessPolicy.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adcentralaccesspolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adcentralaccesspolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Get-ADCentralAccessRule.md b/docset/winserver2012-ps/activedirectory/Get-ADCentralAccessRule.md index d0e925eaac..295f597d75 100644 --- a/docset/winserver2012-ps/activedirectory/Get-ADCentralAccessRule.md +++ b/docset/winserver2012-ps/activedirectory/Get-ADCentralAccessRule.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adcentralaccessrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adcentralaccessrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Get-ADClaimTransformPolicy.md b/docset/winserver2012-ps/activedirectory/Get-ADClaimTransformPolicy.md index 7e68d66785..76c5ba54f0 100644 --- a/docset/winserver2012-ps/activedirectory/Get-ADClaimTransformPolicy.md +++ b/docset/winserver2012-ps/activedirectory/Get-ADClaimTransformPolicy.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adclaimtransformpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adclaimtransformpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Get-ADClaimType.md b/docset/winserver2012-ps/activedirectory/Get-ADClaimType.md index dabcfd3bd8..095e940603 100644 --- a/docset/winserver2012-ps/activedirectory/Get-ADClaimType.md +++ b/docset/winserver2012-ps/activedirectory/Get-ADClaimType.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adclaimtype?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adclaimtype?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Get-ADComputer.md b/docset/winserver2012-ps/activedirectory/Get-ADComputer.md index 152813d59f..327dfd0d32 100644 --- a/docset/winserver2012-ps/activedirectory/Get-ADComputer.md +++ b/docset/winserver2012-ps/activedirectory/Get-ADComputer.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adcomputer?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adcomputer?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Get-ADComputerServiceAccount.md b/docset/winserver2012-ps/activedirectory/Get-ADComputerServiceAccount.md index 468b373703..f634562e18 100644 --- a/docset/winserver2012-ps/activedirectory/Get-ADComputerServiceAccount.md +++ b/docset/winserver2012-ps/activedirectory/Get-ADComputerServiceAccount.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adcomputerserviceaccount?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adcomputerserviceaccount?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Get-ADDCCloningExcludedApplicationList.md b/docset/winserver2012-ps/activedirectory/Get-ADDCCloningExcludedApplicationList.md index 9d1c10d336..d6fd9442fe 100644 --- a/docset/winserver2012-ps/activedirectory/Get-ADDCCloningExcludedApplicationList.md +++ b/docset/winserver2012-ps/activedirectory/Get-ADDCCloningExcludedApplicationList.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-addccloningexcludedapplicationlist?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-addccloningexcludedapplicationlist?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Get-ADDefaultDomainPasswordPolicy.md b/docset/winserver2012-ps/activedirectory/Get-ADDefaultDomainPasswordPolicy.md index fd6d6ba563..6c4aa2e6a8 100644 --- a/docset/winserver2012-ps/activedirectory/Get-ADDefaultDomainPasswordPolicy.md +++ b/docset/winserver2012-ps/activedirectory/Get-ADDefaultDomainPasswordPolicy.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-addefaultdomainpasswordpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-addefaultdomainpasswordpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Get-ADDomain.md b/docset/winserver2012-ps/activedirectory/Get-ADDomain.md index 62de5a7a0c..15b25a55b5 100644 --- a/docset/winserver2012-ps/activedirectory/Get-ADDomain.md +++ b/docset/winserver2012-ps/activedirectory/Get-ADDomain.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-addomain?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-addomain?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Get-ADDomainController.md b/docset/winserver2012-ps/activedirectory/Get-ADDomainController.md index f965049f37..84272c9c02 100644 --- a/docset/winserver2012-ps/activedirectory/Get-ADDomainController.md +++ b/docset/winserver2012-ps/activedirectory/Get-ADDomainController.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-addomaincontroller?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-addomaincontroller?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Get-ADDomainControllerPasswordReplicationPolicy.md b/docset/winserver2012-ps/activedirectory/Get-ADDomainControllerPasswordReplicationPolicy.md index 5dd2381caa..9746674caf 100644 --- a/docset/winserver2012-ps/activedirectory/Get-ADDomainControllerPasswordReplicationPolicy.md +++ b/docset/winserver2012-ps/activedirectory/Get-ADDomainControllerPasswordReplicationPolicy.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-addomaincontrollerpasswordreplicationpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-addomaincontrollerpasswordreplicationpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Get-ADDomainControllerPasswordReplicationPolicyUsage.md b/docset/winserver2012-ps/activedirectory/Get-ADDomainControllerPasswordReplicationPolicyUsage.md index debd865eac..267196d4f7 100644 --- a/docset/winserver2012-ps/activedirectory/Get-ADDomainControllerPasswordReplicationPolicyUsage.md +++ b/docset/winserver2012-ps/activedirectory/Get-ADDomainControllerPasswordReplicationPolicyUsage.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-addomaincontrollerpasswordreplicationpolicyusage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-addomaincontrollerpasswordreplicationpolicyusage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Get-ADFineGrainedPasswordPolicy.md b/docset/winserver2012-ps/activedirectory/Get-ADFineGrainedPasswordPolicy.md index 98114d26f6..e9a67ac042 100644 --- a/docset/winserver2012-ps/activedirectory/Get-ADFineGrainedPasswordPolicy.md +++ b/docset/winserver2012-ps/activedirectory/Get-ADFineGrainedPasswordPolicy.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adfinegrainedpasswordpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adfinegrainedpasswordpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Get-ADFineGrainedPasswordPolicySubject.md b/docset/winserver2012-ps/activedirectory/Get-ADFineGrainedPasswordPolicySubject.md index 94bddb970f..e311fa9b3a 100644 --- a/docset/winserver2012-ps/activedirectory/Get-ADFineGrainedPasswordPolicySubject.md +++ b/docset/winserver2012-ps/activedirectory/Get-ADFineGrainedPasswordPolicySubject.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adfinegrainedpasswordpolicysubject?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adfinegrainedpasswordpolicysubject?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Get-ADForest.md b/docset/winserver2012-ps/activedirectory/Get-ADForest.md index 2c38a16c92..3c73522c11 100644 --- a/docset/winserver2012-ps/activedirectory/Get-ADForest.md +++ b/docset/winserver2012-ps/activedirectory/Get-ADForest.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adforest?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adforest?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Get-ADGroup.md b/docset/winserver2012-ps/activedirectory/Get-ADGroup.md index ef2a23cd05..4c7fe5c04a 100644 --- a/docset/winserver2012-ps/activedirectory/Get-ADGroup.md +++ b/docset/winserver2012-ps/activedirectory/Get-ADGroup.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adgroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adgroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Get-ADGroupMember.md b/docset/winserver2012-ps/activedirectory/Get-ADGroupMember.md index c2de9cba9c..411ead74a8 100644 --- a/docset/winserver2012-ps/activedirectory/Get-ADGroupMember.md +++ b/docset/winserver2012-ps/activedirectory/Get-ADGroupMember.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adgroupmember?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adgroupmember?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Get-ADObject.md b/docset/winserver2012-ps/activedirectory/Get-ADObject.md index fd48b730f9..c26f9de374 100644 --- a/docset/winserver2012-ps/activedirectory/Get-ADObject.md +++ b/docset/winserver2012-ps/activedirectory/Get-ADObject.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adobject?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adobject?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Get-ADOptionalFeature.md b/docset/winserver2012-ps/activedirectory/Get-ADOptionalFeature.md index 419d40f91c..344a155724 100644 --- a/docset/winserver2012-ps/activedirectory/Get-ADOptionalFeature.md +++ b/docset/winserver2012-ps/activedirectory/Get-ADOptionalFeature.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adoptionalfeature?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adoptionalfeature?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Get-ADOrganizationalUnit.md b/docset/winserver2012-ps/activedirectory/Get-ADOrganizationalUnit.md index b31f755cb0..c96542a353 100644 --- a/docset/winserver2012-ps/activedirectory/Get-ADOrganizationalUnit.md +++ b/docset/winserver2012-ps/activedirectory/Get-ADOrganizationalUnit.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adorganizationalunit?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adorganizationalunit?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Get-ADPrincipalGroupMembership.md b/docset/winserver2012-ps/activedirectory/Get-ADPrincipalGroupMembership.md index 26628780b3..64285ba98c 100644 --- a/docset/winserver2012-ps/activedirectory/Get-ADPrincipalGroupMembership.md +++ b/docset/winserver2012-ps/activedirectory/Get-ADPrincipalGroupMembership.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adprincipalgroupmembership?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adprincipalgroupmembership?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Get-ADReplicationAttributeMetadata.md b/docset/winserver2012-ps/activedirectory/Get-ADReplicationAttributeMetadata.md index 3564df8dd2..30f9bfa116 100644 --- a/docset/winserver2012-ps/activedirectory/Get-ADReplicationAttributeMetadata.md +++ b/docset/winserver2012-ps/activedirectory/Get-ADReplicationAttributeMetadata.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adreplicationattributemetadata?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adreplicationattributemetadata?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Get-ADReplicationConnection.md b/docset/winserver2012-ps/activedirectory/Get-ADReplicationConnection.md index c12983705f..a728a00ec6 100644 --- a/docset/winserver2012-ps/activedirectory/Get-ADReplicationConnection.md +++ b/docset/winserver2012-ps/activedirectory/Get-ADReplicationConnection.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adreplicationconnection?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adreplicationconnection?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Get-ADReplicationFailure.md b/docset/winserver2012-ps/activedirectory/Get-ADReplicationFailure.md index c8b1869961..2ba4465d3b 100644 --- a/docset/winserver2012-ps/activedirectory/Get-ADReplicationFailure.md +++ b/docset/winserver2012-ps/activedirectory/Get-ADReplicationFailure.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adreplicationfailure?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adreplicationfailure?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Get-ADReplicationPartnerMetadata.md b/docset/winserver2012-ps/activedirectory/Get-ADReplicationPartnerMetadata.md index 09bb04be9d..251584a141 100644 --- a/docset/winserver2012-ps/activedirectory/Get-ADReplicationPartnerMetadata.md +++ b/docset/winserver2012-ps/activedirectory/Get-ADReplicationPartnerMetadata.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adreplicationpartnermetadata?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adreplicationpartnermetadata?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Get-ADReplicationQueueOperation.md b/docset/winserver2012-ps/activedirectory/Get-ADReplicationQueueOperation.md index 524169e3af..2eea0dd221 100644 --- a/docset/winserver2012-ps/activedirectory/Get-ADReplicationQueueOperation.md +++ b/docset/winserver2012-ps/activedirectory/Get-ADReplicationQueueOperation.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adreplicationqueueoperation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adreplicationqueueoperation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Get-ADReplicationSite.md b/docset/winserver2012-ps/activedirectory/Get-ADReplicationSite.md index dd8425527e..4f68199068 100644 --- a/docset/winserver2012-ps/activedirectory/Get-ADReplicationSite.md +++ b/docset/winserver2012-ps/activedirectory/Get-ADReplicationSite.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adreplicationsite?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adreplicationsite?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Get-ADReplicationSiteLink.md b/docset/winserver2012-ps/activedirectory/Get-ADReplicationSiteLink.md index 1783e4c6fc..d908db00aa 100644 --- a/docset/winserver2012-ps/activedirectory/Get-ADReplicationSiteLink.md +++ b/docset/winserver2012-ps/activedirectory/Get-ADReplicationSiteLink.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adreplicationsitelink?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adreplicationsitelink?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Get-ADReplicationSiteLinkBridge.md b/docset/winserver2012-ps/activedirectory/Get-ADReplicationSiteLinkBridge.md index 5f3358aca0..c3c3fe0078 100644 --- a/docset/winserver2012-ps/activedirectory/Get-ADReplicationSiteLinkBridge.md +++ b/docset/winserver2012-ps/activedirectory/Get-ADReplicationSiteLinkBridge.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adreplicationsitelinkbridge?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adreplicationsitelinkbridge?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Get-ADReplicationSubnet.md b/docset/winserver2012-ps/activedirectory/Get-ADReplicationSubnet.md index 62a977c320..2003fd8b4f 100644 --- a/docset/winserver2012-ps/activedirectory/Get-ADReplicationSubnet.md +++ b/docset/winserver2012-ps/activedirectory/Get-ADReplicationSubnet.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adreplicationsubnet?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adreplicationsubnet?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Get-ADReplicationUpToDatenessVectorTable.md b/docset/winserver2012-ps/activedirectory/Get-ADReplicationUpToDatenessVectorTable.md index 525ea3c255..44b757fb95 100644 --- a/docset/winserver2012-ps/activedirectory/Get-ADReplicationUpToDatenessVectorTable.md +++ b/docset/winserver2012-ps/activedirectory/Get-ADReplicationUpToDatenessVectorTable.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adreplicationuptodatenessvectortable?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adreplicationuptodatenessvectortable?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Get-ADResourceProperty.md b/docset/winserver2012-ps/activedirectory/Get-ADResourceProperty.md index 9104a20431..a72d666e72 100644 --- a/docset/winserver2012-ps/activedirectory/Get-ADResourceProperty.md +++ b/docset/winserver2012-ps/activedirectory/Get-ADResourceProperty.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adresourceproperty?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adresourceproperty?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Get-ADResourcePropertyList.md b/docset/winserver2012-ps/activedirectory/Get-ADResourcePropertyList.md index e9f020a6b3..2d01b819b1 100644 --- a/docset/winserver2012-ps/activedirectory/Get-ADResourcePropertyList.md +++ b/docset/winserver2012-ps/activedirectory/Get-ADResourcePropertyList.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adresourcepropertylist?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adresourcepropertylist?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Get-ADResourcePropertyValueType.md b/docset/winserver2012-ps/activedirectory/Get-ADResourcePropertyValueType.md index ddff88ecc1..dcd5532191 100644 --- a/docset/winserver2012-ps/activedirectory/Get-ADResourcePropertyValueType.md +++ b/docset/winserver2012-ps/activedirectory/Get-ADResourcePropertyValueType.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adresourcepropertyvaluetype?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adresourcepropertyvaluetype?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Get-ADRootDSE.md b/docset/winserver2012-ps/activedirectory/Get-ADRootDSE.md index 4bf677ce2a..7be4abaa36 100644 --- a/docset/winserver2012-ps/activedirectory/Get-ADRootDSE.md +++ b/docset/winserver2012-ps/activedirectory/Get-ADRootDSE.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adrootdse?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adrootdse?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Get-ADServiceAccount.md b/docset/winserver2012-ps/activedirectory/Get-ADServiceAccount.md index f0d997106d..a44b746b2b 100644 --- a/docset/winserver2012-ps/activedirectory/Get-ADServiceAccount.md +++ b/docset/winserver2012-ps/activedirectory/Get-ADServiceAccount.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adserviceaccount?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adserviceaccount?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Get-ADTrust.md b/docset/winserver2012-ps/activedirectory/Get-ADTrust.md index 7ccf350acc..38c38025eb 100644 --- a/docset/winserver2012-ps/activedirectory/Get-ADTrust.md +++ b/docset/winserver2012-ps/activedirectory/Get-ADTrust.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adtrust?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adtrust?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Get-ADUser.md b/docset/winserver2012-ps/activedirectory/Get-ADUser.md index 636e274134..0ffb8691b6 100644 --- a/docset/winserver2012-ps/activedirectory/Get-ADUser.md +++ b/docset/winserver2012-ps/activedirectory/Get-ADUser.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-aduser?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-aduser?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Get-ADUserResultantPasswordPolicy.md b/docset/winserver2012-ps/activedirectory/Get-ADUserResultantPasswordPolicy.md index a6c576fecc..6dbfe4f936 100644 --- a/docset/winserver2012-ps/activedirectory/Get-ADUserResultantPasswordPolicy.md +++ b/docset/winserver2012-ps/activedirectory/Get-ADUserResultantPasswordPolicy.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-aduserresultantpasswordpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-aduserresultantpasswordpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Install-ADServiceAccount.md b/docset/winserver2012-ps/activedirectory/Install-ADServiceAccount.md index 01a0a13fe7..9419e3ac5e 100644 --- a/docset/winserver2012-ps/activedirectory/Install-ADServiceAccount.md +++ b/docset/winserver2012-ps/activedirectory/Install-ADServiceAccount.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/install-adserviceaccount?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/install-adserviceaccount?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Move-ADDirectoryServer.md b/docset/winserver2012-ps/activedirectory/Move-ADDirectoryServer.md index 7198233b62..8b2214f88b 100644 --- a/docset/winserver2012-ps/activedirectory/Move-ADDirectoryServer.md +++ b/docset/winserver2012-ps/activedirectory/Move-ADDirectoryServer.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/move-addirectoryserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/move-addirectoryserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Move-ADDirectoryServerOperationMasterRole.md b/docset/winserver2012-ps/activedirectory/Move-ADDirectoryServerOperationMasterRole.md index 375c069693..d7e6737a96 100644 --- a/docset/winserver2012-ps/activedirectory/Move-ADDirectoryServerOperationMasterRole.md +++ b/docset/winserver2012-ps/activedirectory/Move-ADDirectoryServerOperationMasterRole.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/move-addirectoryserveroperationmasterrole?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/move-addirectoryserveroperationmasterrole?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Move-ADObject.md b/docset/winserver2012-ps/activedirectory/Move-ADObject.md index 9ac03cf027..ae03b78ae3 100644 --- a/docset/winserver2012-ps/activedirectory/Move-ADObject.md +++ b/docset/winserver2012-ps/activedirectory/Move-ADObject.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/move-adobject?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/move-adobject?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/New-ADCentralAccessPolicy.md b/docset/winserver2012-ps/activedirectory/New-ADCentralAccessPolicy.md index 66f9314676..4b5a6d4adf 100644 --- a/docset/winserver2012-ps/activedirectory/New-ADCentralAccessPolicy.md +++ b/docset/winserver2012-ps/activedirectory/New-ADCentralAccessPolicy.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adcentralaccesspolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adcentralaccesspolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/New-ADCentralAccessRule.md b/docset/winserver2012-ps/activedirectory/New-ADCentralAccessRule.md index c17b8b26e8..c258d90161 100644 --- a/docset/winserver2012-ps/activedirectory/New-ADCentralAccessRule.md +++ b/docset/winserver2012-ps/activedirectory/New-ADCentralAccessRule.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adcentralaccessrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adcentralaccessrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/New-ADClaimTransformPolicy.md b/docset/winserver2012-ps/activedirectory/New-ADClaimTransformPolicy.md index 53c97a9d79..389d9c5e35 100644 --- a/docset/winserver2012-ps/activedirectory/New-ADClaimTransformPolicy.md +++ b/docset/winserver2012-ps/activedirectory/New-ADClaimTransformPolicy.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adclaimtransformpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adclaimtransformpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/New-ADClaimType.md b/docset/winserver2012-ps/activedirectory/New-ADClaimType.md index 6affdb989a..a720937432 100644 --- a/docset/winserver2012-ps/activedirectory/New-ADClaimType.md +++ b/docset/winserver2012-ps/activedirectory/New-ADClaimType.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adclaimtype?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adclaimtype?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/New-ADComputer.md b/docset/winserver2012-ps/activedirectory/New-ADComputer.md index 073182e9c6..a7e25c50a1 100644 --- a/docset/winserver2012-ps/activedirectory/New-ADComputer.md +++ b/docset/winserver2012-ps/activedirectory/New-ADComputer.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adcomputer?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adcomputer?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/New-ADDCCloneConfigFile.md b/docset/winserver2012-ps/activedirectory/New-ADDCCloneConfigFile.md index 11bc66f466..b6e8036939 100644 --- a/docset/winserver2012-ps/activedirectory/New-ADDCCloneConfigFile.md +++ b/docset/winserver2012-ps/activedirectory/New-ADDCCloneConfigFile.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-addccloneconfigfile?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-addccloneconfigfile?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/New-ADFineGrainedPasswordPolicy.md b/docset/winserver2012-ps/activedirectory/New-ADFineGrainedPasswordPolicy.md index 013d3b9596..78f9de95d0 100644 --- a/docset/winserver2012-ps/activedirectory/New-ADFineGrainedPasswordPolicy.md +++ b/docset/winserver2012-ps/activedirectory/New-ADFineGrainedPasswordPolicy.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adfinegrainedpasswordpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adfinegrainedpasswordpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/New-ADGroup.md b/docset/winserver2012-ps/activedirectory/New-ADGroup.md index 5161b38e8b..9aca849693 100644 --- a/docset/winserver2012-ps/activedirectory/New-ADGroup.md +++ b/docset/winserver2012-ps/activedirectory/New-ADGroup.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adgroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adgroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/New-ADObject.md b/docset/winserver2012-ps/activedirectory/New-ADObject.md index 5155ab6b58..4167d04ae0 100644 --- a/docset/winserver2012-ps/activedirectory/New-ADObject.md +++ b/docset/winserver2012-ps/activedirectory/New-ADObject.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adobject?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adobject?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/New-ADOrganizationalUnit.md b/docset/winserver2012-ps/activedirectory/New-ADOrganizationalUnit.md index 755bcf935f..4186ca2b4a 100644 --- a/docset/winserver2012-ps/activedirectory/New-ADOrganizationalUnit.md +++ b/docset/winserver2012-ps/activedirectory/New-ADOrganizationalUnit.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adorganizationalunit?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adorganizationalunit?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/New-ADReplicationSite.md b/docset/winserver2012-ps/activedirectory/New-ADReplicationSite.md index ab93c599ea..59c8da0b61 100644 --- a/docset/winserver2012-ps/activedirectory/New-ADReplicationSite.md +++ b/docset/winserver2012-ps/activedirectory/New-ADReplicationSite.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adreplicationsite?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adreplicationsite?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/New-ADReplicationSiteLink.md b/docset/winserver2012-ps/activedirectory/New-ADReplicationSiteLink.md index ddc56839e9..407da2ea6a 100644 --- a/docset/winserver2012-ps/activedirectory/New-ADReplicationSiteLink.md +++ b/docset/winserver2012-ps/activedirectory/New-ADReplicationSiteLink.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adreplicationsitelink?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adreplicationsitelink?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/New-ADReplicationSiteLinkBridge.md b/docset/winserver2012-ps/activedirectory/New-ADReplicationSiteLinkBridge.md index d3d7944da6..49eee164e3 100644 --- a/docset/winserver2012-ps/activedirectory/New-ADReplicationSiteLinkBridge.md +++ b/docset/winserver2012-ps/activedirectory/New-ADReplicationSiteLinkBridge.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adreplicationsitelinkbridge?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adreplicationsitelinkbridge?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/New-ADReplicationSubnet.md b/docset/winserver2012-ps/activedirectory/New-ADReplicationSubnet.md index 59d3199a37..fe55de7c4d 100644 --- a/docset/winserver2012-ps/activedirectory/New-ADReplicationSubnet.md +++ b/docset/winserver2012-ps/activedirectory/New-ADReplicationSubnet.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adreplicationsubnet?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adreplicationsubnet?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/New-ADResourceProperty.md b/docset/winserver2012-ps/activedirectory/New-ADResourceProperty.md index 861bf92534..20d115ad2c 100644 --- a/docset/winserver2012-ps/activedirectory/New-ADResourceProperty.md +++ b/docset/winserver2012-ps/activedirectory/New-ADResourceProperty.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adresourceproperty?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adresourceproperty?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/New-ADResourcePropertyList.md b/docset/winserver2012-ps/activedirectory/New-ADResourcePropertyList.md index 8043906649..fba7a3785f 100644 --- a/docset/winserver2012-ps/activedirectory/New-ADResourcePropertyList.md +++ b/docset/winserver2012-ps/activedirectory/New-ADResourcePropertyList.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adresourcepropertylist?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adresourcepropertylist?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/New-ADServiceAccount.md b/docset/winserver2012-ps/activedirectory/New-ADServiceAccount.md index c0ce2fe426..c1b4100133 100644 --- a/docset/winserver2012-ps/activedirectory/New-ADServiceAccount.md +++ b/docset/winserver2012-ps/activedirectory/New-ADServiceAccount.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adserviceaccount?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adserviceaccount?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/New-ADUser.md b/docset/winserver2012-ps/activedirectory/New-ADUser.md index 5d905f2802..44a858d498 100644 --- a/docset/winserver2012-ps/activedirectory/New-ADUser.md +++ b/docset/winserver2012-ps/activedirectory/New-ADUser.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-aduser?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-aduser?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Remove-ADCentralAccessPolicy.md b/docset/winserver2012-ps/activedirectory/Remove-ADCentralAccessPolicy.md index c8fa277b5a..9c71698350 100644 --- a/docset/winserver2012-ps/activedirectory/Remove-ADCentralAccessPolicy.md +++ b/docset/winserver2012-ps/activedirectory/Remove-ADCentralAccessPolicy.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adcentralaccesspolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adcentralaccesspolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Remove-ADCentralAccessPolicyMember.md b/docset/winserver2012-ps/activedirectory/Remove-ADCentralAccessPolicyMember.md index c34f72049d..9b1f282b26 100644 --- a/docset/winserver2012-ps/activedirectory/Remove-ADCentralAccessPolicyMember.md +++ b/docset/winserver2012-ps/activedirectory/Remove-ADCentralAccessPolicyMember.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adcentralaccesspolicymember?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adcentralaccesspolicymember?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Remove-ADCentralAccessRule.md b/docset/winserver2012-ps/activedirectory/Remove-ADCentralAccessRule.md index 06453cf9b7..524a95cf24 100644 --- a/docset/winserver2012-ps/activedirectory/Remove-ADCentralAccessRule.md +++ b/docset/winserver2012-ps/activedirectory/Remove-ADCentralAccessRule.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adcentralaccessrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adcentralaccessrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Remove-ADClaimTransformPolicy.md b/docset/winserver2012-ps/activedirectory/Remove-ADClaimTransformPolicy.md index 03e3b4a4b9..5856aeb45a 100644 --- a/docset/winserver2012-ps/activedirectory/Remove-ADClaimTransformPolicy.md +++ b/docset/winserver2012-ps/activedirectory/Remove-ADClaimTransformPolicy.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adclaimtransformpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adclaimtransformpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Remove-ADClaimType.md b/docset/winserver2012-ps/activedirectory/Remove-ADClaimType.md index 8417f08819..fa46cd1152 100644 --- a/docset/winserver2012-ps/activedirectory/Remove-ADClaimType.md +++ b/docset/winserver2012-ps/activedirectory/Remove-ADClaimType.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adclaimtype?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adclaimtype?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Remove-ADComputer.md b/docset/winserver2012-ps/activedirectory/Remove-ADComputer.md index 3b32eb7052..dd6864c69c 100644 --- a/docset/winserver2012-ps/activedirectory/Remove-ADComputer.md +++ b/docset/winserver2012-ps/activedirectory/Remove-ADComputer.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adcomputer?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adcomputer?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Remove-ADComputerServiceAccount.md b/docset/winserver2012-ps/activedirectory/Remove-ADComputerServiceAccount.md index 7a21e3aa2f..87a6140619 100644 --- a/docset/winserver2012-ps/activedirectory/Remove-ADComputerServiceAccount.md +++ b/docset/winserver2012-ps/activedirectory/Remove-ADComputerServiceAccount.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adcomputerserviceaccount?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adcomputerserviceaccount?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Remove-ADDomainControllerPasswordReplicationPolicy.md b/docset/winserver2012-ps/activedirectory/Remove-ADDomainControllerPasswordReplicationPolicy.md index 74cbe0d6c5..c2af35efef 100644 --- a/docset/winserver2012-ps/activedirectory/Remove-ADDomainControllerPasswordReplicationPolicy.md +++ b/docset/winserver2012-ps/activedirectory/Remove-ADDomainControllerPasswordReplicationPolicy.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-addomaincontrollerpasswordreplicationpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-addomaincontrollerpasswordreplicationpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Remove-ADFineGrainedPasswordPolicy.md b/docset/winserver2012-ps/activedirectory/Remove-ADFineGrainedPasswordPolicy.md index d338596ff1..fa82e9ce63 100644 --- a/docset/winserver2012-ps/activedirectory/Remove-ADFineGrainedPasswordPolicy.md +++ b/docset/winserver2012-ps/activedirectory/Remove-ADFineGrainedPasswordPolicy.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adfinegrainedpasswordpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adfinegrainedpasswordpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Remove-ADFineGrainedPasswordPolicySubject.md b/docset/winserver2012-ps/activedirectory/Remove-ADFineGrainedPasswordPolicySubject.md index e158992708..15f67e2427 100644 --- a/docset/winserver2012-ps/activedirectory/Remove-ADFineGrainedPasswordPolicySubject.md +++ b/docset/winserver2012-ps/activedirectory/Remove-ADFineGrainedPasswordPolicySubject.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adfinegrainedpasswordpolicysubject?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adfinegrainedpasswordpolicysubject?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Remove-ADGroup.md b/docset/winserver2012-ps/activedirectory/Remove-ADGroup.md index 010e9245bb..c52bf2801b 100644 --- a/docset/winserver2012-ps/activedirectory/Remove-ADGroup.md +++ b/docset/winserver2012-ps/activedirectory/Remove-ADGroup.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adgroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adgroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Remove-ADGroupMember.md b/docset/winserver2012-ps/activedirectory/Remove-ADGroupMember.md index 5b0a8731d0..9e1865d623 100644 --- a/docset/winserver2012-ps/activedirectory/Remove-ADGroupMember.md +++ b/docset/winserver2012-ps/activedirectory/Remove-ADGroupMember.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adgroupmember?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adgroupmember?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Remove-ADObject.md b/docset/winserver2012-ps/activedirectory/Remove-ADObject.md index 5155c16646..7df45b5454 100644 --- a/docset/winserver2012-ps/activedirectory/Remove-ADObject.md +++ b/docset/winserver2012-ps/activedirectory/Remove-ADObject.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adobject?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adobject?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Remove-ADOrganizationalUnit.md b/docset/winserver2012-ps/activedirectory/Remove-ADOrganizationalUnit.md index e4882f0ee2..203e011baf 100644 --- a/docset/winserver2012-ps/activedirectory/Remove-ADOrganizationalUnit.md +++ b/docset/winserver2012-ps/activedirectory/Remove-ADOrganizationalUnit.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adorganizationalunit?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adorganizationalunit?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Remove-ADPrincipalGroupMembership.md b/docset/winserver2012-ps/activedirectory/Remove-ADPrincipalGroupMembership.md index d9c87d9c27..4cf2db199b 100644 --- a/docset/winserver2012-ps/activedirectory/Remove-ADPrincipalGroupMembership.md +++ b/docset/winserver2012-ps/activedirectory/Remove-ADPrincipalGroupMembership.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adprincipalgroupmembership?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adprincipalgroupmembership?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Remove-ADReplicationSite.md b/docset/winserver2012-ps/activedirectory/Remove-ADReplicationSite.md index 052fcdf7b1..ca3430eb8f 100644 --- a/docset/winserver2012-ps/activedirectory/Remove-ADReplicationSite.md +++ b/docset/winserver2012-ps/activedirectory/Remove-ADReplicationSite.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adreplicationsite?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adreplicationsite?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Remove-ADReplicationSiteLink.md b/docset/winserver2012-ps/activedirectory/Remove-ADReplicationSiteLink.md index 169d3824dd..82807303b7 100644 --- a/docset/winserver2012-ps/activedirectory/Remove-ADReplicationSiteLink.md +++ b/docset/winserver2012-ps/activedirectory/Remove-ADReplicationSiteLink.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adreplicationsitelink?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adreplicationsitelink?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Remove-ADReplicationSiteLinkBridge.md b/docset/winserver2012-ps/activedirectory/Remove-ADReplicationSiteLinkBridge.md index 440567446d..24c2fa6dd0 100644 --- a/docset/winserver2012-ps/activedirectory/Remove-ADReplicationSiteLinkBridge.md +++ b/docset/winserver2012-ps/activedirectory/Remove-ADReplicationSiteLinkBridge.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adreplicationsitelinkbridge?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adreplicationsitelinkbridge?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Remove-ADReplicationSubnet.md b/docset/winserver2012-ps/activedirectory/Remove-ADReplicationSubnet.md index 099a1afb9e..ad4ed1eec9 100644 --- a/docset/winserver2012-ps/activedirectory/Remove-ADReplicationSubnet.md +++ b/docset/winserver2012-ps/activedirectory/Remove-ADReplicationSubnet.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adreplicationsubnet?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adreplicationsubnet?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Remove-ADResourceProperty.md b/docset/winserver2012-ps/activedirectory/Remove-ADResourceProperty.md index 9f3fd05db2..d1dece9593 100644 --- a/docset/winserver2012-ps/activedirectory/Remove-ADResourceProperty.md +++ b/docset/winserver2012-ps/activedirectory/Remove-ADResourceProperty.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adresourceproperty?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adresourceproperty?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Remove-ADResourcePropertyList.md b/docset/winserver2012-ps/activedirectory/Remove-ADResourcePropertyList.md index ae74ef22e3..f2fc6f7c6e 100644 --- a/docset/winserver2012-ps/activedirectory/Remove-ADResourcePropertyList.md +++ b/docset/winserver2012-ps/activedirectory/Remove-ADResourcePropertyList.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adresourcepropertylist?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adresourcepropertylist?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Remove-ADResourcePropertyListMember.md b/docset/winserver2012-ps/activedirectory/Remove-ADResourcePropertyListMember.md index b65eebfa34..d52db7e90c 100644 --- a/docset/winserver2012-ps/activedirectory/Remove-ADResourcePropertyListMember.md +++ b/docset/winserver2012-ps/activedirectory/Remove-ADResourcePropertyListMember.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adresourcepropertylistmember?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adresourcepropertylistmember?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Remove-ADServiceAccount.md b/docset/winserver2012-ps/activedirectory/Remove-ADServiceAccount.md index 4d5428f7a1..cb5c505b97 100644 --- a/docset/winserver2012-ps/activedirectory/Remove-ADServiceAccount.md +++ b/docset/winserver2012-ps/activedirectory/Remove-ADServiceAccount.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adserviceaccount?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adserviceaccount?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Remove-ADUser.md b/docset/winserver2012-ps/activedirectory/Remove-ADUser.md index 196d1b272c..05c491f2d2 100644 --- a/docset/winserver2012-ps/activedirectory/Remove-ADUser.md +++ b/docset/winserver2012-ps/activedirectory/Remove-ADUser.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-aduser?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-aduser?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Rename-ADObject.md b/docset/winserver2012-ps/activedirectory/Rename-ADObject.md index b96974d9fc..33c45ffa8b 100644 --- a/docset/winserver2012-ps/activedirectory/Rename-ADObject.md +++ b/docset/winserver2012-ps/activedirectory/Rename-ADObject.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/rename-adobject?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/rename-adobject?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Reset-ADServiceAccountPassword.md b/docset/winserver2012-ps/activedirectory/Reset-ADServiceAccountPassword.md index 79239ee606..812acef98e 100644 --- a/docset/winserver2012-ps/activedirectory/Reset-ADServiceAccountPassword.md +++ b/docset/winserver2012-ps/activedirectory/Reset-ADServiceAccountPassword.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/reset-adserviceaccountpassword?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/reset-adserviceaccountpassword?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Restore-ADObject.md b/docset/winserver2012-ps/activedirectory/Restore-ADObject.md index 2acf1ddb7a..bdbabb82a6 100644 --- a/docset/winserver2012-ps/activedirectory/Restore-ADObject.md +++ b/docset/winserver2012-ps/activedirectory/Restore-ADObject.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/restore-adobject?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/restore-adobject?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Search-ADAccount.md b/docset/winserver2012-ps/activedirectory/Search-ADAccount.md index e206c04488..732babed8c 100644 --- a/docset/winserver2012-ps/activedirectory/Search-ADAccount.md +++ b/docset/winserver2012-ps/activedirectory/Search-ADAccount.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/search-adaccount?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/search-adaccount?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Set-ADAccountControl.md b/docset/winserver2012-ps/activedirectory/Set-ADAccountControl.md index cc97c585e3..0cc10da091 100644 --- a/docset/winserver2012-ps/activedirectory/Set-ADAccountControl.md +++ b/docset/winserver2012-ps/activedirectory/Set-ADAccountControl.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adaccountcontrol?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adaccountcontrol?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Set-ADAccountExpiration.md b/docset/winserver2012-ps/activedirectory/Set-ADAccountExpiration.md index 7167d062bb..ad10a9fa76 100644 --- a/docset/winserver2012-ps/activedirectory/Set-ADAccountExpiration.md +++ b/docset/winserver2012-ps/activedirectory/Set-ADAccountExpiration.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adaccountexpiration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adaccountexpiration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Set-ADAccountPassword.md b/docset/winserver2012-ps/activedirectory/Set-ADAccountPassword.md index 27c133668b..61f2914986 100644 --- a/docset/winserver2012-ps/activedirectory/Set-ADAccountPassword.md +++ b/docset/winserver2012-ps/activedirectory/Set-ADAccountPassword.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adaccountpassword?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adaccountpassword?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Set-ADCentralAccessPolicy.md b/docset/winserver2012-ps/activedirectory/Set-ADCentralAccessPolicy.md index d124b2dd83..2de31d785f 100644 --- a/docset/winserver2012-ps/activedirectory/Set-ADCentralAccessPolicy.md +++ b/docset/winserver2012-ps/activedirectory/Set-ADCentralAccessPolicy.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adcentralaccesspolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adcentralaccesspolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Set-ADCentralAccessRule.md b/docset/winserver2012-ps/activedirectory/Set-ADCentralAccessRule.md index b586116859..11de817d6a 100644 --- a/docset/winserver2012-ps/activedirectory/Set-ADCentralAccessRule.md +++ b/docset/winserver2012-ps/activedirectory/Set-ADCentralAccessRule.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adcentralaccessrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adcentralaccessrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Set-ADClaimTransformLink.md b/docset/winserver2012-ps/activedirectory/Set-ADClaimTransformLink.md index 3a916940b6..4132633a60 100644 --- a/docset/winserver2012-ps/activedirectory/Set-ADClaimTransformLink.md +++ b/docset/winserver2012-ps/activedirectory/Set-ADClaimTransformLink.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adclaimtransformlink?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adclaimtransformlink?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Set-ADClaimTransformPolicy.md b/docset/winserver2012-ps/activedirectory/Set-ADClaimTransformPolicy.md index 721e0141bc..bb8e926859 100644 --- a/docset/winserver2012-ps/activedirectory/Set-ADClaimTransformPolicy.md +++ b/docset/winserver2012-ps/activedirectory/Set-ADClaimTransformPolicy.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adclaimtransformpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adclaimtransformpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Set-ADClaimType.md b/docset/winserver2012-ps/activedirectory/Set-ADClaimType.md index b8aab2dbb3..95845a7897 100644 --- a/docset/winserver2012-ps/activedirectory/Set-ADClaimType.md +++ b/docset/winserver2012-ps/activedirectory/Set-ADClaimType.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adclaimtype?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adclaimtype?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Set-ADComputer.md b/docset/winserver2012-ps/activedirectory/Set-ADComputer.md index 0ca0af4fd1..37970038cf 100644 --- a/docset/winserver2012-ps/activedirectory/Set-ADComputer.md +++ b/docset/winserver2012-ps/activedirectory/Set-ADComputer.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adcomputer?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adcomputer?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Set-ADDefaultDomainPasswordPolicy.md b/docset/winserver2012-ps/activedirectory/Set-ADDefaultDomainPasswordPolicy.md index 4dc2c23c7f..40b6ea7854 100644 --- a/docset/winserver2012-ps/activedirectory/Set-ADDefaultDomainPasswordPolicy.md +++ b/docset/winserver2012-ps/activedirectory/Set-ADDefaultDomainPasswordPolicy.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-addefaultdomainpasswordpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-addefaultdomainpasswordpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Set-ADDomain.md b/docset/winserver2012-ps/activedirectory/Set-ADDomain.md index f5067f2033..f4771cd62d 100644 --- a/docset/winserver2012-ps/activedirectory/Set-ADDomain.md +++ b/docset/winserver2012-ps/activedirectory/Set-ADDomain.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-addomain?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-addomain?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Set-ADDomainMode.md b/docset/winserver2012-ps/activedirectory/Set-ADDomainMode.md index 4f2beca829..06014e1be7 100644 --- a/docset/winserver2012-ps/activedirectory/Set-ADDomainMode.md +++ b/docset/winserver2012-ps/activedirectory/Set-ADDomainMode.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-addomainmode?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-addomainmode?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Set-ADFineGrainedPasswordPolicy.md b/docset/winserver2012-ps/activedirectory/Set-ADFineGrainedPasswordPolicy.md index a8c98a8651..b9fdda4aa3 100644 --- a/docset/winserver2012-ps/activedirectory/Set-ADFineGrainedPasswordPolicy.md +++ b/docset/winserver2012-ps/activedirectory/Set-ADFineGrainedPasswordPolicy.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adfinegrainedpasswordpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adfinegrainedpasswordpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Set-ADForest.md b/docset/winserver2012-ps/activedirectory/Set-ADForest.md index c1e65f4838..ae293a238e 100644 --- a/docset/winserver2012-ps/activedirectory/Set-ADForest.md +++ b/docset/winserver2012-ps/activedirectory/Set-ADForest.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adforest?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adforest?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Set-ADForestMode.md b/docset/winserver2012-ps/activedirectory/Set-ADForestMode.md index 3572d91c2e..7b036517bb 100644 --- a/docset/winserver2012-ps/activedirectory/Set-ADForestMode.md +++ b/docset/winserver2012-ps/activedirectory/Set-ADForestMode.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adforestmode?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adforestmode?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Set-ADGroup.md b/docset/winserver2012-ps/activedirectory/Set-ADGroup.md index 8e09d62fbe..144abb3f36 100644 --- a/docset/winserver2012-ps/activedirectory/Set-ADGroup.md +++ b/docset/winserver2012-ps/activedirectory/Set-ADGroup.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adgroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adgroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Set-ADObject.md b/docset/winserver2012-ps/activedirectory/Set-ADObject.md index 37e9cb5a8b..a7b4a1e372 100644 --- a/docset/winserver2012-ps/activedirectory/Set-ADObject.md +++ b/docset/winserver2012-ps/activedirectory/Set-ADObject.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adobject?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adobject?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Set-ADOrganizationalUnit.md b/docset/winserver2012-ps/activedirectory/Set-ADOrganizationalUnit.md index 391d689d89..404f78c57c 100644 --- a/docset/winserver2012-ps/activedirectory/Set-ADOrganizationalUnit.md +++ b/docset/winserver2012-ps/activedirectory/Set-ADOrganizationalUnit.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adorganizationalunit?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adorganizationalunit?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Set-ADReplicationConnection.md b/docset/winserver2012-ps/activedirectory/Set-ADReplicationConnection.md index aa591009c1..0901744d1c 100644 --- a/docset/winserver2012-ps/activedirectory/Set-ADReplicationConnection.md +++ b/docset/winserver2012-ps/activedirectory/Set-ADReplicationConnection.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adreplicationconnection?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adreplicationconnection?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Set-ADReplicationSite.md b/docset/winserver2012-ps/activedirectory/Set-ADReplicationSite.md index 16d117f202..8efb43486f 100644 --- a/docset/winserver2012-ps/activedirectory/Set-ADReplicationSite.md +++ b/docset/winserver2012-ps/activedirectory/Set-ADReplicationSite.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adreplicationsite?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adreplicationsite?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Set-ADReplicationSiteLink.md b/docset/winserver2012-ps/activedirectory/Set-ADReplicationSiteLink.md index cb53e8dcc6..2961232eaa 100644 --- a/docset/winserver2012-ps/activedirectory/Set-ADReplicationSiteLink.md +++ b/docset/winserver2012-ps/activedirectory/Set-ADReplicationSiteLink.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adreplicationsitelink?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adreplicationsitelink?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Set-ADReplicationSiteLinkBridge.md b/docset/winserver2012-ps/activedirectory/Set-ADReplicationSiteLinkBridge.md index 06c4ee24c1..b32d776b52 100644 --- a/docset/winserver2012-ps/activedirectory/Set-ADReplicationSiteLinkBridge.md +++ b/docset/winserver2012-ps/activedirectory/Set-ADReplicationSiteLinkBridge.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adreplicationsitelinkbridge?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adreplicationsitelinkbridge?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Set-ADReplicationSubnet.md b/docset/winserver2012-ps/activedirectory/Set-ADReplicationSubnet.md index 44434f03ef..7d6db119cc 100644 --- a/docset/winserver2012-ps/activedirectory/Set-ADReplicationSubnet.md +++ b/docset/winserver2012-ps/activedirectory/Set-ADReplicationSubnet.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adreplicationsubnet?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adreplicationsubnet?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Set-ADResourceProperty.md b/docset/winserver2012-ps/activedirectory/Set-ADResourceProperty.md index 53570d7d2d..d3a698e50e 100644 --- a/docset/winserver2012-ps/activedirectory/Set-ADResourceProperty.md +++ b/docset/winserver2012-ps/activedirectory/Set-ADResourceProperty.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adresourceproperty?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adresourceproperty?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Set-ADResourcePropertyList.md b/docset/winserver2012-ps/activedirectory/Set-ADResourcePropertyList.md index c65100086d..77aa86152a 100644 --- a/docset/winserver2012-ps/activedirectory/Set-ADResourcePropertyList.md +++ b/docset/winserver2012-ps/activedirectory/Set-ADResourcePropertyList.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adresourcepropertylist?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adresourcepropertylist?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Set-ADServiceAccount.md b/docset/winserver2012-ps/activedirectory/Set-ADServiceAccount.md index dfc033727b..f9a21a98bd 100644 --- a/docset/winserver2012-ps/activedirectory/Set-ADServiceAccount.md +++ b/docset/winserver2012-ps/activedirectory/Set-ADServiceAccount.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adserviceaccount?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adserviceaccount?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Set-ADUser.md b/docset/winserver2012-ps/activedirectory/Set-ADUser.md index a5c78ed3f9..9da26a5cc3 100644 --- a/docset/winserver2012-ps/activedirectory/Set-ADUser.md +++ b/docset/winserver2012-ps/activedirectory/Set-ADUser.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-aduser?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-aduser?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Sync-ADObject.md b/docset/winserver2012-ps/activedirectory/Sync-ADObject.md index dc5b13492a..1a19b3baef 100644 --- a/docset/winserver2012-ps/activedirectory/Sync-ADObject.md +++ b/docset/winserver2012-ps/activedirectory/Sync-ADObject.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/sync-adobject?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/sync-adobject?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Test-ADServiceAccount.md b/docset/winserver2012-ps/activedirectory/Test-ADServiceAccount.md index ccb61ca52a..7ee1565a66 100644 --- a/docset/winserver2012-ps/activedirectory/Test-ADServiceAccount.md +++ b/docset/winserver2012-ps/activedirectory/Test-ADServiceAccount.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/test-adserviceaccount?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/test-adserviceaccount?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Uninstall-ADServiceAccount.md b/docset/winserver2012-ps/activedirectory/Uninstall-ADServiceAccount.md index 9be84d8f37..87593dd144 100644 --- a/docset/winserver2012-ps/activedirectory/Uninstall-ADServiceAccount.md +++ b/docset/winserver2012-ps/activedirectory/Uninstall-ADServiceAccount.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/uninstall-adserviceaccount?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/uninstall-adserviceaccount?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/activedirectory/Unlock-ADAccount.md b/docset/winserver2012-ps/activedirectory/Unlock-ADAccount.md index a4f54b2d63..63bb2387a5 100644 --- a/docset/winserver2012-ps/activedirectory/Unlock-ADAccount.md +++ b/docset/winserver2012-ps/activedirectory/Unlock-ADAccount.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory -online version: https://docs.microsoft.com/powershell/module/activedirectory/unlock-adaccount?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/unlock-adaccount?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adcsadministration/add-caauthorityinformationaccess.md b/docset/winserver2012-ps/adcsadministration/add-caauthorityinformationaccess.md index 349433881e..1d3811a551 100644 --- a/docset/winserver2012-ps/adcsadministration/add-caauthorityinformationaccess.md +++ b/docset/winserver2012-ps/adcsadministration/add-caauthorityinformationaccess.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: adcsadministration -online version: https://docs.microsoft.com/powershell/module/adcsadministration/add-caauthorityinformationaccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/add-caauthorityinformationaccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adcsadministration/add-cacrldistributionpoint.md b/docset/winserver2012-ps/adcsadministration/add-cacrldistributionpoint.md index 363385171d..357737829e 100644 --- a/docset/winserver2012-ps/adcsadministration/add-cacrldistributionpoint.md +++ b/docset/winserver2012-ps/adcsadministration/add-cacrldistributionpoint.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: adcsadministration -online version: https://docs.microsoft.com/powershell/module/adcsadministration/add-cacrldistributionpoint?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/add-cacrldistributionpoint?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adcsadministration/add-catemplate.md b/docset/winserver2012-ps/adcsadministration/add-catemplate.md index 85fca39646..8af03855ab 100644 --- a/docset/winserver2012-ps/adcsadministration/add-catemplate.md +++ b/docset/winserver2012-ps/adcsadministration/add-catemplate.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: adcsadministration -online version: https://docs.microsoft.com/powershell/module/adcsadministration/add-catemplate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/add-catemplate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adcsadministration/backup-caroleservice.md b/docset/winserver2012-ps/adcsadministration/backup-caroleservice.md index 9afe137cbe..fda22ff8d7 100644 --- a/docset/winserver2012-ps/adcsadministration/backup-caroleservice.md +++ b/docset/winserver2012-ps/adcsadministration/backup-caroleservice.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: adcsadministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsadministration/backup-caroleservice?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/backup-caroleservice?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Backup-CARoleService --- diff --git a/docset/winserver2012-ps/adcsadministration/confirm-caendorsementkeyinfo.md b/docset/winserver2012-ps/adcsadministration/confirm-caendorsementkeyinfo.md index efe18576f9..86039ed2a6 100644 --- a/docset/winserver2012-ps/adcsadministration/confirm-caendorsementkeyinfo.md +++ b/docset/winserver2012-ps/adcsadministration/confirm-caendorsementkeyinfo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: adcsadministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsadministration/confirm-caendorsementkeyinfo?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/confirm-caendorsementkeyinfo?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Confirm-CAEndorsementKeyInfo --- diff --git a/docset/winserver2012-ps/adcsadministration/get-caauthorityinformationaccess.md b/docset/winserver2012-ps/adcsadministration/get-caauthorityinformationaccess.md index 47777cdacd..40f3f3c668 100644 --- a/docset/winserver2012-ps/adcsadministration/get-caauthorityinformationaccess.md +++ b/docset/winserver2012-ps/adcsadministration/get-caauthorityinformationaccess.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: adcsadministration -online version: https://docs.microsoft.com/powershell/module/adcsadministration/get-caauthorityinformationaccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/get-caauthorityinformationaccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adcsadministration/get-cacrldistributionpoint.md b/docset/winserver2012-ps/adcsadministration/get-cacrldistributionpoint.md index b75c135690..ee5760167a 100644 --- a/docset/winserver2012-ps/adcsadministration/get-cacrldistributionpoint.md +++ b/docset/winserver2012-ps/adcsadministration/get-cacrldistributionpoint.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: adcsadministration -online version: https://docs.microsoft.com/powershell/module/adcsadministration/get-cacrldistributionpoint?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/get-cacrldistributionpoint?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adcsadministration/get-catemplate.md b/docset/winserver2012-ps/adcsadministration/get-catemplate.md index e0c1b2933b..81f91e2506 100644 --- a/docset/winserver2012-ps/adcsadministration/get-catemplate.md +++ b/docset/winserver2012-ps/adcsadministration/get-catemplate.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: adcsadministration -online version: https://docs.microsoft.com/powershell/module/adcsadministration/get-catemplate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/get-catemplate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adcsadministration/remove-caauthorityinformationaccess.md b/docset/winserver2012-ps/adcsadministration/remove-caauthorityinformationaccess.md index 9fb2579355..f331b840e8 100644 --- a/docset/winserver2012-ps/adcsadministration/remove-caauthorityinformationaccess.md +++ b/docset/winserver2012-ps/adcsadministration/remove-caauthorityinformationaccess.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: adcsadministration -online version: https://docs.microsoft.com/powershell/module/adcsadministration/remove-caauthorityinformationaccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/remove-caauthorityinformationaccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adcsadministration/remove-cacrldistributionpoint.md b/docset/winserver2012-ps/adcsadministration/remove-cacrldistributionpoint.md index 440470f380..97d735348a 100644 --- a/docset/winserver2012-ps/adcsadministration/remove-cacrldistributionpoint.md +++ b/docset/winserver2012-ps/adcsadministration/remove-cacrldistributionpoint.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: adcsadministration -online version: https://docs.microsoft.com/powershell/module/adcsadministration/remove-cacrldistributionpoint?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/remove-cacrldistributionpoint?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adcsadministration/remove-catemplate.md b/docset/winserver2012-ps/adcsadministration/remove-catemplate.md index a6bbcc80c7..7dc66463f2 100644 --- a/docset/winserver2012-ps/adcsadministration/remove-catemplate.md +++ b/docset/winserver2012-ps/adcsadministration/remove-catemplate.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: adcsadministration -online version: https://docs.microsoft.com/powershell/module/adcsadministration/remove-catemplate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/remove-catemplate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adcsadministration/restore-caroleservice.md b/docset/winserver2012-ps/adcsadministration/restore-caroleservice.md index 83be4aa9ff..a9a4a01048 100644 --- a/docset/winserver2012-ps/adcsadministration/restore-caroleservice.md +++ b/docset/winserver2012-ps/adcsadministration/restore-caroleservice.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: adcsadministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsadministration/restore-caroleservice?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/restore-caroleservice?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-CARoleService --- diff --git a/docset/winserver2012-ps/adcsdeployment/install-adcscertificationauthority.md b/docset/winserver2012-ps/adcsdeployment/install-adcscertificationauthority.md index 4aa7f2a4f7..2ebb0f89c1 100644 --- a/docset/winserver2012-ps/adcsdeployment/install-adcscertificationauthority.md +++ b/docset/winserver2012-ps/adcsdeployment/install-adcscertificationauthority.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: adcsdeployment -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/install-adcscertificationauthority?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/install-adcscertificationauthority?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adcsdeployment/install-adcsenrollmentpolicywebservice.md b/docset/winserver2012-ps/adcsdeployment/install-adcsenrollmentpolicywebservice.md index fef08b819d..fa6ae68bf6 100644 --- a/docset/winserver2012-ps/adcsdeployment/install-adcsenrollmentpolicywebservice.md +++ b/docset/winserver2012-ps/adcsdeployment/install-adcsenrollmentpolicywebservice.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: adcsdeployment -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/install-adcsenrollmentpolicywebservice?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/install-adcsenrollmentpolicywebservice?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adcsdeployment/install-adcsenrollmentwebservice.md b/docset/winserver2012-ps/adcsdeployment/install-adcsenrollmentwebservice.md index 95a83e9477..fa6980defe 100644 --- a/docset/winserver2012-ps/adcsdeployment/install-adcsenrollmentwebservice.md +++ b/docset/winserver2012-ps/adcsdeployment/install-adcsenrollmentwebservice.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: adcsdeployment -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/install-adcsenrollmentwebservice?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/install-adcsenrollmentwebservice?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adcsdeployment/install-adcsnetworkdeviceenrollmentservice.md b/docset/winserver2012-ps/adcsdeployment/install-adcsnetworkdeviceenrollmentservice.md index 1e37a91841..a54ffd8c8c 100644 --- a/docset/winserver2012-ps/adcsdeployment/install-adcsnetworkdeviceenrollmentservice.md +++ b/docset/winserver2012-ps/adcsdeployment/install-adcsnetworkdeviceenrollmentservice.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: adcsdeployment -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/install-adcsnetworkdeviceenrollmentservice?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/install-adcsnetworkdeviceenrollmentservice?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adcsdeployment/install-adcsonlineresponder.md b/docset/winserver2012-ps/adcsdeployment/install-adcsonlineresponder.md index e590d2c963..d4b1e41cc9 100644 --- a/docset/winserver2012-ps/adcsdeployment/install-adcsonlineresponder.md +++ b/docset/winserver2012-ps/adcsdeployment/install-adcsonlineresponder.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: adcsdeployment -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/install-adcsonlineresponder?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/install-adcsonlineresponder?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adcsdeployment/install-adcswebenrollment.md b/docset/winserver2012-ps/adcsdeployment/install-adcswebenrollment.md index 582cab540a..ed45807435 100644 --- a/docset/winserver2012-ps/adcsdeployment/install-adcswebenrollment.md +++ b/docset/winserver2012-ps/adcsdeployment/install-adcswebenrollment.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: adcsdeployment -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/install-adcswebenrollment?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/install-adcswebenrollment?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adcsdeployment/uninstall-adcscertificationauthority.md b/docset/winserver2012-ps/adcsdeployment/uninstall-adcscertificationauthority.md index 987dec7b26..38eb562143 100644 --- a/docset/winserver2012-ps/adcsdeployment/uninstall-adcscertificationauthority.md +++ b/docset/winserver2012-ps/adcsdeployment/uninstall-adcscertificationauthority.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: adcsdeployment -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/uninstall-adcscertificationauthority?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/uninstall-adcscertificationauthority?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adcsdeployment/uninstall-adcsenrollmentpolicywebservice.md b/docset/winserver2012-ps/adcsdeployment/uninstall-adcsenrollmentpolicywebservice.md index cd18be3d74..23aec82dfe 100644 --- a/docset/winserver2012-ps/adcsdeployment/uninstall-adcsenrollmentpolicywebservice.md +++ b/docset/winserver2012-ps/adcsdeployment/uninstall-adcsenrollmentpolicywebservice.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: adcsdeployment -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/uninstall-adcsenrollmentpolicywebservice?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/uninstall-adcsenrollmentpolicywebservice?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adcsdeployment/uninstall-adcsenrollmentwebservice.md b/docset/winserver2012-ps/adcsdeployment/uninstall-adcsenrollmentwebservice.md index 798dc9b1b8..5cd62e8553 100644 --- a/docset/winserver2012-ps/adcsdeployment/uninstall-adcsenrollmentwebservice.md +++ b/docset/winserver2012-ps/adcsdeployment/uninstall-adcsenrollmentwebservice.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: adcsdeployment -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/uninstall-adcsenrollmentwebservice?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/uninstall-adcsenrollmentwebservice?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adcsdeployment/uninstall-adcsnetworkdeviceenrollmentservice.md b/docset/winserver2012-ps/adcsdeployment/uninstall-adcsnetworkdeviceenrollmentservice.md index 48ac5c275e..da6b58a37e 100644 --- a/docset/winserver2012-ps/adcsdeployment/uninstall-adcsnetworkdeviceenrollmentservice.md +++ b/docset/winserver2012-ps/adcsdeployment/uninstall-adcsnetworkdeviceenrollmentservice.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: adcsdeployment -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/uninstall-adcsnetworkdeviceenrollmentservice?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/uninstall-adcsnetworkdeviceenrollmentservice?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adcsdeployment/uninstall-adcsonlineresponder.md b/docset/winserver2012-ps/adcsdeployment/uninstall-adcsonlineresponder.md index 3495c8ce3b..45c4cee10f 100644 --- a/docset/winserver2012-ps/adcsdeployment/uninstall-adcsonlineresponder.md +++ b/docset/winserver2012-ps/adcsdeployment/uninstall-adcsonlineresponder.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: adcsdeployment -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/uninstall-adcsonlineresponder?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/uninstall-adcsonlineresponder?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adcsdeployment/uninstall-adcswebenrollment.md b/docset/winserver2012-ps/adcsdeployment/uninstall-adcswebenrollment.md index 9dd57f95bb..e191e15609 100644 --- a/docset/winserver2012-ps/adcsdeployment/uninstall-adcswebenrollment.md +++ b/docset/winserver2012-ps/adcsdeployment/uninstall-adcswebenrollment.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: adcsdeployment -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/uninstall-adcswebenrollment?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/uninstall-adcswebenrollment?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/addsdeployment/Add-ADDSReadOnlyDomainControllerAccount.md b/docset/winserver2012-ps/addsdeployment/Add-ADDSReadOnlyDomainControllerAccount.md index c682ec9ddd..4f591756c9 100644 --- a/docset/winserver2012-ps/addsdeployment/Add-ADDSReadOnlyDomainControllerAccount.md +++ b/docset/winserver2012-ps/addsdeployment/Add-ADDSReadOnlyDomainControllerAccount.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.DirectoryServices.Deployment.dll-Help.xml Module Name: ADDSDeployment -online version: https://docs.microsoft.com/powershell/module/addsdeployment/add-addsreadonlydomaincontrolleraccount?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/addsdeployment/add-addsreadonlydomaincontrolleraccount?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/addsdeployment/Install-ADDSDomain.md b/docset/winserver2012-ps/addsdeployment/Install-ADDSDomain.md index 677f0cf4d5..18ea2beafd 100644 --- a/docset/winserver2012-ps/addsdeployment/Install-ADDSDomain.md +++ b/docset/winserver2012-ps/addsdeployment/Install-ADDSDomain.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.DirectoryServices.Deployment.dll-Help.xml Module Name: ADDSDeployment -online version: https://docs.microsoft.com/powershell/module/addsdeployment/install-addsdomain?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/addsdeployment/install-addsdomain?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/addsdeployment/Install-ADDSDomainController.md b/docset/winserver2012-ps/addsdeployment/Install-ADDSDomainController.md index 8dcb40ba7e..a6efa934a5 100644 --- a/docset/winserver2012-ps/addsdeployment/Install-ADDSDomainController.md +++ b/docset/winserver2012-ps/addsdeployment/Install-ADDSDomainController.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.DirectoryServices.Deployment.dll-Help.xml Module Name: ADDSDeployment -online version: https://docs.microsoft.com/powershell/module/addsdeployment/install-addsdomaincontroller?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/addsdeployment/install-addsdomaincontroller?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/addsdeployment/Install-ADDSForest.md b/docset/winserver2012-ps/addsdeployment/Install-ADDSForest.md index c3c35394da..7f3e7d42af 100644 --- a/docset/winserver2012-ps/addsdeployment/Install-ADDSForest.md +++ b/docset/winserver2012-ps/addsdeployment/Install-ADDSForest.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.DirectoryServices.Deployment.dll-Help.xml Module Name: ADDSDeployment -online version: https://docs.microsoft.com/powershell/module/addsdeployment/install-addsforest?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/addsdeployment/install-addsforest?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md b/docset/winserver2012-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md index c7bfd0c511..8340cb7140 100644 --- a/docset/winserver2012-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md +++ b/docset/winserver2012-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.DirectoryServices.Deployment.dll-Help.xml Module Name: ADDSDeployment -online version: https://docs.microsoft.com/powershell/module/addsdeployment/test-addsdomaincontrollerinstallation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/addsdeployment/test-addsdomaincontrollerinstallation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md b/docset/winserver2012-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md index 4f4a484734..032f424040 100644 --- a/docset/winserver2012-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md +++ b/docset/winserver2012-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.DirectoryServices.Deployment.dll-Help.xml Module Name: ADDSDeployment -online version: https://docs.microsoft.com/powershell/module/addsdeployment/test-addsdomaincontrolleruninstallation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/addsdeployment/test-addsdomaincontrolleruninstallation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/addsdeployment/Test-ADDSDomainInstallation.md b/docset/winserver2012-ps/addsdeployment/Test-ADDSDomainInstallation.md index 1b7bc3ffec..063dd270ab 100644 --- a/docset/winserver2012-ps/addsdeployment/Test-ADDSDomainInstallation.md +++ b/docset/winserver2012-ps/addsdeployment/Test-ADDSDomainInstallation.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.DirectoryServices.Deployment.dll-Help.xml Module Name: ADDSDeployment -online version: https://docs.microsoft.com/powershell/module/addsdeployment/test-addsdomaininstallation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/addsdeployment/test-addsdomaininstallation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/addsdeployment/Test-ADDSForestInstallation.md b/docset/winserver2012-ps/addsdeployment/Test-ADDSForestInstallation.md index 427cda5761..3281c044ac 100644 --- a/docset/winserver2012-ps/addsdeployment/Test-ADDSForestInstallation.md +++ b/docset/winserver2012-ps/addsdeployment/Test-ADDSForestInstallation.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.DirectoryServices.Deployment.dll-Help.xml Module Name: ADDSDeployment -online version: https://docs.microsoft.com/powershell/module/addsdeployment/test-addsforestinstallation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/addsdeployment/test-addsforestinstallation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/addsdeployment/Test-ADDSReadOnlyDomainControllerAccountCreation.md b/docset/winserver2012-ps/addsdeployment/Test-ADDSReadOnlyDomainControllerAccountCreation.md index 0718a47dcc..d0c3a670c9 100644 --- a/docset/winserver2012-ps/addsdeployment/Test-ADDSReadOnlyDomainControllerAccountCreation.md +++ b/docset/winserver2012-ps/addsdeployment/Test-ADDSReadOnlyDomainControllerAccountCreation.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.DirectoryServices.Deployment.dll-Help.xml Module Name: ADDSDeployment -online version: https://docs.microsoft.com/powershell/module/addsdeployment/test-addsreadonlydomaincontrolleraccountcreation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/addsdeployment/test-addsreadonlydomaincontrolleraccountcreation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/addsdeployment/Uninstall-ADDSDomainController.md b/docset/winserver2012-ps/addsdeployment/Uninstall-ADDSDomainController.md index 5275523ac3..c304754834 100644 --- a/docset/winserver2012-ps/addsdeployment/Uninstall-ADDSDomainController.md +++ b/docset/winserver2012-ps/addsdeployment/Uninstall-ADDSDomainController.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.DirectoryServices.Deployment.dll-Help.xml Module Name: ADDSDeployment -online version: https://docs.microsoft.com/powershell/module/addsdeployment/uninstall-addsdomaincontroller?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/addsdeployment/uninstall-addsdomaincontroller?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adfs/Add-ADFSAttributeStore.md b/docset/winserver2012-ps/adfs/Add-ADFSAttributeStore.md index d267d2145a..fcf65ccd84 100644 --- a/docset/winserver2012-ps/adfs/Add-ADFSAttributeStore.md +++ b/docset/winserver2012-ps/adfs/Add-ADFSAttributeStore.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IdentityServer.PowerShell.dll-Help.xml Module Name: ADFS -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfsattributestore?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfsattributestore?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adfs/Add-ADFSCertificate.md b/docset/winserver2012-ps/adfs/Add-ADFSCertificate.md index f294a1abb8..f7dc27ee3d 100644 --- a/docset/winserver2012-ps/adfs/Add-ADFSCertificate.md +++ b/docset/winserver2012-ps/adfs/Add-ADFSCertificate.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IdentityServer.PowerShell.dll-Help.xml Module Name: ADFS -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfscertificate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfscertificate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adfs/Add-ADFSClaimDescription.md b/docset/winserver2012-ps/adfs/Add-ADFSClaimDescription.md index b7dfd1b939..aa6a66636a 100644 --- a/docset/winserver2012-ps/adfs/Add-ADFSClaimDescription.md +++ b/docset/winserver2012-ps/adfs/Add-ADFSClaimDescription.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IdentityServer.PowerShell.dll-Help.xml Module Name: ADFS -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfsclaimdescription?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfsclaimdescription?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adfs/Add-ADFSClaimsProviderTrust.md b/docset/winserver2012-ps/adfs/Add-ADFSClaimsProviderTrust.md index c7355d6b55..0655d751d4 100644 --- a/docset/winserver2012-ps/adfs/Add-ADFSClaimsProviderTrust.md +++ b/docset/winserver2012-ps/adfs/Add-ADFSClaimsProviderTrust.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IdentityServer.PowerShell.dll-Help.xml Module Name: ADFS -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfsclaimsprovidertrust?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfsclaimsprovidertrust?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adfs/Add-ADFSRelyingPartyTrust.md b/docset/winserver2012-ps/adfs/Add-ADFSRelyingPartyTrust.md index 24d9e48d45..7df6dbc32c 100644 --- a/docset/winserver2012-ps/adfs/Add-ADFSRelyingPartyTrust.md +++ b/docset/winserver2012-ps/adfs/Add-ADFSRelyingPartyTrust.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IdentityServer.PowerShell.dll-Help.xml Module Name: ADFS -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfsrelyingpartytrust?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfsrelyingpartytrust?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adfs/Add-AdfsFarmNode.md b/docset/winserver2012-ps/adfs/Add-AdfsFarmNode.md index 1481e88fa7..a1147d1456 100644 --- a/docset/winserver2012-ps/adfs/Add-AdfsFarmNode.md +++ b/docset/winserver2012-ps/adfs/Add-AdfsFarmNode.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.FederationServices.Deployment.dll-Help.xml Module Name: ADFS -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfsfarmnode?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfsfarmnode?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adfs/Add-AdfsProxy.md b/docset/winserver2012-ps/adfs/Add-AdfsProxy.md index 730e8b071e..17a2319e80 100644 --- a/docset/winserver2012-ps/adfs/Add-AdfsProxy.md +++ b/docset/winserver2012-ps/adfs/Add-AdfsProxy.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.FederationServices.Deployment.dll-Help.xml Module Name: ADFS -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfsproxy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfsproxy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adfs/Disable-ADFSClaimsProviderTrust.md b/docset/winserver2012-ps/adfs/Disable-ADFSClaimsProviderTrust.md index a68a331211..3cbef9e3b7 100644 --- a/docset/winserver2012-ps/adfs/Disable-ADFSClaimsProviderTrust.md +++ b/docset/winserver2012-ps/adfs/Disable-ADFSClaimsProviderTrust.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IdentityServer.PowerShell.dll-Help.xml Module Name: ADFS -online version: https://docs.microsoft.com/powershell/module/adfs/disable-adfsclaimsprovidertrust?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/disable-adfsclaimsprovidertrust?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adfs/Disable-ADFSEndpoint.md b/docset/winserver2012-ps/adfs/Disable-ADFSEndpoint.md index aafb024cb1..5f949a08c8 100644 --- a/docset/winserver2012-ps/adfs/Disable-ADFSEndpoint.md +++ b/docset/winserver2012-ps/adfs/Disable-ADFSEndpoint.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IdentityServer.PowerShell.dll-Help.xml Module Name: ADFS -online version: https://docs.microsoft.com/powershell/module/adfs/disable-adfsendpoint?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/disable-adfsendpoint?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adfs/Disable-ADFSRelyingPartyTrust.md b/docset/winserver2012-ps/adfs/Disable-ADFSRelyingPartyTrust.md index f59d85bc3f..c40ad45717 100644 --- a/docset/winserver2012-ps/adfs/Disable-ADFSRelyingPartyTrust.md +++ b/docset/winserver2012-ps/adfs/Disable-ADFSRelyingPartyTrust.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IdentityServer.PowerShell.dll-Help.xml Module Name: ADFS -online version: https://docs.microsoft.com/powershell/module/adfs/disable-adfsrelyingpartytrust?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/disable-adfsrelyingpartytrust?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adfs/Enable-ADFSClaimsProviderTrust.md b/docset/winserver2012-ps/adfs/Enable-ADFSClaimsProviderTrust.md index f1bc9808f9..484ad23430 100644 --- a/docset/winserver2012-ps/adfs/Enable-ADFSClaimsProviderTrust.md +++ b/docset/winserver2012-ps/adfs/Enable-ADFSClaimsProviderTrust.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IdentityServer.PowerShell.dll-Help.xml Module Name: ADFS -online version: https://docs.microsoft.com/powershell/module/adfs/enable-adfsclaimsprovidertrust?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/enable-adfsclaimsprovidertrust?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adfs/Enable-ADFSEndpoint.md b/docset/winserver2012-ps/adfs/Enable-ADFSEndpoint.md index bdfbd41f91..4b8cc9a4d3 100644 --- a/docset/winserver2012-ps/adfs/Enable-ADFSEndpoint.md +++ b/docset/winserver2012-ps/adfs/Enable-ADFSEndpoint.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IdentityServer.PowerShell.dll-Help.xml Module Name: ADFS -online version: https://docs.microsoft.com/powershell/module/adfs/enable-adfsendpoint?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/enable-adfsendpoint?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adfs/Enable-ADFSRelyingPartyTrust.md b/docset/winserver2012-ps/adfs/Enable-ADFSRelyingPartyTrust.md index 0fe8a2fdd0..84b5cf56db 100644 --- a/docset/winserver2012-ps/adfs/Enable-ADFSRelyingPartyTrust.md +++ b/docset/winserver2012-ps/adfs/Enable-ADFSRelyingPartyTrust.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IdentityServer.PowerShell.dll-Help.xml Module Name: ADFS -online version: https://docs.microsoft.com/powershell/module/adfs/enable-adfsrelyingpartytrust?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/enable-adfsrelyingpartytrust?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adfs/Export-AdfsDeploymentSQLScript.md b/docset/winserver2012-ps/adfs/Export-AdfsDeploymentSQLScript.md index 677093c654..d4c216aa5a 100644 --- a/docset/winserver2012-ps/adfs/Export-AdfsDeploymentSQLScript.md +++ b/docset/winserver2012-ps/adfs/Export-AdfsDeploymentSQLScript.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.FederationServices.Deployment.dll-Help.xml Module Name: ADFS -online version: https://docs.microsoft.com/powershell/module/adfs/export-adfsdeploymentsqlscript?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/export-adfsdeploymentsqlscript?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adfs/Get-ADFSAttributeStore.md b/docset/winserver2012-ps/adfs/Get-ADFSAttributeStore.md index 6ca4d55f7b..b7df098dc5 100644 --- a/docset/winserver2012-ps/adfs/Get-ADFSAttributeStore.md +++ b/docset/winserver2012-ps/adfs/Get-ADFSAttributeStore.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IdentityServer.PowerShell.dll-Help.xml Module Name: ADFS -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsattributestore?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsattributestore?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adfs/Get-ADFSCertificate.md b/docset/winserver2012-ps/adfs/Get-ADFSCertificate.md index b67115c1f6..4325c797e1 100644 --- a/docset/winserver2012-ps/adfs/Get-ADFSCertificate.md +++ b/docset/winserver2012-ps/adfs/Get-ADFSCertificate.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IdentityServer.PowerShell.dll-Help.xml Module Name: ADFS -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfscertificate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfscertificate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adfs/Get-ADFSClaimDescription.md b/docset/winserver2012-ps/adfs/Get-ADFSClaimDescription.md index f5997d686a..b64caf4a24 100644 --- a/docset/winserver2012-ps/adfs/Get-ADFSClaimDescription.md +++ b/docset/winserver2012-ps/adfs/Get-ADFSClaimDescription.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IdentityServer.PowerShell.dll-Help.xml Module Name: ADFS -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsclaimdescription?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsclaimdescription?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adfs/Get-ADFSClaimsProviderTrust.md b/docset/winserver2012-ps/adfs/Get-ADFSClaimsProviderTrust.md index dd05ccf05c..936d6b0384 100644 --- a/docset/winserver2012-ps/adfs/Get-ADFSClaimsProviderTrust.md +++ b/docset/winserver2012-ps/adfs/Get-ADFSClaimsProviderTrust.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IdentityServer.PowerShell.dll-Help.xml Module Name: ADFS -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsclaimsprovidertrust?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsclaimsprovidertrust?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adfs/Get-ADFSConfiguration.md b/docset/winserver2012-ps/adfs/Get-ADFSConfiguration.md index 24ec1f1e1a..7671c53d86 100644 --- a/docset/winserver2012-ps/adfs/Get-ADFSConfiguration.md +++ b/docset/winserver2012-ps/adfs/Get-ADFSConfiguration.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IdentityServer.PowerShell.dll-Help.xml Module Name: ADFS -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adfs/Get-ADFSEndpoint.md b/docset/winserver2012-ps/adfs/Get-ADFSEndpoint.md index 9f570820c7..0fb329f44f 100644 --- a/docset/winserver2012-ps/adfs/Get-ADFSEndpoint.md +++ b/docset/winserver2012-ps/adfs/Get-ADFSEndpoint.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IdentityServer.PowerShell.dll-Help.xml Module Name: ADFS -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsendpoint?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsendpoint?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adfs/Get-ADFSProxyConfiguration.md b/docset/winserver2012-ps/adfs/Get-ADFSProxyConfiguration.md index 324554a364..d079f3cfbb 100644 --- a/docset/winserver2012-ps/adfs/Get-ADFSProxyConfiguration.md +++ b/docset/winserver2012-ps/adfs/Get-ADFSProxyConfiguration.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IdentityServer.PowerShell.dll-Help.xml Module Name: ADFS -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsproxyconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsproxyconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adfs/Get-ADFSRelyingPartyTrust.md b/docset/winserver2012-ps/adfs/Get-ADFSRelyingPartyTrust.md index e3231068b6..c7c52de02f 100644 --- a/docset/winserver2012-ps/adfs/Get-ADFSRelyingPartyTrust.md +++ b/docset/winserver2012-ps/adfs/Get-ADFSRelyingPartyTrust.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IdentityServer.PowerShell.dll-Help.xml Module Name: ADFS -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsrelyingpartytrust?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsrelyingpartytrust?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adfs/Get-ADFSSyncConfiguration.md b/docset/winserver2012-ps/adfs/Get-ADFSSyncConfiguration.md index c631b8b5a3..c293e3cb35 100644 --- a/docset/winserver2012-ps/adfs/Get-ADFSSyncConfiguration.md +++ b/docset/winserver2012-ps/adfs/Get-ADFSSyncConfiguration.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IdentityServer.PowerShell.dll-Help.xml Module Name: ADFS -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfssyncconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfssyncconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adfs/Install-AdfsFarm.md b/docset/winserver2012-ps/adfs/Install-AdfsFarm.md index b9cd4875de..2af5648d3d 100644 --- a/docset/winserver2012-ps/adfs/Install-AdfsFarm.md +++ b/docset/winserver2012-ps/adfs/Install-AdfsFarm.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.FederationServices.Deployment.dll-Help.xml Module Name: ADFS -online version: https://docs.microsoft.com/powershell/module/adfs/install-adfsfarm?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/install-adfsfarm?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adfs/Install-AdfsStandalone.md b/docset/winserver2012-ps/adfs/Install-AdfsStandalone.md index 71fe4bfe9a..f9eca0b6ea 100644 --- a/docset/winserver2012-ps/adfs/Install-AdfsStandalone.md +++ b/docset/winserver2012-ps/adfs/Install-AdfsStandalone.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.FederationServices.Deployment.dll-Help.xml Module Name: ADFS -online version: https://docs.microsoft.com/powershell/module/adfs/install-adfsstandalone?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/install-adfsstandalone?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adfs/New-ADFSClaimRuleSet.md b/docset/winserver2012-ps/adfs/New-ADFSClaimRuleSet.md index 0ab2702d7e..0aa811656e 100644 --- a/docset/winserver2012-ps/adfs/New-ADFSClaimRuleSet.md +++ b/docset/winserver2012-ps/adfs/New-ADFSClaimRuleSet.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IdentityServer.PowerShell.dll-Help.xml Module Name: ADFS -online version: https://docs.microsoft.com/powershell/module/adfs/new-adfsclaimruleset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/new-adfsclaimruleset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adfs/New-ADFSContactPerson.md b/docset/winserver2012-ps/adfs/New-ADFSContactPerson.md index f139395a02..09d003fdac 100644 --- a/docset/winserver2012-ps/adfs/New-ADFSContactPerson.md +++ b/docset/winserver2012-ps/adfs/New-ADFSContactPerson.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IdentityServer.PowerShell.dll-Help.xml Module Name: ADFS -online version: https://docs.microsoft.com/powershell/module/adfs/new-adfscontactperson?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/new-adfscontactperson?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adfs/New-ADFSOrganization.md b/docset/winserver2012-ps/adfs/New-ADFSOrganization.md index 9c9c490d31..c0e3ee3e0f 100644 --- a/docset/winserver2012-ps/adfs/New-ADFSOrganization.md +++ b/docset/winserver2012-ps/adfs/New-ADFSOrganization.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IdentityServer.PowerShell.dll-Help.xml Module Name: ADFS -online version: https://docs.microsoft.com/powershell/module/adfs/new-adfsorganization?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/new-adfsorganization?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adfs/New-ADFSSamlEndpoint.md b/docset/winserver2012-ps/adfs/New-ADFSSamlEndpoint.md index eee02c5cfc..51fca93d9a 100644 --- a/docset/winserver2012-ps/adfs/New-ADFSSamlEndpoint.md +++ b/docset/winserver2012-ps/adfs/New-ADFSSamlEndpoint.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IdentityServer.PowerShell.dll-Help.xml Module Name: ADFS -online version: https://docs.microsoft.com/powershell/module/adfs/new-adfssamlendpoint?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/new-adfssamlendpoint?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adfs/Remove-ADFSAttributeStore.md b/docset/winserver2012-ps/adfs/Remove-ADFSAttributeStore.md index eb9bc223cc..e1755f1433 100644 --- a/docset/winserver2012-ps/adfs/Remove-ADFSAttributeStore.md +++ b/docset/winserver2012-ps/adfs/Remove-ADFSAttributeStore.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IdentityServer.PowerShell.dll-Help.xml Module Name: ADFS -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsattributestore?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsattributestore?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adfs/Remove-ADFSCertificate.md b/docset/winserver2012-ps/adfs/Remove-ADFSCertificate.md index a2a268545b..c9ea0ee0b3 100644 --- a/docset/winserver2012-ps/adfs/Remove-ADFSCertificate.md +++ b/docset/winserver2012-ps/adfs/Remove-ADFSCertificate.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IdentityServer.PowerShell.dll-Help.xml Module Name: ADFS -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfscertificate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfscertificate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adfs/Remove-ADFSClaimDescription.md b/docset/winserver2012-ps/adfs/Remove-ADFSClaimDescription.md index bb9ba78e4c..bce13426f3 100644 --- a/docset/winserver2012-ps/adfs/Remove-ADFSClaimDescription.md +++ b/docset/winserver2012-ps/adfs/Remove-ADFSClaimDescription.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IdentityServer.PowerShell.dll-Help.xml Module Name: ADFS -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsclaimdescription?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsclaimdescription?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adfs/Remove-ADFSClaimsProviderTrust.md b/docset/winserver2012-ps/adfs/Remove-ADFSClaimsProviderTrust.md index 7fa0d460bf..3bb0e2be00 100644 --- a/docset/winserver2012-ps/adfs/Remove-ADFSClaimsProviderTrust.md +++ b/docset/winserver2012-ps/adfs/Remove-ADFSClaimsProviderTrust.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IdentityServer.PowerShell.dll-Help.xml Module Name: ADFS -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsclaimsprovidertrust?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsclaimsprovidertrust?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adfs/Remove-ADFSRelyingPartyTrust.md b/docset/winserver2012-ps/adfs/Remove-ADFSRelyingPartyTrust.md index 5910a00a95..919f74e214 100644 --- a/docset/winserver2012-ps/adfs/Remove-ADFSRelyingPartyTrust.md +++ b/docset/winserver2012-ps/adfs/Remove-ADFSRelyingPartyTrust.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IdentityServer.PowerShell.dll-Help.xml Module Name: ADFS -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsrelyingpartytrust?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsrelyingpartytrust?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adfs/Revoke-ADFSProxyTrust.md b/docset/winserver2012-ps/adfs/Revoke-ADFSProxyTrust.md index 1b64bd4a9f..482b536e4a 100644 --- a/docset/winserver2012-ps/adfs/Revoke-ADFSProxyTrust.md +++ b/docset/winserver2012-ps/adfs/Revoke-ADFSProxyTrust.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IdentityServer.PowerShell.dll-Help.xml Module Name: ADFS -online version: https://docs.microsoft.com/powershell/module/adfs/revoke-adfsproxytrust?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/revoke-adfsproxytrust?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adfs/Set-ADFSAttributeStore.md b/docset/winserver2012-ps/adfs/Set-ADFSAttributeStore.md index 7f5e7e3485..64f5cbedd5 100644 --- a/docset/winserver2012-ps/adfs/Set-ADFSAttributeStore.md +++ b/docset/winserver2012-ps/adfs/Set-ADFSAttributeStore.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IdentityServer.PowerShell.dll-Help.xml Module Name: ADFS -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsattributestore?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsattributestore?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adfs/Set-ADFSCertificate.md b/docset/winserver2012-ps/adfs/Set-ADFSCertificate.md index 3078e632d4..63994f3e1b 100644 --- a/docset/winserver2012-ps/adfs/Set-ADFSCertificate.md +++ b/docset/winserver2012-ps/adfs/Set-ADFSCertificate.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IdentityServer.PowerShell.dll-Help.xml Module Name: ADFS -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfscertificate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfscertificate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adfs/Set-ADFSClaimDescription.md b/docset/winserver2012-ps/adfs/Set-ADFSClaimDescription.md index baffcdbbf5..0685f9419b 100644 --- a/docset/winserver2012-ps/adfs/Set-ADFSClaimDescription.md +++ b/docset/winserver2012-ps/adfs/Set-ADFSClaimDescription.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IdentityServer.PowerShell.dll-Help.xml Module Name: ADFS -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsclaimdescription?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsclaimdescription?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adfs/Set-ADFSClaimsProviderTrust.md b/docset/winserver2012-ps/adfs/Set-ADFSClaimsProviderTrust.md index 9faf35ba68..24d470ed28 100644 --- a/docset/winserver2012-ps/adfs/Set-ADFSClaimsProviderTrust.md +++ b/docset/winserver2012-ps/adfs/Set-ADFSClaimsProviderTrust.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IdentityServer.PowerShell.dll-Help.xml Module Name: ADFS -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsclaimsprovidertrust?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsclaimsprovidertrust?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adfs/Set-ADFSConfiguration.md b/docset/winserver2012-ps/adfs/Set-ADFSConfiguration.md index 3e674082de..b5ebaabd50 100644 --- a/docset/winserver2012-ps/adfs/Set-ADFSConfiguration.md +++ b/docset/winserver2012-ps/adfs/Set-ADFSConfiguration.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IdentityServer.PowerShell.dll-Help.xml Module Name: ADFS -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adfs/Set-ADFSEndpoint.md b/docset/winserver2012-ps/adfs/Set-ADFSEndpoint.md index 2019f79ffb..6546a5bea7 100644 --- a/docset/winserver2012-ps/adfs/Set-ADFSEndpoint.md +++ b/docset/winserver2012-ps/adfs/Set-ADFSEndpoint.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IdentityServer.PowerShell.dll-Help.xml Module Name: ADFS -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsendpoint?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsendpoint?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adfs/Set-ADFSProxyConfiguration.md b/docset/winserver2012-ps/adfs/Set-ADFSProxyConfiguration.md index 2dba472808..bc12041e66 100644 --- a/docset/winserver2012-ps/adfs/Set-ADFSProxyConfiguration.md +++ b/docset/winserver2012-ps/adfs/Set-ADFSProxyConfiguration.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IdentityServer.PowerShell.dll-Help.xml Module Name: ADFS -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsproxyconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsproxyconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adfs/Set-ADFSRelyingPartyTrust.md b/docset/winserver2012-ps/adfs/Set-ADFSRelyingPartyTrust.md index 71e9f162fc..b23ecad133 100644 --- a/docset/winserver2012-ps/adfs/Set-ADFSRelyingPartyTrust.md +++ b/docset/winserver2012-ps/adfs/Set-ADFSRelyingPartyTrust.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IdentityServer.PowerShell.dll-Help.xml Module Name: ADFS -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsrelyingpartytrust?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsrelyingpartytrust?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adfs/Set-ADFSSyncConfiguration.md b/docset/winserver2012-ps/adfs/Set-ADFSSyncConfiguration.md index 75b4cd65de..04c15d14ad 100644 --- a/docset/winserver2012-ps/adfs/Set-ADFSSyncConfiguration.md +++ b/docset/winserver2012-ps/adfs/Set-ADFSSyncConfiguration.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IdentityServer.PowerShell.dll-Help.xml Module Name: ADFS -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfssyncconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfssyncconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adfs/Update-ADFSCertificate.md b/docset/winserver2012-ps/adfs/Update-ADFSCertificate.md index a40cac28e7..64e03ec91d 100644 --- a/docset/winserver2012-ps/adfs/Update-ADFSCertificate.md +++ b/docset/winserver2012-ps/adfs/Update-ADFSCertificate.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IdentityServer.PowerShell.dll-Help.xml Module Name: ADFS -online version: https://docs.microsoft.com/powershell/module/adfs/update-adfscertificate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/update-adfscertificate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adfs/Update-ADFSClaimsProviderTrust.md b/docset/winserver2012-ps/adfs/Update-ADFSClaimsProviderTrust.md index 255fbc19b2..3a86bba461 100644 --- a/docset/winserver2012-ps/adfs/Update-ADFSClaimsProviderTrust.md +++ b/docset/winserver2012-ps/adfs/Update-ADFSClaimsProviderTrust.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IdentityServer.PowerShell.dll-Help.xml Module Name: ADFS -online version: https://docs.microsoft.com/powershell/module/adfs/update-adfsclaimsprovidertrust?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/update-adfsclaimsprovidertrust?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adfs/Update-ADFSRelyingPartyTrust.md b/docset/winserver2012-ps/adfs/Update-ADFSRelyingPartyTrust.md index a15f63afd6..408c2f62a3 100644 --- a/docset/winserver2012-ps/adfs/Update-ADFSRelyingPartyTrust.md +++ b/docset/winserver2012-ps/adfs/Update-ADFSRelyingPartyTrust.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IdentityServer.PowerShell.dll-Help.xml Module Name: ADFS -online version: https://docs.microsoft.com/powershell/module/adfs/update-adfsrelyingpartytrust?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/update-adfsrelyingpartytrust?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adrms/Install-ADRMS.md b/docset/winserver2012-ps/adrms/Install-ADRMS.md index 21471f0c27..5d4437a5e5 100644 --- a/docset/winserver2012-ps/adrms/Install-ADRMS.md +++ b/docset/winserver2012-ps/adrms/Install-ADRMS.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.RightsManagementServices.Configuration.dll-Help.xml Module Name: ADRMS -online version: https://docs.microsoft.com/powershell/module/adrms/install-adrms?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrms/install-adrms?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adrms/Uninstall-ADRMS.md b/docset/winserver2012-ps/adrms/Uninstall-ADRMS.md index c533138d06..245b1449c7 100644 --- a/docset/winserver2012-ps/adrms/Uninstall-ADRMS.md +++ b/docset/winserver2012-ps/adrms/Uninstall-ADRMS.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.RightsManagementServices.Configuration.dll-Help.xml Module Name: ADRMS -online version: https://docs.microsoft.com/powershell/module/adrms/uninstall-adrms?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrms/uninstall-adrms?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adrms/Update-ADRMS.md b/docset/winserver2012-ps/adrms/Update-ADRMS.md index 492719d918..e6afc67c38 100644 --- a/docset/winserver2012-ps/adrms/Update-ADRMS.md +++ b/docset/winserver2012-ps/adrms/Update-ADRMS.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.RightsManagementServices.Configuration.dll-Help.xml Module Name: ADRMS -online version: https://docs.microsoft.com/powershell/module/adrms/update-adrms?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrms/update-adrms?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adrmsadmin/Export-RmsReportDefinitionLanguage.md b/docset/winserver2012-ps/adrmsadmin/Export-RmsReportDefinitionLanguage.md index babd6db77b..134d30ed31 100644 --- a/docset/winserver2012-ps/adrmsadmin/Export-RmsReportDefinitionLanguage.md +++ b/docset/winserver2012-ps/adrmsadmin/Export-RmsReportDefinitionLanguage.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/export-rmsreportdefinitionlanguage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/export-rmsreportdefinitionlanguage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adrmsadmin/Export-RmsTPD.md b/docset/winserver2012-ps/adrmsadmin/Export-RmsTPD.md index 54a7002a80..f736ecf33c 100644 --- a/docset/winserver2012-ps/adrmsadmin/Export-RmsTPD.md +++ b/docset/winserver2012-ps/adrmsadmin/Export-RmsTPD.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/export-rmstpd?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/export-rmstpd?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adrmsadmin/Export-RmsTUD.md b/docset/winserver2012-ps/adrmsadmin/Export-RmsTUD.md index d6346bbfcd..501b821985 100644 --- a/docset/winserver2012-ps/adrmsadmin/Export-RmsTUD.md +++ b/docset/winserver2012-ps/adrmsadmin/Export-RmsTUD.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/export-rmstud?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/export-rmstud?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adrmsadmin/Get-RmsCertChain.md b/docset/winserver2012-ps/adrmsadmin/Get-RmsCertChain.md index b2cdfdfb59..a9e7e5f174 100644 --- a/docset/winserver2012-ps/adrmsadmin/Get-RmsCertChain.md +++ b/docset/winserver2012-ps/adrmsadmin/Get-RmsCertChain.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/get-rmscertchain?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/get-rmscertchain?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adrmsadmin/Get-RmsCertInfo.md b/docset/winserver2012-ps/adrmsadmin/Get-RmsCertInfo.md index 9c31f37856..ebeeebc51c 100644 --- a/docset/winserver2012-ps/adrmsadmin/Get-RmsCertInfo.md +++ b/docset/winserver2012-ps/adrmsadmin/Get-RmsCertInfo.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/get-rmscertinfo?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/get-rmscertinfo?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adrmsadmin/Get-RmsChildCert.md b/docset/winserver2012-ps/adrmsadmin/Get-RmsChildCert.md index 009af17420..05b65f13af 100644 --- a/docset/winserver2012-ps/adrmsadmin/Get-RmsChildCert.md +++ b/docset/winserver2012-ps/adrmsadmin/Get-RmsChildCert.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/get-rmschildcert?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/get-rmschildcert?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adrmsadmin/Get-RmsEncryptedIL.md b/docset/winserver2012-ps/adrmsadmin/Get-RmsEncryptedIL.md index 11fd3bbadb..c070ee479e 100644 --- a/docset/winserver2012-ps/adrmsadmin/Get-RmsEncryptedIL.md +++ b/docset/winserver2012-ps/adrmsadmin/Get-RmsEncryptedIL.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/get-rmsencryptedil?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/get-rmsencryptedil?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adrmsadmin/Get-RmsRequestInfo.md b/docset/winserver2012-ps/adrmsadmin/Get-RmsRequestInfo.md index 61ea7c3fb1..706ae17eea 100644 --- a/docset/winserver2012-ps/adrmsadmin/Get-RmsRequestInfo.md +++ b/docset/winserver2012-ps/adrmsadmin/Get-RmsRequestInfo.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/get-rmsrequestinfo?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/get-rmsrequestinfo?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adrmsadmin/Get-RmsSvcAccount.md b/docset/winserver2012-ps/adrmsadmin/Get-RmsSvcAccount.md index eb98ca4844..b692edb4fd 100644 --- a/docset/winserver2012-ps/adrmsadmin/Get-RmsSvcAccount.md +++ b/docset/winserver2012-ps/adrmsadmin/Get-RmsSvcAccount.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/get-rmssvcaccount?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/get-rmssvcaccount?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adrmsadmin/Get-RmsSystemHealthReport.md b/docset/winserver2012-ps/adrmsadmin/Get-RmsSystemHealthReport.md index c3410a4e91..c5e4584e12 100644 --- a/docset/winserver2012-ps/adrmsadmin/Get-RmsSystemHealthReport.md +++ b/docset/winserver2012-ps/adrmsadmin/Get-RmsSystemHealthReport.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/get-rmssystemhealthreport?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/get-rmssystemhealthreport?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adrmsadmin/Get-RmsUserRequestReport.md b/docset/winserver2012-ps/adrmsadmin/Get-RmsUserRequestReport.md index 73ecda8534..92bd483071 100644 --- a/docset/winserver2012-ps/adrmsadmin/Get-RmsUserRequestReport.md +++ b/docset/winserver2012-ps/adrmsadmin/Get-RmsUserRequestReport.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/get-rmsuserrequestreport?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/get-rmsuserrequestreport?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adrmsadmin/Import-RmsTPD.md b/docset/winserver2012-ps/adrmsadmin/Import-RmsTPD.md index d0f1522c3a..a0a8c09640 100644 --- a/docset/winserver2012-ps/adrmsadmin/Import-RmsTPD.md +++ b/docset/winserver2012-ps/adrmsadmin/Import-RmsTPD.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/import-rmstpd?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/import-rmstpd?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adrmsadmin/Import-RmsTUD.md b/docset/winserver2012-ps/adrmsadmin/Import-RmsTUD.md index 94b2044b57..fe8ee40c3c 100644 --- a/docset/winserver2012-ps/adrmsadmin/Import-RmsTUD.md +++ b/docset/winserver2012-ps/adrmsadmin/Import-RmsTUD.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/import-rmstud?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/import-rmstud?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adrmsadmin/Initialize-RmsCryptoMode2.md b/docset/winserver2012-ps/adrmsadmin/Initialize-RmsCryptoMode2.md index b747f00de3..289e5325a6 100644 --- a/docset/winserver2012-ps/adrmsadmin/Initialize-RmsCryptoMode2.md +++ b/docset/winserver2012-ps/adrmsadmin/Initialize-RmsCryptoMode2.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/initialize-rmscryptomode2?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/initialize-rmscryptomode2?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adrmsadmin/Install-RmsMfgEnrollment.md b/docset/winserver2012-ps/adrmsadmin/Install-RmsMfgEnrollment.md index 493df35a87..dd3e81e84b 100644 --- a/docset/winserver2012-ps/adrmsadmin/Install-RmsMfgEnrollment.md +++ b/docset/winserver2012-ps/adrmsadmin/Install-RmsMfgEnrollment.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/install-rmsmfgenrollment?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/install-rmsmfgenrollment?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adrmsadmin/Install-RmsMfgSupport.md b/docset/winserver2012-ps/adrmsadmin/Install-RmsMfgSupport.md index 003b0c1383..598020d270 100644 --- a/docset/winserver2012-ps/adrmsadmin/Install-RmsMfgSupport.md +++ b/docset/winserver2012-ps/adrmsadmin/Install-RmsMfgSupport.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/install-rmsmfgsupport?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/install-rmsmfgsupport?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adrmsadmin/Set-RmsSvcAccount.md b/docset/winserver2012-ps/adrmsadmin/Set-RmsSvcAccount.md index cec0865fdd..a7c10cb0dc 100644 --- a/docset/winserver2012-ps/adrmsadmin/Set-RmsSvcAccount.md +++ b/docset/winserver2012-ps/adrmsadmin/Set-RmsSvcAccount.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/set-rmssvcaccount?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/set-rmssvcaccount?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adrmsadmin/Uninstall-RmsMfgEnrollment.md b/docset/winserver2012-ps/adrmsadmin/Uninstall-RmsMfgEnrollment.md index 7d2a1035eb..8bc9d22ac5 100644 --- a/docset/winserver2012-ps/adrmsadmin/Uninstall-RmsMfgEnrollment.md +++ b/docset/winserver2012-ps/adrmsadmin/Uninstall-RmsMfgEnrollment.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/uninstall-rmsmfgenrollment?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/uninstall-rmsmfgenrollment?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adrmsadmin/Uninstall-RmsMfgSupport.md b/docset/winserver2012-ps/adrmsadmin/Uninstall-RmsMfgSupport.md index 141e4f97ef..c4de6a2216 100644 --- a/docset/winserver2012-ps/adrmsadmin/Uninstall-RmsMfgSupport.md +++ b/docset/winserver2012-ps/adrmsadmin/Uninstall-RmsMfgSupport.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/uninstall-rmsmfgsupport?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/uninstall-rmsmfgsupport?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adrmsadmin/Update-RmsCluster.md b/docset/winserver2012-ps/adrmsadmin/Update-RmsCluster.md index 88d0531a53..b6835feccd 100644 --- a/docset/winserver2012-ps/adrmsadmin/Update-RmsCluster.md +++ b/docset/winserver2012-ps/adrmsadmin/Update-RmsCluster.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/update-rmscluster?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/update-rmscluster?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/adrmsadmin/Update-RmsMfgEnrollment.md b/docset/winserver2012-ps/adrmsadmin/Update-RmsMfgEnrollment.md index 0124c11c0b..c4cd299dfb 100644 --- a/docset/winserver2012-ps/adrmsadmin/Update-RmsMfgEnrollment.md +++ b/docset/winserver2012-ps/adrmsadmin/Update-RmsMfgEnrollment.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/update-rmsmfgenrollment?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/update-rmsmfgenrollment?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/applocker/Get-AppLockerFileInformation.md b/docset/winserver2012-ps/applocker/Get-AppLockerFileInformation.md index 45cced5c2e..aa6429214a 100644 --- a/docset/winserver2012-ps/applocker/Get-AppLockerFileInformation.md +++ b/docset/winserver2012-ps/applocker/Get-AppLockerFileInformation.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Security.ApplicationId.PolicyManagement.Cmdlets.dll-Help.xml Module Name: AppLocker -online version: https://docs.microsoft.com/powershell/module/applocker/get-applockerfileinformation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/applocker/get-applockerfileinformation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/applocker/Get-AppLockerPolicy.md b/docset/winserver2012-ps/applocker/Get-AppLockerPolicy.md index f308397de3..4126210c95 100644 --- a/docset/winserver2012-ps/applocker/Get-AppLockerPolicy.md +++ b/docset/winserver2012-ps/applocker/Get-AppLockerPolicy.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Security.ApplicationId.PolicyManagement.Cmdlets.dll-Help.xml Module Name: AppLocker -online version: https://docs.microsoft.com/powershell/module/applocker/get-applockerpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/applocker/get-applockerpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/applocker/New-AppLockerPolicy.md b/docset/winserver2012-ps/applocker/New-AppLockerPolicy.md index 30df34dc76..cbe0afb37c 100644 --- a/docset/winserver2012-ps/applocker/New-AppLockerPolicy.md +++ b/docset/winserver2012-ps/applocker/New-AppLockerPolicy.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Security.ApplicationId.PolicyManagement.Cmdlets.dll-Help.xml Module Name: AppLocker -online version: https://docs.microsoft.com/powershell/module/applocker/new-applockerpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/applocker/new-applockerpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/applocker/Set-AppLockerPolicy.md b/docset/winserver2012-ps/applocker/Set-AppLockerPolicy.md index dd9e9cc304..5e4579b419 100644 --- a/docset/winserver2012-ps/applocker/Set-AppLockerPolicy.md +++ b/docset/winserver2012-ps/applocker/Set-AppLockerPolicy.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Security.ApplicationId.PolicyManagement.Cmdlets.dll-Help.xml Module Name: AppLocker -online version: https://docs.microsoft.com/powershell/module/applocker/set-applockerpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/applocker/set-applockerpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/applocker/Test-AppLockerPolicy.md b/docset/winserver2012-ps/applocker/Test-AppLockerPolicy.md index 7471572411..032933a1f2 100644 --- a/docset/winserver2012-ps/applocker/Test-AppLockerPolicy.md +++ b/docset/winserver2012-ps/applocker/Test-AppLockerPolicy.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Security.ApplicationId.PolicyManagement.Cmdlets.dll-Help.xml Module Name: AppLocker -online version: https://docs.microsoft.com/powershell/module/applocker/test-applockerpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/applocker/test-applockerpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/appx/Add-AppxPackage.md b/docset/winserver2012-ps/appx/Add-AppxPackage.md index a00311e6a9..ae43ef4be5 100644 --- a/docset/winserver2012-ps/appx/Add-AppxPackage.md +++ b/docset/winserver2012-ps/appx/Add-AppxPackage.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: Appx -online version: https://docs.microsoft.com/powershell/module/appx/add-appxpackage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/add-appxpackage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/appx/Get-AppxLastError.md b/docset/winserver2012-ps/appx/Get-AppxLastError.md index 34f5b49e54..25dc3b3f70 100644 --- a/docset/winserver2012-ps/appx/Get-AppxLastError.md +++ b/docset/winserver2012-ps/appx/Get-AppxLastError.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-help.xml Module Name: Appx -online version: https://docs.microsoft.com/powershell/module/appx/get-appxlasterror?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/get-appxlasterror?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/appx/Get-AppxLog.md b/docset/winserver2012-ps/appx/Get-AppxLog.md index 931d23f174..c89afcea85 100644 --- a/docset/winserver2012-ps/appx/Get-AppxLog.md +++ b/docset/winserver2012-ps/appx/Get-AppxLog.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-help.xml Module Name: Appx -online version: https://docs.microsoft.com/powershell/module/appx/get-appxlog?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/get-appxlog?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/appx/Get-AppxPackage.md b/docset/winserver2012-ps/appx/Get-AppxPackage.md index 0601852a7e..4d8eb82d77 100644 --- a/docset/winserver2012-ps/appx/Get-AppxPackage.md +++ b/docset/winserver2012-ps/appx/Get-AppxPackage.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: Appx -online version: https://docs.microsoft.com/powershell/module/appx/get-appxpackage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/get-appxpackage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/appx/Get-AppxPackageManifest.md b/docset/winserver2012-ps/appx/Get-AppxPackageManifest.md index 77ff02f8cf..0e079de842 100644 --- a/docset/winserver2012-ps/appx/Get-AppxPackageManifest.md +++ b/docset/winserver2012-ps/appx/Get-AppxPackageManifest.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: Appx -online version: https://docs.microsoft.com/powershell/module/appx/get-appxpackagemanifest?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/get-appxpackagemanifest?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/appx/Remove-AppxPackage.md b/docset/winserver2012-ps/appx/Remove-AppxPackage.md index ac7dba134d..244e0a466b 100644 --- a/docset/winserver2012-ps/appx/Remove-AppxPackage.md +++ b/docset/winserver2012-ps/appx/Remove-AppxPackage.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: Appx -online version: https://docs.microsoft.com/powershell/module/appx/remove-appxpackage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/remove-appxpackage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/bestpractices/Get-BpaModel.md b/docset/winserver2012-ps/bestpractices/Get-BpaModel.md index d91ad19cbd..45f761a072 100644 --- a/docset/winserver2012-ps/bestpractices/Get-BpaModel.md +++ b/docset/winserver2012-ps/bestpractices/Get-BpaModel.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.BestPractices.Cmdlets.dll-Help.xml Module Name: BestPractices -online version: https://docs.microsoft.com/powershell/module/bestpractices/get-bpamodel?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bestpractices/get-bpamodel?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/bestpractices/Get-BpaResult.md b/docset/winserver2012-ps/bestpractices/Get-BpaResult.md index 4818dd9ca9..972bfea582 100644 --- a/docset/winserver2012-ps/bestpractices/Get-BpaResult.md +++ b/docset/winserver2012-ps/bestpractices/Get-BpaResult.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.BestPractices.Cmdlets.dll-Help.xml Module Name: BestPractices -online version: https://docs.microsoft.com/powershell/module/bestpractices/get-bparesult?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bestpractices/get-bparesult?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/bestpractices/Invoke-BpaModel.md b/docset/winserver2012-ps/bestpractices/Invoke-BpaModel.md index 15bcd9b2f0..e90cdfad11 100644 --- a/docset/winserver2012-ps/bestpractices/Invoke-BpaModel.md +++ b/docset/winserver2012-ps/bestpractices/Invoke-BpaModel.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.BestPractices.Cmdlets.dll-Help.xml Module Name: BestPractices -online version: https://docs.microsoft.com/powershell/module/bestpractices/invoke-bpamodel?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bestpractices/invoke-bpamodel?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/bestpractices/Set-BpaResult.md b/docset/winserver2012-ps/bestpractices/Set-BpaResult.md index 9f832e4ebe..beb826c76f 100644 --- a/docset/winserver2012-ps/bestpractices/Set-BpaResult.md +++ b/docset/winserver2012-ps/bestpractices/Set-BpaResult.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.BestPractices.Cmdlets.dll-Help.xml Module Name: BestPractices -online version: https://docs.microsoft.com/powershell/module/bestpractices/set-bparesult?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bestpractices/set-bparesult?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/bitlocker/Add-BitLockerKeyProtector.md b/docset/winserver2012-ps/bitlocker/Add-BitLockerKeyProtector.md index ed4afeabeb..ccfc0f6223 100644 --- a/docset/winserver2012-ps/bitlocker/Add-BitLockerKeyProtector.md +++ b/docset/winserver2012-ps/bitlocker/Add-BitLockerKeyProtector.md @@ -1,7 +1,7 @@ --- external help file: Bitlocker_Cmdlets.xml Module Name: BitLocker -online version: https://docs.microsoft.com/powershell/module/bitlocker/add-bitlockerkeyprotector?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/add-bitlockerkeyprotector?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/bitlocker/Backup-BitLockerKeyProtector.md b/docset/winserver2012-ps/bitlocker/Backup-BitLockerKeyProtector.md index c88790841d..9dd396cc3e 100644 --- a/docset/winserver2012-ps/bitlocker/Backup-BitLockerKeyProtector.md +++ b/docset/winserver2012-ps/bitlocker/Backup-BitLockerKeyProtector.md @@ -1,7 +1,7 @@ --- external help file: Bitlocker_Cmdlets.xml Module Name: BitLocker -online version: https://docs.microsoft.com/powershell/module/bitlocker/backup-bitlockerkeyprotector?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/backup-bitlockerkeyprotector?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/bitlocker/Clear-BitLockerAutoUnlock.md b/docset/winserver2012-ps/bitlocker/Clear-BitLockerAutoUnlock.md index ff7ce83624..fe1ed8ca59 100644 --- a/docset/winserver2012-ps/bitlocker/Clear-BitLockerAutoUnlock.md +++ b/docset/winserver2012-ps/bitlocker/Clear-BitLockerAutoUnlock.md @@ -1,7 +1,7 @@ --- external help file: Bitlocker_Cmdlets.xml Module Name: BitLocker -online version: https://docs.microsoft.com/powershell/module/bitlocker/clear-bitlockerautounlock?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/clear-bitlockerautounlock?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/bitlocker/Disable-BitLocker.md b/docset/winserver2012-ps/bitlocker/Disable-BitLocker.md index 1da2773619..fe4bc28734 100644 --- a/docset/winserver2012-ps/bitlocker/Disable-BitLocker.md +++ b/docset/winserver2012-ps/bitlocker/Disable-BitLocker.md @@ -1,7 +1,7 @@ --- external help file: Bitlocker_Cmdlets.xml Module Name: BitLocker -online version: https://docs.microsoft.com/powershell/module/bitlocker/disable-bitlocker?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/disable-bitlocker?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/bitlocker/Disable-BitLockerAutoUnlock.md b/docset/winserver2012-ps/bitlocker/Disable-BitLockerAutoUnlock.md index 9e9d33b1cf..df17dafefc 100644 --- a/docset/winserver2012-ps/bitlocker/Disable-BitLockerAutoUnlock.md +++ b/docset/winserver2012-ps/bitlocker/Disable-BitLockerAutoUnlock.md @@ -1,7 +1,7 @@ --- external help file: Bitlocker_Cmdlets.xml Module Name: BitLocker -online version: https://docs.microsoft.com/powershell/module/bitlocker/disable-bitlockerautounlock?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/disable-bitlockerautounlock?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/bitlocker/Enable-BitLocker.md b/docset/winserver2012-ps/bitlocker/Enable-BitLocker.md index 7002c63896..7962836012 100644 --- a/docset/winserver2012-ps/bitlocker/Enable-BitLocker.md +++ b/docset/winserver2012-ps/bitlocker/Enable-BitLocker.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BitLocker-help.xml Module Name: BitLocker ms.date: 12/14/2021 -online version: https://docs.microsoft.com/powershell/module/bitlocker/enable-bitlocker?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/enable-bitlocker?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-BitLocker --- diff --git a/docset/winserver2012-ps/bitlocker/Enable-BitLockerAutoUnlock.md b/docset/winserver2012-ps/bitlocker/Enable-BitLockerAutoUnlock.md index 0932d9a43c..40f88a9a8f 100644 --- a/docset/winserver2012-ps/bitlocker/Enable-BitLockerAutoUnlock.md +++ b/docset/winserver2012-ps/bitlocker/Enable-BitLockerAutoUnlock.md @@ -1,7 +1,7 @@ --- external help file: Bitlocker_Cmdlets.xml Module Name: BitLocker -online version: https://docs.microsoft.com/powershell/module/bitlocker/enable-bitlockerautounlock?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/enable-bitlockerautounlock?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/bitlocker/Get-BitLockerVolume.md b/docset/winserver2012-ps/bitlocker/Get-BitLockerVolume.md index 313b66eafb..12a6434e7b 100644 --- a/docset/winserver2012-ps/bitlocker/Get-BitLockerVolume.md +++ b/docset/winserver2012-ps/bitlocker/Get-BitLockerVolume.md @@ -1,7 +1,7 @@ --- external help file: Bitlocker_Cmdlets.xml Module Name: BitLocker -online version: https://docs.microsoft.com/powershell/module/bitlocker/get-bitlockervolume?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/get-bitlockervolume?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/bitlocker/Lock-BitLocker.md b/docset/winserver2012-ps/bitlocker/Lock-BitLocker.md index 6adbcdd123..271706c415 100644 --- a/docset/winserver2012-ps/bitlocker/Lock-BitLocker.md +++ b/docset/winserver2012-ps/bitlocker/Lock-BitLocker.md @@ -1,7 +1,7 @@ --- external help file: Bitlocker_Cmdlets.xml Module Name: BitLocker -online version: https://docs.microsoft.com/powershell/module/bitlocker/lock-bitlocker?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/lock-bitlocker?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/bitlocker/Remove-BitLockerKeyProtector.md b/docset/winserver2012-ps/bitlocker/Remove-BitLockerKeyProtector.md index 7d0114fb03..a561a3d878 100644 --- a/docset/winserver2012-ps/bitlocker/Remove-BitLockerKeyProtector.md +++ b/docset/winserver2012-ps/bitlocker/Remove-BitLockerKeyProtector.md @@ -1,7 +1,7 @@ --- external help file: Bitlocker_Cmdlets.xml Module Name: BitLocker -online version: https://docs.microsoft.com/powershell/module/bitlocker/remove-bitlockerkeyprotector?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/remove-bitlockerkeyprotector?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/bitlocker/Resume-BitLocker.md b/docset/winserver2012-ps/bitlocker/Resume-BitLocker.md index db3fa074a0..3064981516 100644 --- a/docset/winserver2012-ps/bitlocker/Resume-BitLocker.md +++ b/docset/winserver2012-ps/bitlocker/Resume-BitLocker.md @@ -1,7 +1,7 @@ --- external help file: Bitlocker_Cmdlets.xml Module Name: BitLocker -online version: https://docs.microsoft.com/powershell/module/bitlocker/resume-bitlocker?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/resume-bitlocker?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/bitlocker/Suspend-BitLocker.md b/docset/winserver2012-ps/bitlocker/Suspend-BitLocker.md index 820b06eaee..eb856bee34 100644 --- a/docset/winserver2012-ps/bitlocker/Suspend-BitLocker.md +++ b/docset/winserver2012-ps/bitlocker/Suspend-BitLocker.md @@ -1,7 +1,7 @@ --- external help file: Bitlocker_Cmdlets.xml Module Name: BitLocker -online version: https://docs.microsoft.com/powershell/module/bitlocker/suspend-bitlocker?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/suspend-bitlocker?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/bitlocker/Unlock-BitLocker.md b/docset/winserver2012-ps/bitlocker/Unlock-BitLocker.md index 993709ac09..72a03d3d2d 100644 --- a/docset/winserver2012-ps/bitlocker/Unlock-BitLocker.md +++ b/docset/winserver2012-ps/bitlocker/Unlock-BitLocker.md @@ -1,7 +1,7 @@ --- external help file: Bitlocker_Cmdlets.xml Module Name: BitLocker -online version: https://docs.microsoft.com/powershell/module/bitlocker/unlock-bitlocker?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/unlock-bitlocker?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/branchcache/Add-BCDataCacheExtension.md b/docset/winserver2012-ps/branchcache/Add-BCDataCacheExtension.md index 62c39721d6..f3f552d446 100644 --- a/docset/winserver2012-ps/branchcache/Add-BCDataCacheExtension.md +++ b/docset/winserver2012-ps/branchcache/Add-BCDataCacheExtension.md @@ -1,7 +1,7 @@ --- external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache -online version: https://docs.microsoft.com/powershell/module/branchcache/add-bcdatacacheextension?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/add-bcdatacacheextension?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/branchcache/Clear-BCCache.md b/docset/winserver2012-ps/branchcache/Clear-BCCache.md index 2061524f05..7ecd85a4be 100644 --- a/docset/winserver2012-ps/branchcache/Clear-BCCache.md +++ b/docset/winserver2012-ps/branchcache/Clear-BCCache.md @@ -1,7 +1,7 @@ --- external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache -online version: https://docs.microsoft.com/powershell/module/branchcache/clear-bccache?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/clear-bccache?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/branchcache/Disable-BC.md b/docset/winserver2012-ps/branchcache/Disable-BC.md index e56569f35a..fa9d912b29 100644 --- a/docset/winserver2012-ps/branchcache/Disable-BC.md +++ b/docset/winserver2012-ps/branchcache/Disable-BC.md @@ -1,7 +1,7 @@ --- external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache -online version: https://docs.microsoft.com/powershell/module/branchcache/disable-bc?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/disable-bc?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/branchcache/Disable-BCDowngrading.md b/docset/winserver2012-ps/branchcache/Disable-BCDowngrading.md index 4d9f9e247d..6e8c810c97 100644 --- a/docset/winserver2012-ps/branchcache/Disable-BCDowngrading.md +++ b/docset/winserver2012-ps/branchcache/Disable-BCDowngrading.md @@ -1,7 +1,7 @@ --- external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache -online version: https://docs.microsoft.com/powershell/module/branchcache/disable-bcdowngrading?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/disable-bcdowngrading?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/branchcache/Disable-BCServeOnBattery.md b/docset/winserver2012-ps/branchcache/Disable-BCServeOnBattery.md index bcd1199d21..1cb335a61f 100644 --- a/docset/winserver2012-ps/branchcache/Disable-BCServeOnBattery.md +++ b/docset/winserver2012-ps/branchcache/Disable-BCServeOnBattery.md @@ -1,7 +1,7 @@ --- external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache -online version: https://docs.microsoft.com/powershell/module/branchcache/disable-bcserveonbattery?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/disable-bcserveonbattery?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/branchcache/Enable-BCDistributed.md b/docset/winserver2012-ps/branchcache/Enable-BCDistributed.md index 657b5b933c..7e7b0cf9d7 100644 --- a/docset/winserver2012-ps/branchcache/Enable-BCDistributed.md +++ b/docset/winserver2012-ps/branchcache/Enable-BCDistributed.md @@ -1,7 +1,7 @@ --- external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache -online version: https://docs.microsoft.com/powershell/module/branchcache/enable-bcdistributed?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/enable-bcdistributed?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/branchcache/Enable-BCDowngrading.md b/docset/winserver2012-ps/branchcache/Enable-BCDowngrading.md index dae328267d..f0f2d3cd7e 100644 --- a/docset/winserver2012-ps/branchcache/Enable-BCDowngrading.md +++ b/docset/winserver2012-ps/branchcache/Enable-BCDowngrading.md @@ -1,7 +1,7 @@ --- external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache -online version: https://docs.microsoft.com/powershell/module/branchcache/enable-bcdowngrading?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/enable-bcdowngrading?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/branchcache/Enable-BCHostedClient.md b/docset/winserver2012-ps/branchcache/Enable-BCHostedClient.md index 3fe89efb9e..4685dccc62 100644 --- a/docset/winserver2012-ps/branchcache/Enable-BCHostedClient.md +++ b/docset/winserver2012-ps/branchcache/Enable-BCHostedClient.md @@ -1,7 +1,7 @@ --- external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache -online version: https://docs.microsoft.com/powershell/module/branchcache/enable-bchostedclient?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/enable-bchostedclient?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/branchcache/Enable-BCHostedServer.md b/docset/winserver2012-ps/branchcache/Enable-BCHostedServer.md index eac8d25ce3..c3cfdac9f7 100644 --- a/docset/winserver2012-ps/branchcache/Enable-BCHostedServer.md +++ b/docset/winserver2012-ps/branchcache/Enable-BCHostedServer.md @@ -1,7 +1,7 @@ --- external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache -online version: https://docs.microsoft.com/powershell/module/branchcache/enable-bchostedserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/enable-bchostedserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/branchcache/Enable-BCLocal.md b/docset/winserver2012-ps/branchcache/Enable-BCLocal.md index 2bca6d0fe5..cecd6c6fdc 100644 --- a/docset/winserver2012-ps/branchcache/Enable-BCLocal.md +++ b/docset/winserver2012-ps/branchcache/Enable-BCLocal.md @@ -1,7 +1,7 @@ --- external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache -online version: https://docs.microsoft.com/powershell/module/branchcache/enable-bclocal?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/enable-bclocal?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/branchcache/Enable-BCServeOnBattery.md b/docset/winserver2012-ps/branchcache/Enable-BCServeOnBattery.md index fd3993f438..7a0c7fc041 100644 --- a/docset/winserver2012-ps/branchcache/Enable-BCServeOnBattery.md +++ b/docset/winserver2012-ps/branchcache/Enable-BCServeOnBattery.md @@ -1,7 +1,7 @@ --- external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache -online version: https://docs.microsoft.com/powershell/module/branchcache/enable-bcserveonbattery?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/enable-bcserveonbattery?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/branchcache/Export-BCCachePackage.md b/docset/winserver2012-ps/branchcache/Export-BCCachePackage.md index 03b672a796..df40a6c6dc 100644 --- a/docset/winserver2012-ps/branchcache/Export-BCCachePackage.md +++ b/docset/winserver2012-ps/branchcache/Export-BCCachePackage.md @@ -1,7 +1,7 @@ --- external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache -online version: https://docs.microsoft.com/powershell/module/branchcache/export-bccachepackage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/export-bccachepackage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/branchcache/Export-BCSecretKey.md b/docset/winserver2012-ps/branchcache/Export-BCSecretKey.md index b9c9bab477..4b47f64e27 100644 --- a/docset/winserver2012-ps/branchcache/Export-BCSecretKey.md +++ b/docset/winserver2012-ps/branchcache/Export-BCSecretKey.md @@ -1,7 +1,7 @@ --- external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache -online version: https://docs.microsoft.com/powershell/module/branchcache/export-bcsecretkey?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/export-bcsecretkey?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/branchcache/Get-BCClientConfiguration.md b/docset/winserver2012-ps/branchcache/Get-BCClientConfiguration.md index fab7a9c207..e326e4171c 100644 --- a/docset/winserver2012-ps/branchcache/Get-BCClientConfiguration.md +++ b/docset/winserver2012-ps/branchcache/Get-BCClientConfiguration.md @@ -1,7 +1,7 @@ --- external help file: BranchCacheClientSettingData.cdxml-help.xml Module Name: BranchCache -online version: https://docs.microsoft.com/powershell/module/branchcache/get-bcclientconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/get-bcclientconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/branchcache/Get-BCContentServerConfiguration.md b/docset/winserver2012-ps/branchcache/Get-BCContentServerConfiguration.md index e5c6cb07a8..3ad2e0d1f1 100644 --- a/docset/winserver2012-ps/branchcache/Get-BCContentServerConfiguration.md +++ b/docset/winserver2012-ps/branchcache/Get-BCContentServerConfiguration.md @@ -1,7 +1,7 @@ --- external help file: BranchCacheContentServerSettingData.cdxml-help.xml Module Name: BranchCache -online version: https://docs.microsoft.com/powershell/module/branchcache/get-bccontentserverconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/get-bccontentserverconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/branchcache/Get-BCDataCache.md b/docset/winserver2012-ps/branchcache/Get-BCDataCache.md index e22feb1488..455c537c38 100644 --- a/docset/winserver2012-ps/branchcache/Get-BCDataCache.md +++ b/docset/winserver2012-ps/branchcache/Get-BCDataCache.md @@ -1,7 +1,7 @@ --- external help file: BranchCachePrimaryRepublicationCacheFile.cdxml-help.xml Module Name: BranchCache -online version: https://docs.microsoft.com/powershell/module/branchcache/get-bcdatacache?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/get-bcdatacache?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/branchcache/Get-BCDataCacheExtension.md b/docset/winserver2012-ps/branchcache/Get-BCDataCacheExtension.md index 5423e748bd..1c2fd301c7 100644 --- a/docset/winserver2012-ps/branchcache/Get-BCDataCacheExtension.md +++ b/docset/winserver2012-ps/branchcache/Get-BCDataCacheExtension.md @@ -1,7 +1,7 @@ --- external help file: BranchCacheSecondaryRepublicationCacheFile.cdxml-help.xml Module Name: BranchCache -online version: https://docs.microsoft.com/powershell/module/branchcache/get-bcdatacacheextension?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/get-bcdatacacheextension?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/branchcache/Get-BCHashCache.md b/docset/winserver2012-ps/branchcache/Get-BCHashCache.md index e5e01445af..5a6a7fb7bf 100644 --- a/docset/winserver2012-ps/branchcache/Get-BCHashCache.md +++ b/docset/winserver2012-ps/branchcache/Get-BCHashCache.md @@ -1,7 +1,7 @@ --- external help file: BranchCachePrimaryPublicationCacheFile.cdxml-help.xml Module Name: BranchCache -online version: https://docs.microsoft.com/powershell/module/branchcache/get-bchashcache?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/get-bchashcache?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/branchcache/Get-BCHostedCacheServerConfiguration.md b/docset/winserver2012-ps/branchcache/Get-BCHostedCacheServerConfiguration.md index 1b0111472d..5ac5f27095 100644 --- a/docset/winserver2012-ps/branchcache/Get-BCHostedCacheServerConfiguration.md +++ b/docset/winserver2012-ps/branchcache/Get-BCHostedCacheServerConfiguration.md @@ -1,7 +1,7 @@ --- external help file: BranchCacheHostedCacheServerSettingData.cdxml-help.xml Module Name: BranchCache -online version: https://docs.microsoft.com/powershell/module/branchcache/get-bchostedcacheserverconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/get-bchostedcacheserverconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/branchcache/Get-BCNetworkConfiguration.md b/docset/winserver2012-ps/branchcache/Get-BCNetworkConfiguration.md index 2a1d5ab570..ddacd66179 100644 --- a/docset/winserver2012-ps/branchcache/Get-BCNetworkConfiguration.md +++ b/docset/winserver2012-ps/branchcache/Get-BCNetworkConfiguration.md @@ -1,7 +1,7 @@ --- external help file: BranchCacheNetworkSettingData.cdxml-help.xml Module Name: BranchCache -online version: https://docs.microsoft.com/powershell/module/branchcache/get-bcnetworkconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/get-bcnetworkconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/branchcache/Get-BCStatus.md b/docset/winserver2012-ps/branchcache/Get-BCStatus.md index b6d62fa9f0..9237ace282 100644 --- a/docset/winserver2012-ps/branchcache/Get-BCStatus.md +++ b/docset/winserver2012-ps/branchcache/Get-BCStatus.md @@ -1,7 +1,7 @@ --- external help file: BranchCacheStatus.cdxml-help.xml Module Name: BranchCache -online version: https://docs.microsoft.com/powershell/module/branchcache/get-bcstatus?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/get-bcstatus?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/branchcache/Import-BCCachePackage.md b/docset/winserver2012-ps/branchcache/Import-BCCachePackage.md index ac123d6d81..237ae97392 100644 --- a/docset/winserver2012-ps/branchcache/Import-BCCachePackage.md +++ b/docset/winserver2012-ps/branchcache/Import-BCCachePackage.md @@ -1,7 +1,7 @@ --- external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache -online version: https://docs.microsoft.com/powershell/module/branchcache/import-bccachepackage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/import-bccachepackage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/branchcache/Import-BCSecretKey.md b/docset/winserver2012-ps/branchcache/Import-BCSecretKey.md index 8edd1c0a8b..847f0b4f89 100644 --- a/docset/winserver2012-ps/branchcache/Import-BCSecretKey.md +++ b/docset/winserver2012-ps/branchcache/Import-BCSecretKey.md @@ -1,7 +1,7 @@ --- external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache -online version: https://docs.microsoft.com/powershell/module/branchcache/import-bcsecretkey?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/import-bcsecretkey?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/branchcache/Publish-BCFileContent.md b/docset/winserver2012-ps/branchcache/Publish-BCFileContent.md index d0bdf9582f..91c4bcb6b6 100644 --- a/docset/winserver2012-ps/branchcache/Publish-BCFileContent.md +++ b/docset/winserver2012-ps/branchcache/Publish-BCFileContent.md @@ -1,7 +1,7 @@ --- external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache -online version: https://docs.microsoft.com/powershell/module/branchcache/publish-bcfilecontent?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/publish-bcfilecontent?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/branchcache/Publish-BCWebContent.md b/docset/winserver2012-ps/branchcache/Publish-BCWebContent.md index 3bcd41d8b7..9cf3882fbf 100644 --- a/docset/winserver2012-ps/branchcache/Publish-BCWebContent.md +++ b/docset/winserver2012-ps/branchcache/Publish-BCWebContent.md @@ -1,7 +1,7 @@ --- external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache -online version: https://docs.microsoft.com/powershell/module/branchcache/publish-bcwebcontent?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/publish-bcwebcontent?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/branchcache/Remove-BCDataCacheExtension.md b/docset/winserver2012-ps/branchcache/Remove-BCDataCacheExtension.md index 75f9db61c4..8fb5df6e90 100644 --- a/docset/winserver2012-ps/branchcache/Remove-BCDataCacheExtension.md +++ b/docset/winserver2012-ps/branchcache/Remove-BCDataCacheExtension.md @@ -1,7 +1,7 @@ --- external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache -online version: https://docs.microsoft.com/powershell/module/branchcache/remove-bcdatacacheextension?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/remove-bcdatacacheextension?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/branchcache/Reset-BC.md b/docset/winserver2012-ps/branchcache/Reset-BC.md index 5c8e0e27e2..01ac81a31d 100644 --- a/docset/winserver2012-ps/branchcache/Reset-BC.md +++ b/docset/winserver2012-ps/branchcache/Reset-BC.md @@ -1,7 +1,7 @@ --- external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache -online version: https://docs.microsoft.com/powershell/module/branchcache/reset-bc?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/reset-bc?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/branchcache/Set-BCAuthentication.md b/docset/winserver2012-ps/branchcache/Set-BCAuthentication.md index 6375764108..4a3bd2b922 100644 --- a/docset/winserver2012-ps/branchcache/Set-BCAuthentication.md +++ b/docset/winserver2012-ps/branchcache/Set-BCAuthentication.md @@ -1,7 +1,7 @@ --- external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache -online version: https://docs.microsoft.com/powershell/module/branchcache/set-bcauthentication?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/set-bcauthentication?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/branchcache/Set-BCCache.md b/docset/winserver2012-ps/branchcache/Set-BCCache.md index 0e4e990843..abde8b6d48 100644 --- a/docset/winserver2012-ps/branchcache/Set-BCCache.md +++ b/docset/winserver2012-ps/branchcache/Set-BCCache.md @@ -1,7 +1,7 @@ --- external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache -online version: https://docs.microsoft.com/powershell/module/branchcache/set-bccache?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/set-bccache?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/branchcache/Set-BCDataCacheEntryMaxAge.md b/docset/winserver2012-ps/branchcache/Set-BCDataCacheEntryMaxAge.md index 5fea84c687..90d466845b 100644 --- a/docset/winserver2012-ps/branchcache/Set-BCDataCacheEntryMaxAge.md +++ b/docset/winserver2012-ps/branchcache/Set-BCDataCacheEntryMaxAge.md @@ -1,7 +1,7 @@ --- external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache -online version: https://docs.microsoft.com/powershell/module/branchcache/set-bcdatacacheentrymaxage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/set-bcdatacacheentrymaxage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/branchcache/Set-BCMinSMBLatency.md b/docset/winserver2012-ps/branchcache/Set-BCMinSMBLatency.md index 86d173e83e..edd3d890b9 100644 --- a/docset/winserver2012-ps/branchcache/Set-BCMinSMBLatency.md +++ b/docset/winserver2012-ps/branchcache/Set-BCMinSMBLatency.md @@ -1,7 +1,7 @@ --- external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache -online version: https://docs.microsoft.com/powershell/module/branchcache/set-bcminsmblatency?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/set-bcminsmblatency?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/branchcache/Set-BCSecretKey.md b/docset/winserver2012-ps/branchcache/Set-BCSecretKey.md index 7d1c5d9bdb..aa4d075fc4 100644 --- a/docset/winserver2012-ps/branchcache/Set-BCSecretKey.md +++ b/docset/winserver2012-ps/branchcache/Set-BCSecretKey.md @@ -1,7 +1,7 @@ --- external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache -online version: https://docs.microsoft.com/powershell/module/branchcache/set-bcsecretkey?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/set-bcsecretkey?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/clusterawareupdating/Add-CauClusterRole.md b/docset/winserver2012-ps/clusterawareupdating/Add-CauClusterRole.md index 47e772840a..fe652e949d 100644 --- a/docset/winserver2012-ps/clusterawareupdating/Add-CauClusterRole.md +++ b/docset/winserver2012-ps/clusterawareupdating/Add-CauClusterRole.md @@ -1,7 +1,7 @@ --- external help file: ClusterAware_Cmdlets.xml Module Name: ClusterAwareUpdating -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/add-cauclusterrole?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/add-cauclusterrole?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/clusterawareupdating/Disable-CauClusterRole.md b/docset/winserver2012-ps/clusterawareupdating/Disable-CauClusterRole.md index c158cf875b..406e3219d6 100644 --- a/docset/winserver2012-ps/clusterawareupdating/Disable-CauClusterRole.md +++ b/docset/winserver2012-ps/clusterawareupdating/Disable-CauClusterRole.md @@ -1,7 +1,7 @@ --- external help file: ClusterAware_Cmdlets.xml Module Name: ClusterAwareUpdating -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/disable-cauclusterrole?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/disable-cauclusterrole?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/clusterawareupdating/Enable-CauClusterRole.md b/docset/winserver2012-ps/clusterawareupdating/Enable-CauClusterRole.md index a0242bda89..4500bd7e34 100644 --- a/docset/winserver2012-ps/clusterawareupdating/Enable-CauClusterRole.md +++ b/docset/winserver2012-ps/clusterawareupdating/Enable-CauClusterRole.md @@ -1,7 +1,7 @@ --- external help file: ClusterAware_Cmdlets.xml Module Name: ClusterAwareUpdating -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/enable-cauclusterrole?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/enable-cauclusterrole?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/clusterawareupdating/Export-CauReport.md b/docset/winserver2012-ps/clusterawareupdating/Export-CauReport.md index 4e6ec906ca..1f66ca508c 100644 --- a/docset/winserver2012-ps/clusterawareupdating/Export-CauReport.md +++ b/docset/winserver2012-ps/clusterawareupdating/Export-CauReport.md @@ -1,7 +1,7 @@ --- external help file: ClusterAware_Cmdlets.xml Module Name: ClusterAwareUpdating -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/export-caureport?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/export-caureport?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/clusterawareupdating/Get-CauClusterRole.md b/docset/winserver2012-ps/clusterawareupdating/Get-CauClusterRole.md index 5797561d54..f3dd0fef12 100644 --- a/docset/winserver2012-ps/clusterawareupdating/Get-CauClusterRole.md +++ b/docset/winserver2012-ps/clusterawareupdating/Get-CauClusterRole.md @@ -1,7 +1,7 @@ --- external help file: ClusterAware_Cmdlets.xml Module Name: ClusterAwareUpdating -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/get-cauclusterrole?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/get-cauclusterrole?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/clusterawareupdating/Get-CauPlugin.md b/docset/winserver2012-ps/clusterawareupdating/Get-CauPlugin.md index 7e7ace6a5a..4e2f0b0606 100644 --- a/docset/winserver2012-ps/clusterawareupdating/Get-CauPlugin.md +++ b/docset/winserver2012-ps/clusterawareupdating/Get-CauPlugin.md @@ -1,7 +1,7 @@ --- external help file: ClusterAware_Cmdlets.xml Module Name: ClusterAwareUpdating -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/get-cauplugin?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/get-cauplugin?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/clusterawareupdating/Get-CauReport.md b/docset/winserver2012-ps/clusterawareupdating/Get-CauReport.md index 60d68b4b41..278781b68d 100644 --- a/docset/winserver2012-ps/clusterawareupdating/Get-CauReport.md +++ b/docset/winserver2012-ps/clusterawareupdating/Get-CauReport.md @@ -1,7 +1,7 @@ --- external help file: ClusterAware_Cmdlets.xml Module Name: ClusterAwareUpdating -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/get-caureport?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/get-caureport?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/clusterawareupdating/Get-CauRun.md b/docset/winserver2012-ps/clusterawareupdating/Get-CauRun.md index 9bacff9e0c..9ad071531a 100644 --- a/docset/winserver2012-ps/clusterawareupdating/Get-CauRun.md +++ b/docset/winserver2012-ps/clusterawareupdating/Get-CauRun.md @@ -1,7 +1,7 @@ --- external help file: ClusterAware_Cmdlets.xml Module Name: ClusterAwareUpdating -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/get-caurun?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/get-caurun?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/clusterawareupdating/Invoke-CauRun.md b/docset/winserver2012-ps/clusterawareupdating/Invoke-CauRun.md index d19795542f..c0c9670940 100644 --- a/docset/winserver2012-ps/clusterawareupdating/Invoke-CauRun.md +++ b/docset/winserver2012-ps/clusterawareupdating/Invoke-CauRun.md @@ -1,7 +1,7 @@ --- external help file: ClusterAware_Cmdlets.xml Module Name: ClusterAwareUpdating -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/invoke-caurun?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/invoke-caurun?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/clusterawareupdating/Invoke-CauScan.md b/docset/winserver2012-ps/clusterawareupdating/Invoke-CauScan.md index 4caae1ec3f..a980039c5d 100644 --- a/docset/winserver2012-ps/clusterawareupdating/Invoke-CauScan.md +++ b/docset/winserver2012-ps/clusterawareupdating/Invoke-CauScan.md @@ -1,7 +1,7 @@ --- external help file: ClusterAware_Cmdlets.xml Module Name: ClusterAwareUpdating -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/invoke-causcan?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/invoke-causcan?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/clusterawareupdating/Register-CauPlugin.md b/docset/winserver2012-ps/clusterawareupdating/Register-CauPlugin.md index 0e29a0733f..255feddf44 100644 --- a/docset/winserver2012-ps/clusterawareupdating/Register-CauPlugin.md +++ b/docset/winserver2012-ps/clusterawareupdating/Register-CauPlugin.md @@ -1,7 +1,7 @@ --- external help file: ClusterAware_Cmdlets.xml Module Name: ClusterAwareUpdating -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/register-cauplugin?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/register-cauplugin?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/clusterawareupdating/Remove-CauClusterRole.md b/docset/winserver2012-ps/clusterawareupdating/Remove-CauClusterRole.md index 0009ca229b..efb99fd1f8 100644 --- a/docset/winserver2012-ps/clusterawareupdating/Remove-CauClusterRole.md +++ b/docset/winserver2012-ps/clusterawareupdating/Remove-CauClusterRole.md @@ -1,7 +1,7 @@ --- external help file: ClusterAware_Cmdlets.xml Module Name: ClusterAwareUpdating -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/remove-cauclusterrole?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/remove-cauclusterrole?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/clusterawareupdating/Save-CauDebugTrace.md b/docset/winserver2012-ps/clusterawareupdating/Save-CauDebugTrace.md index 5c34883f37..7b6d3c0c96 100644 --- a/docset/winserver2012-ps/clusterawareupdating/Save-CauDebugTrace.md +++ b/docset/winserver2012-ps/clusterawareupdating/Save-CauDebugTrace.md @@ -1,7 +1,7 @@ --- external help file: ClusterAware_Cmdlets.xml Module Name: ClusterAwareUpdating -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/save-caudebugtrace?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/save-caudebugtrace?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/clusterawareupdating/Set-CauClusterRole.md b/docset/winserver2012-ps/clusterawareupdating/Set-CauClusterRole.md index 7d97d024a1..7366f01b27 100644 --- a/docset/winserver2012-ps/clusterawareupdating/Set-CauClusterRole.md +++ b/docset/winserver2012-ps/clusterawareupdating/Set-CauClusterRole.md @@ -1,7 +1,7 @@ --- external help file: ClusterAware_Cmdlets.xml Module Name: ClusterAwareUpdating -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/set-cauclusterrole?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/set-cauclusterrole?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/clusterawareupdating/Stop-CauRun.md b/docset/winserver2012-ps/clusterawareupdating/Stop-CauRun.md index f32212ff18..62c44261bb 100644 --- a/docset/winserver2012-ps/clusterawareupdating/Stop-CauRun.md +++ b/docset/winserver2012-ps/clusterawareupdating/Stop-CauRun.md @@ -1,7 +1,7 @@ --- external help file: ClusterAware_Cmdlets.xml Module Name: ClusterAwareUpdating -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/stop-caurun?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/stop-caurun?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/clusterawareupdating/Test-CauSetup.md b/docset/winserver2012-ps/clusterawareupdating/Test-CauSetup.md index f6c2603416..e444cdfe1c 100644 --- a/docset/winserver2012-ps/clusterawareupdating/Test-CauSetup.md +++ b/docset/winserver2012-ps/clusterawareupdating/Test-CauSetup.md @@ -1,7 +1,7 @@ --- external help file: ClusterAware_Cmdlets.xml Module Name: ClusterAwareUpdating -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/test-causetup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/test-causetup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/clusterawareupdating/Unregister-CauPlugin.md b/docset/winserver2012-ps/clusterawareupdating/Unregister-CauPlugin.md index 7662ad75ea..1ab683d13a 100644 --- a/docset/winserver2012-ps/clusterawareupdating/Unregister-CauPlugin.md +++ b/docset/winserver2012-ps/clusterawareupdating/Unregister-CauPlugin.md @@ -1,7 +1,7 @@ --- external help file: ClusterAware_Cmdlets.xml Module Name: ClusterAwareUpdating -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/unregister-cauplugin?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/unregister-cauplugin?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dcbqos/Disable-NetQosFlowControl.md b/docset/winserver2012-ps/dcbqos/Disable-NetQosFlowControl.md index f76b0a82ca..77a4e31f9c 100644 --- a/docset/winserver2012-ps/dcbqos/Disable-NetQosFlowControl.md +++ b/docset/winserver2012-ps/dcbqos/Disable-NetQosFlowControl.md @@ -1,7 +1,7 @@ --- external help file: DcbQos_Cmdlets.xml Module Name: DcbQoS -online version: https://docs.microsoft.com/powershell/module/dcbqos/disable-netqosflowcontrol?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/disable-netqosflowcontrol?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dcbqos/Enable-NetQosFlowControl.md b/docset/winserver2012-ps/dcbqos/Enable-NetQosFlowControl.md index 0fb0ca86ab..ee5ec95759 100644 --- a/docset/winserver2012-ps/dcbqos/Enable-NetQosFlowControl.md +++ b/docset/winserver2012-ps/dcbqos/Enable-NetQosFlowControl.md @@ -1,7 +1,7 @@ --- external help file: DcbQos_Cmdlets.xml Module Name: DcbQoS -online version: https://docs.microsoft.com/powershell/module/dcbqos/enable-netqosflowcontrol?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/enable-netqosflowcontrol?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dcbqos/Get-NetQosDcbxSetting.md b/docset/winserver2012-ps/dcbqos/Get-NetQosDcbxSetting.md index 3a5ea32725..b7d9fdcf26 100644 --- a/docset/winserver2012-ps/dcbqos/Get-NetQosDcbxSetting.md +++ b/docset/winserver2012-ps/dcbqos/Get-NetQosDcbxSetting.md @@ -1,7 +1,7 @@ --- external help file: DcbQos_Cmdlets.xml Module Name: DcbQoS -online version: https://docs.microsoft.com/powershell/module/dcbqos/get-netqosdcbxsetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/get-netqosdcbxsetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dcbqos/Get-NetQosFlowControl.md b/docset/winserver2012-ps/dcbqos/Get-NetQosFlowControl.md index 7094e47044..055b2b3f99 100644 --- a/docset/winserver2012-ps/dcbqos/Get-NetQosFlowControl.md +++ b/docset/winserver2012-ps/dcbqos/Get-NetQosFlowControl.md @@ -1,7 +1,7 @@ --- external help file: DcbQos_Cmdlets.xml Module Name: DcbQoS -online version: https://docs.microsoft.com/powershell/module/dcbqos/get-netqosflowcontrol?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/get-netqosflowcontrol?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dcbqos/Get-NetQosTrafficClass.md b/docset/winserver2012-ps/dcbqos/Get-NetQosTrafficClass.md index 9dabbac45b..16f2725bd0 100644 --- a/docset/winserver2012-ps/dcbqos/Get-NetQosTrafficClass.md +++ b/docset/winserver2012-ps/dcbqos/Get-NetQosTrafficClass.md @@ -1,7 +1,7 @@ --- external help file: DcbQos_Cmdlets.xml Module Name: DcbQoS -online version: https://docs.microsoft.com/powershell/module/dcbqos/get-netqostrafficclass?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/get-netqostrafficclass?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dcbqos/New-NetQosTrafficClass.md b/docset/winserver2012-ps/dcbqos/New-NetQosTrafficClass.md index 878cd41710..5bdbd21e82 100644 --- a/docset/winserver2012-ps/dcbqos/New-NetQosTrafficClass.md +++ b/docset/winserver2012-ps/dcbqos/New-NetQosTrafficClass.md @@ -1,7 +1,7 @@ --- external help file: DcbQos_Cmdlets.xml Module Name: DcbQoS -online version: https://docs.microsoft.com/powershell/module/dcbqos/new-netqostrafficclass?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/new-netqostrafficclass?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dcbqos/Remove-NetQosTrafficClass.md b/docset/winserver2012-ps/dcbqos/Remove-NetQosTrafficClass.md index 027104f19a..659784d690 100644 --- a/docset/winserver2012-ps/dcbqos/Remove-NetQosTrafficClass.md +++ b/docset/winserver2012-ps/dcbqos/Remove-NetQosTrafficClass.md @@ -1,7 +1,7 @@ --- external help file: DcbQos_Cmdlets.xml Module Name: DcbQoS -online version: https://docs.microsoft.com/powershell/module/dcbqos/remove-netqostrafficclass?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/remove-netqostrafficclass?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dcbqos/Set-NetQosDcbxSetting.md b/docset/winserver2012-ps/dcbqos/Set-NetQosDcbxSetting.md index f9d2b64576..1c0d9a3c1b 100644 --- a/docset/winserver2012-ps/dcbqos/Set-NetQosDcbxSetting.md +++ b/docset/winserver2012-ps/dcbqos/Set-NetQosDcbxSetting.md @@ -1,7 +1,7 @@ --- external help file: DcbQos_Cmdlets.xml Module Name: DcbQoS -online version: https://docs.microsoft.com/powershell/module/dcbqos/set-netqosdcbxsetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/set-netqosdcbxsetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dcbqos/Set-NetQosFlowControl.md b/docset/winserver2012-ps/dcbqos/Set-NetQosFlowControl.md index eed2660571..76012fab2c 100644 --- a/docset/winserver2012-ps/dcbqos/Set-NetQosFlowControl.md +++ b/docset/winserver2012-ps/dcbqos/Set-NetQosFlowControl.md @@ -1,7 +1,7 @@ --- external help file: DcbQos_Cmdlets.xml Module Name: DcbQoS -online version: https://docs.microsoft.com/powershell/module/dcbqos/set-netqosflowcontrol?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/set-netqosflowcontrol?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dcbqos/Set-NetQosTrafficClass.md b/docset/winserver2012-ps/dcbqos/Set-NetQosTrafficClass.md index 62177e36bb..59b1c1eab1 100644 --- a/docset/winserver2012-ps/dcbqos/Set-NetQosTrafficClass.md +++ b/docset/winserver2012-ps/dcbqos/Set-NetQosTrafficClass.md @@ -1,7 +1,7 @@ --- external help file: DcbQos_Cmdlets.xml Module Name: DcbQoS -online version: https://docs.microsoft.com/powershell/module/dcbqos/set-netqostrafficclass?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/set-netqostrafficclass?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/deduplication/Disable-DedupVolume.md b/docset/winserver2012-ps/deduplication/Disable-DedupVolume.md index 24543ded0c..87e8a78f27 100644 --- a/docset/winserver2012-ps/deduplication/Disable-DedupVolume.md +++ b/docset/winserver2012-ps/deduplication/Disable-DedupVolume.md @@ -1,7 +1,7 @@ --- external help file: Dedup_Cmdlets.xml Module Name: Deduplication -online version: https://docs.microsoft.com/powershell/module/deduplication/disable-dedupvolume?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/disable-dedupvolume?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/deduplication/Enable-DedupVolume.md b/docset/winserver2012-ps/deduplication/Enable-DedupVolume.md index 310e114b5b..d940bd9050 100644 --- a/docset/winserver2012-ps/deduplication/Enable-DedupVolume.md +++ b/docset/winserver2012-ps/deduplication/Enable-DedupVolume.md @@ -1,7 +1,7 @@ --- external help file: Dedup_Cmdlets.xml Module Name: Deduplication -online version: https://docs.microsoft.com/powershell/module/deduplication/enable-dedupvolume?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/enable-dedupvolume?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/deduplication/Get-DedupJob.md b/docset/winserver2012-ps/deduplication/Get-DedupJob.md index df768f9e3e..9d82197349 100644 --- a/docset/winserver2012-ps/deduplication/Get-DedupJob.md +++ b/docset/winserver2012-ps/deduplication/Get-DedupJob.md @@ -1,7 +1,7 @@ --- external help file: Dedup_Cmdlets.xml Module Name: Deduplication -online version: https://docs.microsoft.com/powershell/module/deduplication/get-dedupjob?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/get-dedupjob?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/deduplication/Get-DedupMetadata.md b/docset/winserver2012-ps/deduplication/Get-DedupMetadata.md index cc81541f6e..40702f33b3 100644 --- a/docset/winserver2012-ps/deduplication/Get-DedupMetadata.md +++ b/docset/winserver2012-ps/deduplication/Get-DedupMetadata.md @@ -1,7 +1,7 @@ --- external help file: Dedup_Cmdlets.xml Module Name: Deduplication -online version: https://docs.microsoft.com/powershell/module/deduplication/get-dedupmetadata?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/get-dedupmetadata?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/deduplication/Get-DedupSchedule.md b/docset/winserver2012-ps/deduplication/Get-DedupSchedule.md index 0e70c05cfe..e82aa72b48 100644 --- a/docset/winserver2012-ps/deduplication/Get-DedupSchedule.md +++ b/docset/winserver2012-ps/deduplication/Get-DedupSchedule.md @@ -1,7 +1,7 @@ --- external help file: Dedup_Cmdlets.xml Module Name: Deduplication -online version: https://docs.microsoft.com/powershell/module/deduplication/get-dedupschedule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/get-dedupschedule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/deduplication/Get-DedupStatus.md b/docset/winserver2012-ps/deduplication/Get-DedupStatus.md index 17e790b335..2d2ef2b1e9 100644 --- a/docset/winserver2012-ps/deduplication/Get-DedupStatus.md +++ b/docset/winserver2012-ps/deduplication/Get-DedupStatus.md @@ -1,7 +1,7 @@ --- external help file: Dedup_Cmdlets.xml Module Name: Deduplication -online version: https://docs.microsoft.com/powershell/module/deduplication/get-dedupstatus?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/get-dedupstatus?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/deduplication/Get-DedupVolume.md b/docset/winserver2012-ps/deduplication/Get-DedupVolume.md index 7e2e294bbd..5c79b3ac3f 100644 --- a/docset/winserver2012-ps/deduplication/Get-DedupVolume.md +++ b/docset/winserver2012-ps/deduplication/Get-DedupVolume.md @@ -1,7 +1,7 @@ --- external help file: Dedup_Cmdlets.xml Module Name: Deduplication -online version: https://docs.microsoft.com/powershell/module/deduplication/get-dedupvolume?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/get-dedupvolume?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/deduplication/Measure-DedupFileMetadata.md b/docset/winserver2012-ps/deduplication/Measure-DedupFileMetadata.md index 1457347529..b83d893601 100644 --- a/docset/winserver2012-ps/deduplication/Measure-DedupFileMetadata.md +++ b/docset/winserver2012-ps/deduplication/Measure-DedupFileMetadata.md @@ -1,7 +1,7 @@ --- external help file: Dedup_Cmdlets.xml Module Name: Deduplication -online version: https://docs.microsoft.com/powershell/module/deduplication/measure-dedupfilemetadata?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/measure-dedupfilemetadata?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/deduplication/New-DedupSchedule.md b/docset/winserver2012-ps/deduplication/New-DedupSchedule.md index 0fa8b3be56..814c81364d 100644 --- a/docset/winserver2012-ps/deduplication/New-DedupSchedule.md +++ b/docset/winserver2012-ps/deduplication/New-DedupSchedule.md @@ -1,7 +1,7 @@ --- external help file: Dedup_Cmdlets.xml Module Name: Deduplication -online version: https://docs.microsoft.com/powershell/module/deduplication/new-dedupschedule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/new-dedupschedule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/deduplication/Remove-DedupSchedule.md b/docset/winserver2012-ps/deduplication/Remove-DedupSchedule.md index bbc110f756..48e92fda53 100644 --- a/docset/winserver2012-ps/deduplication/Remove-DedupSchedule.md +++ b/docset/winserver2012-ps/deduplication/Remove-DedupSchedule.md @@ -1,7 +1,7 @@ --- external help file: Dedup_Cmdlets.xml Module Name: Deduplication -online version: https://docs.microsoft.com/powershell/module/deduplication/remove-dedupschedule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/remove-dedupschedule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/deduplication/Set-DedupSchedule.md b/docset/winserver2012-ps/deduplication/Set-DedupSchedule.md index 8ce1966ab1..f5ec9cee85 100644 --- a/docset/winserver2012-ps/deduplication/Set-DedupSchedule.md +++ b/docset/winserver2012-ps/deduplication/Set-DedupSchedule.md @@ -1,7 +1,7 @@ --- external help file: Dedup_Cmdlets.xml Module Name: Deduplication -online version: https://docs.microsoft.com/powershell/module/deduplication/set-dedupschedule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/set-dedupschedule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/deduplication/Set-DedupVolume.md b/docset/winserver2012-ps/deduplication/Set-DedupVolume.md index e4da6e3824..22949a1833 100644 --- a/docset/winserver2012-ps/deduplication/Set-DedupVolume.md +++ b/docset/winserver2012-ps/deduplication/Set-DedupVolume.md @@ -1,7 +1,7 @@ --- external help file: Dedup_Cmdlets.xml Module Name: Deduplication -online version: https://docs.microsoft.com/powershell/module/deduplication/set-dedupvolume?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/set-dedupvolume?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/deduplication/Start-DedupJob.md b/docset/winserver2012-ps/deduplication/Start-DedupJob.md index 0fc0b26fb2..4e8aa15df5 100644 --- a/docset/winserver2012-ps/deduplication/Start-DedupJob.md +++ b/docset/winserver2012-ps/deduplication/Start-DedupJob.md @@ -1,7 +1,7 @@ --- external help file: Dedup_Cmdlets.xml Module Name: Deduplication -online version: https://docs.microsoft.com/powershell/module/deduplication/start-dedupjob?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/start-dedupjob?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/deduplication/Stop-DedupJob.md b/docset/winserver2012-ps/deduplication/Stop-DedupJob.md index bd72f24184..b13ba77789 100644 --- a/docset/winserver2012-ps/deduplication/Stop-DedupJob.md +++ b/docset/winserver2012-ps/deduplication/Stop-DedupJob.md @@ -1,7 +1,7 @@ --- external help file: Dedup_Cmdlets.xml Module Name: Deduplication -online version: https://docs.microsoft.com/powershell/module/deduplication/stop-dedupjob?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/stop-dedupjob?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/deduplication/Update-DedupStatus.md b/docset/winserver2012-ps/deduplication/Update-DedupStatus.md index 494f62e2ee..b5888ac938 100644 --- a/docset/winserver2012-ps/deduplication/Update-DedupStatus.md +++ b/docset/winserver2012-ps/deduplication/Update-DedupStatus.md @@ -1,7 +1,7 @@ --- external help file: Dedup_Cmdlets.xml Module Name: Deduplication -online version: https://docs.microsoft.com/powershell/module/deduplication/update-dedupstatus?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/update-dedupstatus?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dfsn/Get-DfsnAccess.md b/docset/winserver2012-ps/dfsn/Get-DfsnAccess.md index d30f08aaa2..4fa08241ab 100644 --- a/docset/winserver2012-ps/dfsn/Get-DfsnAccess.md +++ b/docset/winserver2012-ps/dfsn/Get-DfsnAccess.md @@ -1,7 +1,7 @@ --- external help file: DfsNamespaceAccess.cdxml-help.xml Module Name: DFSN -online version: https://docs.microsoft.com/powershell/module/dfsn/get-dfsnaccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/get-dfsnaccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dfsn/Get-DfsnFolder.md b/docset/winserver2012-ps/dfsn/Get-DfsnFolder.md index cdaf1ff00f..628ff2b12d 100644 --- a/docset/winserver2012-ps/dfsn/Get-DfsnFolder.md +++ b/docset/winserver2012-ps/dfsn/Get-DfsnFolder.md @@ -1,7 +1,7 @@ --- external help file: DfsNamespaceFolder.cdxml-help.xml Module Name: DFSN -online version: https://docs.microsoft.com/powershell/module/dfsn/get-dfsnfolder?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/get-dfsnfolder?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dfsn/Get-DfsnFolderTarget.md b/docset/winserver2012-ps/dfsn/Get-DfsnFolderTarget.md index 267ed51735..748e41343e 100644 --- a/docset/winserver2012-ps/dfsn/Get-DfsnFolderTarget.md +++ b/docset/winserver2012-ps/dfsn/Get-DfsnFolderTarget.md @@ -1,7 +1,7 @@ --- external help file: DfsNamespaceFolderTarget.cdxml-help.xml Module Name: DFSN -online version: https://docs.microsoft.com/powershell/module/dfsn/get-dfsnfoldertarget?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/get-dfsnfoldertarget?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dfsn/Get-DfsnRoot.md b/docset/winserver2012-ps/dfsn/Get-DfsnRoot.md index 34d6e0fdd1..4ef74df0e4 100644 --- a/docset/winserver2012-ps/dfsn/Get-DfsnRoot.md +++ b/docset/winserver2012-ps/dfsn/Get-DfsnRoot.md @@ -1,7 +1,7 @@ --- external help file: DfsNamespace.cdxml-help.xml Module Name: DFSN -online version: https://docs.microsoft.com/powershell/module/dfsn/get-dfsnroot?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/get-dfsnroot?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dfsn/Get-DfsnRootTarget.md b/docset/winserver2012-ps/dfsn/Get-DfsnRootTarget.md index 3b4f9d3c9a..c04df2c584 100644 --- a/docset/winserver2012-ps/dfsn/Get-DfsnRootTarget.md +++ b/docset/winserver2012-ps/dfsn/Get-DfsnRootTarget.md @@ -1,7 +1,7 @@ --- external help file: DfsNamespaceRootTarget.cdxml-help.xml Module Name: DFSN -online version: https://docs.microsoft.com/powershell/module/dfsn/get-dfsnroottarget?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/get-dfsnroottarget?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dfsn/Get-DfsnServerConfiguration.md b/docset/winserver2012-ps/dfsn/Get-DfsnServerConfiguration.md index 8beaa20751..12474dd4cd 100644 --- a/docset/winserver2012-ps/dfsn/Get-DfsnServerConfiguration.md +++ b/docset/winserver2012-ps/dfsn/Get-DfsnServerConfiguration.md @@ -1,7 +1,7 @@ --- external help file: DfsNamespaceServerConfig.cdxml-help.xml Module Name: DFSN -online version: https://docs.microsoft.com/powershell/module/dfsn/get-dfsnserverconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/get-dfsnserverconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dfsn/Grant-DfsnAccess.md b/docset/winserver2012-ps/dfsn/Grant-DfsnAccess.md index e0b84f727f..32d4698012 100644 --- a/docset/winserver2012-ps/dfsn/Grant-DfsnAccess.md +++ b/docset/winserver2012-ps/dfsn/Grant-DfsnAccess.md @@ -1,7 +1,7 @@ --- external help file: DfsNamespaceAccess.cdxml-help.xml Module Name: DFSN -online version: https://docs.microsoft.com/powershell/module/dfsn/grant-dfsnaccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/grant-dfsnaccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dfsn/Move-DfsnFolder.md b/docset/winserver2012-ps/dfsn/Move-DfsnFolder.md index f92330cef4..9716f4e133 100644 --- a/docset/winserver2012-ps/dfsn/Move-DfsnFolder.md +++ b/docset/winserver2012-ps/dfsn/Move-DfsnFolder.md @@ -1,7 +1,7 @@ --- external help file: DfsNamespaceFolder.cdxml-help.xml Module Name: DFSN -online version: https://docs.microsoft.com/powershell/module/dfsn/move-dfsnfolder?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/move-dfsnfolder?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dfsn/New-DfsnFolder.md b/docset/winserver2012-ps/dfsn/New-DfsnFolder.md index 7128c8d283..52f033fc36 100644 --- a/docset/winserver2012-ps/dfsn/New-DfsnFolder.md +++ b/docset/winserver2012-ps/dfsn/New-DfsnFolder.md @@ -1,7 +1,7 @@ --- external help file: DfsNamespaceFolder.cdxml-help.xml Module Name: DFSN -online version: https://docs.microsoft.com/powershell/module/dfsn/new-dfsnfolder?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/new-dfsnfolder?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dfsn/New-DfsnFolderTarget.md b/docset/winserver2012-ps/dfsn/New-DfsnFolderTarget.md index 3fe13ebb1f..c553e74349 100644 --- a/docset/winserver2012-ps/dfsn/New-DfsnFolderTarget.md +++ b/docset/winserver2012-ps/dfsn/New-DfsnFolderTarget.md @@ -1,7 +1,7 @@ --- external help file: DfsNamespaceFolderTarget.cdxml-help.xml Module Name: DFSN -online version: https://docs.microsoft.com/powershell/module/dfsn/new-dfsnfoldertarget?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/new-dfsnfoldertarget?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dfsn/New-DfsnRoot.md b/docset/winserver2012-ps/dfsn/New-DfsnRoot.md index c673555b4f..0c4a84f119 100644 --- a/docset/winserver2012-ps/dfsn/New-DfsnRoot.md +++ b/docset/winserver2012-ps/dfsn/New-DfsnRoot.md @@ -1,7 +1,7 @@ --- external help file: DfsNamespace.cdxml-help.xml Module Name: DFSN -online version: https://docs.microsoft.com/powershell/module/dfsn/new-dfsnroot?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/new-dfsnroot?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dfsn/New-DfsnRootTarget.md b/docset/winserver2012-ps/dfsn/New-DfsnRootTarget.md index 7513963e69..7a3519cf70 100644 --- a/docset/winserver2012-ps/dfsn/New-DfsnRootTarget.md +++ b/docset/winserver2012-ps/dfsn/New-DfsnRootTarget.md @@ -1,7 +1,7 @@ --- external help file: DfsNamespaceRootTarget.cdxml-help.xml Module Name: DFSN -online version: https://docs.microsoft.com/powershell/module/dfsn/new-dfsnroottarget?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/new-dfsnroottarget?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dfsn/Remove-DfsnAccess.md b/docset/winserver2012-ps/dfsn/Remove-DfsnAccess.md index 90f5aaf2ba..18f8702e74 100644 --- a/docset/winserver2012-ps/dfsn/Remove-DfsnAccess.md +++ b/docset/winserver2012-ps/dfsn/Remove-DfsnAccess.md @@ -1,7 +1,7 @@ --- external help file: DfsNamespaceAccess.cdxml-help.xml Module Name: DFSN -online version: https://docs.microsoft.com/powershell/module/dfsn/remove-dfsnaccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/remove-dfsnaccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dfsn/Remove-DfsnFolder.md b/docset/winserver2012-ps/dfsn/Remove-DfsnFolder.md index 1f7ed9d88b..70a1660ebb 100644 --- a/docset/winserver2012-ps/dfsn/Remove-DfsnFolder.md +++ b/docset/winserver2012-ps/dfsn/Remove-DfsnFolder.md @@ -1,7 +1,7 @@ --- external help file: DfsNamespaceFolder.cdxml-help.xml Module Name: DFSN -online version: https://docs.microsoft.com/powershell/module/dfsn/remove-dfsnfolder?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/remove-dfsnfolder?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dfsn/Remove-DfsnFolderTarget.md b/docset/winserver2012-ps/dfsn/Remove-DfsnFolderTarget.md index 36ad441ff7..3d5eb9fbcd 100644 --- a/docset/winserver2012-ps/dfsn/Remove-DfsnFolderTarget.md +++ b/docset/winserver2012-ps/dfsn/Remove-DfsnFolderTarget.md @@ -1,7 +1,7 @@ --- external help file: DfsNamespaceFolderTarget.cdxml-help.xml Module Name: DFSN -online version: https://docs.microsoft.com/powershell/module/dfsn/remove-dfsnfoldertarget?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/remove-dfsnfoldertarget?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dfsn/Remove-DfsnRoot.md b/docset/winserver2012-ps/dfsn/Remove-DfsnRoot.md index b450156309..42690fd38b 100644 --- a/docset/winserver2012-ps/dfsn/Remove-DfsnRoot.md +++ b/docset/winserver2012-ps/dfsn/Remove-DfsnRoot.md @@ -1,7 +1,7 @@ --- external help file: DfsNamespace.cdxml-help.xml Module Name: DFSN -online version: https://docs.microsoft.com/powershell/module/dfsn/remove-dfsnroot?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/remove-dfsnroot?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dfsn/Remove-DfsnRootTarget.md b/docset/winserver2012-ps/dfsn/Remove-DfsnRootTarget.md index 7c3ab9703a..c7f01062d5 100644 --- a/docset/winserver2012-ps/dfsn/Remove-DfsnRootTarget.md +++ b/docset/winserver2012-ps/dfsn/Remove-DfsnRootTarget.md @@ -1,7 +1,7 @@ --- external help file: DfsNamespaceRootTarget.cdxml-help.xml Module Name: DFSN -online version: https://docs.microsoft.com/powershell/module/dfsn/remove-dfsnroottarget?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/remove-dfsnroottarget?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dfsn/Revoke-DfsnAccess.md b/docset/winserver2012-ps/dfsn/Revoke-DfsnAccess.md index 22789f0a99..84d8d77980 100644 --- a/docset/winserver2012-ps/dfsn/Revoke-DfsnAccess.md +++ b/docset/winserver2012-ps/dfsn/Revoke-DfsnAccess.md @@ -1,7 +1,7 @@ --- external help file: DfsNamespaceAccess.cdxml-help.xml Module Name: DFSN -online version: https://docs.microsoft.com/powershell/module/dfsn/revoke-dfsnaccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/revoke-dfsnaccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dfsn/Set-DfsnFolder.md b/docset/winserver2012-ps/dfsn/Set-DfsnFolder.md index c0e13c86bc..6987e54132 100644 --- a/docset/winserver2012-ps/dfsn/Set-DfsnFolder.md +++ b/docset/winserver2012-ps/dfsn/Set-DfsnFolder.md @@ -1,7 +1,7 @@ --- external help file: DfsNamespaceFolder.cdxml-help.xml Module Name: DFSN -online version: https://docs.microsoft.com/powershell/module/dfsn/set-dfsnfolder?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/set-dfsnfolder?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dfsn/Set-DfsnFolderTarget.md b/docset/winserver2012-ps/dfsn/Set-DfsnFolderTarget.md index 58312e4c2a..ee3db95adb 100644 --- a/docset/winserver2012-ps/dfsn/Set-DfsnFolderTarget.md +++ b/docset/winserver2012-ps/dfsn/Set-DfsnFolderTarget.md @@ -1,7 +1,7 @@ --- external help file: DfsNamespaceFolderTarget.cdxml-help.xml Module Name: DFSN -online version: https://docs.microsoft.com/powershell/module/dfsn/set-dfsnfoldertarget?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/set-dfsnfoldertarget?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dfsn/Set-DfsnRoot.md b/docset/winserver2012-ps/dfsn/Set-DfsnRoot.md index 40dbab2aca..4b8aae64a2 100644 --- a/docset/winserver2012-ps/dfsn/Set-DfsnRoot.md +++ b/docset/winserver2012-ps/dfsn/Set-DfsnRoot.md @@ -1,7 +1,7 @@ --- external help file: DfsNamespace.cdxml-help.xml Module Name: DFSN -online version: https://docs.microsoft.com/powershell/module/dfsn/set-dfsnroot?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/set-dfsnroot?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dfsn/Set-DfsnRootTarget.md b/docset/winserver2012-ps/dfsn/Set-DfsnRootTarget.md index f87a3f1ad8..e31cd37157 100644 --- a/docset/winserver2012-ps/dfsn/Set-DfsnRootTarget.md +++ b/docset/winserver2012-ps/dfsn/Set-DfsnRootTarget.md @@ -1,7 +1,7 @@ --- external help file: DfsNamespaceRootTarget.cdxml-help.xml Module Name: DFSN -online version: https://docs.microsoft.com/powershell/module/dfsn/set-dfsnroottarget?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/set-dfsnroottarget?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dfsn/Set-DfsnServerConfiguration.md b/docset/winserver2012-ps/dfsn/Set-DfsnServerConfiguration.md index b5edc8dd15..862669c518 100644 --- a/docset/winserver2012-ps/dfsn/Set-DfsnServerConfiguration.md +++ b/docset/winserver2012-ps/dfsn/Set-DfsnServerConfiguration.md @@ -1,7 +1,7 @@ --- external help file: DfsNamespaceServerConfig.cdxml-help.xml Module Name: DFSN -online version: https://docs.microsoft.com/powershell/module/dfsn/set-dfsnserverconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/set-dfsnserverconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Add-DhcpServerInDC.md b/docset/winserver2012-ps/dhcpserver/Add-DhcpServerInDC.md index 3229804c90..9c5a121755 100644 --- a/docset/winserver2012-ps/dhcpserver/Add-DhcpServerInDC.md +++ b/docset/winserver2012-ps/dhcpserver/Add-DhcpServerInDC.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverindc?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverindc?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv4Class.md b/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv4Class.md index 58afe6c82b..e64b8b9974 100644 --- a/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv4Class.md +++ b/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv4Class.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4class?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4class?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv4ExclusionRange.md b/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv4ExclusionRange.md index 060b1bc129..a43d6c0b9e 100644 --- a/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv4ExclusionRange.md +++ b/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv4ExclusionRange.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4exclusionrange?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4exclusionrange?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv4Failover.md b/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv4Failover.md index 7052c1c54e..662dcc0254 100644 --- a/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv4Failover.md +++ b/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv4Failover.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4failover?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4failover?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv4FailoverScope.md b/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv4FailoverScope.md index f5b297e62d..16a9a0fd04 100644 --- a/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv4FailoverScope.md +++ b/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv4FailoverScope.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4failoverscope?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4failoverscope?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv4Filter.md b/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv4Filter.md index b328492c64..5c173e3e31 100644 --- a/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv4Filter.md +++ b/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv4Filter.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4filter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4filter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv4Lease.md b/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv4Lease.md index 7d6d4a7f2f..c4aaa38ff1 100644 --- a/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv4Lease.md +++ b/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv4Lease.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4lease?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4lease?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv4OptionDefinition.md b/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv4OptionDefinition.md index 796429ad6d..cb5bcaad7b 100644 --- a/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv4OptionDefinition.md +++ b/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv4OptionDefinition.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4optiondefinition?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4optiondefinition?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv4Policy.md b/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv4Policy.md index b7d37e8653..9eca917cca 100644 --- a/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv4Policy.md +++ b/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv4Policy.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4policy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4policy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv4PolicyIPRange.md b/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv4PolicyIPRange.md index bbe8efe4a7..96a73a9c0b 100644 --- a/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv4PolicyIPRange.md +++ b/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv4PolicyIPRange.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4policyiprange?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4policyiprange?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv4Reservation.md b/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv4Reservation.md index e4caff97e4..9374543297 100644 --- a/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv4Reservation.md +++ b/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv4Reservation.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4reservation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4reservation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv4Scope.md b/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv4Scope.md index 0c091d9a83..103dcecd4b 100644 --- a/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv4Scope.md +++ b/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv4Scope.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4scope?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4scope?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv4Superscope.md b/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv4Superscope.md index c6fb50c25c..0edaeb3bb8 100644 --- a/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv4Superscope.md +++ b/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv4Superscope.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4superscope?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4superscope?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv6Class.md b/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv6Class.md index a265fe207f..ee3218354f 100644 --- a/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv6Class.md +++ b/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv6Class.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6class?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6class?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv6ExclusionRange.md b/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv6ExclusionRange.md index 83b1be74bd..7db77d90af 100644 --- a/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv6ExclusionRange.md +++ b/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv6ExclusionRange.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6exclusionrange?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6exclusionrange?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv6Lease.md b/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv6Lease.md index eb9ce14cd0..185bc1a4ad 100644 --- a/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv6Lease.md +++ b/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv6Lease.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6lease?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6lease?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv6OptionDefinition.md b/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv6OptionDefinition.md index c66baffa16..c2674f4582 100644 --- a/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv6OptionDefinition.md +++ b/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv6OptionDefinition.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6optiondefinition?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6optiondefinition?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv6Reservation.md b/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv6Reservation.md index 6152a4d360..0a8ef5f0c1 100644 --- a/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv6Reservation.md +++ b/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv6Reservation.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6reservation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6reservation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv6Scope.md b/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv6Scope.md index edce6f95d6..0ba9f8c842 100644 --- a/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv6Scope.md +++ b/docset/winserver2012-ps/dhcpserver/Add-DhcpServerv6Scope.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6scope?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6scope?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Backup-DhcpServer.md b/docset/winserver2012-ps/dhcpserver/Backup-DhcpServer.md index 619934deeb..5a2133a6ae 100644 --- a/docset/winserver2012-ps/dhcpserver/Backup-DhcpServer.md +++ b/docset/winserver2012-ps/dhcpserver/Backup-DhcpServer.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/backup-dhcpserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/backup-dhcpserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Export-DhcpServer.md b/docset/winserver2012-ps/dhcpserver/Export-DhcpServer.md index 5ad199d21b..691b1f2fc4 100644 --- a/docset/winserver2012-ps/dhcpserver/Export-DhcpServer.md +++ b/docset/winserver2012-ps/dhcpserver/Export-DhcpServer.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/export-dhcpserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/export-dhcpserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerAuditLog.md b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerAuditLog.md index 705151f38c..b561ecdde2 100644 --- a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerAuditLog.md +++ b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerAuditLog.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverauditlog?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverauditlog?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerDatabase.md b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerDatabase.md index bf757f2898..1151659f01 100644 --- a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerDatabase.md +++ b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerDatabase.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverdatabase?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverdatabase?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerInDC.md b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerInDC.md index 2755218070..28bfc4de65 100644 --- a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerInDC.md +++ b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerInDC.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverindc?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverindc?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerSetting.md b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerSetting.md index b88cdc68e3..debc96b1f9 100644 --- a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerSetting.md +++ b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerSetting.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserversetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserversetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerVersion.md b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerVersion.md index 56b124fe73..f3cd9489dd 100644 --- a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerVersion.md +++ b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerVersion.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverversion?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverversion?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4Binding.md b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4Binding.md index e83759e8a3..b637edf776 100644 --- a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4Binding.md +++ b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4Binding.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4binding?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4binding?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4Class.md b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4Class.md index b33909b821..691171e5e7 100644 --- a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4Class.md +++ b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4Class.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4class?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4class?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4DnsSetting.md b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4DnsSetting.md index 2b76bce779..6912f8bc72 100644 --- a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4DnsSetting.md +++ b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4DnsSetting.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4dnssetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4dnssetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4ExclusionRange.md b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4ExclusionRange.md index 9d8a500544..7cfeb43155 100644 --- a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4ExclusionRange.md +++ b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4ExclusionRange.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4exclusionrange?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4exclusionrange?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4Failover.md b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4Failover.md index 37175f917e..494472338e 100644 --- a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4Failover.md +++ b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4Failover.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4failover?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4failover?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4Filter.md b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4Filter.md index c8901b4741..e60f071547 100644 --- a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4Filter.md +++ b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4Filter.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4filter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4filter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4FilterList.md b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4FilterList.md index 890cd65d31..36ea49b21f 100644 --- a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4FilterList.md +++ b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4FilterList.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4filterlist?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4filterlist?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4FreeIPAddress.md b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4FreeIPAddress.md index f1ec5a6573..1c5211554c 100644 --- a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4FreeIPAddress.md +++ b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4FreeIPAddress.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4freeipaddress?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4freeipaddress?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4Lease.md b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4Lease.md index a3817f788c..c155f4ceb9 100644 --- a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4Lease.md +++ b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4Lease.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4lease?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4lease?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4OptionDefinition.md b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4OptionDefinition.md index fc7f319800..df8957bee1 100644 --- a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4OptionDefinition.md +++ b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4OptionDefinition.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4optiondefinition?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4optiondefinition?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4OptionValue.md b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4OptionValue.md index b27869f0de..83a4e5ad5c 100644 --- a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4OptionValue.md +++ b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4OptionValue.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4optionvalue?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4optionvalue?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4Policy.md b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4Policy.md index a42fc7d0d7..ecead28788 100644 --- a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4Policy.md +++ b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4Policy.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4policy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4policy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4PolicyIPRange.md b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4PolicyIPRange.md index dc96aa81cd..47b203f06e 100644 --- a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4PolicyIPRange.md +++ b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4PolicyIPRange.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4policyiprange?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4policyiprange?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4Reservation.md b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4Reservation.md index 60629dd602..21f4ca972c 100644 --- a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4Reservation.md +++ b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4Reservation.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4reservation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4reservation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4Scope.md b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4Scope.md index d97332fc2d..09a25f27cf 100644 --- a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4Scope.md +++ b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4Scope.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4scope?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4scope?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4ScopeStatistics.md b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4ScopeStatistics.md index 04b52ea11b..3a0b676dbd 100644 --- a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4ScopeStatistics.md +++ b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4ScopeStatistics.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4scopestatistics?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4scopestatistics?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4Statistics.md b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4Statistics.md index eeb3a15d17..9b5b68c9db 100644 --- a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4Statistics.md +++ b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4Statistics.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4statistics?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4statistics?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4Superscope.md b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4Superscope.md index aa60b253ee..1691bc401c 100644 --- a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4Superscope.md +++ b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv4Superscope.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4superscope?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4superscope?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6Binding.md b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6Binding.md index b3fe445edd..7d0e764d92 100644 --- a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6Binding.md +++ b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6Binding.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6binding?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6binding?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6Class.md b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6Class.md index 7f75543220..1b01096e06 100644 --- a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6Class.md +++ b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6Class.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6class?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6class?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6DnsSetting.md b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6DnsSetting.md index 7fccafd79a..985455e9a3 100644 --- a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6DnsSetting.md +++ b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6DnsSetting.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6dnssetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6dnssetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6ExclusionRange.md b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6ExclusionRange.md index 5958bc3d3d..8cd273de15 100644 --- a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6ExclusionRange.md +++ b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6ExclusionRange.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6exclusionrange?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6exclusionrange?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6FreeIPAddress.md b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6FreeIPAddress.md index 26dbfe65a3..0be14e41bb 100644 --- a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6FreeIPAddress.md +++ b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6FreeIPAddress.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6freeipaddress?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6freeipaddress?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6Lease.md b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6Lease.md index 17c11be192..28e50a8bfc 100644 --- a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6Lease.md +++ b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6Lease.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6lease?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6lease?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6OptionDefinition.md b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6OptionDefinition.md index bc487170c7..701716b239 100644 --- a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6OptionDefinition.md +++ b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6OptionDefinition.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6optiondefinition?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6optiondefinition?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6OptionValue.md b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6OptionValue.md index 5c38daee64..c64ff8436e 100644 --- a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6OptionValue.md +++ b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6OptionValue.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6optionvalue?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6optionvalue?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6Reservation.md b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6Reservation.md index 50eb6a45c6..87184ea7b5 100644 --- a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6Reservation.md +++ b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6Reservation.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6reservation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6reservation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6Scope.md b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6Scope.md index c5d851325b..f6151503c3 100644 --- a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6Scope.md +++ b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6Scope.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6scope?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6scope?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6ScopeStatistics.md b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6ScopeStatistics.md index 67ffcc672e..5ccb9a696b 100644 --- a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6ScopeStatistics.md +++ b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6ScopeStatistics.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6scopestatistics?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6scopestatistics?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6StatelessStatistics.md b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6StatelessStatistics.md index 8e92ec7133..e34d8eae0e 100644 --- a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6StatelessStatistics.md +++ b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6StatelessStatistics.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6statelessstatistics?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6statelessstatistics?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6StatelessStore.md b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6StatelessStore.md index f67a876868..8c402f16c5 100644 --- a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6StatelessStore.md +++ b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6StatelessStore.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6statelessstore?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6statelessstore?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6Statistics.md b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6Statistics.md index 693dddfb36..1d2f3d46f7 100644 --- a/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6Statistics.md +++ b/docset/winserver2012-ps/dhcpserver/Get-DhcpServerv6Statistics.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6statistics?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6statistics?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Import-DhcpServer.md b/docset/winserver2012-ps/dhcpserver/Import-DhcpServer.md index 989c1d1a76..ac48d49966 100644 --- a/docset/winserver2012-ps/dhcpserver/Import-DhcpServer.md +++ b/docset/winserver2012-ps/dhcpserver/Import-DhcpServer.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/import-dhcpserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/import-dhcpserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Invoke-DhcpServerv4FailoverReplication.md b/docset/winserver2012-ps/dhcpserver/Invoke-DhcpServerv4FailoverReplication.md index 6c8383be95..8f2e452a0d 100644 --- a/docset/winserver2012-ps/dhcpserver/Invoke-DhcpServerv4FailoverReplication.md +++ b/docset/winserver2012-ps/dhcpserver/Invoke-DhcpServerv4FailoverReplication.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/invoke-dhcpserverv4failoverreplication?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/invoke-dhcpserverv4failoverreplication?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerInDC.md b/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerInDC.md index 5d4c258b8a..b874b41349 100644 --- a/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerInDC.md +++ b/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerInDC.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverindc?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverindc?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4Class.md b/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4Class.md index 08130528f1..74bece311b 100644 --- a/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4Class.md +++ b/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4Class.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4class?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4class?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4ExclusionRange.md b/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4ExclusionRange.md index bfa9890da0..e94117b398 100644 --- a/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4ExclusionRange.md +++ b/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4ExclusionRange.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4exclusionrange?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4exclusionrange?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4Failover.md b/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4Failover.md index 3701b6ad24..b0d3951992 100644 --- a/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4Failover.md +++ b/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4Failover.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4failover?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4failover?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4FailoverScope.md b/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4FailoverScope.md index e21ad261b7..bba1dc822c 100644 --- a/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4FailoverScope.md +++ b/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4FailoverScope.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4failoverscope?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4failoverscope?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4Filter.md b/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4Filter.md index dda78ce333..c888648ee1 100644 --- a/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4Filter.md +++ b/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4Filter.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4filter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4filter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4Lease.md b/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4Lease.md index c38c7961a7..644ec16bac 100644 --- a/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4Lease.md +++ b/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4Lease.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4lease?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4lease?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4OptionDefinition.md b/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4OptionDefinition.md index 50c70b3d85..a2f157c423 100644 --- a/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4OptionDefinition.md +++ b/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4OptionDefinition.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4optiondefinition?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4optiondefinition?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4OptionValue.md b/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4OptionValue.md index c062e07437..1c160a1a07 100644 --- a/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4OptionValue.md +++ b/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4OptionValue.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4optionvalue?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4optionvalue?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4Policy.md b/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4Policy.md index f97cc92f04..235175ee05 100644 --- a/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4Policy.md +++ b/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4Policy.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4policy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4policy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4PolicyIPRange.md b/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4PolicyIPRange.md index 38dc303e66..c0b3710f54 100644 --- a/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4PolicyIPRange.md +++ b/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4PolicyIPRange.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4policyiprange?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4policyiprange?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4Reservation.md b/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4Reservation.md index eede6181aa..bd6b9ed933 100644 --- a/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4Reservation.md +++ b/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4Reservation.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4reservation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4reservation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4Scope.md b/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4Scope.md index d94495d2bb..6a709fbdb8 100644 --- a/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4Scope.md +++ b/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4Scope.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4scope?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4scope?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4Superscope.md b/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4Superscope.md index 026a7b5b73..0914568bc1 100644 --- a/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4Superscope.md +++ b/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv4Superscope.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4superscope?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4superscope?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv6Class.md b/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv6Class.md index 406af772ea..3a333ae3b7 100644 --- a/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv6Class.md +++ b/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv6Class.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6class?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6class?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv6ExclusionRange.md b/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv6ExclusionRange.md index 0c6c3a3fb2..b1fe081d80 100644 --- a/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv6ExclusionRange.md +++ b/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv6ExclusionRange.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6exclusionrange?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6exclusionrange?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv6Lease.md b/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv6Lease.md index a97922de8c..0ff41cb993 100644 --- a/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv6Lease.md +++ b/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv6Lease.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6lease?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6lease?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv6OptionDefinition.md b/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv6OptionDefinition.md index 8532520c86..d112d2fc63 100644 --- a/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv6OptionDefinition.md +++ b/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv6OptionDefinition.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6optiondefinition?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6optiondefinition?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv6OptionValue.md b/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv6OptionValue.md index 99695fbabd..116816a033 100644 --- a/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv6OptionValue.md +++ b/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv6OptionValue.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6optionvalue?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6optionvalue?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv6Reservation.md b/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv6Reservation.md index 371c1060c9..a61e0a24c9 100644 --- a/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv6Reservation.md +++ b/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv6Reservation.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6reservation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6reservation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv6Scope.md b/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv6Scope.md index e8ca2d392c..15ccafe0db 100644 --- a/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv6Scope.md +++ b/docset/winserver2012-ps/dhcpserver/Remove-DhcpServerv6Scope.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6scope?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6scope?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Restore-DhcpServer.md b/docset/winserver2012-ps/dhcpserver/Restore-DhcpServer.md index 9a004ed961..714c553fc1 100644 --- a/docset/winserver2012-ps/dhcpserver/Restore-DhcpServer.md +++ b/docset/winserver2012-ps/dhcpserver/Restore-DhcpServer.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/restore-dhcpserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/restore-dhcpserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Set-DhcpServerAuditLog.md b/docset/winserver2012-ps/dhcpserver/Set-DhcpServerAuditLog.md index 4e203d33ff..3fec7484f6 100644 --- a/docset/winserver2012-ps/dhcpserver/Set-DhcpServerAuditLog.md +++ b/docset/winserver2012-ps/dhcpserver/Set-DhcpServerAuditLog.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverauditlog?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverauditlog?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Set-DhcpServerDatabase.md b/docset/winserver2012-ps/dhcpserver/Set-DhcpServerDatabase.md index 9b4b627f7b..fbdef7d45f 100644 --- a/docset/winserver2012-ps/dhcpserver/Set-DhcpServerDatabase.md +++ b/docset/winserver2012-ps/dhcpserver/Set-DhcpServerDatabase.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverdatabase?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverdatabase?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Set-DhcpServerSetting.md b/docset/winserver2012-ps/dhcpserver/Set-DhcpServerSetting.md index 72eddcba79..cf9716e1d3 100644 --- a/docset/winserver2012-ps/dhcpserver/Set-DhcpServerSetting.md +++ b/docset/winserver2012-ps/dhcpserver/Set-DhcpServerSetting.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserversetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserversetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv4Binding.md b/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv4Binding.md index dba74d7845..65b4f3dc89 100644 --- a/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv4Binding.md +++ b/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv4Binding.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4binding?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4binding?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv4Class.md b/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv4Class.md index 4129bdf4df..5b6bacbb4f 100644 --- a/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv4Class.md +++ b/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv4Class.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4class?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4class?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv4DnsSetting.md b/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv4DnsSetting.md index 9d0639bd53..52c7e02cd2 100644 --- a/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv4DnsSetting.md +++ b/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv4DnsSetting.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4dnssetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4dnssetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv4Failover.md b/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv4Failover.md index 25c638871d..18353bb1a2 100644 --- a/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv4Failover.md +++ b/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv4Failover.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4failover?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4failover?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv4FilterList.md b/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv4FilterList.md index b89b960ab7..60b598e561 100644 --- a/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv4FilterList.md +++ b/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv4FilterList.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4filterlist?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4filterlist?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv4OptionDefinition.md b/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv4OptionDefinition.md index 1f2ac38cbb..8396622b22 100644 --- a/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv4OptionDefinition.md +++ b/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv4OptionDefinition.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4optiondefinition?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4optiondefinition?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv4OptionValue.md b/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv4OptionValue.md index 5dcafaea7d..784286615d 100644 --- a/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv4OptionValue.md +++ b/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv4OptionValue.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4optionvalue?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4optionvalue?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv4Policy.md b/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv4Policy.md index 8546626553..692848743e 100644 --- a/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv4Policy.md +++ b/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv4Policy.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4policy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4policy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv4Reservation.md b/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv4Reservation.md index e5b236fbef..320efd917b 100644 --- a/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv4Reservation.md +++ b/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv4Reservation.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4reservation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4reservation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv4Scope.md b/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv4Scope.md index 86c804bf73..ce82927595 100644 --- a/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv4Scope.md +++ b/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv4Scope.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4scope?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4scope?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv6Binding.md b/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv6Binding.md index 61354203bf..d0a49e7cf8 100644 --- a/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv6Binding.md +++ b/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv6Binding.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6binding?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6binding?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv6Class.md b/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv6Class.md index d815150b2f..91c5bf9492 100644 --- a/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv6Class.md +++ b/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv6Class.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6class?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6class?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv6DnsSetting.md b/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv6DnsSetting.md index 2b379990b3..47ef48945a 100644 --- a/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv6DnsSetting.md +++ b/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv6DnsSetting.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6dnssetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6dnssetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv6OptionDefinition.md b/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv6OptionDefinition.md index 9f2f8718ef..ad456d5244 100644 --- a/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv6OptionDefinition.md +++ b/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv6OptionDefinition.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6optiondefinition?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6optiondefinition?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv6OptionValue.md b/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv6OptionValue.md index 00b893124e..fe771f3959 100644 --- a/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv6OptionValue.md +++ b/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv6OptionValue.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6optionvalue?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6optionvalue?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv6Reservation.md b/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv6Reservation.md index 25683cc4b8..c28bcea185 100644 --- a/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv6Reservation.md +++ b/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv6Reservation.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6reservation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6reservation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv6Scope.md b/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv6Scope.md index 21da3f1ee3..596f40f306 100644 --- a/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv6Scope.md +++ b/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv6Scope.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6scope?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6scope?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv6StatelessStore.md b/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv6StatelessStore.md index 82f8ed6a7a..e691590fb1 100644 --- a/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv6StatelessStore.md +++ b/docset/winserver2012-ps/dhcpserver/Set-DhcpServerv6StatelessStore.md @@ -1,7 +1,7 @@ --- external help file: DhcpServer_Cmdlets.xml Module Name: DhcpServer -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6statelessstore?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6statelessstore?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/directaccessclientcomponents/Disable-DAManualEntryPointSelection.md b/docset/winserver2012-ps/directaccessclientcomponents/Disable-DAManualEntryPointSelection.md index f69abea31a..31e3926d13 100644 --- a/docset/winserver2012-ps/directaccessclientcomponents/Disable-DAManualEntryPointSelection.md +++ b/docset/winserver2012-ps/directaccessclientcomponents/Disable-DAManualEntryPointSelection.md @@ -1,7 +1,7 @@ --- external help file: MSFT_DASiteTableEntry.cdxml-help.xml Module Name: DirectAccessClientComponents -online version: https://docs.microsoft.com/powershell/module/directaccessclientcomponents/disable-damanualentrypointselection?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/directaccessclientcomponents/disable-damanualentrypointselection?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/directaccessclientcomponents/Enable-DAManualEntryPointSelection.md b/docset/winserver2012-ps/directaccessclientcomponents/Enable-DAManualEntryPointSelection.md index d5dec3d357..f09c18f78b 100644 --- a/docset/winserver2012-ps/directaccessclientcomponents/Enable-DAManualEntryPointSelection.md +++ b/docset/winserver2012-ps/directaccessclientcomponents/Enable-DAManualEntryPointSelection.md @@ -1,7 +1,7 @@ --- external help file: MSFT_DASiteTableEntry.cdxml-help.xml Module Name: DirectAccessClientComponents -online version: https://docs.microsoft.com/powershell/module/directaccessclientcomponents/enable-damanualentrypointselection?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/directaccessclientcomponents/enable-damanualentrypointselection?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/directaccessclientcomponents/Get-DAClientExperienceConfiguration.md b/docset/winserver2012-ps/directaccessclientcomponents/Get-DAClientExperienceConfiguration.md index 0c740c73bb..f86dd958eb 100644 --- a/docset/winserver2012-ps/directaccessclientcomponents/Get-DAClientExperienceConfiguration.md +++ b/docset/winserver2012-ps/directaccessclientcomponents/Get-DAClientExperienceConfiguration.md @@ -1,7 +1,7 @@ --- external help file: MSFT_DAClientExperienceConfiguration.cdxml-help.xml Module Name: DirectAccessClientComponents -online version: https://docs.microsoft.com/powershell/module/directaccessclientcomponents/get-daclientexperienceconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/directaccessclientcomponents/get-daclientexperienceconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/directaccessclientcomponents/Get-DAEntryPointTableItem.md b/docset/winserver2012-ps/directaccessclientcomponents/Get-DAEntryPointTableItem.md index d63fdf5bf7..e5113a5a72 100644 --- a/docset/winserver2012-ps/directaccessclientcomponents/Get-DAEntryPointTableItem.md +++ b/docset/winserver2012-ps/directaccessclientcomponents/Get-DAEntryPointTableItem.md @@ -1,7 +1,7 @@ --- external help file: MSFT_DASiteTableEntry.cdxml-help.xml Module Name: DirectAccessClientComponents -online version: https://docs.microsoft.com/powershell/module/directaccessclientcomponents/get-daentrypointtableitem?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/directaccessclientcomponents/get-daentrypointtableitem?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/directaccessclientcomponents/New-DAEntryPointTableItem.md b/docset/winserver2012-ps/directaccessclientcomponents/New-DAEntryPointTableItem.md index 082dec24b2..578b8ef225 100644 --- a/docset/winserver2012-ps/directaccessclientcomponents/New-DAEntryPointTableItem.md +++ b/docset/winserver2012-ps/directaccessclientcomponents/New-DAEntryPointTableItem.md @@ -1,7 +1,7 @@ --- external help file: MSFT_DASiteTableEntry.cdxml-help.xml Module Name: DirectAccessClientComponents -online version: https://docs.microsoft.com/powershell/module/directaccessclientcomponents/new-daentrypointtableitem?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/directaccessclientcomponents/new-daentrypointtableitem?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/directaccessclientcomponents/Remove-DAEntryPointTableItem.md b/docset/winserver2012-ps/directaccessclientcomponents/Remove-DAEntryPointTableItem.md index 89ed807351..8ad7ac3ccb 100644 --- a/docset/winserver2012-ps/directaccessclientcomponents/Remove-DAEntryPointTableItem.md +++ b/docset/winserver2012-ps/directaccessclientcomponents/Remove-DAEntryPointTableItem.md @@ -1,7 +1,7 @@ --- external help file: MSFT_DASiteTableEntry.cdxml-help.xml Module Name: DirectAccessClientComponents -online version: https://docs.microsoft.com/powershell/module/directaccessclientcomponents/remove-daentrypointtableitem?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/directaccessclientcomponents/remove-daentrypointtableitem?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/directaccessclientcomponents/Rename-DAEntryPointTableItem.md b/docset/winserver2012-ps/directaccessclientcomponents/Rename-DAEntryPointTableItem.md index 859b06504c..9fce25841e 100644 --- a/docset/winserver2012-ps/directaccessclientcomponents/Rename-DAEntryPointTableItem.md +++ b/docset/winserver2012-ps/directaccessclientcomponents/Rename-DAEntryPointTableItem.md @@ -1,7 +1,7 @@ --- external help file: MSFT_DASiteTableEntry.cdxml-help.xml Module Name: DirectAccessClientComponents -online version: https://docs.microsoft.com/powershell/module/directaccessclientcomponents/rename-daentrypointtableitem?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/directaccessclientcomponents/rename-daentrypointtableitem?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/directaccessclientcomponents/Reset-DAClientExperienceConfiguration.md b/docset/winserver2012-ps/directaccessclientcomponents/Reset-DAClientExperienceConfiguration.md index 2edd7950c1..e6a87a4d91 100644 --- a/docset/winserver2012-ps/directaccessclientcomponents/Reset-DAClientExperienceConfiguration.md +++ b/docset/winserver2012-ps/directaccessclientcomponents/Reset-DAClientExperienceConfiguration.md @@ -1,7 +1,7 @@ --- external help file: MSFT_DAClientExperienceConfiguration.cdxml-help.xml Module Name: DirectAccessClientComponents -online version: https://docs.microsoft.com/powershell/module/directaccessclientcomponents/reset-daclientexperienceconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/directaccessclientcomponents/reset-daclientexperienceconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/directaccessclientcomponents/Reset-DAEntryPointTableItem.md b/docset/winserver2012-ps/directaccessclientcomponents/Reset-DAEntryPointTableItem.md index 106050a4b3..e870ac2629 100644 --- a/docset/winserver2012-ps/directaccessclientcomponents/Reset-DAEntryPointTableItem.md +++ b/docset/winserver2012-ps/directaccessclientcomponents/Reset-DAEntryPointTableItem.md @@ -1,7 +1,7 @@ --- external help file: MSFT_DASiteTableEntry.cdxml-help.xml Module Name: DirectAccessClientComponents -online version: https://docs.microsoft.com/powershell/module/directaccessclientcomponents/reset-daentrypointtableitem?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/directaccessclientcomponents/reset-daentrypointtableitem?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/directaccessclientcomponents/Set-DAClientExperienceConfiguration.md b/docset/winserver2012-ps/directaccessclientcomponents/Set-DAClientExperienceConfiguration.md index e1834f934c..664c2796a5 100644 --- a/docset/winserver2012-ps/directaccessclientcomponents/Set-DAClientExperienceConfiguration.md +++ b/docset/winserver2012-ps/directaccessclientcomponents/Set-DAClientExperienceConfiguration.md @@ -1,7 +1,7 @@ --- external help file: MSFT_DAClientExperienceConfiguration.cdxml-help.xml Module Name: DirectAccessClientComponents -online version: https://docs.microsoft.com/powershell/module/directaccessclientcomponents/set-daclientexperienceconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/directaccessclientcomponents/set-daclientexperienceconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/directaccessclientcomponents/Set-DAEntryPointTableItem.md b/docset/winserver2012-ps/directaccessclientcomponents/Set-DAEntryPointTableItem.md index 051063714d..119c5f0f24 100644 --- a/docset/winserver2012-ps/directaccessclientcomponents/Set-DAEntryPointTableItem.md +++ b/docset/winserver2012-ps/directaccessclientcomponents/Set-DAEntryPointTableItem.md @@ -1,7 +1,7 @@ --- external help file: MSFT_DASiteTableEntry.cdxml-help.xml Module Name: DirectAccessClientComponents -online version: https://docs.microsoft.com/powershell/module/directaccessclientcomponents/set-daentrypointtableitem?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/directaccessclientcomponents/set-daentrypointtableitem?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dism/Add-AppxProvisionedPackage.md b/docset/winserver2012-ps/dism/Add-AppxProvisionedPackage.md index 2ca3035bab..5a139aa888 100644 --- a/docset/winserver2012-ps/dism/Add-AppxProvisionedPackage.md +++ b/docset/winserver2012-ps/dism/Add-AppxProvisionedPackage.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] -online version: https://docs.microsoft.com/powershell/module/dism/add-appxprovisionedpackage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/add-appxprovisionedpackage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dism/Add-WindowsDriver.md b/docset/winserver2012-ps/dism/Add-WindowsDriver.md index 8ec16ba009..fbadbfb5a2 100644 --- a/docset/winserver2012-ps/dism/Add-WindowsDriver.md +++ b/docset/winserver2012-ps/dism/Add-WindowsDriver.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] -online version: https://docs.microsoft.com/powershell/module/dism/add-windowsdriver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/add-windowsdriver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dism/Add-WindowsPackage.md b/docset/winserver2012-ps/dism/Add-WindowsPackage.md index 81d4ac91fb..3c6aded92b 100644 --- a/docset/winserver2012-ps/dism/Add-WindowsPackage.md +++ b/docset/winserver2012-ps/dism/Add-WindowsPackage.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] -online version: https://docs.microsoft.com/powershell/module/dism/add-windowspackage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/add-windowspackage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dism/Clear-WindowsCorruptMountPoint.md b/docset/winserver2012-ps/dism/Clear-WindowsCorruptMountPoint.md index 7e28bcdc95..017d30f468 100644 --- a/docset/winserver2012-ps/dism/Clear-WindowsCorruptMountPoint.md +++ b/docset/winserver2012-ps/dism/Clear-WindowsCorruptMountPoint.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] -online version: https://docs.microsoft.com/powershell/module/dism/clear-windowscorruptmountpoint?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/clear-windowscorruptmountpoint?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dism/Disable-WindowsOptionalFeature.md b/docset/winserver2012-ps/dism/Disable-WindowsOptionalFeature.md index 7405faedde..f729fe2fea 100644 --- a/docset/winserver2012-ps/dism/Disable-WindowsOptionalFeature.md +++ b/docset/winserver2012-ps/dism/Disable-WindowsOptionalFeature.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] -online version: https://docs.microsoft.com/powershell/module/dism/disable-windowsoptionalfeature?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/disable-windowsoptionalfeature?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dism/Dismount-WindowsImage.md b/docset/winserver2012-ps/dism/Dismount-WindowsImage.md index 8e7ee07391..4b5f0eed5b 100644 --- a/docset/winserver2012-ps/dism/Dismount-WindowsImage.md +++ b/docset/winserver2012-ps/dism/Dismount-WindowsImage.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] -online version: https://docs.microsoft.com/powershell/module/dism/dismount-windowsimage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/dismount-windowsimage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dism/Enable-WindowsOptionalFeature.md b/docset/winserver2012-ps/dism/Enable-WindowsOptionalFeature.md index b40f91858c..f2e5ee08c7 100644 --- a/docset/winserver2012-ps/dism/Enable-WindowsOptionalFeature.md +++ b/docset/winserver2012-ps/dism/Enable-WindowsOptionalFeature.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] -online version: https://docs.microsoft.com/powershell/module/dism/enable-windowsoptionalfeature?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/enable-windowsoptionalfeature?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dism/Get-AppxProvisionedPackage.md b/docset/winserver2012-ps/dism/Get-AppxProvisionedPackage.md index 79f3addd99..1b3a2b7d99 100644 --- a/docset/winserver2012-ps/dism/Get-AppxProvisionedPackage.md +++ b/docset/winserver2012-ps/dism/Get-AppxProvisionedPackage.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] -online version: https://docs.microsoft.com/powershell/module/dism/get-appxprovisionedpackage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/get-appxprovisionedpackage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dism/Get-WindowsDriver.md b/docset/winserver2012-ps/dism/Get-WindowsDriver.md index f88b647b1c..e41f78fad6 100644 --- a/docset/winserver2012-ps/dism/Get-WindowsDriver.md +++ b/docset/winserver2012-ps/dism/Get-WindowsDriver.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] -online version: https://docs.microsoft.com/powershell/module/dism/get-windowsdriver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/get-windowsdriver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dism/Get-WindowsEdition.md b/docset/winserver2012-ps/dism/Get-WindowsEdition.md index b2c083f0fa..cc421f154f 100644 --- a/docset/winserver2012-ps/dism/Get-WindowsEdition.md +++ b/docset/winserver2012-ps/dism/Get-WindowsEdition.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] -online version: https://docs.microsoft.com/powershell/module/dism/get-windowsedition?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/get-windowsedition?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dism/Get-WindowsImage.md b/docset/winserver2012-ps/dism/Get-WindowsImage.md index b132f77e12..5cf028cd0b 100644 --- a/docset/winserver2012-ps/dism/Get-WindowsImage.md +++ b/docset/winserver2012-ps/dism/Get-WindowsImage.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] -online version: https://docs.microsoft.com/powershell/module/dism/get-windowsimage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/get-windowsimage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dism/Get-WindowsOptionalFeature.md b/docset/winserver2012-ps/dism/Get-WindowsOptionalFeature.md index 6ae62c9e9a..cfebe02bbb 100644 --- a/docset/winserver2012-ps/dism/Get-WindowsOptionalFeature.md +++ b/docset/winserver2012-ps/dism/Get-WindowsOptionalFeature.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] -online version: https://docs.microsoft.com/powershell/module/dism/get-windowsoptionalfeature?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/get-windowsoptionalfeature?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dism/Get-WindowsPackage.md b/docset/winserver2012-ps/dism/Get-WindowsPackage.md index 396c42832f..7b6d2ee7ff 100644 --- a/docset/winserver2012-ps/dism/Get-WindowsPackage.md +++ b/docset/winserver2012-ps/dism/Get-WindowsPackage.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] -online version: https://docs.microsoft.com/powershell/module/dism/get-windowspackage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/get-windowspackage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dism/Mount-WindowsImage.md b/docset/winserver2012-ps/dism/Mount-WindowsImage.md index 7f3e09467a..4441c09b3c 100644 --- a/docset/winserver2012-ps/dism/Mount-WindowsImage.md +++ b/docset/winserver2012-ps/dism/Mount-WindowsImage.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] -online version: https://docs.microsoft.com/powershell/module/dism/mount-windowsimage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/mount-windowsimage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dism/Remove-AppxProvisionedPackage.md b/docset/winserver2012-ps/dism/Remove-AppxProvisionedPackage.md index cb788944d7..9b815bfda2 100644 --- a/docset/winserver2012-ps/dism/Remove-AppxProvisionedPackage.md +++ b/docset/winserver2012-ps/dism/Remove-AppxProvisionedPackage.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] -online version: https://docs.microsoft.com/powershell/module/dism/remove-appxprovisionedpackage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/remove-appxprovisionedpackage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dism/Remove-WindowsDriver.md b/docset/winserver2012-ps/dism/Remove-WindowsDriver.md index 2b876649ea..a00ba12d0b 100644 --- a/docset/winserver2012-ps/dism/Remove-WindowsDriver.md +++ b/docset/winserver2012-ps/dism/Remove-WindowsDriver.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] -online version: https://docs.microsoft.com/powershell/module/dism/remove-windowsdriver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/remove-windowsdriver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dism/Remove-WindowsPackage.md b/docset/winserver2012-ps/dism/Remove-WindowsPackage.md index 3b2b579a43..b041902568 100644 --- a/docset/winserver2012-ps/dism/Remove-WindowsPackage.md +++ b/docset/winserver2012-ps/dism/Remove-WindowsPackage.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] -online version: https://docs.microsoft.com/powershell/module/dism/remove-windowspackage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/remove-windowspackage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dism/Repair-WindowsImage.md b/docset/winserver2012-ps/dism/Repair-WindowsImage.md index 1941725ea7..829cb974bc 100644 --- a/docset/winserver2012-ps/dism/Repair-WindowsImage.md +++ b/docset/winserver2012-ps/dism/Repair-WindowsImage.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] -online version: https://docs.microsoft.com/powershell/module/dism/repair-windowsimage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/repair-windowsimage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dism/Save-WindowsImage.md b/docset/winserver2012-ps/dism/Save-WindowsImage.md index 17f821aca5..4de8230898 100644 --- a/docset/winserver2012-ps/dism/Save-WindowsImage.md +++ b/docset/winserver2012-ps/dism/Save-WindowsImage.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] -online version: https://docs.microsoft.com/powershell/module/dism/save-windowsimage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/save-windowsimage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dism/Set-WindowsEdition.md b/docset/winserver2012-ps/dism/Set-WindowsEdition.md index 7e5412b6e5..a04bd90480 100644 --- a/docset/winserver2012-ps/dism/Set-WindowsEdition.md +++ b/docset/winserver2012-ps/dism/Set-WindowsEdition.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] -online version: https://docs.microsoft.com/powershell/module/dism/set-windowsedition?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/set-windowsedition?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dism/Set-WindowsProductKey.md b/docset/winserver2012-ps/dism/Set-WindowsProductKey.md index 71978f906f..d1cb01b3bb 100644 --- a/docset/winserver2012-ps/dism/Set-WindowsProductKey.md +++ b/docset/winserver2012-ps/dism/Set-WindowsProductKey.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] -online version: https://docs.microsoft.com/powershell/module/dism/set-windowsproductkey?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/set-windowsproductkey?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dism/Use-WindowsUnattend.md b/docset/winserver2012-ps/dism/Use-WindowsUnattend.md index 17d18f1772..8f0b979c5a 100644 --- a/docset/winserver2012-ps/dism/Use-WindowsUnattend.md +++ b/docset/winserver2012-ps/dism/Use-WindowsUnattend.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] -online version: https://docs.microsoft.com/powershell/module/dism/use-windowsunattend?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/use-windowsunattend?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsclient/Add-DnsClientNrptRule.md b/docset/winserver2012-ps/dnsclient/Add-DnsClientNrptRule.md index 9db48888b4..609a60da17 100644 --- a/docset/winserver2012-ps/dnsclient/Add-DnsClientNrptRule.md +++ b/docset/winserver2012-ps/dnsclient/Add-DnsClientNrptRule.md @@ -1,7 +1,7 @@ --- external help file: PS_DnsClientNRPTRule_v1.0.0.cdxml-help.xml Module Name: DnsClient -online version: https://docs.microsoft.com/powershell/module/dnsclient/add-dnsclientnrptrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/add-dnsclientnrptrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsclient/Clear-DnsClientCache.md b/docset/winserver2012-ps/dnsclient/Clear-DnsClientCache.md index 692621ad3a..45bbd264ed 100644 --- a/docset/winserver2012-ps/dnsclient/Clear-DnsClientCache.md +++ b/docset/winserver2012-ps/dnsclient/Clear-DnsClientCache.md @@ -1,7 +1,7 @@ --- external help file: MSFT_DnsClientCache.cdxml-help.xml Module Name: DnsClient -online version: https://docs.microsoft.com/powershell/module/dnsclient/clear-dnsclientcache?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/clear-dnsclientcache?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsclient/Get-DnsClient.md b/docset/winserver2012-ps/dnsclient/Get-DnsClient.md index 5636ded60c..9631e22e97 100644 --- a/docset/winserver2012-ps/dnsclient/Get-DnsClient.md +++ b/docset/winserver2012-ps/dnsclient/Get-DnsClient.md @@ -1,7 +1,7 @@ --- external help file: MSFT_DnsClient.cdxml-help.xml Module Name: DnsClient -online version: https://docs.microsoft.com/powershell/module/dnsclient/get-dnsclient?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/get-dnsclient?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsclient/Get-DnsClientCache.md b/docset/winserver2012-ps/dnsclient/Get-DnsClientCache.md index 7d94b34acd..8dc3390681 100644 --- a/docset/winserver2012-ps/dnsclient/Get-DnsClientCache.md +++ b/docset/winserver2012-ps/dnsclient/Get-DnsClientCache.md @@ -1,7 +1,7 @@ --- external help file: MSFT_DnsClientCache.cdxml-help.xml Module Name: DnsClient -online version: https://docs.microsoft.com/powershell/module/dnsclient/get-dnsclientcache?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/get-dnsclientcache?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsclient/Get-DnsClientGlobalSetting.md b/docset/winserver2012-ps/dnsclient/Get-DnsClientGlobalSetting.md index 9739a7bfff..ca6ef1806b 100644 --- a/docset/winserver2012-ps/dnsclient/Get-DnsClientGlobalSetting.md +++ b/docset/winserver2012-ps/dnsclient/Get-DnsClientGlobalSetting.md @@ -1,7 +1,7 @@ --- external help file: MSFT_DnsClientGlobalSetting.cdxml-help.xml Module Name: DnsClient -online version: https://docs.microsoft.com/powershell/module/dnsclient/get-dnsclientglobalsetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/get-dnsclientglobalsetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsclient/Get-DnsClientNrptGlobal.md b/docset/winserver2012-ps/dnsclient/Get-DnsClientNrptGlobal.md index 7e47729c8f..dbaaa48d2c 100644 --- a/docset/winserver2012-ps/dnsclient/Get-DnsClientNrptGlobal.md +++ b/docset/winserver2012-ps/dnsclient/Get-DnsClientNrptGlobal.md @@ -1,7 +1,7 @@ --- external help file: PS_DnsClientNRPTGlobal_v1.0.0.cdxml-help.xml Module Name: DnsClient -online version: https://docs.microsoft.com/powershell/module/dnsclient/get-dnsclientnrptglobal?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/get-dnsclientnrptglobal?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsclient/Get-DnsClientNrptPolicy.md b/docset/winserver2012-ps/dnsclient/Get-DnsClientNrptPolicy.md index 09d9bbfec9..1b8f2567b2 100644 --- a/docset/winserver2012-ps/dnsclient/Get-DnsClientNrptPolicy.md +++ b/docset/winserver2012-ps/dnsclient/Get-DnsClientNrptPolicy.md @@ -1,7 +1,7 @@ --- external help file: PS_DnsClientNrptPolicy_v1.0.0.cdxml-help.xml Module Name: DnsClient -online version: https://docs.microsoft.com/powershell/module/dnsclient/get-dnsclientnrptpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/get-dnsclientnrptpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsclient/Get-DnsClientNrptRule.md b/docset/winserver2012-ps/dnsclient/Get-DnsClientNrptRule.md index 61b6d06244..879ef381aa 100644 --- a/docset/winserver2012-ps/dnsclient/Get-DnsClientNrptRule.md +++ b/docset/winserver2012-ps/dnsclient/Get-DnsClientNrptRule.md @@ -1,7 +1,7 @@ --- external help file: PS_DnsClientNRPTRule_v1.0.0.cdxml-help.xml Module Name: DnsClient -online version: https://docs.microsoft.com/powershell/module/dnsclient/get-dnsclientnrptrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/get-dnsclientnrptrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsclient/Get-DnsClientServerAddress.md b/docset/winserver2012-ps/dnsclient/Get-DnsClientServerAddress.md index 911d48c6d3..4d7c528e11 100644 --- a/docset/winserver2012-ps/dnsclient/Get-DnsClientServerAddress.md +++ b/docset/winserver2012-ps/dnsclient/Get-DnsClientServerAddress.md @@ -1,7 +1,7 @@ --- external help file: MSFT_DnsClientServerAddress.cdxml-help.xml Module Name: DnsClient -online version: https://docs.microsoft.com/powershell/module/dnsclient/get-dnsclientserveraddress?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/get-dnsclientserveraddress?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsclient/Register-DnsClient.md b/docset/winserver2012-ps/dnsclient/Register-DnsClient.md index 626a343706..bb5dc84a14 100644 --- a/docset/winserver2012-ps/dnsclient/Register-DnsClient.md +++ b/docset/winserver2012-ps/dnsclient/Register-DnsClient.md @@ -1,7 +1,7 @@ --- external help file: MSFT_DnsClient.cdxml-help.xml Module Name: DnsClient -online version: https://docs.microsoft.com/powershell/module/dnsclient/register-dnsclient?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/register-dnsclient?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsclient/Remove-DnsClientNrptRule.md b/docset/winserver2012-ps/dnsclient/Remove-DnsClientNrptRule.md index 3ba4935b64..89ba4b50fa 100644 --- a/docset/winserver2012-ps/dnsclient/Remove-DnsClientNrptRule.md +++ b/docset/winserver2012-ps/dnsclient/Remove-DnsClientNrptRule.md @@ -1,7 +1,7 @@ --- external help file: PS_DnsClientNRPTRule_v1.0.0.cdxml-help.xml Module Name: DnsClient -online version: https://docs.microsoft.com/powershell/module/dnsclient/remove-dnsclientnrptrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/remove-dnsclientnrptrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsclient/Resolve-DnsName.md b/docset/winserver2012-ps/dnsclient/Resolve-DnsName.md index e840f40f05..e051295985 100644 --- a/docset/winserver2012-ps/dnsclient/Resolve-DnsName.md +++ b/docset/winserver2012-ps/dnsclient/Resolve-DnsName.md @@ -1,7 +1,7 @@ --- external help file: dnslookup.dll-Help.xml Module Name: DnsClient -online version: https://docs.microsoft.com/powershell/module/dnsclient/resolve-dnsname?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/resolve-dnsname?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsclient/Set-DnsClient.md b/docset/winserver2012-ps/dnsclient/Set-DnsClient.md index bcbe53efdb..3fc56bfccb 100644 --- a/docset/winserver2012-ps/dnsclient/Set-DnsClient.md +++ b/docset/winserver2012-ps/dnsclient/Set-DnsClient.md @@ -1,7 +1,7 @@ --- external help file: MSFT_DnsClient.cdxml-help.xml Module Name: DnsClient -online version: https://docs.microsoft.com/powershell/module/dnsclient/set-dnsclient?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/set-dnsclient?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsclient/Set-DnsClientGlobalSetting.md b/docset/winserver2012-ps/dnsclient/Set-DnsClientGlobalSetting.md index bf7eea5f33..7229a08388 100644 --- a/docset/winserver2012-ps/dnsclient/Set-DnsClientGlobalSetting.md +++ b/docset/winserver2012-ps/dnsclient/Set-DnsClientGlobalSetting.md @@ -1,7 +1,7 @@ --- external help file: MSFT_DnsClientGlobalSetting.cdxml-help.xml Module Name: DnsClient -online version: https://docs.microsoft.com/powershell/module/dnsclient/set-dnsclientglobalsetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/set-dnsclientglobalsetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsclient/Set-DnsClientNrptGlobal.md b/docset/winserver2012-ps/dnsclient/Set-DnsClientNrptGlobal.md index e0435eafdf..7b033011eb 100644 --- a/docset/winserver2012-ps/dnsclient/Set-DnsClientNrptGlobal.md +++ b/docset/winserver2012-ps/dnsclient/Set-DnsClientNrptGlobal.md @@ -1,7 +1,7 @@ --- external help file: PS_DnsClientNRPTGlobal_v1.0.0.cdxml-help.xml Module Name: DnsClient -online version: https://docs.microsoft.com/powershell/module/dnsclient/set-dnsclientnrptglobal?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/set-dnsclientnrptglobal?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsclient/Set-DnsClientNrptRule.md b/docset/winserver2012-ps/dnsclient/Set-DnsClientNrptRule.md index c114b756a6..3cd6cd6fce 100644 --- a/docset/winserver2012-ps/dnsclient/Set-DnsClientNrptRule.md +++ b/docset/winserver2012-ps/dnsclient/Set-DnsClientNrptRule.md @@ -1,7 +1,7 @@ --- external help file: PS_DnsClientNRPTRule_v1.0.0.cdxml-help.xml Module Name: DnsClient -online version: https://docs.microsoft.com/powershell/module/dnsclient/set-dnsclientnrptrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/set-dnsclientnrptrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsclient/Set-DnsClientServerAddress.md b/docset/winserver2012-ps/dnsclient/Set-DnsClientServerAddress.md index 51b0d25632..17c9d7484a 100644 --- a/docset/winserver2012-ps/dnsclient/Set-DnsClientServerAddress.md +++ b/docset/winserver2012-ps/dnsclient/Set-DnsClientServerAddress.md @@ -1,7 +1,7 @@ --- external help file: MSFT_DnsClientServerAddress.cdxml-help.xml Module Name: DnsClient -online version: https://docs.microsoft.com/powershell/module/dnsclient/set-dnsclientserveraddress?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/set-dnsclientserveraddress?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Add-DnsServerConditionalForwarderZone.md b/docset/winserver2012-ps/dnsserver/Add-DnsServerConditionalForwarderZone.md index 9f706a5837..49230ede93 100644 --- a/docset/winserver2012-ps/dnsserver/Add-DnsServerConditionalForwarderZone.md +++ b/docset/winserver2012-ps/dnsserver/Add-DnsServerConditionalForwarderZone.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverconditionalforwarderzone?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverconditionalforwarderzone?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Add-DnsServerDirectoryPartition.md b/docset/winserver2012-ps/dnsserver/Add-DnsServerDirectoryPartition.md index 02fcc9b9e5..b26c1a79e9 100644 --- a/docset/winserver2012-ps/dnsserver/Add-DnsServerDirectoryPartition.md +++ b/docset/winserver2012-ps/dnsserver/Add-DnsServerDirectoryPartition.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverdirectorypartition?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverdirectorypartition?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Add-DnsServerForwarder.md b/docset/winserver2012-ps/dnsserver/Add-DnsServerForwarder.md index d5a7068e0a..829acc7d0b 100644 --- a/docset/winserver2012-ps/dnsserver/Add-DnsServerForwarder.md +++ b/docset/winserver2012-ps/dnsserver/Add-DnsServerForwarder.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverforwarder?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverforwarder?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Add-DnsServerPrimaryZone.md b/docset/winserver2012-ps/dnsserver/Add-DnsServerPrimaryZone.md index 1429c7735b..1638b15ec1 100644 --- a/docset/winserver2012-ps/dnsserver/Add-DnsServerPrimaryZone.md +++ b/docset/winserver2012-ps/dnsserver/Add-DnsServerPrimaryZone.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverprimaryzone?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverprimaryzone?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Add-DnsServerResourceRecord.md b/docset/winserver2012-ps/dnsserver/Add-DnsServerResourceRecord.md index bf5d1a5eb5..e184ae7015 100644 --- a/docset/winserver2012-ps/dnsserver/Add-DnsServerResourceRecord.md +++ b/docset/winserver2012-ps/dnsserver/Add-DnsServerResourceRecord.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecord?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecord?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Add-DnsServerResourceRecordA.md b/docset/winserver2012-ps/dnsserver/Add-DnsServerResourceRecordA.md index 7b92f36374..1dcc50ef1f 100644 --- a/docset/winserver2012-ps/dnsserver/Add-DnsServerResourceRecordA.md +++ b/docset/winserver2012-ps/dnsserver/Add-DnsServerResourceRecordA.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecorda?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecorda?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Add-DnsServerResourceRecordAAAA.md b/docset/winserver2012-ps/dnsserver/Add-DnsServerResourceRecordAAAA.md index 06dd482c94..c1f9d204f2 100644 --- a/docset/winserver2012-ps/dnsserver/Add-DnsServerResourceRecordAAAA.md +++ b/docset/winserver2012-ps/dnsserver/Add-DnsServerResourceRecordAAAA.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecordaaaa?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecordaaaa?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Add-DnsServerResourceRecordCName.md b/docset/winserver2012-ps/dnsserver/Add-DnsServerResourceRecordCName.md index 9fa97a7b43..7473f58e0d 100644 --- a/docset/winserver2012-ps/dnsserver/Add-DnsServerResourceRecordCName.md +++ b/docset/winserver2012-ps/dnsserver/Add-DnsServerResourceRecordCName.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecordcname?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecordcname?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Add-DnsServerResourceRecordDS.md b/docset/winserver2012-ps/dnsserver/Add-DnsServerResourceRecordDS.md index 645e241d76..3c580ef5cf 100644 --- a/docset/winserver2012-ps/dnsserver/Add-DnsServerResourceRecordDS.md +++ b/docset/winserver2012-ps/dnsserver/Add-DnsServerResourceRecordDS.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecordds?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecordds?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Add-DnsServerResourceRecordDnsKey.md b/docset/winserver2012-ps/dnsserver/Add-DnsServerResourceRecordDnsKey.md index 4cf5f997ef..69aa3f5f65 100644 --- a/docset/winserver2012-ps/dnsserver/Add-DnsServerResourceRecordDnsKey.md +++ b/docset/winserver2012-ps/dnsserver/Add-DnsServerResourceRecordDnsKey.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecorddnskey?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecorddnskey?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Add-DnsServerResourceRecordMX.md b/docset/winserver2012-ps/dnsserver/Add-DnsServerResourceRecordMX.md index 404cc61f23..94486f56df 100644 --- a/docset/winserver2012-ps/dnsserver/Add-DnsServerResourceRecordMX.md +++ b/docset/winserver2012-ps/dnsserver/Add-DnsServerResourceRecordMX.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecordmx?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecordmx?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Add-DnsServerResourceRecordPtr.md b/docset/winserver2012-ps/dnsserver/Add-DnsServerResourceRecordPtr.md index b03f75280b..7f8613ce43 100644 --- a/docset/winserver2012-ps/dnsserver/Add-DnsServerResourceRecordPtr.md +++ b/docset/winserver2012-ps/dnsserver/Add-DnsServerResourceRecordPtr.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecordptr?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecordptr?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Add-DnsServerRootHint.md b/docset/winserver2012-ps/dnsserver/Add-DnsServerRootHint.md index 39d1871de1..5784479e02 100644 --- a/docset/winserver2012-ps/dnsserver/Add-DnsServerRootHint.md +++ b/docset/winserver2012-ps/dnsserver/Add-DnsServerRootHint.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverroothint?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverroothint?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Add-DnsServerSecondaryZone.md b/docset/winserver2012-ps/dnsserver/Add-DnsServerSecondaryZone.md index 05d6fb0a79..26f85f2ffd 100644 --- a/docset/winserver2012-ps/dnsserver/Add-DnsServerSecondaryZone.md +++ b/docset/winserver2012-ps/dnsserver/Add-DnsServerSecondaryZone.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserversecondaryzone?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserversecondaryzone?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Add-DnsServerSigningKey.md b/docset/winserver2012-ps/dnsserver/Add-DnsServerSigningKey.md index 01cc8f5c0b..d15057edd4 100644 --- a/docset/winserver2012-ps/dnsserver/Add-DnsServerSigningKey.md +++ b/docset/winserver2012-ps/dnsserver/Add-DnsServerSigningKey.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserversigningkey?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserversigningkey?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Add-DnsServerStubZone.md b/docset/winserver2012-ps/dnsserver/Add-DnsServerStubZone.md index 22ffdde838..dd4e1e2cbe 100644 --- a/docset/winserver2012-ps/dnsserver/Add-DnsServerStubZone.md +++ b/docset/winserver2012-ps/dnsserver/Add-DnsServerStubZone.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverstubzone?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverstubzone?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Add-DnsServerTrustAnchor.md b/docset/winserver2012-ps/dnsserver/Add-DnsServerTrustAnchor.md index f27957294b..8ec3c5efc5 100644 --- a/docset/winserver2012-ps/dnsserver/Add-DnsServerTrustAnchor.md +++ b/docset/winserver2012-ps/dnsserver/Add-DnsServerTrustAnchor.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsservertrustanchor?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsservertrustanchor?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Add-DnsServerZoneDelegation.md b/docset/winserver2012-ps/dnsserver/Add-DnsServerZoneDelegation.md index e88eb8ec56..69a44f3c97 100644 --- a/docset/winserver2012-ps/dnsserver/Add-DnsServerZoneDelegation.md +++ b/docset/winserver2012-ps/dnsserver/Add-DnsServerZoneDelegation.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverzonedelegation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverzonedelegation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Clear-DnsServerCache.md b/docset/winserver2012-ps/dnsserver/Clear-DnsServerCache.md index 1a3e6dded1..c724c21e23 100644 --- a/docset/winserver2012-ps/dnsserver/Clear-DnsServerCache.md +++ b/docset/winserver2012-ps/dnsserver/Clear-DnsServerCache.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/clear-dnsservercache?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/clear-dnsservercache?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Clear-DnsServerStatistics.md b/docset/winserver2012-ps/dnsserver/Clear-DnsServerStatistics.md index c04a627719..797a7f871c 100644 --- a/docset/winserver2012-ps/dnsserver/Clear-DnsServerStatistics.md +++ b/docset/winserver2012-ps/dnsserver/Clear-DnsServerStatistics.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/clear-dnsserverstatistics?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/clear-dnsserverstatistics?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/ConvertTo-DnsServerPrimaryZone.md b/docset/winserver2012-ps/dnsserver/ConvertTo-DnsServerPrimaryZone.md index c299633efa..d569904b8e 100644 --- a/docset/winserver2012-ps/dnsserver/ConvertTo-DnsServerPrimaryZone.md +++ b/docset/winserver2012-ps/dnsserver/ConvertTo-DnsServerPrimaryZone.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/convertto-dnsserverprimaryzone?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/convertto-dnsserverprimaryzone?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/ConvertTo-DnsServerSecondaryZone.md b/docset/winserver2012-ps/dnsserver/ConvertTo-DnsServerSecondaryZone.md index 2f2d407f65..5f961ac4d0 100644 --- a/docset/winserver2012-ps/dnsserver/ConvertTo-DnsServerSecondaryZone.md +++ b/docset/winserver2012-ps/dnsserver/ConvertTo-DnsServerSecondaryZone.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/convertto-dnsserversecondaryzone?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/convertto-dnsserversecondaryzone?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Disable-DnsServerSigningKeyRollover.md b/docset/winserver2012-ps/dnsserver/Disable-DnsServerSigningKeyRollover.md index fd46fc291b..8e68fe08c2 100644 --- a/docset/winserver2012-ps/dnsserver/Disable-DnsServerSigningKeyRollover.md +++ b/docset/winserver2012-ps/dnsserver/Disable-DnsServerSigningKeyRollover.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/disable-dnsserversigningkeyrollover?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/disable-dnsserversigningkeyrollover?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Enable-DnsServerSigningKeyRollover.md b/docset/winserver2012-ps/dnsserver/Enable-DnsServerSigningKeyRollover.md index dc15e4bba3..97eee90d5f 100644 --- a/docset/winserver2012-ps/dnsserver/Enable-DnsServerSigningKeyRollover.md +++ b/docset/winserver2012-ps/dnsserver/Enable-DnsServerSigningKeyRollover.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/enable-dnsserversigningkeyrollover?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/enable-dnsserversigningkeyrollover?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Export-DnsServerDnsSecPublicKey.md b/docset/winserver2012-ps/dnsserver/Export-DnsServerDnsSecPublicKey.md index 76cb6df0de..fa1f86648b 100644 --- a/docset/winserver2012-ps/dnsserver/Export-DnsServerDnsSecPublicKey.md +++ b/docset/winserver2012-ps/dnsserver/Export-DnsServerDnsSecPublicKey.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/export-dnsserverdnssecpublickey?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/export-dnsserverdnssecpublickey?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Export-DnsServerZone.md b/docset/winserver2012-ps/dnsserver/Export-DnsServerZone.md index 0e3df349fa..a0b8f41e0d 100644 --- a/docset/winserver2012-ps/dnsserver/Export-DnsServerZone.md +++ b/docset/winserver2012-ps/dnsserver/Export-DnsServerZone.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/export-dnsserverzone?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/export-dnsserverzone?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Get-DnsServer.md b/docset/winserver2012-ps/dnsserver/Get-DnsServer.md index 161e076a69..a98d0dd633 100644 --- a/docset/winserver2012-ps/dnsserver/Get-DnsServer.md +++ b/docset/winserver2012-ps/dnsserver/Get-DnsServer.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Get-DnsServerCache.md b/docset/winserver2012-ps/dnsserver/Get-DnsServerCache.md index af5bf512f3..41c4d40ab0 100644 --- a/docset/winserver2012-ps/dnsserver/Get-DnsServerCache.md +++ b/docset/winserver2012-ps/dnsserver/Get-DnsServerCache.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsservercache?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsservercache?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Get-DnsServerDiagnostics.md b/docset/winserver2012-ps/dnsserver/Get-DnsServerDiagnostics.md index af71eab1e5..289a1ccd2c 100644 --- a/docset/winserver2012-ps/dnsserver/Get-DnsServerDiagnostics.md +++ b/docset/winserver2012-ps/dnsserver/Get-DnsServerDiagnostics.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverdiagnostics?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverdiagnostics?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Get-DnsServerDirectoryPartition.md b/docset/winserver2012-ps/dnsserver/Get-DnsServerDirectoryPartition.md index 5fbc8099fd..95d3cfd8a0 100644 --- a/docset/winserver2012-ps/dnsserver/Get-DnsServerDirectoryPartition.md +++ b/docset/winserver2012-ps/dnsserver/Get-DnsServerDirectoryPartition.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverdirectorypartition?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverdirectorypartition?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Get-DnsServerDnsSecZoneSetting.md b/docset/winserver2012-ps/dnsserver/Get-DnsServerDnsSecZoneSetting.md index 55042370b6..9d5581d6cf 100644 --- a/docset/winserver2012-ps/dnsserver/Get-DnsServerDnsSecZoneSetting.md +++ b/docset/winserver2012-ps/dnsserver/Get-DnsServerDnsSecZoneSetting.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverdnsseczonesetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverdnsseczonesetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Get-DnsServerDsSetting.md b/docset/winserver2012-ps/dnsserver/Get-DnsServerDsSetting.md index a695f8556c..829c49ace9 100644 --- a/docset/winserver2012-ps/dnsserver/Get-DnsServerDsSetting.md +++ b/docset/winserver2012-ps/dnsserver/Get-DnsServerDsSetting.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverdssetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverdssetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Get-DnsServerEDns.md b/docset/winserver2012-ps/dnsserver/Get-DnsServerEDns.md index 815496489d..d5efd6029f 100644 --- a/docset/winserver2012-ps/dnsserver/Get-DnsServerEDns.md +++ b/docset/winserver2012-ps/dnsserver/Get-DnsServerEDns.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserveredns?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserveredns?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Get-DnsServerForwarder.md b/docset/winserver2012-ps/dnsserver/Get-DnsServerForwarder.md index b892ae543e..47ccd528f9 100644 --- a/docset/winserver2012-ps/dnsserver/Get-DnsServerForwarder.md +++ b/docset/winserver2012-ps/dnsserver/Get-DnsServerForwarder.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverforwarder?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverforwarder?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Get-DnsServerGlobalNameZone.md b/docset/winserver2012-ps/dnsserver/Get-DnsServerGlobalNameZone.md index 08edd7ed0c..c3856adf10 100644 --- a/docset/winserver2012-ps/dnsserver/Get-DnsServerGlobalNameZone.md +++ b/docset/winserver2012-ps/dnsserver/Get-DnsServerGlobalNameZone.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverglobalnamezone?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverglobalnamezone?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Get-DnsServerGlobalQueryBlockList.md b/docset/winserver2012-ps/dnsserver/Get-DnsServerGlobalQueryBlockList.md index 01ff599fbe..fe7c443a33 100644 --- a/docset/winserver2012-ps/dnsserver/Get-DnsServerGlobalQueryBlockList.md +++ b/docset/winserver2012-ps/dnsserver/Get-DnsServerGlobalQueryBlockList.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverglobalqueryblocklist?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverglobalqueryblocklist?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Get-DnsServerRecursion.md b/docset/winserver2012-ps/dnsserver/Get-DnsServerRecursion.md index a92a60fbb0..a42f129271 100644 --- a/docset/winserver2012-ps/dnsserver/Get-DnsServerRecursion.md +++ b/docset/winserver2012-ps/dnsserver/Get-DnsServerRecursion.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverrecursion?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverrecursion?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Get-DnsServerResourceRecord.md b/docset/winserver2012-ps/dnsserver/Get-DnsServerResourceRecord.md index ab3ece6684..78093c9a45 100644 --- a/docset/winserver2012-ps/dnsserver/Get-DnsServerResourceRecord.md +++ b/docset/winserver2012-ps/dnsserver/Get-DnsServerResourceRecord.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverresourcerecord?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverresourcerecord?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Get-DnsServerRootHint.md b/docset/winserver2012-ps/dnsserver/Get-DnsServerRootHint.md index 84771708ca..bf2eccb89c 100644 --- a/docset/winserver2012-ps/dnsserver/Get-DnsServerRootHint.md +++ b/docset/winserver2012-ps/dnsserver/Get-DnsServerRootHint.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverroothint?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverroothint?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Get-DnsServerScavenging.md b/docset/winserver2012-ps/dnsserver/Get-DnsServerScavenging.md index 8e732347a6..a82dcd910e 100644 --- a/docset/winserver2012-ps/dnsserver/Get-DnsServerScavenging.md +++ b/docset/winserver2012-ps/dnsserver/Get-DnsServerScavenging.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverscavenging?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverscavenging?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Get-DnsServerSetting.md b/docset/winserver2012-ps/dnsserver/Get-DnsServerSetting.md index 60abde2c9a..477fddee2a 100644 --- a/docset/winserver2012-ps/dnsserver/Get-DnsServerSetting.md +++ b/docset/winserver2012-ps/dnsserver/Get-DnsServerSetting.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserversetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserversetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Get-DnsServerSigningKey.md b/docset/winserver2012-ps/dnsserver/Get-DnsServerSigningKey.md index 93c3953bc7..6d2b35110f 100644 --- a/docset/winserver2012-ps/dnsserver/Get-DnsServerSigningKey.md +++ b/docset/winserver2012-ps/dnsserver/Get-DnsServerSigningKey.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserversigningkey?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserversigningkey?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Get-DnsServerStatistics.md b/docset/winserver2012-ps/dnsserver/Get-DnsServerStatistics.md index 2223596ed2..164df55dee 100644 --- a/docset/winserver2012-ps/dnsserver/Get-DnsServerStatistics.md +++ b/docset/winserver2012-ps/dnsserver/Get-DnsServerStatistics.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverstatistics?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverstatistics?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Get-DnsServerTrustAnchor.md b/docset/winserver2012-ps/dnsserver/Get-DnsServerTrustAnchor.md index ce8af04cb4..ea3ed60caa 100644 --- a/docset/winserver2012-ps/dnsserver/Get-DnsServerTrustAnchor.md +++ b/docset/winserver2012-ps/dnsserver/Get-DnsServerTrustAnchor.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsservertrustanchor?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsservertrustanchor?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Get-DnsServerTrustPoint.md b/docset/winserver2012-ps/dnsserver/Get-DnsServerTrustPoint.md index 1159de94f3..e1faf01be5 100644 --- a/docset/winserver2012-ps/dnsserver/Get-DnsServerTrustPoint.md +++ b/docset/winserver2012-ps/dnsserver/Get-DnsServerTrustPoint.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsservertrustpoint?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsservertrustpoint?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Get-DnsServerZone.md b/docset/winserver2012-ps/dnsserver/Get-DnsServerZone.md index 423514d030..58e06890ba 100644 --- a/docset/winserver2012-ps/dnsserver/Get-DnsServerZone.md +++ b/docset/winserver2012-ps/dnsserver/Get-DnsServerZone.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverzone?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverzone?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Get-DnsServerZoneAging.md b/docset/winserver2012-ps/dnsserver/Get-DnsServerZoneAging.md index c79bc7fb7c..bc039d9bdd 100644 --- a/docset/winserver2012-ps/dnsserver/Get-DnsServerZoneAging.md +++ b/docset/winserver2012-ps/dnsserver/Get-DnsServerZoneAging.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverzoneaging?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverzoneaging?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Get-DnsServerZoneDelegation.md b/docset/winserver2012-ps/dnsserver/Get-DnsServerZoneDelegation.md index 5cd0f5ac68..8b90fa2ca0 100644 --- a/docset/winserver2012-ps/dnsserver/Get-DnsServerZoneDelegation.md +++ b/docset/winserver2012-ps/dnsserver/Get-DnsServerZoneDelegation.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverzonedelegation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverzonedelegation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Import-DnsServerResourceRecordDS.md b/docset/winserver2012-ps/dnsserver/Import-DnsServerResourceRecordDS.md index 3604846647..ae37aab71f 100644 --- a/docset/winserver2012-ps/dnsserver/Import-DnsServerResourceRecordDS.md +++ b/docset/winserver2012-ps/dnsserver/Import-DnsServerResourceRecordDS.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/import-dnsserverresourcerecordds?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/import-dnsserverresourcerecordds?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Import-DnsServerRootHint.md b/docset/winserver2012-ps/dnsserver/Import-DnsServerRootHint.md index ad8f575744..089850a4e4 100644 --- a/docset/winserver2012-ps/dnsserver/Import-DnsServerRootHint.md +++ b/docset/winserver2012-ps/dnsserver/Import-DnsServerRootHint.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/import-dnsserverroothint?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/import-dnsserverroothint?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Import-DnsServerTrustAnchor.md b/docset/winserver2012-ps/dnsserver/Import-DnsServerTrustAnchor.md index 2ab5d740eb..efa40e1c6a 100644 --- a/docset/winserver2012-ps/dnsserver/Import-DnsServerTrustAnchor.md +++ b/docset/winserver2012-ps/dnsserver/Import-DnsServerTrustAnchor.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/import-dnsservertrustanchor?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/import-dnsservertrustanchor?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Invoke-DnsServerSigningKeyRollover.md b/docset/winserver2012-ps/dnsserver/Invoke-DnsServerSigningKeyRollover.md index 5e01c507a6..fe31715cc1 100644 --- a/docset/winserver2012-ps/dnsserver/Invoke-DnsServerSigningKeyRollover.md +++ b/docset/winserver2012-ps/dnsserver/Invoke-DnsServerSigningKeyRollover.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/invoke-dnsserversigningkeyrollover?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/invoke-dnsserversigningkeyrollover?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Invoke-DnsServerZoneSign.md b/docset/winserver2012-ps/dnsserver/Invoke-DnsServerZoneSign.md index f47255a885..cd1c5c6ba5 100644 --- a/docset/winserver2012-ps/dnsserver/Invoke-DnsServerZoneSign.md +++ b/docset/winserver2012-ps/dnsserver/Invoke-DnsServerZoneSign.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/invoke-dnsserverzonesign?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/invoke-dnsserverzonesign?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Invoke-DnsServerZoneUnsign.md b/docset/winserver2012-ps/dnsserver/Invoke-DnsServerZoneUnsign.md index 195cb76b8c..e1801362e7 100644 --- a/docset/winserver2012-ps/dnsserver/Invoke-DnsServerZoneUnsign.md +++ b/docset/winserver2012-ps/dnsserver/Invoke-DnsServerZoneUnsign.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/invoke-dnsserverzoneunsign?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/invoke-dnsserverzoneunsign?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Register-DnsServerDirectoryPartition.md b/docset/winserver2012-ps/dnsserver/Register-DnsServerDirectoryPartition.md index b973d1f43d..807cfd0b93 100644 --- a/docset/winserver2012-ps/dnsserver/Register-DnsServerDirectoryPartition.md +++ b/docset/winserver2012-ps/dnsserver/Register-DnsServerDirectoryPartition.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/register-dnsserverdirectorypartition?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/register-dnsserverdirectorypartition?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Remove-DnsServerDirectoryPartition.md b/docset/winserver2012-ps/dnsserver/Remove-DnsServerDirectoryPartition.md index 45fe841c78..63887670f0 100644 --- a/docset/winserver2012-ps/dnsserver/Remove-DnsServerDirectoryPartition.md +++ b/docset/winserver2012-ps/dnsserver/Remove-DnsServerDirectoryPartition.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsserverdirectorypartition?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsserverdirectorypartition?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Remove-DnsServerForwarder.md b/docset/winserver2012-ps/dnsserver/Remove-DnsServerForwarder.md index 261e19c650..434babaaa4 100644 --- a/docset/winserver2012-ps/dnsserver/Remove-DnsServerForwarder.md +++ b/docset/winserver2012-ps/dnsserver/Remove-DnsServerForwarder.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsserverforwarder?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsserverforwarder?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Remove-DnsServerResourceRecord.md b/docset/winserver2012-ps/dnsserver/Remove-DnsServerResourceRecord.md index d7341a5564..bdab0a59de 100644 --- a/docset/winserver2012-ps/dnsserver/Remove-DnsServerResourceRecord.md +++ b/docset/winserver2012-ps/dnsserver/Remove-DnsServerResourceRecord.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsserverresourcerecord?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsserverresourcerecord?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Remove-DnsServerRootHint.md b/docset/winserver2012-ps/dnsserver/Remove-DnsServerRootHint.md index 5b6ff13849..820b655d6c 100644 --- a/docset/winserver2012-ps/dnsserver/Remove-DnsServerRootHint.md +++ b/docset/winserver2012-ps/dnsserver/Remove-DnsServerRootHint.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsserverroothint?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsserverroothint?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Remove-DnsServerSigningKey.md b/docset/winserver2012-ps/dnsserver/Remove-DnsServerSigningKey.md index 5b606d9d05..b64f2c236b 100644 --- a/docset/winserver2012-ps/dnsserver/Remove-DnsServerSigningKey.md +++ b/docset/winserver2012-ps/dnsserver/Remove-DnsServerSigningKey.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsserversigningkey?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsserversigningkey?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Remove-DnsServerTrustAnchor.md b/docset/winserver2012-ps/dnsserver/Remove-DnsServerTrustAnchor.md index 80a847fc0c..f827c45404 100644 --- a/docset/winserver2012-ps/dnsserver/Remove-DnsServerTrustAnchor.md +++ b/docset/winserver2012-ps/dnsserver/Remove-DnsServerTrustAnchor.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsservertrustanchor?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsservertrustanchor?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Remove-DnsServerZone.md b/docset/winserver2012-ps/dnsserver/Remove-DnsServerZone.md index 7610f3d26d..86ae774ee9 100644 --- a/docset/winserver2012-ps/dnsserver/Remove-DnsServerZone.md +++ b/docset/winserver2012-ps/dnsserver/Remove-DnsServerZone.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsserverzone?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsserverzone?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Remove-DnsServerZoneDelegation.md b/docset/winserver2012-ps/dnsserver/Remove-DnsServerZoneDelegation.md index 3c3c966b93..7cf92e710b 100644 --- a/docset/winserver2012-ps/dnsserver/Remove-DnsServerZoneDelegation.md +++ b/docset/winserver2012-ps/dnsserver/Remove-DnsServerZoneDelegation.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsserverzonedelegation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsserverzonedelegation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Reset-DnsServerZoneKeyMasterRole.md b/docset/winserver2012-ps/dnsserver/Reset-DnsServerZoneKeyMasterRole.md index 1789ebcc2e..fd5206e554 100644 --- a/docset/winserver2012-ps/dnsserver/Reset-DnsServerZoneKeyMasterRole.md +++ b/docset/winserver2012-ps/dnsserver/Reset-DnsServerZoneKeyMasterRole.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/reset-dnsserverzonekeymasterrole?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/reset-dnsserverzonekeymasterrole?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Restore-DnsServerPrimaryZone.md b/docset/winserver2012-ps/dnsserver/Restore-DnsServerPrimaryZone.md index d8166ce644..0672ae0b5c 100644 --- a/docset/winserver2012-ps/dnsserver/Restore-DnsServerPrimaryZone.md +++ b/docset/winserver2012-ps/dnsserver/Restore-DnsServerPrimaryZone.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/restore-dnsserverprimaryzone?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/restore-dnsserverprimaryzone?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Restore-DnsServerSecondaryZone.md b/docset/winserver2012-ps/dnsserver/Restore-DnsServerSecondaryZone.md index 9c04463035..5d0bc30893 100644 --- a/docset/winserver2012-ps/dnsserver/Restore-DnsServerSecondaryZone.md +++ b/docset/winserver2012-ps/dnsserver/Restore-DnsServerSecondaryZone.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/restore-dnsserversecondaryzone?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/restore-dnsserversecondaryzone?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Resume-DnsServerZone.md b/docset/winserver2012-ps/dnsserver/Resume-DnsServerZone.md index fa161838fd..3c4ecada76 100644 --- a/docset/winserver2012-ps/dnsserver/Resume-DnsServerZone.md +++ b/docset/winserver2012-ps/dnsserver/Resume-DnsServerZone.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/resume-dnsserverzone?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/resume-dnsserverzone?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Set-DnsServer.md b/docset/winserver2012-ps/dnsserver/Set-DnsServer.md index 60e1406b92..448a7683e6 100644 --- a/docset/winserver2012-ps/dnsserver/Set-DnsServer.md +++ b/docset/winserver2012-ps/dnsserver/Set-DnsServer.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Set-DnsServerCache.md b/docset/winserver2012-ps/dnsserver/Set-DnsServerCache.md index 21c571e256..e2e51a303c 100644 --- a/docset/winserver2012-ps/dnsserver/Set-DnsServerCache.md +++ b/docset/winserver2012-ps/dnsserver/Set-DnsServerCache.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsservercache?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsservercache?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Set-DnsServerConditionalForwarderZone.md b/docset/winserver2012-ps/dnsserver/Set-DnsServerConditionalForwarderZone.md index 0c839119b9..a6da42ad8e 100644 --- a/docset/winserver2012-ps/dnsserver/Set-DnsServerConditionalForwarderZone.md +++ b/docset/winserver2012-ps/dnsserver/Set-DnsServerConditionalForwarderZone.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverconditionalforwarderzone?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverconditionalforwarderzone?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Set-DnsServerDiagnostics.md b/docset/winserver2012-ps/dnsserver/Set-DnsServerDiagnostics.md index 75c48d2aaa..4142644703 100644 --- a/docset/winserver2012-ps/dnsserver/Set-DnsServerDiagnostics.md +++ b/docset/winserver2012-ps/dnsserver/Set-DnsServerDiagnostics.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverdiagnostics?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverdiagnostics?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Set-DnsServerDnsSecZoneSetting.md b/docset/winserver2012-ps/dnsserver/Set-DnsServerDnsSecZoneSetting.md index 114c5b577c..374b610488 100644 --- a/docset/winserver2012-ps/dnsserver/Set-DnsServerDnsSecZoneSetting.md +++ b/docset/winserver2012-ps/dnsserver/Set-DnsServerDnsSecZoneSetting.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverdnsseczonesetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverdnsseczonesetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Set-DnsServerDsSetting.md b/docset/winserver2012-ps/dnsserver/Set-DnsServerDsSetting.md index 34986b2594..1ef24c990d 100644 --- a/docset/winserver2012-ps/dnsserver/Set-DnsServerDsSetting.md +++ b/docset/winserver2012-ps/dnsserver/Set-DnsServerDsSetting.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverdssetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverdssetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Set-DnsServerEDns.md b/docset/winserver2012-ps/dnsserver/Set-DnsServerEDns.md index 569fe1eafe..3cdde019cf 100644 --- a/docset/winserver2012-ps/dnsserver/Set-DnsServerEDns.md +++ b/docset/winserver2012-ps/dnsserver/Set-DnsServerEDns.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserveredns?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserveredns?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Set-DnsServerForwarder.md b/docset/winserver2012-ps/dnsserver/Set-DnsServerForwarder.md index f3d028b792..2c1c95f1cc 100644 --- a/docset/winserver2012-ps/dnsserver/Set-DnsServerForwarder.md +++ b/docset/winserver2012-ps/dnsserver/Set-DnsServerForwarder.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverforwarder?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverforwarder?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Set-DnsServerGlobalNameZone.md b/docset/winserver2012-ps/dnsserver/Set-DnsServerGlobalNameZone.md index b3d849e35f..9c4709dcaf 100644 --- a/docset/winserver2012-ps/dnsserver/Set-DnsServerGlobalNameZone.md +++ b/docset/winserver2012-ps/dnsserver/Set-DnsServerGlobalNameZone.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverglobalnamezone?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverglobalnamezone?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Set-DnsServerGlobalQueryBlockList.md b/docset/winserver2012-ps/dnsserver/Set-DnsServerGlobalQueryBlockList.md index 122e720735..82fe57bca9 100644 --- a/docset/winserver2012-ps/dnsserver/Set-DnsServerGlobalQueryBlockList.md +++ b/docset/winserver2012-ps/dnsserver/Set-DnsServerGlobalQueryBlockList.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverglobalqueryblocklist?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverglobalqueryblocklist?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Set-DnsServerPrimaryZone.md b/docset/winserver2012-ps/dnsserver/Set-DnsServerPrimaryZone.md index eb8d63c3d4..446d518875 100644 --- a/docset/winserver2012-ps/dnsserver/Set-DnsServerPrimaryZone.md +++ b/docset/winserver2012-ps/dnsserver/Set-DnsServerPrimaryZone.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverprimaryzone?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverprimaryzone?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Set-DnsServerRecursion.md b/docset/winserver2012-ps/dnsserver/Set-DnsServerRecursion.md index 316e80b8f1..4485602761 100644 --- a/docset/winserver2012-ps/dnsserver/Set-DnsServerRecursion.md +++ b/docset/winserver2012-ps/dnsserver/Set-DnsServerRecursion.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverrecursion?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverrecursion?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Set-DnsServerResourceRecord.md b/docset/winserver2012-ps/dnsserver/Set-DnsServerResourceRecord.md index 86a2375a7a..3e0c5d0f0c 100644 --- a/docset/winserver2012-ps/dnsserver/Set-DnsServerResourceRecord.md +++ b/docset/winserver2012-ps/dnsserver/Set-DnsServerResourceRecord.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverresourcerecord?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverresourcerecord?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Set-DnsServerResourceRecordAging.md b/docset/winserver2012-ps/dnsserver/Set-DnsServerResourceRecordAging.md index ace8d5dc36..0ff1db8d05 100644 --- a/docset/winserver2012-ps/dnsserver/Set-DnsServerResourceRecordAging.md +++ b/docset/winserver2012-ps/dnsserver/Set-DnsServerResourceRecordAging.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverresourcerecordaging?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverresourcerecordaging?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Set-DnsServerRootHint.md b/docset/winserver2012-ps/dnsserver/Set-DnsServerRootHint.md index 60c9ae1a6d..af725db6b3 100644 --- a/docset/winserver2012-ps/dnsserver/Set-DnsServerRootHint.md +++ b/docset/winserver2012-ps/dnsserver/Set-DnsServerRootHint.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverroothint?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverroothint?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Set-DnsServerScavenging.md b/docset/winserver2012-ps/dnsserver/Set-DnsServerScavenging.md index 37f0f20bf6..c3fa67fd87 100644 --- a/docset/winserver2012-ps/dnsserver/Set-DnsServerScavenging.md +++ b/docset/winserver2012-ps/dnsserver/Set-DnsServerScavenging.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverscavenging?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverscavenging?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Set-DnsServerSecondaryZone.md b/docset/winserver2012-ps/dnsserver/Set-DnsServerSecondaryZone.md index 0c8e8f2ab5..d21460606c 100644 --- a/docset/winserver2012-ps/dnsserver/Set-DnsServerSecondaryZone.md +++ b/docset/winserver2012-ps/dnsserver/Set-DnsServerSecondaryZone.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserversecondaryzone?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserversecondaryzone?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Set-DnsServerSetting.md b/docset/winserver2012-ps/dnsserver/Set-DnsServerSetting.md index a5750132a4..b849077d9d 100644 --- a/docset/winserver2012-ps/dnsserver/Set-DnsServerSetting.md +++ b/docset/winserver2012-ps/dnsserver/Set-DnsServerSetting.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserversetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserversetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Set-DnsServerSigningKey.md b/docset/winserver2012-ps/dnsserver/Set-DnsServerSigningKey.md index 3ce9aa0922..05422fd8a4 100644 --- a/docset/winserver2012-ps/dnsserver/Set-DnsServerSigningKey.md +++ b/docset/winserver2012-ps/dnsserver/Set-DnsServerSigningKey.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserversigningkey?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserversigningkey?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Set-DnsServerStubZone.md b/docset/winserver2012-ps/dnsserver/Set-DnsServerStubZone.md index d252c516f0..b578066bc4 100644 --- a/docset/winserver2012-ps/dnsserver/Set-DnsServerStubZone.md +++ b/docset/winserver2012-ps/dnsserver/Set-DnsServerStubZone.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverstubzone?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverstubzone?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Set-DnsServerZoneAging.md b/docset/winserver2012-ps/dnsserver/Set-DnsServerZoneAging.md index ff277e2873..59c949a225 100644 --- a/docset/winserver2012-ps/dnsserver/Set-DnsServerZoneAging.md +++ b/docset/winserver2012-ps/dnsserver/Set-DnsServerZoneAging.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverzoneaging?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverzoneaging?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Set-DnsServerZoneDelegation.md b/docset/winserver2012-ps/dnsserver/Set-DnsServerZoneDelegation.md index 1e9d2fdc51..207b9630bf 100644 --- a/docset/winserver2012-ps/dnsserver/Set-DnsServerZoneDelegation.md +++ b/docset/winserver2012-ps/dnsserver/Set-DnsServerZoneDelegation.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverzonedelegation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverzonedelegation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Show-DnsServerCache.md b/docset/winserver2012-ps/dnsserver/Show-DnsServerCache.md index 33432ba5f5..d971ae8662 100644 --- a/docset/winserver2012-ps/dnsserver/Show-DnsServerCache.md +++ b/docset/winserver2012-ps/dnsserver/Show-DnsServerCache.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/show-dnsservercache?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/show-dnsservercache?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Show-DnsServerKeyStorageProvider.md b/docset/winserver2012-ps/dnsserver/Show-DnsServerKeyStorageProvider.md index 329aa1fa42..4575deda44 100644 --- a/docset/winserver2012-ps/dnsserver/Show-DnsServerKeyStorageProvider.md +++ b/docset/winserver2012-ps/dnsserver/Show-DnsServerKeyStorageProvider.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/show-dnsserverkeystorageprovider?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/show-dnsserverkeystorageprovider?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Start-DnsServerScavenging.md b/docset/winserver2012-ps/dnsserver/Start-DnsServerScavenging.md index e71f0286cf..a9d2e5017d 100644 --- a/docset/winserver2012-ps/dnsserver/Start-DnsServerScavenging.md +++ b/docset/winserver2012-ps/dnsserver/Start-DnsServerScavenging.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/start-dnsserverscavenging?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/start-dnsserverscavenging?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Start-DnsServerZoneTransfer.md b/docset/winserver2012-ps/dnsserver/Start-DnsServerZoneTransfer.md index e3f6810031..70aa8edc40 100644 --- a/docset/winserver2012-ps/dnsserver/Start-DnsServerZoneTransfer.md +++ b/docset/winserver2012-ps/dnsserver/Start-DnsServerZoneTransfer.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/start-dnsserverzonetransfer?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/start-dnsserverzonetransfer?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Suspend-DnsServerZone.md b/docset/winserver2012-ps/dnsserver/Suspend-DnsServerZone.md index fb32177fd3..5bf0ee443d 100644 --- a/docset/winserver2012-ps/dnsserver/Suspend-DnsServerZone.md +++ b/docset/winserver2012-ps/dnsserver/Suspend-DnsServerZone.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/suspend-dnsserverzone?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/suspend-dnsserverzone?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Sync-DnsServerZone.md b/docset/winserver2012-ps/dnsserver/Sync-DnsServerZone.md index ed0f523f34..8c8e0a3ec7 100644 --- a/docset/winserver2012-ps/dnsserver/Sync-DnsServerZone.md +++ b/docset/winserver2012-ps/dnsserver/Sync-DnsServerZone.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/sync-dnsserverzone?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/sync-dnsserverzone?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Test-DnsServer.md b/docset/winserver2012-ps/dnsserver/Test-DnsServer.md index 8cd068bc90..ca3ca7a78d 100644 --- a/docset/winserver2012-ps/dnsserver/Test-DnsServer.md +++ b/docset/winserver2012-ps/dnsserver/Test-DnsServer.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/test-dnsserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/test-dnsserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Test-DnsServerDnsSecZoneSetting.md b/docset/winserver2012-ps/dnsserver/Test-DnsServerDnsSecZoneSetting.md index a3f8bde3e5..0e6e5677e5 100644 --- a/docset/winserver2012-ps/dnsserver/Test-DnsServerDnsSecZoneSetting.md +++ b/docset/winserver2012-ps/dnsserver/Test-DnsServerDnsSecZoneSetting.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/test-dnsserverdnsseczonesetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/test-dnsserverdnsseczonesetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Unregister-DnsServerDirectoryPartition.md b/docset/winserver2012-ps/dnsserver/Unregister-DnsServerDirectoryPartition.md index 8742258b76..b8dedccd0a 100644 --- a/docset/winserver2012-ps/dnsserver/Unregister-DnsServerDirectoryPartition.md +++ b/docset/winserver2012-ps/dnsserver/Unregister-DnsServerDirectoryPartition.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/unregister-dnsserverdirectorypartition?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/unregister-dnsserverdirectorypartition?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/dnsserver/Update-DnsServerTrustPoint.md b/docset/winserver2012-ps/dnsserver/Update-DnsServerTrustPoint.md index b99904a94a..c39f4ff57f 100644 --- a/docset/winserver2012-ps/dnsserver/Update-DnsServerTrustPoint.md +++ b/docset/winserver2012-ps/dnsserver/Update-DnsServerTrustPoint.md @@ -1,7 +1,7 @@ --- external help file: DnsServer_Cmdlets.xml Module Name: DnsServer -online version: https://docs.microsoft.com/powershell/module/dnsserver/update-dnsservertrustpoint?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/update-dnsservertrustpoint?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Add-ClusterCheckpoint.md b/docset/winserver2012-ps/failoverclusters/Add-ClusterCheckpoint.md index aa1ae517ca..083eaab886 100644 --- a/docset/winserver2012-ps/failoverclusters/Add-ClusterCheckpoint.md +++ b/docset/winserver2012-ps/failoverclusters/Add-ClusterCheckpoint.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clustercheckpoint?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustercheckpoint?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Add-ClusterDisk.md b/docset/winserver2012-ps/failoverclusters/Add-ClusterDisk.md index c7569758bb..2c3358dc9d 100644 --- a/docset/winserver2012-ps/failoverclusters/Add-ClusterDisk.md +++ b/docset/winserver2012-ps/failoverclusters/Add-ClusterDisk.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clusterdisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusterdisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Add-ClusterFileServerRole.md b/docset/winserver2012-ps/failoverclusters/Add-ClusterFileServerRole.md index 9c9ab306e6..39ad1bb128 100644 --- a/docset/winserver2012-ps/failoverclusters/Add-ClusterFileServerRole.md +++ b/docset/winserver2012-ps/failoverclusters/Add-ClusterFileServerRole.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clusterfileserverrole?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusterfileserverrole?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Add-ClusterGenericApplicationRole.md b/docset/winserver2012-ps/failoverclusters/Add-ClusterGenericApplicationRole.md index ca458b43cd..b19492ac0a 100644 --- a/docset/winserver2012-ps/failoverclusters/Add-ClusterGenericApplicationRole.md +++ b/docset/winserver2012-ps/failoverclusters/Add-ClusterGenericApplicationRole.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clustergenericapplicationrole?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustergenericapplicationrole?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Add-ClusterGenericScriptRole.md b/docset/winserver2012-ps/failoverclusters/Add-ClusterGenericScriptRole.md index 6e6da56865..994cb0d67d 100644 --- a/docset/winserver2012-ps/failoverclusters/Add-ClusterGenericScriptRole.md +++ b/docset/winserver2012-ps/failoverclusters/Add-ClusterGenericScriptRole.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clustergenericscriptrole?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustergenericscriptrole?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Add-ClusterGenericServiceRole.md b/docset/winserver2012-ps/failoverclusters/Add-ClusterGenericServiceRole.md index 2c894247ef..7e9838fbd3 100644 --- a/docset/winserver2012-ps/failoverclusters/Add-ClusterGenericServiceRole.md +++ b/docset/winserver2012-ps/failoverclusters/Add-ClusterGenericServiceRole.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clustergenericservicerole?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustergenericservicerole?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Add-ClusterGroup.md b/docset/winserver2012-ps/failoverclusters/Add-ClusterGroup.md index 01976a8508..31a58dc9b6 100644 --- a/docset/winserver2012-ps/failoverclusters/Add-ClusterGroup.md +++ b/docset/winserver2012-ps/failoverclusters/Add-ClusterGroup.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clustergroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustergroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Add-ClusterNode.md b/docset/winserver2012-ps/failoverclusters/Add-ClusterNode.md index de7188ad73..afa662434e 100644 --- a/docset/winserver2012-ps/failoverclusters/Add-ClusterNode.md +++ b/docset/winserver2012-ps/failoverclusters/Add-ClusterNode.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clusternode?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusternode?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Add-ClusterPrintServerRole.md b/docset/winserver2012-ps/failoverclusters/Add-ClusterPrintServerRole.md index a6a7677c65..2d166f6d02 100644 --- a/docset/winserver2012-ps/failoverclusters/Add-ClusterPrintServerRole.md +++ b/docset/winserver2012-ps/failoverclusters/Add-ClusterPrintServerRole.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clusterprintserverrole?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusterprintserverrole?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Add-ClusterResource.md b/docset/winserver2012-ps/failoverclusters/Add-ClusterResource.md index 9c72f2e814..67fe04d938 100644 --- a/docset/winserver2012-ps/failoverclusters/Add-ClusterResource.md +++ b/docset/winserver2012-ps/failoverclusters/Add-ClusterResource.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clusterresource?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusterresource?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Add-ClusterResourceDependency.md b/docset/winserver2012-ps/failoverclusters/Add-ClusterResourceDependency.md index 56aea46d6f..1edcae234e 100644 --- a/docset/winserver2012-ps/failoverclusters/Add-ClusterResourceDependency.md +++ b/docset/winserver2012-ps/failoverclusters/Add-ClusterResourceDependency.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clusterresourcedependency?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusterresourcedependency?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Add-ClusterResourceType.md b/docset/winserver2012-ps/failoverclusters/Add-ClusterResourceType.md index 17cea72a01..bc233688fc 100644 --- a/docset/winserver2012-ps/failoverclusters/Add-ClusterResourceType.md +++ b/docset/winserver2012-ps/failoverclusters/Add-ClusterResourceType.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clusterresourcetype?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusterresourcetype?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md b/docset/winserver2012-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md index bf25008ae1..89f0bec473 100644 --- a/docset/winserver2012-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md +++ b/docset/winserver2012-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clusterscaleoutfileserverrole?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusterscaleoutfileserverrole?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Add-ClusterServerRole.md b/docset/winserver2012-ps/failoverclusters/Add-ClusterServerRole.md index eb0ebba371..06efcb4fec 100644 --- a/docset/winserver2012-ps/failoverclusters/Add-ClusterServerRole.md +++ b/docset/winserver2012-ps/failoverclusters/Add-ClusterServerRole.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clusterserverrole?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusterserverrole?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Add-ClusterSharedVolume.md b/docset/winserver2012-ps/failoverclusters/Add-ClusterSharedVolume.md index 02cdcfad28..7ba3d43646 100644 --- a/docset/winserver2012-ps/failoverclusters/Add-ClusterSharedVolume.md +++ b/docset/winserver2012-ps/failoverclusters/Add-ClusterSharedVolume.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clustersharedvolume?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustersharedvolume?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Add-ClusterVMMonitoredItem.md b/docset/winserver2012-ps/failoverclusters/Add-ClusterVMMonitoredItem.md index 05273893d0..1e8c968e99 100644 --- a/docset/winserver2012-ps/failoverclusters/Add-ClusterVMMonitoredItem.md +++ b/docset/winserver2012-ps/failoverclusters/Add-ClusterVMMonitoredItem.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clustervmmonitoreditem?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustervmmonitoreditem?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Add-ClusterVirtualMachineRole.md b/docset/winserver2012-ps/failoverclusters/Add-ClusterVirtualMachineRole.md index ac64cb68e2..9d77713aff 100644 --- a/docset/winserver2012-ps/failoverclusters/Add-ClusterVirtualMachineRole.md +++ b/docset/winserver2012-ps/failoverclusters/Add-ClusterVirtualMachineRole.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clustervirtualmachinerole?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustervirtualmachinerole?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Add-ClusteriSCSITargetServerRole.md b/docset/winserver2012-ps/failoverclusters/Add-ClusteriSCSITargetServerRole.md index c0a5ed8b95..79489a5780 100644 --- a/docset/winserver2012-ps/failoverclusters/Add-ClusteriSCSITargetServerRole.md +++ b/docset/winserver2012-ps/failoverclusters/Add-ClusteriSCSITargetServerRole.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clusteriscsitargetserverrole?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusteriscsitargetserverrole?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Block-ClusterAccess.md b/docset/winserver2012-ps/failoverclusters/Block-ClusterAccess.md index cd529ec420..2d55d0a98d 100644 --- a/docset/winserver2012-ps/failoverclusters/Block-ClusterAccess.md +++ b/docset/winserver2012-ps/failoverclusters/Block-ClusterAccess.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/block-clusteraccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/block-clusteraccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Clear-ClusterDiskReservation.md b/docset/winserver2012-ps/failoverclusters/Clear-ClusterDiskReservation.md index 8aa6397538..7a72a319b6 100644 --- a/docset/winserver2012-ps/failoverclusters/Clear-ClusterDiskReservation.md +++ b/docset/winserver2012-ps/failoverclusters/Clear-ClusterDiskReservation.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/clear-clusterdiskreservation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/clear-clusterdiskreservation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Clear-ClusterNode.md b/docset/winserver2012-ps/failoverclusters/Clear-ClusterNode.md index 6903f09fe3..ad855fb03f 100644 --- a/docset/winserver2012-ps/failoverclusters/Clear-ClusterNode.md +++ b/docset/winserver2012-ps/failoverclusters/Clear-ClusterNode.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/clear-clusternode?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/clear-clusternode?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Get-Cluster.md b/docset/winserver2012-ps/failoverclusters/Get-Cluster.md index d7397fe27a..f1e406fc06 100644 --- a/docset/winserver2012-ps/failoverclusters/Get-Cluster.md +++ b/docset/winserver2012-ps/failoverclusters/Get-Cluster.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-cluster?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-cluster?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Get-ClusterAccess.md b/docset/winserver2012-ps/failoverclusters/Get-ClusterAccess.md index 170b49eff6..a59dbbff50 100644 --- a/docset/winserver2012-ps/failoverclusters/Get-ClusterAccess.md +++ b/docset/winserver2012-ps/failoverclusters/Get-ClusterAccess.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusteraccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusteraccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Get-ClusterAvailableDisk.md b/docset/winserver2012-ps/failoverclusters/Get-ClusterAvailableDisk.md index cdfaff9480..ef5d37ea1a 100644 --- a/docset/winserver2012-ps/failoverclusters/Get-ClusterAvailableDisk.md +++ b/docset/winserver2012-ps/failoverclusters/Get-ClusterAvailableDisk.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusteravailabledisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusteravailabledisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Get-ClusterCheckpoint.md b/docset/winserver2012-ps/failoverclusters/Get-ClusterCheckpoint.md index b7a1d52fbc..b84a28b9a1 100644 --- a/docset/winserver2012-ps/failoverclusters/Get-ClusterCheckpoint.md +++ b/docset/winserver2012-ps/failoverclusters/Get-ClusterCheckpoint.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clustercheckpoint?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clustercheckpoint?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Get-ClusterGroup.md b/docset/winserver2012-ps/failoverclusters/Get-ClusterGroup.md index 74f2ba28b1..e155698d18 100644 --- a/docset/winserver2012-ps/failoverclusters/Get-ClusterGroup.md +++ b/docset/winserver2012-ps/failoverclusters/Get-ClusterGroup.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clustergroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clustergroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Get-ClusterLog.md b/docset/winserver2012-ps/failoverclusters/Get-ClusterLog.md index ff6b833980..24422de433 100644 --- a/docset/winserver2012-ps/failoverclusters/Get-ClusterLog.md +++ b/docset/winserver2012-ps/failoverclusters/Get-ClusterLog.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusterlog?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterlog?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Get-ClusterNetwork.md b/docset/winserver2012-ps/failoverclusters/Get-ClusterNetwork.md index dabb3ba554..f9a54fc2d4 100644 --- a/docset/winserver2012-ps/failoverclusters/Get-ClusterNetwork.md +++ b/docset/winserver2012-ps/failoverclusters/Get-ClusterNetwork.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusternetwork?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusternetwork?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Get-ClusterNetworkInterface.md b/docset/winserver2012-ps/failoverclusters/Get-ClusterNetworkInterface.md index 78a3df5a64..6c08b7924c 100644 --- a/docset/winserver2012-ps/failoverclusters/Get-ClusterNetworkInterface.md +++ b/docset/winserver2012-ps/failoverclusters/Get-ClusterNetworkInterface.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusternetworkinterface?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusternetworkinterface?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Get-ClusterNode.md b/docset/winserver2012-ps/failoverclusters/Get-ClusterNode.md index a3a70239d0..bf3231b820 100644 --- a/docset/winserver2012-ps/failoverclusters/Get-ClusterNode.md +++ b/docset/winserver2012-ps/failoverclusters/Get-ClusterNode.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusternode?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusternode?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Get-ClusterOwnerNode.md b/docset/winserver2012-ps/failoverclusters/Get-ClusterOwnerNode.md index ea7a8abeff..c56c7cfe0b 100644 --- a/docset/winserver2012-ps/failoverclusters/Get-ClusterOwnerNode.md +++ b/docset/winserver2012-ps/failoverclusters/Get-ClusterOwnerNode.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusterownernode?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterownernode?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Get-ClusterParameter.md b/docset/winserver2012-ps/failoverclusters/Get-ClusterParameter.md index 8a3f64ce7d..d306b54be3 100644 --- a/docset/winserver2012-ps/failoverclusters/Get-ClusterParameter.md +++ b/docset/winserver2012-ps/failoverclusters/Get-ClusterParameter.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusterparameter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterparameter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Get-ClusterQuorum.md b/docset/winserver2012-ps/failoverclusters/Get-ClusterQuorum.md index e619d457ee..897e1c4b1b 100644 --- a/docset/winserver2012-ps/failoverclusters/Get-ClusterQuorum.md +++ b/docset/winserver2012-ps/failoverclusters/Get-ClusterQuorum.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusterquorum?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterquorum?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Get-ClusterResource.md b/docset/winserver2012-ps/failoverclusters/Get-ClusterResource.md index 1ffcd6b750..9d57c1d8ed 100644 --- a/docset/winserver2012-ps/failoverclusters/Get-ClusterResource.md +++ b/docset/winserver2012-ps/failoverclusters/Get-ClusterResource.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusterresource?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterresource?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Get-ClusterResourceDependency.md b/docset/winserver2012-ps/failoverclusters/Get-ClusterResourceDependency.md index 05d2fb06f0..7f5a2f4a57 100644 --- a/docset/winserver2012-ps/failoverclusters/Get-ClusterResourceDependency.md +++ b/docset/winserver2012-ps/failoverclusters/Get-ClusterResourceDependency.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusterresourcedependency?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterresourcedependency?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Get-ClusterResourceDependencyReport.md b/docset/winserver2012-ps/failoverclusters/Get-ClusterResourceDependencyReport.md index cb1a14e174..44fb58ca6d 100644 --- a/docset/winserver2012-ps/failoverclusters/Get-ClusterResourceDependencyReport.md +++ b/docset/winserver2012-ps/failoverclusters/Get-ClusterResourceDependencyReport.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusterresourcedependencyreport?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterresourcedependencyreport?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Get-ClusterResourceType.md b/docset/winserver2012-ps/failoverclusters/Get-ClusterResourceType.md index 6b47ad8c2a..cc2e6bd928 100644 --- a/docset/winserver2012-ps/failoverclusters/Get-ClusterResourceType.md +++ b/docset/winserver2012-ps/failoverclusters/Get-ClusterResourceType.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusterresourcetype?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterresourcetype?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Get-ClusterSharedVolume.md b/docset/winserver2012-ps/failoverclusters/Get-ClusterSharedVolume.md index f9fd5d32d7..db5f0a7588 100644 --- a/docset/winserver2012-ps/failoverclusters/Get-ClusterSharedVolume.md +++ b/docset/winserver2012-ps/failoverclusters/Get-ClusterSharedVolume.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clustersharedvolume?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clustersharedvolume?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Get-ClusterVMMonitoredItem.md b/docset/winserver2012-ps/failoverclusters/Get-ClusterVMMonitoredItem.md index f4091f3abe..37aee0e3a3 100644 --- a/docset/winserver2012-ps/failoverclusters/Get-ClusterVMMonitoredItem.md +++ b/docset/winserver2012-ps/failoverclusters/Get-ClusterVMMonitoredItem.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clustervmmonitoreditem?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clustervmmonitoreditem?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Grant-ClusterAccess.md b/docset/winserver2012-ps/failoverclusters/Grant-ClusterAccess.md index 02772e6e51..27470a8aa9 100644 --- a/docset/winserver2012-ps/failoverclusters/Grant-ClusterAccess.md +++ b/docset/winserver2012-ps/failoverclusters/Grant-ClusterAccess.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/grant-clusteraccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/grant-clusteraccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Move-ClusterGroup.md b/docset/winserver2012-ps/failoverclusters/Move-ClusterGroup.md index c99fd1352c..a369a5eead 100644 --- a/docset/winserver2012-ps/failoverclusters/Move-ClusterGroup.md +++ b/docset/winserver2012-ps/failoverclusters/Move-ClusterGroup.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/move-clustergroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/move-clustergroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Move-ClusterResource.md b/docset/winserver2012-ps/failoverclusters/Move-ClusterResource.md index 21af5e1f63..efaad4448d 100644 --- a/docset/winserver2012-ps/failoverclusters/Move-ClusterResource.md +++ b/docset/winserver2012-ps/failoverclusters/Move-ClusterResource.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/move-clusterresource?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/move-clusterresource?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Move-ClusterSharedVolume.md b/docset/winserver2012-ps/failoverclusters/Move-ClusterSharedVolume.md index df54b332cf..0e7f554950 100644 --- a/docset/winserver2012-ps/failoverclusters/Move-ClusterSharedVolume.md +++ b/docset/winserver2012-ps/failoverclusters/Move-ClusterSharedVolume.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/move-clustersharedvolume?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/move-clustersharedvolume?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Move-ClusterVirtualMachineRole.md b/docset/winserver2012-ps/failoverclusters/Move-ClusterVirtualMachineRole.md index c65a3aac0d..280d1c8fa4 100644 --- a/docset/winserver2012-ps/failoverclusters/Move-ClusterVirtualMachineRole.md +++ b/docset/winserver2012-ps/failoverclusters/Move-ClusterVirtualMachineRole.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/move-clustervirtualmachinerole?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/move-clustervirtualmachinerole?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/New-Cluster.md b/docset/winserver2012-ps/failoverclusters/New-Cluster.md index e0300ebdec..c582db9e6b 100644 --- a/docset/winserver2012-ps/failoverclusters/New-Cluster.md +++ b/docset/winserver2012-ps/failoverclusters/New-Cluster.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/new-cluster?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/new-cluster?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Remove-Cluster.md b/docset/winserver2012-ps/failoverclusters/Remove-Cluster.md index 0dc6f71fa3..a0ce418bb0 100644 --- a/docset/winserver2012-ps/failoverclusters/Remove-Cluster.md +++ b/docset/winserver2012-ps/failoverclusters/Remove-Cluster.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-cluster?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-cluster?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Remove-ClusterAccess.md b/docset/winserver2012-ps/failoverclusters/Remove-ClusterAccess.md index dcc0ec7e0f..17241bafb1 100644 --- a/docset/winserver2012-ps/failoverclusters/Remove-ClusterAccess.md +++ b/docset/winserver2012-ps/failoverclusters/Remove-ClusterAccess.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clusteraccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clusteraccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Remove-ClusterCheckpoint.md b/docset/winserver2012-ps/failoverclusters/Remove-ClusterCheckpoint.md index 987dcffcae..509b2d7b67 100644 --- a/docset/winserver2012-ps/failoverclusters/Remove-ClusterCheckpoint.md +++ b/docset/winserver2012-ps/failoverclusters/Remove-ClusterCheckpoint.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clustercheckpoint?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clustercheckpoint?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Remove-ClusterGroup.md b/docset/winserver2012-ps/failoverclusters/Remove-ClusterGroup.md index d633d70ea0..64f9d3b2f0 100644 --- a/docset/winserver2012-ps/failoverclusters/Remove-ClusterGroup.md +++ b/docset/winserver2012-ps/failoverclusters/Remove-ClusterGroup.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clustergroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clustergroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Remove-ClusterNode.md b/docset/winserver2012-ps/failoverclusters/Remove-ClusterNode.md index 56ec9ad414..9e4b71f804 100644 --- a/docset/winserver2012-ps/failoverclusters/Remove-ClusterNode.md +++ b/docset/winserver2012-ps/failoverclusters/Remove-ClusterNode.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clusternode?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clusternode?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Remove-ClusterResource.md b/docset/winserver2012-ps/failoverclusters/Remove-ClusterResource.md index 7b39db48ab..85baadcf87 100644 --- a/docset/winserver2012-ps/failoverclusters/Remove-ClusterResource.md +++ b/docset/winserver2012-ps/failoverclusters/Remove-ClusterResource.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clusterresource?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clusterresource?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Remove-ClusterResourceDependency.md b/docset/winserver2012-ps/failoverclusters/Remove-ClusterResourceDependency.md index a705a93cbf..0d6d3749a2 100644 --- a/docset/winserver2012-ps/failoverclusters/Remove-ClusterResourceDependency.md +++ b/docset/winserver2012-ps/failoverclusters/Remove-ClusterResourceDependency.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clusterresourcedependency?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clusterresourcedependency?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Remove-ClusterResourceType.md b/docset/winserver2012-ps/failoverclusters/Remove-ClusterResourceType.md index 98e61a12de..6884c846f1 100644 --- a/docset/winserver2012-ps/failoverclusters/Remove-ClusterResourceType.md +++ b/docset/winserver2012-ps/failoverclusters/Remove-ClusterResourceType.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clusterresourcetype?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clusterresourcetype?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Remove-ClusterSharedVolume.md b/docset/winserver2012-ps/failoverclusters/Remove-ClusterSharedVolume.md index 30facf6050..5625065eae 100644 --- a/docset/winserver2012-ps/failoverclusters/Remove-ClusterSharedVolume.md +++ b/docset/winserver2012-ps/failoverclusters/Remove-ClusterSharedVolume.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clustersharedvolume?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clustersharedvolume?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Remove-ClusterVMMonitoredItem.md b/docset/winserver2012-ps/failoverclusters/Remove-ClusterVMMonitoredItem.md index 6a9c9a18e9..be4fcbfc2c 100644 --- a/docset/winserver2012-ps/failoverclusters/Remove-ClusterVMMonitoredItem.md +++ b/docset/winserver2012-ps/failoverclusters/Remove-ClusterVMMonitoredItem.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clustervmmonitoreditem?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clustervmmonitoreditem?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Repair-ClusterSharedVolume.md b/docset/winserver2012-ps/failoverclusters/Repair-ClusterSharedVolume.md index 22d79d39d4..d36e22923d 100644 --- a/docset/winserver2012-ps/failoverclusters/Repair-ClusterSharedVolume.md +++ b/docset/winserver2012-ps/failoverclusters/Repair-ClusterSharedVolume.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/repair-clustersharedvolume?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/repair-clustersharedvolume?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Reset-ClusterVMMonitoredState.md b/docset/winserver2012-ps/failoverclusters/Reset-ClusterVMMonitoredState.md index dbc0126547..4543fb63fa 100644 --- a/docset/winserver2012-ps/failoverclusters/Reset-ClusterVMMonitoredState.md +++ b/docset/winserver2012-ps/failoverclusters/Reset-ClusterVMMonitoredState.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/reset-clustervmmonitoredstate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/reset-clustervmmonitoredstate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Resume-ClusterNode.md b/docset/winserver2012-ps/failoverclusters/Resume-ClusterNode.md index aa4e6122f7..fa06adbc98 100644 --- a/docset/winserver2012-ps/failoverclusters/Resume-ClusterNode.md +++ b/docset/winserver2012-ps/failoverclusters/Resume-ClusterNode.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/resume-clusternode?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/resume-clusternode?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Resume-ClusterResource.md b/docset/winserver2012-ps/failoverclusters/Resume-ClusterResource.md index 0af12456e2..a7a564af19 100644 --- a/docset/winserver2012-ps/failoverclusters/Resume-ClusterResource.md +++ b/docset/winserver2012-ps/failoverclusters/Resume-ClusterResource.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/resume-clusterresource?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/resume-clusterresource?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Set-ClusterLog.md b/docset/winserver2012-ps/failoverclusters/Set-ClusterLog.md index fb174a08b1..7ce68857a5 100644 --- a/docset/winserver2012-ps/failoverclusters/Set-ClusterLog.md +++ b/docset/winserver2012-ps/failoverclusters/Set-ClusterLog.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/set-clusterlog?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterlog?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Set-ClusterOwnerNode.md b/docset/winserver2012-ps/failoverclusters/Set-ClusterOwnerNode.md index eed048c9e2..4d8b91edb5 100644 --- a/docset/winserver2012-ps/failoverclusters/Set-ClusterOwnerNode.md +++ b/docset/winserver2012-ps/failoverclusters/Set-ClusterOwnerNode.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/set-clusterownernode?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterownernode?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Set-ClusterParameter.md b/docset/winserver2012-ps/failoverclusters/Set-ClusterParameter.md index 029833bc5b..78417af5a2 100644 --- a/docset/winserver2012-ps/failoverclusters/Set-ClusterParameter.md +++ b/docset/winserver2012-ps/failoverclusters/Set-ClusterParameter.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/set-clusterparameter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterparameter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Set-ClusterQuorum.md b/docset/winserver2012-ps/failoverclusters/Set-ClusterQuorum.md index 388513f740..aa66036b79 100644 --- a/docset/winserver2012-ps/failoverclusters/Set-ClusterQuorum.md +++ b/docset/winserver2012-ps/failoverclusters/Set-ClusterQuorum.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/set-clusterquorum?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterquorum?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Set-ClusterResourceDependency.md b/docset/winserver2012-ps/failoverclusters/Set-ClusterResourceDependency.md index 02a36dac58..c22a9dd1d6 100644 --- a/docset/winserver2012-ps/failoverclusters/Set-ClusterResourceDependency.md +++ b/docset/winserver2012-ps/failoverclusters/Set-ClusterResourceDependency.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/set-clusterresourcedependency?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterresourcedependency?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Start-Cluster.md b/docset/winserver2012-ps/failoverclusters/Start-Cluster.md index 1df2f0b358..ae1e1c0fc5 100644 --- a/docset/winserver2012-ps/failoverclusters/Start-Cluster.md +++ b/docset/winserver2012-ps/failoverclusters/Start-Cluster.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/start-cluster?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/start-cluster?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Start-ClusterGroup.md b/docset/winserver2012-ps/failoverclusters/Start-ClusterGroup.md index 665dbc9e20..7a9632c87e 100644 --- a/docset/winserver2012-ps/failoverclusters/Start-ClusterGroup.md +++ b/docset/winserver2012-ps/failoverclusters/Start-ClusterGroup.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/start-clustergroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/start-clustergroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Start-ClusterNode.md b/docset/winserver2012-ps/failoverclusters/Start-ClusterNode.md index af8904ef12..a7d35cbb2b 100644 --- a/docset/winserver2012-ps/failoverclusters/Start-ClusterNode.md +++ b/docset/winserver2012-ps/failoverclusters/Start-ClusterNode.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/start-clusternode?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/start-clusternode?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Start-ClusterResource.md b/docset/winserver2012-ps/failoverclusters/Start-ClusterResource.md index 9c198cbe26..7c0b2a6383 100644 --- a/docset/winserver2012-ps/failoverclusters/Start-ClusterResource.md +++ b/docset/winserver2012-ps/failoverclusters/Start-ClusterResource.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/start-clusterresource?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/start-clusterresource?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Stop-Cluster.md b/docset/winserver2012-ps/failoverclusters/Stop-Cluster.md index 9b189168b9..df0585a5a8 100644 --- a/docset/winserver2012-ps/failoverclusters/Stop-Cluster.md +++ b/docset/winserver2012-ps/failoverclusters/Stop-Cluster.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/stop-cluster?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/stop-cluster?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Stop-ClusterGroup.md b/docset/winserver2012-ps/failoverclusters/Stop-ClusterGroup.md index b28674addf..40e12a5f92 100644 --- a/docset/winserver2012-ps/failoverclusters/Stop-ClusterGroup.md +++ b/docset/winserver2012-ps/failoverclusters/Stop-ClusterGroup.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/stop-clustergroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/stop-clustergroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Stop-ClusterNode.md b/docset/winserver2012-ps/failoverclusters/Stop-ClusterNode.md index 5063759063..fc547421ab 100644 --- a/docset/winserver2012-ps/failoverclusters/Stop-ClusterNode.md +++ b/docset/winserver2012-ps/failoverclusters/Stop-ClusterNode.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/stop-clusternode?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/stop-clusternode?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Stop-ClusterResource.md b/docset/winserver2012-ps/failoverclusters/Stop-ClusterResource.md index 917f0a69ae..00e97d8040 100644 --- a/docset/winserver2012-ps/failoverclusters/Stop-ClusterResource.md +++ b/docset/winserver2012-ps/failoverclusters/Stop-ClusterResource.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/stop-clusterresource?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/stop-clusterresource?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Suspend-ClusterNode.md b/docset/winserver2012-ps/failoverclusters/Suspend-ClusterNode.md index 8d314f5f18..0dc9739e67 100644 --- a/docset/winserver2012-ps/failoverclusters/Suspend-ClusterNode.md +++ b/docset/winserver2012-ps/failoverclusters/Suspend-ClusterNode.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/suspend-clusternode?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/suspend-clusternode?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Suspend-ClusterResource.md b/docset/winserver2012-ps/failoverclusters/Suspend-ClusterResource.md index 720f1d3594..8f5792bc77 100644 --- a/docset/winserver2012-ps/failoverclusters/Suspend-ClusterResource.md +++ b/docset/winserver2012-ps/failoverclusters/Suspend-ClusterResource.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/suspend-clusterresource?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/suspend-clusterresource?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Test-Cluster.md b/docset/winserver2012-ps/failoverclusters/Test-Cluster.md index 5b9fc151ce..65cca69c84 100644 --- a/docset/winserver2012-ps/failoverclusters/Test-Cluster.md +++ b/docset/winserver2012-ps/failoverclusters/Test-Cluster.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/test-cluster?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/test-cluster?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Test-ClusterResourceFailure.md b/docset/winserver2012-ps/failoverclusters/Test-ClusterResourceFailure.md index 8470c67820..d44e4b0b57 100644 --- a/docset/winserver2012-ps/failoverclusters/Test-ClusterResourceFailure.md +++ b/docset/winserver2012-ps/failoverclusters/Test-ClusterResourceFailure.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/test-clusterresourcefailure?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/test-clusterresourcefailure?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Update-ClusterIPResource.md b/docset/winserver2012-ps/failoverclusters/Update-ClusterIPResource.md index 19de9a29a0..2ffdfd6032 100644 --- a/docset/winserver2012-ps/failoverclusters/Update-ClusterIPResource.md +++ b/docset/winserver2012-ps/failoverclusters/Update-ClusterIPResource.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/update-clusteripresource?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/update-clusteripresource?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Update-ClusterNetworkNameResource.md b/docset/winserver2012-ps/failoverclusters/Update-ClusterNetworkNameResource.md index 1f1e70e959..20488df0e9 100644 --- a/docset/winserver2012-ps/failoverclusters/Update-ClusterNetworkNameResource.md +++ b/docset/winserver2012-ps/failoverclusters/Update-ClusterNetworkNameResource.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/update-clusternetworknameresource?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/update-clusternetworknameresource?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/failoverclusters/Update-ClusterVirtualMachineConfiguration.md b/docset/winserver2012-ps/failoverclusters/Update-ClusterVirtualMachineConfiguration.md index 4c3c87e069..95819ef10e 100644 --- a/docset/winserver2012-ps/failoverclusters/Update-ClusterVirtualMachineConfiguration.md +++ b/docset/winserver2012-ps/failoverclusters/Update-ClusterVirtualMachineConfiguration.md @@ -1,7 +1,7 @@ --- external help file: Failoverv2_Cmdlets.xml Module Name: FailoverClusters -online version: https://docs.microsoft.com/powershell/module/failoverclusters/update-clustervirtualmachineconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/update-clustervirtualmachineconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmAdrSetting.md b/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmAdrSetting.md index 3e8f2ac268..1ac305474f 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmAdrSetting.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmAdrSetting.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmadrsetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmadrsetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmAutoQuota.md b/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmAutoQuota.md index e82e5140cb..e187e33953 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmAutoQuota.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmAutoQuota.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmautoquota?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmautoquota?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmClassification.md b/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmClassification.md index 9654263c46..5996abc630 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmClassification.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmClassification.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmclassification?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmclassification?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmClassificationPropertyDefinition.md b/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmClassificationPropertyDefinition.md index 0efa37ebea..ae48c72600 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmClassificationPropertyDefinition.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmClassificationPropertyDefinition.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmclassificationpropertydefinition?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmclassificationpropertydefinition?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmClassificationRule.md b/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmClassificationRule.md index 255037d7f1..6affee42a9 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmClassificationRule.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmClassificationRule.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmclassificationrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmclassificationrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmEffectiveNamespace.md b/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmEffectiveNamespace.md index d95bce9c57..eeccff3e1e 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmEffectiveNamespace.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmEffectiveNamespace.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmeffectivenamespace?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmeffectivenamespace?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmFileGroup.md b/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmFileGroup.md index a366db630d..d75e8cceae 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmFileGroup.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmFileGroup.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmfilegroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmfilegroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmFileManagementJob.md b/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmFileManagementJob.md index db865d5114..972a291ad0 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmFileManagementJob.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmFileManagementJob.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmfilemanagementjob?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmfilemanagementjob?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmFileScreen.md b/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmFileScreen.md index 198821eaba..aaca1de909 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmFileScreen.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmFileScreen.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmfilescreen?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmfilescreen?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmFileScreenException.md b/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmFileScreenException.md index 0f5dca1e3c..700e579d65 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmFileScreenException.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmFileScreenException.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmfilescreenexception?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmfilescreenexception?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmFileScreenTemplate.md b/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmFileScreenTemplate.md index 178d0c7b0d..f388973dc5 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmFileScreenTemplate.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmFileScreenTemplate.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmfilescreentemplate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmfilescreentemplate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmMacro.md b/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmMacro.md index ad6fdde494..6d0eb881e9 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmMacro.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmMacro.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmmacro?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmmacro?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmMgmtProperty.md b/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmMgmtProperty.md index f1c8ec8cbf..9543a0e834 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmMgmtProperty.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmMgmtProperty.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmmgmtproperty?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmmgmtproperty?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmQuota.md b/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmQuota.md index 7cc9933eff..70ec831f39 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmQuota.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmQuota.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmquota?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmquota?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmQuotaTemplate.md b/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmQuotaTemplate.md index ecee13ced9..3213fbab83 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmQuotaTemplate.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmQuotaTemplate.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmquotatemplate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmquotatemplate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmRmsTemplate.md b/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmRmsTemplate.md index d57200156c..d273e04e99 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmRmsTemplate.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmRmsTemplate.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmrmstemplate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmrmstemplate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmSetting.md b/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmSetting.md index ebe58c7598..c7807d075d 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmSetting.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmSetting.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmsetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmsetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmStorageReport.md b/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmStorageReport.md index 8f6a6482f0..59ea671b42 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmStorageReport.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Get-FsrmStorageReport.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmstoragereport?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmstoragereport?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmAction.md b/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmAction.md index 4fe6496eb2..6d3fd657b7 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmAction.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmAction.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmaction?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmaction?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmAutoQuota.md b/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmAutoQuota.md index d417270532..fac0ff84ec 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmAutoQuota.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmAutoQuota.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmautoquota?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmautoquota?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmClassificationPropertyDefinition.md b/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmClassificationPropertyDefinition.md index 71adea5be3..dcf6b76dcf 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmClassificationPropertyDefinition.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmClassificationPropertyDefinition.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmclassificationpropertydefinition?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmclassificationpropertydefinition?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmClassificationPropertyValue.md b/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmClassificationPropertyValue.md index 2d5db2becf..3c5c8c9980 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmClassificationPropertyValue.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmClassificationPropertyValue.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmclassificationpropertyvalue?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmclassificationpropertyvalue?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmClassificationRule.md b/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmClassificationRule.md index a6a5d1e958..3d117f2933 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmClassificationRule.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmClassificationRule.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmclassificationrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmclassificationrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmFMJNotification.md b/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmFMJNotification.md index 9fc8aecd72..7b70fd75d2 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmFMJNotification.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmFMJNotification.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfmjnotification?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfmjnotification?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmFileGroup.md b/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmFileGroup.md index 6fc850d78f..d0ce517052 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmFileGroup.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmFileGroup.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfilegroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfilegroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmFileManagementJob.md b/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmFileManagementJob.md index 77f7e13f2c..764d5569d4 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmFileManagementJob.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmFileManagementJob.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfilemanagementjob?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfilemanagementjob?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmFileScreen.md b/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmFileScreen.md index d822853f96..0f95eeb033 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmFileScreen.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmFileScreen.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfilescreen?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfilescreen?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmFileScreenException.md b/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmFileScreenException.md index a49a807908..a0daa2057e 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmFileScreenException.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmFileScreenException.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfilescreenexception?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfilescreenexception?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmFileScreenTemplate.md b/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmFileScreenTemplate.md index 852c457fad..a190030f1c 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmFileScreenTemplate.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmFileScreenTemplate.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfilescreentemplate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfilescreentemplate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmFmjAction.md b/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmFmjAction.md index d08a6f517c..a4622ec265 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmFmjAction.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmFmjAction.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfmjaction?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfmjaction?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmFmjCondition.md b/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmFmjCondition.md index c6a7aab843..b11ae6a3ca 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmFmjCondition.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmFmjCondition.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfmjcondition?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfmjcondition?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmFmjNotificationAction.md b/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmFmjNotificationAction.md index 4202a48977..1fbb02bbb8 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmFmjNotificationAction.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmFmjNotificationAction.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfmjnotificationaction?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfmjnotificationaction?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmQuota.md b/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmQuota.md index f6dcd458a9..babfa1f93a 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmQuota.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmQuota.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmquota?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmquota?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmQuotaTemplate.md b/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmQuotaTemplate.md index a815ab5d2c..d3ca1a03bf 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmQuotaTemplate.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmQuotaTemplate.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmquotatemplate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmquotatemplate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmQuotaThreshold.md b/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmQuotaThreshold.md index d890a68149..7d6feb775d 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmQuotaThreshold.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmQuotaThreshold.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmquotathreshold?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmquotathreshold?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmScheduledTask.md b/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmScheduledTask.md index c86d0011a8..406341290d 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmScheduledTask.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmScheduledTask.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmscheduledtask?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmscheduledtask?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmStorageReport.md b/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmStorageReport.md index 2202ace6b2..01aa38bff3 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmStorageReport.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/New-FsrmStorageReport.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmstoragereport?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmstoragereport?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Remove-FsrmAutoQuota.md b/docset/winserver2012-ps/fileserverresourcemanager/Remove-FsrmAutoQuota.md index a7601b9e71..c2a817be55 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Remove-FsrmAutoQuota.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Remove-FsrmAutoQuota.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmautoquota?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmautoquota?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Remove-FsrmClassificationPropertyDefinition.md b/docset/winserver2012-ps/fileserverresourcemanager/Remove-FsrmClassificationPropertyDefinition.md index 796b2166bf..d17ebb93d7 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Remove-FsrmClassificationPropertyDefinition.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Remove-FsrmClassificationPropertyDefinition.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmclassificationpropertydefinition?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmclassificationpropertydefinition?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Remove-FsrmClassificationRule.md b/docset/winserver2012-ps/fileserverresourcemanager/Remove-FsrmClassificationRule.md index bdff0df97d..4999b1d7a1 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Remove-FsrmClassificationRule.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Remove-FsrmClassificationRule.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmclassificationrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmclassificationrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Remove-FsrmFileGroup.md b/docset/winserver2012-ps/fileserverresourcemanager/Remove-FsrmFileGroup.md index d15c3bc8fc..9fca211d72 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Remove-FsrmFileGroup.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Remove-FsrmFileGroup.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmfilegroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmfilegroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Remove-FsrmFileManagementJob.md b/docset/winserver2012-ps/fileserverresourcemanager/Remove-FsrmFileManagementJob.md index 2be4303cc9..ee76b350ff 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Remove-FsrmFileManagementJob.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Remove-FsrmFileManagementJob.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmfilemanagementjob?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmfilemanagementjob?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Remove-FsrmFileScreen.md b/docset/winserver2012-ps/fileserverresourcemanager/Remove-FsrmFileScreen.md index a0b8490718..95a577f856 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Remove-FsrmFileScreen.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Remove-FsrmFileScreen.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmfilescreen?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmfilescreen?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Remove-FsrmFileScreenException.md b/docset/winserver2012-ps/fileserverresourcemanager/Remove-FsrmFileScreenException.md index cae6f3ef41..176a5a46d7 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Remove-FsrmFileScreenException.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Remove-FsrmFileScreenException.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmfilescreenexception?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmfilescreenexception?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Remove-FsrmFileScreenTemplate.md b/docset/winserver2012-ps/fileserverresourcemanager/Remove-FsrmFileScreenTemplate.md index f580163894..99e2539ece 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Remove-FsrmFileScreenTemplate.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Remove-FsrmFileScreenTemplate.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmfilescreentemplate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmfilescreentemplate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Remove-FsrmMgmtProperty.md b/docset/winserver2012-ps/fileserverresourcemanager/Remove-FsrmMgmtProperty.md index e4ccb233c8..6ddac3f755 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Remove-FsrmMgmtProperty.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Remove-FsrmMgmtProperty.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmmgmtproperty?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmmgmtproperty?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Remove-FsrmQuota.md b/docset/winserver2012-ps/fileserverresourcemanager/Remove-FsrmQuota.md index 1ce8dd39a8..167e03878d 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Remove-FsrmQuota.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Remove-FsrmQuota.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmquota?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmquota?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Remove-FsrmQuotaTemplate.md b/docset/winserver2012-ps/fileserverresourcemanager/Remove-FsrmQuotaTemplate.md index 8225efc416..2191236e42 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Remove-FsrmQuotaTemplate.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Remove-FsrmQuotaTemplate.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmquotatemplate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmquotatemplate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Remove-FsrmStorageReport.md b/docset/winserver2012-ps/fileserverresourcemanager/Remove-FsrmStorageReport.md index 5ed8a8571a..21a24460c1 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Remove-FsrmStorageReport.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Remove-FsrmStorageReport.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmstoragereport?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmstoragereport?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Reset-FsrmFileScreen.md b/docset/winserver2012-ps/fileserverresourcemanager/Reset-FsrmFileScreen.md index e9868050c1..a748c99a3b 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Reset-FsrmFileScreen.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Reset-FsrmFileScreen.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/reset-fsrmfilescreen?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/reset-fsrmfilescreen?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Reset-FsrmQuota.md b/docset/winserver2012-ps/fileserverresourcemanager/Reset-FsrmQuota.md index fe325bc867..052be1e432 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Reset-FsrmQuota.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Reset-FsrmQuota.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/reset-fsrmquota?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/reset-fsrmquota?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Send-FsrmTestEmail.md b/docset/winserver2012-ps/fileserverresourcemanager/Send-FsrmTestEmail.md index 9b5e2505f9..1ca0e4fb6c 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Send-FsrmTestEmail.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Send-FsrmTestEmail.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/send-fsrmtestemail?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/send-fsrmtestemail?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmAdrSetting.md b/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmAdrSetting.md index 2ff9a2b9ea..804adde14d 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmAdrSetting.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmAdrSetting.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmadrsetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmadrsetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmAutoQuota.md b/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmAutoQuota.md index 2579b095f2..6ec971830a 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmAutoQuota.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmAutoQuota.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmautoquota?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmautoquota?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmClassification.md b/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmClassification.md index c7144d262e..fead106d2d 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmClassification.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmClassification.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmclassification?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmclassification?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmClassificationPropertyDefinition.md b/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmClassificationPropertyDefinition.md index 484c6c95d4..4cce5719dc 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmClassificationPropertyDefinition.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmClassificationPropertyDefinition.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmclassificationpropertydefinition?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmclassificationpropertydefinition?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmClassificationRule.md b/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmClassificationRule.md index d0b52025db..f2e6b05020 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmClassificationRule.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmClassificationRule.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmclassificationrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmclassificationrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmFileGroup.md b/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmFileGroup.md index d90d8bf41a..9bd71bf4ee 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmFileGroup.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmFileGroup.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmfilegroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmfilegroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmFileManagementJob.md b/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmFileManagementJob.md index 08c9640e11..d30caa8ecb 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmFileManagementJob.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmFileManagementJob.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmfilemanagementjob?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmfilemanagementjob?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmFileScreen.md b/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmFileScreen.md index d1c2749ac4..cf0034b520 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmFileScreen.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmFileScreen.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmfilescreen?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmfilescreen?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmFileScreenException.md b/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmFileScreenException.md index 2f5cd06d27..8147351e9b 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmFileScreenException.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmFileScreenException.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmfilescreenexception?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmfilescreenexception?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmFileScreenTemplate.md b/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmFileScreenTemplate.md index c61937d529..7d15b23f71 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmFileScreenTemplate.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmFileScreenTemplate.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmfilescreentemplate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmfilescreentemplate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmMgmtProperty.md b/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmMgmtProperty.md index 62067a1de3..ddf44a6cd4 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmMgmtProperty.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmMgmtProperty.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmmgmtproperty?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmmgmtproperty?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmQuota.md b/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmQuota.md index 5fef38aa29..fdaf52216b 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmQuota.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmQuota.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmquota?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmquota?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmQuotaTemplate.md b/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmQuotaTemplate.md index 44479bf3e4..cedebd813e 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmQuotaTemplate.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmQuotaTemplate.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmquotatemplate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmquotatemplate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmSetting.md b/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmSetting.md index 44bd0664b4..4129a094d2 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmSetting.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmSetting.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmsetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmsetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmStorageReport.md b/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmStorageReport.md index 0f13c01edb..67f5ab00ec 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmStorageReport.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Set-FsrmStorageReport.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmstoragereport?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmstoragereport?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Start-FsrmClassification.md b/docset/winserver2012-ps/fileserverresourcemanager/Start-FsrmClassification.md index 36385a97b3..a08cf04bcf 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Start-FsrmClassification.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Start-FsrmClassification.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/start-fsrmclassification?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/start-fsrmclassification?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Start-FsrmFileManagementJob.md b/docset/winserver2012-ps/fileserverresourcemanager/Start-FsrmFileManagementJob.md index 6c20830bb8..83b5cb0329 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Start-FsrmFileManagementJob.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Start-FsrmFileManagementJob.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/start-fsrmfilemanagementjob?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/start-fsrmfilemanagementjob?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Start-FsrmStorageReport.md b/docset/winserver2012-ps/fileserverresourcemanager/Start-FsrmStorageReport.md index ac593971d4..a23db21d53 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Start-FsrmStorageReport.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Start-FsrmStorageReport.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/start-fsrmstoragereport?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/start-fsrmstoragereport?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Stop-FsrmClassification.md b/docset/winserver2012-ps/fileserverresourcemanager/Stop-FsrmClassification.md index 1e521fe36c..bd018a2033 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Stop-FsrmClassification.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Stop-FsrmClassification.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/stop-fsrmclassification?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/stop-fsrmclassification?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Stop-FsrmFileManagementJob.md b/docset/winserver2012-ps/fileserverresourcemanager/Stop-FsrmFileManagementJob.md index 4e4aeb146a..92b2a3ffdb 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Stop-FsrmFileManagementJob.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Stop-FsrmFileManagementJob.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/stop-fsrmfilemanagementjob?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/stop-fsrmfilemanagementjob?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Stop-FsrmStorageReport.md b/docset/winserver2012-ps/fileserverresourcemanager/Stop-FsrmStorageReport.md index daeb359a85..7fb91847de 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Stop-FsrmStorageReport.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Stop-FsrmStorageReport.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/stop-fsrmstoragereport?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/stop-fsrmstoragereport?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Update-FsrmAutoQuota.md b/docset/winserver2012-ps/fileserverresourcemanager/Update-FsrmAutoQuota.md index 0171fb41ab..ceb9f54111 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Update-FsrmAutoQuota.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Update-FsrmAutoQuota.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/update-fsrmautoquota?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/update-fsrmautoquota?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Update-FsrmClassificationPropertyDefinition.md b/docset/winserver2012-ps/fileserverresourcemanager/Update-FsrmClassificationPropertyDefinition.md index 7ed7b0f20f..14b0e7d483 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Update-FsrmClassificationPropertyDefinition.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Update-FsrmClassificationPropertyDefinition.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/update-fsrmclassificationpropertydefinition?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/update-fsrmclassificationpropertydefinition?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Update-FsrmQuota.md b/docset/winserver2012-ps/fileserverresourcemanager/Update-FsrmQuota.md index ae9e3d09b5..692881d3f1 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Update-FsrmQuota.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Update-FsrmQuota.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/update-fsrmquota?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/update-fsrmquota?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Wait-FsrmClassification.md b/docset/winserver2012-ps/fileserverresourcemanager/Wait-FsrmClassification.md index 76511fcaaa..c0061c45af 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Wait-FsrmClassification.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Wait-FsrmClassification.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/wait-fsrmclassification?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/wait-fsrmclassification?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Wait-FsrmFileManagementJob.md b/docset/winserver2012-ps/fileserverresourcemanager/Wait-FsrmFileManagementJob.md index 154b1d1fe3..4c512eafcf 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Wait-FsrmFileManagementJob.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Wait-FsrmFileManagementJob.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/wait-fsrmfilemanagementjob?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/wait-fsrmfilemanagementjob?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/fileserverresourcemanager/Wait-FsrmStorageReport.md b/docset/winserver2012-ps/fileserverresourcemanager/Wait-FsrmStorageReport.md index f43af71d5b..1cb28f02ee 100644 --- a/docset/winserver2012-ps/fileserverresourcemanager/Wait-FsrmStorageReport.md +++ b/docset/winserver2012-ps/fileserverresourcemanager/Wait-FsrmStorageReport.md @@ -1,7 +1,7 @@ --- external help file: FSRM_Cmdlets.xml Module Name: FileServerResourceManager -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/wait-fsrmstoragereport?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/wait-fsrmstoragereport?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/grouppolicy/Backup-GPO.md b/docset/winserver2012-ps/grouppolicy/Backup-GPO.md index d4b706def1..a8bf3c0180 100644 --- a/docset/winserver2012-ps/grouppolicy/Backup-GPO.md +++ b/docset/winserver2012-ps/grouppolicy/Backup-GPO.md @@ -1,7 +1,7 @@ --- external help file: GPv2_Cmdlets.xml Module Name: GroupPolicy -online version: https://docs.microsoft.com/powershell/module/grouppolicy/backup-gpo?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/backup-gpo?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/grouppolicy/Copy-GPO.md b/docset/winserver2012-ps/grouppolicy/Copy-GPO.md index 09bd57f65d..69dcdb3d71 100644 --- a/docset/winserver2012-ps/grouppolicy/Copy-GPO.md +++ b/docset/winserver2012-ps/grouppolicy/Copy-GPO.md @@ -1,7 +1,7 @@ --- external help file: GPv2_Cmdlets.xml Module Name: GroupPolicy -online version: https://docs.microsoft.com/powershell/module/grouppolicy/copy-gpo?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/copy-gpo?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/grouppolicy/Get-GPInheritance.md b/docset/winserver2012-ps/grouppolicy/Get-GPInheritance.md index c43465e306..4b102d6e34 100644 --- a/docset/winserver2012-ps/grouppolicy/Get-GPInheritance.md +++ b/docset/winserver2012-ps/grouppolicy/Get-GPInheritance.md @@ -1,7 +1,7 @@ --- external help file: GPv2_Cmdlets.xml Module Name: GroupPolicy -online version: https://docs.microsoft.com/powershell/module/grouppolicy/get-gpinheritance?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/get-gpinheritance?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/grouppolicy/Get-GPO.md b/docset/winserver2012-ps/grouppolicy/Get-GPO.md index b6dacdfa7a..40153c420c 100644 --- a/docset/winserver2012-ps/grouppolicy/Get-GPO.md +++ b/docset/winserver2012-ps/grouppolicy/Get-GPO.md @@ -1,7 +1,7 @@ --- external help file: GPv2_Cmdlets.xml Module Name: GroupPolicy -online version: https://docs.microsoft.com/powershell/module/grouppolicy/get-gpo?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/get-gpo?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/grouppolicy/Get-GPOReport.md b/docset/winserver2012-ps/grouppolicy/Get-GPOReport.md index f2a6ad4715..f15ea4bca3 100644 --- a/docset/winserver2012-ps/grouppolicy/Get-GPOReport.md +++ b/docset/winserver2012-ps/grouppolicy/Get-GPOReport.md @@ -1,7 +1,7 @@ --- external help file: GPv2_Cmdlets.xml Module Name: GroupPolicy -online version: https://docs.microsoft.com/powershell/module/grouppolicy/get-gporeport?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/get-gporeport?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/grouppolicy/Get-GPPermission.md b/docset/winserver2012-ps/grouppolicy/Get-GPPermission.md index 24c6c2d768..03f6d77995 100644 --- a/docset/winserver2012-ps/grouppolicy/Get-GPPermission.md +++ b/docset/winserver2012-ps/grouppolicy/Get-GPPermission.md @@ -1,7 +1,7 @@ --- external help file: GPv2_Cmdlets.xml Module Name: GroupPolicy -online version: https://docs.microsoft.com/powershell/module/grouppolicy/get-gppermission?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/get-gppermission?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/grouppolicy/Get-GPPrefRegistryValue.md b/docset/winserver2012-ps/grouppolicy/Get-GPPrefRegistryValue.md index 08d9a352df..584acf497f 100644 --- a/docset/winserver2012-ps/grouppolicy/Get-GPPrefRegistryValue.md +++ b/docset/winserver2012-ps/grouppolicy/Get-GPPrefRegistryValue.md @@ -1,7 +1,7 @@ --- external help file: GPv2_Cmdlets.xml Module Name: GroupPolicy -online version: https://docs.microsoft.com/powershell/module/grouppolicy/get-gpprefregistryvalue?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/get-gpprefregistryvalue?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/grouppolicy/Get-GPRegistryValue.md b/docset/winserver2012-ps/grouppolicy/Get-GPRegistryValue.md index 9296cc19fc..12eaf63919 100644 --- a/docset/winserver2012-ps/grouppolicy/Get-GPRegistryValue.md +++ b/docset/winserver2012-ps/grouppolicy/Get-GPRegistryValue.md @@ -1,7 +1,7 @@ --- external help file: GPv2_Cmdlets.xml Module Name: GroupPolicy -online version: https://docs.microsoft.com/powershell/module/grouppolicy/get-gpregistryvalue?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/get-gpregistryvalue?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/grouppolicy/Get-GPResultantSetOfPolicy.md b/docset/winserver2012-ps/grouppolicy/Get-GPResultantSetOfPolicy.md index 2e9f2701f8..eb2c3362fd 100644 --- a/docset/winserver2012-ps/grouppolicy/Get-GPResultantSetOfPolicy.md +++ b/docset/winserver2012-ps/grouppolicy/Get-GPResultantSetOfPolicy.md @@ -1,7 +1,7 @@ --- external help file: GPv2_Cmdlets.xml Module Name: GroupPolicy -online version: https://docs.microsoft.com/powershell/module/grouppolicy/get-gpresultantsetofpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/get-gpresultantsetofpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/grouppolicy/Get-GPStarterGPO.md b/docset/winserver2012-ps/grouppolicy/Get-GPStarterGPO.md index dcc15361bb..6d774ed9fc 100644 --- a/docset/winserver2012-ps/grouppolicy/Get-GPStarterGPO.md +++ b/docset/winserver2012-ps/grouppolicy/Get-GPStarterGPO.md @@ -1,7 +1,7 @@ --- external help file: GPv2_Cmdlets.xml Module Name: GroupPolicy -online version: https://docs.microsoft.com/powershell/module/grouppolicy/get-gpstartergpo?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/get-gpstartergpo?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/grouppolicy/Import-GPO.md b/docset/winserver2012-ps/grouppolicy/Import-GPO.md index 955d1ee010..07a6f6ad43 100644 --- a/docset/winserver2012-ps/grouppolicy/Import-GPO.md +++ b/docset/winserver2012-ps/grouppolicy/Import-GPO.md @@ -1,7 +1,7 @@ --- external help file: GPv2_Cmdlets.xml Module Name: GroupPolicy -online version: https://docs.microsoft.com/powershell/module/grouppolicy/import-gpo?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/import-gpo?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/grouppolicy/Invoke-GPUpdate.md b/docset/winserver2012-ps/grouppolicy/Invoke-GPUpdate.md index f41f06afb1..09316186f7 100644 --- a/docset/winserver2012-ps/grouppolicy/Invoke-GPUpdate.md +++ b/docset/winserver2012-ps/grouppolicy/Invoke-GPUpdate.md @@ -1,7 +1,7 @@ --- external help file: GPv2_Cmdlets.xml Module Name: GroupPolicy -online version: https://docs.microsoft.com/powershell/module/grouppolicy/invoke-gpupdate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/invoke-gpupdate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/grouppolicy/New-GPLink.md b/docset/winserver2012-ps/grouppolicy/New-GPLink.md index 4c632ac756..a64dfc5daf 100644 --- a/docset/winserver2012-ps/grouppolicy/New-GPLink.md +++ b/docset/winserver2012-ps/grouppolicy/New-GPLink.md @@ -1,7 +1,7 @@ --- external help file: GPv2_Cmdlets.xml Module Name: GroupPolicy -online version: https://docs.microsoft.com/powershell/module/grouppolicy/new-gplink?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/new-gplink?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/grouppolicy/New-GPO.md b/docset/winserver2012-ps/grouppolicy/New-GPO.md index 049a7e90ae..d9af36058c 100644 --- a/docset/winserver2012-ps/grouppolicy/New-GPO.md +++ b/docset/winserver2012-ps/grouppolicy/New-GPO.md @@ -1,7 +1,7 @@ --- external help file: GPv2_Cmdlets.xml Module Name: GroupPolicy -online version: https://docs.microsoft.com/powershell/module/grouppolicy/new-gpo?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/new-gpo?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/grouppolicy/New-GPStarterGPO.md b/docset/winserver2012-ps/grouppolicy/New-GPStarterGPO.md index 9877415e34..c6a11aad29 100644 --- a/docset/winserver2012-ps/grouppolicy/New-GPStarterGPO.md +++ b/docset/winserver2012-ps/grouppolicy/New-GPStarterGPO.md @@ -1,7 +1,7 @@ --- external help file: GPv2_Cmdlets.xml Module Name: GroupPolicy -online version: https://docs.microsoft.com/powershell/module/grouppolicy/new-gpstartergpo?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/new-gpstartergpo?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/grouppolicy/Remove-GPLink.md b/docset/winserver2012-ps/grouppolicy/Remove-GPLink.md index b71f178c16..287a1f6255 100644 --- a/docset/winserver2012-ps/grouppolicy/Remove-GPLink.md +++ b/docset/winserver2012-ps/grouppolicy/Remove-GPLink.md @@ -1,7 +1,7 @@ --- external help file: GPv2_Cmdlets.xml Module Name: GroupPolicy -online version: https://docs.microsoft.com/powershell/module/grouppolicy/remove-gplink?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/remove-gplink?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/grouppolicy/Remove-GPO.md b/docset/winserver2012-ps/grouppolicy/Remove-GPO.md index b2715e91cb..60c71ddf64 100644 --- a/docset/winserver2012-ps/grouppolicy/Remove-GPO.md +++ b/docset/winserver2012-ps/grouppolicy/Remove-GPO.md @@ -1,7 +1,7 @@ --- external help file: GPv2_Cmdlets.xml Module Name: GroupPolicy -online version: https://docs.microsoft.com/powershell/module/grouppolicy/remove-gpo?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/remove-gpo?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/grouppolicy/Remove-GPPrefRegistryValue.md b/docset/winserver2012-ps/grouppolicy/Remove-GPPrefRegistryValue.md index ea0c1a9291..f9dc46b454 100644 --- a/docset/winserver2012-ps/grouppolicy/Remove-GPPrefRegistryValue.md +++ b/docset/winserver2012-ps/grouppolicy/Remove-GPPrefRegistryValue.md @@ -1,7 +1,7 @@ --- external help file: GPv2_Cmdlets.xml Module Name: GroupPolicy -online version: https://docs.microsoft.com/powershell/module/grouppolicy/remove-gpprefregistryvalue?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/remove-gpprefregistryvalue?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/grouppolicy/Remove-GPRegistryValue.md b/docset/winserver2012-ps/grouppolicy/Remove-GPRegistryValue.md index 7bb2e0b6ad..551cc77c8f 100644 --- a/docset/winserver2012-ps/grouppolicy/Remove-GPRegistryValue.md +++ b/docset/winserver2012-ps/grouppolicy/Remove-GPRegistryValue.md @@ -1,7 +1,7 @@ --- external help file: GPv2_Cmdlets.xml Module Name: GroupPolicy -online version: https://docs.microsoft.com/powershell/module/grouppolicy/remove-gpregistryvalue?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/remove-gpregistryvalue?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/grouppolicy/Rename-GPO.md b/docset/winserver2012-ps/grouppolicy/Rename-GPO.md index 82cb16d71d..3a51b94490 100644 --- a/docset/winserver2012-ps/grouppolicy/Rename-GPO.md +++ b/docset/winserver2012-ps/grouppolicy/Rename-GPO.md @@ -1,7 +1,7 @@ --- external help file: GPv2_Cmdlets.xml Module Name: GroupPolicy -online version: https://docs.microsoft.com/powershell/module/grouppolicy/rename-gpo?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/rename-gpo?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/grouppolicy/Restore-GPO.md b/docset/winserver2012-ps/grouppolicy/Restore-GPO.md index eda138fa92..aad7bcf851 100644 --- a/docset/winserver2012-ps/grouppolicy/Restore-GPO.md +++ b/docset/winserver2012-ps/grouppolicy/Restore-GPO.md @@ -1,7 +1,7 @@ --- external help file: GPv2_Cmdlets.xml Module Name: GroupPolicy -online version: https://docs.microsoft.com/powershell/module/grouppolicy/restore-gpo?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/restore-gpo?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/grouppolicy/Set-GPInheritance.md b/docset/winserver2012-ps/grouppolicy/Set-GPInheritance.md index e6512fb143..27cb2f8b3a 100644 --- a/docset/winserver2012-ps/grouppolicy/Set-GPInheritance.md +++ b/docset/winserver2012-ps/grouppolicy/Set-GPInheritance.md @@ -1,7 +1,7 @@ --- external help file: GPv2_Cmdlets.xml Module Name: GroupPolicy -online version: https://docs.microsoft.com/powershell/module/grouppolicy/set-gpinheritance?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/set-gpinheritance?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/grouppolicy/Set-GPLink.md b/docset/winserver2012-ps/grouppolicy/Set-GPLink.md index 3a8f70fe26..c78dcda232 100644 --- a/docset/winserver2012-ps/grouppolicy/Set-GPLink.md +++ b/docset/winserver2012-ps/grouppolicy/Set-GPLink.md @@ -1,7 +1,7 @@ --- external help file: GPv2_Cmdlets.xml Module Name: GroupPolicy -online version: https://docs.microsoft.com/powershell/module/grouppolicy/set-gplink?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/set-gplink?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/grouppolicy/Set-GPPermission.md b/docset/winserver2012-ps/grouppolicy/Set-GPPermission.md index 8ccd6c77cc..e9c9ed80fa 100644 --- a/docset/winserver2012-ps/grouppolicy/Set-GPPermission.md +++ b/docset/winserver2012-ps/grouppolicy/Set-GPPermission.md @@ -1,7 +1,7 @@ --- external help file: GPv2_Cmdlets.xml Module Name: GroupPolicy -online version: https://docs.microsoft.com/powershell/module/grouppolicy/set-gppermission?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/set-gppermission?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/grouppolicy/Set-GPPrefRegistryValue.md b/docset/winserver2012-ps/grouppolicy/Set-GPPrefRegistryValue.md index 5ba500286e..3116717307 100644 --- a/docset/winserver2012-ps/grouppolicy/Set-GPPrefRegistryValue.md +++ b/docset/winserver2012-ps/grouppolicy/Set-GPPrefRegistryValue.md @@ -1,7 +1,7 @@ --- external help file: GPv2_Cmdlets.xml Module Name: GroupPolicy -online version: https://docs.microsoft.com/powershell/module/grouppolicy/set-gpprefregistryvalue?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/set-gpprefregistryvalue?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/grouppolicy/Set-GPRegistryValue.md b/docset/winserver2012-ps/grouppolicy/Set-GPRegistryValue.md index bae53e2048..dedf20fb5a 100644 --- a/docset/winserver2012-ps/grouppolicy/Set-GPRegistryValue.md +++ b/docset/winserver2012-ps/grouppolicy/Set-GPRegistryValue.md @@ -1,7 +1,7 @@ --- external help file: GPv2_Cmdlets.xml Module Name: GroupPolicy -online version: https://docs.microsoft.com/powershell/module/grouppolicy/set-gpregistryvalue?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/set-gpregistryvalue?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Add-VMDvdDrive.md b/docset/winserver2012-ps/hyper-v/Add-VMDvdDrive.md index 834c04ee99..1e324ca3f3 100644 --- a/docset/winserver2012-ps/hyper-v/Add-VMDvdDrive.md +++ b/docset/winserver2012-ps/hyper-v/Add-VMDvdDrive.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmdvddrive?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmdvddrive?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Add-VMFibreChannelHba.md b/docset/winserver2012-ps/hyper-v/Add-VMFibreChannelHba.md index c14435eb33..75372dcba3 100644 --- a/docset/winserver2012-ps/hyper-v/Add-VMFibreChannelHba.md +++ b/docset/winserver2012-ps/hyper-v/Add-VMFibreChannelHba.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmfibrechannelhba?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmfibrechannelhba?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Add-VMHardDiskDrive.md b/docset/winserver2012-ps/hyper-v/Add-VMHardDiskDrive.md index de7102cbb0..4865a0213e 100644 --- a/docset/winserver2012-ps/hyper-v/Add-VMHardDiskDrive.md +++ b/docset/winserver2012-ps/hyper-v/Add-VMHardDiskDrive.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmharddiskdrive?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmharddiskdrive?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Add-VMMigrationNetwork.md b/docset/winserver2012-ps/hyper-v/Add-VMMigrationNetwork.md index 2562c74402..be625cb2b4 100644 --- a/docset/winserver2012-ps/hyper-v/Add-VMMigrationNetwork.md +++ b/docset/winserver2012-ps/hyper-v/Add-VMMigrationNetwork.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmmigrationnetwork?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmmigrationnetwork?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Add-VMNetworkAdapter.md b/docset/winserver2012-ps/hyper-v/Add-VMNetworkAdapter.md index 123afe2241..13d5db71be 100644 --- a/docset/winserver2012-ps/hyper-v/Add-VMNetworkAdapter.md +++ b/docset/winserver2012-ps/hyper-v/Add-VMNetworkAdapter.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmnetworkadapter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmnetworkadapter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Add-VMNetworkAdapterAcl.md b/docset/winserver2012-ps/hyper-v/Add-VMNetworkAdapterAcl.md index cbb23c1952..23bd7ea45e 100644 --- a/docset/winserver2012-ps/hyper-v/Add-VMNetworkAdapterAcl.md +++ b/docset/winserver2012-ps/hyper-v/Add-VMNetworkAdapterAcl.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmnetworkadapteracl?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmnetworkadapteracl?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Add-VMRemoteFx3dVideoAdapter.md b/docset/winserver2012-ps/hyper-v/Add-VMRemoteFx3dVideoAdapter.md index 4a40c23b45..7ad45a2ab7 100644 --- a/docset/winserver2012-ps/hyper-v/Add-VMRemoteFx3dVideoAdapter.md +++ b/docset/winserver2012-ps/hyper-v/Add-VMRemoteFx3dVideoAdapter.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmremotefx3dvideoadapter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmremotefx3dvideoadapter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Add-VMScsiController.md b/docset/winserver2012-ps/hyper-v/Add-VMScsiController.md index 62bf8ad99d..94d4d2ac21 100644 --- a/docset/winserver2012-ps/hyper-v/Add-VMScsiController.md +++ b/docset/winserver2012-ps/hyper-v/Add-VMScsiController.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmscsicontroller?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmscsicontroller?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Add-VMStoragePath.md b/docset/winserver2012-ps/hyper-v/Add-VMStoragePath.md index 0d3876245e..eb33bf7db5 100644 --- a/docset/winserver2012-ps/hyper-v/Add-VMStoragePath.md +++ b/docset/winserver2012-ps/hyper-v/Add-VMStoragePath.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmstoragepath?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmstoragepath?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Add-VMSwitch.md b/docset/winserver2012-ps/hyper-v/Add-VMSwitch.md index 1bf5e56129..cf0e450c3c 100644 --- a/docset/winserver2012-ps/hyper-v/Add-VMSwitch.md +++ b/docset/winserver2012-ps/hyper-v/Add-VMSwitch.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmswitch?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmswitch?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Add-VMSwitchExtensionPortFeature.md b/docset/winserver2012-ps/hyper-v/Add-VMSwitchExtensionPortFeature.md index 9e47e53591..c993157eb5 100644 --- a/docset/winserver2012-ps/hyper-v/Add-VMSwitchExtensionPortFeature.md +++ b/docset/winserver2012-ps/hyper-v/Add-VMSwitchExtensionPortFeature.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmswitchextensionportfeature?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmswitchextensionportfeature?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Add-VMSwitchExtensionSwitchFeature.md b/docset/winserver2012-ps/hyper-v/Add-VMSwitchExtensionSwitchFeature.md index 43b8e062fc..9e7d83ecd8 100644 --- a/docset/winserver2012-ps/hyper-v/Add-VMSwitchExtensionSwitchFeature.md +++ b/docset/winserver2012-ps/hyper-v/Add-VMSwitchExtensionSwitchFeature.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmswitchextensionswitchfeature?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmswitchextensionswitchfeature?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Checkpoint-VM.md b/docset/winserver2012-ps/hyper-v/Checkpoint-VM.md index 1187884702..e517cc22d7 100644 --- a/docset/winserver2012-ps/hyper-v/Checkpoint-VM.md +++ b/docset/winserver2012-ps/hyper-v/Checkpoint-VM.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/checkpoint-vm?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/checkpoint-vm?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Compare-VM.md b/docset/winserver2012-ps/hyper-v/Compare-VM.md index 8143a0be26..4c633485fe 100644 --- a/docset/winserver2012-ps/hyper-v/Compare-VM.md +++ b/docset/winserver2012-ps/hyper-v/Compare-VM.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/compare-vm?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/compare-vm?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Complete-VMFailover.md b/docset/winserver2012-ps/hyper-v/Complete-VMFailover.md index 22660cd366..f516a77dd5 100644 --- a/docset/winserver2012-ps/hyper-v/Complete-VMFailover.md +++ b/docset/winserver2012-ps/hyper-v/Complete-VMFailover.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/complete-vmfailover?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/complete-vmfailover?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Connect-VMNetworkAdapter.md b/docset/winserver2012-ps/hyper-v/Connect-VMNetworkAdapter.md index 62bd926bd8..951c9e3fee 100644 --- a/docset/winserver2012-ps/hyper-v/Connect-VMNetworkAdapter.md +++ b/docset/winserver2012-ps/hyper-v/Connect-VMNetworkAdapter.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/connect-vmnetworkadapter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/connect-vmnetworkadapter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Connect-VMSan.md b/docset/winserver2012-ps/hyper-v/Connect-VMSan.md index 662eb3dbe3..db6bbd7ddc 100644 --- a/docset/winserver2012-ps/hyper-v/Connect-VMSan.md +++ b/docset/winserver2012-ps/hyper-v/Connect-VMSan.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/connect-vmsan?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/connect-vmsan?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Convert-VHD.md b/docset/winserver2012-ps/hyper-v/Convert-VHD.md index c1931100d3..a7bef0791a 100644 --- a/docset/winserver2012-ps/hyper-v/Convert-VHD.md +++ b/docset/winserver2012-ps/hyper-v/Convert-VHD.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/convert-vhd?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/convert-vhd?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Disable-VMEventing.md b/docset/winserver2012-ps/hyper-v/Disable-VMEventing.md index bb1e904a4e..084c546137 100644 --- a/docset/winserver2012-ps/hyper-v/Disable-VMEventing.md +++ b/docset/winserver2012-ps/hyper-v/Disable-VMEventing.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/disable-vmeventing?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/disable-vmeventing?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Disable-VMIntegrationService.md b/docset/winserver2012-ps/hyper-v/Disable-VMIntegrationService.md index 4f82d317c0..eecf50daeb 100644 --- a/docset/winserver2012-ps/hyper-v/Disable-VMIntegrationService.md +++ b/docset/winserver2012-ps/hyper-v/Disable-VMIntegrationService.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/disable-vmintegrationservice?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/disable-vmintegrationservice?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Disable-VMMigration.md b/docset/winserver2012-ps/hyper-v/Disable-VMMigration.md index 1c266ce6fd..3e58e27f56 100644 --- a/docset/winserver2012-ps/hyper-v/Disable-VMMigration.md +++ b/docset/winserver2012-ps/hyper-v/Disable-VMMigration.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/disable-vmmigration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/disable-vmmigration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Disable-VMRemoteFXPhysicalVideoAdapter.md b/docset/winserver2012-ps/hyper-v/Disable-VMRemoteFXPhysicalVideoAdapter.md index 1b6b3f8322..ce6d60ef4a 100644 --- a/docset/winserver2012-ps/hyper-v/Disable-VMRemoteFXPhysicalVideoAdapter.md +++ b/docset/winserver2012-ps/hyper-v/Disable-VMRemoteFXPhysicalVideoAdapter.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/disable-vmremotefxphysicalvideoadapter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/disable-vmremotefxphysicalvideoadapter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Disable-VMResourceMetering.md b/docset/winserver2012-ps/hyper-v/Disable-VMResourceMetering.md index bdc1c4ef43..50130096af 100644 --- a/docset/winserver2012-ps/hyper-v/Disable-VMResourceMetering.md +++ b/docset/winserver2012-ps/hyper-v/Disable-VMResourceMetering.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/disable-vmresourcemetering?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/disable-vmresourcemetering?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Disable-VMSwitchExtension.md b/docset/winserver2012-ps/hyper-v/Disable-VMSwitchExtension.md index d30e053a67..5192fe24bb 100644 --- a/docset/winserver2012-ps/hyper-v/Disable-VMSwitchExtension.md +++ b/docset/winserver2012-ps/hyper-v/Disable-VMSwitchExtension.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/disable-vmswitchextension?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/disable-vmswitchextension?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Disconnect-VMNetworkAdapter.md b/docset/winserver2012-ps/hyper-v/Disconnect-VMNetworkAdapter.md index a04817afc8..b2d75d3f6c 100644 --- a/docset/winserver2012-ps/hyper-v/Disconnect-VMNetworkAdapter.md +++ b/docset/winserver2012-ps/hyper-v/Disconnect-VMNetworkAdapter.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/disconnect-vmnetworkadapter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/disconnect-vmnetworkadapter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Disconnect-VMSan.md b/docset/winserver2012-ps/hyper-v/Disconnect-VMSan.md index 39e7485934..1a7d190c6d 100644 --- a/docset/winserver2012-ps/hyper-v/Disconnect-VMSan.md +++ b/docset/winserver2012-ps/hyper-v/Disconnect-VMSan.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/disconnect-vmsan?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/disconnect-vmsan?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Dismount-VHD.md b/docset/winserver2012-ps/hyper-v/Dismount-VHD.md index da8d39ce21..6b4917c238 100644 --- a/docset/winserver2012-ps/hyper-v/Dismount-VHD.md +++ b/docset/winserver2012-ps/hyper-v/Dismount-VHD.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/dismount-vhd?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/dismount-vhd?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Enable-VMEventing.md b/docset/winserver2012-ps/hyper-v/Enable-VMEventing.md index 34b7b5756e..8c991fab49 100644 --- a/docset/winserver2012-ps/hyper-v/Enable-VMEventing.md +++ b/docset/winserver2012-ps/hyper-v/Enable-VMEventing.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/enable-vmeventing?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/enable-vmeventing?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Enable-VMIntegrationService.md b/docset/winserver2012-ps/hyper-v/Enable-VMIntegrationService.md index 1260c91265..b167f29614 100644 --- a/docset/winserver2012-ps/hyper-v/Enable-VMIntegrationService.md +++ b/docset/winserver2012-ps/hyper-v/Enable-VMIntegrationService.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/enable-vmintegrationservice?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/enable-vmintegrationservice?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Enable-VMMigration.md b/docset/winserver2012-ps/hyper-v/Enable-VMMigration.md index d73049a831..6626a3ec94 100644 --- a/docset/winserver2012-ps/hyper-v/Enable-VMMigration.md +++ b/docset/winserver2012-ps/hyper-v/Enable-VMMigration.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/enable-vmmigration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/enable-vmmigration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Enable-VMRemoteFXPhysicalVideoAdapter.md b/docset/winserver2012-ps/hyper-v/Enable-VMRemoteFXPhysicalVideoAdapter.md index e2c2cb67f6..2ddd2b9a2b 100644 --- a/docset/winserver2012-ps/hyper-v/Enable-VMRemoteFXPhysicalVideoAdapter.md +++ b/docset/winserver2012-ps/hyper-v/Enable-VMRemoteFXPhysicalVideoAdapter.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/enable-vmremotefxphysicalvideoadapter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/enable-vmremotefxphysicalvideoadapter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Enable-VMReplication.md b/docset/winserver2012-ps/hyper-v/Enable-VMReplication.md index f1398a665e..bd9165bd3b 100644 --- a/docset/winserver2012-ps/hyper-v/Enable-VMReplication.md +++ b/docset/winserver2012-ps/hyper-v/Enable-VMReplication.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/enable-vmreplication?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/enable-vmreplication?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Enable-VMResourceMetering.md b/docset/winserver2012-ps/hyper-v/Enable-VMResourceMetering.md index ae79eaf822..0d14e24d4a 100644 --- a/docset/winserver2012-ps/hyper-v/Enable-VMResourceMetering.md +++ b/docset/winserver2012-ps/hyper-v/Enable-VMResourceMetering.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/enable-vmresourcemetering?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/enable-vmresourcemetering?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Enable-VMSwitchExtension.md b/docset/winserver2012-ps/hyper-v/Enable-VMSwitchExtension.md index 67ab3a319b..95a68ab9c0 100644 --- a/docset/winserver2012-ps/hyper-v/Enable-VMSwitchExtension.md +++ b/docset/winserver2012-ps/hyper-v/Enable-VMSwitchExtension.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/enable-vmswitchextension?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/enable-vmswitchextension?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Export-VM.md b/docset/winserver2012-ps/hyper-v/Export-VM.md index c70e37ef47..10f9d2c703 100644 --- a/docset/winserver2012-ps/hyper-v/Export-VM.md +++ b/docset/winserver2012-ps/hyper-v/Export-VM.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/export-vm?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/export-vm?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Export-VMSnapshot.md b/docset/winserver2012-ps/hyper-v/Export-VMSnapshot.md index f03910b04a..2643e9241f 100644 --- a/docset/winserver2012-ps/hyper-v/Export-VMSnapshot.md +++ b/docset/winserver2012-ps/hyper-v/Export-VMSnapshot.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/export-vmsnapshot?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/export-vmsnapshot?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Get-VHD.md b/docset/winserver2012-ps/hyper-v/Get-VHD.md index 577fdcb4a8..29fa31648e 100644 --- a/docset/winserver2012-ps/hyper-v/Get-VHD.md +++ b/docset/winserver2012-ps/hyper-v/Get-VHD.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vhd?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vhd?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Get-VM.md b/docset/winserver2012-ps/hyper-v/Get-VM.md index e9991c551c..ca64724f73 100644 --- a/docset/winserver2012-ps/hyper-v/Get-VM.md +++ b/docset/winserver2012-ps/hyper-v/Get-VM.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vm?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vm?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Get-VMBios.md b/docset/winserver2012-ps/hyper-v/Get-VMBios.md index c1cfa39ece..4a9b71c56e 100644 --- a/docset/winserver2012-ps/hyper-v/Get-VMBios.md +++ b/docset/winserver2012-ps/hyper-v/Get-VMBios.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmbios?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmbios?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Get-VMComPort.md b/docset/winserver2012-ps/hyper-v/Get-VMComPort.md index e04fe26d11..93e114e881 100644 --- a/docset/winserver2012-ps/hyper-v/Get-VMComPort.md +++ b/docset/winserver2012-ps/hyper-v/Get-VMComPort.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmcomport?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmcomport?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Get-VMConnectAccess.md b/docset/winserver2012-ps/hyper-v/Get-VMConnectAccess.md index 8010082558..6ad7343deb 100644 --- a/docset/winserver2012-ps/hyper-v/Get-VMConnectAccess.md +++ b/docset/winserver2012-ps/hyper-v/Get-VMConnectAccess.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmconnectaccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmconnectaccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Get-VMDvdDrive.md b/docset/winserver2012-ps/hyper-v/Get-VMDvdDrive.md index 3b7f8b0f06..a1393ef758 100644 --- a/docset/winserver2012-ps/hyper-v/Get-VMDvdDrive.md +++ b/docset/winserver2012-ps/hyper-v/Get-VMDvdDrive.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmdvddrive?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmdvddrive?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Get-VMFibreChannelHba.md b/docset/winserver2012-ps/hyper-v/Get-VMFibreChannelHba.md index 753d2f2d28..9a91b31088 100644 --- a/docset/winserver2012-ps/hyper-v/Get-VMFibreChannelHba.md +++ b/docset/winserver2012-ps/hyper-v/Get-VMFibreChannelHba.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmfibrechannelhba?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmfibrechannelhba?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Get-VMFloppyDiskDrive.md b/docset/winserver2012-ps/hyper-v/Get-VMFloppyDiskDrive.md index 2bc5e9c8c5..8d6cf91146 100644 --- a/docset/winserver2012-ps/hyper-v/Get-VMFloppyDiskDrive.md +++ b/docset/winserver2012-ps/hyper-v/Get-VMFloppyDiskDrive.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmfloppydiskdrive?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmfloppydiskdrive?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Get-VMHardDiskDrive.md b/docset/winserver2012-ps/hyper-v/Get-VMHardDiskDrive.md index e9485147ec..bbc42ddda1 100644 --- a/docset/winserver2012-ps/hyper-v/Get-VMHardDiskDrive.md +++ b/docset/winserver2012-ps/hyper-v/Get-VMHardDiskDrive.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmharddiskdrive?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmharddiskdrive?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Get-VMHost.md b/docset/winserver2012-ps/hyper-v/Get-VMHost.md index 60a0793e0b..56e2099745 100644 --- a/docset/winserver2012-ps/hyper-v/Get-VMHost.md +++ b/docset/winserver2012-ps/hyper-v/Get-VMHost.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmhost?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmhost?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Get-VMHostNumaNode.md b/docset/winserver2012-ps/hyper-v/Get-VMHostNumaNode.md index 7bd2c2c8dc..d637fa7143 100644 --- a/docset/winserver2012-ps/hyper-v/Get-VMHostNumaNode.md +++ b/docset/winserver2012-ps/hyper-v/Get-VMHostNumaNode.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmhostnumanode?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmhostnumanode?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Get-VMHostNumaNodeStatus.md b/docset/winserver2012-ps/hyper-v/Get-VMHostNumaNodeStatus.md index ba970bf48e..eb7d86cbd6 100644 --- a/docset/winserver2012-ps/hyper-v/Get-VMHostNumaNodeStatus.md +++ b/docset/winserver2012-ps/hyper-v/Get-VMHostNumaNodeStatus.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmhostnumanodestatus?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmhostnumanodestatus?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Get-VMIdeController.md b/docset/winserver2012-ps/hyper-v/Get-VMIdeController.md index c2235a0904..5a9363b75f 100644 --- a/docset/winserver2012-ps/hyper-v/Get-VMIdeController.md +++ b/docset/winserver2012-ps/hyper-v/Get-VMIdeController.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmidecontroller?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmidecontroller?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Get-VMIntegrationService.md b/docset/winserver2012-ps/hyper-v/Get-VMIntegrationService.md index 0989849585..2ccb5267a7 100644 --- a/docset/winserver2012-ps/hyper-v/Get-VMIntegrationService.md +++ b/docset/winserver2012-ps/hyper-v/Get-VMIntegrationService.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmintegrationservice?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmintegrationservice?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Get-VMMemory.md b/docset/winserver2012-ps/hyper-v/Get-VMMemory.md index 89d55a1532..3c371227ed 100644 --- a/docset/winserver2012-ps/hyper-v/Get-VMMemory.md +++ b/docset/winserver2012-ps/hyper-v/Get-VMMemory.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmmemory?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmmemory?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Get-VMMigrationNetwork.md b/docset/winserver2012-ps/hyper-v/Get-VMMigrationNetwork.md index 47368543dd..28aaa58635 100644 --- a/docset/winserver2012-ps/hyper-v/Get-VMMigrationNetwork.md +++ b/docset/winserver2012-ps/hyper-v/Get-VMMigrationNetwork.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmmigrationnetwork?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmmigrationnetwork?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Get-VMNetworkAdapter.md b/docset/winserver2012-ps/hyper-v/Get-VMNetworkAdapter.md index b6433b6ebb..60498ae978 100644 --- a/docset/winserver2012-ps/hyper-v/Get-VMNetworkAdapter.md +++ b/docset/winserver2012-ps/hyper-v/Get-VMNetworkAdapter.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Get-VMNetworkAdapterAcl.md b/docset/winserver2012-ps/hyper-v/Get-VMNetworkAdapterAcl.md index 95f8c5cb7b..a7f6b563f3 100644 --- a/docset/winserver2012-ps/hyper-v/Get-VMNetworkAdapterAcl.md +++ b/docset/winserver2012-ps/hyper-v/Get-VMNetworkAdapterAcl.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapteracl?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapteracl?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Get-VMNetworkAdapterFailoverConfiguration.md b/docset/winserver2012-ps/hyper-v/Get-VMNetworkAdapterFailoverConfiguration.md index f669f422e9..f9417ecb21 100644 --- a/docset/winserver2012-ps/hyper-v/Get-VMNetworkAdapterFailoverConfiguration.md +++ b/docset/winserver2012-ps/hyper-v/Get-VMNetworkAdapterFailoverConfiguration.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapterfailoverconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapterfailoverconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Get-VMNetworkAdapterVlan.md b/docset/winserver2012-ps/hyper-v/Get-VMNetworkAdapterVlan.md index 6d0b39cfad..475c94611b 100644 --- a/docset/winserver2012-ps/hyper-v/Get-VMNetworkAdapterVlan.md +++ b/docset/winserver2012-ps/hyper-v/Get-VMNetworkAdapterVlan.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmnetworkadaptervlan?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmnetworkadaptervlan?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Get-VMProcessor.md b/docset/winserver2012-ps/hyper-v/Get-VMProcessor.md index b132ae5205..1a34b78d94 100644 --- a/docset/winserver2012-ps/hyper-v/Get-VMProcessor.md +++ b/docset/winserver2012-ps/hyper-v/Get-VMProcessor.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmprocessor?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmprocessor?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Get-VMRemoteFXPhysicalVideoAdapter.md b/docset/winserver2012-ps/hyper-v/Get-VMRemoteFXPhysicalVideoAdapter.md index d47ce90226..7cc230174c 100644 --- a/docset/winserver2012-ps/hyper-v/Get-VMRemoteFXPhysicalVideoAdapter.md +++ b/docset/winserver2012-ps/hyper-v/Get-VMRemoteFXPhysicalVideoAdapter.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmremotefxphysicalvideoadapter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmremotefxphysicalvideoadapter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Get-VMRemoteFx3dVideoAdapter.md b/docset/winserver2012-ps/hyper-v/Get-VMRemoteFx3dVideoAdapter.md index b6d8ed427d..f3a35b466b 100644 --- a/docset/winserver2012-ps/hyper-v/Get-VMRemoteFx3dVideoAdapter.md +++ b/docset/winserver2012-ps/hyper-v/Get-VMRemoteFx3dVideoAdapter.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmremotefx3dvideoadapter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmremotefx3dvideoadapter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Get-VMReplication.md b/docset/winserver2012-ps/hyper-v/Get-VMReplication.md index bf96b8f85d..a6ebf813ef 100644 --- a/docset/winserver2012-ps/hyper-v/Get-VMReplication.md +++ b/docset/winserver2012-ps/hyper-v/Get-VMReplication.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmreplication?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmreplication?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Get-VMReplicationAuthorizationEntry.md b/docset/winserver2012-ps/hyper-v/Get-VMReplicationAuthorizationEntry.md index 56d3b1258c..d42bda8284 100644 --- a/docset/winserver2012-ps/hyper-v/Get-VMReplicationAuthorizationEntry.md +++ b/docset/winserver2012-ps/hyper-v/Get-VMReplicationAuthorizationEntry.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmreplicationauthorizationentry?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmreplicationauthorizationentry?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Get-VMReplicationServer.md b/docset/winserver2012-ps/hyper-v/Get-VMReplicationServer.md index e71a8cd9e9..7bb9877603 100644 --- a/docset/winserver2012-ps/hyper-v/Get-VMReplicationServer.md +++ b/docset/winserver2012-ps/hyper-v/Get-VMReplicationServer.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmreplicationserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmreplicationserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Get-VMResourcePool.md b/docset/winserver2012-ps/hyper-v/Get-VMResourcePool.md index 1cade1ad81..0786b85ec1 100644 --- a/docset/winserver2012-ps/hyper-v/Get-VMResourcePool.md +++ b/docset/winserver2012-ps/hyper-v/Get-VMResourcePool.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmresourcepool?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmresourcepool?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Get-VMSan.md b/docset/winserver2012-ps/hyper-v/Get-VMSan.md index cdf27ee47f..d111178ffc 100644 --- a/docset/winserver2012-ps/hyper-v/Get-VMSan.md +++ b/docset/winserver2012-ps/hyper-v/Get-VMSan.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmsan?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmsan?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Get-VMScsiController.md b/docset/winserver2012-ps/hyper-v/Get-VMScsiController.md index 2e35b0361b..f989178a2d 100644 --- a/docset/winserver2012-ps/hyper-v/Get-VMScsiController.md +++ b/docset/winserver2012-ps/hyper-v/Get-VMScsiController.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmscsicontroller?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmscsicontroller?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Get-VMSnapshot.md b/docset/winserver2012-ps/hyper-v/Get-VMSnapshot.md index 3136eae9d7..aa181b53fc 100644 --- a/docset/winserver2012-ps/hyper-v/Get-VMSnapshot.md +++ b/docset/winserver2012-ps/hyper-v/Get-VMSnapshot.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmsnapshot?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmsnapshot?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Get-VMStoragePath.md b/docset/winserver2012-ps/hyper-v/Get-VMStoragePath.md index 000277e795..39dbe93ca7 100644 --- a/docset/winserver2012-ps/hyper-v/Get-VMStoragePath.md +++ b/docset/winserver2012-ps/hyper-v/Get-VMStoragePath.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmstoragepath?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmstoragepath?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Get-VMSwitch.md b/docset/winserver2012-ps/hyper-v/Get-VMSwitch.md index 9f475e7cb2..b15be79ca8 100644 --- a/docset/winserver2012-ps/hyper-v/Get-VMSwitch.md +++ b/docset/winserver2012-ps/hyper-v/Get-VMSwitch.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmswitch?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmswitch?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Get-VMSwitchExtension.md b/docset/winserver2012-ps/hyper-v/Get-VMSwitchExtension.md index 17a3d50dc9..1a4053c231 100644 --- a/docset/winserver2012-ps/hyper-v/Get-VMSwitchExtension.md +++ b/docset/winserver2012-ps/hyper-v/Get-VMSwitchExtension.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmswitchextension?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmswitchextension?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Get-VMSwitchExtensionPortData.md b/docset/winserver2012-ps/hyper-v/Get-VMSwitchExtensionPortData.md index 51b997bcda..c64383240a 100644 --- a/docset/winserver2012-ps/hyper-v/Get-VMSwitchExtensionPortData.md +++ b/docset/winserver2012-ps/hyper-v/Get-VMSwitchExtensionPortData.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmswitchextensionportdata?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmswitchextensionportdata?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Get-VMSwitchExtensionPortFeature.md b/docset/winserver2012-ps/hyper-v/Get-VMSwitchExtensionPortFeature.md index 8debb51f46..72ab98219f 100644 --- a/docset/winserver2012-ps/hyper-v/Get-VMSwitchExtensionPortFeature.md +++ b/docset/winserver2012-ps/hyper-v/Get-VMSwitchExtensionPortFeature.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmswitchextensionportfeature?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmswitchextensionportfeature?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Get-VMSwitchExtensionSwitchData.md b/docset/winserver2012-ps/hyper-v/Get-VMSwitchExtensionSwitchData.md index cd42a005bf..9933ae598a 100644 --- a/docset/winserver2012-ps/hyper-v/Get-VMSwitchExtensionSwitchData.md +++ b/docset/winserver2012-ps/hyper-v/Get-VMSwitchExtensionSwitchData.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmswitchextensionswitchdata?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmswitchextensionswitchdata?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Get-VMSwitchExtensionSwitchFeature.md b/docset/winserver2012-ps/hyper-v/Get-VMSwitchExtensionSwitchFeature.md index 097ce3757f..249ed81a75 100644 --- a/docset/winserver2012-ps/hyper-v/Get-VMSwitchExtensionSwitchFeature.md +++ b/docset/winserver2012-ps/hyper-v/Get-VMSwitchExtensionSwitchFeature.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmswitchextensionswitchfeature?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmswitchextensionswitchfeature?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Get-VMSystemSwitchExtension.md b/docset/winserver2012-ps/hyper-v/Get-VMSystemSwitchExtension.md index 838b03a365..5a7d09d622 100644 --- a/docset/winserver2012-ps/hyper-v/Get-VMSystemSwitchExtension.md +++ b/docset/winserver2012-ps/hyper-v/Get-VMSystemSwitchExtension.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmsystemswitchextension?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmsystemswitchextension?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Get-VMSystemSwitchExtensionPortFeature.md b/docset/winserver2012-ps/hyper-v/Get-VMSystemSwitchExtensionPortFeature.md index 8e96896035..d178c3a501 100644 --- a/docset/winserver2012-ps/hyper-v/Get-VMSystemSwitchExtensionPortFeature.md +++ b/docset/winserver2012-ps/hyper-v/Get-VMSystemSwitchExtensionPortFeature.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmsystemswitchextensionportfeature?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmsystemswitchextensionportfeature?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Get-VMSystemSwitchExtensionSwitchFeature.md b/docset/winserver2012-ps/hyper-v/Get-VMSystemSwitchExtensionSwitchFeature.md index d52cf71ef8..729e583f6a 100644 --- a/docset/winserver2012-ps/hyper-v/Get-VMSystemSwitchExtensionSwitchFeature.md +++ b/docset/winserver2012-ps/hyper-v/Get-VMSystemSwitchExtensionSwitchFeature.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmsystemswitchextensionswitchfeature?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmsystemswitchextensionswitchfeature?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Grant-VMConnectAccess.md b/docset/winserver2012-ps/hyper-v/Grant-VMConnectAccess.md index 7eddc52750..b00cfdd7b3 100644 --- a/docset/winserver2012-ps/hyper-v/Grant-VMConnectAccess.md +++ b/docset/winserver2012-ps/hyper-v/Grant-VMConnectAccess.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/grant-vmconnectaccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/grant-vmconnectaccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Import-VM.md b/docset/winserver2012-ps/hyper-v/Import-VM.md index 96667016f8..acea1bc6c2 100644 --- a/docset/winserver2012-ps/hyper-v/Import-VM.md +++ b/docset/winserver2012-ps/hyper-v/Import-VM.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/import-vm?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/import-vm?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Import-VMInitialReplication.md b/docset/winserver2012-ps/hyper-v/Import-VMInitialReplication.md index 250c315eb8..b524c667c4 100644 --- a/docset/winserver2012-ps/hyper-v/Import-VMInitialReplication.md +++ b/docset/winserver2012-ps/hyper-v/Import-VMInitialReplication.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/import-vminitialreplication?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/import-vminitialreplication?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Measure-VM.md b/docset/winserver2012-ps/hyper-v/Measure-VM.md index db24054d5f..48336e292a 100644 --- a/docset/winserver2012-ps/hyper-v/Measure-VM.md +++ b/docset/winserver2012-ps/hyper-v/Measure-VM.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/measure-vm?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/measure-vm?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Measure-VMReplication.md b/docset/winserver2012-ps/hyper-v/Measure-VMReplication.md index 1e75a44707..25e2edbbfc 100644 --- a/docset/winserver2012-ps/hyper-v/Measure-VMReplication.md +++ b/docset/winserver2012-ps/hyper-v/Measure-VMReplication.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/measure-vmreplication?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/measure-vmreplication?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Measure-VMResourcePool.md b/docset/winserver2012-ps/hyper-v/Measure-VMResourcePool.md index 9cba03bf10..e1e237a814 100644 --- a/docset/winserver2012-ps/hyper-v/Measure-VMResourcePool.md +++ b/docset/winserver2012-ps/hyper-v/Measure-VMResourcePool.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/measure-vmresourcepool?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/measure-vmresourcepool?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Merge-VHD.md b/docset/winserver2012-ps/hyper-v/Merge-VHD.md index 220511610c..82a89451cf 100644 --- a/docset/winserver2012-ps/hyper-v/Merge-VHD.md +++ b/docset/winserver2012-ps/hyper-v/Merge-VHD.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/merge-vhd?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/merge-vhd?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Mount-VHD.md b/docset/winserver2012-ps/hyper-v/Mount-VHD.md index 538539277f..18710f04d1 100644 --- a/docset/winserver2012-ps/hyper-v/Mount-VHD.md +++ b/docset/winserver2012-ps/hyper-v/Mount-VHD.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/mount-vhd?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/mount-vhd?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Move-VM.md b/docset/winserver2012-ps/hyper-v/Move-VM.md index 2a655be020..b11cc22c71 100644 --- a/docset/winserver2012-ps/hyper-v/Move-VM.md +++ b/docset/winserver2012-ps/hyper-v/Move-VM.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/move-vm?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/move-vm?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Move-VMStorage.md b/docset/winserver2012-ps/hyper-v/Move-VMStorage.md index 23ef23e205..36d40d2e56 100644 --- a/docset/winserver2012-ps/hyper-v/Move-VMStorage.md +++ b/docset/winserver2012-ps/hyper-v/Move-VMStorage.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/move-vmstorage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/move-vmstorage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/New-VFD.md b/docset/winserver2012-ps/hyper-v/New-VFD.md index d9f2240955..209a74cab6 100644 --- a/docset/winserver2012-ps/hyper-v/New-VFD.md +++ b/docset/winserver2012-ps/hyper-v/New-VFD.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/new-vfd?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/new-vfd?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/New-VHD.md b/docset/winserver2012-ps/hyper-v/New-VHD.md index e912ee93d9..7f00bddf46 100644 --- a/docset/winserver2012-ps/hyper-v/New-VHD.md +++ b/docset/winserver2012-ps/hyper-v/New-VHD.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/new-vhd?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/new-vhd?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/New-VM.md b/docset/winserver2012-ps/hyper-v/New-VM.md index 083b7e4941..376b643621 100644 --- a/docset/winserver2012-ps/hyper-v/New-VM.md +++ b/docset/winserver2012-ps/hyper-v/New-VM.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/new-vm?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/new-vm?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/New-VMReplicationAuthorizationEntry.md b/docset/winserver2012-ps/hyper-v/New-VMReplicationAuthorizationEntry.md index 0f2f51250f..bff02442d0 100644 --- a/docset/winserver2012-ps/hyper-v/New-VMReplicationAuthorizationEntry.md +++ b/docset/winserver2012-ps/hyper-v/New-VMReplicationAuthorizationEntry.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/new-vmreplicationauthorizationentry?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/new-vmreplicationauthorizationentry?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/New-VMResourcePool.md b/docset/winserver2012-ps/hyper-v/New-VMResourcePool.md index b29e6d7544..8ccae2363c 100644 --- a/docset/winserver2012-ps/hyper-v/New-VMResourcePool.md +++ b/docset/winserver2012-ps/hyper-v/New-VMResourcePool.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/new-vmresourcepool?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/new-vmresourcepool?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/New-VMSan.md b/docset/winserver2012-ps/hyper-v/New-VMSan.md index ef43ff55d4..903762ead1 100644 --- a/docset/winserver2012-ps/hyper-v/New-VMSan.md +++ b/docset/winserver2012-ps/hyper-v/New-VMSan.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/new-vmsan?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/new-vmsan?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/New-VMSwitch.md b/docset/winserver2012-ps/hyper-v/New-VMSwitch.md index e505f8c82d..39a6356149 100644 --- a/docset/winserver2012-ps/hyper-v/New-VMSwitch.md +++ b/docset/winserver2012-ps/hyper-v/New-VMSwitch.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/new-vmswitch?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/new-vmswitch?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Optimize-VHD.md b/docset/winserver2012-ps/hyper-v/Optimize-VHD.md index 438938a624..0a4efe871a 100644 --- a/docset/winserver2012-ps/hyper-v/Optimize-VHD.md +++ b/docset/winserver2012-ps/hyper-v/Optimize-VHD.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/optimize-vhd?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/optimize-vhd?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Remove-VM.md b/docset/winserver2012-ps/hyper-v/Remove-VM.md index aa85469949..82731069f4 100644 --- a/docset/winserver2012-ps/hyper-v/Remove-VM.md +++ b/docset/winserver2012-ps/hyper-v/Remove-VM.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vm?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vm?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Remove-VMDvdDrive.md b/docset/winserver2012-ps/hyper-v/Remove-VMDvdDrive.md index 9e20a44925..fd55de49b8 100644 --- a/docset/winserver2012-ps/hyper-v/Remove-VMDvdDrive.md +++ b/docset/winserver2012-ps/hyper-v/Remove-VMDvdDrive.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmdvddrive?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmdvddrive?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Remove-VMFibreChannelHba.md b/docset/winserver2012-ps/hyper-v/Remove-VMFibreChannelHba.md index 9f73d0d9fe..52113d9cee 100644 --- a/docset/winserver2012-ps/hyper-v/Remove-VMFibreChannelHba.md +++ b/docset/winserver2012-ps/hyper-v/Remove-VMFibreChannelHba.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmfibrechannelhba?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmfibrechannelhba?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Remove-VMHardDiskDrive.md b/docset/winserver2012-ps/hyper-v/Remove-VMHardDiskDrive.md index 72d82d1abe..781785668b 100644 --- a/docset/winserver2012-ps/hyper-v/Remove-VMHardDiskDrive.md +++ b/docset/winserver2012-ps/hyper-v/Remove-VMHardDiskDrive.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmharddiskdrive?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmharddiskdrive?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Remove-VMMigrationNetwork.md b/docset/winserver2012-ps/hyper-v/Remove-VMMigrationNetwork.md index e5f7e15eac..67cf7b01d8 100644 --- a/docset/winserver2012-ps/hyper-v/Remove-VMMigrationNetwork.md +++ b/docset/winserver2012-ps/hyper-v/Remove-VMMigrationNetwork.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmmigrationnetwork?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmmigrationnetwork?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Remove-VMNetworkAdapter.md b/docset/winserver2012-ps/hyper-v/Remove-VMNetworkAdapter.md index ba2ac1de82..2c5524e923 100644 --- a/docset/winserver2012-ps/hyper-v/Remove-VMNetworkAdapter.md +++ b/docset/winserver2012-ps/hyper-v/Remove-VMNetworkAdapter.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmnetworkadapter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmnetworkadapter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Remove-VMNetworkAdapterAcl.md b/docset/winserver2012-ps/hyper-v/Remove-VMNetworkAdapterAcl.md index 5c0b7e3abd..96a24eae71 100644 --- a/docset/winserver2012-ps/hyper-v/Remove-VMNetworkAdapterAcl.md +++ b/docset/winserver2012-ps/hyper-v/Remove-VMNetworkAdapterAcl.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmnetworkadapteracl?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmnetworkadapteracl?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Remove-VMRemoteFx3dVideoAdapter.md b/docset/winserver2012-ps/hyper-v/Remove-VMRemoteFx3dVideoAdapter.md index f426602462..c8afb3f8b0 100644 --- a/docset/winserver2012-ps/hyper-v/Remove-VMRemoteFx3dVideoAdapter.md +++ b/docset/winserver2012-ps/hyper-v/Remove-VMRemoteFx3dVideoAdapter.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmremotefx3dvideoadapter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmremotefx3dvideoadapter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Remove-VMReplication.md b/docset/winserver2012-ps/hyper-v/Remove-VMReplication.md index 3b45bc7139..3b6001df6b 100644 --- a/docset/winserver2012-ps/hyper-v/Remove-VMReplication.md +++ b/docset/winserver2012-ps/hyper-v/Remove-VMReplication.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmreplication?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmreplication?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Remove-VMReplicationAuthorizationEntry.md b/docset/winserver2012-ps/hyper-v/Remove-VMReplicationAuthorizationEntry.md index 515fc9fe5a..3acf8263f1 100644 --- a/docset/winserver2012-ps/hyper-v/Remove-VMReplicationAuthorizationEntry.md +++ b/docset/winserver2012-ps/hyper-v/Remove-VMReplicationAuthorizationEntry.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmreplicationauthorizationentry?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmreplicationauthorizationentry?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Remove-VMResourcePool.md b/docset/winserver2012-ps/hyper-v/Remove-VMResourcePool.md index 4f7e0b8e3d..db671c2761 100644 --- a/docset/winserver2012-ps/hyper-v/Remove-VMResourcePool.md +++ b/docset/winserver2012-ps/hyper-v/Remove-VMResourcePool.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmresourcepool?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmresourcepool?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Remove-VMSan.md b/docset/winserver2012-ps/hyper-v/Remove-VMSan.md index dd763f3ba2..b3db5dc055 100644 --- a/docset/winserver2012-ps/hyper-v/Remove-VMSan.md +++ b/docset/winserver2012-ps/hyper-v/Remove-VMSan.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmsan?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmsan?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Remove-VMSavedState.md b/docset/winserver2012-ps/hyper-v/Remove-VMSavedState.md index 35bd1d9b75..3e23b1dcec 100644 --- a/docset/winserver2012-ps/hyper-v/Remove-VMSavedState.md +++ b/docset/winserver2012-ps/hyper-v/Remove-VMSavedState.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmsavedstate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmsavedstate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Remove-VMScsiController.md b/docset/winserver2012-ps/hyper-v/Remove-VMScsiController.md index 6c70ff28fb..02773ecc3c 100644 --- a/docset/winserver2012-ps/hyper-v/Remove-VMScsiController.md +++ b/docset/winserver2012-ps/hyper-v/Remove-VMScsiController.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmscsicontroller?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmscsicontroller?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Remove-VMSnapshot.md b/docset/winserver2012-ps/hyper-v/Remove-VMSnapshot.md index b6e793af2e..c73a8ed16b 100644 --- a/docset/winserver2012-ps/hyper-v/Remove-VMSnapshot.md +++ b/docset/winserver2012-ps/hyper-v/Remove-VMSnapshot.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmsnapshot?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmsnapshot?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Remove-VMStoragePath.md b/docset/winserver2012-ps/hyper-v/Remove-VMStoragePath.md index 7a0320b945..707a390144 100644 --- a/docset/winserver2012-ps/hyper-v/Remove-VMStoragePath.md +++ b/docset/winserver2012-ps/hyper-v/Remove-VMStoragePath.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmstoragepath?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmstoragepath?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Remove-VMSwitch.md b/docset/winserver2012-ps/hyper-v/Remove-VMSwitch.md index 2413f81c8c..0d346c0588 100644 --- a/docset/winserver2012-ps/hyper-v/Remove-VMSwitch.md +++ b/docset/winserver2012-ps/hyper-v/Remove-VMSwitch.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmswitch?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmswitch?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Remove-VMSwitchExtensionPortFeature.md b/docset/winserver2012-ps/hyper-v/Remove-VMSwitchExtensionPortFeature.md index 9f1cb87ddd..bc9b256389 100644 --- a/docset/winserver2012-ps/hyper-v/Remove-VMSwitchExtensionPortFeature.md +++ b/docset/winserver2012-ps/hyper-v/Remove-VMSwitchExtensionPortFeature.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmswitchextensionportfeature?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmswitchextensionportfeature?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Remove-VMSwitchExtensionSwitchFeature.md b/docset/winserver2012-ps/hyper-v/Remove-VMSwitchExtensionSwitchFeature.md index 7bd2222be5..8e5784702d 100644 --- a/docset/winserver2012-ps/hyper-v/Remove-VMSwitchExtensionSwitchFeature.md +++ b/docset/winserver2012-ps/hyper-v/Remove-VMSwitchExtensionSwitchFeature.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmswitchextensionswitchfeature?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmswitchextensionswitchfeature?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Rename-VM.md b/docset/winserver2012-ps/hyper-v/Rename-VM.md index 6cdfa0a5ce..7bed6c0ab2 100644 --- a/docset/winserver2012-ps/hyper-v/Rename-VM.md +++ b/docset/winserver2012-ps/hyper-v/Rename-VM.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/rename-vm?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/rename-vm?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Rename-VMNetworkAdapter.md b/docset/winserver2012-ps/hyper-v/Rename-VMNetworkAdapter.md index 64cc268d62..c68d1f4760 100644 --- a/docset/winserver2012-ps/hyper-v/Rename-VMNetworkAdapter.md +++ b/docset/winserver2012-ps/hyper-v/Rename-VMNetworkAdapter.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/rename-vmnetworkadapter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/rename-vmnetworkadapter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Rename-VMResourcePool.md b/docset/winserver2012-ps/hyper-v/Rename-VMResourcePool.md index e8829514db..0422069cc1 100644 --- a/docset/winserver2012-ps/hyper-v/Rename-VMResourcePool.md +++ b/docset/winserver2012-ps/hyper-v/Rename-VMResourcePool.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/rename-vmresourcepool?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/rename-vmresourcepool?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Rename-VMSan.md b/docset/winserver2012-ps/hyper-v/Rename-VMSan.md index f4ac5bfb91..90138f303b 100644 --- a/docset/winserver2012-ps/hyper-v/Rename-VMSan.md +++ b/docset/winserver2012-ps/hyper-v/Rename-VMSan.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/rename-vmsan?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/rename-vmsan?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Rename-VMSnapshot.md b/docset/winserver2012-ps/hyper-v/Rename-VMSnapshot.md index b6825d8a90..2c56a7edf8 100644 --- a/docset/winserver2012-ps/hyper-v/Rename-VMSnapshot.md +++ b/docset/winserver2012-ps/hyper-v/Rename-VMSnapshot.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/rename-vmsnapshot?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/rename-vmsnapshot?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Rename-VMSwitch.md b/docset/winserver2012-ps/hyper-v/Rename-VMSwitch.md index 095deeda49..6a0ec63cc0 100644 --- a/docset/winserver2012-ps/hyper-v/Rename-VMSwitch.md +++ b/docset/winserver2012-ps/hyper-v/Rename-VMSwitch.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/rename-vmswitch?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/rename-vmswitch?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Repair-VM.md b/docset/winserver2012-ps/hyper-v/Repair-VM.md index 0c10d1a3ab..5eba180445 100644 --- a/docset/winserver2012-ps/hyper-v/Repair-VM.md +++ b/docset/winserver2012-ps/hyper-v/Repair-VM.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/repair-vm?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/repair-vm?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Reset-VMReplicationStatistics.md b/docset/winserver2012-ps/hyper-v/Reset-VMReplicationStatistics.md index 236b775bdd..9c25c9d835 100644 --- a/docset/winserver2012-ps/hyper-v/Reset-VMReplicationStatistics.md +++ b/docset/winserver2012-ps/hyper-v/Reset-VMReplicationStatistics.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/reset-vmreplicationstatistics?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/reset-vmreplicationstatistics?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Reset-VMResourceMetering.md b/docset/winserver2012-ps/hyper-v/Reset-VMResourceMetering.md index 0fce4cf7ba..8d7e089788 100644 --- a/docset/winserver2012-ps/hyper-v/Reset-VMResourceMetering.md +++ b/docset/winserver2012-ps/hyper-v/Reset-VMResourceMetering.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/reset-vmresourcemetering?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/reset-vmresourcemetering?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Resize-VHD.md b/docset/winserver2012-ps/hyper-v/Resize-VHD.md index aaca44ae6a..e368c1a9be 100644 --- a/docset/winserver2012-ps/hyper-v/Resize-VHD.md +++ b/docset/winserver2012-ps/hyper-v/Resize-VHD.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/resize-vhd?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/resize-vhd?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Restart-VM.md b/docset/winserver2012-ps/hyper-v/Restart-VM.md index 4a87c8139c..4095d16945 100644 --- a/docset/winserver2012-ps/hyper-v/Restart-VM.md +++ b/docset/winserver2012-ps/hyper-v/Restart-VM.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/restart-vm?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/restart-vm?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Restore-VMSnapshot.md b/docset/winserver2012-ps/hyper-v/Restore-VMSnapshot.md index 08c77e4c4f..f267f32670 100644 --- a/docset/winserver2012-ps/hyper-v/Restore-VMSnapshot.md +++ b/docset/winserver2012-ps/hyper-v/Restore-VMSnapshot.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/restore-vmsnapshot?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/restore-vmsnapshot?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Resume-VM.md b/docset/winserver2012-ps/hyper-v/Resume-VM.md index aace52f84c..05f621415b 100644 --- a/docset/winserver2012-ps/hyper-v/Resume-VM.md +++ b/docset/winserver2012-ps/hyper-v/Resume-VM.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/resume-vm?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/resume-vm?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Resume-VMReplication.md b/docset/winserver2012-ps/hyper-v/Resume-VMReplication.md index 952a57ed80..9730694549 100644 --- a/docset/winserver2012-ps/hyper-v/Resume-VMReplication.md +++ b/docset/winserver2012-ps/hyper-v/Resume-VMReplication.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/resume-vmreplication?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/resume-vmreplication?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Revoke-VMConnectAccess.md b/docset/winserver2012-ps/hyper-v/Revoke-VMConnectAccess.md index c0d4965842..a13f37889d 100644 --- a/docset/winserver2012-ps/hyper-v/Revoke-VMConnectAccess.md +++ b/docset/winserver2012-ps/hyper-v/Revoke-VMConnectAccess.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/revoke-vmconnectaccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/revoke-vmconnectaccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Save-VM.md b/docset/winserver2012-ps/hyper-v/Save-VM.md index 01d6c878cd..02dd00ff5e 100644 --- a/docset/winserver2012-ps/hyper-v/Save-VM.md +++ b/docset/winserver2012-ps/hyper-v/Save-VM.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/save-vm?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/save-vm?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Set-VHD.md b/docset/winserver2012-ps/hyper-v/Set-VHD.md index 994f419124..f5675a9077 100644 --- a/docset/winserver2012-ps/hyper-v/Set-VHD.md +++ b/docset/winserver2012-ps/hyper-v/Set-VHD.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vhd?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vhd?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Set-VM.md b/docset/winserver2012-ps/hyper-v/Set-VM.md index e6af655760..ed1e1dc3e0 100644 --- a/docset/winserver2012-ps/hyper-v/Set-VM.md +++ b/docset/winserver2012-ps/hyper-v/Set-VM.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vm?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vm?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Set-VMBios.md b/docset/winserver2012-ps/hyper-v/Set-VMBios.md index abb5c53d90..e2d7ed0bb3 100644 --- a/docset/winserver2012-ps/hyper-v/Set-VMBios.md +++ b/docset/winserver2012-ps/hyper-v/Set-VMBios.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmbios?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmbios?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Set-VMComPort.md b/docset/winserver2012-ps/hyper-v/Set-VMComPort.md index 9fd7b7aff5..608b858cb5 100644 --- a/docset/winserver2012-ps/hyper-v/Set-VMComPort.md +++ b/docset/winserver2012-ps/hyper-v/Set-VMComPort.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmcomport?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmcomport?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Set-VMDvdDrive.md b/docset/winserver2012-ps/hyper-v/Set-VMDvdDrive.md index 4e1106ceb4..bbbb02d4f0 100644 --- a/docset/winserver2012-ps/hyper-v/Set-VMDvdDrive.md +++ b/docset/winserver2012-ps/hyper-v/Set-VMDvdDrive.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmdvddrive?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmdvddrive?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Set-VMFibreChannelHba.md b/docset/winserver2012-ps/hyper-v/Set-VMFibreChannelHba.md index 1ee547dc15..cd330312ec 100644 --- a/docset/winserver2012-ps/hyper-v/Set-VMFibreChannelHba.md +++ b/docset/winserver2012-ps/hyper-v/Set-VMFibreChannelHba.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmfibrechannelhba?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmfibrechannelhba?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Set-VMFloppyDiskDrive.md b/docset/winserver2012-ps/hyper-v/Set-VMFloppyDiskDrive.md index bdb7630ef2..2d75cc0461 100644 --- a/docset/winserver2012-ps/hyper-v/Set-VMFloppyDiskDrive.md +++ b/docset/winserver2012-ps/hyper-v/Set-VMFloppyDiskDrive.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmfloppydiskdrive?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmfloppydiskdrive?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Set-VMHardDiskDrive.md b/docset/winserver2012-ps/hyper-v/Set-VMHardDiskDrive.md index 0c3ee1b834..897268ed0e 100644 --- a/docset/winserver2012-ps/hyper-v/Set-VMHardDiskDrive.md +++ b/docset/winserver2012-ps/hyper-v/Set-VMHardDiskDrive.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmharddiskdrive?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmharddiskdrive?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Set-VMHost.md b/docset/winserver2012-ps/hyper-v/Set-VMHost.md index bb5a13dbab..f5d7307f3b 100644 --- a/docset/winserver2012-ps/hyper-v/Set-VMHost.md +++ b/docset/winserver2012-ps/hyper-v/Set-VMHost.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmhost?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmhost?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Set-VMMemory.md b/docset/winserver2012-ps/hyper-v/Set-VMMemory.md index 27d50d5218..c9b393835a 100644 --- a/docset/winserver2012-ps/hyper-v/Set-VMMemory.md +++ b/docset/winserver2012-ps/hyper-v/Set-VMMemory.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmmemory?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmmemory?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Set-VMMigrationNetwork.md b/docset/winserver2012-ps/hyper-v/Set-VMMigrationNetwork.md index af45fe5e23..b9a075451d 100644 --- a/docset/winserver2012-ps/hyper-v/Set-VMMigrationNetwork.md +++ b/docset/winserver2012-ps/hyper-v/Set-VMMigrationNetwork.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmmigrationnetwork?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmmigrationnetwork?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Set-VMNetworkAdapter.md b/docset/winserver2012-ps/hyper-v/Set-VMNetworkAdapter.md index 615bbfda3b..a4f1de6318 100644 --- a/docset/winserver2012-ps/hyper-v/Set-VMNetworkAdapter.md +++ b/docset/winserver2012-ps/hyper-v/Set-VMNetworkAdapter.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmnetworkadapter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmnetworkadapter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Set-VMNetworkAdapterFailoverConfiguration.md b/docset/winserver2012-ps/hyper-v/Set-VMNetworkAdapterFailoverConfiguration.md index 9325f070b3..c42da7b37e 100644 --- a/docset/winserver2012-ps/hyper-v/Set-VMNetworkAdapterFailoverConfiguration.md +++ b/docset/winserver2012-ps/hyper-v/Set-VMNetworkAdapterFailoverConfiguration.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmnetworkadapterfailoverconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmnetworkadapterfailoverconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Set-VMNetworkAdapterVlan.md b/docset/winserver2012-ps/hyper-v/Set-VMNetworkAdapterVlan.md index e74903db08..76357baaa0 100644 --- a/docset/winserver2012-ps/hyper-v/Set-VMNetworkAdapterVlan.md +++ b/docset/winserver2012-ps/hyper-v/Set-VMNetworkAdapterVlan.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmnetworkadaptervlan?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmnetworkadaptervlan?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Set-VMProcessor.md b/docset/winserver2012-ps/hyper-v/Set-VMProcessor.md index 9a1f710740..fdc6c03d49 100644 --- a/docset/winserver2012-ps/hyper-v/Set-VMProcessor.md +++ b/docset/winserver2012-ps/hyper-v/Set-VMProcessor.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmprocessor?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmprocessor?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Set-VMRemoteFx3dVideoAdapter.md b/docset/winserver2012-ps/hyper-v/Set-VMRemoteFx3dVideoAdapter.md index f495338243..4688bd7e92 100644 --- a/docset/winserver2012-ps/hyper-v/Set-VMRemoteFx3dVideoAdapter.md +++ b/docset/winserver2012-ps/hyper-v/Set-VMRemoteFx3dVideoAdapter.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmremotefx3dvideoadapter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmremotefx3dvideoadapter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Set-VMReplication.md b/docset/winserver2012-ps/hyper-v/Set-VMReplication.md index 53f0232292..61d5d140ee 100644 --- a/docset/winserver2012-ps/hyper-v/Set-VMReplication.md +++ b/docset/winserver2012-ps/hyper-v/Set-VMReplication.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmreplication?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmreplication?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Set-VMReplicationAuthorizationEntry.md b/docset/winserver2012-ps/hyper-v/Set-VMReplicationAuthorizationEntry.md index 647a1824c2..d9ad568999 100644 --- a/docset/winserver2012-ps/hyper-v/Set-VMReplicationAuthorizationEntry.md +++ b/docset/winserver2012-ps/hyper-v/Set-VMReplicationAuthorizationEntry.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmreplicationauthorizationentry?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmreplicationauthorizationentry?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Set-VMReplicationServer.md b/docset/winserver2012-ps/hyper-v/Set-VMReplicationServer.md index fd10a44070..7388e441cd 100644 --- a/docset/winserver2012-ps/hyper-v/Set-VMReplicationServer.md +++ b/docset/winserver2012-ps/hyper-v/Set-VMReplicationServer.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmreplicationserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmreplicationserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Set-VMResourcePool.md b/docset/winserver2012-ps/hyper-v/Set-VMResourcePool.md index 5f48a76b2f..f3ffae1690 100644 --- a/docset/winserver2012-ps/hyper-v/Set-VMResourcePool.md +++ b/docset/winserver2012-ps/hyper-v/Set-VMResourcePool.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmresourcepool?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmresourcepool?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Set-VMSan.md b/docset/winserver2012-ps/hyper-v/Set-VMSan.md index 08ddfcacca..8a64895775 100644 --- a/docset/winserver2012-ps/hyper-v/Set-VMSan.md +++ b/docset/winserver2012-ps/hyper-v/Set-VMSan.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmsan?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmsan?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Set-VMSwitch.md b/docset/winserver2012-ps/hyper-v/Set-VMSwitch.md index c824644141..47275a746d 100644 --- a/docset/winserver2012-ps/hyper-v/Set-VMSwitch.md +++ b/docset/winserver2012-ps/hyper-v/Set-VMSwitch.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmswitch?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmswitch?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Set-VMSwitchExtensionPortFeature.md b/docset/winserver2012-ps/hyper-v/Set-VMSwitchExtensionPortFeature.md index 73a93a90c9..dcdeeb6893 100644 --- a/docset/winserver2012-ps/hyper-v/Set-VMSwitchExtensionPortFeature.md +++ b/docset/winserver2012-ps/hyper-v/Set-VMSwitchExtensionPortFeature.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmswitchextensionportfeature?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmswitchextensionportfeature?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Set-VMSwitchExtensionSwitchFeature.md b/docset/winserver2012-ps/hyper-v/Set-VMSwitchExtensionSwitchFeature.md index 20408e12a6..8b1590358e 100644 --- a/docset/winserver2012-ps/hyper-v/Set-VMSwitchExtensionSwitchFeature.md +++ b/docset/winserver2012-ps/hyper-v/Set-VMSwitchExtensionSwitchFeature.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmswitchextensionswitchfeature?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmswitchextensionswitchfeature?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Start-VM.md b/docset/winserver2012-ps/hyper-v/Start-VM.md index 7aae2c49ce..e821d1176c 100644 --- a/docset/winserver2012-ps/hyper-v/Start-VM.md +++ b/docset/winserver2012-ps/hyper-v/Start-VM.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/start-vm?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/start-vm?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Start-VMFailover.md b/docset/winserver2012-ps/hyper-v/Start-VMFailover.md index cf38d4ea24..69c316598a 100644 --- a/docset/winserver2012-ps/hyper-v/Start-VMFailover.md +++ b/docset/winserver2012-ps/hyper-v/Start-VMFailover.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/start-vmfailover?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/start-vmfailover?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Start-VMInitialReplication.md b/docset/winserver2012-ps/hyper-v/Start-VMInitialReplication.md index 3f6e31c13b..8dd6abb809 100644 --- a/docset/winserver2012-ps/hyper-v/Start-VMInitialReplication.md +++ b/docset/winserver2012-ps/hyper-v/Start-VMInitialReplication.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/start-vminitialreplication?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/start-vminitialreplication?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Stop-VM.md b/docset/winserver2012-ps/hyper-v/Stop-VM.md index ef76561c4e..c6bc09ed91 100644 --- a/docset/winserver2012-ps/hyper-v/Stop-VM.md +++ b/docset/winserver2012-ps/hyper-v/Stop-VM.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/stop-vm?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/stop-vm?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Stop-VMFailover.md b/docset/winserver2012-ps/hyper-v/Stop-VMFailover.md index c434adf8e1..b25b7ab348 100644 --- a/docset/winserver2012-ps/hyper-v/Stop-VMFailover.md +++ b/docset/winserver2012-ps/hyper-v/Stop-VMFailover.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/stop-vmfailover?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/stop-vmfailover?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Stop-VMInitialReplication.md b/docset/winserver2012-ps/hyper-v/Stop-VMInitialReplication.md index fb4389205f..a1eef75c5a 100644 --- a/docset/winserver2012-ps/hyper-v/Stop-VMInitialReplication.md +++ b/docset/winserver2012-ps/hyper-v/Stop-VMInitialReplication.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/stop-vminitialreplication?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/stop-vminitialreplication?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Stop-VMReplication.md b/docset/winserver2012-ps/hyper-v/Stop-VMReplication.md index f5432d1f57..143aef4c60 100644 --- a/docset/winserver2012-ps/hyper-v/Stop-VMReplication.md +++ b/docset/winserver2012-ps/hyper-v/Stop-VMReplication.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/stop-vmreplication?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/stop-vmreplication?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Suspend-VM.md b/docset/winserver2012-ps/hyper-v/Suspend-VM.md index a1a76c2946..1f28088d49 100644 --- a/docset/winserver2012-ps/hyper-v/Suspend-VM.md +++ b/docset/winserver2012-ps/hyper-v/Suspend-VM.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/suspend-vm?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/suspend-vm?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Suspend-VMReplication.md b/docset/winserver2012-ps/hyper-v/Suspend-VMReplication.md index e63e92842d..b566b4ff07 100644 --- a/docset/winserver2012-ps/hyper-v/Suspend-VMReplication.md +++ b/docset/winserver2012-ps/hyper-v/Suspend-VMReplication.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/suspend-vmreplication?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/suspend-vmreplication?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Test-VHD.md b/docset/winserver2012-ps/hyper-v/Test-VHD.md index 5c6498c505..5594f86cfb 100644 --- a/docset/winserver2012-ps/hyper-v/Test-VHD.md +++ b/docset/winserver2012-ps/hyper-v/Test-VHD.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/test-vhd?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/test-vhd?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/hyper-v/Test-VMReplicationConnection.md b/docset/winserver2012-ps/hyper-v/Test-VMReplicationConnection.md index 1829ad9cd6..adec3d27de 100644 --- a/docset/winserver2012-ps/hyper-v/Test-VMReplicationConnection.md +++ b/docset/winserver2012-ps/hyper-v/Test-VMReplicationConnection.md @@ -1,7 +1,7 @@ --- external help file: Hyper-V_Cmdlets.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/test-vmreplicationconnection?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/test-vmreplicationconnection?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/international/Get-WinAcceptLanguageFromLanguageListOptOut.md b/docset/winserver2012-ps/international/Get-WinAcceptLanguageFromLanguageListOptOut.md index d989a87fb4..91b2a8b4f9 100644 --- a/docset/winserver2012-ps/international/Get-WinAcceptLanguageFromLanguageListOptOut.md +++ b/docset/winserver2012-ps/international/Get-WinAcceptLanguageFromLanguageListOptOut.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International -online version: https://docs.microsoft.com/powershell/module/international/get-winacceptlanguagefromlanguagelistoptout?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/get-winacceptlanguagefromlanguagelistoptout?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/international/Get-WinCultureFromLanguageListOptOut.md b/docset/winserver2012-ps/international/Get-WinCultureFromLanguageListOptOut.md index 426ac695ef..672aa5c82e 100644 --- a/docset/winserver2012-ps/international/Get-WinCultureFromLanguageListOptOut.md +++ b/docset/winserver2012-ps/international/Get-WinCultureFromLanguageListOptOut.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International -online version: https://docs.microsoft.com/powershell/module/international/get-winculturefromlanguagelistoptout?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/get-winculturefromlanguagelistoptout?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/international/Get-WinDefaultInputMethodOverride.md b/docset/winserver2012-ps/international/Get-WinDefaultInputMethodOverride.md index 75537afc76..349c6f8f28 100644 --- a/docset/winserver2012-ps/international/Get-WinDefaultInputMethodOverride.md +++ b/docset/winserver2012-ps/international/Get-WinDefaultInputMethodOverride.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International -online version: https://docs.microsoft.com/powershell/module/international/get-windefaultinputmethodoverride?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/get-windefaultinputmethodoverride?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/international/Get-WinHomeLocation.md b/docset/winserver2012-ps/international/Get-WinHomeLocation.md index 3d9956f90a..8cf18fbc64 100644 --- a/docset/winserver2012-ps/international/Get-WinHomeLocation.md +++ b/docset/winserver2012-ps/international/Get-WinHomeLocation.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International -online version: https://docs.microsoft.com/powershell/module/international/get-winhomelocation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/get-winhomelocation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/international/Get-WinLanguageBarOption.md b/docset/winserver2012-ps/international/Get-WinLanguageBarOption.md index a8b99feb80..1e05884b05 100644 --- a/docset/winserver2012-ps/international/Get-WinLanguageBarOption.md +++ b/docset/winserver2012-ps/international/Get-WinLanguageBarOption.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International -online version: https://docs.microsoft.com/powershell/module/international/get-winlanguagebaroption?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/get-winlanguagebaroption?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/international/Get-WinSystemLocale.md b/docset/winserver2012-ps/international/Get-WinSystemLocale.md index d42b208053..892eccdf05 100644 --- a/docset/winserver2012-ps/international/Get-WinSystemLocale.md +++ b/docset/winserver2012-ps/international/Get-WinSystemLocale.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International -online version: https://docs.microsoft.com/powershell/module/international/get-winsystemlocale?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/get-winsystemlocale?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/international/Get-WinUILanguageOverride.md b/docset/winserver2012-ps/international/Get-WinUILanguageOverride.md index e1acbce5b4..bf0eda8eb3 100644 --- a/docset/winserver2012-ps/international/Get-WinUILanguageOverride.md +++ b/docset/winserver2012-ps/international/Get-WinUILanguageOverride.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International -online version: https://docs.microsoft.com/powershell/module/international/get-winuilanguageoverride?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/get-winuilanguageoverride?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/international/Get-WinUserLanguageList.md b/docset/winserver2012-ps/international/Get-WinUserLanguageList.md index 6fa84ded8e..0fb3a69f5b 100644 --- a/docset/winserver2012-ps/international/Get-WinUserLanguageList.md +++ b/docset/winserver2012-ps/international/Get-WinUserLanguageList.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International -online version: https://docs.microsoft.com/powershell/module/international/get-winuserlanguagelist?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/get-winuserlanguagelist?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/international/New-WinUserLanguageList.md b/docset/winserver2012-ps/international/New-WinUserLanguageList.md index 9b65a77eb7..598caf0a2a 100644 --- a/docset/winserver2012-ps/international/New-WinUserLanguageList.md +++ b/docset/winserver2012-ps/international/New-WinUserLanguageList.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International -online version: https://docs.microsoft.com/powershell/module/international/new-winuserlanguagelist?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/new-winuserlanguagelist?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/international/Set-Culture.md b/docset/winserver2012-ps/international/Set-Culture.md index 5f2f43559f..7229f6c991 100644 --- a/docset/winserver2012-ps/international/Set-Culture.md +++ b/docset/winserver2012-ps/international/Set-Culture.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International -online version: https://docs.microsoft.com/powershell/module/international/set-culture?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/set-culture?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/international/Set-WinAcceptLanguageFromLanguageListOptOut.md b/docset/winserver2012-ps/international/Set-WinAcceptLanguageFromLanguageListOptOut.md index cfca50dff4..cea4f92bd0 100644 --- a/docset/winserver2012-ps/international/Set-WinAcceptLanguageFromLanguageListOptOut.md +++ b/docset/winserver2012-ps/international/Set-WinAcceptLanguageFromLanguageListOptOut.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International -online version: https://docs.microsoft.com/powershell/module/international/set-winacceptlanguagefromlanguagelistoptout?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/set-winacceptlanguagefromlanguagelistoptout?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/international/Set-WinCultureFromLanguageListOptOut.md b/docset/winserver2012-ps/international/Set-WinCultureFromLanguageListOptOut.md index 9b060a2069..b7919bb11d 100644 --- a/docset/winserver2012-ps/international/Set-WinCultureFromLanguageListOptOut.md +++ b/docset/winserver2012-ps/international/Set-WinCultureFromLanguageListOptOut.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International -online version: https://docs.microsoft.com/powershell/module/international/set-winculturefromlanguagelistoptout?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/set-winculturefromlanguagelistoptout?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/international/Set-WinDefaultInputMethodOverride.md b/docset/winserver2012-ps/international/Set-WinDefaultInputMethodOverride.md index 7f4193d5c9..11f14c2db3 100644 --- a/docset/winserver2012-ps/international/Set-WinDefaultInputMethodOverride.md +++ b/docset/winserver2012-ps/international/Set-WinDefaultInputMethodOverride.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International -online version: https://docs.microsoft.com/powershell/module/international/set-windefaultinputmethodoverride?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/set-windefaultinputmethodoverride?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/international/Set-WinHomeLocation.md b/docset/winserver2012-ps/international/Set-WinHomeLocation.md index 30bc404d0e..db26e61d58 100644 --- a/docset/winserver2012-ps/international/Set-WinHomeLocation.md +++ b/docset/winserver2012-ps/international/Set-WinHomeLocation.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International -online version: https://docs.microsoft.com/powershell/module/international/set-winhomelocation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/set-winhomelocation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/international/Set-WinLanguageBarOption.md b/docset/winserver2012-ps/international/Set-WinLanguageBarOption.md index c757c6f346..82a924c604 100644 --- a/docset/winserver2012-ps/international/Set-WinLanguageBarOption.md +++ b/docset/winserver2012-ps/international/Set-WinLanguageBarOption.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International -online version: https://docs.microsoft.com/powershell/module/international/set-winlanguagebaroption?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/set-winlanguagebaroption?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/international/Set-WinSystemLocale.md b/docset/winserver2012-ps/international/Set-WinSystemLocale.md index da41ec94bd..185f6c5e3e 100644 --- a/docset/winserver2012-ps/international/Set-WinSystemLocale.md +++ b/docset/winserver2012-ps/international/Set-WinSystemLocale.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International -online version: https://docs.microsoft.com/powershell/module/international/set-winsystemlocale?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/set-winsystemlocale?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/international/Set-WinUILanguageOverride.md b/docset/winserver2012-ps/international/Set-WinUILanguageOverride.md index f37c69ea17..bd8e873ffc 100644 --- a/docset/winserver2012-ps/international/Set-WinUILanguageOverride.md +++ b/docset/winserver2012-ps/international/Set-WinUILanguageOverride.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International -online version: https://docs.microsoft.com/powershell/module/international/set-winuilanguageoverride?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/set-winuilanguageoverride?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/international/Set-WinUserLanguageList.md b/docset/winserver2012-ps/international/Set-WinUserLanguageList.md index 7ffb687892..b89513e10b 100644 --- a/docset/winserver2012-ps/international/Set-WinUserLanguageList.md +++ b/docset/winserver2012-ps/international/Set-WinUserLanguageList.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International -online version: https://docs.microsoft.com/powershell/module/international/set-winuserlanguagelist?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/set-winuserlanguagelist?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/ipamserver/Add-IpamCustomField.md b/docset/winserver2012-ps/ipamserver/Add-IpamCustomField.md index 1cb95d5d7a..473d6abcff 100644 --- a/docset/winserver2012-ps/ipamserver/Add-IpamCustomField.md +++ b/docset/winserver2012-ps/ipamserver/Add-IpamCustomField.md @@ -1,7 +1,7 @@ --- external help file: IpamServer_Cmdlets.xml Module Name: IpamServer -online version: https://docs.microsoft.com/powershell/module/ipamserver/add-ipamcustomfield?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/add-ipamcustomfield?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/ipamserver/Add-IpamCustomValue.md b/docset/winserver2012-ps/ipamserver/Add-IpamCustomValue.md index c9842fa282..a97118a12e 100644 --- a/docset/winserver2012-ps/ipamserver/Add-IpamCustomValue.md +++ b/docset/winserver2012-ps/ipamserver/Add-IpamCustomValue.md @@ -1,7 +1,7 @@ --- external help file: IpamServer_Cmdlets.xml Module Name: IpamServer -online version: https://docs.microsoft.com/powershell/module/ipamserver/add-ipamcustomvalue?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/add-ipamcustomvalue?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/ipamserver/Export-IpamAddress.md b/docset/winserver2012-ps/ipamserver/Export-IpamAddress.md index d21bc1ea5b..d1648969c3 100644 --- a/docset/winserver2012-ps/ipamserver/Export-IpamAddress.md +++ b/docset/winserver2012-ps/ipamserver/Export-IpamAddress.md @@ -1,7 +1,7 @@ --- external help file: IpamServer_Cmdlets.xml Module Name: IpamServer -online version: https://docs.microsoft.com/powershell/module/ipamserver/export-ipamaddress?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/export-ipamaddress?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/ipamserver/Export-IpamRange.md b/docset/winserver2012-ps/ipamserver/Export-IpamRange.md index d25c295613..e5c45969f5 100644 --- a/docset/winserver2012-ps/ipamserver/Export-IpamRange.md +++ b/docset/winserver2012-ps/ipamserver/Export-IpamRange.md @@ -1,7 +1,7 @@ --- external help file: IpamServer_Cmdlets.xml Module Name: IpamServer -online version: https://docs.microsoft.com/powershell/module/ipamserver/export-ipamrange?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/export-ipamrange?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/ipamserver/Get-IpamConfiguration.md b/docset/winserver2012-ps/ipamserver/Get-IpamConfiguration.md index b9576ebeda..4c54bcbcfa 100644 --- a/docset/winserver2012-ps/ipamserver/Get-IpamConfiguration.md +++ b/docset/winserver2012-ps/ipamserver/Get-IpamConfiguration.md @@ -1,7 +1,7 @@ --- external help file: IpamServer_Cmdlets.xml Module Name: IpamServer -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/ipamserver/Get-IpamCustomField.md b/docset/winserver2012-ps/ipamserver/Get-IpamCustomField.md index 71d91b03f1..ced8f669e7 100644 --- a/docset/winserver2012-ps/ipamserver/Get-IpamCustomField.md +++ b/docset/winserver2012-ps/ipamserver/Get-IpamCustomField.md @@ -1,7 +1,7 @@ --- external help file: IpamServer_Cmdlets.xml Module Name: IpamServer -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamcustomfield?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamcustomfield?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/ipamserver/Import-IpamAddress.md b/docset/winserver2012-ps/ipamserver/Import-IpamAddress.md index 8ed901c351..357cec3649 100644 --- a/docset/winserver2012-ps/ipamserver/Import-IpamAddress.md +++ b/docset/winserver2012-ps/ipamserver/Import-IpamAddress.md @@ -1,7 +1,7 @@ --- external help file: IpamServer_Cmdlets.xml Module Name: IpamServer -online version: https://docs.microsoft.com/powershell/module/ipamserver/import-ipamaddress?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/import-ipamaddress?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/ipamserver/Import-IpamRange.md b/docset/winserver2012-ps/ipamserver/Import-IpamRange.md index 75e375d84d..5fc776ce21 100644 --- a/docset/winserver2012-ps/ipamserver/Import-IpamRange.md +++ b/docset/winserver2012-ps/ipamserver/Import-IpamRange.md @@ -1,7 +1,7 @@ --- external help file: IpamServer_Cmdlets.xml Module Name: IpamServer -online version: https://docs.microsoft.com/powershell/module/ipamserver/import-ipamrange?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/import-ipamrange?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/ipamserver/Invoke-IpamGpoProvisioning.md b/docset/winserver2012-ps/ipamserver/Invoke-IpamGpoProvisioning.md index 93e4c28112..51392d2660 100644 --- a/docset/winserver2012-ps/ipamserver/Invoke-IpamGpoProvisioning.md +++ b/docset/winserver2012-ps/ipamserver/Invoke-IpamGpoProvisioning.md @@ -1,7 +1,7 @@ --- external help file: IpamServer_Cmdlets.xml Module Name: IpamServer -online version: https://docs.microsoft.com/powershell/module/ipamserver/invoke-ipamgpoprovisioning?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/invoke-ipamgpoprovisioning?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/ipamserver/Set-IpamConfiguration.md b/docset/winserver2012-ps/ipamserver/Set-IpamConfiguration.md index dbdba0c8d7..d884bc2a54 100644 --- a/docset/winserver2012-ps/ipamserver/Set-IpamConfiguration.md +++ b/docset/winserver2012-ps/ipamserver/Set-IpamConfiguration.md @@ -1,7 +1,7 @@ --- external help file: IpamServer_Cmdlets.xml Module Name: IpamServer -online version: https://docs.microsoft.com/powershell/module/ipamserver/set-ipamconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/set-ipamconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/iscsi/Connect-IscsiTarget.md b/docset/winserver2012-ps/iscsi/Connect-IscsiTarget.md index 5496dec010..9e41b754ae 100644 --- a/docset/winserver2012-ps/iscsi/Connect-IscsiTarget.md +++ b/docset/winserver2012-ps/iscsi/Connect-IscsiTarget.md @@ -1,7 +1,7 @@ --- external help file: Iscsi_Cmdlets.xml Module Name: iSCSI -online version: https://docs.microsoft.com/powershell/module/iscsi/connect-iscsitarget?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/connect-iscsitarget?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/iscsi/Disconnect-IscsiTarget.md b/docset/winserver2012-ps/iscsi/Disconnect-IscsiTarget.md index ce3987758f..93aa7ff48e 100644 --- a/docset/winserver2012-ps/iscsi/Disconnect-IscsiTarget.md +++ b/docset/winserver2012-ps/iscsi/Disconnect-IscsiTarget.md @@ -1,7 +1,7 @@ --- external help file: Iscsi_Cmdlets.xml Module Name: iSCSI -online version: https://docs.microsoft.com/powershell/module/iscsi/disconnect-iscsitarget?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/disconnect-iscsitarget?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/iscsi/Get-IscsiConnection.md b/docset/winserver2012-ps/iscsi/Get-IscsiConnection.md index f241c4c1fe..5eab811f9b 100644 --- a/docset/winserver2012-ps/iscsi/Get-IscsiConnection.md +++ b/docset/winserver2012-ps/iscsi/Get-IscsiConnection.md @@ -1,7 +1,7 @@ --- external help file: Iscsi_Cmdlets.xml Module Name: iSCSI -online version: https://docs.microsoft.com/powershell/module/iscsi/get-iscsiconnection?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/get-iscsiconnection?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/iscsi/Get-IscsiSession.md b/docset/winserver2012-ps/iscsi/Get-IscsiSession.md index 5a6afde8f9..90e30a607d 100644 --- a/docset/winserver2012-ps/iscsi/Get-IscsiSession.md +++ b/docset/winserver2012-ps/iscsi/Get-IscsiSession.md @@ -1,7 +1,7 @@ --- external help file: Iscsi_Cmdlets.xml Module Name: iSCSI -online version: https://docs.microsoft.com/powershell/module/iscsi/get-iscsisession?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/get-iscsisession?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/iscsi/Get-IscsiTarget.md b/docset/winserver2012-ps/iscsi/Get-IscsiTarget.md index 3dd07f6444..aee9f4048d 100644 --- a/docset/winserver2012-ps/iscsi/Get-IscsiTarget.md +++ b/docset/winserver2012-ps/iscsi/Get-IscsiTarget.md @@ -1,7 +1,7 @@ --- external help file: Iscsi_Cmdlets.xml Module Name: iSCSI -online version: https://docs.microsoft.com/powershell/module/iscsi/get-iscsitarget?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/get-iscsitarget?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/iscsi/Get-IscsiTargetPortal.md b/docset/winserver2012-ps/iscsi/Get-IscsiTargetPortal.md index 278371e713..e1e07ea0e8 100644 --- a/docset/winserver2012-ps/iscsi/Get-IscsiTargetPortal.md +++ b/docset/winserver2012-ps/iscsi/Get-IscsiTargetPortal.md @@ -1,7 +1,7 @@ --- external help file: Iscsi_Cmdlets.xml Module Name: iSCSI -online version: https://docs.microsoft.com/powershell/module/iscsi/get-iscsitargetportal?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/get-iscsitargetportal?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/iscsi/New-IscsiTargetPortal.md b/docset/winserver2012-ps/iscsi/New-IscsiTargetPortal.md index bf15ac4c0a..0b66036222 100644 --- a/docset/winserver2012-ps/iscsi/New-IscsiTargetPortal.md +++ b/docset/winserver2012-ps/iscsi/New-IscsiTargetPortal.md @@ -1,7 +1,7 @@ --- external help file: Iscsi_Cmdlets.xml Module Name: iSCSI -online version: https://docs.microsoft.com/powershell/module/iscsi/new-iscsitargetportal?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/new-iscsitargetportal?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/iscsi/Register-IscsiSession.md b/docset/winserver2012-ps/iscsi/Register-IscsiSession.md index 1ac42ec1cd..cbb0bce671 100644 --- a/docset/winserver2012-ps/iscsi/Register-IscsiSession.md +++ b/docset/winserver2012-ps/iscsi/Register-IscsiSession.md @@ -1,7 +1,7 @@ --- external help file: Iscsi_Cmdlets.xml Module Name: iSCSI -online version: https://docs.microsoft.com/powershell/module/iscsi/register-iscsisession?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/register-iscsisession?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/iscsi/Remove-IscsiTargetPortal.md b/docset/winserver2012-ps/iscsi/Remove-IscsiTargetPortal.md index 81737a98e6..fc62638276 100644 --- a/docset/winserver2012-ps/iscsi/Remove-IscsiTargetPortal.md +++ b/docset/winserver2012-ps/iscsi/Remove-IscsiTargetPortal.md @@ -1,7 +1,7 @@ --- external help file: Iscsi_Cmdlets.xml Module Name: iSCSI -online version: https://docs.microsoft.com/powershell/module/iscsi/remove-iscsitargetportal?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/remove-iscsitargetportal?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/iscsi/Set-IscsiChapSecret.md b/docset/winserver2012-ps/iscsi/Set-IscsiChapSecret.md index 1452967b0e..4602564acd 100644 --- a/docset/winserver2012-ps/iscsi/Set-IscsiChapSecret.md +++ b/docset/winserver2012-ps/iscsi/Set-IscsiChapSecret.md @@ -1,7 +1,7 @@ --- external help file: Iscsi_Cmdlets.xml Module Name: iSCSI -online version: https://docs.microsoft.com/powershell/module/iscsi/set-iscsichapsecret?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/set-iscsichapsecret?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/iscsi/Unregister-IscsiSession.md b/docset/winserver2012-ps/iscsi/Unregister-IscsiSession.md index 2f857936d8..0ea39320b7 100644 --- a/docset/winserver2012-ps/iscsi/Unregister-IscsiSession.md +++ b/docset/winserver2012-ps/iscsi/Unregister-IscsiSession.md @@ -1,7 +1,7 @@ --- external help file: Iscsi_Cmdlets.xml Module Name: iSCSI -online version: https://docs.microsoft.com/powershell/module/iscsi/unregister-iscsisession?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/unregister-iscsisession?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/iscsi/Update-IscsiTarget.md b/docset/winserver2012-ps/iscsi/Update-IscsiTarget.md index bbf47b4aef..c95d429a55 100644 --- a/docset/winserver2012-ps/iscsi/Update-IscsiTarget.md +++ b/docset/winserver2012-ps/iscsi/Update-IscsiTarget.md @@ -1,7 +1,7 @@ --- external help file: Iscsi_Cmdlets.xml Module Name: iSCSI -online version: https://docs.microsoft.com/powershell/module/iscsi/update-iscsitarget?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/update-iscsitarget?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/iscsi/Update-IscsiTargetPortal.md b/docset/winserver2012-ps/iscsi/Update-IscsiTargetPortal.md index d4a61f8b3a..ddc700e21b 100644 --- a/docset/winserver2012-ps/iscsi/Update-IscsiTargetPortal.md +++ b/docset/winserver2012-ps/iscsi/Update-IscsiTargetPortal.md @@ -1,7 +1,7 @@ --- external help file: Iscsi_Cmdlets.xml Module Name: iSCSI -online version: https://docs.microsoft.com/powershell/module/iscsi/update-iscsitargetportal?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/update-iscsitargetportal?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/iscsitarget/Add-IscsiVirtualDiskTargetMapping.md b/docset/winserver2012-ps/iscsitarget/Add-IscsiVirtualDiskTargetMapping.md index 29e3d6ae03..1783d62586 100644 --- a/docset/winserver2012-ps/iscsitarget/Add-IscsiVirtualDiskTargetMapping.md +++ b/docset/winserver2012-ps/iscsitarget/Add-IscsiVirtualDiskTargetMapping.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget -online version: https://docs.microsoft.com/powershell/module/iscsitarget/add-iscsivirtualdisktargetmapping?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/add-iscsivirtualdisktargetmapping?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/iscsitarget/Checkpoint-IscsiVirtualDisk.md b/docset/winserver2012-ps/iscsitarget/Checkpoint-IscsiVirtualDisk.md index 69e54aee36..fa9d31d385 100644 --- a/docset/winserver2012-ps/iscsitarget/Checkpoint-IscsiVirtualDisk.md +++ b/docset/winserver2012-ps/iscsitarget/Checkpoint-IscsiVirtualDisk.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget -online version: https://docs.microsoft.com/powershell/module/iscsitarget/checkpoint-iscsivirtualdisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/checkpoint-iscsivirtualdisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/iscsitarget/Convert-IscsiVirtualDisk.md b/docset/winserver2012-ps/iscsitarget/Convert-IscsiVirtualDisk.md index 8a87bb3fe3..9b5a1a535b 100644 --- a/docset/winserver2012-ps/iscsitarget/Convert-IscsiVirtualDisk.md +++ b/docset/winserver2012-ps/iscsitarget/Convert-IscsiVirtualDisk.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget -online version: https://docs.microsoft.com/powershell/module/iscsitarget/convert-iscsivirtualdisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/convert-iscsivirtualdisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/iscsitarget/Dismount-IscsiVirtualDiskSnapshot.md b/docset/winserver2012-ps/iscsitarget/Dismount-IscsiVirtualDiskSnapshot.md index 1a37adbc38..7b97aae565 100644 --- a/docset/winserver2012-ps/iscsitarget/Dismount-IscsiVirtualDiskSnapshot.md +++ b/docset/winserver2012-ps/iscsitarget/Dismount-IscsiVirtualDiskSnapshot.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget -online version: https://docs.microsoft.com/powershell/module/iscsitarget/dismount-iscsivirtualdisksnapshot?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/dismount-iscsivirtualdisksnapshot?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/iscsitarget/Expand-IscsiVirtualDisk.md b/docset/winserver2012-ps/iscsitarget/Expand-IscsiVirtualDisk.md index 1cae638ee4..4cb6d7f36e 100644 --- a/docset/winserver2012-ps/iscsitarget/Expand-IscsiVirtualDisk.md +++ b/docset/winserver2012-ps/iscsitarget/Expand-IscsiVirtualDisk.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget -online version: https://docs.microsoft.com/powershell/module/iscsitarget/expand-iscsivirtualdisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/expand-iscsivirtualdisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/iscsitarget/Export-IscsiVirtualDiskSnapshot.md b/docset/winserver2012-ps/iscsitarget/Export-IscsiVirtualDiskSnapshot.md index cf06432b9e..7999d500ff 100644 --- a/docset/winserver2012-ps/iscsitarget/Export-IscsiVirtualDiskSnapshot.md +++ b/docset/winserver2012-ps/iscsitarget/Export-IscsiVirtualDiskSnapshot.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget -online version: https://docs.microsoft.com/powershell/module/iscsitarget/export-iscsivirtualdisksnapshot?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/export-iscsivirtualdisksnapshot?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/iscsitarget/Get-IscsiServerTarget.md b/docset/winserver2012-ps/iscsitarget/Get-IscsiServerTarget.md index 5efdec7d65..0bbcf285d2 100644 --- a/docset/winserver2012-ps/iscsitarget/Get-IscsiServerTarget.md +++ b/docset/winserver2012-ps/iscsitarget/Get-IscsiServerTarget.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget -online version: https://docs.microsoft.com/powershell/module/iscsitarget/get-iscsiservertarget?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/get-iscsiservertarget?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/iscsitarget/Get-IscsiTargetServerSetting.md b/docset/winserver2012-ps/iscsitarget/Get-IscsiTargetServerSetting.md index 416feda910..d5a2fdfc26 100644 --- a/docset/winserver2012-ps/iscsitarget/Get-IscsiTargetServerSetting.md +++ b/docset/winserver2012-ps/iscsitarget/Get-IscsiTargetServerSetting.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget -online version: https://docs.microsoft.com/powershell/module/iscsitarget/get-iscsitargetserversetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/get-iscsitargetserversetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/iscsitarget/Get-IscsiVirtualDisk.md b/docset/winserver2012-ps/iscsitarget/Get-IscsiVirtualDisk.md index b3859e4a13..cff8aa1237 100644 --- a/docset/winserver2012-ps/iscsitarget/Get-IscsiVirtualDisk.md +++ b/docset/winserver2012-ps/iscsitarget/Get-IscsiVirtualDisk.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget -online version: https://docs.microsoft.com/powershell/module/iscsitarget/get-iscsivirtualdisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/get-iscsivirtualdisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/iscsitarget/Get-IscsiVirtualDiskSnapshot.md b/docset/winserver2012-ps/iscsitarget/Get-IscsiVirtualDiskSnapshot.md index a917a3dfc4..c530799720 100644 --- a/docset/winserver2012-ps/iscsitarget/Get-IscsiVirtualDiskSnapshot.md +++ b/docset/winserver2012-ps/iscsitarget/Get-IscsiVirtualDiskSnapshot.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget -online version: https://docs.microsoft.com/powershell/module/iscsitarget/get-iscsivirtualdisksnapshot?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/get-iscsivirtualdisksnapshot?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/iscsitarget/Import-IscsiVirtualDisk.md b/docset/winserver2012-ps/iscsitarget/Import-IscsiVirtualDisk.md index 16906c220c..5e1ded39d6 100644 --- a/docset/winserver2012-ps/iscsitarget/Import-IscsiVirtualDisk.md +++ b/docset/winserver2012-ps/iscsitarget/Import-IscsiVirtualDisk.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget -online version: https://docs.microsoft.com/powershell/module/iscsitarget/import-iscsivirtualdisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/import-iscsivirtualdisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/iscsitarget/Mount-IscsiVirtualDiskSnapshot.md b/docset/winserver2012-ps/iscsitarget/Mount-IscsiVirtualDiskSnapshot.md index eef0437181..ba9117ff30 100644 --- a/docset/winserver2012-ps/iscsitarget/Mount-IscsiVirtualDiskSnapshot.md +++ b/docset/winserver2012-ps/iscsitarget/Mount-IscsiVirtualDiskSnapshot.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget -online version: https://docs.microsoft.com/powershell/module/iscsitarget/mount-iscsivirtualdisksnapshot?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/mount-iscsivirtualdisksnapshot?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/iscsitarget/New-IscsiServerTarget.md b/docset/winserver2012-ps/iscsitarget/New-IscsiServerTarget.md index 0466675562..1ec3030089 100644 --- a/docset/winserver2012-ps/iscsitarget/New-IscsiServerTarget.md +++ b/docset/winserver2012-ps/iscsitarget/New-IscsiServerTarget.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget -online version: https://docs.microsoft.com/powershell/module/iscsitarget/new-iscsiservertarget?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/new-iscsiservertarget?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/iscsitarget/New-IscsiVirtualDisk.md b/docset/winserver2012-ps/iscsitarget/New-IscsiVirtualDisk.md index f8e7de5aeb..2e3c203d10 100644 --- a/docset/winserver2012-ps/iscsitarget/New-IscsiVirtualDisk.md +++ b/docset/winserver2012-ps/iscsitarget/New-IscsiVirtualDisk.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget -online version: https://docs.microsoft.com/powershell/module/iscsitarget/new-iscsivirtualdisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/new-iscsivirtualdisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/iscsitarget/Remove-IscsiServerTarget.md b/docset/winserver2012-ps/iscsitarget/Remove-IscsiServerTarget.md index 00900a63ca..e96d8b6b07 100644 --- a/docset/winserver2012-ps/iscsitarget/Remove-IscsiServerTarget.md +++ b/docset/winserver2012-ps/iscsitarget/Remove-IscsiServerTarget.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget -online version: https://docs.microsoft.com/powershell/module/iscsitarget/remove-iscsiservertarget?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/remove-iscsiservertarget?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/iscsitarget/Remove-IscsiVirtualDisk.md b/docset/winserver2012-ps/iscsitarget/Remove-IscsiVirtualDisk.md index b2f85f16bf..837ce38e7f 100644 --- a/docset/winserver2012-ps/iscsitarget/Remove-IscsiVirtualDisk.md +++ b/docset/winserver2012-ps/iscsitarget/Remove-IscsiVirtualDisk.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget -online version: https://docs.microsoft.com/powershell/module/iscsitarget/remove-iscsivirtualdisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/remove-iscsivirtualdisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/iscsitarget/Remove-IscsiVirtualDiskSnapshot.md b/docset/winserver2012-ps/iscsitarget/Remove-IscsiVirtualDiskSnapshot.md index 6baa8d19a8..69d5f902d3 100644 --- a/docset/winserver2012-ps/iscsitarget/Remove-IscsiVirtualDiskSnapshot.md +++ b/docset/winserver2012-ps/iscsitarget/Remove-IscsiVirtualDiskSnapshot.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget -online version: https://docs.microsoft.com/powershell/module/iscsitarget/remove-iscsivirtualdisksnapshot?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/remove-iscsivirtualdisksnapshot?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/iscsitarget/Remove-IscsiVirtualDiskTargetMapping.md b/docset/winserver2012-ps/iscsitarget/Remove-IscsiVirtualDiskTargetMapping.md index 7234148026..5f496ea765 100644 --- a/docset/winserver2012-ps/iscsitarget/Remove-IscsiVirtualDiskTargetMapping.md +++ b/docset/winserver2012-ps/iscsitarget/Remove-IscsiVirtualDiskTargetMapping.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget -online version: https://docs.microsoft.com/powershell/module/iscsitarget/remove-iscsivirtualdisktargetmapping?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/remove-iscsivirtualdisktargetmapping?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/iscsitarget/Restore-IscsiVirtualDisk.md b/docset/winserver2012-ps/iscsitarget/Restore-IscsiVirtualDisk.md index c5242d3f16..4b2d822c26 100644 --- a/docset/winserver2012-ps/iscsitarget/Restore-IscsiVirtualDisk.md +++ b/docset/winserver2012-ps/iscsitarget/Restore-IscsiVirtualDisk.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget -online version: https://docs.microsoft.com/powershell/module/iscsitarget/restore-iscsivirtualdisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/restore-iscsivirtualdisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/iscsitarget/Set-IscsiServerTarget.md b/docset/winserver2012-ps/iscsitarget/Set-IscsiServerTarget.md index 5bb2b4ff8c..0be83ea456 100644 --- a/docset/winserver2012-ps/iscsitarget/Set-IscsiServerTarget.md +++ b/docset/winserver2012-ps/iscsitarget/Set-IscsiServerTarget.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget -online version: https://docs.microsoft.com/powershell/module/iscsitarget/set-iscsiservertarget?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/set-iscsiservertarget?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/iscsitarget/Set-IscsiTargetServerSetting.md b/docset/winserver2012-ps/iscsitarget/Set-IscsiTargetServerSetting.md index 016b3775da..a9358a4b62 100644 --- a/docset/winserver2012-ps/iscsitarget/Set-IscsiTargetServerSetting.md +++ b/docset/winserver2012-ps/iscsitarget/Set-IscsiTargetServerSetting.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget -online version: https://docs.microsoft.com/powershell/module/iscsitarget/set-iscsitargetserversetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/set-iscsitargetserversetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/iscsitarget/Set-IscsiVirtualDisk.md b/docset/winserver2012-ps/iscsitarget/Set-IscsiVirtualDisk.md index 2e2a6ac67d..6641769a53 100644 --- a/docset/winserver2012-ps/iscsitarget/Set-IscsiVirtualDisk.md +++ b/docset/winserver2012-ps/iscsitarget/Set-IscsiVirtualDisk.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget -online version: https://docs.microsoft.com/powershell/module/iscsitarget/set-iscsivirtualdisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/set-iscsivirtualdisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/iscsitarget/Set-IscsiVirtualDiskSnapshot.md b/docset/winserver2012-ps/iscsitarget/Set-IscsiVirtualDiskSnapshot.md index 7bebcc0259..31c9cf37dd 100644 --- a/docset/winserver2012-ps/iscsitarget/Set-IscsiVirtualDiskSnapshot.md +++ b/docset/winserver2012-ps/iscsitarget/Set-IscsiVirtualDiskSnapshot.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget -online version: https://docs.microsoft.com/powershell/module/iscsitarget/set-iscsivirtualdisksnapshot?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/set-iscsivirtualdisksnapshot?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/kds/Add-KdsRootKey.md b/docset/winserver2012-ps/kds/Add-KdsRootKey.md index 1c2524cdd2..b14c6522ab 100644 --- a/docset/winserver2012-ps/kds/Add-KdsRootKey.md +++ b/docset/winserver2012-ps/kds/Add-KdsRootKey.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.KeyDistributionService.Cmdlets.dll-Help.xml Module Name: KDS -online version: https://docs.microsoft.com/powershell/module/kds/add-kdsrootkey?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/kds/add-kdsrootkey?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/kds/Clear-KdsCache.md b/docset/winserver2012-ps/kds/Clear-KdsCache.md index 52db3f0aee..32811c8249 100644 --- a/docset/winserver2012-ps/kds/Clear-KdsCache.md +++ b/docset/winserver2012-ps/kds/Clear-KdsCache.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.KeyDistributionService.Cmdlets.dll-Help.xml Module Name: KDS -online version: https://docs.microsoft.com/powershell/module/kds/clear-kdscache?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/kds/clear-kdscache?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/kds/Get-KdsConfiguration.md b/docset/winserver2012-ps/kds/Get-KdsConfiguration.md index b548a14604..2b69c7b5b3 100644 --- a/docset/winserver2012-ps/kds/Get-KdsConfiguration.md +++ b/docset/winserver2012-ps/kds/Get-KdsConfiguration.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.KeyDistributionService.Cmdlets.dll-Help.xml Module Name: KDS -online version: https://docs.microsoft.com/powershell/module/kds/get-kdsconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/kds/get-kdsconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/kds/Get-KdsRootKey.md b/docset/winserver2012-ps/kds/Get-KdsRootKey.md index 104611d9a7..1ea5af259e 100644 --- a/docset/winserver2012-ps/kds/Get-KdsRootKey.md +++ b/docset/winserver2012-ps/kds/Get-KdsRootKey.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.KeyDistributionService.Cmdlets.dll-Help.xml Module Name: KDS -online version: https://docs.microsoft.com/powershell/module/kds/get-kdsrootkey?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/kds/get-kdsrootkey?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/kds/Set-KdsConfiguration.md b/docset/winserver2012-ps/kds/Set-KdsConfiguration.md index dbc085cb56..4873619314 100644 --- a/docset/winserver2012-ps/kds/Set-KdsConfiguration.md +++ b/docset/winserver2012-ps/kds/Set-KdsConfiguration.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.KeyDistributionService.Cmdlets.dll-Help.xml Module Name: KDS -online version: https://docs.microsoft.com/powershell/module/kds/set-kdsconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/kds/set-kdsconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/kds/Test-KdsRootKey.md b/docset/winserver2012-ps/kds/Test-KdsRootKey.md index 12d2f0fced..86820f8d73 100644 --- a/docset/winserver2012-ps/kds/Test-KdsRootKey.md +++ b/docset/winserver2012-ps/kds/Test-KdsRootKey.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.KeyDistributionService.Cmdlets.dll-Help.xml Module Name: KDS -online version: https://docs.microsoft.com/powershell/module/kds/test-kdsrootkey?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/kds/test-kdsrootkey?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/mmagent/Disable-MMAgent.md b/docset/winserver2012-ps/mmagent/Disable-MMAgent.md index f5d628f349..e277f5eaf5 100644 --- a/docset/winserver2012-ps/mmagent/Disable-MMAgent.md +++ b/docset/winserver2012-ps/mmagent/Disable-MMAgent.md @@ -1,7 +1,7 @@ --- external help file: MMAgent_Cmdlets.xml Module Name: MMAgent -online version: https://docs.microsoft.com/powershell/module/mmagent/disable-mmagent?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mmagent/disable-mmagent?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/mmagent/Enable-MMAgent.md b/docset/winserver2012-ps/mmagent/Enable-MMAgent.md index 40eb9eccdc..315e327ea5 100644 --- a/docset/winserver2012-ps/mmagent/Enable-MMAgent.md +++ b/docset/winserver2012-ps/mmagent/Enable-MMAgent.md @@ -1,7 +1,7 @@ --- external help file: MMAgent_Cmdlets.xml Module Name: MMAgent -online version: https://docs.microsoft.com/powershell/module/mmagent/enable-mmagent?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mmagent/enable-mmagent?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/mmagent/Get-MMAgent.md b/docset/winserver2012-ps/mmagent/Get-MMAgent.md index 57faae712a..b69afeb549 100644 --- a/docset/winserver2012-ps/mmagent/Get-MMAgent.md +++ b/docset/winserver2012-ps/mmagent/Get-MMAgent.md @@ -1,7 +1,7 @@ --- external help file: MMAgent_Cmdlets.xml Module Name: MMAgent -online version: https://docs.microsoft.com/powershell/module/mmagent/get-mmagent?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mmagent/get-mmagent?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/mmagent/Set-MMAgent.md b/docset/winserver2012-ps/mmagent/Set-MMAgent.md index 5db4b4a865..c3aea41be9 100644 --- a/docset/winserver2012-ps/mmagent/Set-MMAgent.md +++ b/docset/winserver2012-ps/mmagent/Set-MMAgent.md @@ -1,7 +1,7 @@ --- external help file: MMAgent_Cmdlets.xml Module Name: MMAgent -online version: https://docs.microsoft.com/powershell/module/mmagent/set-mmagent?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mmagent/set-mmagent?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/mpio/Clear-MSDSMSupportedHW.md b/docset/winserver2012-ps/mpio/Clear-MSDSMSupportedHW.md index d0843d6bc5..944f8bb239 100644 --- a/docset/winserver2012-ps/mpio/Clear-MSDSMSupportedHW.md +++ b/docset/winserver2012-ps/mpio/Clear-MSDSMSupportedHW.md @@ -1,7 +1,7 @@ --- external help file: MPIO_Cmdlets.xml Module Name: MPIO -online version: https://docs.microsoft.com/powershell/module/mpio/clear-msdsmsupportedhw?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/clear-msdsmsupportedhw?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/mpio/Disable-MSDSMAutomaticClaim.md b/docset/winserver2012-ps/mpio/Disable-MSDSMAutomaticClaim.md index 72bb917297..1f0f6e8b90 100644 --- a/docset/winserver2012-ps/mpio/Disable-MSDSMAutomaticClaim.md +++ b/docset/winserver2012-ps/mpio/Disable-MSDSMAutomaticClaim.md @@ -1,7 +1,7 @@ --- external help file: MPIO_Cmdlets.xml Module Name: MPIO -online version: https://docs.microsoft.com/powershell/module/mpio/disable-msdsmautomaticclaim?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/disable-msdsmautomaticclaim?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/mpio/Enable-MSDSMAutomaticClaim.md b/docset/winserver2012-ps/mpio/Enable-MSDSMAutomaticClaim.md index 87c549d7bb..fb31a109f3 100644 --- a/docset/winserver2012-ps/mpio/Enable-MSDSMAutomaticClaim.md +++ b/docset/winserver2012-ps/mpio/Enable-MSDSMAutomaticClaim.md @@ -1,7 +1,7 @@ --- external help file: MPIO_Cmdlets.xml Module Name: MPIO -online version: https://docs.microsoft.com/powershell/module/mpio/enable-msdsmautomaticclaim?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/enable-msdsmautomaticclaim?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/mpio/Get-MPIOAvailableHW.md b/docset/winserver2012-ps/mpio/Get-MPIOAvailableHW.md index 4cfcf5b835..5b23fd9992 100644 --- a/docset/winserver2012-ps/mpio/Get-MPIOAvailableHW.md +++ b/docset/winserver2012-ps/mpio/Get-MPIOAvailableHW.md @@ -1,7 +1,7 @@ --- external help file: MPIO_Cmdlets.xml Module Name: MPIO -online version: https://docs.microsoft.com/powershell/module/mpio/get-mpioavailablehw?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/get-mpioavailablehw?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/mpio/Get-MPIOSetting.md b/docset/winserver2012-ps/mpio/Get-MPIOSetting.md index 19f1da0944..82757c2fc4 100644 --- a/docset/winserver2012-ps/mpio/Get-MPIOSetting.md +++ b/docset/winserver2012-ps/mpio/Get-MPIOSetting.md @@ -1,7 +1,7 @@ --- external help file: MPIO_Cmdlets.xml Module Name: MPIO -online version: https://docs.microsoft.com/powershell/module/mpio/get-mpiosetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/get-mpiosetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/mpio/Get-MSDSMAutomaticClaimSettings.md b/docset/winserver2012-ps/mpio/Get-MSDSMAutomaticClaimSettings.md index 2a4aa780a3..fb139d6769 100644 --- a/docset/winserver2012-ps/mpio/Get-MSDSMAutomaticClaimSettings.md +++ b/docset/winserver2012-ps/mpio/Get-MSDSMAutomaticClaimSettings.md @@ -1,7 +1,7 @@ --- external help file: MPIO_Cmdlets.xml Module Name: MPIO -online version: https://docs.microsoft.com/powershell/module/mpio/get-msdsmautomaticclaimsettings?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/get-msdsmautomaticclaimsettings?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/mpio/Get-MSDSMGlobalDefaultLoadBalancePolicy.md b/docset/winserver2012-ps/mpio/Get-MSDSMGlobalDefaultLoadBalancePolicy.md index c79a287505..14d439eeb7 100644 --- a/docset/winserver2012-ps/mpio/Get-MSDSMGlobalDefaultLoadBalancePolicy.md +++ b/docset/winserver2012-ps/mpio/Get-MSDSMGlobalDefaultLoadBalancePolicy.md @@ -1,7 +1,7 @@ --- external help file: MPIO_Cmdlets.xml Module Name: MPIO -online version: https://docs.microsoft.com/powershell/module/mpio/get-msdsmglobaldefaultloadbalancepolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/get-msdsmglobaldefaultloadbalancepolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/mpio/Get-MSDSMSupportedHW.md b/docset/winserver2012-ps/mpio/Get-MSDSMSupportedHW.md index 89b760eceb..7b7fc76202 100644 --- a/docset/winserver2012-ps/mpio/Get-MSDSMSupportedHW.md +++ b/docset/winserver2012-ps/mpio/Get-MSDSMSupportedHW.md @@ -1,7 +1,7 @@ --- external help file: MPIO_Cmdlets.xml Module Name: MPIO -online version: https://docs.microsoft.com/powershell/module/mpio/get-msdsmsupportedhw?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/get-msdsmsupportedhw?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/mpio/New-MSDSMSupportedHW.md b/docset/winserver2012-ps/mpio/New-MSDSMSupportedHW.md index 7013afa54f..ae0eeae7ea 100644 --- a/docset/winserver2012-ps/mpio/New-MSDSMSupportedHW.md +++ b/docset/winserver2012-ps/mpio/New-MSDSMSupportedHW.md @@ -1,7 +1,7 @@ --- external help file: MPIO_Cmdlets.xml Module Name: MPIO -online version: https://docs.microsoft.com/powershell/module/mpio/new-msdsmsupportedhw?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/new-msdsmsupportedhw?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/mpio/Remove-MSDSMSupportedHW.md b/docset/winserver2012-ps/mpio/Remove-MSDSMSupportedHW.md index 56d624ba2f..5aa2302be4 100644 --- a/docset/winserver2012-ps/mpio/Remove-MSDSMSupportedHW.md +++ b/docset/winserver2012-ps/mpio/Remove-MSDSMSupportedHW.md @@ -1,7 +1,7 @@ --- external help file: MPIO_Cmdlets.xml Module Name: MPIO -online version: https://docs.microsoft.com/powershell/module/mpio/remove-msdsmsupportedhw?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/remove-msdsmsupportedhw?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/mpio/Set-MPIOSetting.md b/docset/winserver2012-ps/mpio/Set-MPIOSetting.md index d433d03df7..805051d502 100644 --- a/docset/winserver2012-ps/mpio/Set-MPIOSetting.md +++ b/docset/winserver2012-ps/mpio/Set-MPIOSetting.md @@ -1,7 +1,7 @@ --- external help file: MPIO_Cmdlets.xml Module Name: MPIO -online version: https://docs.microsoft.com/powershell/module/mpio/set-mpiosetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/set-mpiosetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/mpio/Set-MSDSMGlobalDefaultLoadBalancePolicy.md b/docset/winserver2012-ps/mpio/Set-MSDSMGlobalDefaultLoadBalancePolicy.md index cc0ca6e113..735ff1bb99 100644 --- a/docset/winserver2012-ps/mpio/Set-MSDSMGlobalDefaultLoadBalancePolicy.md +++ b/docset/winserver2012-ps/mpio/Set-MSDSMGlobalDefaultLoadBalancePolicy.md @@ -1,7 +1,7 @@ --- external help file: MPIO_Cmdlets.xml Module Name: MPIO -online version: https://docs.microsoft.com/powershell/module/mpio/set-msdsmglobaldefaultloadbalancepolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/set-msdsmglobaldefaultloadbalancepolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/mpio/Update-MPIOClaimedHW.md b/docset/winserver2012-ps/mpio/Update-MPIOClaimedHW.md index 82d9dc4c67..0665c4a1d0 100644 --- a/docset/winserver2012-ps/mpio/Update-MPIOClaimedHW.md +++ b/docset/winserver2012-ps/mpio/Update-MPIOClaimedHW.md @@ -1,7 +1,7 @@ --- external help file: MPIO_Cmdlets.xml Module Name: MPIO -online version: https://docs.microsoft.com/powershell/module/mpio/update-mpioclaimedhw?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/update-mpioclaimedhw?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msdtc/Add-DtcClusterTMMapping.md b/docset/winserver2012-ps/msdtc/Add-DtcClusterTMMapping.md index f637ed94f6..d12ec2ca4d 100644 --- a/docset/winserver2012-ps/msdtc/Add-DtcClusterTMMapping.md +++ b/docset/winserver2012-ps/msdtc/Add-DtcClusterTMMapping.md @@ -1,7 +1,7 @@ --- external help file: MsDTC_Cmdlets.xml Module Name: MsDTC -online version: https://docs.microsoft.com/powershell/module/msdtc/add-dtcclustertmmapping?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/add-dtcclustertmmapping?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msdtc/Complete-DtcDiagnosticTransaction.md b/docset/winserver2012-ps/msdtc/Complete-DtcDiagnosticTransaction.md index 2e63051ad2..329c6e6b6b 100644 --- a/docset/winserver2012-ps/msdtc/Complete-DtcDiagnosticTransaction.md +++ b/docset/winserver2012-ps/msdtc/Complete-DtcDiagnosticTransaction.md @@ -1,7 +1,7 @@ --- external help file: MsDTC_Cmdlets.xml Module Name: MsDTC -online version: https://docs.microsoft.com/powershell/module/msdtc/complete-dtcdiagnostictransaction?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/complete-dtcdiagnostictransaction?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msdtc/Get-Dtc.md b/docset/winserver2012-ps/msdtc/Get-Dtc.md index fc4d6c9d83..e6ba0ccc95 100644 --- a/docset/winserver2012-ps/msdtc/Get-Dtc.md +++ b/docset/winserver2012-ps/msdtc/Get-Dtc.md @@ -1,7 +1,7 @@ --- external help file: MsDTC_Cmdlets.xml Module Name: MsDTC -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtc?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtc?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msdtc/Get-DtcAdvancedHostSetting.md b/docset/winserver2012-ps/msdtc/Get-DtcAdvancedHostSetting.md index 1801b9fe33..1790cdd726 100644 --- a/docset/winserver2012-ps/msdtc/Get-DtcAdvancedHostSetting.md +++ b/docset/winserver2012-ps/msdtc/Get-DtcAdvancedHostSetting.md @@ -1,7 +1,7 @@ --- external help file: MsDTC_Cmdlets.xml Module Name: MsDTC -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtcadvancedhostsetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtcadvancedhostsetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msdtc/Get-DtcAdvancedSetting.md b/docset/winserver2012-ps/msdtc/Get-DtcAdvancedSetting.md index 3a70a97742..9196670d5f 100644 --- a/docset/winserver2012-ps/msdtc/Get-DtcAdvancedSetting.md +++ b/docset/winserver2012-ps/msdtc/Get-DtcAdvancedSetting.md @@ -1,7 +1,7 @@ --- external help file: MsDTC_Cmdlets.xml Module Name: MsDTC -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtcadvancedsetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtcadvancedsetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msdtc/Get-DtcClusterDefault.md b/docset/winserver2012-ps/msdtc/Get-DtcClusterDefault.md index f82280c172..b1e3176d1c 100644 --- a/docset/winserver2012-ps/msdtc/Get-DtcClusterDefault.md +++ b/docset/winserver2012-ps/msdtc/Get-DtcClusterDefault.md @@ -1,7 +1,7 @@ --- external help file: MsDTC_Cmdlets.xml Module Name: MsDTC -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtcclusterdefault?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtcclusterdefault?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msdtc/Get-DtcClusterTMMapping.md b/docset/winserver2012-ps/msdtc/Get-DtcClusterTMMapping.md index bcb40aef1c..9e938834fa 100644 --- a/docset/winserver2012-ps/msdtc/Get-DtcClusterTMMapping.md +++ b/docset/winserver2012-ps/msdtc/Get-DtcClusterTMMapping.md @@ -1,7 +1,7 @@ --- external help file: MsDTC_Cmdlets.xml Module Name: MsDTC -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtcclustertmmapping?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtcclustertmmapping?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msdtc/Get-DtcDefault.md b/docset/winserver2012-ps/msdtc/Get-DtcDefault.md index 02113c3c92..a7b3f9acc2 100644 --- a/docset/winserver2012-ps/msdtc/Get-DtcDefault.md +++ b/docset/winserver2012-ps/msdtc/Get-DtcDefault.md @@ -1,7 +1,7 @@ --- external help file: MsDTC_Cmdlets.xml Module Name: MsDTC -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtcdefault?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtcdefault?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msdtc/Get-DtcLog.md b/docset/winserver2012-ps/msdtc/Get-DtcLog.md index 6dcd000546..b5ad520d67 100644 --- a/docset/winserver2012-ps/msdtc/Get-DtcLog.md +++ b/docset/winserver2012-ps/msdtc/Get-DtcLog.md @@ -1,7 +1,7 @@ --- external help file: MsDTC_Cmdlets.xml Module Name: MsDTC -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtclog?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtclog?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msdtc/Get-DtcNetworkSetting.md b/docset/winserver2012-ps/msdtc/Get-DtcNetworkSetting.md index ec25f37e4f..d8ca912e9c 100644 --- a/docset/winserver2012-ps/msdtc/Get-DtcNetworkSetting.md +++ b/docset/winserver2012-ps/msdtc/Get-DtcNetworkSetting.md @@ -1,7 +1,7 @@ --- external help file: MsDTC_Cmdlets.xml Module Name: MsDTC -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtcnetworksetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtcnetworksetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msdtc/Get-DtcTransaction.md b/docset/winserver2012-ps/msdtc/Get-DtcTransaction.md index 95cad776a1..96e1ce5eed 100644 --- a/docset/winserver2012-ps/msdtc/Get-DtcTransaction.md +++ b/docset/winserver2012-ps/msdtc/Get-DtcTransaction.md @@ -1,7 +1,7 @@ --- external help file: MsDTC_Cmdlets.xml Module Name: MsDTC -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtctransaction?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtctransaction?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msdtc/Get-DtcTransactionsStatistics.md b/docset/winserver2012-ps/msdtc/Get-DtcTransactionsStatistics.md index 9722c8ee34..729c93317d 100644 --- a/docset/winserver2012-ps/msdtc/Get-DtcTransactionsStatistics.md +++ b/docset/winserver2012-ps/msdtc/Get-DtcTransactionsStatistics.md @@ -1,7 +1,7 @@ --- external help file: MsDTC_Cmdlets.xml Module Name: MsDTC -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtctransactionsstatistics?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtctransactionsstatistics?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msdtc/Get-DtcTransactionsTraceSession.md b/docset/winserver2012-ps/msdtc/Get-DtcTransactionsTraceSession.md index 21c889d96f..7241efc1b7 100644 --- a/docset/winserver2012-ps/msdtc/Get-DtcTransactionsTraceSession.md +++ b/docset/winserver2012-ps/msdtc/Get-DtcTransactionsTraceSession.md @@ -1,7 +1,7 @@ --- external help file: MsDTC_Cmdlets.xml Module Name: MsDTC -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtctransactionstracesession?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtctransactionstracesession?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msdtc/Get-DtcTransactionsTraceSetting.md b/docset/winserver2012-ps/msdtc/Get-DtcTransactionsTraceSetting.md index 82ee867a74..b4d87bf644 100644 --- a/docset/winserver2012-ps/msdtc/Get-DtcTransactionsTraceSetting.md +++ b/docset/winserver2012-ps/msdtc/Get-DtcTransactionsTraceSetting.md @@ -1,7 +1,7 @@ --- external help file: MsDTC_Cmdlets.xml Module Name: MsDTC -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtctransactionstracesetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtctransactionstracesetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msdtc/Install-Dtc.md b/docset/winserver2012-ps/msdtc/Install-Dtc.md index f8fa90b68e..381650cb69 100644 --- a/docset/winserver2012-ps/msdtc/Install-Dtc.md +++ b/docset/winserver2012-ps/msdtc/Install-Dtc.md @@ -1,7 +1,7 @@ --- external help file: MsDTC_Cmdlets.xml Module Name: MsDTC -online version: https://docs.microsoft.com/powershell/module/msdtc/install-dtc?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/install-dtc?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msdtc/Join-DtcDiagnosticResourceManager.md b/docset/winserver2012-ps/msdtc/Join-DtcDiagnosticResourceManager.md index c13889a703..6c85b5fa88 100644 --- a/docset/winserver2012-ps/msdtc/Join-DtcDiagnosticResourceManager.md +++ b/docset/winserver2012-ps/msdtc/Join-DtcDiagnosticResourceManager.md @@ -1,7 +1,7 @@ --- external help file: MsDTC_Cmdlets.xml Module Name: MsDTC -online version: https://docs.microsoft.com/powershell/module/msdtc/join-dtcdiagnosticresourcemanager?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/join-dtcdiagnosticresourcemanager?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msdtc/New-DtcDiagnosticTransaction.md b/docset/winserver2012-ps/msdtc/New-DtcDiagnosticTransaction.md index 6bff7ad117..d9c99468ae 100644 --- a/docset/winserver2012-ps/msdtc/New-DtcDiagnosticTransaction.md +++ b/docset/winserver2012-ps/msdtc/New-DtcDiagnosticTransaction.md @@ -1,7 +1,7 @@ --- external help file: MsDTC_Cmdlets.xml Module Name: MsDTC -online version: https://docs.microsoft.com/powershell/module/msdtc/new-dtcdiagnostictransaction?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/new-dtcdiagnostictransaction?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msdtc/Receive-DtcDiagnosticTransaction.md b/docset/winserver2012-ps/msdtc/Receive-DtcDiagnosticTransaction.md index 1fd664f8ff..9ff47c4e16 100644 --- a/docset/winserver2012-ps/msdtc/Receive-DtcDiagnosticTransaction.md +++ b/docset/winserver2012-ps/msdtc/Receive-DtcDiagnosticTransaction.md @@ -1,7 +1,7 @@ --- external help file: MsDTC_Cmdlets.xml Module Name: MsDTC -online version: https://docs.microsoft.com/powershell/module/msdtc/receive-dtcdiagnostictransaction?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/receive-dtcdiagnostictransaction?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msdtc/Remove-DtcClusterTMMapping.md b/docset/winserver2012-ps/msdtc/Remove-DtcClusterTMMapping.md index 16f2521cfa..fb4b126b52 100644 --- a/docset/winserver2012-ps/msdtc/Remove-DtcClusterTMMapping.md +++ b/docset/winserver2012-ps/msdtc/Remove-DtcClusterTMMapping.md @@ -1,7 +1,7 @@ --- external help file: MsDTC_Cmdlets.xml Module Name: MsDTC -online version: https://docs.microsoft.com/powershell/module/msdtc/remove-dtcclustertmmapping?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/remove-dtcclustertmmapping?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msdtc/Reset-DtcLog.md b/docset/winserver2012-ps/msdtc/Reset-DtcLog.md index 48585a9a95..fd92070697 100644 --- a/docset/winserver2012-ps/msdtc/Reset-DtcLog.md +++ b/docset/winserver2012-ps/msdtc/Reset-DtcLog.md @@ -1,7 +1,7 @@ --- external help file: MsDTC_Cmdlets.xml Module Name: MsDTC -online version: https://docs.microsoft.com/powershell/module/msdtc/reset-dtclog?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/reset-dtclog?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msdtc/Send-DtcDiagnosticTransaction.md b/docset/winserver2012-ps/msdtc/Send-DtcDiagnosticTransaction.md index eb80b58dbf..878c4a155a 100644 --- a/docset/winserver2012-ps/msdtc/Send-DtcDiagnosticTransaction.md +++ b/docset/winserver2012-ps/msdtc/Send-DtcDiagnosticTransaction.md @@ -1,7 +1,7 @@ --- external help file: MsDTC_Cmdlets.xml Module Name: MsDTC -online version: https://docs.microsoft.com/powershell/module/msdtc/send-dtcdiagnostictransaction?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/send-dtcdiagnostictransaction?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msdtc/Set-DtcAdvancedHostSetting.md b/docset/winserver2012-ps/msdtc/Set-DtcAdvancedHostSetting.md index 4932af133d..74f21515a2 100644 --- a/docset/winserver2012-ps/msdtc/Set-DtcAdvancedHostSetting.md +++ b/docset/winserver2012-ps/msdtc/Set-DtcAdvancedHostSetting.md @@ -1,7 +1,7 @@ --- external help file: MsDTC_Cmdlets.xml Module Name: MsDTC -online version: https://docs.microsoft.com/powershell/module/msdtc/set-dtcadvancedhostsetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/set-dtcadvancedhostsetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msdtc/Set-DtcAdvancedSetting.md b/docset/winserver2012-ps/msdtc/Set-DtcAdvancedSetting.md index 85ddb06e06..9bb74d5ee8 100644 --- a/docset/winserver2012-ps/msdtc/Set-DtcAdvancedSetting.md +++ b/docset/winserver2012-ps/msdtc/Set-DtcAdvancedSetting.md @@ -1,7 +1,7 @@ --- external help file: MsDTC_Cmdlets.xml Module Name: MsDTC -online version: https://docs.microsoft.com/powershell/module/msdtc/set-dtcadvancedsetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/set-dtcadvancedsetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msdtc/Set-DtcClusterDefault.md b/docset/winserver2012-ps/msdtc/Set-DtcClusterDefault.md index b52d87c0ab..a56fc4be14 100644 --- a/docset/winserver2012-ps/msdtc/Set-DtcClusterDefault.md +++ b/docset/winserver2012-ps/msdtc/Set-DtcClusterDefault.md @@ -1,7 +1,7 @@ --- external help file: MsDTC_Cmdlets.xml Module Name: MsDTC -online version: https://docs.microsoft.com/powershell/module/msdtc/set-dtcclusterdefault?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/set-dtcclusterdefault?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msdtc/Set-DtcClusterTMMapping.md b/docset/winserver2012-ps/msdtc/Set-DtcClusterTMMapping.md index dcb0b429ab..bf1311b197 100644 --- a/docset/winserver2012-ps/msdtc/Set-DtcClusterTMMapping.md +++ b/docset/winserver2012-ps/msdtc/Set-DtcClusterTMMapping.md @@ -1,7 +1,7 @@ --- external help file: MsDTC_Cmdlets.xml Module Name: MsDTC -online version: https://docs.microsoft.com/powershell/module/msdtc/set-dtcclustertmmapping?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/set-dtcclustertmmapping?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msdtc/Set-DtcDefault.md b/docset/winserver2012-ps/msdtc/Set-DtcDefault.md index 3abf6b8fcf..a6d17cce7f 100644 --- a/docset/winserver2012-ps/msdtc/Set-DtcDefault.md +++ b/docset/winserver2012-ps/msdtc/Set-DtcDefault.md @@ -1,7 +1,7 @@ --- external help file: MsDTC_Cmdlets.xml Module Name: MsDTC -online version: https://docs.microsoft.com/powershell/module/msdtc/set-dtcdefault?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/set-dtcdefault?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msdtc/Set-DtcLog.md b/docset/winserver2012-ps/msdtc/Set-DtcLog.md index b43e28f093..bfea0b3d2b 100644 --- a/docset/winserver2012-ps/msdtc/Set-DtcLog.md +++ b/docset/winserver2012-ps/msdtc/Set-DtcLog.md @@ -1,7 +1,7 @@ --- external help file: MsDTC_Cmdlets.xml Module Name: MsDTC -online version: https://docs.microsoft.com/powershell/module/msdtc/set-dtclog?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/set-dtclog?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msdtc/Set-DtcNetworkSetting.md b/docset/winserver2012-ps/msdtc/Set-DtcNetworkSetting.md index 495dcffc7d..ca301dbf41 100644 --- a/docset/winserver2012-ps/msdtc/Set-DtcNetworkSetting.md +++ b/docset/winserver2012-ps/msdtc/Set-DtcNetworkSetting.md @@ -1,7 +1,7 @@ --- external help file: MsDTC_Cmdlets.xml Module Name: MsDTC -online version: https://docs.microsoft.com/powershell/module/msdtc/set-dtcnetworksetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/set-dtcnetworksetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msdtc/Set-DtcTransaction.md b/docset/winserver2012-ps/msdtc/Set-DtcTransaction.md index f9903b5a57..726df5f047 100644 --- a/docset/winserver2012-ps/msdtc/Set-DtcTransaction.md +++ b/docset/winserver2012-ps/msdtc/Set-DtcTransaction.md @@ -1,7 +1,7 @@ --- external help file: MsDTC_Cmdlets.xml Module Name: MsDTC -online version: https://docs.microsoft.com/powershell/module/msdtc/set-dtctransaction?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/set-dtctransaction?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msdtc/Set-DtcTransactionsTraceSession.md b/docset/winserver2012-ps/msdtc/Set-DtcTransactionsTraceSession.md index a5a4ae4c98..d8f04ebb33 100644 --- a/docset/winserver2012-ps/msdtc/Set-DtcTransactionsTraceSession.md +++ b/docset/winserver2012-ps/msdtc/Set-DtcTransactionsTraceSession.md @@ -1,7 +1,7 @@ --- external help file: MsDTC_Cmdlets.xml Module Name: MsDTC -online version: https://docs.microsoft.com/powershell/module/msdtc/set-dtctransactionstracesession?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/set-dtctransactionstracesession?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msdtc/Set-DtcTransactionsTraceSetting.md b/docset/winserver2012-ps/msdtc/Set-DtcTransactionsTraceSetting.md index c476a4bf20..8e1ffd2c81 100644 --- a/docset/winserver2012-ps/msdtc/Set-DtcTransactionsTraceSetting.md +++ b/docset/winserver2012-ps/msdtc/Set-DtcTransactionsTraceSetting.md @@ -1,7 +1,7 @@ --- external help file: MsDTC_Cmdlets.xml Module Name: MsDTC -online version: https://docs.microsoft.com/powershell/module/msdtc/set-dtctransactionstracesetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/set-dtctransactionstracesetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msdtc/Start-Dtc.md b/docset/winserver2012-ps/msdtc/Start-Dtc.md index d55846c2d5..f4f9e5a383 100644 --- a/docset/winserver2012-ps/msdtc/Start-Dtc.md +++ b/docset/winserver2012-ps/msdtc/Start-Dtc.md @@ -1,7 +1,7 @@ --- external help file: MsDTC_Cmdlets.xml Module Name: MsDTC -online version: https://docs.microsoft.com/powershell/module/msdtc/start-dtc?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/start-dtc?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msdtc/Start-DtcDiagnosticResourceManager.md b/docset/winserver2012-ps/msdtc/Start-DtcDiagnosticResourceManager.md index 80c169a5ed..b59510b524 100644 --- a/docset/winserver2012-ps/msdtc/Start-DtcDiagnosticResourceManager.md +++ b/docset/winserver2012-ps/msdtc/Start-DtcDiagnosticResourceManager.md @@ -1,7 +1,7 @@ --- external help file: MsDTC_Cmdlets.xml Module Name: MsDTC -online version: https://docs.microsoft.com/powershell/module/msdtc/start-dtcdiagnosticresourcemanager?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/start-dtcdiagnosticresourcemanager?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msdtc/Start-DtcTransactionsTraceSession.md b/docset/winserver2012-ps/msdtc/Start-DtcTransactionsTraceSession.md index 170996c8ea..27c4651700 100644 --- a/docset/winserver2012-ps/msdtc/Start-DtcTransactionsTraceSession.md +++ b/docset/winserver2012-ps/msdtc/Start-DtcTransactionsTraceSession.md @@ -1,7 +1,7 @@ --- external help file: MsDTC_Cmdlets.xml Module Name: MsDTC -online version: https://docs.microsoft.com/powershell/module/msdtc/start-dtctransactionstracesession?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/start-dtctransactionstracesession?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msdtc/Stop-Dtc.md b/docset/winserver2012-ps/msdtc/Stop-Dtc.md index 04063e1936..cd966c38b5 100644 --- a/docset/winserver2012-ps/msdtc/Stop-Dtc.md +++ b/docset/winserver2012-ps/msdtc/Stop-Dtc.md @@ -1,7 +1,7 @@ --- external help file: MsDTC_Cmdlets.xml Module Name: MsDTC -online version: https://docs.microsoft.com/powershell/module/msdtc/stop-dtc?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/stop-dtc?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msdtc/Stop-DtcDiagnosticResourceManager.md b/docset/winserver2012-ps/msdtc/Stop-DtcDiagnosticResourceManager.md index 700c2a7491..e1e24479bc 100644 --- a/docset/winserver2012-ps/msdtc/Stop-DtcDiagnosticResourceManager.md +++ b/docset/winserver2012-ps/msdtc/Stop-DtcDiagnosticResourceManager.md @@ -1,7 +1,7 @@ --- external help file: MsDTC_Cmdlets.xml Module Name: MsDTC -online version: https://docs.microsoft.com/powershell/module/msdtc/stop-dtcdiagnosticresourcemanager?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/stop-dtcdiagnosticresourcemanager?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msdtc/Stop-DtcTransactionsTraceSession.md b/docset/winserver2012-ps/msdtc/Stop-DtcTransactionsTraceSession.md index 1b628e4798..ca527d5b2f 100644 --- a/docset/winserver2012-ps/msdtc/Stop-DtcTransactionsTraceSession.md +++ b/docset/winserver2012-ps/msdtc/Stop-DtcTransactionsTraceSession.md @@ -1,7 +1,7 @@ --- external help file: MsDTC_Cmdlets.xml Module Name: MsDTC -online version: https://docs.microsoft.com/powershell/module/msdtc/stop-dtctransactionstracesession?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/stop-dtctransactionstracesession?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msdtc/Test-Dtc.md b/docset/winserver2012-ps/msdtc/Test-Dtc.md index 3f4017e5ee..53187c8699 100644 --- a/docset/winserver2012-ps/msdtc/Test-Dtc.md +++ b/docset/winserver2012-ps/msdtc/Test-Dtc.md @@ -1,7 +1,7 @@ --- external help file: MsDTC_Cmdlets.xml Module Name: MsDTC -online version: https://docs.microsoft.com/powershell/module/msdtc/test-dtc?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/test-dtc?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msdtc/Undo-DtcDiagnosticTransaction.md b/docset/winserver2012-ps/msdtc/Undo-DtcDiagnosticTransaction.md index 48be94d27e..98e8a614f6 100644 --- a/docset/winserver2012-ps/msdtc/Undo-DtcDiagnosticTransaction.md +++ b/docset/winserver2012-ps/msdtc/Undo-DtcDiagnosticTransaction.md @@ -1,7 +1,7 @@ --- external help file: MsDTC_Cmdlets.xml Module Name: MsDTC -online version: https://docs.microsoft.com/powershell/module/msdtc/undo-dtcdiagnostictransaction?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/undo-dtcdiagnostictransaction?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msdtc/Uninstall-Dtc.md b/docset/winserver2012-ps/msdtc/Uninstall-Dtc.md index 66b522dd35..c707f9e577 100644 --- a/docset/winserver2012-ps/msdtc/Uninstall-Dtc.md +++ b/docset/winserver2012-ps/msdtc/Uninstall-Dtc.md @@ -1,7 +1,7 @@ --- external help file: MsDTC_Cmdlets.xml Module Name: MsDTC -online version: https://docs.microsoft.com/powershell/module/msdtc/uninstall-dtc?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/uninstall-dtc?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msdtc/Write-DtcTransactionsTraceSession.md b/docset/winserver2012-ps/msdtc/Write-DtcTransactionsTraceSession.md index 5b2278d73b..a7a4fc7019 100644 --- a/docset/winserver2012-ps/msdtc/Write-DtcTransactionsTraceSession.md +++ b/docset/winserver2012-ps/msdtc/Write-DtcTransactionsTraceSession.md @@ -1,7 +1,7 @@ --- external help file: MsDTC_Cmdlets.xml Module Name: MsDTC -online version: https://docs.microsoft.com/powershell/module/msdtc/write-dtctransactionstracesession?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/write-dtctransactionstracesession?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msmq/Clear-MsmqOutgoingQueue.md b/docset/winserver2012-ps/msmq/Clear-MsmqOutgoingQueue.md index cf77dd268d..32a499607a 100644 --- a/docset/winserver2012-ps/msmq/Clear-MsmqOutgoingQueue.md +++ b/docset/winserver2012-ps/msmq/Clear-MsmqOutgoingQueue.md @@ -1,7 +1,7 @@ --- external help file: MSMQ_Cmdlets.xml Module Name: MSMQ -online version: https://docs.microsoft.com/powershell/module/msmq/clear-msmqoutgoingqueue?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/clear-msmqoutgoingqueue?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msmq/Clear-MsmqQueue.md b/docset/winserver2012-ps/msmq/Clear-MsmqQueue.md index de837a6cd8..1382c6b806 100644 --- a/docset/winserver2012-ps/msmq/Clear-MsmqQueue.md +++ b/docset/winserver2012-ps/msmq/Clear-MsmqQueue.md @@ -1,7 +1,7 @@ --- external help file: MSMQ_Cmdlets.xml Module Name: MSMQ -online version: https://docs.microsoft.com/powershell/module/msmq/clear-msmqqueue?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/clear-msmqqueue?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msmq/Enable-MsmqCertificate.md b/docset/winserver2012-ps/msmq/Enable-MsmqCertificate.md index 24521a7c9e..6ef63613ad 100644 --- a/docset/winserver2012-ps/msmq/Enable-MsmqCertificate.md +++ b/docset/winserver2012-ps/msmq/Enable-MsmqCertificate.md @@ -1,7 +1,7 @@ --- external help file: MSMQ_Cmdlets.xml Module Name: MSMQ -online version: https://docs.microsoft.com/powershell/module/msmq/enable-msmqcertificate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/enable-msmqcertificate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msmq/Get-MsmqCertificate.md b/docset/winserver2012-ps/msmq/Get-MsmqCertificate.md index ef683dab90..6c9f01121d 100644 --- a/docset/winserver2012-ps/msmq/Get-MsmqCertificate.md +++ b/docset/winserver2012-ps/msmq/Get-MsmqCertificate.md @@ -1,7 +1,7 @@ --- external help file: MSMQ_Cmdlets.xml Module Name: MSMQ -online version: https://docs.microsoft.com/powershell/module/msmq/get-msmqcertificate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/get-msmqcertificate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msmq/Get-MsmqOutgoingQueue.md b/docset/winserver2012-ps/msmq/Get-MsmqOutgoingQueue.md index 0e686b6762..d8497cb681 100644 --- a/docset/winserver2012-ps/msmq/Get-MsmqOutgoingQueue.md +++ b/docset/winserver2012-ps/msmq/Get-MsmqOutgoingQueue.md @@ -1,7 +1,7 @@ --- external help file: MSMQ_Cmdlets.xml Module Name: MSMQ -online version: https://docs.microsoft.com/powershell/module/msmq/get-msmqoutgoingqueue?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/get-msmqoutgoingqueue?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msmq/Get-MsmqQueue.md b/docset/winserver2012-ps/msmq/Get-MsmqQueue.md index d7458f36f9..b8ed4619a4 100644 --- a/docset/winserver2012-ps/msmq/Get-MsmqQueue.md +++ b/docset/winserver2012-ps/msmq/Get-MsmqQueue.md @@ -1,7 +1,7 @@ --- external help file: MSMQ_Cmdlets.xml Module Name: MSMQ -online version: https://docs.microsoft.com/powershell/module/msmq/get-msmqqueue?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/get-msmqqueue?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msmq/Get-MsmqQueueACL.md b/docset/winserver2012-ps/msmq/Get-MsmqQueueACL.md index 1c4d3cc8ee..decfb11c5f 100644 --- a/docset/winserver2012-ps/msmq/Get-MsmqQueueACL.md +++ b/docset/winserver2012-ps/msmq/Get-MsmqQueueACL.md @@ -1,7 +1,7 @@ --- external help file: MSMQ_Cmdlets.xml Module Name: MSMQ -online version: https://docs.microsoft.com/powershell/module/msmq/get-msmqqueueacl?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/get-msmqqueueacl?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msmq/Get-MsmqQueueManager.md b/docset/winserver2012-ps/msmq/Get-MsmqQueueManager.md index 97a0c3bd44..76914bb692 100644 --- a/docset/winserver2012-ps/msmq/Get-MsmqQueueManager.md +++ b/docset/winserver2012-ps/msmq/Get-MsmqQueueManager.md @@ -1,7 +1,7 @@ --- external help file: MSMQ_Cmdlets.xml Module Name: MSMQ -online version: https://docs.microsoft.com/powershell/module/msmq/get-msmqqueuemanager?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/get-msmqqueuemanager?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msmq/Get-MsmqQueueManagerACL.md b/docset/winserver2012-ps/msmq/Get-MsmqQueueManagerACL.md index d6648694d9..17c20ff387 100644 --- a/docset/winserver2012-ps/msmq/Get-MsmqQueueManagerACL.md +++ b/docset/winserver2012-ps/msmq/Get-MsmqQueueManagerACL.md @@ -1,7 +1,7 @@ --- external help file: MSMQ_Cmdlets.xml Module Name: MSMQ -online version: https://docs.microsoft.com/powershell/module/msmq/get-msmqqueuemanageracl?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/get-msmqqueuemanageracl?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msmq/Move-MsmqMessage.md b/docset/winserver2012-ps/msmq/Move-MsmqMessage.md index c3840c4b99..8f9cf86bd5 100644 --- a/docset/winserver2012-ps/msmq/Move-MsmqMessage.md +++ b/docset/winserver2012-ps/msmq/Move-MsmqMessage.md @@ -1,7 +1,7 @@ --- external help file: MSMQ_Cmdlets.xml Module Name: MSMQ -online version: https://docs.microsoft.com/powershell/module/msmq/move-msmqmessage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/move-msmqmessage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msmq/New-MsmqMessage.md b/docset/winserver2012-ps/msmq/New-MsmqMessage.md index 97e95ad5b0..3be27b2716 100644 --- a/docset/winserver2012-ps/msmq/New-MsmqMessage.md +++ b/docset/winserver2012-ps/msmq/New-MsmqMessage.md @@ -1,7 +1,7 @@ --- external help file: MSMQ_Cmdlets.xml Module Name: MSMQ -online version: https://docs.microsoft.com/powershell/module/msmq/new-msmqmessage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/new-msmqmessage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msmq/New-MsmqQueue.md b/docset/winserver2012-ps/msmq/New-MsmqQueue.md index a5f02fbc52..f9e280c82c 100644 --- a/docset/winserver2012-ps/msmq/New-MsmqQueue.md +++ b/docset/winserver2012-ps/msmq/New-MsmqQueue.md @@ -1,7 +1,7 @@ --- external help file: MSMQ_Cmdlets.xml Module Name: MSMQ -online version: https://docs.microsoft.com/powershell/module/msmq/new-msmqqueue?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/new-msmqqueue?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msmq/Receive-MsmqQueue.md b/docset/winserver2012-ps/msmq/Receive-MsmqQueue.md index 59debdb36e..ff08c3b1cd 100644 --- a/docset/winserver2012-ps/msmq/Receive-MsmqQueue.md +++ b/docset/winserver2012-ps/msmq/Receive-MsmqQueue.md @@ -1,7 +1,7 @@ --- external help file: MSMQ_Cmdlets.xml Module Name: MSMQ -online version: https://docs.microsoft.com/powershell/module/msmq/receive-msmqqueue?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/receive-msmqqueue?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msmq/Remove-MsmqCertificate.md b/docset/winserver2012-ps/msmq/Remove-MsmqCertificate.md index 7bea16db47..ceda6ecc0f 100644 --- a/docset/winserver2012-ps/msmq/Remove-MsmqCertificate.md +++ b/docset/winserver2012-ps/msmq/Remove-MsmqCertificate.md @@ -1,7 +1,7 @@ --- external help file: MSMQ_Cmdlets.xml Module Name: MSMQ -online version: https://docs.microsoft.com/powershell/module/msmq/remove-msmqcertificate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/remove-msmqcertificate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msmq/Remove-MsmqQueue.md b/docset/winserver2012-ps/msmq/Remove-MsmqQueue.md index 14c86ea687..cbe481b23f 100644 --- a/docset/winserver2012-ps/msmq/Remove-MsmqQueue.md +++ b/docset/winserver2012-ps/msmq/Remove-MsmqQueue.md @@ -1,7 +1,7 @@ --- external help file: MSMQ_Cmdlets.xml Module Name: MSMQ -online version: https://docs.microsoft.com/powershell/module/msmq/remove-msmqqueue?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/remove-msmqqueue?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msmq/Resume-MsmqOutgoingQueue.md b/docset/winserver2012-ps/msmq/Resume-MsmqOutgoingQueue.md index a6da17dec0..4a5e20f540 100644 --- a/docset/winserver2012-ps/msmq/Resume-MsmqOutgoingQueue.md +++ b/docset/winserver2012-ps/msmq/Resume-MsmqOutgoingQueue.md @@ -1,7 +1,7 @@ --- external help file: MSMQ_Cmdlets.xml Module Name: MSMQ -online version: https://docs.microsoft.com/powershell/module/msmq/resume-msmqoutgoingqueue?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/resume-msmqoutgoingqueue?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msmq/Send-MsmqQueue.md b/docset/winserver2012-ps/msmq/Send-MsmqQueue.md index d4d77af094..5f1de968d4 100644 --- a/docset/winserver2012-ps/msmq/Send-MsmqQueue.md +++ b/docset/winserver2012-ps/msmq/Send-MsmqQueue.md @@ -1,7 +1,7 @@ --- external help file: MSMQ_Cmdlets.xml Module Name: MSMQ -online version: https://docs.microsoft.com/powershell/module/msmq/send-msmqqueue?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/send-msmqqueue?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msmq/Set-MsmqQueue.md b/docset/winserver2012-ps/msmq/Set-MsmqQueue.md index da1dd78b96..98d9650a30 100644 --- a/docset/winserver2012-ps/msmq/Set-MsmqQueue.md +++ b/docset/winserver2012-ps/msmq/Set-MsmqQueue.md @@ -1,7 +1,7 @@ --- external help file: MSMQ_Cmdlets.xml Module Name: MSMQ -online version: https://docs.microsoft.com/powershell/module/msmq/set-msmqqueue?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/set-msmqqueue?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msmq/Set-MsmqQueueACL.md b/docset/winserver2012-ps/msmq/Set-MsmqQueueACL.md index 39664952fd..02ff9063ce 100644 --- a/docset/winserver2012-ps/msmq/Set-MsmqQueueACL.md +++ b/docset/winserver2012-ps/msmq/Set-MsmqQueueACL.md @@ -1,7 +1,7 @@ --- external help file: MSMQ_Cmdlets.xml Module Name: MSMQ -online version: https://docs.microsoft.com/powershell/module/msmq/set-msmqqueueacl?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/set-msmqqueueacl?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msmq/Set-MsmqQueueManager.md b/docset/winserver2012-ps/msmq/Set-MsmqQueueManager.md index 6579397f4e..0db6dc3196 100644 --- a/docset/winserver2012-ps/msmq/Set-MsmqQueueManager.md +++ b/docset/winserver2012-ps/msmq/Set-MsmqQueueManager.md @@ -1,7 +1,7 @@ --- external help file: MSMQ_Cmdlets.xml Module Name: MSMQ -online version: https://docs.microsoft.com/powershell/module/msmq/set-msmqqueuemanager?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/set-msmqqueuemanager?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msmq/Set-MsmqQueueManagerACL.md b/docset/winserver2012-ps/msmq/Set-MsmqQueueManagerACL.md index 431977c59e..ff368ebd08 100644 --- a/docset/winserver2012-ps/msmq/Set-MsmqQueueManagerACL.md +++ b/docset/winserver2012-ps/msmq/Set-MsmqQueueManagerACL.md @@ -1,7 +1,7 @@ --- external help file: MSMQ_Cmdlets.xml Module Name: MSMQ -online version: https://docs.microsoft.com/powershell/module/msmq/set-msmqqueuemanageracl?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/set-msmqqueuemanageracl?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/msmq/Suspend-MsmqOutgoingQueue.md b/docset/winserver2012-ps/msmq/Suspend-MsmqOutgoingQueue.md index eac5d08acc..680f0887b9 100644 --- a/docset/winserver2012-ps/msmq/Suspend-MsmqOutgoingQueue.md +++ b/docset/winserver2012-ps/msmq/Suspend-MsmqOutgoingQueue.md @@ -1,7 +1,7 @@ --- external help file: MSMQ_Cmdlets.xml Module Name: MSMQ -online version: https://docs.microsoft.com/powershell/module/msmq/suspend-msmqoutgoingqueue?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/suspend-msmqoutgoingqueue?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Disable-NetAdapter.md b/docset/winserver2012-ps/netadapter/Disable-NetAdapter.md index cb8ae7a1bc..f8d5790da2 100644 --- a/docset/winserver2012-ps/netadapter/Disable-NetAdapter.md +++ b/docset/winserver2012-ps/netadapter/Disable-NetAdapter.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Disable-NetAdapterBinding.md b/docset/winserver2012-ps/netadapter/Disable-NetAdapterBinding.md index a47cb71787..300bb1a4dd 100644 --- a/docset/winserver2012-ps/netadapter/Disable-NetAdapterBinding.md +++ b/docset/winserver2012-ps/netadapter/Disable-NetAdapterBinding.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapterbinding?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapterbinding?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Disable-NetAdapterChecksumOffload.md b/docset/winserver2012-ps/netadapter/Disable-NetAdapterChecksumOffload.md index 4bb9477805..cba964063e 100644 --- a/docset/winserver2012-ps/netadapter/Disable-NetAdapterChecksumOffload.md +++ b/docset/winserver2012-ps/netadapter/Disable-NetAdapterChecksumOffload.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapterchecksumoffload?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapterchecksumoffload?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Disable-NetAdapterEncapsulatedPacketTaskOffload.md b/docset/winserver2012-ps/netadapter/Disable-NetAdapterEncapsulatedPacketTaskOffload.md index c39b64850a..8902d8fd27 100644 --- a/docset/winserver2012-ps/netadapter/Disable-NetAdapterEncapsulatedPacketTaskOffload.md +++ b/docset/winserver2012-ps/netadapter/Disable-NetAdapterEncapsulatedPacketTaskOffload.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapterencapsulatedpackettaskoffload?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapterencapsulatedpackettaskoffload?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Disable-NetAdapterIPsecOffload.md b/docset/winserver2012-ps/netadapter/Disable-NetAdapterIPsecOffload.md index 98ba1d1b90..6ad555b55e 100644 --- a/docset/winserver2012-ps/netadapter/Disable-NetAdapterIPsecOffload.md +++ b/docset/winserver2012-ps/netadapter/Disable-NetAdapterIPsecOffload.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapteripsecoffload?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapteripsecoffload?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Disable-NetAdapterLso.md b/docset/winserver2012-ps/netadapter/Disable-NetAdapterLso.md index c0c40c4c80..b746b933d7 100644 --- a/docset/winserver2012-ps/netadapter/Disable-NetAdapterLso.md +++ b/docset/winserver2012-ps/netadapter/Disable-NetAdapterLso.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapterlso?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapterlso?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Disable-NetAdapterPowerManagement.md b/docset/winserver2012-ps/netadapter/Disable-NetAdapterPowerManagement.md index cc6144846f..c412dfaf82 100644 --- a/docset/winserver2012-ps/netadapter/Disable-NetAdapterPowerManagement.md +++ b/docset/winserver2012-ps/netadapter/Disable-NetAdapterPowerManagement.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapterpowermanagement?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapterpowermanagement?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Disable-NetAdapterQos.md b/docset/winserver2012-ps/netadapter/Disable-NetAdapterQos.md index 147e75c9a9..fa71ce07bc 100644 --- a/docset/winserver2012-ps/netadapter/Disable-NetAdapterQos.md +++ b/docset/winserver2012-ps/netadapter/Disable-NetAdapterQos.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapterqos?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapterqos?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Disable-NetAdapterRdma.md b/docset/winserver2012-ps/netadapter/Disable-NetAdapterRdma.md index 3095b51563..15487787a5 100644 --- a/docset/winserver2012-ps/netadapter/Disable-NetAdapterRdma.md +++ b/docset/winserver2012-ps/netadapter/Disable-NetAdapterRdma.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapterrdma?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapterrdma?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Disable-NetAdapterRsc.md b/docset/winserver2012-ps/netadapter/Disable-NetAdapterRsc.md index 1dc4c91c1c..4354237ab4 100644 --- a/docset/winserver2012-ps/netadapter/Disable-NetAdapterRsc.md +++ b/docset/winserver2012-ps/netadapter/Disable-NetAdapterRsc.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapterrsc?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapterrsc?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Disable-NetAdapterRss.md b/docset/winserver2012-ps/netadapter/Disable-NetAdapterRss.md index 986c94d7f8..57c2f8864f 100644 --- a/docset/winserver2012-ps/netadapter/Disable-NetAdapterRss.md +++ b/docset/winserver2012-ps/netadapter/Disable-NetAdapterRss.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapterrss?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapterrss?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Disable-NetAdapterSriov.md b/docset/winserver2012-ps/netadapter/Disable-NetAdapterSriov.md index 205c3447bd..1b5a5882f4 100644 --- a/docset/winserver2012-ps/netadapter/Disable-NetAdapterSriov.md +++ b/docset/winserver2012-ps/netadapter/Disable-NetAdapterSriov.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadaptersriov?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadaptersriov?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Disable-NetAdapterVmq.md b/docset/winserver2012-ps/netadapter/Disable-NetAdapterVmq.md index ca0556288b..f8492ba46e 100644 --- a/docset/winserver2012-ps/netadapter/Disable-NetAdapterVmq.md +++ b/docset/winserver2012-ps/netadapter/Disable-NetAdapterVmq.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadaptervmq?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadaptervmq?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Enable-NetAdapter.md b/docset/winserver2012-ps/netadapter/Enable-NetAdapter.md index 233a64aa55..43790b2de2 100644 --- a/docset/winserver2012-ps/netadapter/Enable-NetAdapter.md +++ b/docset/winserver2012-ps/netadapter/Enable-NetAdapter.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Enable-NetAdapterBinding.md b/docset/winserver2012-ps/netadapter/Enable-NetAdapterBinding.md index 49d892ece3..7220f6a484 100644 --- a/docset/winserver2012-ps/netadapter/Enable-NetAdapterBinding.md +++ b/docset/winserver2012-ps/netadapter/Enable-NetAdapterBinding.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapterbinding?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapterbinding?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Enable-NetAdapterChecksumOffload.md b/docset/winserver2012-ps/netadapter/Enable-NetAdapterChecksumOffload.md index a4fa0b438b..72277f609e 100644 --- a/docset/winserver2012-ps/netadapter/Enable-NetAdapterChecksumOffload.md +++ b/docset/winserver2012-ps/netadapter/Enable-NetAdapterChecksumOffload.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapterchecksumoffload?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapterchecksumoffload?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Enable-NetAdapterEncapsulatedPacketTaskOffload.md b/docset/winserver2012-ps/netadapter/Enable-NetAdapterEncapsulatedPacketTaskOffload.md index 0034cefa95..80f8dc4c34 100644 --- a/docset/winserver2012-ps/netadapter/Enable-NetAdapterEncapsulatedPacketTaskOffload.md +++ b/docset/winserver2012-ps/netadapter/Enable-NetAdapterEncapsulatedPacketTaskOffload.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapterencapsulatedpackettaskoffload?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapterencapsulatedpackettaskoffload?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Enable-NetAdapterIPsecOffload.md b/docset/winserver2012-ps/netadapter/Enable-NetAdapterIPsecOffload.md index 8b6aee35a2..0e7bee6492 100644 --- a/docset/winserver2012-ps/netadapter/Enable-NetAdapterIPsecOffload.md +++ b/docset/winserver2012-ps/netadapter/Enable-NetAdapterIPsecOffload.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapteripsecoffload?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapteripsecoffload?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Enable-NetAdapterLso.md b/docset/winserver2012-ps/netadapter/Enable-NetAdapterLso.md index ff9929411d..816f58b9eb 100644 --- a/docset/winserver2012-ps/netadapter/Enable-NetAdapterLso.md +++ b/docset/winserver2012-ps/netadapter/Enable-NetAdapterLso.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapterlso?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapterlso?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Enable-NetAdapterPowerManagement.md b/docset/winserver2012-ps/netadapter/Enable-NetAdapterPowerManagement.md index 11bac8621f..3246c8460f 100644 --- a/docset/winserver2012-ps/netadapter/Enable-NetAdapterPowerManagement.md +++ b/docset/winserver2012-ps/netadapter/Enable-NetAdapterPowerManagement.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapterpowermanagement?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapterpowermanagement?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Enable-NetAdapterQos.md b/docset/winserver2012-ps/netadapter/Enable-NetAdapterQos.md index 528f7e9e08..17f15530f6 100644 --- a/docset/winserver2012-ps/netadapter/Enable-NetAdapterQos.md +++ b/docset/winserver2012-ps/netadapter/Enable-NetAdapterQos.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapterqos?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapterqos?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Enable-NetAdapterRdma.md b/docset/winserver2012-ps/netadapter/Enable-NetAdapterRdma.md index 2fe823c760..6394950394 100644 --- a/docset/winserver2012-ps/netadapter/Enable-NetAdapterRdma.md +++ b/docset/winserver2012-ps/netadapter/Enable-NetAdapterRdma.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapterrdma?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapterrdma?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Enable-NetAdapterRsc.md b/docset/winserver2012-ps/netadapter/Enable-NetAdapterRsc.md index 96467878d2..ef4993ac8b 100644 --- a/docset/winserver2012-ps/netadapter/Enable-NetAdapterRsc.md +++ b/docset/winserver2012-ps/netadapter/Enable-NetAdapterRsc.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapterrsc?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapterrsc?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Enable-NetAdapterRss.md b/docset/winserver2012-ps/netadapter/Enable-NetAdapterRss.md index 64a961793f..f37d15d7a3 100644 --- a/docset/winserver2012-ps/netadapter/Enable-NetAdapterRss.md +++ b/docset/winserver2012-ps/netadapter/Enable-NetAdapterRss.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapterrss?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapterrss?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Enable-NetAdapterSriov.md b/docset/winserver2012-ps/netadapter/Enable-NetAdapterSriov.md index bd9133720e..8fb2b42545 100644 --- a/docset/winserver2012-ps/netadapter/Enable-NetAdapterSriov.md +++ b/docset/winserver2012-ps/netadapter/Enable-NetAdapterSriov.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadaptersriov?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadaptersriov?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Enable-NetAdapterVmq.md b/docset/winserver2012-ps/netadapter/Enable-NetAdapterVmq.md index 4994cbe3de..acfb0d6d56 100644 --- a/docset/winserver2012-ps/netadapter/Enable-NetAdapterVmq.md +++ b/docset/winserver2012-ps/netadapter/Enable-NetAdapterVmq.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadaptervmq?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadaptervmq?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Get-NetAdapter.md b/docset/winserver2012-ps/netadapter/Get-NetAdapter.md index ff9a3779a1..3be419e707 100644 --- a/docset/winserver2012-ps/netadapter/Get-NetAdapter.md +++ b/docset/winserver2012-ps/netadapter/Get-NetAdapter.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Get-NetAdapterAdvancedProperty.md b/docset/winserver2012-ps/netadapter/Get-NetAdapterAdvancedProperty.md index 89b0909644..9871cda548 100644 --- a/docset/winserver2012-ps/netadapter/Get-NetAdapterAdvancedProperty.md +++ b/docset/winserver2012-ps/netadapter/Get-NetAdapterAdvancedProperty.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapteradvancedproperty?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapteradvancedproperty?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Get-NetAdapterBinding.md b/docset/winserver2012-ps/netadapter/Get-NetAdapterBinding.md index b5a88bd957..8ac78dd92b 100644 --- a/docset/winserver2012-ps/netadapter/Get-NetAdapterBinding.md +++ b/docset/winserver2012-ps/netadapter/Get-NetAdapterBinding.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterbinding?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterbinding?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Get-NetAdapterChecksumOffload.md b/docset/winserver2012-ps/netadapter/Get-NetAdapterChecksumOffload.md index c105da7a2f..d41b19cb88 100644 --- a/docset/winserver2012-ps/netadapter/Get-NetAdapterChecksumOffload.md +++ b/docset/winserver2012-ps/netadapter/Get-NetAdapterChecksumOffload.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterchecksumoffload?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterchecksumoffload?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Get-NetAdapterEncapsulatedPacketTaskOffload.md b/docset/winserver2012-ps/netadapter/Get-NetAdapterEncapsulatedPacketTaskOffload.md index cbf28b767f..31957d46ba 100644 --- a/docset/winserver2012-ps/netadapter/Get-NetAdapterEncapsulatedPacketTaskOffload.md +++ b/docset/winserver2012-ps/netadapter/Get-NetAdapterEncapsulatedPacketTaskOffload.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterencapsulatedpackettaskoffload?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterencapsulatedpackettaskoffload?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Get-NetAdapterHardwareInfo.md b/docset/winserver2012-ps/netadapter/Get-NetAdapterHardwareInfo.md index b31cf26c87..e1b0502910 100644 --- a/docset/winserver2012-ps/netadapter/Get-NetAdapterHardwareInfo.md +++ b/docset/winserver2012-ps/netadapter/Get-NetAdapterHardwareInfo.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterhardwareinfo?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterhardwareinfo?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Get-NetAdapterIPsecOffload.md b/docset/winserver2012-ps/netadapter/Get-NetAdapterIPsecOffload.md index 475a040735..ee9595496d 100644 --- a/docset/winserver2012-ps/netadapter/Get-NetAdapterIPsecOffload.md +++ b/docset/winserver2012-ps/netadapter/Get-NetAdapterIPsecOffload.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapteripsecoffload?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapteripsecoffload?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Get-NetAdapterLso.md b/docset/winserver2012-ps/netadapter/Get-NetAdapterLso.md index 161074a076..139a29f6f7 100644 --- a/docset/winserver2012-ps/netadapter/Get-NetAdapterLso.md +++ b/docset/winserver2012-ps/netadapter/Get-NetAdapterLso.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterlso?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterlso?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Get-NetAdapterPowerManagement.md b/docset/winserver2012-ps/netadapter/Get-NetAdapterPowerManagement.md index 534405494e..2186f3b066 100644 --- a/docset/winserver2012-ps/netadapter/Get-NetAdapterPowerManagement.md +++ b/docset/winserver2012-ps/netadapter/Get-NetAdapterPowerManagement.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterpowermanagement?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterpowermanagement?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Get-NetAdapterQos.md b/docset/winserver2012-ps/netadapter/Get-NetAdapterQos.md index 4ea754c78b..4ed48cac64 100644 --- a/docset/winserver2012-ps/netadapter/Get-NetAdapterQos.md +++ b/docset/winserver2012-ps/netadapter/Get-NetAdapterQos.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterqos?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterqos?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Get-NetAdapterRdma.md b/docset/winserver2012-ps/netadapter/Get-NetAdapterRdma.md index b17eb06470..6dcf9a5be1 100644 --- a/docset/winserver2012-ps/netadapter/Get-NetAdapterRdma.md +++ b/docset/winserver2012-ps/netadapter/Get-NetAdapterRdma.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterrdma?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterrdma?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Get-NetAdapterRsc.md b/docset/winserver2012-ps/netadapter/Get-NetAdapterRsc.md index bdcbcccff3..462e86ad9d 100644 --- a/docset/winserver2012-ps/netadapter/Get-NetAdapterRsc.md +++ b/docset/winserver2012-ps/netadapter/Get-NetAdapterRsc.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterrsc?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterrsc?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Get-NetAdapterRss.md b/docset/winserver2012-ps/netadapter/Get-NetAdapterRss.md index bb37aa7de8..b2309e484f 100644 --- a/docset/winserver2012-ps/netadapter/Get-NetAdapterRss.md +++ b/docset/winserver2012-ps/netadapter/Get-NetAdapterRss.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterrss?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterrss?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Get-NetAdapterSriov.md b/docset/winserver2012-ps/netadapter/Get-NetAdapterSriov.md index 96cf20117b..e824b7747a 100644 --- a/docset/winserver2012-ps/netadapter/Get-NetAdapterSriov.md +++ b/docset/winserver2012-ps/netadapter/Get-NetAdapterSriov.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadaptersriov?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadaptersriov?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Get-NetAdapterSriovVf.md b/docset/winserver2012-ps/netadapter/Get-NetAdapterSriovVf.md index 0c204b3c23..f84b4f1646 100644 --- a/docset/winserver2012-ps/netadapter/Get-NetAdapterSriovVf.md +++ b/docset/winserver2012-ps/netadapter/Get-NetAdapterSriovVf.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadaptersriovvf?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadaptersriovvf?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Get-NetAdapterStatistics.md b/docset/winserver2012-ps/netadapter/Get-NetAdapterStatistics.md index 7acdc950ce..53c483e1ef 100644 --- a/docset/winserver2012-ps/netadapter/Get-NetAdapterStatistics.md +++ b/docset/winserver2012-ps/netadapter/Get-NetAdapterStatistics.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterstatistics?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterstatistics?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Get-NetAdapterVPort.md b/docset/winserver2012-ps/netadapter/Get-NetAdapterVPort.md index dd3846f889..e70bad01bd 100644 --- a/docset/winserver2012-ps/netadapter/Get-NetAdapterVPort.md +++ b/docset/winserver2012-ps/netadapter/Get-NetAdapterVPort.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadaptervport?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadaptervport?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Get-NetAdapterVmq.md b/docset/winserver2012-ps/netadapter/Get-NetAdapterVmq.md index 20e306bf1a..a3e2169c14 100644 --- a/docset/winserver2012-ps/netadapter/Get-NetAdapterVmq.md +++ b/docset/winserver2012-ps/netadapter/Get-NetAdapterVmq.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadaptervmq?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadaptervmq?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Get-NetAdapterVmqQueue.md b/docset/winserver2012-ps/netadapter/Get-NetAdapterVmqQueue.md index bf4d6032c2..0076ad7e60 100644 --- a/docset/winserver2012-ps/netadapter/Get-NetAdapterVmqQueue.md +++ b/docset/winserver2012-ps/netadapter/Get-NetAdapterVmqQueue.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadaptervmqqueue?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadaptervmqqueue?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/New-NetAdapterAdvancedProperty.md b/docset/winserver2012-ps/netadapter/New-NetAdapterAdvancedProperty.md index 1f48bc39c8..7c9f00af08 100644 --- a/docset/winserver2012-ps/netadapter/New-NetAdapterAdvancedProperty.md +++ b/docset/winserver2012-ps/netadapter/New-NetAdapterAdvancedProperty.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/new-netadapteradvancedproperty?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/new-netadapteradvancedproperty?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Remove-NetAdapterAdvancedProperty.md b/docset/winserver2012-ps/netadapter/Remove-NetAdapterAdvancedProperty.md index cb069aaa8f..42175219d3 100644 --- a/docset/winserver2012-ps/netadapter/Remove-NetAdapterAdvancedProperty.md +++ b/docset/winserver2012-ps/netadapter/Remove-NetAdapterAdvancedProperty.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/remove-netadapteradvancedproperty?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/remove-netadapteradvancedproperty?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Rename-NetAdapter.md b/docset/winserver2012-ps/netadapter/Rename-NetAdapter.md index 76e888e863..19ae5ce0b9 100644 --- a/docset/winserver2012-ps/netadapter/Rename-NetAdapter.md +++ b/docset/winserver2012-ps/netadapter/Rename-NetAdapter.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/rename-netadapter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/rename-netadapter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Reset-NetAdapterAdvancedProperty.md b/docset/winserver2012-ps/netadapter/Reset-NetAdapterAdvancedProperty.md index 4dfb5f5fe2..071bbb385f 100644 --- a/docset/winserver2012-ps/netadapter/Reset-NetAdapterAdvancedProperty.md +++ b/docset/winserver2012-ps/netadapter/Reset-NetAdapterAdvancedProperty.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/reset-netadapteradvancedproperty?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/reset-netadapteradvancedproperty?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Restart-NetAdapter.md b/docset/winserver2012-ps/netadapter/Restart-NetAdapter.md index dde54440e8..ed88124c96 100644 --- a/docset/winserver2012-ps/netadapter/Restart-NetAdapter.md +++ b/docset/winserver2012-ps/netadapter/Restart-NetAdapter.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/restart-netadapter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/restart-netadapter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Set-NetAdapter.md b/docset/winserver2012-ps/netadapter/Set-NetAdapter.md index 815702cd24..681369a154 100644 --- a/docset/winserver2012-ps/netadapter/Set-NetAdapter.md +++ b/docset/winserver2012-ps/netadapter/Set-NetAdapter.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Set-NetAdapterAdvancedProperty.md b/docset/winserver2012-ps/netadapter/Set-NetAdapterAdvancedProperty.md index 5af83704c7..a419a6b553 100644 --- a/docset/winserver2012-ps/netadapter/Set-NetAdapterAdvancedProperty.md +++ b/docset/winserver2012-ps/netadapter/Set-NetAdapterAdvancedProperty.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapteradvancedproperty?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapteradvancedproperty?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Set-NetAdapterBinding.md b/docset/winserver2012-ps/netadapter/Set-NetAdapterBinding.md index 1db18321ed..9102aeed27 100644 --- a/docset/winserver2012-ps/netadapter/Set-NetAdapterBinding.md +++ b/docset/winserver2012-ps/netadapter/Set-NetAdapterBinding.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapterbinding?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapterbinding?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Set-NetAdapterChecksumOffload.md b/docset/winserver2012-ps/netadapter/Set-NetAdapterChecksumOffload.md index 979e36dcfd..cc2effb7d5 100644 --- a/docset/winserver2012-ps/netadapter/Set-NetAdapterChecksumOffload.md +++ b/docset/winserver2012-ps/netadapter/Set-NetAdapterChecksumOffload.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapterchecksumoffload?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapterchecksumoffload?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Set-NetAdapterEncapsulatedPacketTaskOffload.md b/docset/winserver2012-ps/netadapter/Set-NetAdapterEncapsulatedPacketTaskOffload.md index e2d46fdc3a..f4e4401af7 100644 --- a/docset/winserver2012-ps/netadapter/Set-NetAdapterEncapsulatedPacketTaskOffload.md +++ b/docset/winserver2012-ps/netadapter/Set-NetAdapterEncapsulatedPacketTaskOffload.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapterencapsulatedpackettaskoffload?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapterencapsulatedpackettaskoffload?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Set-NetAdapterIPsecOffload.md b/docset/winserver2012-ps/netadapter/Set-NetAdapterIPsecOffload.md index 21b5208f37..de5add21d4 100644 --- a/docset/winserver2012-ps/netadapter/Set-NetAdapterIPsecOffload.md +++ b/docset/winserver2012-ps/netadapter/Set-NetAdapterIPsecOffload.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapteripsecoffload?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapteripsecoffload?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Set-NetAdapterLso.md b/docset/winserver2012-ps/netadapter/Set-NetAdapterLso.md index 8c44448da5..97e6ed79b6 100644 --- a/docset/winserver2012-ps/netadapter/Set-NetAdapterLso.md +++ b/docset/winserver2012-ps/netadapter/Set-NetAdapterLso.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapterlso?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapterlso?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Set-NetAdapterPowerManagement.md b/docset/winserver2012-ps/netadapter/Set-NetAdapterPowerManagement.md index 9cd126d1cb..720c2e0440 100644 --- a/docset/winserver2012-ps/netadapter/Set-NetAdapterPowerManagement.md +++ b/docset/winserver2012-ps/netadapter/Set-NetAdapterPowerManagement.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapterpowermanagement?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapterpowermanagement?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Set-NetAdapterQos.md b/docset/winserver2012-ps/netadapter/Set-NetAdapterQos.md index ebe508dfac..33b04149d9 100644 --- a/docset/winserver2012-ps/netadapter/Set-NetAdapterQos.md +++ b/docset/winserver2012-ps/netadapter/Set-NetAdapterQos.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapterqos?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapterqos?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Set-NetAdapterRdma.md b/docset/winserver2012-ps/netadapter/Set-NetAdapterRdma.md index 435f00d9a9..9461765572 100644 --- a/docset/winserver2012-ps/netadapter/Set-NetAdapterRdma.md +++ b/docset/winserver2012-ps/netadapter/Set-NetAdapterRdma.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapterrdma?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapterrdma?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Set-NetAdapterRsc.md b/docset/winserver2012-ps/netadapter/Set-NetAdapterRsc.md index 4e8c61a44e..ac11d5717f 100644 --- a/docset/winserver2012-ps/netadapter/Set-NetAdapterRsc.md +++ b/docset/winserver2012-ps/netadapter/Set-NetAdapterRsc.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapterrsc?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapterrsc?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Set-NetAdapterRss.md b/docset/winserver2012-ps/netadapter/Set-NetAdapterRss.md index dbe985cb33..1cce91e964 100644 --- a/docset/winserver2012-ps/netadapter/Set-NetAdapterRss.md +++ b/docset/winserver2012-ps/netadapter/Set-NetAdapterRss.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapterrss?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapterrss?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Set-NetAdapterSriov.md b/docset/winserver2012-ps/netadapter/Set-NetAdapterSriov.md index 438f38f580..6fa841f191 100644 --- a/docset/winserver2012-ps/netadapter/Set-NetAdapterSriov.md +++ b/docset/winserver2012-ps/netadapter/Set-NetAdapterSriov.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadaptersriov?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadaptersriov?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netadapter/Set-NetAdapterVmq.md b/docset/winserver2012-ps/netadapter/Set-NetAdapterVmq.md index 820469903c..0b5908e4aa 100644 --- a/docset/winserver2012-ps/netadapter/Set-NetAdapterVmq.md +++ b/docset/winserver2012-ps/netadapter/Set-NetAdapterVmq.md @@ -1,7 +1,7 @@ --- external help file: NetAdapter_Cmdlets.xml Module Name: NetAdapter -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadaptervmq?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadaptervmq?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netconnection/Get-NetConnectionProfile.md b/docset/winserver2012-ps/netconnection/Get-NetConnectionProfile.md index c204d534a2..4004be2837 100644 --- a/docset/winserver2012-ps/netconnection/Get-NetConnectionProfile.md +++ b/docset/winserver2012-ps/netconnection/Get-NetConnectionProfile.md @@ -2,7 +2,7 @@ external help file: MSFT_NetConnectionProfile.cdxml-help.xml Module Name: NetConnection ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netconnectionprofile/get-netconnectionprofile?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netconnectionprofile/get-netconnectionprofile?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetConnectionProfile --- diff --git a/docset/winserver2012-ps/netconnection/Set-NetConnectionProfile.md b/docset/winserver2012-ps/netconnection/Set-NetConnectionProfile.md index 27b60eaded..e04c22439d 100644 --- a/docset/winserver2012-ps/netconnection/Set-NetConnectionProfile.md +++ b/docset/winserver2012-ps/netconnection/Set-NetConnectionProfile.md @@ -2,7 +2,7 @@ external help file: MSFT_NetConnectionProfile.cdxml-help.xml Module Name: NetConnection ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netconnectionprofile/set-netconnectionprofile?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netconnectionprofile/set-netconnectionprofile?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetConnectionProfile --- diff --git a/docset/winserver2012-ps/netlbfo/Add-NetLbfoTeamMember.md b/docset/winserver2012-ps/netlbfo/Add-NetLbfoTeamMember.md index b0f4c3294a..4937d1c09c 100644 --- a/docset/winserver2012-ps/netlbfo/Add-NetLbfoTeamMember.md +++ b/docset/winserver2012-ps/netlbfo/Add-NetLbfoTeamMember.md @@ -1,7 +1,7 @@ --- external help file: NetLbfo_Cmdlets.xml Module Name: NetLbfo -online version: https://docs.microsoft.com/powershell/module/netlbfo/add-netlbfoteammember?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/add-netlbfoteammember?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netlbfo/Add-NetLbfoTeamNic.md b/docset/winserver2012-ps/netlbfo/Add-NetLbfoTeamNic.md index 63984b4094..55ac0592c7 100644 --- a/docset/winserver2012-ps/netlbfo/Add-NetLbfoTeamNic.md +++ b/docset/winserver2012-ps/netlbfo/Add-NetLbfoTeamNic.md @@ -1,7 +1,7 @@ --- external help file: NetLbfo_Cmdlets.xml Module Name: NetLbfo -online version: https://docs.microsoft.com/powershell/module/netlbfo/add-netlbfoteamnic?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/add-netlbfoteamnic?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netlbfo/Get-NetLbfoTeam.md b/docset/winserver2012-ps/netlbfo/Get-NetLbfoTeam.md index 91b997f5b6..f4d3b7e23b 100644 --- a/docset/winserver2012-ps/netlbfo/Get-NetLbfoTeam.md +++ b/docset/winserver2012-ps/netlbfo/Get-NetLbfoTeam.md @@ -1,7 +1,7 @@ --- external help file: NetLbfo_Cmdlets.xml Module Name: NetLbfo -online version: https://docs.microsoft.com/powershell/module/netlbfo/get-netlbfoteam?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/get-netlbfoteam?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netlbfo/Get-NetLbfoTeamMember.md b/docset/winserver2012-ps/netlbfo/Get-NetLbfoTeamMember.md index 7546527d00..85d486fa44 100644 --- a/docset/winserver2012-ps/netlbfo/Get-NetLbfoTeamMember.md +++ b/docset/winserver2012-ps/netlbfo/Get-NetLbfoTeamMember.md @@ -1,7 +1,7 @@ --- external help file: NetLbfo_Cmdlets.xml Module Name: NetLbfo -online version: https://docs.microsoft.com/powershell/module/netlbfo/get-netlbfoteammember?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/get-netlbfoteammember?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netlbfo/Get-NetLbfoTeamNic.md b/docset/winserver2012-ps/netlbfo/Get-NetLbfoTeamNic.md index 7024e41555..14950971ce 100644 --- a/docset/winserver2012-ps/netlbfo/Get-NetLbfoTeamNic.md +++ b/docset/winserver2012-ps/netlbfo/Get-NetLbfoTeamNic.md @@ -1,7 +1,7 @@ --- external help file: NetLbfo_Cmdlets.xml Module Name: NetLbfo -online version: https://docs.microsoft.com/powershell/module/netlbfo/get-netlbfoteamnic?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/get-netlbfoteamnic?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netlbfo/New-NetLbfoTeam.md b/docset/winserver2012-ps/netlbfo/New-NetLbfoTeam.md index 4bc6356dc3..7530d7df2b 100644 --- a/docset/winserver2012-ps/netlbfo/New-NetLbfoTeam.md +++ b/docset/winserver2012-ps/netlbfo/New-NetLbfoTeam.md @@ -1,7 +1,7 @@ --- external help file: NetLbfo_Cmdlets.xml Module Name: NetLbfo -online version: https://docs.microsoft.com/powershell/module/netlbfo/new-netlbfoteam?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/new-netlbfoteam?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netlbfo/Remove-NetLbfoTeam.md b/docset/winserver2012-ps/netlbfo/Remove-NetLbfoTeam.md index e95125fa62..3cb000ce3e 100644 --- a/docset/winserver2012-ps/netlbfo/Remove-NetLbfoTeam.md +++ b/docset/winserver2012-ps/netlbfo/Remove-NetLbfoTeam.md @@ -1,7 +1,7 @@ --- external help file: NetLbfo_Cmdlets.xml Module Name: NetLbfo -online version: https://docs.microsoft.com/powershell/module/netlbfo/remove-netlbfoteam?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/remove-netlbfoteam?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netlbfo/Remove-NetLbfoTeamMember.md b/docset/winserver2012-ps/netlbfo/Remove-NetLbfoTeamMember.md index d51d313782..33ca2aa85e 100644 --- a/docset/winserver2012-ps/netlbfo/Remove-NetLbfoTeamMember.md +++ b/docset/winserver2012-ps/netlbfo/Remove-NetLbfoTeamMember.md @@ -1,7 +1,7 @@ --- external help file: NetLbfo_Cmdlets.xml Module Name: NetLbfo -online version: https://docs.microsoft.com/powershell/module/netlbfo/remove-netlbfoteammember?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/remove-netlbfoteammember?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netlbfo/Remove-NetLbfoTeamNic.md b/docset/winserver2012-ps/netlbfo/Remove-NetLbfoTeamNic.md index e52f66e3b7..ce6bc5551d 100644 --- a/docset/winserver2012-ps/netlbfo/Remove-NetLbfoTeamNic.md +++ b/docset/winserver2012-ps/netlbfo/Remove-NetLbfoTeamNic.md @@ -1,7 +1,7 @@ --- external help file: NetLbfo_Cmdlets.xml Module Name: NetLbfo -online version: https://docs.microsoft.com/powershell/module/netlbfo/remove-netlbfoteamnic?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/remove-netlbfoteamnic?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netlbfo/Rename-NetLbfoTeam.md b/docset/winserver2012-ps/netlbfo/Rename-NetLbfoTeam.md index 560609b22c..d38a5a6adc 100644 --- a/docset/winserver2012-ps/netlbfo/Rename-NetLbfoTeam.md +++ b/docset/winserver2012-ps/netlbfo/Rename-NetLbfoTeam.md @@ -1,7 +1,7 @@ --- external help file: NetLbfo_Cmdlets.xml Module Name: NetLbfo -online version: https://docs.microsoft.com/powershell/module/netlbfo/rename-netlbfoteam?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/rename-netlbfoteam?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netlbfo/Set-NetLbfoTeam.md b/docset/winserver2012-ps/netlbfo/Set-NetLbfoTeam.md index 95e1f6f359..af49129acb 100644 --- a/docset/winserver2012-ps/netlbfo/Set-NetLbfoTeam.md +++ b/docset/winserver2012-ps/netlbfo/Set-NetLbfoTeam.md @@ -1,7 +1,7 @@ --- external help file: NetLbfo_Cmdlets.xml Module Name: NetLbfo -online version: https://docs.microsoft.com/powershell/module/netlbfo/set-netlbfoteam?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/set-netlbfoteam?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netlbfo/Set-NetLbfoTeamMember.md b/docset/winserver2012-ps/netlbfo/Set-NetLbfoTeamMember.md index 483de4db27..46aad807ff 100644 --- a/docset/winserver2012-ps/netlbfo/Set-NetLbfoTeamMember.md +++ b/docset/winserver2012-ps/netlbfo/Set-NetLbfoTeamMember.md @@ -1,7 +1,7 @@ --- external help file: NetLbfo_Cmdlets.xml Module Name: NetLbfo -online version: https://docs.microsoft.com/powershell/module/netlbfo/set-netlbfoteammember?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/set-netlbfoteammember?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netlbfo/Set-NetLbfoTeamNic.md b/docset/winserver2012-ps/netlbfo/Set-NetLbfoTeamNic.md index a16971b6d6..c792efabc5 100644 --- a/docset/winserver2012-ps/netlbfo/Set-NetLbfoTeamNic.md +++ b/docset/winserver2012-ps/netlbfo/Set-NetLbfoTeamNic.md @@ -1,7 +1,7 @@ --- external help file: NetLbfo_Cmdlets.xml Module Name: NetLbfo -online version: https://docs.microsoft.com/powershell/module/netlbfo/set-netlbfoteamnic?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/set-netlbfoteamnic?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netqos/Get-NetQosPolicy.md b/docset/winserver2012-ps/netqos/Get-NetQosPolicy.md index 31fba8d5b8..a0e3ac19ed 100644 --- a/docset/winserver2012-ps/netqos/Get-NetQosPolicy.md +++ b/docset/winserver2012-ps/netqos/Get-NetQosPolicy.md @@ -1,7 +1,7 @@ --- external help file: NetQos_Cmdlets.xml Module Name: NetQoS -online version: https://docs.microsoft.com/powershell/module/netqos/get-netqospolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netqos/get-netqospolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netqos/New-NetQosPolicy.md b/docset/winserver2012-ps/netqos/New-NetQosPolicy.md index a15e2496aa..816db3e83b 100644 --- a/docset/winserver2012-ps/netqos/New-NetQosPolicy.md +++ b/docset/winserver2012-ps/netqos/New-NetQosPolicy.md @@ -1,7 +1,7 @@ --- external help file: NetQos_Cmdlets.xml Module Name: NetQoS -online version: https://docs.microsoft.com/powershell/module/netqos/new-netqospolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netqos/new-netqospolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netqos/Remove-NetQosPolicy.md b/docset/winserver2012-ps/netqos/Remove-NetQosPolicy.md index a62677e7a9..b53dc51ba4 100644 --- a/docset/winserver2012-ps/netqos/Remove-NetQosPolicy.md +++ b/docset/winserver2012-ps/netqos/Remove-NetQosPolicy.md @@ -1,7 +1,7 @@ --- external help file: NetQos_Cmdlets.xml Module Name: NetQoS -online version: https://docs.microsoft.com/powershell/module/netqos/remove-netqospolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netqos/remove-netqospolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netqos/Set-NetQosPolicy.md b/docset/winserver2012-ps/netqos/Set-NetQosPolicy.md index 3eab01cbf9..7afbfb06d7 100644 --- a/docset/winserver2012-ps/netqos/Set-NetQosPolicy.md +++ b/docset/winserver2012-ps/netqos/Set-NetQosPolicy.md @@ -1,7 +1,7 @@ --- external help file: NetQos_Cmdlets.xml Module Name: NetQoS -online version: https://docs.microsoft.com/powershell/module/netqos/set-netqospolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netqos/set-netqospolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Copy-NetFirewallRule.md b/docset/winserver2012-ps/netsecurity/Copy-NetFirewallRule.md index dbe592cd3a..7728f59b5c 100644 --- a/docset/winserver2012-ps/netsecurity/Copy-NetFirewallRule.md +++ b/docset/winserver2012-ps/netsecurity/Copy-NetFirewallRule.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/copy-netfirewallrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/copy-netfirewallrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Copy-NetIPsecMainModeCryptoSet.md b/docset/winserver2012-ps/netsecurity/Copy-NetIPsecMainModeCryptoSet.md index 47627f5c6b..ac4dcbeec0 100644 --- a/docset/winserver2012-ps/netsecurity/Copy-NetIPsecMainModeCryptoSet.md +++ b/docset/winserver2012-ps/netsecurity/Copy-NetIPsecMainModeCryptoSet.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/copy-netipsecmainmodecryptoset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/copy-netipsecmainmodecryptoset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Copy-NetIPsecMainModeRule.md b/docset/winserver2012-ps/netsecurity/Copy-NetIPsecMainModeRule.md index 3b02617074..e1cf7a036e 100644 --- a/docset/winserver2012-ps/netsecurity/Copy-NetIPsecMainModeRule.md +++ b/docset/winserver2012-ps/netsecurity/Copy-NetIPsecMainModeRule.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/copy-netipsecmainmoderule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/copy-netipsecmainmoderule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Copy-NetIPsecPhase1AuthSet.md b/docset/winserver2012-ps/netsecurity/Copy-NetIPsecPhase1AuthSet.md index 2727b33e4b..352cae2838 100644 --- a/docset/winserver2012-ps/netsecurity/Copy-NetIPsecPhase1AuthSet.md +++ b/docset/winserver2012-ps/netsecurity/Copy-NetIPsecPhase1AuthSet.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/copy-netipsecphase1authset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/copy-netipsecphase1authset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Copy-NetIPsecPhase2AuthSet.md b/docset/winserver2012-ps/netsecurity/Copy-NetIPsecPhase2AuthSet.md index 0227064242..70694b8a15 100644 --- a/docset/winserver2012-ps/netsecurity/Copy-NetIPsecPhase2AuthSet.md +++ b/docset/winserver2012-ps/netsecurity/Copy-NetIPsecPhase2AuthSet.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/copy-netipsecphase2authset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/copy-netipsecphase2authset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Copy-NetIPsecQuickModeCryptoSet.md b/docset/winserver2012-ps/netsecurity/Copy-NetIPsecQuickModeCryptoSet.md index 26549e2467..3652002425 100644 --- a/docset/winserver2012-ps/netsecurity/Copy-NetIPsecQuickModeCryptoSet.md +++ b/docset/winserver2012-ps/netsecurity/Copy-NetIPsecQuickModeCryptoSet.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/copy-netipsecquickmodecryptoset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/copy-netipsecquickmodecryptoset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Copy-NetIPsecRule.md b/docset/winserver2012-ps/netsecurity/Copy-NetIPsecRule.md index b21175fbd9..42b31ebd96 100644 --- a/docset/winserver2012-ps/netsecurity/Copy-NetIPsecRule.md +++ b/docset/winserver2012-ps/netsecurity/Copy-NetIPsecRule.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/copy-netipsecrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/copy-netipsecrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Disable-NetFirewallRule.md b/docset/winserver2012-ps/netsecurity/Disable-NetFirewallRule.md index 350de31d1c..1c28de7c8e 100644 --- a/docset/winserver2012-ps/netsecurity/Disable-NetFirewallRule.md +++ b/docset/winserver2012-ps/netsecurity/Disable-NetFirewallRule.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/disable-netfirewallrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/disable-netfirewallrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Disable-NetIPsecMainModeRule.md b/docset/winserver2012-ps/netsecurity/Disable-NetIPsecMainModeRule.md index f1f5890abc..e63149dbd1 100644 --- a/docset/winserver2012-ps/netsecurity/Disable-NetIPsecMainModeRule.md +++ b/docset/winserver2012-ps/netsecurity/Disable-NetIPsecMainModeRule.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/disable-netipsecmainmoderule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/disable-netipsecmainmoderule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Disable-NetIPsecRule.md b/docset/winserver2012-ps/netsecurity/Disable-NetIPsecRule.md index 213a6cf0cb..88524db898 100644 --- a/docset/winserver2012-ps/netsecurity/Disable-NetIPsecRule.md +++ b/docset/winserver2012-ps/netsecurity/Disable-NetIPsecRule.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/disable-netipsecrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/disable-netipsecrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Enable-NetFirewallRule.md b/docset/winserver2012-ps/netsecurity/Enable-NetFirewallRule.md index ee94d4324a..8f45234553 100644 --- a/docset/winserver2012-ps/netsecurity/Enable-NetFirewallRule.md +++ b/docset/winserver2012-ps/netsecurity/Enable-NetFirewallRule.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/enable-netfirewallrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/enable-netfirewallrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Enable-NetIPsecMainModeRule.md b/docset/winserver2012-ps/netsecurity/Enable-NetIPsecMainModeRule.md index a5f7142367..e40308e4d7 100644 --- a/docset/winserver2012-ps/netsecurity/Enable-NetIPsecMainModeRule.md +++ b/docset/winserver2012-ps/netsecurity/Enable-NetIPsecMainModeRule.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/enable-netipsecmainmoderule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/enable-netipsecmainmoderule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Enable-NetIPsecRule.md b/docset/winserver2012-ps/netsecurity/Enable-NetIPsecRule.md index b6195f4392..8532659839 100644 --- a/docset/winserver2012-ps/netsecurity/Enable-NetIPsecRule.md +++ b/docset/winserver2012-ps/netsecurity/Enable-NetIPsecRule.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/enable-netipsecrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/enable-netipsecrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Get-DAPolicyChange.md b/docset/winserver2012-ps/netsecurity/Get-DAPolicyChange.md index ab255ba72f..013687a12f 100644 --- a/docset/winserver2012-ps/netsecurity/Get-DAPolicyChange.md +++ b/docset/winserver2012-ps/netsecurity/Get-DAPolicyChange.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-dapolicychange?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-dapolicychange?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Get-NetFirewallAddressFilter.md b/docset/winserver2012-ps/netsecurity/Get-NetFirewallAddressFilter.md index fb32c0b256..16b638a3b7 100644 --- a/docset/winserver2012-ps/netsecurity/Get-NetFirewallAddressFilter.md +++ b/docset/winserver2012-ps/netsecurity/Get-NetFirewallAddressFilter.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewalladdressfilter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netfirewalladdressfilter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Get-NetFirewallApplicationFilter.md b/docset/winserver2012-ps/netsecurity/Get-NetFirewallApplicationFilter.md index c7a4dd6cdd..2b3bbb340a 100644 --- a/docset/winserver2012-ps/netsecurity/Get-NetFirewallApplicationFilter.md +++ b/docset/winserver2012-ps/netsecurity/Get-NetFirewallApplicationFilter.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewallapplicationfilter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netfirewallapplicationfilter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Get-NetFirewallInterfaceFilter.md b/docset/winserver2012-ps/netsecurity/Get-NetFirewallInterfaceFilter.md index b7ab9ce9d0..acb370a7cc 100644 --- a/docset/winserver2012-ps/netsecurity/Get-NetFirewallInterfaceFilter.md +++ b/docset/winserver2012-ps/netsecurity/Get-NetFirewallInterfaceFilter.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewallinterfacefilter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netfirewallinterfacefilter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Get-NetFirewallInterfaceTypeFilter.md b/docset/winserver2012-ps/netsecurity/Get-NetFirewallInterfaceTypeFilter.md index 358c6a9eb0..1aed9113cc 100644 --- a/docset/winserver2012-ps/netsecurity/Get-NetFirewallInterfaceTypeFilter.md +++ b/docset/winserver2012-ps/netsecurity/Get-NetFirewallInterfaceTypeFilter.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewallinterfacetypefilter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netfirewallinterfacetypefilter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Get-NetFirewallPortFilter.md b/docset/winserver2012-ps/netsecurity/Get-NetFirewallPortFilter.md index 031b33ad86..097f3de56d 100644 --- a/docset/winserver2012-ps/netsecurity/Get-NetFirewallPortFilter.md +++ b/docset/winserver2012-ps/netsecurity/Get-NetFirewallPortFilter.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewallportfilter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netfirewallportfilter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Get-NetFirewallProfile.md b/docset/winserver2012-ps/netsecurity/Get-NetFirewallProfile.md index 73810e3dbc..12df913799 100644 --- a/docset/winserver2012-ps/netsecurity/Get-NetFirewallProfile.md +++ b/docset/winserver2012-ps/netsecurity/Get-NetFirewallProfile.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewallprofile?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netfirewallprofile?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Get-NetFirewallRule.md b/docset/winserver2012-ps/netsecurity/Get-NetFirewallRule.md index f42533bbfa..004b4b65d3 100644 --- a/docset/winserver2012-ps/netsecurity/Get-NetFirewallRule.md +++ b/docset/winserver2012-ps/netsecurity/Get-NetFirewallRule.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewallrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netfirewallrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Get-NetFirewallSecurityFilter.md b/docset/winserver2012-ps/netsecurity/Get-NetFirewallSecurityFilter.md index dc2373abad..d74945d0b5 100644 --- a/docset/winserver2012-ps/netsecurity/Get-NetFirewallSecurityFilter.md +++ b/docset/winserver2012-ps/netsecurity/Get-NetFirewallSecurityFilter.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewallsecurityfilter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netfirewallsecurityfilter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Get-NetFirewallServiceFilter.md b/docset/winserver2012-ps/netsecurity/Get-NetFirewallServiceFilter.md index ad7ccc6d28..d47995d518 100644 --- a/docset/winserver2012-ps/netsecurity/Get-NetFirewallServiceFilter.md +++ b/docset/winserver2012-ps/netsecurity/Get-NetFirewallServiceFilter.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewallservicefilter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netfirewallservicefilter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Get-NetFirewallSetting.md b/docset/winserver2012-ps/netsecurity/Get-NetFirewallSetting.md index 23e4959da9..41a4eeb9ed 100644 --- a/docset/winserver2012-ps/netsecurity/Get-NetFirewallSetting.md +++ b/docset/winserver2012-ps/netsecurity/Get-NetFirewallSetting.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewallsetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netfirewallsetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Get-NetIPsecDospSetting.md b/docset/winserver2012-ps/netsecurity/Get-NetIPsecDospSetting.md index e7598677dd..89537bb3fe 100644 --- a/docset/winserver2012-ps/netsecurity/Get-NetIPsecDospSetting.md +++ b/docset/winserver2012-ps/netsecurity/Get-NetIPsecDospSetting.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netipsecdospsetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netipsecdospsetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Get-NetIPsecMainModeCryptoSet.md b/docset/winserver2012-ps/netsecurity/Get-NetIPsecMainModeCryptoSet.md index 722c63cb96..a9258a2abb 100644 --- a/docset/winserver2012-ps/netsecurity/Get-NetIPsecMainModeCryptoSet.md +++ b/docset/winserver2012-ps/netsecurity/Get-NetIPsecMainModeCryptoSet.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netipsecmainmodecryptoset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netipsecmainmodecryptoset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Get-NetIPsecMainModeRule.md b/docset/winserver2012-ps/netsecurity/Get-NetIPsecMainModeRule.md index bc38d5fc0a..ec8b5964a8 100644 --- a/docset/winserver2012-ps/netsecurity/Get-NetIPsecMainModeRule.md +++ b/docset/winserver2012-ps/netsecurity/Get-NetIPsecMainModeRule.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netipsecmainmoderule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netipsecmainmoderule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Get-NetIPsecMainModeSA.md b/docset/winserver2012-ps/netsecurity/Get-NetIPsecMainModeSA.md index d0356aa195..511c70b785 100644 --- a/docset/winserver2012-ps/netsecurity/Get-NetIPsecMainModeSA.md +++ b/docset/winserver2012-ps/netsecurity/Get-NetIPsecMainModeSA.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netipsecmainmodesa?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netipsecmainmodesa?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Get-NetIPsecPhase1AuthSet.md b/docset/winserver2012-ps/netsecurity/Get-NetIPsecPhase1AuthSet.md index 136f6f7e03..aee163d330 100644 --- a/docset/winserver2012-ps/netsecurity/Get-NetIPsecPhase1AuthSet.md +++ b/docset/winserver2012-ps/netsecurity/Get-NetIPsecPhase1AuthSet.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netipsecphase1authset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netipsecphase1authset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Get-NetIPsecPhase2AuthSet.md b/docset/winserver2012-ps/netsecurity/Get-NetIPsecPhase2AuthSet.md index 93a4711841..703d834c6f 100644 --- a/docset/winserver2012-ps/netsecurity/Get-NetIPsecPhase2AuthSet.md +++ b/docset/winserver2012-ps/netsecurity/Get-NetIPsecPhase2AuthSet.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netipsecphase2authset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netipsecphase2authset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Get-NetIPsecQuickModeCryptoSet.md b/docset/winserver2012-ps/netsecurity/Get-NetIPsecQuickModeCryptoSet.md index e93a40fd28..bf7ce2074a 100644 --- a/docset/winserver2012-ps/netsecurity/Get-NetIPsecQuickModeCryptoSet.md +++ b/docset/winserver2012-ps/netsecurity/Get-NetIPsecQuickModeCryptoSet.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netipsecquickmodecryptoset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netipsecquickmodecryptoset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Get-NetIPsecQuickModeSA.md b/docset/winserver2012-ps/netsecurity/Get-NetIPsecQuickModeSA.md index a4afc14c07..38fab871c8 100644 --- a/docset/winserver2012-ps/netsecurity/Get-NetIPsecQuickModeSA.md +++ b/docset/winserver2012-ps/netsecurity/Get-NetIPsecQuickModeSA.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netipsecquickmodesa?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netipsecquickmodesa?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Get-NetIPsecRule.md b/docset/winserver2012-ps/netsecurity/Get-NetIPsecRule.md index 8d29a474d4..97750df98e 100644 --- a/docset/winserver2012-ps/netsecurity/Get-NetIPsecRule.md +++ b/docset/winserver2012-ps/netsecurity/Get-NetIPsecRule.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netipsecrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netipsecrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/New-NetFirewallRule.md b/docset/winserver2012-ps/netsecurity/New-NetFirewallRule.md index 28d20d5e97..e1c0d62d6b 100644 --- a/docset/winserver2012-ps/netsecurity/New-NetFirewallRule.md +++ b/docset/winserver2012-ps/netsecurity/New-NetFirewallRule.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netfirewallrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netfirewallrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/New-NetIPsecAuthProposal.md b/docset/winserver2012-ps/netsecurity/New-NetIPsecAuthProposal.md index 843dba8110..c12fc15889 100644 --- a/docset/winserver2012-ps/netsecurity/New-NetIPsecAuthProposal.md +++ b/docset/winserver2012-ps/netsecurity/New-NetIPsecAuthProposal.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netipsecauthproposal?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netipsecauthproposal?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/New-NetIPsecDospSetting.md b/docset/winserver2012-ps/netsecurity/New-NetIPsecDospSetting.md index 5839dd9808..9da3eec256 100644 --- a/docset/winserver2012-ps/netsecurity/New-NetIPsecDospSetting.md +++ b/docset/winserver2012-ps/netsecurity/New-NetIPsecDospSetting.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netipsecdospsetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netipsecdospsetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/New-NetIPsecMainModeCryptoProposal.md b/docset/winserver2012-ps/netsecurity/New-NetIPsecMainModeCryptoProposal.md index 783ac935db..adaf4fc9c4 100644 --- a/docset/winserver2012-ps/netsecurity/New-NetIPsecMainModeCryptoProposal.md +++ b/docset/winserver2012-ps/netsecurity/New-NetIPsecMainModeCryptoProposal.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netipsecmainmodecryptoproposal?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netipsecmainmodecryptoproposal?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/New-NetIPsecMainModeCryptoSet.md b/docset/winserver2012-ps/netsecurity/New-NetIPsecMainModeCryptoSet.md index 1ed24d86e1..4f6ba4aaf7 100644 --- a/docset/winserver2012-ps/netsecurity/New-NetIPsecMainModeCryptoSet.md +++ b/docset/winserver2012-ps/netsecurity/New-NetIPsecMainModeCryptoSet.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netipsecmainmodecryptoset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netipsecmainmodecryptoset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/New-NetIPsecMainModeRule.md b/docset/winserver2012-ps/netsecurity/New-NetIPsecMainModeRule.md index 4f66825038..8c02a5c514 100644 --- a/docset/winserver2012-ps/netsecurity/New-NetIPsecMainModeRule.md +++ b/docset/winserver2012-ps/netsecurity/New-NetIPsecMainModeRule.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netipsecmainmoderule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netipsecmainmoderule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/New-NetIPsecPhase1AuthSet.md b/docset/winserver2012-ps/netsecurity/New-NetIPsecPhase1AuthSet.md index a71ca8c5e1..9e7f1c8a2e 100644 --- a/docset/winserver2012-ps/netsecurity/New-NetIPsecPhase1AuthSet.md +++ b/docset/winserver2012-ps/netsecurity/New-NetIPsecPhase1AuthSet.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netipsecphase1authset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netipsecphase1authset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/New-NetIPsecPhase2AuthSet.md b/docset/winserver2012-ps/netsecurity/New-NetIPsecPhase2AuthSet.md index ef381efb71..81bdedfd63 100644 --- a/docset/winserver2012-ps/netsecurity/New-NetIPsecPhase2AuthSet.md +++ b/docset/winserver2012-ps/netsecurity/New-NetIPsecPhase2AuthSet.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netipsecphase2authset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netipsecphase2authset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/New-NetIPsecQuickModeCryptoProposal.md b/docset/winserver2012-ps/netsecurity/New-NetIPsecQuickModeCryptoProposal.md index 67a6925884..728380ed7f 100644 --- a/docset/winserver2012-ps/netsecurity/New-NetIPsecQuickModeCryptoProposal.md +++ b/docset/winserver2012-ps/netsecurity/New-NetIPsecQuickModeCryptoProposal.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netipsecquickmodecryptoproposal?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netipsecquickmodecryptoproposal?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/New-NetIPsecQuickModeCryptoSet.md b/docset/winserver2012-ps/netsecurity/New-NetIPsecQuickModeCryptoSet.md index f9390d2487..cf0f8e6e73 100644 --- a/docset/winserver2012-ps/netsecurity/New-NetIPsecQuickModeCryptoSet.md +++ b/docset/winserver2012-ps/netsecurity/New-NetIPsecQuickModeCryptoSet.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netipsecquickmodecryptoset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netipsecquickmodecryptoset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/New-NetIPsecRule.md b/docset/winserver2012-ps/netsecurity/New-NetIPsecRule.md index a4759bfd65..85f4f3598f 100644 --- a/docset/winserver2012-ps/netsecurity/New-NetIPsecRule.md +++ b/docset/winserver2012-ps/netsecurity/New-NetIPsecRule.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netipsecrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netipsecrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Open-NetGPO.md b/docset/winserver2012-ps/netsecurity/Open-NetGPO.md index 34c9e01594..099f0a2912 100644 --- a/docset/winserver2012-ps/netsecurity/Open-NetGPO.md +++ b/docset/winserver2012-ps/netsecurity/Open-NetGPO.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/open-netgpo?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/open-netgpo?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Remove-NetFirewallRule.md b/docset/winserver2012-ps/netsecurity/Remove-NetFirewallRule.md index 405d483143..9f2373d9f2 100644 --- a/docset/winserver2012-ps/netsecurity/Remove-NetFirewallRule.md +++ b/docset/winserver2012-ps/netsecurity/Remove-NetFirewallRule.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/remove-netfirewallrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/remove-netfirewallrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Remove-NetIPsecDospSetting.md b/docset/winserver2012-ps/netsecurity/Remove-NetIPsecDospSetting.md index 1a679d4dc1..c361e7a1f4 100644 --- a/docset/winserver2012-ps/netsecurity/Remove-NetIPsecDospSetting.md +++ b/docset/winserver2012-ps/netsecurity/Remove-NetIPsecDospSetting.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/remove-netipsecdospsetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/remove-netipsecdospsetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Remove-NetIPsecMainModeCryptoSet.md b/docset/winserver2012-ps/netsecurity/Remove-NetIPsecMainModeCryptoSet.md index 4992d3e381..199001ea8c 100644 --- a/docset/winserver2012-ps/netsecurity/Remove-NetIPsecMainModeCryptoSet.md +++ b/docset/winserver2012-ps/netsecurity/Remove-NetIPsecMainModeCryptoSet.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/remove-netipsecmainmodecryptoset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/remove-netipsecmainmodecryptoset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Remove-NetIPsecMainModeRule.md b/docset/winserver2012-ps/netsecurity/Remove-NetIPsecMainModeRule.md index 1f039aa061..a0628dcdce 100644 --- a/docset/winserver2012-ps/netsecurity/Remove-NetIPsecMainModeRule.md +++ b/docset/winserver2012-ps/netsecurity/Remove-NetIPsecMainModeRule.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/remove-netipsecmainmoderule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/remove-netipsecmainmoderule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Remove-NetIPsecMainModeSA.md b/docset/winserver2012-ps/netsecurity/Remove-NetIPsecMainModeSA.md index ac2faf105d..29c9653c53 100644 --- a/docset/winserver2012-ps/netsecurity/Remove-NetIPsecMainModeSA.md +++ b/docset/winserver2012-ps/netsecurity/Remove-NetIPsecMainModeSA.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/remove-netipsecmainmodesa?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/remove-netipsecmainmodesa?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Remove-NetIPsecPhase1AuthSet.md b/docset/winserver2012-ps/netsecurity/Remove-NetIPsecPhase1AuthSet.md index d6a089f57e..4a06cf0437 100644 --- a/docset/winserver2012-ps/netsecurity/Remove-NetIPsecPhase1AuthSet.md +++ b/docset/winserver2012-ps/netsecurity/Remove-NetIPsecPhase1AuthSet.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/remove-netipsecphase1authset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/remove-netipsecphase1authset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Remove-NetIPsecPhase2AuthSet.md b/docset/winserver2012-ps/netsecurity/Remove-NetIPsecPhase2AuthSet.md index 9d798902ec..3bf501f3a8 100644 --- a/docset/winserver2012-ps/netsecurity/Remove-NetIPsecPhase2AuthSet.md +++ b/docset/winserver2012-ps/netsecurity/Remove-NetIPsecPhase2AuthSet.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/remove-netipsecphase2authset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/remove-netipsecphase2authset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Remove-NetIPsecQuickModeCryptoSet.md b/docset/winserver2012-ps/netsecurity/Remove-NetIPsecQuickModeCryptoSet.md index 5e4983d09c..074c2a8ca1 100644 --- a/docset/winserver2012-ps/netsecurity/Remove-NetIPsecQuickModeCryptoSet.md +++ b/docset/winserver2012-ps/netsecurity/Remove-NetIPsecQuickModeCryptoSet.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/remove-netipsecquickmodecryptoset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/remove-netipsecquickmodecryptoset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Remove-NetIPsecQuickModeSA.md b/docset/winserver2012-ps/netsecurity/Remove-NetIPsecQuickModeSA.md index b9f165b496..ceca19032c 100644 --- a/docset/winserver2012-ps/netsecurity/Remove-NetIPsecQuickModeSA.md +++ b/docset/winserver2012-ps/netsecurity/Remove-NetIPsecQuickModeSA.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/remove-netipsecquickmodesa?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/remove-netipsecquickmodesa?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Remove-NetIPsecRule.md b/docset/winserver2012-ps/netsecurity/Remove-NetIPsecRule.md index 2b42bd45bc..9312500fb5 100644 --- a/docset/winserver2012-ps/netsecurity/Remove-NetIPsecRule.md +++ b/docset/winserver2012-ps/netsecurity/Remove-NetIPsecRule.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/remove-netipsecrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/remove-netipsecrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Rename-NetFirewallRule.md b/docset/winserver2012-ps/netsecurity/Rename-NetFirewallRule.md index a58ed5f5b6..15ab935648 100644 --- a/docset/winserver2012-ps/netsecurity/Rename-NetFirewallRule.md +++ b/docset/winserver2012-ps/netsecurity/Rename-NetFirewallRule.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/rename-netfirewallrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/rename-netfirewallrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Rename-NetIPsecMainModeCryptoSet.md b/docset/winserver2012-ps/netsecurity/Rename-NetIPsecMainModeCryptoSet.md index cf8cb37232..bb4f6d7056 100644 --- a/docset/winserver2012-ps/netsecurity/Rename-NetIPsecMainModeCryptoSet.md +++ b/docset/winserver2012-ps/netsecurity/Rename-NetIPsecMainModeCryptoSet.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/rename-netipsecmainmodecryptoset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/rename-netipsecmainmodecryptoset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Rename-NetIPsecMainModeRule.md b/docset/winserver2012-ps/netsecurity/Rename-NetIPsecMainModeRule.md index 0955dd155b..9ea0862e13 100644 --- a/docset/winserver2012-ps/netsecurity/Rename-NetIPsecMainModeRule.md +++ b/docset/winserver2012-ps/netsecurity/Rename-NetIPsecMainModeRule.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/rename-netipsecmainmoderule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/rename-netipsecmainmoderule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Rename-NetIPsecPhase1AuthSet.md b/docset/winserver2012-ps/netsecurity/Rename-NetIPsecPhase1AuthSet.md index 0bd4c4cc3f..1c4a00abc7 100644 --- a/docset/winserver2012-ps/netsecurity/Rename-NetIPsecPhase1AuthSet.md +++ b/docset/winserver2012-ps/netsecurity/Rename-NetIPsecPhase1AuthSet.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/rename-netipsecphase1authset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/rename-netipsecphase1authset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Rename-NetIPsecPhase2AuthSet.md b/docset/winserver2012-ps/netsecurity/Rename-NetIPsecPhase2AuthSet.md index 7a2eac8384..9697362d86 100644 --- a/docset/winserver2012-ps/netsecurity/Rename-NetIPsecPhase2AuthSet.md +++ b/docset/winserver2012-ps/netsecurity/Rename-NetIPsecPhase2AuthSet.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/rename-netipsecphase2authset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/rename-netipsecphase2authset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Rename-NetIPsecQuickModeCryptoSet.md b/docset/winserver2012-ps/netsecurity/Rename-NetIPsecQuickModeCryptoSet.md index a55939ba81..a829a96cf0 100644 --- a/docset/winserver2012-ps/netsecurity/Rename-NetIPsecQuickModeCryptoSet.md +++ b/docset/winserver2012-ps/netsecurity/Rename-NetIPsecQuickModeCryptoSet.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/rename-netipsecquickmodecryptoset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/rename-netipsecquickmodecryptoset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Rename-NetIPsecRule.md b/docset/winserver2012-ps/netsecurity/Rename-NetIPsecRule.md index 37a1867337..02ae8ad9e9 100644 --- a/docset/winserver2012-ps/netsecurity/Rename-NetIPsecRule.md +++ b/docset/winserver2012-ps/netsecurity/Rename-NetIPsecRule.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/rename-netipsecrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/rename-netipsecrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Save-NetGPO.md b/docset/winserver2012-ps/netsecurity/Save-NetGPO.md index 7cf9892077..716651f44b 100644 --- a/docset/winserver2012-ps/netsecurity/Save-NetGPO.md +++ b/docset/winserver2012-ps/netsecurity/Save-NetGPO.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/save-netgpo?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/save-netgpo?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Set-NetFirewallAddressFilter.md b/docset/winserver2012-ps/netsecurity/Set-NetFirewallAddressFilter.md index cb4a75f40b..dbecd6eb80 100644 --- a/docset/winserver2012-ps/netsecurity/Set-NetFirewallAddressFilter.md +++ b/docset/winserver2012-ps/netsecurity/Set-NetFirewallAddressFilter.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewalladdressfilter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netfirewalladdressfilter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Set-NetFirewallApplicationFilter.md b/docset/winserver2012-ps/netsecurity/Set-NetFirewallApplicationFilter.md index d006cc1127..258338ae73 100644 --- a/docset/winserver2012-ps/netsecurity/Set-NetFirewallApplicationFilter.md +++ b/docset/winserver2012-ps/netsecurity/Set-NetFirewallApplicationFilter.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewallapplicationfilter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netfirewallapplicationfilter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Set-NetFirewallInterfaceFilter.md b/docset/winserver2012-ps/netsecurity/Set-NetFirewallInterfaceFilter.md index 09af74b067..b536c6c480 100644 --- a/docset/winserver2012-ps/netsecurity/Set-NetFirewallInterfaceFilter.md +++ b/docset/winserver2012-ps/netsecurity/Set-NetFirewallInterfaceFilter.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewallinterfacefilter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netfirewallinterfacefilter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Set-NetFirewallInterfaceTypeFilter.md b/docset/winserver2012-ps/netsecurity/Set-NetFirewallInterfaceTypeFilter.md index 106389bcec..205aeef4f9 100644 --- a/docset/winserver2012-ps/netsecurity/Set-NetFirewallInterfaceTypeFilter.md +++ b/docset/winserver2012-ps/netsecurity/Set-NetFirewallInterfaceTypeFilter.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewallinterfacetypefilter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netfirewallinterfacetypefilter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Set-NetFirewallPortFilter.md b/docset/winserver2012-ps/netsecurity/Set-NetFirewallPortFilter.md index 2fda2294fb..aceea9f024 100644 --- a/docset/winserver2012-ps/netsecurity/Set-NetFirewallPortFilter.md +++ b/docset/winserver2012-ps/netsecurity/Set-NetFirewallPortFilter.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewallportfilter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netfirewallportfilter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Set-NetFirewallProfile.md b/docset/winserver2012-ps/netsecurity/Set-NetFirewallProfile.md index 91a82e689f..40fc1241e6 100644 --- a/docset/winserver2012-ps/netsecurity/Set-NetFirewallProfile.md +++ b/docset/winserver2012-ps/netsecurity/Set-NetFirewallProfile.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewallprofile?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netfirewallprofile?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Set-NetFirewallRule.md b/docset/winserver2012-ps/netsecurity/Set-NetFirewallRule.md index d97129ebba..1191689145 100644 --- a/docset/winserver2012-ps/netsecurity/Set-NetFirewallRule.md +++ b/docset/winserver2012-ps/netsecurity/Set-NetFirewallRule.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewallrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netfirewallrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Set-NetFirewallSecurityFilter.md b/docset/winserver2012-ps/netsecurity/Set-NetFirewallSecurityFilter.md index 99fedf348c..b8bc10de0b 100644 --- a/docset/winserver2012-ps/netsecurity/Set-NetFirewallSecurityFilter.md +++ b/docset/winserver2012-ps/netsecurity/Set-NetFirewallSecurityFilter.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewallsecurityfilter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netfirewallsecurityfilter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Set-NetFirewallServiceFilter.md b/docset/winserver2012-ps/netsecurity/Set-NetFirewallServiceFilter.md index 1ce24251ff..2780966f7a 100644 --- a/docset/winserver2012-ps/netsecurity/Set-NetFirewallServiceFilter.md +++ b/docset/winserver2012-ps/netsecurity/Set-NetFirewallServiceFilter.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewallservicefilter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netfirewallservicefilter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Set-NetFirewallSetting.md b/docset/winserver2012-ps/netsecurity/Set-NetFirewallSetting.md index f4c65b0d3f..50132b03f8 100644 --- a/docset/winserver2012-ps/netsecurity/Set-NetFirewallSetting.md +++ b/docset/winserver2012-ps/netsecurity/Set-NetFirewallSetting.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewallsetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netfirewallsetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Set-NetIPsecDospSetting.md b/docset/winserver2012-ps/netsecurity/Set-NetIPsecDospSetting.md index 102808b6ea..66db5d379c 100644 --- a/docset/winserver2012-ps/netsecurity/Set-NetIPsecDospSetting.md +++ b/docset/winserver2012-ps/netsecurity/Set-NetIPsecDospSetting.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netipsecdospsetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netipsecdospsetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Set-NetIPsecMainModeCryptoSet.md b/docset/winserver2012-ps/netsecurity/Set-NetIPsecMainModeCryptoSet.md index 0a6d06c3a1..caf504703d 100644 --- a/docset/winserver2012-ps/netsecurity/Set-NetIPsecMainModeCryptoSet.md +++ b/docset/winserver2012-ps/netsecurity/Set-NetIPsecMainModeCryptoSet.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netipsecmainmodecryptoset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netipsecmainmodecryptoset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Set-NetIPsecMainModeRule.md b/docset/winserver2012-ps/netsecurity/Set-NetIPsecMainModeRule.md index a8c20d0f7a..f8a2238137 100644 --- a/docset/winserver2012-ps/netsecurity/Set-NetIPsecMainModeRule.md +++ b/docset/winserver2012-ps/netsecurity/Set-NetIPsecMainModeRule.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netipsecmainmoderule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netipsecmainmoderule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Set-NetIPsecPhase1AuthSet.md b/docset/winserver2012-ps/netsecurity/Set-NetIPsecPhase1AuthSet.md index bf2118a2af..291050e75f 100644 --- a/docset/winserver2012-ps/netsecurity/Set-NetIPsecPhase1AuthSet.md +++ b/docset/winserver2012-ps/netsecurity/Set-NetIPsecPhase1AuthSet.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netipsecphase1authset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netipsecphase1authset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Set-NetIPsecPhase2AuthSet.md b/docset/winserver2012-ps/netsecurity/Set-NetIPsecPhase2AuthSet.md index e29c87b1ee..ff819bbb56 100644 --- a/docset/winserver2012-ps/netsecurity/Set-NetIPsecPhase2AuthSet.md +++ b/docset/winserver2012-ps/netsecurity/Set-NetIPsecPhase2AuthSet.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netipsecphase2authset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netipsecphase2authset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Set-NetIPsecQuickModeCryptoSet.md b/docset/winserver2012-ps/netsecurity/Set-NetIPsecQuickModeCryptoSet.md index 1b855fd24f..53107ea805 100644 --- a/docset/winserver2012-ps/netsecurity/Set-NetIPsecQuickModeCryptoSet.md +++ b/docset/winserver2012-ps/netsecurity/Set-NetIPsecQuickModeCryptoSet.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netipsecquickmodecryptoset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netipsecquickmodecryptoset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Set-NetIPsecRule.md b/docset/winserver2012-ps/netsecurity/Set-NetIPsecRule.md index b7bf731866..0c9c58b76f 100644 --- a/docset/winserver2012-ps/netsecurity/Set-NetIPsecRule.md +++ b/docset/winserver2012-ps/netsecurity/Set-NetIPsecRule.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netipsecrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netipsecrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Show-NetFirewallRule.md b/docset/winserver2012-ps/netsecurity/Show-NetFirewallRule.md index 4fb6547878..923b1bea21 100644 --- a/docset/winserver2012-ps/netsecurity/Show-NetFirewallRule.md +++ b/docset/winserver2012-ps/netsecurity/Show-NetFirewallRule.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/show-netfirewallrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/show-netfirewallrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Show-NetIPsecRule.md b/docset/winserver2012-ps/netsecurity/Show-NetIPsecRule.md index bfc3b44f18..6d69d5d730 100644 --- a/docset/winserver2012-ps/netsecurity/Show-NetIPsecRule.md +++ b/docset/winserver2012-ps/netsecurity/Show-NetIPsecRule.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/show-netipsecrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/show-netipsecrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Sync-NetIPsecRule.md b/docset/winserver2012-ps/netsecurity/Sync-NetIPsecRule.md index f19c306c6d..147741fb28 100644 --- a/docset/winserver2012-ps/netsecurity/Sync-NetIPsecRule.md +++ b/docset/winserver2012-ps/netsecurity/Sync-NetIPsecRule.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/sync-netipsecrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/sync-netipsecrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netsecurity/Update-NetIPsecRule.md b/docset/winserver2012-ps/netsecurity/Update-NetIPsecRule.md index 928ebf3021..ace42551c1 100644 --- a/docset/winserver2012-ps/netsecurity/Update-NetIPsecRule.md +++ b/docset/winserver2012-ps/netsecurity/Update-NetIPsecRule.md @@ -1,7 +1,7 @@ --- external help file: NetSecurity_Function.xml Module Name: NetSecurity -online version: https://docs.microsoft.com/powershell/module/netsecurity/update-netipsecrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/update-netipsecrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netswitchteam/Add-NetSwitchTeamMember.md b/docset/winserver2012-ps/netswitchteam/Add-NetSwitchTeamMember.md index 8ae1e616fe..5192c7a7bb 100644 --- a/docset/winserver2012-ps/netswitchteam/Add-NetSwitchTeamMember.md +++ b/docset/winserver2012-ps/netswitchteam/Add-NetSwitchTeamMember.md @@ -1,7 +1,7 @@ --- external help file: NetSwitchTeam_Cmdlets.xml Module Name: NetSwitchTeam -online version: https://docs.microsoft.com/powershell/module/netswitchteam/add-netswitchteammember?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netswitchteam/add-netswitchteammember?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netswitchteam/Get-NetSwitchTeam.md b/docset/winserver2012-ps/netswitchteam/Get-NetSwitchTeam.md index 3824c49f49..09dcad05f1 100644 --- a/docset/winserver2012-ps/netswitchteam/Get-NetSwitchTeam.md +++ b/docset/winserver2012-ps/netswitchteam/Get-NetSwitchTeam.md @@ -1,7 +1,7 @@ --- external help file: NetSwitchTeam_Cmdlets.xml Module Name: NetSwitchTeam -online version: https://docs.microsoft.com/powershell/module/netswitchteam/get-netswitchteam?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netswitchteam/get-netswitchteam?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netswitchteam/Get-NetSwitchTeamMember.md b/docset/winserver2012-ps/netswitchteam/Get-NetSwitchTeamMember.md index 7f27a1019a..599805df47 100644 --- a/docset/winserver2012-ps/netswitchteam/Get-NetSwitchTeamMember.md +++ b/docset/winserver2012-ps/netswitchteam/Get-NetSwitchTeamMember.md @@ -1,7 +1,7 @@ --- external help file: NetSwitchTeam_Cmdlets.xml Module Name: NetSwitchTeam -online version: https://docs.microsoft.com/powershell/module/netswitchteam/get-netswitchteammember?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netswitchteam/get-netswitchteammember?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netswitchteam/New-NetSwitchTeam.md b/docset/winserver2012-ps/netswitchteam/New-NetSwitchTeam.md index 367ca4e165..f7cf832fc8 100644 --- a/docset/winserver2012-ps/netswitchteam/New-NetSwitchTeam.md +++ b/docset/winserver2012-ps/netswitchteam/New-NetSwitchTeam.md @@ -1,7 +1,7 @@ --- external help file: NetSwitchTeam_Cmdlets.xml Module Name: NetSwitchTeam -online version: https://docs.microsoft.com/powershell/module/netswitchteam/new-netswitchteam?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netswitchteam/new-netswitchteam?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netswitchteam/Remove-NetSwitchTeam.md b/docset/winserver2012-ps/netswitchteam/Remove-NetSwitchTeam.md index 984ae1611a..2c0db3693b 100644 --- a/docset/winserver2012-ps/netswitchteam/Remove-NetSwitchTeam.md +++ b/docset/winserver2012-ps/netswitchteam/Remove-NetSwitchTeam.md @@ -1,7 +1,7 @@ --- external help file: NetSwitchTeam_Cmdlets.xml Module Name: NetSwitchTeam -online version: https://docs.microsoft.com/powershell/module/netswitchteam/remove-netswitchteam?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netswitchteam/remove-netswitchteam?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netswitchteam/Remove-NetSwitchTeamMember.md b/docset/winserver2012-ps/netswitchteam/Remove-NetSwitchTeamMember.md index 32974373c7..f5ae7b299a 100644 --- a/docset/winserver2012-ps/netswitchteam/Remove-NetSwitchTeamMember.md +++ b/docset/winserver2012-ps/netswitchteam/Remove-NetSwitchTeamMember.md @@ -1,7 +1,7 @@ --- external help file: NetSwitchTeam_Cmdlets.xml Module Name: NetSwitchTeam -online version: https://docs.microsoft.com/powershell/module/netswitchteam/remove-netswitchteammember?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netswitchteam/remove-netswitchteammember?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netswitchteam/Rename-NetSwitchTeam.md b/docset/winserver2012-ps/netswitchteam/Rename-NetSwitchTeam.md index c7d9d59a90..7ed16f51d8 100644 --- a/docset/winserver2012-ps/netswitchteam/Rename-NetSwitchTeam.md +++ b/docset/winserver2012-ps/netswitchteam/Rename-NetSwitchTeam.md @@ -1,7 +1,7 @@ --- external help file: NetSwitchTeam_Cmdlets.xml Module Name: NetSwitchTeam -online version: https://docs.microsoft.com/powershell/module/netswitchteam/rename-netswitchteam?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netswitchteam/rename-netswitchteam?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nettcpip/Get-NetIPAddress.md b/docset/winserver2012-ps/nettcpip/Get-NetIPAddress.md index 458a214328..4785b64ac3 100644 --- a/docset/winserver2012-ps/nettcpip/Get-NetIPAddress.md +++ b/docset/winserver2012-ps/nettcpip/Get-NetIPAddress.md @@ -1,7 +1,7 @@ --- external help file: NetTCPIP_Cmdlets.xml Module Name: NetTCPIP -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netipaddress?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netipaddress?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nettcpip/Get-NetIPConfiguration.md b/docset/winserver2012-ps/nettcpip/Get-NetIPConfiguration.md index d4875c2588..bcb64e3f91 100644 --- a/docset/winserver2012-ps/nettcpip/Get-NetIPConfiguration.md +++ b/docset/winserver2012-ps/nettcpip/Get-NetIPConfiguration.md @@ -1,7 +1,7 @@ --- external help file: NetTCPIP_Cmdlets.xml Module Name: NetTCPIP -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netipconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netipconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nettcpip/Get-NetIPInterface.md b/docset/winserver2012-ps/nettcpip/Get-NetIPInterface.md index 5e15662f79..f411d6f201 100644 --- a/docset/winserver2012-ps/nettcpip/Get-NetIPInterface.md +++ b/docset/winserver2012-ps/nettcpip/Get-NetIPInterface.md @@ -1,7 +1,7 @@ --- external help file: NetTCPIP_Cmdlets.xml Module Name: NetTCPIP -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netipinterface?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netipinterface?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nettcpip/Get-NetIPv4Protocol.md b/docset/winserver2012-ps/nettcpip/Get-NetIPv4Protocol.md index 26f7d4baf2..3a2b45d724 100644 --- a/docset/winserver2012-ps/nettcpip/Get-NetIPv4Protocol.md +++ b/docset/winserver2012-ps/nettcpip/Get-NetIPv4Protocol.md @@ -1,7 +1,7 @@ --- external help file: NetTCPIP_Cmdlets.xml Module Name: NetTCPIP -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netipv4protocol?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netipv4protocol?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nettcpip/Get-NetIPv6Protocol.md b/docset/winserver2012-ps/nettcpip/Get-NetIPv6Protocol.md index 12040a5f94..dacdbf10c2 100644 --- a/docset/winserver2012-ps/nettcpip/Get-NetIPv6Protocol.md +++ b/docset/winserver2012-ps/nettcpip/Get-NetIPv6Protocol.md @@ -1,7 +1,7 @@ --- external help file: NetTCPIP_Cmdlets.xml Module Name: NetTCPIP -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netipv6protocol?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netipv6protocol?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nettcpip/Get-NetNeighbor.md b/docset/winserver2012-ps/nettcpip/Get-NetNeighbor.md index a8549b4581..8b7123f0d0 100644 --- a/docset/winserver2012-ps/nettcpip/Get-NetNeighbor.md +++ b/docset/winserver2012-ps/nettcpip/Get-NetNeighbor.md @@ -1,7 +1,7 @@ --- external help file: NetTCPIP_Cmdlets.xml Module Name: NetTCPIP -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netneighbor?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netneighbor?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nettcpip/Get-NetOffloadGlobalSetting.md b/docset/winserver2012-ps/nettcpip/Get-NetOffloadGlobalSetting.md index 63fd6473bf..df4d29aaf8 100644 --- a/docset/winserver2012-ps/nettcpip/Get-NetOffloadGlobalSetting.md +++ b/docset/winserver2012-ps/nettcpip/Get-NetOffloadGlobalSetting.md @@ -1,7 +1,7 @@ --- external help file: NetTCPIP_Cmdlets.xml Module Name: NetTCPIP -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netoffloadglobalsetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netoffloadglobalsetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nettcpip/Get-NetPrefixPolicy.md b/docset/winserver2012-ps/nettcpip/Get-NetPrefixPolicy.md index 3d892891bd..e5ac05bb3b 100644 --- a/docset/winserver2012-ps/nettcpip/Get-NetPrefixPolicy.md +++ b/docset/winserver2012-ps/nettcpip/Get-NetPrefixPolicy.md @@ -1,7 +1,7 @@ --- external help file: NetTCPIP_Cmdlets.xml Module Name: NetTCPIP -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netprefixpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netprefixpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nettcpip/Get-NetRoute.md b/docset/winserver2012-ps/nettcpip/Get-NetRoute.md index 2b977cdf9d..7e0fe551fc 100644 --- a/docset/winserver2012-ps/nettcpip/Get-NetRoute.md +++ b/docset/winserver2012-ps/nettcpip/Get-NetRoute.md @@ -1,7 +1,7 @@ --- external help file: NetTCPIP_Cmdlets.xml Module Name: NetTCPIP -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netroute?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netroute?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nettcpip/Get-NetTCPConnection.md b/docset/winserver2012-ps/nettcpip/Get-NetTCPConnection.md index fcf9c3a4f3..67e9d42b14 100644 --- a/docset/winserver2012-ps/nettcpip/Get-NetTCPConnection.md +++ b/docset/winserver2012-ps/nettcpip/Get-NetTCPConnection.md @@ -1,7 +1,7 @@ --- external help file: NetTCPIP_Cmdlets.xml Module Name: NetTCPIP -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-nettcpconnection?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-nettcpconnection?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nettcpip/Get-NetTCPSetting.md b/docset/winserver2012-ps/nettcpip/Get-NetTCPSetting.md index 54469f072b..dc9ce49ad0 100644 --- a/docset/winserver2012-ps/nettcpip/Get-NetTCPSetting.md +++ b/docset/winserver2012-ps/nettcpip/Get-NetTCPSetting.md @@ -1,7 +1,7 @@ --- external help file: NetTCPIP_Cmdlets.xml Module Name: NetTCPIP -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-nettcpsetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-nettcpsetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nettcpip/Get-NetTransportFilter.md b/docset/winserver2012-ps/nettcpip/Get-NetTransportFilter.md index 1c8c24a2fe..c5a3d4126b 100644 --- a/docset/winserver2012-ps/nettcpip/Get-NetTransportFilter.md +++ b/docset/winserver2012-ps/nettcpip/Get-NetTransportFilter.md @@ -1,7 +1,7 @@ --- external help file: NetTCPIP_Cmdlets.xml Module Name: NetTCPIP -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-nettransportfilter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-nettransportfilter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nettcpip/Get-NetUDPEndpoint.md b/docset/winserver2012-ps/nettcpip/Get-NetUDPEndpoint.md index 0475b78cec..6dd27343d8 100644 --- a/docset/winserver2012-ps/nettcpip/Get-NetUDPEndpoint.md +++ b/docset/winserver2012-ps/nettcpip/Get-NetUDPEndpoint.md @@ -1,7 +1,7 @@ --- external help file: NetTCPIP_Cmdlets.xml Module Name: NetTCPIP -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netudpendpoint?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netudpendpoint?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nettcpip/Get-NetUDPSetting.md b/docset/winserver2012-ps/nettcpip/Get-NetUDPSetting.md index a3b9042a8c..d91ef81f3a 100644 --- a/docset/winserver2012-ps/nettcpip/Get-NetUDPSetting.md +++ b/docset/winserver2012-ps/nettcpip/Get-NetUDPSetting.md @@ -1,7 +1,7 @@ --- external help file: NetTCPIP_Cmdlets.xml Module Name: NetTCPIP -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netudpsetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netudpsetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nettcpip/New-NetIPAddress.md b/docset/winserver2012-ps/nettcpip/New-NetIPAddress.md index a9697da692..a7883010d0 100644 --- a/docset/winserver2012-ps/nettcpip/New-NetIPAddress.md +++ b/docset/winserver2012-ps/nettcpip/New-NetIPAddress.md @@ -1,7 +1,7 @@ --- external help file: NetTCPIP_Cmdlets.xml Module Name: NetTCPIP -online version: https://docs.microsoft.com/powershell/module/nettcpip/new-netipaddress?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/new-netipaddress?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nettcpip/New-NetNeighbor.md b/docset/winserver2012-ps/nettcpip/New-NetNeighbor.md index a0122756c5..30db593008 100644 --- a/docset/winserver2012-ps/nettcpip/New-NetNeighbor.md +++ b/docset/winserver2012-ps/nettcpip/New-NetNeighbor.md @@ -1,7 +1,7 @@ --- external help file: NetTCPIP_Cmdlets.xml Module Name: NetTCPIP -online version: https://docs.microsoft.com/powershell/module/nettcpip/new-netneighbor?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/new-netneighbor?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nettcpip/New-NetRoute.md b/docset/winserver2012-ps/nettcpip/New-NetRoute.md index 4d0e3bdd6e..06995e691c 100644 --- a/docset/winserver2012-ps/nettcpip/New-NetRoute.md +++ b/docset/winserver2012-ps/nettcpip/New-NetRoute.md @@ -1,7 +1,7 @@ --- external help file: NetTCPIP_Cmdlets.xml Module Name: NetTCPIP -online version: https://docs.microsoft.com/powershell/module/nettcpip/new-netroute?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/new-netroute?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nettcpip/New-NetTransportFilter.md b/docset/winserver2012-ps/nettcpip/New-NetTransportFilter.md index 5b355c43fc..d5cb2e791f 100644 --- a/docset/winserver2012-ps/nettcpip/New-NetTransportFilter.md +++ b/docset/winserver2012-ps/nettcpip/New-NetTransportFilter.md @@ -1,7 +1,7 @@ --- external help file: NetTCPIP_Cmdlets.xml Module Name: NetTCPIP -online version: https://docs.microsoft.com/powershell/module/nettcpip/new-nettransportfilter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/new-nettransportfilter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nettcpip/Remove-NetIPAddress.md b/docset/winserver2012-ps/nettcpip/Remove-NetIPAddress.md index 078bcfa1df..23103deb0a 100644 --- a/docset/winserver2012-ps/nettcpip/Remove-NetIPAddress.md +++ b/docset/winserver2012-ps/nettcpip/Remove-NetIPAddress.md @@ -1,7 +1,7 @@ --- external help file: NetTCPIP_Cmdlets.xml Module Name: NetTCPIP -online version: https://docs.microsoft.com/powershell/module/nettcpip/remove-netipaddress?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/remove-netipaddress?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nettcpip/Remove-NetNeighbor.md b/docset/winserver2012-ps/nettcpip/Remove-NetNeighbor.md index 62a5b800a3..47611b0604 100644 --- a/docset/winserver2012-ps/nettcpip/Remove-NetNeighbor.md +++ b/docset/winserver2012-ps/nettcpip/Remove-NetNeighbor.md @@ -1,7 +1,7 @@ --- external help file: NetTCPIP_Cmdlets.xml Module Name: NetTCPIP -online version: https://docs.microsoft.com/powershell/module/nettcpip/remove-netneighbor?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/remove-netneighbor?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nettcpip/Remove-NetRoute.md b/docset/winserver2012-ps/nettcpip/Remove-NetRoute.md index 728ad6c55d..6a1309392d 100644 --- a/docset/winserver2012-ps/nettcpip/Remove-NetRoute.md +++ b/docset/winserver2012-ps/nettcpip/Remove-NetRoute.md @@ -1,7 +1,7 @@ --- external help file: NetTCPIP_Cmdlets.xml Module Name: NetTCPIP -online version: https://docs.microsoft.com/powershell/module/nettcpip/remove-netroute?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/remove-netroute?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nettcpip/Remove-NetTransportFilter.md b/docset/winserver2012-ps/nettcpip/Remove-NetTransportFilter.md index e5ae97b158..7dab43a628 100644 --- a/docset/winserver2012-ps/nettcpip/Remove-NetTransportFilter.md +++ b/docset/winserver2012-ps/nettcpip/Remove-NetTransportFilter.md @@ -1,7 +1,7 @@ --- external help file: NetTCPIP_Cmdlets.xml Module Name: NetTCPIP -online version: https://docs.microsoft.com/powershell/module/nettcpip/remove-nettransportfilter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/remove-nettransportfilter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nettcpip/Set-NetIPAddress.md b/docset/winserver2012-ps/nettcpip/Set-NetIPAddress.md index c340300951..5965456225 100644 --- a/docset/winserver2012-ps/nettcpip/Set-NetIPAddress.md +++ b/docset/winserver2012-ps/nettcpip/Set-NetIPAddress.md @@ -1,7 +1,7 @@ --- external help file: NetTCPIP_Cmdlets.xml Module Name: NetTCPIP -online version: https://docs.microsoft.com/powershell/module/nettcpip/set-netipaddress?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/set-netipaddress?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nettcpip/Set-NetIPInterface.md b/docset/winserver2012-ps/nettcpip/Set-NetIPInterface.md index 8d6a9277e9..466ea42bca 100644 --- a/docset/winserver2012-ps/nettcpip/Set-NetIPInterface.md +++ b/docset/winserver2012-ps/nettcpip/Set-NetIPInterface.md @@ -1,7 +1,7 @@ --- external help file: NetTCPIP_Cmdlets.xml Module Name: NetTCPIP -online version: https://docs.microsoft.com/powershell/module/nettcpip/set-netipinterface?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/set-netipinterface?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nettcpip/Set-NetIPv4Protocol.md b/docset/winserver2012-ps/nettcpip/Set-NetIPv4Protocol.md index 0b24be9cc9..389bd5e6b7 100644 --- a/docset/winserver2012-ps/nettcpip/Set-NetIPv4Protocol.md +++ b/docset/winserver2012-ps/nettcpip/Set-NetIPv4Protocol.md @@ -1,7 +1,7 @@ --- external help file: NetTCPIP_Cmdlets.xml Module Name: NetTCPIP -online version: https://docs.microsoft.com/powershell/module/nettcpip/set-netipv4protocol?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/set-netipv4protocol?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nettcpip/Set-NetIPv6Protocol.md b/docset/winserver2012-ps/nettcpip/Set-NetIPv6Protocol.md index d9b6cb02db..a9c5634bff 100644 --- a/docset/winserver2012-ps/nettcpip/Set-NetIPv6Protocol.md +++ b/docset/winserver2012-ps/nettcpip/Set-NetIPv6Protocol.md @@ -1,7 +1,7 @@ --- external help file: NetTCPIP_Cmdlets.xml Module Name: NetTCPIP -online version: https://docs.microsoft.com/powershell/module/nettcpip/set-netipv6protocol?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/set-netipv6protocol?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nettcpip/Set-NetNeighbor.md b/docset/winserver2012-ps/nettcpip/Set-NetNeighbor.md index dd3ac5f968..f55e1756da 100644 --- a/docset/winserver2012-ps/nettcpip/Set-NetNeighbor.md +++ b/docset/winserver2012-ps/nettcpip/Set-NetNeighbor.md @@ -1,7 +1,7 @@ --- external help file: NetTCPIP_Cmdlets.xml Module Name: NetTCPIP -online version: https://docs.microsoft.com/powershell/module/nettcpip/set-netneighbor?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/set-netneighbor?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nettcpip/Set-NetOffloadGlobalSetting.md b/docset/winserver2012-ps/nettcpip/Set-NetOffloadGlobalSetting.md index b6f6ac056f..9a46c25033 100644 --- a/docset/winserver2012-ps/nettcpip/Set-NetOffloadGlobalSetting.md +++ b/docset/winserver2012-ps/nettcpip/Set-NetOffloadGlobalSetting.md @@ -1,7 +1,7 @@ --- external help file: NetTCPIP_Cmdlets.xml Module Name: NetTCPIP -online version: https://docs.microsoft.com/powershell/module/nettcpip/set-netoffloadglobalsetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/set-netoffloadglobalsetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nettcpip/Set-NetRoute.md b/docset/winserver2012-ps/nettcpip/Set-NetRoute.md index ce1a6906a0..1015705876 100644 --- a/docset/winserver2012-ps/nettcpip/Set-NetRoute.md +++ b/docset/winserver2012-ps/nettcpip/Set-NetRoute.md @@ -1,7 +1,7 @@ --- external help file: NetTCPIP_Cmdlets.xml Module Name: NetTCPIP -online version: https://docs.microsoft.com/powershell/module/nettcpip/set-netroute?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/set-netroute?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nettcpip/Set-NetTCPSetting.md b/docset/winserver2012-ps/nettcpip/Set-NetTCPSetting.md index e98430f29a..b167b5b43e 100644 --- a/docset/winserver2012-ps/nettcpip/Set-NetTCPSetting.md +++ b/docset/winserver2012-ps/nettcpip/Set-NetTCPSetting.md @@ -1,7 +1,7 @@ --- external help file: NetTCPIP_Cmdlets.xml Module Name: NetTCPIP -online version: https://docs.microsoft.com/powershell/module/nettcpip/set-nettcpsetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/set-nettcpsetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nettcpip/Set-NetUDPSetting.md b/docset/winserver2012-ps/nettcpip/Set-NetUDPSetting.md index 8635af2215..0e6c2249b2 100644 --- a/docset/winserver2012-ps/nettcpip/Set-NetUDPSetting.md +++ b/docset/winserver2012-ps/nettcpip/Set-NetUDPSetting.md @@ -1,7 +1,7 @@ --- external help file: NetTCPIP_Cmdlets.xml Module Name: NetTCPIP -online version: https://docs.microsoft.com/powershell/module/nettcpip/set-netudpsetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/set-netudpsetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netwnv/Get-NetVirtualizationCustomerRoute.md b/docset/winserver2012-ps/netwnv/Get-NetVirtualizationCustomerRoute.md index b7acce06b2..15e7975978 100644 --- a/docset/winserver2012-ps/netwnv/Get-NetVirtualizationCustomerRoute.md +++ b/docset/winserver2012-ps/netwnv/Get-NetVirtualizationCustomerRoute.md @@ -1,7 +1,7 @@ --- external help file: NetWNV_Cmdlets.xml Module Name: NetWNV -online version: https://docs.microsoft.com/powershell/module/netwnv/get-netvirtualizationcustomerroute?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/get-netvirtualizationcustomerroute?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netwnv/Get-NetVirtualizationGlobal.md b/docset/winserver2012-ps/netwnv/Get-NetVirtualizationGlobal.md index a4a66f863b..3ba6075934 100644 --- a/docset/winserver2012-ps/netwnv/Get-NetVirtualizationGlobal.md +++ b/docset/winserver2012-ps/netwnv/Get-NetVirtualizationGlobal.md @@ -1,7 +1,7 @@ --- external help file: NetWNV_Cmdlets.xml Module Name: NetWNV -online version: https://docs.microsoft.com/powershell/module/netwnv/get-netvirtualizationglobal?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/get-netvirtualizationglobal?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netwnv/Get-NetVirtualizationLookupRecord.md b/docset/winserver2012-ps/netwnv/Get-NetVirtualizationLookupRecord.md index 50e02eea6b..65414f50bc 100644 --- a/docset/winserver2012-ps/netwnv/Get-NetVirtualizationLookupRecord.md +++ b/docset/winserver2012-ps/netwnv/Get-NetVirtualizationLookupRecord.md @@ -1,7 +1,7 @@ --- external help file: NetWNV_Cmdlets.xml Module Name: NetWNV -online version: https://docs.microsoft.com/powershell/module/netwnv/get-netvirtualizationlookuprecord?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/get-netvirtualizationlookuprecord?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netwnv/Get-NetVirtualizationProviderAddress.md b/docset/winserver2012-ps/netwnv/Get-NetVirtualizationProviderAddress.md index 827cdf590c..c162ae6005 100644 --- a/docset/winserver2012-ps/netwnv/Get-NetVirtualizationProviderAddress.md +++ b/docset/winserver2012-ps/netwnv/Get-NetVirtualizationProviderAddress.md @@ -1,7 +1,7 @@ --- external help file: NetWNV_Cmdlets.xml Module Name: NetWNV -online version: https://docs.microsoft.com/powershell/module/netwnv/get-netvirtualizationprovideraddress?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/get-netvirtualizationprovideraddress?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netwnv/Get-NetVirtualizationProviderRoute.md b/docset/winserver2012-ps/netwnv/Get-NetVirtualizationProviderRoute.md index 9b1d5434ad..ff21fef5a9 100644 --- a/docset/winserver2012-ps/netwnv/Get-NetVirtualizationProviderRoute.md +++ b/docset/winserver2012-ps/netwnv/Get-NetVirtualizationProviderRoute.md @@ -1,7 +1,7 @@ --- external help file: NetWNV_Cmdlets.xml Module Name: NetWNV -online version: https://docs.microsoft.com/powershell/module/netwnv/get-netvirtualizationproviderroute?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/get-netvirtualizationproviderroute?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netwnv/New-NetVirtualizationCustomerRoute.md b/docset/winserver2012-ps/netwnv/New-NetVirtualizationCustomerRoute.md index fd0ff39816..0df86531cf 100644 --- a/docset/winserver2012-ps/netwnv/New-NetVirtualizationCustomerRoute.md +++ b/docset/winserver2012-ps/netwnv/New-NetVirtualizationCustomerRoute.md @@ -1,7 +1,7 @@ --- external help file: NetWNV_Cmdlets.xml Module Name: NetWNV -online version: https://docs.microsoft.com/powershell/module/netwnv/new-netvirtualizationcustomerroute?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/new-netvirtualizationcustomerroute?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netwnv/New-NetVirtualizationLookupRecord.md b/docset/winserver2012-ps/netwnv/New-NetVirtualizationLookupRecord.md index 0c82c95d99..78605376d4 100644 --- a/docset/winserver2012-ps/netwnv/New-NetVirtualizationLookupRecord.md +++ b/docset/winserver2012-ps/netwnv/New-NetVirtualizationLookupRecord.md @@ -1,7 +1,7 @@ --- external help file: NetWNV_Cmdlets.xml Module Name: NetWNV -online version: https://docs.microsoft.com/powershell/module/netwnv/new-netvirtualizationlookuprecord?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/new-netvirtualizationlookuprecord?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netwnv/New-NetVirtualizationProviderAddress.md b/docset/winserver2012-ps/netwnv/New-NetVirtualizationProviderAddress.md index 940ead7504..01db870188 100644 --- a/docset/winserver2012-ps/netwnv/New-NetVirtualizationProviderAddress.md +++ b/docset/winserver2012-ps/netwnv/New-NetVirtualizationProviderAddress.md @@ -1,7 +1,7 @@ --- external help file: NetWNV_Cmdlets.xml Module Name: NetWNV -online version: https://docs.microsoft.com/powershell/module/netwnv/new-netvirtualizationprovideraddress?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/new-netvirtualizationprovideraddress?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netwnv/New-NetVirtualizationProviderRoute.md b/docset/winserver2012-ps/netwnv/New-NetVirtualizationProviderRoute.md index 8ff5157adc..eb364aeeb7 100644 --- a/docset/winserver2012-ps/netwnv/New-NetVirtualizationProviderRoute.md +++ b/docset/winserver2012-ps/netwnv/New-NetVirtualizationProviderRoute.md @@ -1,7 +1,7 @@ --- external help file: NetWNV_Cmdlets.xml Module Name: NetWNV -online version: https://docs.microsoft.com/powershell/module/netwnv/new-netvirtualizationproviderroute?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/new-netvirtualizationproviderroute?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netwnv/Remove-NetVirtualizationCustomerRoute.md b/docset/winserver2012-ps/netwnv/Remove-NetVirtualizationCustomerRoute.md index fa9ad034b5..5f088ed945 100644 --- a/docset/winserver2012-ps/netwnv/Remove-NetVirtualizationCustomerRoute.md +++ b/docset/winserver2012-ps/netwnv/Remove-NetVirtualizationCustomerRoute.md @@ -1,7 +1,7 @@ --- external help file: NetWNV_Cmdlets.xml Module Name: NetWNV -online version: https://docs.microsoft.com/powershell/module/netwnv/remove-netvirtualizationcustomerroute?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/remove-netvirtualizationcustomerroute?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netwnv/Remove-NetVirtualizationLookupRecord.md b/docset/winserver2012-ps/netwnv/Remove-NetVirtualizationLookupRecord.md index 9a4103a229..a04fe8ddff 100644 --- a/docset/winserver2012-ps/netwnv/Remove-NetVirtualizationLookupRecord.md +++ b/docset/winserver2012-ps/netwnv/Remove-NetVirtualizationLookupRecord.md @@ -1,7 +1,7 @@ --- external help file: NetWNV_Cmdlets.xml Module Name: NetWNV -online version: https://docs.microsoft.com/powershell/module/netwnv/remove-netvirtualizationlookuprecord?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/remove-netvirtualizationlookuprecord?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netwnv/Remove-NetVirtualizationProviderAddress.md b/docset/winserver2012-ps/netwnv/Remove-NetVirtualizationProviderAddress.md index fb1e4fda55..9e3770f072 100644 --- a/docset/winserver2012-ps/netwnv/Remove-NetVirtualizationProviderAddress.md +++ b/docset/winserver2012-ps/netwnv/Remove-NetVirtualizationProviderAddress.md @@ -1,7 +1,7 @@ --- external help file: NetWNV_Cmdlets.xml Module Name: NetWNV -online version: https://docs.microsoft.com/powershell/module/netwnv/remove-netvirtualizationprovideraddress?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/remove-netvirtualizationprovideraddress?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netwnv/Remove-NetVirtualizationProviderRoute.md b/docset/winserver2012-ps/netwnv/Remove-NetVirtualizationProviderRoute.md index e4288c0ab2..1c2cf6f2b8 100644 --- a/docset/winserver2012-ps/netwnv/Remove-NetVirtualizationProviderRoute.md +++ b/docset/winserver2012-ps/netwnv/Remove-NetVirtualizationProviderRoute.md @@ -1,7 +1,7 @@ --- external help file: NetWNV_Cmdlets.xml Module Name: NetWNV -online version: https://docs.microsoft.com/powershell/module/netwnv/remove-netvirtualizationproviderroute?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/remove-netvirtualizationproviderroute?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netwnv/Set-NetVirtualizationCustomerRoute.md b/docset/winserver2012-ps/netwnv/Set-NetVirtualizationCustomerRoute.md index 952721e2c6..e9910fd157 100644 --- a/docset/winserver2012-ps/netwnv/Set-NetVirtualizationCustomerRoute.md +++ b/docset/winserver2012-ps/netwnv/Set-NetVirtualizationCustomerRoute.md @@ -1,7 +1,7 @@ --- external help file: NetWNV_Cmdlets.xml Module Name: NetWNV -online version: https://docs.microsoft.com/powershell/module/netwnv/set-netvirtualizationcustomerroute?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/set-netvirtualizationcustomerroute?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netwnv/Set-NetVirtualizationGlobal.md b/docset/winserver2012-ps/netwnv/Set-NetVirtualizationGlobal.md index 400cd2d545..a8260aa3c3 100644 --- a/docset/winserver2012-ps/netwnv/Set-NetVirtualizationGlobal.md +++ b/docset/winserver2012-ps/netwnv/Set-NetVirtualizationGlobal.md @@ -1,7 +1,7 @@ --- external help file: NetWNV_Cmdlets.xml Module Name: NetWNV -online version: https://docs.microsoft.com/powershell/module/netwnv/set-netvirtualizationglobal?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/set-netvirtualizationglobal?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netwnv/Set-NetVirtualizationLookupRecord.md b/docset/winserver2012-ps/netwnv/Set-NetVirtualizationLookupRecord.md index 8d9491336d..6ee0c95706 100644 --- a/docset/winserver2012-ps/netwnv/Set-NetVirtualizationLookupRecord.md +++ b/docset/winserver2012-ps/netwnv/Set-NetVirtualizationLookupRecord.md @@ -1,7 +1,7 @@ --- external help file: NetWNV_Cmdlets.xml Module Name: NetWNV -online version: https://docs.microsoft.com/powershell/module/netwnv/set-netvirtualizationlookuprecord?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/set-netvirtualizationlookuprecord?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netwnv/Set-NetVirtualizationProviderAddress.md b/docset/winserver2012-ps/netwnv/Set-NetVirtualizationProviderAddress.md index e8efe68897..e0ab7cbe70 100644 --- a/docset/winserver2012-ps/netwnv/Set-NetVirtualizationProviderAddress.md +++ b/docset/winserver2012-ps/netwnv/Set-NetVirtualizationProviderAddress.md @@ -1,7 +1,7 @@ --- external help file: NetWNV_Cmdlets.xml Module Name: NetWNV -online version: https://docs.microsoft.com/powershell/module/netwnv/set-netvirtualizationprovideraddress?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/set-netvirtualizationprovideraddress?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/netwnv/Set-NetVirtualizationProviderRoute.md b/docset/winserver2012-ps/netwnv/Set-NetVirtualizationProviderRoute.md index e8af356384..9e92046f2e 100644 --- a/docset/winserver2012-ps/netwnv/Set-NetVirtualizationProviderRoute.md +++ b/docset/winserver2012-ps/netwnv/Set-NetVirtualizationProviderRoute.md @@ -1,7 +1,7 @@ --- external help file: NetWNV_Cmdlets.xml Module Name: NetWNV -online version: https://docs.microsoft.com/powershell/module/netwnv/set-netvirtualizationproviderroute?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/set-netvirtualizationproviderroute?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networkconnectivity/Get-DAConnectionStatus.md b/docset/winserver2012-ps/networkconnectivity/Get-DAConnectionStatus.md index ba47e66ae8..88ec40a3b5 100644 --- a/docset/winserver2012-ps/networkconnectivity/Get-DAConnectionStatus.md +++ b/docset/winserver2012-ps/networkconnectivity/Get-DAConnectionStatus.md @@ -1,7 +1,7 @@ --- external help file: NetConnect_Cmdlets.xml Module Name: NetworkConnectivity -online version: https://docs.microsoft.com/powershell/module/networkconnectivity/get-daconnectionstatus?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkconnectivity/get-daconnectionstatus?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networkconnectivity/Get-NCSIPolicyConfiguration.md b/docset/winserver2012-ps/networkconnectivity/Get-NCSIPolicyConfiguration.md index ae1541c2cd..4113062fce 100644 --- a/docset/winserver2012-ps/networkconnectivity/Get-NCSIPolicyConfiguration.md +++ b/docset/winserver2012-ps/networkconnectivity/Get-NCSIPolicyConfiguration.md @@ -1,7 +1,7 @@ --- external help file: NetConnect_Cmdlets.xml Module Name: NetworkConnectivity -online version: https://docs.microsoft.com/powershell/module/networkconnectivity/get-ncsipolicyconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkconnectivity/get-ncsipolicyconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networkconnectivity/Reset-NCSIPolicyConfiguration.md b/docset/winserver2012-ps/networkconnectivity/Reset-NCSIPolicyConfiguration.md index b9369c117f..4d2a454641 100644 --- a/docset/winserver2012-ps/networkconnectivity/Reset-NCSIPolicyConfiguration.md +++ b/docset/winserver2012-ps/networkconnectivity/Reset-NCSIPolicyConfiguration.md @@ -1,7 +1,7 @@ --- external help file: NetConnect_Cmdlets.xml Module Name: NetworkConnectivity -online version: https://docs.microsoft.com/powershell/module/networkconnectivity/reset-ncsipolicyconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkconnectivity/reset-ncsipolicyconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networkconnectivity/Set-NCSIPolicyConfiguration.md b/docset/winserver2012-ps/networkconnectivity/Set-NCSIPolicyConfiguration.md index e2568fd3c3..614f1e1985 100644 --- a/docset/winserver2012-ps/networkconnectivity/Set-NCSIPolicyConfiguration.md +++ b/docset/winserver2012-ps/networkconnectivity/Set-NCSIPolicyConfiguration.md @@ -1,7 +1,7 @@ --- external help file: NetConnect_Cmdlets.xml Module Name: NetworkConnectivity -online version: https://docs.microsoft.com/powershell/module/networkconnectivity/set-ncsipolicyconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkconnectivity/set-ncsipolicyconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networkloadbalancingclusters/Add-NlbClusterNode.md b/docset/winserver2012-ps/networkloadbalancingclusters/Add-NlbClusterNode.md index f8a061362e..276945fdfb 100644 --- a/docset/winserver2012-ps/networkloadbalancingclusters/Add-NlbClusterNode.md +++ b/docset/winserver2012-ps/networkloadbalancingclusters/Add-NlbClusterNode.md @@ -1,7 +1,7 @@ --- external help file: NLB_Cmdlets.xml Module Name: NetworkLoadBalancingClusters -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/add-nlbclusternode?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/add-nlbclusternode?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networkloadbalancingclusters/Add-NlbClusterNodeDip.md b/docset/winserver2012-ps/networkloadbalancingclusters/Add-NlbClusterNodeDip.md index 28690423ff..a5562a195e 100644 --- a/docset/winserver2012-ps/networkloadbalancingclusters/Add-NlbClusterNodeDip.md +++ b/docset/winserver2012-ps/networkloadbalancingclusters/Add-NlbClusterNodeDip.md @@ -1,7 +1,7 @@ --- external help file: NLB_Cmdlets.xml Module Name: NetworkLoadBalancingClusters -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/add-nlbclusternodedip?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/add-nlbclusternodedip?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networkloadbalancingclusters/Add-NlbClusterPortRule.md b/docset/winserver2012-ps/networkloadbalancingclusters/Add-NlbClusterPortRule.md index 65094fc88d..b42785cf75 100644 --- a/docset/winserver2012-ps/networkloadbalancingclusters/Add-NlbClusterPortRule.md +++ b/docset/winserver2012-ps/networkloadbalancingclusters/Add-NlbClusterPortRule.md @@ -1,7 +1,7 @@ --- external help file: NLB_Cmdlets.xml Module Name: NetworkLoadBalancingClusters -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/add-nlbclusterportrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/add-nlbclusterportrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networkloadbalancingclusters/Add-NlbClusterVip.md b/docset/winserver2012-ps/networkloadbalancingclusters/Add-NlbClusterVip.md index a690f68c55..86ccc843e4 100644 --- a/docset/winserver2012-ps/networkloadbalancingclusters/Add-NlbClusterVip.md +++ b/docset/winserver2012-ps/networkloadbalancingclusters/Add-NlbClusterVip.md @@ -1,7 +1,7 @@ --- external help file: NLB_Cmdlets.xml Module Name: NetworkLoadBalancingClusters -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/add-nlbclustervip?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/add-nlbclustervip?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networkloadbalancingclusters/Disable-NlbClusterPortRule.md b/docset/winserver2012-ps/networkloadbalancingclusters/Disable-NlbClusterPortRule.md index 939f9cad38..2e809cd820 100644 --- a/docset/winserver2012-ps/networkloadbalancingclusters/Disable-NlbClusterPortRule.md +++ b/docset/winserver2012-ps/networkloadbalancingclusters/Disable-NlbClusterPortRule.md @@ -1,7 +1,7 @@ --- external help file: NLB_Cmdlets.xml Module Name: NetworkLoadBalancingClusters -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/disable-nlbclusterportrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/disable-nlbclusterportrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networkloadbalancingclusters/Enable-NlbClusterPortRule.md b/docset/winserver2012-ps/networkloadbalancingclusters/Enable-NlbClusterPortRule.md index 215a6bb61a..47af8b59f3 100644 --- a/docset/winserver2012-ps/networkloadbalancingclusters/Enable-NlbClusterPortRule.md +++ b/docset/winserver2012-ps/networkloadbalancingclusters/Enable-NlbClusterPortRule.md @@ -1,7 +1,7 @@ --- external help file: NLB_Cmdlets.xml Module Name: NetworkLoadBalancingClusters -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/enable-nlbclusterportrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/enable-nlbclusterportrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networkloadbalancingclusters/Get-NlbCluster.md b/docset/winserver2012-ps/networkloadbalancingclusters/Get-NlbCluster.md index 114f5e84c0..0bee5d675a 100644 --- a/docset/winserver2012-ps/networkloadbalancingclusters/Get-NlbCluster.md +++ b/docset/winserver2012-ps/networkloadbalancingclusters/Get-NlbCluster.md @@ -1,7 +1,7 @@ --- external help file: NLB_Cmdlets.xml Module Name: NetworkLoadBalancingClusters -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbcluster?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbcluster?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networkloadbalancingclusters/Get-NlbClusterDriverInfo.md b/docset/winserver2012-ps/networkloadbalancingclusters/Get-NlbClusterDriverInfo.md index e611ca4563..1deed54b82 100644 --- a/docset/winserver2012-ps/networkloadbalancingclusters/Get-NlbClusterDriverInfo.md +++ b/docset/winserver2012-ps/networkloadbalancingclusters/Get-NlbClusterDriverInfo.md @@ -1,7 +1,7 @@ --- external help file: NLB_Cmdlets.xml Module Name: NetworkLoadBalancingClusters -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclusterdriverinfo?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclusterdriverinfo?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networkloadbalancingclusters/Get-NlbClusterNode.md b/docset/winserver2012-ps/networkloadbalancingclusters/Get-NlbClusterNode.md index 59fbb55640..012a878901 100644 --- a/docset/winserver2012-ps/networkloadbalancingclusters/Get-NlbClusterNode.md +++ b/docset/winserver2012-ps/networkloadbalancingclusters/Get-NlbClusterNode.md @@ -1,7 +1,7 @@ --- external help file: NLB_Cmdlets.xml Module Name: NetworkLoadBalancingClusters -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclusternode?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclusternode?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networkloadbalancingclusters/Get-NlbClusterNodeDip.md b/docset/winserver2012-ps/networkloadbalancingclusters/Get-NlbClusterNodeDip.md index 17446ebd00..44cce55b36 100644 --- a/docset/winserver2012-ps/networkloadbalancingclusters/Get-NlbClusterNodeDip.md +++ b/docset/winserver2012-ps/networkloadbalancingclusters/Get-NlbClusterNodeDip.md @@ -1,7 +1,7 @@ --- external help file: NLB_Cmdlets.xml Module Name: NetworkLoadBalancingClusters -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclusternodedip?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclusternodedip?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networkloadbalancingclusters/Get-NlbClusterNodeNetworkInterface.md b/docset/winserver2012-ps/networkloadbalancingclusters/Get-NlbClusterNodeNetworkInterface.md index 1d0fb54bf0..a06bb23b1e 100644 --- a/docset/winserver2012-ps/networkloadbalancingclusters/Get-NlbClusterNodeNetworkInterface.md +++ b/docset/winserver2012-ps/networkloadbalancingclusters/Get-NlbClusterNodeNetworkInterface.md @@ -1,7 +1,7 @@ --- external help file: NLB_Cmdlets.xml Module Name: NetworkLoadBalancingClusters -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclusternodenetworkinterface?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclusternodenetworkinterface?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networkloadbalancingclusters/Get-NlbClusterPortRule.md b/docset/winserver2012-ps/networkloadbalancingclusters/Get-NlbClusterPortRule.md index 366e55cd91..dac0778135 100644 --- a/docset/winserver2012-ps/networkloadbalancingclusters/Get-NlbClusterPortRule.md +++ b/docset/winserver2012-ps/networkloadbalancingclusters/Get-NlbClusterPortRule.md @@ -1,7 +1,7 @@ --- external help file: NLB_Cmdlets.xml Module Name: NetworkLoadBalancingClusters -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclusterportrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclusterportrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networkloadbalancingclusters/Get-NlbClusterVip.md b/docset/winserver2012-ps/networkloadbalancingclusters/Get-NlbClusterVip.md index 1b9864b079..745db71518 100644 --- a/docset/winserver2012-ps/networkloadbalancingclusters/Get-NlbClusterVip.md +++ b/docset/winserver2012-ps/networkloadbalancingclusters/Get-NlbClusterVip.md @@ -1,7 +1,7 @@ --- external help file: NLB_Cmdlets.xml Module Name: NetworkLoadBalancingClusters -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclustervip?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclustervip?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networkloadbalancingclusters/New-NlbCluster.md b/docset/winserver2012-ps/networkloadbalancingclusters/New-NlbCluster.md index 6aff1311ff..ac0d590978 100644 --- a/docset/winserver2012-ps/networkloadbalancingclusters/New-NlbCluster.md +++ b/docset/winserver2012-ps/networkloadbalancingclusters/New-NlbCluster.md @@ -1,7 +1,7 @@ --- external help file: NLB_Cmdlets.xml Module Name: NetworkLoadBalancingClusters -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/new-nlbcluster?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/new-nlbcluster?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networkloadbalancingclusters/New-NlbClusterIpv6Address.md b/docset/winserver2012-ps/networkloadbalancingclusters/New-NlbClusterIpv6Address.md index 958951d413..312d89c0e2 100644 --- a/docset/winserver2012-ps/networkloadbalancingclusters/New-NlbClusterIpv6Address.md +++ b/docset/winserver2012-ps/networkloadbalancingclusters/New-NlbClusterIpv6Address.md @@ -1,7 +1,7 @@ --- external help file: NLB_Cmdlets.xml Module Name: NetworkLoadBalancingClusters -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/new-nlbclusteripv6address?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/new-nlbclusteripv6address?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networkloadbalancingclusters/Remove-NlbCluster.md b/docset/winserver2012-ps/networkloadbalancingclusters/Remove-NlbCluster.md index 93ddf7571c..b4a0803b2f 100644 --- a/docset/winserver2012-ps/networkloadbalancingclusters/Remove-NlbCluster.md +++ b/docset/winserver2012-ps/networkloadbalancingclusters/Remove-NlbCluster.md @@ -1,7 +1,7 @@ --- external help file: NLB_Cmdlets.xml Module Name: NetworkLoadBalancingClusters -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/remove-nlbcluster?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/remove-nlbcluster?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networkloadbalancingclusters/Remove-NlbClusterNode.md b/docset/winserver2012-ps/networkloadbalancingclusters/Remove-NlbClusterNode.md index 94459eda2c..92f1f1f866 100644 --- a/docset/winserver2012-ps/networkloadbalancingclusters/Remove-NlbClusterNode.md +++ b/docset/winserver2012-ps/networkloadbalancingclusters/Remove-NlbClusterNode.md @@ -1,7 +1,7 @@ --- external help file: NLB_Cmdlets.xml Module Name: NetworkLoadBalancingClusters -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/remove-nlbclusternode?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/remove-nlbclusternode?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networkloadbalancingclusters/Remove-NlbClusterNodeDip.md b/docset/winserver2012-ps/networkloadbalancingclusters/Remove-NlbClusterNodeDip.md index 2a29f95ee8..a7cd1843d0 100644 --- a/docset/winserver2012-ps/networkloadbalancingclusters/Remove-NlbClusterNodeDip.md +++ b/docset/winserver2012-ps/networkloadbalancingclusters/Remove-NlbClusterNodeDip.md @@ -1,7 +1,7 @@ --- external help file: NLB_Cmdlets.xml Module Name: NetworkLoadBalancingClusters -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/remove-nlbclusternodedip?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/remove-nlbclusternodedip?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networkloadbalancingclusters/Remove-NlbClusterPortRule.md b/docset/winserver2012-ps/networkloadbalancingclusters/Remove-NlbClusterPortRule.md index 0371b740ac..19672e1807 100644 --- a/docset/winserver2012-ps/networkloadbalancingclusters/Remove-NlbClusterPortRule.md +++ b/docset/winserver2012-ps/networkloadbalancingclusters/Remove-NlbClusterPortRule.md @@ -1,7 +1,7 @@ --- external help file: NLB_Cmdlets.xml Module Name: NetworkLoadBalancingClusters -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/remove-nlbclusterportrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/remove-nlbclusterportrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networkloadbalancingclusters/Remove-NlbClusterVip.md b/docset/winserver2012-ps/networkloadbalancingclusters/Remove-NlbClusterVip.md index 9099698b3a..8f8a015fb6 100644 --- a/docset/winserver2012-ps/networkloadbalancingclusters/Remove-NlbClusterVip.md +++ b/docset/winserver2012-ps/networkloadbalancingclusters/Remove-NlbClusterVip.md @@ -1,7 +1,7 @@ --- external help file: NLB_Cmdlets.xml Module Name: NetworkLoadBalancingClusters -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/remove-nlbclustervip?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/remove-nlbclustervip?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networkloadbalancingclusters/Resume-NlbCluster.md b/docset/winserver2012-ps/networkloadbalancingclusters/Resume-NlbCluster.md index 5b819073e9..b72b12bdf9 100644 --- a/docset/winserver2012-ps/networkloadbalancingclusters/Resume-NlbCluster.md +++ b/docset/winserver2012-ps/networkloadbalancingclusters/Resume-NlbCluster.md @@ -1,7 +1,7 @@ --- external help file: NLB_Cmdlets.xml Module Name: NetworkLoadBalancingClusters -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/resume-nlbcluster?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/resume-nlbcluster?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networkloadbalancingclusters/Resume-NlbClusterNode.md b/docset/winserver2012-ps/networkloadbalancingclusters/Resume-NlbClusterNode.md index 970e794cf1..7b7a971d4a 100644 --- a/docset/winserver2012-ps/networkloadbalancingclusters/Resume-NlbClusterNode.md +++ b/docset/winserver2012-ps/networkloadbalancingclusters/Resume-NlbClusterNode.md @@ -1,7 +1,7 @@ --- external help file: NLB_Cmdlets.xml Module Name: NetworkLoadBalancingClusters -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/resume-nlbclusternode?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/resume-nlbclusternode?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networkloadbalancingclusters/Set-NlbCluster.md b/docset/winserver2012-ps/networkloadbalancingclusters/Set-NlbCluster.md index 092348b313..7a8e86ade3 100644 --- a/docset/winserver2012-ps/networkloadbalancingclusters/Set-NlbCluster.md +++ b/docset/winserver2012-ps/networkloadbalancingclusters/Set-NlbCluster.md @@ -1,7 +1,7 @@ --- external help file: NLB_Cmdlets.xml Module Name: NetworkLoadBalancingClusters -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbcluster?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbcluster?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networkloadbalancingclusters/Set-NlbClusterNode.md b/docset/winserver2012-ps/networkloadbalancingclusters/Set-NlbClusterNode.md index 99f8bff29c..3617c95ef1 100644 --- a/docset/winserver2012-ps/networkloadbalancingclusters/Set-NlbClusterNode.md +++ b/docset/winserver2012-ps/networkloadbalancingclusters/Set-NlbClusterNode.md @@ -1,7 +1,7 @@ --- external help file: NLB_Cmdlets.xml Module Name: NetworkLoadBalancingClusters -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclusternode?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclusternode?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networkloadbalancingclusters/Set-NlbClusterNodeDip.md b/docset/winserver2012-ps/networkloadbalancingclusters/Set-NlbClusterNodeDip.md index bdafadc288..0d41b24c8f 100644 --- a/docset/winserver2012-ps/networkloadbalancingclusters/Set-NlbClusterNodeDip.md +++ b/docset/winserver2012-ps/networkloadbalancingclusters/Set-NlbClusterNodeDip.md @@ -1,7 +1,7 @@ --- external help file: NLB_Cmdlets.xml Module Name: NetworkLoadBalancingClusters -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclusternodedip?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclusternodedip?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networkloadbalancingclusters/Set-NlbClusterPortRule.md b/docset/winserver2012-ps/networkloadbalancingclusters/Set-NlbClusterPortRule.md index b757b3dd38..8c4ca596a6 100644 --- a/docset/winserver2012-ps/networkloadbalancingclusters/Set-NlbClusterPortRule.md +++ b/docset/winserver2012-ps/networkloadbalancingclusters/Set-NlbClusterPortRule.md @@ -1,7 +1,7 @@ --- external help file: NLB_Cmdlets.xml Module Name: NetworkLoadBalancingClusters -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclusterportrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclusterportrule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networkloadbalancingclusters/Set-NlbClusterPortRuleNodeHandlingPriority.md b/docset/winserver2012-ps/networkloadbalancingclusters/Set-NlbClusterPortRuleNodeHandlingPriority.md index 9f0b7d31c1..ae22aa65ae 100644 --- a/docset/winserver2012-ps/networkloadbalancingclusters/Set-NlbClusterPortRuleNodeHandlingPriority.md +++ b/docset/winserver2012-ps/networkloadbalancingclusters/Set-NlbClusterPortRuleNodeHandlingPriority.md @@ -1,7 +1,7 @@ --- external help file: NLB_Cmdlets.xml Module Name: NetworkLoadBalancingClusters -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclusterportrulenodehandlingpriority?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclusterportrulenodehandlingpriority?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networkloadbalancingclusters/Set-NlbClusterPortRuleNodeWeight.md b/docset/winserver2012-ps/networkloadbalancingclusters/Set-NlbClusterPortRuleNodeWeight.md index 26009abe75..952dbf09a2 100644 --- a/docset/winserver2012-ps/networkloadbalancingclusters/Set-NlbClusterPortRuleNodeWeight.md +++ b/docset/winserver2012-ps/networkloadbalancingclusters/Set-NlbClusterPortRuleNodeWeight.md @@ -1,7 +1,7 @@ --- external help file: NLB_Cmdlets.xml Module Name: NetworkLoadBalancingClusters -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclusterportrulenodeweight?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclusterportrulenodeweight?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networkloadbalancingclusters/Set-NlbClusterVip.md b/docset/winserver2012-ps/networkloadbalancingclusters/Set-NlbClusterVip.md index 7a547bbc0b..b6e0899056 100644 --- a/docset/winserver2012-ps/networkloadbalancingclusters/Set-NlbClusterVip.md +++ b/docset/winserver2012-ps/networkloadbalancingclusters/Set-NlbClusterVip.md @@ -1,7 +1,7 @@ --- external help file: NLB_Cmdlets.xml Module Name: NetworkLoadBalancingClusters -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclustervip?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclustervip?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networkloadbalancingclusters/Start-NlbCluster.md b/docset/winserver2012-ps/networkloadbalancingclusters/Start-NlbCluster.md index 38b96f506a..a0a296a032 100644 --- a/docset/winserver2012-ps/networkloadbalancingclusters/Start-NlbCluster.md +++ b/docset/winserver2012-ps/networkloadbalancingclusters/Start-NlbCluster.md @@ -1,7 +1,7 @@ --- external help file: NLB_Cmdlets.xml Module Name: NetworkLoadBalancingClusters -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/start-nlbcluster?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/start-nlbcluster?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networkloadbalancingclusters/Start-NlbClusterNode.md b/docset/winserver2012-ps/networkloadbalancingclusters/Start-NlbClusterNode.md index 379abe9ec1..68bdc13706 100644 --- a/docset/winserver2012-ps/networkloadbalancingclusters/Start-NlbClusterNode.md +++ b/docset/winserver2012-ps/networkloadbalancingclusters/Start-NlbClusterNode.md @@ -1,7 +1,7 @@ --- external help file: NLB_Cmdlets.xml Module Name: NetworkLoadBalancingClusters -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/start-nlbclusternode?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/start-nlbclusternode?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networkloadbalancingclusters/Stop-NlbCluster.md b/docset/winserver2012-ps/networkloadbalancingclusters/Stop-NlbCluster.md index 3c5a64f46e..a24bf39d56 100644 --- a/docset/winserver2012-ps/networkloadbalancingclusters/Stop-NlbCluster.md +++ b/docset/winserver2012-ps/networkloadbalancingclusters/Stop-NlbCluster.md @@ -1,7 +1,7 @@ --- external help file: NLB_Cmdlets.xml Module Name: NetworkLoadBalancingClusters -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/stop-nlbcluster?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/stop-nlbcluster?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networkloadbalancingclusters/Stop-NlbClusterNode.md b/docset/winserver2012-ps/networkloadbalancingclusters/Stop-NlbClusterNode.md index 64a570e712..8bda387da2 100644 --- a/docset/winserver2012-ps/networkloadbalancingclusters/Stop-NlbClusterNode.md +++ b/docset/winserver2012-ps/networkloadbalancingclusters/Stop-NlbClusterNode.md @@ -1,7 +1,7 @@ --- external help file: NLB_Cmdlets.xml Module Name: NetworkLoadBalancingClusters -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/stop-nlbclusternode?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/stop-nlbclusternode?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networkloadbalancingclusters/Suspend-NlbCluster.md b/docset/winserver2012-ps/networkloadbalancingclusters/Suspend-NlbCluster.md index c38745609f..f1b0cc7433 100644 --- a/docset/winserver2012-ps/networkloadbalancingclusters/Suspend-NlbCluster.md +++ b/docset/winserver2012-ps/networkloadbalancingclusters/Suspend-NlbCluster.md @@ -1,7 +1,7 @@ --- external help file: NLB_Cmdlets.xml Module Name: NetworkLoadBalancingClusters -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/suspend-nlbcluster?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/suspend-nlbcluster?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networkloadbalancingclusters/Suspend-NlbClusterNode.md b/docset/winserver2012-ps/networkloadbalancingclusters/Suspend-NlbClusterNode.md index b42b215b89..eb2696f2ff 100644 --- a/docset/winserver2012-ps/networkloadbalancingclusters/Suspend-NlbClusterNode.md +++ b/docset/winserver2012-ps/networkloadbalancingclusters/Suspend-NlbClusterNode.md @@ -1,7 +1,7 @@ --- external help file: NLB_Cmdlets.xml Module Name: NetworkLoadBalancingClusters -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/suspend-nlbclusternode?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/suspend-nlbclusternode?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networktransition/Add-NetIPHttpsCertBinding.md b/docset/winserver2012-ps/networktransition/Add-NetIPHttpsCertBinding.md index 848515694e..9f958181f3 100644 --- a/docset/winserver2012-ps/networktransition/Add-NetIPHttpsCertBinding.md +++ b/docset/winserver2012-ps/networktransition/Add-NetIPHttpsCertBinding.md @@ -1,7 +1,7 @@ --- external help file: NetTransition_Cmdlets.xml Module Name: NetworkTransition -online version: https://docs.microsoft.com/powershell/module/networktransition/add-netiphttpscertbinding?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/add-netiphttpscertbinding?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networktransition/Disable-NetDnsTransitionConfiguration.md b/docset/winserver2012-ps/networktransition/Disable-NetDnsTransitionConfiguration.md index 9135cf6f5e..238719934d 100644 --- a/docset/winserver2012-ps/networktransition/Disable-NetDnsTransitionConfiguration.md +++ b/docset/winserver2012-ps/networktransition/Disable-NetDnsTransitionConfiguration.md @@ -1,7 +1,7 @@ --- external help file: NetTransition_Cmdlets.xml Module Name: NetworkTransition -online version: https://docs.microsoft.com/powershell/module/networktransition/disable-netdnstransitionconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/disable-netdnstransitionconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networktransition/Disable-NetIPHttpsProfile.md b/docset/winserver2012-ps/networktransition/Disable-NetIPHttpsProfile.md index 602524f2bc..66152a2820 100644 --- a/docset/winserver2012-ps/networktransition/Disable-NetIPHttpsProfile.md +++ b/docset/winserver2012-ps/networktransition/Disable-NetIPHttpsProfile.md @@ -1,7 +1,7 @@ --- external help file: NetTransition_Cmdlets.xml Module Name: NetworkTransition -online version: https://docs.microsoft.com/powershell/module/networktransition/disable-netiphttpsprofile?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/disable-netiphttpsprofile?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networktransition/Disable-NetNatTransitionConfiguration.md b/docset/winserver2012-ps/networktransition/Disable-NetNatTransitionConfiguration.md index da1004c24d..d19f75b1c6 100644 --- a/docset/winserver2012-ps/networktransition/Disable-NetNatTransitionConfiguration.md +++ b/docset/winserver2012-ps/networktransition/Disable-NetNatTransitionConfiguration.md @@ -1,7 +1,7 @@ --- external help file: NetTransition_Cmdlets.xml Module Name: NetworkTransition -online version: https://docs.microsoft.com/powershell/module/networktransition/disable-netnattransitionconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/disable-netnattransitionconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networktransition/Enable-NetDnsTransitionConfiguration.md b/docset/winserver2012-ps/networktransition/Enable-NetDnsTransitionConfiguration.md index 2f2b0bccc0..3cae1b25cf 100644 --- a/docset/winserver2012-ps/networktransition/Enable-NetDnsTransitionConfiguration.md +++ b/docset/winserver2012-ps/networktransition/Enable-NetDnsTransitionConfiguration.md @@ -1,7 +1,7 @@ --- external help file: NetTransition_Cmdlets.xml Module Name: NetworkTransition -online version: https://docs.microsoft.com/powershell/module/networktransition/enable-netdnstransitionconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/enable-netdnstransitionconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networktransition/Enable-NetIPHttpsProfile.md b/docset/winserver2012-ps/networktransition/Enable-NetIPHttpsProfile.md index 7284ed3e52..0e0570ec89 100644 --- a/docset/winserver2012-ps/networktransition/Enable-NetIPHttpsProfile.md +++ b/docset/winserver2012-ps/networktransition/Enable-NetIPHttpsProfile.md @@ -1,7 +1,7 @@ --- external help file: NetTransition_Cmdlets.xml Module Name: NetworkTransition -online version: https://docs.microsoft.com/powershell/module/networktransition/enable-netiphttpsprofile?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/enable-netiphttpsprofile?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networktransition/Enable-NetNatTransitionConfiguration.md b/docset/winserver2012-ps/networktransition/Enable-NetNatTransitionConfiguration.md index 7b23f5fe18..3005086054 100644 --- a/docset/winserver2012-ps/networktransition/Enable-NetNatTransitionConfiguration.md +++ b/docset/winserver2012-ps/networktransition/Enable-NetNatTransitionConfiguration.md @@ -1,7 +1,7 @@ --- external help file: NetTransition_Cmdlets.xml Module Name: NetworkTransition -online version: https://docs.microsoft.com/powershell/module/networktransition/enable-netnattransitionconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/enable-netnattransitionconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networktransition/Get-Net6to4Configuration.md b/docset/winserver2012-ps/networktransition/Get-Net6to4Configuration.md index 293313dfce..80ac5edc23 100644 --- a/docset/winserver2012-ps/networktransition/Get-Net6to4Configuration.md +++ b/docset/winserver2012-ps/networktransition/Get-Net6to4Configuration.md @@ -1,7 +1,7 @@ --- external help file: NetTransition_Cmdlets.xml Module Name: NetworkTransition -online version: https://docs.microsoft.com/powershell/module/networktransition/get-net6to4configuration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/get-net6to4configuration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networktransition/Get-NetDnsTransitionConfiguration.md b/docset/winserver2012-ps/networktransition/Get-NetDnsTransitionConfiguration.md index 32b3717c01..d6c2735b34 100644 --- a/docset/winserver2012-ps/networktransition/Get-NetDnsTransitionConfiguration.md +++ b/docset/winserver2012-ps/networktransition/Get-NetDnsTransitionConfiguration.md @@ -1,7 +1,7 @@ --- external help file: NetTransition_Cmdlets.xml Module Name: NetworkTransition -online version: https://docs.microsoft.com/powershell/module/networktransition/get-netdnstransitionconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/get-netdnstransitionconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networktransition/Get-NetDnsTransitionMonitoring.md b/docset/winserver2012-ps/networktransition/Get-NetDnsTransitionMonitoring.md index 9b44b235d0..57cfc260ce 100644 --- a/docset/winserver2012-ps/networktransition/Get-NetDnsTransitionMonitoring.md +++ b/docset/winserver2012-ps/networktransition/Get-NetDnsTransitionMonitoring.md @@ -1,7 +1,7 @@ --- external help file: NetTransition_Cmdlets.xml Module Name: NetworkTransition -online version: https://docs.microsoft.com/powershell/module/networktransition/get-netdnstransitionmonitoring?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/get-netdnstransitionmonitoring?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networktransition/Get-NetIPHttpsConfiguration.md b/docset/winserver2012-ps/networktransition/Get-NetIPHttpsConfiguration.md index 1c35b4834c..af990d1f03 100644 --- a/docset/winserver2012-ps/networktransition/Get-NetIPHttpsConfiguration.md +++ b/docset/winserver2012-ps/networktransition/Get-NetIPHttpsConfiguration.md @@ -1,7 +1,7 @@ --- external help file: NetTransition_Cmdlets.xml Module Name: NetworkTransition -online version: https://docs.microsoft.com/powershell/module/networktransition/get-netiphttpsconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/get-netiphttpsconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networktransition/Get-NetIPHttpsState.md b/docset/winserver2012-ps/networktransition/Get-NetIPHttpsState.md index 1ec9b62016..ac8020fe6a 100644 --- a/docset/winserver2012-ps/networktransition/Get-NetIPHttpsState.md +++ b/docset/winserver2012-ps/networktransition/Get-NetIPHttpsState.md @@ -1,7 +1,7 @@ --- external help file: NetTransition_Cmdlets.xml Module Name: NetworkTransition -online version: https://docs.microsoft.com/powershell/module/networktransition/get-netiphttpsstate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/get-netiphttpsstate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networktransition/Get-NetIsatapConfiguration.md b/docset/winserver2012-ps/networktransition/Get-NetIsatapConfiguration.md index b1a6d291d7..ef1d1c2f22 100644 --- a/docset/winserver2012-ps/networktransition/Get-NetIsatapConfiguration.md +++ b/docset/winserver2012-ps/networktransition/Get-NetIsatapConfiguration.md @@ -1,7 +1,7 @@ --- external help file: NetTransition_Cmdlets.xml Module Name: NetworkTransition -online version: https://docs.microsoft.com/powershell/module/networktransition/get-netisatapconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/get-netisatapconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networktransition/Get-NetNatTransitionConfiguration.md b/docset/winserver2012-ps/networktransition/Get-NetNatTransitionConfiguration.md index 0799f4e2c0..1b5661f092 100644 --- a/docset/winserver2012-ps/networktransition/Get-NetNatTransitionConfiguration.md +++ b/docset/winserver2012-ps/networktransition/Get-NetNatTransitionConfiguration.md @@ -1,7 +1,7 @@ --- external help file: NetTransition_Cmdlets.xml Module Name: NetworkTransition -online version: https://docs.microsoft.com/powershell/module/networktransition/get-netnattransitionconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/get-netnattransitionconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networktransition/Get-NetNatTransitionMonitoring.md b/docset/winserver2012-ps/networktransition/Get-NetNatTransitionMonitoring.md index faf81869fe..3ee0c47abe 100644 --- a/docset/winserver2012-ps/networktransition/Get-NetNatTransitionMonitoring.md +++ b/docset/winserver2012-ps/networktransition/Get-NetNatTransitionMonitoring.md @@ -1,7 +1,7 @@ --- external help file: NetTransition_Cmdlets.xml Module Name: NetworkTransition -online version: https://docs.microsoft.com/powershell/module/networktransition/get-netnattransitionmonitoring?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/get-netnattransitionmonitoring?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networktransition/Get-NetTeredoConfiguration.md b/docset/winserver2012-ps/networktransition/Get-NetTeredoConfiguration.md index 5c5f6121ef..532b4e1e6d 100644 --- a/docset/winserver2012-ps/networktransition/Get-NetTeredoConfiguration.md +++ b/docset/winserver2012-ps/networktransition/Get-NetTeredoConfiguration.md @@ -1,7 +1,7 @@ --- external help file: NetTransition_Cmdlets.xml Module Name: NetworkTransition -online version: https://docs.microsoft.com/powershell/module/networktransition/get-netteredoconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/get-netteredoconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networktransition/Get-NetTeredoState.md b/docset/winserver2012-ps/networktransition/Get-NetTeredoState.md index 76afaeb998..c54f864936 100644 --- a/docset/winserver2012-ps/networktransition/Get-NetTeredoState.md +++ b/docset/winserver2012-ps/networktransition/Get-NetTeredoState.md @@ -1,7 +1,7 @@ --- external help file: NetTransition_Cmdlets.xml Module Name: NetworkTransition -online version: https://docs.microsoft.com/powershell/module/networktransition/get-netteredostate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/get-netteredostate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networktransition/New-NetIPHttpsConfiguration.md b/docset/winserver2012-ps/networktransition/New-NetIPHttpsConfiguration.md index ff19234f12..793163eae3 100644 --- a/docset/winserver2012-ps/networktransition/New-NetIPHttpsConfiguration.md +++ b/docset/winserver2012-ps/networktransition/New-NetIPHttpsConfiguration.md @@ -1,7 +1,7 @@ --- external help file: NetTransition_Cmdlets.xml Module Name: NetworkTransition -online version: https://docs.microsoft.com/powershell/module/networktransition/new-netiphttpsconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/new-netiphttpsconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networktransition/New-NetNatTransitionConfiguration.md b/docset/winserver2012-ps/networktransition/New-NetNatTransitionConfiguration.md index 4f0b8ee97c..a41a60d886 100644 --- a/docset/winserver2012-ps/networktransition/New-NetNatTransitionConfiguration.md +++ b/docset/winserver2012-ps/networktransition/New-NetNatTransitionConfiguration.md @@ -1,7 +1,7 @@ --- external help file: NetTransition_Cmdlets.xml Module Name: NetworkTransition -online version: https://docs.microsoft.com/powershell/module/networktransition/new-netnattransitionconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/new-netnattransitionconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networktransition/Remove-NetIPHttpsCertBinding.md b/docset/winserver2012-ps/networktransition/Remove-NetIPHttpsCertBinding.md index 8faff23ef7..be7af1bf0e 100644 --- a/docset/winserver2012-ps/networktransition/Remove-NetIPHttpsCertBinding.md +++ b/docset/winserver2012-ps/networktransition/Remove-NetIPHttpsCertBinding.md @@ -1,7 +1,7 @@ --- external help file: NetTransition_Cmdlets.xml Module Name: NetworkTransition -online version: https://docs.microsoft.com/powershell/module/networktransition/remove-netiphttpscertbinding?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/remove-netiphttpscertbinding?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networktransition/Remove-NetIPHttpsConfiguration.md b/docset/winserver2012-ps/networktransition/Remove-NetIPHttpsConfiguration.md index 294044385c..8cb23de07b 100644 --- a/docset/winserver2012-ps/networktransition/Remove-NetIPHttpsConfiguration.md +++ b/docset/winserver2012-ps/networktransition/Remove-NetIPHttpsConfiguration.md @@ -1,7 +1,7 @@ --- external help file: NetTransition_Cmdlets.xml Module Name: NetworkTransition -online version: https://docs.microsoft.com/powershell/module/networktransition/remove-netiphttpsconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/remove-netiphttpsconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networktransition/Remove-NetNatTransitionConfiguration.md b/docset/winserver2012-ps/networktransition/Remove-NetNatTransitionConfiguration.md index 7956d04617..cf26e4c632 100644 --- a/docset/winserver2012-ps/networktransition/Remove-NetNatTransitionConfiguration.md +++ b/docset/winserver2012-ps/networktransition/Remove-NetNatTransitionConfiguration.md @@ -1,7 +1,7 @@ --- external help file: NetTransition_Cmdlets.xml Module Name: NetworkTransition -online version: https://docs.microsoft.com/powershell/module/networktransition/remove-netnattransitionconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/remove-netnattransitionconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networktransition/Rename-NetIPHttpsConfiguration.md b/docset/winserver2012-ps/networktransition/Rename-NetIPHttpsConfiguration.md index c6478c76d3..b561378d28 100644 --- a/docset/winserver2012-ps/networktransition/Rename-NetIPHttpsConfiguration.md +++ b/docset/winserver2012-ps/networktransition/Rename-NetIPHttpsConfiguration.md @@ -1,7 +1,7 @@ --- external help file: NetTransition_Cmdlets.xml Module Name: NetworkTransition -online version: https://docs.microsoft.com/powershell/module/networktransition/rename-netiphttpsconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/rename-netiphttpsconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networktransition/Reset-Net6to4Configuration.md b/docset/winserver2012-ps/networktransition/Reset-Net6to4Configuration.md index 5ce8092d22..a05da7fefb 100644 --- a/docset/winserver2012-ps/networktransition/Reset-Net6to4Configuration.md +++ b/docset/winserver2012-ps/networktransition/Reset-Net6to4Configuration.md @@ -1,7 +1,7 @@ --- external help file: NetTransition_Cmdlets.xml Module Name: NetworkTransition -online version: https://docs.microsoft.com/powershell/module/networktransition/reset-net6to4configuration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/reset-net6to4configuration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networktransition/Reset-NetDnsTransitionConfiguration.md b/docset/winserver2012-ps/networktransition/Reset-NetDnsTransitionConfiguration.md index 61d9506e88..02e31335e2 100644 --- a/docset/winserver2012-ps/networktransition/Reset-NetDnsTransitionConfiguration.md +++ b/docset/winserver2012-ps/networktransition/Reset-NetDnsTransitionConfiguration.md @@ -1,7 +1,7 @@ --- external help file: NetTransition_Cmdlets.xml Module Name: NetworkTransition -online version: https://docs.microsoft.com/powershell/module/networktransition/reset-netdnstransitionconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/reset-netdnstransitionconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networktransition/Reset-NetIPHttpsConfiguration.md b/docset/winserver2012-ps/networktransition/Reset-NetIPHttpsConfiguration.md index 56fa9a79a6..93d9a4ac75 100644 --- a/docset/winserver2012-ps/networktransition/Reset-NetIPHttpsConfiguration.md +++ b/docset/winserver2012-ps/networktransition/Reset-NetIPHttpsConfiguration.md @@ -1,7 +1,7 @@ --- external help file: NetTransition_Cmdlets.xml Module Name: NetworkTransition -online version: https://docs.microsoft.com/powershell/module/networktransition/reset-netiphttpsconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/reset-netiphttpsconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networktransition/Reset-NetIsatapConfiguration.md b/docset/winserver2012-ps/networktransition/Reset-NetIsatapConfiguration.md index 96f06668f1..21ee2d0b70 100644 --- a/docset/winserver2012-ps/networktransition/Reset-NetIsatapConfiguration.md +++ b/docset/winserver2012-ps/networktransition/Reset-NetIsatapConfiguration.md @@ -1,7 +1,7 @@ --- external help file: NetTransition_Cmdlets.xml Module Name: NetworkTransition -online version: https://docs.microsoft.com/powershell/module/networktransition/reset-netisatapconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/reset-netisatapconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networktransition/Reset-NetTeredoConfiguration.md b/docset/winserver2012-ps/networktransition/Reset-NetTeredoConfiguration.md index 956b075fa0..5527c29c01 100644 --- a/docset/winserver2012-ps/networktransition/Reset-NetTeredoConfiguration.md +++ b/docset/winserver2012-ps/networktransition/Reset-NetTeredoConfiguration.md @@ -1,7 +1,7 @@ --- external help file: NetTransition_Cmdlets.xml Module Name: NetworkTransition -online version: https://docs.microsoft.com/powershell/module/networktransition/reset-netteredoconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/reset-netteredoconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networktransition/Set-Net6to4Configuration.md b/docset/winserver2012-ps/networktransition/Set-Net6to4Configuration.md index 797fe0afa9..3f67ef55f2 100644 --- a/docset/winserver2012-ps/networktransition/Set-Net6to4Configuration.md +++ b/docset/winserver2012-ps/networktransition/Set-Net6to4Configuration.md @@ -1,7 +1,7 @@ --- external help file: NetTransition_Cmdlets.xml Module Name: NetworkTransition -online version: https://docs.microsoft.com/powershell/module/networktransition/set-net6to4configuration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/set-net6to4configuration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networktransition/Set-NetDnsTransitionConfiguration.md b/docset/winserver2012-ps/networktransition/Set-NetDnsTransitionConfiguration.md index fad5201f3f..6c37fe01ec 100644 --- a/docset/winserver2012-ps/networktransition/Set-NetDnsTransitionConfiguration.md +++ b/docset/winserver2012-ps/networktransition/Set-NetDnsTransitionConfiguration.md @@ -1,7 +1,7 @@ --- external help file: NetTransition_Cmdlets.xml Module Name: NetworkTransition -online version: https://docs.microsoft.com/powershell/module/networktransition/set-netdnstransitionconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/set-netdnstransitionconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networktransition/Set-NetIPHttpsConfiguration.md b/docset/winserver2012-ps/networktransition/Set-NetIPHttpsConfiguration.md index ba42b19964..89e4a76fe4 100644 --- a/docset/winserver2012-ps/networktransition/Set-NetIPHttpsConfiguration.md +++ b/docset/winserver2012-ps/networktransition/Set-NetIPHttpsConfiguration.md @@ -1,7 +1,7 @@ --- external help file: NetTransition_Cmdlets.xml Module Name: NetworkTransition -online version: https://docs.microsoft.com/powershell/module/networktransition/set-netiphttpsconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/set-netiphttpsconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networktransition/Set-NetIsatapConfiguration.md b/docset/winserver2012-ps/networktransition/Set-NetIsatapConfiguration.md index cb7d5dd061..991de81b88 100644 --- a/docset/winserver2012-ps/networktransition/Set-NetIsatapConfiguration.md +++ b/docset/winserver2012-ps/networktransition/Set-NetIsatapConfiguration.md @@ -1,7 +1,7 @@ --- external help file: NetTransition_Cmdlets.xml Module Name: NetworkTransition -online version: https://docs.microsoft.com/powershell/module/networktransition/set-netisatapconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/set-netisatapconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networktransition/Set-NetNatTransitionConfiguration.md b/docset/winserver2012-ps/networktransition/Set-NetNatTransitionConfiguration.md index 0f4204f625..fa76522056 100644 --- a/docset/winserver2012-ps/networktransition/Set-NetNatTransitionConfiguration.md +++ b/docset/winserver2012-ps/networktransition/Set-NetNatTransitionConfiguration.md @@ -1,7 +1,7 @@ --- external help file: NetTransition_Cmdlets.xml Module Name: NetworkTransition -online version: https://docs.microsoft.com/powershell/module/networktransition/set-netnattransitionconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/set-netnattransitionconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/networktransition/Set-NetTeredoConfiguration.md b/docset/winserver2012-ps/networktransition/Set-NetTeredoConfiguration.md index aae5b3b345..d7dc668861 100644 --- a/docset/winserver2012-ps/networktransition/Set-NetTeredoConfiguration.md +++ b/docset/winserver2012-ps/networktransition/Set-NetTeredoConfiguration.md @@ -1,7 +1,7 @@ --- external help file: NetTransition_Cmdlets.xml Module Name: NetworkTransition -online version: https://docs.microsoft.com/powershell/module/networktransition/set-netteredoconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/set-netteredoconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nfs/Disconnect-NfsSession.md b/docset/winserver2012-ps/nfs/Disconnect-NfsSession.md index 6fd9463864..1d4cbc6bec 100644 --- a/docset/winserver2012-ps/nfs/Disconnect-NfsSession.md +++ b/docset/winserver2012-ps/nfs/Disconnect-NfsSession.md @@ -1,7 +1,7 @@ --- external help file: NFS_Cmdlets.xml Module Name: NFS -online version: https://docs.microsoft.com/powershell/module/nfs/disconnect-nfssession?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/disconnect-nfssession?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nfs/Get-NfsClientConfiguration.md b/docset/winserver2012-ps/nfs/Get-NfsClientConfiguration.md index 714c4b3245..b015fbf5c6 100644 --- a/docset/winserver2012-ps/nfs/Get-NfsClientConfiguration.md +++ b/docset/winserver2012-ps/nfs/Get-NfsClientConfiguration.md @@ -1,7 +1,7 @@ --- external help file: NFS_Cmdlets.xml Module Name: NFS -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsclientconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsclientconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nfs/Get-NfsClientLock.md b/docset/winserver2012-ps/nfs/Get-NfsClientLock.md index 732fe2dcb4..997179752d 100644 --- a/docset/winserver2012-ps/nfs/Get-NfsClientLock.md +++ b/docset/winserver2012-ps/nfs/Get-NfsClientLock.md @@ -1,7 +1,7 @@ --- external help file: NFS_Cmdlets.xml Module Name: NFS -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsclientlock?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsclientlock?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nfs/Get-NfsClientgroup.md b/docset/winserver2012-ps/nfs/Get-NfsClientgroup.md index b37d9a5c83..00e043adff 100644 --- a/docset/winserver2012-ps/nfs/Get-NfsClientgroup.md +++ b/docset/winserver2012-ps/nfs/Get-NfsClientgroup.md @@ -1,7 +1,7 @@ --- external help file: NFS_Cmdlets.xml Module Name: NFS -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsclientgroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsclientgroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nfs/Get-NfsMappedIdentity.md b/docset/winserver2012-ps/nfs/Get-NfsMappedIdentity.md index 46d2b33a07..6b7165d389 100644 --- a/docset/winserver2012-ps/nfs/Get-NfsMappedIdentity.md +++ b/docset/winserver2012-ps/nfs/Get-NfsMappedIdentity.md @@ -1,7 +1,7 @@ --- external help file: NFS_Cmdlets.xml Module Name: NFS -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsmappedidentity?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsmappedidentity?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nfs/Get-NfsMappingStore.md b/docset/winserver2012-ps/nfs/Get-NfsMappingStore.md index 9cc0cb7b3b..68f680a4a8 100644 --- a/docset/winserver2012-ps/nfs/Get-NfsMappingStore.md +++ b/docset/winserver2012-ps/nfs/Get-NfsMappingStore.md @@ -1,7 +1,7 @@ --- external help file: NFS_Cmdlets.xml Module Name: NFS -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsmappingstore?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsmappingstore?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nfs/Get-NfsMountedClient.md b/docset/winserver2012-ps/nfs/Get-NfsMountedClient.md index c9e94abe5a..eba5547f41 100644 --- a/docset/winserver2012-ps/nfs/Get-NfsMountedClient.md +++ b/docset/winserver2012-ps/nfs/Get-NfsMountedClient.md @@ -1,7 +1,7 @@ --- external help file: NFS_Cmdlets.xml Module Name: NFS -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsmountedclient?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsmountedclient?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nfs/Get-NfsNetgroup.md b/docset/winserver2012-ps/nfs/Get-NfsNetgroup.md index 1de9852f72..dec7585d3e 100644 --- a/docset/winserver2012-ps/nfs/Get-NfsNetgroup.md +++ b/docset/winserver2012-ps/nfs/Get-NfsNetgroup.md @@ -1,7 +1,7 @@ --- external help file: NFS_Cmdlets.xml Module Name: NFS -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsnetgroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsnetgroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nfs/Get-NfsNetgroupStore.md b/docset/winserver2012-ps/nfs/Get-NfsNetgroupStore.md index 9f4c9fab67..ab5121f25f 100644 --- a/docset/winserver2012-ps/nfs/Get-NfsNetgroupStore.md +++ b/docset/winserver2012-ps/nfs/Get-NfsNetgroupStore.md @@ -1,7 +1,7 @@ --- external help file: NFS_Cmdlets.xml Module Name: NFS -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsnetgroupstore?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsnetgroupstore?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nfs/Get-NfsOpenFile.md b/docset/winserver2012-ps/nfs/Get-NfsOpenFile.md index 94d082ee9e..bf66c90d48 100644 --- a/docset/winserver2012-ps/nfs/Get-NfsOpenFile.md +++ b/docset/winserver2012-ps/nfs/Get-NfsOpenFile.md @@ -1,7 +1,7 @@ --- external help file: NFS_Cmdlets.xml Module Name: NFS -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsopenfile?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsopenfile?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nfs/Get-NfsServerConfiguration.md b/docset/winserver2012-ps/nfs/Get-NfsServerConfiguration.md index ea3f573d10..76fe072e14 100644 --- a/docset/winserver2012-ps/nfs/Get-NfsServerConfiguration.md +++ b/docset/winserver2012-ps/nfs/Get-NfsServerConfiguration.md @@ -1,7 +1,7 @@ --- external help file: NFS_Cmdlets.xml Module Name: NFS -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsserverconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsserverconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nfs/Get-NfsSession.md b/docset/winserver2012-ps/nfs/Get-NfsSession.md index 46a7c12d1e..abc4f9cf58 100644 --- a/docset/winserver2012-ps/nfs/Get-NfsSession.md +++ b/docset/winserver2012-ps/nfs/Get-NfsSession.md @@ -1,7 +1,7 @@ --- external help file: NFS_Cmdlets.xml Module Name: NFS -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfssession?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfssession?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nfs/Get-NfsShare.md b/docset/winserver2012-ps/nfs/Get-NfsShare.md index f91055e1eb..1fc2a055c5 100644 --- a/docset/winserver2012-ps/nfs/Get-NfsShare.md +++ b/docset/winserver2012-ps/nfs/Get-NfsShare.md @@ -1,7 +1,7 @@ --- external help file: NFS_Cmdlets.xml Module Name: NFS -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsshare?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsshare?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nfs/Get-NfsSharePermission.md b/docset/winserver2012-ps/nfs/Get-NfsSharePermission.md index 0697b8221b..78202184b7 100644 --- a/docset/winserver2012-ps/nfs/Get-NfsSharePermission.md +++ b/docset/winserver2012-ps/nfs/Get-NfsSharePermission.md @@ -1,7 +1,7 @@ --- external help file: NFS_Cmdlets.xml Module Name: NFS -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfssharepermission?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfssharepermission?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nfs/Get-NfsStatistics.md b/docset/winserver2012-ps/nfs/Get-NfsStatistics.md index 2334213df9..5035f5f7a1 100644 --- a/docset/winserver2012-ps/nfs/Get-NfsStatistics.md +++ b/docset/winserver2012-ps/nfs/Get-NfsStatistics.md @@ -1,7 +1,7 @@ --- external help file: NFS_Cmdlets.xml Module Name: NFS -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsstatistics?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsstatistics?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nfs/Grant-NfsSharePermission.md b/docset/winserver2012-ps/nfs/Grant-NfsSharePermission.md index c9306f3803..3a0fa4a001 100644 --- a/docset/winserver2012-ps/nfs/Grant-NfsSharePermission.md +++ b/docset/winserver2012-ps/nfs/Grant-NfsSharePermission.md @@ -1,7 +1,7 @@ --- external help file: NFS_Cmdlets.xml Module Name: NFS -online version: https://docs.microsoft.com/powershell/module/nfs/grant-nfssharepermission?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/grant-nfssharepermission?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nfs/Install-NfsMappingStore.md b/docset/winserver2012-ps/nfs/Install-NfsMappingStore.md index bd610a6a6b..6cc3a62384 100644 --- a/docset/winserver2012-ps/nfs/Install-NfsMappingStore.md +++ b/docset/winserver2012-ps/nfs/Install-NfsMappingStore.md @@ -1,7 +1,7 @@ --- external help file: NFS_Cmdlets.xml Module Name: NFS -online version: https://docs.microsoft.com/powershell/module/nfs/install-nfsmappingstore?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/install-nfsmappingstore?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nfs/New-NfsClientgroup.md b/docset/winserver2012-ps/nfs/New-NfsClientgroup.md index 170fe7f1bb..6ff27c7776 100644 --- a/docset/winserver2012-ps/nfs/New-NfsClientgroup.md +++ b/docset/winserver2012-ps/nfs/New-NfsClientgroup.md @@ -1,7 +1,7 @@ --- external help file: NFS_Cmdlets.xml Module Name: NFS -online version: https://docs.microsoft.com/powershell/module/nfs/new-nfsclientgroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/new-nfsclientgroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nfs/New-NfsMappedIdentity.md b/docset/winserver2012-ps/nfs/New-NfsMappedIdentity.md index 42d1e87022..a4b0c126f5 100644 --- a/docset/winserver2012-ps/nfs/New-NfsMappedIdentity.md +++ b/docset/winserver2012-ps/nfs/New-NfsMappedIdentity.md @@ -1,7 +1,7 @@ --- external help file: NFS_Cmdlets.xml Module Name: NFS -online version: https://docs.microsoft.com/powershell/module/nfs/new-nfsmappedidentity?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/new-nfsmappedidentity?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nfs/New-NfsNetgroup.md b/docset/winserver2012-ps/nfs/New-NfsNetgroup.md index cd6236368f..e74ac3c6f7 100644 --- a/docset/winserver2012-ps/nfs/New-NfsNetgroup.md +++ b/docset/winserver2012-ps/nfs/New-NfsNetgroup.md @@ -1,7 +1,7 @@ --- external help file: NFS_Cmdlets.xml Module Name: NFS -online version: https://docs.microsoft.com/powershell/module/nfs/new-nfsnetgroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/new-nfsnetgroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nfs/New-NfsShare.md b/docset/winserver2012-ps/nfs/New-NfsShare.md index 593b9b0bf9..cee27a803b 100644 --- a/docset/winserver2012-ps/nfs/New-NfsShare.md +++ b/docset/winserver2012-ps/nfs/New-NfsShare.md @@ -1,7 +1,7 @@ --- external help file: NFS_Cmdlets.xml Module Name: NFS -online version: https://docs.microsoft.com/powershell/module/nfs/new-nfsshare?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/new-nfsshare?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nfs/Remove-NfsClientgroup.md b/docset/winserver2012-ps/nfs/Remove-NfsClientgroup.md index 1a8fcabfc8..cdd61ee6e3 100644 --- a/docset/winserver2012-ps/nfs/Remove-NfsClientgroup.md +++ b/docset/winserver2012-ps/nfs/Remove-NfsClientgroup.md @@ -1,7 +1,7 @@ --- external help file: NFS_Cmdlets.xml Module Name: NFS -online version: https://docs.microsoft.com/powershell/module/nfs/remove-nfsclientgroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/remove-nfsclientgroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nfs/Remove-NfsMappedIdentity.md b/docset/winserver2012-ps/nfs/Remove-NfsMappedIdentity.md index 43868b3d4a..c265cc5cbe 100644 --- a/docset/winserver2012-ps/nfs/Remove-NfsMappedIdentity.md +++ b/docset/winserver2012-ps/nfs/Remove-NfsMappedIdentity.md @@ -1,7 +1,7 @@ --- external help file: NFS_Cmdlets.xml Module Name: NFS -online version: https://docs.microsoft.com/powershell/module/nfs/remove-nfsmappedidentity?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/remove-nfsmappedidentity?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nfs/Remove-NfsNetgroup.md b/docset/winserver2012-ps/nfs/Remove-NfsNetgroup.md index 7326b22592..11c8ab4597 100644 --- a/docset/winserver2012-ps/nfs/Remove-NfsNetgroup.md +++ b/docset/winserver2012-ps/nfs/Remove-NfsNetgroup.md @@ -1,7 +1,7 @@ --- external help file: NFS_Cmdlets.xml Module Name: NFS -online version: https://docs.microsoft.com/powershell/module/nfs/remove-nfsnetgroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/remove-nfsnetgroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nfs/Remove-NfsShare.md b/docset/winserver2012-ps/nfs/Remove-NfsShare.md index 1392e7c76d..5fe090cdd8 100644 --- a/docset/winserver2012-ps/nfs/Remove-NfsShare.md +++ b/docset/winserver2012-ps/nfs/Remove-NfsShare.md @@ -1,7 +1,7 @@ --- external help file: NFS_Cmdlets.xml Module Name: NFS -online version: https://docs.microsoft.com/powershell/module/nfs/remove-nfsshare?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/remove-nfsshare?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nfs/Rename-NfsClientgroup.md b/docset/winserver2012-ps/nfs/Rename-NfsClientgroup.md index a0d7b1d5a2..f388ccd27e 100644 --- a/docset/winserver2012-ps/nfs/Rename-NfsClientgroup.md +++ b/docset/winserver2012-ps/nfs/Rename-NfsClientgroup.md @@ -1,7 +1,7 @@ --- external help file: NFS_Cmdlets.xml Module Name: NFS -online version: https://docs.microsoft.com/powershell/module/nfs/rename-nfsclientgroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/rename-nfsclientgroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nfs/Reset-NfsStatistics.md b/docset/winserver2012-ps/nfs/Reset-NfsStatistics.md index 7e9023661e..9f8b630bc0 100644 --- a/docset/winserver2012-ps/nfs/Reset-NfsStatistics.md +++ b/docset/winserver2012-ps/nfs/Reset-NfsStatistics.md @@ -1,7 +1,7 @@ --- external help file: NFS_Cmdlets.xml Module Name: NFS -online version: https://docs.microsoft.com/powershell/module/nfs/reset-nfsstatistics?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/reset-nfsstatistics?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nfs/Resolve-NfsMappedIdentity.md b/docset/winserver2012-ps/nfs/Resolve-NfsMappedIdentity.md index 2f4d7e4d4c..5892057f82 100644 --- a/docset/winserver2012-ps/nfs/Resolve-NfsMappedIdentity.md +++ b/docset/winserver2012-ps/nfs/Resolve-NfsMappedIdentity.md @@ -1,7 +1,7 @@ --- external help file: NFS_Cmdlets.xml Module Name: NFS -online version: https://docs.microsoft.com/powershell/module/nfs/resolve-nfsmappedidentity?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/resolve-nfsmappedidentity?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nfs/Revoke-NfsClientLock.md b/docset/winserver2012-ps/nfs/Revoke-NfsClientLock.md index 79632dacf2..9a0cfb0af3 100644 --- a/docset/winserver2012-ps/nfs/Revoke-NfsClientLock.md +++ b/docset/winserver2012-ps/nfs/Revoke-NfsClientLock.md @@ -1,7 +1,7 @@ --- external help file: NFS_Cmdlets.xml Module Name: NFS -online version: https://docs.microsoft.com/powershell/module/nfs/revoke-nfsclientlock?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/revoke-nfsclientlock?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nfs/Revoke-NfsMountedClient.md b/docset/winserver2012-ps/nfs/Revoke-NfsMountedClient.md index 1f0ac8197d..8878a5a946 100644 --- a/docset/winserver2012-ps/nfs/Revoke-NfsMountedClient.md +++ b/docset/winserver2012-ps/nfs/Revoke-NfsMountedClient.md @@ -1,7 +1,7 @@ --- external help file: NFS_Cmdlets.xml Module Name: NFS -online version: https://docs.microsoft.com/powershell/module/nfs/revoke-nfsmountedclient?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/revoke-nfsmountedclient?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nfs/Revoke-NfsOpenFile.md b/docset/winserver2012-ps/nfs/Revoke-NfsOpenFile.md index 28d99d97d9..65b31bbe86 100644 --- a/docset/winserver2012-ps/nfs/Revoke-NfsOpenFile.md +++ b/docset/winserver2012-ps/nfs/Revoke-NfsOpenFile.md @@ -1,7 +1,7 @@ --- external help file: NFS_Cmdlets.xml Module Name: NFS -online version: https://docs.microsoft.com/powershell/module/nfs/revoke-nfsopenfile?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/revoke-nfsopenfile?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nfs/Revoke-NfsSharePermission.md b/docset/winserver2012-ps/nfs/Revoke-NfsSharePermission.md index c04a51e097..3cab590e01 100644 --- a/docset/winserver2012-ps/nfs/Revoke-NfsSharePermission.md +++ b/docset/winserver2012-ps/nfs/Revoke-NfsSharePermission.md @@ -1,7 +1,7 @@ --- external help file: NFS_Cmdlets.xml Module Name: NFS -online version: https://docs.microsoft.com/powershell/module/nfs/revoke-nfssharepermission?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/revoke-nfssharepermission?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nfs/Set-NfsClientConfiguration.md b/docset/winserver2012-ps/nfs/Set-NfsClientConfiguration.md index d2af570787..68359a54bb 100644 --- a/docset/winserver2012-ps/nfs/Set-NfsClientConfiguration.md +++ b/docset/winserver2012-ps/nfs/Set-NfsClientConfiguration.md @@ -1,7 +1,7 @@ --- external help file: NFS_Cmdlets.xml Module Name: NFS -online version: https://docs.microsoft.com/powershell/module/nfs/set-nfsclientconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/set-nfsclientconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nfs/Set-NfsClientgroup.md b/docset/winserver2012-ps/nfs/Set-NfsClientgroup.md index c67427d491..5f1e5d2eee 100644 --- a/docset/winserver2012-ps/nfs/Set-NfsClientgroup.md +++ b/docset/winserver2012-ps/nfs/Set-NfsClientgroup.md @@ -1,7 +1,7 @@ --- external help file: NFS_Cmdlets.xml Module Name: NFS -online version: https://docs.microsoft.com/powershell/module/nfs/set-nfsclientgroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/set-nfsclientgroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nfs/Set-NfsMappedIdentity.md b/docset/winserver2012-ps/nfs/Set-NfsMappedIdentity.md index 539c46a217..565e7a6e2c 100644 --- a/docset/winserver2012-ps/nfs/Set-NfsMappedIdentity.md +++ b/docset/winserver2012-ps/nfs/Set-NfsMappedIdentity.md @@ -1,7 +1,7 @@ --- external help file: NFS_Cmdlets.xml Module Name: NFS -online version: https://docs.microsoft.com/powershell/module/nfs/set-nfsmappedidentity?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/set-nfsmappedidentity?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nfs/Set-NfsMappingStore.md b/docset/winserver2012-ps/nfs/Set-NfsMappingStore.md index 6bece780fd..d8db0ca283 100644 --- a/docset/winserver2012-ps/nfs/Set-NfsMappingStore.md +++ b/docset/winserver2012-ps/nfs/Set-NfsMappingStore.md @@ -1,7 +1,7 @@ --- external help file: NFS_Cmdlets.xml Module Name: NFS -online version: https://docs.microsoft.com/powershell/module/nfs/set-nfsmappingstore?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/set-nfsmappingstore?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nfs/Set-NfsNetgroup.md b/docset/winserver2012-ps/nfs/Set-NfsNetgroup.md index 00494d2e61..168d1fc6c8 100644 --- a/docset/winserver2012-ps/nfs/Set-NfsNetgroup.md +++ b/docset/winserver2012-ps/nfs/Set-NfsNetgroup.md @@ -1,7 +1,7 @@ --- external help file: NFS_Cmdlets.xml Module Name: NFS -online version: https://docs.microsoft.com/powershell/module/nfs/set-nfsnetgroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/set-nfsnetgroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nfs/Set-NfsNetgroupStore.md b/docset/winserver2012-ps/nfs/Set-NfsNetgroupStore.md index a952a2647e..a847198546 100644 --- a/docset/winserver2012-ps/nfs/Set-NfsNetgroupStore.md +++ b/docset/winserver2012-ps/nfs/Set-NfsNetgroupStore.md @@ -1,7 +1,7 @@ --- external help file: NFS_Cmdlets.xml Module Name: NFS -online version: https://docs.microsoft.com/powershell/module/nfs/set-nfsnetgroupstore?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/set-nfsnetgroupstore?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nfs/Set-NfsServerConfiguration.md b/docset/winserver2012-ps/nfs/Set-NfsServerConfiguration.md index f066c71c50..366bf9250c 100644 --- a/docset/winserver2012-ps/nfs/Set-NfsServerConfiguration.md +++ b/docset/winserver2012-ps/nfs/Set-NfsServerConfiguration.md @@ -1,7 +1,7 @@ --- external help file: NFS_Cmdlets.xml Module Name: NFS -online version: https://docs.microsoft.com/powershell/module/nfs/set-nfsserverconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/set-nfsserverconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nfs/Set-NfsShare.md b/docset/winserver2012-ps/nfs/Set-NfsShare.md index 4643a030d9..123b9827d7 100644 --- a/docset/winserver2012-ps/nfs/Set-NfsShare.md +++ b/docset/winserver2012-ps/nfs/Set-NfsShare.md @@ -1,7 +1,7 @@ --- external help file: NFS_Cmdlets.xml Module Name: NFS -online version: https://docs.microsoft.com/powershell/module/nfs/set-nfsshare?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/set-nfsshare?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nfs/Test-NfsMappedIdentity.md b/docset/winserver2012-ps/nfs/Test-NfsMappedIdentity.md index 9e76599e0d..f20b9e0b96 100644 --- a/docset/winserver2012-ps/nfs/Test-NfsMappedIdentity.md +++ b/docset/winserver2012-ps/nfs/Test-NfsMappedIdentity.md @@ -1,7 +1,7 @@ --- external help file: NFS_Cmdlets.xml Module Name: NFS -online version: https://docs.microsoft.com/powershell/module/nfs/test-nfsmappedidentity?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/test-nfsmappedidentity?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nfs/Test-NfsMappingStore.md b/docset/winserver2012-ps/nfs/Test-NfsMappingStore.md index 90ea620db7..6a34386a20 100644 --- a/docset/winserver2012-ps/nfs/Test-NfsMappingStore.md +++ b/docset/winserver2012-ps/nfs/Test-NfsMappingStore.md @@ -1,7 +1,7 @@ --- external help file: NFS_Cmdlets.xml Module Name: NFS -online version: https://docs.microsoft.com/powershell/module/nfs/test-nfsmappingstore?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/test-nfsmappingstore?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nps/Export-NpsConfiguration.md b/docset/winserver2012-ps/nps/Export-NpsConfiguration.md index bb7033d485..a909c62703 100644 --- a/docset/winserver2012-ps/nps/Export-NpsConfiguration.md +++ b/docset/winserver2012-ps/nps/Export-NpsConfiguration.md @@ -1,7 +1,7 @@ --- external help file: NPS_Cmdlets.xml Module Name: NPS -online version: https://docs.microsoft.com/powershell/module/nps/export-npsconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nps/export-npsconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nps/Get-NpsRadiusClient.md b/docset/winserver2012-ps/nps/Get-NpsRadiusClient.md index 09f3fe5cb4..38eaca3da0 100644 --- a/docset/winserver2012-ps/nps/Get-NpsRadiusClient.md +++ b/docset/winserver2012-ps/nps/Get-NpsRadiusClient.md @@ -1,7 +1,7 @@ --- external help file: NPS_Cmdlets.xml Module Name: NPS -online version: https://docs.microsoft.com/powershell/module/nps/get-npsradiusclient?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nps/get-npsradiusclient?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nps/Get-NpsRemediationServer.md b/docset/winserver2012-ps/nps/Get-NpsRemediationServer.md index d903ddf3f9..883c0292de 100644 --- a/docset/winserver2012-ps/nps/Get-NpsRemediationServer.md +++ b/docset/winserver2012-ps/nps/Get-NpsRemediationServer.md @@ -1,7 +1,7 @@ --- external help file: NPS_Cmdlets.xml Module Name: NPS -online version: https://docs.microsoft.com/powershell/module/nps/get-npsremediationserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nps/get-npsremediationserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nps/Get-NpsRemediationServerGroup.md b/docset/winserver2012-ps/nps/Get-NpsRemediationServerGroup.md index 846c8e0604..4c708002ce 100644 --- a/docset/winserver2012-ps/nps/Get-NpsRemediationServerGroup.md +++ b/docset/winserver2012-ps/nps/Get-NpsRemediationServerGroup.md @@ -1,7 +1,7 @@ --- external help file: NPS_Cmdlets.xml Module Name: NPS -online version: https://docs.microsoft.com/powershell/module/nps/get-npsremediationservergroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nps/get-npsremediationservergroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nps/Get-NpsSharedSecretTemplate.md b/docset/winserver2012-ps/nps/Get-NpsSharedSecretTemplate.md index 5dd861a25a..3d59409b88 100644 --- a/docset/winserver2012-ps/nps/Get-NpsSharedSecretTemplate.md +++ b/docset/winserver2012-ps/nps/Get-NpsSharedSecretTemplate.md @@ -1,7 +1,7 @@ --- external help file: NPS_Cmdlets.xml Module Name: NPS -online version: https://docs.microsoft.com/powershell/module/nps/get-npssharedsecrettemplate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nps/get-npssharedsecrettemplate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nps/Import-NpsConfiguration.md b/docset/winserver2012-ps/nps/Import-NpsConfiguration.md index a8f7453002..b5eca7d5b1 100644 --- a/docset/winserver2012-ps/nps/Import-NpsConfiguration.md +++ b/docset/winserver2012-ps/nps/Import-NpsConfiguration.md @@ -1,7 +1,7 @@ --- external help file: NPS_Cmdlets.xml Module Name: NPS -online version: https://docs.microsoft.com/powershell/module/nps/import-npsconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nps/import-npsconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nps/New-NpsRadiusClient.md b/docset/winserver2012-ps/nps/New-NpsRadiusClient.md index 54fafd09c2..36404b8383 100644 --- a/docset/winserver2012-ps/nps/New-NpsRadiusClient.md +++ b/docset/winserver2012-ps/nps/New-NpsRadiusClient.md @@ -1,7 +1,7 @@ --- external help file: NPS_Cmdlets.xml Module Name: NPS -online version: https://docs.microsoft.com/powershell/module/nps/new-npsradiusclient?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nps/new-npsradiusclient?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nps/New-NpsRemediationServer.md b/docset/winserver2012-ps/nps/New-NpsRemediationServer.md index 5b9de9817d..4b2d62543f 100644 --- a/docset/winserver2012-ps/nps/New-NpsRemediationServer.md +++ b/docset/winserver2012-ps/nps/New-NpsRemediationServer.md @@ -1,7 +1,7 @@ --- external help file: NPS_Cmdlets.xml Module Name: NPS -online version: https://docs.microsoft.com/powershell/module/nps/new-npsremediationserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nps/new-npsremediationserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nps/New-NpsRemediationServerGroup.md b/docset/winserver2012-ps/nps/New-NpsRemediationServerGroup.md index 61dea94be5..d2d47133ed 100644 --- a/docset/winserver2012-ps/nps/New-NpsRemediationServerGroup.md +++ b/docset/winserver2012-ps/nps/New-NpsRemediationServerGroup.md @@ -1,7 +1,7 @@ --- external help file: NPS_Cmdlets.xml Module Name: NPS -online version: https://docs.microsoft.com/powershell/module/nps/new-npsremediationservergroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nps/new-npsremediationservergroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nps/Remove-NpsRadiusClient.md b/docset/winserver2012-ps/nps/Remove-NpsRadiusClient.md index 31dc7e1442..d754b8ff1f 100644 --- a/docset/winserver2012-ps/nps/Remove-NpsRadiusClient.md +++ b/docset/winserver2012-ps/nps/Remove-NpsRadiusClient.md @@ -1,7 +1,7 @@ --- external help file: NPS_Cmdlets.xml Module Name: NPS -online version: https://docs.microsoft.com/powershell/module/nps/remove-npsradiusclient?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nps/remove-npsradiusclient?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nps/Remove-NpsRemediationServer.md b/docset/winserver2012-ps/nps/Remove-NpsRemediationServer.md index 5c9efd7271..d262a8afe6 100644 --- a/docset/winserver2012-ps/nps/Remove-NpsRemediationServer.md +++ b/docset/winserver2012-ps/nps/Remove-NpsRemediationServer.md @@ -1,7 +1,7 @@ --- external help file: NPS_Cmdlets.xml Module Name: NPS -online version: https://docs.microsoft.com/powershell/module/nps/remove-npsremediationserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nps/remove-npsremediationserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nps/Remove-NpsRemediationServerGroup.md b/docset/winserver2012-ps/nps/Remove-NpsRemediationServerGroup.md index a0818e601e..08effb2fe4 100644 --- a/docset/winserver2012-ps/nps/Remove-NpsRemediationServerGroup.md +++ b/docset/winserver2012-ps/nps/Remove-NpsRemediationServerGroup.md @@ -1,7 +1,7 @@ --- external help file: NPS_Cmdlets.xml Module Name: NPS -online version: https://docs.microsoft.com/powershell/module/nps/remove-npsremediationservergroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nps/remove-npsremediationservergroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/nps/Set-NpsRadiusClient.md b/docset/winserver2012-ps/nps/Set-NpsRadiusClient.md index bbee55afd9..ea7300598f 100644 --- a/docset/winserver2012-ps/nps/Set-NpsRadiusClient.md +++ b/docset/winserver2012-ps/nps/Set-NpsRadiusClient.md @@ -1,7 +1,7 @@ --- external help file: NPS_Cmdlets.xml Module Name: NPS -online version: https://docs.microsoft.com/powershell/module/nps/set-npsradiusclient?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nps/set-npsradiusclient?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/pki/Add-CertificateEnrollmentPolicyServer.md b/docset/winserver2012-ps/pki/Add-CertificateEnrollmentPolicyServer.md index 83f8e2a7f2..fd50fa4f16 100644 --- a/docset/winserver2012-ps/pki/Add-CertificateEnrollmentPolicyServer.md +++ b/docset/winserver2012-ps/pki/Add-CertificateEnrollmentPolicyServer.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki -online version: https://docs.microsoft.com/powershell/module/pki/add-certificateenrollmentpolicyserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/add-certificateenrollmentpolicyserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/pki/Export-Certificate.md b/docset/winserver2012-ps/pki/Export-Certificate.md index 26ad887385..430e41a98d 100644 --- a/docset/winserver2012-ps/pki/Export-Certificate.md +++ b/docset/winserver2012-ps/pki/Export-Certificate.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki -online version: https://docs.microsoft.com/powershell/module/pki/export-certificate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/export-certificate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/pki/Export-PfxCertificate.md b/docset/winserver2012-ps/pki/Export-PfxCertificate.md index 6c04d08321..bdbd330572 100644 --- a/docset/winserver2012-ps/pki/Export-PfxCertificate.md +++ b/docset/winserver2012-ps/pki/Export-PfxCertificate.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki -online version: https://docs.microsoft.com/powershell/module/pki/export-pfxcertificate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/export-pfxcertificate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/pki/Get-Certificate.md b/docset/winserver2012-ps/pki/Get-Certificate.md index 7de2f6e467..e7b7e688c7 100644 --- a/docset/winserver2012-ps/pki/Get-Certificate.md +++ b/docset/winserver2012-ps/pki/Get-Certificate.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki -online version: https://docs.microsoft.com/powershell/module/pki/get-certificate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/get-certificate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/pki/Get-CertificateAutoEnrollmentPolicy.md b/docset/winserver2012-ps/pki/Get-CertificateAutoEnrollmentPolicy.md index 22b557f9a9..ccb8f4e65c 100644 --- a/docset/winserver2012-ps/pki/Get-CertificateAutoEnrollmentPolicy.md +++ b/docset/winserver2012-ps/pki/Get-CertificateAutoEnrollmentPolicy.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki -online version: https://docs.microsoft.com/powershell/module/pki/get-certificateautoenrollmentpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/get-certificateautoenrollmentpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/pki/Get-CertificateEnrollmentPolicyServer.md b/docset/winserver2012-ps/pki/Get-CertificateEnrollmentPolicyServer.md index f521bc80ce..be5c50f3ec 100644 --- a/docset/winserver2012-ps/pki/Get-CertificateEnrollmentPolicyServer.md +++ b/docset/winserver2012-ps/pki/Get-CertificateEnrollmentPolicyServer.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki -online version: https://docs.microsoft.com/powershell/module/pki/get-certificateenrollmentpolicyserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/get-certificateenrollmentpolicyserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/pki/Get-CertificateNotificationTask.md b/docset/winserver2012-ps/pki/Get-CertificateNotificationTask.md index 10625be842..302eb633ef 100644 --- a/docset/winserver2012-ps/pki/Get-CertificateNotificationTask.md +++ b/docset/winserver2012-ps/pki/Get-CertificateNotificationTask.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki -online version: https://docs.microsoft.com/powershell/module/pki/get-certificatenotificationtask?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/get-certificatenotificationtask?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/pki/Get-PfxData.md b/docset/winserver2012-ps/pki/Get-PfxData.md index 14cc1623a5..701f5975a6 100644 --- a/docset/winserver2012-ps/pki/Get-PfxData.md +++ b/docset/winserver2012-ps/pki/Get-PfxData.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki -online version: https://docs.microsoft.com/powershell/module/pki/get-pfxdata?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/get-pfxdata?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/pki/Import-Certificate.md b/docset/winserver2012-ps/pki/Import-Certificate.md index cf9af75fe4..33606d434b 100644 --- a/docset/winserver2012-ps/pki/Import-Certificate.md +++ b/docset/winserver2012-ps/pki/Import-Certificate.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki -online version: https://docs.microsoft.com/powershell/module/pki/import-certificate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/import-certificate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/pki/Import-PfxCertificate.md b/docset/winserver2012-ps/pki/Import-PfxCertificate.md index b9188c42ec..bd34dbbcf6 100644 --- a/docset/winserver2012-ps/pki/Import-PfxCertificate.md +++ b/docset/winserver2012-ps/pki/Import-PfxCertificate.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki -online version: https://docs.microsoft.com/powershell/module/pki/import-pfxcertificate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/import-pfxcertificate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/pki/New-CertificateNotificationTask.md b/docset/winserver2012-ps/pki/New-CertificateNotificationTask.md index 314e5aae1b..4cffc1a092 100644 --- a/docset/winserver2012-ps/pki/New-CertificateNotificationTask.md +++ b/docset/winserver2012-ps/pki/New-CertificateNotificationTask.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki -online version: https://docs.microsoft.com/powershell/module/pki/new-certificatenotificationtask?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/new-certificatenotificationtask?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/pki/New-SelfSignedCertificate.md b/docset/winserver2012-ps/pki/New-SelfSignedCertificate.md index 894212ef31..40342f8559 100644 --- a/docset/winserver2012-ps/pki/New-SelfSignedCertificate.md +++ b/docset/winserver2012-ps/pki/New-SelfSignedCertificate.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki -online version: https://docs.microsoft.com/powershell/module/pki/new-selfsignedcertificate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/new-selfsignedcertificate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/pki/Remove-CertificateEnrollmentPolicyServer.md b/docset/winserver2012-ps/pki/Remove-CertificateEnrollmentPolicyServer.md index 3786318e96..7e68de3935 100644 --- a/docset/winserver2012-ps/pki/Remove-CertificateEnrollmentPolicyServer.md +++ b/docset/winserver2012-ps/pki/Remove-CertificateEnrollmentPolicyServer.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki -online version: https://docs.microsoft.com/powershell/module/pki/remove-certificateenrollmentpolicyserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/remove-certificateenrollmentpolicyserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/pki/Remove-CertificateNotificationTask.md b/docset/winserver2012-ps/pki/Remove-CertificateNotificationTask.md index 85a1b9c000..cdcce0042f 100644 --- a/docset/winserver2012-ps/pki/Remove-CertificateNotificationTask.md +++ b/docset/winserver2012-ps/pki/Remove-CertificateNotificationTask.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki -online version: https://docs.microsoft.com/powershell/module/pki/remove-certificatenotificationtask?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/remove-certificatenotificationtask?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/pki/Set-CertificateAutoEnrollmentPolicy.md b/docset/winserver2012-ps/pki/Set-CertificateAutoEnrollmentPolicy.md index cf1ffbf7cd..06e11c4e07 100644 --- a/docset/winserver2012-ps/pki/Set-CertificateAutoEnrollmentPolicy.md +++ b/docset/winserver2012-ps/pki/Set-CertificateAutoEnrollmentPolicy.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki -online version: https://docs.microsoft.com/powershell/module/pki/set-certificateautoenrollmentpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/set-certificateautoenrollmentpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/pki/Switch-Certificate.md b/docset/winserver2012-ps/pki/Switch-Certificate.md index 66d9807eb4..4a59688cc4 100644 --- a/docset/winserver2012-ps/pki/Switch-Certificate.md +++ b/docset/winserver2012-ps/pki/Switch-Certificate.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki -online version: https://docs.microsoft.com/powershell/module/pki/switch-certificate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/switch-certificate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/pki/Test-Certificate.md b/docset/winserver2012-ps/pki/Test-Certificate.md index fc2c304488..04c14bf865 100644 --- a/docset/winserver2012-ps/pki/Test-Certificate.md +++ b/docset/winserver2012-ps/pki/Test-Certificate.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki -online version: https://docs.microsoft.com/powershell/module/pki/test-certificate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/test-certificate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/printmanagement/Add-Printer.md b/docset/winserver2012-ps/printmanagement/Add-Printer.md index 2e69d76428..4a6bb8ff1e 100644 --- a/docset/winserver2012-ps/printmanagement/Add-Printer.md +++ b/docset/winserver2012-ps/printmanagement/Add-Printer.md @@ -1,7 +1,7 @@ --- external help file: PrintMgmt_Cmdlets.xml Module Name: PrintManagement -online version: https://docs.microsoft.com/powershell/module/printmanagement/add-printer?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/add-printer?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/printmanagement/Add-PrinterDriver.md b/docset/winserver2012-ps/printmanagement/Add-PrinterDriver.md index 83d29fa726..c8016a16f5 100644 --- a/docset/winserver2012-ps/printmanagement/Add-PrinterDriver.md +++ b/docset/winserver2012-ps/printmanagement/Add-PrinterDriver.md @@ -1,7 +1,7 @@ --- external help file: PrintMgmt_Cmdlets.xml Module Name: PrintManagement -online version: https://docs.microsoft.com/powershell/module/printmanagement/add-printerdriver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/add-printerdriver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/printmanagement/Add-PrinterPort.md b/docset/winserver2012-ps/printmanagement/Add-PrinterPort.md index b885af2549..01c52fbae1 100644 --- a/docset/winserver2012-ps/printmanagement/Add-PrinterPort.md +++ b/docset/winserver2012-ps/printmanagement/Add-PrinterPort.md @@ -1,7 +1,7 @@ --- external help file: PrintMgmt_Cmdlets.xml Module Name: PrintManagement -online version: https://docs.microsoft.com/powershell/module/printmanagement/add-printerport?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/add-printerport?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/printmanagement/Get-PrintConfiguration.md b/docset/winserver2012-ps/printmanagement/Get-PrintConfiguration.md index edabede36e..873768f3af 100644 --- a/docset/winserver2012-ps/printmanagement/Get-PrintConfiguration.md +++ b/docset/winserver2012-ps/printmanagement/Get-PrintConfiguration.md @@ -1,7 +1,7 @@ --- external help file: PrintMgmt_Cmdlets.xml Module Name: PrintManagement -online version: https://docs.microsoft.com/powershell/module/printmanagement/get-printconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/get-printconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/printmanagement/Get-PrintJob.md b/docset/winserver2012-ps/printmanagement/Get-PrintJob.md index 5f35e726c5..a9c378eb7b 100644 --- a/docset/winserver2012-ps/printmanagement/Get-PrintJob.md +++ b/docset/winserver2012-ps/printmanagement/Get-PrintJob.md @@ -1,7 +1,7 @@ --- external help file: PrintMgmt_Cmdlets.xml Module Name: PrintManagement -online version: https://docs.microsoft.com/powershell/module/printmanagement/get-printjob?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/get-printjob?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/printmanagement/Get-Printer.md b/docset/winserver2012-ps/printmanagement/Get-Printer.md index 7e2286e153..5d7481548e 100644 --- a/docset/winserver2012-ps/printmanagement/Get-Printer.md +++ b/docset/winserver2012-ps/printmanagement/Get-Printer.md @@ -1,7 +1,7 @@ --- external help file: PrintMgmt_Cmdlets.xml Module Name: PrintManagement -online version: https://docs.microsoft.com/powershell/module/printmanagement/get-printer?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/get-printer?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/printmanagement/Get-PrinterDriver.md b/docset/winserver2012-ps/printmanagement/Get-PrinterDriver.md index bbcc2f8855..a797230f76 100644 --- a/docset/winserver2012-ps/printmanagement/Get-PrinterDriver.md +++ b/docset/winserver2012-ps/printmanagement/Get-PrinterDriver.md @@ -1,7 +1,7 @@ --- external help file: PrintMgmt_Cmdlets.xml Module Name: PrintManagement -online version: https://docs.microsoft.com/powershell/module/printmanagement/get-printerdriver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/get-printerdriver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/printmanagement/Get-PrinterPort.md b/docset/winserver2012-ps/printmanagement/Get-PrinterPort.md index 4f39b37503..d42626a876 100644 --- a/docset/winserver2012-ps/printmanagement/Get-PrinterPort.md +++ b/docset/winserver2012-ps/printmanagement/Get-PrinterPort.md @@ -1,7 +1,7 @@ --- external help file: PrintMgmt_Cmdlets.xml Module Name: PrintManagement -online version: https://docs.microsoft.com/powershell/module/printmanagement/get-printerport?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/get-printerport?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/printmanagement/Get-PrinterProperty.md b/docset/winserver2012-ps/printmanagement/Get-PrinterProperty.md index e899f8cd5c..7c77542171 100644 --- a/docset/winserver2012-ps/printmanagement/Get-PrinterProperty.md +++ b/docset/winserver2012-ps/printmanagement/Get-PrinterProperty.md @@ -1,7 +1,7 @@ --- external help file: PrintMgmt_Cmdlets.xml Module Name: PrintManagement -online version: https://docs.microsoft.com/powershell/module/printmanagement/get-printerproperty?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/get-printerproperty?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/printmanagement/Remove-PrintJob.md b/docset/winserver2012-ps/printmanagement/Remove-PrintJob.md index 3d80c09be4..8320da03c3 100644 --- a/docset/winserver2012-ps/printmanagement/Remove-PrintJob.md +++ b/docset/winserver2012-ps/printmanagement/Remove-PrintJob.md @@ -1,7 +1,7 @@ --- external help file: PrintMgmt_Cmdlets.xml Module Name: PrintManagement -online version: https://docs.microsoft.com/powershell/module/printmanagement/remove-printjob?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/remove-printjob?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/printmanagement/Remove-Printer.md b/docset/winserver2012-ps/printmanagement/Remove-Printer.md index fa923f60ff..0955fb80e6 100644 --- a/docset/winserver2012-ps/printmanagement/Remove-Printer.md +++ b/docset/winserver2012-ps/printmanagement/Remove-Printer.md @@ -1,7 +1,7 @@ --- external help file: PrintMgmt_Cmdlets.xml Module Name: PrintManagement -online version: https://docs.microsoft.com/powershell/module/printmanagement/remove-printer?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/remove-printer?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/printmanagement/Remove-PrinterDriver.md b/docset/winserver2012-ps/printmanagement/Remove-PrinterDriver.md index 22e6b55bf9..51c5433aba 100644 --- a/docset/winserver2012-ps/printmanagement/Remove-PrinterDriver.md +++ b/docset/winserver2012-ps/printmanagement/Remove-PrinterDriver.md @@ -1,7 +1,7 @@ --- external help file: PrintMgmt_Cmdlets.xml Module Name: PrintManagement -online version: https://docs.microsoft.com/powershell/module/printmanagement/remove-printerdriver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/remove-printerdriver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/printmanagement/Remove-PrinterPort.md b/docset/winserver2012-ps/printmanagement/Remove-PrinterPort.md index 785452e96d..f8cb240d66 100644 --- a/docset/winserver2012-ps/printmanagement/Remove-PrinterPort.md +++ b/docset/winserver2012-ps/printmanagement/Remove-PrinterPort.md @@ -1,7 +1,7 @@ --- external help file: PrintMgmt_Cmdlets.xml Module Name: PrintManagement -online version: https://docs.microsoft.com/powershell/module/printmanagement/remove-printerport?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/remove-printerport?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/printmanagement/Rename-Printer.md b/docset/winserver2012-ps/printmanagement/Rename-Printer.md index 00141f8744..06f41340ef 100644 --- a/docset/winserver2012-ps/printmanagement/Rename-Printer.md +++ b/docset/winserver2012-ps/printmanagement/Rename-Printer.md @@ -1,7 +1,7 @@ --- external help file: PrintMgmt_Cmdlets.xml Module Name: PrintManagement -online version: https://docs.microsoft.com/powershell/module/printmanagement/rename-printer?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/rename-printer?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/printmanagement/Restart-PrintJob.md b/docset/winserver2012-ps/printmanagement/Restart-PrintJob.md index d22396992d..78b3bb9217 100644 --- a/docset/winserver2012-ps/printmanagement/Restart-PrintJob.md +++ b/docset/winserver2012-ps/printmanagement/Restart-PrintJob.md @@ -1,7 +1,7 @@ --- external help file: PrintMgmt_Cmdlets.xml Module Name: PrintManagement -online version: https://docs.microsoft.com/powershell/module/printmanagement/restart-printjob?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/restart-printjob?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/printmanagement/Resume-PrintJob.md b/docset/winserver2012-ps/printmanagement/Resume-PrintJob.md index 9c418717fd..78de4f29d2 100644 --- a/docset/winserver2012-ps/printmanagement/Resume-PrintJob.md +++ b/docset/winserver2012-ps/printmanagement/Resume-PrintJob.md @@ -1,7 +1,7 @@ --- external help file: PrintMgmt_Cmdlets.xml Module Name: PrintManagement -online version: https://docs.microsoft.com/powershell/module/printmanagement/resume-printjob?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/resume-printjob?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/printmanagement/Set-PrintConfiguration.md b/docset/winserver2012-ps/printmanagement/Set-PrintConfiguration.md index fec53712ed..6f10356cb7 100644 --- a/docset/winserver2012-ps/printmanagement/Set-PrintConfiguration.md +++ b/docset/winserver2012-ps/printmanagement/Set-PrintConfiguration.md @@ -1,7 +1,7 @@ --- external help file: PrintMgmt_Cmdlets.xml Module Name: PrintManagement -online version: https://docs.microsoft.com/powershell/module/printmanagement/set-printconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/set-printconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/printmanagement/Set-Printer.md b/docset/winserver2012-ps/printmanagement/Set-Printer.md index 5784b6193d..f2d157bb25 100644 --- a/docset/winserver2012-ps/printmanagement/Set-Printer.md +++ b/docset/winserver2012-ps/printmanagement/Set-Printer.md @@ -1,7 +1,7 @@ --- external help file: PrintMgmt_Cmdlets.xml Module Name: PrintManagement -online version: https://docs.microsoft.com/powershell/module/printmanagement/set-printer?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/set-printer?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/printmanagement/Set-PrinterProperty.md b/docset/winserver2012-ps/printmanagement/Set-PrinterProperty.md index e3d140a319..068324d2f1 100644 --- a/docset/winserver2012-ps/printmanagement/Set-PrinterProperty.md +++ b/docset/winserver2012-ps/printmanagement/Set-PrinterProperty.md @@ -1,7 +1,7 @@ --- external help file: PrintMgmt_Cmdlets.xml Module Name: PrintManagement -online version: https://docs.microsoft.com/powershell/module/printmanagement/set-printerproperty?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/set-printerproperty?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/printmanagement/Suspend-PrintJob.md b/docset/winserver2012-ps/printmanagement/Suspend-PrintJob.md index bf11713a42..24c131b59b 100644 --- a/docset/winserver2012-ps/printmanagement/Suspend-PrintJob.md +++ b/docset/winserver2012-ps/printmanagement/Suspend-PrintJob.md @@ -1,7 +1,7 @@ --- external help file: PrintMgmt_Cmdlets.xml Module Name: PrintManagement -online version: https://docs.microsoft.com/powershell/module/printmanagement/suspend-printjob?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/suspend-printjob?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Add-DAAppServer.md b/docset/winserver2012-ps/remoteaccess/Add-DAAppServer.md index 4703706651..f035610679 100644 --- a/docset/winserver2012-ps/remoteaccess/Add-DAAppServer.md +++ b/docset/winserver2012-ps/remoteaccess/Add-DAAppServer.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-daappserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-daappserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Add-DAClient.md b/docset/winserver2012-ps/remoteaccess/Add-DAClient.md index eda9afa995..6d8b03361d 100644 --- a/docset/winserver2012-ps/remoteaccess/Add-DAClient.md +++ b/docset/winserver2012-ps/remoteaccess/Add-DAClient.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-daclient?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-daclient?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Add-DAClientDnsConfiguration.md b/docset/winserver2012-ps/remoteaccess/Add-DAClientDnsConfiguration.md index e8635cb892..12ba4ab8cb 100644 --- a/docset/winserver2012-ps/remoteaccess/Add-DAClientDnsConfiguration.md +++ b/docset/winserver2012-ps/remoteaccess/Add-DAClientDnsConfiguration.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-daclientdnsconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-daclientdnsconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Add-DAEntryPoint.md b/docset/winserver2012-ps/remoteaccess/Add-DAEntryPoint.md index 0a809a305d..239610adbf 100644 --- a/docset/winserver2012-ps/remoteaccess/Add-DAEntryPoint.md +++ b/docset/winserver2012-ps/remoteaccess/Add-DAEntryPoint.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-daentrypoint?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-daentrypoint?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Add-DAMgmtServer.md b/docset/winserver2012-ps/remoteaccess/Add-DAMgmtServer.md index 23142eaf40..62c982f80f 100644 --- a/docset/winserver2012-ps/remoteaccess/Add-DAMgmtServer.md +++ b/docset/winserver2012-ps/remoteaccess/Add-DAMgmtServer.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-damgmtserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-damgmtserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Add-RemoteAccessLoadBalancerNode.md b/docset/winserver2012-ps/remoteaccess/Add-RemoteAccessLoadBalancerNode.md index 67b0d2cc49..472227cfc4 100644 --- a/docset/winserver2012-ps/remoteaccess/Add-RemoteAccessLoadBalancerNode.md +++ b/docset/winserver2012-ps/remoteaccess/Add-RemoteAccessLoadBalancerNode.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-remoteaccessloadbalancernode?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-remoteaccessloadbalancernode?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Add-RemoteAccessRadius.md b/docset/winserver2012-ps/remoteaccess/Add-RemoteAccessRadius.md index 52fe587839..20f8e4beec 100644 --- a/docset/winserver2012-ps/remoteaccess/Add-RemoteAccessRadius.md +++ b/docset/winserver2012-ps/remoteaccess/Add-RemoteAccessRadius.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-remoteaccessradius?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-remoteaccessradius?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Add-VpnIPAddressRange.md b/docset/winserver2012-ps/remoteaccess/Add-VpnIPAddressRange.md index 4d7e35af78..3069478c91 100644 --- a/docset/winserver2012-ps/remoteaccess/Add-VpnIPAddressRange.md +++ b/docset/winserver2012-ps/remoteaccess/Add-VpnIPAddressRange.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-vpnipaddressrange?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-vpnipaddressrange?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Add-VpnS2SInterface.md b/docset/winserver2012-ps/remoteaccess/Add-VpnS2SInterface.md index 6c87804d82..4a5df43d6f 100644 --- a/docset/winserver2012-ps/remoteaccess/Add-VpnS2SInterface.md +++ b/docset/winserver2012-ps/remoteaccess/Add-VpnS2SInterface.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-vpns2sinterface?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-vpns2sinterface?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Clear-RemoteAccessInboxAccountingStore.md b/docset/winserver2012-ps/remoteaccess/Clear-RemoteAccessInboxAccountingStore.md index 7cf6bdb503..51911fc999 100644 --- a/docset/winserver2012-ps/remoteaccess/Clear-RemoteAccessInboxAccountingStore.md +++ b/docset/winserver2012-ps/remoteaccess/Clear-RemoteAccessInboxAccountingStore.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/clear-remoteaccessinboxaccountingstore?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/clear-remoteaccessinboxaccountingstore?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Clear-VpnS2SInterfaceStatistics.md b/docset/winserver2012-ps/remoteaccess/Clear-VpnS2SInterfaceStatistics.md index d3623f5091..54a586e39a 100644 --- a/docset/winserver2012-ps/remoteaccess/Clear-VpnS2SInterfaceStatistics.md +++ b/docset/winserver2012-ps/remoteaccess/Clear-VpnS2SInterfaceStatistics.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/clear-vpns2sinterfacestatistics?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/clear-vpns2sinterfacestatistics?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Connect-VpnS2SInterface.md b/docset/winserver2012-ps/remoteaccess/Connect-VpnS2SInterface.md index cbddb210d6..85e8938909 100644 --- a/docset/winserver2012-ps/remoteaccess/Connect-VpnS2SInterface.md +++ b/docset/winserver2012-ps/remoteaccess/Connect-VpnS2SInterface.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/connect-vpns2sinterface?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/connect-vpns2sinterface?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Disable-DAMultiSite.md b/docset/winserver2012-ps/remoteaccess/Disable-DAMultiSite.md index de0f38fbe3..25bcb8e1c7 100644 --- a/docset/winserver2012-ps/remoteaccess/Disable-DAMultiSite.md +++ b/docset/winserver2012-ps/remoteaccess/Disable-DAMultiSite.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/disable-damultisite?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/disable-damultisite?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Disable-DAOtpAuthentication.md b/docset/winserver2012-ps/remoteaccess/Disable-DAOtpAuthentication.md index 9064ac8b82..6073cb7b55 100644 --- a/docset/winserver2012-ps/remoteaccess/Disable-DAOtpAuthentication.md +++ b/docset/winserver2012-ps/remoteaccess/Disable-DAOtpAuthentication.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/disable-daotpauthentication?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/disable-daotpauthentication?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Disconnect-VpnS2SInterface.md b/docset/winserver2012-ps/remoteaccess/Disconnect-VpnS2SInterface.md index 54873c76f7..be2f408b73 100644 --- a/docset/winserver2012-ps/remoteaccess/Disconnect-VpnS2SInterface.md +++ b/docset/winserver2012-ps/remoteaccess/Disconnect-VpnS2SInterface.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/disconnect-vpns2sinterface?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/disconnect-vpns2sinterface?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Disconnect-VpnUser.md b/docset/winserver2012-ps/remoteaccess/Disconnect-VpnUser.md index c8622f5dac..043f8ef45f 100644 --- a/docset/winserver2012-ps/remoteaccess/Disconnect-VpnUser.md +++ b/docset/winserver2012-ps/remoteaccess/Disconnect-VpnUser.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/disconnect-vpnuser?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/disconnect-vpnuser?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Enable-DAMultiSite.md b/docset/winserver2012-ps/remoteaccess/Enable-DAMultiSite.md index 1008c8f1c6..8b1a30e4f0 100644 --- a/docset/winserver2012-ps/remoteaccess/Enable-DAMultiSite.md +++ b/docset/winserver2012-ps/remoteaccess/Enable-DAMultiSite.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/enable-damultisite?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/enable-damultisite?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Enable-DAOtpAuthentication.md b/docset/winserver2012-ps/remoteaccess/Enable-DAOtpAuthentication.md index 6f8bd3d32b..daf4f06017 100644 --- a/docset/winserver2012-ps/remoteaccess/Enable-DAOtpAuthentication.md +++ b/docset/winserver2012-ps/remoteaccess/Enable-DAOtpAuthentication.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/enable-daotpauthentication?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/enable-daotpauthentication?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Get-DAAppServer.md b/docset/winserver2012-ps/remoteaccess/Get-DAAppServer.md index c35c3c7f11..f6794437af 100644 --- a/docset/winserver2012-ps/remoteaccess/Get-DAAppServer.md +++ b/docset/winserver2012-ps/remoteaccess/Get-DAAppServer.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-daappserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-daappserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Get-DAClient.md b/docset/winserver2012-ps/remoteaccess/Get-DAClient.md index 2588caf935..8dd5423bf8 100644 --- a/docset/winserver2012-ps/remoteaccess/Get-DAClient.md +++ b/docset/winserver2012-ps/remoteaccess/Get-DAClient.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-daclient?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-daclient?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Get-DAClientDnsConfiguration.md b/docset/winserver2012-ps/remoteaccess/Get-DAClientDnsConfiguration.md index 2455a9c2d8..4bc48cdc3c 100644 --- a/docset/winserver2012-ps/remoteaccess/Get-DAClientDnsConfiguration.md +++ b/docset/winserver2012-ps/remoteaccess/Get-DAClientDnsConfiguration.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-daclientdnsconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-daclientdnsconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Get-DAEntryPoint.md b/docset/winserver2012-ps/remoteaccess/Get-DAEntryPoint.md index dd83aa874a..8c0a856c1d 100644 --- a/docset/winserver2012-ps/remoteaccess/Get-DAEntryPoint.md +++ b/docset/winserver2012-ps/remoteaccess/Get-DAEntryPoint.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-daentrypoint?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-daentrypoint?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Get-DAEntryPointDC.md b/docset/winserver2012-ps/remoteaccess/Get-DAEntryPointDC.md index b2b7bea232..74ee17abe3 100644 --- a/docset/winserver2012-ps/remoteaccess/Get-DAEntryPointDC.md +++ b/docset/winserver2012-ps/remoteaccess/Get-DAEntryPointDC.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-daentrypointdc?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-daentrypointdc?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Get-DAMgmtServer.md b/docset/winserver2012-ps/remoteaccess/Get-DAMgmtServer.md index ef1a6ba6ac..a11f8fe699 100644 --- a/docset/winserver2012-ps/remoteaccess/Get-DAMgmtServer.md +++ b/docset/winserver2012-ps/remoteaccess/Get-DAMgmtServer.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-damgmtserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-damgmtserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Get-DAMultiSite.md b/docset/winserver2012-ps/remoteaccess/Get-DAMultiSite.md index 73aa8ee681..d9e255035e 100644 --- a/docset/winserver2012-ps/remoteaccess/Get-DAMultiSite.md +++ b/docset/winserver2012-ps/remoteaccess/Get-DAMultiSite.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-damultisite?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-damultisite?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Get-DANetworkLocationServer.md b/docset/winserver2012-ps/remoteaccess/Get-DANetworkLocationServer.md index 11e339156e..3ae4da716c 100644 --- a/docset/winserver2012-ps/remoteaccess/Get-DANetworkLocationServer.md +++ b/docset/winserver2012-ps/remoteaccess/Get-DANetworkLocationServer.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-danetworklocationserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-danetworklocationserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Get-DAOtpAuthentication.md b/docset/winserver2012-ps/remoteaccess/Get-DAOtpAuthentication.md index 311f8570f3..4f3667933e 100644 --- a/docset/winserver2012-ps/remoteaccess/Get-DAOtpAuthentication.md +++ b/docset/winserver2012-ps/remoteaccess/Get-DAOtpAuthentication.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-daotpauthentication?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-daotpauthentication?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Get-DAServer.md b/docset/winserver2012-ps/remoteaccess/Get-DAServer.md index 0ae431f88d..97d7d9672b 100644 --- a/docset/winserver2012-ps/remoteaccess/Get-DAServer.md +++ b/docset/winserver2012-ps/remoteaccess/Get-DAServer.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-daserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-daserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Get-RemoteAccess.md b/docset/winserver2012-ps/remoteaccess/Get-RemoteAccess.md index 9ce805c0d6..36498f6b04 100644 --- a/docset/winserver2012-ps/remoteaccess/Get-RemoteAccess.md +++ b/docset/winserver2012-ps/remoteaccess/Get-RemoteAccess.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-remoteaccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-remoteaccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Get-RemoteAccessAccounting.md b/docset/winserver2012-ps/remoteaccess/Get-RemoteAccessAccounting.md index 16063f296d..e170e4cf33 100644 --- a/docset/winserver2012-ps/remoteaccess/Get-RemoteAccessAccounting.md +++ b/docset/winserver2012-ps/remoteaccess/Get-RemoteAccessAccounting.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-remoteaccessaccounting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-remoteaccessaccounting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Get-RemoteAccessConnectionStatistics.md b/docset/winserver2012-ps/remoteaccess/Get-RemoteAccessConnectionStatistics.md index 2f08fab0f4..7995d38438 100644 --- a/docset/winserver2012-ps/remoteaccess/Get-RemoteAccessConnectionStatistics.md +++ b/docset/winserver2012-ps/remoteaccess/Get-RemoteAccessConnectionStatistics.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-remoteaccessconnectionstatistics?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-remoteaccessconnectionstatistics?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Get-RemoteAccessConnectionStatisticsSummary.md b/docset/winserver2012-ps/remoteaccess/Get-RemoteAccessConnectionStatisticsSummary.md index cb87e06f74..a2a80d7ed1 100644 --- a/docset/winserver2012-ps/remoteaccess/Get-RemoteAccessConnectionStatisticsSummary.md +++ b/docset/winserver2012-ps/remoteaccess/Get-RemoteAccessConnectionStatisticsSummary.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-remoteaccessconnectionstatisticssummary?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-remoteaccessconnectionstatisticssummary?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Get-RemoteAccessHealth.md b/docset/winserver2012-ps/remoteaccess/Get-RemoteAccessHealth.md index 6b1c673dc6..670e71f213 100644 --- a/docset/winserver2012-ps/remoteaccess/Get-RemoteAccessHealth.md +++ b/docset/winserver2012-ps/remoteaccess/Get-RemoteAccessHealth.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-remoteaccesshealth?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-remoteaccesshealth?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Get-RemoteAccessLoadBalancer.md b/docset/winserver2012-ps/remoteaccess/Get-RemoteAccessLoadBalancer.md index 54dd24d739..cee155a3f8 100644 --- a/docset/winserver2012-ps/remoteaccess/Get-RemoteAccessLoadBalancer.md +++ b/docset/winserver2012-ps/remoteaccess/Get-RemoteAccessLoadBalancer.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-remoteaccessloadbalancer?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-remoteaccessloadbalancer?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Get-RemoteAccessRadius.md b/docset/winserver2012-ps/remoteaccess/Get-RemoteAccessRadius.md index d6554b95f4..99bafe7efa 100644 --- a/docset/winserver2012-ps/remoteaccess/Get-RemoteAccessRadius.md +++ b/docset/winserver2012-ps/remoteaccess/Get-RemoteAccessRadius.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-remoteaccessradius?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-remoteaccessradius?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Get-RemoteAccessUserActivity.md b/docset/winserver2012-ps/remoteaccess/Get-RemoteAccessUserActivity.md index eb99003071..8a83b5a221 100644 --- a/docset/winserver2012-ps/remoteaccess/Get-RemoteAccessUserActivity.md +++ b/docset/winserver2012-ps/remoteaccess/Get-RemoteAccessUserActivity.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-remoteaccessuseractivity?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-remoteaccessuseractivity?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Get-VpnAuthProtocol.md b/docset/winserver2012-ps/remoteaccess/Get-VpnAuthProtocol.md index bce7ca43ad..03437816a7 100644 --- a/docset/winserver2012-ps/remoteaccess/Get-VpnAuthProtocol.md +++ b/docset/winserver2012-ps/remoteaccess/Get-VpnAuthProtocol.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-vpnauthprotocol?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-vpnauthprotocol?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Get-VpnS2SInterface.md b/docset/winserver2012-ps/remoteaccess/Get-VpnS2SInterface.md index aaf687a768..3acb7bec64 100644 --- a/docset/winserver2012-ps/remoteaccess/Get-VpnS2SInterface.md +++ b/docset/winserver2012-ps/remoteaccess/Get-VpnS2SInterface.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-vpns2sinterface?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-vpns2sinterface?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Get-VpnS2SInterfaceStatistics.md b/docset/winserver2012-ps/remoteaccess/Get-VpnS2SInterfaceStatistics.md index 528e842721..49884670d5 100644 --- a/docset/winserver2012-ps/remoteaccess/Get-VpnS2SInterfaceStatistics.md +++ b/docset/winserver2012-ps/remoteaccess/Get-VpnS2SInterfaceStatistics.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-vpns2sinterfacestatistics?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-vpns2sinterfacestatistics?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Get-VpnServerIPsecConfiguration.md b/docset/winserver2012-ps/remoteaccess/Get-VpnServerIPsecConfiguration.md index e9a5f58817..a309227888 100644 --- a/docset/winserver2012-ps/remoteaccess/Get-VpnServerIPsecConfiguration.md +++ b/docset/winserver2012-ps/remoteaccess/Get-VpnServerIPsecConfiguration.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-vpnserveripsecconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-vpnserveripsecconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Install-RemoteAccess.md b/docset/winserver2012-ps/remoteaccess/Install-RemoteAccess.md index 408e12fb58..94d59835d4 100644 --- a/docset/winserver2012-ps/remoteaccess/Install-RemoteAccess.md +++ b/docset/winserver2012-ps/remoteaccess/Install-RemoteAccess.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/install-remoteaccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/install-remoteaccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Remove-DAAppServer.md b/docset/winserver2012-ps/remoteaccess/Remove-DAAppServer.md index 4e5d04287f..582268bf0b 100644 --- a/docset/winserver2012-ps/remoteaccess/Remove-DAAppServer.md +++ b/docset/winserver2012-ps/remoteaccess/Remove-DAAppServer.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-daappserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-daappserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Remove-DAClient.md b/docset/winserver2012-ps/remoteaccess/Remove-DAClient.md index c4b9bc53b7..65065a918e 100644 --- a/docset/winserver2012-ps/remoteaccess/Remove-DAClient.md +++ b/docset/winserver2012-ps/remoteaccess/Remove-DAClient.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-daclient?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-daclient?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Remove-DAClientDnsConfiguration.md b/docset/winserver2012-ps/remoteaccess/Remove-DAClientDnsConfiguration.md index 8a48fa2aa7..bc49a10495 100644 --- a/docset/winserver2012-ps/remoteaccess/Remove-DAClientDnsConfiguration.md +++ b/docset/winserver2012-ps/remoteaccess/Remove-DAClientDnsConfiguration.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-daclientdnsconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-daclientdnsconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Remove-DAEntryPoint.md b/docset/winserver2012-ps/remoteaccess/Remove-DAEntryPoint.md index 433572ea33..1ec22db051 100644 --- a/docset/winserver2012-ps/remoteaccess/Remove-DAEntryPoint.md +++ b/docset/winserver2012-ps/remoteaccess/Remove-DAEntryPoint.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-daentrypoint?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-daentrypoint?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Remove-DAMgmtServer.md b/docset/winserver2012-ps/remoteaccess/Remove-DAMgmtServer.md index bcaaebaac6..b3b2dceca5 100644 --- a/docset/winserver2012-ps/remoteaccess/Remove-DAMgmtServer.md +++ b/docset/winserver2012-ps/remoteaccess/Remove-DAMgmtServer.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-damgmtserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-damgmtserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Remove-RemoteAccessLoadBalancerNode.md b/docset/winserver2012-ps/remoteaccess/Remove-RemoteAccessLoadBalancerNode.md index e22b26bc8e..05f9fc7b1e 100644 --- a/docset/winserver2012-ps/remoteaccess/Remove-RemoteAccessLoadBalancerNode.md +++ b/docset/winserver2012-ps/remoteaccess/Remove-RemoteAccessLoadBalancerNode.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-remoteaccessloadbalancernode?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-remoteaccessloadbalancernode?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Remove-RemoteAccessRadius.md b/docset/winserver2012-ps/remoteaccess/Remove-RemoteAccessRadius.md index cf6e9966d8..063aaf4b6a 100644 --- a/docset/winserver2012-ps/remoteaccess/Remove-RemoteAccessRadius.md +++ b/docset/winserver2012-ps/remoteaccess/Remove-RemoteAccessRadius.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-remoteaccessradius?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-remoteaccessradius?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Remove-VpnIPAddressRange.md b/docset/winserver2012-ps/remoteaccess/Remove-VpnIPAddressRange.md index 1a41ffc84f..4ce8f24de7 100644 --- a/docset/winserver2012-ps/remoteaccess/Remove-VpnIPAddressRange.md +++ b/docset/winserver2012-ps/remoteaccess/Remove-VpnIPAddressRange.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-vpnipaddressrange?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-vpnipaddressrange?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Remove-VpnS2SInterface.md b/docset/winserver2012-ps/remoteaccess/Remove-VpnS2SInterface.md index 6171b11a5d..2352c71d9a 100644 --- a/docset/winserver2012-ps/remoteaccess/Remove-VpnS2SInterface.md +++ b/docset/winserver2012-ps/remoteaccess/Remove-VpnS2SInterface.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-vpns2sinterface?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-vpns2sinterface?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Set-DAAppServerConnection.md b/docset/winserver2012-ps/remoteaccess/Set-DAAppServerConnection.md index f4aaede356..9efde1faf8 100644 --- a/docset/winserver2012-ps/remoteaccess/Set-DAAppServerConnection.md +++ b/docset/winserver2012-ps/remoteaccess/Set-DAAppServerConnection.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-daappserverconnection?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-daappserverconnection?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Set-DAClient.md b/docset/winserver2012-ps/remoteaccess/Set-DAClient.md index 2697b2cf9e..89b42425ec 100644 --- a/docset/winserver2012-ps/remoteaccess/Set-DAClient.md +++ b/docset/winserver2012-ps/remoteaccess/Set-DAClient.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-daclient?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-daclient?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Set-DAClientDnsConfiguration.md b/docset/winserver2012-ps/remoteaccess/Set-DAClientDnsConfiguration.md index 229aaa2a9b..28ac5ccbc1 100644 --- a/docset/winserver2012-ps/remoteaccess/Set-DAClientDnsConfiguration.md +++ b/docset/winserver2012-ps/remoteaccess/Set-DAClientDnsConfiguration.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-daclientdnsconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-daclientdnsconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Set-DAEntryPoint.md b/docset/winserver2012-ps/remoteaccess/Set-DAEntryPoint.md index 58148026c7..55fc3b958f 100644 --- a/docset/winserver2012-ps/remoteaccess/Set-DAEntryPoint.md +++ b/docset/winserver2012-ps/remoteaccess/Set-DAEntryPoint.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-daentrypoint?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-daentrypoint?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Set-DAEntryPointDC.md b/docset/winserver2012-ps/remoteaccess/Set-DAEntryPointDC.md index f55ee26f4a..5442811547 100644 --- a/docset/winserver2012-ps/remoteaccess/Set-DAEntryPointDC.md +++ b/docset/winserver2012-ps/remoteaccess/Set-DAEntryPointDC.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-daentrypointdc?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-daentrypointdc?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Set-DAMultiSite.md b/docset/winserver2012-ps/remoteaccess/Set-DAMultiSite.md index 8f3db2b6ad..4b8f0e9d48 100644 --- a/docset/winserver2012-ps/remoteaccess/Set-DAMultiSite.md +++ b/docset/winserver2012-ps/remoteaccess/Set-DAMultiSite.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-damultisite?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-damultisite?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Set-DANetworkLocationServer.md b/docset/winserver2012-ps/remoteaccess/Set-DANetworkLocationServer.md index d524e63822..e02617424e 100644 --- a/docset/winserver2012-ps/remoteaccess/Set-DANetworkLocationServer.md +++ b/docset/winserver2012-ps/remoteaccess/Set-DANetworkLocationServer.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-danetworklocationserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-danetworklocationserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Set-DAOtpAuthentication.md b/docset/winserver2012-ps/remoteaccess/Set-DAOtpAuthentication.md index 9335c56503..d04a888633 100644 --- a/docset/winserver2012-ps/remoteaccess/Set-DAOtpAuthentication.md +++ b/docset/winserver2012-ps/remoteaccess/Set-DAOtpAuthentication.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-daotpauthentication?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-daotpauthentication?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Set-DAServer.md b/docset/winserver2012-ps/remoteaccess/Set-DAServer.md index ee15661521..aaaa4e8ced 100644 --- a/docset/winserver2012-ps/remoteaccess/Set-DAServer.md +++ b/docset/winserver2012-ps/remoteaccess/Set-DAServer.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-daserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-daserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Set-RemoteAccess.md b/docset/winserver2012-ps/remoteaccess/Set-RemoteAccess.md index 7ac4063af2..617d4bb5bf 100644 --- a/docset/winserver2012-ps/remoteaccess/Set-RemoteAccess.md +++ b/docset/winserver2012-ps/remoteaccess/Set-RemoteAccess.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-remoteaccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-remoteaccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Set-RemoteAccessAccounting.md b/docset/winserver2012-ps/remoteaccess/Set-RemoteAccessAccounting.md index 4a7cc17b2a..225d316f0b 100644 --- a/docset/winserver2012-ps/remoteaccess/Set-RemoteAccessAccounting.md +++ b/docset/winserver2012-ps/remoteaccess/Set-RemoteAccessAccounting.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-remoteaccessaccounting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-remoteaccessaccounting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Set-RemoteAccessInboxAccountingStore.md b/docset/winserver2012-ps/remoteaccess/Set-RemoteAccessInboxAccountingStore.md index 7d68a67ab3..0c9b228cd9 100644 --- a/docset/winserver2012-ps/remoteaccess/Set-RemoteAccessInboxAccountingStore.md +++ b/docset/winserver2012-ps/remoteaccess/Set-RemoteAccessInboxAccountingStore.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-remoteaccessinboxaccountingstore?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-remoteaccessinboxaccountingstore?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Set-RemoteAccessLoadBalancer.md b/docset/winserver2012-ps/remoteaccess/Set-RemoteAccessLoadBalancer.md index 80d50d4ce2..d1b105c174 100644 --- a/docset/winserver2012-ps/remoteaccess/Set-RemoteAccessLoadBalancer.md +++ b/docset/winserver2012-ps/remoteaccess/Set-RemoteAccessLoadBalancer.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-remoteaccessloadbalancer?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-remoteaccessloadbalancer?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Set-RemoteAccessRadius.md b/docset/winserver2012-ps/remoteaccess/Set-RemoteAccessRadius.md index 12c6056166..ef65e98a0c 100644 --- a/docset/winserver2012-ps/remoteaccess/Set-RemoteAccessRadius.md +++ b/docset/winserver2012-ps/remoteaccess/Set-RemoteAccessRadius.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-remoteaccessradius?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-remoteaccessradius?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Set-VpnAuthProtocol.md b/docset/winserver2012-ps/remoteaccess/Set-VpnAuthProtocol.md index 0d94265d07..213e7142fc 100644 --- a/docset/winserver2012-ps/remoteaccess/Set-VpnAuthProtocol.md +++ b/docset/winserver2012-ps/remoteaccess/Set-VpnAuthProtocol.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-vpnauthprotocol?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-vpnauthprotocol?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Set-VpnAuthType.md b/docset/winserver2012-ps/remoteaccess/Set-VpnAuthType.md index af5a150b75..07039f387d 100644 --- a/docset/winserver2012-ps/remoteaccess/Set-VpnAuthType.md +++ b/docset/winserver2012-ps/remoteaccess/Set-VpnAuthType.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-vpnauthtype?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-vpnauthtype?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Set-VpnIPAddressAssignment.md b/docset/winserver2012-ps/remoteaccess/Set-VpnIPAddressAssignment.md index a84e4a7950..21d7b21d9f 100644 --- a/docset/winserver2012-ps/remoteaccess/Set-VpnIPAddressAssignment.md +++ b/docset/winserver2012-ps/remoteaccess/Set-VpnIPAddressAssignment.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-vpnipaddressassignment?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-vpnipaddressassignment?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Set-VpnS2SInterface.md b/docset/winserver2012-ps/remoteaccess/Set-VpnS2SInterface.md index 4b22e8128e..9781e5f111 100644 --- a/docset/winserver2012-ps/remoteaccess/Set-VpnS2SInterface.md +++ b/docset/winserver2012-ps/remoteaccess/Set-VpnS2SInterface.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-vpns2sinterface?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-vpns2sinterface?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Set-VpnServerIPsecConfiguration.md b/docset/winserver2012-ps/remoteaccess/Set-VpnServerIPsecConfiguration.md index 1aacd93299..bf3921728b 100644 --- a/docset/winserver2012-ps/remoteaccess/Set-VpnServerIPsecConfiguration.md +++ b/docset/winserver2012-ps/remoteaccess/Set-VpnServerIPsecConfiguration.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-vpnserveripsecconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-vpnserveripsecconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Uninstall-RemoteAccess.md b/docset/winserver2012-ps/remoteaccess/Uninstall-RemoteAccess.md index b8eee9c0d6..5e653f0fa8 100644 --- a/docset/winserver2012-ps/remoteaccess/Uninstall-RemoteAccess.md +++ b/docset/winserver2012-ps/remoteaccess/Uninstall-RemoteAccess.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/uninstall-remoteaccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/uninstall-remoteaccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remoteaccess/Update-DAMgmtServer.md b/docset/winserver2012-ps/remoteaccess/Update-DAMgmtServer.md index 8abb824cd0..61fad67b04 100644 --- a/docset/winserver2012-ps/remoteaccess/Update-DAMgmtServer.md +++ b/docset/winserver2012-ps/remoteaccess/Update-DAMgmtServer.md @@ -1,7 +1,7 @@ --- external help file: UnifiedRA_Cmdlets.xml Module Name: RemoteAccess -online version: https://docs.microsoft.com/powershell/module/remoteaccess/update-damgmtserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/update-damgmtserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Add-RDServer.md b/docset/winserver2012-ps/remotedesktop/Add-RDServer.md index 39f18bd2b4..67095023d5 100644 --- a/docset/winserver2012-ps/remotedesktop/Add-RDServer.md +++ b/docset/winserver2012-ps/remotedesktop/Add-RDServer.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/add-rdserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/add-rdserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Add-RDSessionHost.md b/docset/winserver2012-ps/remotedesktop/Add-RDSessionHost.md index e5563f2d66..2c204265c0 100644 --- a/docset/winserver2012-ps/remotedesktop/Add-RDSessionHost.md +++ b/docset/winserver2012-ps/remotedesktop/Add-RDSessionHost.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/add-rdsessionhost?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/add-rdsessionhost?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Add-RDVirtualDesktopToCollection.md b/docset/winserver2012-ps/remotedesktop/Add-RDVirtualDesktopToCollection.md index e970967ba7..a4d4f93662 100644 --- a/docset/winserver2012-ps/remotedesktop/Add-RDVirtualDesktopToCollection.md +++ b/docset/winserver2012-ps/remotedesktop/Add-RDVirtualDesktopToCollection.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/add-rdvirtualdesktoptocollection?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/add-rdvirtualdesktoptocollection?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Disable-RDVirtualDesktopADMachineAccountReuse.md b/docset/winserver2012-ps/remotedesktop/Disable-RDVirtualDesktopADMachineAccountReuse.md index 34a1ee2662..4f12c3e564 100644 --- a/docset/winserver2012-ps/remotedesktop/Disable-RDVirtualDesktopADMachineAccountReuse.md +++ b/docset/winserver2012-ps/remotedesktop/Disable-RDVirtualDesktopADMachineAccountReuse.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/disable-rdvirtualdesktopadmachineaccountreuse?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/disable-rdvirtualdesktopadmachineaccountreuse?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Disconnect-RDUser.md b/docset/winserver2012-ps/remotedesktop/Disconnect-RDUser.md index ce4121378e..980047269d 100644 --- a/docset/winserver2012-ps/remotedesktop/Disconnect-RDUser.md +++ b/docset/winserver2012-ps/remotedesktop/Disconnect-RDUser.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/disconnect-rduser?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/disconnect-rduser?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Enable-RDVirtualDesktopADMachineAccountReuse.md b/docset/winserver2012-ps/remotedesktop/Enable-RDVirtualDesktopADMachineAccountReuse.md index e59c6988cf..c3f63c03ca 100644 --- a/docset/winserver2012-ps/remotedesktop/Enable-RDVirtualDesktopADMachineAccountReuse.md +++ b/docset/winserver2012-ps/remotedesktop/Enable-RDVirtualDesktopADMachineAccountReuse.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/enable-rdvirtualdesktopadmachineaccountreuse?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/enable-rdvirtualdesktopadmachineaccountreuse?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Export-RDPersonalVirtualDesktopAssignment.md b/docset/winserver2012-ps/remotedesktop/Export-RDPersonalVirtualDesktopAssignment.md index d077817b5d..3269c69740 100644 --- a/docset/winserver2012-ps/remotedesktop/Export-RDPersonalVirtualDesktopAssignment.md +++ b/docset/winserver2012-ps/remotedesktop/Export-RDPersonalVirtualDesktopAssignment.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/export-rdpersonalvirtualdesktopassignment?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/export-rdpersonalvirtualdesktopassignment?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Get-RDAvailableApp.md b/docset/winserver2012-ps/remotedesktop/Get-RDAvailableApp.md index f4a737abdb..fa33c5f874 100644 --- a/docset/winserver2012-ps/remotedesktop/Get-RDAvailableApp.md +++ b/docset/winserver2012-ps/remotedesktop/Get-RDAvailableApp.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdavailableapp?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdavailableapp?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Get-RDCertificate.md b/docset/winserver2012-ps/remotedesktop/Get-RDCertificate.md index 917ca95196..f3499d74bf 100644 --- a/docset/winserver2012-ps/remotedesktop/Get-RDCertificate.md +++ b/docset/winserver2012-ps/remotedesktop/Get-RDCertificate.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdcertificate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdcertificate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Get-RDConnectionBrokerHighAvailability.md b/docset/winserver2012-ps/remotedesktop/Get-RDConnectionBrokerHighAvailability.md index 1c939165a9..eccb41ed40 100644 --- a/docset/winserver2012-ps/remotedesktop/Get-RDConnectionBrokerHighAvailability.md +++ b/docset/winserver2012-ps/remotedesktop/Get-RDConnectionBrokerHighAvailability.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdconnectionbrokerhighavailability?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdconnectionbrokerhighavailability?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Get-RDDeploymentGatewayConfiguration.md b/docset/winserver2012-ps/remotedesktop/Get-RDDeploymentGatewayConfiguration.md index 55c3bd15ee..fdd663fa59 100644 --- a/docset/winserver2012-ps/remotedesktop/Get-RDDeploymentGatewayConfiguration.md +++ b/docset/winserver2012-ps/remotedesktop/Get-RDDeploymentGatewayConfiguration.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rddeploymentgatewayconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rddeploymentgatewayconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Get-RDFileTypeAssociation.md b/docset/winserver2012-ps/remotedesktop/Get-RDFileTypeAssociation.md index 6f8665e1be..95c676ecef 100644 --- a/docset/winserver2012-ps/remotedesktop/Get-RDFileTypeAssociation.md +++ b/docset/winserver2012-ps/remotedesktop/Get-RDFileTypeAssociation.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdfiletypeassociation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdfiletypeassociation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Get-RDLicenseConfiguration.md b/docset/winserver2012-ps/remotedesktop/Get-RDLicenseConfiguration.md index 757dc56f06..23e3e25e22 100644 --- a/docset/winserver2012-ps/remotedesktop/Get-RDLicenseConfiguration.md +++ b/docset/winserver2012-ps/remotedesktop/Get-RDLicenseConfiguration.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdlicenseconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdlicenseconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Get-RDPersonalVirtualDesktopAssignment.md b/docset/winserver2012-ps/remotedesktop/Get-RDPersonalVirtualDesktopAssignment.md index dee0dc5d46..7e72419d87 100644 --- a/docset/winserver2012-ps/remotedesktop/Get-RDPersonalVirtualDesktopAssignment.md +++ b/docset/winserver2012-ps/remotedesktop/Get-RDPersonalVirtualDesktopAssignment.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdpersonalvirtualdesktopassignment?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdpersonalvirtualdesktopassignment?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Get-RDPersonalVirtualDesktopPatchSchedule.md b/docset/winserver2012-ps/remotedesktop/Get-RDPersonalVirtualDesktopPatchSchedule.md index 55b17223c0..38ffdcc537 100644 --- a/docset/winserver2012-ps/remotedesktop/Get-RDPersonalVirtualDesktopPatchSchedule.md +++ b/docset/winserver2012-ps/remotedesktop/Get-RDPersonalVirtualDesktopPatchSchedule.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdpersonalvirtualdesktoppatchschedule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdpersonalvirtualdesktoppatchschedule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Get-RDRemoteApp.md b/docset/winserver2012-ps/remotedesktop/Get-RDRemoteApp.md index 8b7b3effbc..1fcf921a16 100644 --- a/docset/winserver2012-ps/remotedesktop/Get-RDRemoteApp.md +++ b/docset/winserver2012-ps/remotedesktop/Get-RDRemoteApp.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdremoteapp?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdremoteapp?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Get-RDRemoteDesktop.md b/docset/winserver2012-ps/remotedesktop/Get-RDRemoteDesktop.md index ab5a49a95b..097a15c29f 100644 --- a/docset/winserver2012-ps/remotedesktop/Get-RDRemoteDesktop.md +++ b/docset/winserver2012-ps/remotedesktop/Get-RDRemoteDesktop.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdremotedesktop?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdremotedesktop?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Get-RDServer.md b/docset/winserver2012-ps/remotedesktop/Get-RDServer.md index c939d2b607..6e89eee468 100644 --- a/docset/winserver2012-ps/remotedesktop/Get-RDServer.md +++ b/docset/winserver2012-ps/remotedesktop/Get-RDServer.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Get-RDSessionCollection.md b/docset/winserver2012-ps/remotedesktop/Get-RDSessionCollection.md index 85179d3a0a..a9f9318f24 100644 --- a/docset/winserver2012-ps/remotedesktop/Get-RDSessionCollection.md +++ b/docset/winserver2012-ps/remotedesktop/Get-RDSessionCollection.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdsessioncollection?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdsessioncollection?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Get-RDSessionCollectionConfiguration.md b/docset/winserver2012-ps/remotedesktop/Get-RDSessionCollectionConfiguration.md index 5db2e3d981..4cdcd46f96 100644 --- a/docset/winserver2012-ps/remotedesktop/Get-RDSessionCollectionConfiguration.md +++ b/docset/winserver2012-ps/remotedesktop/Get-RDSessionCollectionConfiguration.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdsessioncollectionconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdsessioncollectionconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Get-RDSessionHost.md b/docset/winserver2012-ps/remotedesktop/Get-RDSessionHost.md index 675dcf2a53..50a169ce80 100644 --- a/docset/winserver2012-ps/remotedesktop/Get-RDSessionHost.md +++ b/docset/winserver2012-ps/remotedesktop/Get-RDSessionHost.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdsessionhost?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdsessionhost?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Get-RDUserSession.md b/docset/winserver2012-ps/remotedesktop/Get-RDUserSession.md index b7f0edf0d0..f6ca542aaf 100644 --- a/docset/winserver2012-ps/remotedesktop/Get-RDUserSession.md +++ b/docset/winserver2012-ps/remotedesktop/Get-RDUserSession.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdusersession?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdusersession?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Get-RDVirtualDesktop.md b/docset/winserver2012-ps/remotedesktop/Get-RDVirtualDesktop.md index cf7ce4f468..591d61ef75 100644 --- a/docset/winserver2012-ps/remotedesktop/Get-RDVirtualDesktop.md +++ b/docset/winserver2012-ps/remotedesktop/Get-RDVirtualDesktop.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktop?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktop?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Get-RDVirtualDesktopCollection.md b/docset/winserver2012-ps/remotedesktop/Get-RDVirtualDesktopCollection.md index 433ff4d966..77a623fa75 100644 --- a/docset/winserver2012-ps/remotedesktop/Get-RDVirtualDesktopCollection.md +++ b/docset/winserver2012-ps/remotedesktop/Get-RDVirtualDesktopCollection.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktopcollection?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktopcollection?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Get-RDVirtualDesktopCollectionConfiguration.md b/docset/winserver2012-ps/remotedesktop/Get-RDVirtualDesktopCollectionConfiguration.md index 0e12db5080..586d9b075e 100644 --- a/docset/winserver2012-ps/remotedesktop/Get-RDVirtualDesktopCollectionConfiguration.md +++ b/docset/winserver2012-ps/remotedesktop/Get-RDVirtualDesktopCollectionConfiguration.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktopcollectionconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktopcollectionconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Get-RDVirtualDesktopCollectionJobStatus.md b/docset/winserver2012-ps/remotedesktop/Get-RDVirtualDesktopCollectionJobStatus.md index b8fd7c29b7..eb9df381ad 100644 --- a/docset/winserver2012-ps/remotedesktop/Get-RDVirtualDesktopCollectionJobStatus.md +++ b/docset/winserver2012-ps/remotedesktop/Get-RDVirtualDesktopCollectionJobStatus.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktopcollectionjobstatus?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktopcollectionjobstatus?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Get-RDVirtualDesktopConcurrency.md b/docset/winserver2012-ps/remotedesktop/Get-RDVirtualDesktopConcurrency.md index f1adfaf9d5..e83091a9d6 100644 --- a/docset/winserver2012-ps/remotedesktop/Get-RDVirtualDesktopConcurrency.md +++ b/docset/winserver2012-ps/remotedesktop/Get-RDVirtualDesktopConcurrency.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktopconcurrency?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktopconcurrency?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Get-RDVirtualDesktopIdleCount.md b/docset/winserver2012-ps/remotedesktop/Get-RDVirtualDesktopIdleCount.md index 6775dccc84..1411d51126 100644 --- a/docset/winserver2012-ps/remotedesktop/Get-RDVirtualDesktopIdleCount.md +++ b/docset/winserver2012-ps/remotedesktop/Get-RDVirtualDesktopIdleCount.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktopidlecount?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktopidlecount?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Get-RDVirtualDesktopTemplateExportPath.md b/docset/winserver2012-ps/remotedesktop/Get-RDVirtualDesktopTemplateExportPath.md index f71326cc6c..6a525341b8 100644 --- a/docset/winserver2012-ps/remotedesktop/Get-RDVirtualDesktopTemplateExportPath.md +++ b/docset/winserver2012-ps/remotedesktop/Get-RDVirtualDesktopTemplateExportPath.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktoptemplateexportpath?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktoptemplateexportpath?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Get-RDWorkspace.md b/docset/winserver2012-ps/remotedesktop/Get-RDWorkspace.md index 91eab74c48..f186c0f7f2 100644 --- a/docset/winserver2012-ps/remotedesktop/Get-RDWorkspace.md +++ b/docset/winserver2012-ps/remotedesktop/Get-RDWorkspace.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdworkspace?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdworkspace?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Grant-RDOUAccess.md b/docset/winserver2012-ps/remotedesktop/Grant-RDOUAccess.md index 1fd4c92c14..385620a620 100644 --- a/docset/winserver2012-ps/remotedesktop/Grant-RDOUAccess.md +++ b/docset/winserver2012-ps/remotedesktop/Grant-RDOUAccess.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/grant-rdouaccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/grant-rdouaccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Import-RDPersonalVirtualDesktopAssignment.md b/docset/winserver2012-ps/remotedesktop/Import-RDPersonalVirtualDesktopAssignment.md index 22b9603132..0a1a55125b 100644 --- a/docset/winserver2012-ps/remotedesktop/Import-RDPersonalVirtualDesktopAssignment.md +++ b/docset/winserver2012-ps/remotedesktop/Import-RDPersonalVirtualDesktopAssignment.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/import-rdpersonalvirtualdesktopassignment?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/import-rdpersonalvirtualdesktopassignment?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Invoke-RDUserLogoff.md b/docset/winserver2012-ps/remotedesktop/Invoke-RDUserLogoff.md index d163796809..f21f89b33c 100644 --- a/docset/winserver2012-ps/remotedesktop/Invoke-RDUserLogoff.md +++ b/docset/winserver2012-ps/remotedesktop/Invoke-RDUserLogoff.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/invoke-rduserlogoff?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/invoke-rduserlogoff?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Move-RDVirtualDesktop.md b/docset/winserver2012-ps/remotedesktop/Move-RDVirtualDesktop.md index 5d8cfad439..f9c0a4302f 100644 --- a/docset/winserver2012-ps/remotedesktop/Move-RDVirtualDesktop.md +++ b/docset/winserver2012-ps/remotedesktop/Move-RDVirtualDesktop.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/move-rdvirtualdesktop?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/move-rdvirtualdesktop?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/New-RDCertificate.md b/docset/winserver2012-ps/remotedesktop/New-RDCertificate.md index 819b6a2f57..0b7f7f2a75 100644 --- a/docset/winserver2012-ps/remotedesktop/New-RDCertificate.md +++ b/docset/winserver2012-ps/remotedesktop/New-RDCertificate.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/new-rdcertificate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/new-rdcertificate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/New-RDPersonalVirtualDesktopPatchSchedule.md b/docset/winserver2012-ps/remotedesktop/New-RDPersonalVirtualDesktopPatchSchedule.md index 90fdfa1613..478a265e00 100644 --- a/docset/winserver2012-ps/remotedesktop/New-RDPersonalVirtualDesktopPatchSchedule.md +++ b/docset/winserver2012-ps/remotedesktop/New-RDPersonalVirtualDesktopPatchSchedule.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/new-rdpersonalvirtualdesktoppatchschedule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/new-rdpersonalvirtualdesktoppatchschedule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/New-RDRemoteApp.md b/docset/winserver2012-ps/remotedesktop/New-RDRemoteApp.md index b65f6b6142..e06f58f9e2 100644 --- a/docset/winserver2012-ps/remotedesktop/New-RDRemoteApp.md +++ b/docset/winserver2012-ps/remotedesktop/New-RDRemoteApp.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/new-rdremoteapp?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/new-rdremoteapp?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/New-RDSessionCollection.md b/docset/winserver2012-ps/remotedesktop/New-RDSessionCollection.md index 2f1c8048e6..6a0c2be7ef 100644 --- a/docset/winserver2012-ps/remotedesktop/New-RDSessionCollection.md +++ b/docset/winserver2012-ps/remotedesktop/New-RDSessionCollection.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/new-rdsessioncollection?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/new-rdsessioncollection?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/New-RDSessionDeployment.md b/docset/winserver2012-ps/remotedesktop/New-RDSessionDeployment.md index c63f6eacbc..e06f6ccf04 100644 --- a/docset/winserver2012-ps/remotedesktop/New-RDSessionDeployment.md +++ b/docset/winserver2012-ps/remotedesktop/New-RDSessionDeployment.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/new-rdsessiondeployment?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/new-rdsessiondeployment?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/New-RDVirtualDesktopCollection.md b/docset/winserver2012-ps/remotedesktop/New-RDVirtualDesktopCollection.md index 7918041ac5..23fc19b18d 100644 --- a/docset/winserver2012-ps/remotedesktop/New-RDVirtualDesktopCollection.md +++ b/docset/winserver2012-ps/remotedesktop/New-RDVirtualDesktopCollection.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/new-rdvirtualdesktopcollection?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/new-rdvirtualdesktopcollection?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/New-RDVirtualDesktopDeployment.md b/docset/winserver2012-ps/remotedesktop/New-RDVirtualDesktopDeployment.md index 627672831b..b8f6180055 100644 --- a/docset/winserver2012-ps/remotedesktop/New-RDVirtualDesktopDeployment.md +++ b/docset/winserver2012-ps/remotedesktop/New-RDVirtualDesktopDeployment.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/new-rdvirtualdesktopdeployment?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/new-rdvirtualdesktopdeployment?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Remove-RDPersonalVirtualDesktopAssignment.md b/docset/winserver2012-ps/remotedesktop/Remove-RDPersonalVirtualDesktopAssignment.md index 37f963d25d..7df80272ee 100644 --- a/docset/winserver2012-ps/remotedesktop/Remove-RDPersonalVirtualDesktopAssignment.md +++ b/docset/winserver2012-ps/remotedesktop/Remove-RDPersonalVirtualDesktopAssignment.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/remove-rdpersonalvirtualdesktopassignment?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/remove-rdpersonalvirtualdesktopassignment?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Remove-RDPersonalVirtualDesktopPatchSchedule.md b/docset/winserver2012-ps/remotedesktop/Remove-RDPersonalVirtualDesktopPatchSchedule.md index 262c1e9c45..6419311f4f 100644 --- a/docset/winserver2012-ps/remotedesktop/Remove-RDPersonalVirtualDesktopPatchSchedule.md +++ b/docset/winserver2012-ps/remotedesktop/Remove-RDPersonalVirtualDesktopPatchSchedule.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/remove-rdpersonalvirtualdesktoppatchschedule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/remove-rdpersonalvirtualdesktoppatchschedule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Remove-RDRemoteApp.md b/docset/winserver2012-ps/remotedesktop/Remove-RDRemoteApp.md index 252e7d48a7..a29136cf38 100644 --- a/docset/winserver2012-ps/remotedesktop/Remove-RDRemoteApp.md +++ b/docset/winserver2012-ps/remotedesktop/Remove-RDRemoteApp.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/remove-rdremoteapp?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/remove-rdremoteapp?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Remove-RDServer.md b/docset/winserver2012-ps/remotedesktop/Remove-RDServer.md index f49136d29b..894c444f4a 100644 --- a/docset/winserver2012-ps/remotedesktop/Remove-RDServer.md +++ b/docset/winserver2012-ps/remotedesktop/Remove-RDServer.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/remove-rdserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/remove-rdserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Remove-RDSessionCollection.md b/docset/winserver2012-ps/remotedesktop/Remove-RDSessionCollection.md index 74c0768d75..81e2f2e4ba 100644 --- a/docset/winserver2012-ps/remotedesktop/Remove-RDSessionCollection.md +++ b/docset/winserver2012-ps/remotedesktop/Remove-RDSessionCollection.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/remove-rdsessioncollection?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/remove-rdsessioncollection?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Remove-RDSessionHost.md b/docset/winserver2012-ps/remotedesktop/Remove-RDSessionHost.md index 0eb73485e6..85734aca1c 100644 --- a/docset/winserver2012-ps/remotedesktop/Remove-RDSessionHost.md +++ b/docset/winserver2012-ps/remotedesktop/Remove-RDSessionHost.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/remove-rdsessionhost?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/remove-rdsessionhost?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Remove-RDVirtualDesktopCollection.md b/docset/winserver2012-ps/remotedesktop/Remove-RDVirtualDesktopCollection.md index 0443b466ea..ca946c62a9 100644 --- a/docset/winserver2012-ps/remotedesktop/Remove-RDVirtualDesktopCollection.md +++ b/docset/winserver2012-ps/remotedesktop/Remove-RDVirtualDesktopCollection.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/remove-rdvirtualdesktopcollection?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/remove-rdvirtualdesktopcollection?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Remove-RDVirtualDesktopFromCollection.md b/docset/winserver2012-ps/remotedesktop/Remove-RDVirtualDesktopFromCollection.md index 62c74ee031..0b83577713 100644 --- a/docset/winserver2012-ps/remotedesktop/Remove-RDVirtualDesktopFromCollection.md +++ b/docset/winserver2012-ps/remotedesktop/Remove-RDVirtualDesktopFromCollection.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/remove-rdvirtualdesktopfromcollection?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/remove-rdvirtualdesktopfromcollection?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Send-RDUserMessage.md b/docset/winserver2012-ps/remotedesktop/Send-RDUserMessage.md index 72664a13a1..b8888eee9d 100644 --- a/docset/winserver2012-ps/remotedesktop/Send-RDUserMessage.md +++ b/docset/winserver2012-ps/remotedesktop/Send-RDUserMessage.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/send-rdusermessage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/send-rdusermessage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Set-RDActiveManagementServer.md b/docset/winserver2012-ps/remotedesktop/Set-RDActiveManagementServer.md index 0a79641a2c..05a1bf218d 100644 --- a/docset/winserver2012-ps/remotedesktop/Set-RDActiveManagementServer.md +++ b/docset/winserver2012-ps/remotedesktop/Set-RDActiveManagementServer.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdactivemanagementserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdactivemanagementserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Set-RDCertificate.md b/docset/winserver2012-ps/remotedesktop/Set-RDCertificate.md index dfc80ca628..ab670f49f2 100644 --- a/docset/winserver2012-ps/remotedesktop/Set-RDCertificate.md +++ b/docset/winserver2012-ps/remotedesktop/Set-RDCertificate.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdcertificate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdcertificate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Set-RDClientAccessName.md b/docset/winserver2012-ps/remotedesktop/Set-RDClientAccessName.md index 5b2d68fd9f..99a2dd3954 100644 --- a/docset/winserver2012-ps/remotedesktop/Set-RDClientAccessName.md +++ b/docset/winserver2012-ps/remotedesktop/Set-RDClientAccessName.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdclientaccessname?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdclientaccessname?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Set-RDConnectionBrokerHighAvailability.md b/docset/winserver2012-ps/remotedesktop/Set-RDConnectionBrokerHighAvailability.md index c76979c9c1..a46c8c2b55 100644 --- a/docset/winserver2012-ps/remotedesktop/Set-RDConnectionBrokerHighAvailability.md +++ b/docset/winserver2012-ps/remotedesktop/Set-RDConnectionBrokerHighAvailability.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdconnectionbrokerhighavailability?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdconnectionbrokerhighavailability?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Set-RDDatabaseConnectionString.md b/docset/winserver2012-ps/remotedesktop/Set-RDDatabaseConnectionString.md index 117c5befa8..55a588c06f 100644 --- a/docset/winserver2012-ps/remotedesktop/Set-RDDatabaseConnectionString.md +++ b/docset/winserver2012-ps/remotedesktop/Set-RDDatabaseConnectionString.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rddatabaseconnectionstring?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rddatabaseconnectionstring?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Set-RDDeploymentGatewayConfiguration.md b/docset/winserver2012-ps/remotedesktop/Set-RDDeploymentGatewayConfiguration.md index ad79802a99..f7d3c065e8 100644 --- a/docset/winserver2012-ps/remotedesktop/Set-RDDeploymentGatewayConfiguration.md +++ b/docset/winserver2012-ps/remotedesktop/Set-RDDeploymentGatewayConfiguration.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rddeploymentgatewayconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rddeploymentgatewayconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Set-RDFileTypeAssociation.md b/docset/winserver2012-ps/remotedesktop/Set-RDFileTypeAssociation.md index 37a507fcde..8a83451214 100644 --- a/docset/winserver2012-ps/remotedesktop/Set-RDFileTypeAssociation.md +++ b/docset/winserver2012-ps/remotedesktop/Set-RDFileTypeAssociation.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdfiletypeassociation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdfiletypeassociation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Set-RDLicenseConfiguration.md b/docset/winserver2012-ps/remotedesktop/Set-RDLicenseConfiguration.md index e1c1e69e5c..9710661e19 100644 --- a/docset/winserver2012-ps/remotedesktop/Set-RDLicenseConfiguration.md +++ b/docset/winserver2012-ps/remotedesktop/Set-RDLicenseConfiguration.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdlicenseconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdlicenseconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Set-RDPersonalVirtualDesktopAssignment.md b/docset/winserver2012-ps/remotedesktop/Set-RDPersonalVirtualDesktopAssignment.md index 4b695f38ca..b9149726f5 100644 --- a/docset/winserver2012-ps/remotedesktop/Set-RDPersonalVirtualDesktopAssignment.md +++ b/docset/winserver2012-ps/remotedesktop/Set-RDPersonalVirtualDesktopAssignment.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdpersonalvirtualdesktopassignment?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdpersonalvirtualdesktopassignment?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Set-RDPersonalVirtualDesktopPatchSchedule.md b/docset/winserver2012-ps/remotedesktop/Set-RDPersonalVirtualDesktopPatchSchedule.md index 00eaafe75a..51ef7af4af 100644 --- a/docset/winserver2012-ps/remotedesktop/Set-RDPersonalVirtualDesktopPatchSchedule.md +++ b/docset/winserver2012-ps/remotedesktop/Set-RDPersonalVirtualDesktopPatchSchedule.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdpersonalvirtualdesktoppatchschedule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdpersonalvirtualdesktoppatchschedule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Set-RDRemoteApp.md b/docset/winserver2012-ps/remotedesktop/Set-RDRemoteApp.md index d065704b35..9c247fea46 100644 --- a/docset/winserver2012-ps/remotedesktop/Set-RDRemoteApp.md +++ b/docset/winserver2012-ps/remotedesktop/Set-RDRemoteApp.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdremoteapp?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdremoteapp?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Set-RDRemoteDesktop.md b/docset/winserver2012-ps/remotedesktop/Set-RDRemoteDesktop.md index 3e031b3bc7..9844424552 100644 --- a/docset/winserver2012-ps/remotedesktop/Set-RDRemoteDesktop.md +++ b/docset/winserver2012-ps/remotedesktop/Set-RDRemoteDesktop.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdremotedesktop?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdremotedesktop?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Set-RDSessionCollectionConfiguration.md b/docset/winserver2012-ps/remotedesktop/Set-RDSessionCollectionConfiguration.md index 1620fbbfee..7afb218acb 100644 --- a/docset/winserver2012-ps/remotedesktop/Set-RDSessionCollectionConfiguration.md +++ b/docset/winserver2012-ps/remotedesktop/Set-RDSessionCollectionConfiguration.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdsessioncollectionconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdsessioncollectionconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Set-RDSessionHost.md b/docset/winserver2012-ps/remotedesktop/Set-RDSessionHost.md index 18231e807a..710cba5bae 100644 --- a/docset/winserver2012-ps/remotedesktop/Set-RDSessionHost.md +++ b/docset/winserver2012-ps/remotedesktop/Set-RDSessionHost.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdsessionhost?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdsessionhost?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Set-RDVirtualDesktopCollectionConfiguration.md b/docset/winserver2012-ps/remotedesktop/Set-RDVirtualDesktopCollectionConfiguration.md index ae2d24b566..78532b003a 100644 --- a/docset/winserver2012-ps/remotedesktop/Set-RDVirtualDesktopCollectionConfiguration.md +++ b/docset/winserver2012-ps/remotedesktop/Set-RDVirtualDesktopCollectionConfiguration.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdvirtualdesktopcollectionconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdvirtualdesktopcollectionconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Set-RDVirtualDesktopConcurrency.md b/docset/winserver2012-ps/remotedesktop/Set-RDVirtualDesktopConcurrency.md index c80f76f8f3..5f7cc1f7c0 100644 --- a/docset/winserver2012-ps/remotedesktop/Set-RDVirtualDesktopConcurrency.md +++ b/docset/winserver2012-ps/remotedesktop/Set-RDVirtualDesktopConcurrency.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdvirtualdesktopconcurrency?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdvirtualdesktopconcurrency?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Set-RDVirtualDesktopIdleCount.md b/docset/winserver2012-ps/remotedesktop/Set-RDVirtualDesktopIdleCount.md index 6112aaa751..85f4c2e527 100644 --- a/docset/winserver2012-ps/remotedesktop/Set-RDVirtualDesktopIdleCount.md +++ b/docset/winserver2012-ps/remotedesktop/Set-RDVirtualDesktopIdleCount.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdvirtualdesktopidlecount?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdvirtualdesktopidlecount?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Set-RDVirtualDesktopTemplateExportPath.md b/docset/winserver2012-ps/remotedesktop/Set-RDVirtualDesktopTemplateExportPath.md index 855b05fbc1..3bde4c3c2a 100644 --- a/docset/winserver2012-ps/remotedesktop/Set-RDVirtualDesktopTemplateExportPath.md +++ b/docset/winserver2012-ps/remotedesktop/Set-RDVirtualDesktopTemplateExportPath.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdvirtualdesktoptemplateexportpath?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdvirtualdesktoptemplateexportpath?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Set-RDWorkspace.md b/docset/winserver2012-ps/remotedesktop/Set-RDWorkspace.md index 4ce4b8f134..9107ca1799 100644 --- a/docset/winserver2012-ps/remotedesktop/Set-RDWorkspace.md +++ b/docset/winserver2012-ps/remotedesktop/Set-RDWorkspace.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdworkspace?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdworkspace?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Stop-RDVirtualDesktopCollectionJob.md b/docset/winserver2012-ps/remotedesktop/Stop-RDVirtualDesktopCollectionJob.md index 734d0b91ca..0c7481b367 100644 --- a/docset/winserver2012-ps/remotedesktop/Stop-RDVirtualDesktopCollectionJob.md +++ b/docset/winserver2012-ps/remotedesktop/Stop-RDVirtualDesktopCollectionJob.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/stop-rdvirtualdesktopcollectionjob?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/stop-rdvirtualdesktopcollectionjob?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Test-RDOUAccess.md b/docset/winserver2012-ps/remotedesktop/Test-RDOUAccess.md index 17926a14b9..505254d046 100644 --- a/docset/winserver2012-ps/remotedesktop/Test-RDOUAccess.md +++ b/docset/winserver2012-ps/remotedesktop/Test-RDOUAccess.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/test-rdouaccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/test-rdouaccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Test-RDVirtualDesktopADMachineAccountReuse.md b/docset/winserver2012-ps/remotedesktop/Test-RDVirtualDesktopADMachineAccountReuse.md index 4303cffc2f..cd25b47e36 100644 --- a/docset/winserver2012-ps/remotedesktop/Test-RDVirtualDesktopADMachineAccountReuse.md +++ b/docset/winserver2012-ps/remotedesktop/Test-RDVirtualDesktopADMachineAccountReuse.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/test-rdvirtualdesktopadmachineaccountreuse?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/test-rdvirtualdesktopadmachineaccountreuse?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/remotedesktop/Update-RDVirtualDesktopCollection.md b/docset/winserver2012-ps/remotedesktop/Update-RDVirtualDesktopCollection.md index b056b5b483..0dbb568026 100644 --- a/docset/winserver2012-ps/remotedesktop/Update-RDVirtualDesktopCollection.md +++ b/docset/winserver2012-ps/remotedesktop/Update-RDVirtualDesktopCollection.md @@ -1,7 +1,7 @@ --- external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/update-rdvirtualdesktopcollection?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/update-rdvirtualdesktopcollection?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/scheduledtasks/Disable-ScheduledTask.md b/docset/winserver2012-ps/scheduledtasks/Disable-ScheduledTask.md index 7222876788..ef6756f52e 100644 --- a/docset/winserver2012-ps/scheduledtasks/Disable-ScheduledTask.md +++ b/docset/winserver2012-ps/scheduledtasks/Disable-ScheduledTask.md @@ -1,7 +1,7 @@ --- external help file: ScheduledTask_Cmdlets.xml Module Name: ScheduledTasks -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/disable-scheduledtask?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/disable-scheduledtask?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/scheduledtasks/Enable-ScheduledTask.md b/docset/winserver2012-ps/scheduledtasks/Enable-ScheduledTask.md index 3037b4c14e..36af0532d1 100644 --- a/docset/winserver2012-ps/scheduledtasks/Enable-ScheduledTask.md +++ b/docset/winserver2012-ps/scheduledtasks/Enable-ScheduledTask.md @@ -1,7 +1,7 @@ --- external help file: ScheduledTask_Cmdlets.xml Module Name: ScheduledTasks -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/enable-scheduledtask?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/enable-scheduledtask?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/scheduledtasks/Export-ScheduledTask.md b/docset/winserver2012-ps/scheduledtasks/Export-ScheduledTask.md index 6b635a27ee..12fbfac896 100644 --- a/docset/winserver2012-ps/scheduledtasks/Export-ScheduledTask.md +++ b/docset/winserver2012-ps/scheduledtasks/Export-ScheduledTask.md @@ -1,7 +1,7 @@ --- external help file: ScheduledTask_Cmdlets.xml Module Name: ScheduledTasks -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/export-scheduledtask?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/export-scheduledtask?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/scheduledtasks/Get-ClusteredScheduledTask.md b/docset/winserver2012-ps/scheduledtasks/Get-ClusteredScheduledTask.md index 886b4e848e..96e5e1f64d 100644 --- a/docset/winserver2012-ps/scheduledtasks/Get-ClusteredScheduledTask.md +++ b/docset/winserver2012-ps/scheduledtasks/Get-ClusteredScheduledTask.md @@ -1,7 +1,7 @@ --- external help file: ScheduledTask_Cmdlets.xml Module Name: ScheduledTasks -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/get-clusteredscheduledtask?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/get-clusteredscheduledtask?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/scheduledtasks/Get-ScheduledTask.md b/docset/winserver2012-ps/scheduledtasks/Get-ScheduledTask.md index b0ffb7300b..478203837e 100644 --- a/docset/winserver2012-ps/scheduledtasks/Get-ScheduledTask.md +++ b/docset/winserver2012-ps/scheduledtasks/Get-ScheduledTask.md @@ -1,7 +1,7 @@ --- external help file: ScheduledTask_Cmdlets.xml Module Name: ScheduledTasks -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/get-scheduledtask?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/get-scheduledtask?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/scheduledtasks/Get-ScheduledTaskInfo.md b/docset/winserver2012-ps/scheduledtasks/Get-ScheduledTaskInfo.md index 31de2ef71c..bbc0a5dfe7 100644 --- a/docset/winserver2012-ps/scheduledtasks/Get-ScheduledTaskInfo.md +++ b/docset/winserver2012-ps/scheduledtasks/Get-ScheduledTaskInfo.md @@ -1,7 +1,7 @@ --- external help file: ScheduledTask_Cmdlets.xml Module Name: ScheduledTasks -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/get-scheduledtaskinfo?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/get-scheduledtaskinfo?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/scheduledtasks/New-ScheduledTask.md b/docset/winserver2012-ps/scheduledtasks/New-ScheduledTask.md index 521f28e0c2..e869427f3e 100644 --- a/docset/winserver2012-ps/scheduledtasks/New-ScheduledTask.md +++ b/docset/winserver2012-ps/scheduledtasks/New-ScheduledTask.md @@ -1,7 +1,7 @@ --- external help file: ScheduledTask_Cmdlets.xml Module Name: ScheduledTasks -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/new-scheduledtask?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/new-scheduledtask?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/scheduledtasks/New-ScheduledTaskAction.md b/docset/winserver2012-ps/scheduledtasks/New-ScheduledTaskAction.md index 33fca364e5..21b38c7ce6 100644 --- a/docset/winserver2012-ps/scheduledtasks/New-ScheduledTaskAction.md +++ b/docset/winserver2012-ps/scheduledtasks/New-ScheduledTaskAction.md @@ -1,7 +1,7 @@ --- external help file: ScheduledTask_Cmdlets.xml Module Name: ScheduledTasks -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/new-scheduledtaskaction?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/new-scheduledtaskaction?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/scheduledtasks/New-ScheduledTaskPrincipal.md b/docset/winserver2012-ps/scheduledtasks/New-ScheduledTaskPrincipal.md index 2f4bdfebf4..7d77a22076 100644 --- a/docset/winserver2012-ps/scheduledtasks/New-ScheduledTaskPrincipal.md +++ b/docset/winserver2012-ps/scheduledtasks/New-ScheduledTaskPrincipal.md @@ -1,7 +1,7 @@ --- external help file: ScheduledTask_Cmdlets.xml Module Name: ScheduledTasks -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/new-scheduledtaskprincipal?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/new-scheduledtaskprincipal?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/scheduledtasks/New-ScheduledTaskSettingsSet.md b/docset/winserver2012-ps/scheduledtasks/New-ScheduledTaskSettingsSet.md index dc35e9a532..14e513a305 100644 --- a/docset/winserver2012-ps/scheduledtasks/New-ScheduledTaskSettingsSet.md +++ b/docset/winserver2012-ps/scheduledtasks/New-ScheduledTaskSettingsSet.md @@ -1,7 +1,7 @@ --- external help file: ScheduledTask_Cmdlets.xml Module Name: ScheduledTasks -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/new-scheduledtasksettingsset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/new-scheduledtasksettingsset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/scheduledtasks/New-ScheduledTaskTrigger.md b/docset/winserver2012-ps/scheduledtasks/New-ScheduledTaskTrigger.md index 531e2948c5..eccc5f1b25 100644 --- a/docset/winserver2012-ps/scheduledtasks/New-ScheduledTaskTrigger.md +++ b/docset/winserver2012-ps/scheduledtasks/New-ScheduledTaskTrigger.md @@ -1,7 +1,7 @@ --- external help file: ScheduledTask_Cmdlets.xml Module Name: ScheduledTasks -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/new-scheduledtasktrigger?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/new-scheduledtasktrigger?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/scheduledtasks/Register-ClusteredScheduledTask.md b/docset/winserver2012-ps/scheduledtasks/Register-ClusteredScheduledTask.md index 00d04ffc7a..3fbe9e5c52 100644 --- a/docset/winserver2012-ps/scheduledtasks/Register-ClusteredScheduledTask.md +++ b/docset/winserver2012-ps/scheduledtasks/Register-ClusteredScheduledTask.md @@ -1,7 +1,7 @@ --- external help file: ScheduledTask_Cmdlets.xml Module Name: ScheduledTasks -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/register-clusteredscheduledtask?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/register-clusteredscheduledtask?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/scheduledtasks/Register-ScheduledTask.md b/docset/winserver2012-ps/scheduledtasks/Register-ScheduledTask.md index 8ba6d6e19a..accb2e3b2a 100644 --- a/docset/winserver2012-ps/scheduledtasks/Register-ScheduledTask.md +++ b/docset/winserver2012-ps/scheduledtasks/Register-ScheduledTask.md @@ -1,7 +1,7 @@ --- external help file: ScheduledTask_Cmdlets.xml Module Name: ScheduledTasks -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/register-scheduledtask?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/register-scheduledtask?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/scheduledtasks/Set-ClusteredScheduledTask.md b/docset/winserver2012-ps/scheduledtasks/Set-ClusteredScheduledTask.md index 2b4f602782..798c08aefe 100644 --- a/docset/winserver2012-ps/scheduledtasks/Set-ClusteredScheduledTask.md +++ b/docset/winserver2012-ps/scheduledtasks/Set-ClusteredScheduledTask.md @@ -1,7 +1,7 @@ --- external help file: ScheduledTask_Cmdlets.xml Module Name: ScheduledTasks -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/set-clusteredscheduledtask?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/set-clusteredscheduledtask?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/scheduledtasks/Set-ScheduledTask.md b/docset/winserver2012-ps/scheduledtasks/Set-ScheduledTask.md index 4029ac6dc2..a4704c0550 100644 --- a/docset/winserver2012-ps/scheduledtasks/Set-ScheduledTask.md +++ b/docset/winserver2012-ps/scheduledtasks/Set-ScheduledTask.md @@ -1,7 +1,7 @@ --- external help file: ScheduledTask_Cmdlets.xml Module Name: ScheduledTasks -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/set-scheduledtask?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/set-scheduledtask?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/scheduledtasks/Start-ScheduledTask.md b/docset/winserver2012-ps/scheduledtasks/Start-ScheduledTask.md index 3e62d44fd6..81fef293ee 100644 --- a/docset/winserver2012-ps/scheduledtasks/Start-ScheduledTask.md +++ b/docset/winserver2012-ps/scheduledtasks/Start-ScheduledTask.md @@ -1,7 +1,7 @@ --- external help file: ScheduledTask_Cmdlets.xml Module Name: ScheduledTasks -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/start-scheduledtask?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/start-scheduledtask?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/scheduledtasks/Stop-ScheduledTask.md b/docset/winserver2012-ps/scheduledtasks/Stop-ScheduledTask.md index 316c20f83d..504f4a20f9 100644 --- a/docset/winserver2012-ps/scheduledtasks/Stop-ScheduledTask.md +++ b/docset/winserver2012-ps/scheduledtasks/Stop-ScheduledTask.md @@ -1,7 +1,7 @@ --- external help file: ScheduledTask_Cmdlets.xml Module Name: ScheduledTasks -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/stop-scheduledtask?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/stop-scheduledtask?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/scheduledtasks/Unregister-ClusteredScheduledTask.md b/docset/winserver2012-ps/scheduledtasks/Unregister-ClusteredScheduledTask.md index 4c1f687bbf..4c2622d720 100644 --- a/docset/winserver2012-ps/scheduledtasks/Unregister-ClusteredScheduledTask.md +++ b/docset/winserver2012-ps/scheduledtasks/Unregister-ClusteredScheduledTask.md @@ -1,7 +1,7 @@ --- external help file: ScheduledTask_Cmdlets.xml Module Name: ScheduledTasks -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/unregister-clusteredscheduledtask?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/unregister-clusteredscheduledtask?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/scheduledtasks/Unregister-ScheduledTask.md b/docset/winserver2012-ps/scheduledtasks/Unregister-ScheduledTask.md index fa569df450..0e7988f142 100644 --- a/docset/winserver2012-ps/scheduledtasks/Unregister-ScheduledTask.md +++ b/docset/winserver2012-ps/scheduledtasks/Unregister-ScheduledTask.md @@ -1,7 +1,7 @@ --- external help file: ScheduledTask_Cmdlets.xml Module Name: ScheduledTasks -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/unregister-scheduledtask?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/unregister-scheduledtask?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/secureboot/Confirm-SecureBootUEFI.md b/docset/winserver2012-ps/secureboot/Confirm-SecureBootUEFI.md index e0957d7973..d3e9843465 100644 --- a/docset/winserver2012-ps/secureboot/Confirm-SecureBootUEFI.md +++ b/docset/winserver2012-ps/secureboot/Confirm-SecureBootUEFI.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.SecureBoot.Commands.dll-Help.xml Module Name: SecureBoot -online version: https://docs.microsoft.com/powershell/module/secureboot/confirm-securebootuefi?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/secureboot/confirm-securebootuefi?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/secureboot/Format-SecureBootUEFI.md b/docset/winserver2012-ps/secureboot/Format-SecureBootUEFI.md index eaad14482b..800f215b6e 100644 --- a/docset/winserver2012-ps/secureboot/Format-SecureBootUEFI.md +++ b/docset/winserver2012-ps/secureboot/Format-SecureBootUEFI.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.SecureBoot.Commands.dll-Help.xml Module Name: SecureBoot -online version: https://docs.microsoft.com/powershell/module/secureboot/format-securebootuefi?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/secureboot/format-securebootuefi?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/secureboot/Get-SecureBootPolicy.md b/docset/winserver2012-ps/secureboot/Get-SecureBootPolicy.md index 8c43edcf5b..5ff9d47d3b 100644 --- a/docset/winserver2012-ps/secureboot/Get-SecureBootPolicy.md +++ b/docset/winserver2012-ps/secureboot/Get-SecureBootPolicy.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.SecureBoot.Commands.dll-Help.xml Module Name: SecureBoot -online version: https://docs.microsoft.com/powershell/module/secureboot/get-securebootpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/secureboot/get-securebootpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/secureboot/Get-SecureBootUEFI.md b/docset/winserver2012-ps/secureboot/Get-SecureBootUEFI.md index 0b839b9d24..fd395a2974 100644 --- a/docset/winserver2012-ps/secureboot/Get-SecureBootUEFI.md +++ b/docset/winserver2012-ps/secureboot/Get-SecureBootUEFI.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.SecureBoot.Commands.dll-Help.xml Module Name: SecureBoot -online version: https://docs.microsoft.com/powershell/module/secureboot/get-securebootuefi?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/secureboot/get-securebootuefi?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/secureboot/Set-SecureBootUEFI.md b/docset/winserver2012-ps/secureboot/Set-SecureBootUEFI.md index dc16595beb..dbe299f537 100644 --- a/docset/winserver2012-ps/secureboot/Set-SecureBootUEFI.md +++ b/docset/winserver2012-ps/secureboot/Set-SecureBootUEFI.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.SecureBoot.Commands.dll-Help.xml Module Name: SecureBoot -online version: https://docs.microsoft.com/powershell/module/secureboot/set-securebootuefi?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/secureboot/set-securebootuefi?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/servercore/Get-DisplayResolution.md b/docset/winserver2012-ps/servercore/Get-DisplayResolution.md index 2b155d7995..5d36338022 100644 --- a/docset/winserver2012-ps/servercore/Get-DisplayResolution.md +++ b/docset/winserver2012-ps/servercore/Get-DisplayResolution.md @@ -1,7 +1,7 @@ --- external help file: ServerCore-help.xml Module Name: ServerCore -online version: https://docs.microsoft.com/powershell/module/servercore/get-displayresolution?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servercore/get-displayresolution?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/servercore/Set-DisplayResolution.md b/docset/winserver2012-ps/servercore/Set-DisplayResolution.md index 83f93e8a6b..7639f03088 100644 --- a/docset/winserver2012-ps/servercore/Set-DisplayResolution.md +++ b/docset/winserver2012-ps/servercore/Set-DisplayResolution.md @@ -1,7 +1,7 @@ --- external help file: ServerCore-help.xml Module Name: ServerCore -online version: https://docs.microsoft.com/powershell/module/servercore/set-displayresolution?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servercore/set-displayresolution?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/servermanager/Disable-ServerManagerStandardUserRemoting.md b/docset/winserver2012-ps/servermanager/Disable-ServerManagerStandardUserRemoting.md index a55b6de54f..de72825c10 100644 --- a/docset/winserver2012-ps/servermanager/Disable-ServerManagerStandardUserRemoting.md +++ b/docset/winserver2012-ps/servermanager/Disable-ServerManagerStandardUserRemoting.md @@ -1,7 +1,7 @@ --- external help file: ServerManager-help.xml Module Name: ServerManager -online version: https://docs.microsoft.com/powershell/module/servermanager/disable-servermanagerstandarduserremoting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanager/disable-servermanagerstandarduserremoting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/servermanager/Enable-ServerManagerStandardUserRemoting.md b/docset/winserver2012-ps/servermanager/Enable-ServerManagerStandardUserRemoting.md index b1c393d190..ccd765ed19 100644 --- a/docset/winserver2012-ps/servermanager/Enable-ServerManagerStandardUserRemoting.md +++ b/docset/winserver2012-ps/servermanager/Enable-ServerManagerStandardUserRemoting.md @@ -1,7 +1,7 @@ --- external help file: ServerManager-help.xml Module Name: ServerManager -online version: https://docs.microsoft.com/powershell/module/servermanager/enable-servermanagerstandarduserremoting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanager/enable-servermanagerstandarduserremoting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/servermanager/Get-WindowsFeature.md b/docset/winserver2012-ps/servermanager/Get-WindowsFeature.md index b9b34e4655..42467bc5d4 100644 --- a/docset/winserver2012-ps/servermanager/Get-WindowsFeature.md +++ b/docset/winserver2012-ps/servermanager/Get-WindowsFeature.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Windows.ServerManager.PowerShell.dll-Help.xml Module Name: ServerManager -online version: https://docs.microsoft.com/powershell/module/servermanager/get-windowsfeature?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanager/get-windowsfeature?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/servermanager/Install-WindowsFeature.md b/docset/winserver2012-ps/servermanager/Install-WindowsFeature.md index 049ca17e1b..9a757cf919 100644 --- a/docset/winserver2012-ps/servermanager/Install-WindowsFeature.md +++ b/docset/winserver2012-ps/servermanager/Install-WindowsFeature.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Windows.ServerManager.PowerShell.dll-Help.xml Module Name: ServerManager -online version: https://docs.microsoft.com/powershell/module/servermanager/install-windowsfeature?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanager/install-windowsfeature?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/servermanager/Uninstall-WindowsFeature.md b/docset/winserver2012-ps/servermanager/Uninstall-WindowsFeature.md index 7ef710e2b9..9d40827ef0 100644 --- a/docset/winserver2012-ps/servermanager/Uninstall-WindowsFeature.md +++ b/docset/winserver2012-ps/servermanager/Uninstall-WindowsFeature.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Windows.ServerManager.PowerShell.dll-Help.xml Module Name: ServerManager -online version: https://docs.microsoft.com/powershell/module/servermanager/uninstall-windowsfeature?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanager/uninstall-windowsfeature?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/servermanagertasks/Get-SMCounterSample.md b/docset/winserver2012-ps/servermanagertasks/Get-SMCounterSample.md index 8f4f8b2ae5..8e9af83341 100644 --- a/docset/winserver2012-ps/servermanagertasks/Get-SMCounterSample.md +++ b/docset/winserver2012-ps/servermanagertasks/Get-SMCounterSample.md @@ -1,7 +1,7 @@ --- external help file: SMTasks_Cmdlets.xml Module Name: ServerManagerTasks -online version: https://docs.microsoft.com/powershell/module/servermanagertasks/get-smcountersample?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanagertasks/get-smcountersample?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/servermanagertasks/Get-SMPerformanceCollector.md b/docset/winserver2012-ps/servermanagertasks/Get-SMPerformanceCollector.md index 7dc5214515..d266a33cf6 100644 --- a/docset/winserver2012-ps/servermanagertasks/Get-SMPerformanceCollector.md +++ b/docset/winserver2012-ps/servermanagertasks/Get-SMPerformanceCollector.md @@ -1,7 +1,7 @@ --- external help file: SMTasks_Cmdlets.xml Module Name: ServerManagerTasks -online version: https://docs.microsoft.com/powershell/module/servermanagertasks/get-smperformancecollector?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanagertasks/get-smperformancecollector?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/servermanagertasks/Get-SMServerBpaResult.md b/docset/winserver2012-ps/servermanagertasks/Get-SMServerBpaResult.md index 72bf0c8a23..18542afe9c 100644 --- a/docset/winserver2012-ps/servermanagertasks/Get-SMServerBpaResult.md +++ b/docset/winserver2012-ps/servermanagertasks/Get-SMServerBpaResult.md @@ -1,7 +1,7 @@ --- external help file: SMTasks_Cmdlets.xml Module Name: ServerManagerTasks -online version: https://docs.microsoft.com/powershell/module/servermanagertasks/get-smserverbparesult?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanagertasks/get-smserverbparesult?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/servermanagertasks/Get-SMServerClusterName.md b/docset/winserver2012-ps/servermanagertasks/Get-SMServerClusterName.md index ecf999ce31..d5c742dd5e 100644 --- a/docset/winserver2012-ps/servermanagertasks/Get-SMServerClusterName.md +++ b/docset/winserver2012-ps/servermanagertasks/Get-SMServerClusterName.md @@ -1,7 +1,7 @@ --- external help file: SMTasks_Cmdlets.xml Module Name: ServerManagerTasks -online version: https://docs.microsoft.com/powershell/module/servermanagertasks/get-smserverclustername?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanagertasks/get-smserverclustername?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/servermanagertasks/Get-SMServerEvent.md b/docset/winserver2012-ps/servermanagertasks/Get-SMServerEvent.md index bc77207f7c..ab5b24ff59 100644 --- a/docset/winserver2012-ps/servermanagertasks/Get-SMServerEvent.md +++ b/docset/winserver2012-ps/servermanagertasks/Get-SMServerEvent.md @@ -1,7 +1,7 @@ --- external help file: SMTasks_Cmdlets.xml Module Name: ServerManagerTasks -online version: https://docs.microsoft.com/powershell/module/servermanagertasks/get-smserverevent?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanagertasks/get-smserverevent?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/servermanagertasks/Get-SMServerFeature.md b/docset/winserver2012-ps/servermanagertasks/Get-SMServerFeature.md index d18553d608..7d330bb1d9 100644 --- a/docset/winserver2012-ps/servermanagertasks/Get-SMServerFeature.md +++ b/docset/winserver2012-ps/servermanagertasks/Get-SMServerFeature.md @@ -1,7 +1,7 @@ --- external help file: SMTasks_Cmdlets.xml Module Name: ServerManagerTasks -online version: https://docs.microsoft.com/powershell/module/servermanagertasks/get-smserverfeature?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanagertasks/get-smserverfeature?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/servermanagertasks/Get-SMServerInventory.md b/docset/winserver2012-ps/servermanagertasks/Get-SMServerInventory.md index 19a7133264..4a895dd37e 100644 --- a/docset/winserver2012-ps/servermanagertasks/Get-SMServerInventory.md +++ b/docset/winserver2012-ps/servermanagertasks/Get-SMServerInventory.md @@ -1,7 +1,7 @@ --- external help file: SMTasks_Cmdlets.xml Module Name: ServerManagerTasks -online version: https://docs.microsoft.com/powershell/module/servermanagertasks/get-smserverinventory?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanagertasks/get-smserverinventory?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/servermanagertasks/Get-SMServerService.md b/docset/winserver2012-ps/servermanagertasks/Get-SMServerService.md index 1eb88026ef..643484573e 100644 --- a/docset/winserver2012-ps/servermanagertasks/Get-SMServerService.md +++ b/docset/winserver2012-ps/servermanagertasks/Get-SMServerService.md @@ -1,7 +1,7 @@ --- external help file: SMTasks_Cmdlets.xml Module Name: ServerManagerTasks -online version: https://docs.microsoft.com/powershell/module/servermanagertasks/get-smserverservice?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanagertasks/get-smserverservice?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/servermanagertasks/Remove-SMServerPerformanceLog.md b/docset/winserver2012-ps/servermanagertasks/Remove-SMServerPerformanceLog.md index 23fa84c494..3a917a28c5 100644 --- a/docset/winserver2012-ps/servermanagertasks/Remove-SMServerPerformanceLog.md +++ b/docset/winserver2012-ps/servermanagertasks/Remove-SMServerPerformanceLog.md @@ -1,7 +1,7 @@ --- external help file: SMTasks_Cmdlets.xml Module Name: ServerManagerTasks -online version: https://docs.microsoft.com/powershell/module/servermanagertasks/remove-smserverperformancelog?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanagertasks/remove-smserverperformancelog?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/servermanagertasks/Start-SMPerformanceCollector.md b/docset/winserver2012-ps/servermanagertasks/Start-SMPerformanceCollector.md index 380b4ee810..a405ad54a1 100644 --- a/docset/winserver2012-ps/servermanagertasks/Start-SMPerformanceCollector.md +++ b/docset/winserver2012-ps/servermanagertasks/Start-SMPerformanceCollector.md @@ -1,7 +1,7 @@ --- external help file: SMTasks_Cmdlets.xml Module Name: ServerManagerTasks -online version: https://docs.microsoft.com/powershell/module/servermanagertasks/start-smperformancecollector?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanagertasks/start-smperformancecollector?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/servermanagertasks/Stop-SMPerformanceCollector.md b/docset/winserver2012-ps/servermanagertasks/Stop-SMPerformanceCollector.md index 3faa8188ea..e837a6a8c2 100644 --- a/docset/winserver2012-ps/servermanagertasks/Stop-SMPerformanceCollector.md +++ b/docset/winserver2012-ps/servermanagertasks/Stop-SMPerformanceCollector.md @@ -1,7 +1,7 @@ --- external help file: SMTasks_Cmdlets.xml Module Name: ServerManagerTasks -online version: https://docs.microsoft.com/powershell/module/servermanagertasks/stop-smperformancecollector?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanagertasks/stop-smperformancecollector?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/servermigrationcmdlets/Export-SmigServerSetting.md b/docset/winserver2012-ps/servermigrationcmdlets/Export-SmigServerSetting.md index 4efef7e785..0428e6b6f3 100644 --- a/docset/winserver2012-ps/servermigrationcmdlets/Export-SmigServerSetting.md +++ b/docset/winserver2012-ps/servermigrationcmdlets/Export-SmigServerSetting.md @@ -1,7 +1,7 @@ --- external help file: ServerMig_Cmdlets.xml Module Name: ServerMigrationCmdlets -online version: https://docs.microsoft.com/powershell/module/servermigrationcmdlets/export-smigserversetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermigrationcmdlets/export-smigserversetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/servermigrationcmdlets/Get-SmigServerFeature.md b/docset/winserver2012-ps/servermigrationcmdlets/Get-SmigServerFeature.md index 0fcf009853..e52a0ed7d1 100644 --- a/docset/winserver2012-ps/servermigrationcmdlets/Get-SmigServerFeature.md +++ b/docset/winserver2012-ps/servermigrationcmdlets/Get-SmigServerFeature.md @@ -1,7 +1,7 @@ --- external help file: ServerMig_Cmdlets.xml Module Name: ServerMigrationCmdlets -online version: https://docs.microsoft.com/powershell/module/servermigrationcmdlets/get-smigserverfeature?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermigrationcmdlets/get-smigserverfeature?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/servermigrationcmdlets/Import-SmigServerSetting.md b/docset/winserver2012-ps/servermigrationcmdlets/Import-SmigServerSetting.md index 563c7cd071..29c836efed 100644 --- a/docset/winserver2012-ps/servermigrationcmdlets/Import-SmigServerSetting.md +++ b/docset/winserver2012-ps/servermigrationcmdlets/Import-SmigServerSetting.md @@ -1,7 +1,7 @@ --- external help file: ServerMig_Cmdlets.xml Module Name: ServerMigrationCmdlets -online version: https://docs.microsoft.com/powershell/module/servermigrationcmdlets/import-smigserversetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermigrationcmdlets/import-smigserversetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/servermigrationcmdlets/Receive-SmigServerData.md b/docset/winserver2012-ps/servermigrationcmdlets/Receive-SmigServerData.md index 5fa2d7cdd6..a5a4fab396 100644 --- a/docset/winserver2012-ps/servermigrationcmdlets/Receive-SmigServerData.md +++ b/docset/winserver2012-ps/servermigrationcmdlets/Receive-SmigServerData.md @@ -1,7 +1,7 @@ --- external help file: ServerMig_Cmdlets.xml Module Name: ServerMigrationCmdlets -online version: https://docs.microsoft.com/powershell/module/servermigrationcmdlets/receive-smigserverdata?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermigrationcmdlets/receive-smigserverdata?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/servermigrationcmdlets/Send-SmigServerData.md b/docset/winserver2012-ps/servermigrationcmdlets/Send-SmigServerData.md index b7df2bcc2c..e723b98f4d 100644 --- a/docset/winserver2012-ps/servermigrationcmdlets/Send-SmigServerData.md +++ b/docset/winserver2012-ps/servermigrationcmdlets/Send-SmigServerData.md @@ -1,7 +1,7 @@ --- external help file: ServerMig_Cmdlets.xml Module Name: ServerMigrationCmdlets -online version: https://docs.microsoft.com/powershell/module/servermigrationcmdlets/send-smigserverdata?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermigrationcmdlets/send-smigserverdata?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/smbshare/Block-SmbShareAccess.md b/docset/winserver2012-ps/smbshare/Block-SmbShareAccess.md index 8a63cc391d..5371deb21e 100644 --- a/docset/winserver2012-ps/smbshare/Block-SmbShareAccess.md +++ b/docset/winserver2012-ps/smbshare/Block-SmbShareAccess.md @@ -1,7 +1,7 @@ --- external help file: SmbShare_Cmdlets.xml Module Name: SmbShare -online version: https://docs.microsoft.com/powershell/module/smbshare/block-smbshareaccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/block-smbshareaccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/smbshare/Close-SmbOpenFile.md b/docset/winserver2012-ps/smbshare/Close-SmbOpenFile.md index e9c8017270..6800afdc99 100644 --- a/docset/winserver2012-ps/smbshare/Close-SmbOpenFile.md +++ b/docset/winserver2012-ps/smbshare/Close-SmbOpenFile.md @@ -1,7 +1,7 @@ --- external help file: SmbShare_Cmdlets.xml Module Name: SmbShare -online version: https://docs.microsoft.com/powershell/module/smbshare/close-smbopenfile?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/close-smbopenfile?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/smbshare/Close-SmbSession.md b/docset/winserver2012-ps/smbshare/Close-SmbSession.md index ad75a34e8b..2390b6e530 100644 --- a/docset/winserver2012-ps/smbshare/Close-SmbSession.md +++ b/docset/winserver2012-ps/smbshare/Close-SmbSession.md @@ -1,7 +1,7 @@ --- external help file: SmbShare_Cmdlets.xml Module Name: SmbShare -online version: https://docs.microsoft.com/powershell/module/smbshare/close-smbsession?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/close-smbsession?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/smbshare/Get-SmbClientConfiguration.md b/docset/winserver2012-ps/smbshare/Get-SmbClientConfiguration.md index caa4978cea..9853b6dd76 100644 --- a/docset/winserver2012-ps/smbshare/Get-SmbClientConfiguration.md +++ b/docset/winserver2012-ps/smbshare/Get-SmbClientConfiguration.md @@ -1,7 +1,7 @@ --- external help file: SmbShare_Cmdlets.xml Module Name: SmbShare -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbclientconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbclientconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/smbshare/Get-SmbClientNetworkInterface.md b/docset/winserver2012-ps/smbshare/Get-SmbClientNetworkInterface.md index 08e47e9306..3c28feaa84 100644 --- a/docset/winserver2012-ps/smbshare/Get-SmbClientNetworkInterface.md +++ b/docset/winserver2012-ps/smbshare/Get-SmbClientNetworkInterface.md @@ -1,7 +1,7 @@ --- external help file: SmbShare_Cmdlets.xml Module Name: SmbShare -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbclientnetworkinterface?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbclientnetworkinterface?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/smbshare/Get-SmbConnection.md b/docset/winserver2012-ps/smbshare/Get-SmbConnection.md index 7869c139e6..fd372b3938 100644 --- a/docset/winserver2012-ps/smbshare/Get-SmbConnection.md +++ b/docset/winserver2012-ps/smbshare/Get-SmbConnection.md @@ -1,7 +1,7 @@ --- external help file: SmbShare_Cmdlets.xml Module Name: SmbShare -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbconnection?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbconnection?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/smbshare/Get-SmbMapping.md b/docset/winserver2012-ps/smbshare/Get-SmbMapping.md index 58fa4d1ef3..8b3a5ef463 100644 --- a/docset/winserver2012-ps/smbshare/Get-SmbMapping.md +++ b/docset/winserver2012-ps/smbshare/Get-SmbMapping.md @@ -1,7 +1,7 @@ --- external help file: SmbShare_Cmdlets.xml Module Name: SmbShare -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbmapping?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbmapping?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/smbshare/Get-SmbMultichannelConnection.md b/docset/winserver2012-ps/smbshare/Get-SmbMultichannelConnection.md index af354acb0f..a4ff91511b 100644 --- a/docset/winserver2012-ps/smbshare/Get-SmbMultichannelConnection.md +++ b/docset/winserver2012-ps/smbshare/Get-SmbMultichannelConnection.md @@ -1,7 +1,7 @@ --- external help file: SmbShare_Cmdlets.xml Module Name: SmbShare -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbmultichannelconnection?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbmultichannelconnection?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/smbshare/Get-SmbMultichannelConstraint.md b/docset/winserver2012-ps/smbshare/Get-SmbMultichannelConstraint.md index 84911a8ada..969c1d9ccb 100644 --- a/docset/winserver2012-ps/smbshare/Get-SmbMultichannelConstraint.md +++ b/docset/winserver2012-ps/smbshare/Get-SmbMultichannelConstraint.md @@ -1,7 +1,7 @@ --- external help file: SmbShare_Cmdlets.xml Module Name: SmbShare -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbmultichannelconstraint?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbmultichannelconstraint?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/smbshare/Get-SmbOpenFile.md b/docset/winserver2012-ps/smbshare/Get-SmbOpenFile.md index a5143213fa..9cac20faf8 100644 --- a/docset/winserver2012-ps/smbshare/Get-SmbOpenFile.md +++ b/docset/winserver2012-ps/smbshare/Get-SmbOpenFile.md @@ -1,7 +1,7 @@ --- external help file: SmbShare_Cmdlets.xml Module Name: SmbShare -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbopenfile?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbopenfile?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/smbshare/Get-SmbServerConfiguration.md b/docset/winserver2012-ps/smbshare/Get-SmbServerConfiguration.md index 581ebd063a..b2f3fbac97 100644 --- a/docset/winserver2012-ps/smbshare/Get-SmbServerConfiguration.md +++ b/docset/winserver2012-ps/smbshare/Get-SmbServerConfiguration.md @@ -1,7 +1,7 @@ --- external help file: SmbShare_Cmdlets.xml Module Name: SmbShare -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbserverconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbserverconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/smbshare/Get-SmbServerNetworkInterface.md b/docset/winserver2012-ps/smbshare/Get-SmbServerNetworkInterface.md index c7d359c6d0..4f12841484 100644 --- a/docset/winserver2012-ps/smbshare/Get-SmbServerNetworkInterface.md +++ b/docset/winserver2012-ps/smbshare/Get-SmbServerNetworkInterface.md @@ -1,7 +1,7 @@ --- external help file: SmbShare_Cmdlets.xml Module Name: SmbShare -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbservernetworkinterface?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbservernetworkinterface?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/smbshare/Get-SmbSession.md b/docset/winserver2012-ps/smbshare/Get-SmbSession.md index ed031990a6..b7e36c52db 100644 --- a/docset/winserver2012-ps/smbshare/Get-SmbSession.md +++ b/docset/winserver2012-ps/smbshare/Get-SmbSession.md @@ -1,7 +1,7 @@ --- external help file: SmbShare_Cmdlets.xml Module Name: SmbShare -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbsession?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbsession?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/smbshare/Get-SmbShare.md b/docset/winserver2012-ps/smbshare/Get-SmbShare.md index c88c163f9c..579b22d3e5 100644 --- a/docset/winserver2012-ps/smbshare/Get-SmbShare.md +++ b/docset/winserver2012-ps/smbshare/Get-SmbShare.md @@ -1,7 +1,7 @@ --- external help file: SmbShare_Cmdlets.xml Module Name: SmbShare -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbshare?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbshare?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/smbshare/Get-SmbShareAccess.md b/docset/winserver2012-ps/smbshare/Get-SmbShareAccess.md index b9ab91f8a7..f1fd54c234 100644 --- a/docset/winserver2012-ps/smbshare/Get-SmbShareAccess.md +++ b/docset/winserver2012-ps/smbshare/Get-SmbShareAccess.md @@ -1,7 +1,7 @@ --- external help file: SmbShare_Cmdlets.xml Module Name: SmbShare -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbshareaccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbshareaccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/smbshare/Grant-SmbShareAccess.md b/docset/winserver2012-ps/smbshare/Grant-SmbShareAccess.md index 61caeb9c82..391cc9f945 100644 --- a/docset/winserver2012-ps/smbshare/Grant-SmbShareAccess.md +++ b/docset/winserver2012-ps/smbshare/Grant-SmbShareAccess.md @@ -1,7 +1,7 @@ --- external help file: SmbShare_Cmdlets.xml Module Name: SmbShare -online version: https://docs.microsoft.com/powershell/module/smbshare/grant-smbshareaccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/grant-smbshareaccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/smbshare/New-SmbMapping.md b/docset/winserver2012-ps/smbshare/New-SmbMapping.md index ae2108217c..56adced672 100644 --- a/docset/winserver2012-ps/smbshare/New-SmbMapping.md +++ b/docset/winserver2012-ps/smbshare/New-SmbMapping.md @@ -1,7 +1,7 @@ --- external help file: SmbShare_Cmdlets.xml Module Name: SmbShare -online version: https://docs.microsoft.com/powershell/module/smbshare/new-smbmapping?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/new-smbmapping?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/smbshare/New-SmbMultichannelConstraint.md b/docset/winserver2012-ps/smbshare/New-SmbMultichannelConstraint.md index 97e397c337..784183da5d 100644 --- a/docset/winserver2012-ps/smbshare/New-SmbMultichannelConstraint.md +++ b/docset/winserver2012-ps/smbshare/New-SmbMultichannelConstraint.md @@ -1,7 +1,7 @@ --- external help file: SmbShare_Cmdlets.xml Module Name: SmbShare -online version: https://docs.microsoft.com/powershell/module/smbshare/new-smbmultichannelconstraint?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/new-smbmultichannelconstraint?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/smbshare/New-SmbShare.md b/docset/winserver2012-ps/smbshare/New-SmbShare.md index a135320c05..1efc6f54d2 100644 --- a/docset/winserver2012-ps/smbshare/New-SmbShare.md +++ b/docset/winserver2012-ps/smbshare/New-SmbShare.md @@ -1,7 +1,7 @@ --- external help file: SmbShare_Cmdlets.xml Module Name: SmbShare -online version: https://docs.microsoft.com/powershell/module/smbshare/new-smbshare?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/new-smbshare?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/smbshare/Remove-SmbMapping.md b/docset/winserver2012-ps/smbshare/Remove-SmbMapping.md index 3278915b26..68a123d24e 100644 --- a/docset/winserver2012-ps/smbshare/Remove-SmbMapping.md +++ b/docset/winserver2012-ps/smbshare/Remove-SmbMapping.md @@ -1,7 +1,7 @@ --- external help file: SmbShare_Cmdlets.xml Module Name: SmbShare -online version: https://docs.microsoft.com/powershell/module/smbshare/remove-smbmapping?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/remove-smbmapping?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/smbshare/Remove-SmbMultichannelConstraint.md b/docset/winserver2012-ps/smbshare/Remove-SmbMultichannelConstraint.md index 2e5ec84ceb..8a6d11f1a3 100644 --- a/docset/winserver2012-ps/smbshare/Remove-SmbMultichannelConstraint.md +++ b/docset/winserver2012-ps/smbshare/Remove-SmbMultichannelConstraint.md @@ -1,7 +1,7 @@ --- external help file: SmbShare_Cmdlets.xml Module Name: SmbShare -online version: https://docs.microsoft.com/powershell/module/smbshare/remove-smbmultichannelconstraint?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/remove-smbmultichannelconstraint?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/smbshare/Remove-SmbShare.md b/docset/winserver2012-ps/smbshare/Remove-SmbShare.md index 11b8c1531a..52fb94fdb3 100644 --- a/docset/winserver2012-ps/smbshare/Remove-SmbShare.md +++ b/docset/winserver2012-ps/smbshare/Remove-SmbShare.md @@ -1,7 +1,7 @@ --- external help file: SmbShare_Cmdlets.xml Module Name: SmbShare -online version: https://docs.microsoft.com/powershell/module/smbshare/remove-smbshare?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/remove-smbshare?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/smbshare/Revoke-SmbShareAccess.md b/docset/winserver2012-ps/smbshare/Revoke-SmbShareAccess.md index e7c5d77d0a..6d6b4bddbe 100644 --- a/docset/winserver2012-ps/smbshare/Revoke-SmbShareAccess.md +++ b/docset/winserver2012-ps/smbshare/Revoke-SmbShareAccess.md @@ -1,7 +1,7 @@ --- external help file: SmbShare_Cmdlets.xml Module Name: SmbShare -online version: https://docs.microsoft.com/powershell/module/smbshare/revoke-smbshareaccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/revoke-smbshareaccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/smbshare/Set-SmbClientConfiguration.md b/docset/winserver2012-ps/smbshare/Set-SmbClientConfiguration.md index 06e647f574..c78db93cfd 100644 --- a/docset/winserver2012-ps/smbshare/Set-SmbClientConfiguration.md +++ b/docset/winserver2012-ps/smbshare/Set-SmbClientConfiguration.md @@ -1,7 +1,7 @@ --- external help file: SmbShare_Cmdlets.xml Module Name: SmbShare -online version: https://docs.microsoft.com/powershell/module/smbshare/set-smbclientconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/set-smbclientconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/smbshare/Set-SmbServerConfiguration.md b/docset/winserver2012-ps/smbshare/Set-SmbServerConfiguration.md index f001b3d349..09ff492353 100644 --- a/docset/winserver2012-ps/smbshare/Set-SmbServerConfiguration.md +++ b/docset/winserver2012-ps/smbshare/Set-SmbServerConfiguration.md @@ -1,7 +1,7 @@ --- external help file: SmbShare_Cmdlets.xml Module Name: SmbShare -online version: https://docs.microsoft.com/powershell/module/smbshare/set-smbserverconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/set-smbserverconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/smbshare/Set-SmbShare.md b/docset/winserver2012-ps/smbshare/Set-SmbShare.md index fbd8a2066f..8d324633f5 100644 --- a/docset/winserver2012-ps/smbshare/Set-SmbShare.md +++ b/docset/winserver2012-ps/smbshare/Set-SmbShare.md @@ -1,7 +1,7 @@ --- external help file: SmbShare_Cmdlets.xml Module Name: SmbShare -online version: https://docs.microsoft.com/powershell/module/smbshare/set-smbshare?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/set-smbshare?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/smbshare/Unblock-SmbShareAccess.md b/docset/winserver2012-ps/smbshare/Unblock-SmbShareAccess.md index 5b4b755387..310fc770e5 100644 --- a/docset/winserver2012-ps/smbshare/Unblock-SmbShareAccess.md +++ b/docset/winserver2012-ps/smbshare/Unblock-SmbShareAccess.md @@ -1,7 +1,7 @@ --- external help file: SmbShare_Cmdlets.xml Module Name: SmbShare -online version: https://docs.microsoft.com/powershell/module/smbshare/unblock-smbshareaccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/unblock-smbshareaccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/smbshare/Update-SmbMultichannelConnection.md b/docset/winserver2012-ps/smbshare/Update-SmbMultichannelConnection.md index 7b041cb575..9eb7eefc38 100644 --- a/docset/winserver2012-ps/smbshare/Update-SmbMultichannelConnection.md +++ b/docset/winserver2012-ps/smbshare/Update-SmbMultichannelConnection.md @@ -1,7 +1,7 @@ --- external help file: SmbShare_Cmdlets.xml Module Name: SmbShare -online version: https://docs.microsoft.com/powershell/module/smbshare/update-smbmultichannelconnection?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/update-smbmultichannelconnection?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/smbwitness/Get-SmbWitnessClient.md b/docset/winserver2012-ps/smbwitness/Get-SmbWitnessClient.md index 14e7256f27..5859b732d4 100644 --- a/docset/winserver2012-ps/smbwitness/Get-SmbWitnessClient.md +++ b/docset/winserver2012-ps/smbwitness/Get-SmbWitnessClient.md @@ -1,7 +1,7 @@ --- external help file: SmbWitnessWmiClient.cdxml-help.xml Module Name: SmbWitness -online version: https://docs.microsoft.com/powershell/module/smbwitness/get-smbwitnessclient?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbwitness/get-smbwitnessclient?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/smbwitness/Move-SmbWitnessClient.md b/docset/winserver2012-ps/smbwitness/Move-SmbWitnessClient.md index f60a94c945..617b0e6319 100644 --- a/docset/winserver2012-ps/smbwitness/Move-SmbWitnessClient.md +++ b/docset/winserver2012-ps/smbwitness/Move-SmbWitnessClient.md @@ -1,7 +1,7 @@ --- external help file: SmbWitnessWmiClient.cdxml-help.xml Module Name: SmbWitness -online version: https://docs.microsoft.com/powershell/module/smbwitness/move-smbwitnessclient?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbwitness/move-smbwitnessclient?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/smisconfig/Register-SmisProvider.md b/docset/winserver2012-ps/smisconfig/Register-SmisProvider.md index 596b1cdb83..557bf471f7 100644 --- a/docset/winserver2012-ps/smisconfig/Register-SmisProvider.md +++ b/docset/winserver2012-ps/smisconfig/Register-SmisProvider.md @@ -1,7 +1,7 @@ --- external help file: SMISConfig_Cmdlets.xml Module Name: SMISConfig -online version: https://docs.microsoft.com/powershell/module/smisconfig/register-smisprovider?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smisconfig/register-smisprovider?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/smisconfig/Search-SmisProvider.md b/docset/winserver2012-ps/smisconfig/Search-SmisProvider.md index ecc132ae9c..17a228a6f8 100644 --- a/docset/winserver2012-ps/smisconfig/Search-SmisProvider.md +++ b/docset/winserver2012-ps/smisconfig/Search-SmisProvider.md @@ -1,7 +1,7 @@ --- external help file: SMISConfig_Cmdlets.xml Module Name: SMISConfig -online version: https://docs.microsoft.com/powershell/module/smisconfig/search-smisprovider?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smisconfig/search-smisprovider?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/smisconfig/Unregister-SmisProvider.md b/docset/winserver2012-ps/smisconfig/Unregister-SmisProvider.md index 9a1090f88e..a4c503b913 100644 --- a/docset/winserver2012-ps/smisconfig/Unregister-SmisProvider.md +++ b/docset/winserver2012-ps/smisconfig/Unregister-SmisProvider.md @@ -1,7 +1,7 @@ --- external help file: SMISConfig_Cmdlets.xml Module Name: SMISConfig -online version: https://docs.microsoft.com/powershell/module/smisconfig/unregister-smisprovider?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smisconfig/unregister-smisprovider?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Add-InitiatorIdToMaskingSet.md b/docset/winserver2012-ps/storage/Add-InitiatorIdToMaskingSet.md index 45b637a2be..6b73dde4b9 100644 --- a/docset/winserver2012-ps/storage/Add-InitiatorIdToMaskingSet.md +++ b/docset/winserver2012-ps/storage/Add-InitiatorIdToMaskingSet.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/add-initiatoridtomaskingset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/add-initiatoridtomaskingset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Add-PartitionAccessPath.md b/docset/winserver2012-ps/storage/Add-PartitionAccessPath.md index e7670b607c..55597c942c 100644 --- a/docset/winserver2012-ps/storage/Add-PartitionAccessPath.md +++ b/docset/winserver2012-ps/storage/Add-PartitionAccessPath.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/add-partitionaccesspath?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/add-partitionaccesspath?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Add-PhysicalDisk.md b/docset/winserver2012-ps/storage/Add-PhysicalDisk.md index aa0b400821..f87bbfa6b5 100644 --- a/docset/winserver2012-ps/storage/Add-PhysicalDisk.md +++ b/docset/winserver2012-ps/storage/Add-PhysicalDisk.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/add-physicaldisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/add-physicaldisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Add-TargetPortToMaskingSet.md b/docset/winserver2012-ps/storage/Add-TargetPortToMaskingSet.md index c66efff9eb..600d89ddb6 100644 --- a/docset/winserver2012-ps/storage/Add-TargetPortToMaskingSet.md +++ b/docset/winserver2012-ps/storage/Add-TargetPortToMaskingSet.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/add-targetporttomaskingset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/add-targetporttomaskingset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Add-VirtualDiskToMaskingSet.md b/docset/winserver2012-ps/storage/Add-VirtualDiskToMaskingSet.md index 2da627385a..f1529817e7 100644 --- a/docset/winserver2012-ps/storage/Add-VirtualDiskToMaskingSet.md +++ b/docset/winserver2012-ps/storage/Add-VirtualDiskToMaskingSet.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/add-virtualdisktomaskingset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/add-virtualdisktomaskingset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Clear-Disk.md b/docset/winserver2012-ps/storage/Clear-Disk.md index 477d3b9a67..cef9b4d216 100644 --- a/docset/winserver2012-ps/storage/Clear-Disk.md +++ b/docset/winserver2012-ps/storage/Clear-Disk.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/clear-disk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/clear-disk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Connect-VirtualDisk.md b/docset/winserver2012-ps/storage/Connect-VirtualDisk.md index ba52f3026c..57b40bfe8b 100644 --- a/docset/winserver2012-ps/storage/Connect-VirtualDisk.md +++ b/docset/winserver2012-ps/storage/Connect-VirtualDisk.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/connect-virtualdisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/connect-virtualdisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Disable-PhysicalDiskIndication.md b/docset/winserver2012-ps/storage/Disable-PhysicalDiskIndication.md index be69a25fea..332c569072 100644 --- a/docset/winserver2012-ps/storage/Disable-PhysicalDiskIndication.md +++ b/docset/winserver2012-ps/storage/Disable-PhysicalDiskIndication.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/disable-physicaldiskindication?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/disable-physicaldiskindication?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Disconnect-VirtualDisk.md b/docset/winserver2012-ps/storage/Disconnect-VirtualDisk.md index e47dbb278f..6a2722db7f 100644 --- a/docset/winserver2012-ps/storage/Disconnect-VirtualDisk.md +++ b/docset/winserver2012-ps/storage/Disconnect-VirtualDisk.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/disconnect-virtualdisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/disconnect-virtualdisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Dismount-DiskImage.md b/docset/winserver2012-ps/storage/Dismount-DiskImage.md index 6067c80e59..f54d0678ea 100644 --- a/docset/winserver2012-ps/storage/Dismount-DiskImage.md +++ b/docset/winserver2012-ps/storage/Dismount-DiskImage.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/dismount-diskimage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/dismount-diskimage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Enable-PhysicalDiskIndication.md b/docset/winserver2012-ps/storage/Enable-PhysicalDiskIndication.md index ac66823828..daf4fed7a9 100644 --- a/docset/winserver2012-ps/storage/Enable-PhysicalDiskIndication.md +++ b/docset/winserver2012-ps/storage/Enable-PhysicalDiskIndication.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/enable-physicaldiskindication?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/enable-physicaldiskindication?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Format-Volume.md b/docset/winserver2012-ps/storage/Format-Volume.md index e9fa9f9694..c6974d3bee 100644 --- a/docset/winserver2012-ps/storage/Format-Volume.md +++ b/docset/winserver2012-ps/storage/Format-Volume.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/format-volume?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/format-volume?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Get-Disk.md b/docset/winserver2012-ps/storage/Get-Disk.md index ba5d54b1b8..adce9ee64d 100644 --- a/docset/winserver2012-ps/storage/Get-Disk.md +++ b/docset/winserver2012-ps/storage/Get-Disk.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/get-disk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-disk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Get-DiskImage.md b/docset/winserver2012-ps/storage/Get-DiskImage.md index dc4ccaaa29..7b800fe1f1 100644 --- a/docset/winserver2012-ps/storage/Get-DiskImage.md +++ b/docset/winserver2012-ps/storage/Get-DiskImage.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/get-diskimage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-diskimage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Get-FileIntegrity.md b/docset/winserver2012-ps/storage/Get-FileIntegrity.md index 44e7491f38..03b7a3452b 100644 --- a/docset/winserver2012-ps/storage/Get-FileIntegrity.md +++ b/docset/winserver2012-ps/storage/Get-FileIntegrity.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/get-fileintegrity?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-fileintegrity?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Get-InitiatorId.md b/docset/winserver2012-ps/storage/Get-InitiatorId.md index 9666a2a07f..24e6ecb93e 100644 --- a/docset/winserver2012-ps/storage/Get-InitiatorId.md +++ b/docset/winserver2012-ps/storage/Get-InitiatorId.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/get-initiatorid?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-initiatorid?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Get-InitiatorPort.md b/docset/winserver2012-ps/storage/Get-InitiatorPort.md index 591095a178..aad48f7076 100644 --- a/docset/winserver2012-ps/storage/Get-InitiatorPort.md +++ b/docset/winserver2012-ps/storage/Get-InitiatorPort.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/get-initiatorport?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-initiatorport?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Get-MaskingSet.md b/docset/winserver2012-ps/storage/Get-MaskingSet.md index 32959aca26..cf44ea4883 100644 --- a/docset/winserver2012-ps/storage/Get-MaskingSet.md +++ b/docset/winserver2012-ps/storage/Get-MaskingSet.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/get-maskingset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-maskingset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Get-OffloadDataTransferSetting.md b/docset/winserver2012-ps/storage/Get-OffloadDataTransferSetting.md index 32f9f2cf21..81da7c8c8b 100644 --- a/docset/winserver2012-ps/storage/Get-OffloadDataTransferSetting.md +++ b/docset/winserver2012-ps/storage/Get-OffloadDataTransferSetting.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/get-offloaddatatransfersetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-offloaddatatransfersetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Get-Partition.md b/docset/winserver2012-ps/storage/Get-Partition.md index 7179f33ff1..57595430da 100644 --- a/docset/winserver2012-ps/storage/Get-Partition.md +++ b/docset/winserver2012-ps/storage/Get-Partition.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/get-partition?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-partition?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Get-PartitionSupportedSize.md b/docset/winserver2012-ps/storage/Get-PartitionSupportedSize.md index c7ba90a08a..709e6bd0be 100644 --- a/docset/winserver2012-ps/storage/Get-PartitionSupportedSize.md +++ b/docset/winserver2012-ps/storage/Get-PartitionSupportedSize.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/get-partitionsupportedsize?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-partitionsupportedsize?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Get-PhysicalDisk.md b/docset/winserver2012-ps/storage/Get-PhysicalDisk.md index 4d93ed46cd..16617a1e8b 100644 --- a/docset/winserver2012-ps/storage/Get-PhysicalDisk.md +++ b/docset/winserver2012-ps/storage/Get-PhysicalDisk.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/get-physicaldisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-physicaldisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Get-ResiliencySetting.md b/docset/winserver2012-ps/storage/Get-ResiliencySetting.md index 846e276f38..8421e70458 100644 --- a/docset/winserver2012-ps/storage/Get-ResiliencySetting.md +++ b/docset/winserver2012-ps/storage/Get-ResiliencySetting.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/get-resiliencysetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-resiliencysetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Get-StorageJob.md b/docset/winserver2012-ps/storage/Get-StorageJob.md index 953e1e616e..ca2b949490 100644 --- a/docset/winserver2012-ps/storage/Get-StorageJob.md +++ b/docset/winserver2012-ps/storage/Get-StorageJob.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/get-storagejob?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagejob?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Get-StoragePool.md b/docset/winserver2012-ps/storage/Get-StoragePool.md index 48f6d16460..73d0d79b45 100644 --- a/docset/winserver2012-ps/storage/Get-StoragePool.md +++ b/docset/winserver2012-ps/storage/Get-StoragePool.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/get-storagepool?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagepool?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Get-StorageProvider.md b/docset/winserver2012-ps/storage/Get-StorageProvider.md index 3b29d85896..117b24e1bc 100644 --- a/docset/winserver2012-ps/storage/Get-StorageProvider.md +++ b/docset/winserver2012-ps/storage/Get-StorageProvider.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/get-storageprovider?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storageprovider?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Get-StorageReliabilityCounter.md b/docset/winserver2012-ps/storage/Get-StorageReliabilityCounter.md index 834fdebffd..eacd92b1d1 100644 --- a/docset/winserver2012-ps/storage/Get-StorageReliabilityCounter.md +++ b/docset/winserver2012-ps/storage/Get-StorageReliabilityCounter.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/get-storagereliabilitycounter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagereliabilitycounter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Get-StorageSetting.md b/docset/winserver2012-ps/storage/Get-StorageSetting.md index 64d1364a67..638564bf71 100644 --- a/docset/winserver2012-ps/storage/Get-StorageSetting.md +++ b/docset/winserver2012-ps/storage/Get-StorageSetting.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/get-storagesetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagesetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Get-StorageSubsystem.md b/docset/winserver2012-ps/storage/Get-StorageSubsystem.md index 2c50026a03..be2555a531 100644 --- a/docset/winserver2012-ps/storage/Get-StorageSubsystem.md +++ b/docset/winserver2012-ps/storage/Get-StorageSubsystem.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/get-storagesubsystem?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagesubsystem?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Get-SupportedClusterSizes.md b/docset/winserver2012-ps/storage/Get-SupportedClusterSizes.md index 5273f52182..580ab708e2 100644 --- a/docset/winserver2012-ps/storage/Get-SupportedClusterSizes.md +++ b/docset/winserver2012-ps/storage/Get-SupportedClusterSizes.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/get-supportedclustersizes?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-supportedclustersizes?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Get-SupportedFileSystems.md b/docset/winserver2012-ps/storage/Get-SupportedFileSystems.md index 7d97b6bc56..0a1a981316 100644 --- a/docset/winserver2012-ps/storage/Get-SupportedFileSystems.md +++ b/docset/winserver2012-ps/storage/Get-SupportedFileSystems.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/get-supportedfilesystems?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-supportedfilesystems?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Get-TargetPort.md b/docset/winserver2012-ps/storage/Get-TargetPort.md index 7511cc3814..f85902d395 100644 --- a/docset/winserver2012-ps/storage/Get-TargetPort.md +++ b/docset/winserver2012-ps/storage/Get-TargetPort.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/get-targetport?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-targetport?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Get-TargetPortal.md b/docset/winserver2012-ps/storage/Get-TargetPortal.md index 77b96d0201..4a534910eb 100644 --- a/docset/winserver2012-ps/storage/Get-TargetPortal.md +++ b/docset/winserver2012-ps/storage/Get-TargetPortal.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/get-targetportal?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-targetportal?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Get-VirtualDisk.md b/docset/winserver2012-ps/storage/Get-VirtualDisk.md index c6e2e7822d..a9b97776ba 100644 --- a/docset/winserver2012-ps/storage/Get-VirtualDisk.md +++ b/docset/winserver2012-ps/storage/Get-VirtualDisk.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/get-virtualdisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-virtualdisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Get-VirtualDiskSupportedSize.md b/docset/winserver2012-ps/storage/Get-VirtualDiskSupportedSize.md index 03d5ab9f49..efe359ea76 100644 --- a/docset/winserver2012-ps/storage/Get-VirtualDiskSupportedSize.md +++ b/docset/winserver2012-ps/storage/Get-VirtualDiskSupportedSize.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/get-virtualdisksupportedsize?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-virtualdisksupportedsize?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Get-Volume.md b/docset/winserver2012-ps/storage/Get-Volume.md index 7fac086eeb..ac46f0bfee 100644 --- a/docset/winserver2012-ps/storage/Get-Volume.md +++ b/docset/winserver2012-ps/storage/Get-Volume.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/get-volume?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-volume?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Get-VolumeCorruptionCount.md b/docset/winserver2012-ps/storage/Get-VolumeCorruptionCount.md index 3a32509957..c35f20102d 100644 --- a/docset/winserver2012-ps/storage/Get-VolumeCorruptionCount.md +++ b/docset/winserver2012-ps/storage/Get-VolumeCorruptionCount.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/get-volumecorruptioncount?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-volumecorruptioncount?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Get-VolumeScrubPolicy.md b/docset/winserver2012-ps/storage/Get-VolumeScrubPolicy.md index 3d8e44db2f..73c0083e2b 100644 --- a/docset/winserver2012-ps/storage/Get-VolumeScrubPolicy.md +++ b/docset/winserver2012-ps/storage/Get-VolumeScrubPolicy.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/get-volumescrubpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-volumescrubpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Hide-VirtualDisk.md b/docset/winserver2012-ps/storage/Hide-VirtualDisk.md index ae63405d2a..5b04a1b3a5 100644 --- a/docset/winserver2012-ps/storage/Hide-VirtualDisk.md +++ b/docset/winserver2012-ps/storage/Hide-VirtualDisk.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/hide-virtualdisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/hide-virtualdisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Initialize-Disk.md b/docset/winserver2012-ps/storage/Initialize-Disk.md index 5552764ad5..0c29c62c6b 100644 --- a/docset/winserver2012-ps/storage/Initialize-Disk.md +++ b/docset/winserver2012-ps/storage/Initialize-Disk.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/initialize-disk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/initialize-disk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Mount-DiskImage.md b/docset/winserver2012-ps/storage/Mount-DiskImage.md index ac3f31937b..dcdfbedeb6 100644 --- a/docset/winserver2012-ps/storage/Mount-DiskImage.md +++ b/docset/winserver2012-ps/storage/Mount-DiskImage.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/mount-diskimage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/mount-diskimage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/New-MaskingSet.md b/docset/winserver2012-ps/storage/New-MaskingSet.md index e9d796343a..72aa6f336c 100644 --- a/docset/winserver2012-ps/storage/New-MaskingSet.md +++ b/docset/winserver2012-ps/storage/New-MaskingSet.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/new-maskingset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/new-maskingset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/New-Partition.md b/docset/winserver2012-ps/storage/New-Partition.md index 5df652deac..31623b5da1 100644 --- a/docset/winserver2012-ps/storage/New-Partition.md +++ b/docset/winserver2012-ps/storage/New-Partition.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/new-partition?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/new-partition?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/New-StoragePool.md b/docset/winserver2012-ps/storage/New-StoragePool.md index b416789ac0..2eee1b71bd 100644 --- a/docset/winserver2012-ps/storage/New-StoragePool.md +++ b/docset/winserver2012-ps/storage/New-StoragePool.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/new-storagepool?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/new-storagepool?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/New-StorageSubsystemVirtualDisk.md b/docset/winserver2012-ps/storage/New-StorageSubsystemVirtualDisk.md index ca701914f8..a9fbce6309 100644 --- a/docset/winserver2012-ps/storage/New-StorageSubsystemVirtualDisk.md +++ b/docset/winserver2012-ps/storage/New-StorageSubsystemVirtualDisk.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/new-storagesubsystemvirtualdisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/new-storagesubsystemvirtualdisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/New-VirtualDisk.md b/docset/winserver2012-ps/storage/New-VirtualDisk.md index 041386c839..12a9554b08 100644 --- a/docset/winserver2012-ps/storage/New-VirtualDisk.md +++ b/docset/winserver2012-ps/storage/New-VirtualDisk.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/new-virtualdisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/new-virtualdisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/New-VirtualDiskClone.md b/docset/winserver2012-ps/storage/New-VirtualDiskClone.md index 349be59d67..2702c44653 100644 --- a/docset/winserver2012-ps/storage/New-VirtualDiskClone.md +++ b/docset/winserver2012-ps/storage/New-VirtualDiskClone.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/new-virtualdiskclone?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/new-virtualdiskclone?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/New-VirtualDiskSnapshot.md b/docset/winserver2012-ps/storage/New-VirtualDiskSnapshot.md index 830d4c4be7..5633616671 100644 --- a/docset/winserver2012-ps/storage/New-VirtualDiskSnapshot.md +++ b/docset/winserver2012-ps/storage/New-VirtualDiskSnapshot.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/new-virtualdisksnapshot?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/new-virtualdisksnapshot?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Optimize-Volume.md b/docset/winserver2012-ps/storage/Optimize-Volume.md index 2c87ffb2d1..f73c679afa 100644 --- a/docset/winserver2012-ps/storage/Optimize-Volume.md +++ b/docset/winserver2012-ps/storage/Optimize-Volume.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/optimize-volume?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/optimize-volume?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Remove-InitiatorId.md b/docset/winserver2012-ps/storage/Remove-InitiatorId.md index d7fbf5d916..684cc9c14d 100644 --- a/docset/winserver2012-ps/storage/Remove-InitiatorId.md +++ b/docset/winserver2012-ps/storage/Remove-InitiatorId.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/remove-initiatorid?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-initiatorid?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Remove-InitiatorIdFromMaskingSet.md b/docset/winserver2012-ps/storage/Remove-InitiatorIdFromMaskingSet.md index 64236afbf4..f1c08ba942 100644 --- a/docset/winserver2012-ps/storage/Remove-InitiatorIdFromMaskingSet.md +++ b/docset/winserver2012-ps/storage/Remove-InitiatorIdFromMaskingSet.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/remove-initiatoridfrommaskingset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-initiatoridfrommaskingset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Remove-MaskingSet.md b/docset/winserver2012-ps/storage/Remove-MaskingSet.md index 9cef2203c6..fe49041f6e 100644 --- a/docset/winserver2012-ps/storage/Remove-MaskingSet.md +++ b/docset/winserver2012-ps/storage/Remove-MaskingSet.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/remove-maskingset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-maskingset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Remove-Partition.md b/docset/winserver2012-ps/storage/Remove-Partition.md index 5f45e9d818..a1e9c90300 100644 --- a/docset/winserver2012-ps/storage/Remove-Partition.md +++ b/docset/winserver2012-ps/storage/Remove-Partition.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/remove-partition?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-partition?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Remove-PartitionAccessPath.md b/docset/winserver2012-ps/storage/Remove-PartitionAccessPath.md index b7d44d6f88..2f5baefcaf 100644 --- a/docset/winserver2012-ps/storage/Remove-PartitionAccessPath.md +++ b/docset/winserver2012-ps/storage/Remove-PartitionAccessPath.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/remove-partitionaccesspath?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-partitionaccesspath?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Remove-PhysicalDisk.md b/docset/winserver2012-ps/storage/Remove-PhysicalDisk.md index 8bddb13267..12160c71c2 100644 --- a/docset/winserver2012-ps/storage/Remove-PhysicalDisk.md +++ b/docset/winserver2012-ps/storage/Remove-PhysicalDisk.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/remove-physicaldisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-physicaldisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Remove-StoragePool.md b/docset/winserver2012-ps/storage/Remove-StoragePool.md index 963345eaba..2579ee803b 100644 --- a/docset/winserver2012-ps/storage/Remove-StoragePool.md +++ b/docset/winserver2012-ps/storage/Remove-StoragePool.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/remove-storagepool?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-storagepool?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Remove-TargetPortFromMaskingSet.md b/docset/winserver2012-ps/storage/Remove-TargetPortFromMaskingSet.md index fa46018c6b..51b1bcbacd 100644 --- a/docset/winserver2012-ps/storage/Remove-TargetPortFromMaskingSet.md +++ b/docset/winserver2012-ps/storage/Remove-TargetPortFromMaskingSet.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/remove-targetportfrommaskingset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-targetportfrommaskingset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Remove-VirtualDisk.md b/docset/winserver2012-ps/storage/Remove-VirtualDisk.md index 5b5f04b312..f777386813 100644 --- a/docset/winserver2012-ps/storage/Remove-VirtualDisk.md +++ b/docset/winserver2012-ps/storage/Remove-VirtualDisk.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/remove-virtualdisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-virtualdisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Remove-VirtualDiskFromMaskingSet.md b/docset/winserver2012-ps/storage/Remove-VirtualDiskFromMaskingSet.md index eae24c00f1..dbaa9998b2 100644 --- a/docset/winserver2012-ps/storage/Remove-VirtualDiskFromMaskingSet.md +++ b/docset/winserver2012-ps/storage/Remove-VirtualDiskFromMaskingSet.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/remove-virtualdiskfrommaskingset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-virtualdiskfrommaskingset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Rename-MaskingSet.md b/docset/winserver2012-ps/storage/Rename-MaskingSet.md index 1f78cd4ee6..6ac178e397 100644 --- a/docset/winserver2012-ps/storage/Rename-MaskingSet.md +++ b/docset/winserver2012-ps/storage/Rename-MaskingSet.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/rename-maskingset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/rename-maskingset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Repair-FileIntegrity.md b/docset/winserver2012-ps/storage/Repair-FileIntegrity.md index 120bc792a9..cd81bdcb67 100644 --- a/docset/winserver2012-ps/storage/Repair-FileIntegrity.md +++ b/docset/winserver2012-ps/storage/Repair-FileIntegrity.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/repair-fileintegrity?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/repair-fileintegrity?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Repair-VirtualDisk.md b/docset/winserver2012-ps/storage/Repair-VirtualDisk.md index 7adca3a185..5903d706e1 100644 --- a/docset/winserver2012-ps/storage/Repair-VirtualDisk.md +++ b/docset/winserver2012-ps/storage/Repair-VirtualDisk.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/repair-virtualdisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/repair-virtualdisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Repair-Volume.md b/docset/winserver2012-ps/storage/Repair-Volume.md index 67092e3982..6a5836db8d 100644 --- a/docset/winserver2012-ps/storage/Repair-Volume.md +++ b/docset/winserver2012-ps/storage/Repair-Volume.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/repair-volume?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/repair-volume?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Repair-Volume --- diff --git a/docset/winserver2012-ps/storage/Reset-PhysicalDisk.md b/docset/winserver2012-ps/storage/Reset-PhysicalDisk.md index 40a4475560..59746548aa 100644 --- a/docset/winserver2012-ps/storage/Reset-PhysicalDisk.md +++ b/docset/winserver2012-ps/storage/Reset-PhysicalDisk.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/reset-physicaldisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/reset-physicaldisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Reset-StorageReliabilityCounter.md b/docset/winserver2012-ps/storage/Reset-StorageReliabilityCounter.md index d20286411e..4e910091b5 100644 --- a/docset/winserver2012-ps/storage/Reset-StorageReliabilityCounter.md +++ b/docset/winserver2012-ps/storage/Reset-StorageReliabilityCounter.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/reset-storagereliabilitycounter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/reset-storagereliabilitycounter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Resize-Partition.md b/docset/winserver2012-ps/storage/Resize-Partition.md index ab01f0b569..c3cfd8871e 100644 --- a/docset/winserver2012-ps/storage/Resize-Partition.md +++ b/docset/winserver2012-ps/storage/Resize-Partition.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/resize-partition?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/resize-partition?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Resize-VirtualDisk.md b/docset/winserver2012-ps/storage/Resize-VirtualDisk.md index ef8cb9c3e8..b671f99512 100644 --- a/docset/winserver2012-ps/storage/Resize-VirtualDisk.md +++ b/docset/winserver2012-ps/storage/Resize-VirtualDisk.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/resize-virtualdisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/resize-virtualdisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Set-Disk.md b/docset/winserver2012-ps/storage/Set-Disk.md index a0b9b8a63c..156a475a2a 100644 --- a/docset/winserver2012-ps/storage/Set-Disk.md +++ b/docset/winserver2012-ps/storage/Set-Disk.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/set-disk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-disk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Set-FileIntegrity.md b/docset/winserver2012-ps/storage/Set-FileIntegrity.md index 4e0b44136c..5b69cef46d 100644 --- a/docset/winserver2012-ps/storage/Set-FileIntegrity.md +++ b/docset/winserver2012-ps/storage/Set-FileIntegrity.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/set-fileintegrity?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-fileintegrity?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Set-InitiatorPort.md b/docset/winserver2012-ps/storage/Set-InitiatorPort.md index 25e664f8c8..6bbb07b0cd 100644 --- a/docset/winserver2012-ps/storage/Set-InitiatorPort.md +++ b/docset/winserver2012-ps/storage/Set-InitiatorPort.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/set-initiatorport?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-initiatorport?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Set-Partition.md b/docset/winserver2012-ps/storage/Set-Partition.md index 9b198bde67..97dcb659f8 100644 --- a/docset/winserver2012-ps/storage/Set-Partition.md +++ b/docset/winserver2012-ps/storage/Set-Partition.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/set-partition?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-partition?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Set-PhysicalDisk.md b/docset/winserver2012-ps/storage/Set-PhysicalDisk.md index e29790f844..c352236813 100644 --- a/docset/winserver2012-ps/storage/Set-PhysicalDisk.md +++ b/docset/winserver2012-ps/storage/Set-PhysicalDisk.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/set-physicaldisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-physicaldisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Set-ResiliencySetting.md b/docset/winserver2012-ps/storage/Set-ResiliencySetting.md index 73de722b6c..3e6a6fe310 100644 --- a/docset/winserver2012-ps/storage/Set-ResiliencySetting.md +++ b/docset/winserver2012-ps/storage/Set-ResiliencySetting.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/set-resiliencysetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-resiliencysetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Set-StoragePool.md b/docset/winserver2012-ps/storage/Set-StoragePool.md index 8c96d8371a..b8b2b1240c 100644 --- a/docset/winserver2012-ps/storage/Set-StoragePool.md +++ b/docset/winserver2012-ps/storage/Set-StoragePool.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/set-storagepool?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-storagepool?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Set-StorageSetting.md b/docset/winserver2012-ps/storage/Set-StorageSetting.md index a9d7b41fb2..5dba5a4da3 100644 --- a/docset/winserver2012-ps/storage/Set-StorageSetting.md +++ b/docset/winserver2012-ps/storage/Set-StorageSetting.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/set-storagesetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-storagesetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Set-StorageSubsystem.md b/docset/winserver2012-ps/storage/Set-StorageSubsystem.md index 5bff2677b7..39ee20639c 100644 --- a/docset/winserver2012-ps/storage/Set-StorageSubsystem.md +++ b/docset/winserver2012-ps/storage/Set-StorageSubsystem.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/set-storagesubsystem?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-storagesubsystem?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Set-VirtualDisk.md b/docset/winserver2012-ps/storage/Set-VirtualDisk.md index 7fcf6fbc94..c32a182729 100644 --- a/docset/winserver2012-ps/storage/Set-VirtualDisk.md +++ b/docset/winserver2012-ps/storage/Set-VirtualDisk.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/set-virtualdisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-virtualdisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Set-Volume.md b/docset/winserver2012-ps/storage/Set-Volume.md index 6d40f10191..26955485ad 100644 --- a/docset/winserver2012-ps/storage/Set-Volume.md +++ b/docset/winserver2012-ps/storage/Set-Volume.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/set-volume?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-volume?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Set-VolumeScrubPolicy.md b/docset/winserver2012-ps/storage/Set-VolumeScrubPolicy.md index 99b525bde2..98286620f7 100644 --- a/docset/winserver2012-ps/storage/Set-VolumeScrubPolicy.md +++ b/docset/winserver2012-ps/storage/Set-VolumeScrubPolicy.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/set-volumescrubpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-volumescrubpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Show-VirtualDisk.md b/docset/winserver2012-ps/storage/Show-VirtualDisk.md index f784e85da4..ced8d51159 100644 --- a/docset/winserver2012-ps/storage/Show-VirtualDisk.md +++ b/docset/winserver2012-ps/storage/Show-VirtualDisk.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/show-virtualdisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/show-virtualdisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Update-Disk.md b/docset/winserver2012-ps/storage/Update-Disk.md index dec6d7732b..239d8592c5 100644 --- a/docset/winserver2012-ps/storage/Update-Disk.md +++ b/docset/winserver2012-ps/storage/Update-Disk.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/update-disk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/update-disk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Update-HostStorageCache.md b/docset/winserver2012-ps/storage/Update-HostStorageCache.md index c37e124f73..79fe40d9a0 100644 --- a/docset/winserver2012-ps/storage/Update-HostStorageCache.md +++ b/docset/winserver2012-ps/storage/Update-HostStorageCache.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/update-hoststoragecache?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/update-hoststoragecache?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/storage/Update-StorageProviderCache.md b/docset/winserver2012-ps/storage/Update-StorageProviderCache.md index 828bbda059..fc29edbada 100644 --- a/docset/winserver2012-ps/storage/Update-StorageProviderCache.md +++ b/docset/winserver2012-ps/storage/Update-StorageProviderCache.md @@ -1,7 +1,7 @@ --- external help file: Storage2_Cmdlets.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/update-storageprovidercache?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/update-storageprovidercache?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/troubleshootingpack/Get-TroubleshootingPack.md b/docset/winserver2012-ps/troubleshootingpack/Get-TroubleshootingPack.md index 5fb3109369..03a7b4dd1a 100644 --- a/docset/winserver2012-ps/troubleshootingpack/Get-TroubleshootingPack.md +++ b/docset/winserver2012-ps/troubleshootingpack/Get-TroubleshootingPack.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Windows.Diagnosis.TroubleshootingPack.dll-Help.xml Module Name: TroubleshootingPack -online version: https://docs.microsoft.com/powershell/module/troubleshootingpack/get-troubleshootingpack?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/troubleshootingpack/get-troubleshootingpack?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/troubleshootingpack/Invoke-TroubleshootingPack.md b/docset/winserver2012-ps/troubleshootingpack/Invoke-TroubleshootingPack.md index f3701d49e0..ee6148bd11 100644 --- a/docset/winserver2012-ps/troubleshootingpack/Invoke-TroubleshootingPack.md +++ b/docset/winserver2012-ps/troubleshootingpack/Invoke-TroubleshootingPack.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Windows.Diagnosis.TroubleshootingPack.dll-Help.xml Module Name: TroubleshootingPack -online version: https://docs.microsoft.com/powershell/module/troubleshootingpack/invoke-troubleshootingpack?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/troubleshootingpack/invoke-troubleshootingpack?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/trustedplatformmodule/Clear-Tpm.md b/docset/winserver2012-ps/trustedplatformmodule/Clear-Tpm.md index 60b08d8f2c..14d4f52289 100644 --- a/docset/winserver2012-ps/trustedplatformmodule/Clear-Tpm.md +++ b/docset/winserver2012-ps/trustedplatformmodule/Clear-Tpm.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Tpm.Commands.dll-Help.xml Module Name: TrustedPlatformModule -online version: https://docs.microsoft.com/powershell/module/trustedplatformmodule/clear-tpm?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/trustedplatformmodule/clear-tpm?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/trustedplatformmodule/ConvertTo-TpmOwnerAuth.md b/docset/winserver2012-ps/trustedplatformmodule/ConvertTo-TpmOwnerAuth.md index eba5f69668..a6d04bedd1 100644 --- a/docset/winserver2012-ps/trustedplatformmodule/ConvertTo-TpmOwnerAuth.md +++ b/docset/winserver2012-ps/trustedplatformmodule/ConvertTo-TpmOwnerAuth.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Tpm.Commands.dll-Help.xml Module Name: TrustedPlatformModule -online version: https://docs.microsoft.com/powershell/module/trustedplatformmodule/convertto-tpmownerauth?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/trustedplatformmodule/convertto-tpmownerauth?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/trustedplatformmodule/Disable-TpmAutoProvisioning.md b/docset/winserver2012-ps/trustedplatformmodule/Disable-TpmAutoProvisioning.md index 44d9f3d4b3..c52caa23e9 100644 --- a/docset/winserver2012-ps/trustedplatformmodule/Disable-TpmAutoProvisioning.md +++ b/docset/winserver2012-ps/trustedplatformmodule/Disable-TpmAutoProvisioning.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Tpm.Commands.dll-Help.xml Module Name: TrustedPlatformModule -online version: https://docs.microsoft.com/powershell/module/trustedplatformmodule/disable-tpmautoprovisioning?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/trustedplatformmodule/disable-tpmautoprovisioning?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/trustedplatformmodule/Enable-TpmAutoProvisioning.md b/docset/winserver2012-ps/trustedplatformmodule/Enable-TpmAutoProvisioning.md index 2cbe56d656..0aff0677ef 100644 --- a/docset/winserver2012-ps/trustedplatformmodule/Enable-TpmAutoProvisioning.md +++ b/docset/winserver2012-ps/trustedplatformmodule/Enable-TpmAutoProvisioning.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Tpm.Commands.dll-Help.xml Module Name: TrustedPlatformModule -online version: https://docs.microsoft.com/powershell/module/trustedplatformmodule/enable-tpmautoprovisioning?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/trustedplatformmodule/enable-tpmautoprovisioning?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/trustedplatformmodule/Get-Tpm.md b/docset/winserver2012-ps/trustedplatformmodule/Get-Tpm.md index 78f4c35ab7..2b5239764c 100644 --- a/docset/winserver2012-ps/trustedplatformmodule/Get-Tpm.md +++ b/docset/winserver2012-ps/trustedplatformmodule/Get-Tpm.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Tpm.Commands.dll-Help.xml Module Name: TrustedPlatformModule -online version: https://docs.microsoft.com/powershell/module/trustedplatformmodule/get-tpm?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/trustedplatformmodule/get-tpm?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/trustedplatformmodule/Import-TpmOwnerAuth.md b/docset/winserver2012-ps/trustedplatformmodule/Import-TpmOwnerAuth.md index 1c957f912d..15e831fa0f 100644 --- a/docset/winserver2012-ps/trustedplatformmodule/Import-TpmOwnerAuth.md +++ b/docset/winserver2012-ps/trustedplatformmodule/Import-TpmOwnerAuth.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Tpm.Commands.dll-Help.xml Module Name: TrustedPlatformModule -online version: https://docs.microsoft.com/powershell/module/trustedplatformmodule/import-tpmownerauth?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/trustedplatformmodule/import-tpmownerauth?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/trustedplatformmodule/Initialize-Tpm.md b/docset/winserver2012-ps/trustedplatformmodule/Initialize-Tpm.md index 83ee2e9b45..e402f4b404 100644 --- a/docset/winserver2012-ps/trustedplatformmodule/Initialize-Tpm.md +++ b/docset/winserver2012-ps/trustedplatformmodule/Initialize-Tpm.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Tpm.Commands.dll-Help.xml Module Name: TrustedPlatformModule -online version: https://docs.microsoft.com/powershell/module/trustedplatformmodule/initialize-tpm?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/trustedplatformmodule/initialize-tpm?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/trustedplatformmodule/Set-TpmOwnerAuth.md b/docset/winserver2012-ps/trustedplatformmodule/Set-TpmOwnerAuth.md index 7ff72909c8..e2deed02ba 100644 --- a/docset/winserver2012-ps/trustedplatformmodule/Set-TpmOwnerAuth.md +++ b/docset/winserver2012-ps/trustedplatformmodule/Set-TpmOwnerAuth.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Tpm.Commands.dll-Help.xml Module Name: TrustedPlatformModule -online version: https://docs.microsoft.com/powershell/module/trustedplatformmodule/set-tpmownerauth?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/trustedplatformmodule/set-tpmownerauth?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/trustedplatformmodule/Unblock-Tpm.md b/docset/winserver2012-ps/trustedplatformmodule/Unblock-Tpm.md index 8f5938dc2b..05ceea5842 100644 --- a/docset/winserver2012-ps/trustedplatformmodule/Unblock-Tpm.md +++ b/docset/winserver2012-ps/trustedplatformmodule/Unblock-Tpm.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Tpm.Commands.dll-Help.xml Module Name: TrustedPlatformModule -online version: https://docs.microsoft.com/powershell/module/trustedplatformmodule/unblock-tpm?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/trustedplatformmodule/unblock-tpm?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/updateservices/Add-WsusComputer.md b/docset/winserver2012-ps/updateservices/Add-WsusComputer.md index c79c9e68ea..f37b4bca18 100644 --- a/docset/winserver2012-ps/updateservices/Add-WsusComputer.md +++ b/docset/winserver2012-ps/updateservices/Add-WsusComputer.md @@ -1,7 +1,7 @@ --- external help file: WSUS_Cmdlets.xml Module Name: UpdateServices -online version: https://docs.microsoft.com/powershell/module/updateservices/add-wsuscomputer?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/add-wsuscomputer?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/updateservices/Approve-WsusUpdate.md b/docset/winserver2012-ps/updateservices/Approve-WsusUpdate.md index 29547bc5ae..7c483bdc79 100644 --- a/docset/winserver2012-ps/updateservices/Approve-WsusUpdate.md +++ b/docset/winserver2012-ps/updateservices/Approve-WsusUpdate.md @@ -1,7 +1,7 @@ --- external help file: WSUS_Cmdlets.xml Module Name: UpdateServices -online version: https://docs.microsoft.com/powershell/module/updateservices/approve-wsusupdate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/approve-wsusupdate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/updateservices/Deny-WsusUpdate.md b/docset/winserver2012-ps/updateservices/Deny-WsusUpdate.md index 72c69f2649..45fb0c1eb4 100644 --- a/docset/winserver2012-ps/updateservices/Deny-WsusUpdate.md +++ b/docset/winserver2012-ps/updateservices/Deny-WsusUpdate.md @@ -1,7 +1,7 @@ --- external help file: WSUS_Cmdlets.xml Module Name: UpdateServices -online version: https://docs.microsoft.com/powershell/module/updateservices/deny-wsusupdate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/deny-wsusupdate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/updateservices/Get-WsusClassification.md b/docset/winserver2012-ps/updateservices/Get-WsusClassification.md index f2d7e1256f..fc3531cd7d 100644 --- a/docset/winserver2012-ps/updateservices/Get-WsusClassification.md +++ b/docset/winserver2012-ps/updateservices/Get-WsusClassification.md @@ -1,7 +1,7 @@ --- external help file: WSUS_Cmdlets.xml Module Name: UpdateServices -online version: https://docs.microsoft.com/powershell/module/updateservices/get-wsusclassification?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/get-wsusclassification?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/updateservices/Get-WsusComputer.md b/docset/winserver2012-ps/updateservices/Get-WsusComputer.md index b937e00b00..8adeff1552 100644 --- a/docset/winserver2012-ps/updateservices/Get-WsusComputer.md +++ b/docset/winserver2012-ps/updateservices/Get-WsusComputer.md @@ -1,7 +1,7 @@ --- external help file: WSUS_Cmdlets.xml Module Name: UpdateServices -online version: https://docs.microsoft.com/powershell/module/updateservices/get-wsuscomputer?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/get-wsuscomputer?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/updateservices/Get-WsusProduct.md b/docset/winserver2012-ps/updateservices/Get-WsusProduct.md index 262ef2e6cb..8899141f7e 100644 --- a/docset/winserver2012-ps/updateservices/Get-WsusProduct.md +++ b/docset/winserver2012-ps/updateservices/Get-WsusProduct.md @@ -1,7 +1,7 @@ --- external help file: WSUS_Cmdlets.xml Module Name: UpdateServices -online version: https://docs.microsoft.com/powershell/module/updateservices/get-wsusproduct?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/get-wsusproduct?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/updateservices/Get-WsusServer.md b/docset/winserver2012-ps/updateservices/Get-WsusServer.md index 1df8b37de3..09781489cd 100644 --- a/docset/winserver2012-ps/updateservices/Get-WsusServer.md +++ b/docset/winserver2012-ps/updateservices/Get-WsusServer.md @@ -1,7 +1,7 @@ --- external help file: WSUS_Cmdlets.xml Module Name: UpdateServices -online version: https://docs.microsoft.com/powershell/module/updateservices/get-wsusserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/get-wsusserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/updateservices/Get-WsusUpdate.md b/docset/winserver2012-ps/updateservices/Get-WsusUpdate.md index c36ce975a5..fe0c8fd4c5 100644 --- a/docset/winserver2012-ps/updateservices/Get-WsusUpdate.md +++ b/docset/winserver2012-ps/updateservices/Get-WsusUpdate.md @@ -1,7 +1,7 @@ --- external help file: WSUS_Cmdlets.xml Module Name: UpdateServices -online version: https://docs.microsoft.com/powershell/module/updateservices/get-wsusupdate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/get-wsusupdate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/updateservices/Invoke-WsusServerCleanup.md b/docset/winserver2012-ps/updateservices/Invoke-WsusServerCleanup.md index 64d21d0465..5ae223b838 100644 --- a/docset/winserver2012-ps/updateservices/Invoke-WsusServerCleanup.md +++ b/docset/winserver2012-ps/updateservices/Invoke-WsusServerCleanup.md @@ -1,7 +1,7 @@ --- external help file: WSUS_Cmdlets.xml Module Name: UpdateServices -online version: https://docs.microsoft.com/powershell/module/updateservices/invoke-wsusservercleanup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/invoke-wsusservercleanup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/updateservices/Set-WsusClassification.md b/docset/winserver2012-ps/updateservices/Set-WsusClassification.md index c86e49fdc6..61e5b1ddb5 100644 --- a/docset/winserver2012-ps/updateservices/Set-WsusClassification.md +++ b/docset/winserver2012-ps/updateservices/Set-WsusClassification.md @@ -1,7 +1,7 @@ --- external help file: WSUS_Cmdlets.xml Module Name: UpdateServices -online version: https://docs.microsoft.com/powershell/module/updateservices/set-wsusclassification?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/set-wsusclassification?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/updateservices/Set-WsusProduct.md b/docset/winserver2012-ps/updateservices/Set-WsusProduct.md index 1aaa400155..540a4eed59 100644 --- a/docset/winserver2012-ps/updateservices/Set-WsusProduct.md +++ b/docset/winserver2012-ps/updateservices/Set-WsusProduct.md @@ -1,7 +1,7 @@ --- external help file: WSUS_Cmdlets.xml Module Name: UpdateServices -online version: https://docs.microsoft.com/powershell/module/updateservices/set-wsusproduct?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/set-wsusproduct?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/updateservices/Set-WsusServerSynchronization.md b/docset/winserver2012-ps/updateservices/Set-WsusServerSynchronization.md index ba628f5e8a..5df2a5ea38 100644 --- a/docset/winserver2012-ps/updateservices/Set-WsusServerSynchronization.md +++ b/docset/winserver2012-ps/updateservices/Set-WsusServerSynchronization.md @@ -1,7 +1,7 @@ --- external help file: WSUS_Cmdlets.xml Module Name: UpdateServices -online version: https://docs.microsoft.com/powershell/module/updateservices/set-wsusserversynchronization?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/set-wsusserversynchronization?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/useraccesslogging/Disable-Ual.md b/docset/winserver2012-ps/useraccesslogging/Disable-Ual.md index c813b20907..1b899b2d6f 100644 --- a/docset/winserver2012-ps/useraccesslogging/Disable-Ual.md +++ b/docset/winserver2012-ps/useraccesslogging/Disable-Ual.md @@ -1,7 +1,7 @@ --- external help file: MsftUal_Admin.cdxml-help.xml Module Name: UserAccessLogging -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/disable-ual?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/disable-ual?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/useraccesslogging/Enable-Ual.md b/docset/winserver2012-ps/useraccesslogging/Enable-Ual.md index 5bdcb89573..f2c4b14381 100644 --- a/docset/winserver2012-ps/useraccesslogging/Enable-Ual.md +++ b/docset/winserver2012-ps/useraccesslogging/Enable-Ual.md @@ -1,7 +1,7 @@ --- external help file: MsftUal_Admin.cdxml-help.xml Module Name: UserAccessLogging -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/enable-ual?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/enable-ual?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/useraccesslogging/Get-Ual.md b/docset/winserver2012-ps/useraccesslogging/Get-Ual.md index 4dc942b520..71691d997d 100644 --- a/docset/winserver2012-ps/useraccesslogging/Get-Ual.md +++ b/docset/winserver2012-ps/useraccesslogging/Get-Ual.md @@ -1,7 +1,7 @@ --- external help file: MsftUal_Admin.cdxml-help.xml Module Name: UserAccessLogging -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ual?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ual?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/useraccesslogging/Get-UalDailyAccess.md b/docset/winserver2012-ps/useraccesslogging/Get-UalDailyAccess.md index d318ef50ac..b24a9155ea 100644 --- a/docset/winserver2012-ps/useraccesslogging/Get-UalDailyAccess.md +++ b/docset/winserver2012-ps/useraccesslogging/Get-UalDailyAccess.md @@ -1,7 +1,7 @@ --- external help file: MsftUal_DailyAccess.cdxml-help.xml Module Name: UserAccessLogging -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ualdailyaccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ualdailyaccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/useraccesslogging/Get-UalDailyDeviceAccess.md b/docset/winserver2012-ps/useraccesslogging/Get-UalDailyDeviceAccess.md index ea0f453060..cd93d7023d 100644 --- a/docset/winserver2012-ps/useraccesslogging/Get-UalDailyDeviceAccess.md +++ b/docset/winserver2012-ps/useraccesslogging/Get-UalDailyDeviceAccess.md @@ -1,7 +1,7 @@ --- external help file: MsftUal_DailyDeviceAccess.cdxml-help.xml Module Name: UserAccessLogging -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ualdailydeviceaccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ualdailydeviceaccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/useraccesslogging/Get-UalDailyUserAccess.md b/docset/winserver2012-ps/useraccesslogging/Get-UalDailyUserAccess.md index 87ef7bfacd..d3843a87a3 100644 --- a/docset/winserver2012-ps/useraccesslogging/Get-UalDailyUserAccess.md +++ b/docset/winserver2012-ps/useraccesslogging/Get-UalDailyUserAccess.md @@ -1,7 +1,7 @@ --- external help file: MsftUal_DailyUserAccess.cdxml-help.xml Module Name: UserAccessLogging -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ualdailyuseraccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ualdailyuseraccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/useraccesslogging/Get-UalDeviceAccess.md b/docset/winserver2012-ps/useraccesslogging/Get-UalDeviceAccess.md index 16a268c4a1..e8893508f8 100644 --- a/docset/winserver2012-ps/useraccesslogging/Get-UalDeviceAccess.md +++ b/docset/winserver2012-ps/useraccesslogging/Get-UalDeviceAccess.md @@ -1,7 +1,7 @@ --- external help file: MsftUal_DeviceAccess.cdxml-help.xml Module Name: UserAccessLogging -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ualdeviceaccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ualdeviceaccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/useraccesslogging/Get-UalDns.md b/docset/winserver2012-ps/useraccesslogging/Get-UalDns.md index 34b69dc32b..1c49710f7c 100644 --- a/docset/winserver2012-ps/useraccesslogging/Get-UalDns.md +++ b/docset/winserver2012-ps/useraccesslogging/Get-UalDns.md @@ -1,7 +1,7 @@ --- external help file: MsftUal_Dns.cdxml-help.xml Module Name: UserAccessLogging -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ualdns?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ualdns?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/useraccesslogging/Get-UalHyperV.md b/docset/winserver2012-ps/useraccesslogging/Get-UalHyperV.md index 16e97f0e7a..694be136f5 100644 --- a/docset/winserver2012-ps/useraccesslogging/Get-UalHyperV.md +++ b/docset/winserver2012-ps/useraccesslogging/Get-UalHyperV.md @@ -1,7 +1,7 @@ --- external help file: MsftUal_HyperV.cdxml-help.xml Module Name: UserAccessLogging -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ualhyperv?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ualhyperv?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/useraccesslogging/Get-UalOverview.md b/docset/winserver2012-ps/useraccesslogging/Get-UalOverview.md index c5e26056bf..7602f29a5b 100644 --- a/docset/winserver2012-ps/useraccesslogging/Get-UalOverview.md +++ b/docset/winserver2012-ps/useraccesslogging/Get-UalOverview.md @@ -1,7 +1,7 @@ --- external help file: MsftUal_Overview.cdxml-help.xml Module Name: UserAccessLogging -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ualoverview?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ualoverview?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/useraccesslogging/Get-UalServerDevice.md b/docset/winserver2012-ps/useraccesslogging/Get-UalServerDevice.md index d499e12d9d..016cac7e12 100644 --- a/docset/winserver2012-ps/useraccesslogging/Get-UalServerDevice.md +++ b/docset/winserver2012-ps/useraccesslogging/Get-UalServerDevice.md @@ -1,7 +1,7 @@ --- external help file: MsftUal_ServerDevice.cdxml-help.xml Module Name: UserAccessLogging -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ualserverdevice?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ualserverdevice?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/useraccesslogging/Get-UalServerUser.md b/docset/winserver2012-ps/useraccesslogging/Get-UalServerUser.md index 3dbb32c698..fb40828706 100644 --- a/docset/winserver2012-ps/useraccesslogging/Get-UalServerUser.md +++ b/docset/winserver2012-ps/useraccesslogging/Get-UalServerUser.md @@ -1,7 +1,7 @@ --- external help file: MsftUal_ServerUser.cdxml-help.xml Module Name: UserAccessLogging -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ualserveruser?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ualserveruser?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/useraccesslogging/Get-UalSystemId.md b/docset/winserver2012-ps/useraccesslogging/Get-UalSystemId.md index 108f510041..cbea6d2c4c 100644 --- a/docset/winserver2012-ps/useraccesslogging/Get-UalSystemId.md +++ b/docset/winserver2012-ps/useraccesslogging/Get-UalSystemId.md @@ -1,7 +1,7 @@ --- external help file: MsftUal_SystemId.cdxml-help.xml Module Name: UserAccessLogging -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ualsystemid?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ualsystemid?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/useraccesslogging/Get-UalUserAccess.md b/docset/winserver2012-ps/useraccesslogging/Get-UalUserAccess.md index 5f4dbc96b5..f33f6b3864 100644 --- a/docset/winserver2012-ps/useraccesslogging/Get-UalUserAccess.md +++ b/docset/winserver2012-ps/useraccesslogging/Get-UalUserAccess.md @@ -1,7 +1,7 @@ --- external help file: MsftUal_UserAccess.cdxml-help.xml Module Name: UserAccessLogging -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ualuseraccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ualuseraccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/vamt/Add-VamtProductKey.md b/docset/winserver2012-ps/vamt/Add-VamtProductKey.md index 27f3b25a5a..054030b4ae 100644 --- a/docset/winserver2012-ps/vamt/Add-VamtProductKey.md +++ b/docset/winserver2012-ps/vamt/Add-VamtProductKey.md @@ -1,7 +1,7 @@ --- external help file: VAMT_Cmdlets.xml Module Name: VAMT -online version: https://docs.microsoft.com/powershell/module/vamt/add-vamtproductkey?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vamt/add-vamtproductkey?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/vamt/Export-VamtData.md b/docset/winserver2012-ps/vamt/Export-VamtData.md index 3d0b6723dc..8db4e53fdc 100644 --- a/docset/winserver2012-ps/vamt/Export-VamtData.md +++ b/docset/winserver2012-ps/vamt/Export-VamtData.md @@ -1,7 +1,7 @@ --- external help file: VAMT_Cmdlets.xml Module Name: VAMT -online version: https://docs.microsoft.com/powershell/module/vamt/export-vamtdata?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vamt/export-vamtdata?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/vamt/Find-VamtManagedMachine.md b/docset/winserver2012-ps/vamt/Find-VamtManagedMachine.md index 86364f30ec..1dfff86c2d 100644 --- a/docset/winserver2012-ps/vamt/Find-VamtManagedMachine.md +++ b/docset/winserver2012-ps/vamt/Find-VamtManagedMachine.md @@ -1,7 +1,7 @@ --- external help file: VAMT_Cmdlets.xml Module Name: VAMT -online version: https://docs.microsoft.com/powershell/module/vamt/find-vamtmanagedmachine?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vamt/find-vamtmanagedmachine?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/vamt/Get-VamtConfirmationId.md b/docset/winserver2012-ps/vamt/Get-VamtConfirmationId.md index ff295a8075..2d46261736 100644 --- a/docset/winserver2012-ps/vamt/Get-VamtConfirmationId.md +++ b/docset/winserver2012-ps/vamt/Get-VamtConfirmationId.md @@ -1,7 +1,7 @@ --- external help file: VAMT_Cmdlets.xml Module Name: VAMT -online version: https://docs.microsoft.com/powershell/module/vamt/get-vamtconfirmationid?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vamt/get-vamtconfirmationid?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/vamt/Get-VamtProduct.md b/docset/winserver2012-ps/vamt/Get-VamtProduct.md index b732d52154..ef022d70ad 100644 --- a/docset/winserver2012-ps/vamt/Get-VamtProduct.md +++ b/docset/winserver2012-ps/vamt/Get-VamtProduct.md @@ -1,7 +1,7 @@ --- external help file: VAMT_Cmdlets.xml Module Name: VAMT -online version: https://docs.microsoft.com/powershell/module/vamt/get-vamtproduct?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vamt/get-vamtproduct?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/vamt/Get-VamtProductKey.md b/docset/winserver2012-ps/vamt/Get-VamtProductKey.md index 76674c865e..643eb08887 100644 --- a/docset/winserver2012-ps/vamt/Get-VamtProductKey.md +++ b/docset/winserver2012-ps/vamt/Get-VamtProductKey.md @@ -1,7 +1,7 @@ --- external help file: VAMT_Cmdlets.xml Module Name: VAMT -online version: https://docs.microsoft.com/powershell/module/vamt/get-vamtproductkey?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vamt/get-vamtproductkey?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/vamt/Import-VamtData.md b/docset/winserver2012-ps/vamt/Import-VamtData.md index 6f9c3e3036..52f15f1e22 100644 --- a/docset/winserver2012-ps/vamt/Import-VamtData.md +++ b/docset/winserver2012-ps/vamt/Import-VamtData.md @@ -1,7 +1,7 @@ --- external help file: VAMT_Cmdlets.xml Module Name: VAMT -online version: https://docs.microsoft.com/powershell/module/vamt/import-vamtdata?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vamt/import-vamtdata?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/vamt/Initialize-VamtData.md b/docset/winserver2012-ps/vamt/Initialize-VamtData.md index 28ed1fca29..53f2c987d8 100644 --- a/docset/winserver2012-ps/vamt/Initialize-VamtData.md +++ b/docset/winserver2012-ps/vamt/Initialize-VamtData.md @@ -1,7 +1,7 @@ --- external help file: VAMT_Cmdlets.xml Module Name: VAMT -online version: https://docs.microsoft.com/powershell/module/vamt/initialize-vamtdata?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vamt/initialize-vamtdata?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/vamt/Install-VamtConfirmationId.md b/docset/winserver2012-ps/vamt/Install-VamtConfirmationId.md index dca6be3970..f11a8bd69c 100644 --- a/docset/winserver2012-ps/vamt/Install-VamtConfirmationId.md +++ b/docset/winserver2012-ps/vamt/Install-VamtConfirmationId.md @@ -1,7 +1,7 @@ --- external help file: VAMT_Cmdlets.xml Module Name: VAMT -online version: https://docs.microsoft.com/powershell/module/vamt/install-vamtconfirmationid?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vamt/install-vamtconfirmationid?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/vamt/Install-VamtProductActivation.md b/docset/winserver2012-ps/vamt/Install-VamtProductActivation.md index 43c39b644a..1780e38976 100644 --- a/docset/winserver2012-ps/vamt/Install-VamtProductActivation.md +++ b/docset/winserver2012-ps/vamt/Install-VamtProductActivation.md @@ -1,7 +1,7 @@ --- external help file: VAMT_Cmdlets.xml Module Name: VAMT -online version: https://docs.microsoft.com/powershell/module/vamt/install-vamtproductactivation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vamt/install-vamtproductactivation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/vamt/Install-VamtProductKey.md b/docset/winserver2012-ps/vamt/Install-VamtProductKey.md index b3009a8917..cadba0f5f0 100644 --- a/docset/winserver2012-ps/vamt/Install-VamtProductKey.md +++ b/docset/winserver2012-ps/vamt/Install-VamtProductKey.md @@ -1,7 +1,7 @@ --- external help file: VAMT_Cmdlets.xml Module Name: VAMT -online version: https://docs.microsoft.com/powershell/module/vamt/install-vamtproductkey?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vamt/install-vamtproductkey?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/vamt/Update-VamtProduct.md b/docset/winserver2012-ps/vamt/Update-VamtProduct.md index 5ed6acf145..14933f70a1 100644 --- a/docset/winserver2012-ps/vamt/Update-VamtProduct.md +++ b/docset/winserver2012-ps/vamt/Update-VamtProduct.md @@ -1,7 +1,7 @@ --- external help file: VAMT_Cmdlets.xml Module Name: VAMT -online version: https://docs.microsoft.com/powershell/module/vamt/update-vamtproduct?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vamt/update-vamtproduct?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/vpnclient/Add-VpnConnection.md b/docset/winserver2012-ps/vpnclient/Add-VpnConnection.md index 4f1fa2e022..2bc3606f39 100644 --- a/docset/winserver2012-ps/vpnclient/Add-VpnConnection.md +++ b/docset/winserver2012-ps/vpnclient/Add-VpnConnection.md @@ -1,7 +1,7 @@ --- external help file: VpnClient_Cmdlets.xml Module Name: VpnClient -online version: https://docs.microsoft.com/powershell/module/vpnclient/add-vpnconnection?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/add-vpnconnection?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/vpnclient/Get-VpnConnection.md b/docset/winserver2012-ps/vpnclient/Get-VpnConnection.md index a230d1cfff..43757cf2ee 100644 --- a/docset/winserver2012-ps/vpnclient/Get-VpnConnection.md +++ b/docset/winserver2012-ps/vpnclient/Get-VpnConnection.md @@ -1,7 +1,7 @@ --- external help file: VpnClient_Cmdlets.xml Module Name: VpnClient -online version: https://docs.microsoft.com/powershell/module/vpnclient/get-vpnconnection?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/get-vpnconnection?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/vpnclient/New-EapConfiguration.md b/docset/winserver2012-ps/vpnclient/New-EapConfiguration.md index e4a706f207..a59c54afed 100644 --- a/docset/winserver2012-ps/vpnclient/New-EapConfiguration.md +++ b/docset/winserver2012-ps/vpnclient/New-EapConfiguration.md @@ -1,7 +1,7 @@ --- external help file: VpnClient_Cmdlets.xml Module Name: VpnClient -online version: https://docs.microsoft.com/powershell/module/vpnclient/new-eapconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/new-eapconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/vpnclient/Remove-VpnConnection.md b/docset/winserver2012-ps/vpnclient/Remove-VpnConnection.md index 2cd4b4911a..6e46ad2577 100644 --- a/docset/winserver2012-ps/vpnclient/Remove-VpnConnection.md +++ b/docset/winserver2012-ps/vpnclient/Remove-VpnConnection.md @@ -1,7 +1,7 @@ --- external help file: VpnClient_Cmdlets.xml Module Name: VpnClient -online version: https://docs.microsoft.com/powershell/module/vpnclient/remove-vpnconnection?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/remove-vpnconnection?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/vpnclient/Set-VpnConnection.md b/docset/winserver2012-ps/vpnclient/Set-VpnConnection.md index f8358abd06..179a21bf52 100644 --- a/docset/winserver2012-ps/vpnclient/Set-VpnConnection.md +++ b/docset/winserver2012-ps/vpnclient/Set-VpnConnection.md @@ -1,7 +1,7 @@ --- external help file: VpnClient_Cmdlets.xml Module Name: VpnClient -online version: https://docs.microsoft.com/powershell/module/vpnclient/set-vpnconnection?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/set-vpnconnection?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/vpnclient/Set-VpnConnectionProxy.md b/docset/winserver2012-ps/vpnclient/Set-VpnConnectionProxy.md index 8eddb1b601..20ed80ba96 100644 --- a/docset/winserver2012-ps/vpnclient/Set-VpnConnectionProxy.md +++ b/docset/winserver2012-ps/vpnclient/Set-VpnConnectionProxy.md @@ -1,7 +1,7 @@ --- external help file: VpnClient_Cmdlets.xml Module Name: VpnClient -online version: https://docs.microsoft.com/powershell/module/vpnclient/set-vpnconnectionproxy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/set-vpnconnectionproxy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/waspsext/Get-WASAssessment.md b/docset/winserver2012-ps/waspsext/Get-WASAssessment.md index e777a87922..f92ff4b83a 100644 --- a/docset/winserver2012-ps/waspsext/Get-WASAssessment.md +++ b/docset/winserver2012-ps/waspsext/Get-WASAssessment.md @@ -1,7 +1,7 @@ --- external help file: WasPsExt_Cmdlets.xml Module Name: WasPSExt -online version: https://docs.microsoft.com/powershell/module/waspsext/get-wasassessment?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/waspsext/get-wasassessment?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/waspsext/Get-WASComputer.md b/docset/winserver2012-ps/waspsext/Get-WASComputer.md index dd97bd200d..340d7f18f5 100644 --- a/docset/winserver2012-ps/waspsext/Get-WASComputer.md +++ b/docset/winserver2012-ps/waspsext/Get-WASComputer.md @@ -1,7 +1,7 @@ --- external help file: WasPsExt_Cmdlets.xml Module Name: WasPSExt -online version: https://docs.microsoft.com/powershell/module/waspsext/get-wascomputer?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/waspsext/get-wascomputer?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/waspsext/Get-WASImage.md b/docset/winserver2012-ps/waspsext/Get-WASImage.md index f2b39b833d..8e5f32df30 100644 --- a/docset/winserver2012-ps/waspsext/Get-WASImage.md +++ b/docset/winserver2012-ps/waspsext/Get-WASImage.md @@ -1,7 +1,7 @@ --- external help file: WasPsExt_Cmdlets.xml Module Name: WasPSExt -online version: https://docs.microsoft.com/powershell/module/waspsext/get-wasimage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/waspsext/get-wasimage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/waspsext/Get-WASJob.md b/docset/winserver2012-ps/waspsext/Get-WASJob.md index c699f7b653..46d5a8727e 100644 --- a/docset/winserver2012-ps/waspsext/Get-WASJob.md +++ b/docset/winserver2012-ps/waspsext/Get-WASJob.md @@ -1,7 +1,7 @@ --- external help file: WasPsExt_Cmdlets.xml Module Name: WasPSExt -online version: https://docs.microsoft.com/powershell/module/waspsext/get-wasjob?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/waspsext/get-wasjob?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/waspsext/Get-WASJobInstance.md b/docset/winserver2012-ps/waspsext/Get-WASJobInstance.md index 527b18b6d2..e5b83c5913 100644 --- a/docset/winserver2012-ps/waspsext/Get-WASJobInstance.md +++ b/docset/winserver2012-ps/waspsext/Get-WASJobInstance.md @@ -1,7 +1,7 @@ --- external help file: WasPsExt_Cmdlets.xml Module Name: WasPSExt -online version: https://docs.microsoft.com/powershell/module/waspsext/get-wasjobinstance?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/waspsext/get-wasjobinstance?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/waspsext/Get-WASJobInstanceStatus.md b/docset/winserver2012-ps/waspsext/Get-WASJobInstanceStatus.md index 17557b9b3d..6e755aae5a 100644 --- a/docset/winserver2012-ps/waspsext/Get-WASJobInstanceStatus.md +++ b/docset/winserver2012-ps/waspsext/Get-WASJobInstanceStatus.md @@ -1,7 +1,7 @@ --- external help file: WasPsExt_Cmdlets.xml Module Name: WasPSExt -online version: https://docs.microsoft.com/powershell/module/waspsext/get-wasjobinstancestatus?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/waspsext/get-wasjobinstancestatus?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/waspsext/Invoke-WASJob.md b/docset/winserver2012-ps/waspsext/Invoke-WASJob.md index 6639f22e95..cef38ac17b 100644 --- a/docset/winserver2012-ps/waspsext/Invoke-WASJob.md +++ b/docset/winserver2012-ps/waspsext/Invoke-WASJob.md @@ -1,7 +1,7 @@ --- external help file: WasPsExt_Cmdlets.xml Module Name: WasPSExt -online version: https://docs.microsoft.com/powershell/module/waspsext/invoke-wasjob?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/waspsext/invoke-wasjob?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/waspsext/Register-WASImage.md b/docset/winserver2012-ps/waspsext/Register-WASImage.md index c12f5c6c39..3f10f5b199 100644 --- a/docset/winserver2012-ps/waspsext/Register-WASImage.md +++ b/docset/winserver2012-ps/waspsext/Register-WASImage.md @@ -1,7 +1,7 @@ --- external help file: WasPsExt_Cmdlets.xml Module Name: WasPSExt -online version: https://docs.microsoft.com/powershell/module/waspsext/register-wasimage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/waspsext/register-wasimage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/waspsext/Reset-WASComputer.md b/docset/winserver2012-ps/waspsext/Reset-WASComputer.md index ffffbd539a..8e630e6713 100644 --- a/docset/winserver2012-ps/waspsext/Reset-WASComputer.md +++ b/docset/winserver2012-ps/waspsext/Reset-WASComputer.md @@ -1,7 +1,7 @@ --- external help file: WasPsExt_Cmdlets.xml Module Name: WasPSExt -online version: https://docs.microsoft.com/powershell/module/waspsext/reset-wascomputer?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/waspsext/reset-wascomputer?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/waspsext/Resume-WASComputer.md b/docset/winserver2012-ps/waspsext/Resume-WASComputer.md index 9de1b8c9c8..347f9700c3 100644 --- a/docset/winserver2012-ps/waspsext/Resume-WASComputer.md +++ b/docset/winserver2012-ps/waspsext/Resume-WASComputer.md @@ -1,7 +1,7 @@ --- external help file: WasPsExt_Cmdlets.xml Module Name: WasPSExt -online version: https://docs.microsoft.com/powershell/module/waspsext/resume-wascomputer?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/waspsext/resume-wascomputer?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/waspsext/Skip-WASJobInstance.md b/docset/winserver2012-ps/waspsext/Skip-WASJobInstance.md index b8ece3f80a..dea0af9fc1 100644 --- a/docset/winserver2012-ps/waspsext/Skip-WASJobInstance.md +++ b/docset/winserver2012-ps/waspsext/Skip-WASJobInstance.md @@ -1,7 +1,7 @@ --- external help file: WasPsExt_Cmdlets.xml Module Name: WasPSExt -online version: https://docs.microsoft.com/powershell/module/waspsext/skip-wasjobinstance?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/waspsext/skip-wasjobinstance?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/waspsext/Stop-WASJobInstance.md b/docset/winserver2012-ps/waspsext/Stop-WASJobInstance.md index 173543723a..f6c92cdad2 100644 --- a/docset/winserver2012-ps/waspsext/Stop-WASJobInstance.md +++ b/docset/winserver2012-ps/waspsext/Stop-WASJobInstance.md @@ -1,7 +1,7 @@ --- external help file: WasPsExt_Cmdlets.xml Module Name: WasPSExt -online version: https://docs.microsoft.com/powershell/module/waspsext/stop-wasjobinstance?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/waspsext/stop-wasjobinstance?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/waspsext/Update-WASJob.md b/docset/winserver2012-ps/waspsext/Update-WASJob.md index 852d834bcf..2d48f608a2 100644 --- a/docset/winserver2012-ps/waspsext/Update-WASJob.md +++ b/docset/winserver2012-ps/waspsext/Update-WASJob.md @@ -1,7 +1,7 @@ --- external help file: WasPsExt_Cmdlets.xml Module Name: WasPSExt -online version: https://docs.microsoft.com/powershell/module/waspsext/update-wasjob?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/waspsext/update-wasjob?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wdac/Add-OdbcDsn.md b/docset/winserver2012-ps/wdac/Add-OdbcDsn.md index 714e4d251e..33d0daddb2 100644 --- a/docset/winserver2012-ps/wdac/Add-OdbcDsn.md +++ b/docset/winserver2012-ps/wdac/Add-OdbcDsn.md @@ -1,7 +1,7 @@ --- external help file: WDAC_Cmdlets.xml Module Name: Wdac -online version: https://docs.microsoft.com/powershell/module/wdac/add-odbcdsn?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/add-odbcdsn?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wdac/Disable-OdbcPerfCounter.md b/docset/winserver2012-ps/wdac/Disable-OdbcPerfCounter.md index 5632b0024f..95c03cb733 100644 --- a/docset/winserver2012-ps/wdac/Disable-OdbcPerfCounter.md +++ b/docset/winserver2012-ps/wdac/Disable-OdbcPerfCounter.md @@ -1,7 +1,7 @@ --- external help file: WDAC_Cmdlets.xml Module Name: Wdac -online version: https://docs.microsoft.com/powershell/module/wdac/disable-odbcperfcounter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/disable-odbcperfcounter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wdac/Disable-WdacBidTrace.md b/docset/winserver2012-ps/wdac/Disable-WdacBidTrace.md index fb1d0de457..5b5259e8f8 100644 --- a/docset/winserver2012-ps/wdac/Disable-WdacBidTrace.md +++ b/docset/winserver2012-ps/wdac/Disable-WdacBidTrace.md @@ -1,7 +1,7 @@ --- external help file: WDAC_Cmdlets.xml Module Name: Wdac -online version: https://docs.microsoft.com/powershell/module/wdac/disable-wdacbidtrace?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/disable-wdacbidtrace?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wdac/Enable-OdbcPerfCounter.md b/docset/winserver2012-ps/wdac/Enable-OdbcPerfCounter.md index a405835b62..fbb84839dd 100644 --- a/docset/winserver2012-ps/wdac/Enable-OdbcPerfCounter.md +++ b/docset/winserver2012-ps/wdac/Enable-OdbcPerfCounter.md @@ -1,7 +1,7 @@ --- external help file: WDAC_Cmdlets.xml Module Name: Wdac -online version: https://docs.microsoft.com/powershell/module/wdac/enable-odbcperfcounter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/enable-odbcperfcounter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wdac/Enable-WdacBidTrace.md b/docset/winserver2012-ps/wdac/Enable-WdacBidTrace.md index a2081ff811..455e66f8f5 100644 --- a/docset/winserver2012-ps/wdac/Enable-WdacBidTrace.md +++ b/docset/winserver2012-ps/wdac/Enable-WdacBidTrace.md @@ -1,7 +1,7 @@ --- external help file: WDAC_Cmdlets.xml Module Name: Wdac -online version: https://docs.microsoft.com/powershell/module/wdac/enable-wdacbidtrace?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/enable-wdacbidtrace?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wdac/Get-OdbcDriver.md b/docset/winserver2012-ps/wdac/Get-OdbcDriver.md index a61b386359..4ba3ffe8d0 100644 --- a/docset/winserver2012-ps/wdac/Get-OdbcDriver.md +++ b/docset/winserver2012-ps/wdac/Get-OdbcDriver.md @@ -1,7 +1,7 @@ --- external help file: WDAC_Cmdlets.xml Module Name: Wdac -online version: https://docs.microsoft.com/powershell/module/wdac/get-odbcdriver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/get-odbcdriver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wdac/Get-OdbcDsn.md b/docset/winserver2012-ps/wdac/Get-OdbcDsn.md index bf09807599..ea0cce5066 100644 --- a/docset/winserver2012-ps/wdac/Get-OdbcDsn.md +++ b/docset/winserver2012-ps/wdac/Get-OdbcDsn.md @@ -1,7 +1,7 @@ --- external help file: WDAC_Cmdlets.xml Module Name: Wdac -online version: https://docs.microsoft.com/powershell/module/wdac/get-odbcdsn?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/get-odbcdsn?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wdac/Get-OdbcPerfCounter.md b/docset/winserver2012-ps/wdac/Get-OdbcPerfCounter.md index 6dc45ba25f..120026d438 100644 --- a/docset/winserver2012-ps/wdac/Get-OdbcPerfCounter.md +++ b/docset/winserver2012-ps/wdac/Get-OdbcPerfCounter.md @@ -1,7 +1,7 @@ --- external help file: WDAC_Cmdlets.xml Module Name: Wdac -online version: https://docs.microsoft.com/powershell/module/wdac/get-odbcperfcounter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/get-odbcperfcounter?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wdac/Get-WdacBidTrace.md b/docset/winserver2012-ps/wdac/Get-WdacBidTrace.md index 5b31ecf2af..31a983d016 100644 --- a/docset/winserver2012-ps/wdac/Get-WdacBidTrace.md +++ b/docset/winserver2012-ps/wdac/Get-WdacBidTrace.md @@ -1,7 +1,7 @@ --- external help file: WDAC_Cmdlets.xml Module Name: Wdac -online version: https://docs.microsoft.com/powershell/module/wdac/get-wdacbidtrace?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/get-wdacbidtrace?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wdac/Remove-OdbcDsn.md b/docset/winserver2012-ps/wdac/Remove-OdbcDsn.md index fbcd2550d3..9de423c47d 100644 --- a/docset/winserver2012-ps/wdac/Remove-OdbcDsn.md +++ b/docset/winserver2012-ps/wdac/Remove-OdbcDsn.md @@ -1,7 +1,7 @@ --- external help file: WDAC_Cmdlets.xml Module Name: Wdac -online version: https://docs.microsoft.com/powershell/module/wdac/remove-odbcdsn?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/remove-odbcdsn?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wdac/Set-OdbcDriver.md b/docset/winserver2012-ps/wdac/Set-OdbcDriver.md index 3018f3a196..ca70f403f7 100644 --- a/docset/winserver2012-ps/wdac/Set-OdbcDriver.md +++ b/docset/winserver2012-ps/wdac/Set-OdbcDriver.md @@ -1,7 +1,7 @@ --- external help file: WDAC_Cmdlets.xml Module Name: Wdac -online version: https://docs.microsoft.com/powershell/module/wdac/set-odbcdriver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/set-odbcdriver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wdac/Set-OdbcDsn.md b/docset/winserver2012-ps/wdac/Set-OdbcDsn.md index c376be39d8..130b871f38 100644 --- a/docset/winserver2012-ps/wdac/Set-OdbcDsn.md +++ b/docset/winserver2012-ps/wdac/Set-OdbcDsn.md @@ -1,7 +1,7 @@ --- external help file: WDAC_Cmdlets.xml Module Name: Wdac -online version: https://docs.microsoft.com/powershell/module/wdac/set-odbcdsn?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/set-odbcdsn?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Add-WebConfiguration.md b/docset/winserver2012-ps/webadministration/Add-WebConfiguration.md index b01d2bc990..249b3af1da 100644 --- a/docset/winserver2012-ps/webadministration/Add-WebConfiguration.md +++ b/docset/winserver2012-ps/webadministration/Add-WebConfiguration.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/add-webconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/add-webconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Add-WebConfigurationLock.md b/docset/winserver2012-ps/webadministration/Add-WebConfigurationLock.md index 4f51e1d7bc..7bf3fb2856 100644 --- a/docset/winserver2012-ps/webadministration/Add-WebConfigurationLock.md +++ b/docset/winserver2012-ps/webadministration/Add-WebConfigurationLock.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/add-webconfigurationlock?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/add-webconfigurationlock?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Add-WebConfigurationProperty.md b/docset/winserver2012-ps/webadministration/Add-WebConfigurationProperty.md index 83430a47a5..0ca9e9cb0e 100644 --- a/docset/winserver2012-ps/webadministration/Add-WebConfigurationProperty.md +++ b/docset/winserver2012-ps/webadministration/Add-WebConfigurationProperty.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/add-webconfigurationproperty?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/add-webconfigurationproperty?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Backup-WebConfiguration.md b/docset/winserver2012-ps/webadministration/Backup-WebConfiguration.md index 5abb7b88c3..ca197aaa26 100644 --- a/docset/winserver2012-ps/webadministration/Backup-WebConfiguration.md +++ b/docset/winserver2012-ps/webadministration/Backup-WebConfiguration.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/backup-webconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/backup-webconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Clear-WebCentralCertProvider.md b/docset/winserver2012-ps/webadministration/Clear-WebCentralCertProvider.md index cc6250ac2a..c85f89c049 100644 --- a/docset/winserver2012-ps/webadministration/Clear-WebCentralCertProvider.md +++ b/docset/winserver2012-ps/webadministration/Clear-WebCentralCertProvider.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/clear-webcentralcertprovider?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/clear-webcentralcertprovider?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Clear-WebConfiguration.md b/docset/winserver2012-ps/webadministration/Clear-WebConfiguration.md index 8050c2f9dc..f822ea8917 100644 --- a/docset/winserver2012-ps/webadministration/Clear-WebConfiguration.md +++ b/docset/winserver2012-ps/webadministration/Clear-WebConfiguration.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/clear-webconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/clear-webconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Clear-WebRequestTracingSetting.md b/docset/winserver2012-ps/webadministration/Clear-WebRequestTracingSetting.md index fea70e90f1..10df3b268c 100644 --- a/docset/winserver2012-ps/webadministration/Clear-WebRequestTracingSetting.md +++ b/docset/winserver2012-ps/webadministration/Clear-WebRequestTracingSetting.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/clear-webrequesttracingsetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/clear-webrequesttracingsetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Clear-WebRequestTracingSettings.md b/docset/winserver2012-ps/webadministration/Clear-WebRequestTracingSettings.md index d50864dd6d..15058b3831 100644 --- a/docset/winserver2012-ps/webadministration/Clear-WebRequestTracingSettings.md +++ b/docset/winserver2012-ps/webadministration/Clear-WebRequestTracingSettings.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/clear-webrequesttracingsettings?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/clear-webrequesttracingsettings?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/ConvertTo-WebApplication.md b/docset/winserver2012-ps/webadministration/ConvertTo-WebApplication.md index 2a6c2ac55a..55b06f2ea9 100644 --- a/docset/winserver2012-ps/webadministration/ConvertTo-WebApplication.md +++ b/docset/winserver2012-ps/webadministration/ConvertTo-WebApplication.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/convertto-webapplication?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/convertto-webapplication?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Disable-WebCentralCertProvider.md b/docset/winserver2012-ps/webadministration/Disable-WebCentralCertProvider.md index f2d8f33519..8784e789b4 100644 --- a/docset/winserver2012-ps/webadministration/Disable-WebCentralCertProvider.md +++ b/docset/winserver2012-ps/webadministration/Disable-WebCentralCertProvider.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/disable-webcentralcertprovider?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/disable-webcentralcertprovider?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Disable-WebGlobalModule.md b/docset/winserver2012-ps/webadministration/Disable-WebGlobalModule.md index fa043dc3d5..af6aee7499 100644 --- a/docset/winserver2012-ps/webadministration/Disable-WebGlobalModule.md +++ b/docset/winserver2012-ps/webadministration/Disable-WebGlobalModule.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/disable-webglobalmodule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/disable-webglobalmodule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Disable-WebRequestTracing.md b/docset/winserver2012-ps/webadministration/Disable-WebRequestTracing.md index f0db1f7bc8..9117a66f13 100644 --- a/docset/winserver2012-ps/webadministration/Disable-WebRequestTracing.md +++ b/docset/winserver2012-ps/webadministration/Disable-WebRequestTracing.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/disable-webrequesttracing?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/disable-webrequesttracing?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Enable-WebCentralCertProvider.md b/docset/winserver2012-ps/webadministration/Enable-WebCentralCertProvider.md index 0967939df5..6d77260fa0 100644 --- a/docset/winserver2012-ps/webadministration/Enable-WebCentralCertProvider.md +++ b/docset/winserver2012-ps/webadministration/Enable-WebCentralCertProvider.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/enable-webcentralcertprovider?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/enable-webcentralcertprovider?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Enable-WebGlobalModule.md b/docset/winserver2012-ps/webadministration/Enable-WebGlobalModule.md index a6edfb7935..2d237b8050 100644 --- a/docset/winserver2012-ps/webadministration/Enable-WebGlobalModule.md +++ b/docset/winserver2012-ps/webadministration/Enable-WebGlobalModule.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/enable-webglobalmodule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/enable-webglobalmodule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Enable-WebRequestTracing.md b/docset/winserver2012-ps/webadministration/Enable-WebRequestTracing.md index 43e038d17e..1675f6dabd 100644 --- a/docset/winserver2012-ps/webadministration/Enable-WebRequestTracing.md +++ b/docset/winserver2012-ps/webadministration/Enable-WebRequestTracing.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/enable-webrequesttracing?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/enable-webrequesttracing?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Get-WebAppDomain.md b/docset/winserver2012-ps/webadministration/Get-WebAppDomain.md index 6ec2b9195c..70bec22ae5 100644 --- a/docset/winserver2012-ps/webadministration/Get-WebAppDomain.md +++ b/docset/winserver2012-ps/webadministration/Get-WebAppDomain.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webappdomain?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webappdomain?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Get-WebAppPoolState.md b/docset/winserver2012-ps/webadministration/Get-WebAppPoolState.md index 55ace768d9..f06f1af140 100644 --- a/docset/winserver2012-ps/webadministration/Get-WebAppPoolState.md +++ b/docset/winserver2012-ps/webadministration/Get-WebAppPoolState.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webapppoolstate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webapppoolstate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Get-WebApplication.md b/docset/winserver2012-ps/webadministration/Get-WebApplication.md index 5f58c0e1b1..449fd285f2 100644 --- a/docset/winserver2012-ps/webadministration/Get-WebApplication.md +++ b/docset/winserver2012-ps/webadministration/Get-WebApplication.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webapplication?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webapplication?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Get-WebBinding.md b/docset/winserver2012-ps/webadministration/Get-WebBinding.md index 57947ee936..bbe6d9c94d 100644 --- a/docset/winserver2012-ps/webadministration/Get-WebBinding.md +++ b/docset/winserver2012-ps/webadministration/Get-WebBinding.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webbinding?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webbinding?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Get-WebCentralCertProvider.md b/docset/winserver2012-ps/webadministration/Get-WebCentralCertProvider.md index 62271a03ff..a95a561928 100644 --- a/docset/winserver2012-ps/webadministration/Get-WebCentralCertProvider.md +++ b/docset/winserver2012-ps/webadministration/Get-WebCentralCertProvider.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webcentralcertprovider?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webcentralcertprovider?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Get-WebConfigFile.md b/docset/winserver2012-ps/webadministration/Get-WebConfigFile.md index fa9baca1af..4ee7e3540b 100644 --- a/docset/winserver2012-ps/webadministration/Get-WebConfigFile.md +++ b/docset/winserver2012-ps/webadministration/Get-WebConfigFile.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webconfigfile?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webconfigfile?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Get-WebConfiguration.md b/docset/winserver2012-ps/webadministration/Get-WebConfiguration.md index 8db2b9abd8..994efee1eb 100644 --- a/docset/winserver2012-ps/webadministration/Get-WebConfiguration.md +++ b/docset/winserver2012-ps/webadministration/Get-WebConfiguration.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Get-WebConfigurationBackup.md b/docset/winserver2012-ps/webadministration/Get-WebConfigurationBackup.md index 4989123c1f..c6adce1133 100644 --- a/docset/winserver2012-ps/webadministration/Get-WebConfigurationBackup.md +++ b/docset/winserver2012-ps/webadministration/Get-WebConfigurationBackup.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webconfigurationbackup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webconfigurationbackup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Get-WebConfigurationLocation.md b/docset/winserver2012-ps/webadministration/Get-WebConfigurationLocation.md index 8287ffe677..6ee12ddfd1 100644 --- a/docset/winserver2012-ps/webadministration/Get-WebConfigurationLocation.md +++ b/docset/winserver2012-ps/webadministration/Get-WebConfigurationLocation.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webconfigurationlocation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webconfigurationlocation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Get-WebConfigurationLock.md b/docset/winserver2012-ps/webadministration/Get-WebConfigurationLock.md index 75206e2b4f..702f8e58e1 100644 --- a/docset/winserver2012-ps/webadministration/Get-WebConfigurationLock.md +++ b/docset/winserver2012-ps/webadministration/Get-WebConfigurationLock.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webconfigurationlock?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webconfigurationlock?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Get-WebConfigurationProperty.md b/docset/winserver2012-ps/webadministration/Get-WebConfigurationProperty.md index 6b3de5026e..27bf968c2f 100644 --- a/docset/winserver2012-ps/webadministration/Get-WebConfigurationProperty.md +++ b/docset/winserver2012-ps/webadministration/Get-WebConfigurationProperty.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webconfigurationproperty?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webconfigurationproperty?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Get-WebFilePath.md b/docset/winserver2012-ps/webadministration/Get-WebFilePath.md index 01269985cf..ca62abc63b 100644 --- a/docset/winserver2012-ps/webadministration/Get-WebFilePath.md +++ b/docset/winserver2012-ps/webadministration/Get-WebFilePath.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webfilepath?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webfilepath?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Get-WebHandler.md b/docset/winserver2012-ps/webadministration/Get-WebHandler.md index 8a864b0fb6..107d1df736 100644 --- a/docset/winserver2012-ps/webadministration/Get-WebHandler.md +++ b/docset/winserver2012-ps/webadministration/Get-WebHandler.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webhandler?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webhandler?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Get-WebItemState.md b/docset/winserver2012-ps/webadministration/Get-WebItemState.md index b04c9ce9d0..81b6b13515 100644 --- a/docset/winserver2012-ps/webadministration/Get-WebItemState.md +++ b/docset/winserver2012-ps/webadministration/Get-WebItemState.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webitemstate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webitemstate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Get-WebManagedModule.md b/docset/winserver2012-ps/webadministration/Get-WebManagedModule.md index 5cdafd2ac5..5b1f4f1b19 100644 --- a/docset/winserver2012-ps/webadministration/Get-WebManagedModule.md +++ b/docset/winserver2012-ps/webadministration/Get-WebManagedModule.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webmanagedmodule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webmanagedmodule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Get-WebRequest.md b/docset/winserver2012-ps/webadministration/Get-WebRequest.md index 2db2449af8..4d74c22028 100644 --- a/docset/winserver2012-ps/webadministration/Get-WebRequest.md +++ b/docset/winserver2012-ps/webadministration/Get-WebRequest.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webrequest?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webrequest?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Get-WebURL.md b/docset/winserver2012-ps/webadministration/Get-WebURL.md index 4849cbca02..4e0ebb00d1 100644 --- a/docset/winserver2012-ps/webadministration/Get-WebURL.md +++ b/docset/winserver2012-ps/webadministration/Get-WebURL.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/get-weburl?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-weburl?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Get-WebVirtualDirectory.md b/docset/winserver2012-ps/webadministration/Get-WebVirtualDirectory.md index 3407c8c298..56310e8ea0 100644 --- a/docset/winserver2012-ps/webadministration/Get-WebVirtualDirectory.md +++ b/docset/winserver2012-ps/webadministration/Get-WebVirtualDirectory.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webvirtualdirectory?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webvirtualdirectory?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Get-Website.md b/docset/winserver2012-ps/webadministration/Get-Website.md index 2e599cfe32..57dae1f4f4 100644 --- a/docset/winserver2012-ps/webadministration/Get-Website.md +++ b/docset/winserver2012-ps/webadministration/Get-Website.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/get-website?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-website?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Get-WebsiteState.md b/docset/winserver2012-ps/webadministration/Get-WebsiteState.md index 31a89ed0b6..d98bdb2b6a 100644 --- a/docset/winserver2012-ps/webadministration/Get-WebsiteState.md +++ b/docset/winserver2012-ps/webadministration/Get-WebsiteState.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/get-websitestate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-websitestate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/New-WebAppPool.md b/docset/winserver2012-ps/webadministration/New-WebAppPool.md index b333193689..9da7f4897d 100644 --- a/docset/winserver2012-ps/webadministration/New-WebAppPool.md +++ b/docset/winserver2012-ps/webadministration/New-WebAppPool.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/new-webapppool?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/new-webapppool?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/New-WebApplication.md b/docset/winserver2012-ps/webadministration/New-WebApplication.md index 29e94f6b42..162e9be58f 100644 --- a/docset/winserver2012-ps/webadministration/New-WebApplication.md +++ b/docset/winserver2012-ps/webadministration/New-WebApplication.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/new-webapplication?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/new-webapplication?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/New-WebBinding.md b/docset/winserver2012-ps/webadministration/New-WebBinding.md index cae082ba0a..7caed4e8d1 100644 --- a/docset/winserver2012-ps/webadministration/New-WebBinding.md +++ b/docset/winserver2012-ps/webadministration/New-WebBinding.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/new-webbinding?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/new-webbinding?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/New-WebFtpSite.md b/docset/winserver2012-ps/webadministration/New-WebFtpSite.md index b901bb46df..f724bb3647 100644 --- a/docset/winserver2012-ps/webadministration/New-WebFtpSite.md +++ b/docset/winserver2012-ps/webadministration/New-WebFtpSite.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/new-webftpsite?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/new-webftpsite?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/New-WebGlobalModule.md b/docset/winserver2012-ps/webadministration/New-WebGlobalModule.md index 05165f7797..0dd7fb0eca 100644 --- a/docset/winserver2012-ps/webadministration/New-WebGlobalModule.md +++ b/docset/winserver2012-ps/webadministration/New-WebGlobalModule.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/new-webglobalmodule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/new-webglobalmodule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/New-WebHandler.md b/docset/winserver2012-ps/webadministration/New-WebHandler.md index 2a7ae2b2d4..55df459b97 100644 --- a/docset/winserver2012-ps/webadministration/New-WebHandler.md +++ b/docset/winserver2012-ps/webadministration/New-WebHandler.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/new-webhandler?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/new-webhandler?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/New-WebManagedModule.md b/docset/winserver2012-ps/webadministration/New-WebManagedModule.md index cb34ef8549..fc2d65c342 100644 --- a/docset/winserver2012-ps/webadministration/New-WebManagedModule.md +++ b/docset/winserver2012-ps/webadministration/New-WebManagedModule.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/new-webmanagedmodule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/new-webmanagedmodule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/New-WebVirtualDirectory.md b/docset/winserver2012-ps/webadministration/New-WebVirtualDirectory.md index de0d30fc78..b13bf8e634 100644 --- a/docset/winserver2012-ps/webadministration/New-WebVirtualDirectory.md +++ b/docset/winserver2012-ps/webadministration/New-WebVirtualDirectory.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/new-webvirtualdirectory?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/new-webvirtualdirectory?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/New-Website.md b/docset/winserver2012-ps/webadministration/New-Website.md index e66856d577..431356db6c 100644 --- a/docset/winserver2012-ps/webadministration/New-Website.md +++ b/docset/winserver2012-ps/webadministration/New-Website.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/new-website?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/new-website?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Remove-WebAppPool.md b/docset/winserver2012-ps/webadministration/Remove-WebAppPool.md index 2ca608ac6b..38f28434e7 100644 --- a/docset/winserver2012-ps/webadministration/Remove-WebAppPool.md +++ b/docset/winserver2012-ps/webadministration/Remove-WebAppPool.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-webapppool?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-webapppool?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Remove-WebApplication.md b/docset/winserver2012-ps/webadministration/Remove-WebApplication.md index 49b1bd5db3..e0e3f44f44 100644 --- a/docset/winserver2012-ps/webadministration/Remove-WebApplication.md +++ b/docset/winserver2012-ps/webadministration/Remove-WebApplication.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-webapplication?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-webapplication?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Remove-WebBinding.md b/docset/winserver2012-ps/webadministration/Remove-WebBinding.md index ce288cba08..3e6fb5673a 100644 --- a/docset/winserver2012-ps/webadministration/Remove-WebBinding.md +++ b/docset/winserver2012-ps/webadministration/Remove-WebBinding.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-webbinding?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-webbinding?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Remove-WebConfigurationBackup.md b/docset/winserver2012-ps/webadministration/Remove-WebConfigurationBackup.md index 2371a86b4e..01ed22c652 100644 --- a/docset/winserver2012-ps/webadministration/Remove-WebConfigurationBackup.md +++ b/docset/winserver2012-ps/webadministration/Remove-WebConfigurationBackup.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-webconfigurationbackup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-webconfigurationbackup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Remove-WebConfigurationLocation.md b/docset/winserver2012-ps/webadministration/Remove-WebConfigurationLocation.md index d69d360e45..d5c2855a42 100644 --- a/docset/winserver2012-ps/webadministration/Remove-WebConfigurationLocation.md +++ b/docset/winserver2012-ps/webadministration/Remove-WebConfigurationLocation.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-webconfigurationlocation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-webconfigurationlocation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Remove-WebConfigurationLock.md b/docset/winserver2012-ps/webadministration/Remove-WebConfigurationLock.md index 2dcf792cc9..59ba1423cf 100644 --- a/docset/winserver2012-ps/webadministration/Remove-WebConfigurationLock.md +++ b/docset/winserver2012-ps/webadministration/Remove-WebConfigurationLock.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-webconfigurationlock?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-webconfigurationlock?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Remove-WebConfigurationProperty.md b/docset/winserver2012-ps/webadministration/Remove-WebConfigurationProperty.md index 6c277a19d5..350a7c3f31 100644 --- a/docset/winserver2012-ps/webadministration/Remove-WebConfigurationProperty.md +++ b/docset/winserver2012-ps/webadministration/Remove-WebConfigurationProperty.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-webconfigurationproperty?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-webconfigurationproperty?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Remove-WebGlobalModule.md b/docset/winserver2012-ps/webadministration/Remove-WebGlobalModule.md index 1ab6666e1f..600b5ebc45 100644 --- a/docset/winserver2012-ps/webadministration/Remove-WebGlobalModule.md +++ b/docset/winserver2012-ps/webadministration/Remove-WebGlobalModule.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-webglobalmodule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-webglobalmodule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Remove-WebHandler.md b/docset/winserver2012-ps/webadministration/Remove-WebHandler.md index 1598b424d4..62c7030a9e 100644 --- a/docset/winserver2012-ps/webadministration/Remove-WebHandler.md +++ b/docset/winserver2012-ps/webadministration/Remove-WebHandler.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-webhandler?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-webhandler?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Remove-WebManagedModule.md b/docset/winserver2012-ps/webadministration/Remove-WebManagedModule.md index 5e991a4aee..b9048e38bb 100644 --- a/docset/winserver2012-ps/webadministration/Remove-WebManagedModule.md +++ b/docset/winserver2012-ps/webadministration/Remove-WebManagedModule.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-webmanagedmodule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-webmanagedmodule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Remove-WebVirtualDirectory.md b/docset/winserver2012-ps/webadministration/Remove-WebVirtualDirectory.md index 4968994ade..0eb6129289 100644 --- a/docset/winserver2012-ps/webadministration/Remove-WebVirtualDirectory.md +++ b/docset/winserver2012-ps/webadministration/Remove-WebVirtualDirectory.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-webvirtualdirectory?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-webvirtualdirectory?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Remove-Website.md b/docset/winserver2012-ps/webadministration/Remove-Website.md index 6d2488c190..fcf2238f1f 100644 --- a/docset/winserver2012-ps/webadministration/Remove-Website.md +++ b/docset/winserver2012-ps/webadministration/Remove-Website.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-website?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-website?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Rename-WebConfigurationLocation.md b/docset/winserver2012-ps/webadministration/Rename-WebConfigurationLocation.md index 20fa137f4a..7bd2c78d65 100644 --- a/docset/winserver2012-ps/webadministration/Rename-WebConfigurationLocation.md +++ b/docset/winserver2012-ps/webadministration/Rename-WebConfigurationLocation.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/rename-webconfigurationlocation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/rename-webconfigurationlocation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Restart-WebAppPool.md b/docset/winserver2012-ps/webadministration/Restart-WebAppPool.md index 324b5aaad7..a407c5799b 100644 --- a/docset/winserver2012-ps/webadministration/Restart-WebAppPool.md +++ b/docset/winserver2012-ps/webadministration/Restart-WebAppPool.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/restart-webapppool?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/restart-webapppool?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Restart-WebItem.md b/docset/winserver2012-ps/webadministration/Restart-WebItem.md index 994d9a2f2b..08503f3122 100644 --- a/docset/winserver2012-ps/webadministration/Restart-WebItem.md +++ b/docset/winserver2012-ps/webadministration/Restart-WebItem.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/restart-webitem?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/restart-webitem?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Restore-WebConfiguration.md b/docset/winserver2012-ps/webadministration/Restore-WebConfiguration.md index 2f5e9c2c26..fc4aa7f8f1 100644 --- a/docset/winserver2012-ps/webadministration/Restore-WebConfiguration.md +++ b/docset/winserver2012-ps/webadministration/Restore-WebConfiguration.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/restore-webconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/restore-webconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Select-WebConfiguration.md b/docset/winserver2012-ps/webadministration/Select-WebConfiguration.md index 1c81ddf05e..f102ffa617 100644 --- a/docset/winserver2012-ps/webadministration/Select-WebConfiguration.md +++ b/docset/winserver2012-ps/webadministration/Select-WebConfiguration.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/select-webconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/select-webconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Set-WebBinding.md b/docset/winserver2012-ps/webadministration/Set-WebBinding.md index e35d1c1837..34e05cee21 100644 --- a/docset/winserver2012-ps/webadministration/Set-WebBinding.md +++ b/docset/winserver2012-ps/webadministration/Set-WebBinding.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/set-webbinding?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/set-webbinding?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Set-WebCentralCertProvider.md b/docset/winserver2012-ps/webadministration/Set-WebCentralCertProvider.md index ebba272ae0..a51e7995f9 100644 --- a/docset/winserver2012-ps/webadministration/Set-WebCentralCertProvider.md +++ b/docset/winserver2012-ps/webadministration/Set-WebCentralCertProvider.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/set-webcentralcertprovider?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/set-webcentralcertprovider?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Set-WebCentralCertProviderCredential.md b/docset/winserver2012-ps/webadministration/Set-WebCentralCertProviderCredential.md index b6e4eee96a..bc955df3af 100644 --- a/docset/winserver2012-ps/webadministration/Set-WebCentralCertProviderCredential.md +++ b/docset/winserver2012-ps/webadministration/Set-WebCentralCertProviderCredential.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/set-webcentralcertprovidercredential?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/set-webcentralcertprovidercredential?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Set-WebConfiguration.md b/docset/winserver2012-ps/webadministration/Set-WebConfiguration.md index 7cb39fe13e..062ca85ad6 100644 --- a/docset/winserver2012-ps/webadministration/Set-WebConfiguration.md +++ b/docset/winserver2012-ps/webadministration/Set-WebConfiguration.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/set-webconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/set-webconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Set-WebConfigurationProperty.md b/docset/winserver2012-ps/webadministration/Set-WebConfigurationProperty.md index 8bc55c613d..c2b656e71c 100644 --- a/docset/winserver2012-ps/webadministration/Set-WebConfigurationProperty.md +++ b/docset/winserver2012-ps/webadministration/Set-WebConfigurationProperty.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/set-webconfigurationproperty?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/set-webconfigurationproperty?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Set-WebGlobalModule.md b/docset/winserver2012-ps/webadministration/Set-WebGlobalModule.md index 09865d87cd..ac2f8c8a2f 100644 --- a/docset/winserver2012-ps/webadministration/Set-WebGlobalModule.md +++ b/docset/winserver2012-ps/webadministration/Set-WebGlobalModule.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/set-webglobalmodule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/set-webglobalmodule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Set-WebHandler.md b/docset/winserver2012-ps/webadministration/Set-WebHandler.md index 35927661f3..4b70b2341d 100644 --- a/docset/winserver2012-ps/webadministration/Set-WebHandler.md +++ b/docset/winserver2012-ps/webadministration/Set-WebHandler.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/set-webhandler?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/set-webhandler?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Set-WebManagedModule.md b/docset/winserver2012-ps/webadministration/Set-WebManagedModule.md index 1b04e1748e..65750bc9fc 100644 --- a/docset/winserver2012-ps/webadministration/Set-WebManagedModule.md +++ b/docset/winserver2012-ps/webadministration/Set-WebManagedModule.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/set-webmanagedmodule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/set-webmanagedmodule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Start-WebAppPool.md b/docset/winserver2012-ps/webadministration/Start-WebAppPool.md index a8fee482ab..a75879e44b 100644 --- a/docset/winserver2012-ps/webadministration/Start-WebAppPool.md +++ b/docset/winserver2012-ps/webadministration/Start-WebAppPool.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/start-webapppool?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/start-webapppool?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Start-WebCommitDelay.md b/docset/winserver2012-ps/webadministration/Start-WebCommitDelay.md index 7b8111c41f..18fe52b371 100644 --- a/docset/winserver2012-ps/webadministration/Start-WebCommitDelay.md +++ b/docset/winserver2012-ps/webadministration/Start-WebCommitDelay.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/start-webcommitdelay?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/start-webcommitdelay?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Start-WebItem.md b/docset/winserver2012-ps/webadministration/Start-WebItem.md index ded46721b9..f87920cf45 100644 --- a/docset/winserver2012-ps/webadministration/Start-WebItem.md +++ b/docset/winserver2012-ps/webadministration/Start-WebItem.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/start-webitem?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/start-webitem?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Start-Website.md b/docset/winserver2012-ps/webadministration/Start-Website.md index 6949e31da6..a269d9cca5 100644 --- a/docset/winserver2012-ps/webadministration/Start-Website.md +++ b/docset/winserver2012-ps/webadministration/Start-Website.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/start-website?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/start-website?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Stop-WebAppPool.md b/docset/winserver2012-ps/webadministration/Stop-WebAppPool.md index 19f1d8f05b..a6e4e40154 100644 --- a/docset/winserver2012-ps/webadministration/Stop-WebAppPool.md +++ b/docset/winserver2012-ps/webadministration/Stop-WebAppPool.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/stop-webapppool?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/stop-webapppool?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Stop-WebCommitDelay.md b/docset/winserver2012-ps/webadministration/Stop-WebCommitDelay.md index 3e2a21fac1..1e3a47d259 100644 --- a/docset/winserver2012-ps/webadministration/Stop-WebCommitDelay.md +++ b/docset/winserver2012-ps/webadministration/Stop-WebCommitDelay.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/stop-webcommitdelay?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/stop-webcommitdelay?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Stop-WebItem.md b/docset/winserver2012-ps/webadministration/Stop-WebItem.md index 6f8f66a77c..2c6e49f31c 100644 --- a/docset/winserver2012-ps/webadministration/Stop-WebItem.md +++ b/docset/winserver2012-ps/webadministration/Stop-WebItem.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/stop-webitem?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/stop-webitem?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/webadministration/Stop-Website.md b/docset/winserver2012-ps/webadministration/Stop-Website.md index 78f8fc2833..2259e66d55 100644 --- a/docset/winserver2012-ps/webadministration/Stop-Website.md +++ b/docset/winserver2012-ps/webadministration/Stop-Website.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration -online version: https://docs.microsoft.com/powershell/module/webadministration/stop-website?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/stop-website?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/whea/Get-WheaMemoryPolicy.md b/docset/winserver2012-ps/whea/Get-WheaMemoryPolicy.md index 8692d95b58..a39846621c 100644 --- a/docset/winserver2012-ps/whea/Get-WheaMemoryPolicy.md +++ b/docset/winserver2012-ps/whea/Get-WheaMemoryPolicy.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Windows.Whea.WheaMemoryPolicy.dll-Help.xml Module Name: WHEA -online version: https://docs.microsoft.com/powershell/module/whea/get-wheamemorypolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/whea/get-wheamemorypolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/whea/Set-WheaMemoryPolicy.md b/docset/winserver2012-ps/whea/Set-WheaMemoryPolicy.md index f62c32c5b7..264d718a9b 100644 --- a/docset/winserver2012-ps/whea/Set-WheaMemoryPolicy.md +++ b/docset/winserver2012-ps/whea/Set-WheaMemoryPolicy.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Windows.Whea.WheaMemoryPolicy.dll-Help.xml Module Name: WHEA -online version: https://docs.microsoft.com/powershell/module/whea/set-wheamemorypolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/whea/set-wheamemorypolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/windowsdeveloperlicense/Get-WindowsDeveloperLicense.md b/docset/winserver2012-ps/windowsdeveloperlicense/Get-WindowsDeveloperLicense.md index 3d89b884f4..5d7383b33e 100644 --- a/docset/winserver2012-ps/windowsdeveloperlicense/Get-WindowsDeveloperLicense.md +++ b/docset/winserver2012-ps/windowsdeveloperlicense/Get-WindowsDeveloperLicense.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Windows.DeveloperLicense.Commands.dll-Help.xml Module Name: WindowsDeveloperLicense -online version: https://docs.microsoft.com/powershell/module/windowsdeveloperlicense/get-windowsdeveloperlicense?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsdeveloperlicense/get-windowsdeveloperlicense?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/windowsdeveloperlicense/Show-WindowsDeveloperLicenseRegistration.md b/docset/winserver2012-ps/windowsdeveloperlicense/Show-WindowsDeveloperLicenseRegistration.md index 3ef073d75c..85effbbdd2 100644 --- a/docset/winserver2012-ps/windowsdeveloperlicense/Show-WindowsDeveloperLicenseRegistration.md +++ b/docset/winserver2012-ps/windowsdeveloperlicense/Show-WindowsDeveloperLicenseRegistration.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Windows.DeveloperLicense.Commands.dll-Help.xml Module Name: WindowsDeveloperLicense -online version: https://docs.microsoft.com/powershell/module/windowsdeveloperlicense/show-windowsdeveloperlicenseregistration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsdeveloperlicense/show-windowsdeveloperlicenseregistration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/windowsdeveloperlicense/Unregister-WindowsDeveloperLicense.md b/docset/winserver2012-ps/windowsdeveloperlicense/Unregister-WindowsDeveloperLicense.md index 73d61ddb72..2141aa4f3b 100644 --- a/docset/winserver2012-ps/windowsdeveloperlicense/Unregister-WindowsDeveloperLicense.md +++ b/docset/winserver2012-ps/windowsdeveloperlicense/Unregister-WindowsDeveloperLicense.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Windows.DeveloperLicense.Commands.dll-Help.xml Module Name: WindowsDeveloperLicense -online version: https://docs.microsoft.com/powershell/module/windowsdeveloperlicense/unregister-windowsdeveloperlicense?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsdeveloperlicense/unregister-windowsdeveloperlicense?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/windowserrorreporting/Disable-WindowsErrorReporting.md b/docset/winserver2012-ps/windowserrorreporting/Disable-WindowsErrorReporting.md index 1183018a7b..1656a87439 100644 --- a/docset/winserver2012-ps/windowserrorreporting/Disable-WindowsErrorReporting.md +++ b/docset/winserver2012-ps/windowserrorreporting/Disable-WindowsErrorReporting.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.WindowsErrorReporting.PowerShell.dll-Help.xml Module Name: WindowsErrorReporting -online version: https://docs.microsoft.com/powershell/module/windowserrorreporting/disable-windowserrorreporting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowserrorreporting/disable-windowserrorreporting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/windowserrorreporting/Enable-WindowsErrorReporting.md b/docset/winserver2012-ps/windowserrorreporting/Enable-WindowsErrorReporting.md index e9d593e0b3..381247d465 100644 --- a/docset/winserver2012-ps/windowserrorreporting/Enable-WindowsErrorReporting.md +++ b/docset/winserver2012-ps/windowserrorreporting/Enable-WindowsErrorReporting.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.WindowsErrorReporting.PowerShell.dll-Help.xml Module Name: WindowsErrorReporting -online version: https://docs.microsoft.com/powershell/module/windowserrorreporting/enable-windowserrorreporting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowserrorreporting/enable-windowserrorreporting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/windowserrorreporting/Get-WindowsErrorReporting.md b/docset/winserver2012-ps/windowserrorreporting/Get-WindowsErrorReporting.md index fc55d249da..ff3a307223 100644 --- a/docset/winserver2012-ps/windowserrorreporting/Get-WindowsErrorReporting.md +++ b/docset/winserver2012-ps/windowserrorreporting/Get-WindowsErrorReporting.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.WindowsErrorReporting.PowerShell.dll-Help.xml Module Name: WindowsErrorReporting -online version: https://docs.microsoft.com/powershell/module/windowserrorreporting/get-windowserrorreporting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowserrorreporting/get-windowserrorreporting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/windowsserverbackup/Add-WBBackupTarget.md b/docset/winserver2012-ps/windowsserverbackup/Add-WBBackupTarget.md index 95ff66d64a..24497cfd49 100644 --- a/docset/winserver2012-ps/windowsserverbackup/Add-WBBackupTarget.md +++ b/docset/winserver2012-ps/windowsserverbackup/Add-WBBackupTarget.md @@ -1,7 +1,7 @@ --- external help file: WSBackup_Cmdlets.xml Module Name: WindowsServerBackup -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/add-wbbackuptarget?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/add-wbbackuptarget?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/windowsserverbackup/Add-WBBareMetalRecovery.md b/docset/winserver2012-ps/windowsserverbackup/Add-WBBareMetalRecovery.md index ec3a950c44..aa7aa1d828 100644 --- a/docset/winserver2012-ps/windowsserverbackup/Add-WBBareMetalRecovery.md +++ b/docset/winserver2012-ps/windowsserverbackup/Add-WBBareMetalRecovery.md @@ -1,7 +1,7 @@ --- external help file: WSBackup_Cmdlets.xml Module Name: WindowsServerBackup -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/add-wbbaremetalrecovery?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/add-wbbaremetalrecovery?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/windowsserverbackup/Add-WBFileSpec.md b/docset/winserver2012-ps/windowsserverbackup/Add-WBFileSpec.md index 3f1c343ee8..a646d736c9 100644 --- a/docset/winserver2012-ps/windowsserverbackup/Add-WBFileSpec.md +++ b/docset/winserver2012-ps/windowsserverbackup/Add-WBFileSpec.md @@ -1,7 +1,7 @@ --- external help file: WSBackup_Cmdlets.xml Module Name: WindowsServerBackup -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/add-wbfilespec?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/add-wbfilespec?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/windowsserverbackup/Add-WBSystemState.md b/docset/winserver2012-ps/windowsserverbackup/Add-WBSystemState.md index 61b7304e75..0aee7dd060 100644 --- a/docset/winserver2012-ps/windowsserverbackup/Add-WBSystemState.md +++ b/docset/winserver2012-ps/windowsserverbackup/Add-WBSystemState.md @@ -1,7 +1,7 @@ --- external help file: WSBackup_Cmdlets.xml Module Name: WindowsServerBackup -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/add-wbsystemstate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/add-wbsystemstate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/windowsserverbackup/Add-WBVirtualMachine.md b/docset/winserver2012-ps/windowsserverbackup/Add-WBVirtualMachine.md index 2c87b94818..4dffe465c1 100644 --- a/docset/winserver2012-ps/windowsserverbackup/Add-WBVirtualMachine.md +++ b/docset/winserver2012-ps/windowsserverbackup/Add-WBVirtualMachine.md @@ -1,7 +1,7 @@ --- external help file: WSBackup_Cmdlets.xml Module Name: WindowsServerBackup -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/add-wbvirtualmachine?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/add-wbvirtualmachine?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/windowsserverbackup/Add-WBVolume.md b/docset/winserver2012-ps/windowsserverbackup/Add-WBVolume.md index 9096e21135..727bc3735f 100644 --- a/docset/winserver2012-ps/windowsserverbackup/Add-WBVolume.md +++ b/docset/winserver2012-ps/windowsserverbackup/Add-WBVolume.md @@ -1,7 +1,7 @@ --- external help file: WSBackup_Cmdlets.xml Module Name: WindowsServerBackup -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/add-wbvolume?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/add-wbvolume?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/windowsserverbackup/Get-WBBackupSet.md b/docset/winserver2012-ps/windowsserverbackup/Get-WBBackupSet.md index 37a6f10d28..84b0bc3893 100644 --- a/docset/winserver2012-ps/windowsserverbackup/Get-WBBackupSet.md +++ b/docset/winserver2012-ps/windowsserverbackup/Get-WBBackupSet.md @@ -1,7 +1,7 @@ --- external help file: WSBackup_Cmdlets.xml Module Name: WindowsServerBackup -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbbackupset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbbackupset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/windowsserverbackup/Get-WBBackupTarget.md b/docset/winserver2012-ps/windowsserverbackup/Get-WBBackupTarget.md index 588dedc8b5..2387c2faf9 100644 --- a/docset/winserver2012-ps/windowsserverbackup/Get-WBBackupTarget.md +++ b/docset/winserver2012-ps/windowsserverbackup/Get-WBBackupTarget.md @@ -1,7 +1,7 @@ --- external help file: WSBackup_Cmdlets.xml Module Name: WindowsServerBackup -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbbackuptarget?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbbackuptarget?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/windowsserverbackup/Get-WBBackupVolumeBrowsePath.md b/docset/winserver2012-ps/windowsserverbackup/Get-WBBackupVolumeBrowsePath.md index f5dc953db2..05e50c2df1 100644 --- a/docset/winserver2012-ps/windowsserverbackup/Get-WBBackupVolumeBrowsePath.md +++ b/docset/winserver2012-ps/windowsserverbackup/Get-WBBackupVolumeBrowsePath.md @@ -1,7 +1,7 @@ --- external help file: WSBackup_Cmdlets.xml Module Name: WindowsServerBackup -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbbackupvolumebrowsepath?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbbackupvolumebrowsepath?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/windowsserverbackup/Get-WBBareMetalRecovery.md b/docset/winserver2012-ps/windowsserverbackup/Get-WBBareMetalRecovery.md index bf80e24a70..047fc50020 100644 --- a/docset/winserver2012-ps/windowsserverbackup/Get-WBBareMetalRecovery.md +++ b/docset/winserver2012-ps/windowsserverbackup/Get-WBBareMetalRecovery.md @@ -1,7 +1,7 @@ --- external help file: WSBackup_Cmdlets.xml Module Name: WindowsServerBackup -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbbaremetalrecovery?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbbaremetalrecovery?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/windowsserverbackup/Get-WBDisk.md b/docset/winserver2012-ps/windowsserverbackup/Get-WBDisk.md index 155ddcc8e3..23146d5ed1 100644 --- a/docset/winserver2012-ps/windowsserverbackup/Get-WBDisk.md +++ b/docset/winserver2012-ps/windowsserverbackup/Get-WBDisk.md @@ -1,7 +1,7 @@ --- external help file: WSBackup_Cmdlets.xml Module Name: WindowsServerBackup -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbdisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbdisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/windowsserverbackup/Get-WBFileSpec.md b/docset/winserver2012-ps/windowsserverbackup/Get-WBFileSpec.md index df29730908..8035a7ca2f 100644 --- a/docset/winserver2012-ps/windowsserverbackup/Get-WBFileSpec.md +++ b/docset/winserver2012-ps/windowsserverbackup/Get-WBFileSpec.md @@ -1,7 +1,7 @@ --- external help file: WSBackup_Cmdlets.xml Module Name: WindowsServerBackup -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbfilespec?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbfilespec?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/windowsserverbackup/Get-WBJob.md b/docset/winserver2012-ps/windowsserverbackup/Get-WBJob.md index d1523d629d..7fffec4d7c 100644 --- a/docset/winserver2012-ps/windowsserverbackup/Get-WBJob.md +++ b/docset/winserver2012-ps/windowsserverbackup/Get-WBJob.md @@ -1,7 +1,7 @@ --- external help file: WSBackup_Cmdlets.xml Module Name: WindowsServerBackup -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbjob?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbjob?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/windowsserverbackup/Get-WBPerformanceConfiguration.md b/docset/winserver2012-ps/windowsserverbackup/Get-WBPerformanceConfiguration.md index 1a4536b43b..5b042ebb6d 100644 --- a/docset/winserver2012-ps/windowsserverbackup/Get-WBPerformanceConfiguration.md +++ b/docset/winserver2012-ps/windowsserverbackup/Get-WBPerformanceConfiguration.md @@ -1,7 +1,7 @@ --- external help file: WSBackup_Cmdlets.xml Module Name: WindowsServerBackup -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbperformanceconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbperformanceconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/windowsserverbackup/Get-WBPolicy.md b/docset/winserver2012-ps/windowsserverbackup/Get-WBPolicy.md index e65bb0a422..0bd331117e 100644 --- a/docset/winserver2012-ps/windowsserverbackup/Get-WBPolicy.md +++ b/docset/winserver2012-ps/windowsserverbackup/Get-WBPolicy.md @@ -1,7 +1,7 @@ --- external help file: WSBackup_Cmdlets.xml Module Name: WindowsServerBackup -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/windowsserverbackup/Get-WBSchedule.md b/docset/winserver2012-ps/windowsserverbackup/Get-WBSchedule.md index f4dc5c6eb5..782a5aa7e0 100644 --- a/docset/winserver2012-ps/windowsserverbackup/Get-WBSchedule.md +++ b/docset/winserver2012-ps/windowsserverbackup/Get-WBSchedule.md @@ -1,7 +1,7 @@ --- external help file: WSBackup_Cmdlets.xml Module Name: WindowsServerBackup -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbschedule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbschedule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/windowsserverbackup/Get-WBSummary.md b/docset/winserver2012-ps/windowsserverbackup/Get-WBSummary.md index 93b08d12f5..4a009c45f1 100644 --- a/docset/winserver2012-ps/windowsserverbackup/Get-WBSummary.md +++ b/docset/winserver2012-ps/windowsserverbackup/Get-WBSummary.md @@ -1,7 +1,7 @@ --- external help file: WSBackup_Cmdlets.xml Module Name: WindowsServerBackup -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbsummary?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbsummary?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/windowsserverbackup/Get-WBSystemState.md b/docset/winserver2012-ps/windowsserverbackup/Get-WBSystemState.md index 34c8caeea1..afc1136ed7 100644 --- a/docset/winserver2012-ps/windowsserverbackup/Get-WBSystemState.md +++ b/docset/winserver2012-ps/windowsserverbackup/Get-WBSystemState.md @@ -1,7 +1,7 @@ --- external help file: WSBackup_Cmdlets.xml Module Name: WindowsServerBackup -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbsystemstate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbsystemstate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/windowsserverbackup/Get-WBVirtualMachine.md b/docset/winserver2012-ps/windowsserverbackup/Get-WBVirtualMachine.md index 9b19bc0ea1..bc8a294040 100644 --- a/docset/winserver2012-ps/windowsserverbackup/Get-WBVirtualMachine.md +++ b/docset/winserver2012-ps/windowsserverbackup/Get-WBVirtualMachine.md @@ -1,7 +1,7 @@ --- external help file: WSBackup_Cmdlets.xml Module Name: WindowsServerBackup -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbvirtualmachine?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbvirtualmachine?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/windowsserverbackup/Get-WBVolume.md b/docset/winserver2012-ps/windowsserverbackup/Get-WBVolume.md index bdab7bc6de..b22b1537b3 100644 --- a/docset/winserver2012-ps/windowsserverbackup/Get-WBVolume.md +++ b/docset/winserver2012-ps/windowsserverbackup/Get-WBVolume.md @@ -1,7 +1,7 @@ --- external help file: WSBackup_Cmdlets.xml Module Name: WindowsServerBackup -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbvolume?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbvolume?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/windowsserverbackup/Get-WBVssBackupOption.md b/docset/winserver2012-ps/windowsserverbackup/Get-WBVssBackupOption.md index 6cc95634e7..4708b21781 100644 --- a/docset/winserver2012-ps/windowsserverbackup/Get-WBVssBackupOption.md +++ b/docset/winserver2012-ps/windowsserverbackup/Get-WBVssBackupOption.md @@ -1,7 +1,7 @@ --- external help file: WSBackup_Cmdlets.xml Module Name: WindowsServerBackup -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbvssbackupoption?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbvssbackupoption?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/windowsserverbackup/New-WBBackupTarget.md b/docset/winserver2012-ps/windowsserverbackup/New-WBBackupTarget.md index 36429866c2..48337f63f6 100644 --- a/docset/winserver2012-ps/windowsserverbackup/New-WBBackupTarget.md +++ b/docset/winserver2012-ps/windowsserverbackup/New-WBBackupTarget.md @@ -1,7 +1,7 @@ --- external help file: WSBackup_Cmdlets.xml Module Name: WindowsServerBackup -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/new-wbbackuptarget?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/new-wbbackuptarget?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/windowsserverbackup/New-WBFileSpec.md b/docset/winserver2012-ps/windowsserverbackup/New-WBFileSpec.md index ff8400a884..d22654be23 100644 --- a/docset/winserver2012-ps/windowsserverbackup/New-WBFileSpec.md +++ b/docset/winserver2012-ps/windowsserverbackup/New-WBFileSpec.md @@ -1,7 +1,7 @@ --- external help file: WSBackup_Cmdlets.xml Module Name: WindowsServerBackup -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/new-wbfilespec?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/new-wbfilespec?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/windowsserverbackup/New-WBPolicy.md b/docset/winserver2012-ps/windowsserverbackup/New-WBPolicy.md index 81554c46d1..154ca66f18 100644 --- a/docset/winserver2012-ps/windowsserverbackup/New-WBPolicy.md +++ b/docset/winserver2012-ps/windowsserverbackup/New-WBPolicy.md @@ -1,7 +1,7 @@ --- external help file: WSBackup_Cmdlets.xml Module Name: WindowsServerBackup -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/new-wbpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/new-wbpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/windowsserverbackup/Remove-WBBackupSet.md b/docset/winserver2012-ps/windowsserverbackup/Remove-WBBackupSet.md index 5f1cc5c343..026faa53db 100644 --- a/docset/winserver2012-ps/windowsserverbackup/Remove-WBBackupSet.md +++ b/docset/winserver2012-ps/windowsserverbackup/Remove-WBBackupSet.md @@ -1,7 +1,7 @@ --- external help file: WSBackup_Cmdlets.xml Module Name: WindowsServerBackup -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/remove-wbbackupset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/remove-wbbackupset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/windowsserverbackup/Remove-WBBackupTarget.md b/docset/winserver2012-ps/windowsserverbackup/Remove-WBBackupTarget.md index 917807afc8..a80a2c943d 100644 --- a/docset/winserver2012-ps/windowsserverbackup/Remove-WBBackupTarget.md +++ b/docset/winserver2012-ps/windowsserverbackup/Remove-WBBackupTarget.md @@ -1,7 +1,7 @@ --- external help file: WSBackup_Cmdlets.xml Module Name: WindowsServerBackup -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/remove-wbbackuptarget?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/remove-wbbackuptarget?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/windowsserverbackup/Remove-WBBareMetalRecovery.md b/docset/winserver2012-ps/windowsserverbackup/Remove-WBBareMetalRecovery.md index 1fc32bfaa8..e35b4dbaad 100644 --- a/docset/winserver2012-ps/windowsserverbackup/Remove-WBBareMetalRecovery.md +++ b/docset/winserver2012-ps/windowsserverbackup/Remove-WBBareMetalRecovery.md @@ -1,7 +1,7 @@ --- external help file: WSBackup_Cmdlets.xml Module Name: WindowsServerBackup -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/remove-wbbaremetalrecovery?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/remove-wbbaremetalrecovery?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/windowsserverbackup/Remove-WBCatalog.md b/docset/winserver2012-ps/windowsserverbackup/Remove-WBCatalog.md index b1253919fe..14d7e0a98e 100644 --- a/docset/winserver2012-ps/windowsserverbackup/Remove-WBCatalog.md +++ b/docset/winserver2012-ps/windowsserverbackup/Remove-WBCatalog.md @@ -1,7 +1,7 @@ --- external help file: WSBackup_Cmdlets.xml Module Name: WindowsServerBackup -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/remove-wbcatalog?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/remove-wbcatalog?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/windowsserverbackup/Remove-WBFileSpec.md b/docset/winserver2012-ps/windowsserverbackup/Remove-WBFileSpec.md index b26a8f335b..c9f1939bad 100644 --- a/docset/winserver2012-ps/windowsserverbackup/Remove-WBFileSpec.md +++ b/docset/winserver2012-ps/windowsserverbackup/Remove-WBFileSpec.md @@ -1,7 +1,7 @@ --- external help file: WSBackup_Cmdlets.xml Module Name: WindowsServerBackup -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/remove-wbfilespec?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/remove-wbfilespec?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/windowsserverbackup/Remove-WBPolicy.md b/docset/winserver2012-ps/windowsserverbackup/Remove-WBPolicy.md index 5aed1f2e9e..0e667a68b6 100644 --- a/docset/winserver2012-ps/windowsserverbackup/Remove-WBPolicy.md +++ b/docset/winserver2012-ps/windowsserverbackup/Remove-WBPolicy.md @@ -1,7 +1,7 @@ --- external help file: WSBackup_Cmdlets.xml Module Name: WindowsServerBackup -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/remove-wbpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/remove-wbpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/windowsserverbackup/Remove-WBSystemState.md b/docset/winserver2012-ps/windowsserverbackup/Remove-WBSystemState.md index 38f6fd5494..5afb4cbd5b 100644 --- a/docset/winserver2012-ps/windowsserverbackup/Remove-WBSystemState.md +++ b/docset/winserver2012-ps/windowsserverbackup/Remove-WBSystemState.md @@ -1,7 +1,7 @@ --- external help file: WSBackup_Cmdlets.xml Module Name: WindowsServerBackup -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/remove-wbsystemstate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/remove-wbsystemstate?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/windowsserverbackup/Remove-WBVirtualMachine.md b/docset/winserver2012-ps/windowsserverbackup/Remove-WBVirtualMachine.md index 5b8f526fe6..112aae6ff5 100644 --- a/docset/winserver2012-ps/windowsserverbackup/Remove-WBVirtualMachine.md +++ b/docset/winserver2012-ps/windowsserverbackup/Remove-WBVirtualMachine.md @@ -1,7 +1,7 @@ --- external help file: WSBackup_Cmdlets.xml Module Name: WindowsServerBackup -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/remove-wbvirtualmachine?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/remove-wbvirtualmachine?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/windowsserverbackup/Remove-WBVolume.md b/docset/winserver2012-ps/windowsserverbackup/Remove-WBVolume.md index 6347949470..4350e0bc89 100644 --- a/docset/winserver2012-ps/windowsserverbackup/Remove-WBVolume.md +++ b/docset/winserver2012-ps/windowsserverbackup/Remove-WBVolume.md @@ -1,7 +1,7 @@ --- external help file: WSBackup_Cmdlets.xml Module Name: WindowsServerBackup -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/remove-wbvolume?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/remove-wbvolume?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/windowsserverbackup/Restore-WBCatalog.md b/docset/winserver2012-ps/windowsserverbackup/Restore-WBCatalog.md index f8fdb273e5..ee2db44ecd 100644 --- a/docset/winserver2012-ps/windowsserverbackup/Restore-WBCatalog.md +++ b/docset/winserver2012-ps/windowsserverbackup/Restore-WBCatalog.md @@ -1,7 +1,7 @@ --- external help file: WSBackup_Cmdlets.xml Module Name: WindowsServerBackup -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/restore-wbcatalog?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/restore-wbcatalog?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/windowsserverbackup/Resume-WBBackup.md b/docset/winserver2012-ps/windowsserverbackup/Resume-WBBackup.md index 6151de6ae5..cf1ba17c5b 100644 --- a/docset/winserver2012-ps/windowsserverbackup/Resume-WBBackup.md +++ b/docset/winserver2012-ps/windowsserverbackup/Resume-WBBackup.md @@ -1,7 +1,7 @@ --- external help file: WSBackup_Cmdlets.xml Module Name: WindowsServerBackup -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/resume-wbbackup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/resume-wbbackup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/windowsserverbackup/Resume-WBVolumeRecovery.md b/docset/winserver2012-ps/windowsserverbackup/Resume-WBVolumeRecovery.md index 175e5b778e..b2130d1543 100644 --- a/docset/winserver2012-ps/windowsserverbackup/Resume-WBVolumeRecovery.md +++ b/docset/winserver2012-ps/windowsserverbackup/Resume-WBVolumeRecovery.md @@ -1,7 +1,7 @@ --- external help file: WSBackup_Cmdlets.xml Module Name: WindowsServerBackup -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/resume-wbvolumerecovery?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/resume-wbvolumerecovery?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/windowsserverbackup/Set-WBPerformanceConfiguration.md b/docset/winserver2012-ps/windowsserverbackup/Set-WBPerformanceConfiguration.md index 288eb4b7c1..9e960bb3fe 100644 --- a/docset/winserver2012-ps/windowsserverbackup/Set-WBPerformanceConfiguration.md +++ b/docset/winserver2012-ps/windowsserverbackup/Set-WBPerformanceConfiguration.md @@ -1,7 +1,7 @@ --- external help file: WSBackup_Cmdlets.xml Module Name: WindowsServerBackup -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/set-wbperformanceconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/set-wbperformanceconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/windowsserverbackup/Set-WBPolicy.md b/docset/winserver2012-ps/windowsserverbackup/Set-WBPolicy.md index 3a90d43973..7050fa154b 100644 --- a/docset/winserver2012-ps/windowsserverbackup/Set-WBPolicy.md +++ b/docset/winserver2012-ps/windowsserverbackup/Set-WBPolicy.md @@ -1,7 +1,7 @@ --- external help file: WSBackup_Cmdlets.xml Module Name: WindowsServerBackup -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/set-wbpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/set-wbpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/windowsserverbackup/Set-WBSchedule.md b/docset/winserver2012-ps/windowsserverbackup/Set-WBSchedule.md index c0f8dfc89f..bc4e05f852 100644 --- a/docset/winserver2012-ps/windowsserverbackup/Set-WBSchedule.md +++ b/docset/winserver2012-ps/windowsserverbackup/Set-WBSchedule.md @@ -1,7 +1,7 @@ --- external help file: WSBackup_Cmdlets.xml Module Name: WindowsServerBackup -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/set-wbschedule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/set-wbschedule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/windowsserverbackup/Set-WBVssBackupOption.md b/docset/winserver2012-ps/windowsserverbackup/Set-WBVssBackupOption.md index 6245f3a47a..428666a7fb 100644 --- a/docset/winserver2012-ps/windowsserverbackup/Set-WBVssBackupOption.md +++ b/docset/winserver2012-ps/windowsserverbackup/Set-WBVssBackupOption.md @@ -1,7 +1,7 @@ --- external help file: WSBackup_Cmdlets.xml Module Name: WindowsServerBackup -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/set-wbvssbackupoption?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/set-wbvssbackupoption?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/windowsserverbackup/Start-WBApplicationRecovery.md b/docset/winserver2012-ps/windowsserverbackup/Start-WBApplicationRecovery.md index a8a459fa8b..50bd0d2f15 100644 --- a/docset/winserver2012-ps/windowsserverbackup/Start-WBApplicationRecovery.md +++ b/docset/winserver2012-ps/windowsserverbackup/Start-WBApplicationRecovery.md @@ -1,7 +1,7 @@ --- external help file: WSBackup_Cmdlets.xml Module Name: WindowsServerBackup -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/start-wbapplicationrecovery?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/start-wbapplicationrecovery?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/windowsserverbackup/Start-WBBackup.md b/docset/winserver2012-ps/windowsserverbackup/Start-WBBackup.md index 3ec38ec036..9c52d49ea3 100644 --- a/docset/winserver2012-ps/windowsserverbackup/Start-WBBackup.md +++ b/docset/winserver2012-ps/windowsserverbackup/Start-WBBackup.md @@ -1,7 +1,7 @@ --- external help file: WSBackup_Cmdlets.xml Module Name: WindowsServerBackup -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/start-wbbackup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/start-wbbackup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/windowsserverbackup/Start-WBFileRecovery.md b/docset/winserver2012-ps/windowsserverbackup/Start-WBFileRecovery.md index f2a576cdfa..1c13abad73 100644 --- a/docset/winserver2012-ps/windowsserverbackup/Start-WBFileRecovery.md +++ b/docset/winserver2012-ps/windowsserverbackup/Start-WBFileRecovery.md @@ -1,7 +1,7 @@ --- external help file: WSBackup_Cmdlets.xml Module Name: WindowsServerBackup -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/start-wbfilerecovery?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/start-wbfilerecovery?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/windowsserverbackup/Start-WBHyperVRecovery.md b/docset/winserver2012-ps/windowsserverbackup/Start-WBHyperVRecovery.md index 1979b52134..18eec02b89 100644 --- a/docset/winserver2012-ps/windowsserverbackup/Start-WBHyperVRecovery.md +++ b/docset/winserver2012-ps/windowsserverbackup/Start-WBHyperVRecovery.md @@ -1,7 +1,7 @@ --- external help file: WSBackup_Cmdlets.xml Module Name: WindowsServerBackup -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/start-wbhypervrecovery?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/start-wbhypervrecovery?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/windowsserverbackup/Start-WBSystemStateRecovery.md b/docset/winserver2012-ps/windowsserverbackup/Start-WBSystemStateRecovery.md index 86dcd04d7f..ab847539e2 100644 --- a/docset/winserver2012-ps/windowsserverbackup/Start-WBSystemStateRecovery.md +++ b/docset/winserver2012-ps/windowsserverbackup/Start-WBSystemStateRecovery.md @@ -1,7 +1,7 @@ --- external help file: WSBackup_Cmdlets.xml Module Name: WindowsServerBackup -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/start-wbsystemstaterecovery?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/start-wbsystemstaterecovery?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/windowsserverbackup/Start-WBVolumeRecovery.md b/docset/winserver2012-ps/windowsserverbackup/Start-WBVolumeRecovery.md index 1368ff4c5e..8984682135 100644 --- a/docset/winserver2012-ps/windowsserverbackup/Start-WBVolumeRecovery.md +++ b/docset/winserver2012-ps/windowsserverbackup/Start-WBVolumeRecovery.md @@ -1,7 +1,7 @@ --- external help file: WSBackup_Cmdlets.xml Module Name: WindowsServerBackup -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/start-wbvolumerecovery?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/start-wbvolumerecovery?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/windowsserverbackup/Stop-WBJob.md b/docset/winserver2012-ps/windowsserverbackup/Stop-WBJob.md index ab3a1323fc..8d2bb54edd 100644 --- a/docset/winserver2012-ps/windowsserverbackup/Stop-WBJob.md +++ b/docset/winserver2012-ps/windowsserverbackup/Stop-WBJob.md @@ -1,7 +1,7 @@ --- external help file: WSBackup_Cmdlets.xml Module Name: WindowsServerBackup -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/stop-wbjob?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/stop-wbjob?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Add-WssBackupConfiguration.md b/docset/winserver2012-ps/wsscmdlets/Add-WssBackupConfiguration.md index 52c4081cef..dd13a31411 100644 --- a/docset/winserver2012-ps/wsscmdlets/Add-WssBackupConfiguration.md +++ b/docset/winserver2012-ps/wsscmdlets/Add-WssBackupConfiguration.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/add-wssbackupconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/add-wssbackupconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Add-WssBackupSchedule.md b/docset/winserver2012-ps/wsscmdlets/Add-WssBackupSchedule.md index e08212b893..5b1b5ddd51 100644 --- a/docset/winserver2012-ps/wsscmdlets/Add-WssBackupSchedule.md +++ b/docset/winserver2012-ps/wsscmdlets/Add-WssBackupSchedule.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/add-wssbackupschedule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/add-wssbackupschedule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Add-WssBackupSystemRecovery.md b/docset/winserver2012-ps/wsscmdlets/Add-WssBackupSystemRecovery.md index c9a90bfe0f..994dff158e 100644 --- a/docset/winserver2012-ps/wsscmdlets/Add-WssBackupSystemRecovery.md +++ b/docset/winserver2012-ps/wsscmdlets/Add-WssBackupSystemRecovery.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/add-wssbackupsystemrecovery?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/add-wssbackupsystemrecovery?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Add-WssBackupTarget.md b/docset/winserver2012-ps/wsscmdlets/Add-WssBackupTarget.md index 8e86f74d4b..010a5ac950 100644 --- a/docset/winserver2012-ps/wsscmdlets/Add-WssBackupTarget.md +++ b/docset/winserver2012-ps/wsscmdlets/Add-WssBackupTarget.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/add-wssbackuptarget?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/add-wssbackuptarget?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Add-WssBackupVolume.md b/docset/winserver2012-ps/wsscmdlets/Add-WssBackupVolume.md index edddbbc60e..59fcfcf5e7 100644 --- a/docset/winserver2012-ps/wsscmdlets/Add-WssBackupVolume.md +++ b/docset/winserver2012-ps/wsscmdlets/Add-WssBackupVolume.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/add-wssbackupvolume?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/add-wssbackupvolume?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Add-WssComputerAccess.md b/docset/winserver2012-ps/wsscmdlets/Add-WssComputerAccess.md index 97f6b8e33f..242a013e2a 100644 --- a/docset/winserver2012-ps/wsscmdlets/Add-WssComputerAccess.md +++ b/docset/winserver2012-ps/wsscmdlets/Add-WssComputerAccess.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/add-wsscomputeraccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/add-wsscomputeraccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Add-WssDisksToSpacesPool.md b/docset/winserver2012-ps/wsscmdlets/Add-WssDisksToSpacesPool.md index 3b7634d32a..99f81b464f 100644 --- a/docset/winserver2012-ps/wsscmdlets/Add-WssDisksToSpacesPool.md +++ b/docset/winserver2012-ps/wsscmdlets/Add-WssDisksToSpacesPool.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/add-wssdiskstospacespool?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/add-wssdiskstospacespool?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Add-WssFolder.md b/docset/winserver2012-ps/wsscmdlets/Add-WssFolder.md index e249eb9ed1..db50bcea4f 100644 --- a/docset/winserver2012-ps/wsscmdlets/Add-WssFolder.md +++ b/docset/winserver2012-ps/wsscmdlets/Add-WssFolder.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/add-wssfolder?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/add-wssfolder?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Add-WssLocalMachineCert.md b/docset/winserver2012-ps/wsscmdlets/Add-WssLocalMachineCert.md index 1864f2dbd6..ceacde1358 100644 --- a/docset/winserver2012-ps/wsscmdlets/Add-WssLocalMachineCert.md +++ b/docset/winserver2012-ps/wsscmdlets/Add-WssLocalMachineCert.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/add-wsslocalmachinecert?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/add-wsslocalmachinecert?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Add-WssRemoteWebAccessLink.md b/docset/winserver2012-ps/wsscmdlets/Add-WssRemoteWebAccessLink.md index 15606ede0a..0d1c425064 100644 --- a/docset/winserver2012-ps/wsscmdlets/Add-WssRemoteWebAccessLink.md +++ b/docset/winserver2012-ps/wsscmdlets/Add-WssRemoteWebAccessLink.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/add-wssremotewebaccesslink?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/add-wssremotewebaccesslink?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Add-WssUser.md b/docset/winserver2012-ps/wsscmdlets/Add-WssUser.md index e5ebe8ebd4..bf7a49d0c5 100644 --- a/docset/winserver2012-ps/wsscmdlets/Add-WssUser.md +++ b/docset/winserver2012-ps/wsscmdlets/Add-WssUser.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/add-wssuser?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/add-wssuser?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Clear-WssAlert.md b/docset/winserver2012-ps/wsscmdlets/Clear-WssAlert.md index 2177d88c5b..2c17474ef0 100644 --- a/docset/winserver2012-ps/wsscmdlets/Clear-WssAlert.md +++ b/docset/winserver2012-ps/wsscmdlets/Clear-WssAlert.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/clear-wssalert?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/clear-wssalert?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Copy-WssClientRecoveryImage.md b/docset/winserver2012-ps/wsscmdlets/Copy-WssClientRecoveryImage.md index e27fcb8d32..34de8b3970 100644 --- a/docset/winserver2012-ps/wsscmdlets/Copy-WssClientRecoveryImage.md +++ b/docset/winserver2012-ps/wsscmdlets/Copy-WssClientRecoveryImage.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/copy-wssclientrecoveryimage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/copy-wssclientrecoveryimage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Disable-FolderRedirection.md b/docset/winserver2012-ps/wsscmdlets/Disable-FolderRedirection.md index 648449c57f..1730ba7053 100644 --- a/docset/winserver2012-ps/wsscmdlets/Disable-FolderRedirection.md +++ b/docset/winserver2012-ps/wsscmdlets/Disable-FolderRedirection.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/disable-folderredirection?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/disable-folderredirection?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Disable-SecurityPolicy.md b/docset/winserver2012-ps/wsscmdlets/Disable-SecurityPolicy.md index 0105297026..91022d12d8 100644 --- a/docset/winserver2012-ps/wsscmdlets/Disable-SecurityPolicy.md +++ b/docset/winserver2012-ps/wsscmdlets/Disable-SecurityPolicy.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/disable-securitypolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/disable-securitypolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Disable-WssAlert.md b/docset/winserver2012-ps/wsscmdlets/Disable-WssAlert.md index 8acb742cdd..8a7598924c 100644 --- a/docset/winserver2012-ps/wsscmdlets/Disable-WssAlert.md +++ b/docset/winserver2012-ps/wsscmdlets/Disable-WssAlert.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/disable-wssalert?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/disable-wssalert?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Disable-WssBackupPolicy.md b/docset/winserver2012-ps/wsscmdlets/Disable-WssBackupPolicy.md index b52d7eaa2d..b17b06b31d 100644 --- a/docset/winserver2012-ps/wsscmdlets/Disable-WssBackupPolicy.md +++ b/docset/winserver2012-ps/wsscmdlets/Disable-WssBackupPolicy.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/disable-wssbackuppolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/disable-wssbackuppolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Disable-WssClientBackup.md b/docset/winserver2012-ps/wsscmdlets/Disable-WssClientBackup.md index 3279807871..45795364fd 100644 --- a/docset/winserver2012-ps/wsscmdlets/Disable-WssClientBackup.md +++ b/docset/winserver2012-ps/wsscmdlets/Disable-WssClientBackup.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/disable-wssclientbackup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/disable-wssclientbackup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Disable-WssClientBackupVolume.md b/docset/winserver2012-ps/wsscmdlets/Disable-WssClientBackupVolume.md index ad4f19530a..21595f39fd 100644 --- a/docset/winserver2012-ps/wsscmdlets/Disable-WssClientBackupVolume.md +++ b/docset/winserver2012-ps/wsscmdlets/Disable-WssClientBackupVolume.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/disable-wssclientbackupvolume?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/disable-wssclientbackupvolume?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Disable-WssRemoteWebAccess.md b/docset/winserver2012-ps/wsscmdlets/Disable-WssRemoteWebAccess.md index 940445674c..9fbb8c5b21 100644 --- a/docset/winserver2012-ps/wsscmdlets/Disable-WssRemoteWebAccess.md +++ b/docset/winserver2012-ps/wsscmdlets/Disable-WssRemoteWebAccess.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/disable-wssremotewebaccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/disable-wssremotewebaccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Enable-FolderRedirection.md b/docset/winserver2012-ps/wsscmdlets/Enable-FolderRedirection.md index d3be199a1e..f87c890deb 100644 --- a/docset/winserver2012-ps/wsscmdlets/Enable-FolderRedirection.md +++ b/docset/winserver2012-ps/wsscmdlets/Enable-FolderRedirection.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/enable-folderredirection?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/enable-folderredirection?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Enable-SecurityPolicy.md b/docset/winserver2012-ps/wsscmdlets/Enable-SecurityPolicy.md index 51a71d7693..d3b956517f 100644 --- a/docset/winserver2012-ps/wsscmdlets/Enable-SecurityPolicy.md +++ b/docset/winserver2012-ps/wsscmdlets/Enable-SecurityPolicy.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/enable-securitypolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/enable-securitypolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Enable-WssAlert.md b/docset/winserver2012-ps/wsscmdlets/Enable-WssAlert.md index db91f63c23..37026de18b 100644 --- a/docset/winserver2012-ps/wsscmdlets/Enable-WssAlert.md +++ b/docset/winserver2012-ps/wsscmdlets/Enable-WssAlert.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/enable-wssalert?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/enable-wssalert?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Enable-WssClientBackup.md b/docset/winserver2012-ps/wsscmdlets/Enable-WssClientBackup.md index 991c93825c..d94d23d174 100644 --- a/docset/winserver2012-ps/wsscmdlets/Enable-WssClientBackup.md +++ b/docset/winserver2012-ps/wsscmdlets/Enable-WssClientBackup.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/enable-wssclientbackup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/enable-wssclientbackup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Enable-WssClientBackupVolume.md b/docset/winserver2012-ps/wsscmdlets/Enable-WssClientBackupVolume.md index b8895b2f02..3572d3572a 100644 --- a/docset/winserver2012-ps/wsscmdlets/Enable-WssClientBackupVolume.md +++ b/docset/winserver2012-ps/wsscmdlets/Enable-WssClientBackupVolume.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/enable-wssclientbackupvolume?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/enable-wssclientbackupvolume?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Enable-WssRemoteWebAccess.md b/docset/winserver2012-ps/wsscmdlets/Enable-WssRemoteWebAccess.md index baa814cb1d..251edeb16f 100644 --- a/docset/winserver2012-ps/wsscmdlets/Enable-WssRemoteWebAccess.md +++ b/docset/winserver2012-ps/wsscmdlets/Enable-WssRemoteWebAccess.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/enable-wssremotewebaccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/enable-wssremotewebaccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Exit-WssDomain.md b/docset/winserver2012-ps/wsscmdlets/Exit-WssDomain.md index 517eccc4ca..f53f744196 100644 --- a/docset/winserver2012-ps/wsscmdlets/Exit-WssDomain.md +++ b/docset/winserver2012-ps/wsscmdlets/Exit-WssDomain.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/exit-wssdomain?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/exit-wssdomain?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Get-WssAddIn.md b/docset/winserver2012-ps/wsscmdlets/Get-WssAddIn.md index 72c8a96a6d..9c295a8b63 100644 --- a/docset/winserver2012-ps/wsscmdlets/Get-WssAddIn.md +++ b/docset/winserver2012-ps/wsscmdlets/Get-WssAddIn.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssaddin?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssaddin?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Get-WssAlert.md b/docset/winserver2012-ps/wsscmdlets/Get-WssAlert.md index 50700d0bad..e185329ed6 100644 --- a/docset/winserver2012-ps/wsscmdlets/Get-WssAlert.md +++ b/docset/winserver2012-ps/wsscmdlets/Get-WssAlert.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssalert?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssalert?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Get-WssAlertEmailSetting.md b/docset/winserver2012-ps/wsscmdlets/Get-WssAlertEmailSetting.md index 93d56bf93c..859b07da3c 100644 --- a/docset/winserver2012-ps/wsscmdlets/Get-WssAlertEmailSetting.md +++ b/docset/winserver2012-ps/wsscmdlets/Get-WssAlertEmailSetting.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssalertemailsetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssalertemailsetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Get-WssBackupConfiguration.md b/docset/winserver2012-ps/wsscmdlets/Get-WssBackupConfiguration.md index 0f8c6db8dd..fb03dd5298 100644 --- a/docset/winserver2012-ps/wsscmdlets/Get-WssBackupConfiguration.md +++ b/docset/winserver2012-ps/wsscmdlets/Get-WssBackupConfiguration.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssbackupconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssbackupconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Get-WssBackupDisk.md b/docset/winserver2012-ps/wsscmdlets/Get-WssBackupDisk.md index 8f6bb43d06..aa47d1fe44 100644 --- a/docset/winserver2012-ps/wsscmdlets/Get-WssBackupDisk.md +++ b/docset/winserver2012-ps/wsscmdlets/Get-WssBackupDisk.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssbackupdisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssbackupdisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Get-WssBackupJob.md b/docset/winserver2012-ps/wsscmdlets/Get-WssBackupJob.md index 7065286f9a..f122e0ccd9 100644 --- a/docset/winserver2012-ps/wsscmdlets/Get-WssBackupJob.md +++ b/docset/winserver2012-ps/wsscmdlets/Get-WssBackupJob.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssbackupjob?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssbackupjob?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Get-WssBackupPolicy.md b/docset/winserver2012-ps/wsscmdlets/Get-WssBackupPolicy.md index b79a0d4676..cc60b43567 100644 --- a/docset/winserver2012-ps/wsscmdlets/Get-WssBackupPolicy.md +++ b/docset/winserver2012-ps/wsscmdlets/Get-WssBackupPolicy.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssbackuppolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssbackuppolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Get-WssBackupSchedule.md b/docset/winserver2012-ps/wsscmdlets/Get-WssBackupSchedule.md index 2aa554cfd0..bdbd643229 100644 --- a/docset/winserver2012-ps/wsscmdlets/Get-WssBackupSchedule.md +++ b/docset/winserver2012-ps/wsscmdlets/Get-WssBackupSchedule.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssbackupschedule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssbackupschedule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Get-WssBackupSet.md b/docset/winserver2012-ps/wsscmdlets/Get-WssBackupSet.md index 937d50144c..4830967d25 100644 --- a/docset/winserver2012-ps/wsscmdlets/Get-WssBackupSet.md +++ b/docset/winserver2012-ps/wsscmdlets/Get-WssBackupSet.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssbackupset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssbackupset?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Get-WssBackupSystemRecovery.md b/docset/winserver2012-ps/wsscmdlets/Get-WssBackupSystemRecovery.md index 1657ac8123..349cabd0c1 100644 --- a/docset/winserver2012-ps/wsscmdlets/Get-WssBackupSystemRecovery.md +++ b/docset/winserver2012-ps/wsscmdlets/Get-WssBackupSystemRecovery.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssbackupsystemrecovery?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssbackupsystemrecovery?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Get-WssBackupTarget.md b/docset/winserver2012-ps/wsscmdlets/Get-WssBackupTarget.md index 3c6d06dd72..b82c72c7f3 100644 --- a/docset/winserver2012-ps/wsscmdlets/Get-WssBackupTarget.md +++ b/docset/winserver2012-ps/wsscmdlets/Get-WssBackupTarget.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssbackuptarget?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssbackuptarget?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Get-WssBackupVolume.md b/docset/winserver2012-ps/wsscmdlets/Get-WssBackupVolume.md index ba7192d536..938f827d32 100644 --- a/docset/winserver2012-ps/wsscmdlets/Get-WssBackupVolume.md +++ b/docset/winserver2012-ps/wsscmdlets/Get-WssBackupVolume.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssbackupvolume?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssbackupvolume?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Get-WssBpaScanResult.md b/docset/winserver2012-ps/wsscmdlets/Get-WssBpaScanResult.md index 6c50f9323b..108847d638 100644 --- a/docset/winserver2012-ps/wsscmdlets/Get-WssBpaScanResult.md +++ b/docset/winserver2012-ps/wsscmdlets/Get-WssBpaScanResult.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssbpascanresult?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssbpascanresult?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Get-WssClientBackup.md b/docset/winserver2012-ps/wsscmdlets/Get-WssClientBackup.md index a5894968b0..910ad5f45f 100644 --- a/docset/winserver2012-ps/wsscmdlets/Get-WssClientBackup.md +++ b/docset/winserver2012-ps/wsscmdlets/Get-WssClientBackup.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssclientbackup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssclientbackup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Get-WssClientBackupClient.md b/docset/winserver2012-ps/wsscmdlets/Get-WssClientBackupClient.md index ac067a443f..9349b7e7e5 100644 --- a/docset/winserver2012-ps/wsscmdlets/Get-WssClientBackupClient.md +++ b/docset/winserver2012-ps/wsscmdlets/Get-WssClientBackupClient.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssclientbackupclient?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssclientbackupclient?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Get-WssClientBackupOperationStatus.md b/docset/winserver2012-ps/wsscmdlets/Get-WssClientBackupOperationStatus.md index 362ebd6c91..73d28aee6d 100644 --- a/docset/winserver2012-ps/wsscmdlets/Get-WssClientBackupOperationStatus.md +++ b/docset/winserver2012-ps/wsscmdlets/Get-WssClientBackupOperationStatus.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssclientbackupoperationstatus?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssclientbackupoperationstatus?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Get-WssClientBackupVolume.md b/docset/winserver2012-ps/wsscmdlets/Get-WssClientBackupVolume.md index 110e199a33..68173ada55 100644 --- a/docset/winserver2012-ps/wsscmdlets/Get-WssClientBackupVolume.md +++ b/docset/winserver2012-ps/wsscmdlets/Get-WssClientBackupVolume.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssclientbackupvolume?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssclientbackupvolume?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Get-WssClientBackupVolumeJob.md b/docset/winserver2012-ps/wsscmdlets/Get-WssClientBackupVolumeJob.md index 5242d59168..d2e8990f78 100644 --- a/docset/winserver2012-ps/wsscmdlets/Get-WssClientBackupVolumeJob.md +++ b/docset/winserver2012-ps/wsscmdlets/Get-WssClientBackupVolumeJob.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssclientbackupvolumejob?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssclientbackupvolumejob?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Get-WssComputer.md b/docset/winserver2012-ps/wsscmdlets/Get-WssComputer.md index 02e67f0c89..f38c50587f 100644 --- a/docset/winserver2012-ps/wsscmdlets/Get-WssComputer.md +++ b/docset/winserver2012-ps/wsscmdlets/Get-WssComputer.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wsscomputer?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wsscomputer?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Get-WssDisk.md b/docset/winserver2012-ps/wsscmdlets/Get-WssDisk.md index 876650e5f7..7748f0abba 100644 --- a/docset/winserver2012-ps/wsscmdlets/Get-WssDisk.md +++ b/docset/winserver2012-ps/wsscmdlets/Get-WssDisk.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssdisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssdisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Get-WssDomainNameConfiguration.md b/docset/winserver2012-ps/wsscmdlets/Get-WssDomainNameConfiguration.md index 8731910990..16ccb24a4b 100644 --- a/docset/winserver2012-ps/wsscmdlets/Get-WssDomainNameConfiguration.md +++ b/docset/winserver2012-ps/wsscmdlets/Get-WssDomainNameConfiguration.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssdomainnameconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssdomainnameconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Get-WssDrive.md b/docset/winserver2012-ps/wsscmdlets/Get-WssDrive.md index bf6b2f4369..fdd6e3ad14 100644 --- a/docset/winserver2012-ps/wsscmdlets/Get-WssDrive.md +++ b/docset/winserver2012-ps/wsscmdlets/Get-WssDrive.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssdrive?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssdrive?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Get-WssDriveInUse.md b/docset/winserver2012-ps/wsscmdlets/Get-WssDriveInUse.md index 5d002e4ee9..2fb3ce92cc 100644 --- a/docset/winserver2012-ps/wsscmdlets/Get-WssDriveInUse.md +++ b/docset/winserver2012-ps/wsscmdlets/Get-WssDriveInUse.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssdriveinuse?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssdriveinuse?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Get-WssFileHistoryConfiguration.md b/docset/winserver2012-ps/wsscmdlets/Get-WssFileHistoryConfiguration.md index 978b7ba764..9e83c3f40a 100644 --- a/docset/winserver2012-ps/wsscmdlets/Get-WssFileHistoryConfiguration.md +++ b/docset/winserver2012-ps/wsscmdlets/Get-WssFileHistoryConfiguration.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssfilehistoryconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssfilehistoryconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Get-WssFileHistoryManagementStatus.md b/docset/winserver2012-ps/wsscmdlets/Get-WssFileHistoryManagementStatus.md index 9d1db15df8..a465375bda 100644 --- a/docset/winserver2012-ps/wsscmdlets/Get-WssFileHistoryManagementStatus.md +++ b/docset/winserver2012-ps/wsscmdlets/Get-WssFileHistoryManagementStatus.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssfilehistorymanagementstatus?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssfilehistorymanagementstatus?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Get-WssFolder.md b/docset/winserver2012-ps/wsscmdlets/Get-WssFolder.md index 0d997a09e2..44f9e6d914 100644 --- a/docset/winserver2012-ps/wsscmdlets/Get-WssFolder.md +++ b/docset/winserver2012-ps/wsscmdlets/Get-WssFolder.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssfolder?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssfolder?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Get-WssGlobalClientBackupPolicy.md b/docset/winserver2012-ps/wsscmdlets/Get-WssGlobalClientBackupPolicy.md index 2e125664da..1377499735 100644 --- a/docset/winserver2012-ps/wsscmdlets/Get-WssGlobalClientBackupPolicy.md +++ b/docset/winserver2012-ps/wsscmdlets/Get-WssGlobalClientBackupPolicy.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssglobalclientbackuppolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssglobalclientbackuppolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Get-WssMediaLibraryName.md b/docset/winserver2012-ps/wsscmdlets/Get-WssMediaLibraryName.md index 7330a07ce9..56c4fea865 100644 --- a/docset/winserver2012-ps/wsscmdlets/Get-WssMediaLibraryName.md +++ b/docset/winserver2012-ps/wsscmdlets/Get-WssMediaLibraryName.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssmedialibraryname?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssmedialibraryname?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Get-WssMediaServerEnabled.md b/docset/winserver2012-ps/wsscmdlets/Get-WssMediaServerEnabled.md index 0957098a73..2d66185791 100644 --- a/docset/winserver2012-ps/wsscmdlets/Get-WssMediaServerEnabled.md +++ b/docset/winserver2012-ps/wsscmdlets/Get-WssMediaServerEnabled.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssmediaserverenabled?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssmediaserverenabled?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Get-WssMediaSharedFolder.md b/docset/winserver2012-ps/wsscmdlets/Get-WssMediaSharedFolder.md index d211de00e7..c972d0950e 100644 --- a/docset/winserver2012-ps/wsscmdlets/Get-WssMediaSharedFolder.md +++ b/docset/winserver2012-ps/wsscmdlets/Get-WssMediaSharedFolder.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssmediasharedfolder?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssmediasharedfolder?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Get-WssMountVhd.md b/docset/winserver2012-ps/wsscmdlets/Get-WssMountVhd.md index 4feb8f80ab..6f7272927b 100644 --- a/docset/winserver2012-ps/wsscmdlets/Get-WssMountVhd.md +++ b/docset/winserver2012-ps/wsscmdlets/Get-WssMountVhd.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssmountvhd?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssmountvhd?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Get-WssPasswordPolicy.md b/docset/winserver2012-ps/wsscmdlets/Get-WssPasswordPolicy.md index cd572b614a..6917a9b337 100644 --- a/docset/winserver2012-ps/wsscmdlets/Get-WssPasswordPolicy.md +++ b/docset/winserver2012-ps/wsscmdlets/Get-WssPasswordPolicy.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wsspasswordpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wsspasswordpolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Get-WssRecoveryItem.md b/docset/winserver2012-ps/wsscmdlets/Get-WssRecoveryItem.md index 2218dfd3b8..0d99933c14 100644 --- a/docset/winserver2012-ps/wsscmdlets/Get-WssRecoveryItem.md +++ b/docset/winserver2012-ps/wsscmdlets/Get-WssRecoveryItem.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssrecoveryitem?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssrecoveryitem?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Get-WssRemoteConnection.md b/docset/winserver2012-ps/wsscmdlets/Get-WssRemoteConnection.md index a08d63af73..5cc020dc9b 100644 --- a/docset/winserver2012-ps/wsscmdlets/Get-WssRemoteConnection.md +++ b/docset/winserver2012-ps/wsscmdlets/Get-WssRemoteConnection.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssremoteconnection?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssremoteconnection?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Get-WssRemoteWebAccessBackgroundImage.md b/docset/winserver2012-ps/wsscmdlets/Get-WssRemoteWebAccessBackgroundImage.md index 1ebc292614..1571d389d1 100644 --- a/docset/winserver2012-ps/wsscmdlets/Get-WssRemoteWebAccessBackgroundImage.md +++ b/docset/winserver2012-ps/wsscmdlets/Get-WssRemoteWebAccessBackgroundImage.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssremotewebaccessbackgroundimage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssremotewebaccessbackgroundimage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Get-WssRemoteWebAccessLink.md b/docset/winserver2012-ps/wsscmdlets/Get-WssRemoteWebAccessLink.md index f511bd24d5..42d1c76064 100644 --- a/docset/winserver2012-ps/wsscmdlets/Get-WssRemoteWebAccessLink.md +++ b/docset/winserver2012-ps/wsscmdlets/Get-WssRemoteWebAccessLink.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssremotewebaccesslink?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssremotewebaccesslink?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Get-WssRemoteWebAccessLogo.md b/docset/winserver2012-ps/wsscmdlets/Get-WssRemoteWebAccessLogo.md index 160bfe041a..6298d9aa21 100644 --- a/docset/winserver2012-ps/wsscmdlets/Get-WssRemoteWebAccessLogo.md +++ b/docset/winserver2012-ps/wsscmdlets/Get-WssRemoteWebAccessLogo.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssremotewebaccesslogo?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssremotewebaccesslogo?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Get-WssRemoteWebAccessStatus.md b/docset/winserver2012-ps/wsscmdlets/Get-WssRemoteWebAccessStatus.md index b9902eebd6..a410cd3a3b 100644 --- a/docset/winserver2012-ps/wsscmdlets/Get-WssRemoteWebAccessStatus.md +++ b/docset/winserver2012-ps/wsscmdlets/Get-WssRemoteWebAccessStatus.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssremotewebaccessstatus?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssremotewebaccessstatus?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Get-WssRemoteWebAccessTitle.md b/docset/winserver2012-ps/wsscmdlets/Get-WssRemoteWebAccessTitle.md index 2957002a28..a2951f3062 100644 --- a/docset/winserver2012-ps/wsscmdlets/Get-WssRemoteWebAccessTitle.md +++ b/docset/winserver2012-ps/wsscmdlets/Get-WssRemoteWebAccessTitle.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssremotewebaccesstitle?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssremotewebaccesstitle?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Get-WssRouterInformation.md b/docset/winserver2012-ps/wsscmdlets/Get-WssRouterInformation.md index a1e5e1bd04..56006e968f 100644 --- a/docset/winserver2012-ps/wsscmdlets/Get-WssRouterInformation.md +++ b/docset/winserver2012-ps/wsscmdlets/Get-WssRouterInformation.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssrouterinformation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssrouterinformation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Get-WssServerConnectionOption.md b/docset/winserver2012-ps/wsscmdlets/Get-WssServerConnectionOption.md index b6507e2136..40c71900c0 100644 --- a/docset/winserver2012-ps/wsscmdlets/Get-WssServerConnectionOption.md +++ b/docset/winserver2012-ps/wsscmdlets/Get-WssServerConnectionOption.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssserverconnectionoption?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssserverconnectionoption?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Get-WssSpacesPool.md b/docset/winserver2012-ps/wsscmdlets/Get-WssSpacesPool.md index 3bf8631649..a1c899f166 100644 --- a/docset/winserver2012-ps/wsscmdlets/Get-WssSpacesPool.md +++ b/docset/winserver2012-ps/wsscmdlets/Get-WssSpacesPool.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssspacespool?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssspacespool?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Get-WssUser.md b/docset/winserver2012-ps/wsscmdlets/Get-WssUser.md index 1293bc0909..777e06eaa8 100644 --- a/docset/winserver2012-ps/wsscmdlets/Get-WssUser.md +++ b/docset/winserver2012-ps/wsscmdlets/Get-WssUser.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssuser?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssuser?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Get-WssWinSatCpuScore.md b/docset/winserver2012-ps/wsscmdlets/Get-WssWinSatCpuScore.md index 1281842df8..6961a236d3 100644 --- a/docset/winserver2012-ps/wsscmdlets/Get-WssWinSatCpuScore.md +++ b/docset/winserver2012-ps/wsscmdlets/Get-WssWinSatCpuScore.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wsswinsatcpuscore?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wsswinsatcpuscore?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Get-WssWinSatCpuScoreUserConfigurable.md b/docset/winserver2012-ps/wsscmdlets/Get-WssWinSatCpuScoreUserConfigurable.md index 93875be4ac..28c9dac0ea 100644 --- a/docset/winserver2012-ps/wsscmdlets/Get-WssWinSatCpuScoreUserConfigurable.md +++ b/docset/winserver2012-ps/wsscmdlets/Get-WssWinSatCpuScoreUserConfigurable.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wsswinsatcpuscoreuserconfigurable?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wsswinsatcpuscoreuserconfigurable?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Import-WssUser.md b/docset/winserver2012-ps/wsscmdlets/Import-WssUser.md index 9fd1f42c1f..5ae0171f96 100644 --- a/docset/winserver2012-ps/wsscmdlets/Import-WssUser.md +++ b/docset/winserver2012-ps/wsscmdlets/Import-WssUser.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/import-wssuser?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/import-wssuser?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Initialize-WssBackupDisk.md b/docset/winserver2012-ps/wsscmdlets/Initialize-WssBackupDisk.md index 1f6e6aefc4..6f3828245b 100644 --- a/docset/winserver2012-ps/wsscmdlets/Initialize-WssBackupDisk.md +++ b/docset/winserver2012-ps/wsscmdlets/Initialize-WssBackupDisk.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/initialize-wssbackupdisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/initialize-wssbackupdisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Initialize-WssDisk.md b/docset/winserver2012-ps/wsscmdlets/Initialize-WssDisk.md index 76976b4cf1..b61c0f85a4 100644 --- a/docset/winserver2012-ps/wsscmdlets/Initialize-WssDisk.md +++ b/docset/winserver2012-ps/wsscmdlets/Initialize-WssDisk.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/initialize-wssdisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/initialize-wssdisk?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Install-WssAddIn.md b/docset/winserver2012-ps/wsscmdlets/Install-WssAddIn.md index f4a59cd139..6b0274945e 100644 --- a/docset/winserver2012-ps/wsscmdlets/Install-WssAddIn.md +++ b/docset/winserver2012-ps/wsscmdlets/Install-WssAddIn.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/install-wssaddin?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/install-wssaddin?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Install-WssVpnServer.md b/docset/winserver2012-ps/wsscmdlets/Install-WssVpnServer.md index add614a0de..5a3d818c55 100644 --- a/docset/winserver2012-ps/wsscmdlets/Install-WssVpnServer.md +++ b/docset/winserver2012-ps/wsscmdlets/Install-WssVpnServer.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/install-wssvpnserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/install-wssvpnserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Invoke-WssBpaScan.md b/docset/winserver2012-ps/wsscmdlets/Invoke-WssBpaScan.md index dcc14dfc78..9326d43b3d 100644 --- a/docset/winserver2012-ps/wsscmdlets/Invoke-WssBpaScan.md +++ b/docset/winserver2012-ps/wsscmdlets/Invoke-WssBpaScan.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/invoke-wssbpascan?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/invoke-wssbpascan?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Join-WssDomain.md b/docset/winserver2012-ps/wsscmdlets/Join-WssDomain.md index 98544b1637..c9040f1154 100644 --- a/docset/winserver2012-ps/wsscmdlets/Join-WssDomain.md +++ b/docset/winserver2012-ps/wsscmdlets/Join-WssDomain.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/join-wssdomain?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/join-wssdomain?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Measure-WssFolder.md b/docset/winserver2012-ps/wsscmdlets/Measure-WssFolder.md index d40371f30a..ce64d21db3 100644 --- a/docset/winserver2012-ps/wsscmdlets/Measure-WssFolder.md +++ b/docset/winserver2012-ps/wsscmdlets/Measure-WssFolder.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/measure-wssfolder?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/measure-wssfolder?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Move-WssFolder.md b/docset/winserver2012-ps/wsscmdlets/Move-WssFolder.md index 1d9e654b22..3fb2e8a419 100644 --- a/docset/winserver2012-ps/wsscmdlets/Move-WssFolder.md +++ b/docset/winserver2012-ps/wsscmdlets/Move-WssFolder.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/move-wssfolder?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/move-wssfolder?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/New-WssBackupConfiguration.md b/docset/winserver2012-ps/wsscmdlets/New-WssBackupConfiguration.md index a59e8c63f6..c2234f2be9 100644 --- a/docset/winserver2012-ps/wsscmdlets/New-WssBackupConfiguration.md +++ b/docset/winserver2012-ps/wsscmdlets/New-WssBackupConfiguration.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/new-wssbackupconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/new-wssbackupconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/New-WssBackupTarget.md b/docset/winserver2012-ps/wsscmdlets/New-WssBackupTarget.md index 5da8da88e9..bbcbc273b5 100644 --- a/docset/winserver2012-ps/wsscmdlets/New-WssBackupTarget.md +++ b/docset/winserver2012-ps/wsscmdlets/New-WssBackupTarget.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/new-wssbackuptarget?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/new-wssbackuptarget?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/New-WssRecoveryOption.md b/docset/winserver2012-ps/wsscmdlets/New-WssRecoveryOption.md index a688badbda..bf5e091d7d 100644 --- a/docset/winserver2012-ps/wsscmdlets/New-WssRecoveryOption.md +++ b/docset/winserver2012-ps/wsscmdlets/New-WssRecoveryOption.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/new-wssrecoveryoption?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/new-wssrecoveryoption?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Remove-WssBackupConfiguration.md b/docset/winserver2012-ps/wsscmdlets/Remove-WssBackupConfiguration.md index 2e075f0c1a..f836ca3481 100644 --- a/docset/winserver2012-ps/wsscmdlets/Remove-WssBackupConfiguration.md +++ b/docset/winserver2012-ps/wsscmdlets/Remove-WssBackupConfiguration.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/remove-wssbackupconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/remove-wssbackupconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Remove-WssBackupSchedule.md b/docset/winserver2012-ps/wsscmdlets/Remove-WssBackupSchedule.md index d20c6211af..e9319cfc16 100644 --- a/docset/winserver2012-ps/wsscmdlets/Remove-WssBackupSchedule.md +++ b/docset/winserver2012-ps/wsscmdlets/Remove-WssBackupSchedule.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/remove-wssbackupschedule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/remove-wssbackupschedule?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Remove-WssBackupSystemRecovery.md b/docset/winserver2012-ps/wsscmdlets/Remove-WssBackupSystemRecovery.md index b1620d29d2..b4eb2ea7c0 100644 --- a/docset/winserver2012-ps/wsscmdlets/Remove-WssBackupSystemRecovery.md +++ b/docset/winserver2012-ps/wsscmdlets/Remove-WssBackupSystemRecovery.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/remove-wssbackupsystemrecovery?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/remove-wssbackupsystemrecovery?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Remove-WssBackupTarget.md b/docset/winserver2012-ps/wsscmdlets/Remove-WssBackupTarget.md index c93bac5e43..e1bf4f2bef 100644 --- a/docset/winserver2012-ps/wsscmdlets/Remove-WssBackupTarget.md +++ b/docset/winserver2012-ps/wsscmdlets/Remove-WssBackupTarget.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/remove-wssbackuptarget?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/remove-wssbackuptarget?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Remove-WssBackupVolume.md b/docset/winserver2012-ps/wsscmdlets/Remove-WssBackupVolume.md index 7c7361209b..df6c08c614 100644 --- a/docset/winserver2012-ps/wsscmdlets/Remove-WssBackupVolume.md +++ b/docset/winserver2012-ps/wsscmdlets/Remove-WssBackupVolume.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/remove-wssbackupvolume?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/remove-wssbackupvolume?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Remove-WssComputer.md b/docset/winserver2012-ps/wsscmdlets/Remove-WssComputer.md index 959f2ccb0c..df461b3357 100644 --- a/docset/winserver2012-ps/wsscmdlets/Remove-WssComputer.md +++ b/docset/winserver2012-ps/wsscmdlets/Remove-WssComputer.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/remove-wsscomputer?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/remove-wsscomputer?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Remove-WssComputerAccess.md b/docset/winserver2012-ps/wsscmdlets/Remove-WssComputerAccess.md index a38e3037e7..b6f7b13c5b 100644 --- a/docset/winserver2012-ps/wsscmdlets/Remove-WssComputerAccess.md +++ b/docset/winserver2012-ps/wsscmdlets/Remove-WssComputerAccess.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/remove-wsscomputeraccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/remove-wsscomputeraccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Remove-WssFolder.md b/docset/winserver2012-ps/wsscmdlets/Remove-WssFolder.md index 37c60a1029..591483a0a6 100644 --- a/docset/winserver2012-ps/wsscmdlets/Remove-WssFolder.md +++ b/docset/winserver2012-ps/wsscmdlets/Remove-WssFolder.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/remove-wssfolder?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/remove-wssfolder?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Remove-WssRemoteWebAccessLink.md b/docset/winserver2012-ps/wsscmdlets/Remove-WssRemoteWebAccessLink.md index ba0bbad1d8..b0b5d91744 100644 --- a/docset/winserver2012-ps/wsscmdlets/Remove-WssRemoteWebAccessLink.md +++ b/docset/winserver2012-ps/wsscmdlets/Remove-WssRemoteWebAccessLink.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/remove-wssremotewebaccesslink?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/remove-wssremotewebaccesslink?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Remove-WssUser.md b/docset/winserver2012-ps/wsscmdlets/Remove-WssUser.md index 9979caa6c3..a3359c5630 100644 --- a/docset/winserver2012-ps/wsscmdlets/Remove-WssUser.md +++ b/docset/winserver2012-ps/wsscmdlets/Remove-WssUser.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/remove-wssuser?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/remove-wssuser?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Repair-WssAlert.md b/docset/winserver2012-ps/wsscmdlets/Repair-WssAlert.md index facd1d102a..10e703b8dd 100644 --- a/docset/winserver2012-ps/wsscmdlets/Repair-WssAlert.md +++ b/docset/winserver2012-ps/wsscmdlets/Repair-WssAlert.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/repair-wssalert?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/repair-wssalert?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Repair-WssMediaStreamingMetadata.md b/docset/winserver2012-ps/wsscmdlets/Repair-WssMediaStreamingMetadata.md index 16a5afc7b6..c9ad8b6d3a 100644 --- a/docset/winserver2012-ps/wsscmdlets/Repair-WssMediaStreamingMetadata.md +++ b/docset/winserver2012-ps/wsscmdlets/Repair-WssMediaStreamingMetadata.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/repair-wssmediastreamingmetadata?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/repair-wssmediastreamingmetadata?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Repair-WssRemoteWebAccess.md b/docset/winserver2012-ps/wsscmdlets/Repair-WssRemoteWebAccess.md index daa9720b0a..99d12d23a0 100644 --- a/docset/winserver2012-ps/wsscmdlets/Repair-WssRemoteWebAccess.md +++ b/docset/winserver2012-ps/wsscmdlets/Repair-WssRemoteWebAccess.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/repair-wssremotewebaccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/repair-wssremotewebaccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Repair-WssRouterConfiguration.md b/docset/winserver2012-ps/wsscmdlets/Repair-WssRouterConfiguration.md index 38d2dafbfa..ef3671b3c4 100644 --- a/docset/winserver2012-ps/wsscmdlets/Repair-WssRouterConfiguration.md +++ b/docset/winserver2012-ps/wsscmdlets/Repair-WssRouterConfiguration.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/repair-wssrouterconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/repair-wssrouterconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Resume-WssBackupPolicy.md b/docset/winserver2012-ps/wsscmdlets/Resume-WssBackupPolicy.md index 83491d43cd..b1c3818f0c 100644 --- a/docset/winserver2012-ps/wsscmdlets/Resume-WssBackupPolicy.md +++ b/docset/winserver2012-ps/wsscmdlets/Resume-WssBackupPolicy.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/resume-wssbackuppolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/resume-wssbackuppolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Select-WssMountVhd.md b/docset/winserver2012-ps/wsscmdlets/Select-WssMountVhd.md index d62080b0a4..05438216f9 100644 --- a/docset/winserver2012-ps/wsscmdlets/Select-WssMountVhd.md +++ b/docset/winserver2012-ps/wsscmdlets/Select-WssMountVhd.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/select-wssmountvhd?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/select-wssmountvhd?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Set-WssAlertEmailSetting.md b/docset/winserver2012-ps/wsscmdlets/Set-WssAlertEmailSetting.md index 888c999830..17de6a2905 100644 --- a/docset/winserver2012-ps/wsscmdlets/Set-WssAlertEmailSetting.md +++ b/docset/winserver2012-ps/wsscmdlets/Set-WssAlertEmailSetting.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/set-wssalertemailsetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/set-wssalertemailsetting?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Set-WssBackupPolicy.md b/docset/winserver2012-ps/wsscmdlets/Set-WssBackupPolicy.md index 6b8a2c5a82..c39f7d7ed7 100644 --- a/docset/winserver2012-ps/wsscmdlets/Set-WssBackupPolicy.md +++ b/docset/winserver2012-ps/wsscmdlets/Set-WssBackupPolicy.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/set-wssbackuppolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/set-wssbackuppolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Set-WssClientBackup.md b/docset/winserver2012-ps/wsscmdlets/Set-WssClientBackup.md index 57f55d13ba..89c752554c 100644 --- a/docset/winserver2012-ps/wsscmdlets/Set-WssClientBackup.md +++ b/docset/winserver2012-ps/wsscmdlets/Set-WssClientBackup.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/set-wssclientbackup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/set-wssclientbackup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Set-WssClientBackupVolumeExcludedFolder.md b/docset/winserver2012-ps/wsscmdlets/Set-WssClientBackupVolumeExcludedFolder.md index 7d755ce4f5..e4ae76dfcc 100644 --- a/docset/winserver2012-ps/wsscmdlets/Set-WssClientBackupVolumeExcludedFolder.md +++ b/docset/winserver2012-ps/wsscmdlets/Set-WssClientBackupVolumeExcludedFolder.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/set-wssclientbackupvolumeexcludedfolder?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/set-wssclientbackupvolumeexcludedfolder?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Set-WssDomainNameConfiguration.md b/docset/winserver2012-ps/wsscmdlets/Set-WssDomainNameConfiguration.md index 7a54c05d7f..f1031c1919 100644 --- a/docset/winserver2012-ps/wsscmdlets/Set-WssDomainNameConfiguration.md +++ b/docset/winserver2012-ps/wsscmdlets/Set-WssDomainNameConfiguration.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/set-wssdomainnameconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/set-wssdomainnameconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Set-WssDrive.md b/docset/winserver2012-ps/wsscmdlets/Set-WssDrive.md index 36dfc2b1d3..f042ce3cbb 100644 --- a/docset/winserver2012-ps/wsscmdlets/Set-WssDrive.md +++ b/docset/winserver2012-ps/wsscmdlets/Set-WssDrive.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/set-wssdrive?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/set-wssdrive?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Set-WssFileHistoryConfiguration.md b/docset/winserver2012-ps/wsscmdlets/Set-WssFileHistoryConfiguration.md index 01ed8e8683..abfb3f490f 100644 --- a/docset/winserver2012-ps/wsscmdlets/Set-WssFileHistoryConfiguration.md +++ b/docset/winserver2012-ps/wsscmdlets/Set-WssFileHistoryConfiguration.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/set-wssfilehistoryconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/set-wssfilehistoryconfiguration?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Set-WssFileHistoryManagementStatus.md b/docset/winserver2012-ps/wsscmdlets/Set-WssFileHistoryManagementStatus.md index a2f1f97073..752a6258b0 100644 --- a/docset/winserver2012-ps/wsscmdlets/Set-WssFileHistoryManagementStatus.md +++ b/docset/winserver2012-ps/wsscmdlets/Set-WssFileHistoryManagementStatus.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/set-wssfilehistorymanagementstatus?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/set-wssfilehistorymanagementstatus?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Set-WssFolder.md b/docset/winserver2012-ps/wsscmdlets/Set-WssFolder.md index ba89dcb47f..b66ae519f1 100644 --- a/docset/winserver2012-ps/wsscmdlets/Set-WssFolder.md +++ b/docset/winserver2012-ps/wsscmdlets/Set-WssFolder.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/set-wssfolder?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/set-wssfolder?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Set-WssGlobalClientBackupPolicy.md b/docset/winserver2012-ps/wsscmdlets/Set-WssGlobalClientBackupPolicy.md index 2236dbd145..ac0e769bfb 100644 --- a/docset/winserver2012-ps/wsscmdlets/Set-WssGlobalClientBackupPolicy.md +++ b/docset/winserver2012-ps/wsscmdlets/Set-WssGlobalClientBackupPolicy.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/set-wssglobalclientbackuppolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/set-wssglobalclientbackuppolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Set-WssImportGroup.md b/docset/winserver2012-ps/wsscmdlets/Set-WssImportGroup.md index 4543d3b32d..03e76a63c6 100644 --- a/docset/winserver2012-ps/wsscmdlets/Set-WssImportGroup.md +++ b/docset/winserver2012-ps/wsscmdlets/Set-WssImportGroup.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/set-wssimportgroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/set-wssimportgroup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Set-WssMediaLibraryInclusion.md b/docset/winserver2012-ps/wsscmdlets/Set-WssMediaLibraryInclusion.md index d0a3f7f972..2b5970abce 100644 --- a/docset/winserver2012-ps/wsscmdlets/Set-WssMediaLibraryInclusion.md +++ b/docset/winserver2012-ps/wsscmdlets/Set-WssMediaLibraryInclusion.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/set-wssmedialibraryinclusion?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/set-wssmedialibraryinclusion?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Set-WssMediaLibraryName.md b/docset/winserver2012-ps/wsscmdlets/Set-WssMediaLibraryName.md index d7cc5c4a43..9db80f9fce 100644 --- a/docset/winserver2012-ps/wsscmdlets/Set-WssMediaLibraryName.md +++ b/docset/winserver2012-ps/wsscmdlets/Set-WssMediaLibraryName.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/set-wssmedialibraryname?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/set-wssmedialibraryname?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Set-WssMediaServerEnabled.md b/docset/winserver2012-ps/wsscmdlets/Set-WssMediaServerEnabled.md index fbfd0c0df9..83ca8056d3 100644 --- a/docset/winserver2012-ps/wsscmdlets/Set-WssMediaServerEnabled.md +++ b/docset/winserver2012-ps/wsscmdlets/Set-WssMediaServerEnabled.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/set-wssmediaserverenabled?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/set-wssmediaserverenabled?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Set-WssRemoteWebAccessBackgroundImage.md b/docset/winserver2012-ps/wsscmdlets/Set-WssRemoteWebAccessBackgroundImage.md index 21b47c9607..32646ac324 100644 --- a/docset/winserver2012-ps/wsscmdlets/Set-WssRemoteWebAccessBackgroundImage.md +++ b/docset/winserver2012-ps/wsscmdlets/Set-WssRemoteWebAccessBackgroundImage.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/set-wssremotewebaccessbackgroundimage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/set-wssremotewebaccessbackgroundimage?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Set-WssRemoteWebAccessLogo.md b/docset/winserver2012-ps/wsscmdlets/Set-WssRemoteWebAccessLogo.md index 66cdc915e7..67406bd98b 100644 --- a/docset/winserver2012-ps/wsscmdlets/Set-WssRemoteWebAccessLogo.md +++ b/docset/winserver2012-ps/wsscmdlets/Set-WssRemoteWebAccessLogo.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/set-wssremotewebaccesslogo?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/set-wssremotewebaccesslogo?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Set-WssRemoteWebAccessTitle.md b/docset/winserver2012-ps/wsscmdlets/Set-WssRemoteWebAccessTitle.md index ef8b643f6f..ce11530b3f 100644 --- a/docset/winserver2012-ps/wsscmdlets/Set-WssRemoteWebAccessTitle.md +++ b/docset/winserver2012-ps/wsscmdlets/Set-WssRemoteWebAccessTitle.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/set-wssremotewebaccesstitle?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/set-wssremotewebaccesstitle?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Set-WssServerConnectionOption.md b/docset/winserver2012-ps/wsscmdlets/Set-WssServerConnectionOption.md index 49dbf0ba7b..7dccbd6b20 100644 --- a/docset/winserver2012-ps/wsscmdlets/Set-WssServerConnectionOption.md +++ b/docset/winserver2012-ps/wsscmdlets/Set-WssServerConnectionOption.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/set-wssserverconnectionoption?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/set-wssserverconnectionoption?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Set-WssUserAccess.md b/docset/winserver2012-ps/wsscmdlets/Set-WssUserAccess.md index 676b3db74b..811898c522 100644 --- a/docset/winserver2012-ps/wsscmdlets/Set-WssUserAccess.md +++ b/docset/winserver2012-ps/wsscmdlets/Set-WssUserAccess.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/set-wssuseraccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/set-wssuseraccess?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Set-WssWinSatCpuScore.md b/docset/winserver2012-ps/wsscmdlets/Set-WssWinSatCpuScore.md index d6643766ab..176cd9b426 100644 --- a/docset/winserver2012-ps/wsscmdlets/Set-WssWinSatCpuScore.md +++ b/docset/winserver2012-ps/wsscmdlets/Set-WssWinSatCpuScore.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/set-wsswinsatcpuscore?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/set-wsswinsatcpuscore?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Start-WssBackupJob.md b/docset/winserver2012-ps/wsscmdlets/Start-WssBackupJob.md index 1711a584ed..98d91a422e 100644 --- a/docset/winserver2012-ps/wsscmdlets/Start-WssBackupJob.md +++ b/docset/winserver2012-ps/wsscmdlets/Start-WssBackupJob.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/start-wssbackupjob?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/start-wssbackupjob?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Start-WssClientBackup.md b/docset/winserver2012-ps/wsscmdlets/Start-WssClientBackup.md index 241ec77bf3..53cd78cc14 100644 --- a/docset/winserver2012-ps/wsscmdlets/Start-WssClientBackup.md +++ b/docset/winserver2012-ps/wsscmdlets/Start-WssClientBackup.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/start-wssclientbackup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/start-wssclientbackup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Start-WssClientBackupRepair.md b/docset/winserver2012-ps/wsscmdlets/Start-WssClientBackupRepair.md index 9ed9364345..a465c19f01 100644 --- a/docset/winserver2012-ps/wsscmdlets/Start-WssClientBackupRepair.md +++ b/docset/winserver2012-ps/wsscmdlets/Start-WssClientBackupRepair.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/start-wssclientbackuprepair?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/start-wssclientbackuprepair?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Start-WssServerFileRestore.md b/docset/winserver2012-ps/wsscmdlets/Start-WssServerFileRestore.md index 3c45d4ff5d..8f03fef8ee 100644 --- a/docset/winserver2012-ps/wsscmdlets/Start-WssServerFileRestore.md +++ b/docset/winserver2012-ps/wsscmdlets/Start-WssServerFileRestore.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/start-wssserverfilerestore?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/start-wssserverfilerestore?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Start-WssServerVolumeRestore.md b/docset/winserver2012-ps/wsscmdlets/Start-WssServerVolumeRestore.md index cd4dffddb4..4bb912bf9b 100644 --- a/docset/winserver2012-ps/wsscmdlets/Start-WssServerVolumeRestore.md +++ b/docset/winserver2012-ps/wsscmdlets/Start-WssServerVolumeRestore.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/start-wssservervolumerestore?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/start-wssservervolumerestore?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Stop-WssBackupJob.md b/docset/winserver2012-ps/wsscmdlets/Stop-WssBackupJob.md index 736adb454b..ed10132929 100644 --- a/docset/winserver2012-ps/wsscmdlets/Stop-WssBackupJob.md +++ b/docset/winserver2012-ps/wsscmdlets/Stop-WssBackupJob.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/stop-wssbackupjob?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/stop-wssbackupjob?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Stop-WssClientBackup.md b/docset/winserver2012-ps/wsscmdlets/Stop-WssClientBackup.md index dfdfb104c7..d6498d31e4 100644 --- a/docset/winserver2012-ps/wsscmdlets/Stop-WssClientBackup.md +++ b/docset/winserver2012-ps/wsscmdlets/Stop-WssClientBackup.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/stop-wssclientbackup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/stop-wssclientbackup?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Stop-WssClientBackupRepair.md b/docset/winserver2012-ps/wsscmdlets/Stop-WssClientBackupRepair.md index 3c7897547b..13ee96ab6a 100644 --- a/docset/winserver2012-ps/wsscmdlets/Stop-WssClientBackupRepair.md +++ b/docset/winserver2012-ps/wsscmdlets/Stop-WssClientBackupRepair.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/stop-wssclientbackuprepair?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/stop-wssclientbackuprepair?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Suspend-WssBackupPolicy.md b/docset/winserver2012-ps/wsscmdlets/Suspend-WssBackupPolicy.md index 2b7e85998b..9a82e0484b 100644 --- a/docset/winserver2012-ps/wsscmdlets/Suspend-WssBackupPolicy.md +++ b/docset/winserver2012-ps/wsscmdlets/Suspend-WssBackupPolicy.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/suspend-wssbackuppolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/suspend-wssbackuppolicy?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Sync-WssUser.md b/docset/winserver2012-ps/wsscmdlets/Sync-WssUser.md index 8a920790a6..92e4788c7d 100644 --- a/docset/winserver2012-ps/wsscmdlets/Sync-WssUser.md +++ b/docset/winserver2012-ps/wsscmdlets/Sync-WssUser.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/sync-wssuser?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/sync-wssuser?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Test-WssAlertEmail.md b/docset/winserver2012-ps/wsscmdlets/Test-WssAlertEmail.md index 5578dba9a3..49a547b6a6 100644 --- a/docset/winserver2012-ps/wsscmdlets/Test-WssAlertEmail.md +++ b/docset/winserver2012-ps/wsscmdlets/Test-WssAlertEmail.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/test-wssalertemail?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/test-wssalertemail?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Test-WssDrive.md b/docset/winserver2012-ps/wsscmdlets/Test-WssDrive.md index 663fc2bfba..7adc28bb02 100644 --- a/docset/winserver2012-ps/wsscmdlets/Test-WssDrive.md +++ b/docset/winserver2012-ps/wsscmdlets/Test-WssDrive.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/test-wssdrive?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/test-wssdrive?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Test-WssHealth.md b/docset/winserver2012-ps/wsscmdlets/Test-WssHealth.md index 18f2386417..6c7193b6c2 100644 --- a/docset/winserver2012-ps/wsscmdlets/Test-WssHealth.md +++ b/docset/winserver2012-ps/wsscmdlets/Test-WssHealth.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/test-wsshealth?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/test-wsshealth?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Test-WssVpnServerInstallation.md b/docset/winserver2012-ps/wsscmdlets/Test-WssVpnServerInstallation.md index fb04c270ee..400c91a1a7 100644 --- a/docset/winserver2012-ps/wsscmdlets/Test-WssVpnServerInstallation.md +++ b/docset/winserver2012-ps/wsscmdlets/Test-WssVpnServerInstallation.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/test-wssvpnserverinstallation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/test-wssvpnserverinstallation?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Uninstall-WssAddIn.md b/docset/winserver2012-ps/wsscmdlets/Uninstall-WssAddIn.md index 100b9e59b2..1215438e45 100644 --- a/docset/winserver2012-ps/wsscmdlets/Uninstall-WssAddIn.md +++ b/docset/winserver2012-ps/wsscmdlets/Uninstall-WssAddIn.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/uninstall-wssaddin?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/uninstall-wssaddin?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2012-ps/wsscmdlets/Uninstall-WssVpnServer.md b/docset/winserver2012-ps/wsscmdlets/Uninstall-WssVpnServer.md index 785e61eb9c..55d518a0cd 100644 --- a/docset/winserver2012-ps/wsscmdlets/Uninstall-WssVpnServer.md +++ b/docset/winserver2012-ps/wsscmdlets/Uninstall-WssVpnServer.md @@ -1,7 +1,7 @@ --- external help file: WSS_Cmdlets.xml Module Name: WssCmdlets -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/uninstall-wssvpnserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/uninstall-wssvpnserver?view=windowsserver2012-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2022-ps/activedirectory/Get-ADAccountAuthorizationGroup.md b/docset/winserver2022-ps/activedirectory/Get-ADAccountAuthorizationGroup.md index 604a8dfae8..1267d42fe9 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADAccountAuthorizationGroup.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADAccountAuthorizationGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adaccountauthorizationgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adaccountauthorizationgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADAccountAuthorizationGroup --- From 1095f9687ca3fab79449e455c60e3ddd030dd1f3 Mon Sep 17 00:00:00 2001 From: Sean Wheeler Date: Tue, 20 Sep 2022 12:56:16 -0500 Subject: [PATCH 245/965] Update URLs for site rebrand --- .../activedirectory/Add-ADCentralAccessPolicyMember.md | 2 +- .../activedirectory/Add-ADComputerServiceAccount.md | 2 +- .../Add-ADDomainControllerPasswordReplicationPolicy.md | 2 +- .../activedirectory/Add-ADFineGrainedPasswordPolicySubject.md | 2 +- .../winserver2012r2-ps/activedirectory/Add-ADGroupMember.md | 2 +- .../activedirectory/Add-ADPrincipalGroupMembership.md | 2 +- .../activedirectory/Add-ADResourcePropertyListMember.md | 2 +- .../activedirectory/Clear-ADAccountExpiration.md | 2 +- .../activedirectory/Clear-ADClaimTransformLink.md | 2 +- .../winserver2012r2-ps/activedirectory/Disable-ADAccount.md | 2 +- .../activedirectory/Disable-ADOptionalFeature.md | 2 +- docset/winserver2012r2-ps/activedirectory/Enable-ADAccount.md | 2 +- .../activedirectory/Enable-ADOptionalFeature.md | 2 +- .../activedirectory/Get-ADAccountAuthorizationGroup.md | 2 +- .../Get-ADAccountResultantPasswordReplicationPolicy.md | 2 +- .../activedirectory/Get-ADAuthenticationPolicy.md | 2 +- .../activedirectory/Get-ADAuthenticationPolicySilo.md | 2 +- .../activedirectory/Get-ADCentralAccessPolicy.md | 2 +- .../activedirectory/Get-ADCentralAccessRule.md | 2 +- .../activedirectory/Get-ADClaimTransformPolicy.md | 2 +- docset/winserver2012r2-ps/activedirectory/Get-ADClaimType.md | 2 +- docset/winserver2012r2-ps/activedirectory/Get-ADComputer.md | 2 +- .../activedirectory/Get-ADComputerServiceAccount.md | 2 +- .../activedirectory/Get-ADDCCloningExcludedApplicationList.md | 2 +- .../activedirectory/Get-ADDefaultDomainPasswordPolicy.md | 2 +- docset/winserver2012r2-ps/activedirectory/Get-ADDomain.md | 2 +- .../activedirectory/Get-ADDomainController.md | 2 +- .../Get-ADDomainControllerPasswordReplicationPolicy.md | 2 +- .../Get-ADDomainControllerPasswordReplicationPolicyUsage.md | 2 +- .../activedirectory/Get-ADFineGrainedPasswordPolicy.md | 2 +- .../activedirectory/Get-ADFineGrainedPasswordPolicySubject.md | 2 +- docset/winserver2012r2-ps/activedirectory/Get-ADForest.md | 2 +- docset/winserver2012r2-ps/activedirectory/Get-ADGroup.md | 2 +- .../winserver2012r2-ps/activedirectory/Get-ADGroupMember.md | 2 +- docset/winserver2012r2-ps/activedirectory/Get-ADObject.md | 2 +- .../activedirectory/Get-ADOptionalFeature.md | 2 +- .../activedirectory/Get-ADOrganizationalUnit.md | 2 +- .../activedirectory/Get-ADPrincipalGroupMembership.md | 2 +- .../activedirectory/Get-ADReplicationAttributeMetadata.md | 2 +- .../activedirectory/Get-ADReplicationConnection.md | 2 +- .../activedirectory/Get-ADReplicationFailure.md | 2 +- .../activedirectory/Get-ADReplicationPartnerMetadata.md | 2 +- .../activedirectory/Get-ADReplicationQueueOperation.md | 2 +- .../activedirectory/Get-ADReplicationSite.md | 2 +- .../activedirectory/Get-ADReplicationSiteLink.md | 2 +- .../activedirectory/Get-ADReplicationSiteLinkBridge.md | 2 +- .../activedirectory/Get-ADReplicationSubnet.md | 2 +- .../Get-ADReplicationUpToDatenessVectorTable.md | 2 +- .../activedirectory/Get-ADResourceProperty.md | 2 +- .../activedirectory/Get-ADResourcePropertyList.md | 2 +- .../activedirectory/Get-ADResourcePropertyValueType.md | 2 +- docset/winserver2012r2-ps/activedirectory/Get-ADRootDSE.md | 2 +- .../activedirectory/Get-ADServiceAccount.md | 2 +- docset/winserver2012r2-ps/activedirectory/Get-ADTrust.md | 2 +- docset/winserver2012r2-ps/activedirectory/Get-ADUser.md | 2 +- .../activedirectory/Get-ADUserResultantPasswordPolicy.md | 2 +- .../activedirectory/Grant-ADAuthenticationPolicySiloAccess.md | 2 +- .../activedirectory/Install-ADServiceAccount.md | 2 +- .../activedirectory/Move-ADDirectoryServer.md | 2 +- .../Move-ADDirectoryServerOperationMasterRole.md | 2 +- docset/winserver2012r2-ps/activedirectory/Move-ADObject.md | 2 +- .../activedirectory/New-ADAuthenticationPolicy.md | 2 +- .../activedirectory/New-ADAuthenticationPolicySilo.md | 2 +- .../activedirectory/New-ADCentralAccessPolicy.md | 2 +- .../activedirectory/New-ADCentralAccessRule.md | 2 +- .../activedirectory/New-ADClaimTransformPolicy.md | 2 +- docset/winserver2012r2-ps/activedirectory/New-ADClaimType.md | 2 +- docset/winserver2012r2-ps/activedirectory/New-ADComputer.md | 2 +- .../activedirectory/New-ADDCCloneConfigFile.md | 2 +- .../activedirectory/New-ADFineGrainedPasswordPolicy.md | 2 +- docset/winserver2012r2-ps/activedirectory/New-ADGroup.md | 2 +- docset/winserver2012r2-ps/activedirectory/New-ADObject.md | 2 +- .../activedirectory/New-ADOrganizationalUnit.md | 2 +- .../activedirectory/New-ADReplicationSite.md | 2 +- .../activedirectory/New-ADReplicationSiteLink.md | 2 +- .../activedirectory/New-ADReplicationSiteLinkBridge.md | 2 +- .../activedirectory/New-ADReplicationSubnet.md | 2 +- .../activedirectory/New-ADResourceProperty.md | 2 +- .../activedirectory/New-ADResourcePropertyList.md | 2 +- .../activedirectory/New-ADServiceAccount.md | 2 +- docset/winserver2012r2-ps/activedirectory/New-ADUser.md | 2 +- .../activedirectory/Remove-ADAuthenticationPolicy.md | 2 +- .../activedirectory/Remove-ADAuthenticationPolicySilo.md | 2 +- .../activedirectory/Remove-ADCentralAccessPolicy.md | 2 +- .../activedirectory/Remove-ADCentralAccessPolicyMember.md | 2 +- .../activedirectory/Remove-ADCentralAccessRule.md | 2 +- .../activedirectory/Remove-ADClaimTransformPolicy.md | 2 +- .../winserver2012r2-ps/activedirectory/Remove-ADClaimType.md | 2 +- .../winserver2012r2-ps/activedirectory/Remove-ADComputer.md | 2 +- .../activedirectory/Remove-ADComputerServiceAccount.md | 2 +- .../Remove-ADDomainControllerPasswordReplicationPolicy.md | 2 +- .../activedirectory/Remove-ADFineGrainedPasswordPolicy.md | 2 +- .../Remove-ADFineGrainedPasswordPolicySubject.md | 2 +- docset/winserver2012r2-ps/activedirectory/Remove-ADGroup.md | 2 +- .../activedirectory/Remove-ADGroupMember.md | 2 +- docset/winserver2012r2-ps/activedirectory/Remove-ADObject.md | 2 +- .../activedirectory/Remove-ADOrganizationalUnit.md | 2 +- .../activedirectory/Remove-ADPrincipalGroupMembership.md | 2 +- .../activedirectory/Remove-ADReplicationSite.md | 2 +- .../activedirectory/Remove-ADReplicationSiteLink.md | 2 +- .../activedirectory/Remove-ADReplicationSiteLinkBridge.md | 2 +- .../activedirectory/Remove-ADReplicationSubnet.md | 2 +- .../activedirectory/Remove-ADResourceProperty.md | 2 +- .../activedirectory/Remove-ADResourcePropertyList.md | 2 +- .../activedirectory/Remove-ADResourcePropertyListMember.md | 2 +- .../activedirectory/Remove-ADServiceAccount.md | 2 +- docset/winserver2012r2-ps/activedirectory/Remove-ADUser.md | 2 +- docset/winserver2012r2-ps/activedirectory/Rename-ADObject.md | 2 +- .../activedirectory/Reset-ADServiceAccountPassword.md | 2 +- docset/winserver2012r2-ps/activedirectory/Restore-ADObject.md | 2 +- .../Revoke-ADAuthenticationPolicySiloAccess.md | 2 +- docset/winserver2012r2-ps/activedirectory/Search-ADAccount.md | 2 +- .../activedirectory/Set-ADAccountAuthenticationPolicySilo.md | 2 +- .../activedirectory/Set-ADAccountControl.md | 2 +- .../activedirectory/Set-ADAccountExpiration.md | 2 +- .../activedirectory/Set-ADAccountPassword.md | 2 +- .../activedirectory/Set-ADAuthenticationPolicy.md | 2 +- .../activedirectory/Set-ADAuthenticationPolicySilo.md | 2 +- .../activedirectory/Set-ADCentralAccessPolicy.md | 2 +- .../activedirectory/Set-ADCentralAccessRule.md | 2 +- .../activedirectory/Set-ADClaimTransformLink.md | 2 +- .../activedirectory/Set-ADClaimTransformPolicy.md | 2 +- docset/winserver2012r2-ps/activedirectory/Set-ADClaimType.md | 2 +- docset/winserver2012r2-ps/activedirectory/Set-ADComputer.md | 2 +- .../activedirectory/Set-ADDefaultDomainPasswordPolicy.md | 2 +- docset/winserver2012r2-ps/activedirectory/Set-ADDomain.md | 2 +- docset/winserver2012r2-ps/activedirectory/Set-ADDomainMode.md | 2 +- .../activedirectory/Set-ADFineGrainedPasswordPolicy.md | 2 +- docset/winserver2012r2-ps/activedirectory/Set-ADForest.md | 2 +- docset/winserver2012r2-ps/activedirectory/Set-ADForestMode.md | 2 +- docset/winserver2012r2-ps/activedirectory/Set-ADGroup.md | 2 +- docset/winserver2012r2-ps/activedirectory/Set-ADObject.md | 2 +- .../activedirectory/Set-ADOrganizationalUnit.md | 2 +- .../activedirectory/Set-ADReplicationConnection.md | 2 +- .../activedirectory/Set-ADReplicationSite.md | 2 +- .../activedirectory/Set-ADReplicationSiteLink.md | 2 +- .../activedirectory/Set-ADReplicationSiteLinkBridge.md | 2 +- .../activedirectory/Set-ADReplicationSubnet.md | 2 +- .../activedirectory/Set-ADResourceProperty.md | 2 +- .../activedirectory/Set-ADResourcePropertyList.md | 2 +- .../activedirectory/Set-ADServiceAccount.md | 2 +- docset/winserver2012r2-ps/activedirectory/Set-ADUser.md | 2 +- .../activedirectory/Show-ADAuthenticationPolicyExpression.md | 2 +- docset/winserver2012r2-ps/activedirectory/Sync-ADObject.md | 2 +- .../activedirectory/Test-ADServiceAccount.md | 2 +- .../activedirectory/Uninstall-ADServiceAccount.md | 2 +- docset/winserver2012r2-ps/activedirectory/Unlock-ADAccount.md | 2 +- .../adcsadministration/add-caauthorityinformationaccess.md | 2 +- .../adcsadministration/add-cacrldistributionpoint.md | 2 +- .../winserver2012r2-ps/adcsadministration/add-catemplate.md | 2 +- .../adcsadministration/backup-caroleservice.md | 2 +- .../adcsadministration/confirm-caendorsementkeyinfo.md | 2 +- .../adcsadministration/get-caauthorityinformationaccess.md | 2 +- .../adcsadministration/get-cacrldistributionpoint.md | 2 +- .../winserver2012r2-ps/adcsadministration/get-catemplate.md | 2 +- .../adcsadministration/remove-caauthorityinformationaccess.md | 2 +- .../adcsadministration/remove-cacrldistributionpoint.md | 2 +- .../adcsadministration/remove-catemplate.md | 2 +- .../adcsadministration/restore-caroleservice.md | 2 +- .../adcsdeployment/install-adcscertificationauthority.md | 2 +- .../adcsdeployment/install-adcsenrollmentpolicywebservice.md | 2 +- .../adcsdeployment/install-adcsenrollmentwebservice.md | 2 +- .../install-adcsnetworkdeviceenrollmentservice.md | 2 +- .../adcsdeployment/install-adcsonlineresponder.md | 2 +- .../adcsdeployment/install-adcswebenrollment.md | 2 +- .../adcsdeployment/uninstall-adcscertificationauthority.md | 2 +- .../uninstall-adcsenrollmentpolicywebservice.md | 2 +- .../adcsdeployment/uninstall-adcsenrollmentwebservice.md | 2 +- .../uninstall-adcsnetworkdeviceenrollmentservice.md | 2 +- .../adcsdeployment/uninstall-adcsonlineresponder.md | 2 +- .../adcsdeployment/uninstall-adcswebenrollment.md | 2 +- .../addsdeployment/Add-ADDSReadOnlyDomainControllerAccount.md | 2 +- .../winserver2012r2-ps/addsdeployment/Install-ADDSDomain.md | 2 +- .../addsdeployment/Install-ADDSDomainController.md | 2 +- .../winserver2012r2-ps/addsdeployment/Install-ADDSForest.md | 2 +- .../addsdeployment/Test-ADDSDomainControllerInstallation.md | 2 +- .../addsdeployment/Test-ADDSDomainControllerUninstallation.md | 2 +- .../addsdeployment/Test-ADDSDomainInstallation.md | 2 +- .../addsdeployment/Test-ADDSForestInstallation.md | 2 +- .../Test-ADDSReadOnlyDomainControllerAccountCreation.md | 2 +- .../addsdeployment/Uninstall-ADDSDomainController.md | 2 +- docset/winserver2012r2-ps/adfs/Add-AdfsAttributeStore.md | 2 +- docset/winserver2012r2-ps/adfs/Add-AdfsCertificate.md | 2 +- docset/winserver2012r2-ps/adfs/Add-AdfsClaimDescription.md | 2 +- docset/winserver2012r2-ps/adfs/Add-AdfsClaimsProviderTrust.md | 2 +- docset/winserver2012r2-ps/adfs/Add-AdfsClient.md | 2 +- .../adfs/Add-AdfsDeviceRegistrationUpnSuffix.md | 2 +- docset/winserver2012r2-ps/adfs/Add-AdfsFarmNode.md | 2 +- .../adfs/Add-AdfsNonClaimsAwareRelyingPartyTrust.md | 2 +- docset/winserver2012r2-ps/adfs/Add-AdfsRelyingPartyTrust.md | 2 +- .../adfs/Add-AdfsWebApplicationProxyRelyingPartyTrust.md | 2 +- .../adfs/Disable-AdfsClaimsProviderTrust.md | 2 +- docset/winserver2012r2-ps/adfs/Disable-AdfsClient.md | 2 +- .../winserver2012r2-ps/adfs/Disable-AdfsDeviceRegistration.md | 2 +- docset/winserver2012r2-ps/adfs/Disable-AdfsEndpoint.md | 2 +- .../adfs/Disable-AdfsNonClaimsAwareRelyingPartyTrust.md | 2 +- .../winserver2012r2-ps/adfs/Disable-AdfsRelyingPartyTrust.md | 2 +- .../adfs/Disable-AdfsWebApplicationProxyRelyingPartyTrust.md | 2 +- .../winserver2012r2-ps/adfs/Enable-AdfsClaimsProviderTrust.md | 2 +- docset/winserver2012r2-ps/adfs/Enable-AdfsClient.md | 2 +- .../winserver2012r2-ps/adfs/Enable-AdfsDeviceRegistration.md | 2 +- docset/winserver2012r2-ps/adfs/Enable-AdfsEndpoint.md | 2 +- .../adfs/Enable-AdfsNonClaimsAwareRelyingPartyTrust.md | 2 +- .../winserver2012r2-ps/adfs/Enable-AdfsRelyingPartyTrust.md | 2 +- .../adfs/Enable-AdfsWebApplicationProxyRelyingPartyTrust.md | 2 +- .../Export-AdfsAuthenticationProviderConfigurationData.md | 2 +- .../winserver2012r2-ps/adfs/Export-AdfsDeploymentSQLScript.md | 2 +- docset/winserver2012r2-ps/adfs/Export-AdfsWebContent.md | 2 +- docset/winserver2012r2-ps/adfs/Export-AdfsWebTheme.md | 2 +- .../adfs/Get-AdfsAdditionalAuthenticationRule.md | 2 +- docset/winserver2012r2-ps/adfs/Get-AdfsAttributeStore.md | 2 +- .../winserver2012r2-ps/adfs/Get-AdfsAuthenticationProvider.md | 2 +- .../adfs/Get-AdfsAuthenticationProviderWebContent.md | 2 +- docset/winserver2012r2-ps/adfs/Get-AdfsCertificate.md | 2 +- docset/winserver2012r2-ps/adfs/Get-AdfsClaimDescription.md | 2 +- docset/winserver2012r2-ps/adfs/Get-AdfsClaimsProviderTrust.md | 2 +- docset/winserver2012r2-ps/adfs/Get-AdfsClient.md | 2 +- docset/winserver2012r2-ps/adfs/Get-AdfsDeviceRegistration.md | 2 +- .../adfs/Get-AdfsDeviceRegistrationUpnSuffix.md | 2 +- docset/winserver2012r2-ps/adfs/Get-AdfsEndpoint.md | 2 +- .../adfs/Get-AdfsGlobalAuthenticationPolicy.md | 2 +- docset/winserver2012r2-ps/adfs/Get-AdfsGlobalWebContent.md | 2 +- .../adfs/Get-AdfsNonClaimsAwareRelyingPartyTrust.md | 2 +- docset/winserver2012r2-ps/adfs/Get-AdfsProperties.md | 2 +- docset/winserver2012r2-ps/adfs/Get-AdfsRegistrationHosts.md | 2 +- docset/winserver2012r2-ps/adfs/Get-AdfsRelyingPartyTrust.md | 2 +- .../winserver2012r2-ps/adfs/Get-AdfsRelyingPartyWebContent.md | 2 +- docset/winserver2012r2-ps/adfs/Get-AdfsSslCertificate.md | 2 +- docset/winserver2012r2-ps/adfs/Get-AdfsSyncProperties.md | 2 +- .../adfs/Get-AdfsWebApplicationProxyRelyingPartyTrust.md | 2 +- docset/winserver2012r2-ps/adfs/Get-AdfsWebConfig.md | 2 +- docset/winserver2012r2-ps/adfs/Get-AdfsWebTheme.md | 2 +- .../Import-AdfsAuthenticationProviderConfigurationData.md | 2 +- docset/winserver2012r2-ps/adfs/Import-AdfsWebContent.md | 2 +- .../adfs/Initialize-ADDeviceRegistration.md | 2 +- docset/winserver2012r2-ps/adfs/Install-AdfsFarm.md | 2 +- docset/winserver2012r2-ps/adfs/New-AdfsClaimRuleSet.md | 2 +- docset/winserver2012r2-ps/adfs/New-AdfsContactPerson.md | 2 +- docset/winserver2012r2-ps/adfs/New-AdfsOrganization.md | 2 +- docset/winserver2012r2-ps/adfs/New-AdfsSamlEndpoint.md | 2 +- docset/winserver2012r2-ps/adfs/New-AdfsWebTheme.md | 2 +- docset/winserver2012r2-ps/adfs/Publish-SslCertificate.md | 2 +- .../adfs/Register-AdfsAuthenticationProvider.md | 2 +- docset/winserver2012r2-ps/adfs/Remove-AdfsAttributeStore.md | 2 +- .../adfs/Remove-AdfsAuthenticationProviderWebContent.md | 2 +- docset/winserver2012r2-ps/adfs/Remove-AdfsCertificate.md | 2 +- docset/winserver2012r2-ps/adfs/Remove-AdfsClaimDescription.md | 2 +- .../winserver2012r2-ps/adfs/Remove-AdfsClaimsProviderTrust.md | 2 +- docset/winserver2012r2-ps/adfs/Remove-AdfsClient.md | 2 +- .../adfs/Remove-AdfsDeviceRegistrationUpnSuffix.md | 2 +- docset/winserver2012r2-ps/adfs/Remove-AdfsFarmNode.md | 2 +- docset/winserver2012r2-ps/adfs/Remove-AdfsGlobalWebContent.md | 2 +- .../adfs/Remove-AdfsNonClaimsAwareRelyingPartyTrust.md | 2 +- .../winserver2012r2-ps/adfs/Remove-AdfsRelyingPartyTrust.md | 2 +- .../adfs/Remove-AdfsRelyingPartyWebContent.md | 2 +- .../adfs/Remove-AdfsWebApplicationProxyRelyingPartyTrust.md | 2 +- docset/winserver2012r2-ps/adfs/Remove-AdfsWebTheme.md | 2 +- docset/winserver2012r2-ps/adfs/Revoke-AdfsProxyTrust.md | 2 +- .../adfs/Set-AdfsAdditionalAuthenticationRule.md | 2 +- docset/winserver2012r2-ps/adfs/Set-AdfsAttributeStore.md | 2 +- .../adfs/Set-AdfsAuthenticationProviderWebContent.md | 2 +- .../winserver2012r2-ps/adfs/Set-AdfsCertSharingContainer.md | 2 +- docset/winserver2012r2-ps/adfs/Set-AdfsCertificate.md | 2 +- docset/winserver2012r2-ps/adfs/Set-AdfsClaimDescription.md | 2 +- docset/winserver2012r2-ps/adfs/Set-AdfsClaimsProviderTrust.md | 2 +- docset/winserver2012r2-ps/adfs/Set-AdfsClient.md | 2 +- docset/winserver2012r2-ps/adfs/Set-AdfsDeviceRegistration.md | 2 +- .../adfs/Set-AdfsDeviceRegistrationUpnSuffix.md | 2 +- docset/winserver2012r2-ps/adfs/Set-AdfsEndpoint.md | 2 +- .../adfs/Set-AdfsGlobalAuthenticationPolicy.md | 2 +- docset/winserver2012r2-ps/adfs/Set-AdfsGlobalWebContent.md | 2 +- .../adfs/Set-AdfsNonClaimsAwareRelyingPartyTrust.md | 2 +- docset/winserver2012r2-ps/adfs/Set-AdfsProperties.md | 2 +- docset/winserver2012r2-ps/adfs/Set-AdfsRegistrationHosts.md | 2 +- docset/winserver2012r2-ps/adfs/Set-AdfsRelyingPartyTrust.md | 2 +- .../winserver2012r2-ps/adfs/Set-AdfsRelyingPartyWebContent.md | 2 +- docset/winserver2012r2-ps/adfs/Set-AdfsSslCertificate.md | 2 +- docset/winserver2012r2-ps/adfs/Set-AdfsSyncProperties.md | 2 +- .../adfs/Set-AdfsWebApplicationProxyRelyingPartyTrust.md | 2 +- docset/winserver2012r2-ps/adfs/Set-AdfsWebConfig.md | 2 +- docset/winserver2012r2-ps/adfs/Set-AdfsWebTheme.md | 2 +- docset/winserver2012r2-ps/adfs/Test-AdfsFarmInstallation.md | 2 +- docset/winserver2012r2-ps/adfs/Test-AdfsFarmJoin.md | 2 +- .../adfs/Unregister-AdfsAuthenticationProvider.md | 2 +- docset/winserver2012r2-ps/adfs/Update-AdfsCertificate.md | 2 +- .../winserver2012r2-ps/adfs/Update-AdfsClaimsProviderTrust.md | 2 +- .../winserver2012r2-ps/adfs/Update-AdfsRelyingPartyTrust.md | 2 +- docset/winserver2012r2-ps/adrms/Install-ADRMS.md | 2 +- docset/winserver2012r2-ps/adrms/Uninstall-ADRMS.md | 2 +- docset/winserver2012r2-ps/adrms/Update-ADRMS.md | 2 +- .../adrmsadmin/Export-RmsReportDefinitionLanguage.md | 2 +- docset/winserver2012r2-ps/adrmsadmin/Export-RmsTPD.md | 2 +- docset/winserver2012r2-ps/adrmsadmin/Export-RmsTUD.md | 2 +- docset/winserver2012r2-ps/adrmsadmin/Get-RmsCertChain.md | 2 +- docset/winserver2012r2-ps/adrmsadmin/Get-RmsCertInfo.md | 2 +- docset/winserver2012r2-ps/adrmsadmin/Get-RmsChildCert.md | 2 +- docset/winserver2012r2-ps/adrmsadmin/Get-RmsEncryptedIL.md | 2 +- docset/winserver2012r2-ps/adrmsadmin/Get-RmsRequestInfo.md | 2 +- docset/winserver2012r2-ps/adrmsadmin/Get-RmsSvcAccount.md | 2 +- .../adrmsadmin/Get-RmsSystemHealthReport.md | 2 +- .../winserver2012r2-ps/adrmsadmin/Get-RmsUserRequestReport.md | 2 +- docset/winserver2012r2-ps/adrmsadmin/Import-RmsTPD.md | 2 +- docset/winserver2012r2-ps/adrmsadmin/Import-RmsTUD.md | 2 +- .../adrmsadmin/Initialize-RmsCryptoMode2.md | 2 +- .../winserver2012r2-ps/adrmsadmin/Install-RmsMfgEnrollment.md | 2 +- docset/winserver2012r2-ps/adrmsadmin/Install-RmsMfgSupport.md | 2 +- docset/winserver2012r2-ps/adrmsadmin/Set-RmsSvcAccount.md | 2 +- .../adrmsadmin/Uninstall-RmsMfgEnrollment.md | 2 +- .../winserver2012r2-ps/adrmsadmin/Uninstall-RmsMfgSupport.md | 2 +- docset/winserver2012r2-ps/adrmsadmin/Update-RmsCluster.md | 2 +- .../winserver2012r2-ps/adrmsadmin/Update-RmsMfgEnrollment.md | 2 +- .../Disable-AppBackgroundTaskDiagnosticLog.md | 2 +- .../Enable-AppBackgroundTaskDiagnosticLog.md | 2 +- .../appbackgroundtask/Get-AppBackgroundTask.md | 2 +- .../appbackgroundtask/Set-AppBackgroundTaskResourcePolicy.md | 2 +- .../appbackgroundtask/Start-AppBackgroundTask.md | 2 +- .../appbackgroundtask/Unregister-AppBackgroundTask.md | 2 +- .../applocker/Get-AppLockerFileInformation.md | 2 +- docset/winserver2012r2-ps/applocker/Get-AppLockerPolicy.md | 2 +- docset/winserver2012r2-ps/applocker/New-AppLockerPolicy.md | 2 +- docset/winserver2012r2-ps/applocker/Set-AppLockerPolicy.md | 2 +- docset/winserver2012r2-ps/applocker/Test-AppLockerPolicy.md | 2 +- docset/winserver2012r2-ps/appx/Add-AppxPackage.md | 2 +- docset/winserver2012r2-ps/appx/Get-AppxLastError.md | 2 +- docset/winserver2012r2-ps/appx/Get-AppxLog.md | 2 +- docset/winserver2012r2-ps/appx/Get-AppxPackage.md | 2 +- docset/winserver2012r2-ps/appx/Get-AppxPackageManifest.md | 2 +- docset/winserver2012r2-ps/appx/Remove-AppxPackage.md | 2 +- .../winserver2012r2-ps/assignedaccess/Clear-AssignedAccess.md | 2 +- .../winserver2012r2-ps/assignedaccess/Get-AssignedAccess.md | 2 +- .../winserver2012r2-ps/assignedaccess/Set-AssignedAccess.md | 2 +- docset/winserver2012r2-ps/bestpractices/Get-BpaModel.md | 2 +- docset/winserver2012r2-ps/bestpractices/Get-BpaResult.md | 2 +- docset/winserver2012r2-ps/bestpractices/Invoke-BpaModel.md | 2 +- docset/winserver2012r2-ps/bestpractices/Set-BpaResult.md | 2 +- .../winserver2012r2-ps/bitlocker/Add-BitLockerKeyProtector.md | 2 +- .../bitlocker/Backup-BitLockerKeyProtector.md | 2 +- .../winserver2012r2-ps/bitlocker/Clear-BitLockerAutoUnlock.md | 2 +- docset/winserver2012r2-ps/bitlocker/Disable-BitLocker.md | 2 +- .../bitlocker/Disable-BitLockerAutoUnlock.md | 2 +- docset/winserver2012r2-ps/bitlocker/Enable-BitLocker.md | 2 +- .../bitlocker/Enable-BitLockerAutoUnlock.md | 2 +- docset/winserver2012r2-ps/bitlocker/Get-BitLockerVolume.md | 2 +- docset/winserver2012r2-ps/bitlocker/Lock-BitLocker.md | 2 +- .../bitlocker/Remove-BitLockerKeyProtector.md | 2 +- docset/winserver2012r2-ps/bitlocker/Resume-BitLocker.md | 2 +- docset/winserver2012r2-ps/bitlocker/Suspend-BitLocker.md | 2 +- docset/winserver2012r2-ps/bitlocker/Unlock-BitLocker.md | 2 +- docset/winserver2012r2-ps/bitstransfer/Add-BitsFile.md | 2 +- .../winserver2012r2-ps/bitstransfer/Complete-BitsTransfer.md | 2 +- docset/winserver2012r2-ps/bitstransfer/Get-BitsTransfer.md | 2 +- docset/winserver2012r2-ps/bitstransfer/Remove-BitsTransfer.md | 2 +- docset/winserver2012r2-ps/bitstransfer/Resume-BitsTransfer.md | 2 +- docset/winserver2012r2-ps/bitstransfer/Set-BitsTransfer.md | 2 +- docset/winserver2012r2-ps/bitstransfer/Start-BitsTransfer.md | 2 +- .../winserver2012r2-ps/bitstransfer/Suspend-BitsTransfer.md | 2 +- .../branchcache/Add-BCDataCacheExtension.md | 2 +- docset/winserver2012r2-ps/branchcache/Clear-BCCache.md | 2 +- docset/winserver2012r2-ps/branchcache/Disable-BC.md | 2 +- .../winserver2012r2-ps/branchcache/Disable-BCDowngrading.md | 2 +- .../branchcache/Disable-BCServeOnBattery.md | 2 +- docset/winserver2012r2-ps/branchcache/Enable-BCDistributed.md | 2 +- docset/winserver2012r2-ps/branchcache/Enable-BCDowngrading.md | 2 +- .../winserver2012r2-ps/branchcache/Enable-BCHostedClient.md | 2 +- .../winserver2012r2-ps/branchcache/Enable-BCHostedServer.md | 2 +- docset/winserver2012r2-ps/branchcache/Enable-BCLocal.md | 2 +- .../winserver2012r2-ps/branchcache/Enable-BCServeOnBattery.md | 2 +- .../winserver2012r2-ps/branchcache/Export-BCCachePackage.md | 2 +- docset/winserver2012r2-ps/branchcache/Export-BCSecretKey.md | 2 +- .../branchcache/Get-BCClientConfiguration.md | 2 +- .../branchcache/Get-BCContentServerConfiguration.md | 2 +- docset/winserver2012r2-ps/branchcache/Get-BCDataCache.md | 2 +- .../branchcache/Get-BCDataCacheExtension.md | 2 +- docset/winserver2012r2-ps/branchcache/Get-BCHashCache.md | 2 +- .../branchcache/Get-BCHostedCacheServerConfiguration.md | 2 +- .../branchcache/Get-BCNetworkConfiguration.md | 2 +- docset/winserver2012r2-ps/branchcache/Get-BCStatus.md | 2 +- .../winserver2012r2-ps/branchcache/Import-BCCachePackage.md | 2 +- docset/winserver2012r2-ps/branchcache/Import-BCSecretKey.md | 2 +- .../winserver2012r2-ps/branchcache/Publish-BCFileContent.md | 2 +- docset/winserver2012r2-ps/branchcache/Publish-BCWebContent.md | 2 +- .../branchcache/Remove-BCDataCacheExtension.md | 2 +- docset/winserver2012r2-ps/branchcache/Reset-BC.md | 2 +- docset/winserver2012r2-ps/branchcache/Set-BCAuthentication.md | 2 +- docset/winserver2012r2-ps/branchcache/Set-BCCache.md | 2 +- .../branchcache/Set-BCDataCacheEntryMaxAge.md | 2 +- docset/winserver2012r2-ps/branchcache/Set-BCMinSMBLatency.md | 2 +- docset/winserver2012r2-ps/branchcache/Set-BCSecretKey.md | 2 +- .../clusterawareupdating/Add-CauClusterRole.md | 2 +- .../clusterawareupdating/Disable-CauClusterRole.md | 2 +- .../clusterawareupdating/Enable-CauClusterRole.md | 2 +- .../clusterawareupdating/Export-CauReport.md | 2 +- .../clusterawareupdating/Get-CauClusterRole.md | 2 +- .../winserver2012r2-ps/clusterawareupdating/Get-CauPlugin.md | 2 +- .../winserver2012r2-ps/clusterawareupdating/Get-CauReport.md | 2 +- docset/winserver2012r2-ps/clusterawareupdating/Get-CauRun.md | 2 +- .../winserver2012r2-ps/clusterawareupdating/Invoke-CauRun.md | 2 +- .../winserver2012r2-ps/clusterawareupdating/Invoke-CauScan.md | 2 +- .../clusterawareupdating/Register-CauPlugin.md | 2 +- .../clusterawareupdating/Remove-CauClusterRole.md | 2 +- .../clusterawareupdating/Save-CauDebugTrace.md | 2 +- .../clusterawareupdating/Set-CauClusterRole.md | 2 +- docset/winserver2012r2-ps/clusterawareupdating/Stop-CauRun.md | 2 +- .../winserver2012r2-ps/clusterawareupdating/Test-CauSetup.md | 2 +- .../clusterawareupdating/Unregister-CauPlugin.md | 2 +- docset/winserver2012r2-ps/dcbqos/Disable-NetQosFlowControl.md | 2 +- docset/winserver2012r2-ps/dcbqos/Enable-NetQosFlowControl.md | 2 +- docset/winserver2012r2-ps/dcbqos/Get-NetQosDcbxSetting.md | 2 +- docset/winserver2012r2-ps/dcbqos/Get-NetQosFlowControl.md | 2 +- docset/winserver2012r2-ps/dcbqos/Get-NetQosTrafficClass.md | 2 +- docset/winserver2012r2-ps/dcbqos/New-NetQosTrafficClass.md | 2 +- docset/winserver2012r2-ps/dcbqos/Remove-NetQosTrafficClass.md | 2 +- docset/winserver2012r2-ps/dcbqos/Set-NetQosDcbxSetting.md | 2 +- docset/winserver2012r2-ps/dcbqos/Set-NetQosFlowControl.md | 2 +- docset/winserver2012r2-ps/dcbqos/Set-NetQosTrafficClass.md | 2 +- .../winserver2012r2-ps/deduplication/Disable-DedupVolume.md | 2 +- docset/winserver2012r2-ps/deduplication/Enable-DedupVolume.md | 2 +- docset/winserver2012r2-ps/deduplication/Expand-DedupFile.md | 2 +- docset/winserver2012r2-ps/deduplication/Get-DedupJob.md | 2 +- docset/winserver2012r2-ps/deduplication/Get-DedupMetadata.md | 2 +- docset/winserver2012r2-ps/deduplication/Get-DedupSchedule.md | 2 +- docset/winserver2012r2-ps/deduplication/Get-DedupStatus.md | 2 +- docset/winserver2012r2-ps/deduplication/Get-DedupVolume.md | 2 +- .../deduplication/Measure-DedupFileMetadata.md | 2 +- docset/winserver2012r2-ps/deduplication/New-DedupSchedule.md | 2 +- .../winserver2012r2-ps/deduplication/Remove-DedupSchedule.md | 2 +- docset/winserver2012r2-ps/deduplication/Set-DedupSchedule.md | 2 +- docset/winserver2012r2-ps/deduplication/Set-DedupVolume.md | 2 +- docset/winserver2012r2-ps/deduplication/Start-DedupJob.md | 2 +- docset/winserver2012r2-ps/deduplication/Stop-DedupJob.md | 2 +- docset/winserver2012r2-ps/deduplication/Update-DedupStatus.md | 2 +- docset/winserver2012r2-ps/dfsn/Get-DfsnAccess.md | 2 +- docset/winserver2012r2-ps/dfsn/Get-DfsnFolder.md | 2 +- docset/winserver2012r2-ps/dfsn/Get-DfsnFolderTarget.md | 2 +- docset/winserver2012r2-ps/dfsn/Get-DfsnRoot.md | 2 +- docset/winserver2012r2-ps/dfsn/Get-DfsnRootTarget.md | 2 +- docset/winserver2012r2-ps/dfsn/Get-DfsnServerConfiguration.md | 2 +- docset/winserver2012r2-ps/dfsn/Grant-DfsnAccess.md | 2 +- docset/winserver2012r2-ps/dfsn/Move-DfsnFolder.md | 2 +- docset/winserver2012r2-ps/dfsn/New-DfsnFolder.md | 2 +- docset/winserver2012r2-ps/dfsn/New-DfsnFolderTarget.md | 2 +- docset/winserver2012r2-ps/dfsn/New-DfsnRoot.md | 2 +- docset/winserver2012r2-ps/dfsn/New-DfsnRootTarget.md | 2 +- docset/winserver2012r2-ps/dfsn/Remove-DfsnAccess.md | 2 +- docset/winserver2012r2-ps/dfsn/Remove-DfsnFolder.md | 2 +- docset/winserver2012r2-ps/dfsn/Remove-DfsnFolderTarget.md | 2 +- docset/winserver2012r2-ps/dfsn/Remove-DfsnRoot.md | 2 +- docset/winserver2012r2-ps/dfsn/Remove-DfsnRootTarget.md | 2 +- docset/winserver2012r2-ps/dfsn/Revoke-DfsnAccess.md | 2 +- docset/winserver2012r2-ps/dfsn/Set-DfsnFolder.md | 2 +- docset/winserver2012r2-ps/dfsn/Set-DfsnFolderTarget.md | 2 +- docset/winserver2012r2-ps/dfsn/Set-DfsnRoot.md | 2 +- docset/winserver2012r2-ps/dfsn/Set-DfsnRootTarget.md | 2 +- docset/winserver2012r2-ps/dfsn/Set-DfsnServerConfiguration.md | 2 +- docset/winserver2012r2-ps/dfsr/Add-DfsrConnection.md | 2 +- docset/winserver2012r2-ps/dfsr/Add-DfsrMember.md | 2 +- docset/winserver2012r2-ps/dfsr/ConvertFrom-DfsrGuid.md | 2 +- docset/winserver2012r2-ps/dfsr/Export-DfsrClone.md | 2 +- docset/winserver2012r2-ps/dfsr/Get-DfsReplicatedFolder.md | 2 +- docset/winserver2012r2-ps/dfsr/Get-DfsReplicationGroup.md | 2 +- docset/winserver2012r2-ps/dfsr/Get-DfsrBacklog.md | 2 +- docset/winserver2012r2-ps/dfsr/Get-DfsrCloneState.md | 2 +- docset/winserver2012r2-ps/dfsr/Get-DfsrConnection.md | 2 +- docset/winserver2012r2-ps/dfsr/Get-DfsrConnectionSchedule.md | 2 +- docset/winserver2012r2-ps/dfsr/Get-DfsrFileHash.md | 2 +- docset/winserver2012r2-ps/dfsr/Get-DfsrGroupSchedule.md | 2 +- docset/winserver2012r2-ps/dfsr/Get-DfsrIdRecord.md | 2 +- docset/winserver2012r2-ps/dfsr/Get-DfsrMember.md | 2 +- docset/winserver2012r2-ps/dfsr/Get-DfsrMembership.md | 2 +- docset/winserver2012r2-ps/dfsr/Get-DfsrPreservedFiles.md | 2 +- .../winserver2012r2-ps/dfsr/Get-DfsrServiceConfiguration.md | 2 +- docset/winserver2012r2-ps/dfsr/Get-DfsrState.md | 2 +- docset/winserver2012r2-ps/dfsr/Import-DfsrClone.md | 2 +- docset/winserver2012r2-ps/dfsr/New-DfsReplicatedFolder.md | 2 +- docset/winserver2012r2-ps/dfsr/New-DfsReplicationGroup.md | 2 +- docset/winserver2012r2-ps/dfsr/Remove-DfsReplicatedFolder.md | 2 +- docset/winserver2012r2-ps/dfsr/Remove-DfsReplicationGroup.md | 2 +- docset/winserver2012r2-ps/dfsr/Remove-DfsrConnection.md | 2 +- docset/winserver2012r2-ps/dfsr/Remove-DfsrMember.md | 2 +- .../winserver2012r2-ps/dfsr/Remove-DfsrPropagationTestFile.md | 2 +- docset/winserver2012r2-ps/dfsr/Reset-DfsrCloneState.md | 2 +- docset/winserver2012r2-ps/dfsr/Restore-DfsrPreservedFiles.md | 2 +- docset/winserver2012r2-ps/dfsr/Set-DfsReplicatedFolder.md | 2 +- docset/winserver2012r2-ps/dfsr/Set-DfsReplicationGroup.md | 2 +- docset/winserver2012r2-ps/dfsr/Set-DfsrConnection.md | 2 +- docset/winserver2012r2-ps/dfsr/Set-DfsrConnectionSchedule.md | 2 +- docset/winserver2012r2-ps/dfsr/Set-DfsrGroupSchedule.md | 2 +- docset/winserver2012r2-ps/dfsr/Set-DfsrMember.md | 2 +- docset/winserver2012r2-ps/dfsr/Set-DfsrMembership.md | 2 +- .../winserver2012r2-ps/dfsr/Set-DfsrServiceConfiguration.md | 2 +- docset/winserver2012r2-ps/dfsr/Start-DfsrPropagationTest.md | 2 +- docset/winserver2012r2-ps/dfsr/Suspend-DfsReplicationGroup.md | 2 +- docset/winserver2012r2-ps/dfsr/Sync-DfsReplicationGroup.md | 2 +- .../winserver2012r2-ps/dfsr/Update-DfsrConfigurationFromAD.md | 2 +- docset/winserver2012r2-ps/dfsr/Write-DfsrHealthReport.md | 2 +- docset/winserver2012r2-ps/dfsr/Write-DfsrPropagationReport.md | 2 +- docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerInDC.md | 2 +- .../dhcpserver/Add-DhcpServerSecurityGroup.md | 2 +- docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4Class.md | 2 +- .../dhcpserver/Add-DhcpServerv4ExclusionRange.md | 2 +- .../winserver2012r2-ps/dhcpserver/Add-DhcpServerv4Failover.md | 2 +- .../dhcpserver/Add-DhcpServerv4FailoverScope.md | 2 +- .../winserver2012r2-ps/dhcpserver/Add-DhcpServerv4Filter.md | 2 +- docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4Lease.md | 2 +- .../dhcpserver/Add-DhcpServerv4MulticastExclusionRange.md | 2 +- .../dhcpserver/Add-DhcpServerv4MulticastScope.md | 2 +- .../dhcpserver/Add-DhcpServerv4OptionDefinition.md | 2 +- .../winserver2012r2-ps/dhcpserver/Add-DhcpServerv4Policy.md | 2 +- .../dhcpserver/Add-DhcpServerv4PolicyIPRange.md | 2 +- .../dhcpserver/Add-DhcpServerv4Reservation.md | 2 +- docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4Scope.md | 2 +- .../dhcpserver/Add-DhcpServerv4Superscope.md | 2 +- docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv6Class.md | 2 +- .../dhcpserver/Add-DhcpServerv6ExclusionRange.md | 2 +- docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv6Lease.md | 2 +- .../dhcpserver/Add-DhcpServerv6OptionDefinition.md | 2 +- .../dhcpserver/Add-DhcpServerv6Reservation.md | 2 +- docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv6Scope.md | 2 +- docset/winserver2012r2-ps/dhcpserver/Backup-DhcpServer.md | 2 +- docset/winserver2012r2-ps/dhcpserver/Export-DhcpServer.md | 2 +- .../winserver2012r2-ps/dhcpserver/Get-DhcpServerAuditLog.md | 2 +- .../winserver2012r2-ps/dhcpserver/Get-DhcpServerDatabase.md | 2 +- .../dhcpserver/Get-DhcpServerDnsCredential.md | 2 +- docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerInDC.md | 2 +- docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerSetting.md | 2 +- docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerVersion.md | 2 +- .../winserver2012r2-ps/dhcpserver/Get-DhcpServerv4Binding.md | 2 +- docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4Class.md | 2 +- .../dhcpserver/Get-DhcpServerv4DnsSetting.md | 2 +- .../dhcpserver/Get-DhcpServerv4ExclusionRange.md | 2 +- .../winserver2012r2-ps/dhcpserver/Get-DhcpServerv4Failover.md | 2 +- .../winserver2012r2-ps/dhcpserver/Get-DhcpServerv4Filter.md | 2 +- .../dhcpserver/Get-DhcpServerv4FilterList.md | 2 +- .../dhcpserver/Get-DhcpServerv4FreeIPAddress.md | 2 +- docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4Lease.md | 2 +- .../dhcpserver/Get-DhcpServerv4MulticastExclusionRange.md | 2 +- .../dhcpserver/Get-DhcpServerv4MulticastLease.md | 2 +- .../dhcpserver/Get-DhcpServerv4MulticastScope.md | 2 +- .../dhcpserver/Get-DhcpServerv4MulticastScopeStatistics.md | 2 +- .../dhcpserver/Get-DhcpServerv4OptionDefinition.md | 2 +- .../dhcpserver/Get-DhcpServerv4OptionValue.md | 2 +- .../winserver2012r2-ps/dhcpserver/Get-DhcpServerv4Policy.md | 2 +- .../dhcpserver/Get-DhcpServerv4PolicyIPRange.md | 2 +- .../dhcpserver/Get-DhcpServerv4Reservation.md | 2 +- docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4Scope.md | 2 +- .../dhcpserver/Get-DhcpServerv4ScopeStatistics.md | 2 +- .../dhcpserver/Get-DhcpServerv4Statistics.md | 2 +- .../dhcpserver/Get-DhcpServerv4Superscope.md | 2 +- .../dhcpserver/Get-DhcpServerv4SuperscopeStatistics.md | 2 +- .../winserver2012r2-ps/dhcpserver/Get-DhcpServerv6Binding.md | 2 +- docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6Class.md | 2 +- .../dhcpserver/Get-DhcpServerv6DnsSetting.md | 2 +- .../dhcpserver/Get-DhcpServerv6ExclusionRange.md | 2 +- .../dhcpserver/Get-DhcpServerv6FreeIPAddress.md | 2 +- docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6Lease.md | 2 +- .../dhcpserver/Get-DhcpServerv6OptionDefinition.md | 2 +- .../dhcpserver/Get-DhcpServerv6OptionValue.md | 2 +- .../dhcpserver/Get-DhcpServerv6Reservation.md | 2 +- docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6Scope.md | 2 +- .../dhcpserver/Get-DhcpServerv6ScopeStatistics.md | 2 +- .../dhcpserver/Get-DhcpServerv6StatelessStatistics.md | 2 +- .../dhcpserver/Get-DhcpServerv6StatelessStore.md | 2 +- .../dhcpserver/Get-DhcpServerv6Statistics.md | 2 +- docset/winserver2012r2-ps/dhcpserver/Import-DhcpServer.md | 2 +- .../dhcpserver/Invoke-DhcpServerv4FailoverReplication.md | 2 +- .../dhcpserver/Remove-DhcpServerDnsCredential.md | 2 +- docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerInDC.md | 2 +- .../winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4Class.md | 2 +- .../dhcpserver/Remove-DhcpServerv4ExclusionRange.md | 2 +- .../dhcpserver/Remove-DhcpServerv4Failover.md | 2 +- .../dhcpserver/Remove-DhcpServerv4FailoverScope.md | 2 +- .../dhcpserver/Remove-DhcpServerv4Filter.md | 2 +- .../winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4Lease.md | 2 +- .../dhcpserver/Remove-DhcpServerv4MulticastExclusionRange.md | 2 +- .../dhcpserver/Remove-DhcpServerv4MulticastLease.md | 2 +- .../dhcpserver/Remove-DhcpServerv4MulticastScope.md | 2 +- .../dhcpserver/Remove-DhcpServerv4OptionDefinition.md | 2 +- .../dhcpserver/Remove-DhcpServerv4OptionValue.md | 2 +- .../dhcpserver/Remove-DhcpServerv4Policy.md | 2 +- .../dhcpserver/Remove-DhcpServerv4PolicyIPRange.md | 2 +- .../dhcpserver/Remove-DhcpServerv4Reservation.md | 2 +- .../winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4Scope.md | 2 +- .../dhcpserver/Remove-DhcpServerv4Superscope.md | 2 +- .../winserver2012r2-ps/dhcpserver/Remove-DhcpServerv6Class.md | 2 +- .../dhcpserver/Remove-DhcpServerv6ExclusionRange.md | 2 +- .../winserver2012r2-ps/dhcpserver/Remove-DhcpServerv6Lease.md | 2 +- .../dhcpserver/Remove-DhcpServerv6OptionDefinition.md | 2 +- .../dhcpserver/Remove-DhcpServerv6OptionValue.md | 2 +- .../dhcpserver/Remove-DhcpServerv6Reservation.md | 2 +- .../winserver2012r2-ps/dhcpserver/Remove-DhcpServerv6Scope.md | 2 +- .../dhcpserver/Rename-DhcpServerv4Superscope.md | 2 +- .../dhcpserver/Repair-DhcpServerv4IPRecord.md | 2 +- docset/winserver2012r2-ps/dhcpserver/Restore-DhcpServer.md | 2 +- .../winserver2012r2-ps/dhcpserver/Set-DhcpServerAuditLog.md | 2 +- .../winserver2012r2-ps/dhcpserver/Set-DhcpServerDatabase.md | 2 +- .../dhcpserver/Set-DhcpServerDnsCredential.md | 2 +- docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerSetting.md | 2 +- .../winserver2012r2-ps/dhcpserver/Set-DhcpServerv4Binding.md | 2 +- docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv4Class.md | 2 +- .../dhcpserver/Set-DhcpServerv4DnsSetting.md | 2 +- .../winserver2012r2-ps/dhcpserver/Set-DhcpServerv4Failover.md | 2 +- .../dhcpserver/Set-DhcpServerv4FilterList.md | 2 +- .../dhcpserver/Set-DhcpServerv4MulticastScope.md | 2 +- .../dhcpserver/Set-DhcpServerv4OptionDefinition.md | 2 +- .../dhcpserver/Set-DhcpServerv4OptionValue.md | 2 +- .../winserver2012r2-ps/dhcpserver/Set-DhcpServerv4Policy.md | 2 +- .../dhcpserver/Set-DhcpServerv4Reservation.md | 2 +- docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv4Scope.md | 2 +- .../winserver2012r2-ps/dhcpserver/Set-DhcpServerv6Binding.md | 2 +- docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv6Class.md | 2 +- .../dhcpserver/Set-DhcpServerv6DnsSetting.md | 2 +- .../dhcpserver/Set-DhcpServerv6OptionDefinition.md | 2 +- .../dhcpserver/Set-DhcpServerv6OptionValue.md | 2 +- .../dhcpserver/Set-DhcpServerv6Reservation.md | 2 +- docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv6Scope.md | 2 +- .../dhcpserver/Set-DhcpServerv6StatelessStore.md | 2 +- .../Disable-DAManualEntryPointSelection.md | 2 +- .../Enable-DAManualEntryPointSelection.md | 2 +- .../Get-DAClientExperienceConfiguration.md | 2 +- .../directaccessclientcomponents/Get-DAEntryPointTableItem.md | 2 +- .../directaccessclientcomponents/New-DAEntryPointTableItem.md | 2 +- .../Remove-DAEntryPointTableItem.md | 2 +- .../Rename-DAEntryPointTableItem.md | 2 +- .../Reset-DAClientExperienceConfiguration.md | 2 +- .../Reset-DAEntryPointTableItem.md | 2 +- .../Set-DAClientExperienceConfiguration.md | 2 +- .../directaccessclientcomponents/Set-DAEntryPointTableItem.md | 2 +- docset/winserver2012r2-ps/dism/Add-AppxProvisionedPackage.md | 2 +- docset/winserver2012r2-ps/dism/Add-WindowsDriver.md | 2 +- docset/winserver2012r2-ps/dism/Add-WindowsImage.md | 2 +- docset/winserver2012r2-ps/dism/Add-WindowsPackage.md | 2 +- .../winserver2012r2-ps/dism/Clear-WindowsCorruptMountPoint.md | 2 +- .../winserver2012r2-ps/dism/Disable-WindowsOptionalFeature.md | 2 +- docset/winserver2012r2-ps/dism/Dismount-WindowsImage.md | 2 +- .../winserver2012r2-ps/dism/Enable-WindowsOptionalFeature.md | 2 +- docset/winserver2012r2-ps/dism/Expand-WindowsImage.md | 2 +- docset/winserver2012r2-ps/dism/Export-WindowsDriver.md | 2 +- docset/winserver2012r2-ps/dism/Export-WindowsImage.md | 2 +- docset/winserver2012r2-ps/dism/Get-AppxProvisionedPackage.md | 2 +- docset/winserver2012r2-ps/dism/Get-WIMBootEntry.md | 2 +- docset/winserver2012r2-ps/dism/Get-WindowsDriver.md | 2 +- docset/winserver2012r2-ps/dism/Get-WindowsEdition.md | 2 +- docset/winserver2012r2-ps/dism/Get-WindowsImage.md | 2 +- docset/winserver2012r2-ps/dism/Get-WindowsImageContent.md | 2 +- docset/winserver2012r2-ps/dism/Get-WindowsOptionalFeature.md | 2 +- docset/winserver2012r2-ps/dism/Get-WindowsPackage.md | 2 +- docset/winserver2012r2-ps/dism/Mount-WindowsImage.md | 2 +- docset/winserver2012r2-ps/dism/New-WindowsCustomImage.md | 2 +- docset/winserver2012r2-ps/dism/New-WindowsImage.md | 2 +- docset/winserver2012r2-ps/dism/Optimize-WindowsImage.md | 2 +- .../winserver2012r2-ps/dism/Remove-AppxProvisionedPackage.md | 2 +- docset/winserver2012r2-ps/dism/Remove-WindowsDriver.md | 2 +- docset/winserver2012r2-ps/dism/Remove-WindowsImage.md | 2 +- docset/winserver2012r2-ps/dism/Remove-WindowsPackage.md | 2 +- docset/winserver2012r2-ps/dism/Repair-WindowsImage.md | 2 +- docset/winserver2012r2-ps/dism/Save-WindowsImage.md | 2 +- docset/winserver2012r2-ps/dism/Set-AppXProvisionedDataFile.md | 2 +- docset/winserver2012r2-ps/dism/Set-WindowsEdition.md | 2 +- docset/winserver2012r2-ps/dism/Set-WindowsProductKey.md | 2 +- docset/winserver2012r2-ps/dism/Split-WindowsImage.md | 2 +- docset/winserver2012r2-ps/dism/Update-WIMBootEntry.md | 2 +- docset/winserver2012r2-ps/dism/Use-WindowsUnattend.md | 2 +- docset/winserver2012r2-ps/dnsclient/Add-DnsClientNrptRule.md | 2 +- docset/winserver2012r2-ps/dnsclient/Clear-DnsClientCache.md | 2 +- docset/winserver2012r2-ps/dnsclient/Get-DnsClient.md | 2 +- docset/winserver2012r2-ps/dnsclient/Get-DnsClientCache.md | 2 +- .../dnsclient/Get-DnsClientGlobalSetting.md | 2 +- .../winserver2012r2-ps/dnsclient/Get-DnsClientNrptGlobal.md | 2 +- .../winserver2012r2-ps/dnsclient/Get-DnsClientNrptPolicy.md | 2 +- docset/winserver2012r2-ps/dnsclient/Get-DnsClientNrptRule.md | 2 +- .../dnsclient/Get-DnsClientServerAddress.md | 2 +- docset/winserver2012r2-ps/dnsclient/Register-DnsClient.md | 2 +- .../winserver2012r2-ps/dnsclient/Remove-DnsClientNrptRule.md | 2 +- docset/winserver2012r2-ps/dnsclient/Resolve-DnsName.md | 2 +- docset/winserver2012r2-ps/dnsclient/Set-DnsClient.md | 2 +- .../dnsclient/Set-DnsClientGlobalSetting.md | 2 +- .../winserver2012r2-ps/dnsclient/Set-DnsClientNrptGlobal.md | 2 +- docset/winserver2012r2-ps/dnsclient/Set-DnsClientNrptRule.md | 2 +- .../dnsclient/Set-DnsClientServerAddress.md | 2 +- .../dnsserver/Add-DnsServerConditionalForwarderZone.md | 2 +- .../dnsserver/Add-DnsServerDirectoryPartition.md | 2 +- docset/winserver2012r2-ps/dnsserver/Add-DnsServerForwarder.md | 2 +- .../winserver2012r2-ps/dnsserver/Add-DnsServerPrimaryZone.md | 2 +- .../dnsserver/Add-DnsServerResourceRecord.md | 2 +- .../dnsserver/Add-DnsServerResourceRecordA.md | 2 +- .../dnsserver/Add-DnsServerResourceRecordAAAA.md | 2 +- .../dnsserver/Add-DnsServerResourceRecordCName.md | 2 +- .../dnsserver/Add-DnsServerResourceRecordDS.md | 2 +- .../dnsserver/Add-DnsServerResourceRecordDnsKey.md | 2 +- .../dnsserver/Add-DnsServerResourceRecordMX.md | 2 +- .../dnsserver/Add-DnsServerResourceRecordPtr.md | 2 +- docset/winserver2012r2-ps/dnsserver/Add-DnsServerRootHint.md | 2 +- .../dnsserver/Add-DnsServerSecondaryZone.md | 2 +- .../winserver2012r2-ps/dnsserver/Add-DnsServerSigningKey.md | 2 +- docset/winserver2012r2-ps/dnsserver/Add-DnsServerStubZone.md | 2 +- .../winserver2012r2-ps/dnsserver/Add-DnsServerTrustAnchor.md | 2 +- .../dnsserver/Add-DnsServerZoneDelegation.md | 2 +- docset/winserver2012r2-ps/dnsserver/Clear-DnsServerCache.md | 2 +- .../winserver2012r2-ps/dnsserver/Clear-DnsServerStatistics.md | 2 +- .../dnsserver/ConvertTo-DnsServerPrimaryZone.md | 2 +- .../dnsserver/ConvertTo-DnsServerSecondaryZone.md | 2 +- .../dnsserver/Disable-DnsServerSigningKeyRollover.md | 2 +- .../dnsserver/Enable-DnsServerSigningKeyRollover.md | 2 +- .../dnsserver/Export-DnsServerDnsSecPublicKey.md | 2 +- docset/winserver2012r2-ps/dnsserver/Export-DnsServerZone.md | 2 +- docset/winserver2012r2-ps/dnsserver/Get-DnsServer.md | 2 +- docset/winserver2012r2-ps/dnsserver/Get-DnsServerCache.md | 2 +- .../winserver2012r2-ps/dnsserver/Get-DnsServerDiagnostics.md | 2 +- .../dnsserver/Get-DnsServerDirectoryPartition.md | 2 +- .../dnsserver/Get-DnsServerDnsSecZoneSetting.md | 2 +- docset/winserver2012r2-ps/dnsserver/Get-DnsServerDsSetting.md | 2 +- docset/winserver2012r2-ps/dnsserver/Get-DnsServerEDns.md | 2 +- docset/winserver2012r2-ps/dnsserver/Get-DnsServerForwarder.md | 2 +- .../dnsserver/Get-DnsServerGlobalNameZone.md | 2 +- .../dnsserver/Get-DnsServerGlobalQueryBlockList.md | 2 +- docset/winserver2012r2-ps/dnsserver/Get-DnsServerRecursion.md | 2 +- .../dnsserver/Get-DnsServerResourceRecord.md | 2 +- docset/winserver2012r2-ps/dnsserver/Get-DnsServerRootHint.md | 2 +- .../winserver2012r2-ps/dnsserver/Get-DnsServerScavenging.md | 2 +- docset/winserver2012r2-ps/dnsserver/Get-DnsServerSetting.md | 2 +- .../winserver2012r2-ps/dnsserver/Get-DnsServerSigningKey.md | 2 +- .../winserver2012r2-ps/dnsserver/Get-DnsServerStatistics.md | 2 +- .../winserver2012r2-ps/dnsserver/Get-DnsServerTrustAnchor.md | 2 +- .../winserver2012r2-ps/dnsserver/Get-DnsServerTrustPoint.md | 2 +- docset/winserver2012r2-ps/dnsserver/Get-DnsServerZone.md | 2 +- docset/winserver2012r2-ps/dnsserver/Get-DnsServerZoneAging.md | 2 +- .../dnsserver/Get-DnsServerZoneDelegation.md | 2 +- .../dnsserver/Import-DnsServerResourceRecordDS.md | 2 +- .../winserver2012r2-ps/dnsserver/Import-DnsServerRootHint.md | 2 +- .../dnsserver/Import-DnsServerTrustAnchor.md | 2 +- .../dnsserver/Invoke-DnsServerSigningKeyRollover.md | 2 +- .../winserver2012r2-ps/dnsserver/Invoke-DnsServerZoneSign.md | 2 +- .../dnsserver/Invoke-DnsServerZoneUnsign.md | 2 +- .../dnsserver/Register-DnsServerDirectoryPartition.md | 2 +- .../dnsserver/Remove-DnsServerDirectoryPartition.md | 2 +- .../winserver2012r2-ps/dnsserver/Remove-DnsServerForwarder.md | 2 +- .../dnsserver/Remove-DnsServerResourceRecord.md | 2 +- .../winserver2012r2-ps/dnsserver/Remove-DnsServerRootHint.md | 2 +- .../dnsserver/Remove-DnsServerSigningKey.md | 2 +- .../dnsserver/Remove-DnsServerTrustAnchor.md | 2 +- docset/winserver2012r2-ps/dnsserver/Remove-DnsServerZone.md | 2 +- .../dnsserver/Remove-DnsServerZoneDelegation.md | 2 +- .../dnsserver/Reset-DnsServerZoneKeyMasterRole.md | 2 +- .../dnsserver/Restore-DnsServerPrimaryZone.md | 2 +- .../dnsserver/Restore-DnsServerSecondaryZone.md | 2 +- docset/winserver2012r2-ps/dnsserver/Resume-DnsServerZone.md | 2 +- docset/winserver2012r2-ps/dnsserver/Set-DnsServer.md | 2 +- docset/winserver2012r2-ps/dnsserver/Set-DnsServerCache.md | 2 +- .../dnsserver/Set-DnsServerConditionalForwarderZone.md | 2 +- .../winserver2012r2-ps/dnsserver/Set-DnsServerDiagnostics.md | 2 +- .../dnsserver/Set-DnsServerDnsSecZoneSetting.md | 2 +- docset/winserver2012r2-ps/dnsserver/Set-DnsServerDsSetting.md | 2 +- docset/winserver2012r2-ps/dnsserver/Set-DnsServerEDns.md | 2 +- docset/winserver2012r2-ps/dnsserver/Set-DnsServerForwarder.md | 2 +- .../dnsserver/Set-DnsServerGlobalNameZone.md | 2 +- .../dnsserver/Set-DnsServerGlobalQueryBlockList.md | 2 +- .../winserver2012r2-ps/dnsserver/Set-DnsServerPrimaryZone.md | 2 +- docset/winserver2012r2-ps/dnsserver/Set-DnsServerRecursion.md | 2 +- .../dnsserver/Set-DnsServerResourceRecord.md | 2 +- .../dnsserver/Set-DnsServerResourceRecordAging.md | 2 +- docset/winserver2012r2-ps/dnsserver/Set-DnsServerRootHint.md | 2 +- .../winserver2012r2-ps/dnsserver/Set-DnsServerScavenging.md | 2 +- .../dnsserver/Set-DnsServerSecondaryZone.md | 2 +- docset/winserver2012r2-ps/dnsserver/Set-DnsServerSetting.md | 2 +- .../winserver2012r2-ps/dnsserver/Set-DnsServerSigningKey.md | 2 +- docset/winserver2012r2-ps/dnsserver/Set-DnsServerStubZone.md | 2 +- docset/winserver2012r2-ps/dnsserver/Set-DnsServerZoneAging.md | 2 +- .../dnsserver/Set-DnsServerZoneDelegation.md | 2 +- docset/winserver2012r2-ps/dnsserver/Show-DnsServerCache.md | 2 +- .../dnsserver/Show-DnsServerKeyStorageProvider.md | 2 +- .../winserver2012r2-ps/dnsserver/Start-DnsServerScavenging.md | 2 +- .../dnsserver/Start-DnsServerZoneTransfer.md | 2 +- .../dnsserver/Step-DnsServerSigningKeyRollover.md | 2 +- docset/winserver2012r2-ps/dnsserver/Suspend-DnsServerZone.md | 2 +- docset/winserver2012r2-ps/dnsserver/Sync-DnsServerZone.md | 2 +- docset/winserver2012r2-ps/dnsserver/Test-DnsServer.md | 2 +- .../dnsserver/Test-DnsServerDnsSecZoneSetting.md | 2 +- .../dnsserver/Unregister-DnsServerDirectoryPartition.md | 2 +- .../dnsserver/Update-DnsServerTrustPoint.md | 2 +- .../failoverclusters/Add-ClusterCheckpoint.md | 2 +- docset/winserver2012r2-ps/failoverclusters/Add-ClusterDisk.md | 2 +- .../failoverclusters/Add-ClusterFileServerRole.md | 2 +- .../failoverclusters/Add-ClusterGenericApplicationRole.md | 2 +- .../failoverclusters/Add-ClusterGenericScriptRole.md | 2 +- .../failoverclusters/Add-ClusterGenericServiceRole.md | 2 +- .../winserver2012r2-ps/failoverclusters/Add-ClusterGroup.md | 2 +- docset/winserver2012r2-ps/failoverclusters/Add-ClusterNode.md | 2 +- .../failoverclusters/Add-ClusterPrintServerRole.md | 2 +- .../failoverclusters/Add-ClusterResource.md | 2 +- .../failoverclusters/Add-ClusterResourceDependency.md | 2 +- .../failoverclusters/Add-ClusterResourceType.md | 2 +- .../failoverclusters/Add-ClusterScaleOutFileServerRole.md | 2 +- .../failoverclusters/Add-ClusterServerRole.md | 2 +- .../failoverclusters/Add-ClusterSharedVolume.md | 2 +- .../failoverclusters/Add-ClusterVMMonitoredItem.md | 2 +- .../failoverclusters/Add-ClusterVirtualMachineRole.md | 2 +- .../failoverclusters/Add-ClusteriSCSITargetServerRole.md | 2 +- .../failoverclusters/Block-ClusterAccess.md | 2 +- .../failoverclusters/Clear-ClusterDiskReservation.md | 2 +- .../winserver2012r2-ps/failoverclusters/Clear-ClusterNode.md | 2 +- docset/winserver2012r2-ps/failoverclusters/Get-Cluster.md | 2 +- .../winserver2012r2-ps/failoverclusters/Get-ClusterAccess.md | 2 +- .../failoverclusters/Get-ClusterAvailableDisk.md | 2 +- .../failoverclusters/Get-ClusterCheckpoint.md | 2 +- .../winserver2012r2-ps/failoverclusters/Get-ClusterGroup.md | 2 +- docset/winserver2012r2-ps/failoverclusters/Get-ClusterLog.md | 2 +- .../winserver2012r2-ps/failoverclusters/Get-ClusterNetwork.md | 2 +- .../failoverclusters/Get-ClusterNetworkInterface.md | 2 +- docset/winserver2012r2-ps/failoverclusters/Get-ClusterNode.md | 2 +- .../failoverclusters/Get-ClusterOwnerNode.md | 2 +- .../failoverclusters/Get-ClusterParameter.md | 2 +- .../winserver2012r2-ps/failoverclusters/Get-ClusterQuorum.md | 2 +- .../failoverclusters/Get-ClusterResource.md | 2 +- .../failoverclusters/Get-ClusterResourceDependency.md | 2 +- .../failoverclusters/Get-ClusterResourceDependencyReport.md | 2 +- .../failoverclusters/Get-ClusterResourceType.md | 2 +- .../failoverclusters/Get-ClusterSharedVolume.md | 2 +- .../failoverclusters/Get-ClusterSharedVolumeState.md | 2 +- .../failoverclusters/Get-ClusterVMMonitoredItem.md | 2 +- .../failoverclusters/Grant-ClusterAccess.md | 2 +- .../winserver2012r2-ps/failoverclusters/Move-ClusterGroup.md | 2 +- .../failoverclusters/Move-ClusterResource.md | 2 +- .../failoverclusters/Move-ClusterSharedVolume.md | 2 +- .../failoverclusters/Move-ClusterVirtualMachineRole.md | 2 +- docset/winserver2012r2-ps/failoverclusters/New-Cluster.md | 2 +- docset/winserver2012r2-ps/failoverclusters/Remove-Cluster.md | 2 +- .../failoverclusters/Remove-ClusterAccess.md | 2 +- .../failoverclusters/Remove-ClusterCheckpoint.md | 2 +- .../failoverclusters/Remove-ClusterGroup.md | 2 +- .../winserver2012r2-ps/failoverclusters/Remove-ClusterNode.md | 2 +- .../failoverclusters/Remove-ClusterResource.md | 2 +- .../failoverclusters/Remove-ClusterResourceDependency.md | 2 +- .../failoverclusters/Remove-ClusterResourceType.md | 2 +- .../failoverclusters/Remove-ClusterSharedVolume.md | 2 +- .../failoverclusters/Remove-ClusterVMMonitoredItem.md | 2 +- .../failoverclusters/Repair-ClusterSharedVolume.md | 2 +- .../failoverclusters/Reset-ClusterVMMonitoredState.md | 2 +- .../winserver2012r2-ps/failoverclusters/Resume-ClusterNode.md | 2 +- .../failoverclusters/Resume-ClusterResource.md | 2 +- docset/winserver2012r2-ps/failoverclusters/Set-ClusterLog.md | 2 +- .../failoverclusters/Set-ClusterOwnerNode.md | 2 +- .../failoverclusters/Set-ClusterParameter.md | 2 +- .../winserver2012r2-ps/failoverclusters/Set-ClusterQuorum.md | 2 +- .../failoverclusters/Set-ClusterResourceDependency.md | 2 +- docset/winserver2012r2-ps/failoverclusters/Start-Cluster.md | 2 +- .../winserver2012r2-ps/failoverclusters/Start-ClusterGroup.md | 2 +- .../winserver2012r2-ps/failoverclusters/Start-ClusterNode.md | 2 +- .../failoverclusters/Start-ClusterResource.md | 2 +- docset/winserver2012r2-ps/failoverclusters/Stop-Cluster.md | 2 +- .../winserver2012r2-ps/failoverclusters/Stop-ClusterGroup.md | 2 +- .../winserver2012r2-ps/failoverclusters/Stop-ClusterNode.md | 2 +- .../failoverclusters/Stop-ClusterResource.md | 2 +- .../failoverclusters/Suspend-ClusterNode.md | 2 +- .../failoverclusters/Suspend-ClusterResource.md | 2 +- docset/winserver2012r2-ps/failoverclusters/Test-Cluster.md | 2 +- .../failoverclusters/Test-ClusterResourceFailure.md | 2 +- .../failoverclusters/Update-ClusterIPResource.md | 2 +- .../failoverclusters/Update-ClusterNetworkNameResource.md | 2 +- .../Update-ClusterVirtualMachineConfiguration.md | 2 +- .../fileserverresourcemanager/Get-FsrmAdrSetting.md | 2 +- .../fileserverresourcemanager/Get-FsrmAutoQuota.md | 2 +- .../fileserverresourcemanager/Get-FsrmClassification.md | 2 +- .../Get-FsrmClassificationPropertyDefinition.md | 2 +- .../fileserverresourcemanager/Get-FsrmClassificationRule.md | 2 +- .../fileserverresourcemanager/Get-FsrmEffectiveNamespace.md | 2 +- .../fileserverresourcemanager/Get-FsrmFileGroup.md | 2 +- .../fileserverresourcemanager/Get-FsrmFileManagementJob.md | 2 +- .../fileserverresourcemanager/Get-FsrmFileScreen.md | 2 +- .../fileserverresourcemanager/Get-FsrmFileScreenException.md | 2 +- .../fileserverresourcemanager/Get-FsrmFileScreenTemplate.md | 2 +- .../fileserverresourcemanager/Get-FsrmMacro.md | 2 +- .../fileserverresourcemanager/Get-FsrmMgmtProperty.md | 2 +- .../fileserverresourcemanager/Get-FsrmQuota.md | 2 +- .../fileserverresourcemanager/Get-FsrmQuotaTemplate.md | 2 +- .../fileserverresourcemanager/Get-FsrmRmsTemplate.md | 2 +- .../fileserverresourcemanager/Get-FsrmSetting.md | 2 +- .../fileserverresourcemanager/Get-FsrmStorageReport.md | 2 +- .../fileserverresourcemanager/New-FsrmAction.md | 2 +- .../fileserverresourcemanager/New-FsrmAutoQuota.md | 2 +- .../New-FsrmClassificationPropertyDefinition.md | 2 +- .../New-FsrmClassificationPropertyValue.md | 2 +- .../fileserverresourcemanager/New-FsrmClassificationRule.md | 2 +- .../fileserverresourcemanager/New-FsrmFMJNotification.md | 2 +- .../fileserverresourcemanager/New-FsrmFileGroup.md | 2 +- .../fileserverresourcemanager/New-FsrmFileManagementJob.md | 2 +- .../fileserverresourcemanager/New-FsrmFileScreen.md | 2 +- .../fileserverresourcemanager/New-FsrmFileScreenException.md | 2 +- .../fileserverresourcemanager/New-FsrmFileScreenTemplate.md | 2 +- .../fileserverresourcemanager/New-FsrmFmjAction.md | 2 +- .../fileserverresourcemanager/New-FsrmFmjCondition.md | 2 +- .../New-FsrmFmjNotificationAction.md | 2 +- .../fileserverresourcemanager/New-FsrmQuota.md | 2 +- .../fileserverresourcemanager/New-FsrmQuotaTemplate.md | 2 +- .../fileserverresourcemanager/New-FsrmQuotaThreshold.md | 2 +- .../fileserverresourcemanager/New-FsrmScheduledTask.md | 2 +- .../fileserverresourcemanager/New-FsrmStorageReport.md | 2 +- .../fileserverresourcemanager/Remove-FsrmAutoQuota.md | 2 +- .../Remove-FsrmClassificationPropertyDefinition.md | 2 +- .../Remove-FsrmClassificationRule.md | 2 +- .../fileserverresourcemanager/Remove-FsrmFileGroup.md | 2 +- .../fileserverresourcemanager/Remove-FsrmFileManagementJob.md | 2 +- .../fileserverresourcemanager/Remove-FsrmFileScreen.md | 2 +- .../Remove-FsrmFileScreenException.md | 2 +- .../Remove-FsrmFileScreenTemplate.md | 2 +- .../fileserverresourcemanager/Remove-FsrmMgmtProperty.md | 2 +- .../fileserverresourcemanager/Remove-FsrmQuota.md | 2 +- .../fileserverresourcemanager/Remove-FsrmQuotaTemplate.md | 2 +- .../fileserverresourcemanager/Remove-FsrmStorageReport.md | 2 +- .../fileserverresourcemanager/Reset-FsrmFileScreen.md | 2 +- .../fileserverresourcemanager/Reset-FsrmQuota.md | 2 +- .../fileserverresourcemanager/Send-FsrmTestEmail.md | 2 +- .../fileserverresourcemanager/Set-FsrmAdrSetting.md | 2 +- .../fileserverresourcemanager/Set-FsrmAutoQuota.md | 2 +- .../fileserverresourcemanager/Set-FsrmClassification.md | 2 +- .../Set-FsrmClassificationPropertyDefinition.md | 2 +- .../fileserverresourcemanager/Set-FsrmClassificationRule.md | 2 +- .../fileserverresourcemanager/Set-FsrmFileGroup.md | 2 +- .../fileserverresourcemanager/Set-FsrmFileManagementJob.md | 2 +- .../fileserverresourcemanager/Set-FsrmFileScreen.md | 2 +- .../fileserverresourcemanager/Set-FsrmFileScreenException.md | 2 +- .../fileserverresourcemanager/Set-FsrmFileScreenTemplate.md | 2 +- .../fileserverresourcemanager/Set-FsrmMgmtProperty.md | 2 +- .../fileserverresourcemanager/Set-FsrmQuota.md | 2 +- .../fileserverresourcemanager/Set-FsrmQuotaTemplate.md | 2 +- .../fileserverresourcemanager/Set-FsrmSetting.md | 2 +- .../fileserverresourcemanager/Set-FsrmStorageReport.md | 2 +- .../fileserverresourcemanager/Start-FsrmClassification.md | 2 +- .../fileserverresourcemanager/Start-FsrmFileManagementJob.md | 2 +- .../fileserverresourcemanager/Start-FsrmStorageReport.md | 2 +- .../fileserverresourcemanager/Stop-FsrmClassification.md | 2 +- .../fileserverresourcemanager/Stop-FsrmFileManagementJob.md | 2 +- .../fileserverresourcemanager/Stop-FsrmStorageReport.md | 2 +- .../fileserverresourcemanager/Update-FsrmAutoQuota.md | 2 +- .../Update-FsrmClassificationPropertyDefinition.md | 2 +- .../fileserverresourcemanager/Update-FsrmQuota.md | 2 +- .../fileserverresourcemanager/Wait-FsrmClassification.md | 2 +- .../fileserverresourcemanager/Wait-FsrmFileManagementJob.md | 2 +- .../fileserverresourcemanager/Wait-FsrmStorageReport.md | 2 +- docset/winserver2012r2-ps/grouppolicy/Backup-GPO.md | 2 +- docset/winserver2012r2-ps/grouppolicy/Copy-GPO.md | 2 +- docset/winserver2012r2-ps/grouppolicy/Get-GPInheritance.md | 2 +- docset/winserver2012r2-ps/grouppolicy/Get-GPO.md | 2 +- docset/winserver2012r2-ps/grouppolicy/Get-GPOReport.md | 2 +- docset/winserver2012r2-ps/grouppolicy/Get-GPPermission.md | 2 +- .../winserver2012r2-ps/grouppolicy/Get-GPPrefRegistryValue.md | 2 +- docset/winserver2012r2-ps/grouppolicy/Get-GPRegistryValue.md | 2 +- .../grouppolicy/Get-GPResultantSetOfPolicy.md | 2 +- docset/winserver2012r2-ps/grouppolicy/Get-GPStarterGPO.md | 2 +- docset/winserver2012r2-ps/grouppolicy/Import-GPO.md | 2 +- docset/winserver2012r2-ps/grouppolicy/Invoke-GPUpdate.md | 2 +- docset/winserver2012r2-ps/grouppolicy/New-GPLink.md | 2 +- docset/winserver2012r2-ps/grouppolicy/New-GPO.md | 2 +- docset/winserver2012r2-ps/grouppolicy/New-GPStarterGPO.md | 2 +- docset/winserver2012r2-ps/grouppolicy/Remove-GPLink.md | 2 +- docset/winserver2012r2-ps/grouppolicy/Remove-GPO.md | 2 +- .../grouppolicy/Remove-GPPrefRegistryValue.md | 2 +- .../winserver2012r2-ps/grouppolicy/Remove-GPRegistryValue.md | 2 +- docset/winserver2012r2-ps/grouppolicy/Rename-GPO.md | 2 +- docset/winserver2012r2-ps/grouppolicy/Restore-GPO.md | 2 +- docset/winserver2012r2-ps/grouppolicy/Set-GPInheritance.md | 2 +- docset/winserver2012r2-ps/grouppolicy/Set-GPLink.md | 2 +- docset/winserver2012r2-ps/grouppolicy/Set-GPPermission.md | 2 +- .../winserver2012r2-ps/grouppolicy/Set-GPPrefRegistryValue.md | 2 +- docset/winserver2012r2-ps/grouppolicy/Set-GPRegistryValue.md | 2 +- docset/winserver2012r2-ps/hcs/Disable-HcsNetInterface.md | 2 +- docset/winserver2012r2-ps/hcs/Disable-HcsRemoteManagement.md | 2 +- docset/winserver2012r2-ps/hcs/Disable-HcsSupportAccess.md | 2 +- docset/winserver2012r2-ps/hcs/Disable-HcsWebProxy.md | 2 +- docset/winserver2012r2-ps/hcs/Enable-HcsNetInterface.md | 2 +- docset/winserver2012r2-ps/hcs/Enable-HcsRemoteManagement.md | 2 +- docset/winserver2012r2-ps/hcs/Enable-HcsSupportAccess.md | 2 +- docset/winserver2012r2-ps/hcs/Enable-HcsWebProxy.md | 2 +- docset/winserver2012r2-ps/hcs/Enter-HcsMaintenanceMode.md | 2 +- docset/winserver2012r2-ps/hcs/Enter-HcsSupportSession.md | 2 +- docset/winserver2012r2-ps/hcs/Exit-HcsMaintenanceMode.md | 2 +- docset/winserver2012r2-ps/hcs/Export-HcsSupportPackage.md | 2 +- .../winserver2012r2-ps/hcs/Get-HcsDnsClientServerAddress.md | 2 +- docset/winserver2012r2-ps/hcs/Get-HcsFirmwareVersion.md | 2 +- docset/winserver2012r2-ps/hcs/Get-HcsNetInterface.md | 2 +- .../winserver2012r2-ps/hcs/Get-HcsNtpClientServerAddress.md | 2 +- docset/winserver2012r2-ps/hcs/Get-HcsRemoteManagementCert.md | 2 +- docset/winserver2012r2-ps/hcs/Get-HcsSupportAccess.md | 2 +- docset/winserver2012r2-ps/hcs/Get-HcsSystem.md | 2 +- docset/winserver2012r2-ps/hcs/Get-HcsUpdateAvailability.md | 2 +- docset/winserver2012r2-ps/hcs/Get-HcsUpdateStatus.md | 2 +- docset/winserver2012r2-ps/hcs/Get-HcsWebProxy.md | 2 +- docset/winserver2012r2-ps/hcs/Get-HcsWuaVersion.md | 2 +- docset/winserver2012r2-ps/hcs/Invoke-HcsSetupWizard.md | 2 +- docset/winserver2012r2-ps/hcs/Restart-HcsController.md | 2 +- .../winserver2012r2-ps/hcs/Set-HcsDnsClientServerAddress.md | 2 +- docset/winserver2012r2-ps/hcs/Set-HcsNetInterface.md | 2 +- .../winserver2012r2-ps/hcs/Set-HcsNtpClientServerAddress.md | 2 +- docset/winserver2012r2-ps/hcs/Set-HcsPassword.md | 2 +- docset/winserver2012r2-ps/hcs/Set-HcsRemoteManagementCert.md | 2 +- docset/winserver2012r2-ps/hcs/Set-HcsSystem.md | 2 +- docset/winserver2012r2-ps/hcs/Set-HcsWebProxy.md | 2 +- docset/winserver2012r2-ps/hcs/Start-HcsFirmwareCheck.md | 2 +- docset/winserver2012r2-ps/hcs/Start-HcsHotfix.md | 2 +- docset/winserver2012r2-ps/hcs/Start-HcsUpdate.md | 2 +- docset/winserver2012r2-ps/hcs/Stop-HcsController.md | 2 +- docset/winserver2012r2-ps/hcs/Test-HcsNtp.md | 2 +- docset/winserver2012r2-ps/hpc/Add-HpcDriver.md | 2 +- docset/winserver2012r2-ps/hpc/Add-HpcGroup.md | 2 +- docset/winserver2012r2-ps/hpc/Add-HpcIScsiStorageArray.md | 2 +- docset/winserver2012r2-ps/hpc/Add-HpcImage.md | 2 +- docset/winserver2012r2-ps/hpc/Add-HpcMember.md | 2 +- docset/winserver2012r2-ps/hpc/Add-HpcNodeSet.md | 2 +- docset/winserver2012r2-ps/hpc/Add-HpcPool.md | 2 +- docset/winserver2012r2-ps/hpc/Add-HpcTask.md | 2 +- docset/winserver2012r2-ps/hpc/Add-HpcTest.md | 2 +- docset/winserver2012r2-ps/hpc/Add-HpcUnManagedNode.md | 2 +- docset/winserver2012r2-ps/hpc/Assign-HpcNodeTemplate.md | 2 +- docset/winserver2012r2-ps/hpc/Copy-HpcJobTemplate.md | 2 +- docset/winserver2012r2-ps/hpc/Copy-HpcNodeTemplate.md | 2 +- docset/winserver2012r2-ps/hpc/Export-HpcDHCPReservations.md | 2 +- docset/winserver2012r2-ps/hpc/Export-HpcJob.md | 2 +- docset/winserver2012r2-ps/hpc/Export-HpcNodeTemplate.md | 2 +- docset/winserver2012r2-ps/hpc/Export-HpcNodeXml.md | 2 +- docset/winserver2012r2-ps/hpc/Export-HpcSoaSessionTrace.md | 2 +- docset/winserver2012r2-ps/hpc/Export-HpcTask.md | 2 +- docset/winserver2012r2-ps/hpc/Export-HpcTestResult.md | 2 +- docset/winserver2012r2-ps/hpc/Get-HpcClusterOverview.md | 2 +- docset/winserver2012r2-ps/hpc/Get-HpcClusterProperty.md | 2 +- docset/winserver2012r2-ps/hpc/Get-HpcDriver.md | 2 +- docset/winserver2012r2-ps/hpc/Get-HpcGroup.md | 2 +- docset/winserver2012r2-ps/hpc/Get-HpcIScsiStorageArray.md | 2 +- docset/winserver2012r2-ps/hpc/Get-HpcImage.md | 2 +- docset/winserver2012r2-ps/hpc/Get-HpcJob.md | 2 +- docset/winserver2012r2-ps/hpc/Get-HpcJobCredential.md | 2 +- docset/winserver2012r2-ps/hpc/Get-HpcJobHistory.md | 2 +- docset/winserver2012r2-ps/hpc/Get-HpcJobTemplate.md | 2 +- docset/winserver2012r2-ps/hpc/Get-HpcJobTemplateAcl.md | 2 +- docset/winserver2012r2-ps/hpc/Get-HpcMember.md | 2 +- docset/winserver2012r2-ps/hpc/Get-HpcMetric.md | 2 +- docset/winserver2012r2-ps/hpc/Get-HpcMetricValue.md | 2 +- docset/winserver2012r2-ps/hpc/Get-HpcMetricValueHistory.md | 2 +- docset/winserver2012r2-ps/hpc/Get-HpcNetworkInterface.md | 2 +- docset/winserver2012r2-ps/hpc/Get-HpcNetworkTopology.md | 2 +- docset/winserver2012r2-ps/hpc/Get-HpcNode.md | 2 +- docset/winserver2012r2-ps/hpc/Get-HpcNodeStateHistory.md | 2 +- docset/winserver2012r2-ps/hpc/Get-HpcNodeTemplate.md | 2 +- docset/winserver2012r2-ps/hpc/Get-HpcOperation.md | 2 +- docset/winserver2012r2-ps/hpc/Get-HpcOperationLog.md | 2 +- docset/winserver2012r2-ps/hpc/Get-HpcPool.md | 2 +- docset/winserver2012r2-ps/hpc/Get-HpcTask.md | 2 +- docset/winserver2012r2-ps/hpc/Get-HpcTest.md | 2 +- docset/winserver2012r2-ps/hpc/Get-HpcTestDetail.md | 2 +- docset/winserver2012r2-ps/hpc/Get-HpcTestResult.md | 2 +- docset/winserver2012r2-ps/hpc/Get-HpcTestResultDetail.md | 2 +- docset/winserver2012r2-ps/hpc/Import-HpcJobTemplate.md | 2 +- docset/winserver2012r2-ps/hpc/Import-HpcMetric.md | 2 +- docset/winserver2012r2-ps/hpc/Import-HpcNodeTemplate.md | 2 +- docset/winserver2012r2-ps/hpc/Import-HpcNodeXml.md | 2 +- docset/winserver2012r2-ps/hpc/Invoke-HpcTest.md | 2 +- docset/winserver2012r2-ps/hpc/New-HpcGroup.md | 2 +- docset/winserver2012r2-ps/hpc/New-HpcImage.md | 2 +- docset/winserver2012r2-ps/hpc/New-HpcJob.md | 2 +- docset/winserver2012r2-ps/hpc/New-HpcNodeTemplate.md | 2 +- docset/winserver2012r2-ps/hpc/New-HpcSoftCard.md | 2 +- docset/winserver2012r2-ps/hpc/Remove-HpcAzureNode.md | 2 +- docset/winserver2012r2-ps/hpc/Remove-HpcDriver.md | 2 +- docset/winserver2012r2-ps/hpc/Remove-HpcGroup.md | 2 +- docset/winserver2012r2-ps/hpc/Remove-HpcIScsiStorageArray.md | 2 +- docset/winserver2012r2-ps/hpc/Remove-HpcImage.md | 2 +- docset/winserver2012r2-ps/hpc/Remove-HpcJobCredential.md | 2 +- docset/winserver2012r2-ps/hpc/Remove-HpcJobTemplate.md | 2 +- docset/winserver2012r2-ps/hpc/Remove-HpcMember.md | 2 +- docset/winserver2012r2-ps/hpc/Remove-HpcMetric.md | 2 +- docset/winserver2012r2-ps/hpc/Remove-HpcNode.md | 2 +- docset/winserver2012r2-ps/hpc/Remove-HpcNodeSet.md | 2 +- docset/winserver2012r2-ps/hpc/Remove-HpcNodeTemplate.md | 2 +- docset/winserver2012r2-ps/hpc/Remove-HpcPool.md | 2 +- docset/winserver2012r2-ps/hpc/Remove-HpcSoaCredential.md | 2 +- docset/winserver2012r2-ps/hpc/Remove-HpcSoaSessionTrace.md | 2 +- docset/winserver2012r2-ps/hpc/Remove-HpcTest.md | 2 +- docset/winserver2012r2-ps/hpc/Remove-HpcTestCredential.md | 2 +- docset/winserver2012r2-ps/hpc/Remove-HpcTestResultAlert.md | 2 +- docset/winserver2012r2-ps/hpc/Replicate-HpcImage.md | 2 +- docset/winserver2012r2-ps/hpc/Restart-HpcNode.md | 2 +- docset/winserver2012r2-ps/hpc/Set-HpcClusterProperty.md | 2 +- docset/winserver2012r2-ps/hpc/Set-HpcGroup.md | 2 +- docset/winserver2012r2-ps/hpc/Set-HpcIScsiStorageArray.md | 2 +- docset/winserver2012r2-ps/hpc/Set-HpcJob.md | 2 +- docset/winserver2012r2-ps/hpc/Set-HpcJobCredential.md | 2 +- docset/winserver2012r2-ps/hpc/Set-HpcJobTemplateAcl.md | 2 +- docset/winserver2012r2-ps/hpc/Set-HpcNode.md | 2 +- docset/winserver2012r2-ps/hpc/Set-HpcNodeState.md | 2 +- docset/winserver2012r2-ps/hpc/Set-HpcPool.md | 2 +- docset/winserver2012r2-ps/hpc/Set-HpcSoaCredential.md | 2 +- docset/winserver2012r2-ps/hpc/Set-HpcTask.md | 2 +- docset/winserver2012r2-ps/hpc/Set-HpcTestCredential.md | 2 +- docset/winserver2012r2-ps/hpc/Shutdown-HpcNode.md | 2 +- docset/winserver2012r2-ps/hpc/Start-HpcAzureNode.md | 2 +- docset/winserver2012r2-ps/hpc/Start-HpcNode.md | 2 +- docset/winserver2012r2-ps/hpc/Start-HpcNodeSet.md | 2 +- docset/winserver2012r2-ps/hpc/Stop-HpcAzureNode.md | 2 +- docset/winserver2012r2-ps/hpc/Stop-HpcJob.md | 2 +- docset/winserver2012r2-ps/hpc/Stop-HpcNodeSet.md | 2 +- docset/winserver2012r2-ps/hpc/Stop-HpcOperation.md | 2 +- docset/winserver2012r2-ps/hpc/Stop-HpcTask.md | 2 +- docset/winserver2012r2-ps/hpc/Stop-HpcTestResult.md | 2 +- docset/winserver2012r2-ps/hpc/Submit-HpcJob.md | 2 +- .../winserver2012r2-ps/hpc/Validate-HpcIScsiStorageArray.md | 2 +- docset/winserver2012r2-ps/hyper-v/Add-VMDvdDrive.md | 2 +- docset/winserver2012r2-ps/hyper-v/Add-VMFibreChannelHba.md | 2 +- docset/winserver2012r2-ps/hyper-v/Add-VMHardDiskDrive.md | 2 +- docset/winserver2012r2-ps/hyper-v/Add-VMMigrationNetwork.md | 2 +- docset/winserver2012r2-ps/hyper-v/Add-VMNetworkAdapter.md | 2 +- docset/winserver2012r2-ps/hyper-v/Add-VMNetworkAdapterAcl.md | 2 +- .../hyper-v/Add-VMNetworkAdapterExtendedAcl.md | 2 +- .../hyper-v/Add-VMRemoteFx3dVideoAdapter.md | 2 +- docset/winserver2012r2-ps/hyper-v/Add-VMScsiController.md | 2 +- docset/winserver2012r2-ps/hyper-v/Add-VMStoragePath.md | 2 +- docset/winserver2012r2-ps/hyper-v/Add-VMSwitch.md | 2 +- .../hyper-v/Add-VMSwitchExtensionPortFeature.md | 2 +- .../hyper-v/Add-VMSwitchExtensionSwitchFeature.md | 2 +- .../hyper-v/Add-VmNetworkAdapterRoutingDomainMapping.md | 2 +- docset/winserver2012r2-ps/hyper-v/Checkpoint-VM.md | 2 +- docset/winserver2012r2-ps/hyper-v/Compare-VM.md | 2 +- docset/winserver2012r2-ps/hyper-v/Complete-VMFailover.md | 2 +- docset/winserver2012r2-ps/hyper-v/Connect-VMNetworkAdapter.md | 2 +- docset/winserver2012r2-ps/hyper-v/Connect-VMSan.md | 2 +- docset/winserver2012r2-ps/hyper-v/Convert-VHD.md | 2 +- docset/winserver2012r2-ps/hyper-v/Copy-VMFile.md | 2 +- docset/winserver2012r2-ps/hyper-v/Debug-VM.md | 2 +- docset/winserver2012r2-ps/hyper-v/Disable-VMEventing.md | 2 +- .../hyper-v/Disable-VMIntegrationService.md | 2 +- docset/winserver2012r2-ps/hyper-v/Disable-VMMigration.md | 2 +- .../hyper-v/Disable-VMRemoteFXPhysicalVideoAdapter.md | 2 +- .../winserver2012r2-ps/hyper-v/Disable-VMResourceMetering.md | 2 +- .../winserver2012r2-ps/hyper-v/Disable-VMSwitchExtension.md | 2 +- .../winserver2012r2-ps/hyper-v/Disconnect-VMNetworkAdapter.md | 2 +- docset/winserver2012r2-ps/hyper-v/Disconnect-VMSan.md | 2 +- docset/winserver2012r2-ps/hyper-v/Dismount-VHD.md | 2 +- docset/winserver2012r2-ps/hyper-v/Enable-VMEventing.md | 2 +- .../winserver2012r2-ps/hyper-v/Enable-VMIntegrationService.md | 2 +- docset/winserver2012r2-ps/hyper-v/Enable-VMMigration.md | 2 +- .../hyper-v/Enable-VMRemoteFXPhysicalVideoAdapter.md | 2 +- docset/winserver2012r2-ps/hyper-v/Enable-VMReplication.md | 2 +- .../winserver2012r2-ps/hyper-v/Enable-VMResourceMetering.md | 2 +- docset/winserver2012r2-ps/hyper-v/Enable-VMSwitchExtension.md | 2 +- docset/winserver2012r2-ps/hyper-v/Export-VM.md | 2 +- docset/winserver2012r2-ps/hyper-v/Export-VMSnapshot.md | 2 +- docset/winserver2012r2-ps/hyper-v/Get-VHD.md | 2 +- docset/winserver2012r2-ps/hyper-v/Get-VM.md | 2 +- docset/winserver2012r2-ps/hyper-v/Get-VMBios.md | 2 +- docset/winserver2012r2-ps/hyper-v/Get-VMComPort.md | 2 +- docset/winserver2012r2-ps/hyper-v/Get-VMConnectAccess.md | 2 +- docset/winserver2012r2-ps/hyper-v/Get-VMDvdDrive.md | 2 +- docset/winserver2012r2-ps/hyper-v/Get-VMFibreChannelHba.md | 2 +- docset/winserver2012r2-ps/hyper-v/Get-VMFirmware.md | 2 +- docset/winserver2012r2-ps/hyper-v/Get-VMFloppyDiskDrive.md | 2 +- docset/winserver2012r2-ps/hyper-v/Get-VMHardDiskDrive.md | 2 +- docset/winserver2012r2-ps/hyper-v/Get-VMHost.md | 2 +- docset/winserver2012r2-ps/hyper-v/Get-VMHostNumaNode.md | 2 +- docset/winserver2012r2-ps/hyper-v/Get-VMHostNumaNodeStatus.md | 2 +- docset/winserver2012r2-ps/hyper-v/Get-VMIdeController.md | 2 +- docset/winserver2012r2-ps/hyper-v/Get-VMIntegrationService.md | 2 +- docset/winserver2012r2-ps/hyper-v/Get-VMMemory.md | 2 +- docset/winserver2012r2-ps/hyper-v/Get-VMMigrationNetwork.md | 2 +- docset/winserver2012r2-ps/hyper-v/Get-VMNetworkAdapter.md | 2 +- docset/winserver2012r2-ps/hyper-v/Get-VMNetworkAdapterAcl.md | 2 +- .../hyper-v/Get-VMNetworkAdapterExtendedAcl.md | 2 +- .../hyper-v/Get-VMNetworkAdapterFailoverConfiguration.md | 2 +- .../hyper-v/Get-VMNetworkAdapterRoutingDomainMapping.md | 2 +- docset/winserver2012r2-ps/hyper-v/Get-VMNetworkAdapterVlan.md | 2 +- docset/winserver2012r2-ps/hyper-v/Get-VMProcessor.md | 2 +- .../hyper-v/Get-VMRemoteFXPhysicalVideoAdapter.md | 2 +- .../hyper-v/Get-VMRemoteFx3dVideoAdapter.md | 2 +- docset/winserver2012r2-ps/hyper-v/Get-VMReplication.md | 2 +- .../hyper-v/Get-VMReplicationAuthorizationEntry.md | 2 +- docset/winserver2012r2-ps/hyper-v/Get-VMReplicationServer.md | 2 +- docset/winserver2012r2-ps/hyper-v/Get-VMResourcePool.md | 2 +- docset/winserver2012r2-ps/hyper-v/Get-VMSan.md | 2 +- docset/winserver2012r2-ps/hyper-v/Get-VMScsiController.md | 2 +- docset/winserver2012r2-ps/hyper-v/Get-VMSnapshot.md | 2 +- docset/winserver2012r2-ps/hyper-v/Get-VMStoragePath.md | 2 +- docset/winserver2012r2-ps/hyper-v/Get-VMSwitch.md | 2 +- docset/winserver2012r2-ps/hyper-v/Get-VMSwitchExtension.md | 2 +- .../hyper-v/Get-VMSwitchExtensionPortData.md | 2 +- .../hyper-v/Get-VMSwitchExtensionPortFeature.md | 2 +- .../hyper-v/Get-VMSwitchExtensionSwitchData.md | 2 +- .../hyper-v/Get-VMSwitchExtensionSwitchFeature.md | 2 +- .../winserver2012r2-ps/hyper-v/Get-VMSystemSwitchExtension.md | 2 +- .../hyper-v/Get-VMSystemSwitchExtensionPortFeature.md | 2 +- .../hyper-v/Get-VMSystemSwitchExtensionSwitchFeature.md | 2 +- .../hyper-v/Get-VmNetworkAdapterIsolation.md | 2 +- docset/winserver2012r2-ps/hyper-v/Grant-VMConnectAccess.md | 2 +- docset/winserver2012r2-ps/hyper-v/Import-VM.md | 2 +- .../winserver2012r2-ps/hyper-v/Import-VMInitialReplication.md | 2 +- docset/winserver2012r2-ps/hyper-v/Measure-VM.md | 2 +- docset/winserver2012r2-ps/hyper-v/Measure-VMReplication.md | 2 +- docset/winserver2012r2-ps/hyper-v/Measure-VMResourcePool.md | 2 +- docset/winserver2012r2-ps/hyper-v/Merge-VHD.md | 2 +- docset/winserver2012r2-ps/hyper-v/Mount-VHD.md | 2 +- docset/winserver2012r2-ps/hyper-v/Move-VM.md | 2 +- docset/winserver2012r2-ps/hyper-v/Move-VMStorage.md | 2 +- docset/winserver2012r2-ps/hyper-v/New-VFD.md | 2 +- docset/winserver2012r2-ps/hyper-v/New-VHD.md | 2 +- docset/winserver2012r2-ps/hyper-v/New-VM.md | 2 +- .../hyper-v/New-VMReplicationAuthorizationEntry.md | 2 +- docset/winserver2012r2-ps/hyper-v/New-VMResourcePool.md | 2 +- docset/winserver2012r2-ps/hyper-v/New-VMSan.md | 2 +- docset/winserver2012r2-ps/hyper-v/New-VMSwitch.md | 2 +- docset/winserver2012r2-ps/hyper-v/Optimize-VHD.md | 2 +- docset/winserver2012r2-ps/hyper-v/Remove-VM.md | 2 +- docset/winserver2012r2-ps/hyper-v/Remove-VMDvdDrive.md | 2 +- docset/winserver2012r2-ps/hyper-v/Remove-VMFibreChannelHba.md | 2 +- docset/winserver2012r2-ps/hyper-v/Remove-VMHardDiskDrive.md | 2 +- .../winserver2012r2-ps/hyper-v/Remove-VMMigrationNetwork.md | 2 +- docset/winserver2012r2-ps/hyper-v/Remove-VMNetworkAdapter.md | 2 +- .../winserver2012r2-ps/hyper-v/Remove-VMNetworkAdapterAcl.md | 2 +- .../hyper-v/Remove-VMNetworkAdapterExtendedAcl.md | 2 +- .../hyper-v/Remove-VMNetworkAdapterRoutingDomainMapping.md | 2 +- .../hyper-v/Remove-VMRemoteFx3dVideoAdapter.md | 2 +- docset/winserver2012r2-ps/hyper-v/Remove-VMReplication.md | 2 +- .../hyper-v/Remove-VMReplicationAuthorizationEntry.md | 2 +- docset/winserver2012r2-ps/hyper-v/Remove-VMResourcePool.md | 2 +- docset/winserver2012r2-ps/hyper-v/Remove-VMSan.md | 2 +- docset/winserver2012r2-ps/hyper-v/Remove-VMSavedState.md | 2 +- docset/winserver2012r2-ps/hyper-v/Remove-VMScsiController.md | 2 +- docset/winserver2012r2-ps/hyper-v/Remove-VMSnapshot.md | 2 +- docset/winserver2012r2-ps/hyper-v/Remove-VMStoragePath.md | 2 +- docset/winserver2012r2-ps/hyper-v/Remove-VMSwitch.md | 2 +- .../hyper-v/Remove-VMSwitchExtensionPortFeature.md | 2 +- .../hyper-v/Remove-VMSwitchExtensionSwitchFeature.md | 2 +- docset/winserver2012r2-ps/hyper-v/Rename-VM.md | 2 +- docset/winserver2012r2-ps/hyper-v/Rename-VMNetworkAdapter.md | 2 +- docset/winserver2012r2-ps/hyper-v/Rename-VMResourcePool.md | 2 +- docset/winserver2012r2-ps/hyper-v/Rename-VMSan.md | 2 +- docset/winserver2012r2-ps/hyper-v/Rename-VMSnapshot.md | 2 +- docset/winserver2012r2-ps/hyper-v/Rename-VMSwitch.md | 2 +- docset/winserver2012r2-ps/hyper-v/Repair-VM.md | 2 +- .../hyper-v/Reset-VMReplicationStatistics.md | 2 +- docset/winserver2012r2-ps/hyper-v/Reset-VMResourceMetering.md | 2 +- docset/winserver2012r2-ps/hyper-v/Resize-VHD.md | 2 +- docset/winserver2012r2-ps/hyper-v/Restart-VM.md | 2 +- docset/winserver2012r2-ps/hyper-v/Restore-VMSnapshot.md | 2 +- docset/winserver2012r2-ps/hyper-v/Resume-VM.md | 2 +- docset/winserver2012r2-ps/hyper-v/Resume-VMReplication.md | 2 +- docset/winserver2012r2-ps/hyper-v/Revoke-VMConnectAccess.md | 2 +- docset/winserver2012r2-ps/hyper-v/Save-VM.md | 2 +- docset/winserver2012r2-ps/hyper-v/Set-VHD.md | 2 +- docset/winserver2012r2-ps/hyper-v/Set-VM.md | 2 +- docset/winserver2012r2-ps/hyper-v/Set-VMBios.md | 2 +- docset/winserver2012r2-ps/hyper-v/Set-VMComPort.md | 2 +- docset/winserver2012r2-ps/hyper-v/Set-VMDvdDrive.md | 2 +- docset/winserver2012r2-ps/hyper-v/Set-VMFibreChannelHba.md | 2 +- docset/winserver2012r2-ps/hyper-v/Set-VMFirmware.md | 2 +- docset/winserver2012r2-ps/hyper-v/Set-VMFloppyDiskDrive.md | 2 +- docset/winserver2012r2-ps/hyper-v/Set-VMHardDiskDrive.md | 2 +- docset/winserver2012r2-ps/hyper-v/Set-VMHost.md | 2 +- docset/winserver2012r2-ps/hyper-v/Set-VMMemory.md | 2 +- docset/winserver2012r2-ps/hyper-v/Set-VMMigrationNetwork.md | 2 +- docset/winserver2012r2-ps/hyper-v/Set-VMNetworkAdapter.md | 2 +- .../hyper-v/Set-VMNetworkAdapterFailoverConfiguration.md | 2 +- docset/winserver2012r2-ps/hyper-v/Set-VMNetworkAdapterVlan.md | 2 +- docset/winserver2012r2-ps/hyper-v/Set-VMProcessor.md | 2 +- .../hyper-v/Set-VMRemoteFx3dVideoAdapter.md | 2 +- docset/winserver2012r2-ps/hyper-v/Set-VMReplication.md | 2 +- .../hyper-v/Set-VMReplicationAuthorizationEntry.md | 2 +- docset/winserver2012r2-ps/hyper-v/Set-VMReplicationServer.md | 2 +- docset/winserver2012r2-ps/hyper-v/Set-VMResourcePool.md | 2 +- docset/winserver2012r2-ps/hyper-v/Set-VMSan.md | 2 +- docset/winserver2012r2-ps/hyper-v/Set-VMSwitch.md | 2 +- .../hyper-v/Set-VMSwitchExtensionPortFeature.md | 2 +- .../hyper-v/Set-VMSwitchExtensionSwitchFeature.md | 2 +- .../hyper-v/Set-VmNetworkAdapterIsolation.md | 2 +- .../hyper-v/Set-VmNetworkAdapterRoutingDomainMapping.md | 2 +- docset/winserver2012r2-ps/hyper-v/Start-VM.md | 2 +- docset/winserver2012r2-ps/hyper-v/Start-VMFailover.md | 2 +- .../winserver2012r2-ps/hyper-v/Start-VMInitialReplication.md | 2 +- docset/winserver2012r2-ps/hyper-v/Stop-VM.md | 2 +- docset/winserver2012r2-ps/hyper-v/Stop-VMFailover.md | 2 +- .../winserver2012r2-ps/hyper-v/Stop-VMInitialReplication.md | 2 +- docset/winserver2012r2-ps/hyper-v/Stop-VMReplication.md | 2 +- docset/winserver2012r2-ps/hyper-v/Suspend-VM.md | 2 +- docset/winserver2012r2-ps/hyper-v/Suspend-VMReplication.md | 2 +- docset/winserver2012r2-ps/hyper-v/Test-VHD.md | 2 +- docset/winserver2012r2-ps/hyper-v/Test-VMNetworkAdapter.md | 2 +- .../hyper-v/Test-VMReplicationConnection.md | 2 +- .../Get-WinAcceptLanguageFromLanguageListOptOut.md | 2 +- .../international/Get-WinCultureFromLanguageListOptOut.md | 2 +- .../international/Get-WinDefaultInputMethodOverride.md | 2 +- .../winserver2012r2-ps/international/Get-WinHomeLocation.md | 2 +- .../international/Get-WinLanguageBarOption.md | 2 +- .../winserver2012r2-ps/international/Get-WinSystemLocale.md | 2 +- .../international/Get-WinUILanguageOverride.md | 2 +- .../international/Get-WinUserLanguageList.md | 2 +- .../international/New-WinUserLanguageList.md | 2 +- docset/winserver2012r2-ps/international/Set-Culture.md | 2 +- .../Set-WinAcceptLanguageFromLanguageListOptOut.md | 2 +- .../international/Set-WinCultureFromLanguageListOptOut.md | 2 +- .../international/Set-WinDefaultInputMethodOverride.md | 2 +- .../winserver2012r2-ps/international/Set-WinHomeLocation.md | 2 +- .../international/Set-WinLanguageBarOption.md | 2 +- .../winserver2012r2-ps/international/Set-WinSystemLocale.md | 2 +- .../international/Set-WinUILanguageOverride.md | 2 +- .../international/Set-WinUserLanguageList.md | 2 +- docset/winserver2012r2-ps/ipamserver/Add-IpamAddress.md | 2 +- docset/winserver2012r2-ps/ipamserver/Add-IpamAddressSpace.md | 2 +- docset/winserver2012r2-ps/ipamserver/Add-IpamBlock.md | 2 +- docset/winserver2012r2-ps/ipamserver/Add-IpamCustomField.md | 2 +- .../ipamserver/Add-IpamCustomFieldAssociation.md | 2 +- docset/winserver2012r2-ps/ipamserver/Add-IpamCustomValue.md | 2 +- .../winserver2012r2-ps/ipamserver/Add-IpamDiscoveryDomain.md | 2 +- docset/winserver2012r2-ps/ipamserver/Add-IpamRange.md | 2 +- .../winserver2012r2-ps/ipamserver/Add-IpamServerInventory.md | 2 +- docset/winserver2012r2-ps/ipamserver/Add-IpamSubnet.md | 2 +- .../winserver2012r2-ps/ipamserver/Disable-IpamCapability.md | 2 +- docset/winserver2012r2-ps/ipamserver/Enable-IpamCapability.md | 2 +- docset/winserver2012r2-ps/ipamserver/Export-IpamAddress.md | 2 +- docset/winserver2012r2-ps/ipamserver/Export-IpamRange.md | 2 +- docset/winserver2012r2-ps/ipamserver/Export-IpamSubnet.md | 2 +- docset/winserver2012r2-ps/ipamserver/Find-IpamFreeAddress.md | 2 +- docset/winserver2012r2-ps/ipamserver/Get-IpamAddress.md | 2 +- docset/winserver2012r2-ps/ipamserver/Get-IpamAddressSpace.md | 2 +- .../ipamserver/Get-IpamAddressUtilizationThreshold.md | 2 +- docset/winserver2012r2-ps/ipamserver/Get-IpamBlock.md | 2 +- docset/winserver2012r2-ps/ipamserver/Get-IpamCapability.md | 2 +- docset/winserver2012r2-ps/ipamserver/Get-IpamConfiguration.md | 2 +- .../ipamserver/Get-IpamConfigurationEvent.md | 2 +- docset/winserver2012r2-ps/ipamserver/Get-IpamCustomField.md | 2 +- .../ipamserver/Get-IpamCustomFieldAssociation.md | 2 +- docset/winserver2012r2-ps/ipamserver/Get-IpamDatabase.md | 2 +- .../ipamserver/Get-IpamDhcpConfigurationEvent.md | 2 +- .../winserver2012r2-ps/ipamserver/Get-IpamDiscoveryDomain.md | 2 +- .../ipamserver/Get-IpamIpAddressAuditEvent.md | 2 +- docset/winserver2012r2-ps/ipamserver/Get-IpamRange.md | 2 +- .../winserver2012r2-ps/ipamserver/Get-IpamServerInventory.md | 2 +- docset/winserver2012r2-ps/ipamserver/Get-IpamSubnet.md | 2 +- docset/winserver2012r2-ps/ipamserver/Import-IpamAddress.md | 2 +- docset/winserver2012r2-ps/ipamserver/Import-IpamRange.md | 2 +- docset/winserver2012r2-ps/ipamserver/Import-IpamSubnet.md | 2 +- .../ipamserver/Invoke-IpamGpoProvisioning.md | 2 +- .../ipamserver/Invoke-IpamServerProvisioning.md | 2 +- docset/winserver2012r2-ps/ipamserver/Move-IpamDatabase.md | 2 +- docset/winserver2012r2-ps/ipamserver/Remove-IpamAddress.md | 2 +- .../winserver2012r2-ps/ipamserver/Remove-IpamAddressSpace.md | 2 +- docset/winserver2012r2-ps/ipamserver/Remove-IpamBlock.md | 2 +- .../ipamserver/Remove-IpamConfigurationEvent.md | 2 +- .../winserver2012r2-ps/ipamserver/Remove-IpamCustomField.md | 2 +- .../ipamserver/Remove-IpamCustomFieldAssociation.md | 2 +- .../winserver2012r2-ps/ipamserver/Remove-IpamCustomValue.md | 2 +- .../ipamserver/Remove-IpamDhcpConfigurationEvent.md | 2 +- .../ipamserver/Remove-IpamDiscoveryDomain.md | 2 +- .../ipamserver/Remove-IpamIpAddressAuditEvent.md | 2 +- docset/winserver2012r2-ps/ipamserver/Remove-IpamRange.md | 2 +- .../ipamserver/Remove-IpamServerInventory.md | 2 +- docset/winserver2012r2-ps/ipamserver/Remove-IpamSubnet.md | 2 +- .../winserver2012r2-ps/ipamserver/Rename-IpamCustomField.md | 2 +- .../winserver2012r2-ps/ipamserver/Rename-IpamCustomValue.md | 2 +- docset/winserver2012r2-ps/ipamserver/Set-IpamAddress.md | 2 +- docset/winserver2012r2-ps/ipamserver/Set-IpamAddressSpace.md | 2 +- .../ipamserver/Set-IpamAddressUtilizationThreshold.md | 2 +- docset/winserver2012r2-ps/ipamserver/Set-IpamBlock.md | 2 +- docset/winserver2012r2-ps/ipamserver/Set-IpamConfiguration.md | 2 +- .../ipamserver/Set-IpamCustomFieldAssociation.md | 2 +- docset/winserver2012r2-ps/ipamserver/Set-IpamDatabase.md | 2 +- .../winserver2012r2-ps/ipamserver/Set-IpamDiscoveryDomain.md | 2 +- docset/winserver2012r2-ps/ipamserver/Set-IpamRange.md | 2 +- .../winserver2012r2-ps/ipamserver/Set-IpamServerInventory.md | 2 +- docset/winserver2012r2-ps/ipamserver/Set-IpamSubnet.md | 2 +- docset/winserver2012r2-ps/ipamserver/Update-IpamServer.md | 2 +- docset/winserver2012r2-ps/iscsi/Connect-IscsiTarget.md | 2 +- docset/winserver2012r2-ps/iscsi/Disconnect-IscsiTarget.md | 2 +- docset/winserver2012r2-ps/iscsi/Get-IscsiConnection.md | 2 +- docset/winserver2012r2-ps/iscsi/Get-IscsiSession.md | 2 +- docset/winserver2012r2-ps/iscsi/Get-IscsiTarget.md | 2 +- docset/winserver2012r2-ps/iscsi/Get-IscsiTargetPortal.md | 2 +- docset/winserver2012r2-ps/iscsi/New-IscsiTargetPortal.md | 2 +- docset/winserver2012r2-ps/iscsi/Register-IscsiSession.md | 2 +- docset/winserver2012r2-ps/iscsi/Remove-IscsiTargetPortal.md | 2 +- docset/winserver2012r2-ps/iscsi/Set-IscsiChapSecret.md | 2 +- docset/winserver2012r2-ps/iscsi/Unregister-IscsiSession.md | 2 +- docset/winserver2012r2-ps/iscsi/Update-IscsiTarget.md | 2 +- docset/winserver2012r2-ps/iscsi/Update-IscsiTargetPortal.md | 4 ++-- .../iscsitarget/Add-IscsiVirtualDiskTargetMapping.md | 2 +- .../iscsitarget/Checkpoint-IscsiVirtualDisk.md | 2 +- .../iscsitarget/Convert-IscsiVirtualDisk.md | 2 +- .../iscsitarget/Dismount-IscsiVirtualDiskSnapshot.md | 2 +- .../iscsitarget/Export-IscsiTargetServerConfiguration.md | 2 +- .../iscsitarget/Export-IscsiVirtualDiskSnapshot.md | 2 +- .../winserver2012r2-ps/iscsitarget/Get-IscsiServerTarget.md | 2 +- .../iscsitarget/Get-IscsiTargetServerSetting.md | 2 +- docset/winserver2012r2-ps/iscsitarget/Get-IscsiVirtualDisk.md | 2 +- .../iscsitarget/Get-IscsiVirtualDiskSnapshot.md | 2 +- .../iscsitarget/Import-IscsiTargetServerConfiguration.md | 2 +- .../winserver2012r2-ps/iscsitarget/Import-IscsiVirtualDisk.md | 2 +- .../iscsitarget/Mount-IscsiVirtualDiskSnapshot.md | 2 +- .../winserver2012r2-ps/iscsitarget/New-IscsiServerTarget.md | 2 +- docset/winserver2012r2-ps/iscsitarget/New-IscsiVirtualDisk.md | 2 +- .../iscsitarget/Remove-IscsiServerTarget.md | 2 +- .../winserver2012r2-ps/iscsitarget/Remove-IscsiVirtualDisk.md | 2 +- .../iscsitarget/Remove-IscsiVirtualDiskSnapshot.md | 2 +- .../iscsitarget/Remove-IscsiVirtualDiskTargetMapping.md | 2 +- .../winserver2012r2-ps/iscsitarget/Resize-IscsiVirtualDisk.md | 2 +- .../iscsitarget/Restore-IscsiVirtualDisk.md | 2 +- .../winserver2012r2-ps/iscsitarget/Set-IscsiServerTarget.md | 2 +- .../iscsitarget/Set-IscsiTargetServerSetting.md | 2 +- docset/winserver2012r2-ps/iscsitarget/Set-IscsiVirtualDisk.md | 2 +- .../iscsitarget/Set-IscsiVirtualDiskSnapshot.md | 2 +- .../iscsitarget/Stop-IscsiVirtualDiskOperation.md | 2 +- docset/winserver2012r2-ps/kds/Add-KdsRootKey.md | 2 +- docset/winserver2012r2-ps/kds/Clear-KdsCache.md | 2 +- docset/winserver2012r2-ps/kds/Get-KdsConfiguration.md | 2 +- docset/winserver2012r2-ps/kds/Get-KdsRootKey.md | 2 +- docset/winserver2012r2-ps/kds/Set-KdsConfiguration.md | 2 +- docset/winserver2012r2-ps/kds/Test-KdsRootKey.md | 2 +- docset/winserver2012r2-ps/mmagent/Debug-MMAppPrelaunch.md | 2 +- docset/winserver2012r2-ps/mmagent/Disable-MMAgent.md | 2 +- docset/winserver2012r2-ps/mmagent/Enable-MMAgent.md | 2 +- docset/winserver2012r2-ps/mmagent/Get-MMAgent.md | 2 +- docset/winserver2012r2-ps/mmagent/Set-MMAgent.md | 2 +- docset/winserver2012r2-ps/mpio/Clear-MSDSMSupportedHW.md | 2 +- docset/winserver2012r2-ps/mpio/Disable-MSDSMAutomaticClaim.md | 2 +- docset/winserver2012r2-ps/mpio/Enable-MSDSMAutomaticClaim.md | 2 +- docset/winserver2012r2-ps/mpio/Get-MPIOAvailableHW.md | 2 +- docset/winserver2012r2-ps/mpio/Get-MPIOSetting.md | 2 +- .../mpio/Get-MSDSMAutomaticClaimSettings.md | 2 +- .../mpio/Get-MSDSMGlobalDefaultLoadBalancePolicy.md | 2 +- docset/winserver2012r2-ps/mpio/Get-MSDSMSupportedHW.md | 2 +- docset/winserver2012r2-ps/mpio/New-MSDSMSupportedHW.md | 2 +- docset/winserver2012r2-ps/mpio/Remove-MSDSMSupportedHW.md | 2 +- docset/winserver2012r2-ps/mpio/Set-MPIOSetting.md | 2 +- .../mpio/Set-MSDSMGlobalDefaultLoadBalancePolicy.md | 2 +- docset/winserver2012r2-ps/mpio/Update-MPIOClaimedHW.md | 2 +- docset/winserver2012r2-ps/msdtc/Add-DtcClusterTMMapping.md | 2 +- .../msdtc/Complete-DtcDiagnosticTransaction.md | 2 +- docset/winserver2012r2-ps/msdtc/Get-Dtc.md | 2 +- docset/winserver2012r2-ps/msdtc/Get-DtcAdvancedHostSetting.md | 2 +- docset/winserver2012r2-ps/msdtc/Get-DtcAdvancedSetting.md | 2 +- docset/winserver2012r2-ps/msdtc/Get-DtcClusterDefault.md | 2 +- docset/winserver2012r2-ps/msdtc/Get-DtcClusterTMMapping.md | 2 +- docset/winserver2012r2-ps/msdtc/Get-DtcDefault.md | 2 +- docset/winserver2012r2-ps/msdtc/Get-DtcLog.md | 2 +- docset/winserver2012r2-ps/msdtc/Get-DtcNetworkSetting.md | 2 +- docset/winserver2012r2-ps/msdtc/Get-DtcTransaction.md | 2 +- .../winserver2012r2-ps/msdtc/Get-DtcTransactionsStatistics.md | 2 +- .../msdtc/Get-DtcTransactionsTraceSession.md | 2 +- .../msdtc/Get-DtcTransactionsTraceSetting.md | 2 +- docset/winserver2012r2-ps/msdtc/Install-Dtc.md | 2 +- .../msdtc/Join-DtcDiagnosticResourceManager.md | 2 +- .../winserver2012r2-ps/msdtc/New-DtcDiagnosticTransaction.md | 2 +- .../msdtc/Receive-DtcDiagnosticTransaction.md | 2 +- docset/winserver2012r2-ps/msdtc/Remove-DtcClusterTMMapping.md | 2 +- docset/winserver2012r2-ps/msdtc/Reset-DtcLog.md | 2 +- .../winserver2012r2-ps/msdtc/Send-DtcDiagnosticTransaction.md | 2 +- docset/winserver2012r2-ps/msdtc/Set-DtcAdvancedHostSetting.md | 2 +- docset/winserver2012r2-ps/msdtc/Set-DtcAdvancedSetting.md | 2 +- docset/winserver2012r2-ps/msdtc/Set-DtcClusterDefault.md | 2 +- docset/winserver2012r2-ps/msdtc/Set-DtcClusterTMMapping.md | 2 +- docset/winserver2012r2-ps/msdtc/Set-DtcDefault.md | 2 +- docset/winserver2012r2-ps/msdtc/Set-DtcLog.md | 2 +- docset/winserver2012r2-ps/msdtc/Set-DtcNetworkSetting.md | 2 +- docset/winserver2012r2-ps/msdtc/Set-DtcTransaction.md | 2 +- .../msdtc/Set-DtcTransactionsTraceSession.md | 2 +- .../msdtc/Set-DtcTransactionsTraceSetting.md | 2 +- docset/winserver2012r2-ps/msdtc/Start-Dtc.md | 2 +- .../msdtc/Start-DtcDiagnosticResourceManager.md | 2 +- .../msdtc/Start-DtcTransactionsTraceSession.md | 2 +- docset/winserver2012r2-ps/msdtc/Stop-Dtc.md | 2 +- .../msdtc/Stop-DtcDiagnosticResourceManager.md | 2 +- .../msdtc/Stop-DtcTransactionsTraceSession.md | 2 +- docset/winserver2012r2-ps/msdtc/Test-Dtc.md | 2 +- .../winserver2012r2-ps/msdtc/Undo-DtcDiagnosticTransaction.md | 2 +- docset/winserver2012r2-ps/msdtc/Uninstall-Dtc.md | 2 +- .../msdtc/Write-DtcTransactionsTraceSession.md | 2 +- docset/winserver2012r2-ps/msmq/Clear-MSMQOutgoingQueue.md | 2 +- docset/winserver2012r2-ps/msmq/Clear-MSMQQueue.md | 2 +- docset/winserver2012r2-ps/msmq/Enable-MSMQCertificate.md | 2 +- docset/winserver2012r2-ps/msmq/Get-MSMQCertificate.md | 2 +- docset/winserver2012r2-ps/msmq/Get-MSMQOutgoingQueue.md | 2 +- docset/winserver2012r2-ps/msmq/Get-MsmqQueue.md | 2 +- docset/winserver2012r2-ps/msmq/Get-MsmqQueueACL.md | 2 +- docset/winserver2012r2-ps/msmq/Get-MsmqQueueManager.md | 2 +- docset/winserver2012r2-ps/msmq/Get-MsmqQueueManagerACL.md | 2 +- docset/winserver2012r2-ps/msmq/Move-MsmqMessage.md | 2 +- docset/winserver2012r2-ps/msmq/New-MsmqMessage.md | 2 +- docset/winserver2012r2-ps/msmq/New-MsmqQueue.md | 2 +- docset/winserver2012r2-ps/msmq/Receive-MsmqQueue.md | 2 +- docset/winserver2012r2-ps/msmq/Remove-MsmqCertificate.md | 2 +- docset/winserver2012r2-ps/msmq/Remove-MsmqQueue.md | 2 +- docset/winserver2012r2-ps/msmq/Resume-MsmqOutgoingQueue.md | 2 +- docset/winserver2012r2-ps/msmq/Send-MsmqQueue.md | 2 +- docset/winserver2012r2-ps/msmq/Set-MsmqQueue.md | 2 +- docset/winserver2012r2-ps/msmq/Set-MsmqQueueACL.md | 2 +- docset/winserver2012r2-ps/msmq/Set-MsmqQueueManager.md | 2 +- docset/winserver2012r2-ps/msmq/Set-MsmqQueueManagerACL.md | 2 +- docset/winserver2012r2-ps/msmq/Suspend-MsmqOutgoingQueue.md | 2 +- docset/winserver2012r2-ps/multipoint/Clear-WmsStation.md | 2 +- docset/winserver2012r2-ps/multipoint/Close-WmsApp.md | 2 +- docset/winserver2012r2-ps/multipoint/Close-WmsSession.md | 2 +- docset/winserver2012r2-ps/multipoint/Disconnect-WmsSession.md | 2 +- docset/winserver2012r2-ps/multipoint/Get-WmsAlert.md | 2 +- docset/winserver2012r2-ps/multipoint/Get-WmsApp.md | 2 +- docset/winserver2012r2-ps/multipoint/Get-WmsSession.md | 2 +- docset/winserver2012r2-ps/multipoint/Get-WmsStation.md | 2 +- docset/winserver2012r2-ps/multipoint/Get-WmsSystem.md | 2 +- docset/winserver2012r2-ps/multipoint/Get-WmsThumbnail.md | 2 +- docset/winserver2012r2-ps/multipoint/Get-WmsUser.md | 2 +- docset/winserver2012r2-ps/multipoint/Hide-WmsIdentifier.md | 2 +- docset/winserver2012r2-ps/multipoint/Lock-WmsSession.md | 2 +- docset/winserver2012r2-ps/multipoint/New-WmsUser.md | 2 +- docset/winserver2012r2-ps/multipoint/Open-WmsApp.md | 2 +- docset/winserver2012r2-ps/multipoint/Register-WmsEvent.md | 2 +- docset/winserver2012r2-ps/multipoint/Remove-WmsUser.md | 2 +- docset/winserver2012r2-ps/multipoint/Reset-WmsSystem.md | 2 +- docset/winserver2012r2-ps/multipoint/Search-WmsSystem.md | 2 +- docset/winserver2012r2-ps/multipoint/Set-WmsStation.md | 2 +- docset/winserver2012r2-ps/multipoint/Set-WmsSystem.md | 2 +- docset/winserver2012r2-ps/multipoint/Show-WmsIdentifier.md | 2 +- docset/winserver2012r2-ps/multipoint/Show-WmsSystem.md | 2 +- docset/winserver2012r2-ps/multipoint/Split-WmsStation.md | 2 +- docset/winserver2012r2-ps/multipoint/Switch-WmsSystem.md | 2 +- docset/winserver2012r2-ps/multipoint/Unlock-WmsSession.md | 2 +- docset/winserver2012r2-ps/multipoint/Unregister-WmsEvent.md | 2 +- docset/winserver2012r2-ps/multipoint/Update-WmsCoreManager.md | 2 +- docset/winserver2012r2-ps/netadapter/Disable-NetAdapter.md | 2 +- .../netadapter/Disable-NetAdapterBinding.md | 2 +- .../netadapter/Disable-NetAdapterChecksumOffload.md | 2 +- .../Disable-NetAdapterEncapsulatedPacketTaskOffload.md | 2 +- .../netadapter/Disable-NetAdapterIPsecOffload.md | 2 +- docset/winserver2012r2-ps/netadapter/Disable-NetAdapterLso.md | 2 +- .../netadapter/Disable-NetAdapterPowerManagement.md | 2 +- docset/winserver2012r2-ps/netadapter/Disable-NetAdapterQos.md | 2 +- .../winserver2012r2-ps/netadapter/Disable-NetAdapterRdma.md | 2 +- docset/winserver2012r2-ps/netadapter/Disable-NetAdapterRsc.md | 2 +- docset/winserver2012r2-ps/netadapter/Disable-NetAdapterRss.md | 2 +- .../winserver2012r2-ps/netadapter/Disable-NetAdapterSriov.md | 2 +- docset/winserver2012r2-ps/netadapter/Disable-NetAdapterVmq.md | 2 +- docset/winserver2012r2-ps/netadapter/Enable-NetAdapter.md | 2 +- .../winserver2012r2-ps/netadapter/Enable-NetAdapterBinding.md | 2 +- .../netadapter/Enable-NetAdapterChecksumOffload.md | 2 +- .../Enable-NetAdapterEncapsulatedPacketTaskOffload.md | 2 +- .../netadapter/Enable-NetAdapterIPsecOffload.md | 2 +- docset/winserver2012r2-ps/netadapter/Enable-NetAdapterLso.md | 2 +- .../netadapter/Enable-NetAdapterPowerManagement.md | 2 +- docset/winserver2012r2-ps/netadapter/Enable-NetAdapterQos.md | 2 +- docset/winserver2012r2-ps/netadapter/Enable-NetAdapterRdma.md | 2 +- docset/winserver2012r2-ps/netadapter/Enable-NetAdapterRsc.md | 2 +- docset/winserver2012r2-ps/netadapter/Enable-NetAdapterRss.md | 2 +- .../winserver2012r2-ps/netadapter/Enable-NetAdapterSriov.md | 2 +- docset/winserver2012r2-ps/netadapter/Enable-NetAdapterVmq.md | 2 +- docset/winserver2012r2-ps/netadapter/Get-NetAdapter.md | 2 +- .../netadapter/Get-NetAdapterAdvancedProperty.md | 2 +- docset/winserver2012r2-ps/netadapter/Get-NetAdapterBinding.md | 2 +- .../netadapter/Get-NetAdapterChecksumOffload.md | 2 +- .../netadapter/Get-NetAdapterEncapsulatedPacketTaskOffload.md | 2 +- .../netadapter/Get-NetAdapterHardwareInfo.md | 2 +- .../netadapter/Get-NetAdapterIPsecOffload.md | 2 +- docset/winserver2012r2-ps/netadapter/Get-NetAdapterLso.md | 2 +- .../netadapter/Get-NetAdapterPowerManagement.md | 2 +- docset/winserver2012r2-ps/netadapter/Get-NetAdapterQos.md | 2 +- docset/winserver2012r2-ps/netadapter/Get-NetAdapterRdma.md | 2 +- docset/winserver2012r2-ps/netadapter/Get-NetAdapterRsc.md | 2 +- docset/winserver2012r2-ps/netadapter/Get-NetAdapterRss.md | 2 +- docset/winserver2012r2-ps/netadapter/Get-NetAdapterSriov.md | 2 +- docset/winserver2012r2-ps/netadapter/Get-NetAdapterSriovVf.md | 2 +- .../winserver2012r2-ps/netadapter/Get-NetAdapterStatistics.md | 2 +- docset/winserver2012r2-ps/netadapter/Get-NetAdapterVPort.md | 2 +- docset/winserver2012r2-ps/netadapter/Get-NetAdapterVmq.md | 2 +- .../winserver2012r2-ps/netadapter/Get-NetAdapterVmqQueue.md | 2 +- .../netadapter/New-NetAdapterAdvancedProperty.md | 2 +- .../netadapter/Remove-NetAdapterAdvancedProperty.md | 2 +- docset/winserver2012r2-ps/netadapter/Rename-NetAdapter.md | 2 +- .../netadapter/Reset-NetAdapterAdvancedProperty.md | 2 +- docset/winserver2012r2-ps/netadapter/Restart-NetAdapter.md | 2 +- docset/winserver2012r2-ps/netadapter/Set-NetAdapter.md | 2 +- .../netadapter/Set-NetAdapterAdvancedProperty.md | 2 +- docset/winserver2012r2-ps/netadapter/Set-NetAdapterBinding.md | 2 +- .../netadapter/Set-NetAdapterChecksumOffload.md | 2 +- .../netadapter/Set-NetAdapterEncapsulatedPacketTaskOffload.md | 2 +- .../netadapter/Set-NetAdapterIPsecOffload.md | 2 +- docset/winserver2012r2-ps/netadapter/Set-NetAdapterLso.md | 2 +- .../netadapter/Set-NetAdapterPowerManagement.md | 2 +- docset/winserver2012r2-ps/netadapter/Set-NetAdapterQos.md | 2 +- docset/winserver2012r2-ps/netadapter/Set-NetAdapterRdma.md | 2 +- docset/winserver2012r2-ps/netadapter/Set-NetAdapterRsc.md | 2 +- docset/winserver2012r2-ps/netadapter/Set-NetAdapterRss.md | 2 +- docset/winserver2012r2-ps/netadapter/Set-NetAdapterSriov.md | 2 +- docset/winserver2012r2-ps/netadapter/Set-NetAdapterVmq.md | 2 +- .../netconnection/Get-NetConnectionProfile.md | 2 +- .../netconnection/Set-NetConnectionProfile.md | 2 +- .../neteventpacketcapture/Add-NetEventNetworkAdapter.md | 2 +- .../Add-NetEventPacketCaptureProvider.md | 2 +- .../neteventpacketcapture/Add-NetEventProvider.md | 2 +- .../neteventpacketcapture/Add-NetEventVmNetworkAdapter.md | 2 +- .../neteventpacketcapture/Add-NetEventVmSwitch.md | 2 +- .../neteventpacketcapture/Get-NetEventNetworkAdapter.md | 2 +- .../Get-NetEventPacketCaptureProvider.md | 2 +- .../neteventpacketcapture/Get-NetEventProvider.md | 2 +- .../neteventpacketcapture/Get-NetEventSession.md | 2 +- .../neteventpacketcapture/Get-NetEventVmNetworkAdapter.md | 2 +- .../neteventpacketcapture/Get-NetEventVmSwitch.md | 2 +- .../neteventpacketcapture/New-NetEventSession.md | 2 +- .../neteventpacketcapture/Remove-NetEventNetworkAdapter.md | 2 +- .../Remove-NetEventPacketCaptureProvider.md | 2 +- .../neteventpacketcapture/Remove-NetEventProvider.md | 2 +- .../neteventpacketcapture/Remove-NetEventSession.md | 2 +- .../neteventpacketcapture/Remove-NetEventVmNetworkAdapter.md | 2 +- .../neteventpacketcapture/Remove-NetEventVmSwitch.md | 2 +- .../Set-NetEventPacketCaptureProvider.md | 2 +- .../neteventpacketcapture/Set-NetEventProvider.md | 2 +- .../neteventpacketcapture/Set-NetEventSession.md | 2 +- .../neteventpacketcapture/Start-NetEventSession.md | 2 +- .../neteventpacketcapture/Stop-NetEventSession.md | 2 +- docset/winserver2012r2-ps/netlbfo/Add-NetLbfoTeamMember.md | 2 +- docset/winserver2012r2-ps/netlbfo/Add-NetLbfoTeamNic.md | 2 +- docset/winserver2012r2-ps/netlbfo/Get-NetLbfoTeam.md | 2 +- docset/winserver2012r2-ps/netlbfo/Get-NetLbfoTeamMember.md | 2 +- docset/winserver2012r2-ps/netlbfo/Get-NetLbfoTeamNic.md | 2 +- docset/winserver2012r2-ps/netlbfo/New-NetLbfoTeam.md | 2 +- docset/winserver2012r2-ps/netlbfo/Remove-NetLbfoTeam.md | 2 +- docset/winserver2012r2-ps/netlbfo/Remove-NetLbfoTeamMember.md | 2 +- docset/winserver2012r2-ps/netlbfo/Remove-NetLbfoTeamNic.md | 2 +- docset/winserver2012r2-ps/netlbfo/Rename-NetLbfoTeam.md | 2 +- docset/winserver2012r2-ps/netlbfo/Set-NetLbfoTeam.md | 2 +- docset/winserver2012r2-ps/netlbfo/Set-NetLbfoTeamMember.md | 2 +- docset/winserver2012r2-ps/netlbfo/Set-NetLbfoTeamNic.md | 2 +- docset/winserver2012r2-ps/netnat/Add-NetNatExternalAddress.md | 2 +- docset/winserver2012r2-ps/netnat/Add-NetNatStaticMapping.md | 2 +- docset/winserver2012r2-ps/netnat/Get-NetNat.md | 2 +- docset/winserver2012r2-ps/netnat/Get-NetNatExternalAddress.md | 2 +- docset/winserver2012r2-ps/netnat/Get-NetNatGlobal.md | 2 +- docset/winserver2012r2-ps/netnat/Get-NetNatSession.md | 2 +- docset/winserver2012r2-ps/netnat/Get-NetNatStaticMapping.md | 2 +- docset/winserver2012r2-ps/netnat/New-NetNat.md | 2 +- docset/winserver2012r2-ps/netnat/Remove-NetNat.md | 2 +- .../winserver2012r2-ps/netnat/Remove-NetNatExternalAddress.md | 2 +- .../winserver2012r2-ps/netnat/Remove-NetNatStaticMapping.md | 2 +- docset/winserver2012r2-ps/netnat/Set-NetNat.md | 2 +- docset/winserver2012r2-ps/netnat/Set-NetNatGlobal.md | 2 +- docset/winserver2012r2-ps/netqos/Get-NetQosPolicy.md | 2 +- docset/winserver2012r2-ps/netqos/New-NetQosPolicy.md | 2 +- docset/winserver2012r2-ps/netqos/Remove-NetQosPolicy.md | 2 +- docset/winserver2012r2-ps/netqos/Set-NetQosPolicy.md | 2 +- docset/winserver2012r2-ps/netsecurity/Copy-NetFirewallRule.md | 2 +- .../netsecurity/Copy-NetIPsecMainModeCryptoSet.md | 2 +- .../netsecurity/Copy-NetIPsecMainModeRule.md | 2 +- .../netsecurity/Copy-NetIPsecPhase1AuthSet.md | 2 +- .../netsecurity/Copy-NetIPsecPhase2AuthSet.md | 2 +- .../netsecurity/Copy-NetIPsecQuickModeCryptoSet.md | 2 +- docset/winserver2012r2-ps/netsecurity/Copy-NetIPsecRule.md | 2 +- .../winserver2012r2-ps/netsecurity/Disable-NetFirewallRule.md | 2 +- .../netsecurity/Disable-NetIPsecMainModeRule.md | 2 +- docset/winserver2012r2-ps/netsecurity/Disable-NetIPsecRule.md | 2 +- .../winserver2012r2-ps/netsecurity/Enable-NetFirewallRule.md | 2 +- .../netsecurity/Enable-NetIPsecMainModeRule.md | 2 +- docset/winserver2012r2-ps/netsecurity/Enable-NetIPsecRule.md | 2 +- docset/winserver2012r2-ps/netsecurity/Find-NetIPsecRule.md | 2 +- docset/winserver2012r2-ps/netsecurity/Get-DAPolicyChange.md | 2 +- .../netsecurity/Get-NetFirewallAddressFilter.md | 2 +- .../netsecurity/Get-NetFirewallApplicationFilter.md | 2 +- .../netsecurity/Get-NetFirewallInterfaceFilter.md | 2 +- .../netsecurity/Get-NetFirewallInterfaceTypeFilter.md | 2 +- .../netsecurity/Get-NetFirewallPortFilter.md | 2 +- .../winserver2012r2-ps/netsecurity/Get-NetFirewallProfile.md | 2 +- docset/winserver2012r2-ps/netsecurity/Get-NetFirewallRule.md | 2 +- .../netsecurity/Get-NetFirewallSecurityFilter.md | 2 +- .../netsecurity/Get-NetFirewallServiceFilter.md | 2 +- .../winserver2012r2-ps/netsecurity/Get-NetFirewallSetting.md | 2 +- .../winserver2012r2-ps/netsecurity/Get-NetIPsecDospSetting.md | 2 +- .../netsecurity/Get-NetIPsecMainModeCryptoSet.md | 2 +- .../netsecurity/Get-NetIPsecMainModeRule.md | 2 +- .../winserver2012r2-ps/netsecurity/Get-NetIPsecMainModeSA.md | 2 +- .../netsecurity/Get-NetIPsecPhase1AuthSet.md | 2 +- .../netsecurity/Get-NetIPsecPhase2AuthSet.md | 2 +- .../netsecurity/Get-NetIPsecQuickModeCryptoSet.md | 2 +- .../winserver2012r2-ps/netsecurity/Get-NetIPsecQuickModeSA.md | 2 +- docset/winserver2012r2-ps/netsecurity/Get-NetIPsecRule.md | 2 +- docset/winserver2012r2-ps/netsecurity/New-NetFirewallRule.md | 2 +- .../netsecurity/New-NetIPsecAuthProposal.md | 2 +- .../winserver2012r2-ps/netsecurity/New-NetIPsecDospSetting.md | 2 +- .../netsecurity/New-NetIPsecMainModeCryptoProposal.md | 2 +- .../netsecurity/New-NetIPsecMainModeCryptoSet.md | 2 +- .../netsecurity/New-NetIPsecMainModeRule.md | 2 +- .../netsecurity/New-NetIPsecPhase1AuthSet.md | 2 +- .../netsecurity/New-NetIPsecPhase2AuthSet.md | 2 +- .../netsecurity/New-NetIPsecQuickModeCryptoProposal.md | 2 +- .../netsecurity/New-NetIPsecQuickModeCryptoSet.md | 2 +- docset/winserver2012r2-ps/netsecurity/New-NetIPsecRule.md | 2 +- docset/winserver2012r2-ps/netsecurity/Open-NetGPO.md | 2 +- .../winserver2012r2-ps/netsecurity/Remove-NetFirewallRule.md | 2 +- .../netsecurity/Remove-NetIPsecDospSetting.md | 2 +- .../netsecurity/Remove-NetIPsecMainModeCryptoSet.md | 2 +- .../netsecurity/Remove-NetIPsecMainModeRule.md | 2 +- .../netsecurity/Remove-NetIPsecMainModeSA.md | 2 +- .../netsecurity/Remove-NetIPsecPhase1AuthSet.md | 2 +- .../netsecurity/Remove-NetIPsecPhase2AuthSet.md | 2 +- .../netsecurity/Remove-NetIPsecQuickModeCryptoSet.md | 2 +- .../netsecurity/Remove-NetIPsecQuickModeSA.md | 2 +- docset/winserver2012r2-ps/netsecurity/Remove-NetIPsecRule.md | 2 +- .../winserver2012r2-ps/netsecurity/Rename-NetFirewallRule.md | 2 +- .../netsecurity/Rename-NetIPsecMainModeCryptoSet.md | 2 +- .../netsecurity/Rename-NetIPsecMainModeRule.md | 2 +- .../netsecurity/Rename-NetIPsecPhase1AuthSet.md | 2 +- .../netsecurity/Rename-NetIPsecPhase2AuthSet.md | 2 +- .../netsecurity/Rename-NetIPsecQuickModeCryptoSet.md | 2 +- docset/winserver2012r2-ps/netsecurity/Rename-NetIPsecRule.md | 2 +- docset/winserver2012r2-ps/netsecurity/Save-NetGPO.md | 2 +- .../netsecurity/Set-NetFirewallAddressFilter.md | 2 +- .../netsecurity/Set-NetFirewallApplicationFilter.md | 2 +- .../netsecurity/Set-NetFirewallInterfaceFilter.md | 2 +- .../netsecurity/Set-NetFirewallInterfaceTypeFilter.md | 2 +- .../netsecurity/Set-NetFirewallPortFilter.md | 2 +- .../winserver2012r2-ps/netsecurity/Set-NetFirewallProfile.md | 2 +- docset/winserver2012r2-ps/netsecurity/Set-NetFirewallRule.md | 2 +- .../netsecurity/Set-NetFirewallSecurityFilter.md | 2 +- .../netsecurity/Set-NetFirewallServiceFilter.md | 2 +- .../winserver2012r2-ps/netsecurity/Set-NetFirewallSetting.md | 2 +- .../winserver2012r2-ps/netsecurity/Set-NetIPsecDospSetting.md | 2 +- .../netsecurity/Set-NetIPsecMainModeCryptoSet.md | 2 +- .../netsecurity/Set-NetIPsecMainModeRule.md | 2 +- .../netsecurity/Set-NetIPsecPhase1AuthSet.md | 2 +- .../netsecurity/Set-NetIPsecPhase2AuthSet.md | 2 +- .../netsecurity/Set-NetIPsecQuickModeCryptoSet.md | 2 +- docset/winserver2012r2-ps/netsecurity/Set-NetIPsecRule.md | 2 +- docset/winserver2012r2-ps/netsecurity/Show-NetFirewallRule.md | 2 +- docset/winserver2012r2-ps/netsecurity/Show-NetIPsecRule.md | 2 +- docset/winserver2012r2-ps/netsecurity/Sync-NetIPsecRule.md | 2 +- docset/winserver2012r2-ps/netsecurity/Update-NetIPsecRule.md | 2 +- .../netswitchteam/Add-NetSwitchTeamMember.md | 2 +- docset/winserver2012r2-ps/netswitchteam/Get-NetSwitchTeam.md | 2 +- .../netswitchteam/Get-NetSwitchTeamMember.md | 2 +- docset/winserver2012r2-ps/netswitchteam/New-NetSwitchTeam.md | 2 +- .../winserver2012r2-ps/netswitchteam/Remove-NetSwitchTeam.md | 2 +- .../netswitchteam/Remove-NetSwitchTeamMember.md | 2 +- .../winserver2012r2-ps/netswitchteam/Rename-NetSwitchTeam.md | 2 +- docset/winserver2012r2-ps/nettcpip/Find-NetRoute.md | 2 +- docset/winserver2012r2-ps/nettcpip/Get-NetCompartment.md | 2 +- docset/winserver2012r2-ps/nettcpip/Get-NetIPAddress.md | 2 +- docset/winserver2012r2-ps/nettcpip/Get-NetIPConfiguration.md | 2 +- docset/winserver2012r2-ps/nettcpip/Get-NetIPInterface.md | 2 +- docset/winserver2012r2-ps/nettcpip/Get-NetIPv4Protocol.md | 2 +- docset/winserver2012r2-ps/nettcpip/Get-NetIPv6Protocol.md | 2 +- docset/winserver2012r2-ps/nettcpip/Get-NetNeighbor.md | 2 +- .../nettcpip/Get-NetOffloadGlobalSetting.md | 2 +- docset/winserver2012r2-ps/nettcpip/Get-NetPrefixPolicy.md | 2 +- docset/winserver2012r2-ps/nettcpip/Get-NetRoute.md | 2 +- docset/winserver2012r2-ps/nettcpip/Get-NetTCPConnection.md | 2 +- docset/winserver2012r2-ps/nettcpip/Get-NetTCPSetting.md | 2 +- docset/winserver2012r2-ps/nettcpip/Get-NetTransportFilter.md | 2 +- docset/winserver2012r2-ps/nettcpip/Get-NetUDPEndpoint.md | 2 +- docset/winserver2012r2-ps/nettcpip/Get-NetUDPSetting.md | 2 +- docset/winserver2012r2-ps/nettcpip/New-NetIPAddress.md | 2 +- docset/winserver2012r2-ps/nettcpip/New-NetNeighbor.md | 2 +- docset/winserver2012r2-ps/nettcpip/New-NetRoute.md | 2 +- docset/winserver2012r2-ps/nettcpip/New-NetTransportFilter.md | 2 +- docset/winserver2012r2-ps/nettcpip/Remove-NetIPAddress.md | 2 +- docset/winserver2012r2-ps/nettcpip/Remove-NetNeighbor.md | 2 +- docset/winserver2012r2-ps/nettcpip/Remove-NetRoute.md | 2 +- .../winserver2012r2-ps/nettcpip/Remove-NetTransportFilter.md | 2 +- docset/winserver2012r2-ps/nettcpip/Set-NetIPAddress.md | 2 +- docset/winserver2012r2-ps/nettcpip/Set-NetIPInterface.md | 2 +- docset/winserver2012r2-ps/nettcpip/Set-NetIPv4Protocol.md | 2 +- docset/winserver2012r2-ps/nettcpip/Set-NetIPv6Protocol.md | 2 +- docset/winserver2012r2-ps/nettcpip/Set-NetNeighbor.md | 2 +- .../nettcpip/Set-NetOffloadGlobalSetting.md | 2 +- docset/winserver2012r2-ps/nettcpip/Set-NetRoute.md | 2 +- docset/winserver2012r2-ps/nettcpip/Set-NetTCPSetting.md | 2 +- docset/winserver2012r2-ps/nettcpip/Set-NetUDPSetting.md | 2 +- docset/winserver2012r2-ps/nettcpip/Test-NetConnection.md | 2 +- .../netwnv/Get-NetVirtualizationCustomerRoute.md | 2 +- .../winserver2012r2-ps/netwnv/Get-NetVirtualizationGlobal.md | 2 +- .../netwnv/Get-NetVirtualizationLookupRecord.md | 2 +- .../netwnv/Get-NetVirtualizationProviderAddress.md | 2 +- .../netwnv/Get-NetVirtualizationProviderRoute.md | 2 +- .../netwnv/New-NetVirtualizationCustomerRoute.md | 2 +- .../netwnv/New-NetVirtualizationLookupRecord.md | 2 +- .../netwnv/New-NetVirtualizationProviderAddress.md | 2 +- .../netwnv/New-NetVirtualizationProviderRoute.md | 2 +- .../netwnv/Remove-NetVirtualizationCustomerRoute.md | 2 +- .../netwnv/Remove-NetVirtualizationLookupRecord.md | 2 +- .../netwnv/Remove-NetVirtualizationProviderAddress.md | 2 +- .../netwnv/Remove-NetVirtualizationProviderRoute.md | 2 +- .../netwnv/Select-NetVirtualizationNextHop.md | 2 +- .../netwnv/Set-NetVirtualizationCustomerRoute.md | 2 +- .../winserver2012r2-ps/netwnv/Set-NetVirtualizationGlobal.md | 2 +- .../netwnv/Set-NetVirtualizationLookupRecord.md | 2 +- .../netwnv/Set-NetVirtualizationProviderAddress.md | 2 +- .../netwnv/Set-NetVirtualizationProviderRoute.md | 2 +- .../networkconnectivitystatus/Get-DAConnectionStatus.md | 2 +- .../networkconnectivitystatus/Get-NCSIPolicyConfiguration.md | 2 +- .../Reset-NCSIPolicyConfiguration.md | 2 +- .../networkconnectivitystatus/Set-NCSIPolicyConfiguration.md | 2 +- .../networkloadbalancingclusters/Add-NlbClusterNode.md | 2 +- .../networkloadbalancingclusters/Add-NlbClusterNodeDip.md | 2 +- .../networkloadbalancingclusters/Add-NlbClusterPortRule.md | 2 +- .../networkloadbalancingclusters/Add-NlbClusterVip.md | 2 +- .../Disable-NlbClusterPortRule.md | 2 +- .../networkloadbalancingclusters/Enable-NlbClusterPortRule.md | 2 +- .../networkloadbalancingclusters/Get-NlbCluster.md | 2 +- .../networkloadbalancingclusters/Get-NlbClusterDriverInfo.md | 2 +- .../networkloadbalancingclusters/Get-NlbClusterNode.md | 2 +- .../networkloadbalancingclusters/Get-NlbClusterNodeDip.md | 2 +- .../Get-NlbClusterNodeNetworkInterface.md | 2 +- .../networkloadbalancingclusters/Get-NlbClusterPortRule.md | 2 +- .../networkloadbalancingclusters/Get-NlbClusterVip.md | 2 +- .../networkloadbalancingclusters/New-NlbCluster.md | 2 +- .../networkloadbalancingclusters/New-NlbClusterIpv6Address.md | 2 +- .../networkloadbalancingclusters/Remove-NlbCluster.md | 2 +- .../networkloadbalancingclusters/Remove-NlbClusterNode.md | 2 +- .../networkloadbalancingclusters/Remove-NlbClusterNodeDip.md | 2 +- .../networkloadbalancingclusters/Remove-NlbClusterPortRule.md | 2 +- .../networkloadbalancingclusters/Remove-NlbClusterVip.md | 2 +- .../networkloadbalancingclusters/Resume-NlbCluster.md | 2 +- .../networkloadbalancingclusters/Resume-NlbClusterNode.md | 2 +- .../networkloadbalancingclusters/Set-NlbCluster.md | 2 +- .../networkloadbalancingclusters/Set-NlbClusterNode.md | 2 +- .../networkloadbalancingclusters/Set-NlbClusterNodeDip.md | 2 +- .../networkloadbalancingclusters/Set-NlbClusterPortRule.md | 2 +- .../Set-NlbClusterPortRuleNodeHandlingPriority.md | 2 +- .../Set-NlbClusterPortRuleNodeWeight.md | 2 +- .../networkloadbalancingclusters/Set-NlbClusterVip.md | 2 +- .../networkloadbalancingclusters/Start-NlbCluster.md | 2 +- .../networkloadbalancingclusters/Start-NlbClusterNode.md | 2 +- .../networkloadbalancingclusters/Stop-NlbCluster.md | 2 +- .../networkloadbalancingclusters/Stop-NlbClusterNode.md | 2 +- .../networkloadbalancingclusters/Suspend-NlbCluster.md | 2 +- .../networkloadbalancingclusters/Suspend-NlbClusterNode.md | 2 +- .../networktransition/Add-NetIPHttpsCertBinding.md | 2 +- .../Disable-NetDnsTransitionConfiguration.md | 2 +- .../networktransition/Disable-NetIPHttpsProfile.md | 2 +- .../Disable-NetNatTransitionConfiguration.md | 2 +- .../networktransition/Enable-NetDnsTransitionConfiguration.md | 2 +- .../networktransition/Enable-NetIPHttpsProfile.md | 2 +- .../networktransition/Enable-NetNatTransitionConfiguration.md | 2 +- .../networktransition/Get-Net6to4Configuration.md | 2 +- .../networktransition/Get-NetDnsTransitionConfiguration.md | 2 +- .../networktransition/Get-NetDnsTransitionMonitoring.md | 2 +- .../networktransition/Get-NetIPHttpsConfiguration.md | 2 +- .../networktransition/Get-NetIPHttpsState.md | 2 +- .../networktransition/Get-NetIsatapConfiguration.md | 2 +- .../networktransition/Get-NetNatTransitionConfiguration.md | 2 +- .../networktransition/Get-NetNatTransitionMonitoring.md | 2 +- .../networktransition/Get-NetTeredoConfiguration.md | 2 +- .../networktransition/Get-NetTeredoState.md | 2 +- .../networktransition/New-NetIPHttpsConfiguration.md | 2 +- .../networktransition/New-NetNatTransitionConfiguration.md | 2 +- .../networktransition/Remove-NetIPHttpsCertBinding.md | 2 +- .../networktransition/Remove-NetIPHttpsConfiguration.md | 2 +- .../networktransition/Remove-NetNatTransitionConfiguration.md | 2 +- .../networktransition/Rename-NetIPHttpsConfiguration.md | 2 +- .../networktransition/Reset-Net6to4Configuration.md | 2 +- .../networktransition/Reset-NetDnsTransitionConfiguration.md | 2 +- .../networktransition/Reset-NetIPHttpsConfiguration.md | 2 +- .../networktransition/Reset-NetIsatapConfiguration.md | 2 +- .../networktransition/Reset-NetTeredoConfiguration.md | 2 +- .../networktransition/Set-Net6to4Configuration.md | 2 +- .../networktransition/Set-NetDnsTransitionConfiguration.md | 2 +- .../networktransition/Set-NetIPHttpsConfiguration.md | 2 +- .../networktransition/Set-NetIsatapConfiguration.md | 2 +- .../networktransition/Set-NetNatTransitionConfiguration.md | 2 +- .../networktransition/Set-NetTeredoConfiguration.md | 2 +- docset/winserver2012r2-ps/nfs/Disconnect-NfsSession.md | 2 +- docset/winserver2012r2-ps/nfs/Get-NfsClientConfiguration.md | 2 +- docset/winserver2012r2-ps/nfs/Get-NfsClientLock.md | 2 +- docset/winserver2012r2-ps/nfs/Get-NfsClientgroup.md | 2 +- docset/winserver2012r2-ps/nfs/Get-NfsMappedIdentity.md | 2 +- docset/winserver2012r2-ps/nfs/Get-NfsMappingStore.md | 2 +- docset/winserver2012r2-ps/nfs/Get-NfsMountedClient.md | 2 +- docset/winserver2012r2-ps/nfs/Get-NfsNetgroup.md | 2 +- docset/winserver2012r2-ps/nfs/Get-NfsNetgroupStore.md | 2 +- docset/winserver2012r2-ps/nfs/Get-NfsOpenFile.md | 2 +- docset/winserver2012r2-ps/nfs/Get-NfsServerConfiguration.md | 2 +- docset/winserver2012r2-ps/nfs/Get-NfsSession.md | 2 +- docset/winserver2012r2-ps/nfs/Get-NfsShare.md | 2 +- docset/winserver2012r2-ps/nfs/Get-NfsSharePermission.md | 2 +- docset/winserver2012r2-ps/nfs/Get-NfsStatistics.md | 2 +- docset/winserver2012r2-ps/nfs/Grant-NfsSharePermission.md | 2 +- docset/winserver2012r2-ps/nfs/Install-NfsMappingStore.md | 2 +- docset/winserver2012r2-ps/nfs/New-NfsClientgroup.md | 2 +- docset/winserver2012r2-ps/nfs/New-NfsMappedIdentity.md | 2 +- docset/winserver2012r2-ps/nfs/New-NfsNetgroup.md | 2 +- docset/winserver2012r2-ps/nfs/New-NfsShare.md | 2 +- docset/winserver2012r2-ps/nfs/Remove-NfsClientgroup.md | 2 +- docset/winserver2012r2-ps/nfs/Remove-NfsMappedIdentity.md | 2 +- docset/winserver2012r2-ps/nfs/Remove-NfsNetgroup.md | 2 +- docset/winserver2012r2-ps/nfs/Remove-NfsShare.md | 2 +- docset/winserver2012r2-ps/nfs/Rename-NfsClientgroup.md | 2 +- docset/winserver2012r2-ps/nfs/Reset-NfsStatistics.md | 2 +- docset/winserver2012r2-ps/nfs/Resolve-NfsMappedIdentity.md | 2 +- docset/winserver2012r2-ps/nfs/Revoke-NfsClientLock.md | 2 +- docset/winserver2012r2-ps/nfs/Revoke-NfsMountedClient.md | 2 +- docset/winserver2012r2-ps/nfs/Revoke-NfsOpenFile.md | 2 +- docset/winserver2012r2-ps/nfs/Revoke-NfsSharePermission.md | 2 +- docset/winserver2012r2-ps/nfs/Set-NfsClientConfiguration.md | 2 +- docset/winserver2012r2-ps/nfs/Set-NfsClientgroup.md | 2 +- docset/winserver2012r2-ps/nfs/Set-NfsMappedIdentity.md | 2 +- docset/winserver2012r2-ps/nfs/Set-NfsMappingStore.md | 2 +- docset/winserver2012r2-ps/nfs/Set-NfsNetgroup.md | 2 +- docset/winserver2012r2-ps/nfs/Set-NfsNetgroupStore.md | 2 +- docset/winserver2012r2-ps/nfs/Set-NfsServerConfiguration.md | 2 +- docset/winserver2012r2-ps/nfs/Set-NfsShare.md | 2 +- docset/winserver2012r2-ps/nfs/Test-NfsMappedIdentity.md | 2 +- docset/winserver2012r2-ps/nfs/Test-NfsMappingStore.md | 2 +- docset/winserver2012r2-ps/nps/Export-NpsConfiguration.md | 2 +- docset/winserver2012r2-ps/nps/Get-NpsRadiusClient.md | 2 +- docset/winserver2012r2-ps/nps/Get-NpsRemediationServer.md | 2 +- .../winserver2012r2-ps/nps/Get-NpsRemediationServerGroup.md | 2 +- docset/winserver2012r2-ps/nps/Get-NpsSharedSecretTemplate.md | 2 +- docset/winserver2012r2-ps/nps/Import-NpsConfiguration.md | 2 +- docset/winserver2012r2-ps/nps/New-NpsRadiusClient.md | 2 +- docset/winserver2012r2-ps/nps/New-NpsRemediationServer.md | 2 +- .../winserver2012r2-ps/nps/New-NpsRemediationServerGroup.md | 2 +- docset/winserver2012r2-ps/nps/Remove-NpsRadiusClient.md | 2 +- docset/winserver2012r2-ps/nps/Remove-NpsRemediationServer.md | 2 +- .../nps/Remove-NpsRemediationServerGroup.md | 2 +- docset/winserver2012r2-ps/nps/Set-NpsRadiusClient.md | 2 +- docset/winserver2012r2-ps/pcsvdevice/Get-PcsvDevice.md | 2 +- docset/winserver2012r2-ps/pcsvdevice/Restart-PcsvDevice.md | 2 +- .../pcsvdevice/Set-PcsvDeviceBootConfiguration.md | 2 +- docset/winserver2012r2-ps/pcsvdevice/Start-PcsvDevice.md | 2 +- docset/winserver2012r2-ps/pcsvdevice/Stop-PcsvDevice.md | 2 +- docset/winserver2012r2-ps/pef/Add-PefMessageSource.md | 2 +- docset/winserver2012r2-ps/pef/Add-PefProviderConfig.md | 2 +- docset/winserver2012r2-ps/pef/Invoke-PefCustomAction.md | 2 +- docset/winserver2012r2-ps/pef/New-PefDateTimeTrigger.md | 2 +- docset/winserver2012r2-ps/pef/New-PefEventLogTrigger.md | 2 +- docset/winserver2012r2-ps/pef/New-PefKeyDownTrigger.md | 2 +- docset/winserver2012r2-ps/pef/New-PefMessageTrigger.md | 2 +- docset/winserver2012r2-ps/pef/New-PefProcessTrigger.md | 2 +- docset/winserver2012r2-ps/pef/New-PefTargetHost.md | 2 +- docset/winserver2012r2-ps/pef/New-PefTimeSpanTrigger.md | 2 +- docset/winserver2012r2-ps/pef/New-PefTraceSession.md | 2 +- docset/winserver2012r2-ps/pef/New-PefWin32EventTrigger.md | 2 +- docset/winserver2012r2-ps/pef/Save-PefDataCollection.md | 2 +- docset/winserver2012r2-ps/pef/Set-PefTraceFilter.md | 2 +- docset/winserver2012r2-ps/pef/Start-PefTraceSession.md | 2 +- docset/winserver2012r2-ps/pef/Stop-PefTraceSession.md | 2 +- .../pki/Add-CertificateEnrollmentPolicyServer.md | 2 +- docset/winserver2012r2-ps/pki/Export-Certificate.md | 2 +- docset/winserver2012r2-ps/pki/Export-PfxCertificate.md | 2 +- docset/winserver2012r2-ps/pki/Get-Certificate.md | 2 +- .../pki/Get-CertificateAutoEnrollmentPolicy.md | 2 +- .../pki/Get-CertificateEnrollmentPolicyServer.md | 2 +- .../winserver2012r2-ps/pki/Get-CertificateNotificationTask.md | 2 +- docset/winserver2012r2-ps/pki/Get-PfxData.md | 2 +- docset/winserver2012r2-ps/pki/Import-Certificate.md | 2 +- docset/winserver2012r2-ps/pki/Import-PfxCertificate.md | 2 +- .../winserver2012r2-ps/pki/New-CertificateNotificationTask.md | 2 +- docset/winserver2012r2-ps/pki/New-SelfSignedCertificate.md | 2 +- .../pki/Remove-CertificateEnrollmentPolicyServer.md | 2 +- .../pki/Remove-CertificateNotificationTask.md | 2 +- .../pki/Set-CertificateAutoEnrollmentPolicy.md | 2 +- docset/winserver2012r2-ps/pki/Switch-Certificate.md | 2 +- docset/winserver2012r2-ps/pki/Test-Certificate.md | 2 +- .../powershellwebaccess/Add-PswaAuthorizationRule.md | 2 +- .../powershellwebaccess/Get-PswaAuthorizationRule.md | 2 +- .../powershellwebaccess/Install-PswaWebApplication.md | 2 +- .../powershellwebaccess/Remove-PswaAuthorizationRule.md | 2 +- .../powershellwebaccess/Test-PswaAuthorizationRule.md | 2 +- .../powershellwebaccess/Uninstall-PswaWebApplication.md | 2 +- docset/winserver2012r2-ps/printmanagement/Add-Printer.md | 2 +- .../winserver2012r2-ps/printmanagement/Add-PrinterDriver.md | 2 +- docset/winserver2012r2-ps/printmanagement/Add-PrinterPort.md | 2 +- .../printmanagement/Get-PrintConfiguration.md | 2 +- docset/winserver2012r2-ps/printmanagement/Get-PrintJob.md | 2 +- docset/winserver2012r2-ps/printmanagement/Get-Printer.md | 2 +- .../winserver2012r2-ps/printmanagement/Get-PrinterDriver.md | 2 +- docset/winserver2012r2-ps/printmanagement/Get-PrinterPort.md | 2 +- .../winserver2012r2-ps/printmanagement/Get-PrinterProperty.md | 2 +- .../winserver2012r2-ps/printmanagement/Read-PrinterNfcTag.md | 2 +- docset/winserver2012r2-ps/printmanagement/Remove-PrintJob.md | 2 +- docset/winserver2012r2-ps/printmanagement/Remove-Printer.md | 2 +- .../printmanagement/Remove-PrinterDriver.md | 2 +- .../winserver2012r2-ps/printmanagement/Remove-PrinterPort.md | 2 +- docset/winserver2012r2-ps/printmanagement/Rename-Printer.md | 2 +- docset/winserver2012r2-ps/printmanagement/Restart-PrintJob.md | 2 +- docset/winserver2012r2-ps/printmanagement/Resume-PrintJob.md | 2 +- .../printmanagement/Set-PrintConfiguration.md | 2 +- docset/winserver2012r2-ps/printmanagement/Set-Printer.md | 2 +- .../winserver2012r2-ps/printmanagement/Set-PrinterProperty.md | 2 +- docset/winserver2012r2-ps/printmanagement/Suspend-PrintJob.md | 2 +- .../winserver2012r2-ps/printmanagement/Write-PrinterNfcTag.md | 2 +- docset/winserver2012r2-ps/remoteaccess/Add-BgpCustomRoute.md | 2 +- docset/winserver2012r2-ps/remoteaccess/Add-BgpPeer.md | 2 +- docset/winserver2012r2-ps/remoteaccess/Add-BgpRouter.md | 2 +- .../winserver2012r2-ps/remoteaccess/Add-BgpRoutingPolicy.md | 2 +- .../remoteaccess/Add-BgpRoutingPolicyForPeer.md | 2 +- docset/winserver2012r2-ps/remoteaccess/Add-DAAppServer.md | 2 +- docset/winserver2012r2-ps/remoteaccess/Add-DAClient.md | 2 +- .../remoteaccess/Add-DAClientDnsConfiguration.md | 2 +- docset/winserver2012r2-ps/remoteaccess/Add-DAEntryPoint.md | 2 +- docset/winserver2012r2-ps/remoteaccess/Add-DAMgmtServer.md | 2 +- .../remoteaccess/Add-RemoteAccessIpFilter.md | 2 +- .../remoteaccess/Add-RemoteAccessLoadBalancerNode.md | 2 +- .../winserver2012r2-ps/remoteaccess/Add-RemoteAccessRadius.md | 2 +- .../winserver2012r2-ps/remoteaccess/Add-VpnIPAddressRange.md | 2 +- docset/winserver2012r2-ps/remoteaccess/Add-VpnS2SInterface.md | 2 +- .../remoteaccess/Clear-RemoteAccessInboxAccountingStore.md | 2 +- .../remoteaccess/Clear-VpnS2SInterfaceStatistics.md | 2 +- .../remoteaccess/Connect-VpnS2SInterface.md | 2 +- docset/winserver2012r2-ps/remoteaccess/Disable-DAMultiSite.md | 2 +- .../remoteaccess/Disable-DAOtpAuthentication.md | 2 +- .../remoteaccess/Disable-RemoteAccessRoutingDomain.md | 2 +- .../remoteaccess/Disconnect-VpnS2SInterface.md | 2 +- docset/winserver2012r2-ps/remoteaccess/Disconnect-VpnUser.md | 2 +- docset/winserver2012r2-ps/remoteaccess/Enable-DAMultiSite.md | 2 +- .../remoteaccess/Enable-DAOtpAuthentication.md | 2 +- .../remoteaccess/Enable-RemoteAccessRoutingDomain.md | 2 +- docset/winserver2012r2-ps/remoteaccess/Get-BgpCustomRoute.md | 2 +- docset/winserver2012r2-ps/remoteaccess/Get-BgpPeer.md | 2 +- .../remoteaccess/Get-BgpRouteInformation.md | 2 +- docset/winserver2012r2-ps/remoteaccess/Get-BgpRouter.md | 2 +- .../winserver2012r2-ps/remoteaccess/Get-BgpRoutingPolicy.md | 2 +- docset/winserver2012r2-ps/remoteaccess/Get-BgpStatistics.md | 2 +- docset/winserver2012r2-ps/remoteaccess/Get-DAAppServer.md | 2 +- docset/winserver2012r2-ps/remoteaccess/Get-DAClient.md | 2 +- .../remoteaccess/Get-DAClientDnsConfiguration.md | 2 +- docset/winserver2012r2-ps/remoteaccess/Get-DAEntryPoint.md | 2 +- docset/winserver2012r2-ps/remoteaccess/Get-DAEntryPointDC.md | 2 +- docset/winserver2012r2-ps/remoteaccess/Get-DAMgmtServer.md | 2 +- docset/winserver2012r2-ps/remoteaccess/Get-DAMultiSite.md | 2 +- .../remoteaccess/Get-DANetworkLocationServer.md | 2 +- .../remoteaccess/Get-DAOtpAuthentication.md | 2 +- docset/winserver2012r2-ps/remoteaccess/Get-DAServer.md | 2 +- docset/winserver2012r2-ps/remoteaccess/Get-RemoteAccess.md | 2 +- .../remoteaccess/Get-RemoteAccessAccounting.md | 2 +- .../remoteaccess/Get-RemoteAccessConfiguration.md | 2 +- .../remoteaccess/Get-RemoteAccessConnectionStatistics.md | 2 +- .../Get-RemoteAccessConnectionStatisticsSummary.md | 2 +- .../winserver2012r2-ps/remoteaccess/Get-RemoteAccessHealth.md | 2 +- .../remoteaccess/Get-RemoteAccessIpFilter.md | 2 +- .../remoteaccess/Get-RemoteAccessLoadBalancer.md | 2 +- .../winserver2012r2-ps/remoteaccess/Get-RemoteAccessRadius.md | 2 +- .../remoteaccess/Get-RemoteAccessRoutingDomain.md | 2 +- .../remoteaccess/Get-RemoteAccessUserActivity.md | 2 +- .../remoteaccess/Get-RoutingProtocolPreference.md | 2 +- docset/winserver2012r2-ps/remoteaccess/Get-VpnAuthProtocol.md | 2 +- docset/winserver2012r2-ps/remoteaccess/Get-VpnS2SInterface.md | 2 +- .../remoteaccess/Get-VpnS2SInterfaceStatistics.md | 2 +- .../remoteaccess/Get-VpnServerConfiguration.md | 2 +- .../winserver2012r2-ps/remoteaccess/Install-RemoteAccess.md | 2 +- .../winserver2012r2-ps/remoteaccess/Remove-BgpCustomRoute.md | 2 +- docset/winserver2012r2-ps/remoteaccess/Remove-BgpPeer.md | 2 +- docset/winserver2012r2-ps/remoteaccess/Remove-BgpRouter.md | 2 +- .../remoteaccess/Remove-BgpRoutingPolicy.md | 2 +- .../remoteaccess/Remove-BgpRoutingPolicyForPeer.md | 2 +- docset/winserver2012r2-ps/remoteaccess/Remove-DAAppServer.md | 2 +- docset/winserver2012r2-ps/remoteaccess/Remove-DAClient.md | 2 +- .../remoteaccess/Remove-DAClientDnsConfiguration.md | 2 +- docset/winserver2012r2-ps/remoteaccess/Remove-DAEntryPoint.md | 2 +- docset/winserver2012r2-ps/remoteaccess/Remove-DAMgmtServer.md | 2 +- .../remoteaccess/Remove-RemoteAccessIpFilter.md | 2 +- .../remoteaccess/Remove-RemoteAccessLoadBalancerNode.md | 2 +- .../remoteaccess/Remove-RemoteAccessRadius.md | 2 +- .../remoteaccess/Remove-VpnIPAddressRange.md | 2 +- .../winserver2012r2-ps/remoteaccess/Remove-VpnS2SInterface.md | 2 +- docset/winserver2012r2-ps/remoteaccess/Set-BgpPeer.md | 2 +- docset/winserver2012r2-ps/remoteaccess/Set-BgpRouter.md | 2 +- .../winserver2012r2-ps/remoteaccess/Set-BgpRoutingPolicy.md | 2 +- .../remoteaccess/Set-BgpRoutingPolicyForPeer.md | 2 +- .../remoteaccess/Set-DAAppServerConnection.md | 2 +- docset/winserver2012r2-ps/remoteaccess/Set-DAClient.md | 2 +- .../remoteaccess/Set-DAClientDnsConfiguration.md | 2 +- docset/winserver2012r2-ps/remoteaccess/Set-DAEntryPoint.md | 2 +- docset/winserver2012r2-ps/remoteaccess/Set-DAEntryPointDC.md | 2 +- docset/winserver2012r2-ps/remoteaccess/Set-DAMultiSite.md | 2 +- .../remoteaccess/Set-DANetworkLocationServer.md | 2 +- .../remoteaccess/Set-DAOtpAuthentication.md | 2 +- docset/winserver2012r2-ps/remoteaccess/Set-DAServer.md | 2 +- docset/winserver2012r2-ps/remoteaccess/Set-RemoteAccess.md | 2 +- .../remoteaccess/Set-RemoteAccessAccounting.md | 2 +- .../remoteaccess/Set-RemoteAccessConfiguration.md | 2 +- .../remoteaccess/Set-RemoteAccessInboxAccountingStore.md | 2 +- .../remoteaccess/Set-RemoteAccessIpFilter.md | 2 +- .../remoteaccess/Set-RemoteAccessLoadBalancer.md | 2 +- .../winserver2012r2-ps/remoteaccess/Set-RemoteAccessRadius.md | 2 +- .../remoteaccess/Set-RemoteAccessRoutingDomain.md | 2 +- .../remoteaccess/Set-RoutingProtocolPreference.md | 2 +- docset/winserver2012r2-ps/remoteaccess/Set-VpnAuthProtocol.md | 2 +- docset/winserver2012r2-ps/remoteaccess/Set-VpnAuthType.md | 2 +- .../remoteaccess/Set-VpnIPAddressAssignment.md | 2 +- docset/winserver2012r2-ps/remoteaccess/Set-VpnS2SInterface.md | 2 +- .../remoteaccess/Set-VpnServerConfiguration.md | 2 +- docset/winserver2012r2-ps/remoteaccess/Start-BgpPeer.md | 2 +- docset/winserver2012r2-ps/remoteaccess/Stop-BgpPeer.md | 2 +- .../winserver2012r2-ps/remoteaccess/Uninstall-RemoteAccess.md | 2 +- docset/winserver2012r2-ps/remoteaccess/Update-DAMgmtServer.md | 2 +- docset/winserver2012r2-ps/remotedesktop/Add-RDServer.md | 2 +- docset/winserver2012r2-ps/remotedesktop/Add-RDSessionHost.md | 2 +- .../remotedesktop/Add-RDVirtualDesktopToCollection.md | 2 +- .../Disable-RDVirtualDesktopADMachineAccountReuse.md | 2 +- docset/winserver2012r2-ps/remotedesktop/Disconnect-RDUser.md | 2 +- .../Enable-RDVirtualDesktopADMachineAccountReuse.md | 2 +- .../Export-RDPersonalVirtualDesktopAssignment.md | 2 +- docset/winserver2012r2-ps/remotedesktop/Get-RDAvailableApp.md | 2 +- docset/winserver2012r2-ps/remotedesktop/Get-RDCertificate.md | 2 +- .../remotedesktop/Get-RDConnectionBrokerHighAvailability.md | 2 +- .../remotedesktop/Get-RDDeploymentGatewayConfiguration.md | 2 +- .../remotedesktop/Get-RDFileTypeAssociation.md | 2 +- .../remotedesktop/Get-RDLicenseConfiguration.md | 2 +- .../remotedesktop/Get-RDPersonalVirtualDesktopAssignment.md | 2 +- .../Get-RDPersonalVirtualDesktopPatchSchedule.md | 2 +- docset/winserver2012r2-ps/remotedesktop/Get-RDRemoteApp.md | 2 +- .../winserver2012r2-ps/remotedesktop/Get-RDRemoteDesktop.md | 2 +- docset/winserver2012r2-ps/remotedesktop/Get-RDServer.md | 2 +- .../remotedesktop/Get-RDSessionCollection.md | 2 +- .../remotedesktop/Get-RDSessionCollectionConfiguration.md | 2 +- docset/winserver2012r2-ps/remotedesktop/Get-RDSessionHost.md | 2 +- docset/winserver2012r2-ps/remotedesktop/Get-RDUserSession.md | 2 +- .../winserver2012r2-ps/remotedesktop/Get-RDVirtualDesktop.md | 2 +- .../remotedesktop/Get-RDVirtualDesktopCollection.md | 2 +- .../Get-RDVirtualDesktopCollectionConfiguration.md | 2 +- .../remotedesktop/Get-RDVirtualDesktopCollectionJobStatus.md | 2 +- .../remotedesktop/Get-RDVirtualDesktopConcurrency.md | 2 +- .../remotedesktop/Get-RDVirtualDesktopIdleCount.md | 2 +- .../remotedesktop/Get-RDVirtualDesktopTemplateExportPath.md | 2 +- docset/winserver2012r2-ps/remotedesktop/Get-RDWorkspace.md | 2 +- docset/winserver2012r2-ps/remotedesktop/Grant-RDOUAccess.md | 2 +- .../Import-RDPersonalVirtualDesktopAssignment.md | 2 +- .../winserver2012r2-ps/remotedesktop/Invoke-RDUserLogoff.md | 2 +- .../winserver2012r2-ps/remotedesktop/Move-RDVirtualDesktop.md | 2 +- docset/winserver2012r2-ps/remotedesktop/New-RDCertificate.md | 2 +- .../New-RDPersonalVirtualDesktopPatchSchedule.md | 2 +- docset/winserver2012r2-ps/remotedesktop/New-RDRemoteApp.md | 2 +- .../remotedesktop/New-RDSessionCollection.md | 2 +- .../remotedesktop/New-RDSessionDeployment.md | 2 +- .../remotedesktop/New-RDVirtualDesktopCollection.md | 2 +- .../remotedesktop/New-RDVirtualDesktopDeployment.md | 2 +- .../Remove-RDPersonalVirtualDesktopAssignment.md | 2 +- .../Remove-RDPersonalVirtualDesktopPatchSchedule.md | 2 +- docset/winserver2012r2-ps/remotedesktop/Remove-RDRemoteApp.md | 2 +- docset/winserver2012r2-ps/remotedesktop/Remove-RDServer.md | 2 +- .../remotedesktop/Remove-RDSessionCollection.md | 2 +- .../winserver2012r2-ps/remotedesktop/Remove-RDSessionHost.md | 2 +- .../remotedesktop/Remove-RDVirtualDesktopCollection.md | 2 +- .../remotedesktop/Remove-RDVirtualDesktopFromCollection.md | 2 +- docset/winserver2012r2-ps/remotedesktop/Send-RDUserMessage.md | 2 +- .../remotedesktop/Set-RDActiveManagementServer.md | 2 +- docset/winserver2012r2-ps/remotedesktop/Set-RDCertificate.md | 2 +- .../remotedesktop/Set-RDClientAccessName.md | 2 +- .../remotedesktop/Set-RDConnectionBrokerHighAvailability.md | 2 +- .../remotedesktop/Set-RDDatabaseConnectionString.md | 2 +- .../remotedesktop/Set-RDDeploymentGatewayConfiguration.md | 2 +- .../remotedesktop/Set-RDFileTypeAssociation.md | 2 +- .../remotedesktop/Set-RDLicenseConfiguration.md | 2 +- .../remotedesktop/Set-RDPersonalVirtualDesktopAssignment.md | 2 +- .../Set-RDPersonalVirtualDesktopPatchSchedule.md | 2 +- docset/winserver2012r2-ps/remotedesktop/Set-RDRemoteApp.md | 2 +- .../winserver2012r2-ps/remotedesktop/Set-RDRemoteDesktop.md | 2 +- .../remotedesktop/Set-RDSessionCollectionConfiguration.md | 2 +- docset/winserver2012r2-ps/remotedesktop/Set-RDSessionHost.md | 2 +- .../Set-RDVirtualDesktopCollectionConfiguration.md | 2 +- .../remotedesktop/Set-RDVirtualDesktopConcurrency.md | 2 +- .../remotedesktop/Set-RDVirtualDesktopIdleCount.md | 2 +- .../remotedesktop/Set-RDVirtualDesktopTemplateExportPath.md | 2 +- docset/winserver2012r2-ps/remotedesktop/Set-RDWorkspace.md | 2 +- .../remotedesktop/Stop-RDVirtualDesktopCollectionJob.md | 2 +- docset/winserver2012r2-ps/remotedesktop/Test-RDOUAccess.md | 2 +- .../Test-RDVirtualDesktopADMachineAccountReuse.md | 2 +- .../remotedesktop/Update-RDVirtualDesktopCollection.md | 2 +- .../remotedesktopservices/Convert-License.md | 2 +- .../scheduledtasks/Disable-ScheduledTask.md | 2 +- .../winserver2012r2-ps/scheduledtasks/Enable-ScheduledTask.md | 2 +- .../winserver2012r2-ps/scheduledtasks/Export-ScheduledTask.md | 2 +- .../scheduledtasks/Get-ClusteredScheduledTask.md | 2 +- docset/winserver2012r2-ps/scheduledtasks/Get-ScheduledTask.md | 2 +- .../scheduledtasks/Get-ScheduledTaskInfo.md | 2 +- docset/winserver2012r2-ps/scheduledtasks/New-ScheduledTask.md | 2 +- .../scheduledtasks/New-ScheduledTaskAction.md | 2 +- .../scheduledtasks/New-ScheduledTaskPrincipal.md | 2 +- .../scheduledtasks/New-ScheduledTaskSettingsSet.md | 2 +- .../scheduledtasks/New-ScheduledTaskTrigger.md | 2 +- .../scheduledtasks/Register-ClusteredScheduledTask.md | 2 +- .../scheduledtasks/Register-ScheduledTask.md | 2 +- .../scheduledtasks/Set-ClusteredScheduledTask.md | 2 +- docset/winserver2012r2-ps/scheduledtasks/Set-ScheduledTask.md | 2 +- .../winserver2012r2-ps/scheduledtasks/Start-ScheduledTask.md | 2 +- .../winserver2012r2-ps/scheduledtasks/Stop-ScheduledTask.md | 2 +- .../scheduledtasks/Unregister-ClusteredScheduledTask.md | 2 +- .../scheduledtasks/Unregister-ScheduledTask.md | 2 +- .../winserver2012r2-ps/secureboot/Confirm-SecureBootUEFI.md | 2 +- docset/winserver2012r2-ps/secureboot/Format-SecureBootUEFI.md | 2 +- docset/winserver2012r2-ps/secureboot/Get-SecureBootPolicy.md | 2 +- docset/winserver2012r2-ps/secureboot/Get-SecureBootUEFI.md | 2 +- docset/winserver2012r2-ps/secureboot/Set-SecureBootUEFI.md | 2 +- docset/winserver2012r2-ps/servercore/Get-DisplayResolution.md | 2 +- docset/winserver2012r2-ps/servercore/Set-DisplayResolution.md | 2 +- .../Disable-ServerManagerStandardUserRemoting.md | 2 +- .../servermanager/Enable-ServerManagerStandardUserRemoting.md | 2 +- docset/winserver2012r2-ps/servermanager/Get-WindowsFeature.md | 2 +- .../servermanager/Install-WindowsFeature.md | 2 +- .../servermanager/Uninstall-WindowsFeature.md | 2 +- .../servermanagertasks/Get-SMCounterSample.md | 2 +- .../servermanagertasks/Get-SMPerformanceCollector.md | 2 +- .../servermanagertasks/Get-SMServerBpaResult.md | 2 +- .../servermanagertasks/Get-SMServerClusterName.md | 2 +- .../servermanagertasks/Get-SMServerEvent.md | 2 +- .../servermanagertasks/Get-SMServerFeature.md | 2 +- .../servermanagertasks/Get-SMServerInventory.md | 2 +- .../servermanagertasks/Get-SMServerService.md | 2 +- .../servermanagertasks/Remove-SMServerPerformanceLog.md | 2 +- .../servermanagertasks/Start-SMPerformanceCollector.md | 2 +- .../servermanagertasks/Stop-SMPerformanceCollector.md | 2 +- .../servermigration/Export-SmigServerSetting.md | 2 +- .../servermigration/Get-SmigServerFeature.md | 2 +- .../servermigration/Import-SmigServerSetting.md | 2 +- .../servermigration/Receive-SmigServerData.md | 2 +- .../winserver2012r2-ps/servermigration/Send-SmigServerData.md | 2 +- docset/winserver2012r2-ps/smbshare/Block-SmbShareAccess.md | 2 +- docset/winserver2012r2-ps/smbshare/Close-SmbOpenFile.md | 2 +- docset/winserver2012r2-ps/smbshare/Close-SmbSession.md | 2 +- docset/winserver2012r2-ps/smbshare/Disable-SmbDelegation.md | 2 +- docset/winserver2012r2-ps/smbshare/Enable-SmbDelegation.md | 2 +- docset/winserver2012r2-ps/smbshare/Get-SmbBandwidthLimit.md | 2 +- .../winserver2012r2-ps/smbshare/Get-SmbClientConfiguration.md | 2 +- .../smbshare/Get-SmbClientNetworkInterface.md | 2 +- docset/winserver2012r2-ps/smbshare/Get-SmbConnection.md | 2 +- docset/winserver2012r2-ps/smbshare/Get-SmbDelegation.md | 2 +- docset/winserver2012r2-ps/smbshare/Get-SmbMapping.md | 2 +- .../smbshare/Get-SmbMultichannelConnection.md | 2 +- .../smbshare/Get-SmbMultichannelConstraint.md | 2 +- docset/winserver2012r2-ps/smbshare/Get-SmbOpenFile.md | 2 +- .../winserver2012r2-ps/smbshare/Get-SmbServerConfiguration.md | 2 +- .../smbshare/Get-SmbServerNetworkInterface.md | 2 +- docset/winserver2012r2-ps/smbshare/Get-SmbSession.md | 2 +- docset/winserver2012r2-ps/smbshare/Get-SmbShare.md | 2 +- docset/winserver2012r2-ps/smbshare/Get-SmbShareAccess.md | 2 +- docset/winserver2012r2-ps/smbshare/Grant-SmbShareAccess.md | 2 +- docset/winserver2012r2-ps/smbshare/New-SmbMapping.md | 2 +- .../smbshare/New-SmbMultichannelConstraint.md | 2 +- docset/winserver2012r2-ps/smbshare/New-SmbShare.md | 2 +- .../winserver2012r2-ps/smbshare/Remove-SmbBandwidthLimit.md | 2 +- docset/winserver2012r2-ps/smbshare/Remove-SmbMapping.md | 2 +- .../smbshare/Remove-SmbMultichannelConstraint.md | 2 +- docset/winserver2012r2-ps/smbshare/Remove-SmbShare.md | 2 +- docset/winserver2012r2-ps/smbshare/Revoke-SmbShareAccess.md | 2 +- docset/winserver2012r2-ps/smbshare/Set-SmbBandwidthLimit.md | 2 +- .../winserver2012r2-ps/smbshare/Set-SmbClientConfiguration.md | 2 +- docset/winserver2012r2-ps/smbshare/Set-SmbPathAcl.md | 2 +- .../winserver2012r2-ps/smbshare/Set-SmbServerConfiguration.md | 2 +- docset/winserver2012r2-ps/smbshare/Set-SmbShare.md | 2 +- docset/winserver2012r2-ps/smbshare/Unblock-SmbShareAccess.md | 2 +- .../smbshare/Update-SmbMultichannelConnection.md | 2 +- docset/winserver2012r2-ps/smbwitness/Get-SmbWitnessClient.md | 2 +- docset/winserver2012r2-ps/smbwitness/Move-SmbWitnessClient.md | 2 +- docset/winserver2012r2-ps/smisconfig/Register-SmisProvider.md | 2 +- docset/winserver2012r2-ps/smisconfig/Search-SmisProvider.md | 2 +- .../winserver2012r2-ps/smisconfig/Unregister-SmisProvider.md | 2 +- .../softwareinventorylogging/Get-SilComputer.md | 2 +- .../softwareinventorylogging/Get-SilComputerIdentity.md | 2 +- .../softwareinventorylogging/Get-SilData.md | 2 +- .../softwareinventorylogging/Get-SilLogging.md | 2 +- .../softwareinventorylogging/Get-SilSoftware.md | 2 +- .../softwareinventorylogging/Get-SilUalAccess.md | 2 +- .../softwareinventorylogging/Get-SilWindowsUpdate.md | 2 +- .../softwareinventorylogging/Publish-SilData.md | 2 +- .../softwareinventorylogging/Set-SilLogging.md | 2 +- .../softwareinventorylogging/Start-SilLogging.md | 2 +- .../softwareinventorylogging/Stop-SilLogging.md | 2 +- docset/winserver2012r2-ps/startscreen/Export-StartLayout.md | 2 +- docset/winserver2012r2-ps/startscreen/Get-StartApps.md | 2 +- docset/winserver2012r2-ps/startscreen/Import-StartLayout.md | 2 +- .../winserver2012r2-ps/storage/Add-InitiatorIdToMaskingSet.md | 2 +- docset/winserver2012r2-ps/storage/Add-PartitionAccessPath.md | 2 +- docset/winserver2012r2-ps/storage/Add-PhysicalDisk.md | 2 +- .../winserver2012r2-ps/storage/Add-TargetPortToMaskingSet.md | 2 +- .../winserver2012r2-ps/storage/Add-VirtualDiskToMaskingSet.md | 2 +- docset/winserver2012r2-ps/storage/Clear-Disk.md | 2 +- docset/winserver2012r2-ps/storage/Clear-FileStorageTier.md | 2 +- docset/winserver2012r2-ps/storage/Connect-VirtualDisk.md | 2 +- .../storage/Disable-PhysicalDiskIndication.md | 2 +- .../storage/Disable-StorageEnclosureIdentification.md | 2 +- docset/winserver2012r2-ps/storage/Disconnect-VirtualDisk.md | 2 +- docset/winserver2012r2-ps/storage/Dismount-DiskImage.md | 2 +- .../storage/Enable-PhysicalDiskIndication.md | 2 +- .../storage/Enable-StorageEnclosureIdentification.md | 2 +- docset/winserver2012r2-ps/storage/Format-Volume.md | 2 +- docset/winserver2012r2-ps/storage/Get-Disk.md | 2 +- docset/winserver2012r2-ps/storage/Get-DiskImage.md | 2 +- docset/winserver2012r2-ps/storage/Get-FileIntegrity.md | 2 +- docset/winserver2012r2-ps/storage/Get-FileStorageTier.md | 2 +- docset/winserver2012r2-ps/storage/Get-InitiatorId.md | 2 +- docset/winserver2012r2-ps/storage/Get-InitiatorPort.md | 2 +- docset/winserver2012r2-ps/storage/Get-MaskingSet.md | 2 +- .../storage/Get-OffloadDataTransferSetting.md | 2 +- docset/winserver2012r2-ps/storage/Get-Partition.md | 2 +- .../winserver2012r2-ps/storage/Get-PartitionSupportedSize.md | 2 +- docset/winserver2012r2-ps/storage/Get-PhysicalDisk.md | 2 +- docset/winserver2012r2-ps/storage/Get-ResiliencySetting.md | 2 +- docset/winserver2012r2-ps/storage/Get-StorageEnclosure.md | 2 +- .../storage/Get-StorageEnclosureVendorData.md | 2 +- docset/winserver2012r2-ps/storage/Get-StorageJob.md | 2 +- docset/winserver2012r2-ps/storage/Get-StorageNode.md | 2 +- docset/winserver2012r2-ps/storage/Get-StoragePool.md | 2 +- docset/winserver2012r2-ps/storage/Get-StorageProvider.md | 2 +- .../storage/Get-StorageReliabilityCounter.md | 2 +- docset/winserver2012r2-ps/storage/Get-StorageSetting.md | 2 +- docset/winserver2012r2-ps/storage/Get-StorageSubSystem.md | 2 +- docset/winserver2012r2-ps/storage/Get-StorageTier.md | 2 +- .../storage/Get-StorageTierSupportedSize.md | 2 +- .../winserver2012r2-ps/storage/Get-SupportedClusterSizes.md | 2 +- docset/winserver2012r2-ps/storage/Get-SupportedFileSystems.md | 2 +- docset/winserver2012r2-ps/storage/Get-TargetPort.md | 2 +- docset/winserver2012r2-ps/storage/Get-TargetPortal.md | 2 +- docset/winserver2012r2-ps/storage/Get-VirtualDisk.md | 2 +- .../storage/Get-VirtualDiskSupportedSize.md | 2 +- docset/winserver2012r2-ps/storage/Get-Volume.md | 2 +- .../winserver2012r2-ps/storage/Get-VolumeCorruptionCount.md | 2 +- docset/winserver2012r2-ps/storage/Get-VolumeScrubPolicy.md | 2 +- docset/winserver2012r2-ps/storage/Hide-VirtualDisk.md | 2 +- docset/winserver2012r2-ps/storage/Initialize-Disk.md | 2 +- docset/winserver2012r2-ps/storage/Mount-DiskImage.md | 2 +- docset/winserver2012r2-ps/storage/New-MaskingSet.md | 2 +- docset/winserver2012r2-ps/storage/New-Partition.md | 2 +- docset/winserver2012r2-ps/storage/New-StoragePool.md | 2 +- .../storage/New-StorageSubsystemVirtualDisk.md | 2 +- docset/winserver2012r2-ps/storage/New-StorageTier.md | 2 +- docset/winserver2012r2-ps/storage/New-VirtualDisk.md | 2 +- docset/winserver2012r2-ps/storage/New-VirtualDiskClone.md | 2 +- docset/winserver2012r2-ps/storage/New-VirtualDiskSnapshot.md | 2 +- docset/winserver2012r2-ps/storage/New-Volume.md | 2 +- docset/winserver2012r2-ps/storage/Optimize-Volume.md | 2 +- .../winserver2012r2-ps/storage/Register-StorageSubsystem.md | 2 +- docset/winserver2012r2-ps/storage/Remove-InitiatorId.md | 2 +- .../storage/Remove-InitiatorIdFromMaskingSet.md | 2 +- docset/winserver2012r2-ps/storage/Remove-MaskingSet.md | 2 +- docset/winserver2012r2-ps/storage/Remove-Partition.md | 2 +- .../winserver2012r2-ps/storage/Remove-PartitionAccessPath.md | 2 +- docset/winserver2012r2-ps/storage/Remove-PhysicalDisk.md | 2 +- docset/winserver2012r2-ps/storage/Remove-StoragePool.md | 2 +- docset/winserver2012r2-ps/storage/Remove-StorageTier.md | 2 +- .../storage/Remove-TargetPortFromMaskingSet.md | 2 +- docset/winserver2012r2-ps/storage/Remove-VirtualDisk.md | 2 +- .../storage/Remove-VirtualDiskFromMaskingSet.md | 2 +- docset/winserver2012r2-ps/storage/Rename-MaskingSet.md | 2 +- docset/winserver2012r2-ps/storage/Repair-FileIntegrity.md | 2 +- docset/winserver2012r2-ps/storage/Repair-VirtualDisk.md | 2 +- docset/winserver2012r2-ps/storage/Repair-Volume.md | 2 +- docset/winserver2012r2-ps/storage/Reset-PhysicalDisk.md | 2 +- .../storage/Reset-StorageReliabilityCounter.md | 2 +- docset/winserver2012r2-ps/storage/Resize-Partition.md | 2 +- docset/winserver2012r2-ps/storage/Resize-StorageTier.md | 2 +- docset/winserver2012r2-ps/storage/Resize-VirtualDisk.md | 2 +- docset/winserver2012r2-ps/storage/Set-Disk.md | 2 +- docset/winserver2012r2-ps/storage/Set-FileIntegrity.md | 2 +- docset/winserver2012r2-ps/storage/Set-FileStorageTier.md | 2 +- docset/winserver2012r2-ps/storage/Set-InitiatorPort.md | 2 +- docset/winserver2012r2-ps/storage/Set-Partition.md | 2 +- docset/winserver2012r2-ps/storage/Set-PhysicalDisk.md | 2 +- docset/winserver2012r2-ps/storage/Set-ResiliencySetting.md | 2 +- docset/winserver2012r2-ps/storage/Set-StoragePool.md | 2 +- docset/winserver2012r2-ps/storage/Set-StorageProvider.md | 2 +- docset/winserver2012r2-ps/storage/Set-StorageSetting.md | 2 +- docset/winserver2012r2-ps/storage/Set-StorageSubSystem.md | 2 +- docset/winserver2012r2-ps/storage/Set-StorageTier.md | 2 +- docset/winserver2012r2-ps/storage/Set-VirtualDisk.md | 2 +- docset/winserver2012r2-ps/storage/Set-Volume.md | 2 +- docset/winserver2012r2-ps/storage/Set-VolumeScrubPolicy.md | 2 +- docset/winserver2012r2-ps/storage/Show-VirtualDisk.md | 2 +- .../winserver2012r2-ps/storage/Unregister-StorageSubsystem.md | 2 +- docset/winserver2012r2-ps/storage/Update-Disk.md | 2 +- docset/winserver2012r2-ps/storage/Update-HostStorageCache.md | 2 +- docset/winserver2012r2-ps/storage/Update-StoragePool.md | 2 +- .../winserver2012r2-ps/storage/Update-StorageProviderCache.md | 2 +- docset/winserver2012r2-ps/storage/Write-VolumeCache.md | 2 +- .../storagespaces/Disable-StorageSpacesMpioSupport.md | 2 +- .../storagespaces/Enable-StorageSpacesMpioSupport.md | 2 +- .../storagespaces/Get-AvailableDriveLetter.md | 2 +- .../storagespaces/Get-SpacesConfiguration.md | 2 +- .../storagespaces/Get-SpacesPhysicalDisk.md | 2 +- docset/winserver2012r2-ps/storagespaces/Get-SpacesPool.md | 2 +- .../storagespaces/Get-SpacesPoolPhysicalDiskHWCounter.md | 2 +- docset/winserver2012r2-ps/storagespaces/Get-SpacesProvider.md | 2 +- .../winserver2012r2-ps/storagespaces/Get-SpacesSubsystem.md | 2 +- docset/winserver2012r2-ps/storagespaces/Get-SpacesVolume.md | 2 +- .../storagespaces/Get-StorageSpacesMpioConfiguration.md | 2 +- docset/winserver2012r2-ps/storagespaces/New-SpacesPool.md | 2 +- docset/winserver2012r2-ps/storagespaces/New-SpacesVolume.md | 2 +- .../storagespaces/New-StorageSpacesEventLog.md | 2 +- .../storagespaces/Remove-StorageSpacesEventLog.md | 2 +- .../storagespaces/Repair-SpacesConfiguration.md | 2 +- .../winserver2012r2-ps/storagespaces/Resize-SpacesVolume.md | 2 +- .../storagespaces/Test-SpacesConfiguration.md | 2 +- docset/winserver2012r2-ps/syncshare/Disable-SyncShare.md | 2 +- docset/winserver2012r2-ps/syncshare/Enable-SyncShare.md | 2 +- docset/winserver2012r2-ps/syncshare/Get-SyncServerSetting.md | 2 +- docset/winserver2012r2-ps/syncshare/Get-SyncShare.md | 2 +- docset/winserver2012r2-ps/syncshare/Get-SyncUserStatus.md | 2 +- docset/winserver2012r2-ps/syncshare/New-SyncShare.md | 2 +- docset/winserver2012r2-ps/syncshare/Remove-SyncShare.md | 2 +- docset/winserver2012r2-ps/syncshare/Repair-SyncShare.md | 2 +- docset/winserver2012r2-ps/syncshare/Set-SyncServerSetting.md | 2 +- docset/winserver2012r2-ps/syncshare/Set-SyncShare.md | 2 +- docset/winserver2012r2-ps/tls/Disable-TlsSessionTicketKey.md | 2 +- docset/winserver2012r2-ps/tls/Enable-TlsSessionTicketKey.md | 2 +- docset/winserver2012r2-ps/tls/Export-TlsSessionTicketKey.md | 2 +- docset/winserver2012r2-ps/tls/New-TlsSessionTicketKey.md | 2 +- .../troubleshootingpack/Get-TroubleshootingPack.md | 2 +- .../troubleshootingpack/Invoke-TroubleshootingPack.md | 2 +- docset/winserver2012r2-ps/trustedplatformmodule/Clear-Tpm.md | 2 +- .../trustedplatformmodule/ConvertTo-TpmOwnerAuth.md | 2 +- .../trustedplatformmodule/Disable-TpmAutoProvisioning.md | 2 +- .../trustedplatformmodule/Enable-TpmAutoProvisioning.md | 2 +- docset/winserver2012r2-ps/trustedplatformmodule/Get-Tpm.md | 2 +- .../trustedplatformmodule/Get-TpmEndorsementKeyInfo.md | 2 +- .../trustedplatformmodule/Get-TpmSupportedFeature.md | 2 +- .../trustedplatformmodule/Import-TpmOwnerAuth.md | 2 +- .../trustedplatformmodule/Initialize-Tpm.md | 2 +- .../trustedplatformmodule/Set-TpmOwnerAuth.md | 2 +- .../winserver2012r2-ps/trustedplatformmodule/Unblock-Tpm.md | 2 +- docset/winserver2012r2-ps/updateservices/Add-WsusComputer.md | 2 +- .../winserver2012r2-ps/updateservices/Approve-WsusUpdate.md | 2 +- docset/winserver2012r2-ps/updateservices/Deny-WsusUpdate.md | 2 +- .../updateservices/Get-WsusClassification.md | 2 +- docset/winserver2012r2-ps/updateservices/Get-WsusComputer.md | 2 +- docset/winserver2012r2-ps/updateservices/Get-WsusProduct.md | 2 +- docset/winserver2012r2-ps/updateservices/Get-WsusServer.md | 2 +- docset/winserver2012r2-ps/updateservices/Get-WsusUpdate.md | 2 +- .../updateservices/Invoke-WsusServerCleanup.md | 2 +- .../updateservices/Set-WsusClassification.md | 2 +- docset/winserver2012r2-ps/updateservices/Set-WsusProduct.md | 2 +- .../updateservices/Set-WsusServerSynchronization.md | 2 +- docset/winserver2012r2-ps/useraccesslogging/Disable-Ual.md | 2 +- docset/winserver2012r2-ps/useraccesslogging/Enable-Ual.md | 2 +- docset/winserver2012r2-ps/useraccesslogging/Get-Ual.md | 2 +- .../useraccesslogging/Get-UalDailyAccess.md | 2 +- .../useraccesslogging/Get-UalDailyDeviceAccess.md | 2 +- .../useraccesslogging/Get-UalDailyUserAccess.md | 2 +- .../useraccesslogging/Get-UalDeviceAccess.md | 2 +- docset/winserver2012r2-ps/useraccesslogging/Get-UalDns.md | 2 +- docset/winserver2012r2-ps/useraccesslogging/Get-UalHyperV.md | 2 +- .../winserver2012r2-ps/useraccesslogging/Get-UalOverview.md | 2 +- .../useraccesslogging/Get-UalServerDevice.md | 2 +- .../winserver2012r2-ps/useraccesslogging/Get-UalServerUser.md | 2 +- .../winserver2012r2-ps/useraccesslogging/Get-UalSystemId.md | 2 +- .../winserver2012r2-ps/useraccesslogging/Get-UalUserAccess.md | 2 +- docset/winserver2012r2-ps/vpnclient/Add-VpnConnection.md | 2 +- docset/winserver2012r2-ps/vpnclient/Add-VpnConnectionRoute.md | 2 +- .../vpnclient/Add-VpnConnectionTriggerApplication.md | 2 +- .../vpnclient/Add-VpnConnectionTriggerTrustedNetwork.md | 2 +- docset/winserver2012r2-ps/vpnclient/Get-VpnConnection.md | 2 +- .../winserver2012r2-ps/vpnclient/Get-VpnConnectionTrigger.md | 2 +- docset/winserver2012r2-ps/vpnclient/New-EapConfiguration.md | 2 +- docset/winserver2012r2-ps/vpnclient/New-VpnServerAddress.md | 2 +- docset/winserver2012r2-ps/vpnclient/Remove-VpnConnection.md | 2 +- .../winserver2012r2-ps/vpnclient/Remove-VpnConnectionRoute.md | 2 +- .../vpnclient/Remove-VpnConnectionTriggerApplication.md | 2 +- .../vpnclient/Remove-VpnConnectionTriggerTrustedNetwork.md | 2 +- docset/winserver2012r2-ps/vpnclient/Set-VpnConnection.md | 2 +- .../vpnclient/Set-VpnConnectionIPsecConfiguration.md | 2 +- docset/winserver2012r2-ps/vpnclient/Set-VpnConnectionProxy.md | 2 +- docset/winserver2012r2-ps/waspsext/Get-WASAssessment.md | 2 +- docset/winserver2012r2-ps/waspsext/Get-WASComputer.md | 2 +- docset/winserver2012r2-ps/waspsext/Get-WASImage.md | 2 +- docset/winserver2012r2-ps/waspsext/Get-WASJob.md | 2 +- docset/winserver2012r2-ps/waspsext/Get-WASJobInstance.md | 2 +- .../winserver2012r2-ps/waspsext/Get-WASJobInstanceStatus.md | 2 +- docset/winserver2012r2-ps/waspsext/Invoke-WASJob.md | 2 +- docset/winserver2012r2-ps/waspsext/Register-WASImage.md | 2 +- docset/winserver2012r2-ps/waspsext/Reset-WASComputer.md | 2 +- docset/winserver2012r2-ps/waspsext/Resume-WASComputer.md | 2 +- docset/winserver2012r2-ps/waspsext/Skip-WASJobInstance.md | 2 +- docset/winserver2012r2-ps/waspsext/Stop-WASJobInstance.md | 2 +- docset/winserver2012r2-ps/waspsext/Update-WASJob.md | 2 +- docset/winserver2012r2-ps/wdac/Add-OdbcDsn.md | 2 +- docset/winserver2012r2-ps/wdac/Disable-OdbcPerfCounter.md | 2 +- docset/winserver2012r2-ps/wdac/Disable-WdacBidTrace.md | 2 +- docset/winserver2012r2-ps/wdac/Enable-OdbcPerfCounter.md | 2 +- docset/winserver2012r2-ps/wdac/Enable-WdacBidTrace.md | 2 +- docset/winserver2012r2-ps/wdac/Get-OdbcDriver.md | 2 +- docset/winserver2012r2-ps/wdac/Get-OdbcDsn.md | 2 +- docset/winserver2012r2-ps/wdac/Get-OdbcPerfCounter.md | 2 +- docset/winserver2012r2-ps/wdac/Get-WdacBidTrace.md | 2 +- docset/winserver2012r2-ps/wdac/Remove-OdbcDsn.md | 2 +- docset/winserver2012r2-ps/wdac/Set-OdbcDriver.md | 2 +- docset/winserver2012r2-ps/wdac/Set-OdbcDsn.md | 2 +- docset/winserver2012r2-ps/wds/Add-WdsDriverPackage.md | 2 +- docset/winserver2012r2-ps/wds/Approve-WdsClient.md | 2 +- docset/winserver2012r2-ps/wds/Copy-WdsInstallImage.md | 2 +- docset/winserver2012r2-ps/wds/Deny-WdsClient.md | 2 +- docset/winserver2012r2-ps/wds/Disable-WdsBootImage.md | 2 +- docset/winserver2012r2-ps/wds/Disable-WdsDriverPackage.md | 2 +- docset/winserver2012r2-ps/wds/Disable-WdsInstallImage.md | 2 +- .../winserver2012r2-ps/wds/Disconnect-WdsMulticastClient.md | 2 +- docset/winserver2012r2-ps/wds/Enable-WdsBootImage.md | 2 +- docset/winserver2012r2-ps/wds/Enable-WdsDriverPackage.md | 2 +- docset/winserver2012r2-ps/wds/Enable-WdsInstallImage.md | 2 +- docset/winserver2012r2-ps/wds/Export-WdsBootImage.md | 2 +- docset/winserver2012r2-ps/wds/Export-WdsInstallImage.md | 2 +- docset/winserver2012r2-ps/wds/Get-WdsBootImage.md | 2 +- docset/winserver2012r2-ps/wds/Get-WdsClient.md | 2 +- docset/winserver2012r2-ps/wds/Get-WdsDriverPackage.md | 2 +- docset/winserver2012r2-ps/wds/Get-WdsInstallImage.md | 2 +- docset/winserver2012r2-ps/wds/Get-WdsInstallImageGroup.md | 2 +- docset/winserver2012r2-ps/wds/Get-WdsMulticastClient.md | 2 +- docset/winserver2012r2-ps/wds/Import-WdsBootImage.md | 2 +- docset/winserver2012r2-ps/wds/Import-WdsDriverPackage.md | 2 +- docset/winserver2012r2-ps/wds/Import-WdsInstallImage.md | 2 +- docset/winserver2012r2-ps/wds/New-WdsClient.md | 2 +- docset/winserver2012r2-ps/wds/New-WdsInstallImageGroup.md | 2 +- docset/winserver2012r2-ps/wds/Remove-WdsBootImage.md | 2 +- docset/winserver2012r2-ps/wds/Remove-WdsClient.md | 2 +- docset/winserver2012r2-ps/wds/Remove-WdsDriverPackage.md | 2 +- docset/winserver2012r2-ps/wds/Remove-WdsInstallImage.md | 2 +- docset/winserver2012r2-ps/wds/Remove-WdsInstallImageGroup.md | 2 +- docset/winserver2012r2-ps/wds/Set-WdsBootImage.md | 2 +- docset/winserver2012r2-ps/wds/Set-WdsClient.md | 2 +- docset/winserver2012r2-ps/wds/Set-WdsInstallImage.md | 2 +- docset/winserver2012r2-ps/wds/Set-WdsInstallImageGroup.md | 2 +- .../webadministration/Add-WebConfiguration.md | 2 +- .../webadministration/Add-WebConfigurationLock.md | 2 +- .../webadministration/Add-WebConfigurationProperty.md | 2 +- .../webadministration/Backup-WebConfiguration.md | 2 +- .../webadministration/Clear-WebCentralCertProvider.md | 2 +- .../webadministration/Clear-WebConfiguration.md | 2 +- .../webadministration/Clear-WebRequestTracingSetting.md | 2 +- .../webadministration/Clear-WebRequestTracingSettings.md | 2 +- .../webadministration/ConvertTo-WebApplication.md | 2 +- .../webadministration/Disable-WebCentralCertProvider.md | 2 +- .../webadministration/Disable-WebGlobalModule.md | 2 +- .../webadministration/Disable-WebRequestTracing.md | 2 +- .../webadministration/Enable-WebCentralCertProvider.md | 2 +- .../webadministration/Enable-WebGlobalModule.md | 2 +- .../webadministration/Enable-WebRequestTracing.md | 2 +- .../winserver2012r2-ps/webadministration/Get-WebAppDomain.md | 2 +- .../webadministration/Get-WebAppPoolState.md | 2 +- .../webadministration/Get-WebApplication.md | 2 +- docset/winserver2012r2-ps/webadministration/Get-WebBinding.md | 2 +- .../webadministration/Get-WebCentralCertProvider.md | 2 +- .../winserver2012r2-ps/webadministration/Get-WebConfigFile.md | 2 +- .../webadministration/Get-WebConfiguration.md | 2 +- .../webadministration/Get-WebConfigurationBackup.md | 2 +- .../webadministration/Get-WebConfigurationLocation.md | 2 +- .../webadministration/Get-WebConfigurationLock.md | 2 +- .../webadministration/Get-WebConfigurationProperty.md | 2 +- .../winserver2012r2-ps/webadministration/Get-WebFilePath.md | 2 +- .../webadministration/Get-WebGlobalModule.md | 2 +- docset/winserver2012r2-ps/webadministration/Get-WebHandler.md | 2 +- .../winserver2012r2-ps/webadministration/Get-WebItemState.md | 2 +- .../webadministration/Get-WebManagedModule.md | 2 +- docset/winserver2012r2-ps/webadministration/Get-WebRequest.md | 2 +- docset/winserver2012r2-ps/webadministration/Get-WebURL.md | 2 +- .../webadministration/Get-WebVirtualDirectory.md | 2 +- docset/winserver2012r2-ps/webadministration/Get-Website.md | 2 +- .../winserver2012r2-ps/webadministration/Get-WebsiteState.md | 2 +- docset/winserver2012r2-ps/webadministration/New-WebAppPool.md | 2 +- .../webadministration/New-WebApplication.md | 2 +- docset/winserver2012r2-ps/webadministration/New-WebBinding.md | 2 +- docset/winserver2012r2-ps/webadministration/New-WebFtpSite.md | 2 +- .../webadministration/New-WebGlobalModule.md | 2 +- docset/winserver2012r2-ps/webadministration/New-WebHandler.md | 2 +- .../webadministration/New-WebManagedModule.md | 2 +- .../webadministration/New-WebVirtualDirectory.md | 2 +- docset/winserver2012r2-ps/webadministration/New-Website.md | 2 +- .../winserver2012r2-ps/webadministration/Remove-WebAppPool.md | 2 +- .../webadministration/Remove-WebApplication.md | 2 +- .../winserver2012r2-ps/webadministration/Remove-WebBinding.md | 2 +- .../webadministration/Remove-WebConfigurationBackup.md | 2 +- .../webadministration/Remove-WebConfigurationLocation.md | 2 +- .../webadministration/Remove-WebConfigurationLock.md | 2 +- .../webadministration/Remove-WebConfigurationProperty.md | 2 +- .../webadministration/Remove-WebGlobalModule.md | 2 +- .../winserver2012r2-ps/webadministration/Remove-WebHandler.md | 2 +- .../webadministration/Remove-WebManagedModule.md | 2 +- .../webadministration/Remove-WebVirtualDirectory.md | 2 +- docset/winserver2012r2-ps/webadministration/Remove-Website.md | 2 +- .../webadministration/Rename-WebConfigurationLocation.md | 2 +- .../webadministration/Restart-WebAppPool.md | 2 +- .../winserver2012r2-ps/webadministration/Restart-WebItem.md | 2 +- .../webadministration/Restore-WebConfiguration.md | 2 +- .../webadministration/Select-WebConfiguration.md | 2 +- docset/winserver2012r2-ps/webadministration/Set-WebBinding.md | 2 +- .../webadministration/Set-WebCentralCertProvider.md | 2 +- .../webadministration/Set-WebCentralCertProviderCredential.md | 2 +- .../webadministration/Set-WebConfiguration.md | 2 +- .../webadministration/Set-WebConfigurationProperty.md | 2 +- .../webadministration/Set-WebGlobalModule.md | 2 +- docset/winserver2012r2-ps/webadministration/Set-WebHandler.md | 2 +- .../webadministration/Set-WebManagedModule.md | 2 +- .../winserver2012r2-ps/webadministration/Start-WebAppPool.md | 2 +- .../webadministration/Start-WebCommitDelay.md | 2 +- docset/winserver2012r2-ps/webadministration/Start-WebItem.md | 2 +- docset/winserver2012r2-ps/webadministration/Start-Website.md | 2 +- .../winserver2012r2-ps/webadministration/Stop-WebAppPool.md | 2 +- .../webadministration/Stop-WebCommitDelay.md | 2 +- docset/winserver2012r2-ps/webadministration/Stop-WebItem.md | 2 +- docset/winserver2012r2-ps/webadministration/Stop-Website.md | 2 +- .../webapplicationproxy/Add-WebApplicationProxyApplication.md | 2 +- .../webapplicationproxy/Get-WebApplicationProxyApplication.md | 2 +- .../Get-WebApplicationProxyAvailableADFSRelyingParty.md | 2 +- .../Get-WebApplicationProxyConfiguration.md | 2 +- .../webapplicationproxy/Get-WebApplicationProxyHealth.md | 2 +- .../Get-WebApplicationProxySslCertificate.md | 2 +- .../webapplicationproxy/Install-WebApplicationProxy.md | 2 +- .../Remove-WebApplicationProxyApplication.md | 2 +- .../webapplicationproxy/Set-WebApplicationProxyApplication.md | 2 +- .../Set-WebApplicationProxyConfiguration.md | 2 +- .../Set-WebApplicationProxySslCertificate.md | 2 +- .../Update-WebApplicationProxyDeviceRegistration.md | 2 +- docset/winserver2012r2-ps/whea/Get-WheaMemoryPolicy.md | 2 +- docset/winserver2012r2-ps/whea/Set-WheaMemoryPolicy.md | 2 +- .../windowsdeveloperlicense/Get-WindowsDeveloperLicense.md | 2 +- .../Show-WindowsDeveloperLicenseRegistration.md | 2 +- .../Unregister-WindowsDeveloperLicense.md | 2 +- .../windowserrorreporting/Disable-WindowsErrorReporting.md | 2 +- .../windowserrorreporting/Enable-WindowsErrorReporting.md | 2 +- .../windowserrorreporting/Get-WindowsErrorReporting.md | 2 +- .../windowssearch/Get-WindowsSearchSetting.md | 2 +- .../windowssearch/Set-WindowsSearchSetting.md | 2 +- .../windowsserverbackup/Add-WBBackupTarget.md | 2 +- .../windowsserverbackup/Add-WBBareMetalRecovery.md | 2 +- .../winserver2012r2-ps/windowsserverbackup/Add-WBFileSpec.md | 2 +- .../windowsserverbackup/Add-WBSystemState.md | 2 +- .../windowsserverbackup/Add-WBVirtualMachine.md | 2 +- docset/winserver2012r2-ps/windowsserverbackup/Add-WBVolume.md | 2 +- .../winserver2012r2-ps/windowsserverbackup/Get-WBBackupSet.md | 2 +- .../windowsserverbackup/Get-WBBackupTarget.md | 2 +- .../windowsserverbackup/Get-WBBackupVolumeBrowsePath.md | 2 +- .../windowsserverbackup/Get-WBBareMetalRecovery.md | 2 +- docset/winserver2012r2-ps/windowsserverbackup/Get-WBDisk.md | 2 +- .../winserver2012r2-ps/windowsserverbackup/Get-WBFileSpec.md | 2 +- docset/winserver2012r2-ps/windowsserverbackup/Get-WBJob.md | 2 +- .../windowsserverbackup/Get-WBPerformanceConfiguration.md | 2 +- docset/winserver2012r2-ps/windowsserverbackup/Get-WBPolicy.md | 2 +- .../winserver2012r2-ps/windowsserverbackup/Get-WBSchedule.md | 2 +- .../winserver2012r2-ps/windowsserverbackup/Get-WBSummary.md | 2 +- .../windowsserverbackup/Get-WBSystemState.md | 2 +- .../windowsserverbackup/Get-WBVirtualMachine.md | 2 +- docset/winserver2012r2-ps/windowsserverbackup/Get-WBVolume.md | 2 +- .../windowsserverbackup/Get-WBVssBackupOption.md | 2 +- .../windowsserverbackup/New-WBBackupTarget.md | 2 +- .../winserver2012r2-ps/windowsserverbackup/New-WBFileSpec.md | 2 +- docset/winserver2012r2-ps/windowsserverbackup/New-WBPolicy.md | 2 +- .../windowsserverbackup/Remove-WBBackupSet.md | 2 +- .../windowsserverbackup/Remove-WBBackupTarget.md | 2 +- .../windowsserverbackup/Remove-WBBareMetalRecovery.md | 2 +- .../windowsserverbackup/Remove-WBCatalog.md | 2 +- .../windowsserverbackup/Remove-WBFileSpec.md | 2 +- .../winserver2012r2-ps/windowsserverbackup/Remove-WBPolicy.md | 2 +- .../windowsserverbackup/Remove-WBSystemState.md | 2 +- .../windowsserverbackup/Remove-WBVirtualMachine.md | 2 +- .../winserver2012r2-ps/windowsserverbackup/Remove-WBVolume.md | 2 +- .../windowsserverbackup/Restore-WBCatalog.md | 2 +- .../winserver2012r2-ps/windowsserverbackup/Resume-WBBackup.md | 2 +- .../windowsserverbackup/Resume-WBVolumeRecovery.md | 2 +- .../windowsserverbackup/Set-WBPerformanceConfiguration.md | 2 +- docset/winserver2012r2-ps/windowsserverbackup/Set-WBPolicy.md | 2 +- .../winserver2012r2-ps/windowsserverbackup/Set-WBSchedule.md | 2 +- .../windowsserverbackup/Set-WBVssBackupOption.md | 2 +- .../windowsserverbackup/Start-WBApplicationRecovery.md | 2 +- .../winserver2012r2-ps/windowsserverbackup/Start-WBBackup.md | 2 +- .../windowsserverbackup/Start-WBFileRecovery.md | 2 +- .../windowsserverbackup/Start-WBHyperVRecovery.md | 2 +- .../windowsserverbackup/Start-WBSystemStateRecovery.md | 2 +- .../windowsserverbackup/Start-WBVolumeRecovery.md | 2 +- docset/winserver2012r2-ps/windowsserverbackup/Stop-WBJob.md | 2 +- .../winserver2012r2-ps/wsscmdlets/Add-HostedEmailAccount.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Add-O365User.md | 2 +- .../wsscmdlets/Add-WssBackupConfiguration.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Add-WssBackupSchedule.md | 2 +- .../wsscmdlets/Add-WssBackupSystemRecovery.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Add-WssBackupTarget.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Add-WssBackupVolume.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Add-WssComputerAccess.md | 2 +- .../winserver2012r2-ps/wsscmdlets/Add-WssDisksToSpacesPool.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Add-WssFolder.md | 2 +- .../winserver2012r2-ps/wsscmdlets/Add-WssLocalMachineCert.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Add-WssMsoGroup.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Add-WssMsoUser.md | 2 +- .../wsscmdlets/Add-WssRemoteWebAccessLink.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Add-WssUser.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Add-WssUserGroup.md | 2 +- .../wsscmdlets/Add-WssUserGroupMembership.md | 2 +- .../wsscmdlets/Clear-AssignedHostedEmailAccount.md | 2 +- .../winserver2012r2-ps/wsscmdlets/Clear-O365AssignedUser.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Clear-WssAlert.md | 2 +- .../wsscmdlets/Copy-WssClientRecoveryImage.md | 2 +- .../wsscmdlets/Disable-ExchangeIntegration.md | 2 +- .../wsscmdlets/Disable-FolderRedirection.md | 2 +- .../wsscmdlets/Disable-HostedEmailAccount.md | 2 +- .../wsscmdlets/Disable-HostedEmailIntegration.md | 2 +- .../winserver2012r2-ps/wsscmdlets/Disable-O365Integration.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Disable-O365User.md | 2 +- .../winserver2012r2-ps/wsscmdlets/Disable-SecurityPolicy.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Disable-WssAlert.md | 2 +- .../winserver2012r2-ps/wsscmdlets/Disable-WssBackupPolicy.md | 2 +- .../winserver2012r2-ps/wsscmdlets/Disable-WssBranchCache.md | 2 +- .../winserver2012r2-ps/wsscmdlets/Disable-WssClientBackup.md | 2 +- .../wsscmdlets/Disable-WssClientBackupVolume.md | 2 +- .../wsscmdlets/Disable-WssMsoIntegration.md | 2 +- .../Disable-WssMsoSharePointPermissionInheritance.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Disable-WssMsoUser.md | 2 +- .../wsscmdlets/Disable-WssRemoteWebAccess.md | 2 +- .../wsscmdlets/Enable-ExchangeIntegration.md | 2 +- .../winserver2012r2-ps/wsscmdlets/Enable-FolderRedirection.md | 2 +- .../wsscmdlets/Enable-HostedEmailAccount.md | 2 +- .../wsscmdlets/Enable-HostedEmailIntegration.md | 2 +- .../winserver2012r2-ps/wsscmdlets/Enable-O365Integration.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Enable-O365User.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Enable-SecurityPolicy.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Enable-WssAlert.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Enable-WssBranchCache.md | 2 +- .../winserver2012r2-ps/wsscmdlets/Enable-WssClientBackup.md | 2 +- .../wsscmdlets/Enable-WssClientBackupVolume.md | 2 +- .../wsscmdlets/Enable-WssIntuneIntegration.md | 2 +- .../winserver2012r2-ps/wsscmdlets/Enable-WssMsoIntegration.md | 2 +- .../Enable-WssMsoSharePointPermissionInheritance.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Enable-WssMsoUser.md | 2 +- .../wsscmdlets/Enable-WssRemoteWebAccess.md | 2 +- .../winserver2012r2-ps/wsscmdlets/Get-HostedEmailAccount.md | 2 +- .../winserver2012r2-ps/wsscmdlets/Get-HostedEmailDomains.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Get-O365AssignedUser.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Get-O365DnsRecord.md | 2 +- .../wsscmdlets/Get-O365DomainConfiguration.md | 2 +- .../winserver2012r2-ps/wsscmdlets/Get-O365EmailAddresses.md | 2 +- .../winserver2012r2-ps/wsscmdlets/Get-O365SubscriptionInfo.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Get-O365User.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Get-WssAddIn.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Get-WssAlert.md | 2 +- .../wsscmdlets/Get-WssBackupConfiguration.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Get-WssBackupDisk.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Get-WssBackupJob.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Get-WssBackupPolicy.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Get-WssBackupSchedule.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Get-WssBackupSet.md | 2 +- .../wsscmdlets/Get-WssBackupSystemRecovery.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Get-WssBackupTarget.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Get-WssBackupVolume.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Get-WssBpaScanResult.md | 2 +- .../winserver2012r2-ps/wsscmdlets/Get-WssBranchCacheStatus.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Get-WssClientBackup.md | 2 +- .../wsscmdlets/Get-WssClientBackupClient.md | 2 +- .../wsscmdlets/Get-WssClientBackupOperationStatus.md | 2 +- .../wsscmdlets/Get-WssClientBackupVolume.md | 2 +- .../wsscmdlets/Get-WssClientBackupVolumeJob.md | 2 +- .../wsscmdlets/Get-WssClientBmrMediaGenerationJob.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Get-WssComputer.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Get-WssDisk.md | 2 +- .../wsscmdlets/Get-WssDomainNameConfiguration.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Get-WssDrive.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Get-WssDriveInUse.md | 2 +- .../wsscmdlets/Get-WssFileHistoryConfiguration.md | 2 +- .../wsscmdlets/Get-WssFileHistoryManagementStatus.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Get-WssFolder.md | 2 +- .../wsscmdlets/Get-WssGlobalClientBackupPolicy.md | 2 +- .../winserver2012r2-ps/wsscmdlets/Get-WssMediaLibraryName.md | 2 +- .../wsscmdlets/Get-WssMediaServerEnabled.md | 2 +- .../winserver2012r2-ps/wsscmdlets/Get-WssMediaSharedFolder.md | 2 +- .../wsscmdlets/Get-WssMediaStreamingVideoQuality.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Get-WssMountVhd.md | 2 +- .../winserver2012r2-ps/wsscmdlets/Get-WssMsoAssignedGroup.md | 2 +- .../winserver2012r2-ps/wsscmdlets/Get-WssMsoAssignedUser.md | 2 +- .../wsscmdlets/Get-WssMsoDomainConfiguration.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Get-WssMsoGroup.md | 2 +- .../wsscmdlets/Get-WssMsoSharePointLibrary.md | 2 +- .../wsscmdlets/Get-WssMsoSharePointPermission.md | 2 +- .../wsscmdlets/Get-WssMsoSharePointPrincipal.md | 2 +- .../winserver2012r2-ps/wsscmdlets/Get-WssMsoSharePointSite.md | 2 +- .../winserver2012r2-ps/wsscmdlets/Get-WssMsoSubscription.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Get-WssMsoUser.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Get-WssPasswordPolicy.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Get-WssPersonalFolder.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Get-WssPoolableDisk.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Get-WssRecoveryItem.md | 2 +- .../winserver2012r2-ps/wsscmdlets/Get-WssRemoteConnection.md | 2 +- .../wsscmdlets/Get-WssRemoteWebAccessBackgroundImage.md | 2 +- .../wsscmdlets/Get-WssRemoteWebAccessLink.md | 2 +- .../wsscmdlets/Get-WssRemoteWebAccessLogo.md | 2 +- .../wsscmdlets/Get-WssRemoteWebAccessStatus.md | 2 +- .../wsscmdlets/Get-WssRemoteWebAccessTitle.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Get-WssReport.md | 2 +- .../wsscmdlets/Get-WssReportEmailSetting.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Get-WssReportHtml.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Get-WssReportSchedule.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Get-WssReportSection.md | 2 +- .../winserver2012r2-ps/wsscmdlets/Get-WssRouterInformation.md | 2 +- .../wsscmdlets/Get-WssServerConnectionOption.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Get-WssSpacesPool.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Get-WssUser.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Get-WssUserGroup.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Get-WssWinSatCpuScore.md | 2 +- .../wsscmdlets/Get-WssWinSatCpuScoreUserConfigurable.md | 2 +- .../winserver2012r2-ps/wsscmdlets/Initialize-WssBackupDisk.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Initialize-WssDisk.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Install-WssAddIn.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Install-WssVpnServer.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Invoke-WssBpaScan.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Measure-WssFolder.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Move-WssFolder.md | 2 +- .../wsscmdlets/New-WssBackupConfiguration.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/New-WssBackupTarget.md | 2 +- .../wsscmdlets/New-WssMsoSharePointLibrary.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/New-WssPersonalFolder.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/New-WssRecoveryOption.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/New-WssReport.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/New-WssStorageSpace.md | 2 +- .../wsscmdlets/Remove-HostedEmailAccount.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Remove-O365Domain.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Remove-O365User.md | 2 +- .../wsscmdlets/Remove-WssBackupConfiguration.md | 2 +- .../winserver2012r2-ps/wsscmdlets/Remove-WssBackupSchedule.md | 2 +- .../wsscmdlets/Remove-WssBackupSystemRecovery.md | 2 +- .../winserver2012r2-ps/wsscmdlets/Remove-WssBackupTarget.md | 2 +- .../winserver2012r2-ps/wsscmdlets/Remove-WssBackupVolume.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Remove-WssComputer.md | 2 +- .../winserver2012r2-ps/wsscmdlets/Remove-WssComputerAccess.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Remove-WssFolder.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Remove-WssMsoGroup.md | 2 +- .../wsscmdlets/Remove-WssMsoGroupAssignment.md | 2 +- .../wsscmdlets/Remove-WssMsoSharePointLibrary.md | 2 +- .../wsscmdlets/Remove-WssMsoSharePointPermission.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Remove-WssMsoUser.md | 2 +- .../wsscmdlets/Remove-WssMsoUserAssignment.md | 2 +- .../wsscmdlets/Remove-WssRemoteWebAccessLink.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Remove-WssReport.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Remove-WssUser.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Remove-WssUserGroup.md | 2 +- .../wsscmdlets/Remove-WssUserGroupMembership.md | 2 +- .../wsscmdlets/Rename-WssMsoAssignedUser.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Repair-WssAlert.md | 2 +- .../wsscmdlets/Repair-WssMediaStreamingMetadata.md | 2 +- .../wsscmdlets/Repair-WssRemoteWebAccess.md | 2 +- .../wsscmdlets/Repair-WssRouterConfiguration.md | 2 +- .../winserver2012r2-ps/wsscmdlets/Resume-WssBackupPolicy.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Select-WssMountVhd.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Send-WssReport.md | 2 +- .../winserver2012r2-ps/wsscmdlets/Set-HostedEmailAccount.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Set-O365AssignedUser.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Set-O365Domain.md | 2 +- .../winserver2012r2-ps/wsscmdlets/Set-O365EmailAddresses.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Set-WssBackupPolicy.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Set-WssClientBackup.md | 2 +- .../wsscmdlets/Set-WssClientBackupVolumeExcludedFolder.md | 2 +- .../wsscmdlets/Set-WssDomainNameConfiguration.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Set-WssDrive.md | 2 +- .../wsscmdlets/Set-WssFileHistoryConfiguration.md | 2 +- .../wsscmdlets/Set-WssFileHistoryManagementStatus.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Set-WssFolder.md | 2 +- .../wsscmdlets/Set-WssGlobalClientBackupPolicy.md | 2 +- .../wsscmdlets/Set-WssMediaLibraryInclusion.md | 2 +- .../winserver2012r2-ps/wsscmdlets/Set-WssMediaLibraryName.md | 2 +- .../wsscmdlets/Set-WssMediaServerEnabled.md | 2 +- .../wsscmdlets/Set-WssMediaStreamingVideoQuality.md | 2 +- .../wsscmdlets/Set-WssMsoGroupAssignment.md | 2 +- .../wsscmdlets/Set-WssMsoSharePointLibrary.md | 2 +- .../wsscmdlets/Set-WssMsoSharePointPermission.md | 2 +- .../winserver2012r2-ps/wsscmdlets/Set-WssMsoUserAssignment.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Set-WssMsoUserLicense.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Set-WssPasswordPolicy.md | 2 +- .../wsscmdlets/Set-WssRemoteWebAccessBackgroundImage.md | 2 +- .../wsscmdlets/Set-WssRemoteWebAccessLogo.md | 2 +- .../wsscmdlets/Set-WssRemoteWebAccessTitle.md | 2 +- .../wsscmdlets/Set-WssReportEmailSetting.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Set-WssReportSchedule.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Set-WssReportSection.md | 2 +- .../wsscmdlets/Set-WssServerConnectionOption.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Set-WssUserAccess.md | 2 +- .../wsscmdlets/Set-WssUserDashboardVisibility.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Set-WssUserGroup.md | 2 +- .../winserver2012r2-ps/wsscmdlets/Set-WssUserGroupAccess.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Set-WssWinSatCpuScore.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Start-WssBackupJob.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Start-WssClientBackup.md | 2 +- .../wsscmdlets/Start-WssClientBackupRepair.md | 2 +- .../wsscmdlets/Start-WssClientBmrMediaGenerationJob.md | 2 +- .../wsscmdlets/Start-WssRouterConfiguration.md | 2 +- .../wsscmdlets/Start-WssServerFileRestore.md | 2 +- .../wsscmdlets/Start-WssServerVolumeRestore.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Stop-WssBackupJob.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Stop-WssClientBackup.md | 2 +- .../wsscmdlets/Stop-WssClientBackupRepair.md | 2 +- .../wsscmdlets/Stop-WssClientBmrMediaGenerationJob.md | 2 +- .../winserver2012r2-ps/wsscmdlets/Suspend-WssBackupPolicy.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Sync-WssAccount.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Test-WssDrive.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Test-WssHealth.md | 2 +- .../wsscmdlets/Test-WssVpnServerInstallation.md | 2 +- docset/winserver2012r2-ps/wsscmdlets/Uninstall-WssAddIn.md | 2 +- .../winserver2012r2-ps/wsscmdlets/Uninstall-WssVpnServer.md | 2 +- .../winserver2012r2-ps/wsscmdlets/Update-O365AccountName.md | 2 +- .../winserver2012r2-ps/wsssetup/Get-WssConfigurationStatus.md | 2 +- .../wsssetup/Remove-WssConfigurationData.md | 2 +- .../wsssetup/Start-WssConfigurationService.md | 2 +- .../wsssetup/Test-WssConfigurationOption.md | 2 +- docset/winserver2012r2-ps/wsssetup/Test-WssPrecheckResult.md | 2 +- 2879 files changed, 2880 insertions(+), 2880 deletions(-) diff --git a/docset/winserver2012r2-ps/activedirectory/Add-ADCentralAccessPolicyMember.md b/docset/winserver2012r2-ps/activedirectory/Add-ADCentralAccessPolicyMember.md index 01316a8e2c..5c869fabaf 100644 --- a/docset/winserver2012r2-ps/activedirectory/Add-ADCentralAccessPolicyMember.md +++ b/docset/winserver2012r2-ps/activedirectory/Add-ADCentralAccessPolicyMember.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/add-adcentralaccesspolicymember?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/add-adcentralaccesspolicymember?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ADCentralAccessPolicyMember --- diff --git a/docset/winserver2012r2-ps/activedirectory/Add-ADComputerServiceAccount.md b/docset/winserver2012r2-ps/activedirectory/Add-ADComputerServiceAccount.md index 2f3613e107..99c8b63e88 100644 --- a/docset/winserver2012r2-ps/activedirectory/Add-ADComputerServiceAccount.md +++ b/docset/winserver2012r2-ps/activedirectory/Add-ADComputerServiceAccount.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/add-adcomputerserviceaccount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/add-adcomputerserviceaccount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ADComputerServiceAccount --- diff --git a/docset/winserver2012r2-ps/activedirectory/Add-ADDomainControllerPasswordReplicationPolicy.md b/docset/winserver2012r2-ps/activedirectory/Add-ADDomainControllerPasswordReplicationPolicy.md index 68f630c823..d0a1f11b0a 100644 --- a/docset/winserver2012r2-ps/activedirectory/Add-ADDomainControllerPasswordReplicationPolicy.md +++ b/docset/winserver2012r2-ps/activedirectory/Add-ADDomainControllerPasswordReplicationPolicy.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/add-addomaincontrollerpasswordreplicationpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/add-addomaincontrollerpasswordreplicationpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ADDomainControllerPasswordReplicationPolicy --- diff --git a/docset/winserver2012r2-ps/activedirectory/Add-ADFineGrainedPasswordPolicySubject.md b/docset/winserver2012r2-ps/activedirectory/Add-ADFineGrainedPasswordPolicySubject.md index 8f091a283b..5c9c246f2e 100644 --- a/docset/winserver2012r2-ps/activedirectory/Add-ADFineGrainedPasswordPolicySubject.md +++ b/docset/winserver2012r2-ps/activedirectory/Add-ADFineGrainedPasswordPolicySubject.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/add-adfinegrainedpasswordpolicysubject?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/add-adfinegrainedpasswordpolicysubject?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ADFineGrainedPasswordPolicySubject --- diff --git a/docset/winserver2012r2-ps/activedirectory/Add-ADGroupMember.md b/docset/winserver2012r2-ps/activedirectory/Add-ADGroupMember.md index 5af3cc8028..2c07c58b36 100644 --- a/docset/winserver2012r2-ps/activedirectory/Add-ADGroupMember.md +++ b/docset/winserver2012r2-ps/activedirectory/Add-ADGroupMember.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/add-adgroupmember?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/add-adgroupmember?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ADGroupMember --- diff --git a/docset/winserver2012r2-ps/activedirectory/Add-ADPrincipalGroupMembership.md b/docset/winserver2012r2-ps/activedirectory/Add-ADPrincipalGroupMembership.md index 0515e8565e..8368b867cf 100644 --- a/docset/winserver2012r2-ps/activedirectory/Add-ADPrincipalGroupMembership.md +++ b/docset/winserver2012r2-ps/activedirectory/Add-ADPrincipalGroupMembership.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/add-adprincipalgroupmembership?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/add-adprincipalgroupmembership?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ADPrincipalGroupMembership --- diff --git a/docset/winserver2012r2-ps/activedirectory/Add-ADResourcePropertyListMember.md b/docset/winserver2012r2-ps/activedirectory/Add-ADResourcePropertyListMember.md index 38fbe58098..e4e17c841d 100644 --- a/docset/winserver2012r2-ps/activedirectory/Add-ADResourcePropertyListMember.md +++ b/docset/winserver2012r2-ps/activedirectory/Add-ADResourcePropertyListMember.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/add-adresourcepropertylistmember?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/add-adresourcepropertylistmember?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ADResourcePropertyListMember --- diff --git a/docset/winserver2012r2-ps/activedirectory/Clear-ADAccountExpiration.md b/docset/winserver2012r2-ps/activedirectory/Clear-ADAccountExpiration.md index c81861e581..79ab700855 100644 --- a/docset/winserver2012r2-ps/activedirectory/Clear-ADAccountExpiration.md +++ b/docset/winserver2012r2-ps/activedirectory/Clear-ADAccountExpiration.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/clear-adaccountexpiration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/clear-adaccountexpiration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-ADAccountExpiration --- diff --git a/docset/winserver2012r2-ps/activedirectory/Clear-ADClaimTransformLink.md b/docset/winserver2012r2-ps/activedirectory/Clear-ADClaimTransformLink.md index b86160ab1e..5535d5b44f 100644 --- a/docset/winserver2012r2-ps/activedirectory/Clear-ADClaimTransformLink.md +++ b/docset/winserver2012r2-ps/activedirectory/Clear-ADClaimTransformLink.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/clear-adclaimtransformlink?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/clear-adclaimtransformlink?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-ADClaimTransformLink --- diff --git a/docset/winserver2012r2-ps/activedirectory/Disable-ADAccount.md b/docset/winserver2012r2-ps/activedirectory/Disable-ADAccount.md index c823b5471e..899459970e 100644 --- a/docset/winserver2012r2-ps/activedirectory/Disable-ADAccount.md +++ b/docset/winserver2012r2-ps/activedirectory/Disable-ADAccount.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/disable-adaccount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/disable-adaccount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-ADAccount --- diff --git a/docset/winserver2012r2-ps/activedirectory/Disable-ADOptionalFeature.md b/docset/winserver2012r2-ps/activedirectory/Disable-ADOptionalFeature.md index c0c6e86153..59723be4ed 100644 --- a/docset/winserver2012r2-ps/activedirectory/Disable-ADOptionalFeature.md +++ b/docset/winserver2012r2-ps/activedirectory/Disable-ADOptionalFeature.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/disable-adoptionalfeature?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/disable-adoptionalfeature?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-ADOptionalFeature --- diff --git a/docset/winserver2012r2-ps/activedirectory/Enable-ADAccount.md b/docset/winserver2012r2-ps/activedirectory/Enable-ADAccount.md index ddb77185e5..8ce5cf0c75 100644 --- a/docset/winserver2012r2-ps/activedirectory/Enable-ADAccount.md +++ b/docset/winserver2012r2-ps/activedirectory/Enable-ADAccount.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/enable-adaccount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/enable-adaccount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-ADAccount --- diff --git a/docset/winserver2012r2-ps/activedirectory/Enable-ADOptionalFeature.md b/docset/winserver2012r2-ps/activedirectory/Enable-ADOptionalFeature.md index bbaa0575cc..2dae3ce4b2 100644 --- a/docset/winserver2012r2-ps/activedirectory/Enable-ADOptionalFeature.md +++ b/docset/winserver2012r2-ps/activedirectory/Enable-ADOptionalFeature.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/enable-adoptionalfeature?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/enable-adoptionalfeature?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-ADOptionalFeature --- diff --git a/docset/winserver2012r2-ps/activedirectory/Get-ADAccountAuthorizationGroup.md b/docset/winserver2012r2-ps/activedirectory/Get-ADAccountAuthorizationGroup.md index a08397600c..025336d002 100644 --- a/docset/winserver2012r2-ps/activedirectory/Get-ADAccountAuthorizationGroup.md +++ b/docset/winserver2012r2-ps/activedirectory/Get-ADAccountAuthorizationGroup.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adaccountauthorizationgroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adaccountauthorizationgroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADAccountAuthorizationGroup --- diff --git a/docset/winserver2012r2-ps/activedirectory/Get-ADAccountResultantPasswordReplicationPolicy.md b/docset/winserver2012r2-ps/activedirectory/Get-ADAccountResultantPasswordReplicationPolicy.md index 4cd75ffb7e..05867ee0a0 100644 --- a/docset/winserver2012r2-ps/activedirectory/Get-ADAccountResultantPasswordReplicationPolicy.md +++ b/docset/winserver2012r2-ps/activedirectory/Get-ADAccountResultantPasswordReplicationPolicy.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adaccountresultantpasswordreplicationpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adaccountresultantpasswordreplicationpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADAccountResultantPasswordReplicationPolicy --- diff --git a/docset/winserver2012r2-ps/activedirectory/Get-ADAuthenticationPolicy.md b/docset/winserver2012r2-ps/activedirectory/Get-ADAuthenticationPolicy.md index b2a8628d2a..f777f86e41 100644 --- a/docset/winserver2012r2-ps/activedirectory/Get-ADAuthenticationPolicy.md +++ b/docset/winserver2012r2-ps/activedirectory/Get-ADAuthenticationPolicy.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adauthenticationpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adauthenticationpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADAuthenticationPolicy --- diff --git a/docset/winserver2012r2-ps/activedirectory/Get-ADAuthenticationPolicySilo.md b/docset/winserver2012r2-ps/activedirectory/Get-ADAuthenticationPolicySilo.md index 4f184943d5..4629c71b0e 100644 --- a/docset/winserver2012r2-ps/activedirectory/Get-ADAuthenticationPolicySilo.md +++ b/docset/winserver2012r2-ps/activedirectory/Get-ADAuthenticationPolicySilo.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adauthenticationpolicysilo?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adauthenticationpolicysilo?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADAuthenticationPolicySilo --- diff --git a/docset/winserver2012r2-ps/activedirectory/Get-ADCentralAccessPolicy.md b/docset/winserver2012r2-ps/activedirectory/Get-ADCentralAccessPolicy.md index c594b19980..5663a075a4 100644 --- a/docset/winserver2012r2-ps/activedirectory/Get-ADCentralAccessPolicy.md +++ b/docset/winserver2012r2-ps/activedirectory/Get-ADCentralAccessPolicy.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adcentralaccesspolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adcentralaccesspolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADCentralAccessPolicy --- diff --git a/docset/winserver2012r2-ps/activedirectory/Get-ADCentralAccessRule.md b/docset/winserver2012r2-ps/activedirectory/Get-ADCentralAccessRule.md index 5772bbb1bc..0e4088d98f 100644 --- a/docset/winserver2012r2-ps/activedirectory/Get-ADCentralAccessRule.md +++ b/docset/winserver2012r2-ps/activedirectory/Get-ADCentralAccessRule.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adcentralaccessrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adcentralaccessrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADCentralAccessRule --- diff --git a/docset/winserver2012r2-ps/activedirectory/Get-ADClaimTransformPolicy.md b/docset/winserver2012r2-ps/activedirectory/Get-ADClaimTransformPolicy.md index 6706efecdd..bd025e47eb 100644 --- a/docset/winserver2012r2-ps/activedirectory/Get-ADClaimTransformPolicy.md +++ b/docset/winserver2012r2-ps/activedirectory/Get-ADClaimTransformPolicy.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adclaimtransformpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adclaimtransformpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADClaimTransformPolicy --- diff --git a/docset/winserver2012r2-ps/activedirectory/Get-ADClaimType.md b/docset/winserver2012r2-ps/activedirectory/Get-ADClaimType.md index 50d6756be4..3a58c09144 100644 --- a/docset/winserver2012r2-ps/activedirectory/Get-ADClaimType.md +++ b/docset/winserver2012r2-ps/activedirectory/Get-ADClaimType.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adclaimtype?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adclaimtype?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADClaimType --- diff --git a/docset/winserver2012r2-ps/activedirectory/Get-ADComputer.md b/docset/winserver2012r2-ps/activedirectory/Get-ADComputer.md index 80639510e7..70d715af24 100644 --- a/docset/winserver2012r2-ps/activedirectory/Get-ADComputer.md +++ b/docset/winserver2012r2-ps/activedirectory/Get-ADComputer.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adcomputer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adcomputer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADComputer --- diff --git a/docset/winserver2012r2-ps/activedirectory/Get-ADComputerServiceAccount.md b/docset/winserver2012r2-ps/activedirectory/Get-ADComputerServiceAccount.md index 61b916d5d0..7b0c624f02 100644 --- a/docset/winserver2012r2-ps/activedirectory/Get-ADComputerServiceAccount.md +++ b/docset/winserver2012r2-ps/activedirectory/Get-ADComputerServiceAccount.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adcomputerserviceaccount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adcomputerserviceaccount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADComputerServiceAccount --- diff --git a/docset/winserver2012r2-ps/activedirectory/Get-ADDCCloningExcludedApplicationList.md b/docset/winserver2012r2-ps/activedirectory/Get-ADDCCloningExcludedApplicationList.md index c040e5859a..61dc860184 100644 --- a/docset/winserver2012r2-ps/activedirectory/Get-ADDCCloningExcludedApplicationList.md +++ b/docset/winserver2012r2-ps/activedirectory/Get-ADDCCloningExcludedApplicationList.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-addccloningexcludedapplicationlist?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-addccloningexcludedapplicationlist?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADDCCloningExcludedApplicationList --- diff --git a/docset/winserver2012r2-ps/activedirectory/Get-ADDefaultDomainPasswordPolicy.md b/docset/winserver2012r2-ps/activedirectory/Get-ADDefaultDomainPasswordPolicy.md index a3afd32a2f..ac61904dfc 100644 --- a/docset/winserver2012r2-ps/activedirectory/Get-ADDefaultDomainPasswordPolicy.md +++ b/docset/winserver2012r2-ps/activedirectory/Get-ADDefaultDomainPasswordPolicy.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-addefaultdomainpasswordpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-addefaultdomainpasswordpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADDefaultDomainPasswordPolicy --- diff --git a/docset/winserver2012r2-ps/activedirectory/Get-ADDomain.md b/docset/winserver2012r2-ps/activedirectory/Get-ADDomain.md index 8d10906ad1..c98eaac4fc 100644 --- a/docset/winserver2012r2-ps/activedirectory/Get-ADDomain.md +++ b/docset/winserver2012r2-ps/activedirectory/Get-ADDomain.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-addomain?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-addomain?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADDomain --- diff --git a/docset/winserver2012r2-ps/activedirectory/Get-ADDomainController.md b/docset/winserver2012r2-ps/activedirectory/Get-ADDomainController.md index 822430889d..237369e998 100644 --- a/docset/winserver2012r2-ps/activedirectory/Get-ADDomainController.md +++ b/docset/winserver2012r2-ps/activedirectory/Get-ADDomainController.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-addomaincontroller?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-addomaincontroller?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADDomainController --- diff --git a/docset/winserver2012r2-ps/activedirectory/Get-ADDomainControllerPasswordReplicationPolicy.md b/docset/winserver2012r2-ps/activedirectory/Get-ADDomainControllerPasswordReplicationPolicy.md index a6c75fc372..a549a44e20 100644 --- a/docset/winserver2012r2-ps/activedirectory/Get-ADDomainControllerPasswordReplicationPolicy.md +++ b/docset/winserver2012r2-ps/activedirectory/Get-ADDomainControllerPasswordReplicationPolicy.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-addomaincontrollerpasswordreplicationpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-addomaincontrollerpasswordreplicationpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADDomainControllerPasswordReplicationPolicy --- diff --git a/docset/winserver2012r2-ps/activedirectory/Get-ADDomainControllerPasswordReplicationPolicyUsage.md b/docset/winserver2012r2-ps/activedirectory/Get-ADDomainControllerPasswordReplicationPolicyUsage.md index d3b6b5db29..0e2d27fcc5 100644 --- a/docset/winserver2012r2-ps/activedirectory/Get-ADDomainControllerPasswordReplicationPolicyUsage.md +++ b/docset/winserver2012r2-ps/activedirectory/Get-ADDomainControllerPasswordReplicationPolicyUsage.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-addomaincontrollerpasswordreplicationpolicyusage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-addomaincontrollerpasswordreplicationpolicyusage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADDomainControllerPasswordReplicationPolicyUsage --- diff --git a/docset/winserver2012r2-ps/activedirectory/Get-ADFineGrainedPasswordPolicy.md b/docset/winserver2012r2-ps/activedirectory/Get-ADFineGrainedPasswordPolicy.md index 550b047400..bc7ee20f67 100644 --- a/docset/winserver2012r2-ps/activedirectory/Get-ADFineGrainedPasswordPolicy.md +++ b/docset/winserver2012r2-ps/activedirectory/Get-ADFineGrainedPasswordPolicy.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adfinegrainedpasswordpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adfinegrainedpasswordpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADFineGrainedPasswordPolicy --- diff --git a/docset/winserver2012r2-ps/activedirectory/Get-ADFineGrainedPasswordPolicySubject.md b/docset/winserver2012r2-ps/activedirectory/Get-ADFineGrainedPasswordPolicySubject.md index c0d385458e..c663100d14 100644 --- a/docset/winserver2012r2-ps/activedirectory/Get-ADFineGrainedPasswordPolicySubject.md +++ b/docset/winserver2012r2-ps/activedirectory/Get-ADFineGrainedPasswordPolicySubject.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adfinegrainedpasswordpolicysubject?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adfinegrainedpasswordpolicysubject?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADFineGrainedPasswordPolicySubject --- diff --git a/docset/winserver2012r2-ps/activedirectory/Get-ADForest.md b/docset/winserver2012r2-ps/activedirectory/Get-ADForest.md index 7ccda86df3..8389507051 100644 --- a/docset/winserver2012r2-ps/activedirectory/Get-ADForest.md +++ b/docset/winserver2012r2-ps/activedirectory/Get-ADForest.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adforest?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adforest?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADForest --- diff --git a/docset/winserver2012r2-ps/activedirectory/Get-ADGroup.md b/docset/winserver2012r2-ps/activedirectory/Get-ADGroup.md index 7abf449f2f..c193670182 100644 --- a/docset/winserver2012r2-ps/activedirectory/Get-ADGroup.md +++ b/docset/winserver2012r2-ps/activedirectory/Get-ADGroup.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adgroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adgroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADGroup --- diff --git a/docset/winserver2012r2-ps/activedirectory/Get-ADGroupMember.md b/docset/winserver2012r2-ps/activedirectory/Get-ADGroupMember.md index 493db7c8e4..48a97d16ea 100644 --- a/docset/winserver2012r2-ps/activedirectory/Get-ADGroupMember.md +++ b/docset/winserver2012r2-ps/activedirectory/Get-ADGroupMember.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adgroupmember?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adgroupmember?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADGroupMember --- diff --git a/docset/winserver2012r2-ps/activedirectory/Get-ADObject.md b/docset/winserver2012r2-ps/activedirectory/Get-ADObject.md index 8a06f63713..523b9b80ce 100644 --- a/docset/winserver2012r2-ps/activedirectory/Get-ADObject.md +++ b/docset/winserver2012r2-ps/activedirectory/Get-ADObject.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adobject?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adobject?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADObject --- diff --git a/docset/winserver2012r2-ps/activedirectory/Get-ADOptionalFeature.md b/docset/winserver2012r2-ps/activedirectory/Get-ADOptionalFeature.md index 32adab7fbb..f2f99b7bd6 100644 --- a/docset/winserver2012r2-ps/activedirectory/Get-ADOptionalFeature.md +++ b/docset/winserver2012r2-ps/activedirectory/Get-ADOptionalFeature.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adoptionalfeature?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adoptionalfeature?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADOptionalFeature --- diff --git a/docset/winserver2012r2-ps/activedirectory/Get-ADOrganizationalUnit.md b/docset/winserver2012r2-ps/activedirectory/Get-ADOrganizationalUnit.md index 5b5f38e825..a8c2264ab2 100644 --- a/docset/winserver2012r2-ps/activedirectory/Get-ADOrganizationalUnit.md +++ b/docset/winserver2012r2-ps/activedirectory/Get-ADOrganizationalUnit.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adorganizationalunit?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adorganizationalunit?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADOrganizationalUnit --- diff --git a/docset/winserver2012r2-ps/activedirectory/Get-ADPrincipalGroupMembership.md b/docset/winserver2012r2-ps/activedirectory/Get-ADPrincipalGroupMembership.md index 9ffe9fbd49..80cd13f50a 100644 --- a/docset/winserver2012r2-ps/activedirectory/Get-ADPrincipalGroupMembership.md +++ b/docset/winserver2012r2-ps/activedirectory/Get-ADPrincipalGroupMembership.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adprincipalgroupmembership?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adprincipalgroupmembership?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADPrincipalGroupMembership --- diff --git a/docset/winserver2012r2-ps/activedirectory/Get-ADReplicationAttributeMetadata.md b/docset/winserver2012r2-ps/activedirectory/Get-ADReplicationAttributeMetadata.md index 1dc443651c..0b4f4154fb 100644 --- a/docset/winserver2012r2-ps/activedirectory/Get-ADReplicationAttributeMetadata.md +++ b/docset/winserver2012r2-ps/activedirectory/Get-ADReplicationAttributeMetadata.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adreplicationattributemetadata?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adreplicationattributemetadata?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADReplicationAttributeMetadata --- diff --git a/docset/winserver2012r2-ps/activedirectory/Get-ADReplicationConnection.md b/docset/winserver2012r2-ps/activedirectory/Get-ADReplicationConnection.md index c0afb811c9..8e025398d1 100644 --- a/docset/winserver2012r2-ps/activedirectory/Get-ADReplicationConnection.md +++ b/docset/winserver2012r2-ps/activedirectory/Get-ADReplicationConnection.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adreplicationconnection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adreplicationconnection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADReplicationConnection --- diff --git a/docset/winserver2012r2-ps/activedirectory/Get-ADReplicationFailure.md b/docset/winserver2012r2-ps/activedirectory/Get-ADReplicationFailure.md index 71deaea4f8..d088b2a1bf 100644 --- a/docset/winserver2012r2-ps/activedirectory/Get-ADReplicationFailure.md +++ b/docset/winserver2012r2-ps/activedirectory/Get-ADReplicationFailure.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adreplicationfailure?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adreplicationfailure?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADReplicationFailure --- diff --git a/docset/winserver2012r2-ps/activedirectory/Get-ADReplicationPartnerMetadata.md b/docset/winserver2012r2-ps/activedirectory/Get-ADReplicationPartnerMetadata.md index 1ee5fcfc2c..8f009fc176 100644 --- a/docset/winserver2012r2-ps/activedirectory/Get-ADReplicationPartnerMetadata.md +++ b/docset/winserver2012r2-ps/activedirectory/Get-ADReplicationPartnerMetadata.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adreplicationpartnermetadata?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adreplicationpartnermetadata?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADReplicationPartnerMetadata --- diff --git a/docset/winserver2012r2-ps/activedirectory/Get-ADReplicationQueueOperation.md b/docset/winserver2012r2-ps/activedirectory/Get-ADReplicationQueueOperation.md index 1c4e04a93c..1b395e653a 100644 --- a/docset/winserver2012r2-ps/activedirectory/Get-ADReplicationQueueOperation.md +++ b/docset/winserver2012r2-ps/activedirectory/Get-ADReplicationQueueOperation.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adreplicationqueueoperation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adreplicationqueueoperation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADReplicationQueueOperation --- diff --git a/docset/winserver2012r2-ps/activedirectory/Get-ADReplicationSite.md b/docset/winserver2012r2-ps/activedirectory/Get-ADReplicationSite.md index 92df2048df..d06d6ba5d4 100644 --- a/docset/winserver2012r2-ps/activedirectory/Get-ADReplicationSite.md +++ b/docset/winserver2012r2-ps/activedirectory/Get-ADReplicationSite.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adreplicationsite?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adreplicationsite?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADReplicationSite --- diff --git a/docset/winserver2012r2-ps/activedirectory/Get-ADReplicationSiteLink.md b/docset/winserver2012r2-ps/activedirectory/Get-ADReplicationSiteLink.md index 1ac933aecf..0f991ba4ac 100644 --- a/docset/winserver2012r2-ps/activedirectory/Get-ADReplicationSiteLink.md +++ b/docset/winserver2012r2-ps/activedirectory/Get-ADReplicationSiteLink.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adreplicationsitelink?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adreplicationsitelink?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADReplicationSiteLink --- diff --git a/docset/winserver2012r2-ps/activedirectory/Get-ADReplicationSiteLinkBridge.md b/docset/winserver2012r2-ps/activedirectory/Get-ADReplicationSiteLinkBridge.md index c0f362896d..998039308b 100644 --- a/docset/winserver2012r2-ps/activedirectory/Get-ADReplicationSiteLinkBridge.md +++ b/docset/winserver2012r2-ps/activedirectory/Get-ADReplicationSiteLinkBridge.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adreplicationsitelinkbridge?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adreplicationsitelinkbridge?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADReplicationSiteLinkBridge --- diff --git a/docset/winserver2012r2-ps/activedirectory/Get-ADReplicationSubnet.md b/docset/winserver2012r2-ps/activedirectory/Get-ADReplicationSubnet.md index b83eca6cf2..28b820ef8b 100644 --- a/docset/winserver2012r2-ps/activedirectory/Get-ADReplicationSubnet.md +++ b/docset/winserver2012r2-ps/activedirectory/Get-ADReplicationSubnet.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adreplicationsubnet?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adreplicationsubnet?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADReplicationSubnet --- diff --git a/docset/winserver2012r2-ps/activedirectory/Get-ADReplicationUpToDatenessVectorTable.md b/docset/winserver2012r2-ps/activedirectory/Get-ADReplicationUpToDatenessVectorTable.md index 381aba7adb..1a8efadfe3 100644 --- a/docset/winserver2012r2-ps/activedirectory/Get-ADReplicationUpToDatenessVectorTable.md +++ b/docset/winserver2012r2-ps/activedirectory/Get-ADReplicationUpToDatenessVectorTable.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adreplicationuptodatenessvectortable?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adreplicationuptodatenessvectortable?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADReplicationUpToDatenessVectorTable --- diff --git a/docset/winserver2012r2-ps/activedirectory/Get-ADResourceProperty.md b/docset/winserver2012r2-ps/activedirectory/Get-ADResourceProperty.md index 9b3c9f7552..810900cf35 100644 --- a/docset/winserver2012r2-ps/activedirectory/Get-ADResourceProperty.md +++ b/docset/winserver2012r2-ps/activedirectory/Get-ADResourceProperty.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adresourceproperty?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adresourceproperty?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADResourceProperty --- diff --git a/docset/winserver2012r2-ps/activedirectory/Get-ADResourcePropertyList.md b/docset/winserver2012r2-ps/activedirectory/Get-ADResourcePropertyList.md index b455f4dd78..da4c15e4c8 100644 --- a/docset/winserver2012r2-ps/activedirectory/Get-ADResourcePropertyList.md +++ b/docset/winserver2012r2-ps/activedirectory/Get-ADResourcePropertyList.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adresourcepropertylist?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adresourcepropertylist?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADResourcePropertyList --- diff --git a/docset/winserver2012r2-ps/activedirectory/Get-ADResourcePropertyValueType.md b/docset/winserver2012r2-ps/activedirectory/Get-ADResourcePropertyValueType.md index 0e4080a6fd..5a5d012677 100644 --- a/docset/winserver2012r2-ps/activedirectory/Get-ADResourcePropertyValueType.md +++ b/docset/winserver2012r2-ps/activedirectory/Get-ADResourcePropertyValueType.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adresourcepropertyvaluetype?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adresourcepropertyvaluetype?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADResourcePropertyValueType --- diff --git a/docset/winserver2012r2-ps/activedirectory/Get-ADRootDSE.md b/docset/winserver2012r2-ps/activedirectory/Get-ADRootDSE.md index 496b60aa3b..7ffe66f096 100644 --- a/docset/winserver2012r2-ps/activedirectory/Get-ADRootDSE.md +++ b/docset/winserver2012r2-ps/activedirectory/Get-ADRootDSE.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adrootdse?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adrootdse?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADRootDSE --- diff --git a/docset/winserver2012r2-ps/activedirectory/Get-ADServiceAccount.md b/docset/winserver2012r2-ps/activedirectory/Get-ADServiceAccount.md index a5703dd4dd..bd06f173dd 100644 --- a/docset/winserver2012r2-ps/activedirectory/Get-ADServiceAccount.md +++ b/docset/winserver2012r2-ps/activedirectory/Get-ADServiceAccount.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adserviceaccount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adserviceaccount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADServiceAccount --- diff --git a/docset/winserver2012r2-ps/activedirectory/Get-ADTrust.md b/docset/winserver2012r2-ps/activedirectory/Get-ADTrust.md index 81db62f11c..5111abae1d 100644 --- a/docset/winserver2012r2-ps/activedirectory/Get-ADTrust.md +++ b/docset/winserver2012r2-ps/activedirectory/Get-ADTrust.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adtrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adtrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADTrust --- diff --git a/docset/winserver2012r2-ps/activedirectory/Get-ADUser.md b/docset/winserver2012r2-ps/activedirectory/Get-ADUser.md index e3d0c90acb..3f43ab3491 100644 --- a/docset/winserver2012r2-ps/activedirectory/Get-ADUser.md +++ b/docset/winserver2012r2-ps/activedirectory/Get-ADUser.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-aduser?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-aduser?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADUser --- diff --git a/docset/winserver2012r2-ps/activedirectory/Get-ADUserResultantPasswordPolicy.md b/docset/winserver2012r2-ps/activedirectory/Get-ADUserResultantPasswordPolicy.md index 69916bb5a2..68deea19b7 100644 --- a/docset/winserver2012r2-ps/activedirectory/Get-ADUserResultantPasswordPolicy.md +++ b/docset/winserver2012r2-ps/activedirectory/Get-ADUserResultantPasswordPolicy.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-aduserresultantpasswordpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-aduserresultantpasswordpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADUserResultantPasswordPolicy --- diff --git a/docset/winserver2012r2-ps/activedirectory/Grant-ADAuthenticationPolicySiloAccess.md b/docset/winserver2012r2-ps/activedirectory/Grant-ADAuthenticationPolicySiloAccess.md index 14086713d5..4c55351282 100644 --- a/docset/winserver2012r2-ps/activedirectory/Grant-ADAuthenticationPolicySiloAccess.md +++ b/docset/winserver2012r2-ps/activedirectory/Grant-ADAuthenticationPolicySiloAccess.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/grant-adauthenticationpolicysiloaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/grant-adauthenticationpolicysiloaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Grant-ADAuthenticationPolicySiloAccess --- diff --git a/docset/winserver2012r2-ps/activedirectory/Install-ADServiceAccount.md b/docset/winserver2012r2-ps/activedirectory/Install-ADServiceAccount.md index 2bec6b9129..755c634859 100644 --- a/docset/winserver2012r2-ps/activedirectory/Install-ADServiceAccount.md +++ b/docset/winserver2012r2-ps/activedirectory/Install-ADServiceAccount.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/install-adserviceaccount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/install-adserviceaccount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-ADServiceAccount --- diff --git a/docset/winserver2012r2-ps/activedirectory/Move-ADDirectoryServer.md b/docset/winserver2012r2-ps/activedirectory/Move-ADDirectoryServer.md index 55c6e44893..083d8608c9 100644 --- a/docset/winserver2012r2-ps/activedirectory/Move-ADDirectoryServer.md +++ b/docset/winserver2012r2-ps/activedirectory/Move-ADDirectoryServer.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/move-addirectoryserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/move-addirectoryserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-ADDirectoryServer --- diff --git a/docset/winserver2012r2-ps/activedirectory/Move-ADDirectoryServerOperationMasterRole.md b/docset/winserver2012r2-ps/activedirectory/Move-ADDirectoryServerOperationMasterRole.md index 0e37dc012d..5cf6c490f6 100644 --- a/docset/winserver2012r2-ps/activedirectory/Move-ADDirectoryServerOperationMasterRole.md +++ b/docset/winserver2012r2-ps/activedirectory/Move-ADDirectoryServerOperationMasterRole.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/move-addirectoryserveroperationmasterrole?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/move-addirectoryserveroperationmasterrole?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-ADDirectoryServerOperationMasterRole --- diff --git a/docset/winserver2012r2-ps/activedirectory/Move-ADObject.md b/docset/winserver2012r2-ps/activedirectory/Move-ADObject.md index 96b21b17b6..63bb5a8424 100644 --- a/docset/winserver2012r2-ps/activedirectory/Move-ADObject.md +++ b/docset/winserver2012r2-ps/activedirectory/Move-ADObject.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/move-adobject?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/move-adobject?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-ADObject --- diff --git a/docset/winserver2012r2-ps/activedirectory/New-ADAuthenticationPolicy.md b/docset/winserver2012r2-ps/activedirectory/New-ADAuthenticationPolicy.md index 76f5f984f2..ae9078be38 100644 --- a/docset/winserver2012r2-ps/activedirectory/New-ADAuthenticationPolicy.md +++ b/docset/winserver2012r2-ps/activedirectory/New-ADAuthenticationPolicy.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adauthenticationpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adauthenticationpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADAuthenticationPolicy --- diff --git a/docset/winserver2012r2-ps/activedirectory/New-ADAuthenticationPolicySilo.md b/docset/winserver2012r2-ps/activedirectory/New-ADAuthenticationPolicySilo.md index 93fc60b770..9bd01ed727 100644 --- a/docset/winserver2012r2-ps/activedirectory/New-ADAuthenticationPolicySilo.md +++ b/docset/winserver2012r2-ps/activedirectory/New-ADAuthenticationPolicySilo.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adauthenticationpolicysilo?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adauthenticationpolicysilo?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADAuthenticationPolicySilo --- diff --git a/docset/winserver2012r2-ps/activedirectory/New-ADCentralAccessPolicy.md b/docset/winserver2012r2-ps/activedirectory/New-ADCentralAccessPolicy.md index ad9365e7f3..3f7a81d190 100644 --- a/docset/winserver2012r2-ps/activedirectory/New-ADCentralAccessPolicy.md +++ b/docset/winserver2012r2-ps/activedirectory/New-ADCentralAccessPolicy.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adcentralaccesspolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adcentralaccesspolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADCentralAccessPolicy --- diff --git a/docset/winserver2012r2-ps/activedirectory/New-ADCentralAccessRule.md b/docset/winserver2012r2-ps/activedirectory/New-ADCentralAccessRule.md index d8e75fbd7f..230887eb60 100644 --- a/docset/winserver2012r2-ps/activedirectory/New-ADCentralAccessRule.md +++ b/docset/winserver2012r2-ps/activedirectory/New-ADCentralAccessRule.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adcentralaccessrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adcentralaccessrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADCentralAccessRule --- diff --git a/docset/winserver2012r2-ps/activedirectory/New-ADClaimTransformPolicy.md b/docset/winserver2012r2-ps/activedirectory/New-ADClaimTransformPolicy.md index b3391b06ca..68ad441183 100644 --- a/docset/winserver2012r2-ps/activedirectory/New-ADClaimTransformPolicy.md +++ b/docset/winserver2012r2-ps/activedirectory/New-ADClaimTransformPolicy.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adclaimtransformpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adclaimtransformpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADClaimTransformPolicy --- diff --git a/docset/winserver2012r2-ps/activedirectory/New-ADClaimType.md b/docset/winserver2012r2-ps/activedirectory/New-ADClaimType.md index d8c2c4ce86..a03751b8fa 100644 --- a/docset/winserver2012r2-ps/activedirectory/New-ADClaimType.md +++ b/docset/winserver2012r2-ps/activedirectory/New-ADClaimType.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adclaimtype?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adclaimtype?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADClaimType --- diff --git a/docset/winserver2012r2-ps/activedirectory/New-ADComputer.md b/docset/winserver2012r2-ps/activedirectory/New-ADComputer.md index 92d6366169..d0cc79f74b 100644 --- a/docset/winserver2012r2-ps/activedirectory/New-ADComputer.md +++ b/docset/winserver2012r2-ps/activedirectory/New-ADComputer.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adcomputer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adcomputer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADComputer --- diff --git a/docset/winserver2012r2-ps/activedirectory/New-ADDCCloneConfigFile.md b/docset/winserver2012r2-ps/activedirectory/New-ADDCCloneConfigFile.md index 066bf24d91..712e1d1fa4 100644 --- a/docset/winserver2012r2-ps/activedirectory/New-ADDCCloneConfigFile.md +++ b/docset/winserver2012r2-ps/activedirectory/New-ADDCCloneConfigFile.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-addccloneconfigfile?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-addccloneconfigfile?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADDCCloneConfigFile --- diff --git a/docset/winserver2012r2-ps/activedirectory/New-ADFineGrainedPasswordPolicy.md b/docset/winserver2012r2-ps/activedirectory/New-ADFineGrainedPasswordPolicy.md index 24d3b35dde..076eacfd42 100644 --- a/docset/winserver2012r2-ps/activedirectory/New-ADFineGrainedPasswordPolicy.md +++ b/docset/winserver2012r2-ps/activedirectory/New-ADFineGrainedPasswordPolicy.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adfinegrainedpasswordpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adfinegrainedpasswordpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADFineGrainedPasswordPolicy --- diff --git a/docset/winserver2012r2-ps/activedirectory/New-ADGroup.md b/docset/winserver2012r2-ps/activedirectory/New-ADGroup.md index 2a7a8a08af..7b91c583de 100644 --- a/docset/winserver2012r2-ps/activedirectory/New-ADGroup.md +++ b/docset/winserver2012r2-ps/activedirectory/New-ADGroup.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adgroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adgroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADGroup --- diff --git a/docset/winserver2012r2-ps/activedirectory/New-ADObject.md b/docset/winserver2012r2-ps/activedirectory/New-ADObject.md index c469b0bf66..13dc4860f0 100644 --- a/docset/winserver2012r2-ps/activedirectory/New-ADObject.md +++ b/docset/winserver2012r2-ps/activedirectory/New-ADObject.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adobject?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adobject?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADObject --- diff --git a/docset/winserver2012r2-ps/activedirectory/New-ADOrganizationalUnit.md b/docset/winserver2012r2-ps/activedirectory/New-ADOrganizationalUnit.md index 9b4b540d46..c657d1078a 100644 --- a/docset/winserver2012r2-ps/activedirectory/New-ADOrganizationalUnit.md +++ b/docset/winserver2012r2-ps/activedirectory/New-ADOrganizationalUnit.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adorganizationalunit?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adorganizationalunit?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADOrganizationalUnit --- diff --git a/docset/winserver2012r2-ps/activedirectory/New-ADReplicationSite.md b/docset/winserver2012r2-ps/activedirectory/New-ADReplicationSite.md index c905a90939..3241f27c96 100644 --- a/docset/winserver2012r2-ps/activedirectory/New-ADReplicationSite.md +++ b/docset/winserver2012r2-ps/activedirectory/New-ADReplicationSite.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adreplicationsite?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adreplicationsite?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADReplicationSite --- diff --git a/docset/winserver2012r2-ps/activedirectory/New-ADReplicationSiteLink.md b/docset/winserver2012r2-ps/activedirectory/New-ADReplicationSiteLink.md index 54cc96191e..8ac64d7a13 100644 --- a/docset/winserver2012r2-ps/activedirectory/New-ADReplicationSiteLink.md +++ b/docset/winserver2012r2-ps/activedirectory/New-ADReplicationSiteLink.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adreplicationsitelink?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adreplicationsitelink?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADReplicationSiteLink --- diff --git a/docset/winserver2012r2-ps/activedirectory/New-ADReplicationSiteLinkBridge.md b/docset/winserver2012r2-ps/activedirectory/New-ADReplicationSiteLinkBridge.md index 9ee5b8e576..17869b6c6d 100644 --- a/docset/winserver2012r2-ps/activedirectory/New-ADReplicationSiteLinkBridge.md +++ b/docset/winserver2012r2-ps/activedirectory/New-ADReplicationSiteLinkBridge.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adreplicationsitelinkbridge?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adreplicationsitelinkbridge?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADReplicationSiteLinkBridge --- diff --git a/docset/winserver2012r2-ps/activedirectory/New-ADReplicationSubnet.md b/docset/winserver2012r2-ps/activedirectory/New-ADReplicationSubnet.md index f276c0641f..60c5838c80 100644 --- a/docset/winserver2012r2-ps/activedirectory/New-ADReplicationSubnet.md +++ b/docset/winserver2012r2-ps/activedirectory/New-ADReplicationSubnet.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adreplicationsubnet?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adreplicationsubnet?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADReplicationSubnet --- diff --git a/docset/winserver2012r2-ps/activedirectory/New-ADResourceProperty.md b/docset/winserver2012r2-ps/activedirectory/New-ADResourceProperty.md index bc7fa1132e..d629612d09 100644 --- a/docset/winserver2012r2-ps/activedirectory/New-ADResourceProperty.md +++ b/docset/winserver2012r2-ps/activedirectory/New-ADResourceProperty.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adresourceproperty?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adresourceproperty?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADResourceProperty --- diff --git a/docset/winserver2012r2-ps/activedirectory/New-ADResourcePropertyList.md b/docset/winserver2012r2-ps/activedirectory/New-ADResourcePropertyList.md index b9a9e97054..bd58ccd219 100644 --- a/docset/winserver2012r2-ps/activedirectory/New-ADResourcePropertyList.md +++ b/docset/winserver2012r2-ps/activedirectory/New-ADResourcePropertyList.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adresourcepropertylist?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adresourcepropertylist?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADResourcePropertyList --- diff --git a/docset/winserver2012r2-ps/activedirectory/New-ADServiceAccount.md b/docset/winserver2012r2-ps/activedirectory/New-ADServiceAccount.md index fb23a2a768..db277a6b54 100644 --- a/docset/winserver2012r2-ps/activedirectory/New-ADServiceAccount.md +++ b/docset/winserver2012r2-ps/activedirectory/New-ADServiceAccount.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adserviceaccount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adserviceaccount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADServiceAccount --- diff --git a/docset/winserver2012r2-ps/activedirectory/New-ADUser.md b/docset/winserver2012r2-ps/activedirectory/New-ADUser.md index dfe6361139..c5f77c9baf 100644 --- a/docset/winserver2012r2-ps/activedirectory/New-ADUser.md +++ b/docset/winserver2012r2-ps/activedirectory/New-ADUser.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-aduser?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-aduser?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADUser --- diff --git a/docset/winserver2012r2-ps/activedirectory/Remove-ADAuthenticationPolicy.md b/docset/winserver2012r2-ps/activedirectory/Remove-ADAuthenticationPolicy.md index 47464f67cc..9c5d2d8c06 100644 --- a/docset/winserver2012r2-ps/activedirectory/Remove-ADAuthenticationPolicy.md +++ b/docset/winserver2012r2-ps/activedirectory/Remove-ADAuthenticationPolicy.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adauthenticationpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adauthenticationpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADAuthenticationPolicy --- diff --git a/docset/winserver2012r2-ps/activedirectory/Remove-ADAuthenticationPolicySilo.md b/docset/winserver2012r2-ps/activedirectory/Remove-ADAuthenticationPolicySilo.md index a87492ef08..fa5d734560 100644 --- a/docset/winserver2012r2-ps/activedirectory/Remove-ADAuthenticationPolicySilo.md +++ b/docset/winserver2012r2-ps/activedirectory/Remove-ADAuthenticationPolicySilo.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adauthenticationpolicysilo?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adauthenticationpolicysilo?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADAuthenticationPolicySilo --- diff --git a/docset/winserver2012r2-ps/activedirectory/Remove-ADCentralAccessPolicy.md b/docset/winserver2012r2-ps/activedirectory/Remove-ADCentralAccessPolicy.md index 4465367147..fa97057777 100644 --- a/docset/winserver2012r2-ps/activedirectory/Remove-ADCentralAccessPolicy.md +++ b/docset/winserver2012r2-ps/activedirectory/Remove-ADCentralAccessPolicy.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adcentralaccesspolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adcentralaccesspolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADCentralAccessPolicy --- diff --git a/docset/winserver2012r2-ps/activedirectory/Remove-ADCentralAccessPolicyMember.md b/docset/winserver2012r2-ps/activedirectory/Remove-ADCentralAccessPolicyMember.md index f603dd9a8f..d59ad39a18 100644 --- a/docset/winserver2012r2-ps/activedirectory/Remove-ADCentralAccessPolicyMember.md +++ b/docset/winserver2012r2-ps/activedirectory/Remove-ADCentralAccessPolicyMember.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adcentralaccesspolicymember?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adcentralaccesspolicymember?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADCentralAccessPolicyMember --- diff --git a/docset/winserver2012r2-ps/activedirectory/Remove-ADCentralAccessRule.md b/docset/winserver2012r2-ps/activedirectory/Remove-ADCentralAccessRule.md index b34fe08c65..4387bb0068 100644 --- a/docset/winserver2012r2-ps/activedirectory/Remove-ADCentralAccessRule.md +++ b/docset/winserver2012r2-ps/activedirectory/Remove-ADCentralAccessRule.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adcentralaccessrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adcentralaccessrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADCentralAccessRule --- diff --git a/docset/winserver2012r2-ps/activedirectory/Remove-ADClaimTransformPolicy.md b/docset/winserver2012r2-ps/activedirectory/Remove-ADClaimTransformPolicy.md index 23d53de68b..1653b2b77f 100644 --- a/docset/winserver2012r2-ps/activedirectory/Remove-ADClaimTransformPolicy.md +++ b/docset/winserver2012r2-ps/activedirectory/Remove-ADClaimTransformPolicy.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adclaimtransformpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adclaimtransformpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADClaimTransformPolicy --- diff --git a/docset/winserver2012r2-ps/activedirectory/Remove-ADClaimType.md b/docset/winserver2012r2-ps/activedirectory/Remove-ADClaimType.md index c95948bcdc..6e8d0b035b 100644 --- a/docset/winserver2012r2-ps/activedirectory/Remove-ADClaimType.md +++ b/docset/winserver2012r2-ps/activedirectory/Remove-ADClaimType.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adclaimtype?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adclaimtype?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADClaimType --- diff --git a/docset/winserver2012r2-ps/activedirectory/Remove-ADComputer.md b/docset/winserver2012r2-ps/activedirectory/Remove-ADComputer.md index 38275d53a3..4a279e1837 100644 --- a/docset/winserver2012r2-ps/activedirectory/Remove-ADComputer.md +++ b/docset/winserver2012r2-ps/activedirectory/Remove-ADComputer.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adcomputer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adcomputer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADComputer --- diff --git a/docset/winserver2012r2-ps/activedirectory/Remove-ADComputerServiceAccount.md b/docset/winserver2012r2-ps/activedirectory/Remove-ADComputerServiceAccount.md index 18a6086c74..fb6f1eda0e 100644 --- a/docset/winserver2012r2-ps/activedirectory/Remove-ADComputerServiceAccount.md +++ b/docset/winserver2012r2-ps/activedirectory/Remove-ADComputerServiceAccount.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adcomputerserviceaccount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adcomputerserviceaccount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADComputerServiceAccount --- diff --git a/docset/winserver2012r2-ps/activedirectory/Remove-ADDomainControllerPasswordReplicationPolicy.md b/docset/winserver2012r2-ps/activedirectory/Remove-ADDomainControllerPasswordReplicationPolicy.md index 79aadb4e76..91a72d6a92 100644 --- a/docset/winserver2012r2-ps/activedirectory/Remove-ADDomainControllerPasswordReplicationPolicy.md +++ b/docset/winserver2012r2-ps/activedirectory/Remove-ADDomainControllerPasswordReplicationPolicy.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-addomaincontrollerpasswordreplicationpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-addomaincontrollerpasswordreplicationpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADDomainControllerPasswordReplicationPolicy --- diff --git a/docset/winserver2012r2-ps/activedirectory/Remove-ADFineGrainedPasswordPolicy.md b/docset/winserver2012r2-ps/activedirectory/Remove-ADFineGrainedPasswordPolicy.md index c1daf0d8bf..52734dfb0e 100644 --- a/docset/winserver2012r2-ps/activedirectory/Remove-ADFineGrainedPasswordPolicy.md +++ b/docset/winserver2012r2-ps/activedirectory/Remove-ADFineGrainedPasswordPolicy.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adfinegrainedpasswordpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adfinegrainedpasswordpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADFineGrainedPasswordPolicy --- diff --git a/docset/winserver2012r2-ps/activedirectory/Remove-ADFineGrainedPasswordPolicySubject.md b/docset/winserver2012r2-ps/activedirectory/Remove-ADFineGrainedPasswordPolicySubject.md index 57069942bf..9fd07534f9 100644 --- a/docset/winserver2012r2-ps/activedirectory/Remove-ADFineGrainedPasswordPolicySubject.md +++ b/docset/winserver2012r2-ps/activedirectory/Remove-ADFineGrainedPasswordPolicySubject.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adfinegrainedpasswordpolicysubject?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adfinegrainedpasswordpolicysubject?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADFineGrainedPasswordPolicySubject --- diff --git a/docset/winserver2012r2-ps/activedirectory/Remove-ADGroup.md b/docset/winserver2012r2-ps/activedirectory/Remove-ADGroup.md index 6739177028..9c0ece0adc 100644 --- a/docset/winserver2012r2-ps/activedirectory/Remove-ADGroup.md +++ b/docset/winserver2012r2-ps/activedirectory/Remove-ADGroup.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adgroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adgroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADGroup --- diff --git a/docset/winserver2012r2-ps/activedirectory/Remove-ADGroupMember.md b/docset/winserver2012r2-ps/activedirectory/Remove-ADGroupMember.md index 1be70040c7..d8103ef128 100644 --- a/docset/winserver2012r2-ps/activedirectory/Remove-ADGroupMember.md +++ b/docset/winserver2012r2-ps/activedirectory/Remove-ADGroupMember.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adgroupmember?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adgroupmember?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADGroupMember --- diff --git a/docset/winserver2012r2-ps/activedirectory/Remove-ADObject.md b/docset/winserver2012r2-ps/activedirectory/Remove-ADObject.md index f2a0fb759a..2425c57e50 100644 --- a/docset/winserver2012r2-ps/activedirectory/Remove-ADObject.md +++ b/docset/winserver2012r2-ps/activedirectory/Remove-ADObject.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adobject?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adobject?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADObject --- diff --git a/docset/winserver2012r2-ps/activedirectory/Remove-ADOrganizationalUnit.md b/docset/winserver2012r2-ps/activedirectory/Remove-ADOrganizationalUnit.md index b0fa41d96b..2a42c3dda9 100644 --- a/docset/winserver2012r2-ps/activedirectory/Remove-ADOrganizationalUnit.md +++ b/docset/winserver2012r2-ps/activedirectory/Remove-ADOrganizationalUnit.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adorganizationalunit?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adorganizationalunit?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADOrganizationalUnit --- diff --git a/docset/winserver2012r2-ps/activedirectory/Remove-ADPrincipalGroupMembership.md b/docset/winserver2012r2-ps/activedirectory/Remove-ADPrincipalGroupMembership.md index 24e8400d27..7c671c5760 100644 --- a/docset/winserver2012r2-ps/activedirectory/Remove-ADPrincipalGroupMembership.md +++ b/docset/winserver2012r2-ps/activedirectory/Remove-ADPrincipalGroupMembership.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adprincipalgroupmembership?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adprincipalgroupmembership?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADPrincipalGroupMembership --- diff --git a/docset/winserver2012r2-ps/activedirectory/Remove-ADReplicationSite.md b/docset/winserver2012r2-ps/activedirectory/Remove-ADReplicationSite.md index 6d137a8961..fc976f111f 100644 --- a/docset/winserver2012r2-ps/activedirectory/Remove-ADReplicationSite.md +++ b/docset/winserver2012r2-ps/activedirectory/Remove-ADReplicationSite.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adreplicationsite?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adreplicationsite?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADReplicationSite --- diff --git a/docset/winserver2012r2-ps/activedirectory/Remove-ADReplicationSiteLink.md b/docset/winserver2012r2-ps/activedirectory/Remove-ADReplicationSiteLink.md index f36741859a..fbee38f77c 100644 --- a/docset/winserver2012r2-ps/activedirectory/Remove-ADReplicationSiteLink.md +++ b/docset/winserver2012r2-ps/activedirectory/Remove-ADReplicationSiteLink.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adreplicationsitelink?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adreplicationsitelink?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADReplicationSiteLink --- diff --git a/docset/winserver2012r2-ps/activedirectory/Remove-ADReplicationSiteLinkBridge.md b/docset/winserver2012r2-ps/activedirectory/Remove-ADReplicationSiteLinkBridge.md index 11f874222f..248d2ffc8a 100644 --- a/docset/winserver2012r2-ps/activedirectory/Remove-ADReplicationSiteLinkBridge.md +++ b/docset/winserver2012r2-ps/activedirectory/Remove-ADReplicationSiteLinkBridge.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adreplicationsitelinkbridge?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adreplicationsitelinkbridge?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADReplicationSiteLinkBridge --- diff --git a/docset/winserver2012r2-ps/activedirectory/Remove-ADReplicationSubnet.md b/docset/winserver2012r2-ps/activedirectory/Remove-ADReplicationSubnet.md index effcbd2265..24c5518c72 100644 --- a/docset/winserver2012r2-ps/activedirectory/Remove-ADReplicationSubnet.md +++ b/docset/winserver2012r2-ps/activedirectory/Remove-ADReplicationSubnet.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adreplicationsubnet?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adreplicationsubnet?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADReplicationSubnet --- diff --git a/docset/winserver2012r2-ps/activedirectory/Remove-ADResourceProperty.md b/docset/winserver2012r2-ps/activedirectory/Remove-ADResourceProperty.md index 6802a3006e..a3b803ce76 100644 --- a/docset/winserver2012r2-ps/activedirectory/Remove-ADResourceProperty.md +++ b/docset/winserver2012r2-ps/activedirectory/Remove-ADResourceProperty.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adresourceproperty?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adresourceproperty?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADResourceProperty --- diff --git a/docset/winserver2012r2-ps/activedirectory/Remove-ADResourcePropertyList.md b/docset/winserver2012r2-ps/activedirectory/Remove-ADResourcePropertyList.md index 1c13ba8174..49c25b3151 100644 --- a/docset/winserver2012r2-ps/activedirectory/Remove-ADResourcePropertyList.md +++ b/docset/winserver2012r2-ps/activedirectory/Remove-ADResourcePropertyList.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adresourcepropertylist?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adresourcepropertylist?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADResourcePropertyList --- diff --git a/docset/winserver2012r2-ps/activedirectory/Remove-ADResourcePropertyListMember.md b/docset/winserver2012r2-ps/activedirectory/Remove-ADResourcePropertyListMember.md index d1b0007cd5..be6c993cde 100644 --- a/docset/winserver2012r2-ps/activedirectory/Remove-ADResourcePropertyListMember.md +++ b/docset/winserver2012r2-ps/activedirectory/Remove-ADResourcePropertyListMember.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adresourcepropertylistmember?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adresourcepropertylistmember?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADResourcePropertyListMember --- diff --git a/docset/winserver2012r2-ps/activedirectory/Remove-ADServiceAccount.md b/docset/winserver2012r2-ps/activedirectory/Remove-ADServiceAccount.md index 10d86a2692..6264111f6f 100644 --- a/docset/winserver2012r2-ps/activedirectory/Remove-ADServiceAccount.md +++ b/docset/winserver2012r2-ps/activedirectory/Remove-ADServiceAccount.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adserviceaccount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adserviceaccount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADServiceAccount --- diff --git a/docset/winserver2012r2-ps/activedirectory/Remove-ADUser.md b/docset/winserver2012r2-ps/activedirectory/Remove-ADUser.md index f16ec1b930..390f00b178 100644 --- a/docset/winserver2012r2-ps/activedirectory/Remove-ADUser.md +++ b/docset/winserver2012r2-ps/activedirectory/Remove-ADUser.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-aduser?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-aduser?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADUser --- diff --git a/docset/winserver2012r2-ps/activedirectory/Rename-ADObject.md b/docset/winserver2012r2-ps/activedirectory/Rename-ADObject.md index c48bfa1b27..4818795ff8 100644 --- a/docset/winserver2012r2-ps/activedirectory/Rename-ADObject.md +++ b/docset/winserver2012r2-ps/activedirectory/Rename-ADObject.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/rename-adobject?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/rename-adobject?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-ADObject --- diff --git a/docset/winserver2012r2-ps/activedirectory/Reset-ADServiceAccountPassword.md b/docset/winserver2012r2-ps/activedirectory/Reset-ADServiceAccountPassword.md index 7115ee9877..6bab89253a 100644 --- a/docset/winserver2012r2-ps/activedirectory/Reset-ADServiceAccountPassword.md +++ b/docset/winserver2012r2-ps/activedirectory/Reset-ADServiceAccountPassword.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/reset-adserviceaccountpassword?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/reset-adserviceaccountpassword?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-ADServiceAccountPassword --- diff --git a/docset/winserver2012r2-ps/activedirectory/Restore-ADObject.md b/docset/winserver2012r2-ps/activedirectory/Restore-ADObject.md index c0aa9eb383..bb8904ac42 100644 --- a/docset/winserver2012r2-ps/activedirectory/Restore-ADObject.md +++ b/docset/winserver2012r2-ps/activedirectory/Restore-ADObject.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/restore-adobject?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/restore-adobject?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-ADObject --- diff --git a/docset/winserver2012r2-ps/activedirectory/Revoke-ADAuthenticationPolicySiloAccess.md b/docset/winserver2012r2-ps/activedirectory/Revoke-ADAuthenticationPolicySiloAccess.md index d0f7c23635..1da3300c29 100644 --- a/docset/winserver2012r2-ps/activedirectory/Revoke-ADAuthenticationPolicySiloAccess.md +++ b/docset/winserver2012r2-ps/activedirectory/Revoke-ADAuthenticationPolicySiloAccess.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/revoke-adauthenticationpolicysiloaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/revoke-adauthenticationpolicysiloaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Revoke-ADAuthenticationPolicySiloAccess --- diff --git a/docset/winserver2012r2-ps/activedirectory/Search-ADAccount.md b/docset/winserver2012r2-ps/activedirectory/Search-ADAccount.md index 56de7a1ade..b0ed66856a 100644 --- a/docset/winserver2012r2-ps/activedirectory/Search-ADAccount.md +++ b/docset/winserver2012r2-ps/activedirectory/Search-ADAccount.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/search-adaccount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/search-adaccount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Search-ADAccount --- diff --git a/docset/winserver2012r2-ps/activedirectory/Set-ADAccountAuthenticationPolicySilo.md b/docset/winserver2012r2-ps/activedirectory/Set-ADAccountAuthenticationPolicySilo.md index 1ade4ef8d9..730ed59ec1 100644 --- a/docset/winserver2012r2-ps/activedirectory/Set-ADAccountAuthenticationPolicySilo.md +++ b/docset/winserver2012r2-ps/activedirectory/Set-ADAccountAuthenticationPolicySilo.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adaccountauthenticationpolicysilo?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adaccountauthenticationpolicysilo?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADAccountAuthenticationPolicySilo --- diff --git a/docset/winserver2012r2-ps/activedirectory/Set-ADAccountControl.md b/docset/winserver2012r2-ps/activedirectory/Set-ADAccountControl.md index ef681706df..a88514731a 100644 --- a/docset/winserver2012r2-ps/activedirectory/Set-ADAccountControl.md +++ b/docset/winserver2012r2-ps/activedirectory/Set-ADAccountControl.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adaccountcontrol?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adaccountcontrol?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADAccountControl --- diff --git a/docset/winserver2012r2-ps/activedirectory/Set-ADAccountExpiration.md b/docset/winserver2012r2-ps/activedirectory/Set-ADAccountExpiration.md index 768e01c43d..b0367ca2dd 100644 --- a/docset/winserver2012r2-ps/activedirectory/Set-ADAccountExpiration.md +++ b/docset/winserver2012r2-ps/activedirectory/Set-ADAccountExpiration.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adaccountexpiration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adaccountexpiration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADAccountExpiration --- diff --git a/docset/winserver2012r2-ps/activedirectory/Set-ADAccountPassword.md b/docset/winserver2012r2-ps/activedirectory/Set-ADAccountPassword.md index e9ae558f3d..05ce1eab92 100644 --- a/docset/winserver2012r2-ps/activedirectory/Set-ADAccountPassword.md +++ b/docset/winserver2012r2-ps/activedirectory/Set-ADAccountPassword.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adaccountpassword?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adaccountpassword?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADAccountPassword --- diff --git a/docset/winserver2012r2-ps/activedirectory/Set-ADAuthenticationPolicy.md b/docset/winserver2012r2-ps/activedirectory/Set-ADAuthenticationPolicy.md index 4b24ccc820..9b3ee192ae 100644 --- a/docset/winserver2012r2-ps/activedirectory/Set-ADAuthenticationPolicy.md +++ b/docset/winserver2012r2-ps/activedirectory/Set-ADAuthenticationPolicy.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adauthenticationpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adauthenticationpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADAuthenticationPolicy --- diff --git a/docset/winserver2012r2-ps/activedirectory/Set-ADAuthenticationPolicySilo.md b/docset/winserver2012r2-ps/activedirectory/Set-ADAuthenticationPolicySilo.md index 66cf6cfd32..58afe2c9a4 100644 --- a/docset/winserver2012r2-ps/activedirectory/Set-ADAuthenticationPolicySilo.md +++ b/docset/winserver2012r2-ps/activedirectory/Set-ADAuthenticationPolicySilo.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adauthenticationpolicysilo?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adauthenticationpolicysilo?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADAuthenticationPolicySilo --- diff --git a/docset/winserver2012r2-ps/activedirectory/Set-ADCentralAccessPolicy.md b/docset/winserver2012r2-ps/activedirectory/Set-ADCentralAccessPolicy.md index 36a8962e83..55d52ef739 100644 --- a/docset/winserver2012r2-ps/activedirectory/Set-ADCentralAccessPolicy.md +++ b/docset/winserver2012r2-ps/activedirectory/Set-ADCentralAccessPolicy.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adcentralaccesspolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adcentralaccesspolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADCentralAccessPolicy --- diff --git a/docset/winserver2012r2-ps/activedirectory/Set-ADCentralAccessRule.md b/docset/winserver2012r2-ps/activedirectory/Set-ADCentralAccessRule.md index ab945a8f34..78a9916e6a 100644 --- a/docset/winserver2012r2-ps/activedirectory/Set-ADCentralAccessRule.md +++ b/docset/winserver2012r2-ps/activedirectory/Set-ADCentralAccessRule.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adcentralaccessrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adcentralaccessrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADCentralAccessRule --- diff --git a/docset/winserver2012r2-ps/activedirectory/Set-ADClaimTransformLink.md b/docset/winserver2012r2-ps/activedirectory/Set-ADClaimTransformLink.md index 7976873781..0c32c7532f 100644 --- a/docset/winserver2012r2-ps/activedirectory/Set-ADClaimTransformLink.md +++ b/docset/winserver2012r2-ps/activedirectory/Set-ADClaimTransformLink.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adclaimtransformlink?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adclaimtransformlink?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADClaimTransformLink --- diff --git a/docset/winserver2012r2-ps/activedirectory/Set-ADClaimTransformPolicy.md b/docset/winserver2012r2-ps/activedirectory/Set-ADClaimTransformPolicy.md index 116f3c064a..478ecceb11 100644 --- a/docset/winserver2012r2-ps/activedirectory/Set-ADClaimTransformPolicy.md +++ b/docset/winserver2012r2-ps/activedirectory/Set-ADClaimTransformPolicy.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adclaimtransformpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adclaimtransformpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADClaimTransformPolicy --- diff --git a/docset/winserver2012r2-ps/activedirectory/Set-ADClaimType.md b/docset/winserver2012r2-ps/activedirectory/Set-ADClaimType.md index b3039c7deb..bc62583b55 100644 --- a/docset/winserver2012r2-ps/activedirectory/Set-ADClaimType.md +++ b/docset/winserver2012r2-ps/activedirectory/Set-ADClaimType.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adclaimtype?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adclaimtype?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADClaimType --- diff --git a/docset/winserver2012r2-ps/activedirectory/Set-ADComputer.md b/docset/winserver2012r2-ps/activedirectory/Set-ADComputer.md index 47e18c5a65..6736559e7c 100644 --- a/docset/winserver2012r2-ps/activedirectory/Set-ADComputer.md +++ b/docset/winserver2012r2-ps/activedirectory/Set-ADComputer.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adcomputer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adcomputer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADComputer --- diff --git a/docset/winserver2012r2-ps/activedirectory/Set-ADDefaultDomainPasswordPolicy.md b/docset/winserver2012r2-ps/activedirectory/Set-ADDefaultDomainPasswordPolicy.md index 129e573b1d..9abc644855 100644 --- a/docset/winserver2012r2-ps/activedirectory/Set-ADDefaultDomainPasswordPolicy.md +++ b/docset/winserver2012r2-ps/activedirectory/Set-ADDefaultDomainPasswordPolicy.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-addefaultdomainpasswordpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-addefaultdomainpasswordpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADDefaultDomainPasswordPolicy --- diff --git a/docset/winserver2012r2-ps/activedirectory/Set-ADDomain.md b/docset/winserver2012r2-ps/activedirectory/Set-ADDomain.md index cec1c728a0..ea8bdb2e7d 100644 --- a/docset/winserver2012r2-ps/activedirectory/Set-ADDomain.md +++ b/docset/winserver2012r2-ps/activedirectory/Set-ADDomain.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-addomain?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-addomain?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADDomain --- diff --git a/docset/winserver2012r2-ps/activedirectory/Set-ADDomainMode.md b/docset/winserver2012r2-ps/activedirectory/Set-ADDomainMode.md index 0484c9a988..8d5fc2773c 100644 --- a/docset/winserver2012r2-ps/activedirectory/Set-ADDomainMode.md +++ b/docset/winserver2012r2-ps/activedirectory/Set-ADDomainMode.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-addomainmode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-addomainmode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADDomainMode --- diff --git a/docset/winserver2012r2-ps/activedirectory/Set-ADFineGrainedPasswordPolicy.md b/docset/winserver2012r2-ps/activedirectory/Set-ADFineGrainedPasswordPolicy.md index 4bff0c6965..e4f3813a5a 100644 --- a/docset/winserver2012r2-ps/activedirectory/Set-ADFineGrainedPasswordPolicy.md +++ b/docset/winserver2012r2-ps/activedirectory/Set-ADFineGrainedPasswordPolicy.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adfinegrainedpasswordpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adfinegrainedpasswordpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADFineGrainedPasswordPolicy --- diff --git a/docset/winserver2012r2-ps/activedirectory/Set-ADForest.md b/docset/winserver2012r2-ps/activedirectory/Set-ADForest.md index f76d924582..516134f807 100644 --- a/docset/winserver2012r2-ps/activedirectory/Set-ADForest.md +++ b/docset/winserver2012r2-ps/activedirectory/Set-ADForest.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adforest?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adforest?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADForest --- diff --git a/docset/winserver2012r2-ps/activedirectory/Set-ADForestMode.md b/docset/winserver2012r2-ps/activedirectory/Set-ADForestMode.md index 0f81bd1ea4..10127ad4d3 100644 --- a/docset/winserver2012r2-ps/activedirectory/Set-ADForestMode.md +++ b/docset/winserver2012r2-ps/activedirectory/Set-ADForestMode.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adforestmode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adforestmode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADForestMode --- diff --git a/docset/winserver2012r2-ps/activedirectory/Set-ADGroup.md b/docset/winserver2012r2-ps/activedirectory/Set-ADGroup.md index b294ade17c..37c6aad694 100644 --- a/docset/winserver2012r2-ps/activedirectory/Set-ADGroup.md +++ b/docset/winserver2012r2-ps/activedirectory/Set-ADGroup.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adgroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adgroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADGroup --- diff --git a/docset/winserver2012r2-ps/activedirectory/Set-ADObject.md b/docset/winserver2012r2-ps/activedirectory/Set-ADObject.md index a115964a63..7a56f7f3e9 100644 --- a/docset/winserver2012r2-ps/activedirectory/Set-ADObject.md +++ b/docset/winserver2012r2-ps/activedirectory/Set-ADObject.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adobject?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adobject?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADObject --- diff --git a/docset/winserver2012r2-ps/activedirectory/Set-ADOrganizationalUnit.md b/docset/winserver2012r2-ps/activedirectory/Set-ADOrganizationalUnit.md index 2b4abe6716..41abec09d8 100644 --- a/docset/winserver2012r2-ps/activedirectory/Set-ADOrganizationalUnit.md +++ b/docset/winserver2012r2-ps/activedirectory/Set-ADOrganizationalUnit.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adorganizationalunit?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adorganizationalunit?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADOrganizationalUnit --- diff --git a/docset/winserver2012r2-ps/activedirectory/Set-ADReplicationConnection.md b/docset/winserver2012r2-ps/activedirectory/Set-ADReplicationConnection.md index 30d47ef0fa..7ed6dddcfe 100644 --- a/docset/winserver2012r2-ps/activedirectory/Set-ADReplicationConnection.md +++ b/docset/winserver2012r2-ps/activedirectory/Set-ADReplicationConnection.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adreplicationconnection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adreplicationconnection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADReplicationConnection --- diff --git a/docset/winserver2012r2-ps/activedirectory/Set-ADReplicationSite.md b/docset/winserver2012r2-ps/activedirectory/Set-ADReplicationSite.md index 342e290862..488dc528a6 100644 --- a/docset/winserver2012r2-ps/activedirectory/Set-ADReplicationSite.md +++ b/docset/winserver2012r2-ps/activedirectory/Set-ADReplicationSite.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adreplicationsite?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adreplicationsite?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADReplicationSite --- diff --git a/docset/winserver2012r2-ps/activedirectory/Set-ADReplicationSiteLink.md b/docset/winserver2012r2-ps/activedirectory/Set-ADReplicationSiteLink.md index 3e2ad3b6c0..cf055b5562 100644 --- a/docset/winserver2012r2-ps/activedirectory/Set-ADReplicationSiteLink.md +++ b/docset/winserver2012r2-ps/activedirectory/Set-ADReplicationSiteLink.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adreplicationsitelink?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adreplicationsitelink?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADReplicationSiteLink --- diff --git a/docset/winserver2012r2-ps/activedirectory/Set-ADReplicationSiteLinkBridge.md b/docset/winserver2012r2-ps/activedirectory/Set-ADReplicationSiteLinkBridge.md index 58a3c43666..e238f10623 100644 --- a/docset/winserver2012r2-ps/activedirectory/Set-ADReplicationSiteLinkBridge.md +++ b/docset/winserver2012r2-ps/activedirectory/Set-ADReplicationSiteLinkBridge.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adreplicationsitelinkbridge?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adreplicationsitelinkbridge?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADReplicationSiteLinkBridge --- diff --git a/docset/winserver2012r2-ps/activedirectory/Set-ADReplicationSubnet.md b/docset/winserver2012r2-ps/activedirectory/Set-ADReplicationSubnet.md index 4486f283aa..f27005174c 100644 --- a/docset/winserver2012r2-ps/activedirectory/Set-ADReplicationSubnet.md +++ b/docset/winserver2012r2-ps/activedirectory/Set-ADReplicationSubnet.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adreplicationsubnet?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adreplicationsubnet?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADReplicationSubnet --- diff --git a/docset/winserver2012r2-ps/activedirectory/Set-ADResourceProperty.md b/docset/winserver2012r2-ps/activedirectory/Set-ADResourceProperty.md index e3e6dd5534..4b377b2f55 100644 --- a/docset/winserver2012r2-ps/activedirectory/Set-ADResourceProperty.md +++ b/docset/winserver2012r2-ps/activedirectory/Set-ADResourceProperty.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adresourceproperty?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adresourceproperty?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADResourceProperty --- diff --git a/docset/winserver2012r2-ps/activedirectory/Set-ADResourcePropertyList.md b/docset/winserver2012r2-ps/activedirectory/Set-ADResourcePropertyList.md index f7857bff9a..4491d59bbf 100644 --- a/docset/winserver2012r2-ps/activedirectory/Set-ADResourcePropertyList.md +++ b/docset/winserver2012r2-ps/activedirectory/Set-ADResourcePropertyList.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adresourcepropertylist?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adresourcepropertylist?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADResourcePropertyList --- diff --git a/docset/winserver2012r2-ps/activedirectory/Set-ADServiceAccount.md b/docset/winserver2012r2-ps/activedirectory/Set-ADServiceAccount.md index 681357dce9..3a5ae4f39b 100644 --- a/docset/winserver2012r2-ps/activedirectory/Set-ADServiceAccount.md +++ b/docset/winserver2012r2-ps/activedirectory/Set-ADServiceAccount.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adserviceaccount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adserviceaccount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADServiceAccount --- diff --git a/docset/winserver2012r2-ps/activedirectory/Set-ADUser.md b/docset/winserver2012r2-ps/activedirectory/Set-ADUser.md index fe66aceff9..19670d98dc 100644 --- a/docset/winserver2012r2-ps/activedirectory/Set-ADUser.md +++ b/docset/winserver2012r2-ps/activedirectory/Set-ADUser.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-aduser?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-aduser?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADUser --- diff --git a/docset/winserver2012r2-ps/activedirectory/Show-ADAuthenticationPolicyExpression.md b/docset/winserver2012r2-ps/activedirectory/Show-ADAuthenticationPolicyExpression.md index cfd612c4c4..81bc2c1098 100644 --- a/docset/winserver2012r2-ps/activedirectory/Show-ADAuthenticationPolicyExpression.md +++ b/docset/winserver2012r2-ps/activedirectory/Show-ADAuthenticationPolicyExpression.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/show-adauthenticationpolicyexpression?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/show-adauthenticationpolicyexpression?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Show-ADAuthenticationPolicyExpression --- diff --git a/docset/winserver2012r2-ps/activedirectory/Sync-ADObject.md b/docset/winserver2012r2-ps/activedirectory/Sync-ADObject.md index e70ef8f5b6..8bf1f10354 100644 --- a/docset/winserver2012r2-ps/activedirectory/Sync-ADObject.md +++ b/docset/winserver2012r2-ps/activedirectory/Sync-ADObject.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/sync-adobject?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/sync-adobject?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Sync-ADObject --- diff --git a/docset/winserver2012r2-ps/activedirectory/Test-ADServiceAccount.md b/docset/winserver2012r2-ps/activedirectory/Test-ADServiceAccount.md index 2867a25c0c..21ab8d8925 100644 --- a/docset/winserver2012r2-ps/activedirectory/Test-ADServiceAccount.md +++ b/docset/winserver2012r2-ps/activedirectory/Test-ADServiceAccount.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/test-adserviceaccount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/test-adserviceaccount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-ADServiceAccount --- diff --git a/docset/winserver2012r2-ps/activedirectory/Uninstall-ADServiceAccount.md b/docset/winserver2012r2-ps/activedirectory/Uninstall-ADServiceAccount.md index 0661be803c..0da31e8c04 100644 --- a/docset/winserver2012r2-ps/activedirectory/Uninstall-ADServiceAccount.md +++ b/docset/winserver2012r2-ps/activedirectory/Uninstall-ADServiceAccount.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/uninstall-adserviceaccount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/uninstall-adserviceaccount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-ADServiceAccount --- diff --git a/docset/winserver2012r2-ps/activedirectory/Unlock-ADAccount.md b/docset/winserver2012r2-ps/activedirectory/Unlock-ADAccount.md index 91b94f233f..c0f0d99cc2 100644 --- a/docset/winserver2012r2-ps/activedirectory/Unlock-ADAccount.md +++ b/docset/winserver2012r2-ps/activedirectory/Unlock-ADAccount.md @@ -2,7 +2,7 @@ external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/activedirectory/unlock-adaccount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/unlock-adaccount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unlock-ADAccount --- diff --git a/docset/winserver2012r2-ps/adcsadministration/add-caauthorityinformationaccess.md b/docset/winserver2012r2-ps/adcsadministration/add-caauthorityinformationaccess.md index 98a86aaaa8..78adaeb10a 100644 --- a/docset/winserver2012r2-ps/adcsadministration/add-caauthorityinformationaccess.md +++ b/docset/winserver2012r2-ps/adcsadministration/add-caauthorityinformationaccess.md @@ -2,7 +2,7 @@ external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: adcsadministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adcsadministration/add-caauthorityinformationaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/add-caauthorityinformationaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-CAAuthorityInformationAccess --- diff --git a/docset/winserver2012r2-ps/adcsadministration/add-cacrldistributionpoint.md b/docset/winserver2012r2-ps/adcsadministration/add-cacrldistributionpoint.md index 4bcd4e4072..231563adc2 100644 --- a/docset/winserver2012r2-ps/adcsadministration/add-cacrldistributionpoint.md +++ b/docset/winserver2012r2-ps/adcsadministration/add-cacrldistributionpoint.md @@ -2,7 +2,7 @@ external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: adcsadministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adcsadministration/add-cacrldistributionpoint?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/add-cacrldistributionpoint?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-CACrlDistributionPoint --- diff --git a/docset/winserver2012r2-ps/adcsadministration/add-catemplate.md b/docset/winserver2012r2-ps/adcsadministration/add-catemplate.md index 97deecc12f..8eeb226c93 100644 --- a/docset/winserver2012r2-ps/adcsadministration/add-catemplate.md +++ b/docset/winserver2012r2-ps/adcsadministration/add-catemplate.md @@ -2,7 +2,7 @@ external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: adcsadministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adcsadministration/add-catemplate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/add-catemplate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-CATemplate --- diff --git a/docset/winserver2012r2-ps/adcsadministration/backup-caroleservice.md b/docset/winserver2012r2-ps/adcsadministration/backup-caroleservice.md index 4aa15897ca..999fd7768a 100644 --- a/docset/winserver2012r2-ps/adcsadministration/backup-caroleservice.md +++ b/docset/winserver2012r2-ps/adcsadministration/backup-caroleservice.md @@ -2,7 +2,7 @@ external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: adcsadministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adcsadministration/backup-caroleservice?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/backup-caroleservice?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Backup-CARoleService --- diff --git a/docset/winserver2012r2-ps/adcsadministration/confirm-caendorsementkeyinfo.md b/docset/winserver2012r2-ps/adcsadministration/confirm-caendorsementkeyinfo.md index 20d3ea79db..fba5c984be 100644 --- a/docset/winserver2012r2-ps/adcsadministration/confirm-caendorsementkeyinfo.md +++ b/docset/winserver2012r2-ps/adcsadministration/confirm-caendorsementkeyinfo.md @@ -2,7 +2,7 @@ external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: adcsadministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adcsadministration/confirm-caendorsementkeyinfo?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/confirm-caendorsementkeyinfo?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Confirm-CAEndorsementKeyInfo --- diff --git a/docset/winserver2012r2-ps/adcsadministration/get-caauthorityinformationaccess.md b/docset/winserver2012r2-ps/adcsadministration/get-caauthorityinformationaccess.md index 2cb8033fd7..26e9082149 100644 --- a/docset/winserver2012r2-ps/adcsadministration/get-caauthorityinformationaccess.md +++ b/docset/winserver2012r2-ps/adcsadministration/get-caauthorityinformationaccess.md @@ -2,7 +2,7 @@ external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: adcsadministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adcsadministration/get-caauthorityinformationaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/get-caauthorityinformationaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CAAuthorityInformationAccess --- diff --git a/docset/winserver2012r2-ps/adcsadministration/get-cacrldistributionpoint.md b/docset/winserver2012r2-ps/adcsadministration/get-cacrldistributionpoint.md index d022e8b313..608065527b 100644 --- a/docset/winserver2012r2-ps/adcsadministration/get-cacrldistributionpoint.md +++ b/docset/winserver2012r2-ps/adcsadministration/get-cacrldistributionpoint.md @@ -2,7 +2,7 @@ external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: adcsadministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adcsadministration/get-cacrldistributionpoint?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/get-cacrldistributionpoint?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CACrlDistributionPoint --- diff --git a/docset/winserver2012r2-ps/adcsadministration/get-catemplate.md b/docset/winserver2012r2-ps/adcsadministration/get-catemplate.md index 1b01a375fa..b8406576de 100644 --- a/docset/winserver2012r2-ps/adcsadministration/get-catemplate.md +++ b/docset/winserver2012r2-ps/adcsadministration/get-catemplate.md @@ -2,7 +2,7 @@ external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: adcsadministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adcsadministration/get-catemplate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/get-catemplate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CATemplate --- diff --git a/docset/winserver2012r2-ps/adcsadministration/remove-caauthorityinformationaccess.md b/docset/winserver2012r2-ps/adcsadministration/remove-caauthorityinformationaccess.md index 55d5618553..a9a3156cda 100644 --- a/docset/winserver2012r2-ps/adcsadministration/remove-caauthorityinformationaccess.md +++ b/docset/winserver2012r2-ps/adcsadministration/remove-caauthorityinformationaccess.md @@ -2,7 +2,7 @@ external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: adcsadministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adcsadministration/remove-caauthorityinformationaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/remove-caauthorityinformationaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-CAAuthorityInformationAccess --- diff --git a/docset/winserver2012r2-ps/adcsadministration/remove-cacrldistributionpoint.md b/docset/winserver2012r2-ps/adcsadministration/remove-cacrldistributionpoint.md index 879d8a0a89..0d72c8631a 100644 --- a/docset/winserver2012r2-ps/adcsadministration/remove-cacrldistributionpoint.md +++ b/docset/winserver2012r2-ps/adcsadministration/remove-cacrldistributionpoint.md @@ -2,7 +2,7 @@ external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: adcsadministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adcsadministration/remove-cacrldistributionpoint?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/remove-cacrldistributionpoint?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-CACrlDistributionPoint --- diff --git a/docset/winserver2012r2-ps/adcsadministration/remove-catemplate.md b/docset/winserver2012r2-ps/adcsadministration/remove-catemplate.md index 0dceca19d8..c5302dac19 100644 --- a/docset/winserver2012r2-ps/adcsadministration/remove-catemplate.md +++ b/docset/winserver2012r2-ps/adcsadministration/remove-catemplate.md @@ -2,7 +2,7 @@ external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: adcsadministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adcsadministration/remove-catemplate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/remove-catemplate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-CATemplate --- diff --git a/docset/winserver2012r2-ps/adcsadministration/restore-caroleservice.md b/docset/winserver2012r2-ps/adcsadministration/restore-caroleservice.md index 5e207ffc15..0b11bf5754 100644 --- a/docset/winserver2012r2-ps/adcsadministration/restore-caroleservice.md +++ b/docset/winserver2012r2-ps/adcsadministration/restore-caroleservice.md @@ -2,7 +2,7 @@ external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: adcsadministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adcsadministration/restore-caroleservice?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/restore-caroleservice?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-CARoleService --- diff --git a/docset/winserver2012r2-ps/adcsdeployment/install-adcscertificationauthority.md b/docset/winserver2012r2-ps/adcsdeployment/install-adcscertificationauthority.md index 48d11d173e..daf4c211e7 100644 --- a/docset/winserver2012r2-ps/adcsdeployment/install-adcscertificationauthority.md +++ b/docset/winserver2012r2-ps/adcsdeployment/install-adcscertificationauthority.md @@ -2,7 +2,7 @@ external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: adcsdeployment ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/install-adcscertificationauthority?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/install-adcscertificationauthority?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-AdcsCertificationAuthority --- diff --git a/docset/winserver2012r2-ps/adcsdeployment/install-adcsenrollmentpolicywebservice.md b/docset/winserver2012r2-ps/adcsdeployment/install-adcsenrollmentpolicywebservice.md index 1300216a09..9827749952 100644 --- a/docset/winserver2012r2-ps/adcsdeployment/install-adcsenrollmentpolicywebservice.md +++ b/docset/winserver2012r2-ps/adcsdeployment/install-adcsenrollmentpolicywebservice.md @@ -2,7 +2,7 @@ external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: adcsdeployment ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/install-adcsenrollmentpolicywebservice?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/install-adcsenrollmentpolicywebservice?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-AdcsEnrollmentPolicyWebService --- diff --git a/docset/winserver2012r2-ps/adcsdeployment/install-adcsenrollmentwebservice.md b/docset/winserver2012r2-ps/adcsdeployment/install-adcsenrollmentwebservice.md index 069fd3ee2e..bd575108e7 100644 --- a/docset/winserver2012r2-ps/adcsdeployment/install-adcsenrollmentwebservice.md +++ b/docset/winserver2012r2-ps/adcsdeployment/install-adcsenrollmentwebservice.md @@ -2,7 +2,7 @@ external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: adcsdeployment ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/install-adcsenrollmentwebservice?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/install-adcsenrollmentwebservice?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-AdcsEnrollmentWebService --- diff --git a/docset/winserver2012r2-ps/adcsdeployment/install-adcsnetworkdeviceenrollmentservice.md b/docset/winserver2012r2-ps/adcsdeployment/install-adcsnetworkdeviceenrollmentservice.md index 65ecbec49f..7f20c5cf78 100644 --- a/docset/winserver2012r2-ps/adcsdeployment/install-adcsnetworkdeviceenrollmentservice.md +++ b/docset/winserver2012r2-ps/adcsdeployment/install-adcsnetworkdeviceenrollmentservice.md @@ -2,7 +2,7 @@ external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: adcsdeployment ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/install-adcsnetworkdeviceenrollmentservice?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/install-adcsnetworkdeviceenrollmentservice?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-AdcsNetworkDeviceEnrollmentService --- diff --git a/docset/winserver2012r2-ps/adcsdeployment/install-adcsonlineresponder.md b/docset/winserver2012r2-ps/adcsdeployment/install-adcsonlineresponder.md index 4a3fad7a92..79300f277f 100644 --- a/docset/winserver2012r2-ps/adcsdeployment/install-adcsonlineresponder.md +++ b/docset/winserver2012r2-ps/adcsdeployment/install-adcsonlineresponder.md @@ -2,7 +2,7 @@ external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: adcsdeployment ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/install-adcsonlineresponder?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/install-adcsonlineresponder?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-AdcsOnlineResponder --- diff --git a/docset/winserver2012r2-ps/adcsdeployment/install-adcswebenrollment.md b/docset/winserver2012r2-ps/adcsdeployment/install-adcswebenrollment.md index 25ee429212..c2d874d1e7 100644 --- a/docset/winserver2012r2-ps/adcsdeployment/install-adcswebenrollment.md +++ b/docset/winserver2012r2-ps/adcsdeployment/install-adcswebenrollment.md @@ -2,7 +2,7 @@ external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: adcsdeployment ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/install-adcswebenrollment?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/install-adcswebenrollment?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-AdcsWebEnrollment --- diff --git a/docset/winserver2012r2-ps/adcsdeployment/uninstall-adcscertificationauthority.md b/docset/winserver2012r2-ps/adcsdeployment/uninstall-adcscertificationauthority.md index 5c00fdd00b..79f0977ba0 100644 --- a/docset/winserver2012r2-ps/adcsdeployment/uninstall-adcscertificationauthority.md +++ b/docset/winserver2012r2-ps/adcsdeployment/uninstall-adcscertificationauthority.md @@ -2,7 +2,7 @@ external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: adcsdeployment ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/uninstall-adcscertificationauthority?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/uninstall-adcscertificationauthority?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-AdcsCertificationAuthority --- diff --git a/docset/winserver2012r2-ps/adcsdeployment/uninstall-adcsenrollmentpolicywebservice.md b/docset/winserver2012r2-ps/adcsdeployment/uninstall-adcsenrollmentpolicywebservice.md index 280a43742c..282ed97116 100644 --- a/docset/winserver2012r2-ps/adcsdeployment/uninstall-adcsenrollmentpolicywebservice.md +++ b/docset/winserver2012r2-ps/adcsdeployment/uninstall-adcsenrollmentpolicywebservice.md @@ -2,7 +2,7 @@ external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: adcsdeployment ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/uninstall-adcsenrollmentpolicywebservice?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/uninstall-adcsenrollmentpolicywebservice?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-AdcsEnrollmentPolicyWebService --- diff --git a/docset/winserver2012r2-ps/adcsdeployment/uninstall-adcsenrollmentwebservice.md b/docset/winserver2012r2-ps/adcsdeployment/uninstall-adcsenrollmentwebservice.md index f3e425673c..b4f4538dd9 100644 --- a/docset/winserver2012r2-ps/adcsdeployment/uninstall-adcsenrollmentwebservice.md +++ b/docset/winserver2012r2-ps/adcsdeployment/uninstall-adcsenrollmentwebservice.md @@ -2,7 +2,7 @@ external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: adcsdeployment ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/uninstall-adcsenrollmentwebservice?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/uninstall-adcsenrollmentwebservice?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-AdcsEnrollmentWebService --- diff --git a/docset/winserver2012r2-ps/adcsdeployment/uninstall-adcsnetworkdeviceenrollmentservice.md b/docset/winserver2012r2-ps/adcsdeployment/uninstall-adcsnetworkdeviceenrollmentservice.md index ae691bf240..daa1c7566e 100644 --- a/docset/winserver2012r2-ps/adcsdeployment/uninstall-adcsnetworkdeviceenrollmentservice.md +++ b/docset/winserver2012r2-ps/adcsdeployment/uninstall-adcsnetworkdeviceenrollmentservice.md @@ -2,7 +2,7 @@ external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: adcsdeployment ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/uninstall-adcsnetworkdeviceenrollmentservice?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/uninstall-adcsnetworkdeviceenrollmentservice?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-AdcsNetworkDeviceEnrollmentService --- diff --git a/docset/winserver2012r2-ps/adcsdeployment/uninstall-adcsonlineresponder.md b/docset/winserver2012r2-ps/adcsdeployment/uninstall-adcsonlineresponder.md index e937d70927..73b2f5791c 100644 --- a/docset/winserver2012r2-ps/adcsdeployment/uninstall-adcsonlineresponder.md +++ b/docset/winserver2012r2-ps/adcsdeployment/uninstall-adcsonlineresponder.md @@ -2,7 +2,7 @@ external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: adcsdeployment ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/uninstall-adcsonlineresponder?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/uninstall-adcsonlineresponder?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-AdcsOnlineResponder --- diff --git a/docset/winserver2012r2-ps/adcsdeployment/uninstall-adcswebenrollment.md b/docset/winserver2012r2-ps/adcsdeployment/uninstall-adcswebenrollment.md index 85f2cedb9c..0f254d116a 100644 --- a/docset/winserver2012r2-ps/adcsdeployment/uninstall-adcswebenrollment.md +++ b/docset/winserver2012r2-ps/adcsdeployment/uninstall-adcswebenrollment.md @@ -2,7 +2,7 @@ external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: adcsdeployment ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/uninstall-adcswebenrollment?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/uninstall-adcswebenrollment?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-AdcsWebEnrollment --- diff --git a/docset/winserver2012r2-ps/addsdeployment/Add-ADDSReadOnlyDomainControllerAccount.md b/docset/winserver2012r2-ps/addsdeployment/Add-ADDSReadOnlyDomainControllerAccount.md index 0a8787fa20..8d2bcc48bd 100644 --- a/docset/winserver2012r2-ps/addsdeployment/Add-ADDSReadOnlyDomainControllerAccount.md +++ b/docset/winserver2012r2-ps/addsdeployment/Add-ADDSReadOnlyDomainControllerAccount.md @@ -2,7 +2,7 @@ external help file: Microsoft.DirectoryServices.Deployment.dll-Help.xml Module Name: ADDSDeployment ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/addsdeployment/add-addsreadonlydomaincontrolleraccount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/addsdeployment/add-addsreadonlydomaincontrolleraccount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ADDSReadOnlyDomainControllerAccount --- diff --git a/docset/winserver2012r2-ps/addsdeployment/Install-ADDSDomain.md b/docset/winserver2012r2-ps/addsdeployment/Install-ADDSDomain.md index b203b9861d..9940bd6af0 100644 --- a/docset/winserver2012r2-ps/addsdeployment/Install-ADDSDomain.md +++ b/docset/winserver2012r2-ps/addsdeployment/Install-ADDSDomain.md @@ -2,7 +2,7 @@ external help file: Microsoft.DirectoryServices.Deployment.dll-Help.xml Module Name: ADDSDeployment ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/addsdeployment/install-addsdomain?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/addsdeployment/install-addsdomain?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-ADDSDomain --- diff --git a/docset/winserver2012r2-ps/addsdeployment/Install-ADDSDomainController.md b/docset/winserver2012r2-ps/addsdeployment/Install-ADDSDomainController.md index eb1550dd9b..8a83c83c48 100644 --- a/docset/winserver2012r2-ps/addsdeployment/Install-ADDSDomainController.md +++ b/docset/winserver2012r2-ps/addsdeployment/Install-ADDSDomainController.md @@ -2,7 +2,7 @@ external help file: Microsoft.DirectoryServices.Deployment.dll-Help.xml Module Name: ADDSDeployment ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/addsdeployment/install-addsdomaincontroller?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/addsdeployment/install-addsdomaincontroller?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-ADDSDomainController --- diff --git a/docset/winserver2012r2-ps/addsdeployment/Install-ADDSForest.md b/docset/winserver2012r2-ps/addsdeployment/Install-ADDSForest.md index b6d5d54438..0fcc452637 100644 --- a/docset/winserver2012r2-ps/addsdeployment/Install-ADDSForest.md +++ b/docset/winserver2012r2-ps/addsdeployment/Install-ADDSForest.md @@ -2,7 +2,7 @@ external help file: Microsoft.DirectoryServices.Deployment.dll-Help.xml Module Name: ADDSDeployment ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/addsdeployment/install-addsforest?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/addsdeployment/install-addsforest?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-ADDSForest --- diff --git a/docset/winserver2012r2-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md b/docset/winserver2012r2-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md index 07ada3c793..a266b9388f 100644 --- a/docset/winserver2012r2-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md +++ b/docset/winserver2012r2-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md @@ -2,7 +2,7 @@ external help file: Microsoft.DirectoryServices.Deployment.dll-Help.xml Module Name: ADDSDeployment ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/addsdeployment/test-addsdomaincontrollerinstallation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/addsdeployment/test-addsdomaincontrollerinstallation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-ADDSDomainControllerInstallation --- diff --git a/docset/winserver2012r2-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md b/docset/winserver2012r2-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md index fad3563211..531c1bc900 100644 --- a/docset/winserver2012r2-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md +++ b/docset/winserver2012r2-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md @@ -2,7 +2,7 @@ external help file: Microsoft.DirectoryServices.Deployment.dll-Help.xml Module Name: ADDSDeployment ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/addsdeployment/test-addsdomaincontrolleruninstallation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/addsdeployment/test-addsdomaincontrolleruninstallation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-ADDSDomainControllerUninstallation --- diff --git a/docset/winserver2012r2-ps/addsdeployment/Test-ADDSDomainInstallation.md b/docset/winserver2012r2-ps/addsdeployment/Test-ADDSDomainInstallation.md index 1a7f6d8fe2..da75b77b6f 100644 --- a/docset/winserver2012r2-ps/addsdeployment/Test-ADDSDomainInstallation.md +++ b/docset/winserver2012r2-ps/addsdeployment/Test-ADDSDomainInstallation.md @@ -2,7 +2,7 @@ external help file: Microsoft.DirectoryServices.Deployment.dll-Help.xml Module Name: ADDSDeployment ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/addsdeployment/test-addsdomaininstallation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/addsdeployment/test-addsdomaininstallation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-ADDSDomainInstallation --- diff --git a/docset/winserver2012r2-ps/addsdeployment/Test-ADDSForestInstallation.md b/docset/winserver2012r2-ps/addsdeployment/Test-ADDSForestInstallation.md index 03fe210a85..96a7bf9976 100644 --- a/docset/winserver2012r2-ps/addsdeployment/Test-ADDSForestInstallation.md +++ b/docset/winserver2012r2-ps/addsdeployment/Test-ADDSForestInstallation.md @@ -2,7 +2,7 @@ external help file: Microsoft.DirectoryServices.Deployment.dll-Help.xml Module Name: ADDSDeployment ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/addsdeployment/test-addsforestinstallation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/addsdeployment/test-addsforestinstallation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-ADDSForestInstallation --- diff --git a/docset/winserver2012r2-ps/addsdeployment/Test-ADDSReadOnlyDomainControllerAccountCreation.md b/docset/winserver2012r2-ps/addsdeployment/Test-ADDSReadOnlyDomainControllerAccountCreation.md index c59d47b1cf..f593c48863 100644 --- a/docset/winserver2012r2-ps/addsdeployment/Test-ADDSReadOnlyDomainControllerAccountCreation.md +++ b/docset/winserver2012r2-ps/addsdeployment/Test-ADDSReadOnlyDomainControllerAccountCreation.md @@ -2,7 +2,7 @@ external help file: Microsoft.DirectoryServices.Deployment.dll-Help.xml Module Name: ADDSDeployment ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/addsdeployment/test-addsreadonlydomaincontrolleraccountcreation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/addsdeployment/test-addsreadonlydomaincontrolleraccountcreation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-ADDSReadOnlyDomainControllerAccountCreation --- diff --git a/docset/winserver2012r2-ps/addsdeployment/Uninstall-ADDSDomainController.md b/docset/winserver2012r2-ps/addsdeployment/Uninstall-ADDSDomainController.md index 49f0805833..0d6ac0a488 100644 --- a/docset/winserver2012r2-ps/addsdeployment/Uninstall-ADDSDomainController.md +++ b/docset/winserver2012r2-ps/addsdeployment/Uninstall-ADDSDomainController.md @@ -2,7 +2,7 @@ external help file: Microsoft.DirectoryServices.Deployment.dll-Help.xml Module Name: ADDSDeployment ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/addsdeployment/uninstall-addsdomaincontroller?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/addsdeployment/uninstall-addsdomaincontroller?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-ADDSDomainController --- diff --git a/docset/winserver2012r2-ps/adfs/Add-AdfsAttributeStore.md b/docset/winserver2012r2-ps/adfs/Add-AdfsAttributeStore.md index d1b725e8e6..ffd90745ea 100644 --- a/docset/winserver2012r2-ps/adfs/Add-AdfsAttributeStore.md +++ b/docset/winserver2012r2-ps/adfs/Add-AdfsAttributeStore.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfsattributestore?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfsattributestore?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsAttributeStore --- diff --git a/docset/winserver2012r2-ps/adfs/Add-AdfsCertificate.md b/docset/winserver2012r2-ps/adfs/Add-AdfsCertificate.md index 9168aa4c24..fb23ce6998 100644 --- a/docset/winserver2012r2-ps/adfs/Add-AdfsCertificate.md +++ b/docset/winserver2012r2-ps/adfs/Add-AdfsCertificate.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfscertificate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfscertificate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsCertificate --- diff --git a/docset/winserver2012r2-ps/adfs/Add-AdfsClaimDescription.md b/docset/winserver2012r2-ps/adfs/Add-AdfsClaimDescription.md index dbefc25dac..17d422eb23 100644 --- a/docset/winserver2012r2-ps/adfs/Add-AdfsClaimDescription.md +++ b/docset/winserver2012r2-ps/adfs/Add-AdfsClaimDescription.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfsclaimdescription?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfsclaimdescription?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsClaimDescription --- diff --git a/docset/winserver2012r2-ps/adfs/Add-AdfsClaimsProviderTrust.md b/docset/winserver2012r2-ps/adfs/Add-AdfsClaimsProviderTrust.md index 33a0a2a986..36145e85c5 100644 --- a/docset/winserver2012r2-ps/adfs/Add-AdfsClaimsProviderTrust.md +++ b/docset/winserver2012r2-ps/adfs/Add-AdfsClaimsProviderTrust.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfsclaimsprovidertrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfsclaimsprovidertrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsClaimsProviderTrust --- diff --git a/docset/winserver2012r2-ps/adfs/Add-AdfsClient.md b/docset/winserver2012r2-ps/adfs/Add-AdfsClient.md index 99094e025c..0ca7511084 100644 --- a/docset/winserver2012r2-ps/adfs/Add-AdfsClient.md +++ b/docset/winserver2012r2-ps/adfs/Add-AdfsClient.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfsclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfsclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsClient --- diff --git a/docset/winserver2012r2-ps/adfs/Add-AdfsDeviceRegistrationUpnSuffix.md b/docset/winserver2012r2-ps/adfs/Add-AdfsDeviceRegistrationUpnSuffix.md index 244bbc0f24..21614235d3 100644 --- a/docset/winserver2012r2-ps/adfs/Add-AdfsDeviceRegistrationUpnSuffix.md +++ b/docset/winserver2012r2-ps/adfs/Add-AdfsDeviceRegistrationUpnSuffix.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfsdeviceregistrationupnsuffix?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfsdeviceregistrationupnsuffix?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsDeviceRegistrationUpnSuffix --- diff --git a/docset/winserver2012r2-ps/adfs/Add-AdfsFarmNode.md b/docset/winserver2012r2-ps/adfs/Add-AdfsFarmNode.md index cc987c6ad1..4b49de6903 100644 --- a/docset/winserver2012r2-ps/adfs/Add-AdfsFarmNode.md +++ b/docset/winserver2012r2-ps/adfs/Add-AdfsFarmNode.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Deployment.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfsfarmnode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfsfarmnode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsFarmNode --- diff --git a/docset/winserver2012r2-ps/adfs/Add-AdfsNonClaimsAwareRelyingPartyTrust.md b/docset/winserver2012r2-ps/adfs/Add-AdfsNonClaimsAwareRelyingPartyTrust.md index 141b162212..c03a0d976a 100644 --- a/docset/winserver2012r2-ps/adfs/Add-AdfsNonClaimsAwareRelyingPartyTrust.md +++ b/docset/winserver2012r2-ps/adfs/Add-AdfsNonClaimsAwareRelyingPartyTrust.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfsnonclaimsawarerelyingpartytrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfsnonclaimsawarerelyingpartytrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsNonClaimsAwareRelyingPartyTrust --- diff --git a/docset/winserver2012r2-ps/adfs/Add-AdfsRelyingPartyTrust.md b/docset/winserver2012r2-ps/adfs/Add-AdfsRelyingPartyTrust.md index d6214cdfd2..f34b91cf98 100644 --- a/docset/winserver2012r2-ps/adfs/Add-AdfsRelyingPartyTrust.md +++ b/docset/winserver2012r2-ps/adfs/Add-AdfsRelyingPartyTrust.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfsrelyingpartytrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfsrelyingpartytrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsRelyingPartyTrust --- diff --git a/docset/winserver2012r2-ps/adfs/Add-AdfsWebApplicationProxyRelyingPartyTrust.md b/docset/winserver2012r2-ps/adfs/Add-AdfsWebApplicationProxyRelyingPartyTrust.md index 0b30bf3711..487bfa1a7f 100644 --- a/docset/winserver2012r2-ps/adfs/Add-AdfsWebApplicationProxyRelyingPartyTrust.md +++ b/docset/winserver2012r2-ps/adfs/Add-AdfsWebApplicationProxyRelyingPartyTrust.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfswebapplicationproxyrelyingpartytrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfswebapplicationproxyrelyingpartytrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsWebApplicationProxyRelyingPartyTrust --- diff --git a/docset/winserver2012r2-ps/adfs/Disable-AdfsClaimsProviderTrust.md b/docset/winserver2012r2-ps/adfs/Disable-AdfsClaimsProviderTrust.md index 43bc6405c8..65bc92348c 100644 --- a/docset/winserver2012r2-ps/adfs/Disable-AdfsClaimsProviderTrust.md +++ b/docset/winserver2012r2-ps/adfs/Disable-AdfsClaimsProviderTrust.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/disable-adfsclaimsprovidertrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/disable-adfsclaimsprovidertrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-AdfsClaimsProviderTrust --- diff --git a/docset/winserver2012r2-ps/adfs/Disable-AdfsClient.md b/docset/winserver2012r2-ps/adfs/Disable-AdfsClient.md index ee246aac6f..f9bf19ecf5 100644 --- a/docset/winserver2012r2-ps/adfs/Disable-AdfsClient.md +++ b/docset/winserver2012r2-ps/adfs/Disable-AdfsClient.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/disable-adfsclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/disable-adfsclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-AdfsClient --- diff --git a/docset/winserver2012r2-ps/adfs/Disable-AdfsDeviceRegistration.md b/docset/winserver2012r2-ps/adfs/Disable-AdfsDeviceRegistration.md index dd6abf02db..973cb8846c 100644 --- a/docset/winserver2012r2-ps/adfs/Disable-AdfsDeviceRegistration.md +++ b/docset/winserver2012r2-ps/adfs/Disable-AdfsDeviceRegistration.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Deployment.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/disable-adfsdeviceregistration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/disable-adfsdeviceregistration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-AdfsDeviceRegistration --- diff --git a/docset/winserver2012r2-ps/adfs/Disable-AdfsEndpoint.md b/docset/winserver2012r2-ps/adfs/Disable-AdfsEndpoint.md index 9829cbdcaf..eb9f82c8a5 100644 --- a/docset/winserver2012r2-ps/adfs/Disable-AdfsEndpoint.md +++ b/docset/winserver2012r2-ps/adfs/Disable-AdfsEndpoint.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/disable-adfsendpoint?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/disable-adfsendpoint?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-AdfsEndpoint --- diff --git a/docset/winserver2012r2-ps/adfs/Disable-AdfsNonClaimsAwareRelyingPartyTrust.md b/docset/winserver2012r2-ps/adfs/Disable-AdfsNonClaimsAwareRelyingPartyTrust.md index fdea13aa7d..fa02c672d1 100644 --- a/docset/winserver2012r2-ps/adfs/Disable-AdfsNonClaimsAwareRelyingPartyTrust.md +++ b/docset/winserver2012r2-ps/adfs/Disable-AdfsNonClaimsAwareRelyingPartyTrust.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/disable-adfsnonclaimsawarerelyingpartytrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/disable-adfsnonclaimsawarerelyingpartytrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-AdfsNonClaimsAwareRelyingPartyTrust --- diff --git a/docset/winserver2012r2-ps/adfs/Disable-AdfsRelyingPartyTrust.md b/docset/winserver2012r2-ps/adfs/Disable-AdfsRelyingPartyTrust.md index 76ef24a88b..9de2128979 100644 --- a/docset/winserver2012r2-ps/adfs/Disable-AdfsRelyingPartyTrust.md +++ b/docset/winserver2012r2-ps/adfs/Disable-AdfsRelyingPartyTrust.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/disable-adfsrelyingpartytrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/disable-adfsrelyingpartytrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-AdfsRelyingPartyTrust --- diff --git a/docset/winserver2012r2-ps/adfs/Disable-AdfsWebApplicationProxyRelyingPartyTrust.md b/docset/winserver2012r2-ps/adfs/Disable-AdfsWebApplicationProxyRelyingPartyTrust.md index ee8843b8f4..a79202a6c2 100644 --- a/docset/winserver2012r2-ps/adfs/Disable-AdfsWebApplicationProxyRelyingPartyTrust.md +++ b/docset/winserver2012r2-ps/adfs/Disable-AdfsWebApplicationProxyRelyingPartyTrust.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/disable-adfswebapplicationproxyrelyingpartytrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/disable-adfswebapplicationproxyrelyingpartytrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-AdfsWebApplicationProxyRelyingPartyTrust --- diff --git a/docset/winserver2012r2-ps/adfs/Enable-AdfsClaimsProviderTrust.md b/docset/winserver2012r2-ps/adfs/Enable-AdfsClaimsProviderTrust.md index b076237e92..6d602c49a7 100644 --- a/docset/winserver2012r2-ps/adfs/Enable-AdfsClaimsProviderTrust.md +++ b/docset/winserver2012r2-ps/adfs/Enable-AdfsClaimsProviderTrust.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/enable-adfsclaimsprovidertrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/enable-adfsclaimsprovidertrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-AdfsClaimsProviderTrust --- diff --git a/docset/winserver2012r2-ps/adfs/Enable-AdfsClient.md b/docset/winserver2012r2-ps/adfs/Enable-AdfsClient.md index 8e28d9b8ad..c306e2bfa2 100644 --- a/docset/winserver2012r2-ps/adfs/Enable-AdfsClient.md +++ b/docset/winserver2012r2-ps/adfs/Enable-AdfsClient.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/enable-adfsclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/enable-adfsclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-AdfsClient --- diff --git a/docset/winserver2012r2-ps/adfs/Enable-AdfsDeviceRegistration.md b/docset/winserver2012r2-ps/adfs/Enable-AdfsDeviceRegistration.md index 7b8311e489..fbfadc5215 100644 --- a/docset/winserver2012r2-ps/adfs/Enable-AdfsDeviceRegistration.md +++ b/docset/winserver2012r2-ps/adfs/Enable-AdfsDeviceRegistration.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Deployment.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/enable-adfsdeviceregistration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/enable-adfsdeviceregistration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-AdfsDeviceRegistration --- diff --git a/docset/winserver2012r2-ps/adfs/Enable-AdfsEndpoint.md b/docset/winserver2012r2-ps/adfs/Enable-AdfsEndpoint.md index 20ccb6fea9..a4574ca0af 100644 --- a/docset/winserver2012r2-ps/adfs/Enable-AdfsEndpoint.md +++ b/docset/winserver2012r2-ps/adfs/Enable-AdfsEndpoint.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/enable-adfsendpoint?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/enable-adfsendpoint?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-AdfsEndpoint --- diff --git a/docset/winserver2012r2-ps/adfs/Enable-AdfsNonClaimsAwareRelyingPartyTrust.md b/docset/winserver2012r2-ps/adfs/Enable-AdfsNonClaimsAwareRelyingPartyTrust.md index fafcbe52fe..42d5b62da9 100644 --- a/docset/winserver2012r2-ps/adfs/Enable-AdfsNonClaimsAwareRelyingPartyTrust.md +++ b/docset/winserver2012r2-ps/adfs/Enable-AdfsNonClaimsAwareRelyingPartyTrust.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/enable-adfsnonclaimsawarerelyingpartytrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/enable-adfsnonclaimsawarerelyingpartytrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-AdfsNonClaimsAwareRelyingPartyTrust --- diff --git a/docset/winserver2012r2-ps/adfs/Enable-AdfsRelyingPartyTrust.md b/docset/winserver2012r2-ps/adfs/Enable-AdfsRelyingPartyTrust.md index f8567f8bfa..75f93137b3 100644 --- a/docset/winserver2012r2-ps/adfs/Enable-AdfsRelyingPartyTrust.md +++ b/docset/winserver2012r2-ps/adfs/Enable-AdfsRelyingPartyTrust.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/enable-adfsrelyingpartytrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/enable-adfsrelyingpartytrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-AdfsRelyingPartyTrust --- diff --git a/docset/winserver2012r2-ps/adfs/Enable-AdfsWebApplicationProxyRelyingPartyTrust.md b/docset/winserver2012r2-ps/adfs/Enable-AdfsWebApplicationProxyRelyingPartyTrust.md index a86a1750ad..a0caf244ae 100644 --- a/docset/winserver2012r2-ps/adfs/Enable-AdfsWebApplicationProxyRelyingPartyTrust.md +++ b/docset/winserver2012r2-ps/adfs/Enable-AdfsWebApplicationProxyRelyingPartyTrust.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/enable-adfswebapplicationproxyrelyingpartytrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/enable-adfswebapplicationproxyrelyingpartytrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-AdfsWebApplicationProxyRelyingPartyTrust --- diff --git a/docset/winserver2012r2-ps/adfs/Export-AdfsAuthenticationProviderConfigurationData.md b/docset/winserver2012r2-ps/adfs/Export-AdfsAuthenticationProviderConfigurationData.md index 204ee9b2fd..2426e66723 100644 --- a/docset/winserver2012r2-ps/adfs/Export-AdfsAuthenticationProviderConfigurationData.md +++ b/docset/winserver2012r2-ps/adfs/Export-AdfsAuthenticationProviderConfigurationData.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/export-adfsauthenticationproviderconfigurationdata?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/export-adfsauthenticationproviderconfigurationdata?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-AdfsAuthenticationProviderConfigurationData --- diff --git a/docset/winserver2012r2-ps/adfs/Export-AdfsDeploymentSQLScript.md b/docset/winserver2012r2-ps/adfs/Export-AdfsDeploymentSQLScript.md index bbddfd7249..e0da24d45b 100644 --- a/docset/winserver2012r2-ps/adfs/Export-AdfsDeploymentSQLScript.md +++ b/docset/winserver2012r2-ps/adfs/Export-AdfsDeploymentSQLScript.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Deployment.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/export-adfsdeploymentsqlscript?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/export-adfsdeploymentsqlscript?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-AdfsDeploymentSQLScript --- diff --git a/docset/winserver2012r2-ps/adfs/Export-AdfsWebContent.md b/docset/winserver2012r2-ps/adfs/Export-AdfsWebContent.md index 4ac1439e12..37b2138a6f 100644 --- a/docset/winserver2012r2-ps/adfs/Export-AdfsWebContent.md +++ b/docset/winserver2012r2-ps/adfs/Export-AdfsWebContent.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/export-adfswebcontent?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/export-adfswebcontent?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-AdfsWebContent --- diff --git a/docset/winserver2012r2-ps/adfs/Export-AdfsWebTheme.md b/docset/winserver2012r2-ps/adfs/Export-AdfsWebTheme.md index 6cbd3c9866..3c4bba99e7 100644 --- a/docset/winserver2012r2-ps/adfs/Export-AdfsWebTheme.md +++ b/docset/winserver2012r2-ps/adfs/Export-AdfsWebTheme.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/export-adfswebtheme?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/export-adfswebtheme?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-AdfsWebTheme --- diff --git a/docset/winserver2012r2-ps/adfs/Get-AdfsAdditionalAuthenticationRule.md b/docset/winserver2012r2-ps/adfs/Get-AdfsAdditionalAuthenticationRule.md index 5508e5ff5c..f3b6921a24 100644 --- a/docset/winserver2012r2-ps/adfs/Get-AdfsAdditionalAuthenticationRule.md +++ b/docset/winserver2012r2-ps/adfs/Get-AdfsAdditionalAuthenticationRule.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsadditionalauthenticationrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsadditionalauthenticationrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsAdditionalAuthenticationRule --- diff --git a/docset/winserver2012r2-ps/adfs/Get-AdfsAttributeStore.md b/docset/winserver2012r2-ps/adfs/Get-AdfsAttributeStore.md index c72d0d0f96..ae2b5cfd53 100644 --- a/docset/winserver2012r2-ps/adfs/Get-AdfsAttributeStore.md +++ b/docset/winserver2012r2-ps/adfs/Get-AdfsAttributeStore.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsattributestore?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsattributestore?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsAttributeStore --- diff --git a/docset/winserver2012r2-ps/adfs/Get-AdfsAuthenticationProvider.md b/docset/winserver2012r2-ps/adfs/Get-AdfsAuthenticationProvider.md index bd1c373cc6..0cf1483001 100644 --- a/docset/winserver2012r2-ps/adfs/Get-AdfsAuthenticationProvider.md +++ b/docset/winserver2012r2-ps/adfs/Get-AdfsAuthenticationProvider.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsauthenticationprovider?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsauthenticationprovider?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsAuthenticationProvider --- diff --git a/docset/winserver2012r2-ps/adfs/Get-AdfsAuthenticationProviderWebContent.md b/docset/winserver2012r2-ps/adfs/Get-AdfsAuthenticationProviderWebContent.md index 50408f266a..6f4da4fb87 100644 --- a/docset/winserver2012r2-ps/adfs/Get-AdfsAuthenticationProviderWebContent.md +++ b/docset/winserver2012r2-ps/adfs/Get-AdfsAuthenticationProviderWebContent.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsauthenticationproviderwebcontent?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsauthenticationproviderwebcontent?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsAuthenticationProviderWebContent --- diff --git a/docset/winserver2012r2-ps/adfs/Get-AdfsCertificate.md b/docset/winserver2012r2-ps/adfs/Get-AdfsCertificate.md index b32ffc0ccc..450d2da851 100644 --- a/docset/winserver2012r2-ps/adfs/Get-AdfsCertificate.md +++ b/docset/winserver2012r2-ps/adfs/Get-AdfsCertificate.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfscertificate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfscertificate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsCertificate --- diff --git a/docset/winserver2012r2-ps/adfs/Get-AdfsClaimDescription.md b/docset/winserver2012r2-ps/adfs/Get-AdfsClaimDescription.md index a4e5c7949e..b611e3c435 100644 --- a/docset/winserver2012r2-ps/adfs/Get-AdfsClaimDescription.md +++ b/docset/winserver2012r2-ps/adfs/Get-AdfsClaimDescription.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsclaimdescription?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsclaimdescription?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsClaimDescription --- diff --git a/docset/winserver2012r2-ps/adfs/Get-AdfsClaimsProviderTrust.md b/docset/winserver2012r2-ps/adfs/Get-AdfsClaimsProviderTrust.md index e230675491..642d355ccb 100644 --- a/docset/winserver2012r2-ps/adfs/Get-AdfsClaimsProviderTrust.md +++ b/docset/winserver2012r2-ps/adfs/Get-AdfsClaimsProviderTrust.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsclaimsprovidertrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsclaimsprovidertrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsClaimsProviderTrust --- diff --git a/docset/winserver2012r2-ps/adfs/Get-AdfsClient.md b/docset/winserver2012r2-ps/adfs/Get-AdfsClient.md index 08d4bc573e..d93e0bcb6f 100644 --- a/docset/winserver2012r2-ps/adfs/Get-AdfsClient.md +++ b/docset/winserver2012r2-ps/adfs/Get-AdfsClient.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsClient --- diff --git a/docset/winserver2012r2-ps/adfs/Get-AdfsDeviceRegistration.md b/docset/winserver2012r2-ps/adfs/Get-AdfsDeviceRegistration.md index 52f14ef9e4..8d98d9ac18 100644 --- a/docset/winserver2012r2-ps/adfs/Get-AdfsDeviceRegistration.md +++ b/docset/winserver2012r2-ps/adfs/Get-AdfsDeviceRegistration.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsdeviceregistration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsdeviceregistration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsDeviceRegistration --- diff --git a/docset/winserver2012r2-ps/adfs/Get-AdfsDeviceRegistrationUpnSuffix.md b/docset/winserver2012r2-ps/adfs/Get-AdfsDeviceRegistrationUpnSuffix.md index 17ddf30ec0..d0a522816c 100644 --- a/docset/winserver2012r2-ps/adfs/Get-AdfsDeviceRegistrationUpnSuffix.md +++ b/docset/winserver2012r2-ps/adfs/Get-AdfsDeviceRegistrationUpnSuffix.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsdeviceregistrationupnsuffix?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsdeviceregistrationupnsuffix?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsDeviceRegistrationUpnSuffix --- diff --git a/docset/winserver2012r2-ps/adfs/Get-AdfsEndpoint.md b/docset/winserver2012r2-ps/adfs/Get-AdfsEndpoint.md index 5bbe853171..14740fba3e 100644 --- a/docset/winserver2012r2-ps/adfs/Get-AdfsEndpoint.md +++ b/docset/winserver2012r2-ps/adfs/Get-AdfsEndpoint.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsendpoint?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsendpoint?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsEndpoint --- diff --git a/docset/winserver2012r2-ps/adfs/Get-AdfsGlobalAuthenticationPolicy.md b/docset/winserver2012r2-ps/adfs/Get-AdfsGlobalAuthenticationPolicy.md index 2dddb8d21d..0dec8a1414 100644 --- a/docset/winserver2012r2-ps/adfs/Get-AdfsGlobalAuthenticationPolicy.md +++ b/docset/winserver2012r2-ps/adfs/Get-AdfsGlobalAuthenticationPolicy.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsglobalauthenticationpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsglobalauthenticationpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsGlobalAuthenticationPolicy --- diff --git a/docset/winserver2012r2-ps/adfs/Get-AdfsGlobalWebContent.md b/docset/winserver2012r2-ps/adfs/Get-AdfsGlobalWebContent.md index 770197be83..8f3e5be08e 100644 --- a/docset/winserver2012r2-ps/adfs/Get-AdfsGlobalWebContent.md +++ b/docset/winserver2012r2-ps/adfs/Get-AdfsGlobalWebContent.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsglobalwebcontent?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsglobalwebcontent?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsGlobalWebContent --- diff --git a/docset/winserver2012r2-ps/adfs/Get-AdfsNonClaimsAwareRelyingPartyTrust.md b/docset/winserver2012r2-ps/adfs/Get-AdfsNonClaimsAwareRelyingPartyTrust.md index da8230387d..4d61ebbcec 100644 --- a/docset/winserver2012r2-ps/adfs/Get-AdfsNonClaimsAwareRelyingPartyTrust.md +++ b/docset/winserver2012r2-ps/adfs/Get-AdfsNonClaimsAwareRelyingPartyTrust.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsnonclaimsawarerelyingpartytrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsnonclaimsawarerelyingpartytrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsNonClaimsAwareRelyingPartyTrust --- diff --git a/docset/winserver2012r2-ps/adfs/Get-AdfsProperties.md b/docset/winserver2012r2-ps/adfs/Get-AdfsProperties.md index 06b261f1da..b0a9f7453a 100644 --- a/docset/winserver2012r2-ps/adfs/Get-AdfsProperties.md +++ b/docset/winserver2012r2-ps/adfs/Get-AdfsProperties.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsproperties?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsproperties?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsProperties --- diff --git a/docset/winserver2012r2-ps/adfs/Get-AdfsRegistrationHosts.md b/docset/winserver2012r2-ps/adfs/Get-AdfsRegistrationHosts.md index a4307e3cb1..d73b741a26 100644 --- a/docset/winserver2012r2-ps/adfs/Get-AdfsRegistrationHosts.md +++ b/docset/winserver2012r2-ps/adfs/Get-AdfsRegistrationHosts.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsregistrationhosts?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsregistrationhosts?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsRegistrationHosts --- diff --git a/docset/winserver2012r2-ps/adfs/Get-AdfsRelyingPartyTrust.md b/docset/winserver2012r2-ps/adfs/Get-AdfsRelyingPartyTrust.md index d7c3977441..664c25b091 100644 --- a/docset/winserver2012r2-ps/adfs/Get-AdfsRelyingPartyTrust.md +++ b/docset/winserver2012r2-ps/adfs/Get-AdfsRelyingPartyTrust.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsrelyingpartytrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsrelyingpartytrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsRelyingPartyTrust --- diff --git a/docset/winserver2012r2-ps/adfs/Get-AdfsRelyingPartyWebContent.md b/docset/winserver2012r2-ps/adfs/Get-AdfsRelyingPartyWebContent.md index 381c01a8e5..db63cb06fd 100644 --- a/docset/winserver2012r2-ps/adfs/Get-AdfsRelyingPartyWebContent.md +++ b/docset/winserver2012r2-ps/adfs/Get-AdfsRelyingPartyWebContent.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsrelyingpartywebcontent?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsrelyingpartywebcontent?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsRelyingPartyWebContent --- diff --git a/docset/winserver2012r2-ps/adfs/Get-AdfsSslCertificate.md b/docset/winserver2012r2-ps/adfs/Get-AdfsSslCertificate.md index e53183938d..34a888088c 100644 --- a/docset/winserver2012r2-ps/adfs/Get-AdfsSslCertificate.md +++ b/docset/winserver2012r2-ps/adfs/Get-AdfsSslCertificate.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfssslcertificate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfssslcertificate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsSslCertificate --- diff --git a/docset/winserver2012r2-ps/adfs/Get-AdfsSyncProperties.md b/docset/winserver2012r2-ps/adfs/Get-AdfsSyncProperties.md index 5ed6eff3b7..582393e17a 100644 --- a/docset/winserver2012r2-ps/adfs/Get-AdfsSyncProperties.md +++ b/docset/winserver2012r2-ps/adfs/Get-AdfsSyncProperties.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfssyncproperties?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfssyncproperties?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsSyncProperties --- diff --git a/docset/winserver2012r2-ps/adfs/Get-AdfsWebApplicationProxyRelyingPartyTrust.md b/docset/winserver2012r2-ps/adfs/Get-AdfsWebApplicationProxyRelyingPartyTrust.md index cc181db8c8..e6ed082cdb 100644 --- a/docset/winserver2012r2-ps/adfs/Get-AdfsWebApplicationProxyRelyingPartyTrust.md +++ b/docset/winserver2012r2-ps/adfs/Get-AdfsWebApplicationProxyRelyingPartyTrust.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfswebapplicationproxyrelyingpartytrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfswebapplicationproxyrelyingpartytrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsWebApplicationProxyRelyingPartyTrust --- diff --git a/docset/winserver2012r2-ps/adfs/Get-AdfsWebConfig.md b/docset/winserver2012r2-ps/adfs/Get-AdfsWebConfig.md index 07a21756cf..3d870a7234 100644 --- a/docset/winserver2012r2-ps/adfs/Get-AdfsWebConfig.md +++ b/docset/winserver2012r2-ps/adfs/Get-AdfsWebConfig.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfswebconfig?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfswebconfig?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsWebConfig --- diff --git a/docset/winserver2012r2-ps/adfs/Get-AdfsWebTheme.md b/docset/winserver2012r2-ps/adfs/Get-AdfsWebTheme.md index 3fd0988217..6488722c0f 100644 --- a/docset/winserver2012r2-ps/adfs/Get-AdfsWebTheme.md +++ b/docset/winserver2012r2-ps/adfs/Get-AdfsWebTheme.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfswebtheme?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfswebtheme?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsWebTheme --- diff --git a/docset/winserver2012r2-ps/adfs/Import-AdfsAuthenticationProviderConfigurationData.md b/docset/winserver2012r2-ps/adfs/Import-AdfsAuthenticationProviderConfigurationData.md index 67b738a7f0..325aead527 100644 --- a/docset/winserver2012r2-ps/adfs/Import-AdfsAuthenticationProviderConfigurationData.md +++ b/docset/winserver2012r2-ps/adfs/Import-AdfsAuthenticationProviderConfigurationData.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/import-adfsauthenticationproviderconfigurationdata?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/import-adfsauthenticationproviderconfigurationdata?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-AdfsAuthenticationProviderConfigurationData --- diff --git a/docset/winserver2012r2-ps/adfs/Import-AdfsWebContent.md b/docset/winserver2012r2-ps/adfs/Import-AdfsWebContent.md index c0b9d938ff..afb2260bef 100644 --- a/docset/winserver2012r2-ps/adfs/Import-AdfsWebContent.md +++ b/docset/winserver2012r2-ps/adfs/Import-AdfsWebContent.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/import-adfswebcontent?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/import-adfswebcontent?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-AdfsWebContent --- diff --git a/docset/winserver2012r2-ps/adfs/Initialize-ADDeviceRegistration.md b/docset/winserver2012r2-ps/adfs/Initialize-ADDeviceRegistration.md index 601c5260ab..bb73c6268d 100644 --- a/docset/winserver2012r2-ps/adfs/Initialize-ADDeviceRegistration.md +++ b/docset/winserver2012r2-ps/adfs/Initialize-ADDeviceRegistration.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Deployment.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/initialize-addeviceregistration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/initialize-addeviceregistration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Initialize-ADDeviceRegistration --- diff --git a/docset/winserver2012r2-ps/adfs/Install-AdfsFarm.md b/docset/winserver2012r2-ps/adfs/Install-AdfsFarm.md index 2530d8379e..2ea9ab5785 100644 --- a/docset/winserver2012r2-ps/adfs/Install-AdfsFarm.md +++ b/docset/winserver2012r2-ps/adfs/Install-AdfsFarm.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Deployment.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/install-adfsfarm?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/install-adfsfarm?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-AdfsFarm --- diff --git a/docset/winserver2012r2-ps/adfs/New-AdfsClaimRuleSet.md b/docset/winserver2012r2-ps/adfs/New-AdfsClaimRuleSet.md index 4508fdfc29..aa165fad34 100644 --- a/docset/winserver2012r2-ps/adfs/New-AdfsClaimRuleSet.md +++ b/docset/winserver2012r2-ps/adfs/New-AdfsClaimRuleSet.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/new-adfsclaimruleset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/new-adfsclaimruleset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-AdfsClaimRuleSet --- diff --git a/docset/winserver2012r2-ps/adfs/New-AdfsContactPerson.md b/docset/winserver2012r2-ps/adfs/New-AdfsContactPerson.md index 81f6865eb0..edf53eaa59 100644 --- a/docset/winserver2012r2-ps/adfs/New-AdfsContactPerson.md +++ b/docset/winserver2012r2-ps/adfs/New-AdfsContactPerson.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/new-adfscontactperson?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/new-adfscontactperson?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-AdfsContactPerson --- diff --git a/docset/winserver2012r2-ps/adfs/New-AdfsOrganization.md b/docset/winserver2012r2-ps/adfs/New-AdfsOrganization.md index b82cca07bb..4875a4587a 100644 --- a/docset/winserver2012r2-ps/adfs/New-AdfsOrganization.md +++ b/docset/winserver2012r2-ps/adfs/New-AdfsOrganization.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/new-adfsorganization?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/new-adfsorganization?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-AdfsOrganization --- diff --git a/docset/winserver2012r2-ps/adfs/New-AdfsSamlEndpoint.md b/docset/winserver2012r2-ps/adfs/New-AdfsSamlEndpoint.md index ece3361e43..a4f3bbec88 100644 --- a/docset/winserver2012r2-ps/adfs/New-AdfsSamlEndpoint.md +++ b/docset/winserver2012r2-ps/adfs/New-AdfsSamlEndpoint.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/new-adfssamlendpoint?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/new-adfssamlendpoint?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-AdfsSamlEndpoint --- diff --git a/docset/winserver2012r2-ps/adfs/New-AdfsWebTheme.md b/docset/winserver2012r2-ps/adfs/New-AdfsWebTheme.md index 72620402b9..803d401e0a 100644 --- a/docset/winserver2012r2-ps/adfs/New-AdfsWebTheme.md +++ b/docset/winserver2012r2-ps/adfs/New-AdfsWebTheme.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/new-adfswebtheme?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/new-adfswebtheme?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-AdfsWebTheme --- diff --git a/docset/winserver2012r2-ps/adfs/Publish-SslCertificate.md b/docset/winserver2012r2-ps/adfs/Publish-SslCertificate.md index 422cec54ee..ca5e61bbca 100644 --- a/docset/winserver2012r2-ps/adfs/Publish-SslCertificate.md +++ b/docset/winserver2012r2-ps/adfs/Publish-SslCertificate.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Deployment.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/publish-sslcertificate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/publish-sslcertificate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Publish-SslCertificate --- diff --git a/docset/winserver2012r2-ps/adfs/Register-AdfsAuthenticationProvider.md b/docset/winserver2012r2-ps/adfs/Register-AdfsAuthenticationProvider.md index d978c70c76..0195b9caf6 100644 --- a/docset/winserver2012r2-ps/adfs/Register-AdfsAuthenticationProvider.md +++ b/docset/winserver2012r2-ps/adfs/Register-AdfsAuthenticationProvider.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/register-adfsauthenticationprovider?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/register-adfsauthenticationprovider?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Register-AdfsAuthenticationProvider --- diff --git a/docset/winserver2012r2-ps/adfs/Remove-AdfsAttributeStore.md b/docset/winserver2012r2-ps/adfs/Remove-AdfsAttributeStore.md index b1fc59bee3..dca9802e1f 100644 --- a/docset/winserver2012r2-ps/adfs/Remove-AdfsAttributeStore.md +++ b/docset/winserver2012r2-ps/adfs/Remove-AdfsAttributeStore.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsattributestore?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsattributestore?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsAttributeStore --- diff --git a/docset/winserver2012r2-ps/adfs/Remove-AdfsAuthenticationProviderWebContent.md b/docset/winserver2012r2-ps/adfs/Remove-AdfsAuthenticationProviderWebContent.md index bd124ee790..2e933fb892 100644 --- a/docset/winserver2012r2-ps/adfs/Remove-AdfsAuthenticationProviderWebContent.md +++ b/docset/winserver2012r2-ps/adfs/Remove-AdfsAuthenticationProviderWebContent.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsauthenticationproviderwebcontent?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsauthenticationproviderwebcontent?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsAuthenticationProviderWebContent --- diff --git a/docset/winserver2012r2-ps/adfs/Remove-AdfsCertificate.md b/docset/winserver2012r2-ps/adfs/Remove-AdfsCertificate.md index b322d17920..2ef42c4d6f 100644 --- a/docset/winserver2012r2-ps/adfs/Remove-AdfsCertificate.md +++ b/docset/winserver2012r2-ps/adfs/Remove-AdfsCertificate.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfscertificate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfscertificate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsCertificate --- diff --git a/docset/winserver2012r2-ps/adfs/Remove-AdfsClaimDescription.md b/docset/winserver2012r2-ps/adfs/Remove-AdfsClaimDescription.md index ab4c1c5e3a..ada08684f2 100644 --- a/docset/winserver2012r2-ps/adfs/Remove-AdfsClaimDescription.md +++ b/docset/winserver2012r2-ps/adfs/Remove-AdfsClaimDescription.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsclaimdescription?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsclaimdescription?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsClaimDescription --- diff --git a/docset/winserver2012r2-ps/adfs/Remove-AdfsClaimsProviderTrust.md b/docset/winserver2012r2-ps/adfs/Remove-AdfsClaimsProviderTrust.md index b0d341f5a9..06c27c467b 100644 --- a/docset/winserver2012r2-ps/adfs/Remove-AdfsClaimsProviderTrust.md +++ b/docset/winserver2012r2-ps/adfs/Remove-AdfsClaimsProviderTrust.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsclaimsprovidertrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsclaimsprovidertrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsClaimsProviderTrust --- diff --git a/docset/winserver2012r2-ps/adfs/Remove-AdfsClient.md b/docset/winserver2012r2-ps/adfs/Remove-AdfsClient.md index 2801e6a2b9..454de1b9cd 100644 --- a/docset/winserver2012r2-ps/adfs/Remove-AdfsClient.md +++ b/docset/winserver2012r2-ps/adfs/Remove-AdfsClient.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsClient --- diff --git a/docset/winserver2012r2-ps/adfs/Remove-AdfsDeviceRegistrationUpnSuffix.md b/docset/winserver2012r2-ps/adfs/Remove-AdfsDeviceRegistrationUpnSuffix.md index 1d5c20c72c..72e866ae39 100644 --- a/docset/winserver2012r2-ps/adfs/Remove-AdfsDeviceRegistrationUpnSuffix.md +++ b/docset/winserver2012r2-ps/adfs/Remove-AdfsDeviceRegistrationUpnSuffix.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsdeviceregistrationupnsuffix?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsdeviceregistrationupnsuffix?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsDeviceRegistrationUpnSuffix --- diff --git a/docset/winserver2012r2-ps/adfs/Remove-AdfsFarmNode.md b/docset/winserver2012r2-ps/adfs/Remove-AdfsFarmNode.md index ae060991d2..4635aad82c 100644 --- a/docset/winserver2012r2-ps/adfs/Remove-AdfsFarmNode.md +++ b/docset/winserver2012r2-ps/adfs/Remove-AdfsFarmNode.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Deployment.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsfarmnode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsfarmnode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsFarmNode --- diff --git a/docset/winserver2012r2-ps/adfs/Remove-AdfsGlobalWebContent.md b/docset/winserver2012r2-ps/adfs/Remove-AdfsGlobalWebContent.md index bc67b41935..74376a5dc1 100644 --- a/docset/winserver2012r2-ps/adfs/Remove-AdfsGlobalWebContent.md +++ b/docset/winserver2012r2-ps/adfs/Remove-AdfsGlobalWebContent.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsglobalwebcontent?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsglobalwebcontent?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsGlobalWebContent --- diff --git a/docset/winserver2012r2-ps/adfs/Remove-AdfsNonClaimsAwareRelyingPartyTrust.md b/docset/winserver2012r2-ps/adfs/Remove-AdfsNonClaimsAwareRelyingPartyTrust.md index f766c79113..9bc467625d 100644 --- a/docset/winserver2012r2-ps/adfs/Remove-AdfsNonClaimsAwareRelyingPartyTrust.md +++ b/docset/winserver2012r2-ps/adfs/Remove-AdfsNonClaimsAwareRelyingPartyTrust.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsnonclaimsawarerelyingpartytrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsnonclaimsawarerelyingpartytrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsNonClaimsAwareRelyingPartyTrust --- diff --git a/docset/winserver2012r2-ps/adfs/Remove-AdfsRelyingPartyTrust.md b/docset/winserver2012r2-ps/adfs/Remove-AdfsRelyingPartyTrust.md index 11272ce137..152f23e10b 100644 --- a/docset/winserver2012r2-ps/adfs/Remove-AdfsRelyingPartyTrust.md +++ b/docset/winserver2012r2-ps/adfs/Remove-AdfsRelyingPartyTrust.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsrelyingpartytrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsrelyingpartytrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsRelyingPartyTrust --- diff --git a/docset/winserver2012r2-ps/adfs/Remove-AdfsRelyingPartyWebContent.md b/docset/winserver2012r2-ps/adfs/Remove-AdfsRelyingPartyWebContent.md index 860e269f76..791105332b 100644 --- a/docset/winserver2012r2-ps/adfs/Remove-AdfsRelyingPartyWebContent.md +++ b/docset/winserver2012r2-ps/adfs/Remove-AdfsRelyingPartyWebContent.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsrelyingpartywebcontent?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsrelyingpartywebcontent?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsRelyingPartyWebContent --- diff --git a/docset/winserver2012r2-ps/adfs/Remove-AdfsWebApplicationProxyRelyingPartyTrust.md b/docset/winserver2012r2-ps/adfs/Remove-AdfsWebApplicationProxyRelyingPartyTrust.md index 6ab53582b9..d429e1d5a0 100644 --- a/docset/winserver2012r2-ps/adfs/Remove-AdfsWebApplicationProxyRelyingPartyTrust.md +++ b/docset/winserver2012r2-ps/adfs/Remove-AdfsWebApplicationProxyRelyingPartyTrust.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfswebapplicationproxyrelyingpartytrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfswebapplicationproxyrelyingpartytrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsWebApplicationProxyRelyingPartyTrust --- diff --git a/docset/winserver2012r2-ps/adfs/Remove-AdfsWebTheme.md b/docset/winserver2012r2-ps/adfs/Remove-AdfsWebTheme.md index ca67d7885a..a92be55ced 100644 --- a/docset/winserver2012r2-ps/adfs/Remove-AdfsWebTheme.md +++ b/docset/winserver2012r2-ps/adfs/Remove-AdfsWebTheme.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfswebtheme?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfswebtheme?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsWebTheme --- diff --git a/docset/winserver2012r2-ps/adfs/Revoke-AdfsProxyTrust.md b/docset/winserver2012r2-ps/adfs/Revoke-AdfsProxyTrust.md index 9f77320153..8e6e4e2436 100644 --- a/docset/winserver2012r2-ps/adfs/Revoke-AdfsProxyTrust.md +++ b/docset/winserver2012r2-ps/adfs/Revoke-AdfsProxyTrust.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/revoke-adfsproxytrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/revoke-adfsproxytrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Revoke-AdfsProxyTrust --- diff --git a/docset/winserver2012r2-ps/adfs/Set-AdfsAdditionalAuthenticationRule.md b/docset/winserver2012r2-ps/adfs/Set-AdfsAdditionalAuthenticationRule.md index db741a9db4..863b3fe159 100644 --- a/docset/winserver2012r2-ps/adfs/Set-AdfsAdditionalAuthenticationRule.md +++ b/docset/winserver2012r2-ps/adfs/Set-AdfsAdditionalAuthenticationRule.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsadditionalauthenticationrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsadditionalauthenticationrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsAdditionalAuthenticationRule --- diff --git a/docset/winserver2012r2-ps/adfs/Set-AdfsAttributeStore.md b/docset/winserver2012r2-ps/adfs/Set-AdfsAttributeStore.md index bca6046612..038f95897d 100644 --- a/docset/winserver2012r2-ps/adfs/Set-AdfsAttributeStore.md +++ b/docset/winserver2012r2-ps/adfs/Set-AdfsAttributeStore.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsattributestore?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsattributestore?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsAttributeStore --- diff --git a/docset/winserver2012r2-ps/adfs/Set-AdfsAuthenticationProviderWebContent.md b/docset/winserver2012r2-ps/adfs/Set-AdfsAuthenticationProviderWebContent.md index b4693b06f0..900f4b1d3d 100644 --- a/docset/winserver2012r2-ps/adfs/Set-AdfsAuthenticationProviderWebContent.md +++ b/docset/winserver2012r2-ps/adfs/Set-AdfsAuthenticationProviderWebContent.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsauthenticationproviderwebcontent?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsauthenticationproviderwebcontent?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsAuthenticationProviderWebContent --- diff --git a/docset/winserver2012r2-ps/adfs/Set-AdfsCertSharingContainer.md b/docset/winserver2012r2-ps/adfs/Set-AdfsCertSharingContainer.md index 9bc7658558..8669138ddc 100644 --- a/docset/winserver2012r2-ps/adfs/Set-AdfsCertSharingContainer.md +++ b/docset/winserver2012r2-ps/adfs/Set-AdfsCertSharingContainer.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfscertsharingcontainer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfscertsharingcontainer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsCertSharingContainer --- diff --git a/docset/winserver2012r2-ps/adfs/Set-AdfsCertificate.md b/docset/winserver2012r2-ps/adfs/Set-AdfsCertificate.md index 1765dabdee..9032667bef 100644 --- a/docset/winserver2012r2-ps/adfs/Set-AdfsCertificate.md +++ b/docset/winserver2012r2-ps/adfs/Set-AdfsCertificate.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfscertificate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfscertificate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsCertificate --- diff --git a/docset/winserver2012r2-ps/adfs/Set-AdfsClaimDescription.md b/docset/winserver2012r2-ps/adfs/Set-AdfsClaimDescription.md index c7e207ee4a..fb74fd1b50 100644 --- a/docset/winserver2012r2-ps/adfs/Set-AdfsClaimDescription.md +++ b/docset/winserver2012r2-ps/adfs/Set-AdfsClaimDescription.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsclaimdescription?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsclaimdescription?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsClaimDescription --- diff --git a/docset/winserver2012r2-ps/adfs/Set-AdfsClaimsProviderTrust.md b/docset/winserver2012r2-ps/adfs/Set-AdfsClaimsProviderTrust.md index fc5d883867..ee7513b675 100644 --- a/docset/winserver2012r2-ps/adfs/Set-AdfsClaimsProviderTrust.md +++ b/docset/winserver2012r2-ps/adfs/Set-AdfsClaimsProviderTrust.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsclaimsprovidertrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsclaimsprovidertrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsClaimsProviderTrust --- diff --git a/docset/winserver2012r2-ps/adfs/Set-AdfsClient.md b/docset/winserver2012r2-ps/adfs/Set-AdfsClient.md index 2d2502d4f5..4d48c895c5 100644 --- a/docset/winserver2012r2-ps/adfs/Set-AdfsClient.md +++ b/docset/winserver2012r2-ps/adfs/Set-AdfsClient.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsClient --- diff --git a/docset/winserver2012r2-ps/adfs/Set-AdfsDeviceRegistration.md b/docset/winserver2012r2-ps/adfs/Set-AdfsDeviceRegistration.md index af9ab951a0..68aa3fc5f1 100644 --- a/docset/winserver2012r2-ps/adfs/Set-AdfsDeviceRegistration.md +++ b/docset/winserver2012r2-ps/adfs/Set-AdfsDeviceRegistration.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsdeviceregistration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsdeviceregistration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsDeviceRegistration --- diff --git a/docset/winserver2012r2-ps/adfs/Set-AdfsDeviceRegistrationUpnSuffix.md b/docset/winserver2012r2-ps/adfs/Set-AdfsDeviceRegistrationUpnSuffix.md index 4cb1dd20f8..c0d86365df 100644 --- a/docset/winserver2012r2-ps/adfs/Set-AdfsDeviceRegistrationUpnSuffix.md +++ b/docset/winserver2012r2-ps/adfs/Set-AdfsDeviceRegistrationUpnSuffix.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsdeviceregistrationupnsuffix?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsdeviceregistrationupnsuffix?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsDeviceRegistrationUpnSuffix --- diff --git a/docset/winserver2012r2-ps/adfs/Set-AdfsEndpoint.md b/docset/winserver2012r2-ps/adfs/Set-AdfsEndpoint.md index 032288b362..729ec25882 100644 --- a/docset/winserver2012r2-ps/adfs/Set-AdfsEndpoint.md +++ b/docset/winserver2012r2-ps/adfs/Set-AdfsEndpoint.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsendpoint?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsendpoint?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsEndpoint --- diff --git a/docset/winserver2012r2-ps/adfs/Set-AdfsGlobalAuthenticationPolicy.md b/docset/winserver2012r2-ps/adfs/Set-AdfsGlobalAuthenticationPolicy.md index bb3dc5f403..b446e8374b 100644 --- a/docset/winserver2012r2-ps/adfs/Set-AdfsGlobalAuthenticationPolicy.md +++ b/docset/winserver2012r2-ps/adfs/Set-AdfsGlobalAuthenticationPolicy.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsglobalauthenticationpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsglobalauthenticationpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsGlobalAuthenticationPolicy --- diff --git a/docset/winserver2012r2-ps/adfs/Set-AdfsGlobalWebContent.md b/docset/winserver2012r2-ps/adfs/Set-AdfsGlobalWebContent.md index ce2b1f00ce..e6113a2acc 100644 --- a/docset/winserver2012r2-ps/adfs/Set-AdfsGlobalWebContent.md +++ b/docset/winserver2012r2-ps/adfs/Set-AdfsGlobalWebContent.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsglobalwebcontent?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsglobalwebcontent?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsGlobalWebContent --- diff --git a/docset/winserver2012r2-ps/adfs/Set-AdfsNonClaimsAwareRelyingPartyTrust.md b/docset/winserver2012r2-ps/adfs/Set-AdfsNonClaimsAwareRelyingPartyTrust.md index 5afd7e71ad..93cce18e70 100644 --- a/docset/winserver2012r2-ps/adfs/Set-AdfsNonClaimsAwareRelyingPartyTrust.md +++ b/docset/winserver2012r2-ps/adfs/Set-AdfsNonClaimsAwareRelyingPartyTrust.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsnonclaimsawarerelyingpartytrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsnonclaimsawarerelyingpartytrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsNonClaimsAwareRelyingPartyTrust --- diff --git a/docset/winserver2012r2-ps/adfs/Set-AdfsProperties.md b/docset/winserver2012r2-ps/adfs/Set-AdfsProperties.md index f22c2ed5d2..1c46d14feb 100644 --- a/docset/winserver2012r2-ps/adfs/Set-AdfsProperties.md +++ b/docset/winserver2012r2-ps/adfs/Set-AdfsProperties.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsproperties?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsproperties?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsProperties --- diff --git a/docset/winserver2012r2-ps/adfs/Set-AdfsRegistrationHosts.md b/docset/winserver2012r2-ps/adfs/Set-AdfsRegistrationHosts.md index c239a02454..e41f7516b5 100644 --- a/docset/winserver2012r2-ps/adfs/Set-AdfsRegistrationHosts.md +++ b/docset/winserver2012r2-ps/adfs/Set-AdfsRegistrationHosts.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsregistrationhosts?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsregistrationhosts?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsRegistrationHosts --- diff --git a/docset/winserver2012r2-ps/adfs/Set-AdfsRelyingPartyTrust.md b/docset/winserver2012r2-ps/adfs/Set-AdfsRelyingPartyTrust.md index c677b47703..cab48c2e6c 100644 --- a/docset/winserver2012r2-ps/adfs/Set-AdfsRelyingPartyTrust.md +++ b/docset/winserver2012r2-ps/adfs/Set-AdfsRelyingPartyTrust.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsrelyingpartytrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsrelyingpartytrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsRelyingPartyTrust --- diff --git a/docset/winserver2012r2-ps/adfs/Set-AdfsRelyingPartyWebContent.md b/docset/winserver2012r2-ps/adfs/Set-AdfsRelyingPartyWebContent.md index bf1b0e3284..1538b23d3e 100644 --- a/docset/winserver2012r2-ps/adfs/Set-AdfsRelyingPartyWebContent.md +++ b/docset/winserver2012r2-ps/adfs/Set-AdfsRelyingPartyWebContent.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsrelyingpartywebcontent?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsrelyingpartywebcontent?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsRelyingPartyWebContent --- diff --git a/docset/winserver2012r2-ps/adfs/Set-AdfsSslCertificate.md b/docset/winserver2012r2-ps/adfs/Set-AdfsSslCertificate.md index b4d032582a..02e43ce1e9 100644 --- a/docset/winserver2012r2-ps/adfs/Set-AdfsSslCertificate.md +++ b/docset/winserver2012r2-ps/adfs/Set-AdfsSslCertificate.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfssslcertificate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfssslcertificate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsSslCertificate --- diff --git a/docset/winserver2012r2-ps/adfs/Set-AdfsSyncProperties.md b/docset/winserver2012r2-ps/adfs/Set-AdfsSyncProperties.md index 381b7ec7c4..ab93b04aff 100644 --- a/docset/winserver2012r2-ps/adfs/Set-AdfsSyncProperties.md +++ b/docset/winserver2012r2-ps/adfs/Set-AdfsSyncProperties.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfssyncproperties?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfssyncproperties?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsSyncProperties --- diff --git a/docset/winserver2012r2-ps/adfs/Set-AdfsWebApplicationProxyRelyingPartyTrust.md b/docset/winserver2012r2-ps/adfs/Set-AdfsWebApplicationProxyRelyingPartyTrust.md index 406b881698..3ef7dd9ae3 100644 --- a/docset/winserver2012r2-ps/adfs/Set-AdfsWebApplicationProxyRelyingPartyTrust.md +++ b/docset/winserver2012r2-ps/adfs/Set-AdfsWebApplicationProxyRelyingPartyTrust.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfswebapplicationproxyrelyingpartytrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfswebapplicationproxyrelyingpartytrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsWebApplicationProxyRelyingPartyTrust --- diff --git a/docset/winserver2012r2-ps/adfs/Set-AdfsWebConfig.md b/docset/winserver2012r2-ps/adfs/Set-AdfsWebConfig.md index 3fb0e39fdb..b0f1b4ff4c 100644 --- a/docset/winserver2012r2-ps/adfs/Set-AdfsWebConfig.md +++ b/docset/winserver2012r2-ps/adfs/Set-AdfsWebConfig.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfswebconfig?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfswebconfig?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsWebConfig --- diff --git a/docset/winserver2012r2-ps/adfs/Set-AdfsWebTheme.md b/docset/winserver2012r2-ps/adfs/Set-AdfsWebTheme.md index b90744eb0f..22734add24 100644 --- a/docset/winserver2012r2-ps/adfs/Set-AdfsWebTheme.md +++ b/docset/winserver2012r2-ps/adfs/Set-AdfsWebTheme.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfswebtheme?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfswebtheme?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsWebTheme --- diff --git a/docset/winserver2012r2-ps/adfs/Test-AdfsFarmInstallation.md b/docset/winserver2012r2-ps/adfs/Test-AdfsFarmInstallation.md index 0d2e44e82d..3b0e3cb0d8 100644 --- a/docset/winserver2012r2-ps/adfs/Test-AdfsFarmInstallation.md +++ b/docset/winserver2012r2-ps/adfs/Test-AdfsFarmInstallation.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Deployment.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/test-adfsfarminstallation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/test-adfsfarminstallation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-AdfsFarmInstallation --- diff --git a/docset/winserver2012r2-ps/adfs/Test-AdfsFarmJoin.md b/docset/winserver2012r2-ps/adfs/Test-AdfsFarmJoin.md index dce17758d8..5bfdc6102d 100644 --- a/docset/winserver2012r2-ps/adfs/Test-AdfsFarmJoin.md +++ b/docset/winserver2012r2-ps/adfs/Test-AdfsFarmJoin.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Deployment.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/test-adfsfarmjoin?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/test-adfsfarmjoin?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-AdfsFarmJoin --- diff --git a/docset/winserver2012r2-ps/adfs/Unregister-AdfsAuthenticationProvider.md b/docset/winserver2012r2-ps/adfs/Unregister-AdfsAuthenticationProvider.md index c083ee9209..1758b3a144 100644 --- a/docset/winserver2012r2-ps/adfs/Unregister-AdfsAuthenticationProvider.md +++ b/docset/winserver2012r2-ps/adfs/Unregister-AdfsAuthenticationProvider.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/unregister-adfsauthenticationprovider?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/unregister-adfsauthenticationprovider?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unregister-AdfsAuthenticationProvider --- diff --git a/docset/winserver2012r2-ps/adfs/Update-AdfsCertificate.md b/docset/winserver2012r2-ps/adfs/Update-AdfsCertificate.md index 62b437d11d..a9bf8d4bc6 100644 --- a/docset/winserver2012r2-ps/adfs/Update-AdfsCertificate.md +++ b/docset/winserver2012r2-ps/adfs/Update-AdfsCertificate.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/update-adfscertificate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/update-adfscertificate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-AdfsCertificate --- diff --git a/docset/winserver2012r2-ps/adfs/Update-AdfsClaimsProviderTrust.md b/docset/winserver2012r2-ps/adfs/Update-AdfsClaimsProviderTrust.md index b8c3294f4a..04010dbbe2 100644 --- a/docset/winserver2012r2-ps/adfs/Update-AdfsClaimsProviderTrust.md +++ b/docset/winserver2012r2-ps/adfs/Update-AdfsClaimsProviderTrust.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/update-adfsclaimsprovidertrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/update-adfsclaimsprovidertrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-AdfsClaimsProviderTrust --- diff --git a/docset/winserver2012r2-ps/adfs/Update-AdfsRelyingPartyTrust.md b/docset/winserver2012r2-ps/adfs/Update-AdfsRelyingPartyTrust.md index fc642c8a1e..47bd19c547 100644 --- a/docset/winserver2012r2-ps/adfs/Update-AdfsRelyingPartyTrust.md +++ b/docset/winserver2012r2-ps/adfs/Update-AdfsRelyingPartyTrust.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/update-adfsrelyingpartytrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/update-adfsrelyingpartytrust?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-AdfsRelyingPartyTrust --- diff --git a/docset/winserver2012r2-ps/adrms/Install-ADRMS.md b/docset/winserver2012r2-ps/adrms/Install-ADRMS.md index 20dd243dcc..24b99a90db 100644 --- a/docset/winserver2012r2-ps/adrms/Install-ADRMS.md +++ b/docset/winserver2012r2-ps/adrms/Install-ADRMS.md @@ -2,7 +2,7 @@ external help file: Microsoft.RightsManagementServices.Configuration.dll-Help.xml Module Name: ADRMS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adrms/install-adrms?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrms/install-adrms?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-ADRMS --- diff --git a/docset/winserver2012r2-ps/adrms/Uninstall-ADRMS.md b/docset/winserver2012r2-ps/adrms/Uninstall-ADRMS.md index e5de0bd92a..86a6090b8f 100644 --- a/docset/winserver2012r2-ps/adrms/Uninstall-ADRMS.md +++ b/docset/winserver2012r2-ps/adrms/Uninstall-ADRMS.md @@ -2,7 +2,7 @@ external help file: Microsoft.RightsManagementServices.Configuration.dll-Help.xml Module Name: ADRMS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adrms/uninstall-adrms?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrms/uninstall-adrms?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-ADRMS --- diff --git a/docset/winserver2012r2-ps/adrms/Update-ADRMS.md b/docset/winserver2012r2-ps/adrms/Update-ADRMS.md index c77ca4330a..a1a0103f7f 100644 --- a/docset/winserver2012r2-ps/adrms/Update-ADRMS.md +++ b/docset/winserver2012r2-ps/adrms/Update-ADRMS.md @@ -2,7 +2,7 @@ external help file: Microsoft.RightsManagementServices.Configuration.dll-Help.xml Module Name: ADRMS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adrms/update-adrms?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrms/update-adrms?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-ADRMS --- diff --git a/docset/winserver2012r2-ps/adrmsadmin/Export-RmsReportDefinitionLanguage.md b/docset/winserver2012r2-ps/adrmsadmin/Export-RmsReportDefinitionLanguage.md index d8e9d3c8ab..e3190ff19d 100644 --- a/docset/winserver2012r2-ps/adrmsadmin/Export-RmsReportDefinitionLanguage.md +++ b/docset/winserver2012r2-ps/adrmsadmin/Export-RmsReportDefinitionLanguage.md @@ -2,7 +2,7 @@ external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/export-rmsreportdefinitionlanguage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/export-rmsreportdefinitionlanguage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-RmsReportDefinitionLanguage --- diff --git a/docset/winserver2012r2-ps/adrmsadmin/Export-RmsTPD.md b/docset/winserver2012r2-ps/adrmsadmin/Export-RmsTPD.md index b6fd88b4c5..f5bb006be7 100644 --- a/docset/winserver2012r2-ps/adrmsadmin/Export-RmsTPD.md +++ b/docset/winserver2012r2-ps/adrmsadmin/Export-RmsTPD.md @@ -2,7 +2,7 @@ external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/export-rmstpd?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/export-rmstpd?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-RmsTPD --- diff --git a/docset/winserver2012r2-ps/adrmsadmin/Export-RmsTUD.md b/docset/winserver2012r2-ps/adrmsadmin/Export-RmsTUD.md index 7a19204b1b..7a4ab3a7f3 100644 --- a/docset/winserver2012r2-ps/adrmsadmin/Export-RmsTUD.md +++ b/docset/winserver2012r2-ps/adrmsadmin/Export-RmsTUD.md @@ -2,7 +2,7 @@ external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/export-rmstud?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/export-rmstud?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-RmsTUD --- diff --git a/docset/winserver2012r2-ps/adrmsadmin/Get-RmsCertChain.md b/docset/winserver2012r2-ps/adrmsadmin/Get-RmsCertChain.md index 91a96a2403..a76d126ca1 100644 --- a/docset/winserver2012r2-ps/adrmsadmin/Get-RmsCertChain.md +++ b/docset/winserver2012r2-ps/adrmsadmin/Get-RmsCertChain.md @@ -2,7 +2,7 @@ external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/get-rmscertchain?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/get-rmscertchain?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RmsCertChain --- diff --git a/docset/winserver2012r2-ps/adrmsadmin/Get-RmsCertInfo.md b/docset/winserver2012r2-ps/adrmsadmin/Get-RmsCertInfo.md index 84d2c00ff2..a4681f8c30 100644 --- a/docset/winserver2012r2-ps/adrmsadmin/Get-RmsCertInfo.md +++ b/docset/winserver2012r2-ps/adrmsadmin/Get-RmsCertInfo.md @@ -2,7 +2,7 @@ external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/get-rmscertinfo?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/get-rmscertinfo?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RmsCertInfo --- diff --git a/docset/winserver2012r2-ps/adrmsadmin/Get-RmsChildCert.md b/docset/winserver2012r2-ps/adrmsadmin/Get-RmsChildCert.md index 370f9fb7a3..f81056d478 100644 --- a/docset/winserver2012r2-ps/adrmsadmin/Get-RmsChildCert.md +++ b/docset/winserver2012r2-ps/adrmsadmin/Get-RmsChildCert.md @@ -2,7 +2,7 @@ external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/get-rmschildcert?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/get-rmschildcert?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RmsChildCert --- diff --git a/docset/winserver2012r2-ps/adrmsadmin/Get-RmsEncryptedIL.md b/docset/winserver2012r2-ps/adrmsadmin/Get-RmsEncryptedIL.md index 4ac06fbb4a..4a4342e77c 100644 --- a/docset/winserver2012r2-ps/adrmsadmin/Get-RmsEncryptedIL.md +++ b/docset/winserver2012r2-ps/adrmsadmin/Get-RmsEncryptedIL.md @@ -2,7 +2,7 @@ external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/get-rmsencryptedil?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/get-rmsencryptedil?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RmsEncryptedIL --- diff --git a/docset/winserver2012r2-ps/adrmsadmin/Get-RmsRequestInfo.md b/docset/winserver2012r2-ps/adrmsadmin/Get-RmsRequestInfo.md index 4b5a34585c..4db25be19b 100644 --- a/docset/winserver2012r2-ps/adrmsadmin/Get-RmsRequestInfo.md +++ b/docset/winserver2012r2-ps/adrmsadmin/Get-RmsRequestInfo.md @@ -2,7 +2,7 @@ external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/get-rmsrequestinfo?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/get-rmsrequestinfo?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RmsRequestInfo --- diff --git a/docset/winserver2012r2-ps/adrmsadmin/Get-RmsSvcAccount.md b/docset/winserver2012r2-ps/adrmsadmin/Get-RmsSvcAccount.md index 3c95bf984d..9a28312915 100644 --- a/docset/winserver2012r2-ps/adrmsadmin/Get-RmsSvcAccount.md +++ b/docset/winserver2012r2-ps/adrmsadmin/Get-RmsSvcAccount.md @@ -2,7 +2,7 @@ external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/get-rmssvcaccount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/get-rmssvcaccount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RmsSvcAccount --- diff --git a/docset/winserver2012r2-ps/adrmsadmin/Get-RmsSystemHealthReport.md b/docset/winserver2012r2-ps/adrmsadmin/Get-RmsSystemHealthReport.md index 40fd1da06c..4b36f15a2c 100644 --- a/docset/winserver2012r2-ps/adrmsadmin/Get-RmsSystemHealthReport.md +++ b/docset/winserver2012r2-ps/adrmsadmin/Get-RmsSystemHealthReport.md @@ -2,7 +2,7 @@ external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/get-rmssystemhealthreport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/get-rmssystemhealthreport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RmsSystemHealthReport --- diff --git a/docset/winserver2012r2-ps/adrmsadmin/Get-RmsUserRequestReport.md b/docset/winserver2012r2-ps/adrmsadmin/Get-RmsUserRequestReport.md index 88ee5209c4..141d08285f 100644 --- a/docset/winserver2012r2-ps/adrmsadmin/Get-RmsUserRequestReport.md +++ b/docset/winserver2012r2-ps/adrmsadmin/Get-RmsUserRequestReport.md @@ -2,7 +2,7 @@ external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/get-rmsuserrequestreport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/get-rmsuserrequestreport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RmsUserRequestReport --- diff --git a/docset/winserver2012r2-ps/adrmsadmin/Import-RmsTPD.md b/docset/winserver2012r2-ps/adrmsadmin/Import-RmsTPD.md index 9cd9de34cc..1b1d31266c 100644 --- a/docset/winserver2012r2-ps/adrmsadmin/Import-RmsTPD.md +++ b/docset/winserver2012r2-ps/adrmsadmin/Import-RmsTPD.md @@ -2,7 +2,7 @@ external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/import-rmstpd?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/import-rmstpd?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-RmsTPD --- diff --git a/docset/winserver2012r2-ps/adrmsadmin/Import-RmsTUD.md b/docset/winserver2012r2-ps/adrmsadmin/Import-RmsTUD.md index 4a807b2548..11398807d7 100644 --- a/docset/winserver2012r2-ps/adrmsadmin/Import-RmsTUD.md +++ b/docset/winserver2012r2-ps/adrmsadmin/Import-RmsTUD.md @@ -2,7 +2,7 @@ external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/import-rmstud?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/import-rmstud?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-RmsTUD --- diff --git a/docset/winserver2012r2-ps/adrmsadmin/Initialize-RmsCryptoMode2.md b/docset/winserver2012r2-ps/adrmsadmin/Initialize-RmsCryptoMode2.md index 186312eec2..9993913bc6 100644 --- a/docset/winserver2012r2-ps/adrmsadmin/Initialize-RmsCryptoMode2.md +++ b/docset/winserver2012r2-ps/adrmsadmin/Initialize-RmsCryptoMode2.md @@ -2,7 +2,7 @@ external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/initialize-rmscryptomode2?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/initialize-rmscryptomode2?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Initialize-RmsCryptoMode2 --- diff --git a/docset/winserver2012r2-ps/adrmsadmin/Install-RmsMfgEnrollment.md b/docset/winserver2012r2-ps/adrmsadmin/Install-RmsMfgEnrollment.md index 84e08c9624..b033b995d9 100644 --- a/docset/winserver2012r2-ps/adrmsadmin/Install-RmsMfgEnrollment.md +++ b/docset/winserver2012r2-ps/adrmsadmin/Install-RmsMfgEnrollment.md @@ -2,7 +2,7 @@ external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/install-rmsmfgenrollment?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/install-rmsmfgenrollment?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-RmsMfgEnrollment --- diff --git a/docset/winserver2012r2-ps/adrmsadmin/Install-RmsMfgSupport.md b/docset/winserver2012r2-ps/adrmsadmin/Install-RmsMfgSupport.md index 4d3c37a46c..858ac50fad 100644 --- a/docset/winserver2012r2-ps/adrmsadmin/Install-RmsMfgSupport.md +++ b/docset/winserver2012r2-ps/adrmsadmin/Install-RmsMfgSupport.md @@ -2,7 +2,7 @@ external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/install-rmsmfgsupport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/install-rmsmfgsupport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-RmsMfgSupport --- diff --git a/docset/winserver2012r2-ps/adrmsadmin/Set-RmsSvcAccount.md b/docset/winserver2012r2-ps/adrmsadmin/Set-RmsSvcAccount.md index d406b068b2..d8d50fb8e3 100644 --- a/docset/winserver2012r2-ps/adrmsadmin/Set-RmsSvcAccount.md +++ b/docset/winserver2012r2-ps/adrmsadmin/Set-RmsSvcAccount.md @@ -2,7 +2,7 @@ external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/set-rmssvcaccount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/set-rmssvcaccount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RmsSvcAccount --- diff --git a/docset/winserver2012r2-ps/adrmsadmin/Uninstall-RmsMfgEnrollment.md b/docset/winserver2012r2-ps/adrmsadmin/Uninstall-RmsMfgEnrollment.md index 7d108d7acc..e7b255636b 100644 --- a/docset/winserver2012r2-ps/adrmsadmin/Uninstall-RmsMfgEnrollment.md +++ b/docset/winserver2012r2-ps/adrmsadmin/Uninstall-RmsMfgEnrollment.md @@ -2,7 +2,7 @@ external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/uninstall-rmsmfgenrollment?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/uninstall-rmsmfgenrollment?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-RmsMfgEnrollment --- diff --git a/docset/winserver2012r2-ps/adrmsadmin/Uninstall-RmsMfgSupport.md b/docset/winserver2012r2-ps/adrmsadmin/Uninstall-RmsMfgSupport.md index d1d092f885..793ab759b0 100644 --- a/docset/winserver2012r2-ps/adrmsadmin/Uninstall-RmsMfgSupport.md +++ b/docset/winserver2012r2-ps/adrmsadmin/Uninstall-RmsMfgSupport.md @@ -2,7 +2,7 @@ external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/uninstall-rmsmfgsupport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/uninstall-rmsmfgsupport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-RmsMfgSupport --- diff --git a/docset/winserver2012r2-ps/adrmsadmin/Update-RmsCluster.md b/docset/winserver2012r2-ps/adrmsadmin/Update-RmsCluster.md index 1deeb296d3..63b4454b38 100644 --- a/docset/winserver2012r2-ps/adrmsadmin/Update-RmsCluster.md +++ b/docset/winserver2012r2-ps/adrmsadmin/Update-RmsCluster.md @@ -2,7 +2,7 @@ external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/update-rmscluster?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/update-rmscluster?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-RmsCluster --- diff --git a/docset/winserver2012r2-ps/adrmsadmin/Update-RmsMfgEnrollment.md b/docset/winserver2012r2-ps/adrmsadmin/Update-RmsMfgEnrollment.md index 8b425f9d8b..a79f6692b9 100644 --- a/docset/winserver2012r2-ps/adrmsadmin/Update-RmsMfgEnrollment.md +++ b/docset/winserver2012r2-ps/adrmsadmin/Update-RmsMfgEnrollment.md @@ -2,7 +2,7 @@ external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/update-rmsmfgenrollment?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/update-rmsmfgenrollment?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-RmsMfgEnrollment --- diff --git a/docset/winserver2012r2-ps/appbackgroundtask/Disable-AppBackgroundTaskDiagnosticLog.md b/docset/winserver2012r2-ps/appbackgroundtask/Disable-AppBackgroundTaskDiagnosticLog.md index 7da56db482..333568df39 100644 --- a/docset/winserver2012r2-ps/appbackgroundtask/Disable-AppBackgroundTaskDiagnosticLog.md +++ b/docset/winserver2012r2-ps/appbackgroundtask/Disable-AppBackgroundTaskDiagnosticLog.md @@ -2,7 +2,7 @@ external help file: microsoft.windows.appbackgroundtask.commands.dll-Help.xml Module Name: AppBackgroundTask ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/appbackgroundtask/disable-appbackgroundtaskdiagnosticlog?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appbackgroundtask/disable-appbackgroundtaskdiagnosticlog?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-AppBackgroundTaskDiagnosticLog --- diff --git a/docset/winserver2012r2-ps/appbackgroundtask/Enable-AppBackgroundTaskDiagnosticLog.md b/docset/winserver2012r2-ps/appbackgroundtask/Enable-AppBackgroundTaskDiagnosticLog.md index 565f182a18..3dacd0f4b0 100644 --- a/docset/winserver2012r2-ps/appbackgroundtask/Enable-AppBackgroundTaskDiagnosticLog.md +++ b/docset/winserver2012r2-ps/appbackgroundtask/Enable-AppBackgroundTaskDiagnosticLog.md @@ -2,7 +2,7 @@ external help file: microsoft.windows.appbackgroundtask.commands.dll-Help.xml Module Name: AppBackgroundTask ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/appbackgroundtask/enable-appbackgroundtaskdiagnosticlog?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appbackgroundtask/enable-appbackgroundtaskdiagnosticlog?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-AppBackgroundTaskDiagnosticLog --- diff --git a/docset/winserver2012r2-ps/appbackgroundtask/Get-AppBackgroundTask.md b/docset/winserver2012r2-ps/appbackgroundtask/Get-AppBackgroundTask.md index 23d8252087..2cc6df996d 100644 --- a/docset/winserver2012r2-ps/appbackgroundtask/Get-AppBackgroundTask.md +++ b/docset/winserver2012r2-ps/appbackgroundtask/Get-AppBackgroundTask.md @@ -2,7 +2,7 @@ external help file: PS_BackgroundTask.cdxml-help.xml Module Name: AppBackgroundTask ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/appbackgroundtask/get-appbackgroundtask?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appbackgroundtask/get-appbackgroundtask?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppBackgroundTask --- diff --git a/docset/winserver2012r2-ps/appbackgroundtask/Set-AppBackgroundTaskResourcePolicy.md b/docset/winserver2012r2-ps/appbackgroundtask/Set-AppBackgroundTaskResourcePolicy.md index da5c80b1fd..8d71cbfb90 100644 --- a/docset/winserver2012r2-ps/appbackgroundtask/Set-AppBackgroundTaskResourcePolicy.md +++ b/docset/winserver2012r2-ps/appbackgroundtask/Set-AppBackgroundTaskResourcePolicy.md @@ -2,7 +2,7 @@ external help file: microsoft.windows.appbackgroundtask.commands.dll-Help.xml Module Name: AppBackgroundTask ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/appbackgroundtask/set-appbackgroundtaskresourcepolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appbackgroundtask/set-appbackgroundtaskresourcepolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AppBackgroundTaskResourcePolicy --- diff --git a/docset/winserver2012r2-ps/appbackgroundtask/Start-AppBackgroundTask.md b/docset/winserver2012r2-ps/appbackgroundtask/Start-AppBackgroundTask.md index 35bfc93720..7405a8d801 100644 --- a/docset/winserver2012r2-ps/appbackgroundtask/Start-AppBackgroundTask.md +++ b/docset/winserver2012r2-ps/appbackgroundtask/Start-AppBackgroundTask.md @@ -2,7 +2,7 @@ external help file: PS_BackgroundTask.cdxml-help.xml Module Name: AppBackgroundTask ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/appbackgroundtask/start-appbackgroundtask?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appbackgroundtask/start-appbackgroundtask?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-AppBackgroundTask --- diff --git a/docset/winserver2012r2-ps/appbackgroundtask/Unregister-AppBackgroundTask.md b/docset/winserver2012r2-ps/appbackgroundtask/Unregister-AppBackgroundTask.md index 401f9afd7d..0d0b1d7ff9 100644 --- a/docset/winserver2012r2-ps/appbackgroundtask/Unregister-AppBackgroundTask.md +++ b/docset/winserver2012r2-ps/appbackgroundtask/Unregister-AppBackgroundTask.md @@ -2,7 +2,7 @@ external help file: PS_BackgroundTask.cdxml-help.xml Module Name: AppBackgroundTask ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/appbackgroundtask/unregister-appbackgroundtask?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appbackgroundtask/unregister-appbackgroundtask?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unregister-AppBackgroundTask --- diff --git a/docset/winserver2012r2-ps/applocker/Get-AppLockerFileInformation.md b/docset/winserver2012r2-ps/applocker/Get-AppLockerFileInformation.md index 9980c2efbe..ae6e9ef241 100644 --- a/docset/winserver2012r2-ps/applocker/Get-AppLockerFileInformation.md +++ b/docset/winserver2012r2-ps/applocker/Get-AppLockerFileInformation.md @@ -2,7 +2,7 @@ external help file: Microsoft.Security.ApplicationId.PolicyManagement.Cmdlets.dll-Help.xml Module Name: AppLocker ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/applocker/get-applockerfileinformation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/applocker/get-applockerfileinformation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppLockerFileInformation --- diff --git a/docset/winserver2012r2-ps/applocker/Get-AppLockerPolicy.md b/docset/winserver2012r2-ps/applocker/Get-AppLockerPolicy.md index e3758e0e04..b0f97e63b2 100644 --- a/docset/winserver2012r2-ps/applocker/Get-AppLockerPolicy.md +++ b/docset/winserver2012r2-ps/applocker/Get-AppLockerPolicy.md @@ -2,7 +2,7 @@ external help file: Microsoft.Security.ApplicationId.PolicyManagement.Cmdlets.dll-Help.xml Module Name: AppLocker ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/applocker/get-applockerpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/applocker/get-applockerpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppLockerPolicy --- diff --git a/docset/winserver2012r2-ps/applocker/New-AppLockerPolicy.md b/docset/winserver2012r2-ps/applocker/New-AppLockerPolicy.md index 95652f61ad..0a3e400612 100644 --- a/docset/winserver2012r2-ps/applocker/New-AppLockerPolicy.md +++ b/docset/winserver2012r2-ps/applocker/New-AppLockerPolicy.md @@ -2,7 +2,7 @@ external help file: Microsoft.Security.ApplicationId.PolicyManagement.Cmdlets.dll-Help.xml Module Name: AppLocker ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/applocker/new-applockerpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/applocker/new-applockerpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-AppLockerPolicy --- diff --git a/docset/winserver2012r2-ps/applocker/Set-AppLockerPolicy.md b/docset/winserver2012r2-ps/applocker/Set-AppLockerPolicy.md index c605d86964..da513335e8 100644 --- a/docset/winserver2012r2-ps/applocker/Set-AppLockerPolicy.md +++ b/docset/winserver2012r2-ps/applocker/Set-AppLockerPolicy.md @@ -2,7 +2,7 @@ external help file: Microsoft.Security.ApplicationId.PolicyManagement.Cmdlets.dll-Help.xml Module Name: AppLocker ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/applocker/set-applockerpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/applocker/set-applockerpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AppLockerPolicy --- diff --git a/docset/winserver2012r2-ps/applocker/Test-AppLockerPolicy.md b/docset/winserver2012r2-ps/applocker/Test-AppLockerPolicy.md index 7cf1e75bbb..06268a7f16 100644 --- a/docset/winserver2012r2-ps/applocker/Test-AppLockerPolicy.md +++ b/docset/winserver2012r2-ps/applocker/Test-AppLockerPolicy.md @@ -2,7 +2,7 @@ external help file: Microsoft.Security.ApplicationId.PolicyManagement.Cmdlets.dll-Help.xml Module Name: AppLocker ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/applocker/test-applockerpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/applocker/test-applockerpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-AppLockerPolicy --- diff --git a/docset/winserver2012r2-ps/appx/Add-AppxPackage.md b/docset/winserver2012r2-ps/appx/Add-AppxPackage.md index ead6b8815d..5140e76715 100644 --- a/docset/winserver2012r2-ps/appx/Add-AppxPackage.md +++ b/docset/winserver2012r2-ps/appx/Add-AppxPackage.md @@ -2,7 +2,7 @@ external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: AppX ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/appx/add-appxpackage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/add-appxpackage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AppxPackage --- diff --git a/docset/winserver2012r2-ps/appx/Get-AppxLastError.md b/docset/winserver2012r2-ps/appx/Get-AppxLastError.md index e0f6585705..6ff5c9e00f 100644 --- a/docset/winserver2012r2-ps/appx/Get-AppxLastError.md +++ b/docset/winserver2012r2-ps/appx/Get-AppxLastError.md @@ -2,7 +2,7 @@ external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-help.xml Module Name: AppX ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/appx/get-appxlasterror?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/get-appxlasterror?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppxLastError --- diff --git a/docset/winserver2012r2-ps/appx/Get-AppxLog.md b/docset/winserver2012r2-ps/appx/Get-AppxLog.md index dd7b602202..2ee1fb24fc 100644 --- a/docset/winserver2012r2-ps/appx/Get-AppxLog.md +++ b/docset/winserver2012r2-ps/appx/Get-AppxLog.md @@ -2,7 +2,7 @@ external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-help.xml Module Name: AppX ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/appx/get-appxlog?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/get-appxlog?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppxLog --- diff --git a/docset/winserver2012r2-ps/appx/Get-AppxPackage.md b/docset/winserver2012r2-ps/appx/Get-AppxPackage.md index ae61a05932..d65a83f1ab 100644 --- a/docset/winserver2012r2-ps/appx/Get-AppxPackage.md +++ b/docset/winserver2012r2-ps/appx/Get-AppxPackage.md @@ -2,7 +2,7 @@ external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: AppX ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/appx/get-appxpackage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/get-appxpackage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppxPackage --- diff --git a/docset/winserver2012r2-ps/appx/Get-AppxPackageManifest.md b/docset/winserver2012r2-ps/appx/Get-AppxPackageManifest.md index 57b5986312..5e4d21e0a6 100644 --- a/docset/winserver2012r2-ps/appx/Get-AppxPackageManifest.md +++ b/docset/winserver2012r2-ps/appx/Get-AppxPackageManifest.md @@ -2,7 +2,7 @@ external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: AppX ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/appx/get-appxpackagemanifest?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/get-appxpackagemanifest?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppxPackageManifest --- diff --git a/docset/winserver2012r2-ps/appx/Remove-AppxPackage.md b/docset/winserver2012r2-ps/appx/Remove-AppxPackage.md index 2ad5b55498..078901bf57 100644 --- a/docset/winserver2012r2-ps/appx/Remove-AppxPackage.md +++ b/docset/winserver2012r2-ps/appx/Remove-AppxPackage.md @@ -2,7 +2,7 @@ external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: AppX ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/appx/remove-appxpackage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/remove-appxpackage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AppxPackage --- diff --git a/docset/winserver2012r2-ps/assignedaccess/Clear-AssignedAccess.md b/docset/winserver2012r2-ps/assignedaccess/Clear-AssignedAccess.md index c60b06e118..09084bdf70 100644 --- a/docset/winserver2012r2-ps/assignedaccess/Clear-AssignedAccess.md +++ b/docset/winserver2012r2-ps/assignedaccess/Clear-AssignedAccess.md @@ -2,7 +2,7 @@ external help file: AssignedAccess-help.xml Module Name: AssignedAccess ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/assignedaccess/clear-assignedaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/assignedaccess/clear-assignedaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-AssignedAccess --- diff --git a/docset/winserver2012r2-ps/assignedaccess/Get-AssignedAccess.md b/docset/winserver2012r2-ps/assignedaccess/Get-AssignedAccess.md index 038cdaaf5b..83dd6b320a 100644 --- a/docset/winserver2012r2-ps/assignedaccess/Get-AssignedAccess.md +++ b/docset/winserver2012r2-ps/assignedaccess/Get-AssignedAccess.md @@ -2,7 +2,7 @@ external help file: AssignedAccess-help.xml Module Name: AssignedAccess ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/assignedaccess/get-assignedaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/assignedaccess/get-assignedaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AssignedAccess --- diff --git a/docset/winserver2012r2-ps/assignedaccess/Set-AssignedAccess.md b/docset/winserver2012r2-ps/assignedaccess/Set-AssignedAccess.md index 278b2840ed..f45ac4d734 100644 --- a/docset/winserver2012r2-ps/assignedaccess/Set-AssignedAccess.md +++ b/docset/winserver2012r2-ps/assignedaccess/Set-AssignedAccess.md @@ -2,7 +2,7 @@ external help file: AssignedAccess-help.xml Module Name: AssignedAccess ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/assignedaccess/set-assignedaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/assignedaccess/set-assignedaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AssignedAccess --- diff --git a/docset/winserver2012r2-ps/bestpractices/Get-BpaModel.md b/docset/winserver2012r2-ps/bestpractices/Get-BpaModel.md index 7eb56594e8..bce1373942 100644 --- a/docset/winserver2012r2-ps/bestpractices/Get-BpaModel.md +++ b/docset/winserver2012r2-ps/bestpractices/Get-BpaModel.md @@ -2,7 +2,7 @@ external help file: Microsoft.BestPractices.Cmdlets.dll-Help.xml Module Name: BestPractices ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/bestpractices/get-bpamodel?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bestpractices/get-bpamodel?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BpaModel --- diff --git a/docset/winserver2012r2-ps/bestpractices/Get-BpaResult.md b/docset/winserver2012r2-ps/bestpractices/Get-BpaResult.md index 4ba2499812..fe9194acb6 100644 --- a/docset/winserver2012r2-ps/bestpractices/Get-BpaResult.md +++ b/docset/winserver2012r2-ps/bestpractices/Get-BpaResult.md @@ -2,7 +2,7 @@ external help file: Microsoft.BestPractices.Cmdlets.dll-Help.xml Module Name: BestPractices ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/bestpractices/get-bparesult?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bestpractices/get-bparesult?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BpaResult --- diff --git a/docset/winserver2012r2-ps/bestpractices/Invoke-BpaModel.md b/docset/winserver2012r2-ps/bestpractices/Invoke-BpaModel.md index 3443ce9685..af1e948a4e 100644 --- a/docset/winserver2012r2-ps/bestpractices/Invoke-BpaModel.md +++ b/docset/winserver2012r2-ps/bestpractices/Invoke-BpaModel.md @@ -2,7 +2,7 @@ external help file: Microsoft.BestPractices.Cmdlets.dll-Help.xml Module Name: BestPractices ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/bestpractices/invoke-bpamodel?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bestpractices/invoke-bpamodel?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-BpaModel --- diff --git a/docset/winserver2012r2-ps/bestpractices/Set-BpaResult.md b/docset/winserver2012r2-ps/bestpractices/Set-BpaResult.md index 6f58d592f4..b52934acc7 100644 --- a/docset/winserver2012r2-ps/bestpractices/Set-BpaResult.md +++ b/docset/winserver2012r2-ps/bestpractices/Set-BpaResult.md @@ -2,7 +2,7 @@ external help file: Microsoft.BestPractices.Cmdlets.dll-Help.xml Module Name: BestPractices ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/bestpractices/set-bparesult?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bestpractices/set-bparesult?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-BpaResult --- diff --git a/docset/winserver2012r2-ps/bitlocker/Add-BitLockerKeyProtector.md b/docset/winserver2012r2-ps/bitlocker/Add-BitLockerKeyProtector.md index 7be2343869..26aa9b4d4b 100644 --- a/docset/winserver2012r2-ps/bitlocker/Add-BitLockerKeyProtector.md +++ b/docset/winserver2012r2-ps/bitlocker/Add-BitLockerKeyProtector.md @@ -2,7 +2,7 @@ external help file: BitLocker-help.xml Module Name: BitLocker ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/bitlocker/add-bitlockerkeyprotector?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/add-bitlockerkeyprotector?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-BitLockerKeyProtector --- diff --git a/docset/winserver2012r2-ps/bitlocker/Backup-BitLockerKeyProtector.md b/docset/winserver2012r2-ps/bitlocker/Backup-BitLockerKeyProtector.md index fc9fd8026e..cea83ad857 100644 --- a/docset/winserver2012r2-ps/bitlocker/Backup-BitLockerKeyProtector.md +++ b/docset/winserver2012r2-ps/bitlocker/Backup-BitLockerKeyProtector.md @@ -2,7 +2,7 @@ external help file: BitLocker-help.xml Module Name: BitLocker ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/bitlocker/backup-bitlockerkeyprotector?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/backup-bitlockerkeyprotector?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Backup-BitLockerKeyProtector --- diff --git a/docset/winserver2012r2-ps/bitlocker/Clear-BitLockerAutoUnlock.md b/docset/winserver2012r2-ps/bitlocker/Clear-BitLockerAutoUnlock.md index 4a7ef214a5..c64bb3a0a0 100644 --- a/docset/winserver2012r2-ps/bitlocker/Clear-BitLockerAutoUnlock.md +++ b/docset/winserver2012r2-ps/bitlocker/Clear-BitLockerAutoUnlock.md @@ -2,7 +2,7 @@ external help file: BitLocker-help.xml Module Name: BitLocker ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/bitlocker/clear-bitlockerautounlock?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/clear-bitlockerautounlock?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-BitLockerAutoUnlock --- diff --git a/docset/winserver2012r2-ps/bitlocker/Disable-BitLocker.md b/docset/winserver2012r2-ps/bitlocker/Disable-BitLocker.md index 75eb0bcf48..4ec7244dfd 100644 --- a/docset/winserver2012r2-ps/bitlocker/Disable-BitLocker.md +++ b/docset/winserver2012r2-ps/bitlocker/Disable-BitLocker.md @@ -2,7 +2,7 @@ external help file: BitLocker-help.xml Module Name: BitLocker ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/bitlocker/disable-bitlocker?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/disable-bitlocker?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-BitLocker --- diff --git a/docset/winserver2012r2-ps/bitlocker/Disable-BitLockerAutoUnlock.md b/docset/winserver2012r2-ps/bitlocker/Disable-BitLockerAutoUnlock.md index 84918d7b01..4b70671c49 100644 --- a/docset/winserver2012r2-ps/bitlocker/Disable-BitLockerAutoUnlock.md +++ b/docset/winserver2012r2-ps/bitlocker/Disable-BitLockerAutoUnlock.md @@ -2,7 +2,7 @@ external help file: BitLocker-help.xml Module Name: BitLocker ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/bitlocker/disable-bitlockerautounlock?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/disable-bitlockerautounlock?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-BitLockerAutoUnlock --- diff --git a/docset/winserver2012r2-ps/bitlocker/Enable-BitLocker.md b/docset/winserver2012r2-ps/bitlocker/Enable-BitLocker.md index 13f0340704..f8e6124246 100644 --- a/docset/winserver2012r2-ps/bitlocker/Enable-BitLocker.md +++ b/docset/winserver2012r2-ps/bitlocker/Enable-BitLocker.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BitLocker-help.xml Module Name: BitLocker ms.date: 12/14/2021 -online version: https://docs.microsoft.com/powershell/module/bitlocker/enable-bitlocker?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/enable-bitlocker?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-BitLocker --- diff --git a/docset/winserver2012r2-ps/bitlocker/Enable-BitLockerAutoUnlock.md b/docset/winserver2012r2-ps/bitlocker/Enable-BitLockerAutoUnlock.md index ef9a163448..b47e508f58 100644 --- a/docset/winserver2012r2-ps/bitlocker/Enable-BitLockerAutoUnlock.md +++ b/docset/winserver2012r2-ps/bitlocker/Enable-BitLockerAutoUnlock.md @@ -2,7 +2,7 @@ external help file: BitLocker-help.xml Module Name: BitLocker ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/bitlocker/enable-bitlockerautounlock?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/enable-bitlockerautounlock?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-BitLockerAutoUnlock --- diff --git a/docset/winserver2012r2-ps/bitlocker/Get-BitLockerVolume.md b/docset/winserver2012r2-ps/bitlocker/Get-BitLockerVolume.md index 61971bbe5f..a3b6ea7e7e 100644 --- a/docset/winserver2012r2-ps/bitlocker/Get-BitLockerVolume.md +++ b/docset/winserver2012r2-ps/bitlocker/Get-BitLockerVolume.md @@ -2,7 +2,7 @@ external help file: BitLocker-help.xml Module Name: BitLocker ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/bitlocker/get-bitlockervolume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/get-bitlockervolume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BitLockerVolume --- diff --git a/docset/winserver2012r2-ps/bitlocker/Lock-BitLocker.md b/docset/winserver2012r2-ps/bitlocker/Lock-BitLocker.md index 6bbf9c95ca..e357306464 100644 --- a/docset/winserver2012r2-ps/bitlocker/Lock-BitLocker.md +++ b/docset/winserver2012r2-ps/bitlocker/Lock-BitLocker.md @@ -2,7 +2,7 @@ external help file: BitLocker-help.xml Module Name: BitLocker ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/bitlocker/lock-bitlocker?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/lock-bitlocker?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Lock-BitLocker --- diff --git a/docset/winserver2012r2-ps/bitlocker/Remove-BitLockerKeyProtector.md b/docset/winserver2012r2-ps/bitlocker/Remove-BitLockerKeyProtector.md index b93d153ece..19736ed264 100644 --- a/docset/winserver2012r2-ps/bitlocker/Remove-BitLockerKeyProtector.md +++ b/docset/winserver2012r2-ps/bitlocker/Remove-BitLockerKeyProtector.md @@ -2,7 +2,7 @@ external help file: BitLocker-help.xml Module Name: BitLocker ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/bitlocker/remove-bitlockerkeyprotector?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/remove-bitlockerkeyprotector?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-BitLockerKeyProtector --- diff --git a/docset/winserver2012r2-ps/bitlocker/Resume-BitLocker.md b/docset/winserver2012r2-ps/bitlocker/Resume-BitLocker.md index 958dfc0067..44c5a0fc9b 100644 --- a/docset/winserver2012r2-ps/bitlocker/Resume-BitLocker.md +++ b/docset/winserver2012r2-ps/bitlocker/Resume-BitLocker.md @@ -2,7 +2,7 @@ external help file: BitLocker-help.xml Module Name: BitLocker ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/bitlocker/resume-bitlocker?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/resume-bitlocker?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-BitLocker --- diff --git a/docset/winserver2012r2-ps/bitlocker/Suspend-BitLocker.md b/docset/winserver2012r2-ps/bitlocker/Suspend-BitLocker.md index d59f475efb..917d41f139 100644 --- a/docset/winserver2012r2-ps/bitlocker/Suspend-BitLocker.md +++ b/docset/winserver2012r2-ps/bitlocker/Suspend-BitLocker.md @@ -2,7 +2,7 @@ external help file: BitLocker-help.xml Module Name: BitLocker ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/bitlocker/suspend-bitlocker?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/suspend-bitlocker?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-BitLocker --- diff --git a/docset/winserver2012r2-ps/bitlocker/Unlock-BitLocker.md b/docset/winserver2012r2-ps/bitlocker/Unlock-BitLocker.md index 100d5dc6bc..52f92d07eb 100644 --- a/docset/winserver2012r2-ps/bitlocker/Unlock-BitLocker.md +++ b/docset/winserver2012r2-ps/bitlocker/Unlock-BitLocker.md @@ -2,7 +2,7 @@ external help file: BitLocker-help.xml Module Name: BitLocker ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/bitlocker/unlock-bitlocker?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/unlock-bitlocker?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unlock-BitLocker --- diff --git a/docset/winserver2012r2-ps/bitstransfer/Add-BitsFile.md b/docset/winserver2012r2-ps/bitstransfer/Add-BitsFile.md index 605f3522ab..55c77f99d3 100644 --- a/docset/winserver2012r2-ps/bitstransfer/Add-BitsFile.md +++ b/docset/winserver2012r2-ps/bitstransfer/Add-BitsFile.md @@ -2,7 +2,7 @@ external help file: Microsoft.BackgroundIntelligentTransfer.Management.dll-Help.xml Module Name: BitsTransfer ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/bitstransfer/add-bitsfile?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitstransfer/add-bitsfile?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-BitsFile --- diff --git a/docset/winserver2012r2-ps/bitstransfer/Complete-BitsTransfer.md b/docset/winserver2012r2-ps/bitstransfer/Complete-BitsTransfer.md index 941688d899..c37844a426 100644 --- a/docset/winserver2012r2-ps/bitstransfer/Complete-BitsTransfer.md +++ b/docset/winserver2012r2-ps/bitstransfer/Complete-BitsTransfer.md @@ -2,7 +2,7 @@ external help file: Microsoft.BackgroundIntelligentTransfer.Management.dll-Help.xml Module Name: BitsTransfer ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/bitstransfer/complete-bitstransfer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitstransfer/complete-bitstransfer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Complete-BitsTransfer --- diff --git a/docset/winserver2012r2-ps/bitstransfer/Get-BitsTransfer.md b/docset/winserver2012r2-ps/bitstransfer/Get-BitsTransfer.md index ffb122aaa5..6de2901857 100644 --- a/docset/winserver2012r2-ps/bitstransfer/Get-BitsTransfer.md +++ b/docset/winserver2012r2-ps/bitstransfer/Get-BitsTransfer.md @@ -2,7 +2,7 @@ external help file: Microsoft.BackgroundIntelligentTransfer.Management.dll-Help.xml Module Name: BitsTransfer ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/bitstransfer/get-bitstransfer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitstransfer/get-bitstransfer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BitsTransfer --- diff --git a/docset/winserver2012r2-ps/bitstransfer/Remove-BitsTransfer.md b/docset/winserver2012r2-ps/bitstransfer/Remove-BitsTransfer.md index 095f7b1220..5b7ead1dc8 100644 --- a/docset/winserver2012r2-ps/bitstransfer/Remove-BitsTransfer.md +++ b/docset/winserver2012r2-ps/bitstransfer/Remove-BitsTransfer.md @@ -2,7 +2,7 @@ external help file: Microsoft.BackgroundIntelligentTransfer.Management.dll-Help.xml Module Name: BitsTransfer ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/bitstransfer/remove-bitstransfer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitstransfer/remove-bitstransfer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-BitsTransfer --- diff --git a/docset/winserver2012r2-ps/bitstransfer/Resume-BitsTransfer.md b/docset/winserver2012r2-ps/bitstransfer/Resume-BitsTransfer.md index 4f5c08c849..66b568089d 100644 --- a/docset/winserver2012r2-ps/bitstransfer/Resume-BitsTransfer.md +++ b/docset/winserver2012r2-ps/bitstransfer/Resume-BitsTransfer.md @@ -2,7 +2,7 @@ external help file: Microsoft.BackgroundIntelligentTransfer.Management.dll-Help.xml Module Name: BitsTransfer ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/bitstransfer/resume-bitstransfer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitstransfer/resume-bitstransfer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-BitsTransfer --- diff --git a/docset/winserver2012r2-ps/bitstransfer/Set-BitsTransfer.md b/docset/winserver2012r2-ps/bitstransfer/Set-BitsTransfer.md index eb4d563380..6eb33bae6c 100644 --- a/docset/winserver2012r2-ps/bitstransfer/Set-BitsTransfer.md +++ b/docset/winserver2012r2-ps/bitstransfer/Set-BitsTransfer.md @@ -2,7 +2,7 @@ external help file: Microsoft.BackgroundIntelligentTransfer.Management.dll-Help.xml Module Name: BitsTransfer ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/bitstransfer/set-bitstransfer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitstransfer/set-bitstransfer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-BitsTransfer --- diff --git a/docset/winserver2012r2-ps/bitstransfer/Start-BitsTransfer.md b/docset/winserver2012r2-ps/bitstransfer/Start-BitsTransfer.md index cecc39aaae..c0a665a980 100644 --- a/docset/winserver2012r2-ps/bitstransfer/Start-BitsTransfer.md +++ b/docset/winserver2012r2-ps/bitstransfer/Start-BitsTransfer.md @@ -2,7 +2,7 @@ external help file: Microsoft.BackgroundIntelligentTransfer.Management.dll-Help.xml Module Name: BitsTransfer ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/bitstransfer/start-bitstransfer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitstransfer/start-bitstransfer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-BitsTransfer --- diff --git a/docset/winserver2012r2-ps/bitstransfer/Suspend-BitsTransfer.md b/docset/winserver2012r2-ps/bitstransfer/Suspend-BitsTransfer.md index 0c4350c935..5dbde06cac 100644 --- a/docset/winserver2012r2-ps/bitstransfer/Suspend-BitsTransfer.md +++ b/docset/winserver2012r2-ps/bitstransfer/Suspend-BitsTransfer.md @@ -2,7 +2,7 @@ external help file: Microsoft.BackgroundIntelligentTransfer.Management.dll-Help.xml Module Name: BitsTransfer ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/bitstransfer/suspend-bitstransfer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitstransfer/suspend-bitstransfer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-BitsTransfer --- diff --git a/docset/winserver2012r2-ps/branchcache/Add-BCDataCacheExtension.md b/docset/winserver2012r2-ps/branchcache/Add-BCDataCacheExtension.md index 122d32a297..b15da199dc 100644 --- a/docset/winserver2012r2-ps/branchcache/Add-BCDataCacheExtension.md +++ b/docset/winserver2012r2-ps/branchcache/Add-BCDataCacheExtension.md @@ -2,7 +2,7 @@ external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/branchcache/add-bcdatacacheextension?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/add-bcdatacacheextension?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-BCDataCacheExtension --- diff --git a/docset/winserver2012r2-ps/branchcache/Clear-BCCache.md b/docset/winserver2012r2-ps/branchcache/Clear-BCCache.md index aaa3d28508..eef51e9f25 100644 --- a/docset/winserver2012r2-ps/branchcache/Clear-BCCache.md +++ b/docset/winserver2012r2-ps/branchcache/Clear-BCCache.md @@ -2,7 +2,7 @@ external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/branchcache/clear-bccache?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/clear-bccache?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-BCCache --- diff --git a/docset/winserver2012r2-ps/branchcache/Disable-BC.md b/docset/winserver2012r2-ps/branchcache/Disable-BC.md index 31fa541dad..123f13cfb2 100644 --- a/docset/winserver2012r2-ps/branchcache/Disable-BC.md +++ b/docset/winserver2012r2-ps/branchcache/Disable-BC.md @@ -2,7 +2,7 @@ external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/branchcache/disable-bc?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/disable-bc?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-BC --- diff --git a/docset/winserver2012r2-ps/branchcache/Disable-BCDowngrading.md b/docset/winserver2012r2-ps/branchcache/Disable-BCDowngrading.md index f2026eb056..3649ea073f 100644 --- a/docset/winserver2012r2-ps/branchcache/Disable-BCDowngrading.md +++ b/docset/winserver2012r2-ps/branchcache/Disable-BCDowngrading.md @@ -2,7 +2,7 @@ external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/branchcache/disable-bcdowngrading?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/disable-bcdowngrading?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-BCDowngrading --- diff --git a/docset/winserver2012r2-ps/branchcache/Disable-BCServeOnBattery.md b/docset/winserver2012r2-ps/branchcache/Disable-BCServeOnBattery.md index e4306e294e..42ddcd66e0 100644 --- a/docset/winserver2012r2-ps/branchcache/Disable-BCServeOnBattery.md +++ b/docset/winserver2012r2-ps/branchcache/Disable-BCServeOnBattery.md @@ -2,7 +2,7 @@ external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/branchcache/disable-bcserveonbattery?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/disable-bcserveonbattery?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-BCServeOnBattery --- diff --git a/docset/winserver2012r2-ps/branchcache/Enable-BCDistributed.md b/docset/winserver2012r2-ps/branchcache/Enable-BCDistributed.md index d5a5c549e0..ceaf6cef26 100644 --- a/docset/winserver2012r2-ps/branchcache/Enable-BCDistributed.md +++ b/docset/winserver2012r2-ps/branchcache/Enable-BCDistributed.md @@ -2,7 +2,7 @@ external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/branchcache/enable-bcdistributed?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/enable-bcdistributed?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-BCDistributed --- diff --git a/docset/winserver2012r2-ps/branchcache/Enable-BCDowngrading.md b/docset/winserver2012r2-ps/branchcache/Enable-BCDowngrading.md index eac345b9e5..8aba530a0a 100644 --- a/docset/winserver2012r2-ps/branchcache/Enable-BCDowngrading.md +++ b/docset/winserver2012r2-ps/branchcache/Enable-BCDowngrading.md @@ -2,7 +2,7 @@ external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/branchcache/enable-bcdowngrading?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/enable-bcdowngrading?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-BCDowngrading --- diff --git a/docset/winserver2012r2-ps/branchcache/Enable-BCHostedClient.md b/docset/winserver2012r2-ps/branchcache/Enable-BCHostedClient.md index 8375b5f8df..72da43891d 100644 --- a/docset/winserver2012r2-ps/branchcache/Enable-BCHostedClient.md +++ b/docset/winserver2012r2-ps/branchcache/Enable-BCHostedClient.md @@ -2,7 +2,7 @@ external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/branchcache/enable-bchostedclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/enable-bchostedclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-BCHostedClient --- diff --git a/docset/winserver2012r2-ps/branchcache/Enable-BCHostedServer.md b/docset/winserver2012r2-ps/branchcache/Enable-BCHostedServer.md index a734bb4dae..48251c3950 100644 --- a/docset/winserver2012r2-ps/branchcache/Enable-BCHostedServer.md +++ b/docset/winserver2012r2-ps/branchcache/Enable-BCHostedServer.md @@ -2,7 +2,7 @@ external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/branchcache/enable-bchostedserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/enable-bchostedserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-BCHostedServer --- diff --git a/docset/winserver2012r2-ps/branchcache/Enable-BCLocal.md b/docset/winserver2012r2-ps/branchcache/Enable-BCLocal.md index 383684cc3d..4db6b07beb 100644 --- a/docset/winserver2012r2-ps/branchcache/Enable-BCLocal.md +++ b/docset/winserver2012r2-ps/branchcache/Enable-BCLocal.md @@ -2,7 +2,7 @@ external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/branchcache/enable-bclocal?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/enable-bclocal?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-BCLocal --- diff --git a/docset/winserver2012r2-ps/branchcache/Enable-BCServeOnBattery.md b/docset/winserver2012r2-ps/branchcache/Enable-BCServeOnBattery.md index 9114d67df3..9e3120fba5 100644 --- a/docset/winserver2012r2-ps/branchcache/Enable-BCServeOnBattery.md +++ b/docset/winserver2012r2-ps/branchcache/Enable-BCServeOnBattery.md @@ -2,7 +2,7 @@ external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/branchcache/enable-bcserveonbattery?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/enable-bcserveonbattery?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-BCServeOnBattery --- diff --git a/docset/winserver2012r2-ps/branchcache/Export-BCCachePackage.md b/docset/winserver2012r2-ps/branchcache/Export-BCCachePackage.md index e961e0b0b4..56b11575c8 100644 --- a/docset/winserver2012r2-ps/branchcache/Export-BCCachePackage.md +++ b/docset/winserver2012r2-ps/branchcache/Export-BCCachePackage.md @@ -2,7 +2,7 @@ external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/branchcache/export-bccachepackage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/export-bccachepackage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-BCCachePackage --- diff --git a/docset/winserver2012r2-ps/branchcache/Export-BCSecretKey.md b/docset/winserver2012r2-ps/branchcache/Export-BCSecretKey.md index 8e774097e9..fc03caf8db 100644 --- a/docset/winserver2012r2-ps/branchcache/Export-BCSecretKey.md +++ b/docset/winserver2012r2-ps/branchcache/Export-BCSecretKey.md @@ -2,7 +2,7 @@ external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/branchcache/export-bcsecretkey?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/export-bcsecretkey?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-BCSecretKey --- diff --git a/docset/winserver2012r2-ps/branchcache/Get-BCClientConfiguration.md b/docset/winserver2012r2-ps/branchcache/Get-BCClientConfiguration.md index 1e397772b1..6b0d8800e8 100644 --- a/docset/winserver2012r2-ps/branchcache/Get-BCClientConfiguration.md +++ b/docset/winserver2012r2-ps/branchcache/Get-BCClientConfiguration.md @@ -2,7 +2,7 @@ external help file: BranchCacheClientSettingData.cdxml-help.xml Module Name: BranchCache ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/branchcache/get-bcclientconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/get-bcclientconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BCClientConfiguration --- diff --git a/docset/winserver2012r2-ps/branchcache/Get-BCContentServerConfiguration.md b/docset/winserver2012r2-ps/branchcache/Get-BCContentServerConfiguration.md index 7e48b4473b..46a7a4f1ac 100644 --- a/docset/winserver2012r2-ps/branchcache/Get-BCContentServerConfiguration.md +++ b/docset/winserver2012r2-ps/branchcache/Get-BCContentServerConfiguration.md @@ -2,7 +2,7 @@ external help file: BranchCacheContentServerSettingData.cdxml-help.xml Module Name: BranchCache ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/branchcache/get-bccontentserverconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/get-bccontentserverconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BCContentServerConfiguration --- diff --git a/docset/winserver2012r2-ps/branchcache/Get-BCDataCache.md b/docset/winserver2012r2-ps/branchcache/Get-BCDataCache.md index 29d8eb4a65..73858be725 100644 --- a/docset/winserver2012r2-ps/branchcache/Get-BCDataCache.md +++ b/docset/winserver2012r2-ps/branchcache/Get-BCDataCache.md @@ -2,7 +2,7 @@ external help file: BranchCachePrimaryRepublicationCacheFile.cdxml-help.xml Module Name: BranchCache ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/branchcache/get-bcdatacache?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/get-bcdatacache?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BCDataCache --- diff --git a/docset/winserver2012r2-ps/branchcache/Get-BCDataCacheExtension.md b/docset/winserver2012r2-ps/branchcache/Get-BCDataCacheExtension.md index 98401b64d2..2b5ae2e464 100644 --- a/docset/winserver2012r2-ps/branchcache/Get-BCDataCacheExtension.md +++ b/docset/winserver2012r2-ps/branchcache/Get-BCDataCacheExtension.md @@ -2,7 +2,7 @@ external help file: BranchCacheSecondaryRepublicationCacheFile.cdxml-help.xml Module Name: BranchCache ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/branchcache/get-bcdatacacheextension?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/get-bcdatacacheextension?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BCDataCacheExtension --- diff --git a/docset/winserver2012r2-ps/branchcache/Get-BCHashCache.md b/docset/winserver2012r2-ps/branchcache/Get-BCHashCache.md index 312235f66f..ac87bd38f6 100644 --- a/docset/winserver2012r2-ps/branchcache/Get-BCHashCache.md +++ b/docset/winserver2012r2-ps/branchcache/Get-BCHashCache.md @@ -2,7 +2,7 @@ external help file: BranchCachePrimaryPublicationCacheFile.cdxml-help.xml Module Name: BranchCache ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/branchcache/get-bchashcache?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/get-bchashcache?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BCHashCache --- diff --git a/docset/winserver2012r2-ps/branchcache/Get-BCHostedCacheServerConfiguration.md b/docset/winserver2012r2-ps/branchcache/Get-BCHostedCacheServerConfiguration.md index 0783bba793..358d96ca58 100644 --- a/docset/winserver2012r2-ps/branchcache/Get-BCHostedCacheServerConfiguration.md +++ b/docset/winserver2012r2-ps/branchcache/Get-BCHostedCacheServerConfiguration.md @@ -2,7 +2,7 @@ external help file: BranchCacheHostedCacheServerSettingData.cdxml-help.xml Module Name: BranchCache ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/branchcache/get-bchostedcacheserverconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/get-bchostedcacheserverconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BCHostedCacheServerConfiguration --- diff --git a/docset/winserver2012r2-ps/branchcache/Get-BCNetworkConfiguration.md b/docset/winserver2012r2-ps/branchcache/Get-BCNetworkConfiguration.md index c6d26e39dd..070fb5bd8d 100644 --- a/docset/winserver2012r2-ps/branchcache/Get-BCNetworkConfiguration.md +++ b/docset/winserver2012r2-ps/branchcache/Get-BCNetworkConfiguration.md @@ -2,7 +2,7 @@ external help file: BranchCacheNetworkSettingData.cdxml-help.xml Module Name: BranchCache ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/branchcache/get-bcnetworkconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/get-bcnetworkconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BCNetworkConfiguration --- diff --git a/docset/winserver2012r2-ps/branchcache/Get-BCStatus.md b/docset/winserver2012r2-ps/branchcache/Get-BCStatus.md index 2c117c485d..d79ebb6445 100644 --- a/docset/winserver2012r2-ps/branchcache/Get-BCStatus.md +++ b/docset/winserver2012r2-ps/branchcache/Get-BCStatus.md @@ -2,7 +2,7 @@ external help file: BranchCacheStatus.cdxml-help.xml Module Name: BranchCache ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/branchcache/get-bcstatus?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/get-bcstatus?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BCStatus --- diff --git a/docset/winserver2012r2-ps/branchcache/Import-BCCachePackage.md b/docset/winserver2012r2-ps/branchcache/Import-BCCachePackage.md index 416c33354d..be7521fc44 100644 --- a/docset/winserver2012r2-ps/branchcache/Import-BCCachePackage.md +++ b/docset/winserver2012r2-ps/branchcache/Import-BCCachePackage.md @@ -2,7 +2,7 @@ external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/branchcache/import-bccachepackage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/import-bccachepackage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-BCCachePackage --- diff --git a/docset/winserver2012r2-ps/branchcache/Import-BCSecretKey.md b/docset/winserver2012r2-ps/branchcache/Import-BCSecretKey.md index 8474b80ccc..a8064445b0 100644 --- a/docset/winserver2012r2-ps/branchcache/Import-BCSecretKey.md +++ b/docset/winserver2012r2-ps/branchcache/Import-BCSecretKey.md @@ -2,7 +2,7 @@ external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/branchcache/import-bcsecretkey?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/import-bcsecretkey?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-BCSecretKey --- diff --git a/docset/winserver2012r2-ps/branchcache/Publish-BCFileContent.md b/docset/winserver2012r2-ps/branchcache/Publish-BCFileContent.md index ee0d64dbb1..147e8ebf0a 100644 --- a/docset/winserver2012r2-ps/branchcache/Publish-BCFileContent.md +++ b/docset/winserver2012r2-ps/branchcache/Publish-BCFileContent.md @@ -2,7 +2,7 @@ external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/branchcache/publish-bcfilecontent?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/publish-bcfilecontent?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Publish-BCFileContent --- diff --git a/docset/winserver2012r2-ps/branchcache/Publish-BCWebContent.md b/docset/winserver2012r2-ps/branchcache/Publish-BCWebContent.md index 82983eb92c..8b10413f94 100644 --- a/docset/winserver2012r2-ps/branchcache/Publish-BCWebContent.md +++ b/docset/winserver2012r2-ps/branchcache/Publish-BCWebContent.md @@ -2,7 +2,7 @@ external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/branchcache/publish-bcwebcontent?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/publish-bcwebcontent?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Publish-BCWebContent --- diff --git a/docset/winserver2012r2-ps/branchcache/Remove-BCDataCacheExtension.md b/docset/winserver2012r2-ps/branchcache/Remove-BCDataCacheExtension.md index 2ff5441bcd..e5b270eef6 100644 --- a/docset/winserver2012r2-ps/branchcache/Remove-BCDataCacheExtension.md +++ b/docset/winserver2012r2-ps/branchcache/Remove-BCDataCacheExtension.md @@ -2,7 +2,7 @@ external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/branchcache/remove-bcdatacacheextension?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/remove-bcdatacacheextension?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-BCDataCacheExtension --- diff --git a/docset/winserver2012r2-ps/branchcache/Reset-BC.md b/docset/winserver2012r2-ps/branchcache/Reset-BC.md index 777bc1399a..7808c12a46 100644 --- a/docset/winserver2012r2-ps/branchcache/Reset-BC.md +++ b/docset/winserver2012r2-ps/branchcache/Reset-BC.md @@ -2,7 +2,7 @@ external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/branchcache/reset-bc?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/reset-bc?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-BC --- diff --git a/docset/winserver2012r2-ps/branchcache/Set-BCAuthentication.md b/docset/winserver2012r2-ps/branchcache/Set-BCAuthentication.md index f928169c7f..a297663a5f 100644 --- a/docset/winserver2012r2-ps/branchcache/Set-BCAuthentication.md +++ b/docset/winserver2012r2-ps/branchcache/Set-BCAuthentication.md @@ -2,7 +2,7 @@ external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/branchcache/set-bcauthentication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/set-bcauthentication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-BCAuthentication --- diff --git a/docset/winserver2012r2-ps/branchcache/Set-BCCache.md b/docset/winserver2012r2-ps/branchcache/Set-BCCache.md index ac87ff92fc..87d5222d55 100644 --- a/docset/winserver2012r2-ps/branchcache/Set-BCCache.md +++ b/docset/winserver2012r2-ps/branchcache/Set-BCCache.md @@ -2,7 +2,7 @@ external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/branchcache/set-bccache?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/set-bccache?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-BCCache --- diff --git a/docset/winserver2012r2-ps/branchcache/Set-BCDataCacheEntryMaxAge.md b/docset/winserver2012r2-ps/branchcache/Set-BCDataCacheEntryMaxAge.md index 106efb7347..8b25d5a11d 100644 --- a/docset/winserver2012r2-ps/branchcache/Set-BCDataCacheEntryMaxAge.md +++ b/docset/winserver2012r2-ps/branchcache/Set-BCDataCacheEntryMaxAge.md @@ -2,7 +2,7 @@ external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/branchcache/set-bcdatacacheentrymaxage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/set-bcdatacacheentrymaxage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-BCDataCacheEntryMaxAge --- diff --git a/docset/winserver2012r2-ps/branchcache/Set-BCMinSMBLatency.md b/docset/winserver2012r2-ps/branchcache/Set-BCMinSMBLatency.md index 50fdb761a0..59c03f7032 100644 --- a/docset/winserver2012r2-ps/branchcache/Set-BCMinSMBLatency.md +++ b/docset/winserver2012r2-ps/branchcache/Set-BCMinSMBLatency.md @@ -2,7 +2,7 @@ external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/branchcache/set-bcminsmblatency?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/set-bcminsmblatency?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-BCMinSMBLatency --- diff --git a/docset/winserver2012r2-ps/branchcache/Set-BCSecretKey.md b/docset/winserver2012r2-ps/branchcache/Set-BCSecretKey.md index 92db3a0ac9..669e0ae9b1 100644 --- a/docset/winserver2012r2-ps/branchcache/Set-BCSecretKey.md +++ b/docset/winserver2012r2-ps/branchcache/Set-BCSecretKey.md @@ -2,7 +2,7 @@ external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/branchcache/set-bcsecretkey?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/set-bcsecretkey?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-BCSecretKey --- diff --git a/docset/winserver2012r2-ps/clusterawareupdating/Add-CauClusterRole.md b/docset/winserver2012r2-ps/clusterawareupdating/Add-CauClusterRole.md index f27eef439a..518e15a628 100644 --- a/docset/winserver2012r2-ps/clusterawareupdating/Add-CauClusterRole.md +++ b/docset/winserver2012r2-ps/clusterawareupdating/Add-CauClusterRole.md @@ -2,7 +2,7 @@ external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/add-cauclusterrole?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/add-cauclusterrole?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-CauClusterRole --- diff --git a/docset/winserver2012r2-ps/clusterawareupdating/Disable-CauClusterRole.md b/docset/winserver2012r2-ps/clusterawareupdating/Disable-CauClusterRole.md index 17814b4bc6..c7d52014c5 100644 --- a/docset/winserver2012r2-ps/clusterawareupdating/Disable-CauClusterRole.md +++ b/docset/winserver2012r2-ps/clusterawareupdating/Disable-CauClusterRole.md @@ -2,7 +2,7 @@ external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/disable-cauclusterrole?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/disable-cauclusterrole?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-CauClusterRole --- diff --git a/docset/winserver2012r2-ps/clusterawareupdating/Enable-CauClusterRole.md b/docset/winserver2012r2-ps/clusterawareupdating/Enable-CauClusterRole.md index ae69d0c11d..486d93e7fe 100644 --- a/docset/winserver2012r2-ps/clusterawareupdating/Enable-CauClusterRole.md +++ b/docset/winserver2012r2-ps/clusterawareupdating/Enable-CauClusterRole.md @@ -2,7 +2,7 @@ external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/enable-cauclusterrole?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/enable-cauclusterrole?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-CauClusterRole --- diff --git a/docset/winserver2012r2-ps/clusterawareupdating/Export-CauReport.md b/docset/winserver2012r2-ps/clusterawareupdating/Export-CauReport.md index d97c2e98a9..91317080ad 100644 --- a/docset/winserver2012r2-ps/clusterawareupdating/Export-CauReport.md +++ b/docset/winserver2012r2-ps/clusterawareupdating/Export-CauReport.md @@ -2,7 +2,7 @@ external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/export-caureport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/export-caureport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-CauReport --- diff --git a/docset/winserver2012r2-ps/clusterawareupdating/Get-CauClusterRole.md b/docset/winserver2012r2-ps/clusterawareupdating/Get-CauClusterRole.md index 78277fcefb..bed2f6a60c 100644 --- a/docset/winserver2012r2-ps/clusterawareupdating/Get-CauClusterRole.md +++ b/docset/winserver2012r2-ps/clusterawareupdating/Get-CauClusterRole.md @@ -2,7 +2,7 @@ external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/get-cauclusterrole?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/get-cauclusterrole?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CauClusterRole --- diff --git a/docset/winserver2012r2-ps/clusterawareupdating/Get-CauPlugin.md b/docset/winserver2012r2-ps/clusterawareupdating/Get-CauPlugin.md index 0fcd774ed1..c20241e3bb 100644 --- a/docset/winserver2012r2-ps/clusterawareupdating/Get-CauPlugin.md +++ b/docset/winserver2012r2-ps/clusterawareupdating/Get-CauPlugin.md @@ -2,7 +2,7 @@ external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/get-cauplugin?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/get-cauplugin?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CauPlugin --- diff --git a/docset/winserver2012r2-ps/clusterawareupdating/Get-CauReport.md b/docset/winserver2012r2-ps/clusterawareupdating/Get-CauReport.md index d430b2bab2..e530cd7dc0 100644 --- a/docset/winserver2012r2-ps/clusterawareupdating/Get-CauReport.md +++ b/docset/winserver2012r2-ps/clusterawareupdating/Get-CauReport.md @@ -2,7 +2,7 @@ external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/get-caureport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/get-caureport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CauReport --- diff --git a/docset/winserver2012r2-ps/clusterawareupdating/Get-CauRun.md b/docset/winserver2012r2-ps/clusterawareupdating/Get-CauRun.md index 30a8e5308f..1626fbe946 100644 --- a/docset/winserver2012r2-ps/clusterawareupdating/Get-CauRun.md +++ b/docset/winserver2012r2-ps/clusterawareupdating/Get-CauRun.md @@ -2,7 +2,7 @@ external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/get-caurun?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/get-caurun?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CauRun --- diff --git a/docset/winserver2012r2-ps/clusterawareupdating/Invoke-CauRun.md b/docset/winserver2012r2-ps/clusterawareupdating/Invoke-CauRun.md index b706085ac5..fa458ef0ec 100644 --- a/docset/winserver2012r2-ps/clusterawareupdating/Invoke-CauRun.md +++ b/docset/winserver2012r2-ps/clusterawareupdating/Invoke-CauRun.md @@ -2,7 +2,7 @@ external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/invoke-caurun?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/invoke-caurun?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-CauRun --- diff --git a/docset/winserver2012r2-ps/clusterawareupdating/Invoke-CauScan.md b/docset/winserver2012r2-ps/clusterawareupdating/Invoke-CauScan.md index d1f1f575ae..8abf4f254f 100644 --- a/docset/winserver2012r2-ps/clusterawareupdating/Invoke-CauScan.md +++ b/docset/winserver2012r2-ps/clusterawareupdating/Invoke-CauScan.md @@ -2,7 +2,7 @@ external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/invoke-causcan?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/invoke-causcan?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-CauScan --- diff --git a/docset/winserver2012r2-ps/clusterawareupdating/Register-CauPlugin.md b/docset/winserver2012r2-ps/clusterawareupdating/Register-CauPlugin.md index b6eb97a504..e0599f8169 100644 --- a/docset/winserver2012r2-ps/clusterawareupdating/Register-CauPlugin.md +++ b/docset/winserver2012r2-ps/clusterawareupdating/Register-CauPlugin.md @@ -2,7 +2,7 @@ external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/register-cauplugin?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/register-cauplugin?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Register-CauPlugin --- diff --git a/docset/winserver2012r2-ps/clusterawareupdating/Remove-CauClusterRole.md b/docset/winserver2012r2-ps/clusterawareupdating/Remove-CauClusterRole.md index e65d4f425e..1862e81da2 100644 --- a/docset/winserver2012r2-ps/clusterawareupdating/Remove-CauClusterRole.md +++ b/docset/winserver2012r2-ps/clusterawareupdating/Remove-CauClusterRole.md @@ -2,7 +2,7 @@ external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/remove-cauclusterrole?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/remove-cauclusterrole?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-CauClusterRole --- diff --git a/docset/winserver2012r2-ps/clusterawareupdating/Save-CauDebugTrace.md b/docset/winserver2012r2-ps/clusterawareupdating/Save-CauDebugTrace.md index b4b5fe56b1..6a9e6d81b4 100644 --- a/docset/winserver2012r2-ps/clusterawareupdating/Save-CauDebugTrace.md +++ b/docset/winserver2012r2-ps/clusterawareupdating/Save-CauDebugTrace.md @@ -2,7 +2,7 @@ external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/save-caudebugtrace?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/save-caudebugtrace?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Save-CauDebugTrace --- diff --git a/docset/winserver2012r2-ps/clusterawareupdating/Set-CauClusterRole.md b/docset/winserver2012r2-ps/clusterawareupdating/Set-CauClusterRole.md index 56d62d4d2d..f18e2c01af 100644 --- a/docset/winserver2012r2-ps/clusterawareupdating/Set-CauClusterRole.md +++ b/docset/winserver2012r2-ps/clusterawareupdating/Set-CauClusterRole.md @@ -2,7 +2,7 @@ external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/set-cauclusterrole?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/set-cauclusterrole?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-CauClusterRole --- diff --git a/docset/winserver2012r2-ps/clusterawareupdating/Stop-CauRun.md b/docset/winserver2012r2-ps/clusterawareupdating/Stop-CauRun.md index d8f8d6d1d4..49c1102c65 100644 --- a/docset/winserver2012r2-ps/clusterawareupdating/Stop-CauRun.md +++ b/docset/winserver2012r2-ps/clusterawareupdating/Stop-CauRun.md @@ -2,7 +2,7 @@ external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/stop-caurun?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/stop-caurun?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-CauRun --- diff --git a/docset/winserver2012r2-ps/clusterawareupdating/Test-CauSetup.md b/docset/winserver2012r2-ps/clusterawareupdating/Test-CauSetup.md index 72d893e6d7..a2918a14c2 100644 --- a/docset/winserver2012r2-ps/clusterawareupdating/Test-CauSetup.md +++ b/docset/winserver2012r2-ps/clusterawareupdating/Test-CauSetup.md @@ -2,7 +2,7 @@ external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/test-causetup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/test-causetup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-CauSetup --- diff --git a/docset/winserver2012r2-ps/clusterawareupdating/Unregister-CauPlugin.md b/docset/winserver2012r2-ps/clusterawareupdating/Unregister-CauPlugin.md index 90fc5e2ff4..0732cd531c 100644 --- a/docset/winserver2012r2-ps/clusterawareupdating/Unregister-CauPlugin.md +++ b/docset/winserver2012r2-ps/clusterawareupdating/Unregister-CauPlugin.md @@ -2,7 +2,7 @@ external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/unregister-cauplugin?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/unregister-cauplugin?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unregister-CauPlugin --- diff --git a/docset/winserver2012r2-ps/dcbqos/Disable-NetQosFlowControl.md b/docset/winserver2012r2-ps/dcbqos/Disable-NetQosFlowControl.md index 4d97034fcd..757ba3e38a 100644 --- a/docset/winserver2012r2-ps/dcbqos/Disable-NetQosFlowControl.md +++ b/docset/winserver2012r2-ps/dcbqos/Disable-NetQosFlowControl.md @@ -2,7 +2,7 @@ external help file: MSFT_NetQosFlowControl.cdxml-help.xml Module Name: DcbQoS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dcbqos/disable-netqosflowcontrol?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/disable-netqosflowcontrol?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetQosFlowControl --- diff --git a/docset/winserver2012r2-ps/dcbqos/Enable-NetQosFlowControl.md b/docset/winserver2012r2-ps/dcbqos/Enable-NetQosFlowControl.md index 42b3c3ed8a..d5028b4e01 100644 --- a/docset/winserver2012r2-ps/dcbqos/Enable-NetQosFlowControl.md +++ b/docset/winserver2012r2-ps/dcbqos/Enable-NetQosFlowControl.md @@ -2,7 +2,7 @@ external help file: MSFT_NetQosFlowControl.cdxml-help.xml Module Name: DcbQoS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dcbqos/enable-netqosflowcontrol?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/enable-netqosflowcontrol?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetQosFlowControl --- diff --git a/docset/winserver2012r2-ps/dcbqos/Get-NetQosDcbxSetting.md b/docset/winserver2012r2-ps/dcbqos/Get-NetQosDcbxSetting.md index c15d5b9b05..c29bf3a7ff 100644 --- a/docset/winserver2012r2-ps/dcbqos/Get-NetQosDcbxSetting.md +++ b/docset/winserver2012r2-ps/dcbqos/Get-NetQosDcbxSetting.md @@ -2,7 +2,7 @@ external help file: MSFT_NetQosDcbxSetting.cdxml-help.xml Module Name: DcbQoS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dcbqos/get-netqosdcbxsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/get-netqosdcbxsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetQosDcbxSetting --- diff --git a/docset/winserver2012r2-ps/dcbqos/Get-NetQosFlowControl.md b/docset/winserver2012r2-ps/dcbqos/Get-NetQosFlowControl.md index 17d8ac5fee..b3da1b1688 100644 --- a/docset/winserver2012r2-ps/dcbqos/Get-NetQosFlowControl.md +++ b/docset/winserver2012r2-ps/dcbqos/Get-NetQosFlowControl.md @@ -2,7 +2,7 @@ external help file: MSFT_NetQosFlowControl.cdxml-help.xml Module Name: DcbQoS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dcbqos/get-netqosflowcontrol?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/get-netqosflowcontrol?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetQosFlowControl --- diff --git a/docset/winserver2012r2-ps/dcbqos/Get-NetQosTrafficClass.md b/docset/winserver2012r2-ps/dcbqos/Get-NetQosTrafficClass.md index e278b419cd..70612f6fbe 100644 --- a/docset/winserver2012r2-ps/dcbqos/Get-NetQosTrafficClass.md +++ b/docset/winserver2012r2-ps/dcbqos/Get-NetQosTrafficClass.md @@ -2,7 +2,7 @@ external help file: MSFT_NetQosTrafficClass.cdxml-help.xml Module Name: DcbQoS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dcbqos/get-netqostrafficclass?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/get-netqostrafficclass?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetQosTrafficClass --- diff --git a/docset/winserver2012r2-ps/dcbqos/New-NetQosTrafficClass.md b/docset/winserver2012r2-ps/dcbqos/New-NetQosTrafficClass.md index 457d0344ff..b0a6c205ba 100644 --- a/docset/winserver2012r2-ps/dcbqos/New-NetQosTrafficClass.md +++ b/docset/winserver2012r2-ps/dcbqos/New-NetQosTrafficClass.md @@ -2,7 +2,7 @@ external help file: MSFT_NetQosTrafficClass.cdxml-help.xml Module Name: DcbQoS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dcbqos/new-netqostrafficclass?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/new-netqostrafficclass?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetQosTrafficClass --- diff --git a/docset/winserver2012r2-ps/dcbqos/Remove-NetQosTrafficClass.md b/docset/winserver2012r2-ps/dcbqos/Remove-NetQosTrafficClass.md index 9d6fc8c8de..ed9031f481 100644 --- a/docset/winserver2012r2-ps/dcbqos/Remove-NetQosTrafficClass.md +++ b/docset/winserver2012r2-ps/dcbqos/Remove-NetQosTrafficClass.md @@ -2,7 +2,7 @@ external help file: MSFT_NetQosTrafficClass.cdxml-help.xml Module Name: DcbQoS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dcbqos/remove-netqostrafficclass?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/remove-netqostrafficclass?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetQosTrafficClass --- diff --git a/docset/winserver2012r2-ps/dcbqos/Set-NetQosDcbxSetting.md b/docset/winserver2012r2-ps/dcbqos/Set-NetQosDcbxSetting.md index 0cee0b5f34..f3087247bb 100644 --- a/docset/winserver2012r2-ps/dcbqos/Set-NetQosDcbxSetting.md +++ b/docset/winserver2012r2-ps/dcbqos/Set-NetQosDcbxSetting.md @@ -2,7 +2,7 @@ external help file: MSFT_NetQosDcbxSetting.cdxml-help.xml Module Name: DcbQoS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dcbqos/set-netqosdcbxsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/set-netqosdcbxsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetQosDcbxSetting --- diff --git a/docset/winserver2012r2-ps/dcbqos/Set-NetQosFlowControl.md b/docset/winserver2012r2-ps/dcbqos/Set-NetQosFlowControl.md index b2de7f4d71..3f9a85ce02 100644 --- a/docset/winserver2012r2-ps/dcbqos/Set-NetQosFlowControl.md +++ b/docset/winserver2012r2-ps/dcbqos/Set-NetQosFlowControl.md @@ -2,7 +2,7 @@ external help file: MSFT_NetQosFlowControl.cdxml-help.xml Module Name: DcbQoS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dcbqos/set-netqosflowcontrol?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/set-netqosflowcontrol?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetQosFlowControl --- diff --git a/docset/winserver2012r2-ps/dcbqos/Set-NetQosTrafficClass.md b/docset/winserver2012r2-ps/dcbqos/Set-NetQosTrafficClass.md index 5dd9b138c7..a2e8826091 100644 --- a/docset/winserver2012r2-ps/dcbqos/Set-NetQosTrafficClass.md +++ b/docset/winserver2012r2-ps/dcbqos/Set-NetQosTrafficClass.md @@ -2,7 +2,7 @@ external help file: MSFT_NetQosTrafficClass.cdxml-help.xml Module Name: DcbQoS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dcbqos/set-netqostrafficclass?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/set-netqostrafficclass?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetQosTrafficClass --- diff --git a/docset/winserver2012r2-ps/deduplication/Disable-DedupVolume.md b/docset/winserver2012r2-ps/deduplication/Disable-DedupVolume.md index cfef5778ee..c6b28ae932 100644 --- a/docset/winserver2012r2-ps/deduplication/Disable-DedupVolume.md +++ b/docset/winserver2012r2-ps/deduplication/Disable-DedupVolume.md @@ -2,7 +2,7 @@ external help file: DedupVolume.cdxml-help.xml Module Name: Deduplication ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/deduplication/disable-dedupvolume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/disable-dedupvolume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-DedupVolume --- diff --git a/docset/winserver2012r2-ps/deduplication/Enable-DedupVolume.md b/docset/winserver2012r2-ps/deduplication/Enable-DedupVolume.md index bee43d2c93..afbe501d2e 100644 --- a/docset/winserver2012r2-ps/deduplication/Enable-DedupVolume.md +++ b/docset/winserver2012r2-ps/deduplication/Enable-DedupVolume.md @@ -2,7 +2,7 @@ external help file: DedupVolume.cdxml-help.xml Module Name: Deduplication ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/deduplication/enable-dedupvolume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/enable-dedupvolume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-DedupVolume --- diff --git a/docset/winserver2012r2-ps/deduplication/Expand-DedupFile.md b/docset/winserver2012r2-ps/deduplication/Expand-DedupFile.md index c3b482a5bf..0bcfc49216 100644 --- a/docset/winserver2012r2-ps/deduplication/Expand-DedupFile.md +++ b/docset/winserver2012r2-ps/deduplication/Expand-DedupFile.md @@ -2,7 +2,7 @@ external help file: DedupVolume.cdxml-help.xml Module Name: Deduplication ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/deduplication/expand-dedupfile?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/expand-dedupfile?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Expand-DedupFile --- diff --git a/docset/winserver2012r2-ps/deduplication/Get-DedupJob.md b/docset/winserver2012r2-ps/deduplication/Get-DedupJob.md index 01a3fbef70..5c08a4a1f7 100644 --- a/docset/winserver2012r2-ps/deduplication/Get-DedupJob.md +++ b/docset/winserver2012r2-ps/deduplication/Get-DedupJob.md @@ -2,7 +2,7 @@ external help file: DedupJob.cdxml-help.xml Module Name: Deduplication ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/deduplication/get-dedupjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/get-dedupjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DedupJob --- diff --git a/docset/winserver2012r2-ps/deduplication/Get-DedupMetadata.md b/docset/winserver2012r2-ps/deduplication/Get-DedupMetadata.md index bbb4827148..547c5e9b7c 100644 --- a/docset/winserver2012r2-ps/deduplication/Get-DedupMetadata.md +++ b/docset/winserver2012r2-ps/deduplication/Get-DedupMetadata.md @@ -2,7 +2,7 @@ external help file: DedupMetadata.cdxml-help.xml Module Name: Deduplication ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/deduplication/get-dedupmetadata?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/get-dedupmetadata?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DedupMetadata --- diff --git a/docset/winserver2012r2-ps/deduplication/Get-DedupSchedule.md b/docset/winserver2012r2-ps/deduplication/Get-DedupSchedule.md index 56b7fbee3d..d8df13ec80 100644 --- a/docset/winserver2012r2-ps/deduplication/Get-DedupSchedule.md +++ b/docset/winserver2012r2-ps/deduplication/Get-DedupSchedule.md @@ -2,7 +2,7 @@ external help file: DedupSchedule.cdxml-help.xml Module Name: Deduplication ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/deduplication/get-dedupschedule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/get-dedupschedule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DedupSchedule --- diff --git a/docset/winserver2012r2-ps/deduplication/Get-DedupStatus.md b/docset/winserver2012r2-ps/deduplication/Get-DedupStatus.md index dd3b908290..597f95ce09 100644 --- a/docset/winserver2012r2-ps/deduplication/Get-DedupStatus.md +++ b/docset/winserver2012r2-ps/deduplication/Get-DedupStatus.md @@ -2,7 +2,7 @@ external help file: DedupStatus.cdxml-help.xml Module Name: Deduplication ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/deduplication/get-dedupstatus?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/get-dedupstatus?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DedupStatus --- diff --git a/docset/winserver2012r2-ps/deduplication/Get-DedupVolume.md b/docset/winserver2012r2-ps/deduplication/Get-DedupVolume.md index 15125e28e7..2a933b9b52 100644 --- a/docset/winserver2012r2-ps/deduplication/Get-DedupVolume.md +++ b/docset/winserver2012r2-ps/deduplication/Get-DedupVolume.md @@ -2,7 +2,7 @@ external help file: DedupVolume.cdxml-help.xml Module Name: Deduplication ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/deduplication/get-dedupvolume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/get-dedupvolume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DedupVolume --- diff --git a/docset/winserver2012r2-ps/deduplication/Measure-DedupFileMetadata.md b/docset/winserver2012r2-ps/deduplication/Measure-DedupFileMetadata.md index 5996482a09..2b3fdb8430 100644 --- a/docset/winserver2012r2-ps/deduplication/Measure-DedupFileMetadata.md +++ b/docset/winserver2012r2-ps/deduplication/Measure-DedupFileMetadata.md @@ -2,7 +2,7 @@ external help file: DedupFileMetadata.cdxml-help.xml Module Name: Deduplication ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/deduplication/measure-dedupfilemetadata?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/measure-dedupfilemetadata?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Measure-DedupFileMetadata --- diff --git a/docset/winserver2012r2-ps/deduplication/New-DedupSchedule.md b/docset/winserver2012r2-ps/deduplication/New-DedupSchedule.md index 4be0db50a7..37a2f57cf3 100644 --- a/docset/winserver2012r2-ps/deduplication/New-DedupSchedule.md +++ b/docset/winserver2012r2-ps/deduplication/New-DedupSchedule.md @@ -2,7 +2,7 @@ external help file: DedupSchedule.cdxml-help.xml Module Name: Deduplication ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/deduplication/new-dedupschedule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/new-dedupschedule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-DedupSchedule --- diff --git a/docset/winserver2012r2-ps/deduplication/Remove-DedupSchedule.md b/docset/winserver2012r2-ps/deduplication/Remove-DedupSchedule.md index b3fe9851d8..09267215c0 100644 --- a/docset/winserver2012r2-ps/deduplication/Remove-DedupSchedule.md +++ b/docset/winserver2012r2-ps/deduplication/Remove-DedupSchedule.md @@ -2,7 +2,7 @@ external help file: DedupSchedule.cdxml-help.xml Module Name: Deduplication ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/deduplication/remove-dedupschedule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/remove-dedupschedule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DedupSchedule --- diff --git a/docset/winserver2012r2-ps/deduplication/Set-DedupSchedule.md b/docset/winserver2012r2-ps/deduplication/Set-DedupSchedule.md index 922df7d147..4183c02068 100644 --- a/docset/winserver2012r2-ps/deduplication/Set-DedupSchedule.md +++ b/docset/winserver2012r2-ps/deduplication/Set-DedupSchedule.md @@ -2,7 +2,7 @@ external help file: DedupSchedule.cdxml-help.xml Module Name: Deduplication ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/deduplication/set-dedupschedule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/set-dedupschedule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DedupSchedule --- diff --git a/docset/winserver2012r2-ps/deduplication/Set-DedupVolume.md b/docset/winserver2012r2-ps/deduplication/Set-DedupVolume.md index 600a87e337..77ec11ed4d 100644 --- a/docset/winserver2012r2-ps/deduplication/Set-DedupVolume.md +++ b/docset/winserver2012r2-ps/deduplication/Set-DedupVolume.md @@ -2,7 +2,7 @@ external help file: DedupVolume.cdxml-help.xml Module Name: Deduplication ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/deduplication/set-dedupvolume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/set-dedupvolume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DedupVolume --- diff --git a/docset/winserver2012r2-ps/deduplication/Start-DedupJob.md b/docset/winserver2012r2-ps/deduplication/Start-DedupJob.md index b833afcf7e..850beb5980 100644 --- a/docset/winserver2012r2-ps/deduplication/Start-DedupJob.md +++ b/docset/winserver2012r2-ps/deduplication/Start-DedupJob.md @@ -2,7 +2,7 @@ external help file: DedupJob.cdxml-help.xml Module Name: Deduplication ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/deduplication/start-dedupjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/start-dedupjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-DedupJob --- diff --git a/docset/winserver2012r2-ps/deduplication/Stop-DedupJob.md b/docset/winserver2012r2-ps/deduplication/Stop-DedupJob.md index 6a437c17de..62fd3622b4 100644 --- a/docset/winserver2012r2-ps/deduplication/Stop-DedupJob.md +++ b/docset/winserver2012r2-ps/deduplication/Stop-DedupJob.md @@ -2,7 +2,7 @@ external help file: DedupJob.cdxml-help.xml Module Name: Deduplication ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/deduplication/stop-dedupjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/stop-dedupjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-DedupJob --- diff --git a/docset/winserver2012r2-ps/deduplication/Update-DedupStatus.md b/docset/winserver2012r2-ps/deduplication/Update-DedupStatus.md index 5e1bf17cd7..ec6b05012e 100644 --- a/docset/winserver2012r2-ps/deduplication/Update-DedupStatus.md +++ b/docset/winserver2012r2-ps/deduplication/Update-DedupStatus.md @@ -2,7 +2,7 @@ external help file: DedupStatus.cdxml-help.xml Module Name: Deduplication ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/deduplication/update-dedupstatus?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/update-dedupstatus?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-DedupStatus --- diff --git a/docset/winserver2012r2-ps/dfsn/Get-DfsnAccess.md b/docset/winserver2012r2-ps/dfsn/Get-DfsnAccess.md index cb952a1eba..8e151a23f7 100644 --- a/docset/winserver2012r2-ps/dfsn/Get-DfsnAccess.md +++ b/docset/winserver2012r2-ps/dfsn/Get-DfsnAccess.md @@ -2,7 +2,7 @@ external help file: DfsNamespaceAccess.cdxml-help.xml Module Name: DFSN ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsn/get-dfsnaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/get-dfsnaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsnAccess --- diff --git a/docset/winserver2012r2-ps/dfsn/Get-DfsnFolder.md b/docset/winserver2012r2-ps/dfsn/Get-DfsnFolder.md index 37d03456a1..452806161e 100644 --- a/docset/winserver2012r2-ps/dfsn/Get-DfsnFolder.md +++ b/docset/winserver2012r2-ps/dfsn/Get-DfsnFolder.md @@ -2,7 +2,7 @@ external help file: DfsNamespaceFolder.cdxml-help.xml Module Name: DFSN ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsn/get-dfsnfolder?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/get-dfsnfolder?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsnFolder --- diff --git a/docset/winserver2012r2-ps/dfsn/Get-DfsnFolderTarget.md b/docset/winserver2012r2-ps/dfsn/Get-DfsnFolderTarget.md index 56e5c70503..4a79a64660 100644 --- a/docset/winserver2012r2-ps/dfsn/Get-DfsnFolderTarget.md +++ b/docset/winserver2012r2-ps/dfsn/Get-DfsnFolderTarget.md @@ -2,7 +2,7 @@ external help file: DfsNamespaceFolderTarget.cdxml-help.xml Module Name: DFSN ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsn/get-dfsnfoldertarget?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/get-dfsnfoldertarget?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsnFolderTarget --- diff --git a/docset/winserver2012r2-ps/dfsn/Get-DfsnRoot.md b/docset/winserver2012r2-ps/dfsn/Get-DfsnRoot.md index b59669270d..d722d0595c 100644 --- a/docset/winserver2012r2-ps/dfsn/Get-DfsnRoot.md +++ b/docset/winserver2012r2-ps/dfsn/Get-DfsnRoot.md @@ -2,7 +2,7 @@ external help file: DfsNamespace.cdxml-help.xml Module Name: DFSN ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsn/get-dfsnroot?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/get-dfsnroot?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsnRoot --- diff --git a/docset/winserver2012r2-ps/dfsn/Get-DfsnRootTarget.md b/docset/winserver2012r2-ps/dfsn/Get-DfsnRootTarget.md index c3e376be77..2842a25e2c 100644 --- a/docset/winserver2012r2-ps/dfsn/Get-DfsnRootTarget.md +++ b/docset/winserver2012r2-ps/dfsn/Get-DfsnRootTarget.md @@ -2,7 +2,7 @@ external help file: DfsNamespaceRootTarget.cdxml-help.xml Module Name: DFSN ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsn/get-dfsnroottarget?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/get-dfsnroottarget?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsnRootTarget --- diff --git a/docset/winserver2012r2-ps/dfsn/Get-DfsnServerConfiguration.md b/docset/winserver2012r2-ps/dfsn/Get-DfsnServerConfiguration.md index cc189074b7..78fea172b5 100644 --- a/docset/winserver2012r2-ps/dfsn/Get-DfsnServerConfiguration.md +++ b/docset/winserver2012r2-ps/dfsn/Get-DfsnServerConfiguration.md @@ -2,7 +2,7 @@ external help file: DfsNamespaceServerConfig.cdxml-help.xml Module Name: DFSN ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsn/get-dfsnserverconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/get-dfsnserverconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsnServerConfiguration --- diff --git a/docset/winserver2012r2-ps/dfsn/Grant-DfsnAccess.md b/docset/winserver2012r2-ps/dfsn/Grant-DfsnAccess.md index 1ee3a43c48..322a17aad2 100644 --- a/docset/winserver2012r2-ps/dfsn/Grant-DfsnAccess.md +++ b/docset/winserver2012r2-ps/dfsn/Grant-DfsnAccess.md @@ -2,7 +2,7 @@ external help file: DfsNamespaceAccess.cdxml-help.xml Module Name: DFSN ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsn/grant-dfsnaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/grant-dfsnaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Grant-DfsnAccess --- diff --git a/docset/winserver2012r2-ps/dfsn/Move-DfsnFolder.md b/docset/winserver2012r2-ps/dfsn/Move-DfsnFolder.md index 9c2eca66ff..c160ac87f3 100644 --- a/docset/winserver2012r2-ps/dfsn/Move-DfsnFolder.md +++ b/docset/winserver2012r2-ps/dfsn/Move-DfsnFolder.md @@ -2,7 +2,7 @@ external help file: DfsNamespaceFolder.cdxml-help.xml Module Name: DFSN ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsn/move-dfsnfolder?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/move-dfsnfolder?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-DfsnFolder --- diff --git a/docset/winserver2012r2-ps/dfsn/New-DfsnFolder.md b/docset/winserver2012r2-ps/dfsn/New-DfsnFolder.md index b31e509f5c..56bdaf17f6 100644 --- a/docset/winserver2012r2-ps/dfsn/New-DfsnFolder.md +++ b/docset/winserver2012r2-ps/dfsn/New-DfsnFolder.md @@ -2,7 +2,7 @@ external help file: DfsNamespaceFolder.cdxml-help.xml Module Name: DFSN ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsn/new-dfsnfolder?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/new-dfsnfolder?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-DfsnFolder --- diff --git a/docset/winserver2012r2-ps/dfsn/New-DfsnFolderTarget.md b/docset/winserver2012r2-ps/dfsn/New-DfsnFolderTarget.md index b6ca1df53a..388ef643e0 100644 --- a/docset/winserver2012r2-ps/dfsn/New-DfsnFolderTarget.md +++ b/docset/winserver2012r2-ps/dfsn/New-DfsnFolderTarget.md @@ -2,7 +2,7 @@ external help file: DfsNamespaceFolderTarget.cdxml-help.xml Module Name: DFSN ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsn/new-dfsnfoldertarget?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/new-dfsnfoldertarget?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-DfsnFolderTarget --- diff --git a/docset/winserver2012r2-ps/dfsn/New-DfsnRoot.md b/docset/winserver2012r2-ps/dfsn/New-DfsnRoot.md index 600d29afcd..0e07f1e532 100644 --- a/docset/winserver2012r2-ps/dfsn/New-DfsnRoot.md +++ b/docset/winserver2012r2-ps/dfsn/New-DfsnRoot.md @@ -2,7 +2,7 @@ external help file: DfsNamespace.cdxml-help.xml Module Name: DFSN ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsn/new-dfsnroot?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/new-dfsnroot?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-DfsnRoot --- diff --git a/docset/winserver2012r2-ps/dfsn/New-DfsnRootTarget.md b/docset/winserver2012r2-ps/dfsn/New-DfsnRootTarget.md index ae841cafc0..fdddae981e 100644 --- a/docset/winserver2012r2-ps/dfsn/New-DfsnRootTarget.md +++ b/docset/winserver2012r2-ps/dfsn/New-DfsnRootTarget.md @@ -2,7 +2,7 @@ external help file: DfsNamespaceRootTarget.cdxml-help.xml Module Name: DFSN ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsn/new-dfsnroottarget?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/new-dfsnroottarget?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-DfsnRootTarget --- diff --git a/docset/winserver2012r2-ps/dfsn/Remove-DfsnAccess.md b/docset/winserver2012r2-ps/dfsn/Remove-DfsnAccess.md index 715cec0b36..f08844d594 100644 --- a/docset/winserver2012r2-ps/dfsn/Remove-DfsnAccess.md +++ b/docset/winserver2012r2-ps/dfsn/Remove-DfsnAccess.md @@ -2,7 +2,7 @@ external help file: DfsNamespaceAccess.cdxml-help.xml Module Name: DFSN ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsn/remove-dfsnaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/remove-dfsnaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DfsnAccess --- diff --git a/docset/winserver2012r2-ps/dfsn/Remove-DfsnFolder.md b/docset/winserver2012r2-ps/dfsn/Remove-DfsnFolder.md index 871f67445a..e168d0283c 100644 --- a/docset/winserver2012r2-ps/dfsn/Remove-DfsnFolder.md +++ b/docset/winserver2012r2-ps/dfsn/Remove-DfsnFolder.md @@ -2,7 +2,7 @@ external help file: DfsNamespaceFolder.cdxml-help.xml Module Name: DFSN ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsn/remove-dfsnfolder?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/remove-dfsnfolder?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DfsnFolder --- diff --git a/docset/winserver2012r2-ps/dfsn/Remove-DfsnFolderTarget.md b/docset/winserver2012r2-ps/dfsn/Remove-DfsnFolderTarget.md index 6479f0ee4c..1600a5a65a 100644 --- a/docset/winserver2012r2-ps/dfsn/Remove-DfsnFolderTarget.md +++ b/docset/winserver2012r2-ps/dfsn/Remove-DfsnFolderTarget.md @@ -2,7 +2,7 @@ external help file: DfsNamespaceFolderTarget.cdxml-help.xml Module Name: DFSN ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsn/remove-dfsnfoldertarget?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/remove-dfsnfoldertarget?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DfsnFolderTarget --- diff --git a/docset/winserver2012r2-ps/dfsn/Remove-DfsnRoot.md b/docset/winserver2012r2-ps/dfsn/Remove-DfsnRoot.md index 5de6760caa..b51560d12d 100644 --- a/docset/winserver2012r2-ps/dfsn/Remove-DfsnRoot.md +++ b/docset/winserver2012r2-ps/dfsn/Remove-DfsnRoot.md @@ -2,7 +2,7 @@ external help file: DfsNamespace.cdxml-help.xml Module Name: DFSN ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsn/remove-dfsnroot?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/remove-dfsnroot?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DfsnRoot --- diff --git a/docset/winserver2012r2-ps/dfsn/Remove-DfsnRootTarget.md b/docset/winserver2012r2-ps/dfsn/Remove-DfsnRootTarget.md index 1f06c9ad7a..77c9902c23 100644 --- a/docset/winserver2012r2-ps/dfsn/Remove-DfsnRootTarget.md +++ b/docset/winserver2012r2-ps/dfsn/Remove-DfsnRootTarget.md @@ -2,7 +2,7 @@ external help file: DfsNamespaceRootTarget.cdxml-help.xml Module Name: DFSN ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsn/remove-dfsnroottarget?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/remove-dfsnroottarget?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DfsnRootTarget --- diff --git a/docset/winserver2012r2-ps/dfsn/Revoke-DfsnAccess.md b/docset/winserver2012r2-ps/dfsn/Revoke-DfsnAccess.md index c51785cf57..6f2e77e82a 100644 --- a/docset/winserver2012r2-ps/dfsn/Revoke-DfsnAccess.md +++ b/docset/winserver2012r2-ps/dfsn/Revoke-DfsnAccess.md @@ -2,7 +2,7 @@ external help file: DfsNamespaceAccess.cdxml-help.xml Module Name: DFSN ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsn/revoke-dfsnaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/revoke-dfsnaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Revoke-DfsnAccess --- diff --git a/docset/winserver2012r2-ps/dfsn/Set-DfsnFolder.md b/docset/winserver2012r2-ps/dfsn/Set-DfsnFolder.md index d644dd2e7b..a98840030c 100644 --- a/docset/winserver2012r2-ps/dfsn/Set-DfsnFolder.md +++ b/docset/winserver2012r2-ps/dfsn/Set-DfsnFolder.md @@ -2,7 +2,7 @@ external help file: DfsNamespaceFolder.cdxml-help.xml Module Name: DFSN ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsn/set-dfsnfolder?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/set-dfsnfolder?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DfsnFolder --- diff --git a/docset/winserver2012r2-ps/dfsn/Set-DfsnFolderTarget.md b/docset/winserver2012r2-ps/dfsn/Set-DfsnFolderTarget.md index 1948259843..02c7c319b2 100644 --- a/docset/winserver2012r2-ps/dfsn/Set-DfsnFolderTarget.md +++ b/docset/winserver2012r2-ps/dfsn/Set-DfsnFolderTarget.md @@ -2,7 +2,7 @@ external help file: DfsNamespaceFolderTarget.cdxml-help.xml Module Name: DFSN ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsn/set-dfsnfoldertarget?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/set-dfsnfoldertarget?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DfsnFolderTarget --- diff --git a/docset/winserver2012r2-ps/dfsn/Set-DfsnRoot.md b/docset/winserver2012r2-ps/dfsn/Set-DfsnRoot.md index 57a9a7775f..63dec9d772 100644 --- a/docset/winserver2012r2-ps/dfsn/Set-DfsnRoot.md +++ b/docset/winserver2012r2-ps/dfsn/Set-DfsnRoot.md @@ -2,7 +2,7 @@ external help file: DfsNamespace.cdxml-help.xml Module Name: DFSN ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsn/set-dfsnroot?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/set-dfsnroot?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DfsnRoot --- diff --git a/docset/winserver2012r2-ps/dfsn/Set-DfsnRootTarget.md b/docset/winserver2012r2-ps/dfsn/Set-DfsnRootTarget.md index f03c2e85b8..05946e2c0d 100644 --- a/docset/winserver2012r2-ps/dfsn/Set-DfsnRootTarget.md +++ b/docset/winserver2012r2-ps/dfsn/Set-DfsnRootTarget.md @@ -2,7 +2,7 @@ external help file: DfsNamespaceRootTarget.cdxml-help.xml Module Name: DFSN ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsn/set-dfsnroottarget?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/set-dfsnroottarget?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DfsnRootTarget --- diff --git a/docset/winserver2012r2-ps/dfsn/Set-DfsnServerConfiguration.md b/docset/winserver2012r2-ps/dfsn/Set-DfsnServerConfiguration.md index 3b747b2cc4..64547aa2f2 100644 --- a/docset/winserver2012r2-ps/dfsn/Set-DfsnServerConfiguration.md +++ b/docset/winserver2012r2-ps/dfsn/Set-DfsnServerConfiguration.md @@ -2,7 +2,7 @@ external help file: DfsNamespaceServerConfig.cdxml-help.xml Module Name: DFSN ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsn/set-dfsnserverconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/set-dfsnserverconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DfsnServerConfiguration --- diff --git a/docset/winserver2012r2-ps/dfsr/Add-DfsrConnection.md b/docset/winserver2012r2-ps/dfsr/Add-DfsrConnection.md index 6a06af339e..77edf4602c 100644 --- a/docset/winserver2012r2-ps/dfsr/Add-DfsrConnection.md +++ b/docset/winserver2012r2-ps/dfsr/Add-DfsrConnection.md @@ -2,7 +2,7 @@ external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsr/add-dfsrconnection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/add-dfsrconnection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DfsrConnection --- diff --git a/docset/winserver2012r2-ps/dfsr/Add-DfsrMember.md b/docset/winserver2012r2-ps/dfsr/Add-DfsrMember.md index baa83eb4ac..4dedabd372 100644 --- a/docset/winserver2012r2-ps/dfsr/Add-DfsrMember.md +++ b/docset/winserver2012r2-ps/dfsr/Add-DfsrMember.md @@ -2,7 +2,7 @@ external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsr/add-dfsrmember?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/add-dfsrmember?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DfsrMember --- diff --git a/docset/winserver2012r2-ps/dfsr/ConvertFrom-DfsrGuid.md b/docset/winserver2012r2-ps/dfsr/ConvertFrom-DfsrGuid.md index 0fd335d07e..b71a1a88b5 100644 --- a/docset/winserver2012r2-ps/dfsr/ConvertFrom-DfsrGuid.md +++ b/docset/winserver2012r2-ps/dfsr/ConvertFrom-DfsrGuid.md @@ -2,7 +2,7 @@ external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsr/convertfrom-dfsrguid?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/convertfrom-dfsrguid?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: ConvertFrom-DfsrGuid --- diff --git a/docset/winserver2012r2-ps/dfsr/Export-DfsrClone.md b/docset/winserver2012r2-ps/dfsr/Export-DfsrClone.md index f69fc70c6e..89d44b8be3 100644 --- a/docset/winserver2012r2-ps/dfsr/Export-DfsrClone.md +++ b/docset/winserver2012r2-ps/dfsr/Export-DfsrClone.md @@ -2,7 +2,7 @@ external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsr/export-dfsrclone?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/export-dfsrclone?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-DfsrClone --- diff --git a/docset/winserver2012r2-ps/dfsr/Get-DfsReplicatedFolder.md b/docset/winserver2012r2-ps/dfsr/Get-DfsReplicatedFolder.md index 5f83c75aa8..9e86096bbb 100644 --- a/docset/winserver2012r2-ps/dfsr/Get-DfsReplicatedFolder.md +++ b/docset/winserver2012r2-ps/dfsr/Get-DfsReplicatedFolder.md @@ -2,7 +2,7 @@ external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsreplicatedfolder?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsreplicatedfolder?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsReplicatedFolder --- diff --git a/docset/winserver2012r2-ps/dfsr/Get-DfsReplicationGroup.md b/docset/winserver2012r2-ps/dfsr/Get-DfsReplicationGroup.md index 3176e41b7c..27d2958862 100644 --- a/docset/winserver2012r2-ps/dfsr/Get-DfsReplicationGroup.md +++ b/docset/winserver2012r2-ps/dfsr/Get-DfsReplicationGroup.md @@ -2,7 +2,7 @@ external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsreplicationgroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsreplicationgroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsReplicationGroup --- diff --git a/docset/winserver2012r2-ps/dfsr/Get-DfsrBacklog.md b/docset/winserver2012r2-ps/dfsr/Get-DfsrBacklog.md index 61abcc2278..917334aa42 100644 --- a/docset/winserver2012r2-ps/dfsr/Get-DfsrBacklog.md +++ b/docset/winserver2012r2-ps/dfsr/Get-DfsrBacklog.md @@ -2,7 +2,7 @@ external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsrbacklog?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsrbacklog?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsrBacklog --- diff --git a/docset/winserver2012r2-ps/dfsr/Get-DfsrCloneState.md b/docset/winserver2012r2-ps/dfsr/Get-DfsrCloneState.md index 3ff0af7b08..8e287e9242 100644 --- a/docset/winserver2012r2-ps/dfsr/Get-DfsrCloneState.md +++ b/docset/winserver2012r2-ps/dfsr/Get-DfsrCloneState.md @@ -2,7 +2,7 @@ external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsrclonestate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsrclonestate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsrCloneState --- diff --git a/docset/winserver2012r2-ps/dfsr/Get-DfsrConnection.md b/docset/winserver2012r2-ps/dfsr/Get-DfsrConnection.md index 4ab5502020..c667682d1c 100644 --- a/docset/winserver2012r2-ps/dfsr/Get-DfsrConnection.md +++ b/docset/winserver2012r2-ps/dfsr/Get-DfsrConnection.md @@ -2,7 +2,7 @@ external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsrconnection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsrconnection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsrConnection --- diff --git a/docset/winserver2012r2-ps/dfsr/Get-DfsrConnectionSchedule.md b/docset/winserver2012r2-ps/dfsr/Get-DfsrConnectionSchedule.md index 31a5a953b5..86749302bf 100644 --- a/docset/winserver2012r2-ps/dfsr/Get-DfsrConnectionSchedule.md +++ b/docset/winserver2012r2-ps/dfsr/Get-DfsrConnectionSchedule.md @@ -2,7 +2,7 @@ external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsrconnectionschedule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsrconnectionschedule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsrConnectionSchedule --- diff --git a/docset/winserver2012r2-ps/dfsr/Get-DfsrFileHash.md b/docset/winserver2012r2-ps/dfsr/Get-DfsrFileHash.md index 88e5152dba..e48d49f47c 100644 --- a/docset/winserver2012r2-ps/dfsr/Get-DfsrFileHash.md +++ b/docset/winserver2012r2-ps/dfsr/Get-DfsrFileHash.md @@ -2,7 +2,7 @@ external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsrfilehash?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsrfilehash?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsrFileHash --- diff --git a/docset/winserver2012r2-ps/dfsr/Get-DfsrGroupSchedule.md b/docset/winserver2012r2-ps/dfsr/Get-DfsrGroupSchedule.md index b7eb6b1b5d..4d557d475d 100644 --- a/docset/winserver2012r2-ps/dfsr/Get-DfsrGroupSchedule.md +++ b/docset/winserver2012r2-ps/dfsr/Get-DfsrGroupSchedule.md @@ -2,7 +2,7 @@ external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsrgroupschedule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsrgroupschedule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsrGroupSchedule --- diff --git a/docset/winserver2012r2-ps/dfsr/Get-DfsrIdRecord.md b/docset/winserver2012r2-ps/dfsr/Get-DfsrIdRecord.md index 9a1fb9a577..481fbf0a95 100644 --- a/docset/winserver2012r2-ps/dfsr/Get-DfsrIdRecord.md +++ b/docset/winserver2012r2-ps/dfsr/Get-DfsrIdRecord.md @@ -2,7 +2,7 @@ external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsridrecord?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsridrecord?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsrIdRecord --- diff --git a/docset/winserver2012r2-ps/dfsr/Get-DfsrMember.md b/docset/winserver2012r2-ps/dfsr/Get-DfsrMember.md index a64e7a109f..51a1de9893 100644 --- a/docset/winserver2012r2-ps/dfsr/Get-DfsrMember.md +++ b/docset/winserver2012r2-ps/dfsr/Get-DfsrMember.md @@ -2,7 +2,7 @@ external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsrmember?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsrmember?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsrMember --- diff --git a/docset/winserver2012r2-ps/dfsr/Get-DfsrMembership.md b/docset/winserver2012r2-ps/dfsr/Get-DfsrMembership.md index 7eba56651c..366288ab22 100644 --- a/docset/winserver2012r2-ps/dfsr/Get-DfsrMembership.md +++ b/docset/winserver2012r2-ps/dfsr/Get-DfsrMembership.md @@ -2,7 +2,7 @@ external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsrmembership?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsrmembership?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsrMembership --- diff --git a/docset/winserver2012r2-ps/dfsr/Get-DfsrPreservedFiles.md b/docset/winserver2012r2-ps/dfsr/Get-DfsrPreservedFiles.md index 676ccd2662..e5703b9126 100644 --- a/docset/winserver2012r2-ps/dfsr/Get-DfsrPreservedFiles.md +++ b/docset/winserver2012r2-ps/dfsr/Get-DfsrPreservedFiles.md @@ -2,7 +2,7 @@ external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsrpreservedfiles?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsrpreservedfiles?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsrPreservedFiles --- diff --git a/docset/winserver2012r2-ps/dfsr/Get-DfsrServiceConfiguration.md b/docset/winserver2012r2-ps/dfsr/Get-DfsrServiceConfiguration.md index f8a7ed5bca..2baec5c44c 100644 --- a/docset/winserver2012r2-ps/dfsr/Get-DfsrServiceConfiguration.md +++ b/docset/winserver2012r2-ps/dfsr/Get-DfsrServiceConfiguration.md @@ -2,7 +2,7 @@ external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsrserviceconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsrserviceconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsrServiceConfiguration --- diff --git a/docset/winserver2012r2-ps/dfsr/Get-DfsrState.md b/docset/winserver2012r2-ps/dfsr/Get-DfsrState.md index 9a45f24b6b..d21077f0d0 100644 --- a/docset/winserver2012r2-ps/dfsr/Get-DfsrState.md +++ b/docset/winserver2012r2-ps/dfsr/Get-DfsrState.md @@ -2,7 +2,7 @@ external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsrstate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsrstate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsrState --- diff --git a/docset/winserver2012r2-ps/dfsr/Import-DfsrClone.md b/docset/winserver2012r2-ps/dfsr/Import-DfsrClone.md index 4745056b91..babfbba376 100644 --- a/docset/winserver2012r2-ps/dfsr/Import-DfsrClone.md +++ b/docset/winserver2012r2-ps/dfsr/Import-DfsrClone.md @@ -2,7 +2,7 @@ external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsr/import-dfsrclone?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/import-dfsrclone?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-DfsrClone --- diff --git a/docset/winserver2012r2-ps/dfsr/New-DfsReplicatedFolder.md b/docset/winserver2012r2-ps/dfsr/New-DfsReplicatedFolder.md index 6fe2fafb2d..a7e927ea19 100644 --- a/docset/winserver2012r2-ps/dfsr/New-DfsReplicatedFolder.md +++ b/docset/winserver2012r2-ps/dfsr/New-DfsReplicatedFolder.md @@ -2,7 +2,7 @@ external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsr/new-dfsreplicatedfolder?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/new-dfsreplicatedfolder?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-DfsReplicatedFolder --- diff --git a/docset/winserver2012r2-ps/dfsr/New-DfsReplicationGroup.md b/docset/winserver2012r2-ps/dfsr/New-DfsReplicationGroup.md index abad8d7438..2d3a306ae1 100644 --- a/docset/winserver2012r2-ps/dfsr/New-DfsReplicationGroup.md +++ b/docset/winserver2012r2-ps/dfsr/New-DfsReplicationGroup.md @@ -2,7 +2,7 @@ external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsr/new-dfsreplicationgroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/new-dfsreplicationgroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-DfsReplicationGroup --- diff --git a/docset/winserver2012r2-ps/dfsr/Remove-DfsReplicatedFolder.md b/docset/winserver2012r2-ps/dfsr/Remove-DfsReplicatedFolder.md index bac29c2184..b3f8e33ba8 100644 --- a/docset/winserver2012r2-ps/dfsr/Remove-DfsReplicatedFolder.md +++ b/docset/winserver2012r2-ps/dfsr/Remove-DfsReplicatedFolder.md @@ -2,7 +2,7 @@ external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsr/remove-dfsreplicatedfolder?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/remove-dfsreplicatedfolder?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DfsReplicatedFolder --- diff --git a/docset/winserver2012r2-ps/dfsr/Remove-DfsReplicationGroup.md b/docset/winserver2012r2-ps/dfsr/Remove-DfsReplicationGroup.md index 04bc5c83b6..ee957f08d3 100644 --- a/docset/winserver2012r2-ps/dfsr/Remove-DfsReplicationGroup.md +++ b/docset/winserver2012r2-ps/dfsr/Remove-DfsReplicationGroup.md @@ -2,7 +2,7 @@ external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsr/remove-dfsreplicationgroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/remove-dfsreplicationgroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DfsReplicationGroup --- diff --git a/docset/winserver2012r2-ps/dfsr/Remove-DfsrConnection.md b/docset/winserver2012r2-ps/dfsr/Remove-DfsrConnection.md index 676689f680..b830d36571 100644 --- a/docset/winserver2012r2-ps/dfsr/Remove-DfsrConnection.md +++ b/docset/winserver2012r2-ps/dfsr/Remove-DfsrConnection.md @@ -2,7 +2,7 @@ external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsr/remove-dfsrconnection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/remove-dfsrconnection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DfsrConnection --- diff --git a/docset/winserver2012r2-ps/dfsr/Remove-DfsrMember.md b/docset/winserver2012r2-ps/dfsr/Remove-DfsrMember.md index 62052e9e1d..ef5ae28125 100644 --- a/docset/winserver2012r2-ps/dfsr/Remove-DfsrMember.md +++ b/docset/winserver2012r2-ps/dfsr/Remove-DfsrMember.md @@ -2,7 +2,7 @@ external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsr/remove-dfsrmember?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/remove-dfsrmember?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DfsrMember --- diff --git a/docset/winserver2012r2-ps/dfsr/Remove-DfsrPropagationTestFile.md b/docset/winserver2012r2-ps/dfsr/Remove-DfsrPropagationTestFile.md index 6fc05aee1c..e13c34b299 100644 --- a/docset/winserver2012r2-ps/dfsr/Remove-DfsrPropagationTestFile.md +++ b/docset/winserver2012r2-ps/dfsr/Remove-DfsrPropagationTestFile.md @@ -2,7 +2,7 @@ external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsr/remove-dfsrpropagationtestfile?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/remove-dfsrpropagationtestfile?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DfsrPropagationTestFile --- diff --git a/docset/winserver2012r2-ps/dfsr/Reset-DfsrCloneState.md b/docset/winserver2012r2-ps/dfsr/Reset-DfsrCloneState.md index 0bb67decce..c1d02150ca 100644 --- a/docset/winserver2012r2-ps/dfsr/Reset-DfsrCloneState.md +++ b/docset/winserver2012r2-ps/dfsr/Reset-DfsrCloneState.md @@ -2,7 +2,7 @@ external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsr/reset-dfsrclonestate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/reset-dfsrclonestate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-DfsrCloneState --- diff --git a/docset/winserver2012r2-ps/dfsr/Restore-DfsrPreservedFiles.md b/docset/winserver2012r2-ps/dfsr/Restore-DfsrPreservedFiles.md index 2449e299e4..1dfa2085bb 100644 --- a/docset/winserver2012r2-ps/dfsr/Restore-DfsrPreservedFiles.md +++ b/docset/winserver2012r2-ps/dfsr/Restore-DfsrPreservedFiles.md @@ -2,7 +2,7 @@ external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsr/restore-dfsrpreservedfiles?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/restore-dfsrpreservedfiles?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-DfsrPreservedFiles --- diff --git a/docset/winserver2012r2-ps/dfsr/Set-DfsReplicatedFolder.md b/docset/winserver2012r2-ps/dfsr/Set-DfsReplicatedFolder.md index 0cc6aa37b0..bacb9d17d1 100644 --- a/docset/winserver2012r2-ps/dfsr/Set-DfsReplicatedFolder.md +++ b/docset/winserver2012r2-ps/dfsr/Set-DfsReplicatedFolder.md @@ -2,7 +2,7 @@ external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsr/set-dfsreplicatedfolder?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/set-dfsreplicatedfolder?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DfsReplicatedFolder --- diff --git a/docset/winserver2012r2-ps/dfsr/Set-DfsReplicationGroup.md b/docset/winserver2012r2-ps/dfsr/Set-DfsReplicationGroup.md index 9083431dc0..5fc423a2b4 100644 --- a/docset/winserver2012r2-ps/dfsr/Set-DfsReplicationGroup.md +++ b/docset/winserver2012r2-ps/dfsr/Set-DfsReplicationGroup.md @@ -2,7 +2,7 @@ external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsr/set-dfsreplicationgroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/set-dfsreplicationgroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DfsReplicationGroup --- diff --git a/docset/winserver2012r2-ps/dfsr/Set-DfsrConnection.md b/docset/winserver2012r2-ps/dfsr/Set-DfsrConnection.md index 873d0cea38..7b953051b0 100644 --- a/docset/winserver2012r2-ps/dfsr/Set-DfsrConnection.md +++ b/docset/winserver2012r2-ps/dfsr/Set-DfsrConnection.md @@ -2,7 +2,7 @@ external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsr/set-dfsrconnection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/set-dfsrconnection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DfsrConnection --- diff --git a/docset/winserver2012r2-ps/dfsr/Set-DfsrConnectionSchedule.md b/docset/winserver2012r2-ps/dfsr/Set-DfsrConnectionSchedule.md index 657f2386dd..3cd7209552 100644 --- a/docset/winserver2012r2-ps/dfsr/Set-DfsrConnectionSchedule.md +++ b/docset/winserver2012r2-ps/dfsr/Set-DfsrConnectionSchedule.md @@ -2,7 +2,7 @@ external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsr/set-dfsrconnectionschedule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/set-dfsrconnectionschedule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DfsrConnectionSchedule --- diff --git a/docset/winserver2012r2-ps/dfsr/Set-DfsrGroupSchedule.md b/docset/winserver2012r2-ps/dfsr/Set-DfsrGroupSchedule.md index 633d6e88e7..99cc3488b4 100644 --- a/docset/winserver2012r2-ps/dfsr/Set-DfsrGroupSchedule.md +++ b/docset/winserver2012r2-ps/dfsr/Set-DfsrGroupSchedule.md @@ -2,7 +2,7 @@ external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsr/set-dfsrgroupschedule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/set-dfsrgroupschedule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DfsrGroupSchedule --- diff --git a/docset/winserver2012r2-ps/dfsr/Set-DfsrMember.md b/docset/winserver2012r2-ps/dfsr/Set-DfsrMember.md index ca03826740..0b7afd8b1c 100644 --- a/docset/winserver2012r2-ps/dfsr/Set-DfsrMember.md +++ b/docset/winserver2012r2-ps/dfsr/Set-DfsrMember.md @@ -2,7 +2,7 @@ external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsr/set-dfsrmember?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/set-dfsrmember?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DfsrMember --- diff --git a/docset/winserver2012r2-ps/dfsr/Set-DfsrMembership.md b/docset/winserver2012r2-ps/dfsr/Set-DfsrMembership.md index 0958b544a7..916a8356ee 100644 --- a/docset/winserver2012r2-ps/dfsr/Set-DfsrMembership.md +++ b/docset/winserver2012r2-ps/dfsr/Set-DfsrMembership.md @@ -2,7 +2,7 @@ external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsr/set-dfsrmembership?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/set-dfsrmembership?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DfsrMembership --- diff --git a/docset/winserver2012r2-ps/dfsr/Set-DfsrServiceConfiguration.md b/docset/winserver2012r2-ps/dfsr/Set-DfsrServiceConfiguration.md index b37eefbb95..749c5b76b2 100644 --- a/docset/winserver2012r2-ps/dfsr/Set-DfsrServiceConfiguration.md +++ b/docset/winserver2012r2-ps/dfsr/Set-DfsrServiceConfiguration.md @@ -2,7 +2,7 @@ external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsr/set-dfsrserviceconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/set-dfsrserviceconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DfsrServiceConfiguration --- diff --git a/docset/winserver2012r2-ps/dfsr/Start-DfsrPropagationTest.md b/docset/winserver2012r2-ps/dfsr/Start-DfsrPropagationTest.md index b93a725787..f40a7f860b 100644 --- a/docset/winserver2012r2-ps/dfsr/Start-DfsrPropagationTest.md +++ b/docset/winserver2012r2-ps/dfsr/Start-DfsrPropagationTest.md @@ -2,7 +2,7 @@ external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsr/start-dfsrpropagationtest?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/start-dfsrpropagationtest?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-DfsrPropagationTest --- diff --git a/docset/winserver2012r2-ps/dfsr/Suspend-DfsReplicationGroup.md b/docset/winserver2012r2-ps/dfsr/Suspend-DfsReplicationGroup.md index 0421a83192..060ff0b522 100644 --- a/docset/winserver2012r2-ps/dfsr/Suspend-DfsReplicationGroup.md +++ b/docset/winserver2012r2-ps/dfsr/Suspend-DfsReplicationGroup.md @@ -2,7 +2,7 @@ external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsr/suspend-dfsreplicationgroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/suspend-dfsreplicationgroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-DfsReplicationGroup --- diff --git a/docset/winserver2012r2-ps/dfsr/Sync-DfsReplicationGroup.md b/docset/winserver2012r2-ps/dfsr/Sync-DfsReplicationGroup.md index 202d2a2fba..75e7e1f7f8 100644 --- a/docset/winserver2012r2-ps/dfsr/Sync-DfsReplicationGroup.md +++ b/docset/winserver2012r2-ps/dfsr/Sync-DfsReplicationGroup.md @@ -2,7 +2,7 @@ external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsr/sync-dfsreplicationgroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/sync-dfsreplicationgroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Sync-DfsReplicationGroup --- diff --git a/docset/winserver2012r2-ps/dfsr/Update-DfsrConfigurationFromAD.md b/docset/winserver2012r2-ps/dfsr/Update-DfsrConfigurationFromAD.md index 33ef1218dd..2bda88e9d3 100644 --- a/docset/winserver2012r2-ps/dfsr/Update-DfsrConfigurationFromAD.md +++ b/docset/winserver2012r2-ps/dfsr/Update-DfsrConfigurationFromAD.md @@ -2,7 +2,7 @@ external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsr/update-dfsrconfigurationfromad?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/update-dfsrconfigurationfromad?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-DfsrConfigurationFromAD --- diff --git a/docset/winserver2012r2-ps/dfsr/Write-DfsrHealthReport.md b/docset/winserver2012r2-ps/dfsr/Write-DfsrHealthReport.md index 096fe13513..cc0dbbae04 100644 --- a/docset/winserver2012r2-ps/dfsr/Write-DfsrHealthReport.md +++ b/docset/winserver2012r2-ps/dfsr/Write-DfsrHealthReport.md @@ -2,7 +2,7 @@ external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsr/write-dfsrhealthreport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/write-dfsrhealthreport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Write-DfsrHealthReport --- diff --git a/docset/winserver2012r2-ps/dfsr/Write-DfsrPropagationReport.md b/docset/winserver2012r2-ps/dfsr/Write-DfsrPropagationReport.md index 49e7c3dfaa..31bfebf59f 100644 --- a/docset/winserver2012r2-ps/dfsr/Write-DfsrPropagationReport.md +++ b/docset/winserver2012r2-ps/dfsr/Write-DfsrPropagationReport.md @@ -2,7 +2,7 @@ external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dfsr/write-dfsrpropagationreport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/write-dfsrpropagationreport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Write-DfsrPropagationReport --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerInDC.md b/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerInDC.md index 34823915e9..3dc59df8f2 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerInDC.md +++ b/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerInDC.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerInDC_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverindc?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverindc?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerInDC --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerSecurityGroup.md b/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerSecurityGroup.md index 591a06a9f2..a5b059bbff 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerSecurityGroup.md +++ b/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerSecurityGroup.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerSecurityGroup_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserversecuritygroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserversecuritygroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerSecurityGroup --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4Class.md b/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4Class.md index 66c9dfe1b8..9c2912ebc3 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4Class.md +++ b/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4Class.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerv4Class_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4class?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4class?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4Class --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4ExclusionRange.md b/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4ExclusionRange.md index 89c488b575..640b4f673c 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4ExclusionRange.md +++ b/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4ExclusionRange.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerV4ExclusionRange_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4exclusionrange?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4exclusionrange?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4ExclusionRange --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4Failover.md b/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4Failover.md index 9585debb73..e7b47c95f9 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4Failover.md +++ b/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4Failover.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerv4Failover_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4failover?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4failover?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4Failover --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4FailoverScope.md b/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4FailoverScope.md index 57b5322f2b..c53bde0c04 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4FailoverScope.md +++ b/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4FailoverScope.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerv4FailoverScope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4failoverscope?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4failoverscope?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4FailoverScope --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4Filter.md b/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4Filter.md index 1994cd2a4c..94cd30bd22 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4Filter.md +++ b/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4Filter.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerv4Filter_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4filter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4filter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4Filter --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4Lease.md b/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4Lease.md index 1a51f4f436..9b1ad1c4a6 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4Lease.md +++ b/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4Lease.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerv4Lease_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4lease?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4lease?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4Lease --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4MulticastExclusionRange.md b/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4MulticastExclusionRange.md index d853fb103e..3e030bbaf0 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4MulticastExclusionRange.md +++ b/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4MulticastExclusionRange.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerv4MulticastExclusionRange_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4multicastexclusionrange?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4multicastexclusionrange?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4MulticastExclusionRange --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4MulticastScope.md b/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4MulticastScope.md index 368ad122c3..a078fcd4a3 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4MulticastScope.md +++ b/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4MulticastScope.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerV4MulticastScope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4multicastscope?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4multicastscope?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4MulticastScope --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4OptionDefinition.md b/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4OptionDefinition.md index 5a9592d470..4e23494283 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4OptionDefinition.md +++ b/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4OptionDefinition.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerV4OptionDefinition_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4optiondefinition?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4optiondefinition?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4OptionDefinition --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4Policy.md b/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4Policy.md index 88158a920b..54ddea11c1 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4Policy.md +++ b/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4Policy.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerv4Policy_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4policy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4policy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4Policy --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4PolicyIPRange.md b/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4PolicyIPRange.md index 77196ccbbd..14d81f978a 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4PolicyIPRange.md +++ b/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4PolicyIPRange.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerv4PolicyIPRange_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4policyiprange?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4policyiprange?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4PolicyIPRange --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4Reservation.md b/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4Reservation.md index fef620005d..a0b93d4e45 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4Reservation.md +++ b/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4Reservation.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerV4Reservation_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4reservation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4reservation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4Reservation --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4Scope.md b/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4Scope.md index cee3ffe6f6..1866f08895 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4Scope.md +++ b/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4Scope.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerV4Scope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4scope?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4scope?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4Scope --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4Superscope.md b/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4Superscope.md index 250ae8e21b..b9a6c6ca2c 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4Superscope.md +++ b/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv4Superscope.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerV4Superscope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4superscope?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4superscope?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4Superscope --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv6Class.md b/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv6Class.md index c94e09b423..4105fd1ddb 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv6Class.md +++ b/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv6Class.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerv6Class_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6class?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6class?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv6Class --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv6ExclusionRange.md b/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv6ExclusionRange.md index adbd0b6dda..e84ba3ba0c 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv6ExclusionRange.md +++ b/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv6ExclusionRange.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerV6ExclusionRange_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6exclusionrange?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6exclusionrange?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv6ExclusionRange --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv6Lease.md b/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv6Lease.md index ca8b5ffa38..f9e6817b9d 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv6Lease.md +++ b/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv6Lease.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerv6Lease_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6lease?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6lease?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv6Lease --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv6OptionDefinition.md b/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv6OptionDefinition.md index 4b8616ea7c..7b50ba45f4 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv6OptionDefinition.md +++ b/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv6OptionDefinition.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerV6OptionDefinition_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6optiondefinition?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6optiondefinition?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv6OptionDefinition --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv6Reservation.md b/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv6Reservation.md index 073f6fd785..7cdd2ea3fe 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv6Reservation.md +++ b/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv6Reservation.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerV6Reservation_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6reservation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6reservation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv6Reservation --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv6Scope.md b/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv6Scope.md index 8a38edaea1..f0853ce06d 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv6Scope.md +++ b/docset/winserver2012r2-ps/dhcpserver/Add-DhcpServerv6Scope.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerV6Scope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6scope?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6scope?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv6Scope --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Backup-DhcpServer.md b/docset/winserver2012r2-ps/dhcpserver/Backup-DhcpServer.md index ea640b728a..37a17f39c8 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Backup-DhcpServer.md +++ b/docset/winserver2012r2-ps/dhcpserver/Backup-DhcpServer.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServer_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/backup-dhcpserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/backup-dhcpserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Backup-DhcpServer --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Export-DhcpServer.md b/docset/winserver2012r2-ps/dhcpserver/Export-DhcpServer.md index d094f7b795..88991e7aac 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Export-DhcpServer.md +++ b/docset/winserver2012r2-ps/dhcpserver/Export-DhcpServer.md @@ -2,7 +2,7 @@ external help file: DhcpServerMigration-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/export-dhcpserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/export-dhcpserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-DhcpServer --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerAuditLog.md b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerAuditLog.md index 9d87c2c32e..14a63b43b8 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerAuditLog.md +++ b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerAuditLog.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerAuditLog_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverauditlog?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverauditlog?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerAuditLog --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerDatabase.md b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerDatabase.md index 468074930b..babd67b5ed 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerDatabase.md +++ b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerDatabase.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerDatabase_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverdatabase?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverdatabase?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerDatabase --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerDnsCredential.md b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerDnsCredential.md index ac13d75bae..50418e7fee 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerDnsCredential.md +++ b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerDnsCredential.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerDnsCredential_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverdnscredential?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverdnscredential?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerDnsCredential --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerInDC.md b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerInDC.md index f2459cc78a..4ac260143b 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerInDC.md +++ b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerInDC.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerInDC_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverindc?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverindc?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerInDC --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerSetting.md b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerSetting.md index ac27b2757b..7a446a5074 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerSetting.md +++ b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerSetting.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerSetting_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserversetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserversetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerSetting --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerVersion.md b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerVersion.md index 54d58c0f4a..7828b4a1c8 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerVersion.md +++ b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerVersion.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerVersion_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverversion?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverversion?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerVersion --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4Binding.md b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4Binding.md index 7a176437f8..9c3e901d31 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4Binding.md +++ b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4Binding.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerV4Binding_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4binding?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4binding?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4Binding --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4Class.md b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4Class.md index fa2c4828b8..d868bd8b90 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4Class.md +++ b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4Class.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerv4Class_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4class?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4class?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4Class --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4DnsSetting.md b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4DnsSetting.md index cc4734f1b6..cf0b246e29 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4DnsSetting.md +++ b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4DnsSetting.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerv4DnsSetting_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4dnssetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4dnssetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4DnsSetting --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4ExclusionRange.md b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4ExclusionRange.md index 2c4ea876ff..7283e9aeea 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4ExclusionRange.md +++ b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4ExclusionRange.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerV4ExclusionRange_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4exclusionrange?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4exclusionrange?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4ExclusionRange --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4Failover.md b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4Failover.md index 8c799e0e43..c9a0454cb0 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4Failover.md +++ b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4Failover.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerv4Failover_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4failover?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4failover?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4Failover --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4Filter.md b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4Filter.md index c06b2afc0d..a9f7398e41 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4Filter.md +++ b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4Filter.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerv4Filter_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4filter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4filter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4Filter --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4FilterList.md b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4FilterList.md index 074bd18cc9..c294384e1e 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4FilterList.md +++ b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4FilterList.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerv4FilterList_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4filterlist?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4filterlist?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4FilterList --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4FreeIPAddress.md b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4FreeIPAddress.md index a712ac480f..36952906fe 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4FreeIPAddress.md +++ b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4FreeIPAddress.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerv4FreeIPAddress_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4freeipaddress?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4freeipaddress?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4FreeIPAddress --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4Lease.md b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4Lease.md index 056368bb5f..f1494e3e82 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4Lease.md +++ b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4Lease.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerv4Lease_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4lease?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4lease?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4Lease --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4MulticastExclusionRange.md b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4MulticastExclusionRange.md index 4c6a30595d..d1fc44a9ad 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4MulticastExclusionRange.md +++ b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4MulticastExclusionRange.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerv4MulticastExclusionRange_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4multicastexclusionrange?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4multicastexclusionrange?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4MulticastExclusionRange --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4MulticastLease.md b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4MulticastLease.md index e8dca033a5..e4d91799f7 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4MulticastLease.md +++ b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4MulticastLease.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerv4MulticastLease_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4multicastlease?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4multicastlease?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4MulticastLease --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4MulticastScope.md b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4MulticastScope.md index 99da5ac761..dfef7ede63 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4MulticastScope.md +++ b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4MulticastScope.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerV4MulticastScope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4multicastscope?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4multicastscope?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4MulticastScope --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4MulticastScopeStatistics.md b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4MulticastScopeStatistics.md index edac85b873..49d9913a8a 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4MulticastScopeStatistics.md +++ b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4MulticastScopeStatistics.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerv4MulticastScopeStatistics_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4multicastscopestatistics?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4multicastscopestatistics?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4MulticastScopeStatistics --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4OptionDefinition.md b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4OptionDefinition.md index b023b22a0c..eacad8693a 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4OptionDefinition.md +++ b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4OptionDefinition.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerV4OptionDefinition_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4optiondefinition?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4optiondefinition?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4OptionDefinition --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4OptionValue.md b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4OptionValue.md index 5d1c5c4aff..9b51441363 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4OptionValue.md +++ b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4OptionValue.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerV4OptionValue_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4optionvalue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4optionvalue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4OptionValue --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4Policy.md b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4Policy.md index 7718169c74..c0d34581c7 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4Policy.md +++ b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4Policy.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerv4Policy_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4policy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4policy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4Policy --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4PolicyIPRange.md b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4PolicyIPRange.md index 443beb382d..6ac186b4fd 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4PolicyIPRange.md +++ b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4PolicyIPRange.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerv4PolicyIPRange_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4policyiprange?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4policyiprange?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4PolicyIPRange --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4Reservation.md b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4Reservation.md index 65f3e4e7f0..3e68b2c4b0 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4Reservation.md +++ b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4Reservation.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerV4Reservation_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4reservation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4reservation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4Reservation --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4Scope.md b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4Scope.md index fc5e816503..2996d46bd8 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4Scope.md +++ b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4Scope.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerV4Scope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4scope?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4scope?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4Scope --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4ScopeStatistics.md b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4ScopeStatistics.md index e6e2824cb1..e0a7819319 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4ScopeStatistics.md +++ b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4ScopeStatistics.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerV4ScopeStatistics_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4scopestatistics?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4scopestatistics?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4ScopeStatistics --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4Statistics.md b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4Statistics.md index b9bf84f721..a0890e87b7 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4Statistics.md +++ b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4Statistics.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerv4Statistics_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4statistics?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4statistics?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4Statistics --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4Superscope.md b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4Superscope.md index 18c38f9022..78ff5a70c9 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4Superscope.md +++ b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4Superscope.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerV4Superscope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4superscope?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4superscope?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4Superscope --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4SuperscopeStatistics.md b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4SuperscopeStatistics.md index 1687e1942b..b9e7409837 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4SuperscopeStatistics.md +++ b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv4SuperscopeStatistics.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerV4SuperScopeStatistics_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4superscopestatistics?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4superscopestatistics?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4SuperscopeStatistics --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6Binding.md b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6Binding.md index 046b48de1e..9a077ff71b 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6Binding.md +++ b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6Binding.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerV6Binding_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6binding?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6binding?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6Binding --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6Class.md b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6Class.md index dfd67f4f2e..876f109216 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6Class.md +++ b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6Class.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerv6Class_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6class?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6class?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6Class --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6DnsSetting.md b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6DnsSetting.md index 5ae05f1555..2e321eff83 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6DnsSetting.md +++ b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6DnsSetting.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerv6DnsSetting_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6dnssetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6dnssetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6DnsSetting --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6ExclusionRange.md b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6ExclusionRange.md index 651d9a1115..b2b6747452 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6ExclusionRange.md +++ b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6ExclusionRange.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerV6ExclusionRange_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6exclusionrange?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6exclusionrange?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6ExclusionRange --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6FreeIPAddress.md b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6FreeIPAddress.md index af3ffc4947..a5d089e833 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6FreeIPAddress.md +++ b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6FreeIPAddress.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerv6FreeIPAddress_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6freeipaddress?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6freeipaddress?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6FreeIPAddress --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6Lease.md b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6Lease.md index 1c0562a7f1..faffc4cf9b 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6Lease.md +++ b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6Lease.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerv6Lease_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6lease?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6lease?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6Lease --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6OptionDefinition.md b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6OptionDefinition.md index 1531dc33d4..b76c629a42 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6OptionDefinition.md +++ b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6OptionDefinition.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerV6OptionDefinition_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6optiondefinition?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6optiondefinition?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6OptionDefinition --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6OptionValue.md b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6OptionValue.md index 84737af7c5..1b5893d960 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6OptionValue.md +++ b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6OptionValue.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerV6OptionValue_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6optionvalue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6optionvalue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6OptionValue --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6Reservation.md b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6Reservation.md index 3e01980799..b7eb9db341 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6Reservation.md +++ b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6Reservation.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerV6Reservation_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6reservation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6reservation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6Reservation --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6Scope.md b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6Scope.md index ae89576c18..2fd0952b03 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6Scope.md +++ b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6Scope.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerV6Scope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6scope?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6scope?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6Scope --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6ScopeStatistics.md b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6ScopeStatistics.md index 9fdc67988d..3e3858e133 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6ScopeStatistics.md +++ b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6ScopeStatistics.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerV6ScopeStatistics_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6scopestatistics?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6scopestatistics?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6ScopeStatistics --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6StatelessStatistics.md b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6StatelessStatistics.md index 9699ed5c0f..6c367a1582 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6StatelessStatistics.md +++ b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6StatelessStatistics.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerv6StatelessStatistics_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6statelessstatistics?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6statelessstatistics?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6StatelessStatistics --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6StatelessStore.md b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6StatelessStore.md index cb9247a92e..314d3baeaf 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6StatelessStore.md +++ b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6StatelessStore.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerv6StatelessStore_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6statelessstore?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6statelessstore?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6StatelessStore --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6Statistics.md b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6Statistics.md index a2ee2ecd7c..f334d4a534 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6Statistics.md +++ b/docset/winserver2012r2-ps/dhcpserver/Get-DhcpServerv6Statistics.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerv6Statistics_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6statistics?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6statistics?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6Statistics --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Import-DhcpServer.md b/docset/winserver2012r2-ps/dhcpserver/Import-DhcpServer.md index fe68a7e40b..15596a3bba 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Import-DhcpServer.md +++ b/docset/winserver2012r2-ps/dhcpserver/Import-DhcpServer.md @@ -2,7 +2,7 @@ external help file: DhcpServerMigration-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/import-dhcpserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/import-dhcpserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-DhcpServer --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Invoke-DhcpServerv4FailoverReplication.md b/docset/winserver2012r2-ps/dhcpserver/Invoke-DhcpServerv4FailoverReplication.md index 0c649ec820..41bf1c37b9 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Invoke-DhcpServerv4FailoverReplication.md +++ b/docset/winserver2012r2-ps/dhcpserver/Invoke-DhcpServerv4FailoverReplication.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerv4FailoverReplication_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/invoke-dhcpserverv4failoverreplication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/invoke-dhcpserverv4failoverreplication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-DhcpServerv4FailoverReplication --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerDnsCredential.md b/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerDnsCredential.md index cb36c7c8fa..86590b9153 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerDnsCredential.md +++ b/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerDnsCredential.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerDnsCredential_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverdnscredential?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverdnscredential?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerDnsCredential --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerInDC.md b/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerInDC.md index 9894007ad7..db4f437477 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerInDC.md +++ b/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerInDC.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerInDC_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverindc?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverindc?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerInDC --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4Class.md b/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4Class.md index 4d5d2425e0..df54009b22 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4Class.md +++ b/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4Class.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerv4Class_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4class?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4class?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4Class --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4ExclusionRange.md b/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4ExclusionRange.md index 90259db3f0..f2cc7c6109 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4ExclusionRange.md +++ b/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4ExclusionRange.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerV4ExclusionRange_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4exclusionrange?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4exclusionrange?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4ExclusionRange --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4Failover.md b/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4Failover.md index e78554f176..6ed9389395 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4Failover.md +++ b/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4Failover.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerv4Failover_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4failover?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4failover?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4Failover --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4FailoverScope.md b/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4FailoverScope.md index fe126be92b..75bec6a48d 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4FailoverScope.md +++ b/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4FailoverScope.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerv4FailoverScope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4failoverscope?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4failoverscope?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4FailoverScope --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4Filter.md b/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4Filter.md index 7fb836b09f..df6e9ba076 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4Filter.md +++ b/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4Filter.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerv4Filter_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4filter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4filter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4Filter --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4Lease.md b/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4Lease.md index a0fea512df..96d4eb7982 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4Lease.md +++ b/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4Lease.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerv4Lease_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4lease?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4lease?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4Lease --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4MulticastExclusionRange.md b/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4MulticastExclusionRange.md index 0cc42a4924..094adc6416 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4MulticastExclusionRange.md +++ b/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4MulticastExclusionRange.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerv4MulticastExclusionRange_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4multicastexclusionrange?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4multicastexclusionrange?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4MulticastExclusionRange --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4MulticastLease.md b/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4MulticastLease.md index 690575d39f..2433d2c4e5 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4MulticastLease.md +++ b/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4MulticastLease.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerv4MulticastLease_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4multicastlease?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4multicastlease?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4MulticastLease --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4MulticastScope.md b/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4MulticastScope.md index f1b7e395fb..020672051d 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4MulticastScope.md +++ b/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4MulticastScope.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerV4MulticastScope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4multicastscope?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4multicastscope?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4MulticastScope --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4OptionDefinition.md b/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4OptionDefinition.md index 8ebadb8b86..8823e7bd37 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4OptionDefinition.md +++ b/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4OptionDefinition.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerV4OptionDefinition_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4optiondefinition?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4optiondefinition?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4OptionDefinition --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4OptionValue.md b/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4OptionValue.md index 003ba41fa9..977612d728 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4OptionValue.md +++ b/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4OptionValue.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerV4OptionValue_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4optionvalue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4optionvalue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4OptionValue --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4Policy.md b/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4Policy.md index 928ae90605..ad05c813b8 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4Policy.md +++ b/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4Policy.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerv4Policy_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4policy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4policy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4Policy --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4PolicyIPRange.md b/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4PolicyIPRange.md index bbf1a17673..7b6717eb2a 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4PolicyIPRange.md +++ b/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4PolicyIPRange.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerv4PolicyIPRange_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4policyiprange?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4policyiprange?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4PolicyIPRange --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4Reservation.md b/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4Reservation.md index f3f8d352db..8ff2f36914 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4Reservation.md +++ b/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4Reservation.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerV4Reservation_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4reservation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4reservation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4Reservation --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4Scope.md b/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4Scope.md index 16232b7ee1..eb877400d7 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4Scope.md +++ b/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4Scope.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerV4Scope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4scope?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4scope?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4Scope --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4Superscope.md b/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4Superscope.md index c6d4ba1011..d1dfe7612c 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4Superscope.md +++ b/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv4Superscope.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerV4Superscope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4superscope?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4superscope?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4Superscope --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv6Class.md b/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv6Class.md index 1349f084dc..55f9ce728f 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv6Class.md +++ b/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv6Class.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerv6Class_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6class?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6class?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv6Class --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv6ExclusionRange.md b/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv6ExclusionRange.md index 562595180d..118894fd9e 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv6ExclusionRange.md +++ b/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv6ExclusionRange.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerV6ExclusionRange_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6exclusionrange?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6exclusionrange?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv6ExclusionRange --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv6Lease.md b/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv6Lease.md index 120d4cb2dc..ce54041c98 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv6Lease.md +++ b/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv6Lease.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerv6Lease_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6lease?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6lease?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv6Lease --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv6OptionDefinition.md b/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv6OptionDefinition.md index e9255ea76f..82e2d71e26 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv6OptionDefinition.md +++ b/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv6OptionDefinition.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerV6OptionDefinition_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6optiondefinition?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6optiondefinition?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv6OptionDefinition --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv6OptionValue.md b/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv6OptionValue.md index 03bff013d6..6c2dcf118f 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv6OptionValue.md +++ b/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv6OptionValue.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerV6OptionValue_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6optionvalue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6optionvalue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv6OptionValue --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv6Reservation.md b/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv6Reservation.md index 8fd3e0ba2e..e8c962bbcd 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv6Reservation.md +++ b/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv6Reservation.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerV6Reservation_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6reservation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6reservation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv6Reservation --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv6Scope.md b/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv6Scope.md index 3bf045d5a2..8590633662 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv6Scope.md +++ b/docset/winserver2012r2-ps/dhcpserver/Remove-DhcpServerv6Scope.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerV6Scope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6scope?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6scope?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv6Scope --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Rename-DhcpServerv4Superscope.md b/docset/winserver2012r2-ps/dhcpserver/Rename-DhcpServerv4Superscope.md index ab18d9b51c..eec1c231ab 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Rename-DhcpServerv4Superscope.md +++ b/docset/winserver2012r2-ps/dhcpserver/Rename-DhcpServerv4Superscope.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerV4Superscope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/rename-dhcpserverv4superscope?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/rename-dhcpserverv4superscope?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-DhcpServerv4Superscope --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Repair-DhcpServerv4IPRecord.md b/docset/winserver2012r2-ps/dhcpserver/Repair-DhcpServerv4IPRecord.md index fe86cfdb0d..6486800e0b 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Repair-DhcpServerv4IPRecord.md +++ b/docset/winserver2012r2-ps/dhcpserver/Repair-DhcpServerv4IPRecord.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerv4IPRecord_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/repair-dhcpserverv4iprecord?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/repair-dhcpserverv4iprecord?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Repair-DhcpServerv4IPRecord --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Restore-DhcpServer.md b/docset/winserver2012r2-ps/dhcpserver/Restore-DhcpServer.md index 05f3c6d749..fd44922955 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Restore-DhcpServer.md +++ b/docset/winserver2012r2-ps/dhcpserver/Restore-DhcpServer.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServer_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/restore-dhcpserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/restore-dhcpserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-DhcpServer --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerAuditLog.md b/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerAuditLog.md index 51598cea9f..a4fdf17212 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerAuditLog.md +++ b/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerAuditLog.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerAuditLog_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverauditlog?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverauditlog?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerAuditLog --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerDatabase.md b/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerDatabase.md index 6e34fee9cc..e91e229400 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerDatabase.md +++ b/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerDatabase.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerDatabase_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverdatabase?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverdatabase?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerDatabase --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerDnsCredential.md b/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerDnsCredential.md index 70898fae75..cf7e6c10cd 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerDnsCredential.md +++ b/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerDnsCredential.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerDnsCredential_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverdnscredential?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverdnscredential?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerDnsCredential --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerSetting.md b/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerSetting.md index 78ce858abc..2e761faf6f 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerSetting.md +++ b/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerSetting.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerSetting_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserversetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserversetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerSetting --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv4Binding.md b/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv4Binding.md index f702ef9860..6c6c3b73ec 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv4Binding.md +++ b/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv4Binding.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerV4Binding_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4binding?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4binding?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv4Binding --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv4Class.md b/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv4Class.md index b3a3fda760..c14642d030 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv4Class.md +++ b/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv4Class.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerv4Class_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4class?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4class?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv4Class --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv4DnsSetting.md b/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv4DnsSetting.md index 0f3127121c..9e9c8414b7 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv4DnsSetting.md +++ b/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv4DnsSetting.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerv4DnsSetting_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4dnssetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4dnssetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv4DnsSetting --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv4Failover.md b/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv4Failover.md index 6dfdbebf9c..cc248de332 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv4Failover.md +++ b/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv4Failover.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerv4Failover_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4failover?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4failover?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv4Failover --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv4FilterList.md b/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv4FilterList.md index 91bf9f92c0..6e7593029a 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv4FilterList.md +++ b/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv4FilterList.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerv4FilterList_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4filterlist?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4filterlist?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv4FilterList --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv4MulticastScope.md b/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv4MulticastScope.md index 727ffc19f1..ff7457a46b 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv4MulticastScope.md +++ b/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv4MulticastScope.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerV4MulticastScope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4multicastscope?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4multicastscope?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv4MulticastScope --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv4OptionDefinition.md b/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv4OptionDefinition.md index 7aff3b7b1a..8efa8ee1a8 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv4OptionDefinition.md +++ b/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv4OptionDefinition.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerV4OptionDefinition_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4optiondefinition?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4optiondefinition?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv4OptionDefinition --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv4OptionValue.md b/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv4OptionValue.md index 6fe0aceccf..2a7b1e8332 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv4OptionValue.md +++ b/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv4OptionValue.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerV4OptionValue_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4optionvalue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4optionvalue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv4OptionValue --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv4Policy.md b/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv4Policy.md index 9e9996e848..bdb2f18494 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv4Policy.md +++ b/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv4Policy.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerv4Policy_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4policy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4policy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv4Policy --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv4Reservation.md b/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv4Reservation.md index 15045c3bdf..02d4ce77df 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv4Reservation.md +++ b/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv4Reservation.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerV4Reservation_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4reservation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4reservation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv4Reservation --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv4Scope.md b/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv4Scope.md index 1de268e6fd..fb6c2e8f91 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv4Scope.md +++ b/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv4Scope.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerV4Scope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4scope?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4scope?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv4Scope --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv6Binding.md b/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv6Binding.md index aede468e8e..cd2ace4d29 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv6Binding.md +++ b/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv6Binding.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerV6Binding_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6binding?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6binding?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv6Binding --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv6Class.md b/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv6Class.md index 021329cf56..aef4b31da2 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv6Class.md +++ b/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv6Class.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerv6Class_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6class?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6class?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv6Class --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv6DnsSetting.md b/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv6DnsSetting.md index 69a88f559f..7be464a5fd 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv6DnsSetting.md +++ b/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv6DnsSetting.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerv6DnsSetting_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6dnssetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6dnssetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv6DnsSetting --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv6OptionDefinition.md b/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv6OptionDefinition.md index 4dd31d85b4..c38e7b0395 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv6OptionDefinition.md +++ b/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv6OptionDefinition.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerV6OptionDefinition_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6optiondefinition?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6optiondefinition?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv6OptionDefinition --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv6OptionValue.md b/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv6OptionValue.md index cf80f53cf5..bf96a5b4e4 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv6OptionValue.md +++ b/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv6OptionValue.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerV6OptionValue_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6optionvalue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6optionvalue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv6OptionValue --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv6Reservation.md b/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv6Reservation.md index 136c5058af..3f93dac7c7 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv6Reservation.md +++ b/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv6Reservation.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerV6Reservation_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6reservation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6reservation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv6Reservation --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv6Scope.md b/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv6Scope.md index 4bb29082c7..8b364905f0 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv6Scope.md +++ b/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv6Scope.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerV6Scope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6scope?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6scope?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv6Scope --- diff --git a/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv6StatelessStore.md b/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv6StatelessStore.md index 8407f90bae..4334b39762 100644 --- a/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv6StatelessStore.md +++ b/docset/winserver2012r2-ps/dhcpserver/Set-DhcpServerv6StatelessStore.md @@ -2,7 +2,7 @@ external help file: PS_DhcpServerv6StatelessStore_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6statelessstore?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6statelessstore?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv6StatelessStore --- diff --git a/docset/winserver2012r2-ps/directaccessclientcomponents/Disable-DAManualEntryPointSelection.md b/docset/winserver2012r2-ps/directaccessclientcomponents/Disable-DAManualEntryPointSelection.md index 92a889e45a..0d81edceef 100644 --- a/docset/winserver2012r2-ps/directaccessclientcomponents/Disable-DAManualEntryPointSelection.md +++ b/docset/winserver2012r2-ps/directaccessclientcomponents/Disable-DAManualEntryPointSelection.md @@ -2,7 +2,7 @@ external help file: MSFT_DASiteTableEntry.cdxml-help.xml Module Name: DirectAccessClientComponents ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/directaccessclientcomponents/disable-damanualentrypointselection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/directaccessclientcomponents/disable-damanualentrypointselection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-DAManualEntryPointSelection --- diff --git a/docset/winserver2012r2-ps/directaccessclientcomponents/Enable-DAManualEntryPointSelection.md b/docset/winserver2012r2-ps/directaccessclientcomponents/Enable-DAManualEntryPointSelection.md index f2797bbfe2..e3573e43bf 100644 --- a/docset/winserver2012r2-ps/directaccessclientcomponents/Enable-DAManualEntryPointSelection.md +++ b/docset/winserver2012r2-ps/directaccessclientcomponents/Enable-DAManualEntryPointSelection.md @@ -2,7 +2,7 @@ external help file: MSFT_DASiteTableEntry.cdxml-help.xml Module Name: DirectAccessClientComponents ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/directaccessclientcomponents/enable-damanualentrypointselection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/directaccessclientcomponents/enable-damanualentrypointselection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-DAManualEntryPointSelection --- diff --git a/docset/winserver2012r2-ps/directaccessclientcomponents/Get-DAClientExperienceConfiguration.md b/docset/winserver2012r2-ps/directaccessclientcomponents/Get-DAClientExperienceConfiguration.md index fd11a6d7e4..482658430d 100644 --- a/docset/winserver2012r2-ps/directaccessclientcomponents/Get-DAClientExperienceConfiguration.md +++ b/docset/winserver2012r2-ps/directaccessclientcomponents/Get-DAClientExperienceConfiguration.md @@ -2,7 +2,7 @@ external help file: MSFT_DAClientExperienceConfiguration.cdxml-help.xml Module Name: DirectAccessClientComponents ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/directaccessclientcomponents/get-daclientexperienceconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/directaccessclientcomponents/get-daclientexperienceconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DAClientExperienceConfiguration --- diff --git a/docset/winserver2012r2-ps/directaccessclientcomponents/Get-DAEntryPointTableItem.md b/docset/winserver2012r2-ps/directaccessclientcomponents/Get-DAEntryPointTableItem.md index da8c664d6a..09b2726667 100644 --- a/docset/winserver2012r2-ps/directaccessclientcomponents/Get-DAEntryPointTableItem.md +++ b/docset/winserver2012r2-ps/directaccessclientcomponents/Get-DAEntryPointTableItem.md @@ -2,7 +2,7 @@ external help file: MSFT_DASiteTableEntry.cdxml-help.xml Module Name: DirectAccessClientComponents ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/directaccessclientcomponents/get-daentrypointtableitem?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/directaccessclientcomponents/get-daentrypointtableitem?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DAEntryPointTableItem --- diff --git a/docset/winserver2012r2-ps/directaccessclientcomponents/New-DAEntryPointTableItem.md b/docset/winserver2012r2-ps/directaccessclientcomponents/New-DAEntryPointTableItem.md index 81b563bd7a..6b255bef88 100644 --- a/docset/winserver2012r2-ps/directaccessclientcomponents/New-DAEntryPointTableItem.md +++ b/docset/winserver2012r2-ps/directaccessclientcomponents/New-DAEntryPointTableItem.md @@ -2,7 +2,7 @@ external help file: MSFT_DASiteTableEntry.cdxml-help.xml Module Name: DirectAccessClientComponents ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/directaccessclientcomponents/new-daentrypointtableitem?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/directaccessclientcomponents/new-daentrypointtableitem?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-DAEntryPointTableItem --- diff --git a/docset/winserver2012r2-ps/directaccessclientcomponents/Remove-DAEntryPointTableItem.md b/docset/winserver2012r2-ps/directaccessclientcomponents/Remove-DAEntryPointTableItem.md index 7ed8c144b8..3d39045aa3 100644 --- a/docset/winserver2012r2-ps/directaccessclientcomponents/Remove-DAEntryPointTableItem.md +++ b/docset/winserver2012r2-ps/directaccessclientcomponents/Remove-DAEntryPointTableItem.md @@ -2,7 +2,7 @@ external help file: MSFT_DASiteTableEntry.cdxml-help.xml Module Name: DirectAccessClientComponents ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/directaccessclientcomponents/remove-daentrypointtableitem?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/directaccessclientcomponents/remove-daentrypointtableitem?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DAEntryPointTableItem --- diff --git a/docset/winserver2012r2-ps/directaccessclientcomponents/Rename-DAEntryPointTableItem.md b/docset/winserver2012r2-ps/directaccessclientcomponents/Rename-DAEntryPointTableItem.md index 0571fbf3a2..307e2e2f0f 100644 --- a/docset/winserver2012r2-ps/directaccessclientcomponents/Rename-DAEntryPointTableItem.md +++ b/docset/winserver2012r2-ps/directaccessclientcomponents/Rename-DAEntryPointTableItem.md @@ -2,7 +2,7 @@ external help file: MSFT_DASiteTableEntry.cdxml-help.xml Module Name: DirectAccessClientComponents ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/directaccessclientcomponents/rename-daentrypointtableitem?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/directaccessclientcomponents/rename-daentrypointtableitem?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-DAEntryPointTableItem --- diff --git a/docset/winserver2012r2-ps/directaccessclientcomponents/Reset-DAClientExperienceConfiguration.md b/docset/winserver2012r2-ps/directaccessclientcomponents/Reset-DAClientExperienceConfiguration.md index a830a47c20..6cc7aad840 100644 --- a/docset/winserver2012r2-ps/directaccessclientcomponents/Reset-DAClientExperienceConfiguration.md +++ b/docset/winserver2012r2-ps/directaccessclientcomponents/Reset-DAClientExperienceConfiguration.md @@ -2,7 +2,7 @@ external help file: MSFT_DAClientExperienceConfiguration.cdxml-help.xml Module Name: DirectAccessClientComponents ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/directaccessclientcomponents/reset-daclientexperienceconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/directaccessclientcomponents/reset-daclientexperienceconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-DAClientExperienceConfiguration --- diff --git a/docset/winserver2012r2-ps/directaccessclientcomponents/Reset-DAEntryPointTableItem.md b/docset/winserver2012r2-ps/directaccessclientcomponents/Reset-DAEntryPointTableItem.md index 3f7f280a75..4a55088f97 100644 --- a/docset/winserver2012r2-ps/directaccessclientcomponents/Reset-DAEntryPointTableItem.md +++ b/docset/winserver2012r2-ps/directaccessclientcomponents/Reset-DAEntryPointTableItem.md @@ -2,7 +2,7 @@ external help file: MSFT_DASiteTableEntry.cdxml-help.xml Module Name: DirectAccessClientComponents ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/directaccessclientcomponents/reset-daentrypointtableitem?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/directaccessclientcomponents/reset-daentrypointtableitem?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-DAEntryPointTableItem --- diff --git a/docset/winserver2012r2-ps/directaccessclientcomponents/Set-DAClientExperienceConfiguration.md b/docset/winserver2012r2-ps/directaccessclientcomponents/Set-DAClientExperienceConfiguration.md index bfba96204d..3745a04f84 100644 --- a/docset/winserver2012r2-ps/directaccessclientcomponents/Set-DAClientExperienceConfiguration.md +++ b/docset/winserver2012r2-ps/directaccessclientcomponents/Set-DAClientExperienceConfiguration.md @@ -2,7 +2,7 @@ external help file: MSFT_DAClientExperienceConfiguration.cdxml-help.xml Module Name: DirectAccessClientComponents ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/directaccessclientcomponents/set-daclientexperienceconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/directaccessclientcomponents/set-daclientexperienceconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DAClientExperienceConfiguration --- diff --git a/docset/winserver2012r2-ps/directaccessclientcomponents/Set-DAEntryPointTableItem.md b/docset/winserver2012r2-ps/directaccessclientcomponents/Set-DAEntryPointTableItem.md index 95f6206a32..fad322dc84 100644 --- a/docset/winserver2012r2-ps/directaccessclientcomponents/Set-DAEntryPointTableItem.md +++ b/docset/winserver2012r2-ps/directaccessclientcomponents/Set-DAEntryPointTableItem.md @@ -2,7 +2,7 @@ external help file: MSFT_DASiteTableEntry.cdxml-help.xml Module Name: DirectAccessClientComponents ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/directaccessclientcomponents/set-daentrypointtableitem?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/directaccessclientcomponents/set-daentrypointtableitem?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DAEntryPointTableItem --- diff --git a/docset/winserver2012r2-ps/dism/Add-AppxProvisionedPackage.md b/docset/winserver2012r2-ps/dism/Add-AppxProvisionedPackage.md index 4b7b60c9d9..dbaf99c952 100644 --- a/docset/winserver2012r2-ps/dism/Add-AppxProvisionedPackage.md +++ b/docset/winserver2012r2-ps/dism/Add-AppxProvisionedPackage.md @@ -2,7 +2,7 @@ external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/dism/add-appxprovisionedpackage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/add-appxprovisionedpackage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AppxProvisionedPackage --- diff --git a/docset/winserver2012r2-ps/dism/Add-WindowsDriver.md b/docset/winserver2012r2-ps/dism/Add-WindowsDriver.md index 24fee6d351..57baba1059 100644 --- a/docset/winserver2012r2-ps/dism/Add-WindowsDriver.md +++ b/docset/winserver2012r2-ps/dism/Add-WindowsDriver.md @@ -2,7 +2,7 @@ external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/dism/add-windowsdriver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/add-windowsdriver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WindowsDriver --- diff --git a/docset/winserver2012r2-ps/dism/Add-WindowsImage.md b/docset/winserver2012r2-ps/dism/Add-WindowsImage.md index 0d759c713e..87200005b9 100644 --- a/docset/winserver2012r2-ps/dism/Add-WindowsImage.md +++ b/docset/winserver2012r2-ps/dism/Add-WindowsImage.md @@ -2,7 +2,7 @@ external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/dism/add-windowsimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/add-windowsimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WindowsImage --- diff --git a/docset/winserver2012r2-ps/dism/Add-WindowsPackage.md b/docset/winserver2012r2-ps/dism/Add-WindowsPackage.md index 8287eb6e8d..7ea9435833 100644 --- a/docset/winserver2012r2-ps/dism/Add-WindowsPackage.md +++ b/docset/winserver2012r2-ps/dism/Add-WindowsPackage.md @@ -2,7 +2,7 @@ external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/dism/add-windowspackage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/add-windowspackage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WindowsPackage --- diff --git a/docset/winserver2012r2-ps/dism/Clear-WindowsCorruptMountPoint.md b/docset/winserver2012r2-ps/dism/Clear-WindowsCorruptMountPoint.md index 8c1efbe905..6032b2ee5e 100644 --- a/docset/winserver2012r2-ps/dism/Clear-WindowsCorruptMountPoint.md +++ b/docset/winserver2012r2-ps/dism/Clear-WindowsCorruptMountPoint.md @@ -2,7 +2,7 @@ external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/dism/clear-windowscorruptmountpoint?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/clear-windowscorruptmountpoint?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-WindowsCorruptMountPoint --- diff --git a/docset/winserver2012r2-ps/dism/Disable-WindowsOptionalFeature.md b/docset/winserver2012r2-ps/dism/Disable-WindowsOptionalFeature.md index 6d92ea87bc..ec9224bbb0 100644 --- a/docset/winserver2012r2-ps/dism/Disable-WindowsOptionalFeature.md +++ b/docset/winserver2012r2-ps/dism/Disable-WindowsOptionalFeature.md @@ -2,7 +2,7 @@ external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/dism/disable-windowsoptionalfeature?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/disable-windowsoptionalfeature?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WindowsOptionalFeature --- diff --git a/docset/winserver2012r2-ps/dism/Dismount-WindowsImage.md b/docset/winserver2012r2-ps/dism/Dismount-WindowsImage.md index 0210cef437..2d1bbd37c0 100644 --- a/docset/winserver2012r2-ps/dism/Dismount-WindowsImage.md +++ b/docset/winserver2012r2-ps/dism/Dismount-WindowsImage.md @@ -2,7 +2,7 @@ external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/dism/dismount-windowsimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/dismount-windowsimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Dismount-WindowsImage --- diff --git a/docset/winserver2012r2-ps/dism/Enable-WindowsOptionalFeature.md b/docset/winserver2012r2-ps/dism/Enable-WindowsOptionalFeature.md index ea439f2871..678f8d74b2 100644 --- a/docset/winserver2012r2-ps/dism/Enable-WindowsOptionalFeature.md +++ b/docset/winserver2012r2-ps/dism/Enable-WindowsOptionalFeature.md @@ -2,7 +2,7 @@ external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/dism/enable-windowsoptionalfeature?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/enable-windowsoptionalfeature?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WindowsOptionalFeature --- diff --git a/docset/winserver2012r2-ps/dism/Expand-WindowsImage.md b/docset/winserver2012r2-ps/dism/Expand-WindowsImage.md index de362cbfde..5d21046a4c 100644 --- a/docset/winserver2012r2-ps/dism/Expand-WindowsImage.md +++ b/docset/winserver2012r2-ps/dism/Expand-WindowsImage.md @@ -2,7 +2,7 @@ external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/dism/expand-windowsimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/expand-windowsimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Expand-WindowsImage --- diff --git a/docset/winserver2012r2-ps/dism/Export-WindowsDriver.md b/docset/winserver2012r2-ps/dism/Export-WindowsDriver.md index 08ae2a9c02..5311b4abe1 100644 --- a/docset/winserver2012r2-ps/dism/Export-WindowsDriver.md +++ b/docset/winserver2012r2-ps/dism/Export-WindowsDriver.md @@ -2,7 +2,7 @@ external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/dism/export-windowsdriver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/export-windowsdriver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-WindowsDriver --- diff --git a/docset/winserver2012r2-ps/dism/Export-WindowsImage.md b/docset/winserver2012r2-ps/dism/Export-WindowsImage.md index 02ef69b568..2cc21d7e9b 100644 --- a/docset/winserver2012r2-ps/dism/Export-WindowsImage.md +++ b/docset/winserver2012r2-ps/dism/Export-WindowsImage.md @@ -2,7 +2,7 @@ external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/dism/export-windowsimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/export-windowsimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-WindowsImage --- diff --git a/docset/winserver2012r2-ps/dism/Get-AppxProvisionedPackage.md b/docset/winserver2012r2-ps/dism/Get-AppxProvisionedPackage.md index 05d8e51a52..d103b6a44c 100644 --- a/docset/winserver2012r2-ps/dism/Get-AppxProvisionedPackage.md +++ b/docset/winserver2012r2-ps/dism/Get-AppxProvisionedPackage.md @@ -2,7 +2,7 @@ external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/dism/get-appxprovisionedpackage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/get-appxprovisionedpackage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppxProvisionedPackage --- diff --git a/docset/winserver2012r2-ps/dism/Get-WIMBootEntry.md b/docset/winserver2012r2-ps/dism/Get-WIMBootEntry.md index baf6391c26..05326d31f0 100644 --- a/docset/winserver2012r2-ps/dism/Get-WIMBootEntry.md +++ b/docset/winserver2012r2-ps/dism/Get-WIMBootEntry.md @@ -2,7 +2,7 @@ external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/dism/get-wimbootentry?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/get-wimbootentry?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WIMBootEntry --- diff --git a/docset/winserver2012r2-ps/dism/Get-WindowsDriver.md b/docset/winserver2012r2-ps/dism/Get-WindowsDriver.md index 37db1a7452..0e7257aa9a 100644 --- a/docset/winserver2012r2-ps/dism/Get-WindowsDriver.md +++ b/docset/winserver2012r2-ps/dism/Get-WindowsDriver.md @@ -2,7 +2,7 @@ external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/dism/get-windowsdriver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/get-windowsdriver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WindowsDriver --- diff --git a/docset/winserver2012r2-ps/dism/Get-WindowsEdition.md b/docset/winserver2012r2-ps/dism/Get-WindowsEdition.md index cfe027a0fb..d0d9c059f7 100644 --- a/docset/winserver2012r2-ps/dism/Get-WindowsEdition.md +++ b/docset/winserver2012r2-ps/dism/Get-WindowsEdition.md @@ -2,7 +2,7 @@ external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/dism/get-windowsedition?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/get-windowsedition?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WindowsEdition --- diff --git a/docset/winserver2012r2-ps/dism/Get-WindowsImage.md b/docset/winserver2012r2-ps/dism/Get-WindowsImage.md index 961daf4c43..81129bd855 100644 --- a/docset/winserver2012r2-ps/dism/Get-WindowsImage.md +++ b/docset/winserver2012r2-ps/dism/Get-WindowsImage.md @@ -2,7 +2,7 @@ external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/dism/get-windowsimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/get-windowsimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WindowsImage --- diff --git a/docset/winserver2012r2-ps/dism/Get-WindowsImageContent.md b/docset/winserver2012r2-ps/dism/Get-WindowsImageContent.md index 4acd9dcc17..4f7a5d4647 100644 --- a/docset/winserver2012r2-ps/dism/Get-WindowsImageContent.md +++ b/docset/winserver2012r2-ps/dism/Get-WindowsImageContent.md @@ -2,7 +2,7 @@ external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/dism/get-windowsimagecontent?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/get-windowsimagecontent?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WindowsImageContent --- diff --git a/docset/winserver2012r2-ps/dism/Get-WindowsOptionalFeature.md b/docset/winserver2012r2-ps/dism/Get-WindowsOptionalFeature.md index 37cded21b7..bd8227de64 100644 --- a/docset/winserver2012r2-ps/dism/Get-WindowsOptionalFeature.md +++ b/docset/winserver2012r2-ps/dism/Get-WindowsOptionalFeature.md @@ -2,7 +2,7 @@ external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/dism/get-windowsoptionalfeature?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/get-windowsoptionalfeature?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WindowsOptionalFeature --- diff --git a/docset/winserver2012r2-ps/dism/Get-WindowsPackage.md b/docset/winserver2012r2-ps/dism/Get-WindowsPackage.md index c0e2c0b93d..25bac70e69 100644 --- a/docset/winserver2012r2-ps/dism/Get-WindowsPackage.md +++ b/docset/winserver2012r2-ps/dism/Get-WindowsPackage.md @@ -2,7 +2,7 @@ external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/dism/get-windowspackage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/get-windowspackage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WindowsPackage --- diff --git a/docset/winserver2012r2-ps/dism/Mount-WindowsImage.md b/docset/winserver2012r2-ps/dism/Mount-WindowsImage.md index 29381dac7e..f8190ee77a 100644 --- a/docset/winserver2012r2-ps/dism/Mount-WindowsImage.md +++ b/docset/winserver2012r2-ps/dism/Mount-WindowsImage.md @@ -2,7 +2,7 @@ external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/dism/mount-windowsimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/mount-windowsimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Mount-WindowsImage --- diff --git a/docset/winserver2012r2-ps/dism/New-WindowsCustomImage.md b/docset/winserver2012r2-ps/dism/New-WindowsCustomImage.md index 2730484ead..87f86636fd 100644 --- a/docset/winserver2012r2-ps/dism/New-WindowsCustomImage.md +++ b/docset/winserver2012r2-ps/dism/New-WindowsCustomImage.md @@ -2,7 +2,7 @@ external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/dism/new-windowscustomimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/new-windowscustomimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WindowsCustomImage --- diff --git a/docset/winserver2012r2-ps/dism/New-WindowsImage.md b/docset/winserver2012r2-ps/dism/New-WindowsImage.md index 96baf5f184..8886526f62 100644 --- a/docset/winserver2012r2-ps/dism/New-WindowsImage.md +++ b/docset/winserver2012r2-ps/dism/New-WindowsImage.md @@ -2,7 +2,7 @@ external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/dism/new-windowsimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/new-windowsimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WindowsImage --- diff --git a/docset/winserver2012r2-ps/dism/Optimize-WindowsImage.md b/docset/winserver2012r2-ps/dism/Optimize-WindowsImage.md index d1cda19516..a33ffef377 100644 --- a/docset/winserver2012r2-ps/dism/Optimize-WindowsImage.md +++ b/docset/winserver2012r2-ps/dism/Optimize-WindowsImage.md @@ -2,7 +2,7 @@ external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/dism/optimize-windowsimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/optimize-windowsimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Optimize-WindowsImage --- diff --git a/docset/winserver2012r2-ps/dism/Remove-AppxProvisionedPackage.md b/docset/winserver2012r2-ps/dism/Remove-AppxProvisionedPackage.md index 9219c1d180..768838f9f9 100644 --- a/docset/winserver2012r2-ps/dism/Remove-AppxProvisionedPackage.md +++ b/docset/winserver2012r2-ps/dism/Remove-AppxProvisionedPackage.md @@ -2,7 +2,7 @@ external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/dism/remove-appxprovisionedpackage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/remove-appxprovisionedpackage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AppxProvisionedPackage --- diff --git a/docset/winserver2012r2-ps/dism/Remove-WindowsDriver.md b/docset/winserver2012r2-ps/dism/Remove-WindowsDriver.md index 1a4cee0d57..d707c2f59a 100644 --- a/docset/winserver2012r2-ps/dism/Remove-WindowsDriver.md +++ b/docset/winserver2012r2-ps/dism/Remove-WindowsDriver.md @@ -2,7 +2,7 @@ external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/dism/remove-windowsdriver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/remove-windowsdriver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WindowsDriver --- diff --git a/docset/winserver2012r2-ps/dism/Remove-WindowsImage.md b/docset/winserver2012r2-ps/dism/Remove-WindowsImage.md index 455335ea6c..7125e26d13 100644 --- a/docset/winserver2012r2-ps/dism/Remove-WindowsImage.md +++ b/docset/winserver2012r2-ps/dism/Remove-WindowsImage.md @@ -2,7 +2,7 @@ external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/dism/remove-windowsimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/remove-windowsimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WindowsImage --- diff --git a/docset/winserver2012r2-ps/dism/Remove-WindowsPackage.md b/docset/winserver2012r2-ps/dism/Remove-WindowsPackage.md index 0ba8ddbe9d..01e970d35f 100644 --- a/docset/winserver2012r2-ps/dism/Remove-WindowsPackage.md +++ b/docset/winserver2012r2-ps/dism/Remove-WindowsPackage.md @@ -2,7 +2,7 @@ external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/dism/remove-windowspackage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/remove-windowspackage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WindowsPackage --- diff --git a/docset/winserver2012r2-ps/dism/Repair-WindowsImage.md b/docset/winserver2012r2-ps/dism/Repair-WindowsImage.md index d5dd2d7dc0..68d710ae26 100644 --- a/docset/winserver2012r2-ps/dism/Repair-WindowsImage.md +++ b/docset/winserver2012r2-ps/dism/Repair-WindowsImage.md @@ -2,7 +2,7 @@ external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/dism/repair-windowsimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/repair-windowsimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Repair-WindowsImage --- diff --git a/docset/winserver2012r2-ps/dism/Save-WindowsImage.md b/docset/winserver2012r2-ps/dism/Save-WindowsImage.md index d45d4f4be1..53524b45f9 100644 --- a/docset/winserver2012r2-ps/dism/Save-WindowsImage.md +++ b/docset/winserver2012r2-ps/dism/Save-WindowsImage.md @@ -2,7 +2,7 @@ external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/dism/save-windowsimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/save-windowsimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Save-WindowsImage --- diff --git a/docset/winserver2012r2-ps/dism/Set-AppXProvisionedDataFile.md b/docset/winserver2012r2-ps/dism/Set-AppXProvisionedDataFile.md index 6313615eea..388008afed 100644 --- a/docset/winserver2012r2-ps/dism/Set-AppXProvisionedDataFile.md +++ b/docset/winserver2012r2-ps/dism/Set-AppXProvisionedDataFile.md @@ -2,7 +2,7 @@ external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/dism/set-appxprovisioneddatafile?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/set-appxprovisioneddatafile?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AppXProvisionedDataFile --- diff --git a/docset/winserver2012r2-ps/dism/Set-WindowsEdition.md b/docset/winserver2012r2-ps/dism/Set-WindowsEdition.md index 8d19cf5fa5..fbc85569f3 100644 --- a/docset/winserver2012r2-ps/dism/Set-WindowsEdition.md +++ b/docset/winserver2012r2-ps/dism/Set-WindowsEdition.md @@ -2,7 +2,7 @@ external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/dism/set-windowsedition?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/set-windowsedition?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WindowsEdition --- diff --git a/docset/winserver2012r2-ps/dism/Set-WindowsProductKey.md b/docset/winserver2012r2-ps/dism/Set-WindowsProductKey.md index 367b9f0f56..a55fb74b3e 100644 --- a/docset/winserver2012r2-ps/dism/Set-WindowsProductKey.md +++ b/docset/winserver2012r2-ps/dism/Set-WindowsProductKey.md @@ -2,7 +2,7 @@ external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/dism/set-windowsproductkey?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/set-windowsproductkey?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WindowsProductKey --- diff --git a/docset/winserver2012r2-ps/dism/Split-WindowsImage.md b/docset/winserver2012r2-ps/dism/Split-WindowsImage.md index 0ffb8bc85e..55b121cbd9 100644 --- a/docset/winserver2012r2-ps/dism/Split-WindowsImage.md +++ b/docset/winserver2012r2-ps/dism/Split-WindowsImage.md @@ -2,7 +2,7 @@ external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/dism/split-windowsimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/split-windowsimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Split-WindowsImage --- diff --git a/docset/winserver2012r2-ps/dism/Update-WIMBootEntry.md b/docset/winserver2012r2-ps/dism/Update-WIMBootEntry.md index 7103a9282d..addabf49ed 100644 --- a/docset/winserver2012r2-ps/dism/Update-WIMBootEntry.md +++ b/docset/winserver2012r2-ps/dism/Update-WIMBootEntry.md @@ -2,7 +2,7 @@ external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/dism/update-wimbootentry?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/update-wimbootentry?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-WIMBootEntry --- diff --git a/docset/winserver2012r2-ps/dism/Use-WindowsUnattend.md b/docset/winserver2012r2-ps/dism/Use-WindowsUnattend.md index 797d13f0d6..fc0952f145 100644 --- a/docset/winserver2012r2-ps/dism/Use-WindowsUnattend.md +++ b/docset/winserver2012r2-ps/dism/Use-WindowsUnattend.md @@ -2,7 +2,7 @@ external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/dism/use-windowsunattend?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/use-windowsunattend?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Use-WindowsUnattend --- diff --git a/docset/winserver2012r2-ps/dnsclient/Add-DnsClientNrptRule.md b/docset/winserver2012r2-ps/dnsclient/Add-DnsClientNrptRule.md index f941d4b17d..22df4d6594 100644 --- a/docset/winserver2012r2-ps/dnsclient/Add-DnsClientNrptRule.md +++ b/docset/winserver2012r2-ps/dnsclient/Add-DnsClientNrptRule.md @@ -2,7 +2,7 @@ external help file: PS_DnsClientNRPTRule_v1.0.0.cdxml-help.xml Module Name: DnsClient ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/dnsclient/add-dnsclientnrptrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/add-dnsclientnrptrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsClientNrptRule --- diff --git a/docset/winserver2012r2-ps/dnsclient/Clear-DnsClientCache.md b/docset/winserver2012r2-ps/dnsclient/Clear-DnsClientCache.md index 92451dabc6..e344eeb2e9 100644 --- a/docset/winserver2012r2-ps/dnsclient/Clear-DnsClientCache.md +++ b/docset/winserver2012r2-ps/dnsclient/Clear-DnsClientCache.md @@ -2,7 +2,7 @@ external help file: MSFT_DnsClientCache.cdxml-help.xml Module Name: DnsClient ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/dnsclient/clear-dnsclientcache?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/clear-dnsclientcache?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-DnsClientCache --- diff --git a/docset/winserver2012r2-ps/dnsclient/Get-DnsClient.md b/docset/winserver2012r2-ps/dnsclient/Get-DnsClient.md index 8adf3aaec1..ae1d107a55 100644 --- a/docset/winserver2012r2-ps/dnsclient/Get-DnsClient.md +++ b/docset/winserver2012r2-ps/dnsclient/Get-DnsClient.md @@ -2,7 +2,7 @@ external help file: MSFT_DnsClient.cdxml-help.xml Module Name: DnsClient ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/dnsclient/get-dnsclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/get-dnsclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsClient --- diff --git a/docset/winserver2012r2-ps/dnsclient/Get-DnsClientCache.md b/docset/winserver2012r2-ps/dnsclient/Get-DnsClientCache.md index de92115ffa..07424b0338 100644 --- a/docset/winserver2012r2-ps/dnsclient/Get-DnsClientCache.md +++ b/docset/winserver2012r2-ps/dnsclient/Get-DnsClientCache.md @@ -2,7 +2,7 @@ external help file: MSFT_DnsClientCache.cdxml-help.xml Module Name: DnsClient ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/dnsclient/get-dnsclientcache?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/get-dnsclientcache?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsClientCache --- diff --git a/docset/winserver2012r2-ps/dnsclient/Get-DnsClientGlobalSetting.md b/docset/winserver2012r2-ps/dnsclient/Get-DnsClientGlobalSetting.md index 4f4bc0aebe..d50b9e50c0 100644 --- a/docset/winserver2012r2-ps/dnsclient/Get-DnsClientGlobalSetting.md +++ b/docset/winserver2012r2-ps/dnsclient/Get-DnsClientGlobalSetting.md @@ -2,7 +2,7 @@ external help file: MSFT_DnsClientGlobalSetting.cdxml-help.xml Module Name: DnsClient ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/dnsclient/get-dnsclientglobalsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/get-dnsclientglobalsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsClientGlobalSetting --- diff --git a/docset/winserver2012r2-ps/dnsclient/Get-DnsClientNrptGlobal.md b/docset/winserver2012r2-ps/dnsclient/Get-DnsClientNrptGlobal.md index 3578b52602..09046d3abd 100644 --- a/docset/winserver2012r2-ps/dnsclient/Get-DnsClientNrptGlobal.md +++ b/docset/winserver2012r2-ps/dnsclient/Get-DnsClientNrptGlobal.md @@ -2,7 +2,7 @@ external help file: PS_DnsClientNRPTGlobal_v1.0.0.cdxml-help.xml Module Name: DnsClient ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/dnsclient/get-dnsclientnrptglobal?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/get-dnsclientnrptglobal?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsClientNrptGlobal --- diff --git a/docset/winserver2012r2-ps/dnsclient/Get-DnsClientNrptPolicy.md b/docset/winserver2012r2-ps/dnsclient/Get-DnsClientNrptPolicy.md index 12b92fbfb7..10912b5289 100644 --- a/docset/winserver2012r2-ps/dnsclient/Get-DnsClientNrptPolicy.md +++ b/docset/winserver2012r2-ps/dnsclient/Get-DnsClientNrptPolicy.md @@ -2,7 +2,7 @@ external help file: PS_DnsClientNrptPolicy_v1.0.0.cdxml-help.xml Module Name: DnsClient ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/dnsclient/get-dnsclientnrptpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/get-dnsclientnrptpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsClientNrptPolicy --- diff --git a/docset/winserver2012r2-ps/dnsclient/Get-DnsClientNrptRule.md b/docset/winserver2012r2-ps/dnsclient/Get-DnsClientNrptRule.md index 6aea87678d..1322c9ea68 100644 --- a/docset/winserver2012r2-ps/dnsclient/Get-DnsClientNrptRule.md +++ b/docset/winserver2012r2-ps/dnsclient/Get-DnsClientNrptRule.md @@ -2,7 +2,7 @@ external help file: PS_DnsClientNRPTRule_v1.0.0.cdxml-help.xml Module Name: DnsClient ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/dnsclient/get-dnsclientnrptrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/get-dnsclientnrptrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsClientNrptRule --- diff --git a/docset/winserver2012r2-ps/dnsclient/Get-DnsClientServerAddress.md b/docset/winserver2012r2-ps/dnsclient/Get-DnsClientServerAddress.md index f414ec7422..17e6f1a80e 100644 --- a/docset/winserver2012r2-ps/dnsclient/Get-DnsClientServerAddress.md +++ b/docset/winserver2012r2-ps/dnsclient/Get-DnsClientServerAddress.md @@ -2,7 +2,7 @@ external help file: MSFT_DnsClientServerAddress.cdxml-help.xml Module Name: DnsClient ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/dnsclient/get-dnsclientserveraddress?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/get-dnsclientserveraddress?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsClientServerAddress --- diff --git a/docset/winserver2012r2-ps/dnsclient/Register-DnsClient.md b/docset/winserver2012r2-ps/dnsclient/Register-DnsClient.md index 8ca0ace9cb..139c15a325 100644 --- a/docset/winserver2012r2-ps/dnsclient/Register-DnsClient.md +++ b/docset/winserver2012r2-ps/dnsclient/Register-DnsClient.md @@ -2,7 +2,7 @@ external help file: MSFT_DnsClient.cdxml-help.xml Module Name: DnsClient ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/dnsclient/register-dnsclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/register-dnsclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Register-DnsClient --- diff --git a/docset/winserver2012r2-ps/dnsclient/Remove-DnsClientNrptRule.md b/docset/winserver2012r2-ps/dnsclient/Remove-DnsClientNrptRule.md index 4a1aa69555..bc1d96b857 100644 --- a/docset/winserver2012r2-ps/dnsclient/Remove-DnsClientNrptRule.md +++ b/docset/winserver2012r2-ps/dnsclient/Remove-DnsClientNrptRule.md @@ -2,7 +2,7 @@ external help file: PS_DnsClientNRPTRule_v1.0.0.cdxml-help.xml Module Name: DnsClient ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/dnsclient/remove-dnsclientnrptrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/remove-dnsclientnrptrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsClientNrptRule --- diff --git a/docset/winserver2012r2-ps/dnsclient/Resolve-DnsName.md b/docset/winserver2012r2-ps/dnsclient/Resolve-DnsName.md index 883c30fde9..453c25b637 100644 --- a/docset/winserver2012r2-ps/dnsclient/Resolve-DnsName.md +++ b/docset/winserver2012r2-ps/dnsclient/Resolve-DnsName.md @@ -2,7 +2,7 @@ external help file: dnslookup.dll-Help.xml Module Name: DnsClient ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/dnsclient/resolve-dnsname?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/resolve-dnsname?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resolve-DnsName --- diff --git a/docset/winserver2012r2-ps/dnsclient/Set-DnsClient.md b/docset/winserver2012r2-ps/dnsclient/Set-DnsClient.md index 7b35793c4a..2bdc6a6c55 100644 --- a/docset/winserver2012r2-ps/dnsclient/Set-DnsClient.md +++ b/docset/winserver2012r2-ps/dnsclient/Set-DnsClient.md @@ -2,7 +2,7 @@ external help file: MSFT_DnsClient.cdxml-help.xml Module Name: DnsClient ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/dnsclient/set-dnsclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/set-dnsclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsClient --- diff --git a/docset/winserver2012r2-ps/dnsclient/Set-DnsClientGlobalSetting.md b/docset/winserver2012r2-ps/dnsclient/Set-DnsClientGlobalSetting.md index f039a85d7f..3f05663860 100644 --- a/docset/winserver2012r2-ps/dnsclient/Set-DnsClientGlobalSetting.md +++ b/docset/winserver2012r2-ps/dnsclient/Set-DnsClientGlobalSetting.md @@ -2,7 +2,7 @@ external help file: MSFT_DnsClientGlobalSetting.cdxml-help.xml Module Name: DnsClient ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/dnsclient/set-dnsclientglobalsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/set-dnsclientglobalsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsClientGlobalSetting --- diff --git a/docset/winserver2012r2-ps/dnsclient/Set-DnsClientNrptGlobal.md b/docset/winserver2012r2-ps/dnsclient/Set-DnsClientNrptGlobal.md index 18680369b3..08808ac87f 100644 --- a/docset/winserver2012r2-ps/dnsclient/Set-DnsClientNrptGlobal.md +++ b/docset/winserver2012r2-ps/dnsclient/Set-DnsClientNrptGlobal.md @@ -2,7 +2,7 @@ external help file: PS_DnsClientNRPTGlobal_v1.0.0.cdxml-help.xml Module Name: DnsClient ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/dnsclient/set-dnsclientnrptglobal?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/set-dnsclientnrptglobal?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsClientNrptGlobal --- diff --git a/docset/winserver2012r2-ps/dnsclient/Set-DnsClientNrptRule.md b/docset/winserver2012r2-ps/dnsclient/Set-DnsClientNrptRule.md index 848b31b064..4b628464ae 100644 --- a/docset/winserver2012r2-ps/dnsclient/Set-DnsClientNrptRule.md +++ b/docset/winserver2012r2-ps/dnsclient/Set-DnsClientNrptRule.md @@ -2,7 +2,7 @@ external help file: PS_DnsClientNRPTRule_v1.0.0.cdxml-help.xml Module Name: DnsClient ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/dnsclient/set-dnsclientnrptrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/set-dnsclientnrptrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsClientNrptRule --- diff --git a/docset/winserver2012r2-ps/dnsclient/Set-DnsClientServerAddress.md b/docset/winserver2012r2-ps/dnsclient/Set-DnsClientServerAddress.md index ee9b5885e8..48af5251cb 100644 --- a/docset/winserver2012r2-ps/dnsclient/Set-DnsClientServerAddress.md +++ b/docset/winserver2012r2-ps/dnsclient/Set-DnsClientServerAddress.md @@ -2,7 +2,7 @@ external help file: MSFT_DnsClientServerAddress.cdxml-help.xml Module Name: DnsClient ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/dnsclient/set-dnsclientserveraddress?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/set-dnsclientserveraddress?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsClientServerAddress --- diff --git a/docset/winserver2012r2-ps/dnsserver/Add-DnsServerConditionalForwarderZone.md b/docset/winserver2012r2-ps/dnsserver/Add-DnsServerConditionalForwarderZone.md index 08298427c9..188fa01a73 100644 --- a/docset/winserver2012r2-ps/dnsserver/Add-DnsServerConditionalForwarderZone.md +++ b/docset/winserver2012r2-ps/dnsserver/Add-DnsServerConditionalForwarderZone.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerConditionalForwarder_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverconditionalforwarderzone?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverconditionalforwarderzone?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerConditionalForwarderZone --- diff --git a/docset/winserver2012r2-ps/dnsserver/Add-DnsServerDirectoryPartition.md b/docset/winserver2012r2-ps/dnsserver/Add-DnsServerDirectoryPartition.md index 205ffb5efd..b155afd3ac 100644 --- a/docset/winserver2012r2-ps/dnsserver/Add-DnsServerDirectoryPartition.md +++ b/docset/winserver2012r2-ps/dnsserver/Add-DnsServerDirectoryPartition.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerDirectoryPartition_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverdirectorypartition?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverdirectorypartition?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerDirectoryPartition --- diff --git a/docset/winserver2012r2-ps/dnsserver/Add-DnsServerForwarder.md b/docset/winserver2012r2-ps/dnsserver/Add-DnsServerForwarder.md index 43b583f2bc..7931ce4a7f 100644 --- a/docset/winserver2012r2-ps/dnsserver/Add-DnsServerForwarder.md +++ b/docset/winserver2012r2-ps/dnsserver/Add-DnsServerForwarder.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerForwarder_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverforwarder?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverforwarder?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerForwarder --- diff --git a/docset/winserver2012r2-ps/dnsserver/Add-DnsServerPrimaryZone.md b/docset/winserver2012r2-ps/dnsserver/Add-DnsServerPrimaryZone.md index a4d601e642..28fc9c04ee 100644 --- a/docset/winserver2012r2-ps/dnsserver/Add-DnsServerPrimaryZone.md +++ b/docset/winserver2012r2-ps/dnsserver/Add-DnsServerPrimaryZone.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerPrimaryZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverprimaryzone?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverprimaryzone?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerPrimaryZone --- diff --git a/docset/winserver2012r2-ps/dnsserver/Add-DnsServerResourceRecord.md b/docset/winserver2012r2-ps/dnsserver/Add-DnsServerResourceRecord.md index 33e389dce5..1488245914 100644 --- a/docset/winserver2012r2-ps/dnsserver/Add-DnsServerResourceRecord.md +++ b/docset/winserver2012r2-ps/dnsserver/Add-DnsServerResourceRecord.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerResourceRecord_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecord?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecord?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerResourceRecord --- diff --git a/docset/winserver2012r2-ps/dnsserver/Add-DnsServerResourceRecordA.md b/docset/winserver2012r2-ps/dnsserver/Add-DnsServerResourceRecordA.md index 35cb390536..54ebdfe340 100644 --- a/docset/winserver2012r2-ps/dnsserver/Add-DnsServerResourceRecordA.md +++ b/docset/winserver2012r2-ps/dnsserver/Add-DnsServerResourceRecordA.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerResourceRecordA_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecorda?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecorda?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerResourceRecordA --- diff --git a/docset/winserver2012r2-ps/dnsserver/Add-DnsServerResourceRecordAAAA.md b/docset/winserver2012r2-ps/dnsserver/Add-DnsServerResourceRecordAAAA.md index 6b401df35f..9032304ef0 100644 --- a/docset/winserver2012r2-ps/dnsserver/Add-DnsServerResourceRecordAAAA.md +++ b/docset/winserver2012r2-ps/dnsserver/Add-DnsServerResourceRecordAAAA.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerResourceRecordAAAA_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecordaaaa?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecordaaaa?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerResourceRecordAAAA --- diff --git a/docset/winserver2012r2-ps/dnsserver/Add-DnsServerResourceRecordCName.md b/docset/winserver2012r2-ps/dnsserver/Add-DnsServerResourceRecordCName.md index bfc0f3de1a..c6a6df878d 100644 --- a/docset/winserver2012r2-ps/dnsserver/Add-DnsServerResourceRecordCName.md +++ b/docset/winserver2012r2-ps/dnsserver/Add-DnsServerResourceRecordCName.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerResourceRecordCNAME_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecordcname?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecordcname?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerResourceRecordCName --- diff --git a/docset/winserver2012r2-ps/dnsserver/Add-DnsServerResourceRecordDS.md b/docset/winserver2012r2-ps/dnsserver/Add-DnsServerResourceRecordDS.md index ec33edbac0..546efbb51d 100644 --- a/docset/winserver2012r2-ps/dnsserver/Add-DnsServerResourceRecordDS.md +++ b/docset/winserver2012r2-ps/dnsserver/Add-DnsServerResourceRecordDS.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerResourceRecordDS_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecordds?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecordds?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerResourceRecordDS --- diff --git a/docset/winserver2012r2-ps/dnsserver/Add-DnsServerResourceRecordDnsKey.md b/docset/winserver2012r2-ps/dnsserver/Add-DnsServerResourceRecordDnsKey.md index b8cc760dba..1c1e6b784d 100644 --- a/docset/winserver2012r2-ps/dnsserver/Add-DnsServerResourceRecordDnsKey.md +++ b/docset/winserver2012r2-ps/dnsserver/Add-DnsServerResourceRecordDnsKey.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerResourceRecordDnsKey_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecorddnskey?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecorddnskey?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerResourceRecordDnsKey --- diff --git a/docset/winserver2012r2-ps/dnsserver/Add-DnsServerResourceRecordMX.md b/docset/winserver2012r2-ps/dnsserver/Add-DnsServerResourceRecordMX.md index 4d53960e47..8ed5caf3ea 100644 --- a/docset/winserver2012r2-ps/dnsserver/Add-DnsServerResourceRecordMX.md +++ b/docset/winserver2012r2-ps/dnsserver/Add-DnsServerResourceRecordMX.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerResourceRecordMX_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecordmx?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecordmx?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerResourceRecordMX --- diff --git a/docset/winserver2012r2-ps/dnsserver/Add-DnsServerResourceRecordPtr.md b/docset/winserver2012r2-ps/dnsserver/Add-DnsServerResourceRecordPtr.md index 64f666ea8c..ee98afb4aa 100644 --- a/docset/winserver2012r2-ps/dnsserver/Add-DnsServerResourceRecordPtr.md +++ b/docset/winserver2012r2-ps/dnsserver/Add-DnsServerResourceRecordPtr.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerResourceRecordPTR_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecordptr?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecordptr?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerResourceRecordPtr --- diff --git a/docset/winserver2012r2-ps/dnsserver/Add-DnsServerRootHint.md b/docset/winserver2012r2-ps/dnsserver/Add-DnsServerRootHint.md index 144cccb611..6520f1c8eb 100644 --- a/docset/winserver2012r2-ps/dnsserver/Add-DnsServerRootHint.md +++ b/docset/winserver2012r2-ps/dnsserver/Add-DnsServerRootHint.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerRootHint_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverroothint?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverroothint?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerRootHint --- diff --git a/docset/winserver2012r2-ps/dnsserver/Add-DnsServerSecondaryZone.md b/docset/winserver2012r2-ps/dnsserver/Add-DnsServerSecondaryZone.md index 08706a9118..c044a1dd09 100644 --- a/docset/winserver2012r2-ps/dnsserver/Add-DnsServerSecondaryZone.md +++ b/docset/winserver2012r2-ps/dnsserver/Add-DnsServerSecondaryZone.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerSecondaryZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserversecondaryzone?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserversecondaryzone?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerSecondaryZone --- diff --git a/docset/winserver2012r2-ps/dnsserver/Add-DnsServerSigningKey.md b/docset/winserver2012r2-ps/dnsserver/Add-DnsServerSigningKey.md index 51933ebebb..7e31cd487b 100644 --- a/docset/winserver2012r2-ps/dnsserver/Add-DnsServerSigningKey.md +++ b/docset/winserver2012r2-ps/dnsserver/Add-DnsServerSigningKey.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerSigningKey_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserversigningkey?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserversigningkey?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerSigningKey --- diff --git a/docset/winserver2012r2-ps/dnsserver/Add-DnsServerStubZone.md b/docset/winserver2012r2-ps/dnsserver/Add-DnsServerStubZone.md index 752583adcc..4f8abfd6b9 100644 --- a/docset/winserver2012r2-ps/dnsserver/Add-DnsServerStubZone.md +++ b/docset/winserver2012r2-ps/dnsserver/Add-DnsServerStubZone.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerStubZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverstubzone?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverstubzone?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerStubZone --- diff --git a/docset/winserver2012r2-ps/dnsserver/Add-DnsServerTrustAnchor.md b/docset/winserver2012r2-ps/dnsserver/Add-DnsServerTrustAnchor.md index 6fc54fbaaf..a0b921cecd 100644 --- a/docset/winserver2012r2-ps/dnsserver/Add-DnsServerTrustAnchor.md +++ b/docset/winserver2012r2-ps/dnsserver/Add-DnsServerTrustAnchor.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerTrustAnchor_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsservertrustanchor?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsservertrustanchor?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerTrustAnchor --- diff --git a/docset/winserver2012r2-ps/dnsserver/Add-DnsServerZoneDelegation.md b/docset/winserver2012r2-ps/dnsserver/Add-DnsServerZoneDelegation.md index 1c48be4f9f..a48d05bd5e 100644 --- a/docset/winserver2012r2-ps/dnsserver/Add-DnsServerZoneDelegation.md +++ b/docset/winserver2012r2-ps/dnsserver/Add-DnsServerZoneDelegation.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerZoneDelegation_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverzonedelegation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverzonedelegation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerZoneDelegation --- diff --git a/docset/winserver2012r2-ps/dnsserver/Clear-DnsServerCache.md b/docset/winserver2012r2-ps/dnsserver/Clear-DnsServerCache.md index 6a8e9ca5bc..0accb03288 100644 --- a/docset/winserver2012r2-ps/dnsserver/Clear-DnsServerCache.md +++ b/docset/winserver2012r2-ps/dnsserver/Clear-DnsServerCache.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerCache_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/clear-dnsservercache?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/clear-dnsservercache?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-DnsServerCache --- diff --git a/docset/winserver2012r2-ps/dnsserver/Clear-DnsServerStatistics.md b/docset/winserver2012r2-ps/dnsserver/Clear-DnsServerStatistics.md index 61b4fd7f92..7367cc8bdc 100644 --- a/docset/winserver2012r2-ps/dnsserver/Clear-DnsServerStatistics.md +++ b/docset/winserver2012r2-ps/dnsserver/Clear-DnsServerStatistics.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerStatistics_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/clear-dnsserverstatistics?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/clear-dnsserverstatistics?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-DnsServerStatistics --- diff --git a/docset/winserver2012r2-ps/dnsserver/ConvertTo-DnsServerPrimaryZone.md b/docset/winserver2012r2-ps/dnsserver/ConvertTo-DnsServerPrimaryZone.md index 1803a48baf..8cf45cd7c6 100644 --- a/docset/winserver2012r2-ps/dnsserver/ConvertTo-DnsServerPrimaryZone.md +++ b/docset/winserver2012r2-ps/dnsserver/ConvertTo-DnsServerPrimaryZone.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerPrimaryZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/convertto-dnsserverprimaryzone?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/convertto-dnsserverprimaryzone?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: ConvertTo-DnsServerPrimaryZone --- diff --git a/docset/winserver2012r2-ps/dnsserver/ConvertTo-DnsServerSecondaryZone.md b/docset/winserver2012r2-ps/dnsserver/ConvertTo-DnsServerSecondaryZone.md index 915768a527..fb14628697 100644 --- a/docset/winserver2012r2-ps/dnsserver/ConvertTo-DnsServerSecondaryZone.md +++ b/docset/winserver2012r2-ps/dnsserver/ConvertTo-DnsServerSecondaryZone.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerSecondaryZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/convertto-dnsserversecondaryzone?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/convertto-dnsserversecondaryzone?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: ConvertTo-DnsServerSecondaryZone --- diff --git a/docset/winserver2012r2-ps/dnsserver/Disable-DnsServerSigningKeyRollover.md b/docset/winserver2012r2-ps/dnsserver/Disable-DnsServerSigningKeyRollover.md index dc97b520f1..74dac56670 100644 --- a/docset/winserver2012r2-ps/dnsserver/Disable-DnsServerSigningKeyRollover.md +++ b/docset/winserver2012r2-ps/dnsserver/Disable-DnsServerSigningKeyRollover.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerSigningKeyRollover_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/disable-dnsserversigningkeyrollover?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/disable-dnsserversigningkeyrollover?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-DnsServerSigningKeyRollover --- diff --git a/docset/winserver2012r2-ps/dnsserver/Enable-DnsServerSigningKeyRollover.md b/docset/winserver2012r2-ps/dnsserver/Enable-DnsServerSigningKeyRollover.md index 17c67a0cf5..753c9cbea0 100644 --- a/docset/winserver2012r2-ps/dnsserver/Enable-DnsServerSigningKeyRollover.md +++ b/docset/winserver2012r2-ps/dnsserver/Enable-DnsServerSigningKeyRollover.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerSigningKeyRollover_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/enable-dnsserversigningkeyrollover?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/enable-dnsserversigningkeyrollover?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-DnsServerSigningKeyRollover --- diff --git a/docset/winserver2012r2-ps/dnsserver/Export-DnsServerDnsSecPublicKey.md b/docset/winserver2012r2-ps/dnsserver/Export-DnsServerDnsSecPublicKey.md index 219ad414dc..321dfc7d59 100644 --- a/docset/winserver2012r2-ps/dnsserver/Export-DnsServerDnsSecPublicKey.md +++ b/docset/winserver2012r2-ps/dnsserver/Export-DnsServerDnsSecPublicKey.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerDnsSecPublicKey_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/export-dnsserverdnssecpublickey?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/export-dnsserverdnssecpublickey?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-DnsServerDnsSecPublicKey --- diff --git a/docset/winserver2012r2-ps/dnsserver/Export-DnsServerZone.md b/docset/winserver2012r2-ps/dnsserver/Export-DnsServerZone.md index dd6ade7bf3..f2751faa4c 100644 --- a/docset/winserver2012r2-ps/dnsserver/Export-DnsServerZone.md +++ b/docset/winserver2012r2-ps/dnsserver/Export-DnsServerZone.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/export-dnsserverzone?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/export-dnsserverzone?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-DnsServerZone --- diff --git a/docset/winserver2012r2-ps/dnsserver/Get-DnsServer.md b/docset/winserver2012r2-ps/dnsserver/Get-DnsServer.md index 9b9cab17d0..8da66f8e28 100644 --- a/docset/winserver2012r2-ps/dnsserver/Get-DnsServer.md +++ b/docset/winserver2012r2-ps/dnsserver/Get-DnsServer.md @@ -2,7 +2,7 @@ external help file: PS_DnsServer_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServer --- diff --git a/docset/winserver2012r2-ps/dnsserver/Get-DnsServerCache.md b/docset/winserver2012r2-ps/dnsserver/Get-DnsServerCache.md index 7c64b41950..a9466a89e2 100644 --- a/docset/winserver2012r2-ps/dnsserver/Get-DnsServerCache.md +++ b/docset/winserver2012r2-ps/dnsserver/Get-DnsServerCache.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerCache_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsservercache?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsservercache?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerCache --- diff --git a/docset/winserver2012r2-ps/dnsserver/Get-DnsServerDiagnostics.md b/docset/winserver2012r2-ps/dnsserver/Get-DnsServerDiagnostics.md index 59c226c292..2161b078f0 100644 --- a/docset/winserver2012r2-ps/dnsserver/Get-DnsServerDiagnostics.md +++ b/docset/winserver2012r2-ps/dnsserver/Get-DnsServerDiagnostics.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerDiagnostics_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverdiagnostics?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverdiagnostics?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerDiagnostics --- diff --git a/docset/winserver2012r2-ps/dnsserver/Get-DnsServerDirectoryPartition.md b/docset/winserver2012r2-ps/dnsserver/Get-DnsServerDirectoryPartition.md index 3b5b2609a3..ab02d8b73b 100644 --- a/docset/winserver2012r2-ps/dnsserver/Get-DnsServerDirectoryPartition.md +++ b/docset/winserver2012r2-ps/dnsserver/Get-DnsServerDirectoryPartition.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerDirectoryPartition_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverdirectorypartition?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverdirectorypartition?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerDirectoryPartition --- diff --git a/docset/winserver2012r2-ps/dnsserver/Get-DnsServerDnsSecZoneSetting.md b/docset/winserver2012r2-ps/dnsserver/Get-DnsServerDnsSecZoneSetting.md index f9dbc6792a..0c3469c03c 100644 --- a/docset/winserver2012r2-ps/dnsserver/Get-DnsServerDnsSecZoneSetting.md +++ b/docset/winserver2012r2-ps/dnsserver/Get-DnsServerDnsSecZoneSetting.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerDnsSecZoneSetting_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverdnsseczonesetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverdnsseczonesetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerDnsSecZoneSetting --- diff --git a/docset/winserver2012r2-ps/dnsserver/Get-DnsServerDsSetting.md b/docset/winserver2012r2-ps/dnsserver/Get-DnsServerDsSetting.md index e889ff5f7f..ef4967a193 100644 --- a/docset/winserver2012r2-ps/dnsserver/Get-DnsServerDsSetting.md +++ b/docset/winserver2012r2-ps/dnsserver/Get-DnsServerDsSetting.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerDsSetting_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverdssetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverdssetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerDsSetting --- diff --git a/docset/winserver2012r2-ps/dnsserver/Get-DnsServerEDns.md b/docset/winserver2012r2-ps/dnsserver/Get-DnsServerEDns.md index 48a958436b..ed590066bc 100644 --- a/docset/winserver2012r2-ps/dnsserver/Get-DnsServerEDns.md +++ b/docset/winserver2012r2-ps/dnsserver/Get-DnsServerEDns.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerEdns_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserveredns?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserveredns?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerEDns --- diff --git a/docset/winserver2012r2-ps/dnsserver/Get-DnsServerForwarder.md b/docset/winserver2012r2-ps/dnsserver/Get-DnsServerForwarder.md index ad57d84be7..bed6229e65 100644 --- a/docset/winserver2012r2-ps/dnsserver/Get-DnsServerForwarder.md +++ b/docset/winserver2012r2-ps/dnsserver/Get-DnsServerForwarder.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerForwarder_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverforwarder?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverforwarder?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerForwarder --- diff --git a/docset/winserver2012r2-ps/dnsserver/Get-DnsServerGlobalNameZone.md b/docset/winserver2012r2-ps/dnsserver/Get-DnsServerGlobalNameZone.md index 72de5c485f..a7507ee7e7 100644 --- a/docset/winserver2012r2-ps/dnsserver/Get-DnsServerGlobalNameZone.md +++ b/docset/winserver2012r2-ps/dnsserver/Get-DnsServerGlobalNameZone.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerGlobalNameZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverglobalnamezone?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverglobalnamezone?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerGlobalNameZone --- diff --git a/docset/winserver2012r2-ps/dnsserver/Get-DnsServerGlobalQueryBlockList.md b/docset/winserver2012r2-ps/dnsserver/Get-DnsServerGlobalQueryBlockList.md index a98f9b30cc..6495b7f15a 100644 --- a/docset/winserver2012r2-ps/dnsserver/Get-DnsServerGlobalQueryBlockList.md +++ b/docset/winserver2012r2-ps/dnsserver/Get-DnsServerGlobalQueryBlockList.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerGlobalQueryBlockList_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverglobalqueryblocklist?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverglobalqueryblocklist?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerGlobalQueryBlockList --- diff --git a/docset/winserver2012r2-ps/dnsserver/Get-DnsServerRecursion.md b/docset/winserver2012r2-ps/dnsserver/Get-DnsServerRecursion.md index a522f932da..3786b83197 100644 --- a/docset/winserver2012r2-ps/dnsserver/Get-DnsServerRecursion.md +++ b/docset/winserver2012r2-ps/dnsserver/Get-DnsServerRecursion.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerRecursion_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverrecursion?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverrecursion?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerRecursion --- diff --git a/docset/winserver2012r2-ps/dnsserver/Get-DnsServerResourceRecord.md b/docset/winserver2012r2-ps/dnsserver/Get-DnsServerResourceRecord.md index a1ce9771c9..45154eec9a 100644 --- a/docset/winserver2012r2-ps/dnsserver/Get-DnsServerResourceRecord.md +++ b/docset/winserver2012r2-ps/dnsserver/Get-DnsServerResourceRecord.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerResourceRecord_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverresourcerecord?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverresourcerecord?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerResourceRecord --- diff --git a/docset/winserver2012r2-ps/dnsserver/Get-DnsServerRootHint.md b/docset/winserver2012r2-ps/dnsserver/Get-DnsServerRootHint.md index 1a3df3c165..021a9bb380 100644 --- a/docset/winserver2012r2-ps/dnsserver/Get-DnsServerRootHint.md +++ b/docset/winserver2012r2-ps/dnsserver/Get-DnsServerRootHint.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerRootHint_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverroothint?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverroothint?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerRootHint --- diff --git a/docset/winserver2012r2-ps/dnsserver/Get-DnsServerScavenging.md b/docset/winserver2012r2-ps/dnsserver/Get-DnsServerScavenging.md index abf4b72a46..ee09aefc8d 100644 --- a/docset/winserver2012r2-ps/dnsserver/Get-DnsServerScavenging.md +++ b/docset/winserver2012r2-ps/dnsserver/Get-DnsServerScavenging.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerScavenging_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverscavenging?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverscavenging?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerScavenging --- diff --git a/docset/winserver2012r2-ps/dnsserver/Get-DnsServerSetting.md b/docset/winserver2012r2-ps/dnsserver/Get-DnsServerSetting.md index c9e448226e..1eb129575e 100644 --- a/docset/winserver2012r2-ps/dnsserver/Get-DnsServerSetting.md +++ b/docset/winserver2012r2-ps/dnsserver/Get-DnsServerSetting.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerSetting_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserversetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserversetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerSetting --- diff --git a/docset/winserver2012r2-ps/dnsserver/Get-DnsServerSigningKey.md b/docset/winserver2012r2-ps/dnsserver/Get-DnsServerSigningKey.md index 7fdd998e06..706f11ea8b 100644 --- a/docset/winserver2012r2-ps/dnsserver/Get-DnsServerSigningKey.md +++ b/docset/winserver2012r2-ps/dnsserver/Get-DnsServerSigningKey.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerSigningKey_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserversigningkey?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserversigningkey?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerSigningKey --- diff --git a/docset/winserver2012r2-ps/dnsserver/Get-DnsServerStatistics.md b/docset/winserver2012r2-ps/dnsserver/Get-DnsServerStatistics.md index 71254f8b08..c0936d3345 100644 --- a/docset/winserver2012r2-ps/dnsserver/Get-DnsServerStatistics.md +++ b/docset/winserver2012r2-ps/dnsserver/Get-DnsServerStatistics.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerStatistics_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverstatistics?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverstatistics?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerStatistics --- diff --git a/docset/winserver2012r2-ps/dnsserver/Get-DnsServerTrustAnchor.md b/docset/winserver2012r2-ps/dnsserver/Get-DnsServerTrustAnchor.md index 3ca6405662..162860d560 100644 --- a/docset/winserver2012r2-ps/dnsserver/Get-DnsServerTrustAnchor.md +++ b/docset/winserver2012r2-ps/dnsserver/Get-DnsServerTrustAnchor.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerTrustAnchor_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsservertrustanchor?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsservertrustanchor?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerTrustAnchor --- diff --git a/docset/winserver2012r2-ps/dnsserver/Get-DnsServerTrustPoint.md b/docset/winserver2012r2-ps/dnsserver/Get-DnsServerTrustPoint.md index 9734cb7b23..384c8dd574 100644 --- a/docset/winserver2012r2-ps/dnsserver/Get-DnsServerTrustPoint.md +++ b/docset/winserver2012r2-ps/dnsserver/Get-DnsServerTrustPoint.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerTrustPoint_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsservertrustpoint?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsservertrustpoint?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerTrustPoint --- diff --git a/docset/winserver2012r2-ps/dnsserver/Get-DnsServerZone.md b/docset/winserver2012r2-ps/dnsserver/Get-DnsServerZone.md index cc7ffa1b20..1abb49c08d 100644 --- a/docset/winserver2012r2-ps/dnsserver/Get-DnsServerZone.md +++ b/docset/winserver2012r2-ps/dnsserver/Get-DnsServerZone.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverzone?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverzone?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerZone --- diff --git a/docset/winserver2012r2-ps/dnsserver/Get-DnsServerZoneAging.md b/docset/winserver2012r2-ps/dnsserver/Get-DnsServerZoneAging.md index fca23a7dff..c2d61f4eca 100644 --- a/docset/winserver2012r2-ps/dnsserver/Get-DnsServerZoneAging.md +++ b/docset/winserver2012r2-ps/dnsserver/Get-DnsServerZoneAging.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerZoneAging_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverzoneaging?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverzoneaging?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerZoneAging --- diff --git a/docset/winserver2012r2-ps/dnsserver/Get-DnsServerZoneDelegation.md b/docset/winserver2012r2-ps/dnsserver/Get-DnsServerZoneDelegation.md index 6b2e7c1135..ca7ff19640 100644 --- a/docset/winserver2012r2-ps/dnsserver/Get-DnsServerZoneDelegation.md +++ b/docset/winserver2012r2-ps/dnsserver/Get-DnsServerZoneDelegation.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerZoneDelegation_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverzonedelegation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverzonedelegation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerZoneDelegation --- diff --git a/docset/winserver2012r2-ps/dnsserver/Import-DnsServerResourceRecordDS.md b/docset/winserver2012r2-ps/dnsserver/Import-DnsServerResourceRecordDS.md index b910e6f3f1..39b8a45551 100644 --- a/docset/winserver2012r2-ps/dnsserver/Import-DnsServerResourceRecordDS.md +++ b/docset/winserver2012r2-ps/dnsserver/Import-DnsServerResourceRecordDS.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerResourceRecordDS_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/import-dnsserverresourcerecordds?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/import-dnsserverresourcerecordds?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-DnsServerResourceRecordDS --- diff --git a/docset/winserver2012r2-ps/dnsserver/Import-DnsServerRootHint.md b/docset/winserver2012r2-ps/dnsserver/Import-DnsServerRootHint.md index de878f5327..d2d1de66ed 100644 --- a/docset/winserver2012r2-ps/dnsserver/Import-DnsServerRootHint.md +++ b/docset/winserver2012r2-ps/dnsserver/Import-DnsServerRootHint.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerRootHint_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/import-dnsserverroothint?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/import-dnsserverroothint?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-DnsServerRootHint --- diff --git a/docset/winserver2012r2-ps/dnsserver/Import-DnsServerTrustAnchor.md b/docset/winserver2012r2-ps/dnsserver/Import-DnsServerTrustAnchor.md index c4cfe99bce..6cb544f44d 100644 --- a/docset/winserver2012r2-ps/dnsserver/Import-DnsServerTrustAnchor.md +++ b/docset/winserver2012r2-ps/dnsserver/Import-DnsServerTrustAnchor.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerTrustAnchor_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/import-dnsservertrustanchor?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/import-dnsservertrustanchor?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-DnsServerTrustAnchor --- diff --git a/docset/winserver2012r2-ps/dnsserver/Invoke-DnsServerSigningKeyRollover.md b/docset/winserver2012r2-ps/dnsserver/Invoke-DnsServerSigningKeyRollover.md index 12b742b7a1..2520c1f3a7 100644 --- a/docset/winserver2012r2-ps/dnsserver/Invoke-DnsServerSigningKeyRollover.md +++ b/docset/winserver2012r2-ps/dnsserver/Invoke-DnsServerSigningKeyRollover.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerSigningKeyRollover_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/invoke-dnsserversigningkeyrollover?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/invoke-dnsserversigningkeyrollover?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-DnsServerSigningKeyRollover --- diff --git a/docset/winserver2012r2-ps/dnsserver/Invoke-DnsServerZoneSign.md b/docset/winserver2012r2-ps/dnsserver/Invoke-DnsServerZoneSign.md index 3ad528fdbf..93b1bddb32 100644 --- a/docset/winserver2012r2-ps/dnsserver/Invoke-DnsServerZoneSign.md +++ b/docset/winserver2012r2-ps/dnsserver/Invoke-DnsServerZoneSign.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerZoneSign_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/invoke-dnsserverzonesign?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/invoke-dnsserverzonesign?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-DnsServerZoneSign --- diff --git a/docset/winserver2012r2-ps/dnsserver/Invoke-DnsServerZoneUnsign.md b/docset/winserver2012r2-ps/dnsserver/Invoke-DnsServerZoneUnsign.md index 52f0044f7f..7461680b9c 100644 --- a/docset/winserver2012r2-ps/dnsserver/Invoke-DnsServerZoneUnsign.md +++ b/docset/winserver2012r2-ps/dnsserver/Invoke-DnsServerZoneUnsign.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerZoneUnsign_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/invoke-dnsserverzoneunsign?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/invoke-dnsserverzoneunsign?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-DnsServerZoneUnsign --- diff --git a/docset/winserver2012r2-ps/dnsserver/Register-DnsServerDirectoryPartition.md b/docset/winserver2012r2-ps/dnsserver/Register-DnsServerDirectoryPartition.md index f7a7de9cbc..e641b09080 100644 --- a/docset/winserver2012r2-ps/dnsserver/Register-DnsServerDirectoryPartition.md +++ b/docset/winserver2012r2-ps/dnsserver/Register-DnsServerDirectoryPartition.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerDirectoryPartition_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/register-dnsserverdirectorypartition?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/register-dnsserverdirectorypartition?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Register-DnsServerDirectoryPartition --- diff --git a/docset/winserver2012r2-ps/dnsserver/Remove-DnsServerDirectoryPartition.md b/docset/winserver2012r2-ps/dnsserver/Remove-DnsServerDirectoryPartition.md index e494676735..b4accf2a1a 100644 --- a/docset/winserver2012r2-ps/dnsserver/Remove-DnsServerDirectoryPartition.md +++ b/docset/winserver2012r2-ps/dnsserver/Remove-DnsServerDirectoryPartition.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerDirectoryPartition_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsserverdirectorypartition?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsserverdirectorypartition?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsServerDirectoryPartition --- diff --git a/docset/winserver2012r2-ps/dnsserver/Remove-DnsServerForwarder.md b/docset/winserver2012r2-ps/dnsserver/Remove-DnsServerForwarder.md index a359ebd661..40bda02b13 100644 --- a/docset/winserver2012r2-ps/dnsserver/Remove-DnsServerForwarder.md +++ b/docset/winserver2012r2-ps/dnsserver/Remove-DnsServerForwarder.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerForwarder_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsserverforwarder?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsserverforwarder?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsServerForwarder --- diff --git a/docset/winserver2012r2-ps/dnsserver/Remove-DnsServerResourceRecord.md b/docset/winserver2012r2-ps/dnsserver/Remove-DnsServerResourceRecord.md index bf8da3cfc4..38493647d6 100644 --- a/docset/winserver2012r2-ps/dnsserver/Remove-DnsServerResourceRecord.md +++ b/docset/winserver2012r2-ps/dnsserver/Remove-DnsServerResourceRecord.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerResourceRecord_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsserverresourcerecord?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsserverresourcerecord?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsServerResourceRecord --- diff --git a/docset/winserver2012r2-ps/dnsserver/Remove-DnsServerRootHint.md b/docset/winserver2012r2-ps/dnsserver/Remove-DnsServerRootHint.md index b41e2622f2..d609e30b81 100644 --- a/docset/winserver2012r2-ps/dnsserver/Remove-DnsServerRootHint.md +++ b/docset/winserver2012r2-ps/dnsserver/Remove-DnsServerRootHint.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerRootHint_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsserverroothint?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsserverroothint?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsServerRootHint --- diff --git a/docset/winserver2012r2-ps/dnsserver/Remove-DnsServerSigningKey.md b/docset/winserver2012r2-ps/dnsserver/Remove-DnsServerSigningKey.md index a495dfde78..3e4bba0ff7 100644 --- a/docset/winserver2012r2-ps/dnsserver/Remove-DnsServerSigningKey.md +++ b/docset/winserver2012r2-ps/dnsserver/Remove-DnsServerSigningKey.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerSigningKey_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsserversigningkey?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsserversigningkey?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsServerSigningKey --- diff --git a/docset/winserver2012r2-ps/dnsserver/Remove-DnsServerTrustAnchor.md b/docset/winserver2012r2-ps/dnsserver/Remove-DnsServerTrustAnchor.md index 9721559694..db3abf319f 100644 --- a/docset/winserver2012r2-ps/dnsserver/Remove-DnsServerTrustAnchor.md +++ b/docset/winserver2012r2-ps/dnsserver/Remove-DnsServerTrustAnchor.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerTrustAnchor_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsservertrustanchor?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsservertrustanchor?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsServerTrustAnchor --- diff --git a/docset/winserver2012r2-ps/dnsserver/Remove-DnsServerZone.md b/docset/winserver2012r2-ps/dnsserver/Remove-DnsServerZone.md index 025196cffc..03c64111b8 100644 --- a/docset/winserver2012r2-ps/dnsserver/Remove-DnsServerZone.md +++ b/docset/winserver2012r2-ps/dnsserver/Remove-DnsServerZone.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsserverzone?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsserverzone?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsServerZone --- diff --git a/docset/winserver2012r2-ps/dnsserver/Remove-DnsServerZoneDelegation.md b/docset/winserver2012r2-ps/dnsserver/Remove-DnsServerZoneDelegation.md index ca8dece600..d1ae784d94 100644 --- a/docset/winserver2012r2-ps/dnsserver/Remove-DnsServerZoneDelegation.md +++ b/docset/winserver2012r2-ps/dnsserver/Remove-DnsServerZoneDelegation.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerZoneDelegation_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsserverzonedelegation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsserverzonedelegation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsServerZoneDelegation --- diff --git a/docset/winserver2012r2-ps/dnsserver/Reset-DnsServerZoneKeyMasterRole.md b/docset/winserver2012r2-ps/dnsserver/Reset-DnsServerZoneKeyMasterRole.md index 4adb32e7d4..c6dfe00ef2 100644 --- a/docset/winserver2012r2-ps/dnsserver/Reset-DnsServerZoneKeyMasterRole.md +++ b/docset/winserver2012r2-ps/dnsserver/Reset-DnsServerZoneKeyMasterRole.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerZoneKeyMasterRole_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/reset-dnsserverzonekeymasterrole?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/reset-dnsserverzonekeymasterrole?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-DnsServerZoneKeyMasterRole --- diff --git a/docset/winserver2012r2-ps/dnsserver/Restore-DnsServerPrimaryZone.md b/docset/winserver2012r2-ps/dnsserver/Restore-DnsServerPrimaryZone.md index 1187a575c9..941fd61cc4 100644 --- a/docset/winserver2012r2-ps/dnsserver/Restore-DnsServerPrimaryZone.md +++ b/docset/winserver2012r2-ps/dnsserver/Restore-DnsServerPrimaryZone.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerPrimaryZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/restore-dnsserverprimaryzone?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/restore-dnsserverprimaryzone?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-DnsServerPrimaryZone --- diff --git a/docset/winserver2012r2-ps/dnsserver/Restore-DnsServerSecondaryZone.md b/docset/winserver2012r2-ps/dnsserver/Restore-DnsServerSecondaryZone.md index aed250ecc3..7584ddfd8c 100644 --- a/docset/winserver2012r2-ps/dnsserver/Restore-DnsServerSecondaryZone.md +++ b/docset/winserver2012r2-ps/dnsserver/Restore-DnsServerSecondaryZone.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerSecondaryZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/restore-dnsserversecondaryzone?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/restore-dnsserversecondaryzone?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-DnsServerSecondaryZone --- diff --git a/docset/winserver2012r2-ps/dnsserver/Resume-DnsServerZone.md b/docset/winserver2012r2-ps/dnsserver/Resume-DnsServerZone.md index cf5a33246f..b174882984 100644 --- a/docset/winserver2012r2-ps/dnsserver/Resume-DnsServerZone.md +++ b/docset/winserver2012r2-ps/dnsserver/Resume-DnsServerZone.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/resume-dnsserverzone?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/resume-dnsserverzone?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-DnsServerZone --- diff --git a/docset/winserver2012r2-ps/dnsserver/Set-DnsServer.md b/docset/winserver2012r2-ps/dnsserver/Set-DnsServer.md index b683a95f98..4a95313757 100644 --- a/docset/winserver2012r2-ps/dnsserver/Set-DnsServer.md +++ b/docset/winserver2012r2-ps/dnsserver/Set-DnsServer.md @@ -2,7 +2,7 @@ external help file: PS_DnsServer_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServer --- diff --git a/docset/winserver2012r2-ps/dnsserver/Set-DnsServerCache.md b/docset/winserver2012r2-ps/dnsserver/Set-DnsServerCache.md index 1b44ee2f08..245908eb95 100644 --- a/docset/winserver2012r2-ps/dnsserver/Set-DnsServerCache.md +++ b/docset/winserver2012r2-ps/dnsserver/Set-DnsServerCache.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerCache_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsservercache?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsservercache?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerCache --- diff --git a/docset/winserver2012r2-ps/dnsserver/Set-DnsServerConditionalForwarderZone.md b/docset/winserver2012r2-ps/dnsserver/Set-DnsServerConditionalForwarderZone.md index 633b57c7af..9127bc7251 100644 --- a/docset/winserver2012r2-ps/dnsserver/Set-DnsServerConditionalForwarderZone.md +++ b/docset/winserver2012r2-ps/dnsserver/Set-DnsServerConditionalForwarderZone.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerConditionalForwarder_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverconditionalforwarderzone?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverconditionalforwarderzone?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerConditionalForwarderZone --- diff --git a/docset/winserver2012r2-ps/dnsserver/Set-DnsServerDiagnostics.md b/docset/winserver2012r2-ps/dnsserver/Set-DnsServerDiagnostics.md index a657a6a76d..43fe42839e 100644 --- a/docset/winserver2012r2-ps/dnsserver/Set-DnsServerDiagnostics.md +++ b/docset/winserver2012r2-ps/dnsserver/Set-DnsServerDiagnostics.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerDiagnostics_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverdiagnostics?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverdiagnostics?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerDiagnostics --- diff --git a/docset/winserver2012r2-ps/dnsserver/Set-DnsServerDnsSecZoneSetting.md b/docset/winserver2012r2-ps/dnsserver/Set-DnsServerDnsSecZoneSetting.md index 9ab8b9bc09..6c37cc7948 100644 --- a/docset/winserver2012r2-ps/dnsserver/Set-DnsServerDnsSecZoneSetting.md +++ b/docset/winserver2012r2-ps/dnsserver/Set-DnsServerDnsSecZoneSetting.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerDnsSecZoneSetting_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverdnsseczonesetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverdnsseczonesetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerDnsSecZoneSetting --- diff --git a/docset/winserver2012r2-ps/dnsserver/Set-DnsServerDsSetting.md b/docset/winserver2012r2-ps/dnsserver/Set-DnsServerDsSetting.md index 2979abc1ef..bdd7f74b62 100644 --- a/docset/winserver2012r2-ps/dnsserver/Set-DnsServerDsSetting.md +++ b/docset/winserver2012r2-ps/dnsserver/Set-DnsServerDsSetting.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerDsSetting_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverdssetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverdssetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerDsSetting --- diff --git a/docset/winserver2012r2-ps/dnsserver/Set-DnsServerEDns.md b/docset/winserver2012r2-ps/dnsserver/Set-DnsServerEDns.md index 479a6ad95e..a58dd1d7ee 100644 --- a/docset/winserver2012r2-ps/dnsserver/Set-DnsServerEDns.md +++ b/docset/winserver2012r2-ps/dnsserver/Set-DnsServerEDns.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerEdns_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserveredns?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserveredns?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerEDns --- diff --git a/docset/winserver2012r2-ps/dnsserver/Set-DnsServerForwarder.md b/docset/winserver2012r2-ps/dnsserver/Set-DnsServerForwarder.md index 07b8305ef6..d64e51f60a 100644 --- a/docset/winserver2012r2-ps/dnsserver/Set-DnsServerForwarder.md +++ b/docset/winserver2012r2-ps/dnsserver/Set-DnsServerForwarder.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerForwarder_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverforwarder?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverforwarder?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerForwarder --- diff --git a/docset/winserver2012r2-ps/dnsserver/Set-DnsServerGlobalNameZone.md b/docset/winserver2012r2-ps/dnsserver/Set-DnsServerGlobalNameZone.md index b300ded5b3..be733ade26 100644 --- a/docset/winserver2012r2-ps/dnsserver/Set-DnsServerGlobalNameZone.md +++ b/docset/winserver2012r2-ps/dnsserver/Set-DnsServerGlobalNameZone.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerGlobalNameZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverglobalnamezone?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverglobalnamezone?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerGlobalNameZone --- diff --git a/docset/winserver2012r2-ps/dnsserver/Set-DnsServerGlobalQueryBlockList.md b/docset/winserver2012r2-ps/dnsserver/Set-DnsServerGlobalQueryBlockList.md index 325d180bf8..bd6e81cb20 100644 --- a/docset/winserver2012r2-ps/dnsserver/Set-DnsServerGlobalQueryBlockList.md +++ b/docset/winserver2012r2-ps/dnsserver/Set-DnsServerGlobalQueryBlockList.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerGlobalQueryBlockList_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverglobalqueryblocklist?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverglobalqueryblocklist?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerGlobalQueryBlockList --- diff --git a/docset/winserver2012r2-ps/dnsserver/Set-DnsServerPrimaryZone.md b/docset/winserver2012r2-ps/dnsserver/Set-DnsServerPrimaryZone.md index bc74bb8db4..18ca3cc37d 100644 --- a/docset/winserver2012r2-ps/dnsserver/Set-DnsServerPrimaryZone.md +++ b/docset/winserver2012r2-ps/dnsserver/Set-DnsServerPrimaryZone.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerPrimaryZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverprimaryzone?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverprimaryzone?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerPrimaryZone --- diff --git a/docset/winserver2012r2-ps/dnsserver/Set-DnsServerRecursion.md b/docset/winserver2012r2-ps/dnsserver/Set-DnsServerRecursion.md index 1334e039fd..8e04904dfb 100644 --- a/docset/winserver2012r2-ps/dnsserver/Set-DnsServerRecursion.md +++ b/docset/winserver2012r2-ps/dnsserver/Set-DnsServerRecursion.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerRecursion_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverrecursion?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverrecursion?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerRecursion --- diff --git a/docset/winserver2012r2-ps/dnsserver/Set-DnsServerResourceRecord.md b/docset/winserver2012r2-ps/dnsserver/Set-DnsServerResourceRecord.md index 06af3f9b7f..99e539837f 100644 --- a/docset/winserver2012r2-ps/dnsserver/Set-DnsServerResourceRecord.md +++ b/docset/winserver2012r2-ps/dnsserver/Set-DnsServerResourceRecord.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerResourceRecord_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverresourcerecord?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverresourcerecord?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerResourceRecord --- diff --git a/docset/winserver2012r2-ps/dnsserver/Set-DnsServerResourceRecordAging.md b/docset/winserver2012r2-ps/dnsserver/Set-DnsServerResourceRecordAging.md index ebd8ad1941..72bcc3cf1a 100644 --- a/docset/winserver2012r2-ps/dnsserver/Set-DnsServerResourceRecordAging.md +++ b/docset/winserver2012r2-ps/dnsserver/Set-DnsServerResourceRecordAging.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerResourceRecordAging_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverresourcerecordaging?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverresourcerecordaging?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerResourceRecordAging --- diff --git a/docset/winserver2012r2-ps/dnsserver/Set-DnsServerRootHint.md b/docset/winserver2012r2-ps/dnsserver/Set-DnsServerRootHint.md index 699e5fe269..3edc9c43d0 100644 --- a/docset/winserver2012r2-ps/dnsserver/Set-DnsServerRootHint.md +++ b/docset/winserver2012r2-ps/dnsserver/Set-DnsServerRootHint.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerRootHint_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverroothint?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverroothint?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerRootHint --- diff --git a/docset/winserver2012r2-ps/dnsserver/Set-DnsServerScavenging.md b/docset/winserver2012r2-ps/dnsserver/Set-DnsServerScavenging.md index b0f0ceb3c8..7fa5845ac0 100644 --- a/docset/winserver2012r2-ps/dnsserver/Set-DnsServerScavenging.md +++ b/docset/winserver2012r2-ps/dnsserver/Set-DnsServerScavenging.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerScavenging_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverscavenging?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverscavenging?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerScavenging --- diff --git a/docset/winserver2012r2-ps/dnsserver/Set-DnsServerSecondaryZone.md b/docset/winserver2012r2-ps/dnsserver/Set-DnsServerSecondaryZone.md index 733ec48cc0..44617ae3c4 100644 --- a/docset/winserver2012r2-ps/dnsserver/Set-DnsServerSecondaryZone.md +++ b/docset/winserver2012r2-ps/dnsserver/Set-DnsServerSecondaryZone.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerSecondaryZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserversecondaryzone?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserversecondaryzone?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerSecondaryZone --- diff --git a/docset/winserver2012r2-ps/dnsserver/Set-DnsServerSetting.md b/docset/winserver2012r2-ps/dnsserver/Set-DnsServerSetting.md index bb4434fabb..26dbaa3f61 100644 --- a/docset/winserver2012r2-ps/dnsserver/Set-DnsServerSetting.md +++ b/docset/winserver2012r2-ps/dnsserver/Set-DnsServerSetting.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerSetting_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserversetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserversetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerSetting --- diff --git a/docset/winserver2012r2-ps/dnsserver/Set-DnsServerSigningKey.md b/docset/winserver2012r2-ps/dnsserver/Set-DnsServerSigningKey.md index 3d1263b917..076da9ce04 100644 --- a/docset/winserver2012r2-ps/dnsserver/Set-DnsServerSigningKey.md +++ b/docset/winserver2012r2-ps/dnsserver/Set-DnsServerSigningKey.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerSigningKey_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserversigningkey?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserversigningkey?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerSigningKey --- diff --git a/docset/winserver2012r2-ps/dnsserver/Set-DnsServerStubZone.md b/docset/winserver2012r2-ps/dnsserver/Set-DnsServerStubZone.md index a26fe441b3..aefe638369 100644 --- a/docset/winserver2012r2-ps/dnsserver/Set-DnsServerStubZone.md +++ b/docset/winserver2012r2-ps/dnsserver/Set-DnsServerStubZone.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerStubZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverstubzone?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverstubzone?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerStubZone --- diff --git a/docset/winserver2012r2-ps/dnsserver/Set-DnsServerZoneAging.md b/docset/winserver2012r2-ps/dnsserver/Set-DnsServerZoneAging.md index 9f3ca24f73..dcd075e12c 100644 --- a/docset/winserver2012r2-ps/dnsserver/Set-DnsServerZoneAging.md +++ b/docset/winserver2012r2-ps/dnsserver/Set-DnsServerZoneAging.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerZoneAging_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverzoneaging?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverzoneaging?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerZoneAging --- diff --git a/docset/winserver2012r2-ps/dnsserver/Set-DnsServerZoneDelegation.md b/docset/winserver2012r2-ps/dnsserver/Set-DnsServerZoneDelegation.md index c4da95cfab..513a9950a2 100644 --- a/docset/winserver2012r2-ps/dnsserver/Set-DnsServerZoneDelegation.md +++ b/docset/winserver2012r2-ps/dnsserver/Set-DnsServerZoneDelegation.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerZoneDelegation_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverzonedelegation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverzonedelegation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerZoneDelegation --- diff --git a/docset/winserver2012r2-ps/dnsserver/Show-DnsServerCache.md b/docset/winserver2012r2-ps/dnsserver/Show-DnsServerCache.md index ff16a16ffd..782d011def 100644 --- a/docset/winserver2012r2-ps/dnsserver/Show-DnsServerCache.md +++ b/docset/winserver2012r2-ps/dnsserver/Show-DnsServerCache.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerCache_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/show-dnsservercache?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/show-dnsservercache?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Show-DnsServerCache --- diff --git a/docset/winserver2012r2-ps/dnsserver/Show-DnsServerKeyStorageProvider.md b/docset/winserver2012r2-ps/dnsserver/Show-DnsServerKeyStorageProvider.md index 72f6557e4b..1d317dc108 100644 --- a/docset/winserver2012r2-ps/dnsserver/Show-DnsServerKeyStorageProvider.md +++ b/docset/winserver2012r2-ps/dnsserver/Show-DnsServerKeyStorageProvider.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerKeyStorageProvider_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/show-dnsserverkeystorageprovider?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/show-dnsserverkeystorageprovider?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Show-DnsServerKeyStorageProvider --- diff --git a/docset/winserver2012r2-ps/dnsserver/Start-DnsServerScavenging.md b/docset/winserver2012r2-ps/dnsserver/Start-DnsServerScavenging.md index 1150131388..176f3d120b 100644 --- a/docset/winserver2012r2-ps/dnsserver/Start-DnsServerScavenging.md +++ b/docset/winserver2012r2-ps/dnsserver/Start-DnsServerScavenging.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerScavenging_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/start-dnsserverscavenging?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/start-dnsserverscavenging?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-DnsServerScavenging --- diff --git a/docset/winserver2012r2-ps/dnsserver/Start-DnsServerZoneTransfer.md b/docset/winserver2012r2-ps/dnsserver/Start-DnsServerZoneTransfer.md index bc3ab459ec..cb62fe6dbf 100644 --- a/docset/winserver2012r2-ps/dnsserver/Start-DnsServerZoneTransfer.md +++ b/docset/winserver2012r2-ps/dnsserver/Start-DnsServerZoneTransfer.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerZoneTransfer_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/start-dnsserverzonetransfer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/start-dnsserverzonetransfer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-DnsServerZoneTransfer --- diff --git a/docset/winserver2012r2-ps/dnsserver/Step-DnsServerSigningKeyRollover.md b/docset/winserver2012r2-ps/dnsserver/Step-DnsServerSigningKeyRollover.md index 74a3e13ab1..8456ffc00a 100644 --- a/docset/winserver2012r2-ps/dnsserver/Step-DnsServerSigningKeyRollover.md +++ b/docset/winserver2012r2-ps/dnsserver/Step-DnsServerSigningKeyRollover.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerSigningKeyRollover_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/step-dnsserversigningkeyrollover?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/step-dnsserversigningkeyrollover?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Step-DnsServerSigningKeyRollover --- diff --git a/docset/winserver2012r2-ps/dnsserver/Suspend-DnsServerZone.md b/docset/winserver2012r2-ps/dnsserver/Suspend-DnsServerZone.md index 654d16245d..136272d056 100644 --- a/docset/winserver2012r2-ps/dnsserver/Suspend-DnsServerZone.md +++ b/docset/winserver2012r2-ps/dnsserver/Suspend-DnsServerZone.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/suspend-dnsserverzone?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/suspend-dnsserverzone?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-DnsServerZone --- diff --git a/docset/winserver2012r2-ps/dnsserver/Sync-DnsServerZone.md b/docset/winserver2012r2-ps/dnsserver/Sync-DnsServerZone.md index ab7ac018fe..4a68b8f428 100644 --- a/docset/winserver2012r2-ps/dnsserver/Sync-DnsServerZone.md +++ b/docset/winserver2012r2-ps/dnsserver/Sync-DnsServerZone.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/sync-dnsserverzone?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/sync-dnsserverzone?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Sync-DnsServerZone --- diff --git a/docset/winserver2012r2-ps/dnsserver/Test-DnsServer.md b/docset/winserver2012r2-ps/dnsserver/Test-DnsServer.md index 3601f91aaf..94452d37ef 100644 --- a/docset/winserver2012r2-ps/dnsserver/Test-DnsServer.md +++ b/docset/winserver2012r2-ps/dnsserver/Test-DnsServer.md @@ -2,7 +2,7 @@ external help file: PS_DnsServer_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/test-dnsserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/test-dnsserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-DnsServer --- diff --git a/docset/winserver2012r2-ps/dnsserver/Test-DnsServerDnsSecZoneSetting.md b/docset/winserver2012r2-ps/dnsserver/Test-DnsServerDnsSecZoneSetting.md index def03d5684..8e2daafbf8 100644 --- a/docset/winserver2012r2-ps/dnsserver/Test-DnsServerDnsSecZoneSetting.md +++ b/docset/winserver2012r2-ps/dnsserver/Test-DnsServerDnsSecZoneSetting.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerDnsSecZoneSetting_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/test-dnsserverdnsseczonesetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/test-dnsserverdnsseczonesetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-DnsServerDnsSecZoneSetting --- diff --git a/docset/winserver2012r2-ps/dnsserver/Unregister-DnsServerDirectoryPartition.md b/docset/winserver2012r2-ps/dnsserver/Unregister-DnsServerDirectoryPartition.md index 3417f15111..8efa04b344 100644 --- a/docset/winserver2012r2-ps/dnsserver/Unregister-DnsServerDirectoryPartition.md +++ b/docset/winserver2012r2-ps/dnsserver/Unregister-DnsServerDirectoryPartition.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerDirectoryPartition_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/unregister-dnsserverdirectorypartition?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/unregister-dnsserverdirectorypartition?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unregister-DnsServerDirectoryPartition --- diff --git a/docset/winserver2012r2-ps/dnsserver/Update-DnsServerTrustPoint.md b/docset/winserver2012r2-ps/dnsserver/Update-DnsServerTrustPoint.md index 3ecc257ebf..21eea3e581 100644 --- a/docset/winserver2012r2-ps/dnsserver/Update-DnsServerTrustPoint.md +++ b/docset/winserver2012r2-ps/dnsserver/Update-DnsServerTrustPoint.md @@ -2,7 +2,7 @@ external help file: PS_DnsServerTrustPoint_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/dnsserver/update-dnsservertrustpoint?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/update-dnsservertrustpoint?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-DnsServerTrustPoint --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Add-ClusterCheckpoint.md b/docset/winserver2012r2-ps/failoverclusters/Add-ClusterCheckpoint.md index f953cff989..bbf0f3d96c 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Add-ClusterCheckpoint.md +++ b/docset/winserver2012r2-ps/failoverclusters/Add-ClusterCheckpoint.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clustercheckpoint?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustercheckpoint?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterCheckpoint --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Add-ClusterDisk.md b/docset/winserver2012r2-ps/failoverclusters/Add-ClusterDisk.md index 4c00d49399..e495a79ba7 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Add-ClusterDisk.md +++ b/docset/winserver2012r2-ps/failoverclusters/Add-ClusterDisk.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clusterdisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusterdisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterDisk --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Add-ClusterFileServerRole.md b/docset/winserver2012r2-ps/failoverclusters/Add-ClusterFileServerRole.md index 90edc06120..a580bc5091 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Add-ClusterFileServerRole.md +++ b/docset/winserver2012r2-ps/failoverclusters/Add-ClusterFileServerRole.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clusterfileserverrole?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusterfileserverrole?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterFileServerRole --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Add-ClusterGenericApplicationRole.md b/docset/winserver2012r2-ps/failoverclusters/Add-ClusterGenericApplicationRole.md index 6ea20bf32d..110af1c763 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Add-ClusterGenericApplicationRole.md +++ b/docset/winserver2012r2-ps/failoverclusters/Add-ClusterGenericApplicationRole.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clustergenericapplicationrole?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustergenericapplicationrole?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterGenericApplicationRole --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Add-ClusterGenericScriptRole.md b/docset/winserver2012r2-ps/failoverclusters/Add-ClusterGenericScriptRole.md index 60a5b95fe4..ed147be531 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Add-ClusterGenericScriptRole.md +++ b/docset/winserver2012r2-ps/failoverclusters/Add-ClusterGenericScriptRole.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clustergenericscriptrole?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustergenericscriptrole?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterGenericScriptRole --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Add-ClusterGenericServiceRole.md b/docset/winserver2012r2-ps/failoverclusters/Add-ClusterGenericServiceRole.md index 792d950b85..053e231c4c 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Add-ClusterGenericServiceRole.md +++ b/docset/winserver2012r2-ps/failoverclusters/Add-ClusterGenericServiceRole.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clustergenericservicerole?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustergenericservicerole?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterGenericServiceRole --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Add-ClusterGroup.md b/docset/winserver2012r2-ps/failoverclusters/Add-ClusterGroup.md index 868360db42..47826be3ca 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Add-ClusterGroup.md +++ b/docset/winserver2012r2-ps/failoverclusters/Add-ClusterGroup.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clustergroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustergroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterGroup --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Add-ClusterNode.md b/docset/winserver2012r2-ps/failoverclusters/Add-ClusterNode.md index f1abc94be6..9c4e10a43b 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Add-ClusterNode.md +++ b/docset/winserver2012r2-ps/failoverclusters/Add-ClusterNode.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clusternode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusternode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterNode --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Add-ClusterPrintServerRole.md b/docset/winserver2012r2-ps/failoverclusters/Add-ClusterPrintServerRole.md index 206a2fa9d9..9c7785abd4 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Add-ClusterPrintServerRole.md +++ b/docset/winserver2012r2-ps/failoverclusters/Add-ClusterPrintServerRole.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clusterprintserverrole?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusterprintserverrole?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterPrintServerRole --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Add-ClusterResource.md b/docset/winserver2012r2-ps/failoverclusters/Add-ClusterResource.md index 367086ef2b..f6893758c2 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Add-ClusterResource.md +++ b/docset/winserver2012r2-ps/failoverclusters/Add-ClusterResource.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clusterresource?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusterresource?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterResource --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Add-ClusterResourceDependency.md b/docset/winserver2012r2-ps/failoverclusters/Add-ClusterResourceDependency.md index cac85fc421..c64c97d54a 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Add-ClusterResourceDependency.md +++ b/docset/winserver2012r2-ps/failoverclusters/Add-ClusterResourceDependency.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clusterresourcedependency?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusterresourcedependency?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterResourceDependency --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Add-ClusterResourceType.md b/docset/winserver2012r2-ps/failoverclusters/Add-ClusterResourceType.md index 41e7082dab..d3ae0e2d06 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Add-ClusterResourceType.md +++ b/docset/winserver2012r2-ps/failoverclusters/Add-ClusterResourceType.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clusterresourcetype?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusterresourcetype?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterResourceType --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md b/docset/winserver2012r2-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md index 54ac8d5cc3..be49a0bebe 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md +++ b/docset/winserver2012r2-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clusterscaleoutfileserverrole?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusterscaleoutfileserverrole?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterScaleOutFileServerRole --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Add-ClusterServerRole.md b/docset/winserver2012r2-ps/failoverclusters/Add-ClusterServerRole.md index 873b4ba925..91253127d1 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Add-ClusterServerRole.md +++ b/docset/winserver2012r2-ps/failoverclusters/Add-ClusterServerRole.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clusterserverrole?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusterserverrole?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterServerRole --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Add-ClusterSharedVolume.md b/docset/winserver2012r2-ps/failoverclusters/Add-ClusterSharedVolume.md index 0641651089..43768070d8 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Add-ClusterSharedVolume.md +++ b/docset/winserver2012r2-ps/failoverclusters/Add-ClusterSharedVolume.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clustersharedvolume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustersharedvolume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterSharedVolume --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Add-ClusterVMMonitoredItem.md b/docset/winserver2012r2-ps/failoverclusters/Add-ClusterVMMonitoredItem.md index 6f1647ffad..5f3d6238e5 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Add-ClusterVMMonitoredItem.md +++ b/docset/winserver2012r2-ps/failoverclusters/Add-ClusterVMMonitoredItem.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clustervmmonitoreditem?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustervmmonitoreditem?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterVMMonitoredItem --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Add-ClusterVirtualMachineRole.md b/docset/winserver2012r2-ps/failoverclusters/Add-ClusterVirtualMachineRole.md index c440ff3f4a..1f7270bc03 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Add-ClusterVirtualMachineRole.md +++ b/docset/winserver2012r2-ps/failoverclusters/Add-ClusterVirtualMachineRole.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clustervirtualmachinerole?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustervirtualmachinerole?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterVirtualMachineRole --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Add-ClusteriSCSITargetServerRole.md b/docset/winserver2012r2-ps/failoverclusters/Add-ClusteriSCSITargetServerRole.md index 654b7a6ee8..0d01e775df 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Add-ClusteriSCSITargetServerRole.md +++ b/docset/winserver2012r2-ps/failoverclusters/Add-ClusteriSCSITargetServerRole.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clusteriscsitargetserverrole?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusteriscsitargetserverrole?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusteriSCSITargetServerRole --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Block-ClusterAccess.md b/docset/winserver2012r2-ps/failoverclusters/Block-ClusterAccess.md index cb849f7fad..a0783a8b19 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Block-ClusterAccess.md +++ b/docset/winserver2012r2-ps/failoverclusters/Block-ClusterAccess.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/block-clusteraccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/block-clusteraccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Block-ClusterAccess --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Clear-ClusterDiskReservation.md b/docset/winserver2012r2-ps/failoverclusters/Clear-ClusterDiskReservation.md index 1d45f7ba88..5ffb08b201 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Clear-ClusterDiskReservation.md +++ b/docset/winserver2012r2-ps/failoverclusters/Clear-ClusterDiskReservation.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/clear-clusterdiskreservation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/clear-clusterdiskreservation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-ClusterDiskReservation --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Clear-ClusterNode.md b/docset/winserver2012r2-ps/failoverclusters/Clear-ClusterNode.md index 8f393b740b..7b1a8323a3 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Clear-ClusterNode.md +++ b/docset/winserver2012r2-ps/failoverclusters/Clear-ClusterNode.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/clear-clusternode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/clear-clusternode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-ClusterNode --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Get-Cluster.md b/docset/winserver2012r2-ps/failoverclusters/Get-Cluster.md index bcde441606..ba78a09e10 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Get-Cluster.md +++ b/docset/winserver2012r2-ps/failoverclusters/Get-Cluster.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-cluster?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-cluster?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-Cluster --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Get-ClusterAccess.md b/docset/winserver2012r2-ps/failoverclusters/Get-ClusterAccess.md index 5c454dcb0f..64e38b8362 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Get-ClusterAccess.md +++ b/docset/winserver2012r2-ps/failoverclusters/Get-ClusterAccess.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusteraccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusteraccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterAccess --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Get-ClusterAvailableDisk.md b/docset/winserver2012r2-ps/failoverclusters/Get-ClusterAvailableDisk.md index 4e95423250..20c385d598 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Get-ClusterAvailableDisk.md +++ b/docset/winserver2012r2-ps/failoverclusters/Get-ClusterAvailableDisk.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusteravailabledisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusteravailabledisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterAvailableDisk --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Get-ClusterCheckpoint.md b/docset/winserver2012r2-ps/failoverclusters/Get-ClusterCheckpoint.md index 4c021a9854..3e6b224c26 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Get-ClusterCheckpoint.md +++ b/docset/winserver2012r2-ps/failoverclusters/Get-ClusterCheckpoint.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clustercheckpoint?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clustercheckpoint?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterCheckpoint --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Get-ClusterGroup.md b/docset/winserver2012r2-ps/failoverclusters/Get-ClusterGroup.md index 837c9e615a..3a176ff70a 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Get-ClusterGroup.md +++ b/docset/winserver2012r2-ps/failoverclusters/Get-ClusterGroup.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clustergroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clustergroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterGroup --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Get-ClusterLog.md b/docset/winserver2012r2-ps/failoverclusters/Get-ClusterLog.md index f9f945f45d..4860313704 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Get-ClusterLog.md +++ b/docset/winserver2012r2-ps/failoverclusters/Get-ClusterLog.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusterlog?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterlog?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterLog --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Get-ClusterNetwork.md b/docset/winserver2012r2-ps/failoverclusters/Get-ClusterNetwork.md index 13f0309a03..b8b69c1c58 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Get-ClusterNetwork.md +++ b/docset/winserver2012r2-ps/failoverclusters/Get-ClusterNetwork.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusternetwork?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusternetwork?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterNetwork --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Get-ClusterNetworkInterface.md b/docset/winserver2012r2-ps/failoverclusters/Get-ClusterNetworkInterface.md index e36805c514..74b56bd17a 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Get-ClusterNetworkInterface.md +++ b/docset/winserver2012r2-ps/failoverclusters/Get-ClusterNetworkInterface.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusternetworkinterface?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusternetworkinterface?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterNetworkInterface --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Get-ClusterNode.md b/docset/winserver2012r2-ps/failoverclusters/Get-ClusterNode.md index 6c27a6768b..f566ba304a 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Get-ClusterNode.md +++ b/docset/winserver2012r2-ps/failoverclusters/Get-ClusterNode.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusternode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusternode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterNode --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Get-ClusterOwnerNode.md b/docset/winserver2012r2-ps/failoverclusters/Get-ClusterOwnerNode.md index b6ce6b280f..4c7e42401b 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Get-ClusterOwnerNode.md +++ b/docset/winserver2012r2-ps/failoverclusters/Get-ClusterOwnerNode.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusterownernode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterownernode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterOwnerNode --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Get-ClusterParameter.md b/docset/winserver2012r2-ps/failoverclusters/Get-ClusterParameter.md index dcb8c119a3..d85f1bc43f 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Get-ClusterParameter.md +++ b/docset/winserver2012r2-ps/failoverclusters/Get-ClusterParameter.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusterparameter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterparameter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterParameter --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Get-ClusterQuorum.md b/docset/winserver2012r2-ps/failoverclusters/Get-ClusterQuorum.md index 6c8037cf10..f68be303c1 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Get-ClusterQuorum.md +++ b/docset/winserver2012r2-ps/failoverclusters/Get-ClusterQuorum.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusterquorum?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterquorum?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterQuorum --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Get-ClusterResource.md b/docset/winserver2012r2-ps/failoverclusters/Get-ClusterResource.md index 0c186bbc26..ff9b9b45e0 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Get-ClusterResource.md +++ b/docset/winserver2012r2-ps/failoverclusters/Get-ClusterResource.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusterresource?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterresource?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterResource --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Get-ClusterResourceDependency.md b/docset/winserver2012r2-ps/failoverclusters/Get-ClusterResourceDependency.md index 3f03989016..1767e9d3af 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Get-ClusterResourceDependency.md +++ b/docset/winserver2012r2-ps/failoverclusters/Get-ClusterResourceDependency.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusterresourcedependency?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterresourcedependency?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterResourceDependency --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Get-ClusterResourceDependencyReport.md b/docset/winserver2012r2-ps/failoverclusters/Get-ClusterResourceDependencyReport.md index def1291b0e..b0366e89b1 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Get-ClusterResourceDependencyReport.md +++ b/docset/winserver2012r2-ps/failoverclusters/Get-ClusterResourceDependencyReport.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusterresourcedependencyreport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterresourcedependencyreport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterResourceDependencyReport --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Get-ClusterResourceType.md b/docset/winserver2012r2-ps/failoverclusters/Get-ClusterResourceType.md index 27cfb7e912..f3d81e9372 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Get-ClusterResourceType.md +++ b/docset/winserver2012r2-ps/failoverclusters/Get-ClusterResourceType.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusterresourcetype?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterresourcetype?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterResourceType --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Get-ClusterSharedVolume.md b/docset/winserver2012r2-ps/failoverclusters/Get-ClusterSharedVolume.md index c69b0f6bd8..6d744e0578 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Get-ClusterSharedVolume.md +++ b/docset/winserver2012r2-ps/failoverclusters/Get-ClusterSharedVolume.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clustersharedvolume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clustersharedvolume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterSharedVolume --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Get-ClusterSharedVolumeState.md b/docset/winserver2012r2-ps/failoverclusters/Get-ClusterSharedVolumeState.md index 65e23c9481..06272f7e29 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Get-ClusterSharedVolumeState.md +++ b/docset/winserver2012r2-ps/failoverclusters/Get-ClusterSharedVolumeState.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clustersharedvolumestate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clustersharedvolumestate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterSharedVolumeState --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Get-ClusterVMMonitoredItem.md b/docset/winserver2012r2-ps/failoverclusters/Get-ClusterVMMonitoredItem.md index 74d7a9b186..6feecf1989 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Get-ClusterVMMonitoredItem.md +++ b/docset/winserver2012r2-ps/failoverclusters/Get-ClusterVMMonitoredItem.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clustervmmonitoreditem?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clustervmmonitoreditem?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterVMMonitoredItem --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Grant-ClusterAccess.md b/docset/winserver2012r2-ps/failoverclusters/Grant-ClusterAccess.md index 4a3157df0a..a6346917ec 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Grant-ClusterAccess.md +++ b/docset/winserver2012r2-ps/failoverclusters/Grant-ClusterAccess.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/grant-clusteraccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/grant-clusteraccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Grant-ClusterAccess --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Move-ClusterGroup.md b/docset/winserver2012r2-ps/failoverclusters/Move-ClusterGroup.md index 503829ead7..1adb2b550a 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Move-ClusterGroup.md +++ b/docset/winserver2012r2-ps/failoverclusters/Move-ClusterGroup.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/move-clustergroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/move-clustergroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-ClusterGroup --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Move-ClusterResource.md b/docset/winserver2012r2-ps/failoverclusters/Move-ClusterResource.md index 89547c2729..8261e431c7 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Move-ClusterResource.md +++ b/docset/winserver2012r2-ps/failoverclusters/Move-ClusterResource.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/move-clusterresource?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/move-clusterresource?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-ClusterResource --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Move-ClusterSharedVolume.md b/docset/winserver2012r2-ps/failoverclusters/Move-ClusterSharedVolume.md index 5bc609b328..a8de22ab7e 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Move-ClusterSharedVolume.md +++ b/docset/winserver2012r2-ps/failoverclusters/Move-ClusterSharedVolume.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/move-clustersharedvolume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/move-clustersharedvolume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-ClusterSharedVolume --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Move-ClusterVirtualMachineRole.md b/docset/winserver2012r2-ps/failoverclusters/Move-ClusterVirtualMachineRole.md index bad89cf70a..e5bed2c8c1 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Move-ClusterVirtualMachineRole.md +++ b/docset/winserver2012r2-ps/failoverclusters/Move-ClusterVirtualMachineRole.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/move-clustervirtualmachinerole?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/move-clustervirtualmachinerole?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-ClusterVirtualMachineRole --- diff --git a/docset/winserver2012r2-ps/failoverclusters/New-Cluster.md b/docset/winserver2012r2-ps/failoverclusters/New-Cluster.md index 504b42e94f..d7c421472d 100644 --- a/docset/winserver2012r2-ps/failoverclusters/New-Cluster.md +++ b/docset/winserver2012r2-ps/failoverclusters/New-Cluster.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/new-cluster?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/new-cluster?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-Cluster --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Remove-Cluster.md b/docset/winserver2012r2-ps/failoverclusters/Remove-Cluster.md index b9393e4c49..428db68aa5 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Remove-Cluster.md +++ b/docset/winserver2012r2-ps/failoverclusters/Remove-Cluster.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-cluster?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-cluster?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-Cluster --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Remove-ClusterAccess.md b/docset/winserver2012r2-ps/failoverclusters/Remove-ClusterAccess.md index 6d39faaae4..42fc844c40 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Remove-ClusterAccess.md +++ b/docset/winserver2012r2-ps/failoverclusters/Remove-ClusterAccess.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clusteraccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clusteraccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterAccess --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Remove-ClusterCheckpoint.md b/docset/winserver2012r2-ps/failoverclusters/Remove-ClusterCheckpoint.md index c1fc5ac638..2d712278c2 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Remove-ClusterCheckpoint.md +++ b/docset/winserver2012r2-ps/failoverclusters/Remove-ClusterCheckpoint.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clustercheckpoint?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clustercheckpoint?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterCheckpoint --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Remove-ClusterGroup.md b/docset/winserver2012r2-ps/failoverclusters/Remove-ClusterGroup.md index fe52e41458..7fb134a40c 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Remove-ClusterGroup.md +++ b/docset/winserver2012r2-ps/failoverclusters/Remove-ClusterGroup.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clustergroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clustergroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterGroup --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Remove-ClusterNode.md b/docset/winserver2012r2-ps/failoverclusters/Remove-ClusterNode.md index c4ac4f61bf..101b9900f0 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Remove-ClusterNode.md +++ b/docset/winserver2012r2-ps/failoverclusters/Remove-ClusterNode.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clusternode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clusternode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterNode --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Remove-ClusterResource.md b/docset/winserver2012r2-ps/failoverclusters/Remove-ClusterResource.md index 66afbe944c..7935a0d964 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Remove-ClusterResource.md +++ b/docset/winserver2012r2-ps/failoverclusters/Remove-ClusterResource.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clusterresource?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clusterresource?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterResource --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Remove-ClusterResourceDependency.md b/docset/winserver2012r2-ps/failoverclusters/Remove-ClusterResourceDependency.md index 4719881df8..ac284a32ed 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Remove-ClusterResourceDependency.md +++ b/docset/winserver2012r2-ps/failoverclusters/Remove-ClusterResourceDependency.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clusterresourcedependency?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clusterresourcedependency?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterResourceDependency --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Remove-ClusterResourceType.md b/docset/winserver2012r2-ps/failoverclusters/Remove-ClusterResourceType.md index ade5b3773b..c6e8088456 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Remove-ClusterResourceType.md +++ b/docset/winserver2012r2-ps/failoverclusters/Remove-ClusterResourceType.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clusterresourcetype?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clusterresourcetype?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterResourceType --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Remove-ClusterSharedVolume.md b/docset/winserver2012r2-ps/failoverclusters/Remove-ClusterSharedVolume.md index 52a3ab59fd..43bb9173eb 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Remove-ClusterSharedVolume.md +++ b/docset/winserver2012r2-ps/failoverclusters/Remove-ClusterSharedVolume.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clustersharedvolume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clustersharedvolume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterSharedVolume --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Remove-ClusterVMMonitoredItem.md b/docset/winserver2012r2-ps/failoverclusters/Remove-ClusterVMMonitoredItem.md index 492395184e..a0224974bb 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Remove-ClusterVMMonitoredItem.md +++ b/docset/winserver2012r2-ps/failoverclusters/Remove-ClusterVMMonitoredItem.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clustervmmonitoreditem?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clustervmmonitoreditem?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterVMMonitoredItem --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Repair-ClusterSharedVolume.md b/docset/winserver2012r2-ps/failoverclusters/Repair-ClusterSharedVolume.md index 78e585b57e..07c73e69d9 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Repair-ClusterSharedVolume.md +++ b/docset/winserver2012r2-ps/failoverclusters/Repair-ClusterSharedVolume.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/repair-clustersharedvolume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/repair-clustersharedvolume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Repair-ClusterSharedVolume --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Reset-ClusterVMMonitoredState.md b/docset/winserver2012r2-ps/failoverclusters/Reset-ClusterVMMonitoredState.md index 17df75c05c..55f1c4ca10 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Reset-ClusterVMMonitoredState.md +++ b/docset/winserver2012r2-ps/failoverclusters/Reset-ClusterVMMonitoredState.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/reset-clustervmmonitoredstate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/reset-clustervmmonitoredstate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-ClusterVMMonitoredState --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Resume-ClusterNode.md b/docset/winserver2012r2-ps/failoverclusters/Resume-ClusterNode.md index 14a1ec76e0..d0a1322cab 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Resume-ClusterNode.md +++ b/docset/winserver2012r2-ps/failoverclusters/Resume-ClusterNode.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/resume-clusternode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/resume-clusternode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-ClusterNode --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Resume-ClusterResource.md b/docset/winserver2012r2-ps/failoverclusters/Resume-ClusterResource.md index 0c1c7f5f7e..14cb8e9e6a 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Resume-ClusterResource.md +++ b/docset/winserver2012r2-ps/failoverclusters/Resume-ClusterResource.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/resume-clusterresource?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/resume-clusterresource?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-ClusterResource --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Set-ClusterLog.md b/docset/winserver2012r2-ps/failoverclusters/Set-ClusterLog.md index f27763b87e..89bdf02932 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Set-ClusterLog.md +++ b/docset/winserver2012r2-ps/failoverclusters/Set-ClusterLog.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/set-clusterlog?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterlog?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterLog --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Set-ClusterOwnerNode.md b/docset/winserver2012r2-ps/failoverclusters/Set-ClusterOwnerNode.md index e7c0659eea..36f901e5e6 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Set-ClusterOwnerNode.md +++ b/docset/winserver2012r2-ps/failoverclusters/Set-ClusterOwnerNode.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/set-clusterownernode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterownernode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterOwnerNode --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Set-ClusterParameter.md b/docset/winserver2012r2-ps/failoverclusters/Set-ClusterParameter.md index eede825456..8e511af5ec 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Set-ClusterParameter.md +++ b/docset/winserver2012r2-ps/failoverclusters/Set-ClusterParameter.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/set-clusterparameter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterparameter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterParameter --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Set-ClusterQuorum.md b/docset/winserver2012r2-ps/failoverclusters/Set-ClusterQuorum.md index dc1886ef33..8207945400 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Set-ClusterQuorum.md +++ b/docset/winserver2012r2-ps/failoverclusters/Set-ClusterQuorum.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/set-clusterquorum?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterquorum?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterQuorum --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Set-ClusterResourceDependency.md b/docset/winserver2012r2-ps/failoverclusters/Set-ClusterResourceDependency.md index 4772606596..23a82892fb 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Set-ClusterResourceDependency.md +++ b/docset/winserver2012r2-ps/failoverclusters/Set-ClusterResourceDependency.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/set-clusterresourcedependency?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterresourcedependency?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterResourceDependency --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Start-Cluster.md b/docset/winserver2012r2-ps/failoverclusters/Start-Cluster.md index 7125f0516b..7414922a4d 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Start-Cluster.md +++ b/docset/winserver2012r2-ps/failoverclusters/Start-Cluster.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/start-cluster?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/start-cluster?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-Cluster --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Start-ClusterGroup.md b/docset/winserver2012r2-ps/failoverclusters/Start-ClusterGroup.md index 79bd6ca6e8..a63090ad81 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Start-ClusterGroup.md +++ b/docset/winserver2012r2-ps/failoverclusters/Start-ClusterGroup.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/start-clustergroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/start-clustergroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-ClusterGroup --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Start-ClusterNode.md b/docset/winserver2012r2-ps/failoverclusters/Start-ClusterNode.md index 003f299a62..9df16a9921 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Start-ClusterNode.md +++ b/docset/winserver2012r2-ps/failoverclusters/Start-ClusterNode.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/start-clusternode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/start-clusternode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-ClusterNode --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Start-ClusterResource.md b/docset/winserver2012r2-ps/failoverclusters/Start-ClusterResource.md index 30feb5b292..c7b7a2d3a4 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Start-ClusterResource.md +++ b/docset/winserver2012r2-ps/failoverclusters/Start-ClusterResource.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/start-clusterresource?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/start-clusterresource?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-ClusterResource --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Stop-Cluster.md b/docset/winserver2012r2-ps/failoverclusters/Stop-Cluster.md index b04aaa41ba..28f6d37936 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Stop-Cluster.md +++ b/docset/winserver2012r2-ps/failoverclusters/Stop-Cluster.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/stop-cluster?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/stop-cluster?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-Cluster --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Stop-ClusterGroup.md b/docset/winserver2012r2-ps/failoverclusters/Stop-ClusterGroup.md index 26c93be438..e29ff2c90e 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Stop-ClusterGroup.md +++ b/docset/winserver2012r2-ps/failoverclusters/Stop-ClusterGroup.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/stop-clustergroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/stop-clustergroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-ClusterGroup --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Stop-ClusterNode.md b/docset/winserver2012r2-ps/failoverclusters/Stop-ClusterNode.md index 9593c2568d..3187c292eb 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Stop-ClusterNode.md +++ b/docset/winserver2012r2-ps/failoverclusters/Stop-ClusterNode.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/stop-clusternode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/stop-clusternode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-ClusterNode --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Stop-ClusterResource.md b/docset/winserver2012r2-ps/failoverclusters/Stop-ClusterResource.md index c58703010c..a0c939ba15 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Stop-ClusterResource.md +++ b/docset/winserver2012r2-ps/failoverclusters/Stop-ClusterResource.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/stop-clusterresource?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/stop-clusterresource?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-ClusterResource --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Suspend-ClusterNode.md b/docset/winserver2012r2-ps/failoverclusters/Suspend-ClusterNode.md index bf32af6354..9f94892f6d 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Suspend-ClusterNode.md +++ b/docset/winserver2012r2-ps/failoverclusters/Suspend-ClusterNode.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/suspend-clusternode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/suspend-clusternode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-ClusterNode --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Suspend-ClusterResource.md b/docset/winserver2012r2-ps/failoverclusters/Suspend-ClusterResource.md index b6a9d7c53f..02e02ce43d 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Suspend-ClusterResource.md +++ b/docset/winserver2012r2-ps/failoverclusters/Suspend-ClusterResource.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/suspend-clusterresource?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/suspend-clusterresource?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-ClusterResource --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Test-Cluster.md b/docset/winserver2012r2-ps/failoverclusters/Test-Cluster.md index 6b33268b31..da75c53a0c 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Test-Cluster.md +++ b/docset/winserver2012r2-ps/failoverclusters/Test-Cluster.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/test-cluster?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/test-cluster?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-Cluster --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Test-ClusterResourceFailure.md b/docset/winserver2012r2-ps/failoverclusters/Test-ClusterResourceFailure.md index aec5067bd0..dbfe40ec66 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Test-ClusterResourceFailure.md +++ b/docset/winserver2012r2-ps/failoverclusters/Test-ClusterResourceFailure.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/test-clusterresourcefailure?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/test-clusterresourcefailure?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-ClusterResourceFailure --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Update-ClusterIPResource.md b/docset/winserver2012r2-ps/failoverclusters/Update-ClusterIPResource.md index b5bb3cca93..9d27c0234c 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Update-ClusterIPResource.md +++ b/docset/winserver2012r2-ps/failoverclusters/Update-ClusterIPResource.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/update-clusteripresource?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/update-clusteripresource?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-ClusterIPResource --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Update-ClusterNetworkNameResource.md b/docset/winserver2012r2-ps/failoverclusters/Update-ClusterNetworkNameResource.md index 1de1b4e435..e0f256cd7c 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Update-ClusterNetworkNameResource.md +++ b/docset/winserver2012r2-ps/failoverclusters/Update-ClusterNetworkNameResource.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/update-clusternetworknameresource?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/update-clusternetworknameresource?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-ClusterNetworkNameResource --- diff --git a/docset/winserver2012r2-ps/failoverclusters/Update-ClusterVirtualMachineConfiguration.md b/docset/winserver2012r2-ps/failoverclusters/Update-ClusterVirtualMachineConfiguration.md index ebf3ef7cca..7da3b00894 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Update-ClusterVirtualMachineConfiguration.md +++ b/docset/winserver2012r2-ps/failoverclusters/Update-ClusterVirtualMachineConfiguration.md @@ -2,7 +2,7 @@ external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/update-clustervirtualmachineconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/update-clustervirtualmachineconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-ClusterVirtualMachineConfiguration --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmAdrSetting.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmAdrSetting.md index 1a1e419640..7f98854038 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmAdrSetting.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmAdrSetting.md @@ -2,7 +2,7 @@ external help file: FsrmAdrSetting.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmadrsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmadrsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmAdrSetting --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmAutoQuota.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmAutoQuota.md index 6967c32236..1c6b3d6ced 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmAutoQuota.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmAutoQuota.md @@ -2,7 +2,7 @@ external help file: FSRMAutoQuota.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmautoquota?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmautoquota?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmAutoQuota --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmClassification.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmClassification.md index 8f2c765cc3..032cffffb0 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmClassification.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmClassification.md @@ -2,7 +2,7 @@ external help file: FSRMClassification.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmclassification?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmclassification?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmClassification --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmClassificationPropertyDefinition.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmClassificationPropertyDefinition.md index 7a59a5f8a4..73f8217d90 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmClassificationPropertyDefinition.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmClassificationPropertyDefinition.md @@ -2,7 +2,7 @@ external help file: FSRMClassificationPropertyDefinition.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmclassificationpropertydefinition?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmclassificationpropertydefinition?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmClassificationPropertyDefinition --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmClassificationRule.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmClassificationRule.md index 21618ed351..ade8aa2b1b 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmClassificationRule.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmClassificationRule.md @@ -2,7 +2,7 @@ external help file: FSRMClassificationRule.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmclassificationrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmclassificationrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmClassificationRule --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmEffectiveNamespace.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmEffectiveNamespace.md index d5b5777a9f..ffc7b9a29a 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmEffectiveNamespace.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmEffectiveNamespace.md @@ -2,7 +2,7 @@ external help file: FSRMEffectiveNamespace.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmeffectivenamespace?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmeffectivenamespace?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmEffectiveNamespace --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmFileGroup.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmFileGroup.md index 4293a1eb83..72914fc7a5 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmFileGroup.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmFileGroup.md @@ -2,7 +2,7 @@ external help file: FsrmFileGroup.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmfilegroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmfilegroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmFileGroup --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmFileManagementJob.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmFileManagementJob.md index af96524791..c9e15ab36a 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmFileManagementJob.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmFileManagementJob.md @@ -2,7 +2,7 @@ external help file: FSRMFileManagementJob.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmfilemanagementjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmfilemanagementjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmFileManagementJob --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmFileScreen.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmFileScreen.md index 9eb39fdfe7..f11d99c333 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmFileScreen.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmFileScreen.md @@ -2,7 +2,7 @@ external help file: FsrmFileScreen.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmfilescreen?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmfilescreen?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmFileScreen --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmFileScreenException.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmFileScreenException.md index 4ad44694b1..dafb930716 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmFileScreenException.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmFileScreenException.md @@ -2,7 +2,7 @@ external help file: FsrmFileScreenException.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmfilescreenexception?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmfilescreenexception?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmFileScreenException --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmFileScreenTemplate.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmFileScreenTemplate.md index 3be59ab0a7..d8abaa94af 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmFileScreenTemplate.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmFileScreenTemplate.md @@ -2,7 +2,7 @@ external help file: FsrmFileScreenTemplate.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmfilescreentemplate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmfilescreentemplate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmFileScreenTemplate --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmMacro.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmMacro.md index 9962ae95cf..33c5e82aff 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmMacro.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmMacro.md @@ -2,7 +2,7 @@ external help file: FsrmMacro.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmmacro?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmmacro?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmMacro --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmMgmtProperty.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmMgmtProperty.md index c6970c85ca..fb9a41b5f1 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmMgmtProperty.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmMgmtProperty.md @@ -2,7 +2,7 @@ external help file: FsrmMgmtProperty.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmmgmtproperty?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmmgmtproperty?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmMgmtProperty --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmQuota.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmQuota.md index 2fc299872f..a8fd3433b0 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmQuota.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmQuota.md @@ -2,7 +2,7 @@ external help file: FsrmQuota.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmquota?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmquota?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmQuota --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmQuotaTemplate.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmQuotaTemplate.md index 351f44f7a5..fc34e6a62c 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmQuotaTemplate.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmQuotaTemplate.md @@ -2,7 +2,7 @@ external help file: FsrmQuotaTemplate.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmquotatemplate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmquotatemplate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmQuotaTemplate --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmRmsTemplate.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmRmsTemplate.md index f8ceb6f479..8205bd032b 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmRmsTemplate.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmRmsTemplate.md @@ -2,7 +2,7 @@ external help file: FsrmRmsTemplate.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmrmstemplate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmrmstemplate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmRmsTemplate --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmSetting.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmSetting.md index f7254cf1a6..d51a2be5e2 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmSetting.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmSetting.md @@ -2,7 +2,7 @@ external help file: FsrmSetting.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmSetting --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmStorageReport.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmStorageReport.md index 68da45db9b..cdbb650ebf 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmStorageReport.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Get-FsrmStorageReport.md @@ -2,7 +2,7 @@ external help file: FsrmStorageReport.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmstoragereport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmstoragereport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmStorageReport --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmAction.md b/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmAction.md index 5f155da6c2..4ece238d62 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmAction.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmAction.md @@ -2,7 +2,7 @@ external help file: FsrmAction.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmaction?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmaction?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmAction --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmAutoQuota.md b/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmAutoQuota.md index 206eab043c..7c5e2a92d6 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmAutoQuota.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmAutoQuota.md @@ -2,7 +2,7 @@ external help file: FSRMAutoQuota.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmautoquota?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmautoquota?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmAutoQuota --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmClassificationPropertyDefinition.md b/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmClassificationPropertyDefinition.md index dab6902bb9..2347f40416 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmClassificationPropertyDefinition.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmClassificationPropertyDefinition.md @@ -2,7 +2,7 @@ external help file: FSRMClassificationPropertyDefinition.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmclassificationpropertydefinition?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmclassificationpropertydefinition?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmClassificationPropertyDefinition --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmClassificationPropertyValue.md b/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmClassificationPropertyValue.md index f27d8e780d..1f040c6b9e 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmClassificationPropertyValue.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmClassificationPropertyValue.md @@ -2,7 +2,7 @@ external help file: FsrmClassificationPropertyValue.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmclassificationpropertyvalue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmclassificationpropertyvalue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmClassificationPropertyValue --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmClassificationRule.md b/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmClassificationRule.md index 70edcd8afd..38c2fdb622 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmClassificationRule.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmClassificationRule.md @@ -2,7 +2,7 @@ external help file: FSRMClassificationRule.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmclassificationrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmclassificationrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmClassificationRule --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmFMJNotification.md b/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmFMJNotification.md index 5965de6dfa..24bd2d00d7 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmFMJNotification.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmFMJNotification.md @@ -2,7 +2,7 @@ external help file: FSRMFmjNotification.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfmjnotification?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfmjnotification?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmFMJNotification --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmFileGroup.md b/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmFileGroup.md index 30cfd7c5db..4c00829f5b 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmFileGroup.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmFileGroup.md @@ -2,7 +2,7 @@ external help file: FsrmFileGroup.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfilegroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfilegroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmFileGroup --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmFileManagementJob.md b/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmFileManagementJob.md index 1fc627da19..91242952b2 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmFileManagementJob.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmFileManagementJob.md @@ -2,7 +2,7 @@ external help file: FSRMFileManagementJob.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfilemanagementjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfilemanagementjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmFileManagementJob --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmFileScreen.md b/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmFileScreen.md index 9b72994b95..e1df04574a 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmFileScreen.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmFileScreen.md @@ -2,7 +2,7 @@ external help file: FsrmFileScreen.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfilescreen?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfilescreen?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmFileScreen --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmFileScreenException.md b/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmFileScreenException.md index 3e05eee21a..fffbc82a1e 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmFileScreenException.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmFileScreenException.md @@ -2,7 +2,7 @@ external help file: FsrmFileScreenException.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfilescreenexception?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfilescreenexception?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmFileScreenException --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmFileScreenTemplate.md b/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmFileScreenTemplate.md index 170167cb2c..cc2556b7f4 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmFileScreenTemplate.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmFileScreenTemplate.md @@ -2,7 +2,7 @@ external help file: FsrmFileScreenTemplate.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfilescreentemplate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfilescreentemplate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmFileScreenTemplate --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmFmjAction.md b/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmFmjAction.md index 9da716e0db..29b4218b93 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmFmjAction.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmFmjAction.md @@ -2,7 +2,7 @@ external help file: FsrmFmjAction.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfmjaction?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfmjaction?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmFmjAction --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmFmjCondition.md b/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmFmjCondition.md index 6b9574cd33..bdec9966da 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmFmjCondition.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmFmjCondition.md @@ -2,7 +2,7 @@ external help file: FSRMFmjCondition.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfmjcondition?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfmjcondition?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmFmjCondition --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmFmjNotificationAction.md b/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmFmjNotificationAction.md index f2b54274e8..128f151afc 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmFmjNotificationAction.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmFmjNotificationAction.md @@ -2,7 +2,7 @@ external help file: FsrmFmjNotificationAction.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfmjnotificationaction?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfmjnotificationaction?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmFmjNotificationAction --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmQuota.md b/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmQuota.md index 1ba6f775a1..051075a5f2 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmQuota.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmQuota.md @@ -2,7 +2,7 @@ external help file: FsrmQuota.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmquota?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmquota?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmQuota --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmQuotaTemplate.md b/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmQuotaTemplate.md index a857def7d4..4adb454835 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmQuotaTemplate.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmQuotaTemplate.md @@ -2,7 +2,7 @@ external help file: FsrmQuotaTemplate.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmquotatemplate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmquotatemplate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmQuotaTemplate --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmQuotaThreshold.md b/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmQuotaThreshold.md index 123c98c5ab..e87c8be4a9 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmQuotaThreshold.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmQuotaThreshold.md @@ -2,7 +2,7 @@ external help file: FSRMQuotaThreshold.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmquotathreshold?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmquotathreshold?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmQuotaThreshold --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmScheduledTask.md b/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmScheduledTask.md index c7de261635..f5b7fcd297 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmScheduledTask.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmScheduledTask.md @@ -2,7 +2,7 @@ external help file: FsrmScheduledTask.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmscheduledtask?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmscheduledtask?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmScheduledTask --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmStorageReport.md b/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmStorageReport.md index 5419a04ece..b6841a6089 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmStorageReport.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/New-FsrmStorageReport.md @@ -2,7 +2,7 @@ external help file: FsrmStorageReport.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmstoragereport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmstoragereport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmStorageReport --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Remove-FsrmAutoQuota.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Remove-FsrmAutoQuota.md index 70ae896260..dfefcacaa5 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Remove-FsrmAutoQuota.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Remove-FsrmAutoQuota.md @@ -2,7 +2,7 @@ external help file: FSRMAutoQuota.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmautoquota?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmautoquota?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-FsrmAutoQuota --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Remove-FsrmClassificationPropertyDefinition.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Remove-FsrmClassificationPropertyDefinition.md index ea0d535f69..58a37e5026 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Remove-FsrmClassificationPropertyDefinition.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Remove-FsrmClassificationPropertyDefinition.md @@ -2,7 +2,7 @@ external help file: FSRMClassificationPropertyDefinition.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmclassificationpropertydefinition?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmclassificationpropertydefinition?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-FsrmClassificationPropertyDefinition --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Remove-FsrmClassificationRule.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Remove-FsrmClassificationRule.md index 3c17c0b137..9f3bd8f74d 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Remove-FsrmClassificationRule.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Remove-FsrmClassificationRule.md @@ -2,7 +2,7 @@ external help file: FSRMClassificationRule.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmclassificationrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmclassificationrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-FsrmClassificationRule --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Remove-FsrmFileGroup.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Remove-FsrmFileGroup.md index dbd9be5243..84b3ea3d5f 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Remove-FsrmFileGroup.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Remove-FsrmFileGroup.md @@ -2,7 +2,7 @@ external help file: FsrmFileGroup.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmfilegroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmfilegroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-FsrmFileGroup --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Remove-FsrmFileManagementJob.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Remove-FsrmFileManagementJob.md index 646ab1791a..b8c2a678ea 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Remove-FsrmFileManagementJob.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Remove-FsrmFileManagementJob.md @@ -2,7 +2,7 @@ external help file: FSRMFileManagementJob.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmfilemanagementjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmfilemanagementjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-FsrmFileManagementJob --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Remove-FsrmFileScreen.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Remove-FsrmFileScreen.md index 551ab04e17..c0cfcc5cff 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Remove-FsrmFileScreen.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Remove-FsrmFileScreen.md @@ -2,7 +2,7 @@ external help file: FsrmFileScreen.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmfilescreen?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmfilescreen?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-FsrmFileScreen --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Remove-FsrmFileScreenException.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Remove-FsrmFileScreenException.md index 88900e9907..9e29bfaef3 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Remove-FsrmFileScreenException.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Remove-FsrmFileScreenException.md @@ -2,7 +2,7 @@ external help file: FsrmFileScreenException.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmfilescreenexception?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmfilescreenexception?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-FsrmFileScreenException --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Remove-FsrmFileScreenTemplate.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Remove-FsrmFileScreenTemplate.md index d2ef9a6858..8aca75b348 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Remove-FsrmFileScreenTemplate.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Remove-FsrmFileScreenTemplate.md @@ -2,7 +2,7 @@ external help file: FsrmFileScreenTemplate.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmfilescreentemplate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmfilescreentemplate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-FsrmFileScreenTemplate --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Remove-FsrmMgmtProperty.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Remove-FsrmMgmtProperty.md index 95ff3f2c25..b332b30eaa 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Remove-FsrmMgmtProperty.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Remove-FsrmMgmtProperty.md @@ -2,7 +2,7 @@ external help file: FsrmMgmtProperty.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmmgmtproperty?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmmgmtproperty?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-FsrmMgmtProperty --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Remove-FsrmQuota.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Remove-FsrmQuota.md index 77d1fdb306..6dea1c24f1 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Remove-FsrmQuota.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Remove-FsrmQuota.md @@ -2,7 +2,7 @@ external help file: FsrmQuota.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmquota?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmquota?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-FsrmQuota --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Remove-FsrmQuotaTemplate.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Remove-FsrmQuotaTemplate.md index f7b817cc54..4be775bb41 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Remove-FsrmQuotaTemplate.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Remove-FsrmQuotaTemplate.md @@ -2,7 +2,7 @@ external help file: FsrmQuotaTemplate.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmquotatemplate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmquotatemplate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-FsrmQuotaTemplate --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Remove-FsrmStorageReport.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Remove-FsrmStorageReport.md index 7ba885ba4e..9f49edc747 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Remove-FsrmStorageReport.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Remove-FsrmStorageReport.md @@ -2,7 +2,7 @@ external help file: FsrmStorageReport.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmstoragereport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmstoragereport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-FsrmStorageReport --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Reset-FsrmFileScreen.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Reset-FsrmFileScreen.md index 17da580b78..01f273a388 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Reset-FsrmFileScreen.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Reset-FsrmFileScreen.md @@ -2,7 +2,7 @@ external help file: FsrmFileScreen.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/reset-fsrmfilescreen?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/reset-fsrmfilescreen?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-FsrmFileScreen --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Reset-FsrmQuota.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Reset-FsrmQuota.md index ad5505e4fe..37a3b718a3 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Reset-FsrmQuota.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Reset-FsrmQuota.md @@ -2,7 +2,7 @@ external help file: FsrmQuota.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/reset-fsrmquota?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/reset-fsrmquota?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-FsrmQuota --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Send-FsrmTestEmail.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Send-FsrmTestEmail.md index 99b0f271da..4ed7745e8a 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Send-FsrmTestEmail.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Send-FsrmTestEmail.md @@ -2,7 +2,7 @@ external help file: FsrmTestEmail.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/send-fsrmtestemail?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/send-fsrmtestemail?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Send-FsrmTestEmail --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmAdrSetting.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmAdrSetting.md index e53bcd1969..605fb71b25 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmAdrSetting.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmAdrSetting.md @@ -2,7 +2,7 @@ external help file: FsrmAdrSetting.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmadrsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmadrsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmAdrSetting --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmAutoQuota.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmAutoQuota.md index fd2a1c9d84..ee9bc3fed6 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmAutoQuota.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmAutoQuota.md @@ -2,7 +2,7 @@ external help file: FSRMAutoQuota.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmautoquota?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmautoquota?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmAutoQuota --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmClassification.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmClassification.md index 065758a901..f659257cd4 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmClassification.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmClassification.md @@ -2,7 +2,7 @@ external help file: FSRMClassification.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmclassification?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmclassification?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmClassification --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmClassificationPropertyDefinition.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmClassificationPropertyDefinition.md index 4aebe5523c..8cdadd129e 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmClassificationPropertyDefinition.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmClassificationPropertyDefinition.md @@ -2,7 +2,7 @@ external help file: FSRMClassificationPropertyDefinition.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmclassificationpropertydefinition?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmclassificationpropertydefinition?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmClassificationPropertyDefinition --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmClassificationRule.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmClassificationRule.md index bdfb09c340..c7851e733a 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmClassificationRule.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmClassificationRule.md @@ -2,7 +2,7 @@ external help file: FSRMClassificationRule.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmclassificationrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmclassificationrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmClassificationRule --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmFileGroup.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmFileGroup.md index 3a9992b491..c08c5e9caa 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmFileGroup.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmFileGroup.md @@ -2,7 +2,7 @@ external help file: FsrmFileGroup.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmfilegroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmfilegroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmFileGroup --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmFileManagementJob.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmFileManagementJob.md index c3dc736c85..1111cb6ef3 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmFileManagementJob.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmFileManagementJob.md @@ -2,7 +2,7 @@ external help file: FSRMFileManagementJob.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmfilemanagementjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmfilemanagementjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmFileManagementJob --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmFileScreen.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmFileScreen.md index f730f891a3..de4bb7d4e5 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmFileScreen.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmFileScreen.md @@ -2,7 +2,7 @@ external help file: FsrmFileScreen.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmfilescreen?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmfilescreen?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmFileScreen --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmFileScreenException.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmFileScreenException.md index 7a74a85b62..4c29d294b3 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmFileScreenException.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmFileScreenException.md @@ -2,7 +2,7 @@ external help file: FsrmFileScreenException.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmfilescreenexception?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmfilescreenexception?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmFileScreenException --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmFileScreenTemplate.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmFileScreenTemplate.md index 4c345e2bb3..72a2626b3f 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmFileScreenTemplate.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmFileScreenTemplate.md @@ -2,7 +2,7 @@ external help file: FsrmFileScreenTemplate.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmfilescreentemplate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmfilescreentemplate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmFileScreenTemplate --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmMgmtProperty.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmMgmtProperty.md index 590791fa26..c0aeb898d2 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmMgmtProperty.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmMgmtProperty.md @@ -2,7 +2,7 @@ external help file: FsrmMgmtProperty.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmmgmtproperty?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmmgmtproperty?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmMgmtProperty --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmQuota.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmQuota.md index 3608b1b192..c2e9e5ff11 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmQuota.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmQuota.md @@ -2,7 +2,7 @@ external help file: FsrmQuota.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmquota?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmquota?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmQuota --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmQuotaTemplate.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmQuotaTemplate.md index 66abd8c2c2..b6568800d4 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmQuotaTemplate.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmQuotaTemplate.md @@ -2,7 +2,7 @@ external help file: FsrmQuotaTemplate.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmquotatemplate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmquotatemplate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmQuotaTemplate --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmSetting.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmSetting.md index aa21476a1e..de776785c4 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmSetting.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmSetting.md @@ -2,7 +2,7 @@ external help file: FsrmSetting.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmSetting --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmStorageReport.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmStorageReport.md index 98b3b34286..0bf05065f2 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmStorageReport.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Set-FsrmStorageReport.md @@ -2,7 +2,7 @@ external help file: FsrmStorageReport.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmstoragereport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmstoragereport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmStorageReport --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Start-FsrmClassification.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Start-FsrmClassification.md index 944696fbee..4a420f0312 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Start-FsrmClassification.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Start-FsrmClassification.md @@ -2,7 +2,7 @@ external help file: FSRMClassification.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/start-fsrmclassification?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/start-fsrmclassification?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-FsrmClassification --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Start-FsrmFileManagementJob.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Start-FsrmFileManagementJob.md index a5cdccfc1d..151e24507e 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Start-FsrmFileManagementJob.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Start-FsrmFileManagementJob.md @@ -2,7 +2,7 @@ external help file: FSRMFileManagementJob.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/start-fsrmfilemanagementjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/start-fsrmfilemanagementjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-FsrmFileManagementJob --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Start-FsrmStorageReport.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Start-FsrmStorageReport.md index 077d9b6f06..4afbbe6b36 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Start-FsrmStorageReport.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Start-FsrmStorageReport.md @@ -2,7 +2,7 @@ external help file: FsrmStorageReport.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/start-fsrmstoragereport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/start-fsrmstoragereport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-FsrmStorageReport --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Stop-FsrmClassification.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Stop-FsrmClassification.md index 82d0d3e77b..b2894ab4b1 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Stop-FsrmClassification.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Stop-FsrmClassification.md @@ -2,7 +2,7 @@ external help file: FSRMClassification.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/stop-fsrmclassification?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/stop-fsrmclassification?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-FsrmClassification --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Stop-FsrmFileManagementJob.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Stop-FsrmFileManagementJob.md index 890f5b652a..efbe79ea48 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Stop-FsrmFileManagementJob.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Stop-FsrmFileManagementJob.md @@ -2,7 +2,7 @@ external help file: FSRMFileManagementJob.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/stop-fsrmfilemanagementjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/stop-fsrmfilemanagementjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-FsrmFileManagementJob --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Stop-FsrmStorageReport.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Stop-FsrmStorageReport.md index 89c791e1d6..019b429922 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Stop-FsrmStorageReport.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Stop-FsrmStorageReport.md @@ -2,7 +2,7 @@ external help file: FsrmStorageReport.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/stop-fsrmstoragereport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/stop-fsrmstoragereport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-FsrmStorageReport --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Update-FsrmAutoQuota.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Update-FsrmAutoQuota.md index a6a9f7f11e..f1b6cab2ef 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Update-FsrmAutoQuota.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Update-FsrmAutoQuota.md @@ -2,7 +2,7 @@ external help file: FSRMAutoQuota.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/update-fsrmautoquota?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/update-fsrmautoquota?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-FsrmAutoQuota --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Update-FsrmClassificationPropertyDefinition.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Update-FsrmClassificationPropertyDefinition.md index 0ba333eecd..af2f6cf780 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Update-FsrmClassificationPropertyDefinition.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Update-FsrmClassificationPropertyDefinition.md @@ -2,7 +2,7 @@ external help file: FSRMClassificationPropertyDefinition.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/update-fsrmclassificationpropertydefinition?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/update-fsrmclassificationpropertydefinition?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-FsrmClassificationPropertyDefinition --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Update-FsrmQuota.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Update-FsrmQuota.md index 13217a618e..f45fae2804 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Update-FsrmQuota.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Update-FsrmQuota.md @@ -2,7 +2,7 @@ external help file: FsrmQuota.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/update-fsrmquota?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/update-fsrmquota?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-FsrmQuota --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Wait-FsrmClassification.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Wait-FsrmClassification.md index 795ce91023..c6de997e89 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Wait-FsrmClassification.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Wait-FsrmClassification.md @@ -2,7 +2,7 @@ external help file: FSRMClassification.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/wait-fsrmclassification?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/wait-fsrmclassification?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Wait-FsrmClassification --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Wait-FsrmFileManagementJob.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Wait-FsrmFileManagementJob.md index a1f4c98a07..5dad4a65bd 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Wait-FsrmFileManagementJob.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Wait-FsrmFileManagementJob.md @@ -2,7 +2,7 @@ external help file: FSRMFileManagementJob.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/wait-fsrmfilemanagementjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/wait-fsrmfilemanagementjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Wait-FsrmFileManagementJob --- diff --git a/docset/winserver2012r2-ps/fileserverresourcemanager/Wait-FsrmStorageReport.md b/docset/winserver2012r2-ps/fileserverresourcemanager/Wait-FsrmStorageReport.md index 706a8c196c..4eb5a5009c 100644 --- a/docset/winserver2012r2-ps/fileserverresourcemanager/Wait-FsrmStorageReport.md +++ b/docset/winserver2012r2-ps/fileserverresourcemanager/Wait-FsrmStorageReport.md @@ -2,7 +2,7 @@ external help file: FsrmStorageReport.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/wait-fsrmstoragereport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/wait-fsrmstoragereport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Wait-FsrmStorageReport --- diff --git a/docset/winserver2012r2-ps/grouppolicy/Backup-GPO.md b/docset/winserver2012r2-ps/grouppolicy/Backup-GPO.md index f40480e979..dd5a5da76e 100644 --- a/docset/winserver2012r2-ps/grouppolicy/Backup-GPO.md +++ b/docset/winserver2012r2-ps/grouppolicy/Backup-GPO.md @@ -2,7 +2,7 @@ external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/backup-gpo?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/backup-gpo?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Backup-GPO --- diff --git a/docset/winserver2012r2-ps/grouppolicy/Copy-GPO.md b/docset/winserver2012r2-ps/grouppolicy/Copy-GPO.md index 413e0fc889..3d1f0de40b 100644 --- a/docset/winserver2012r2-ps/grouppolicy/Copy-GPO.md +++ b/docset/winserver2012r2-ps/grouppolicy/Copy-GPO.md @@ -2,7 +2,7 @@ external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/copy-gpo?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/copy-gpo?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Copy-GPO --- diff --git a/docset/winserver2012r2-ps/grouppolicy/Get-GPInheritance.md b/docset/winserver2012r2-ps/grouppolicy/Get-GPInheritance.md index 0d39fadd33..2fb5a87542 100644 --- a/docset/winserver2012r2-ps/grouppolicy/Get-GPInheritance.md +++ b/docset/winserver2012r2-ps/grouppolicy/Get-GPInheritance.md @@ -2,7 +2,7 @@ external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/get-gpinheritance?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/get-gpinheritance?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-GPInheritance --- diff --git a/docset/winserver2012r2-ps/grouppolicy/Get-GPO.md b/docset/winserver2012r2-ps/grouppolicy/Get-GPO.md index 4887daac22..c10c6c47fa 100644 --- a/docset/winserver2012r2-ps/grouppolicy/Get-GPO.md +++ b/docset/winserver2012r2-ps/grouppolicy/Get-GPO.md @@ -2,7 +2,7 @@ external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/get-gpo?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/get-gpo?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-GPO --- diff --git a/docset/winserver2012r2-ps/grouppolicy/Get-GPOReport.md b/docset/winserver2012r2-ps/grouppolicy/Get-GPOReport.md index a424b78690..2591ff8cf8 100644 --- a/docset/winserver2012r2-ps/grouppolicy/Get-GPOReport.md +++ b/docset/winserver2012r2-ps/grouppolicy/Get-GPOReport.md @@ -2,7 +2,7 @@ external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/get-gporeport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/get-gporeport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-GPOReport --- diff --git a/docset/winserver2012r2-ps/grouppolicy/Get-GPPermission.md b/docset/winserver2012r2-ps/grouppolicy/Get-GPPermission.md index 4f8894888a..d68912c565 100644 --- a/docset/winserver2012r2-ps/grouppolicy/Get-GPPermission.md +++ b/docset/winserver2012r2-ps/grouppolicy/Get-GPPermission.md @@ -2,7 +2,7 @@ external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/get-gppermission?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/get-gppermission?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-GPPermission --- diff --git a/docset/winserver2012r2-ps/grouppolicy/Get-GPPrefRegistryValue.md b/docset/winserver2012r2-ps/grouppolicy/Get-GPPrefRegistryValue.md index 8e060b3ee1..57cfc97518 100644 --- a/docset/winserver2012r2-ps/grouppolicy/Get-GPPrefRegistryValue.md +++ b/docset/winserver2012r2-ps/grouppolicy/Get-GPPrefRegistryValue.md @@ -2,7 +2,7 @@ external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/get-gpprefregistryvalue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/get-gpprefregistryvalue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-GPPrefRegistryValue --- diff --git a/docset/winserver2012r2-ps/grouppolicy/Get-GPRegistryValue.md b/docset/winserver2012r2-ps/grouppolicy/Get-GPRegistryValue.md index ed0678ab2d..78754b6ed9 100644 --- a/docset/winserver2012r2-ps/grouppolicy/Get-GPRegistryValue.md +++ b/docset/winserver2012r2-ps/grouppolicy/Get-GPRegistryValue.md @@ -2,7 +2,7 @@ external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/get-gpregistryvalue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/get-gpregistryvalue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-GPRegistryValue --- diff --git a/docset/winserver2012r2-ps/grouppolicy/Get-GPResultantSetOfPolicy.md b/docset/winserver2012r2-ps/grouppolicy/Get-GPResultantSetOfPolicy.md index 11c2856f6e..ef0c65fc7b 100644 --- a/docset/winserver2012r2-ps/grouppolicy/Get-GPResultantSetOfPolicy.md +++ b/docset/winserver2012r2-ps/grouppolicy/Get-GPResultantSetOfPolicy.md @@ -2,7 +2,7 @@ external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/get-gpresultantsetofpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/get-gpresultantsetofpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-GPResultantSetOfPolicy --- diff --git a/docset/winserver2012r2-ps/grouppolicy/Get-GPStarterGPO.md b/docset/winserver2012r2-ps/grouppolicy/Get-GPStarterGPO.md index a3a5027511..6a51a3fa4a 100644 --- a/docset/winserver2012r2-ps/grouppolicy/Get-GPStarterGPO.md +++ b/docset/winserver2012r2-ps/grouppolicy/Get-GPStarterGPO.md @@ -2,7 +2,7 @@ external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/get-gpstartergpo?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/get-gpstartergpo?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-GPStarterGPO --- diff --git a/docset/winserver2012r2-ps/grouppolicy/Import-GPO.md b/docset/winserver2012r2-ps/grouppolicy/Import-GPO.md index e61a853f0c..a9a9170c6d 100644 --- a/docset/winserver2012r2-ps/grouppolicy/Import-GPO.md +++ b/docset/winserver2012r2-ps/grouppolicy/Import-GPO.md @@ -2,7 +2,7 @@ external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/import-gpo?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/import-gpo?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-GPO --- diff --git a/docset/winserver2012r2-ps/grouppolicy/Invoke-GPUpdate.md b/docset/winserver2012r2-ps/grouppolicy/Invoke-GPUpdate.md index 4395df2f6f..78da16f5f4 100644 --- a/docset/winserver2012r2-ps/grouppolicy/Invoke-GPUpdate.md +++ b/docset/winserver2012r2-ps/grouppolicy/Invoke-GPUpdate.md @@ -2,7 +2,7 @@ external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/invoke-gpupdate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/invoke-gpupdate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-GPUpdate --- diff --git a/docset/winserver2012r2-ps/grouppolicy/New-GPLink.md b/docset/winserver2012r2-ps/grouppolicy/New-GPLink.md index 88a79c787d..db88c7cbd3 100644 --- a/docset/winserver2012r2-ps/grouppolicy/New-GPLink.md +++ b/docset/winserver2012r2-ps/grouppolicy/New-GPLink.md @@ -2,7 +2,7 @@ external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/new-gplink?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/new-gplink?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-GPLink --- diff --git a/docset/winserver2012r2-ps/grouppolicy/New-GPO.md b/docset/winserver2012r2-ps/grouppolicy/New-GPO.md index f628f93608..e4de1b2753 100644 --- a/docset/winserver2012r2-ps/grouppolicy/New-GPO.md +++ b/docset/winserver2012r2-ps/grouppolicy/New-GPO.md @@ -2,7 +2,7 @@ external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/new-gpo?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/new-gpo?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-GPO --- diff --git a/docset/winserver2012r2-ps/grouppolicy/New-GPStarterGPO.md b/docset/winserver2012r2-ps/grouppolicy/New-GPStarterGPO.md index d88e90cf25..9f8bf989bc 100644 --- a/docset/winserver2012r2-ps/grouppolicy/New-GPStarterGPO.md +++ b/docset/winserver2012r2-ps/grouppolicy/New-GPStarterGPO.md @@ -2,7 +2,7 @@ external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/new-gpstartergpo?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/new-gpstartergpo?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-GPStarterGPO --- diff --git a/docset/winserver2012r2-ps/grouppolicy/Remove-GPLink.md b/docset/winserver2012r2-ps/grouppolicy/Remove-GPLink.md index 0436c66bd8..9844bbb71b 100644 --- a/docset/winserver2012r2-ps/grouppolicy/Remove-GPLink.md +++ b/docset/winserver2012r2-ps/grouppolicy/Remove-GPLink.md @@ -2,7 +2,7 @@ external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/remove-gplink?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/remove-gplink?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-GPLink --- diff --git a/docset/winserver2012r2-ps/grouppolicy/Remove-GPO.md b/docset/winserver2012r2-ps/grouppolicy/Remove-GPO.md index 11e01ce3fd..721d31eac1 100644 --- a/docset/winserver2012r2-ps/grouppolicy/Remove-GPO.md +++ b/docset/winserver2012r2-ps/grouppolicy/Remove-GPO.md @@ -2,7 +2,7 @@ external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/remove-gpo?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/remove-gpo?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-GPO --- diff --git a/docset/winserver2012r2-ps/grouppolicy/Remove-GPPrefRegistryValue.md b/docset/winserver2012r2-ps/grouppolicy/Remove-GPPrefRegistryValue.md index b72b5e1ae7..d8fb529f73 100644 --- a/docset/winserver2012r2-ps/grouppolicy/Remove-GPPrefRegistryValue.md +++ b/docset/winserver2012r2-ps/grouppolicy/Remove-GPPrefRegistryValue.md @@ -2,7 +2,7 @@ external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/remove-gpprefregistryvalue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/remove-gpprefregistryvalue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-GPPrefRegistryValue --- diff --git a/docset/winserver2012r2-ps/grouppolicy/Remove-GPRegistryValue.md b/docset/winserver2012r2-ps/grouppolicy/Remove-GPRegistryValue.md index 13dcd5efe5..71611c6994 100644 --- a/docset/winserver2012r2-ps/grouppolicy/Remove-GPRegistryValue.md +++ b/docset/winserver2012r2-ps/grouppolicy/Remove-GPRegistryValue.md @@ -2,7 +2,7 @@ external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/remove-gpregistryvalue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/remove-gpregistryvalue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-GPRegistryValue --- diff --git a/docset/winserver2012r2-ps/grouppolicy/Rename-GPO.md b/docset/winserver2012r2-ps/grouppolicy/Rename-GPO.md index 15dda200e3..9e69bc9982 100644 --- a/docset/winserver2012r2-ps/grouppolicy/Rename-GPO.md +++ b/docset/winserver2012r2-ps/grouppolicy/Rename-GPO.md @@ -2,7 +2,7 @@ external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/rename-gpo?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/rename-gpo?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-GPO --- diff --git a/docset/winserver2012r2-ps/grouppolicy/Restore-GPO.md b/docset/winserver2012r2-ps/grouppolicy/Restore-GPO.md index a10414a10b..91da826ba7 100644 --- a/docset/winserver2012r2-ps/grouppolicy/Restore-GPO.md +++ b/docset/winserver2012r2-ps/grouppolicy/Restore-GPO.md @@ -2,7 +2,7 @@ external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/restore-gpo?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/restore-gpo?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-GPO --- diff --git a/docset/winserver2012r2-ps/grouppolicy/Set-GPInheritance.md b/docset/winserver2012r2-ps/grouppolicy/Set-GPInheritance.md index ddb58db2c6..851bb65f5b 100644 --- a/docset/winserver2012r2-ps/grouppolicy/Set-GPInheritance.md +++ b/docset/winserver2012r2-ps/grouppolicy/Set-GPInheritance.md @@ -2,7 +2,7 @@ external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/set-gpinheritance?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/set-gpinheritance?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-GPInheritance --- diff --git a/docset/winserver2012r2-ps/grouppolicy/Set-GPLink.md b/docset/winserver2012r2-ps/grouppolicy/Set-GPLink.md index f935c6eece..a3e2c884bd 100644 --- a/docset/winserver2012r2-ps/grouppolicy/Set-GPLink.md +++ b/docset/winserver2012r2-ps/grouppolicy/Set-GPLink.md @@ -2,7 +2,7 @@ external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/set-gplink?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/set-gplink?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-GPLink --- diff --git a/docset/winserver2012r2-ps/grouppolicy/Set-GPPermission.md b/docset/winserver2012r2-ps/grouppolicy/Set-GPPermission.md index f0dcae6ede..4f5ae3e48b 100644 --- a/docset/winserver2012r2-ps/grouppolicy/Set-GPPermission.md +++ b/docset/winserver2012r2-ps/grouppolicy/Set-GPPermission.md @@ -2,7 +2,7 @@ external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/set-gppermission?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/set-gppermission?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-GPPermission --- diff --git a/docset/winserver2012r2-ps/grouppolicy/Set-GPPrefRegistryValue.md b/docset/winserver2012r2-ps/grouppolicy/Set-GPPrefRegistryValue.md index eaa7198048..5aa4f1e3b7 100644 --- a/docset/winserver2012r2-ps/grouppolicy/Set-GPPrefRegistryValue.md +++ b/docset/winserver2012r2-ps/grouppolicy/Set-GPPrefRegistryValue.md @@ -2,7 +2,7 @@ external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/set-gpprefregistryvalue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/set-gpprefregistryvalue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-GPPrefRegistryValue --- diff --git a/docset/winserver2012r2-ps/grouppolicy/Set-GPRegistryValue.md b/docset/winserver2012r2-ps/grouppolicy/Set-GPRegistryValue.md index 20168b7c2b..78e480268b 100644 --- a/docset/winserver2012r2-ps/grouppolicy/Set-GPRegistryValue.md +++ b/docset/winserver2012r2-ps/grouppolicy/Set-GPRegistryValue.md @@ -2,7 +2,7 @@ external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/set-gpregistryvalue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/set-gpregistryvalue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-GPRegistryValue --- diff --git a/docset/winserver2012r2-ps/hcs/Disable-HcsNetInterface.md b/docset/winserver2012r2-ps/hcs/Disable-HcsNetInterface.md index 4dd73931a4..ce53bccff4 100644 --- a/docset/winserver2012r2-ps/hcs/Disable-HcsNetInterface.md +++ b/docset/winserver2012r2-ps/hcs/Disable-HcsNetInterface.md @@ -2,7 +2,7 @@ external help file: Microsoft.HCS.Management.dll-Help.xml Module Name: HCS ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/hcs/disable-hcsnetinterface?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hcs/disable-hcsnetinterface?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-HcsNetInterface --- diff --git a/docset/winserver2012r2-ps/hcs/Disable-HcsRemoteManagement.md b/docset/winserver2012r2-ps/hcs/Disable-HcsRemoteManagement.md index f54d96a73a..299b05a63f 100644 --- a/docset/winserver2012r2-ps/hcs/Disable-HcsRemoteManagement.md +++ b/docset/winserver2012r2-ps/hcs/Disable-HcsRemoteManagement.md @@ -2,7 +2,7 @@ external help file: Microsoft.HCS.Management.dll-Help.xml Module Name: HCS ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/hcs/disable-hcsremotemanagement?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hcs/disable-hcsremotemanagement?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-HcsRemoteManagement --- diff --git a/docset/winserver2012r2-ps/hcs/Disable-HcsSupportAccess.md b/docset/winserver2012r2-ps/hcs/Disable-HcsSupportAccess.md index 97d7a925c8..ffd4159b79 100644 --- a/docset/winserver2012r2-ps/hcs/Disable-HcsSupportAccess.md +++ b/docset/winserver2012r2-ps/hcs/Disable-HcsSupportAccess.md @@ -2,7 +2,7 @@ external help file: Microsoft.HCS.Management.dll-Help.xml Module Name: HCS ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/hcs/disable-hcssupportaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hcs/disable-hcssupportaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-HcsSupportAccess --- diff --git a/docset/winserver2012r2-ps/hcs/Disable-HcsWebProxy.md b/docset/winserver2012r2-ps/hcs/Disable-HcsWebProxy.md index d2990f392f..bd91d348f1 100644 --- a/docset/winserver2012r2-ps/hcs/Disable-HcsWebProxy.md +++ b/docset/winserver2012r2-ps/hcs/Disable-HcsWebProxy.md @@ -2,7 +2,7 @@ external help file: Microsoft.HCS.Management.dll-Help.xml Module Name: HCS ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/hcs/disable-hcswebproxy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hcs/disable-hcswebproxy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-HcsWebProxy --- diff --git a/docset/winserver2012r2-ps/hcs/Enable-HcsNetInterface.md b/docset/winserver2012r2-ps/hcs/Enable-HcsNetInterface.md index 27c4977009..6db01cb747 100644 --- a/docset/winserver2012r2-ps/hcs/Enable-HcsNetInterface.md +++ b/docset/winserver2012r2-ps/hcs/Enable-HcsNetInterface.md @@ -2,7 +2,7 @@ external help file: Microsoft.HCS.Management.dll-Help.xml Module Name: HCS ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/hcs/enable-hcsnetinterface?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hcs/enable-hcsnetinterface?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-HcsNetInterface --- diff --git a/docset/winserver2012r2-ps/hcs/Enable-HcsRemoteManagement.md b/docset/winserver2012r2-ps/hcs/Enable-HcsRemoteManagement.md index e6a74b1902..df41984569 100644 --- a/docset/winserver2012r2-ps/hcs/Enable-HcsRemoteManagement.md +++ b/docset/winserver2012r2-ps/hcs/Enable-HcsRemoteManagement.md @@ -2,7 +2,7 @@ external help file: Microsoft.HCS.Management.dll-Help.xml Module Name: HCS ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/hcs/enable-hcsremotemanagement?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hcs/enable-hcsremotemanagement?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-HcsRemoteManagement --- diff --git a/docset/winserver2012r2-ps/hcs/Enable-HcsSupportAccess.md b/docset/winserver2012r2-ps/hcs/Enable-HcsSupportAccess.md index 23ac5081c1..af0aaa6119 100644 --- a/docset/winserver2012r2-ps/hcs/Enable-HcsSupportAccess.md +++ b/docset/winserver2012r2-ps/hcs/Enable-HcsSupportAccess.md @@ -2,7 +2,7 @@ external help file: Microsoft.HCS.Management.dll-Help.xml Module Name: HCS ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/hcs/enable-hcssupportaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hcs/enable-hcssupportaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-HcsSupportAccess --- diff --git a/docset/winserver2012r2-ps/hcs/Enable-HcsWebProxy.md b/docset/winserver2012r2-ps/hcs/Enable-HcsWebProxy.md index 1799129056..537b2c4e30 100644 --- a/docset/winserver2012r2-ps/hcs/Enable-HcsWebProxy.md +++ b/docset/winserver2012r2-ps/hcs/Enable-HcsWebProxy.md @@ -2,7 +2,7 @@ external help file: Microsoft.HCS.Management.dll-Help.xml Module Name: HCS ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/hcs/enable-hcswebproxy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hcs/enable-hcswebproxy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-HcsWebProxy --- diff --git a/docset/winserver2012r2-ps/hcs/Enter-HcsMaintenanceMode.md b/docset/winserver2012r2-ps/hcs/Enter-HcsMaintenanceMode.md index 4129670cc1..ed398409d2 100644 --- a/docset/winserver2012r2-ps/hcs/Enter-HcsMaintenanceMode.md +++ b/docset/winserver2012r2-ps/hcs/Enter-HcsMaintenanceMode.md @@ -2,7 +2,7 @@ external help file: Microsoft.HCS.Management.dll-Help.xml Module Name: HCS ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/hcs/enter-hcsmaintenancemode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hcs/enter-hcsmaintenancemode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enter-HcsMaintenanceMode --- diff --git a/docset/winserver2012r2-ps/hcs/Enter-HcsSupportSession.md b/docset/winserver2012r2-ps/hcs/Enter-HcsSupportSession.md index 3d173e0adc..f8fcf23a5c 100644 --- a/docset/winserver2012r2-ps/hcs/Enter-HcsSupportSession.md +++ b/docset/winserver2012r2-ps/hcs/Enter-HcsSupportSession.md @@ -2,7 +2,7 @@ external help file: Microsoft.HCS.Management.dll-Help.xml Module Name: HCS ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/hcs/enter-hcssupportsession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hcs/enter-hcssupportsession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enter-HcsSupportSession --- diff --git a/docset/winserver2012r2-ps/hcs/Exit-HcsMaintenanceMode.md b/docset/winserver2012r2-ps/hcs/Exit-HcsMaintenanceMode.md index 283463143e..4cb5f03bc2 100644 --- a/docset/winserver2012r2-ps/hcs/Exit-HcsMaintenanceMode.md +++ b/docset/winserver2012r2-ps/hcs/Exit-HcsMaintenanceMode.md @@ -2,7 +2,7 @@ external help file: Microsoft.HCS.Management.dll-Help.xml Module Name: HCS ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/hcs/exit-hcsmaintenancemode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hcs/exit-hcsmaintenancemode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Exit-HcsMaintenanceMode --- diff --git a/docset/winserver2012r2-ps/hcs/Export-HcsSupportPackage.md b/docset/winserver2012r2-ps/hcs/Export-HcsSupportPackage.md index 18ed46e976..dda4555630 100644 --- a/docset/winserver2012r2-ps/hcs/Export-HcsSupportPackage.md +++ b/docset/winserver2012r2-ps/hcs/Export-HcsSupportPackage.md @@ -2,7 +2,7 @@ external help file: Microsoft.HCS.Management.dll-Help.xml Module Name: HCS ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/hcs/export-hcssupportpackage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hcs/export-hcssupportpackage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-HcsSupportPackage --- diff --git a/docset/winserver2012r2-ps/hcs/Get-HcsDnsClientServerAddress.md b/docset/winserver2012r2-ps/hcs/Get-HcsDnsClientServerAddress.md index 01a2da8877..fcab50f998 100644 --- a/docset/winserver2012r2-ps/hcs/Get-HcsDnsClientServerAddress.md +++ b/docset/winserver2012r2-ps/hcs/Get-HcsDnsClientServerAddress.md @@ -2,7 +2,7 @@ external help file: Microsoft.HCS.Management.dll-Help.xml Module Name: HCS ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/hcs/get-hcsdnsclientserveraddress?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hcs/get-hcsdnsclientserveraddress?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HcsDnsClientServerAddress --- diff --git a/docset/winserver2012r2-ps/hcs/Get-HcsFirmwareVersion.md b/docset/winserver2012r2-ps/hcs/Get-HcsFirmwareVersion.md index 91c0b40d3b..2aa8dd910d 100644 --- a/docset/winserver2012r2-ps/hcs/Get-HcsFirmwareVersion.md +++ b/docset/winserver2012r2-ps/hcs/Get-HcsFirmwareVersion.md @@ -2,7 +2,7 @@ external help file: Microsoft.HCS.Management.dll-Help.xml Module Name: HCS ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/hcs/get-hcsfirmwareversion?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hcs/get-hcsfirmwareversion?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HcsFirmwareVersion --- diff --git a/docset/winserver2012r2-ps/hcs/Get-HcsNetInterface.md b/docset/winserver2012r2-ps/hcs/Get-HcsNetInterface.md index 8bbf12268a..ce2dd05201 100644 --- a/docset/winserver2012r2-ps/hcs/Get-HcsNetInterface.md +++ b/docset/winserver2012r2-ps/hcs/Get-HcsNetInterface.md @@ -2,7 +2,7 @@ external help file: Microsoft.HCS.Management.dll-Help.xml Module Name: HCS ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/hcs/get-hcsnetinterface?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hcs/get-hcsnetinterface?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HcsNetInterface --- diff --git a/docset/winserver2012r2-ps/hcs/Get-HcsNtpClientServerAddress.md b/docset/winserver2012r2-ps/hcs/Get-HcsNtpClientServerAddress.md index 9edf971dd0..6bd10eb72c 100644 --- a/docset/winserver2012r2-ps/hcs/Get-HcsNtpClientServerAddress.md +++ b/docset/winserver2012r2-ps/hcs/Get-HcsNtpClientServerAddress.md @@ -2,7 +2,7 @@ external help file: Microsoft.HCS.Management.dll-Help.xml Module Name: HCS ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/hcs/get-hcsntpclientserveraddress?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hcs/get-hcsntpclientserveraddress?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HcsNtpClientServerAddress --- diff --git a/docset/winserver2012r2-ps/hcs/Get-HcsRemoteManagementCert.md b/docset/winserver2012r2-ps/hcs/Get-HcsRemoteManagementCert.md index d6a72d0113..65949bbc7a 100644 --- a/docset/winserver2012r2-ps/hcs/Get-HcsRemoteManagementCert.md +++ b/docset/winserver2012r2-ps/hcs/Get-HcsRemoteManagementCert.md @@ -2,7 +2,7 @@ external help file: Microsoft.HCS.Management.dll-Help.xml Module Name: HCS ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/hcs/get-hcsremotemanagementcert?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hcs/get-hcsremotemanagementcert?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HcsRemoteManagementCert --- diff --git a/docset/winserver2012r2-ps/hcs/Get-HcsSupportAccess.md b/docset/winserver2012r2-ps/hcs/Get-HcsSupportAccess.md index 19a9f0e17b..48810d3bfd 100644 --- a/docset/winserver2012r2-ps/hcs/Get-HcsSupportAccess.md +++ b/docset/winserver2012r2-ps/hcs/Get-HcsSupportAccess.md @@ -2,7 +2,7 @@ external help file: Microsoft.HCS.Management.dll-Help.xml Module Name: HCS ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/hcs/get-hcssupportaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hcs/get-hcssupportaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HcsSupportAccess --- diff --git a/docset/winserver2012r2-ps/hcs/Get-HcsSystem.md b/docset/winserver2012r2-ps/hcs/Get-HcsSystem.md index 09a79b8b06..7cb4fc01e9 100644 --- a/docset/winserver2012r2-ps/hcs/Get-HcsSystem.md +++ b/docset/winserver2012r2-ps/hcs/Get-HcsSystem.md @@ -2,7 +2,7 @@ external help file: Microsoft.HCS.Management.dll-Help.xml Module Name: HCS ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/hcs/get-hcssystem?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hcs/get-hcssystem?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HcsSystem --- diff --git a/docset/winserver2012r2-ps/hcs/Get-HcsUpdateAvailability.md b/docset/winserver2012r2-ps/hcs/Get-HcsUpdateAvailability.md index db3073a9e8..ab1886b990 100644 --- a/docset/winserver2012r2-ps/hcs/Get-HcsUpdateAvailability.md +++ b/docset/winserver2012r2-ps/hcs/Get-HcsUpdateAvailability.md @@ -2,7 +2,7 @@ external help file: Microsoft.HCS.Management.dll-Help.xml Module Name: HCS ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/hcs/get-hcsupdateavailability?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hcs/get-hcsupdateavailability?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HcsUpdateAvailability --- diff --git a/docset/winserver2012r2-ps/hcs/Get-HcsUpdateStatus.md b/docset/winserver2012r2-ps/hcs/Get-HcsUpdateStatus.md index 798ed91a7c..e3d03e8738 100644 --- a/docset/winserver2012r2-ps/hcs/Get-HcsUpdateStatus.md +++ b/docset/winserver2012r2-ps/hcs/Get-HcsUpdateStatus.md @@ -2,7 +2,7 @@ external help file: Microsoft.HCS.Management.dll-Help.xml Module Name: HCS ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/hcs/get-hcsupdatestatus?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hcs/get-hcsupdatestatus?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HcsUpdateStatus --- diff --git a/docset/winserver2012r2-ps/hcs/Get-HcsWebProxy.md b/docset/winserver2012r2-ps/hcs/Get-HcsWebProxy.md index 39d1ba3e19..c035e182ac 100644 --- a/docset/winserver2012r2-ps/hcs/Get-HcsWebProxy.md +++ b/docset/winserver2012r2-ps/hcs/Get-HcsWebProxy.md @@ -2,7 +2,7 @@ external help file: Microsoft.HCS.Management.dll-Help.xml Module Name: HCS ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/hcs/get-hcswebproxy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hcs/get-hcswebproxy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HcsWebProxy --- diff --git a/docset/winserver2012r2-ps/hcs/Get-HcsWuaVersion.md b/docset/winserver2012r2-ps/hcs/Get-HcsWuaVersion.md index 1b6464512f..446b9b2aa1 100644 --- a/docset/winserver2012r2-ps/hcs/Get-HcsWuaVersion.md +++ b/docset/winserver2012r2-ps/hcs/Get-HcsWuaVersion.md @@ -2,7 +2,7 @@ external help file: Microsoft.HCS.Management.dll-Help.xml Module Name: HCS ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/hcs/get-hcswuaversion?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hcs/get-hcswuaversion?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HcsWuaVersion --- diff --git a/docset/winserver2012r2-ps/hcs/Invoke-HcsSetupWizard.md b/docset/winserver2012r2-ps/hcs/Invoke-HcsSetupWizard.md index 3fbbfd1d9d..2673d15951 100644 --- a/docset/winserver2012r2-ps/hcs/Invoke-HcsSetupWizard.md +++ b/docset/winserver2012r2-ps/hcs/Invoke-HcsSetupWizard.md @@ -2,7 +2,7 @@ external help file: Microsoft.HCS.Management.dll-Help.xml Module Name: HCS ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/hcs/invoke-hcssetupwizard?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hcs/invoke-hcssetupwizard?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-HcsSetupWizard --- diff --git a/docset/winserver2012r2-ps/hcs/Restart-HcsController.md b/docset/winserver2012r2-ps/hcs/Restart-HcsController.md index dc498eb810..7d503146e2 100644 --- a/docset/winserver2012r2-ps/hcs/Restart-HcsController.md +++ b/docset/winserver2012r2-ps/hcs/Restart-HcsController.md @@ -2,7 +2,7 @@ external help file: Microsoft.HCS.Management.dll-Help.xml Module Name: HCS ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/hcs/restart-hcscontroller?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hcs/restart-hcscontroller?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restart-HcsController --- diff --git a/docset/winserver2012r2-ps/hcs/Set-HcsDnsClientServerAddress.md b/docset/winserver2012r2-ps/hcs/Set-HcsDnsClientServerAddress.md index 20b00bcef3..913df38c11 100644 --- a/docset/winserver2012r2-ps/hcs/Set-HcsDnsClientServerAddress.md +++ b/docset/winserver2012r2-ps/hcs/Set-HcsDnsClientServerAddress.md @@ -2,7 +2,7 @@ external help file: Microsoft.HCS.Management.dll-Help.xml Module Name: HCS ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/hcs/set-hcsdnsclientserveraddress?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hcs/set-hcsdnsclientserveraddress?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-HcsDnsClientServerAddress --- diff --git a/docset/winserver2012r2-ps/hcs/Set-HcsNetInterface.md b/docset/winserver2012r2-ps/hcs/Set-HcsNetInterface.md index 62dbf647ae..dc289721b1 100644 --- a/docset/winserver2012r2-ps/hcs/Set-HcsNetInterface.md +++ b/docset/winserver2012r2-ps/hcs/Set-HcsNetInterface.md @@ -2,7 +2,7 @@ external help file: Microsoft.HCS.Management.dll-Help.xml Module Name: HCS ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/hcs/set-hcsnetinterface?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hcs/set-hcsnetinterface?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-HcsNetInterface --- diff --git a/docset/winserver2012r2-ps/hcs/Set-HcsNtpClientServerAddress.md b/docset/winserver2012r2-ps/hcs/Set-HcsNtpClientServerAddress.md index a1d6642c85..4d5ad241a6 100644 --- a/docset/winserver2012r2-ps/hcs/Set-HcsNtpClientServerAddress.md +++ b/docset/winserver2012r2-ps/hcs/Set-HcsNtpClientServerAddress.md @@ -2,7 +2,7 @@ external help file: Microsoft.HCS.Management.dll-Help.xml Module Name: HCS ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/hcs/set-hcsntpclientserveraddress?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hcs/set-hcsntpclientserveraddress?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-HcsNtpClientServerAddress --- diff --git a/docset/winserver2012r2-ps/hcs/Set-HcsPassword.md b/docset/winserver2012r2-ps/hcs/Set-HcsPassword.md index 5f04247a36..51f5c4d8d7 100644 --- a/docset/winserver2012r2-ps/hcs/Set-HcsPassword.md +++ b/docset/winserver2012r2-ps/hcs/Set-HcsPassword.md @@ -2,7 +2,7 @@ external help file: Microsoft.HCS.Management.dll-Help.xml Module Name: HCS ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/hcs/set-hcspassword?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hcs/set-hcspassword?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-HcsPassword --- diff --git a/docset/winserver2012r2-ps/hcs/Set-HcsRemoteManagementCert.md b/docset/winserver2012r2-ps/hcs/Set-HcsRemoteManagementCert.md index 25c881c6f7..5bb87d719d 100644 --- a/docset/winserver2012r2-ps/hcs/Set-HcsRemoteManagementCert.md +++ b/docset/winserver2012r2-ps/hcs/Set-HcsRemoteManagementCert.md @@ -2,7 +2,7 @@ external help file: Microsoft.HCS.Management.dll-Help.xml Module Name: HCS ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/hcs/set-hcsremotemanagementcert?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hcs/set-hcsremotemanagementcert?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-HcsRemoteManagementCert --- diff --git a/docset/winserver2012r2-ps/hcs/Set-HcsSystem.md b/docset/winserver2012r2-ps/hcs/Set-HcsSystem.md index 01457d0f6b..aa82c4969b 100644 --- a/docset/winserver2012r2-ps/hcs/Set-HcsSystem.md +++ b/docset/winserver2012r2-ps/hcs/Set-HcsSystem.md @@ -2,7 +2,7 @@ external help file: Microsoft.HCS.Management.dll-Help.xml Module Name: HCS ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/hcs/set-hcssystem?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hcs/set-hcssystem?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-HcsSystem --- diff --git a/docset/winserver2012r2-ps/hcs/Set-HcsWebProxy.md b/docset/winserver2012r2-ps/hcs/Set-HcsWebProxy.md index 4bf9cac4df..5fe9776c18 100644 --- a/docset/winserver2012r2-ps/hcs/Set-HcsWebProxy.md +++ b/docset/winserver2012r2-ps/hcs/Set-HcsWebProxy.md @@ -2,7 +2,7 @@ external help file: Microsoft.HCS.Management.dll-Help.xml Module Name: HCS ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/hcs/set-hcswebproxy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hcs/set-hcswebproxy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-HcsWebProxy --- diff --git a/docset/winserver2012r2-ps/hcs/Start-HcsFirmwareCheck.md b/docset/winserver2012r2-ps/hcs/Start-HcsFirmwareCheck.md index 2ed29fd319..4891215e89 100644 --- a/docset/winserver2012r2-ps/hcs/Start-HcsFirmwareCheck.md +++ b/docset/winserver2012r2-ps/hcs/Start-HcsFirmwareCheck.md @@ -2,7 +2,7 @@ external help file: Microsoft.HCS.Management.dll-Help.xml Module Name: HCS ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/hcs/start-hcsfirmwarecheck?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hcs/start-hcsfirmwarecheck?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-HcsFirmwareCheck --- diff --git a/docset/winserver2012r2-ps/hcs/Start-HcsHotfix.md b/docset/winserver2012r2-ps/hcs/Start-HcsHotfix.md index b678cb4f6f..6132458695 100644 --- a/docset/winserver2012r2-ps/hcs/Start-HcsHotfix.md +++ b/docset/winserver2012r2-ps/hcs/Start-HcsHotfix.md @@ -2,7 +2,7 @@ external help file: Microsoft.HCS.Management.dll-Help.xml Module Name: HCS ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/hcs/start-hcshotfix?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hcs/start-hcshotfix?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-HcsHotfix --- diff --git a/docset/winserver2012r2-ps/hcs/Start-HcsUpdate.md b/docset/winserver2012r2-ps/hcs/Start-HcsUpdate.md index ca7e93bd0d..52d447b2f7 100644 --- a/docset/winserver2012r2-ps/hcs/Start-HcsUpdate.md +++ b/docset/winserver2012r2-ps/hcs/Start-HcsUpdate.md @@ -2,7 +2,7 @@ external help file: Microsoft.HCS.Management.dll-Help.xml Module Name: HCS ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/hcs/start-hcsupdate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hcs/start-hcsupdate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-HcsUpdate --- diff --git a/docset/winserver2012r2-ps/hcs/Stop-HcsController.md b/docset/winserver2012r2-ps/hcs/Stop-HcsController.md index e782b73406..a2fa5d8df7 100644 --- a/docset/winserver2012r2-ps/hcs/Stop-HcsController.md +++ b/docset/winserver2012r2-ps/hcs/Stop-HcsController.md @@ -2,7 +2,7 @@ external help file: Microsoft.HCS.Management.dll-Help.xml Module Name: HCS ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/hcs/stop-hcscontroller?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hcs/stop-hcscontroller?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-HcsController --- diff --git a/docset/winserver2012r2-ps/hcs/Test-HcsNtp.md b/docset/winserver2012r2-ps/hcs/Test-HcsNtp.md index a5e5a3f8aa..7199403548 100644 --- a/docset/winserver2012r2-ps/hcs/Test-HcsNtp.md +++ b/docset/winserver2012r2-ps/hcs/Test-HcsNtp.md @@ -2,7 +2,7 @@ external help file: Microsoft.HCS.Management.dll-Help.xml Module Name: HCS ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/hcs/test-hcsntp?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hcs/test-hcsntp?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-HcsNtp --- diff --git a/docset/winserver2012r2-ps/hpc/Add-HpcDriver.md b/docset/winserver2012r2-ps/hpc/Add-HpcDriver.md index 4b94849c9e..6c7f5c11dc 100644 --- a/docset/winserver2012r2-ps/hpc/Add-HpcDriver.md +++ b/docset/winserver2012r2-ps/hpc/Add-HpcDriver.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/add-hpcdriver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/add-hpcdriver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-HpcDriver --- diff --git a/docset/winserver2012r2-ps/hpc/Add-HpcGroup.md b/docset/winserver2012r2-ps/hpc/Add-HpcGroup.md index 4f70f7852c..63529cad5f 100644 --- a/docset/winserver2012r2-ps/hpc/Add-HpcGroup.md +++ b/docset/winserver2012r2-ps/hpc/Add-HpcGroup.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/add-hpcgroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/add-hpcgroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-HpcGroup --- diff --git a/docset/winserver2012r2-ps/hpc/Add-HpcIScsiStorageArray.md b/docset/winserver2012r2-ps/hpc/Add-HpcIScsiStorageArray.md index 5b5f0e8304..33a1f0a871 100644 --- a/docset/winserver2012r2-ps/hpc/Add-HpcIScsiStorageArray.md +++ b/docset/winserver2012r2-ps/hpc/Add-HpcIScsiStorageArray.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/add-hpciscsistoragearray?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/add-hpciscsistoragearray?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-HpcScsiStorageArray --- diff --git a/docset/winserver2012r2-ps/hpc/Add-HpcImage.md b/docset/winserver2012r2-ps/hpc/Add-HpcImage.md index cb12eceacb..45a728defc 100644 --- a/docset/winserver2012r2-ps/hpc/Add-HpcImage.md +++ b/docset/winserver2012r2-ps/hpc/Add-HpcImage.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/add-hpcimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/add-hpcimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-HpcImage --- diff --git a/docset/winserver2012r2-ps/hpc/Add-HpcMember.md b/docset/winserver2012r2-ps/hpc/Add-HpcMember.md index 26e7b6ddbb..d9672f2d35 100644 --- a/docset/winserver2012r2-ps/hpc/Add-HpcMember.md +++ b/docset/winserver2012r2-ps/hpc/Add-HpcMember.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/add-hpcmember?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/add-hpcmember?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-HpcMember --- diff --git a/docset/winserver2012r2-ps/hpc/Add-HpcNodeSet.md b/docset/winserver2012r2-ps/hpc/Add-HpcNodeSet.md index b269fa8001..fe4ec9829c 100644 --- a/docset/winserver2012r2-ps/hpc/Add-HpcNodeSet.md +++ b/docset/winserver2012r2-ps/hpc/Add-HpcNodeSet.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/add-hpcnodeset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/add-hpcnodeset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-HpcNodeSet --- diff --git a/docset/winserver2012r2-ps/hpc/Add-HpcPool.md b/docset/winserver2012r2-ps/hpc/Add-HpcPool.md index 89bd0cb9fe..1898c7fef1 100644 --- a/docset/winserver2012r2-ps/hpc/Add-HpcPool.md +++ b/docset/winserver2012r2-ps/hpc/Add-HpcPool.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/add-hpcpool?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/add-hpcpool?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-HpcPool --- diff --git a/docset/winserver2012r2-ps/hpc/Add-HpcTask.md b/docset/winserver2012r2-ps/hpc/Add-HpcTask.md index ae626aaace..d88c3e0d63 100644 --- a/docset/winserver2012r2-ps/hpc/Add-HpcTask.md +++ b/docset/winserver2012r2-ps/hpc/Add-HpcTask.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/add-hpctask?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/add-hpctask?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-HpcTask --- diff --git a/docset/winserver2012r2-ps/hpc/Add-HpcTest.md b/docset/winserver2012r2-ps/hpc/Add-HpcTest.md index 24c499633f..3ccbd74a3c 100644 --- a/docset/winserver2012r2-ps/hpc/Add-HpcTest.md +++ b/docset/winserver2012r2-ps/hpc/Add-HpcTest.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/add-hpctest?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/add-hpctest?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-HpcTest --- diff --git a/docset/winserver2012r2-ps/hpc/Add-HpcUnManagedNode.md b/docset/winserver2012r2-ps/hpc/Add-HpcUnManagedNode.md index 6e4733d42a..5a6c4466eb 100644 --- a/docset/winserver2012r2-ps/hpc/Add-HpcUnManagedNode.md +++ b/docset/winserver2012r2-ps/hpc/Add-HpcUnManagedNode.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/add-hpcunmanagednode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/add-hpcunmanagednode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-HpcUnManagedNode --- diff --git a/docset/winserver2012r2-ps/hpc/Assign-HpcNodeTemplate.md b/docset/winserver2012r2-ps/hpc/Assign-HpcNodeTemplate.md index a451b20431..39850840e1 100644 --- a/docset/winserver2012r2-ps/hpc/Assign-HpcNodeTemplate.md +++ b/docset/winserver2012r2-ps/hpc/Assign-HpcNodeTemplate.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/assign-hpcnodetemplate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/assign-hpcnodetemplate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Assign-HpcNodeTemplate --- diff --git a/docset/winserver2012r2-ps/hpc/Copy-HpcJobTemplate.md b/docset/winserver2012r2-ps/hpc/Copy-HpcJobTemplate.md index 26eec99f27..8e7423dd5f 100644 --- a/docset/winserver2012r2-ps/hpc/Copy-HpcJobTemplate.md +++ b/docset/winserver2012r2-ps/hpc/Copy-HpcJobTemplate.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/copy-hpcjobtemplate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/copy-hpcjobtemplate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Copy-HpcJobTemplate --- diff --git a/docset/winserver2012r2-ps/hpc/Copy-HpcNodeTemplate.md b/docset/winserver2012r2-ps/hpc/Copy-HpcNodeTemplate.md index 6dfd1f2f43..a184396d9c 100644 --- a/docset/winserver2012r2-ps/hpc/Copy-HpcNodeTemplate.md +++ b/docset/winserver2012r2-ps/hpc/Copy-HpcNodeTemplate.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/copy-hpcnodetemplate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/copy-hpcnodetemplate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Copy-HpcNodeTemplate --- diff --git a/docset/winserver2012r2-ps/hpc/Export-HpcDHCPReservations.md b/docset/winserver2012r2-ps/hpc/Export-HpcDHCPReservations.md index c6bc403301..e1608fe259 100644 --- a/docset/winserver2012r2-ps/hpc/Export-HpcDHCPReservations.md +++ b/docset/winserver2012r2-ps/hpc/Export-HpcDHCPReservations.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/export-hpcdhcpreservations?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/export-hpcdhcpreservations?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-HpcDHCPReservations --- diff --git a/docset/winserver2012r2-ps/hpc/Export-HpcJob.md b/docset/winserver2012r2-ps/hpc/Export-HpcJob.md index 8b027f99c6..dc2663f815 100644 --- a/docset/winserver2012r2-ps/hpc/Export-HpcJob.md +++ b/docset/winserver2012r2-ps/hpc/Export-HpcJob.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/export-hpcjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/export-hpcjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-HpcJob --- diff --git a/docset/winserver2012r2-ps/hpc/Export-HpcNodeTemplate.md b/docset/winserver2012r2-ps/hpc/Export-HpcNodeTemplate.md index 4811e5124e..b34b745e88 100644 --- a/docset/winserver2012r2-ps/hpc/Export-HpcNodeTemplate.md +++ b/docset/winserver2012r2-ps/hpc/Export-HpcNodeTemplate.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/export-hpcnodetemplate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/export-hpcnodetemplate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-HpcNodeTemplate --- diff --git a/docset/winserver2012r2-ps/hpc/Export-HpcNodeXml.md b/docset/winserver2012r2-ps/hpc/Export-HpcNodeXml.md index ea2325970b..503ad6d5b4 100644 --- a/docset/winserver2012r2-ps/hpc/Export-HpcNodeXml.md +++ b/docset/winserver2012r2-ps/hpc/Export-HpcNodeXml.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/export-hpcnodexml?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/export-hpcnodexml?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-HpcNodeXml --- diff --git a/docset/winserver2012r2-ps/hpc/Export-HpcSoaSessionTrace.md b/docset/winserver2012r2-ps/hpc/Export-HpcSoaSessionTrace.md index 0438e08308..a488b7daa9 100644 --- a/docset/winserver2012r2-ps/hpc/Export-HpcSoaSessionTrace.md +++ b/docset/winserver2012r2-ps/hpc/Export-HpcSoaSessionTrace.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/export-hpcsoasessiontrace?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/export-hpcsoasessiontrace?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-HpcSoaSessionTrace --- diff --git a/docset/winserver2012r2-ps/hpc/Export-HpcTask.md b/docset/winserver2012r2-ps/hpc/Export-HpcTask.md index 53c0f044a0..57c1a236b3 100644 --- a/docset/winserver2012r2-ps/hpc/Export-HpcTask.md +++ b/docset/winserver2012r2-ps/hpc/Export-HpcTask.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/export-hpctask?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/export-hpctask?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-HpcTask --- diff --git a/docset/winserver2012r2-ps/hpc/Export-HpcTestResult.md b/docset/winserver2012r2-ps/hpc/Export-HpcTestResult.md index 7988040f10..a7280a1ce5 100644 --- a/docset/winserver2012r2-ps/hpc/Export-HpcTestResult.md +++ b/docset/winserver2012r2-ps/hpc/Export-HpcTestResult.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/export-hpctestresult?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/export-hpctestresult?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-HpcTestResult --- diff --git a/docset/winserver2012r2-ps/hpc/Get-HpcClusterOverview.md b/docset/winserver2012r2-ps/hpc/Get-HpcClusterOverview.md index 525ae7f27d..c5604cc767 100644 --- a/docset/winserver2012r2-ps/hpc/Get-HpcClusterOverview.md +++ b/docset/winserver2012r2-ps/hpc/Get-HpcClusterOverview.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/get-hpcclusteroverview?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/get-hpcclusteroverview?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HpcClusterOverview --- diff --git a/docset/winserver2012r2-ps/hpc/Get-HpcClusterProperty.md b/docset/winserver2012r2-ps/hpc/Get-HpcClusterProperty.md index af4d31653a..13557fa432 100644 --- a/docset/winserver2012r2-ps/hpc/Get-HpcClusterProperty.md +++ b/docset/winserver2012r2-ps/hpc/Get-HpcClusterProperty.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/get-hpcclusterproperty?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/get-hpcclusterproperty?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HpcClusterProperty --- diff --git a/docset/winserver2012r2-ps/hpc/Get-HpcDriver.md b/docset/winserver2012r2-ps/hpc/Get-HpcDriver.md index 0e20e0fef9..a3aab101de 100644 --- a/docset/winserver2012r2-ps/hpc/Get-HpcDriver.md +++ b/docset/winserver2012r2-ps/hpc/Get-HpcDriver.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/get-hpcdriver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/get-hpcdriver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HpcDriver --- diff --git a/docset/winserver2012r2-ps/hpc/Get-HpcGroup.md b/docset/winserver2012r2-ps/hpc/Get-HpcGroup.md index ba06fb1e2c..9131e30b9c 100644 --- a/docset/winserver2012r2-ps/hpc/Get-HpcGroup.md +++ b/docset/winserver2012r2-ps/hpc/Get-HpcGroup.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/get-hpcgroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/get-hpcgroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HpcGroup --- diff --git a/docset/winserver2012r2-ps/hpc/Get-HpcIScsiStorageArray.md b/docset/winserver2012r2-ps/hpc/Get-HpcIScsiStorageArray.md index 3c6ccccef4..5f8987ac66 100644 --- a/docset/winserver2012r2-ps/hpc/Get-HpcIScsiStorageArray.md +++ b/docset/winserver2012r2-ps/hpc/Get-HpcIScsiStorageArray.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/get-hpciscsistoragearray?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/get-hpciscsistoragearray?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HpcScsiStorageArray --- diff --git a/docset/winserver2012r2-ps/hpc/Get-HpcImage.md b/docset/winserver2012r2-ps/hpc/Get-HpcImage.md index 53eb302f96..f0ac8c9544 100644 --- a/docset/winserver2012r2-ps/hpc/Get-HpcImage.md +++ b/docset/winserver2012r2-ps/hpc/Get-HpcImage.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/get-hpcimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/get-hpcimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HpcImage --- diff --git a/docset/winserver2012r2-ps/hpc/Get-HpcJob.md b/docset/winserver2012r2-ps/hpc/Get-HpcJob.md index 64443aa485..b2466f5bec 100644 --- a/docset/winserver2012r2-ps/hpc/Get-HpcJob.md +++ b/docset/winserver2012r2-ps/hpc/Get-HpcJob.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/get-hpcjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/get-hpcjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HpcJob --- diff --git a/docset/winserver2012r2-ps/hpc/Get-HpcJobCredential.md b/docset/winserver2012r2-ps/hpc/Get-HpcJobCredential.md index cc3752a8c9..c56d39968a 100644 --- a/docset/winserver2012r2-ps/hpc/Get-HpcJobCredential.md +++ b/docset/winserver2012r2-ps/hpc/Get-HpcJobCredential.md @@ -2,7 +2,7 @@ external help file: CCPPSH.dll-Help.xml Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/get-hpcjobcredential?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/get-hpcjobcredential?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HpcJobCredential --- diff --git a/docset/winserver2012r2-ps/hpc/Get-HpcJobHistory.md b/docset/winserver2012r2-ps/hpc/Get-HpcJobHistory.md index 943fabd86d..07f8e2674a 100644 --- a/docset/winserver2012r2-ps/hpc/Get-HpcJobHistory.md +++ b/docset/winserver2012r2-ps/hpc/Get-HpcJobHistory.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/get-hpcjobhistory?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/get-hpcjobhistory?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HpcJobHistory --- diff --git a/docset/winserver2012r2-ps/hpc/Get-HpcJobTemplate.md b/docset/winserver2012r2-ps/hpc/Get-HpcJobTemplate.md index db7c2bf81e..a29481285d 100644 --- a/docset/winserver2012r2-ps/hpc/Get-HpcJobTemplate.md +++ b/docset/winserver2012r2-ps/hpc/Get-HpcJobTemplate.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/get-hpcjobtemplate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/get-hpcjobtemplate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HpcJobTemplate --- diff --git a/docset/winserver2012r2-ps/hpc/Get-HpcJobTemplateAcl.md b/docset/winserver2012r2-ps/hpc/Get-HpcJobTemplateAcl.md index 441f16691e..bd070d9138 100644 --- a/docset/winserver2012r2-ps/hpc/Get-HpcJobTemplateAcl.md +++ b/docset/winserver2012r2-ps/hpc/Get-HpcJobTemplateAcl.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/get-hpcjobtemplateacl?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/get-hpcjobtemplateacl?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HpcJobTemplateAcl --- diff --git a/docset/winserver2012r2-ps/hpc/Get-HpcMember.md b/docset/winserver2012r2-ps/hpc/Get-HpcMember.md index 058f55b5c7..75a80b40e1 100644 --- a/docset/winserver2012r2-ps/hpc/Get-HpcMember.md +++ b/docset/winserver2012r2-ps/hpc/Get-HpcMember.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/get-hpcmember?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/get-hpcmember?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HpcMember --- diff --git a/docset/winserver2012r2-ps/hpc/Get-HpcMetric.md b/docset/winserver2012r2-ps/hpc/Get-HpcMetric.md index 9d6e0f448e..0b2911d1d2 100644 --- a/docset/winserver2012r2-ps/hpc/Get-HpcMetric.md +++ b/docset/winserver2012r2-ps/hpc/Get-HpcMetric.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/get-hpcmetric?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/get-hpcmetric?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HpcMetric --- diff --git a/docset/winserver2012r2-ps/hpc/Get-HpcMetricValue.md b/docset/winserver2012r2-ps/hpc/Get-HpcMetricValue.md index a5c61aba3f..6981f896ae 100644 --- a/docset/winserver2012r2-ps/hpc/Get-HpcMetricValue.md +++ b/docset/winserver2012r2-ps/hpc/Get-HpcMetricValue.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/get-hpcmetricvalue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/get-hpcmetricvalue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HpcMetricValue --- diff --git a/docset/winserver2012r2-ps/hpc/Get-HpcMetricValueHistory.md b/docset/winserver2012r2-ps/hpc/Get-HpcMetricValueHistory.md index 81a89ca5da..ab83c069bc 100644 --- a/docset/winserver2012r2-ps/hpc/Get-HpcMetricValueHistory.md +++ b/docset/winserver2012r2-ps/hpc/Get-HpcMetricValueHistory.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/get-hpcmetricvaluehistory?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/get-hpcmetricvaluehistory?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HpcMetricValueHistory --- diff --git a/docset/winserver2012r2-ps/hpc/Get-HpcNetworkInterface.md b/docset/winserver2012r2-ps/hpc/Get-HpcNetworkInterface.md index 0c1cf81a85..8df1ff2a0b 100644 --- a/docset/winserver2012r2-ps/hpc/Get-HpcNetworkInterface.md +++ b/docset/winserver2012r2-ps/hpc/Get-HpcNetworkInterface.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/get-hpcnetworkinterface?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/get-hpcnetworkinterface?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HpcNetworkInterface --- diff --git a/docset/winserver2012r2-ps/hpc/Get-HpcNetworkTopology.md b/docset/winserver2012r2-ps/hpc/Get-HpcNetworkTopology.md index b99bd68260..36d3e96014 100644 --- a/docset/winserver2012r2-ps/hpc/Get-HpcNetworkTopology.md +++ b/docset/winserver2012r2-ps/hpc/Get-HpcNetworkTopology.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/get-hpcnetworktopology?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/get-hpcnetworktopology?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HpcNetworkTopology --- diff --git a/docset/winserver2012r2-ps/hpc/Get-HpcNode.md b/docset/winserver2012r2-ps/hpc/Get-HpcNode.md index 8e5c0cebad..fac26b7a2f 100644 --- a/docset/winserver2012r2-ps/hpc/Get-HpcNode.md +++ b/docset/winserver2012r2-ps/hpc/Get-HpcNode.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/get-hpcnode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/get-hpcnode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HpcNode --- diff --git a/docset/winserver2012r2-ps/hpc/Get-HpcNodeStateHistory.md b/docset/winserver2012r2-ps/hpc/Get-HpcNodeStateHistory.md index 13f8fedcff..b2c08c22f8 100644 --- a/docset/winserver2012r2-ps/hpc/Get-HpcNodeStateHistory.md +++ b/docset/winserver2012r2-ps/hpc/Get-HpcNodeStateHistory.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/get-hpcnodestatehistory?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/get-hpcnodestatehistory?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HpcNodeStateHistory --- diff --git a/docset/winserver2012r2-ps/hpc/Get-HpcNodeTemplate.md b/docset/winserver2012r2-ps/hpc/Get-HpcNodeTemplate.md index a345fb2236..f1ebb86440 100644 --- a/docset/winserver2012r2-ps/hpc/Get-HpcNodeTemplate.md +++ b/docset/winserver2012r2-ps/hpc/Get-HpcNodeTemplate.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/get-hpcnodetemplate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/get-hpcnodetemplate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HpcNodeTemplate --- diff --git a/docset/winserver2012r2-ps/hpc/Get-HpcOperation.md b/docset/winserver2012r2-ps/hpc/Get-HpcOperation.md index e62791e191..281015a9ea 100644 --- a/docset/winserver2012r2-ps/hpc/Get-HpcOperation.md +++ b/docset/winserver2012r2-ps/hpc/Get-HpcOperation.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/get-hpcoperation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/get-hpcoperation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HpcOperation --- diff --git a/docset/winserver2012r2-ps/hpc/Get-HpcOperationLog.md b/docset/winserver2012r2-ps/hpc/Get-HpcOperationLog.md index 1a5caf46fb..b250f496b6 100644 --- a/docset/winserver2012r2-ps/hpc/Get-HpcOperationLog.md +++ b/docset/winserver2012r2-ps/hpc/Get-HpcOperationLog.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/get-hpcoperationlog?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/get-hpcoperationlog?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HpcOperationLog --- diff --git a/docset/winserver2012r2-ps/hpc/Get-HpcPool.md b/docset/winserver2012r2-ps/hpc/Get-HpcPool.md index 98071d826c..6deec760d4 100644 --- a/docset/winserver2012r2-ps/hpc/Get-HpcPool.md +++ b/docset/winserver2012r2-ps/hpc/Get-HpcPool.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/get-hpcpool?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/get-hpcpool?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HpcPool --- diff --git a/docset/winserver2012r2-ps/hpc/Get-HpcTask.md b/docset/winserver2012r2-ps/hpc/Get-HpcTask.md index 4726708060..325f74550c 100644 --- a/docset/winserver2012r2-ps/hpc/Get-HpcTask.md +++ b/docset/winserver2012r2-ps/hpc/Get-HpcTask.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/get-hpctask?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/get-hpctask?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HpcTask --- diff --git a/docset/winserver2012r2-ps/hpc/Get-HpcTest.md b/docset/winserver2012r2-ps/hpc/Get-HpcTest.md index 9d59fdf671..152b6f24be 100644 --- a/docset/winserver2012r2-ps/hpc/Get-HpcTest.md +++ b/docset/winserver2012r2-ps/hpc/Get-HpcTest.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/get-hpctest?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/get-hpctest?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HpcTest --- diff --git a/docset/winserver2012r2-ps/hpc/Get-HpcTestDetail.md b/docset/winserver2012r2-ps/hpc/Get-HpcTestDetail.md index 353ff4d06d..4df8f9e653 100644 --- a/docset/winserver2012r2-ps/hpc/Get-HpcTestDetail.md +++ b/docset/winserver2012r2-ps/hpc/Get-HpcTestDetail.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/get-hpctestdetail?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/get-hpctestdetail?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HpcTestDetail --- diff --git a/docset/winserver2012r2-ps/hpc/Get-HpcTestResult.md b/docset/winserver2012r2-ps/hpc/Get-HpcTestResult.md index b0415f8696..b87072a459 100644 --- a/docset/winserver2012r2-ps/hpc/Get-HpcTestResult.md +++ b/docset/winserver2012r2-ps/hpc/Get-HpcTestResult.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/get-hpctestresult?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/get-hpctestresult?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HpcTestResult --- diff --git a/docset/winserver2012r2-ps/hpc/Get-HpcTestResultDetail.md b/docset/winserver2012r2-ps/hpc/Get-HpcTestResultDetail.md index 09bd1642ce..b96882c6ef 100644 --- a/docset/winserver2012r2-ps/hpc/Get-HpcTestResultDetail.md +++ b/docset/winserver2012r2-ps/hpc/Get-HpcTestResultDetail.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/get-hpctestresultdetail?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/get-hpctestresultdetail?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HpcTestResultDetail --- diff --git a/docset/winserver2012r2-ps/hpc/Import-HpcJobTemplate.md b/docset/winserver2012r2-ps/hpc/Import-HpcJobTemplate.md index 8034910ca0..23a2cf5b6b 100644 --- a/docset/winserver2012r2-ps/hpc/Import-HpcJobTemplate.md +++ b/docset/winserver2012r2-ps/hpc/Import-HpcJobTemplate.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/import-hpcjobtemplate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/import-hpcjobtemplate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-HpcJobTemplate --- diff --git a/docset/winserver2012r2-ps/hpc/Import-HpcMetric.md b/docset/winserver2012r2-ps/hpc/Import-HpcMetric.md index 3b8e1938af..29367eec67 100644 --- a/docset/winserver2012r2-ps/hpc/Import-HpcMetric.md +++ b/docset/winserver2012r2-ps/hpc/Import-HpcMetric.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/import-hpcmetric?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/import-hpcmetric?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-HpcMetric --- diff --git a/docset/winserver2012r2-ps/hpc/Import-HpcNodeTemplate.md b/docset/winserver2012r2-ps/hpc/Import-HpcNodeTemplate.md index 305b7217ab..35a7a4ffb2 100644 --- a/docset/winserver2012r2-ps/hpc/Import-HpcNodeTemplate.md +++ b/docset/winserver2012r2-ps/hpc/Import-HpcNodeTemplate.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/import-hpcnodetemplate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/import-hpcnodetemplate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-HpcNodeTemplate --- diff --git a/docset/winserver2012r2-ps/hpc/Import-HpcNodeXml.md b/docset/winserver2012r2-ps/hpc/Import-HpcNodeXml.md index e5df7fce2d..6cb68066d4 100644 --- a/docset/winserver2012r2-ps/hpc/Import-HpcNodeXml.md +++ b/docset/winserver2012r2-ps/hpc/Import-HpcNodeXml.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/import-hpcnodexml?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/import-hpcnodexml?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-HpcNodeXml --- diff --git a/docset/winserver2012r2-ps/hpc/Invoke-HpcTest.md b/docset/winserver2012r2-ps/hpc/Invoke-HpcTest.md index 138243ed48..578340b879 100644 --- a/docset/winserver2012r2-ps/hpc/Invoke-HpcTest.md +++ b/docset/winserver2012r2-ps/hpc/Invoke-HpcTest.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/invoke-hpctest?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/invoke-hpctest?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-HpcTest --- diff --git a/docset/winserver2012r2-ps/hpc/New-HpcGroup.md b/docset/winserver2012r2-ps/hpc/New-HpcGroup.md index add092e043..8975c60d5f 100644 --- a/docset/winserver2012r2-ps/hpc/New-HpcGroup.md +++ b/docset/winserver2012r2-ps/hpc/New-HpcGroup.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/new-hpcgroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/new-hpcgroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-HpcGroup --- diff --git a/docset/winserver2012r2-ps/hpc/New-HpcImage.md b/docset/winserver2012r2-ps/hpc/New-HpcImage.md index 2c510a4b3e..a3e8513033 100644 --- a/docset/winserver2012r2-ps/hpc/New-HpcImage.md +++ b/docset/winserver2012r2-ps/hpc/New-HpcImage.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/new-hpcimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/new-hpcimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-HpcImage --- diff --git a/docset/winserver2012r2-ps/hpc/New-HpcJob.md b/docset/winserver2012r2-ps/hpc/New-HpcJob.md index 38f1d75d50..8187cc8835 100644 --- a/docset/winserver2012r2-ps/hpc/New-HpcJob.md +++ b/docset/winserver2012r2-ps/hpc/New-HpcJob.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/new-hpcjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/new-hpcjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-HpcJob --- diff --git a/docset/winserver2012r2-ps/hpc/New-HpcNodeTemplate.md b/docset/winserver2012r2-ps/hpc/New-HpcNodeTemplate.md index 88c3468b21..600313420b 100644 --- a/docset/winserver2012r2-ps/hpc/New-HpcNodeTemplate.md +++ b/docset/winserver2012r2-ps/hpc/New-HpcNodeTemplate.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/new-hpcnodetemplate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/new-hpcnodetemplate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-HpcNodeTemplate --- diff --git a/docset/winserver2012r2-ps/hpc/New-HpcSoftCard.md b/docset/winserver2012r2-ps/hpc/New-HpcSoftCard.md index 5f0363466f..1bd67d39b9 100644 --- a/docset/winserver2012r2-ps/hpc/New-HpcSoftCard.md +++ b/docset/winserver2012r2-ps/hpc/New-HpcSoftCard.md @@ -2,7 +2,7 @@ external help file: CCPPSH.dll-Help.xml Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/new-hpcsoftcard?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/new-hpcsoftcard?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-HpcSoftCard --- diff --git a/docset/winserver2012r2-ps/hpc/Remove-HpcAzureNode.md b/docset/winserver2012r2-ps/hpc/Remove-HpcAzureNode.md index 540bb0698b..08c506c250 100644 --- a/docset/winserver2012r2-ps/hpc/Remove-HpcAzureNode.md +++ b/docset/winserver2012r2-ps/hpc/Remove-HpcAzureNode.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/remove-hpcazurenode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/remove-hpcazurenode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-HpcAzureNode --- diff --git a/docset/winserver2012r2-ps/hpc/Remove-HpcDriver.md b/docset/winserver2012r2-ps/hpc/Remove-HpcDriver.md index d3cf3b3c42..c023ccc451 100644 --- a/docset/winserver2012r2-ps/hpc/Remove-HpcDriver.md +++ b/docset/winserver2012r2-ps/hpc/Remove-HpcDriver.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/remove-hpcdriver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/remove-hpcdriver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-HpcDriver --- diff --git a/docset/winserver2012r2-ps/hpc/Remove-HpcGroup.md b/docset/winserver2012r2-ps/hpc/Remove-HpcGroup.md index 8953dd4776..e45b6f6af2 100644 --- a/docset/winserver2012r2-ps/hpc/Remove-HpcGroup.md +++ b/docset/winserver2012r2-ps/hpc/Remove-HpcGroup.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/remove-hpcgroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/remove-hpcgroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-HpcGroup --- diff --git a/docset/winserver2012r2-ps/hpc/Remove-HpcIScsiStorageArray.md b/docset/winserver2012r2-ps/hpc/Remove-HpcIScsiStorageArray.md index 490b0ed86a..0a020b0aa7 100644 --- a/docset/winserver2012r2-ps/hpc/Remove-HpcIScsiStorageArray.md +++ b/docset/winserver2012r2-ps/hpc/Remove-HpcIScsiStorageArray.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/remove-hpciscsistoragearray?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/remove-hpciscsistoragearray?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-HpcIScsiStorageArray --- diff --git a/docset/winserver2012r2-ps/hpc/Remove-HpcImage.md b/docset/winserver2012r2-ps/hpc/Remove-HpcImage.md index e17e51f27f..5866d8d6ff 100644 --- a/docset/winserver2012r2-ps/hpc/Remove-HpcImage.md +++ b/docset/winserver2012r2-ps/hpc/Remove-HpcImage.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/remove-hpcimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/remove-hpcimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-HpcImage --- diff --git a/docset/winserver2012r2-ps/hpc/Remove-HpcJobCredential.md b/docset/winserver2012r2-ps/hpc/Remove-HpcJobCredential.md index 09a39df4bc..0eff878494 100644 --- a/docset/winserver2012r2-ps/hpc/Remove-HpcJobCredential.md +++ b/docset/winserver2012r2-ps/hpc/Remove-HpcJobCredential.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/remove-hpcjobcredential?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/remove-hpcjobcredential?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-HpcJobCredential --- diff --git a/docset/winserver2012r2-ps/hpc/Remove-HpcJobTemplate.md b/docset/winserver2012r2-ps/hpc/Remove-HpcJobTemplate.md index da3b6e7a22..9d83644914 100644 --- a/docset/winserver2012r2-ps/hpc/Remove-HpcJobTemplate.md +++ b/docset/winserver2012r2-ps/hpc/Remove-HpcJobTemplate.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/remove-hpcjobtemplate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/remove-hpcjobtemplate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-HpcJobTemplate --- diff --git a/docset/winserver2012r2-ps/hpc/Remove-HpcMember.md b/docset/winserver2012r2-ps/hpc/Remove-HpcMember.md index 624fa8d665..39b20334f5 100644 --- a/docset/winserver2012r2-ps/hpc/Remove-HpcMember.md +++ b/docset/winserver2012r2-ps/hpc/Remove-HpcMember.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/remove-hpcmember?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/remove-hpcmember?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-HpcMember --- diff --git a/docset/winserver2012r2-ps/hpc/Remove-HpcMetric.md b/docset/winserver2012r2-ps/hpc/Remove-HpcMetric.md index 7931ebb68c..8104a0591b 100644 --- a/docset/winserver2012r2-ps/hpc/Remove-HpcMetric.md +++ b/docset/winserver2012r2-ps/hpc/Remove-HpcMetric.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/remove-hpcmetric?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/remove-hpcmetric?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-HpcMetric --- diff --git a/docset/winserver2012r2-ps/hpc/Remove-HpcNode.md b/docset/winserver2012r2-ps/hpc/Remove-HpcNode.md index 7ecf741c57..584f98371f 100644 --- a/docset/winserver2012r2-ps/hpc/Remove-HpcNode.md +++ b/docset/winserver2012r2-ps/hpc/Remove-HpcNode.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/remove-hpcnode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/remove-hpcnode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-HpcNode --- diff --git a/docset/winserver2012r2-ps/hpc/Remove-HpcNodeSet.md b/docset/winserver2012r2-ps/hpc/Remove-HpcNodeSet.md index 81b7c1eaeb..71f14fbd4c 100644 --- a/docset/winserver2012r2-ps/hpc/Remove-HpcNodeSet.md +++ b/docset/winserver2012r2-ps/hpc/Remove-HpcNodeSet.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/remove-hpcnodeset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/remove-hpcnodeset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-HpcNodeSet --- diff --git a/docset/winserver2012r2-ps/hpc/Remove-HpcNodeTemplate.md b/docset/winserver2012r2-ps/hpc/Remove-HpcNodeTemplate.md index 1806de778d..03766f9498 100644 --- a/docset/winserver2012r2-ps/hpc/Remove-HpcNodeTemplate.md +++ b/docset/winserver2012r2-ps/hpc/Remove-HpcNodeTemplate.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/remove-hpcnodetemplate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/remove-hpcnodetemplate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-HpcNodeTemplate --- diff --git a/docset/winserver2012r2-ps/hpc/Remove-HpcPool.md b/docset/winserver2012r2-ps/hpc/Remove-HpcPool.md index 8ab988ffd0..2caa9fef32 100644 --- a/docset/winserver2012r2-ps/hpc/Remove-HpcPool.md +++ b/docset/winserver2012r2-ps/hpc/Remove-HpcPool.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/remove-hpcpool?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/remove-hpcpool?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-HpcPool --- diff --git a/docset/winserver2012r2-ps/hpc/Remove-HpcSoaCredential.md b/docset/winserver2012r2-ps/hpc/Remove-HpcSoaCredential.md index 1143ef5c22..77e461233d 100644 --- a/docset/winserver2012r2-ps/hpc/Remove-HpcSoaCredential.md +++ b/docset/winserver2012r2-ps/hpc/Remove-HpcSoaCredential.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/remove-hpcsoacredential?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/remove-hpcsoacredential?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-HpcSoaCredential --- diff --git a/docset/winserver2012r2-ps/hpc/Remove-HpcSoaSessionTrace.md b/docset/winserver2012r2-ps/hpc/Remove-HpcSoaSessionTrace.md index 94a8ee44a6..1f486abae6 100644 --- a/docset/winserver2012r2-ps/hpc/Remove-HpcSoaSessionTrace.md +++ b/docset/winserver2012r2-ps/hpc/Remove-HpcSoaSessionTrace.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/remove-hpcsoasessiontrace?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/remove-hpcsoasessiontrace?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-HpcSoaSessionTrace --- diff --git a/docset/winserver2012r2-ps/hpc/Remove-HpcTest.md b/docset/winserver2012r2-ps/hpc/Remove-HpcTest.md index a5b7c4f839..476a5b262f 100644 --- a/docset/winserver2012r2-ps/hpc/Remove-HpcTest.md +++ b/docset/winserver2012r2-ps/hpc/Remove-HpcTest.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/remove-hpctest?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/remove-hpctest?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-HpcTest --- diff --git a/docset/winserver2012r2-ps/hpc/Remove-HpcTestCredential.md b/docset/winserver2012r2-ps/hpc/Remove-HpcTestCredential.md index 2852760f98..6a858abe66 100644 --- a/docset/winserver2012r2-ps/hpc/Remove-HpcTestCredential.md +++ b/docset/winserver2012r2-ps/hpc/Remove-HpcTestCredential.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/remove-hpctestcredential?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/remove-hpctestcredential?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-HpcTestCredential --- diff --git a/docset/winserver2012r2-ps/hpc/Remove-HpcTestResultAlert.md b/docset/winserver2012r2-ps/hpc/Remove-HpcTestResultAlert.md index e45215be11..f04a96fbe9 100644 --- a/docset/winserver2012r2-ps/hpc/Remove-HpcTestResultAlert.md +++ b/docset/winserver2012r2-ps/hpc/Remove-HpcTestResultAlert.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/remove-hpctestresultalert?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/remove-hpctestresultalert?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-HpcTestResultAlert --- diff --git a/docset/winserver2012r2-ps/hpc/Replicate-HpcImage.md b/docset/winserver2012r2-ps/hpc/Replicate-HpcImage.md index acb6a3180e..a88a21b3a0 100644 --- a/docset/winserver2012r2-ps/hpc/Replicate-HpcImage.md +++ b/docset/winserver2012r2-ps/hpc/Replicate-HpcImage.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/replicate-hpcimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/replicate-hpcimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Replicate-HpcImage --- diff --git a/docset/winserver2012r2-ps/hpc/Restart-HpcNode.md b/docset/winserver2012r2-ps/hpc/Restart-HpcNode.md index a632f4e8d6..27d4b30bbf 100644 --- a/docset/winserver2012r2-ps/hpc/Restart-HpcNode.md +++ b/docset/winserver2012r2-ps/hpc/Restart-HpcNode.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/restart-hpcnode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/restart-hpcnode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restart-HpcNode --- diff --git a/docset/winserver2012r2-ps/hpc/Set-HpcClusterProperty.md b/docset/winserver2012r2-ps/hpc/Set-HpcClusterProperty.md index 420ba4d1e7..30befb2116 100644 --- a/docset/winserver2012r2-ps/hpc/Set-HpcClusterProperty.md +++ b/docset/winserver2012r2-ps/hpc/Set-HpcClusterProperty.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/set-hpcclusterproperty?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/set-hpcclusterproperty?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-HpcClusterProperty --- diff --git a/docset/winserver2012r2-ps/hpc/Set-HpcGroup.md b/docset/winserver2012r2-ps/hpc/Set-HpcGroup.md index f468a726fb..807005376a 100644 --- a/docset/winserver2012r2-ps/hpc/Set-HpcGroup.md +++ b/docset/winserver2012r2-ps/hpc/Set-HpcGroup.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/set-hpcgroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/set-hpcgroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-HpcGroup --- diff --git a/docset/winserver2012r2-ps/hpc/Set-HpcIScsiStorageArray.md b/docset/winserver2012r2-ps/hpc/Set-HpcIScsiStorageArray.md index 34cf44e7cd..c0d144a6f1 100644 --- a/docset/winserver2012r2-ps/hpc/Set-HpcIScsiStorageArray.md +++ b/docset/winserver2012r2-ps/hpc/Set-HpcIScsiStorageArray.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/set-hpciscsistoragearray?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/set-hpciscsistoragearray?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-HpcIScsiStorageArray --- diff --git a/docset/winserver2012r2-ps/hpc/Set-HpcJob.md b/docset/winserver2012r2-ps/hpc/Set-HpcJob.md index a5f825c0c2..663ce7c968 100644 --- a/docset/winserver2012r2-ps/hpc/Set-HpcJob.md +++ b/docset/winserver2012r2-ps/hpc/Set-HpcJob.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/set-hpcjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/set-hpcjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-HpcJob --- diff --git a/docset/winserver2012r2-ps/hpc/Set-HpcJobCredential.md b/docset/winserver2012r2-ps/hpc/Set-HpcJobCredential.md index b038316a31..1f0982c537 100644 --- a/docset/winserver2012r2-ps/hpc/Set-HpcJobCredential.md +++ b/docset/winserver2012r2-ps/hpc/Set-HpcJobCredential.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/set-hpcjobcredential?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/set-hpcjobcredential?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-HpcJobCredential --- diff --git a/docset/winserver2012r2-ps/hpc/Set-HpcJobTemplateAcl.md b/docset/winserver2012r2-ps/hpc/Set-HpcJobTemplateAcl.md index 8f5465a879..371071fe70 100644 --- a/docset/winserver2012r2-ps/hpc/Set-HpcJobTemplateAcl.md +++ b/docset/winserver2012r2-ps/hpc/Set-HpcJobTemplateAcl.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/set-hpcjobtemplateacl?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/set-hpcjobtemplateacl?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-HpcJobTemplateAcl --- diff --git a/docset/winserver2012r2-ps/hpc/Set-HpcNode.md b/docset/winserver2012r2-ps/hpc/Set-HpcNode.md index baa868f6df..66ed57e7df 100644 --- a/docset/winserver2012r2-ps/hpc/Set-HpcNode.md +++ b/docset/winserver2012r2-ps/hpc/Set-HpcNode.md @@ -2,7 +2,7 @@ external help file: CCPPSH.dll-Help.xml Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/set-hpcnode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/set-hpcnode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-HpcNode --- diff --git a/docset/winserver2012r2-ps/hpc/Set-HpcNodeState.md b/docset/winserver2012r2-ps/hpc/Set-HpcNodeState.md index a211e0d307..dad527b258 100644 --- a/docset/winserver2012r2-ps/hpc/Set-HpcNodeState.md +++ b/docset/winserver2012r2-ps/hpc/Set-HpcNodeState.md @@ -2,7 +2,7 @@ external help file: CCPPSH.dll-Help.xml Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/set-hpcnodestate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/set-hpcnodestate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-HpcNodeState --- diff --git a/docset/winserver2012r2-ps/hpc/Set-HpcPool.md b/docset/winserver2012r2-ps/hpc/Set-HpcPool.md index 7470906549..6bda893cfb 100644 --- a/docset/winserver2012r2-ps/hpc/Set-HpcPool.md +++ b/docset/winserver2012r2-ps/hpc/Set-HpcPool.md @@ -2,7 +2,7 @@ external help file: CCPPSH.dll-Help.xml Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/set-hpcpool?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/set-hpcpool?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-HpcPool --- diff --git a/docset/winserver2012r2-ps/hpc/Set-HpcSoaCredential.md b/docset/winserver2012r2-ps/hpc/Set-HpcSoaCredential.md index 331fed23c3..e47bd6b686 100644 --- a/docset/winserver2012r2-ps/hpc/Set-HpcSoaCredential.md +++ b/docset/winserver2012r2-ps/hpc/Set-HpcSoaCredential.md @@ -2,7 +2,7 @@ external help file: CCPPSH.dll-Help.xml Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/set-hpcsoacredential?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/set-hpcsoacredential?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-HpcSoaCredential --- diff --git a/docset/winserver2012r2-ps/hpc/Set-HpcTask.md b/docset/winserver2012r2-ps/hpc/Set-HpcTask.md index 4199cbc960..6e3be5366a 100644 --- a/docset/winserver2012r2-ps/hpc/Set-HpcTask.md +++ b/docset/winserver2012r2-ps/hpc/Set-HpcTask.md @@ -2,7 +2,7 @@ external help file: CCPPSH.dll-Help.xml Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/set-hpctask?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/set-hpctask?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-HpcTask --- diff --git a/docset/winserver2012r2-ps/hpc/Set-HpcTestCredential.md b/docset/winserver2012r2-ps/hpc/Set-HpcTestCredential.md index 5cebca9bee..e5714a831d 100644 --- a/docset/winserver2012r2-ps/hpc/Set-HpcTestCredential.md +++ b/docset/winserver2012r2-ps/hpc/Set-HpcTestCredential.md @@ -2,7 +2,7 @@ external help file: CCPPSH.dll-Help.xml Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/set-hpctestcredential?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/set-hpctestcredential?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-HpcTestCredential --- diff --git a/docset/winserver2012r2-ps/hpc/Shutdown-HpcNode.md b/docset/winserver2012r2-ps/hpc/Shutdown-HpcNode.md index 90e400d138..da3c77aeda 100644 --- a/docset/winserver2012r2-ps/hpc/Shutdown-HpcNode.md +++ b/docset/winserver2012r2-ps/hpc/Shutdown-HpcNode.md @@ -2,7 +2,7 @@ external help file: CCPPSH.dll-Help.xml Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/shutdown-hpcnode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/shutdown-hpcnode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Shutdown-HpcNode --- diff --git a/docset/winserver2012r2-ps/hpc/Start-HpcAzureNode.md b/docset/winserver2012r2-ps/hpc/Start-HpcAzureNode.md index b8d031a1ac..a9377a3e62 100644 --- a/docset/winserver2012r2-ps/hpc/Start-HpcAzureNode.md +++ b/docset/winserver2012r2-ps/hpc/Start-HpcAzureNode.md @@ -2,7 +2,7 @@ external help file: CCPPSH.dll-Help.xml Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/start-hpcazurenode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/start-hpcazurenode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-HpcAzureNode --- diff --git a/docset/winserver2012r2-ps/hpc/Start-HpcNode.md b/docset/winserver2012r2-ps/hpc/Start-HpcNode.md index f95c925287..94f1ca3c3d 100644 --- a/docset/winserver2012r2-ps/hpc/Start-HpcNode.md +++ b/docset/winserver2012r2-ps/hpc/Start-HpcNode.md @@ -2,7 +2,7 @@ external help file: CCPPSH.dll-Help.xml Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/start-hpcnode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/start-hpcnode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-HpcNode --- diff --git a/docset/winserver2012r2-ps/hpc/Start-HpcNodeSet.md b/docset/winserver2012r2-ps/hpc/Start-HpcNodeSet.md index 19374bade0..d098ba88e5 100644 --- a/docset/winserver2012r2-ps/hpc/Start-HpcNodeSet.md +++ b/docset/winserver2012r2-ps/hpc/Start-HpcNodeSet.md @@ -2,7 +2,7 @@ external help file: CCPPSH.dll-Help.xml Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/start-hpcnodeset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/start-hpcnodeset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-HpcNodeSet --- diff --git a/docset/winserver2012r2-ps/hpc/Stop-HpcAzureNode.md b/docset/winserver2012r2-ps/hpc/Stop-HpcAzureNode.md index 2db76eaf2d..159055cdda 100644 --- a/docset/winserver2012r2-ps/hpc/Stop-HpcAzureNode.md +++ b/docset/winserver2012r2-ps/hpc/Stop-HpcAzureNode.md @@ -2,7 +2,7 @@ external help file: CCPPSH.dll-Help.xml Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/stop-hpcazurenode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/stop-hpcazurenode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-HpcAzureNode --- diff --git a/docset/winserver2012r2-ps/hpc/Stop-HpcJob.md b/docset/winserver2012r2-ps/hpc/Stop-HpcJob.md index 8aa9ae69f2..e02a6b7de0 100644 --- a/docset/winserver2012r2-ps/hpc/Stop-HpcJob.md +++ b/docset/winserver2012r2-ps/hpc/Stop-HpcJob.md @@ -2,7 +2,7 @@ external help file: CCPPSH.dll-Help.xml Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/stop-hpcjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/stop-hpcjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-HpcJob --- diff --git a/docset/winserver2012r2-ps/hpc/Stop-HpcNodeSet.md b/docset/winserver2012r2-ps/hpc/Stop-HpcNodeSet.md index 5da12ed863..2c4730b185 100644 --- a/docset/winserver2012r2-ps/hpc/Stop-HpcNodeSet.md +++ b/docset/winserver2012r2-ps/hpc/Stop-HpcNodeSet.md @@ -2,7 +2,7 @@ external help file: CCPPSH.dll-Help.xml Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/stop-hpcnodeset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/stop-hpcnodeset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-HpcNodeSet --- diff --git a/docset/winserver2012r2-ps/hpc/Stop-HpcOperation.md b/docset/winserver2012r2-ps/hpc/Stop-HpcOperation.md index 4e3adf9737..b5473874a0 100644 --- a/docset/winserver2012r2-ps/hpc/Stop-HpcOperation.md +++ b/docset/winserver2012r2-ps/hpc/Stop-HpcOperation.md @@ -1,7 +1,7 @@ --- Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/stop-hpcoperation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/stop-hpcoperation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-HpcOperation --- diff --git a/docset/winserver2012r2-ps/hpc/Stop-HpcTask.md b/docset/winserver2012r2-ps/hpc/Stop-HpcTask.md index 45cff28db8..35f45ee854 100644 --- a/docset/winserver2012r2-ps/hpc/Stop-HpcTask.md +++ b/docset/winserver2012r2-ps/hpc/Stop-HpcTask.md @@ -2,7 +2,7 @@ external help file: CCPPSH.dll-Help.xml Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/stop-hpctask?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/stop-hpctask?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-HpcTask --- diff --git a/docset/winserver2012r2-ps/hpc/Stop-HpcTestResult.md b/docset/winserver2012r2-ps/hpc/Stop-HpcTestResult.md index 724c3b72f4..758d5f24d1 100644 --- a/docset/winserver2012r2-ps/hpc/Stop-HpcTestResult.md +++ b/docset/winserver2012r2-ps/hpc/Stop-HpcTestResult.md @@ -2,7 +2,7 @@ external help file: CCPPSH.dll-Help.xml Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/stop-hpctestresult?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/stop-hpctestresult?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-HpcTestResult --- diff --git a/docset/winserver2012r2-ps/hpc/Submit-HpcJob.md b/docset/winserver2012r2-ps/hpc/Submit-HpcJob.md index 6da696fbc7..ba9ead48c8 100644 --- a/docset/winserver2012r2-ps/hpc/Submit-HpcJob.md +++ b/docset/winserver2012r2-ps/hpc/Submit-HpcJob.md @@ -2,7 +2,7 @@ external help file: CCPPSH.dll-Help.xml Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/submit-hpcjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/submit-hpcjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Submit-HpcJob --- diff --git a/docset/winserver2012r2-ps/hpc/Validate-HpcIScsiStorageArray.md b/docset/winserver2012r2-ps/hpc/Validate-HpcIScsiStorageArray.md index ab7467911c..a58c7aa395 100644 --- a/docset/winserver2012r2-ps/hpc/Validate-HpcIScsiStorageArray.md +++ b/docset/winserver2012r2-ps/hpc/Validate-HpcIScsiStorageArray.md @@ -2,7 +2,7 @@ external help file: CCPPSH.dll-Help.xml Module Name: HPC ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hpc/validate-hpciscsistoragearray?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hpc/validate-hpciscsistoragearray?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Validate-HpcIScsiStorageArray --- diff --git a/docset/winserver2012r2-ps/hyper-v/Add-VMDvdDrive.md b/docset/winserver2012r2-ps/hyper-v/Add-VMDvdDrive.md index 62ce87d6af..2806ce1d8f 100644 --- a/docset/winserver2012r2-ps/hyper-v/Add-VMDvdDrive.md +++ b/docset/winserver2012r2-ps/hyper-v/Add-VMDvdDrive.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmdvddrive?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmdvddrive?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMDvdDrive --- diff --git a/docset/winserver2012r2-ps/hyper-v/Add-VMFibreChannelHba.md b/docset/winserver2012r2-ps/hyper-v/Add-VMFibreChannelHba.md index 54179c7521..0517a3945c 100644 --- a/docset/winserver2012r2-ps/hyper-v/Add-VMFibreChannelHba.md +++ b/docset/winserver2012r2-ps/hyper-v/Add-VMFibreChannelHba.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmfibrechannelhba?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmfibrechannelhba?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMFibreChannelHba --- diff --git a/docset/winserver2012r2-ps/hyper-v/Add-VMHardDiskDrive.md b/docset/winserver2012r2-ps/hyper-v/Add-VMHardDiskDrive.md index 8a1454487e..8abe7aed22 100644 --- a/docset/winserver2012r2-ps/hyper-v/Add-VMHardDiskDrive.md +++ b/docset/winserver2012r2-ps/hyper-v/Add-VMHardDiskDrive.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmharddiskdrive?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmharddiskdrive?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMHardDiskDrive --- diff --git a/docset/winserver2012r2-ps/hyper-v/Add-VMMigrationNetwork.md b/docset/winserver2012r2-ps/hyper-v/Add-VMMigrationNetwork.md index 10b512a7f3..32de6c7022 100644 --- a/docset/winserver2012r2-ps/hyper-v/Add-VMMigrationNetwork.md +++ b/docset/winserver2012r2-ps/hyper-v/Add-VMMigrationNetwork.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmmigrationnetwork?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmmigrationnetwork?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMMigrationNetwork --- diff --git a/docset/winserver2012r2-ps/hyper-v/Add-VMNetworkAdapter.md b/docset/winserver2012r2-ps/hyper-v/Add-VMNetworkAdapter.md index 17b6a1b063..f964784b02 100644 --- a/docset/winserver2012r2-ps/hyper-v/Add-VMNetworkAdapter.md +++ b/docset/winserver2012r2-ps/hyper-v/Add-VMNetworkAdapter.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmnetworkadapter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmnetworkadapter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMNetworkAdapter --- diff --git a/docset/winserver2012r2-ps/hyper-v/Add-VMNetworkAdapterAcl.md b/docset/winserver2012r2-ps/hyper-v/Add-VMNetworkAdapterAcl.md index fec42fd792..dd8b9134a7 100644 --- a/docset/winserver2012r2-ps/hyper-v/Add-VMNetworkAdapterAcl.md +++ b/docset/winserver2012r2-ps/hyper-v/Add-VMNetworkAdapterAcl.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmnetworkadapteracl?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmnetworkadapteracl?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMNetworkAdapterAcl --- diff --git a/docset/winserver2012r2-ps/hyper-v/Add-VMNetworkAdapterExtendedAcl.md b/docset/winserver2012r2-ps/hyper-v/Add-VMNetworkAdapterExtendedAcl.md index 614991a5b9..8e44dd7d72 100644 --- a/docset/winserver2012r2-ps/hyper-v/Add-VMNetworkAdapterExtendedAcl.md +++ b/docset/winserver2012r2-ps/hyper-v/Add-VMNetworkAdapterExtendedAcl.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmnetworkadapterextendedacl?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmnetworkadapterextendedacl?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMNetworkAdapterExtendedAcl --- diff --git a/docset/winserver2012r2-ps/hyper-v/Add-VMRemoteFx3dVideoAdapter.md b/docset/winserver2012r2-ps/hyper-v/Add-VMRemoteFx3dVideoAdapter.md index c5c7a9acb7..50d52c2e32 100644 --- a/docset/winserver2012r2-ps/hyper-v/Add-VMRemoteFx3dVideoAdapter.md +++ b/docset/winserver2012r2-ps/hyper-v/Add-VMRemoteFx3dVideoAdapter.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmremotefx3dvideoadapter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmremotefx3dvideoadapter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMRemoteFx3dVideoAdapter --- diff --git a/docset/winserver2012r2-ps/hyper-v/Add-VMScsiController.md b/docset/winserver2012r2-ps/hyper-v/Add-VMScsiController.md index 012704568d..c59a235db0 100644 --- a/docset/winserver2012r2-ps/hyper-v/Add-VMScsiController.md +++ b/docset/winserver2012r2-ps/hyper-v/Add-VMScsiController.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmscsicontroller?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmscsicontroller?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMScsiController --- diff --git a/docset/winserver2012r2-ps/hyper-v/Add-VMStoragePath.md b/docset/winserver2012r2-ps/hyper-v/Add-VMStoragePath.md index e5b9fdbf39..b3c15b49b0 100644 --- a/docset/winserver2012r2-ps/hyper-v/Add-VMStoragePath.md +++ b/docset/winserver2012r2-ps/hyper-v/Add-VMStoragePath.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmstoragepath?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmstoragepath?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMStoragePath --- diff --git a/docset/winserver2012r2-ps/hyper-v/Add-VMSwitch.md b/docset/winserver2012r2-ps/hyper-v/Add-VMSwitch.md index 3ad29aeace..af48a23c4c 100644 --- a/docset/winserver2012r2-ps/hyper-v/Add-VMSwitch.md +++ b/docset/winserver2012r2-ps/hyper-v/Add-VMSwitch.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmswitch?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmswitch?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMSwitch --- diff --git a/docset/winserver2012r2-ps/hyper-v/Add-VMSwitchExtensionPortFeature.md b/docset/winserver2012r2-ps/hyper-v/Add-VMSwitchExtensionPortFeature.md index 5faedef327..a7f6a5ceaf 100644 --- a/docset/winserver2012r2-ps/hyper-v/Add-VMSwitchExtensionPortFeature.md +++ b/docset/winserver2012r2-ps/hyper-v/Add-VMSwitchExtensionPortFeature.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmswitchextensionportfeature?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmswitchextensionportfeature?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMSwitchExtensionPortFeature --- diff --git a/docset/winserver2012r2-ps/hyper-v/Add-VMSwitchExtensionSwitchFeature.md b/docset/winserver2012r2-ps/hyper-v/Add-VMSwitchExtensionSwitchFeature.md index 943b11b4b0..1ce8e67380 100644 --- a/docset/winserver2012r2-ps/hyper-v/Add-VMSwitchExtensionSwitchFeature.md +++ b/docset/winserver2012r2-ps/hyper-v/Add-VMSwitchExtensionSwitchFeature.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmswitchextensionswitchfeature?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmswitchextensionswitchfeature?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMSwitchExtensionSwitchFeature --- diff --git a/docset/winserver2012r2-ps/hyper-v/Add-VmNetworkAdapterRoutingDomainMapping.md b/docset/winserver2012r2-ps/hyper-v/Add-VmNetworkAdapterRoutingDomainMapping.md index 4a53670a20..056647abc3 100644 --- a/docset/winserver2012r2-ps/hyper-v/Add-VmNetworkAdapterRoutingDomainMapping.md +++ b/docset/winserver2012r2-ps/hyper-v/Add-VmNetworkAdapterRoutingDomainMapping.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmnetworkadapterroutingdomainmapping?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmnetworkadapterroutingdomainmapping?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VmNetworkAdapterRoutingDomainMapping --- diff --git a/docset/winserver2012r2-ps/hyper-v/Checkpoint-VM.md b/docset/winserver2012r2-ps/hyper-v/Checkpoint-VM.md index dee6c41c2d..e5c7162716 100644 --- a/docset/winserver2012r2-ps/hyper-v/Checkpoint-VM.md +++ b/docset/winserver2012r2-ps/hyper-v/Checkpoint-VM.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/checkpoint-vm?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/checkpoint-vm?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Checkpoint-VM --- diff --git a/docset/winserver2012r2-ps/hyper-v/Compare-VM.md b/docset/winserver2012r2-ps/hyper-v/Compare-VM.md index 712d1a45d1..d890ce0d4f 100644 --- a/docset/winserver2012r2-ps/hyper-v/Compare-VM.md +++ b/docset/winserver2012r2-ps/hyper-v/Compare-VM.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/compare-vm?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/compare-vm?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Compare-VM --- diff --git a/docset/winserver2012r2-ps/hyper-v/Complete-VMFailover.md b/docset/winserver2012r2-ps/hyper-v/Complete-VMFailover.md index 66791ed99b..42c695d990 100644 --- a/docset/winserver2012r2-ps/hyper-v/Complete-VMFailover.md +++ b/docset/winserver2012r2-ps/hyper-v/Complete-VMFailover.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/complete-vmfailover?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/complete-vmfailover?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Complete-VMFailover --- diff --git a/docset/winserver2012r2-ps/hyper-v/Connect-VMNetworkAdapter.md b/docset/winserver2012r2-ps/hyper-v/Connect-VMNetworkAdapter.md index 6b03ee7360..2e9bfaddfa 100644 --- a/docset/winserver2012r2-ps/hyper-v/Connect-VMNetworkAdapter.md +++ b/docset/winserver2012r2-ps/hyper-v/Connect-VMNetworkAdapter.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/connect-vmnetworkadapter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/connect-vmnetworkadapter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Connect-VMNetworkAdapter --- diff --git a/docset/winserver2012r2-ps/hyper-v/Connect-VMSan.md b/docset/winserver2012r2-ps/hyper-v/Connect-VMSan.md index 3d4de61e0d..b60db375e7 100644 --- a/docset/winserver2012r2-ps/hyper-v/Connect-VMSan.md +++ b/docset/winserver2012r2-ps/hyper-v/Connect-VMSan.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/connect-vmsan?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/connect-vmsan?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Connect-VMSan --- diff --git a/docset/winserver2012r2-ps/hyper-v/Convert-VHD.md b/docset/winserver2012r2-ps/hyper-v/Convert-VHD.md index 26e0a7e827..8df43e1ce2 100644 --- a/docset/winserver2012r2-ps/hyper-v/Convert-VHD.md +++ b/docset/winserver2012r2-ps/hyper-v/Convert-VHD.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/convert-vhd?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/convert-vhd?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Convert-VHD --- diff --git a/docset/winserver2012r2-ps/hyper-v/Copy-VMFile.md b/docset/winserver2012r2-ps/hyper-v/Copy-VMFile.md index 9d5da0161f..0e4e477d2e 100644 --- a/docset/winserver2012r2-ps/hyper-v/Copy-VMFile.md +++ b/docset/winserver2012r2-ps/hyper-v/Copy-VMFile.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/copy-vmfile?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/copy-vmfile?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Copy-VMFile --- diff --git a/docset/winserver2012r2-ps/hyper-v/Debug-VM.md b/docset/winserver2012r2-ps/hyper-v/Debug-VM.md index efd92174a9..74f8d28862 100644 --- a/docset/winserver2012r2-ps/hyper-v/Debug-VM.md +++ b/docset/winserver2012r2-ps/hyper-v/Debug-VM.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/debug-vm?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/debug-vm?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Debug-VM --- diff --git a/docset/winserver2012r2-ps/hyper-v/Disable-VMEventing.md b/docset/winserver2012r2-ps/hyper-v/Disable-VMEventing.md index df2bcf3df1..d49d538915 100644 --- a/docset/winserver2012r2-ps/hyper-v/Disable-VMEventing.md +++ b/docset/winserver2012r2-ps/hyper-v/Disable-VMEventing.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/disable-vmeventing?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/disable-vmeventing?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-VMEventing --- diff --git a/docset/winserver2012r2-ps/hyper-v/Disable-VMIntegrationService.md b/docset/winserver2012r2-ps/hyper-v/Disable-VMIntegrationService.md index 27478cb66b..2677d78768 100644 --- a/docset/winserver2012r2-ps/hyper-v/Disable-VMIntegrationService.md +++ b/docset/winserver2012r2-ps/hyper-v/Disable-VMIntegrationService.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/disable-vmintegrationservice?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/disable-vmintegrationservice?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-VMIntegrationService --- diff --git a/docset/winserver2012r2-ps/hyper-v/Disable-VMMigration.md b/docset/winserver2012r2-ps/hyper-v/Disable-VMMigration.md index 1f36522f98..87b7c2e1ba 100644 --- a/docset/winserver2012r2-ps/hyper-v/Disable-VMMigration.md +++ b/docset/winserver2012r2-ps/hyper-v/Disable-VMMigration.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/disable-vmmigration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/disable-vmmigration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-VMMigration --- diff --git a/docset/winserver2012r2-ps/hyper-v/Disable-VMRemoteFXPhysicalVideoAdapter.md b/docset/winserver2012r2-ps/hyper-v/Disable-VMRemoteFXPhysicalVideoAdapter.md index c4a61e9f8f..e512222a6c 100644 --- a/docset/winserver2012r2-ps/hyper-v/Disable-VMRemoteFXPhysicalVideoAdapter.md +++ b/docset/winserver2012r2-ps/hyper-v/Disable-VMRemoteFXPhysicalVideoAdapter.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/disable-vmremotefxphysicalvideoadapter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/disable-vmremotefxphysicalvideoadapter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-VMRemoteFXPhysicalVideoAdapter --- diff --git a/docset/winserver2012r2-ps/hyper-v/Disable-VMResourceMetering.md b/docset/winserver2012r2-ps/hyper-v/Disable-VMResourceMetering.md index 491e528774..8a1a77d7f3 100644 --- a/docset/winserver2012r2-ps/hyper-v/Disable-VMResourceMetering.md +++ b/docset/winserver2012r2-ps/hyper-v/Disable-VMResourceMetering.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/disable-vmresourcemetering?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/disable-vmresourcemetering?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-VMResourceMetering --- diff --git a/docset/winserver2012r2-ps/hyper-v/Disable-VMSwitchExtension.md b/docset/winserver2012r2-ps/hyper-v/Disable-VMSwitchExtension.md index c1124dd2a8..6641adbe99 100644 --- a/docset/winserver2012r2-ps/hyper-v/Disable-VMSwitchExtension.md +++ b/docset/winserver2012r2-ps/hyper-v/Disable-VMSwitchExtension.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/disable-vmswitchextension?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/disable-vmswitchextension?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-VMSwitchExtension --- diff --git a/docset/winserver2012r2-ps/hyper-v/Disconnect-VMNetworkAdapter.md b/docset/winserver2012r2-ps/hyper-v/Disconnect-VMNetworkAdapter.md index 824de956b3..548d8ba909 100644 --- a/docset/winserver2012r2-ps/hyper-v/Disconnect-VMNetworkAdapter.md +++ b/docset/winserver2012r2-ps/hyper-v/Disconnect-VMNetworkAdapter.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/disconnect-vmnetworkadapter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/disconnect-vmnetworkadapter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disconnect-VMNetworkAdapter --- diff --git a/docset/winserver2012r2-ps/hyper-v/Disconnect-VMSan.md b/docset/winserver2012r2-ps/hyper-v/Disconnect-VMSan.md index df53c6a7fb..d1cdd03cb2 100644 --- a/docset/winserver2012r2-ps/hyper-v/Disconnect-VMSan.md +++ b/docset/winserver2012r2-ps/hyper-v/Disconnect-VMSan.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/disconnect-vmsan?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/disconnect-vmsan?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disconnect-VMSan --- diff --git a/docset/winserver2012r2-ps/hyper-v/Dismount-VHD.md b/docset/winserver2012r2-ps/hyper-v/Dismount-VHD.md index 0c14d923df..0316828066 100644 --- a/docset/winserver2012r2-ps/hyper-v/Dismount-VHD.md +++ b/docset/winserver2012r2-ps/hyper-v/Dismount-VHD.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/dismount-vhd?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/dismount-vhd?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Dismount-VHD --- diff --git a/docset/winserver2012r2-ps/hyper-v/Enable-VMEventing.md b/docset/winserver2012r2-ps/hyper-v/Enable-VMEventing.md index 3f6443b00f..21026aa005 100644 --- a/docset/winserver2012r2-ps/hyper-v/Enable-VMEventing.md +++ b/docset/winserver2012r2-ps/hyper-v/Enable-VMEventing.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/enable-vmeventing?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/enable-vmeventing?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-VMEventing --- diff --git a/docset/winserver2012r2-ps/hyper-v/Enable-VMIntegrationService.md b/docset/winserver2012r2-ps/hyper-v/Enable-VMIntegrationService.md index f1f08f46ee..19f1d53b03 100644 --- a/docset/winserver2012r2-ps/hyper-v/Enable-VMIntegrationService.md +++ b/docset/winserver2012r2-ps/hyper-v/Enable-VMIntegrationService.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/enable-vmintegrationservice?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/enable-vmintegrationservice?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-VMIntegrationService --- diff --git a/docset/winserver2012r2-ps/hyper-v/Enable-VMMigration.md b/docset/winserver2012r2-ps/hyper-v/Enable-VMMigration.md index 2c6487ebe8..0ed46ec8a8 100644 --- a/docset/winserver2012r2-ps/hyper-v/Enable-VMMigration.md +++ b/docset/winserver2012r2-ps/hyper-v/Enable-VMMigration.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/enable-vmmigration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/enable-vmmigration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-VMMigration --- diff --git a/docset/winserver2012r2-ps/hyper-v/Enable-VMRemoteFXPhysicalVideoAdapter.md b/docset/winserver2012r2-ps/hyper-v/Enable-VMRemoteFXPhysicalVideoAdapter.md index ae085e6786..8cd7a66975 100644 --- a/docset/winserver2012r2-ps/hyper-v/Enable-VMRemoteFXPhysicalVideoAdapter.md +++ b/docset/winserver2012r2-ps/hyper-v/Enable-VMRemoteFXPhysicalVideoAdapter.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/enable-vmremotefxphysicalvideoadapter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/enable-vmremotefxphysicalvideoadapter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-VMRemoteFXPhysicalVideoAdapter --- diff --git a/docset/winserver2012r2-ps/hyper-v/Enable-VMReplication.md b/docset/winserver2012r2-ps/hyper-v/Enable-VMReplication.md index c7098623e8..54bb7a26ab 100644 --- a/docset/winserver2012r2-ps/hyper-v/Enable-VMReplication.md +++ b/docset/winserver2012r2-ps/hyper-v/Enable-VMReplication.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/enable-vmreplication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/enable-vmreplication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-VMReplication --- diff --git a/docset/winserver2012r2-ps/hyper-v/Enable-VMResourceMetering.md b/docset/winserver2012r2-ps/hyper-v/Enable-VMResourceMetering.md index 86f2e8e7e4..c670acad66 100644 --- a/docset/winserver2012r2-ps/hyper-v/Enable-VMResourceMetering.md +++ b/docset/winserver2012r2-ps/hyper-v/Enable-VMResourceMetering.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/enable-vmresourcemetering?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/enable-vmresourcemetering?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-VMResourceMetering --- diff --git a/docset/winserver2012r2-ps/hyper-v/Enable-VMSwitchExtension.md b/docset/winserver2012r2-ps/hyper-v/Enable-VMSwitchExtension.md index 2f708053d6..af9d09d8f5 100644 --- a/docset/winserver2012r2-ps/hyper-v/Enable-VMSwitchExtension.md +++ b/docset/winserver2012r2-ps/hyper-v/Enable-VMSwitchExtension.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/enable-vmswitchextension?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/enable-vmswitchextension?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-VMSwitchExtension --- diff --git a/docset/winserver2012r2-ps/hyper-v/Export-VM.md b/docset/winserver2012r2-ps/hyper-v/Export-VM.md index ac64ebd5ad..5dc7bfa1d0 100644 --- a/docset/winserver2012r2-ps/hyper-v/Export-VM.md +++ b/docset/winserver2012r2-ps/hyper-v/Export-VM.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/export-vm?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/export-vm?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-VM --- diff --git a/docset/winserver2012r2-ps/hyper-v/Export-VMSnapshot.md b/docset/winserver2012r2-ps/hyper-v/Export-VMSnapshot.md index 6dc0cbd1f2..13bd23fe65 100644 --- a/docset/winserver2012r2-ps/hyper-v/Export-VMSnapshot.md +++ b/docset/winserver2012r2-ps/hyper-v/Export-VMSnapshot.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/export-vmsnapshot?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/export-vmsnapshot?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-VMSnapshot --- diff --git a/docset/winserver2012r2-ps/hyper-v/Get-VHD.md b/docset/winserver2012r2-ps/hyper-v/Get-VHD.md index 3b3280850b..bc5a63d665 100644 --- a/docset/winserver2012r2-ps/hyper-v/Get-VHD.md +++ b/docset/winserver2012r2-ps/hyper-v/Get-VHD.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vhd?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vhd?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VHD --- diff --git a/docset/winserver2012r2-ps/hyper-v/Get-VM.md b/docset/winserver2012r2-ps/hyper-v/Get-VM.md index 2662f0d3a2..3cae8c7903 100644 --- a/docset/winserver2012r2-ps/hyper-v/Get-VM.md +++ b/docset/winserver2012r2-ps/hyper-v/Get-VM.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vm?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vm?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VM --- diff --git a/docset/winserver2012r2-ps/hyper-v/Get-VMBios.md b/docset/winserver2012r2-ps/hyper-v/Get-VMBios.md index 350040e6dc..6212c7af27 100644 --- a/docset/winserver2012r2-ps/hyper-v/Get-VMBios.md +++ b/docset/winserver2012r2-ps/hyper-v/Get-VMBios.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmbios?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmbios?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMBios --- diff --git a/docset/winserver2012r2-ps/hyper-v/Get-VMComPort.md b/docset/winserver2012r2-ps/hyper-v/Get-VMComPort.md index 3ed341ed8e..7ea8ddea5d 100644 --- a/docset/winserver2012r2-ps/hyper-v/Get-VMComPort.md +++ b/docset/winserver2012r2-ps/hyper-v/Get-VMComPort.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmcomport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmcomport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMComPort --- diff --git a/docset/winserver2012r2-ps/hyper-v/Get-VMConnectAccess.md b/docset/winserver2012r2-ps/hyper-v/Get-VMConnectAccess.md index 8b77950add..37aa505c62 100644 --- a/docset/winserver2012r2-ps/hyper-v/Get-VMConnectAccess.md +++ b/docset/winserver2012r2-ps/hyper-v/Get-VMConnectAccess.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmconnectaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmconnectaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMConnectAccess --- diff --git a/docset/winserver2012r2-ps/hyper-v/Get-VMDvdDrive.md b/docset/winserver2012r2-ps/hyper-v/Get-VMDvdDrive.md index f0a80ab3f2..460fa9c9b3 100644 --- a/docset/winserver2012r2-ps/hyper-v/Get-VMDvdDrive.md +++ b/docset/winserver2012r2-ps/hyper-v/Get-VMDvdDrive.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmdvddrive?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmdvddrive?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMDvdDrive --- diff --git a/docset/winserver2012r2-ps/hyper-v/Get-VMFibreChannelHba.md b/docset/winserver2012r2-ps/hyper-v/Get-VMFibreChannelHba.md index 48af1f55db..2d01aeee95 100644 --- a/docset/winserver2012r2-ps/hyper-v/Get-VMFibreChannelHba.md +++ b/docset/winserver2012r2-ps/hyper-v/Get-VMFibreChannelHba.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmfibrechannelhba?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmfibrechannelhba?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMFibreChannelHba --- diff --git a/docset/winserver2012r2-ps/hyper-v/Get-VMFirmware.md b/docset/winserver2012r2-ps/hyper-v/Get-VMFirmware.md index 39153aee79..92d237ba16 100644 --- a/docset/winserver2012r2-ps/hyper-v/Get-VMFirmware.md +++ b/docset/winserver2012r2-ps/hyper-v/Get-VMFirmware.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmfirmware?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmfirmware?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMFirmware --- diff --git a/docset/winserver2012r2-ps/hyper-v/Get-VMFloppyDiskDrive.md b/docset/winserver2012r2-ps/hyper-v/Get-VMFloppyDiskDrive.md index 6aa2258707..dafd1991bb 100644 --- a/docset/winserver2012r2-ps/hyper-v/Get-VMFloppyDiskDrive.md +++ b/docset/winserver2012r2-ps/hyper-v/Get-VMFloppyDiskDrive.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmfloppydiskdrive?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmfloppydiskdrive?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMFloppyDiskDrive --- diff --git a/docset/winserver2012r2-ps/hyper-v/Get-VMHardDiskDrive.md b/docset/winserver2012r2-ps/hyper-v/Get-VMHardDiskDrive.md index fd90f82c5a..6b3d0b4ec4 100644 --- a/docset/winserver2012r2-ps/hyper-v/Get-VMHardDiskDrive.md +++ b/docset/winserver2012r2-ps/hyper-v/Get-VMHardDiskDrive.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmharddiskdrive?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmharddiskdrive?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMHardDiskDrive --- diff --git a/docset/winserver2012r2-ps/hyper-v/Get-VMHost.md b/docset/winserver2012r2-ps/hyper-v/Get-VMHost.md index 994c00d2c9..7d40239d1c 100644 --- a/docset/winserver2012r2-ps/hyper-v/Get-VMHost.md +++ b/docset/winserver2012r2-ps/hyper-v/Get-VMHost.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmhost?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmhost?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMHost --- diff --git a/docset/winserver2012r2-ps/hyper-v/Get-VMHostNumaNode.md b/docset/winserver2012r2-ps/hyper-v/Get-VMHostNumaNode.md index 51d5bc8d26..8bd3a64c36 100644 --- a/docset/winserver2012r2-ps/hyper-v/Get-VMHostNumaNode.md +++ b/docset/winserver2012r2-ps/hyper-v/Get-VMHostNumaNode.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmhostnumanode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmhostnumanode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMHostNumaNode --- diff --git a/docset/winserver2012r2-ps/hyper-v/Get-VMHostNumaNodeStatus.md b/docset/winserver2012r2-ps/hyper-v/Get-VMHostNumaNodeStatus.md index faec6c93d4..60db0f1a4d 100644 --- a/docset/winserver2012r2-ps/hyper-v/Get-VMHostNumaNodeStatus.md +++ b/docset/winserver2012r2-ps/hyper-v/Get-VMHostNumaNodeStatus.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmhostnumanodestatus?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmhostnumanodestatus?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMHostNumaNodeStatus --- diff --git a/docset/winserver2012r2-ps/hyper-v/Get-VMIdeController.md b/docset/winserver2012r2-ps/hyper-v/Get-VMIdeController.md index bb7a85c301..eacd9c5a8f 100644 --- a/docset/winserver2012r2-ps/hyper-v/Get-VMIdeController.md +++ b/docset/winserver2012r2-ps/hyper-v/Get-VMIdeController.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmidecontroller?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmidecontroller?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMIdeController --- diff --git a/docset/winserver2012r2-ps/hyper-v/Get-VMIntegrationService.md b/docset/winserver2012r2-ps/hyper-v/Get-VMIntegrationService.md index bfc2548a86..f0d0f9dc19 100644 --- a/docset/winserver2012r2-ps/hyper-v/Get-VMIntegrationService.md +++ b/docset/winserver2012r2-ps/hyper-v/Get-VMIntegrationService.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmintegrationservice?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmintegrationservice?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMIntegrationService --- diff --git a/docset/winserver2012r2-ps/hyper-v/Get-VMMemory.md b/docset/winserver2012r2-ps/hyper-v/Get-VMMemory.md index 3e323b5dd5..4c152114bf 100644 --- a/docset/winserver2012r2-ps/hyper-v/Get-VMMemory.md +++ b/docset/winserver2012r2-ps/hyper-v/Get-VMMemory.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmmemory?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmmemory?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMMemory --- diff --git a/docset/winserver2012r2-ps/hyper-v/Get-VMMigrationNetwork.md b/docset/winserver2012r2-ps/hyper-v/Get-VMMigrationNetwork.md index 886107db03..093ed964b4 100644 --- a/docset/winserver2012r2-ps/hyper-v/Get-VMMigrationNetwork.md +++ b/docset/winserver2012r2-ps/hyper-v/Get-VMMigrationNetwork.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmmigrationnetwork?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmmigrationnetwork?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMMigrationNetwork --- diff --git a/docset/winserver2012r2-ps/hyper-v/Get-VMNetworkAdapter.md b/docset/winserver2012r2-ps/hyper-v/Get-VMNetworkAdapter.md index 5000fabd0e..88e0c19d8b 100644 --- a/docset/winserver2012r2-ps/hyper-v/Get-VMNetworkAdapter.md +++ b/docset/winserver2012r2-ps/hyper-v/Get-VMNetworkAdapter.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMNetworkAdapter --- diff --git a/docset/winserver2012r2-ps/hyper-v/Get-VMNetworkAdapterAcl.md b/docset/winserver2012r2-ps/hyper-v/Get-VMNetworkAdapterAcl.md index 4ac42edffb..c7ba2cf27e 100644 --- a/docset/winserver2012r2-ps/hyper-v/Get-VMNetworkAdapterAcl.md +++ b/docset/winserver2012r2-ps/hyper-v/Get-VMNetworkAdapterAcl.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapteracl?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapteracl?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMNetworkAdapterAcl --- diff --git a/docset/winserver2012r2-ps/hyper-v/Get-VMNetworkAdapterExtendedAcl.md b/docset/winserver2012r2-ps/hyper-v/Get-VMNetworkAdapterExtendedAcl.md index 142b41da31..1465597535 100644 --- a/docset/winserver2012r2-ps/hyper-v/Get-VMNetworkAdapterExtendedAcl.md +++ b/docset/winserver2012r2-ps/hyper-v/Get-VMNetworkAdapterExtendedAcl.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapterextendedacl?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapterextendedacl?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMNetworkAdapterExtendedAcl --- diff --git a/docset/winserver2012r2-ps/hyper-v/Get-VMNetworkAdapterFailoverConfiguration.md b/docset/winserver2012r2-ps/hyper-v/Get-VMNetworkAdapterFailoverConfiguration.md index 3212031c91..406fb53591 100644 --- a/docset/winserver2012r2-ps/hyper-v/Get-VMNetworkAdapterFailoverConfiguration.md +++ b/docset/winserver2012r2-ps/hyper-v/Get-VMNetworkAdapterFailoverConfiguration.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapterfailoverconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapterfailoverconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMNetworkAdapterFailoverConfiguration --- diff --git a/docset/winserver2012r2-ps/hyper-v/Get-VMNetworkAdapterRoutingDomainMapping.md b/docset/winserver2012r2-ps/hyper-v/Get-VMNetworkAdapterRoutingDomainMapping.md index e9f740b2ee..5f27cba7d6 100644 --- a/docset/winserver2012r2-ps/hyper-v/Get-VMNetworkAdapterRoutingDomainMapping.md +++ b/docset/winserver2012r2-ps/hyper-v/Get-VMNetworkAdapterRoutingDomainMapping.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapterroutingdomainmapping?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapterroutingdomainmapping?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMNetworkAdapterRoutingDomainMapping --- diff --git a/docset/winserver2012r2-ps/hyper-v/Get-VMNetworkAdapterVlan.md b/docset/winserver2012r2-ps/hyper-v/Get-VMNetworkAdapterVlan.md index 4b42f770de..a5a03043d5 100644 --- a/docset/winserver2012r2-ps/hyper-v/Get-VMNetworkAdapterVlan.md +++ b/docset/winserver2012r2-ps/hyper-v/Get-VMNetworkAdapterVlan.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmnetworkadaptervlan?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmnetworkadaptervlan?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMNetworkAdapterVlan --- diff --git a/docset/winserver2012r2-ps/hyper-v/Get-VMProcessor.md b/docset/winserver2012r2-ps/hyper-v/Get-VMProcessor.md index b19637ec0f..3fc8e31bb4 100644 --- a/docset/winserver2012r2-ps/hyper-v/Get-VMProcessor.md +++ b/docset/winserver2012r2-ps/hyper-v/Get-VMProcessor.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmprocessor?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmprocessor?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMProcessor --- diff --git a/docset/winserver2012r2-ps/hyper-v/Get-VMRemoteFXPhysicalVideoAdapter.md b/docset/winserver2012r2-ps/hyper-v/Get-VMRemoteFXPhysicalVideoAdapter.md index 7a6169af63..11cf00821a 100644 --- a/docset/winserver2012r2-ps/hyper-v/Get-VMRemoteFXPhysicalVideoAdapter.md +++ b/docset/winserver2012r2-ps/hyper-v/Get-VMRemoteFXPhysicalVideoAdapter.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmremotefxphysicalvideoadapter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmremotefxphysicalvideoadapter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMRemoteFXPhysicalVideoAdapter --- diff --git a/docset/winserver2012r2-ps/hyper-v/Get-VMRemoteFx3dVideoAdapter.md b/docset/winserver2012r2-ps/hyper-v/Get-VMRemoteFx3dVideoAdapter.md index 058cc0068b..0068281a43 100644 --- a/docset/winserver2012r2-ps/hyper-v/Get-VMRemoteFx3dVideoAdapter.md +++ b/docset/winserver2012r2-ps/hyper-v/Get-VMRemoteFx3dVideoAdapter.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmremotefx3dvideoadapter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmremotefx3dvideoadapter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMRemoteFx3dVideoAdapter --- diff --git a/docset/winserver2012r2-ps/hyper-v/Get-VMReplication.md b/docset/winserver2012r2-ps/hyper-v/Get-VMReplication.md index 935e415cf9..a921b83bba 100644 --- a/docset/winserver2012r2-ps/hyper-v/Get-VMReplication.md +++ b/docset/winserver2012r2-ps/hyper-v/Get-VMReplication.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmreplication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmreplication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMReplication --- diff --git a/docset/winserver2012r2-ps/hyper-v/Get-VMReplicationAuthorizationEntry.md b/docset/winserver2012r2-ps/hyper-v/Get-VMReplicationAuthorizationEntry.md index 541eae9b97..e2fea81593 100644 --- a/docset/winserver2012r2-ps/hyper-v/Get-VMReplicationAuthorizationEntry.md +++ b/docset/winserver2012r2-ps/hyper-v/Get-VMReplicationAuthorizationEntry.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmreplicationauthorizationentry?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmreplicationauthorizationentry?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMReplicationAuthorizationEntry --- diff --git a/docset/winserver2012r2-ps/hyper-v/Get-VMReplicationServer.md b/docset/winserver2012r2-ps/hyper-v/Get-VMReplicationServer.md index c0037f460a..ada8287312 100644 --- a/docset/winserver2012r2-ps/hyper-v/Get-VMReplicationServer.md +++ b/docset/winserver2012r2-ps/hyper-v/Get-VMReplicationServer.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmreplicationserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmreplicationserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMReplicationServer --- diff --git a/docset/winserver2012r2-ps/hyper-v/Get-VMResourcePool.md b/docset/winserver2012r2-ps/hyper-v/Get-VMResourcePool.md index bcf9dfa8df..fbd4dfc750 100644 --- a/docset/winserver2012r2-ps/hyper-v/Get-VMResourcePool.md +++ b/docset/winserver2012r2-ps/hyper-v/Get-VMResourcePool.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmresourcepool?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmresourcepool?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMResourcePool --- diff --git a/docset/winserver2012r2-ps/hyper-v/Get-VMSan.md b/docset/winserver2012r2-ps/hyper-v/Get-VMSan.md index db1c00a3fa..5ebb4e1a60 100644 --- a/docset/winserver2012r2-ps/hyper-v/Get-VMSan.md +++ b/docset/winserver2012r2-ps/hyper-v/Get-VMSan.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmsan?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmsan?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMSan --- diff --git a/docset/winserver2012r2-ps/hyper-v/Get-VMScsiController.md b/docset/winserver2012r2-ps/hyper-v/Get-VMScsiController.md index 6f1586e16b..713b3798be 100644 --- a/docset/winserver2012r2-ps/hyper-v/Get-VMScsiController.md +++ b/docset/winserver2012r2-ps/hyper-v/Get-VMScsiController.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmscsicontroller?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmscsicontroller?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMScsiController --- diff --git a/docset/winserver2012r2-ps/hyper-v/Get-VMSnapshot.md b/docset/winserver2012r2-ps/hyper-v/Get-VMSnapshot.md index 04ab04c329..31af8f80a8 100644 --- a/docset/winserver2012r2-ps/hyper-v/Get-VMSnapshot.md +++ b/docset/winserver2012r2-ps/hyper-v/Get-VMSnapshot.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmsnapshot?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmsnapshot?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMSnapshot --- diff --git a/docset/winserver2012r2-ps/hyper-v/Get-VMStoragePath.md b/docset/winserver2012r2-ps/hyper-v/Get-VMStoragePath.md index aa80fcba25..73f6cd57e8 100644 --- a/docset/winserver2012r2-ps/hyper-v/Get-VMStoragePath.md +++ b/docset/winserver2012r2-ps/hyper-v/Get-VMStoragePath.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmstoragepath?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmstoragepath?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMStoragePath --- diff --git a/docset/winserver2012r2-ps/hyper-v/Get-VMSwitch.md b/docset/winserver2012r2-ps/hyper-v/Get-VMSwitch.md index 59fd215327..353da61927 100644 --- a/docset/winserver2012r2-ps/hyper-v/Get-VMSwitch.md +++ b/docset/winserver2012r2-ps/hyper-v/Get-VMSwitch.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmswitch?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmswitch?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMSwitch --- diff --git a/docset/winserver2012r2-ps/hyper-v/Get-VMSwitchExtension.md b/docset/winserver2012r2-ps/hyper-v/Get-VMSwitchExtension.md index 6e78afc4a9..7593cf25b3 100644 --- a/docset/winserver2012r2-ps/hyper-v/Get-VMSwitchExtension.md +++ b/docset/winserver2012r2-ps/hyper-v/Get-VMSwitchExtension.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmswitchextension?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmswitchextension?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMSwitchExtension --- diff --git a/docset/winserver2012r2-ps/hyper-v/Get-VMSwitchExtensionPortData.md b/docset/winserver2012r2-ps/hyper-v/Get-VMSwitchExtensionPortData.md index b68049c4b8..d507921806 100644 --- a/docset/winserver2012r2-ps/hyper-v/Get-VMSwitchExtensionPortData.md +++ b/docset/winserver2012r2-ps/hyper-v/Get-VMSwitchExtensionPortData.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmswitchextensionportdata?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmswitchextensionportdata?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMSwitchExtensionPortData --- diff --git a/docset/winserver2012r2-ps/hyper-v/Get-VMSwitchExtensionPortFeature.md b/docset/winserver2012r2-ps/hyper-v/Get-VMSwitchExtensionPortFeature.md index 708a94de4e..2191e03b0e 100644 --- a/docset/winserver2012r2-ps/hyper-v/Get-VMSwitchExtensionPortFeature.md +++ b/docset/winserver2012r2-ps/hyper-v/Get-VMSwitchExtensionPortFeature.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmswitchextensionportfeature?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmswitchextensionportfeature?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMSwitchExtensionPortFeature --- diff --git a/docset/winserver2012r2-ps/hyper-v/Get-VMSwitchExtensionSwitchData.md b/docset/winserver2012r2-ps/hyper-v/Get-VMSwitchExtensionSwitchData.md index 8fac6cd2de..d72a07e988 100644 --- a/docset/winserver2012r2-ps/hyper-v/Get-VMSwitchExtensionSwitchData.md +++ b/docset/winserver2012r2-ps/hyper-v/Get-VMSwitchExtensionSwitchData.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmswitchextensionswitchdata?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmswitchextensionswitchdata?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMSwitchExtensionSwitchData --- diff --git a/docset/winserver2012r2-ps/hyper-v/Get-VMSwitchExtensionSwitchFeature.md b/docset/winserver2012r2-ps/hyper-v/Get-VMSwitchExtensionSwitchFeature.md index 12a130a1b2..a302303b3c 100644 --- a/docset/winserver2012r2-ps/hyper-v/Get-VMSwitchExtensionSwitchFeature.md +++ b/docset/winserver2012r2-ps/hyper-v/Get-VMSwitchExtensionSwitchFeature.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmswitchextensionswitchfeature?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmswitchextensionswitchfeature?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMSwitchExtensionSwitchFeature --- diff --git a/docset/winserver2012r2-ps/hyper-v/Get-VMSystemSwitchExtension.md b/docset/winserver2012r2-ps/hyper-v/Get-VMSystemSwitchExtension.md index 75e8693f06..cf66a21e48 100644 --- a/docset/winserver2012r2-ps/hyper-v/Get-VMSystemSwitchExtension.md +++ b/docset/winserver2012r2-ps/hyper-v/Get-VMSystemSwitchExtension.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmsystemswitchextension?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmsystemswitchextension?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMSystemSwitchExtension --- diff --git a/docset/winserver2012r2-ps/hyper-v/Get-VMSystemSwitchExtensionPortFeature.md b/docset/winserver2012r2-ps/hyper-v/Get-VMSystemSwitchExtensionPortFeature.md index ead59617a7..602b79bb14 100644 --- a/docset/winserver2012r2-ps/hyper-v/Get-VMSystemSwitchExtensionPortFeature.md +++ b/docset/winserver2012r2-ps/hyper-v/Get-VMSystemSwitchExtensionPortFeature.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmsystemswitchextensionportfeature?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmsystemswitchextensionportfeature?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMSystemSwitchExtensionPortFeature --- diff --git a/docset/winserver2012r2-ps/hyper-v/Get-VMSystemSwitchExtensionSwitchFeature.md b/docset/winserver2012r2-ps/hyper-v/Get-VMSystemSwitchExtensionSwitchFeature.md index d260406902..26d1982f74 100644 --- a/docset/winserver2012r2-ps/hyper-v/Get-VMSystemSwitchExtensionSwitchFeature.md +++ b/docset/winserver2012r2-ps/hyper-v/Get-VMSystemSwitchExtensionSwitchFeature.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmsystemswitchextensionswitchfeature?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmsystemswitchextensionswitchfeature?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMSystemSwitchExtensionSwitchFeature --- diff --git a/docset/winserver2012r2-ps/hyper-v/Get-VmNetworkAdapterIsolation.md b/docset/winserver2012r2-ps/hyper-v/Get-VmNetworkAdapterIsolation.md index d7fcac4f8c..263b8ce17d 100644 --- a/docset/winserver2012r2-ps/hyper-v/Get-VmNetworkAdapterIsolation.md +++ b/docset/winserver2012r2-ps/hyper-v/Get-VmNetworkAdapterIsolation.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapterisolation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapterisolation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VmNetworkAdapterIsolation --- diff --git a/docset/winserver2012r2-ps/hyper-v/Grant-VMConnectAccess.md b/docset/winserver2012r2-ps/hyper-v/Grant-VMConnectAccess.md index 6cc252b0cc..9f5cc5e051 100644 --- a/docset/winserver2012r2-ps/hyper-v/Grant-VMConnectAccess.md +++ b/docset/winserver2012r2-ps/hyper-v/Grant-VMConnectAccess.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/grant-vmconnectaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/grant-vmconnectaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Grant-VMConnectAccess --- diff --git a/docset/winserver2012r2-ps/hyper-v/Import-VM.md b/docset/winserver2012r2-ps/hyper-v/Import-VM.md index ff1b372b46..62dfa55c4c 100644 --- a/docset/winserver2012r2-ps/hyper-v/Import-VM.md +++ b/docset/winserver2012r2-ps/hyper-v/Import-VM.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/import-vm?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/import-vm?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-VM --- diff --git a/docset/winserver2012r2-ps/hyper-v/Import-VMInitialReplication.md b/docset/winserver2012r2-ps/hyper-v/Import-VMInitialReplication.md index 0f0ed313d4..2041f670b7 100644 --- a/docset/winserver2012r2-ps/hyper-v/Import-VMInitialReplication.md +++ b/docset/winserver2012r2-ps/hyper-v/Import-VMInitialReplication.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/import-vminitialreplication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/import-vminitialreplication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-VMInitialReplication --- diff --git a/docset/winserver2012r2-ps/hyper-v/Measure-VM.md b/docset/winserver2012r2-ps/hyper-v/Measure-VM.md index 903b745aa7..ae7b6b0ad3 100644 --- a/docset/winserver2012r2-ps/hyper-v/Measure-VM.md +++ b/docset/winserver2012r2-ps/hyper-v/Measure-VM.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/measure-vm?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/measure-vm?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Measure-VM --- diff --git a/docset/winserver2012r2-ps/hyper-v/Measure-VMReplication.md b/docset/winserver2012r2-ps/hyper-v/Measure-VMReplication.md index 26c6af4524..61ba45a7d8 100644 --- a/docset/winserver2012r2-ps/hyper-v/Measure-VMReplication.md +++ b/docset/winserver2012r2-ps/hyper-v/Measure-VMReplication.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/measure-vmreplication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/measure-vmreplication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Measure-VMReplication --- diff --git a/docset/winserver2012r2-ps/hyper-v/Measure-VMResourcePool.md b/docset/winserver2012r2-ps/hyper-v/Measure-VMResourcePool.md index 5d063f1368..0a9a477014 100644 --- a/docset/winserver2012r2-ps/hyper-v/Measure-VMResourcePool.md +++ b/docset/winserver2012r2-ps/hyper-v/Measure-VMResourcePool.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/measure-vmresourcepool?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/measure-vmresourcepool?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Measure-VMResourcePool --- diff --git a/docset/winserver2012r2-ps/hyper-v/Merge-VHD.md b/docset/winserver2012r2-ps/hyper-v/Merge-VHD.md index 146221caae..6b04510a8a 100644 --- a/docset/winserver2012r2-ps/hyper-v/Merge-VHD.md +++ b/docset/winserver2012r2-ps/hyper-v/Merge-VHD.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/merge-vhd?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/merge-vhd?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Merge-VHD --- diff --git a/docset/winserver2012r2-ps/hyper-v/Mount-VHD.md b/docset/winserver2012r2-ps/hyper-v/Mount-VHD.md index 353adbbb2b..025af93993 100644 --- a/docset/winserver2012r2-ps/hyper-v/Mount-VHD.md +++ b/docset/winserver2012r2-ps/hyper-v/Mount-VHD.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/mount-vhd?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/mount-vhd?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Mount-VHD --- diff --git a/docset/winserver2012r2-ps/hyper-v/Move-VM.md b/docset/winserver2012r2-ps/hyper-v/Move-VM.md index 273592ba42..9f0b464198 100644 --- a/docset/winserver2012r2-ps/hyper-v/Move-VM.md +++ b/docset/winserver2012r2-ps/hyper-v/Move-VM.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/move-vm?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/move-vm?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-VM --- diff --git a/docset/winserver2012r2-ps/hyper-v/Move-VMStorage.md b/docset/winserver2012r2-ps/hyper-v/Move-VMStorage.md index 57f2befc39..396f85f50c 100644 --- a/docset/winserver2012r2-ps/hyper-v/Move-VMStorage.md +++ b/docset/winserver2012r2-ps/hyper-v/Move-VMStorage.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/move-vmstorage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/move-vmstorage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-VMStorage --- diff --git a/docset/winserver2012r2-ps/hyper-v/New-VFD.md b/docset/winserver2012r2-ps/hyper-v/New-VFD.md index 31cf49c93d..4f1f330180 100644 --- a/docset/winserver2012r2-ps/hyper-v/New-VFD.md +++ b/docset/winserver2012r2-ps/hyper-v/New-VFD.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/new-vfd?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/new-vfd?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VFD --- diff --git a/docset/winserver2012r2-ps/hyper-v/New-VHD.md b/docset/winserver2012r2-ps/hyper-v/New-VHD.md index 2553d89796..418139d121 100644 --- a/docset/winserver2012r2-ps/hyper-v/New-VHD.md +++ b/docset/winserver2012r2-ps/hyper-v/New-VHD.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/new-vhd?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/new-vhd?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VHD --- diff --git a/docset/winserver2012r2-ps/hyper-v/New-VM.md b/docset/winserver2012r2-ps/hyper-v/New-VM.md index 51186d3e7a..a4a8428342 100644 --- a/docset/winserver2012r2-ps/hyper-v/New-VM.md +++ b/docset/winserver2012r2-ps/hyper-v/New-VM.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/new-vm?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/new-vm?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VM --- diff --git a/docset/winserver2012r2-ps/hyper-v/New-VMReplicationAuthorizationEntry.md b/docset/winserver2012r2-ps/hyper-v/New-VMReplicationAuthorizationEntry.md index 1ce79146ed..e6b0cf0749 100644 --- a/docset/winserver2012r2-ps/hyper-v/New-VMReplicationAuthorizationEntry.md +++ b/docset/winserver2012r2-ps/hyper-v/New-VMReplicationAuthorizationEntry.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/new-vmreplicationauthorizationentry?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/new-vmreplicationauthorizationentry?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VMReplicationAuthorizationEntry --- diff --git a/docset/winserver2012r2-ps/hyper-v/New-VMResourcePool.md b/docset/winserver2012r2-ps/hyper-v/New-VMResourcePool.md index 28b60c7da6..664ba06149 100644 --- a/docset/winserver2012r2-ps/hyper-v/New-VMResourcePool.md +++ b/docset/winserver2012r2-ps/hyper-v/New-VMResourcePool.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/new-vmresourcepool?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/new-vmresourcepool?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VMResourcePool --- diff --git a/docset/winserver2012r2-ps/hyper-v/New-VMSan.md b/docset/winserver2012r2-ps/hyper-v/New-VMSan.md index a9975ff39f..27a0047de7 100644 --- a/docset/winserver2012r2-ps/hyper-v/New-VMSan.md +++ b/docset/winserver2012r2-ps/hyper-v/New-VMSan.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/new-vmsan?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/new-vmsan?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VMSan --- diff --git a/docset/winserver2012r2-ps/hyper-v/New-VMSwitch.md b/docset/winserver2012r2-ps/hyper-v/New-VMSwitch.md index 10066e7bf9..a5a0b1a255 100644 --- a/docset/winserver2012r2-ps/hyper-v/New-VMSwitch.md +++ b/docset/winserver2012r2-ps/hyper-v/New-VMSwitch.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/new-vmswitch?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/new-vmswitch?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VMSwitch --- diff --git a/docset/winserver2012r2-ps/hyper-v/Optimize-VHD.md b/docset/winserver2012r2-ps/hyper-v/Optimize-VHD.md index 34d329ca31..8e1c5912c8 100644 --- a/docset/winserver2012r2-ps/hyper-v/Optimize-VHD.md +++ b/docset/winserver2012r2-ps/hyper-v/Optimize-VHD.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/optimize-vhd?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/optimize-vhd?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Optimize-VHD --- diff --git a/docset/winserver2012r2-ps/hyper-v/Remove-VM.md b/docset/winserver2012r2-ps/hyper-v/Remove-VM.md index 08c1c9d3bd..b0660962ca 100644 --- a/docset/winserver2012r2-ps/hyper-v/Remove-VM.md +++ b/docset/winserver2012r2-ps/hyper-v/Remove-VM.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vm?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vm?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VM --- diff --git a/docset/winserver2012r2-ps/hyper-v/Remove-VMDvdDrive.md b/docset/winserver2012r2-ps/hyper-v/Remove-VMDvdDrive.md index b56ef930fd..0ca2081a08 100644 --- a/docset/winserver2012r2-ps/hyper-v/Remove-VMDvdDrive.md +++ b/docset/winserver2012r2-ps/hyper-v/Remove-VMDvdDrive.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmdvddrive?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmdvddrive?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMDvdDrive --- diff --git a/docset/winserver2012r2-ps/hyper-v/Remove-VMFibreChannelHba.md b/docset/winserver2012r2-ps/hyper-v/Remove-VMFibreChannelHba.md index 9a13feeff3..2b312da471 100644 --- a/docset/winserver2012r2-ps/hyper-v/Remove-VMFibreChannelHba.md +++ b/docset/winserver2012r2-ps/hyper-v/Remove-VMFibreChannelHba.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmfibrechannelhba?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmfibrechannelhba?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMFibreChannelHba --- diff --git a/docset/winserver2012r2-ps/hyper-v/Remove-VMHardDiskDrive.md b/docset/winserver2012r2-ps/hyper-v/Remove-VMHardDiskDrive.md index 961ebe3701..96899335f7 100644 --- a/docset/winserver2012r2-ps/hyper-v/Remove-VMHardDiskDrive.md +++ b/docset/winserver2012r2-ps/hyper-v/Remove-VMHardDiskDrive.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmharddiskdrive?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmharddiskdrive?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMHardDiskDrive --- diff --git a/docset/winserver2012r2-ps/hyper-v/Remove-VMMigrationNetwork.md b/docset/winserver2012r2-ps/hyper-v/Remove-VMMigrationNetwork.md index 1eb3c3d467..fd58356967 100644 --- a/docset/winserver2012r2-ps/hyper-v/Remove-VMMigrationNetwork.md +++ b/docset/winserver2012r2-ps/hyper-v/Remove-VMMigrationNetwork.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmmigrationnetwork?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmmigrationnetwork?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMMigrationNetwork --- diff --git a/docset/winserver2012r2-ps/hyper-v/Remove-VMNetworkAdapter.md b/docset/winserver2012r2-ps/hyper-v/Remove-VMNetworkAdapter.md index a1f141ca83..ecdb396ac3 100644 --- a/docset/winserver2012r2-ps/hyper-v/Remove-VMNetworkAdapter.md +++ b/docset/winserver2012r2-ps/hyper-v/Remove-VMNetworkAdapter.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmnetworkadapter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmnetworkadapter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMNetworkAdapter --- diff --git a/docset/winserver2012r2-ps/hyper-v/Remove-VMNetworkAdapterAcl.md b/docset/winserver2012r2-ps/hyper-v/Remove-VMNetworkAdapterAcl.md index 427d4c4584..2a1a2e9a0c 100644 --- a/docset/winserver2012r2-ps/hyper-v/Remove-VMNetworkAdapterAcl.md +++ b/docset/winserver2012r2-ps/hyper-v/Remove-VMNetworkAdapterAcl.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmnetworkadapteracl?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmnetworkadapteracl?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMNetworkAdapterAcl --- diff --git a/docset/winserver2012r2-ps/hyper-v/Remove-VMNetworkAdapterExtendedAcl.md b/docset/winserver2012r2-ps/hyper-v/Remove-VMNetworkAdapterExtendedAcl.md index bbd08a3a16..9efee9c394 100644 --- a/docset/winserver2012r2-ps/hyper-v/Remove-VMNetworkAdapterExtendedAcl.md +++ b/docset/winserver2012r2-ps/hyper-v/Remove-VMNetworkAdapterExtendedAcl.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmnetworkadapterextendedacl?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmnetworkadapterextendedacl?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMNetworkAdapterExtendedAcl --- diff --git a/docset/winserver2012r2-ps/hyper-v/Remove-VMNetworkAdapterRoutingDomainMapping.md b/docset/winserver2012r2-ps/hyper-v/Remove-VMNetworkAdapterRoutingDomainMapping.md index a4ea728e3c..be7b5a1b35 100644 --- a/docset/winserver2012r2-ps/hyper-v/Remove-VMNetworkAdapterRoutingDomainMapping.md +++ b/docset/winserver2012r2-ps/hyper-v/Remove-VMNetworkAdapterRoutingDomainMapping.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmnetworkadapterroutingdomainmapping?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmnetworkadapterroutingdomainmapping?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMNetworkAdapterRoutingDomainMapping --- diff --git a/docset/winserver2012r2-ps/hyper-v/Remove-VMRemoteFx3dVideoAdapter.md b/docset/winserver2012r2-ps/hyper-v/Remove-VMRemoteFx3dVideoAdapter.md index 7517486891..33eb25c337 100644 --- a/docset/winserver2012r2-ps/hyper-v/Remove-VMRemoteFx3dVideoAdapter.md +++ b/docset/winserver2012r2-ps/hyper-v/Remove-VMRemoteFx3dVideoAdapter.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmremotefx3dvideoadapter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmremotefx3dvideoadapter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMRemoteFx3dVideoAdapter --- diff --git a/docset/winserver2012r2-ps/hyper-v/Remove-VMReplication.md b/docset/winserver2012r2-ps/hyper-v/Remove-VMReplication.md index 633c6b3ac2..1d84dcbeaa 100644 --- a/docset/winserver2012r2-ps/hyper-v/Remove-VMReplication.md +++ b/docset/winserver2012r2-ps/hyper-v/Remove-VMReplication.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmreplication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmreplication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMReplication --- diff --git a/docset/winserver2012r2-ps/hyper-v/Remove-VMReplicationAuthorizationEntry.md b/docset/winserver2012r2-ps/hyper-v/Remove-VMReplicationAuthorizationEntry.md index bd8fecaa23..87722350b0 100644 --- a/docset/winserver2012r2-ps/hyper-v/Remove-VMReplicationAuthorizationEntry.md +++ b/docset/winserver2012r2-ps/hyper-v/Remove-VMReplicationAuthorizationEntry.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmreplicationauthorizationentry?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmreplicationauthorizationentry?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMReplicationAuthorizationEntry --- diff --git a/docset/winserver2012r2-ps/hyper-v/Remove-VMResourcePool.md b/docset/winserver2012r2-ps/hyper-v/Remove-VMResourcePool.md index 19f51f6aae..2c56088790 100644 --- a/docset/winserver2012r2-ps/hyper-v/Remove-VMResourcePool.md +++ b/docset/winserver2012r2-ps/hyper-v/Remove-VMResourcePool.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmresourcepool?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmresourcepool?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMResourcePool --- diff --git a/docset/winserver2012r2-ps/hyper-v/Remove-VMSan.md b/docset/winserver2012r2-ps/hyper-v/Remove-VMSan.md index 71fbd1bbdc..5dbaad8968 100644 --- a/docset/winserver2012r2-ps/hyper-v/Remove-VMSan.md +++ b/docset/winserver2012r2-ps/hyper-v/Remove-VMSan.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmsan?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmsan?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMSan --- diff --git a/docset/winserver2012r2-ps/hyper-v/Remove-VMSavedState.md b/docset/winserver2012r2-ps/hyper-v/Remove-VMSavedState.md index 153c7c632a..a554d622b2 100644 --- a/docset/winserver2012r2-ps/hyper-v/Remove-VMSavedState.md +++ b/docset/winserver2012r2-ps/hyper-v/Remove-VMSavedState.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmsavedstate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmsavedstate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMSavedState --- diff --git a/docset/winserver2012r2-ps/hyper-v/Remove-VMScsiController.md b/docset/winserver2012r2-ps/hyper-v/Remove-VMScsiController.md index 676e279c36..9fb2b2af29 100644 --- a/docset/winserver2012r2-ps/hyper-v/Remove-VMScsiController.md +++ b/docset/winserver2012r2-ps/hyper-v/Remove-VMScsiController.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmscsicontroller?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmscsicontroller?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMScsiController --- diff --git a/docset/winserver2012r2-ps/hyper-v/Remove-VMSnapshot.md b/docset/winserver2012r2-ps/hyper-v/Remove-VMSnapshot.md index 3fb55332fd..81f517b956 100644 --- a/docset/winserver2012r2-ps/hyper-v/Remove-VMSnapshot.md +++ b/docset/winserver2012r2-ps/hyper-v/Remove-VMSnapshot.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmsnapshot?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmsnapshot?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMSnapshot --- diff --git a/docset/winserver2012r2-ps/hyper-v/Remove-VMStoragePath.md b/docset/winserver2012r2-ps/hyper-v/Remove-VMStoragePath.md index f3d791a5c4..18a25ef5f6 100644 --- a/docset/winserver2012r2-ps/hyper-v/Remove-VMStoragePath.md +++ b/docset/winserver2012r2-ps/hyper-v/Remove-VMStoragePath.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmstoragepath?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmstoragepath?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMStoragePath --- diff --git a/docset/winserver2012r2-ps/hyper-v/Remove-VMSwitch.md b/docset/winserver2012r2-ps/hyper-v/Remove-VMSwitch.md index 8a1c8b52ef..6150ace7af 100644 --- a/docset/winserver2012r2-ps/hyper-v/Remove-VMSwitch.md +++ b/docset/winserver2012r2-ps/hyper-v/Remove-VMSwitch.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmswitch?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmswitch?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMSwitch --- diff --git a/docset/winserver2012r2-ps/hyper-v/Remove-VMSwitchExtensionPortFeature.md b/docset/winserver2012r2-ps/hyper-v/Remove-VMSwitchExtensionPortFeature.md index 116c9d67d9..084e231d0e 100644 --- a/docset/winserver2012r2-ps/hyper-v/Remove-VMSwitchExtensionPortFeature.md +++ b/docset/winserver2012r2-ps/hyper-v/Remove-VMSwitchExtensionPortFeature.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmswitchextensionportfeature?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmswitchextensionportfeature?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMSwitchExtensionPortFeature --- diff --git a/docset/winserver2012r2-ps/hyper-v/Remove-VMSwitchExtensionSwitchFeature.md b/docset/winserver2012r2-ps/hyper-v/Remove-VMSwitchExtensionSwitchFeature.md index 577a8d3dde..e24fb45510 100644 --- a/docset/winserver2012r2-ps/hyper-v/Remove-VMSwitchExtensionSwitchFeature.md +++ b/docset/winserver2012r2-ps/hyper-v/Remove-VMSwitchExtensionSwitchFeature.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmswitchextensionswitchfeature?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmswitchextensionswitchfeature?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMSwitchExtensionSwitchFeature --- diff --git a/docset/winserver2012r2-ps/hyper-v/Rename-VM.md b/docset/winserver2012r2-ps/hyper-v/Rename-VM.md index c30a6c31b6..aafa682c70 100644 --- a/docset/winserver2012r2-ps/hyper-v/Rename-VM.md +++ b/docset/winserver2012r2-ps/hyper-v/Rename-VM.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/rename-vm?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/rename-vm?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-VM --- diff --git a/docset/winserver2012r2-ps/hyper-v/Rename-VMNetworkAdapter.md b/docset/winserver2012r2-ps/hyper-v/Rename-VMNetworkAdapter.md index 7b82b071b6..479aa21193 100644 --- a/docset/winserver2012r2-ps/hyper-v/Rename-VMNetworkAdapter.md +++ b/docset/winserver2012r2-ps/hyper-v/Rename-VMNetworkAdapter.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/rename-vmnetworkadapter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/rename-vmnetworkadapter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-VMNetworkAdapter --- diff --git a/docset/winserver2012r2-ps/hyper-v/Rename-VMResourcePool.md b/docset/winserver2012r2-ps/hyper-v/Rename-VMResourcePool.md index 38ac87e7fa..8d3100fa13 100644 --- a/docset/winserver2012r2-ps/hyper-v/Rename-VMResourcePool.md +++ b/docset/winserver2012r2-ps/hyper-v/Rename-VMResourcePool.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/rename-vmresourcepool?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/rename-vmresourcepool?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-VMResourcePool --- diff --git a/docset/winserver2012r2-ps/hyper-v/Rename-VMSan.md b/docset/winserver2012r2-ps/hyper-v/Rename-VMSan.md index 653ea0cdfb..4573d3fafd 100644 --- a/docset/winserver2012r2-ps/hyper-v/Rename-VMSan.md +++ b/docset/winserver2012r2-ps/hyper-v/Rename-VMSan.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/rename-vmsan?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/rename-vmsan?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-VMSan --- diff --git a/docset/winserver2012r2-ps/hyper-v/Rename-VMSnapshot.md b/docset/winserver2012r2-ps/hyper-v/Rename-VMSnapshot.md index 055df3e3fe..99aa532d61 100644 --- a/docset/winserver2012r2-ps/hyper-v/Rename-VMSnapshot.md +++ b/docset/winserver2012r2-ps/hyper-v/Rename-VMSnapshot.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/rename-vmsnapshot?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/rename-vmsnapshot?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-VMSnapshot --- diff --git a/docset/winserver2012r2-ps/hyper-v/Rename-VMSwitch.md b/docset/winserver2012r2-ps/hyper-v/Rename-VMSwitch.md index eed27c73b0..4af3d0d81c 100644 --- a/docset/winserver2012r2-ps/hyper-v/Rename-VMSwitch.md +++ b/docset/winserver2012r2-ps/hyper-v/Rename-VMSwitch.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/rename-vmswitch?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/rename-vmswitch?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-VMSwitch --- diff --git a/docset/winserver2012r2-ps/hyper-v/Repair-VM.md b/docset/winserver2012r2-ps/hyper-v/Repair-VM.md index 2b30c5bf85..00524d6786 100644 --- a/docset/winserver2012r2-ps/hyper-v/Repair-VM.md +++ b/docset/winserver2012r2-ps/hyper-v/Repair-VM.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/repair-vm?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/repair-vm?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Repair-VM --- diff --git a/docset/winserver2012r2-ps/hyper-v/Reset-VMReplicationStatistics.md b/docset/winserver2012r2-ps/hyper-v/Reset-VMReplicationStatistics.md index 1a71be5742..f32901a071 100644 --- a/docset/winserver2012r2-ps/hyper-v/Reset-VMReplicationStatistics.md +++ b/docset/winserver2012r2-ps/hyper-v/Reset-VMReplicationStatistics.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/reset-vmreplicationstatistics?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/reset-vmreplicationstatistics?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-VMReplicationStatistics --- diff --git a/docset/winserver2012r2-ps/hyper-v/Reset-VMResourceMetering.md b/docset/winserver2012r2-ps/hyper-v/Reset-VMResourceMetering.md index d8b02abe54..86cf7ddc7a 100644 --- a/docset/winserver2012r2-ps/hyper-v/Reset-VMResourceMetering.md +++ b/docset/winserver2012r2-ps/hyper-v/Reset-VMResourceMetering.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/reset-vmresourcemetering?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/reset-vmresourcemetering?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-VMResourceMetering --- diff --git a/docset/winserver2012r2-ps/hyper-v/Resize-VHD.md b/docset/winserver2012r2-ps/hyper-v/Resize-VHD.md index 91c1e8f291..76791e96b7 100644 --- a/docset/winserver2012r2-ps/hyper-v/Resize-VHD.md +++ b/docset/winserver2012r2-ps/hyper-v/Resize-VHD.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/resize-vhd?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/resize-vhd?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resize-VHD --- diff --git a/docset/winserver2012r2-ps/hyper-v/Restart-VM.md b/docset/winserver2012r2-ps/hyper-v/Restart-VM.md index 3c440e034f..bee850e0ff 100644 --- a/docset/winserver2012r2-ps/hyper-v/Restart-VM.md +++ b/docset/winserver2012r2-ps/hyper-v/Restart-VM.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/restart-vm?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/restart-vm?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restart-VM --- diff --git a/docset/winserver2012r2-ps/hyper-v/Restore-VMSnapshot.md b/docset/winserver2012r2-ps/hyper-v/Restore-VMSnapshot.md index c1948241a9..2c7cb709a3 100644 --- a/docset/winserver2012r2-ps/hyper-v/Restore-VMSnapshot.md +++ b/docset/winserver2012r2-ps/hyper-v/Restore-VMSnapshot.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/restore-vmsnapshot?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/restore-vmsnapshot?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-VMSnapshot --- diff --git a/docset/winserver2012r2-ps/hyper-v/Resume-VM.md b/docset/winserver2012r2-ps/hyper-v/Resume-VM.md index f4f8ea65a4..20f10afbde 100644 --- a/docset/winserver2012r2-ps/hyper-v/Resume-VM.md +++ b/docset/winserver2012r2-ps/hyper-v/Resume-VM.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/resume-vm?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/resume-vm?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-VM --- diff --git a/docset/winserver2012r2-ps/hyper-v/Resume-VMReplication.md b/docset/winserver2012r2-ps/hyper-v/Resume-VMReplication.md index e0ca4c11ce..b2e125df50 100644 --- a/docset/winserver2012r2-ps/hyper-v/Resume-VMReplication.md +++ b/docset/winserver2012r2-ps/hyper-v/Resume-VMReplication.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/resume-vmreplication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/resume-vmreplication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-VMReplication --- diff --git a/docset/winserver2012r2-ps/hyper-v/Revoke-VMConnectAccess.md b/docset/winserver2012r2-ps/hyper-v/Revoke-VMConnectAccess.md index fefcfed262..36c09f1019 100644 --- a/docset/winserver2012r2-ps/hyper-v/Revoke-VMConnectAccess.md +++ b/docset/winserver2012r2-ps/hyper-v/Revoke-VMConnectAccess.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/revoke-vmconnectaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/revoke-vmconnectaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Revoke-VMConnectAccess --- diff --git a/docset/winserver2012r2-ps/hyper-v/Save-VM.md b/docset/winserver2012r2-ps/hyper-v/Save-VM.md index 29bad64392..bd07d8b43f 100644 --- a/docset/winserver2012r2-ps/hyper-v/Save-VM.md +++ b/docset/winserver2012r2-ps/hyper-v/Save-VM.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/save-vm?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/save-vm?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Save-VM --- diff --git a/docset/winserver2012r2-ps/hyper-v/Set-VHD.md b/docset/winserver2012r2-ps/hyper-v/Set-VHD.md index a9dcaf00a5..c0d61601d1 100644 --- a/docset/winserver2012r2-ps/hyper-v/Set-VHD.md +++ b/docset/winserver2012r2-ps/hyper-v/Set-VHD.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vhd?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vhd?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VHD --- diff --git a/docset/winserver2012r2-ps/hyper-v/Set-VM.md b/docset/winserver2012r2-ps/hyper-v/Set-VM.md index e0e709d3ee..87afcef658 100644 --- a/docset/winserver2012r2-ps/hyper-v/Set-VM.md +++ b/docset/winserver2012r2-ps/hyper-v/Set-VM.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vm?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vm?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VM --- diff --git a/docset/winserver2012r2-ps/hyper-v/Set-VMBios.md b/docset/winserver2012r2-ps/hyper-v/Set-VMBios.md index 70878543ba..92d569c24b 100644 --- a/docset/winserver2012r2-ps/hyper-v/Set-VMBios.md +++ b/docset/winserver2012r2-ps/hyper-v/Set-VMBios.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmbios?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmbios?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMBios --- diff --git a/docset/winserver2012r2-ps/hyper-v/Set-VMComPort.md b/docset/winserver2012r2-ps/hyper-v/Set-VMComPort.md index 0452e24a7f..168e8ed0ec 100644 --- a/docset/winserver2012r2-ps/hyper-v/Set-VMComPort.md +++ b/docset/winserver2012r2-ps/hyper-v/Set-VMComPort.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmcomport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmcomport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMComPort --- diff --git a/docset/winserver2012r2-ps/hyper-v/Set-VMDvdDrive.md b/docset/winserver2012r2-ps/hyper-v/Set-VMDvdDrive.md index 9ee505c074..691d15adbc 100644 --- a/docset/winserver2012r2-ps/hyper-v/Set-VMDvdDrive.md +++ b/docset/winserver2012r2-ps/hyper-v/Set-VMDvdDrive.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmdvddrive?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmdvddrive?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMDvdDrive --- diff --git a/docset/winserver2012r2-ps/hyper-v/Set-VMFibreChannelHba.md b/docset/winserver2012r2-ps/hyper-v/Set-VMFibreChannelHba.md index bd15748ba0..8482a2429b 100644 --- a/docset/winserver2012r2-ps/hyper-v/Set-VMFibreChannelHba.md +++ b/docset/winserver2012r2-ps/hyper-v/Set-VMFibreChannelHba.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmfibrechannelhba?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmfibrechannelhba?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMFibreChannelHba --- diff --git a/docset/winserver2012r2-ps/hyper-v/Set-VMFirmware.md b/docset/winserver2012r2-ps/hyper-v/Set-VMFirmware.md index 35cb3878a8..8cae186ad8 100644 --- a/docset/winserver2012r2-ps/hyper-v/Set-VMFirmware.md +++ b/docset/winserver2012r2-ps/hyper-v/Set-VMFirmware.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmfirmware?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmfirmware?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMFirmware --- diff --git a/docset/winserver2012r2-ps/hyper-v/Set-VMFloppyDiskDrive.md b/docset/winserver2012r2-ps/hyper-v/Set-VMFloppyDiskDrive.md index da9c39b51a..e95029a4c0 100644 --- a/docset/winserver2012r2-ps/hyper-v/Set-VMFloppyDiskDrive.md +++ b/docset/winserver2012r2-ps/hyper-v/Set-VMFloppyDiskDrive.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmfloppydiskdrive?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmfloppydiskdrive?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMFloppyDiskDrive --- diff --git a/docset/winserver2012r2-ps/hyper-v/Set-VMHardDiskDrive.md b/docset/winserver2012r2-ps/hyper-v/Set-VMHardDiskDrive.md index 5bb5f461a5..b6ce2b07ba 100644 --- a/docset/winserver2012r2-ps/hyper-v/Set-VMHardDiskDrive.md +++ b/docset/winserver2012r2-ps/hyper-v/Set-VMHardDiskDrive.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmharddiskdrive?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmharddiskdrive?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMHardDiskDrive --- diff --git a/docset/winserver2012r2-ps/hyper-v/Set-VMHost.md b/docset/winserver2012r2-ps/hyper-v/Set-VMHost.md index 11013c6870..507b550ac4 100644 --- a/docset/winserver2012r2-ps/hyper-v/Set-VMHost.md +++ b/docset/winserver2012r2-ps/hyper-v/Set-VMHost.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmhost?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmhost?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMHost --- diff --git a/docset/winserver2012r2-ps/hyper-v/Set-VMMemory.md b/docset/winserver2012r2-ps/hyper-v/Set-VMMemory.md index d18868cca5..ca8e061d4d 100644 --- a/docset/winserver2012r2-ps/hyper-v/Set-VMMemory.md +++ b/docset/winserver2012r2-ps/hyper-v/Set-VMMemory.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmmemory?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmmemory?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMMemory --- diff --git a/docset/winserver2012r2-ps/hyper-v/Set-VMMigrationNetwork.md b/docset/winserver2012r2-ps/hyper-v/Set-VMMigrationNetwork.md index decb088dd4..f335304cc5 100644 --- a/docset/winserver2012r2-ps/hyper-v/Set-VMMigrationNetwork.md +++ b/docset/winserver2012r2-ps/hyper-v/Set-VMMigrationNetwork.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmmigrationnetwork?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmmigrationnetwork?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMMigrationNetwork --- diff --git a/docset/winserver2012r2-ps/hyper-v/Set-VMNetworkAdapter.md b/docset/winserver2012r2-ps/hyper-v/Set-VMNetworkAdapter.md index 88dc5920c9..63fc10fd51 100644 --- a/docset/winserver2012r2-ps/hyper-v/Set-VMNetworkAdapter.md +++ b/docset/winserver2012r2-ps/hyper-v/Set-VMNetworkAdapter.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmnetworkadapter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmnetworkadapter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMNetworkAdapter --- diff --git a/docset/winserver2012r2-ps/hyper-v/Set-VMNetworkAdapterFailoverConfiguration.md b/docset/winserver2012r2-ps/hyper-v/Set-VMNetworkAdapterFailoverConfiguration.md index a3c9512e03..7505f26d46 100644 --- a/docset/winserver2012r2-ps/hyper-v/Set-VMNetworkAdapterFailoverConfiguration.md +++ b/docset/winserver2012r2-ps/hyper-v/Set-VMNetworkAdapterFailoverConfiguration.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmnetworkadapterfailoverconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmnetworkadapterfailoverconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMNetworkAdapterFailoverConfiguration --- diff --git a/docset/winserver2012r2-ps/hyper-v/Set-VMNetworkAdapterVlan.md b/docset/winserver2012r2-ps/hyper-v/Set-VMNetworkAdapterVlan.md index d2a4550ea0..cd328b2d98 100644 --- a/docset/winserver2012r2-ps/hyper-v/Set-VMNetworkAdapterVlan.md +++ b/docset/winserver2012r2-ps/hyper-v/Set-VMNetworkAdapterVlan.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmnetworkadaptervlan?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmnetworkadaptervlan?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMNetworkAdapterVlan --- diff --git a/docset/winserver2012r2-ps/hyper-v/Set-VMProcessor.md b/docset/winserver2012r2-ps/hyper-v/Set-VMProcessor.md index 74714db80a..8f0c0a73ab 100644 --- a/docset/winserver2012r2-ps/hyper-v/Set-VMProcessor.md +++ b/docset/winserver2012r2-ps/hyper-v/Set-VMProcessor.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmprocessor?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmprocessor?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMProcessor --- diff --git a/docset/winserver2012r2-ps/hyper-v/Set-VMRemoteFx3dVideoAdapter.md b/docset/winserver2012r2-ps/hyper-v/Set-VMRemoteFx3dVideoAdapter.md index 4b2d95641a..7c904b9502 100644 --- a/docset/winserver2012r2-ps/hyper-v/Set-VMRemoteFx3dVideoAdapter.md +++ b/docset/winserver2012r2-ps/hyper-v/Set-VMRemoteFx3dVideoAdapter.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmremotefx3dvideoadapter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmremotefx3dvideoadapter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMRemoteFx3dVideoAdapter --- diff --git a/docset/winserver2012r2-ps/hyper-v/Set-VMReplication.md b/docset/winserver2012r2-ps/hyper-v/Set-VMReplication.md index 79b21e804f..13ee150cbb 100644 --- a/docset/winserver2012r2-ps/hyper-v/Set-VMReplication.md +++ b/docset/winserver2012r2-ps/hyper-v/Set-VMReplication.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmreplication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmreplication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMReplication --- diff --git a/docset/winserver2012r2-ps/hyper-v/Set-VMReplicationAuthorizationEntry.md b/docset/winserver2012r2-ps/hyper-v/Set-VMReplicationAuthorizationEntry.md index fd814fac10..20e9ad70a3 100644 --- a/docset/winserver2012r2-ps/hyper-v/Set-VMReplicationAuthorizationEntry.md +++ b/docset/winserver2012r2-ps/hyper-v/Set-VMReplicationAuthorizationEntry.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmreplicationauthorizationentry?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmreplicationauthorizationentry?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMReplicationAuthorizationEntry --- diff --git a/docset/winserver2012r2-ps/hyper-v/Set-VMReplicationServer.md b/docset/winserver2012r2-ps/hyper-v/Set-VMReplicationServer.md index f59298165e..0451fd8fa2 100644 --- a/docset/winserver2012r2-ps/hyper-v/Set-VMReplicationServer.md +++ b/docset/winserver2012r2-ps/hyper-v/Set-VMReplicationServer.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmreplicationserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmreplicationserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMReplicationServer --- diff --git a/docset/winserver2012r2-ps/hyper-v/Set-VMResourcePool.md b/docset/winserver2012r2-ps/hyper-v/Set-VMResourcePool.md index 2825b51221..cf93aae561 100644 --- a/docset/winserver2012r2-ps/hyper-v/Set-VMResourcePool.md +++ b/docset/winserver2012r2-ps/hyper-v/Set-VMResourcePool.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmresourcepool?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmresourcepool?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMResourcePool --- diff --git a/docset/winserver2012r2-ps/hyper-v/Set-VMSan.md b/docset/winserver2012r2-ps/hyper-v/Set-VMSan.md index b040184652..74b9c7bddb 100644 --- a/docset/winserver2012r2-ps/hyper-v/Set-VMSan.md +++ b/docset/winserver2012r2-ps/hyper-v/Set-VMSan.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmsan?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmsan?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMSan --- diff --git a/docset/winserver2012r2-ps/hyper-v/Set-VMSwitch.md b/docset/winserver2012r2-ps/hyper-v/Set-VMSwitch.md index 849725014f..64d5f512ba 100644 --- a/docset/winserver2012r2-ps/hyper-v/Set-VMSwitch.md +++ b/docset/winserver2012r2-ps/hyper-v/Set-VMSwitch.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmswitch?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmswitch?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMSwitch --- diff --git a/docset/winserver2012r2-ps/hyper-v/Set-VMSwitchExtensionPortFeature.md b/docset/winserver2012r2-ps/hyper-v/Set-VMSwitchExtensionPortFeature.md index 0c74e9a3e7..788835560a 100644 --- a/docset/winserver2012r2-ps/hyper-v/Set-VMSwitchExtensionPortFeature.md +++ b/docset/winserver2012r2-ps/hyper-v/Set-VMSwitchExtensionPortFeature.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmswitchextensionportfeature?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmswitchextensionportfeature?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMSwitchExtensionPortFeature --- diff --git a/docset/winserver2012r2-ps/hyper-v/Set-VMSwitchExtensionSwitchFeature.md b/docset/winserver2012r2-ps/hyper-v/Set-VMSwitchExtensionSwitchFeature.md index 2bf0487373..5622d8b725 100644 --- a/docset/winserver2012r2-ps/hyper-v/Set-VMSwitchExtensionSwitchFeature.md +++ b/docset/winserver2012r2-ps/hyper-v/Set-VMSwitchExtensionSwitchFeature.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmswitchextensionswitchfeature?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmswitchextensionswitchfeature?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMSwitchExtensionSwitchFeature --- diff --git a/docset/winserver2012r2-ps/hyper-v/Set-VmNetworkAdapterIsolation.md b/docset/winserver2012r2-ps/hyper-v/Set-VmNetworkAdapterIsolation.md index 6bd8938180..e8a9241e7d 100644 --- a/docset/winserver2012r2-ps/hyper-v/Set-VmNetworkAdapterIsolation.md +++ b/docset/winserver2012r2-ps/hyper-v/Set-VmNetworkAdapterIsolation.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmnetworkadapterisolation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmnetworkadapterisolation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VmNetworkAdapterIsolation --- diff --git a/docset/winserver2012r2-ps/hyper-v/Set-VmNetworkAdapterRoutingDomainMapping.md b/docset/winserver2012r2-ps/hyper-v/Set-VmNetworkAdapterRoutingDomainMapping.md index 56f32c837e..ae0e63f609 100644 --- a/docset/winserver2012r2-ps/hyper-v/Set-VmNetworkAdapterRoutingDomainMapping.md +++ b/docset/winserver2012r2-ps/hyper-v/Set-VmNetworkAdapterRoutingDomainMapping.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmnetworkadapterroutingdomainmapping?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmnetworkadapterroutingdomainmapping?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VmNetworkAdapterRoutingDomainMapping --- diff --git a/docset/winserver2012r2-ps/hyper-v/Start-VM.md b/docset/winserver2012r2-ps/hyper-v/Start-VM.md index 79e2c7ff52..509ffcd1bd 100644 --- a/docset/winserver2012r2-ps/hyper-v/Start-VM.md +++ b/docset/winserver2012r2-ps/hyper-v/Start-VM.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/start-vm?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/start-vm?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-VM --- diff --git a/docset/winserver2012r2-ps/hyper-v/Start-VMFailover.md b/docset/winserver2012r2-ps/hyper-v/Start-VMFailover.md index 1e1b23939a..9bb7a16dbf 100644 --- a/docset/winserver2012r2-ps/hyper-v/Start-VMFailover.md +++ b/docset/winserver2012r2-ps/hyper-v/Start-VMFailover.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/start-vmfailover?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/start-vmfailover?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-VMFailover --- diff --git a/docset/winserver2012r2-ps/hyper-v/Start-VMInitialReplication.md b/docset/winserver2012r2-ps/hyper-v/Start-VMInitialReplication.md index bb850dc529..f747a8ee24 100644 --- a/docset/winserver2012r2-ps/hyper-v/Start-VMInitialReplication.md +++ b/docset/winserver2012r2-ps/hyper-v/Start-VMInitialReplication.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/start-vminitialreplication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/start-vminitialreplication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-VMInitialReplication --- diff --git a/docset/winserver2012r2-ps/hyper-v/Stop-VM.md b/docset/winserver2012r2-ps/hyper-v/Stop-VM.md index 25123ff946..a0a47f5a61 100644 --- a/docset/winserver2012r2-ps/hyper-v/Stop-VM.md +++ b/docset/winserver2012r2-ps/hyper-v/Stop-VM.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/stop-vm?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/stop-vm?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-VM --- diff --git a/docset/winserver2012r2-ps/hyper-v/Stop-VMFailover.md b/docset/winserver2012r2-ps/hyper-v/Stop-VMFailover.md index f0bb0b5f27..8468eed0f6 100644 --- a/docset/winserver2012r2-ps/hyper-v/Stop-VMFailover.md +++ b/docset/winserver2012r2-ps/hyper-v/Stop-VMFailover.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/stop-vmfailover?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/stop-vmfailover?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-VMFailover --- diff --git a/docset/winserver2012r2-ps/hyper-v/Stop-VMInitialReplication.md b/docset/winserver2012r2-ps/hyper-v/Stop-VMInitialReplication.md index d800f487d4..1f58a05664 100644 --- a/docset/winserver2012r2-ps/hyper-v/Stop-VMInitialReplication.md +++ b/docset/winserver2012r2-ps/hyper-v/Stop-VMInitialReplication.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/stop-vminitialreplication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/stop-vminitialreplication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-VMInitialReplication --- diff --git a/docset/winserver2012r2-ps/hyper-v/Stop-VMReplication.md b/docset/winserver2012r2-ps/hyper-v/Stop-VMReplication.md index 39f2ddef90..05bc3ee451 100644 --- a/docset/winserver2012r2-ps/hyper-v/Stop-VMReplication.md +++ b/docset/winserver2012r2-ps/hyper-v/Stop-VMReplication.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/stop-vmreplication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/stop-vmreplication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-VMReplication --- diff --git a/docset/winserver2012r2-ps/hyper-v/Suspend-VM.md b/docset/winserver2012r2-ps/hyper-v/Suspend-VM.md index e459f8c0ad..b648a1f670 100644 --- a/docset/winserver2012r2-ps/hyper-v/Suspend-VM.md +++ b/docset/winserver2012r2-ps/hyper-v/Suspend-VM.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/suspend-vm?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/suspend-vm?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-VM --- diff --git a/docset/winserver2012r2-ps/hyper-v/Suspend-VMReplication.md b/docset/winserver2012r2-ps/hyper-v/Suspend-VMReplication.md index c0d4398ff7..be6d2c24c4 100644 --- a/docset/winserver2012r2-ps/hyper-v/Suspend-VMReplication.md +++ b/docset/winserver2012r2-ps/hyper-v/Suspend-VMReplication.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/suspend-vmreplication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/suspend-vmreplication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-VMReplication --- diff --git a/docset/winserver2012r2-ps/hyper-v/Test-VHD.md b/docset/winserver2012r2-ps/hyper-v/Test-VHD.md index ff5e81261f..327b258ddf 100644 --- a/docset/winserver2012r2-ps/hyper-v/Test-VHD.md +++ b/docset/winserver2012r2-ps/hyper-v/Test-VHD.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/test-vhd?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/test-vhd?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-VHD --- diff --git a/docset/winserver2012r2-ps/hyper-v/Test-VMNetworkAdapter.md b/docset/winserver2012r2-ps/hyper-v/Test-VMNetworkAdapter.md index b7ac335b16..8053404d13 100644 --- a/docset/winserver2012r2-ps/hyper-v/Test-VMNetworkAdapter.md +++ b/docset/winserver2012r2-ps/hyper-v/Test-VMNetworkAdapter.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/test-vmnetworkadapter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/test-vmnetworkadapter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-VMNetworkAdapter --- diff --git a/docset/winserver2012r2-ps/hyper-v/Test-VMReplicationConnection.md b/docset/winserver2012r2-ps/hyper-v/Test-VMReplicationConnection.md index 8fb363a788..06e6e80e5a 100644 --- a/docset/winserver2012r2-ps/hyper-v/Test-VMReplicationConnection.md +++ b/docset/winserver2012r2-ps/hyper-v/Test-VMReplicationConnection.md @@ -2,7 +2,7 @@ external help file: Microsoft.HyperV.PowerShell.dll-Help.xml Module Name: Hyper-V ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/hyper-v/test-vmreplicationconnection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/test-vmreplicationconnection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-VMReplicationConnection --- diff --git a/docset/winserver2012r2-ps/international/Get-WinAcceptLanguageFromLanguageListOptOut.md b/docset/winserver2012r2-ps/international/Get-WinAcceptLanguageFromLanguageListOptOut.md index ee4974b353..b3ac6b67e2 100644 --- a/docset/winserver2012r2-ps/international/Get-WinAcceptLanguageFromLanguageListOptOut.md +++ b/docset/winserver2012r2-ps/international/Get-WinAcceptLanguageFromLanguageListOptOut.md @@ -2,7 +2,7 @@ external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/international/get-winacceptlanguagefromlanguagelistoptout?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/get-winacceptlanguagefromlanguagelistoptout?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WinAcceptLanguageFromLanguageListOptOut --- diff --git a/docset/winserver2012r2-ps/international/Get-WinCultureFromLanguageListOptOut.md b/docset/winserver2012r2-ps/international/Get-WinCultureFromLanguageListOptOut.md index 4947015d05..1d1c9f3050 100644 --- a/docset/winserver2012r2-ps/international/Get-WinCultureFromLanguageListOptOut.md +++ b/docset/winserver2012r2-ps/international/Get-WinCultureFromLanguageListOptOut.md @@ -2,7 +2,7 @@ external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/international/get-winculturefromlanguagelistoptout?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/get-winculturefromlanguagelistoptout?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WinCultureFromLanguageListOptOut --- diff --git a/docset/winserver2012r2-ps/international/Get-WinDefaultInputMethodOverride.md b/docset/winserver2012r2-ps/international/Get-WinDefaultInputMethodOverride.md index 47332b89dd..9064b8ae09 100644 --- a/docset/winserver2012r2-ps/international/Get-WinDefaultInputMethodOverride.md +++ b/docset/winserver2012r2-ps/international/Get-WinDefaultInputMethodOverride.md @@ -2,7 +2,7 @@ external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/international/get-windefaultinputmethodoverride?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/get-windefaultinputmethodoverride?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WinDefaultInputMethodOverride --- diff --git a/docset/winserver2012r2-ps/international/Get-WinHomeLocation.md b/docset/winserver2012r2-ps/international/Get-WinHomeLocation.md index f5e446109b..50fe9bc03b 100644 --- a/docset/winserver2012r2-ps/international/Get-WinHomeLocation.md +++ b/docset/winserver2012r2-ps/international/Get-WinHomeLocation.md @@ -2,7 +2,7 @@ external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/international/get-winhomelocation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/get-winhomelocation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WinHomeLocation --- diff --git a/docset/winserver2012r2-ps/international/Get-WinLanguageBarOption.md b/docset/winserver2012r2-ps/international/Get-WinLanguageBarOption.md index a3556ec8ea..d0a453e3c4 100644 --- a/docset/winserver2012r2-ps/international/Get-WinLanguageBarOption.md +++ b/docset/winserver2012r2-ps/international/Get-WinLanguageBarOption.md @@ -2,7 +2,7 @@ external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/international/get-winlanguagebaroption?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/get-winlanguagebaroption?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WinLanguageBarOption --- diff --git a/docset/winserver2012r2-ps/international/Get-WinSystemLocale.md b/docset/winserver2012r2-ps/international/Get-WinSystemLocale.md index 1b0a6c2b54..8aef846a50 100644 --- a/docset/winserver2012r2-ps/international/Get-WinSystemLocale.md +++ b/docset/winserver2012r2-ps/international/Get-WinSystemLocale.md @@ -2,7 +2,7 @@ external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/international/get-winsystemlocale?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/get-winsystemlocale?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WinSystemLocale --- diff --git a/docset/winserver2012r2-ps/international/Get-WinUILanguageOverride.md b/docset/winserver2012r2-ps/international/Get-WinUILanguageOverride.md index 466aab12c2..becbbb0b4f 100644 --- a/docset/winserver2012r2-ps/international/Get-WinUILanguageOverride.md +++ b/docset/winserver2012r2-ps/international/Get-WinUILanguageOverride.md @@ -2,7 +2,7 @@ external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/international/get-winuilanguageoverride?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/get-winuilanguageoverride?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WinUILanguageOverride --- diff --git a/docset/winserver2012r2-ps/international/Get-WinUserLanguageList.md b/docset/winserver2012r2-ps/international/Get-WinUserLanguageList.md index 5436791f9c..dba5a78189 100644 --- a/docset/winserver2012r2-ps/international/Get-WinUserLanguageList.md +++ b/docset/winserver2012r2-ps/international/Get-WinUserLanguageList.md @@ -2,7 +2,7 @@ external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/international/get-winuserlanguagelist?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/get-winuserlanguagelist?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WinUserLanguageList --- diff --git a/docset/winserver2012r2-ps/international/New-WinUserLanguageList.md b/docset/winserver2012r2-ps/international/New-WinUserLanguageList.md index b9e9491cce..56af96226a 100644 --- a/docset/winserver2012r2-ps/international/New-WinUserLanguageList.md +++ b/docset/winserver2012r2-ps/international/New-WinUserLanguageList.md @@ -2,7 +2,7 @@ external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/international/new-winuserlanguagelist?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/new-winuserlanguagelist?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WinUserLanguageList --- diff --git a/docset/winserver2012r2-ps/international/Set-Culture.md b/docset/winserver2012r2-ps/international/Set-Culture.md index f076e57fef..573c4d0220 100644 --- a/docset/winserver2012r2-ps/international/Set-Culture.md +++ b/docset/winserver2012r2-ps/international/Set-Culture.md @@ -2,7 +2,7 @@ external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/international/set-culture?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/set-culture?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-Culture --- diff --git a/docset/winserver2012r2-ps/international/Set-WinAcceptLanguageFromLanguageListOptOut.md b/docset/winserver2012r2-ps/international/Set-WinAcceptLanguageFromLanguageListOptOut.md index 7b0432df76..dd18bd7e89 100644 --- a/docset/winserver2012r2-ps/international/Set-WinAcceptLanguageFromLanguageListOptOut.md +++ b/docset/winserver2012r2-ps/international/Set-WinAcceptLanguageFromLanguageListOptOut.md @@ -2,7 +2,7 @@ external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/international/set-winacceptlanguagefromlanguagelistoptout?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/set-winacceptlanguagefromlanguagelistoptout?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WinAcceptLanguageFromLanguageListOptOut --- diff --git a/docset/winserver2012r2-ps/international/Set-WinCultureFromLanguageListOptOut.md b/docset/winserver2012r2-ps/international/Set-WinCultureFromLanguageListOptOut.md index c61483d611..a9fd44a040 100644 --- a/docset/winserver2012r2-ps/international/Set-WinCultureFromLanguageListOptOut.md +++ b/docset/winserver2012r2-ps/international/Set-WinCultureFromLanguageListOptOut.md @@ -2,7 +2,7 @@ external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/international/set-winculturefromlanguagelistoptout?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/set-winculturefromlanguagelistoptout?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WinCultureFromLanguageListOptOut --- diff --git a/docset/winserver2012r2-ps/international/Set-WinDefaultInputMethodOverride.md b/docset/winserver2012r2-ps/international/Set-WinDefaultInputMethodOverride.md index 90ea31403d..3b1b9c6267 100644 --- a/docset/winserver2012r2-ps/international/Set-WinDefaultInputMethodOverride.md +++ b/docset/winserver2012r2-ps/international/Set-WinDefaultInputMethodOverride.md @@ -2,7 +2,7 @@ external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/international/set-windefaultinputmethodoverride?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/set-windefaultinputmethodoverride?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WinDefaultInputMethodOverride --- diff --git a/docset/winserver2012r2-ps/international/Set-WinHomeLocation.md b/docset/winserver2012r2-ps/international/Set-WinHomeLocation.md index 7e518d42ad..2761d7c385 100644 --- a/docset/winserver2012r2-ps/international/Set-WinHomeLocation.md +++ b/docset/winserver2012r2-ps/international/Set-WinHomeLocation.md @@ -2,7 +2,7 @@ external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/international/set-winhomelocation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/set-winhomelocation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WinHomeLocation --- diff --git a/docset/winserver2012r2-ps/international/Set-WinLanguageBarOption.md b/docset/winserver2012r2-ps/international/Set-WinLanguageBarOption.md index 2af7b72d9c..4988fd5848 100644 --- a/docset/winserver2012r2-ps/international/Set-WinLanguageBarOption.md +++ b/docset/winserver2012r2-ps/international/Set-WinLanguageBarOption.md @@ -2,7 +2,7 @@ external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/international/set-winlanguagebaroption?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/set-winlanguagebaroption?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WinLanguageBarOption --- diff --git a/docset/winserver2012r2-ps/international/Set-WinSystemLocale.md b/docset/winserver2012r2-ps/international/Set-WinSystemLocale.md index 991a8577a5..22cef7822a 100644 --- a/docset/winserver2012r2-ps/international/Set-WinSystemLocale.md +++ b/docset/winserver2012r2-ps/international/Set-WinSystemLocale.md @@ -2,7 +2,7 @@ external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/international/set-winsystemlocale?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/set-winsystemlocale?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WinSystemLocale --- diff --git a/docset/winserver2012r2-ps/international/Set-WinUILanguageOverride.md b/docset/winserver2012r2-ps/international/Set-WinUILanguageOverride.md index 0b2148b208..9aaa1bf534 100644 --- a/docset/winserver2012r2-ps/international/Set-WinUILanguageOverride.md +++ b/docset/winserver2012r2-ps/international/Set-WinUILanguageOverride.md @@ -2,7 +2,7 @@ external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/international/set-winuilanguageoverride?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/set-winuilanguageoverride?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WinUILanguageOverride --- diff --git a/docset/winserver2012r2-ps/international/Set-WinUserLanguageList.md b/docset/winserver2012r2-ps/international/Set-WinUserLanguageList.md index 48a603a770..59ccc89563 100644 --- a/docset/winserver2012r2-ps/international/Set-WinUserLanguageList.md +++ b/docset/winserver2012r2-ps/international/Set-WinUserLanguageList.md @@ -2,7 +2,7 @@ external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/international/set-winuserlanguagelist?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/set-winuserlanguagelist?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WinUserLanguageList --- diff --git a/docset/winserver2012r2-ps/ipamserver/Add-IpamAddress.md b/docset/winserver2012r2-ps/ipamserver/Add-IpamAddress.md index 2f7b3db21d..1f2d219837 100644 --- a/docset/winserver2012r2-ps/ipamserver/Add-IpamAddress.md +++ b/docset/winserver2012r2-ps/ipamserver/Add-IpamAddress.md @@ -2,7 +2,7 @@ external help file: IpamAddress.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/add-ipamaddress?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/add-ipamaddress?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-IpamAddress --- diff --git a/docset/winserver2012r2-ps/ipamserver/Add-IpamAddressSpace.md b/docset/winserver2012r2-ps/ipamserver/Add-IpamAddressSpace.md index 115abee774..d5aef8e14c 100644 --- a/docset/winserver2012r2-ps/ipamserver/Add-IpamAddressSpace.md +++ b/docset/winserver2012r2-ps/ipamserver/Add-IpamAddressSpace.md @@ -2,7 +2,7 @@ external help file: IpamAddressSpace.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/add-ipamaddressspace?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/add-ipamaddressspace?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-IpamAddressSpace --- diff --git a/docset/winserver2012r2-ps/ipamserver/Add-IpamBlock.md b/docset/winserver2012r2-ps/ipamserver/Add-IpamBlock.md index 7f4daea767..2f098ef6a0 100644 --- a/docset/winserver2012r2-ps/ipamserver/Add-IpamBlock.md +++ b/docset/winserver2012r2-ps/ipamserver/Add-IpamBlock.md @@ -2,7 +2,7 @@ external help file: IpamBlock.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/add-ipamblock?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/add-ipamblock?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-IpamBlock --- diff --git a/docset/winserver2012r2-ps/ipamserver/Add-IpamCustomField.md b/docset/winserver2012r2-ps/ipamserver/Add-IpamCustomField.md index b0b3aac917..31bcd854bc 100644 --- a/docset/winserver2012r2-ps/ipamserver/Add-IpamCustomField.md +++ b/docset/winserver2012r2-ps/ipamserver/Add-IpamCustomField.md @@ -2,7 +2,7 @@ external help file: IpamCustomField.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/add-ipamcustomfield?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/add-ipamcustomfield?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-IpamCustomField --- diff --git a/docset/winserver2012r2-ps/ipamserver/Add-IpamCustomFieldAssociation.md b/docset/winserver2012r2-ps/ipamserver/Add-IpamCustomFieldAssociation.md index 2c1cfb5540..ded4f8cc90 100644 --- a/docset/winserver2012r2-ps/ipamserver/Add-IpamCustomFieldAssociation.md +++ b/docset/winserver2012r2-ps/ipamserver/Add-IpamCustomFieldAssociation.md @@ -2,7 +2,7 @@ external help file: IpamCustomFieldAssociation.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/add-ipamcustomfieldassociation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/add-ipamcustomfieldassociation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-IpamCustomFieldAssociation --- diff --git a/docset/winserver2012r2-ps/ipamserver/Add-IpamCustomValue.md b/docset/winserver2012r2-ps/ipamserver/Add-IpamCustomValue.md index b96582231c..91ea7d5e99 100644 --- a/docset/winserver2012r2-ps/ipamserver/Add-IpamCustomValue.md +++ b/docset/winserver2012r2-ps/ipamserver/Add-IpamCustomValue.md @@ -2,7 +2,7 @@ external help file: IpamCustomValue.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/add-ipamcustomvalue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/add-ipamcustomvalue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-IpamCustomValue --- diff --git a/docset/winserver2012r2-ps/ipamserver/Add-IpamDiscoveryDomain.md b/docset/winserver2012r2-ps/ipamserver/Add-IpamDiscoveryDomain.md index 778fa91127..e4a0f8b5b0 100644 --- a/docset/winserver2012r2-ps/ipamserver/Add-IpamDiscoveryDomain.md +++ b/docset/winserver2012r2-ps/ipamserver/Add-IpamDiscoveryDomain.md @@ -2,7 +2,7 @@ external help file: IpamDiscoveryDomain.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/add-ipamdiscoverydomain?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/add-ipamdiscoverydomain?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-IpamDiscoveryDomain --- diff --git a/docset/winserver2012r2-ps/ipamserver/Add-IpamRange.md b/docset/winserver2012r2-ps/ipamserver/Add-IpamRange.md index 82bbd1d814..a87eb24c93 100644 --- a/docset/winserver2012r2-ps/ipamserver/Add-IpamRange.md +++ b/docset/winserver2012r2-ps/ipamserver/Add-IpamRange.md @@ -2,7 +2,7 @@ external help file: IpamRange.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/add-ipamrange?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/add-ipamrange?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-IpamRange --- diff --git a/docset/winserver2012r2-ps/ipamserver/Add-IpamServerInventory.md b/docset/winserver2012r2-ps/ipamserver/Add-IpamServerInventory.md index 73af9c920c..df8fc04cc7 100644 --- a/docset/winserver2012r2-ps/ipamserver/Add-IpamServerInventory.md +++ b/docset/winserver2012r2-ps/ipamserver/Add-IpamServerInventory.md @@ -2,7 +2,7 @@ external help file: IpamServerInventory.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/add-ipamserverinventory?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/add-ipamserverinventory?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-IpamServerInventory --- diff --git a/docset/winserver2012r2-ps/ipamserver/Add-IpamSubnet.md b/docset/winserver2012r2-ps/ipamserver/Add-IpamSubnet.md index 304ab99228..db60c5217a 100644 --- a/docset/winserver2012r2-ps/ipamserver/Add-IpamSubnet.md +++ b/docset/winserver2012r2-ps/ipamserver/Add-IpamSubnet.md @@ -2,7 +2,7 @@ external help file: IpamSubnet.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/add-ipamsubnet?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/add-ipamsubnet?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-IpamSubnet --- diff --git a/docset/winserver2012r2-ps/ipamserver/Disable-IpamCapability.md b/docset/winserver2012r2-ps/ipamserver/Disable-IpamCapability.md index eb3032b25d..bc650bd38a 100644 --- a/docset/winserver2012r2-ps/ipamserver/Disable-IpamCapability.md +++ b/docset/winserver2012r2-ps/ipamserver/Disable-IpamCapability.md @@ -2,7 +2,7 @@ external help file: IpamCapabilities.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/disable-ipamcapability?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/disable-ipamcapability?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-IpamCapability --- diff --git a/docset/winserver2012r2-ps/ipamserver/Enable-IpamCapability.md b/docset/winserver2012r2-ps/ipamserver/Enable-IpamCapability.md index 767cae886e..3b75917612 100644 --- a/docset/winserver2012r2-ps/ipamserver/Enable-IpamCapability.md +++ b/docset/winserver2012r2-ps/ipamserver/Enable-IpamCapability.md @@ -2,7 +2,7 @@ external help file: IpamCapabilities.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/enable-ipamcapability?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/enable-ipamcapability?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-IpamCapability --- diff --git a/docset/winserver2012r2-ps/ipamserver/Export-IpamAddress.md b/docset/winserver2012r2-ps/ipamserver/Export-IpamAddress.md index cd2fa566e4..a4085500fe 100644 --- a/docset/winserver2012r2-ps/ipamserver/Export-IpamAddress.md +++ b/docset/winserver2012r2-ps/ipamserver/Export-IpamAddress.md @@ -2,7 +2,7 @@ external help file: IpamAddress.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/export-ipamaddress?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/export-ipamaddress?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-IpamAddress --- diff --git a/docset/winserver2012r2-ps/ipamserver/Export-IpamRange.md b/docset/winserver2012r2-ps/ipamserver/Export-IpamRange.md index 5cbb6c8b34..fb90258c89 100644 --- a/docset/winserver2012r2-ps/ipamserver/Export-IpamRange.md +++ b/docset/winserver2012r2-ps/ipamserver/Export-IpamRange.md @@ -2,7 +2,7 @@ external help file: IpamRange.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/export-ipamrange?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/export-ipamrange?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-IpamRange --- diff --git a/docset/winserver2012r2-ps/ipamserver/Export-IpamSubnet.md b/docset/winserver2012r2-ps/ipamserver/Export-IpamSubnet.md index 47b0ee0740..02574a4399 100644 --- a/docset/winserver2012r2-ps/ipamserver/Export-IpamSubnet.md +++ b/docset/winserver2012r2-ps/ipamserver/Export-IpamSubnet.md @@ -2,7 +2,7 @@ external help file: IpamSubnet.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/export-ipamsubnet?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/export-ipamsubnet?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-IpamSubnet --- diff --git a/docset/winserver2012r2-ps/ipamserver/Find-IpamFreeAddress.md b/docset/winserver2012r2-ps/ipamserver/Find-IpamFreeAddress.md index 91cdca182a..a9f194a8fd 100644 --- a/docset/winserver2012r2-ps/ipamserver/Find-IpamFreeAddress.md +++ b/docset/winserver2012r2-ps/ipamserver/Find-IpamFreeAddress.md @@ -2,7 +2,7 @@ external help file: IpamAddress.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/find-ipamfreeaddress?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/find-ipamfreeaddress?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Find-IpamFreeAddress --- diff --git a/docset/winserver2012r2-ps/ipamserver/Get-IpamAddress.md b/docset/winserver2012r2-ps/ipamserver/Get-IpamAddress.md index c177729486..35833176ae 100644 --- a/docset/winserver2012r2-ps/ipamserver/Get-IpamAddress.md +++ b/docset/winserver2012r2-ps/ipamserver/Get-IpamAddress.md @@ -2,7 +2,7 @@ external help file: IpamAddress.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamaddress?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamaddress?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamAddress --- diff --git a/docset/winserver2012r2-ps/ipamserver/Get-IpamAddressSpace.md b/docset/winserver2012r2-ps/ipamserver/Get-IpamAddressSpace.md index 432ba55b80..0c696a799f 100644 --- a/docset/winserver2012r2-ps/ipamserver/Get-IpamAddressSpace.md +++ b/docset/winserver2012r2-ps/ipamserver/Get-IpamAddressSpace.md @@ -2,7 +2,7 @@ external help file: IpamAddressSpace.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamaddressspace?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamaddressspace?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamAddressSpace --- diff --git a/docset/winserver2012r2-ps/ipamserver/Get-IpamAddressUtilizationThreshold.md b/docset/winserver2012r2-ps/ipamserver/Get-IpamAddressUtilizationThreshold.md index 707fc03414..26d3157674 100644 --- a/docset/winserver2012r2-ps/ipamserver/Get-IpamAddressUtilizationThreshold.md +++ b/docset/winserver2012r2-ps/ipamserver/Get-IpamAddressUtilizationThreshold.md @@ -2,7 +2,7 @@ external help file: IpamAddressUtilizationThreshold.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamaddressutilizationthreshold?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamaddressutilizationthreshold?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamAddressUtilizationThreshold --- diff --git a/docset/winserver2012r2-ps/ipamserver/Get-IpamBlock.md b/docset/winserver2012r2-ps/ipamserver/Get-IpamBlock.md index f9ec3f71b8..0bc5b4f6c0 100644 --- a/docset/winserver2012r2-ps/ipamserver/Get-IpamBlock.md +++ b/docset/winserver2012r2-ps/ipamserver/Get-IpamBlock.md @@ -2,7 +2,7 @@ external help file: IpamBlock.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamblock?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamblock?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamBlock --- diff --git a/docset/winserver2012r2-ps/ipamserver/Get-IpamCapability.md b/docset/winserver2012r2-ps/ipamserver/Get-IpamCapability.md index d93b5e9bc5..c9a0b704aa 100644 --- a/docset/winserver2012r2-ps/ipamserver/Get-IpamCapability.md +++ b/docset/winserver2012r2-ps/ipamserver/Get-IpamCapability.md @@ -2,7 +2,7 @@ external help file: IpamCapabilities.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamcapability?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamcapability?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamCapability --- diff --git a/docset/winserver2012r2-ps/ipamserver/Get-IpamConfiguration.md b/docset/winserver2012r2-ps/ipamserver/Get-IpamConfiguration.md index 27018b96a4..a0d8d46fba 100644 --- a/docset/winserver2012r2-ps/ipamserver/Get-IpamConfiguration.md +++ b/docset/winserver2012r2-ps/ipamserver/Get-IpamConfiguration.md @@ -2,7 +2,7 @@ external help file: IpamConfiguration.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamConfiguration --- diff --git a/docset/winserver2012r2-ps/ipamserver/Get-IpamConfigurationEvent.md b/docset/winserver2012r2-ps/ipamserver/Get-IpamConfigurationEvent.md index 9c8716af7e..5934f95f4a 100644 --- a/docset/winserver2012r2-ps/ipamserver/Get-IpamConfigurationEvent.md +++ b/docset/winserver2012r2-ps/ipamserver/Get-IpamConfigurationEvent.md @@ -2,7 +2,7 @@ external help file: IpamConfigurationEvent.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamconfigurationevent?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamconfigurationevent?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamConfigurationEvent --- diff --git a/docset/winserver2012r2-ps/ipamserver/Get-IpamCustomField.md b/docset/winserver2012r2-ps/ipamserver/Get-IpamCustomField.md index ebd5d1235c..6518389eb6 100644 --- a/docset/winserver2012r2-ps/ipamserver/Get-IpamCustomField.md +++ b/docset/winserver2012r2-ps/ipamserver/Get-IpamCustomField.md @@ -2,7 +2,7 @@ external help file: IpamCustomField.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamcustomfield?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamcustomfield?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamCustomField --- diff --git a/docset/winserver2012r2-ps/ipamserver/Get-IpamCustomFieldAssociation.md b/docset/winserver2012r2-ps/ipamserver/Get-IpamCustomFieldAssociation.md index e6fcf8d438..583f96b081 100644 --- a/docset/winserver2012r2-ps/ipamserver/Get-IpamCustomFieldAssociation.md +++ b/docset/winserver2012r2-ps/ipamserver/Get-IpamCustomFieldAssociation.md @@ -2,7 +2,7 @@ external help file: IpamCustomFieldAssociation.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamcustomfieldassociation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamcustomfieldassociation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamCustomFieldAssociation --- diff --git a/docset/winserver2012r2-ps/ipamserver/Get-IpamDatabase.md b/docset/winserver2012r2-ps/ipamserver/Get-IpamDatabase.md index 40c6369b7a..bed113bda8 100644 --- a/docset/winserver2012r2-ps/ipamserver/Get-IpamDatabase.md +++ b/docset/winserver2012r2-ps/ipamserver/Get-IpamDatabase.md @@ -2,7 +2,7 @@ external help file: IpamDatabase.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamdatabase?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamdatabase?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamDatabase --- diff --git a/docset/winserver2012r2-ps/ipamserver/Get-IpamDhcpConfigurationEvent.md b/docset/winserver2012r2-ps/ipamserver/Get-IpamDhcpConfigurationEvent.md index 3635de97f0..2d143534c6 100644 --- a/docset/winserver2012r2-ps/ipamserver/Get-IpamDhcpConfigurationEvent.md +++ b/docset/winserver2012r2-ps/ipamserver/Get-IpamDhcpConfigurationEvent.md @@ -2,7 +2,7 @@ external help file: IpamDhcpConfigurationEvent.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamdhcpconfigurationevent?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamdhcpconfigurationevent?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamDhcpConfigurationEvent --- diff --git a/docset/winserver2012r2-ps/ipamserver/Get-IpamDiscoveryDomain.md b/docset/winserver2012r2-ps/ipamserver/Get-IpamDiscoveryDomain.md index 9e7d11ab86..3d8eb13667 100644 --- a/docset/winserver2012r2-ps/ipamserver/Get-IpamDiscoveryDomain.md +++ b/docset/winserver2012r2-ps/ipamserver/Get-IpamDiscoveryDomain.md @@ -2,7 +2,7 @@ external help file: IpamDiscoveryDomain.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamdiscoverydomain?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamdiscoverydomain?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamDiscoveryDomain --- diff --git a/docset/winserver2012r2-ps/ipamserver/Get-IpamIpAddressAuditEvent.md b/docset/winserver2012r2-ps/ipamserver/Get-IpamIpAddressAuditEvent.md index d8ad5662af..e8140a16c8 100644 --- a/docset/winserver2012r2-ps/ipamserver/Get-IpamIpAddressAuditEvent.md +++ b/docset/winserver2012r2-ps/ipamserver/Get-IpamIpAddressAuditEvent.md @@ -2,7 +2,7 @@ external help file: IpamIpAuditEvent.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamipaddressauditevent?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamipaddressauditevent?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamIpAddressAuditEvent --- diff --git a/docset/winserver2012r2-ps/ipamserver/Get-IpamRange.md b/docset/winserver2012r2-ps/ipamserver/Get-IpamRange.md index fd00bc27e8..1cf3b1ff21 100644 --- a/docset/winserver2012r2-ps/ipamserver/Get-IpamRange.md +++ b/docset/winserver2012r2-ps/ipamserver/Get-IpamRange.md @@ -2,7 +2,7 @@ external help file: IpamRange.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamrange?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamrange?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamRange --- diff --git a/docset/winserver2012r2-ps/ipamserver/Get-IpamServerInventory.md b/docset/winserver2012r2-ps/ipamserver/Get-IpamServerInventory.md index 76739a096e..7d298073a4 100644 --- a/docset/winserver2012r2-ps/ipamserver/Get-IpamServerInventory.md +++ b/docset/winserver2012r2-ps/ipamserver/Get-IpamServerInventory.md @@ -2,7 +2,7 @@ external help file: IpamServerInventory.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamserverinventory?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamserverinventory?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamServerInventory --- diff --git a/docset/winserver2012r2-ps/ipamserver/Get-IpamSubnet.md b/docset/winserver2012r2-ps/ipamserver/Get-IpamSubnet.md index ee1f279417..226a897cb5 100644 --- a/docset/winserver2012r2-ps/ipamserver/Get-IpamSubnet.md +++ b/docset/winserver2012r2-ps/ipamserver/Get-IpamSubnet.md @@ -2,7 +2,7 @@ external help file: IpamSubnet.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamsubnet?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamsubnet?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamSubnet --- diff --git a/docset/winserver2012r2-ps/ipamserver/Import-IpamAddress.md b/docset/winserver2012r2-ps/ipamserver/Import-IpamAddress.md index 9434f4f932..ee27034228 100644 --- a/docset/winserver2012r2-ps/ipamserver/Import-IpamAddress.md +++ b/docset/winserver2012r2-ps/ipamserver/Import-IpamAddress.md @@ -2,7 +2,7 @@ external help file: IpamAddress.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/import-ipamaddress?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/import-ipamaddress?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-IpamAddress --- diff --git a/docset/winserver2012r2-ps/ipamserver/Import-IpamRange.md b/docset/winserver2012r2-ps/ipamserver/Import-IpamRange.md index dcfb7160cb..7c3e56f40b 100644 --- a/docset/winserver2012r2-ps/ipamserver/Import-IpamRange.md +++ b/docset/winserver2012r2-ps/ipamserver/Import-IpamRange.md @@ -2,7 +2,7 @@ external help file: IpamRange.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/import-ipamrange?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/import-ipamrange?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-IpamRange --- diff --git a/docset/winserver2012r2-ps/ipamserver/Import-IpamSubnet.md b/docset/winserver2012r2-ps/ipamserver/Import-IpamSubnet.md index 05e5ffa427..1aac38c63c 100644 --- a/docset/winserver2012r2-ps/ipamserver/Import-IpamSubnet.md +++ b/docset/winserver2012r2-ps/ipamserver/Import-IpamSubnet.md @@ -2,7 +2,7 @@ external help file: IpamSubnet.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/import-ipamsubnet?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/import-ipamsubnet?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-IpamSubnet --- diff --git a/docset/winserver2012r2-ps/ipamserver/Invoke-IpamGpoProvisioning.md b/docset/winserver2012r2-ps/ipamserver/Invoke-IpamGpoProvisioning.md index bcd3a6373e..1cab411632 100644 --- a/docset/winserver2012r2-ps/ipamserver/Invoke-IpamGpoProvisioning.md +++ b/docset/winserver2012r2-ps/ipamserver/Invoke-IpamGpoProvisioning.md @@ -2,7 +2,7 @@ external help file: IpamGpo-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/invoke-ipamgpoprovisioning?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/invoke-ipamgpoprovisioning?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-IpamGpoProvisioning --- diff --git a/docset/winserver2012r2-ps/ipamserver/Invoke-IpamServerProvisioning.md b/docset/winserver2012r2-ps/ipamserver/Invoke-IpamServerProvisioning.md index 4bebd60795..4264063f17 100644 --- a/docset/winserver2012r2-ps/ipamserver/Invoke-IpamServerProvisioning.md +++ b/docset/winserver2012r2-ps/ipamserver/Invoke-IpamServerProvisioning.md @@ -2,7 +2,7 @@ external help file: IpamServerProvisioning.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/invoke-ipamserverprovisioning?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/invoke-ipamserverprovisioning?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-IpamServerProvisioning --- diff --git a/docset/winserver2012r2-ps/ipamserver/Move-IpamDatabase.md b/docset/winserver2012r2-ps/ipamserver/Move-IpamDatabase.md index 3f619fbddb..2336c153ce 100644 --- a/docset/winserver2012r2-ps/ipamserver/Move-IpamDatabase.md +++ b/docset/winserver2012r2-ps/ipamserver/Move-IpamDatabase.md @@ -2,7 +2,7 @@ external help file: IpamDatabase.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/move-ipamdatabase?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/move-ipamdatabase?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-IpamDatabase --- diff --git a/docset/winserver2012r2-ps/ipamserver/Remove-IpamAddress.md b/docset/winserver2012r2-ps/ipamserver/Remove-IpamAddress.md index af1498c777..dd4204e74c 100644 --- a/docset/winserver2012r2-ps/ipamserver/Remove-IpamAddress.md +++ b/docset/winserver2012r2-ps/ipamserver/Remove-IpamAddress.md @@ -2,7 +2,7 @@ external help file: IpamAddress.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/remove-ipamaddress?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/remove-ipamaddress?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IpamAddress --- diff --git a/docset/winserver2012r2-ps/ipamserver/Remove-IpamAddressSpace.md b/docset/winserver2012r2-ps/ipamserver/Remove-IpamAddressSpace.md index 37468898b1..4aa6afa670 100644 --- a/docset/winserver2012r2-ps/ipamserver/Remove-IpamAddressSpace.md +++ b/docset/winserver2012r2-ps/ipamserver/Remove-IpamAddressSpace.md @@ -2,7 +2,7 @@ external help file: IpamAddressSpace.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/remove-ipamaddressspace?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/remove-ipamaddressspace?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IpamAddressSpace --- diff --git a/docset/winserver2012r2-ps/ipamserver/Remove-IpamBlock.md b/docset/winserver2012r2-ps/ipamserver/Remove-IpamBlock.md index 3f2ba76e29..a887d4c4e5 100644 --- a/docset/winserver2012r2-ps/ipamserver/Remove-IpamBlock.md +++ b/docset/winserver2012r2-ps/ipamserver/Remove-IpamBlock.md @@ -2,7 +2,7 @@ external help file: IpamBlock.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/remove-ipamblock?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/remove-ipamblock?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IpamBlock --- diff --git a/docset/winserver2012r2-ps/ipamserver/Remove-IpamConfigurationEvent.md b/docset/winserver2012r2-ps/ipamserver/Remove-IpamConfigurationEvent.md index 16450b1e52..52f9c66a13 100644 --- a/docset/winserver2012r2-ps/ipamserver/Remove-IpamConfigurationEvent.md +++ b/docset/winserver2012r2-ps/ipamserver/Remove-IpamConfigurationEvent.md @@ -2,7 +2,7 @@ external help file: IpamConfigurationEvent.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/remove-ipamconfigurationevent?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/remove-ipamconfigurationevent?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IpamConfigurationEvent --- diff --git a/docset/winserver2012r2-ps/ipamserver/Remove-IpamCustomField.md b/docset/winserver2012r2-ps/ipamserver/Remove-IpamCustomField.md index 32203e5622..fc6b5ead32 100644 --- a/docset/winserver2012r2-ps/ipamserver/Remove-IpamCustomField.md +++ b/docset/winserver2012r2-ps/ipamserver/Remove-IpamCustomField.md @@ -2,7 +2,7 @@ external help file: IpamCustomField.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/remove-ipamcustomfield?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/remove-ipamcustomfield?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IpamCustomField --- diff --git a/docset/winserver2012r2-ps/ipamserver/Remove-IpamCustomFieldAssociation.md b/docset/winserver2012r2-ps/ipamserver/Remove-IpamCustomFieldAssociation.md index 3190d18342..5248675472 100644 --- a/docset/winserver2012r2-ps/ipamserver/Remove-IpamCustomFieldAssociation.md +++ b/docset/winserver2012r2-ps/ipamserver/Remove-IpamCustomFieldAssociation.md @@ -2,7 +2,7 @@ external help file: IpamCustomFieldAssociation.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/remove-ipamcustomfieldassociation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/remove-ipamcustomfieldassociation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IpamCustomFieldAssociation --- diff --git a/docset/winserver2012r2-ps/ipamserver/Remove-IpamCustomValue.md b/docset/winserver2012r2-ps/ipamserver/Remove-IpamCustomValue.md index 083e542f5c..053c510e25 100644 --- a/docset/winserver2012r2-ps/ipamserver/Remove-IpamCustomValue.md +++ b/docset/winserver2012r2-ps/ipamserver/Remove-IpamCustomValue.md @@ -2,7 +2,7 @@ external help file: IpamCustomValue.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/remove-ipamcustomvalue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/remove-ipamcustomvalue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IpamCustomValue --- diff --git a/docset/winserver2012r2-ps/ipamserver/Remove-IpamDhcpConfigurationEvent.md b/docset/winserver2012r2-ps/ipamserver/Remove-IpamDhcpConfigurationEvent.md index c93503ae1c..899c212184 100644 --- a/docset/winserver2012r2-ps/ipamserver/Remove-IpamDhcpConfigurationEvent.md +++ b/docset/winserver2012r2-ps/ipamserver/Remove-IpamDhcpConfigurationEvent.md @@ -2,7 +2,7 @@ external help file: IpamDhcpConfigurationEvent.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/remove-ipamdhcpconfigurationevent?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/remove-ipamdhcpconfigurationevent?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IpamDhcpConfigurationEvent --- diff --git a/docset/winserver2012r2-ps/ipamserver/Remove-IpamDiscoveryDomain.md b/docset/winserver2012r2-ps/ipamserver/Remove-IpamDiscoveryDomain.md index 7c5b042d49..14d3402423 100644 --- a/docset/winserver2012r2-ps/ipamserver/Remove-IpamDiscoveryDomain.md +++ b/docset/winserver2012r2-ps/ipamserver/Remove-IpamDiscoveryDomain.md @@ -2,7 +2,7 @@ external help file: IpamDiscoveryDomain.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/remove-ipamdiscoverydomain?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/remove-ipamdiscoverydomain?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IpamDiscoveryDomain --- diff --git a/docset/winserver2012r2-ps/ipamserver/Remove-IpamIpAddressAuditEvent.md b/docset/winserver2012r2-ps/ipamserver/Remove-IpamIpAddressAuditEvent.md index b39b44bc0b..33864c2f19 100644 --- a/docset/winserver2012r2-ps/ipamserver/Remove-IpamIpAddressAuditEvent.md +++ b/docset/winserver2012r2-ps/ipamserver/Remove-IpamIpAddressAuditEvent.md @@ -2,7 +2,7 @@ external help file: IpamIpAuditEvent.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/remove-ipamipaddressauditevent?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/remove-ipamipaddressauditevent?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IpamIpAddressAuditEvent --- diff --git a/docset/winserver2012r2-ps/ipamserver/Remove-IpamRange.md b/docset/winserver2012r2-ps/ipamserver/Remove-IpamRange.md index 144996d9b6..d2465b23c8 100644 --- a/docset/winserver2012r2-ps/ipamserver/Remove-IpamRange.md +++ b/docset/winserver2012r2-ps/ipamserver/Remove-IpamRange.md @@ -2,7 +2,7 @@ external help file: IpamRange.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/remove-ipamrange?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/remove-ipamrange?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IpamRange --- diff --git a/docset/winserver2012r2-ps/ipamserver/Remove-IpamServerInventory.md b/docset/winserver2012r2-ps/ipamserver/Remove-IpamServerInventory.md index e5f94523f3..5122742999 100644 --- a/docset/winserver2012r2-ps/ipamserver/Remove-IpamServerInventory.md +++ b/docset/winserver2012r2-ps/ipamserver/Remove-IpamServerInventory.md @@ -2,7 +2,7 @@ external help file: IpamServerInventory.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/remove-ipamserverinventory?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/remove-ipamserverinventory?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IpamServerInventory --- diff --git a/docset/winserver2012r2-ps/ipamserver/Remove-IpamSubnet.md b/docset/winserver2012r2-ps/ipamserver/Remove-IpamSubnet.md index ba5799bb3e..10bb1b012b 100644 --- a/docset/winserver2012r2-ps/ipamserver/Remove-IpamSubnet.md +++ b/docset/winserver2012r2-ps/ipamserver/Remove-IpamSubnet.md @@ -2,7 +2,7 @@ external help file: IpamSubnet.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/remove-ipamsubnet?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/remove-ipamsubnet?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IpamSubnet --- diff --git a/docset/winserver2012r2-ps/ipamserver/Rename-IpamCustomField.md b/docset/winserver2012r2-ps/ipamserver/Rename-IpamCustomField.md index 40d8b56f45..d5885ce3cc 100644 --- a/docset/winserver2012r2-ps/ipamserver/Rename-IpamCustomField.md +++ b/docset/winserver2012r2-ps/ipamserver/Rename-IpamCustomField.md @@ -2,7 +2,7 @@ external help file: IpamCustomField.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/rename-ipamcustomfield?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/rename-ipamcustomfield?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-IpamCustomField --- diff --git a/docset/winserver2012r2-ps/ipamserver/Rename-IpamCustomValue.md b/docset/winserver2012r2-ps/ipamserver/Rename-IpamCustomValue.md index 50dc12efa0..2c5dd78bb6 100644 --- a/docset/winserver2012r2-ps/ipamserver/Rename-IpamCustomValue.md +++ b/docset/winserver2012r2-ps/ipamserver/Rename-IpamCustomValue.md @@ -2,7 +2,7 @@ external help file: IpamCustomValue.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/rename-ipamcustomvalue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/rename-ipamcustomvalue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-IpamCustomValue --- diff --git a/docset/winserver2012r2-ps/ipamserver/Set-IpamAddress.md b/docset/winserver2012r2-ps/ipamserver/Set-IpamAddress.md index 061d53cd24..836569c2b7 100644 --- a/docset/winserver2012r2-ps/ipamserver/Set-IpamAddress.md +++ b/docset/winserver2012r2-ps/ipamserver/Set-IpamAddress.md @@ -2,7 +2,7 @@ external help file: IpamAddress.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/set-ipamaddress?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/set-ipamaddress?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IpamAddress --- diff --git a/docset/winserver2012r2-ps/ipamserver/Set-IpamAddressSpace.md b/docset/winserver2012r2-ps/ipamserver/Set-IpamAddressSpace.md index a36439b6f5..d9c26c60f1 100644 --- a/docset/winserver2012r2-ps/ipamserver/Set-IpamAddressSpace.md +++ b/docset/winserver2012r2-ps/ipamserver/Set-IpamAddressSpace.md @@ -2,7 +2,7 @@ external help file: IpamAddressSpace.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/set-ipamaddressspace?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/set-ipamaddressspace?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IpamAddressSpace --- diff --git a/docset/winserver2012r2-ps/ipamserver/Set-IpamAddressUtilizationThreshold.md b/docset/winserver2012r2-ps/ipamserver/Set-IpamAddressUtilizationThreshold.md index 1ca79a78e4..00397f1012 100644 --- a/docset/winserver2012r2-ps/ipamserver/Set-IpamAddressUtilizationThreshold.md +++ b/docset/winserver2012r2-ps/ipamserver/Set-IpamAddressUtilizationThreshold.md @@ -2,7 +2,7 @@ external help file: IpamAddressUtilizationThreshold.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/set-ipamaddressutilizationthreshold?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/set-ipamaddressutilizationthreshold?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IpamAddressUtilizationThreshold --- diff --git a/docset/winserver2012r2-ps/ipamserver/Set-IpamBlock.md b/docset/winserver2012r2-ps/ipamserver/Set-IpamBlock.md index 0f54839067..1b94d8f4b8 100644 --- a/docset/winserver2012r2-ps/ipamserver/Set-IpamBlock.md +++ b/docset/winserver2012r2-ps/ipamserver/Set-IpamBlock.md @@ -2,7 +2,7 @@ external help file: IpamBlock.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/set-ipamblock?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/set-ipamblock?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IpamBlock --- diff --git a/docset/winserver2012r2-ps/ipamserver/Set-IpamConfiguration.md b/docset/winserver2012r2-ps/ipamserver/Set-IpamConfiguration.md index f0250afd8d..4eca2e3bea 100644 --- a/docset/winserver2012r2-ps/ipamserver/Set-IpamConfiguration.md +++ b/docset/winserver2012r2-ps/ipamserver/Set-IpamConfiguration.md @@ -2,7 +2,7 @@ external help file: IpamConfiguration.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/set-ipamconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/set-ipamconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IpamConfiguration --- diff --git a/docset/winserver2012r2-ps/ipamserver/Set-IpamCustomFieldAssociation.md b/docset/winserver2012r2-ps/ipamserver/Set-IpamCustomFieldAssociation.md index c8153304c5..aa4735ea58 100644 --- a/docset/winserver2012r2-ps/ipamserver/Set-IpamCustomFieldAssociation.md +++ b/docset/winserver2012r2-ps/ipamserver/Set-IpamCustomFieldAssociation.md @@ -2,7 +2,7 @@ external help file: IpamCustomFieldAssociation.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/set-ipamcustomfieldassociation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/set-ipamcustomfieldassociation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IpamCustomFieldAssociation --- diff --git a/docset/winserver2012r2-ps/ipamserver/Set-IpamDatabase.md b/docset/winserver2012r2-ps/ipamserver/Set-IpamDatabase.md index 1c2f6f44fe..1905c8073e 100644 --- a/docset/winserver2012r2-ps/ipamserver/Set-IpamDatabase.md +++ b/docset/winserver2012r2-ps/ipamserver/Set-IpamDatabase.md @@ -2,7 +2,7 @@ external help file: IpamDatabase.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/set-ipamdatabase?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/set-ipamdatabase?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IpamDatabase --- diff --git a/docset/winserver2012r2-ps/ipamserver/Set-IpamDiscoveryDomain.md b/docset/winserver2012r2-ps/ipamserver/Set-IpamDiscoveryDomain.md index b01e52a92c..a510415fc1 100644 --- a/docset/winserver2012r2-ps/ipamserver/Set-IpamDiscoveryDomain.md +++ b/docset/winserver2012r2-ps/ipamserver/Set-IpamDiscoveryDomain.md @@ -2,7 +2,7 @@ external help file: IpamDiscoveryDomain.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/set-ipamdiscoverydomain?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/set-ipamdiscoverydomain?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IpamDiscoveryDomain --- diff --git a/docset/winserver2012r2-ps/ipamserver/Set-IpamRange.md b/docset/winserver2012r2-ps/ipamserver/Set-IpamRange.md index 67ce23db6c..95dd264e2d 100644 --- a/docset/winserver2012r2-ps/ipamserver/Set-IpamRange.md +++ b/docset/winserver2012r2-ps/ipamserver/Set-IpamRange.md @@ -2,7 +2,7 @@ external help file: IpamRange.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/set-ipamrange?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/set-ipamrange?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IpamRange --- diff --git a/docset/winserver2012r2-ps/ipamserver/Set-IpamServerInventory.md b/docset/winserver2012r2-ps/ipamserver/Set-IpamServerInventory.md index 1782bdf048..412127d437 100644 --- a/docset/winserver2012r2-ps/ipamserver/Set-IpamServerInventory.md +++ b/docset/winserver2012r2-ps/ipamserver/Set-IpamServerInventory.md @@ -2,7 +2,7 @@ external help file: IpamServerInventory.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/set-ipamserverinventory?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/set-ipamserverinventory?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IpamServerInventory --- diff --git a/docset/winserver2012r2-ps/ipamserver/Set-IpamSubnet.md b/docset/winserver2012r2-ps/ipamserver/Set-IpamSubnet.md index 1c8a63ad3b..417afc814a 100644 --- a/docset/winserver2012r2-ps/ipamserver/Set-IpamSubnet.md +++ b/docset/winserver2012r2-ps/ipamserver/Set-IpamSubnet.md @@ -2,7 +2,7 @@ external help file: IpamSubnet.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/set-ipamsubnet?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/set-ipamsubnet?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IpamSubnet --- diff --git a/docset/winserver2012r2-ps/ipamserver/Update-IpamServer.md b/docset/winserver2012r2-ps/ipamserver/Update-IpamServer.md index 16da2b84b9..fefb54b879 100644 --- a/docset/winserver2012r2-ps/ipamserver/Update-IpamServer.md +++ b/docset/winserver2012r2-ps/ipamserver/Update-IpamServer.md @@ -2,7 +2,7 @@ external help file: IpamServer.cdxml-help.xml Module Name: IpamServer ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/ipamserver/update-ipamserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/update-ipamserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-IpamServer --- diff --git a/docset/winserver2012r2-ps/iscsi/Connect-IscsiTarget.md b/docset/winserver2012r2-ps/iscsi/Connect-IscsiTarget.md index e021421c9f..2783423ed0 100644 --- a/docset/winserver2012r2-ps/iscsi/Connect-IscsiTarget.md +++ b/docset/winserver2012r2-ps/iscsi/Connect-IscsiTarget.md @@ -2,7 +2,7 @@ external help file: iSCSITarget.cdxml-help.xml Module Name: iSCSI ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/iscsi/connect-iscsitarget?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/connect-iscsitarget?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Connect-IscsiTarget --- diff --git a/docset/winserver2012r2-ps/iscsi/Disconnect-IscsiTarget.md b/docset/winserver2012r2-ps/iscsi/Disconnect-IscsiTarget.md index f01e425254..a8ebcde7dc 100644 --- a/docset/winserver2012r2-ps/iscsi/Disconnect-IscsiTarget.md +++ b/docset/winserver2012r2-ps/iscsi/Disconnect-IscsiTarget.md @@ -2,7 +2,7 @@ external help file: iSCSITarget.cdxml-help.xml Module Name: iSCSI ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/iscsi/disconnect-iscsitarget?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/disconnect-iscsitarget?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disconnect-IscsiTarget --- diff --git a/docset/winserver2012r2-ps/iscsi/Get-IscsiConnection.md b/docset/winserver2012r2-ps/iscsi/Get-IscsiConnection.md index 3bf738d399..c07eb19f23 100644 --- a/docset/winserver2012r2-ps/iscsi/Get-IscsiConnection.md +++ b/docset/winserver2012r2-ps/iscsi/Get-IscsiConnection.md @@ -2,7 +2,7 @@ external help file: iSCSIConnection.cdxml-help.xml Module Name: iSCSI ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/iscsi/get-iscsiconnection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/get-iscsiconnection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IscsiConnection --- diff --git a/docset/winserver2012r2-ps/iscsi/Get-IscsiSession.md b/docset/winserver2012r2-ps/iscsi/Get-IscsiSession.md index 43b34fcc67..64fc959528 100644 --- a/docset/winserver2012r2-ps/iscsi/Get-IscsiSession.md +++ b/docset/winserver2012r2-ps/iscsi/Get-IscsiSession.md @@ -2,7 +2,7 @@ external help file: iSCSISession.cdxml-help.xml Module Name: iSCSI ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/iscsi/get-iscsisession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/get-iscsisession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IscsiSession --- diff --git a/docset/winserver2012r2-ps/iscsi/Get-IscsiTarget.md b/docset/winserver2012r2-ps/iscsi/Get-IscsiTarget.md index 215fe88968..2d9d8f2208 100644 --- a/docset/winserver2012r2-ps/iscsi/Get-IscsiTarget.md +++ b/docset/winserver2012r2-ps/iscsi/Get-IscsiTarget.md @@ -2,7 +2,7 @@ external help file: iSCSITarget.cdxml-help.xml Module Name: iSCSI ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/iscsi/get-iscsitarget?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/get-iscsitarget?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IscsiTarget --- diff --git a/docset/winserver2012r2-ps/iscsi/Get-IscsiTargetPortal.md b/docset/winserver2012r2-ps/iscsi/Get-IscsiTargetPortal.md index b3d25339c4..43dbff6335 100644 --- a/docset/winserver2012r2-ps/iscsi/Get-IscsiTargetPortal.md +++ b/docset/winserver2012r2-ps/iscsi/Get-IscsiTargetPortal.md @@ -2,7 +2,7 @@ external help file: iSCSITargetPortal.cdxml-help.xml Module Name: iSCSI ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/iscsi/get-iscsitargetportal?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/get-iscsitargetportal?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IscsiTargetPortal --- diff --git a/docset/winserver2012r2-ps/iscsi/New-IscsiTargetPortal.md b/docset/winserver2012r2-ps/iscsi/New-IscsiTargetPortal.md index 4e99662273..343d3a5824 100644 --- a/docset/winserver2012r2-ps/iscsi/New-IscsiTargetPortal.md +++ b/docset/winserver2012r2-ps/iscsi/New-IscsiTargetPortal.md @@ -2,7 +2,7 @@ external help file: iSCSITargetPortal.cdxml-help.xml Module Name: iSCSI ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/iscsi/new-iscsitargetportal?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/new-iscsitargetportal?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-IscsiTargetPortal --- diff --git a/docset/winserver2012r2-ps/iscsi/Register-IscsiSession.md b/docset/winserver2012r2-ps/iscsi/Register-IscsiSession.md index 926cac4e29..d394bdc767 100644 --- a/docset/winserver2012r2-ps/iscsi/Register-IscsiSession.md +++ b/docset/winserver2012r2-ps/iscsi/Register-IscsiSession.md @@ -2,7 +2,7 @@ external help file: iSCSISession.cdxml-help.xml Module Name: iSCSI ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/iscsi/register-iscsisession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/register-iscsisession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Register-IscsiSession --- diff --git a/docset/winserver2012r2-ps/iscsi/Remove-IscsiTargetPortal.md b/docset/winserver2012r2-ps/iscsi/Remove-IscsiTargetPortal.md index 2ce43fd00b..ba62e8413c 100644 --- a/docset/winserver2012r2-ps/iscsi/Remove-IscsiTargetPortal.md +++ b/docset/winserver2012r2-ps/iscsi/Remove-IscsiTargetPortal.md @@ -2,7 +2,7 @@ external help file: iSCSITargetPortal.cdxml-help.xml Module Name: iSCSI ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/iscsi/remove-iscsitargetportal?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/remove-iscsitargetportal?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IscsiTargetPortal --- diff --git a/docset/winserver2012r2-ps/iscsi/Set-IscsiChapSecret.md b/docset/winserver2012r2-ps/iscsi/Set-IscsiChapSecret.md index 95cd9d5caa..d0cb5735c0 100644 --- a/docset/winserver2012r2-ps/iscsi/Set-IscsiChapSecret.md +++ b/docset/winserver2012r2-ps/iscsi/Set-IscsiChapSecret.md @@ -2,7 +2,7 @@ external help file: iSCSISession.cdxml-help.xml Module Name: iSCSI ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/iscsi/set-iscsichapsecret?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/set-iscsichapsecret?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IscsiChapSecret --- diff --git a/docset/winserver2012r2-ps/iscsi/Unregister-IscsiSession.md b/docset/winserver2012r2-ps/iscsi/Unregister-IscsiSession.md index 308a7d548b..ad432cc94c 100644 --- a/docset/winserver2012r2-ps/iscsi/Unregister-IscsiSession.md +++ b/docset/winserver2012r2-ps/iscsi/Unregister-IscsiSession.md @@ -2,7 +2,7 @@ external help file: iSCSISession.cdxml-help.xml Module Name: iSCSI ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/iscsi/unregister-iscsisession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/unregister-iscsisession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unregister-IscsiSession --- diff --git a/docset/winserver2012r2-ps/iscsi/Update-IscsiTarget.md b/docset/winserver2012r2-ps/iscsi/Update-IscsiTarget.md index 753b4c8d47..ee8be28d90 100644 --- a/docset/winserver2012r2-ps/iscsi/Update-IscsiTarget.md +++ b/docset/winserver2012r2-ps/iscsi/Update-IscsiTarget.md @@ -2,7 +2,7 @@ external help file: iSCSITarget.cdxml-help.xml Module Name: iSCSI ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/iscsi/update-iscsitarget?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/update-iscsitarget?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-IscsiTarget --- diff --git a/docset/winserver2012r2-ps/iscsi/Update-IscsiTargetPortal.md b/docset/winserver2012r2-ps/iscsi/Update-IscsiTargetPortal.md index 2ab962a4ec..8e850c05df 100644 --- a/docset/winserver2012r2-ps/iscsi/Update-IscsiTargetPortal.md +++ b/docset/winserver2012r2-ps/iscsi/Update-IscsiTargetPortal.md @@ -2,7 +2,7 @@ external help file: iSCSITargetPortal.cdxml-help.xml Module Name: iSCSI ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/iscsi/update-iscsitargetportal?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/update-iscsitargetportal?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-IscsiTargetPortal --- @@ -207,7 +207,7 @@ Accept wildcard characters: False ### -ThrottleLimit Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +If this parameter is omitted or a value of `0` is entered, then Windows PowerShell� calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. The throttle limit applies only to the current cmdlet, not to the session or to the computer. diff --git a/docset/winserver2012r2-ps/iscsitarget/Add-IscsiVirtualDiskTargetMapping.md b/docset/winserver2012r2-ps/iscsitarget/Add-IscsiVirtualDiskTargetMapping.md index 35c448c00e..d998c5d3c1 100644 --- a/docset/winserver2012r2-ps/iscsitarget/Add-IscsiVirtualDiskTargetMapping.md +++ b/docset/winserver2012r2-ps/iscsitarget/Add-IscsiVirtualDiskTargetMapping.md @@ -2,7 +2,7 @@ external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/add-iscsivirtualdisktargetmapping?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/add-iscsivirtualdisktargetmapping?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-IscsiVirtualDiskTargetMapping --- diff --git a/docset/winserver2012r2-ps/iscsitarget/Checkpoint-IscsiVirtualDisk.md b/docset/winserver2012r2-ps/iscsitarget/Checkpoint-IscsiVirtualDisk.md index d8a8b4c7df..63f0ff5d31 100644 --- a/docset/winserver2012r2-ps/iscsitarget/Checkpoint-IscsiVirtualDisk.md +++ b/docset/winserver2012r2-ps/iscsitarget/Checkpoint-IscsiVirtualDisk.md @@ -2,7 +2,7 @@ external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/checkpoint-iscsivirtualdisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/checkpoint-iscsivirtualdisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Checkpoint-IscsiVirtualDisk --- diff --git a/docset/winserver2012r2-ps/iscsitarget/Convert-IscsiVirtualDisk.md b/docset/winserver2012r2-ps/iscsitarget/Convert-IscsiVirtualDisk.md index 40dcb25b98..bc6f5fea03 100644 --- a/docset/winserver2012r2-ps/iscsitarget/Convert-IscsiVirtualDisk.md +++ b/docset/winserver2012r2-ps/iscsitarget/Convert-IscsiVirtualDisk.md @@ -2,7 +2,7 @@ external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/convert-iscsivirtualdisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/convert-iscsivirtualdisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Convert-IscsiVirtualDisk --- diff --git a/docset/winserver2012r2-ps/iscsitarget/Dismount-IscsiVirtualDiskSnapshot.md b/docset/winserver2012r2-ps/iscsitarget/Dismount-IscsiVirtualDiskSnapshot.md index dd50573156..2650da449c 100644 --- a/docset/winserver2012r2-ps/iscsitarget/Dismount-IscsiVirtualDiskSnapshot.md +++ b/docset/winserver2012r2-ps/iscsitarget/Dismount-IscsiVirtualDiskSnapshot.md @@ -2,7 +2,7 @@ external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/dismount-iscsivirtualdisksnapshot?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/dismount-iscsivirtualdisksnapshot?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Dismount-IscsiVirtualDiskSnapshot --- diff --git a/docset/winserver2012r2-ps/iscsitarget/Export-IscsiTargetServerConfiguration.md b/docset/winserver2012r2-ps/iscsitarget/Export-IscsiTargetServerConfiguration.md index bf5b35c691..1821a21e98 100644 --- a/docset/winserver2012r2-ps/iscsitarget/Export-IscsiTargetServerConfiguration.md +++ b/docset/winserver2012r2-ps/iscsitarget/Export-IscsiTargetServerConfiguration.md @@ -2,7 +2,7 @@ external help file: Microsoft.Iscsi.Target.Commands.dll-help.xml Module Name: IscsiTarget ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/export-iscsitargetserverconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/export-iscsitargetserverconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-IscsiTargetServerConfiguration --- diff --git a/docset/winserver2012r2-ps/iscsitarget/Export-IscsiVirtualDiskSnapshot.md b/docset/winserver2012r2-ps/iscsitarget/Export-IscsiVirtualDiskSnapshot.md index e912acd72e..08e112512b 100644 --- a/docset/winserver2012r2-ps/iscsitarget/Export-IscsiVirtualDiskSnapshot.md +++ b/docset/winserver2012r2-ps/iscsitarget/Export-IscsiVirtualDiskSnapshot.md @@ -2,7 +2,7 @@ external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/export-iscsivirtualdisksnapshot?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/export-iscsivirtualdisksnapshot?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-IscsiVirtualDiskSnapshot --- diff --git a/docset/winserver2012r2-ps/iscsitarget/Get-IscsiServerTarget.md b/docset/winserver2012r2-ps/iscsitarget/Get-IscsiServerTarget.md index c98b5c4d88..669021affc 100644 --- a/docset/winserver2012r2-ps/iscsitarget/Get-IscsiServerTarget.md +++ b/docset/winserver2012r2-ps/iscsitarget/Get-IscsiServerTarget.md @@ -2,7 +2,7 @@ external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/get-iscsiservertarget?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/get-iscsiservertarget?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IscsiServerTarget --- diff --git a/docset/winserver2012r2-ps/iscsitarget/Get-IscsiTargetServerSetting.md b/docset/winserver2012r2-ps/iscsitarget/Get-IscsiTargetServerSetting.md index 8e93f57b01..104ee15954 100644 --- a/docset/winserver2012r2-ps/iscsitarget/Get-IscsiTargetServerSetting.md +++ b/docset/winserver2012r2-ps/iscsitarget/Get-IscsiTargetServerSetting.md @@ -2,7 +2,7 @@ external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/get-iscsitargetserversetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/get-iscsitargetserversetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IscsiTargetServerSetting --- diff --git a/docset/winserver2012r2-ps/iscsitarget/Get-IscsiVirtualDisk.md b/docset/winserver2012r2-ps/iscsitarget/Get-IscsiVirtualDisk.md index e1aafebb8c..f10271eaa3 100644 --- a/docset/winserver2012r2-ps/iscsitarget/Get-IscsiVirtualDisk.md +++ b/docset/winserver2012r2-ps/iscsitarget/Get-IscsiVirtualDisk.md @@ -2,7 +2,7 @@ external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/get-iscsivirtualdisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/get-iscsivirtualdisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IscsiVirtualDisk --- diff --git a/docset/winserver2012r2-ps/iscsitarget/Get-IscsiVirtualDiskSnapshot.md b/docset/winserver2012r2-ps/iscsitarget/Get-IscsiVirtualDiskSnapshot.md index 76c6135c6d..fb2be155f9 100644 --- a/docset/winserver2012r2-ps/iscsitarget/Get-IscsiVirtualDiskSnapshot.md +++ b/docset/winserver2012r2-ps/iscsitarget/Get-IscsiVirtualDiskSnapshot.md @@ -2,7 +2,7 @@ external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/get-iscsivirtualdisksnapshot?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/get-iscsivirtualdisksnapshot?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IscsiVirtualDiskSnapshot --- diff --git a/docset/winserver2012r2-ps/iscsitarget/Import-IscsiTargetServerConfiguration.md b/docset/winserver2012r2-ps/iscsitarget/Import-IscsiTargetServerConfiguration.md index 5aaed8179f..8f72ca373c 100644 --- a/docset/winserver2012r2-ps/iscsitarget/Import-IscsiTargetServerConfiguration.md +++ b/docset/winserver2012r2-ps/iscsitarget/Import-IscsiTargetServerConfiguration.md @@ -2,7 +2,7 @@ external help file: Microsoft.Iscsi.Target.Commands.dll-help.xml Module Name: IscsiTarget ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/import-iscsitargetserverconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/import-iscsitargetserverconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-IscsiTargetServerConfiguration --- diff --git a/docset/winserver2012r2-ps/iscsitarget/Import-IscsiVirtualDisk.md b/docset/winserver2012r2-ps/iscsitarget/Import-IscsiVirtualDisk.md index dd94dba2b5..8744c12b79 100644 --- a/docset/winserver2012r2-ps/iscsitarget/Import-IscsiVirtualDisk.md +++ b/docset/winserver2012r2-ps/iscsitarget/Import-IscsiVirtualDisk.md @@ -2,7 +2,7 @@ external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/import-iscsivirtualdisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/import-iscsivirtualdisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-IscsiVirtualDisk --- diff --git a/docset/winserver2012r2-ps/iscsitarget/Mount-IscsiVirtualDiskSnapshot.md b/docset/winserver2012r2-ps/iscsitarget/Mount-IscsiVirtualDiskSnapshot.md index e61d849d82..684fefde92 100644 --- a/docset/winserver2012r2-ps/iscsitarget/Mount-IscsiVirtualDiskSnapshot.md +++ b/docset/winserver2012r2-ps/iscsitarget/Mount-IscsiVirtualDiskSnapshot.md @@ -2,7 +2,7 @@ external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/mount-iscsivirtualdisksnapshot?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/mount-iscsivirtualdisksnapshot?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Mount-IscsiVirtualDiskSnapshot --- diff --git a/docset/winserver2012r2-ps/iscsitarget/New-IscsiServerTarget.md b/docset/winserver2012r2-ps/iscsitarget/New-IscsiServerTarget.md index 6ed0d46bee..89da195d72 100644 --- a/docset/winserver2012r2-ps/iscsitarget/New-IscsiServerTarget.md +++ b/docset/winserver2012r2-ps/iscsitarget/New-IscsiServerTarget.md @@ -2,7 +2,7 @@ external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/new-iscsiservertarget?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/new-iscsiservertarget?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-IscsiServerTarget --- diff --git a/docset/winserver2012r2-ps/iscsitarget/New-IscsiVirtualDisk.md b/docset/winserver2012r2-ps/iscsitarget/New-IscsiVirtualDisk.md index 6a631442fd..df1f8e6c8e 100644 --- a/docset/winserver2012r2-ps/iscsitarget/New-IscsiVirtualDisk.md +++ b/docset/winserver2012r2-ps/iscsitarget/New-IscsiVirtualDisk.md @@ -2,7 +2,7 @@ external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/new-iscsivirtualdisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/new-iscsivirtualdisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-IscsiVirtualDisk --- diff --git a/docset/winserver2012r2-ps/iscsitarget/Remove-IscsiServerTarget.md b/docset/winserver2012r2-ps/iscsitarget/Remove-IscsiServerTarget.md index 9c31a9ab64..8e120e037e 100644 --- a/docset/winserver2012r2-ps/iscsitarget/Remove-IscsiServerTarget.md +++ b/docset/winserver2012r2-ps/iscsitarget/Remove-IscsiServerTarget.md @@ -2,7 +2,7 @@ external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/remove-iscsiservertarget?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/remove-iscsiservertarget?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IscsiServerTarget --- diff --git a/docset/winserver2012r2-ps/iscsitarget/Remove-IscsiVirtualDisk.md b/docset/winserver2012r2-ps/iscsitarget/Remove-IscsiVirtualDisk.md index 1158ee2823..2f049be60d 100644 --- a/docset/winserver2012r2-ps/iscsitarget/Remove-IscsiVirtualDisk.md +++ b/docset/winserver2012r2-ps/iscsitarget/Remove-IscsiVirtualDisk.md @@ -2,7 +2,7 @@ external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/remove-iscsivirtualdisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/remove-iscsivirtualdisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IscsiVirtualDisk --- diff --git a/docset/winserver2012r2-ps/iscsitarget/Remove-IscsiVirtualDiskSnapshot.md b/docset/winserver2012r2-ps/iscsitarget/Remove-IscsiVirtualDiskSnapshot.md index 1690b188ee..7a6e5e814c 100644 --- a/docset/winserver2012r2-ps/iscsitarget/Remove-IscsiVirtualDiskSnapshot.md +++ b/docset/winserver2012r2-ps/iscsitarget/Remove-IscsiVirtualDiskSnapshot.md @@ -2,7 +2,7 @@ external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/remove-iscsivirtualdisksnapshot?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/remove-iscsivirtualdisksnapshot?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IscsiVirtualDiskSnapshot --- diff --git a/docset/winserver2012r2-ps/iscsitarget/Remove-IscsiVirtualDiskTargetMapping.md b/docset/winserver2012r2-ps/iscsitarget/Remove-IscsiVirtualDiskTargetMapping.md index 4eb63eb5d5..ff34d3b47f 100644 --- a/docset/winserver2012r2-ps/iscsitarget/Remove-IscsiVirtualDiskTargetMapping.md +++ b/docset/winserver2012r2-ps/iscsitarget/Remove-IscsiVirtualDiskTargetMapping.md @@ -2,7 +2,7 @@ external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/remove-iscsivirtualdisktargetmapping?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/remove-iscsivirtualdisktargetmapping?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IscsiVirtualDiskTargetMapping --- diff --git a/docset/winserver2012r2-ps/iscsitarget/Resize-IscsiVirtualDisk.md b/docset/winserver2012r2-ps/iscsitarget/Resize-IscsiVirtualDisk.md index 47a9f27345..2280f9fe3c 100644 --- a/docset/winserver2012r2-ps/iscsitarget/Resize-IscsiVirtualDisk.md +++ b/docset/winserver2012r2-ps/iscsitarget/Resize-IscsiVirtualDisk.md @@ -2,7 +2,7 @@ external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/resize-iscsivirtualdisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/resize-iscsivirtualdisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resize-IscsiVirtualDisk --- diff --git a/docset/winserver2012r2-ps/iscsitarget/Restore-IscsiVirtualDisk.md b/docset/winserver2012r2-ps/iscsitarget/Restore-IscsiVirtualDisk.md index f974156508..f58daafa12 100644 --- a/docset/winserver2012r2-ps/iscsitarget/Restore-IscsiVirtualDisk.md +++ b/docset/winserver2012r2-ps/iscsitarget/Restore-IscsiVirtualDisk.md @@ -2,7 +2,7 @@ external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/restore-iscsivirtualdisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/restore-iscsivirtualdisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-IscsiVirtualDisk --- diff --git a/docset/winserver2012r2-ps/iscsitarget/Set-IscsiServerTarget.md b/docset/winserver2012r2-ps/iscsitarget/Set-IscsiServerTarget.md index 664cc92ca1..38ba418d9b 100644 --- a/docset/winserver2012r2-ps/iscsitarget/Set-IscsiServerTarget.md +++ b/docset/winserver2012r2-ps/iscsitarget/Set-IscsiServerTarget.md @@ -2,7 +2,7 @@ external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/set-iscsiservertarget?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/set-iscsiservertarget?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IscsiServerTarget --- diff --git a/docset/winserver2012r2-ps/iscsitarget/Set-IscsiTargetServerSetting.md b/docset/winserver2012r2-ps/iscsitarget/Set-IscsiTargetServerSetting.md index 3a4cd27db2..fd461a9020 100644 --- a/docset/winserver2012r2-ps/iscsitarget/Set-IscsiTargetServerSetting.md +++ b/docset/winserver2012r2-ps/iscsitarget/Set-IscsiTargetServerSetting.md @@ -2,7 +2,7 @@ external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/set-iscsitargetserversetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/set-iscsitargetserversetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IscsiTargetServerSetting --- diff --git a/docset/winserver2012r2-ps/iscsitarget/Set-IscsiVirtualDisk.md b/docset/winserver2012r2-ps/iscsitarget/Set-IscsiVirtualDisk.md index 5c4b9419f4..e454541de4 100644 --- a/docset/winserver2012r2-ps/iscsitarget/Set-IscsiVirtualDisk.md +++ b/docset/winserver2012r2-ps/iscsitarget/Set-IscsiVirtualDisk.md @@ -2,7 +2,7 @@ external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/set-iscsivirtualdisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/set-iscsivirtualdisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IscsiVirtualDisk --- diff --git a/docset/winserver2012r2-ps/iscsitarget/Set-IscsiVirtualDiskSnapshot.md b/docset/winserver2012r2-ps/iscsitarget/Set-IscsiVirtualDiskSnapshot.md index 83a436e711..28e22f0780 100644 --- a/docset/winserver2012r2-ps/iscsitarget/Set-IscsiVirtualDiskSnapshot.md +++ b/docset/winserver2012r2-ps/iscsitarget/Set-IscsiVirtualDiskSnapshot.md @@ -2,7 +2,7 @@ external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/set-iscsivirtualdisksnapshot?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/set-iscsivirtualdisksnapshot?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IscsiVirtualDiskSnapshot --- diff --git a/docset/winserver2012r2-ps/iscsitarget/Stop-IscsiVirtualDiskOperation.md b/docset/winserver2012r2-ps/iscsitarget/Stop-IscsiVirtualDiskOperation.md index b84cea1721..d12d2c83f9 100644 --- a/docset/winserver2012r2-ps/iscsitarget/Stop-IscsiVirtualDiskOperation.md +++ b/docset/winserver2012r2-ps/iscsitarget/Stop-IscsiVirtualDiskOperation.md @@ -2,7 +2,7 @@ external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/stop-iscsivirtualdiskoperation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/stop-iscsivirtualdiskoperation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-IscsiVirtualDiskOperation --- diff --git a/docset/winserver2012r2-ps/kds/Add-KdsRootKey.md b/docset/winserver2012r2-ps/kds/Add-KdsRootKey.md index c643a8bfeb..d7aa27b93c 100644 --- a/docset/winserver2012r2-ps/kds/Add-KdsRootKey.md +++ b/docset/winserver2012r2-ps/kds/Add-KdsRootKey.md @@ -2,7 +2,7 @@ external help file: Microsoft.KeyDistributionService.Cmdlets.dll-Help.xml Module Name: KDS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/kds/add-kdsrootkey?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/kds/add-kdsrootkey?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-KdsRootKey --- diff --git a/docset/winserver2012r2-ps/kds/Clear-KdsCache.md b/docset/winserver2012r2-ps/kds/Clear-KdsCache.md index 2e6106d84e..28faf3912e 100644 --- a/docset/winserver2012r2-ps/kds/Clear-KdsCache.md +++ b/docset/winserver2012r2-ps/kds/Clear-KdsCache.md @@ -2,7 +2,7 @@ external help file: Microsoft.KeyDistributionService.Cmdlets.dll-Help.xml Module Name: KDS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/kds/clear-kdscache?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/kds/clear-kdscache?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-KdsCache --- diff --git a/docset/winserver2012r2-ps/kds/Get-KdsConfiguration.md b/docset/winserver2012r2-ps/kds/Get-KdsConfiguration.md index aad9ab4578..420aad2a3c 100644 --- a/docset/winserver2012r2-ps/kds/Get-KdsConfiguration.md +++ b/docset/winserver2012r2-ps/kds/Get-KdsConfiguration.md @@ -2,7 +2,7 @@ external help file: Microsoft.KeyDistributionService.Cmdlets.dll-Help.xml Module Name: KDS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/kds/get-kdsconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/kds/get-kdsconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-KdsConfiguration --- diff --git a/docset/winserver2012r2-ps/kds/Get-KdsRootKey.md b/docset/winserver2012r2-ps/kds/Get-KdsRootKey.md index 96a8d7bd10..1bfc74bc06 100644 --- a/docset/winserver2012r2-ps/kds/Get-KdsRootKey.md +++ b/docset/winserver2012r2-ps/kds/Get-KdsRootKey.md @@ -2,7 +2,7 @@ external help file: Microsoft.KeyDistributionService.Cmdlets.dll-Help.xml Module Name: KDS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/kds/get-kdsrootkey?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/kds/get-kdsrootkey?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-KdsRootKey --- diff --git a/docset/winserver2012r2-ps/kds/Set-KdsConfiguration.md b/docset/winserver2012r2-ps/kds/Set-KdsConfiguration.md index 8c46511953..cda81c6c7c 100644 --- a/docset/winserver2012r2-ps/kds/Set-KdsConfiguration.md +++ b/docset/winserver2012r2-ps/kds/Set-KdsConfiguration.md @@ -2,7 +2,7 @@ external help file: Microsoft.KeyDistributionService.Cmdlets.dll-Help.xml Module Name: KDS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/kds/set-kdsconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/kds/set-kdsconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-KdsConfiguration --- diff --git a/docset/winserver2012r2-ps/kds/Test-KdsRootKey.md b/docset/winserver2012r2-ps/kds/Test-KdsRootKey.md index 0ce231cff6..5b6ab0dca5 100644 --- a/docset/winserver2012r2-ps/kds/Test-KdsRootKey.md +++ b/docset/winserver2012r2-ps/kds/Test-KdsRootKey.md @@ -2,7 +2,7 @@ external help file: Microsoft.KeyDistributionService.Cmdlets.dll-Help.xml Module Name: KDS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/kds/test-kdsrootkey?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/kds/test-kdsrootkey?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-KdsRootKey --- diff --git a/docset/winserver2012r2-ps/mmagent/Debug-MMAppPrelaunch.md b/docset/winserver2012r2-ps/mmagent/Debug-MMAppPrelaunch.md index ebf0767056..dfe7e0a02f 100644 --- a/docset/winserver2012r2-ps/mmagent/Debug-MMAppPrelaunch.md +++ b/docset/winserver2012r2-ps/mmagent/Debug-MMAppPrelaunch.md @@ -2,7 +2,7 @@ external help file: ps_mmagent_v1.0.cdxml-help.xml Module Name: MMAgent ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/mmagent/debug-mmappprelaunch?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mmagent/debug-mmappprelaunch?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Debug-MMAppPrelaunch --- diff --git a/docset/winserver2012r2-ps/mmagent/Disable-MMAgent.md b/docset/winserver2012r2-ps/mmagent/Disable-MMAgent.md index c2fb1420d1..4f7178acba 100644 --- a/docset/winserver2012r2-ps/mmagent/Disable-MMAgent.md +++ b/docset/winserver2012r2-ps/mmagent/Disable-MMAgent.md @@ -2,7 +2,7 @@ external help file: ps_mmagent_v1.0.cdxml-help.xml Module Name: MMAgent ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/mmagent/disable-mmagent?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mmagent/disable-mmagent?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-MMAgent --- diff --git a/docset/winserver2012r2-ps/mmagent/Enable-MMAgent.md b/docset/winserver2012r2-ps/mmagent/Enable-MMAgent.md index 4fbfe7d1a8..7de8d12d52 100644 --- a/docset/winserver2012r2-ps/mmagent/Enable-MMAgent.md +++ b/docset/winserver2012r2-ps/mmagent/Enable-MMAgent.md @@ -2,7 +2,7 @@ external help file: ps_mmagent_v1.0.cdxml-help.xml Module Name: MMAgent ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/mmagent/enable-mmagent?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mmagent/enable-mmagent?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-MMAgent --- diff --git a/docset/winserver2012r2-ps/mmagent/Get-MMAgent.md b/docset/winserver2012r2-ps/mmagent/Get-MMAgent.md index f51e755ddc..d890c949cd 100644 --- a/docset/winserver2012r2-ps/mmagent/Get-MMAgent.md +++ b/docset/winserver2012r2-ps/mmagent/Get-MMAgent.md @@ -2,7 +2,7 @@ external help file: ps_mmagent_v1.0.cdxml-help.xml Module Name: MMAgent ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/mmagent/get-mmagent?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mmagent/get-mmagent?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MMAgent --- diff --git a/docset/winserver2012r2-ps/mmagent/Set-MMAgent.md b/docset/winserver2012r2-ps/mmagent/Set-MMAgent.md index be6521c3bd..8d63f9e6ed 100644 --- a/docset/winserver2012r2-ps/mmagent/Set-MMAgent.md +++ b/docset/winserver2012r2-ps/mmagent/Set-MMAgent.md @@ -2,7 +2,7 @@ external help file: ps_mmagent_v1.0.cdxml-help.xml Module Name: MMAgent ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/mmagent/set-mmagent?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mmagent/set-mmagent?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-MMAgent --- diff --git a/docset/winserver2012r2-ps/mpio/Clear-MSDSMSupportedHW.md b/docset/winserver2012r2-ps/mpio/Clear-MSDSMSupportedHW.md index 03b6f8e6cc..db934a9882 100644 --- a/docset/winserver2012r2-ps/mpio/Clear-MSDSMSupportedHW.md +++ b/docset/winserver2012r2-ps/mpio/Clear-MSDSMSupportedHW.md @@ -2,7 +2,7 @@ external help file: MSDSMSupportedHW.cdxml-help.xml Module Name: MPIO ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/mpio/clear-msdsmsupportedhw?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/clear-msdsmsupportedhw?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-MSDSMSupportedHW --- diff --git a/docset/winserver2012r2-ps/mpio/Disable-MSDSMAutomaticClaim.md b/docset/winserver2012r2-ps/mpio/Disable-MSDSMAutomaticClaim.md index d21672d3d9..bc27ad1f34 100644 --- a/docset/winserver2012r2-ps/mpio/Disable-MSDSMAutomaticClaim.md +++ b/docset/winserver2012r2-ps/mpio/Disable-MSDSMAutomaticClaim.md @@ -2,7 +2,7 @@ external help file: Mpio-help.xml Module Name: MPIO ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/mpio/disable-msdsmautomaticclaim?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/disable-msdsmautomaticclaim?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-MSDSMAutomaticClaim --- diff --git a/docset/winserver2012r2-ps/mpio/Enable-MSDSMAutomaticClaim.md b/docset/winserver2012r2-ps/mpio/Enable-MSDSMAutomaticClaim.md index 86eada6507..ec5f420287 100644 --- a/docset/winserver2012r2-ps/mpio/Enable-MSDSMAutomaticClaim.md +++ b/docset/winserver2012r2-ps/mpio/Enable-MSDSMAutomaticClaim.md @@ -2,7 +2,7 @@ external help file: Mpio-help.xml Module Name: MPIO ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/mpio/enable-msdsmautomaticclaim?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/enable-msdsmautomaticclaim?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-MSDSMAutomaticClaim --- diff --git a/docset/winserver2012r2-ps/mpio/Get-MPIOAvailableHW.md b/docset/winserver2012r2-ps/mpio/Get-MPIOAvailableHW.md index 2be9fe68ca..c3bad4a27a 100644 --- a/docset/winserver2012r2-ps/mpio/Get-MPIOAvailableHW.md +++ b/docset/winserver2012r2-ps/mpio/Get-MPIOAvailableHW.md @@ -2,7 +2,7 @@ external help file: MPIOAvailableHW.cdxml-help.xml Module Name: MPIO ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/mpio/get-mpioavailablehw?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/get-mpioavailablehw?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MPIOAvailableHW --- diff --git a/docset/winserver2012r2-ps/mpio/Get-MPIOSetting.md b/docset/winserver2012r2-ps/mpio/Get-MPIOSetting.md index b5cbfc57cb..52a4510f87 100644 --- a/docset/winserver2012r2-ps/mpio/Get-MPIOSetting.md +++ b/docset/winserver2012r2-ps/mpio/Get-MPIOSetting.md @@ -2,7 +2,7 @@ external help file: Mpio-help.xml Module Name: MPIO ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/mpio/get-mpiosetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/get-mpiosetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MPIOSetting --- diff --git a/docset/winserver2012r2-ps/mpio/Get-MSDSMAutomaticClaimSettings.md b/docset/winserver2012r2-ps/mpio/Get-MSDSMAutomaticClaimSettings.md index 863b8fce70..4110f919b6 100644 --- a/docset/winserver2012r2-ps/mpio/Get-MSDSMAutomaticClaimSettings.md +++ b/docset/winserver2012r2-ps/mpio/Get-MSDSMAutomaticClaimSettings.md @@ -2,7 +2,7 @@ external help file: Mpio-help.xml Module Name: MPIO ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/mpio/get-msdsmautomaticclaimsettings?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/get-msdsmautomaticclaimsettings?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MSDSMAutomaticClaimSettings --- diff --git a/docset/winserver2012r2-ps/mpio/Get-MSDSMGlobalDefaultLoadBalancePolicy.md b/docset/winserver2012r2-ps/mpio/Get-MSDSMGlobalDefaultLoadBalancePolicy.md index e13bcccfcf..8f2050ce8e 100644 --- a/docset/winserver2012r2-ps/mpio/Get-MSDSMGlobalDefaultLoadBalancePolicy.md +++ b/docset/winserver2012r2-ps/mpio/Get-MSDSMGlobalDefaultLoadBalancePolicy.md @@ -2,7 +2,7 @@ external help file: Mpio-help.xml Module Name: MPIO ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/mpio/get-msdsmglobaldefaultloadbalancepolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/get-msdsmglobaldefaultloadbalancepolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MSDSMGlobalDefaultLoadBalancePolicy --- diff --git a/docset/winserver2012r2-ps/mpio/Get-MSDSMSupportedHW.md b/docset/winserver2012r2-ps/mpio/Get-MSDSMSupportedHW.md index 161fdcaab0..fbc310867d 100644 --- a/docset/winserver2012r2-ps/mpio/Get-MSDSMSupportedHW.md +++ b/docset/winserver2012r2-ps/mpio/Get-MSDSMSupportedHW.md @@ -2,7 +2,7 @@ external help file: MSDSMSupportedHW.cdxml-help.xml Module Name: MPIO ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/mpio/get-msdsmsupportedhw?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/get-msdsmsupportedhw?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MSDSMSupportedHW --- diff --git a/docset/winserver2012r2-ps/mpio/New-MSDSMSupportedHW.md b/docset/winserver2012r2-ps/mpio/New-MSDSMSupportedHW.md index 881314a94d..741c137955 100644 --- a/docset/winserver2012r2-ps/mpio/New-MSDSMSupportedHW.md +++ b/docset/winserver2012r2-ps/mpio/New-MSDSMSupportedHW.md @@ -2,7 +2,7 @@ external help file: MSDSMSupportedHW.cdxml-help.xml Module Name: MPIO ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/mpio/new-msdsmsupportedhw?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/new-msdsmsupportedhw?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-MSDSMSupportedHW --- diff --git a/docset/winserver2012r2-ps/mpio/Remove-MSDSMSupportedHW.md b/docset/winserver2012r2-ps/mpio/Remove-MSDSMSupportedHW.md index 0a5d643372..47ea14c071 100644 --- a/docset/winserver2012r2-ps/mpio/Remove-MSDSMSupportedHW.md +++ b/docset/winserver2012r2-ps/mpio/Remove-MSDSMSupportedHW.md @@ -2,7 +2,7 @@ external help file: MSDSMSupportedHW.cdxml-help.xml Module Name: MPIO ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/mpio/remove-msdsmsupportedhw?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/remove-msdsmsupportedhw?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-MSDSMSupportedHW --- diff --git a/docset/winserver2012r2-ps/mpio/Set-MPIOSetting.md b/docset/winserver2012r2-ps/mpio/Set-MPIOSetting.md index 1b683f7634..e0793baafe 100644 --- a/docset/winserver2012r2-ps/mpio/Set-MPIOSetting.md +++ b/docset/winserver2012r2-ps/mpio/Set-MPIOSetting.md @@ -2,7 +2,7 @@ external help file: Mpio-help.xml Module Name: MPIO ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/mpio/set-mpiosetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/set-mpiosetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-MPIOSetting --- diff --git a/docset/winserver2012r2-ps/mpio/Set-MSDSMGlobalDefaultLoadBalancePolicy.md b/docset/winserver2012r2-ps/mpio/Set-MSDSMGlobalDefaultLoadBalancePolicy.md index 1ec6634b31..2c458b416b 100644 --- a/docset/winserver2012r2-ps/mpio/Set-MSDSMGlobalDefaultLoadBalancePolicy.md +++ b/docset/winserver2012r2-ps/mpio/Set-MSDSMGlobalDefaultLoadBalancePolicy.md @@ -2,7 +2,7 @@ external help file: Mpio-help.xml Module Name: MPIO ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/mpio/set-msdsmglobaldefaultloadbalancepolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/set-msdsmglobaldefaultloadbalancepolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-MSDSMGlobalDefaultLoadBalancePolicy --- diff --git a/docset/winserver2012r2-ps/mpio/Update-MPIOClaimedHW.md b/docset/winserver2012r2-ps/mpio/Update-MPIOClaimedHW.md index 38686d7687..b17703b8e6 100644 --- a/docset/winserver2012r2-ps/mpio/Update-MPIOClaimedHW.md +++ b/docset/winserver2012r2-ps/mpio/Update-MPIOClaimedHW.md @@ -2,7 +2,7 @@ external help file: MPIOClaimedHW.cdxml-help.xml Module Name: MPIO ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/mpio/update-mpioclaimedhw?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/update-mpioclaimedhw?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-MPIOClaimedHW --- diff --git a/docset/winserver2012r2-ps/msdtc/Add-DtcClusterTMMapping.md b/docset/winserver2012r2-ps/msdtc/Add-DtcClusterTMMapping.md index aa49873cab..8fc5b02ef2 100644 --- a/docset/winserver2012r2-ps/msdtc/Add-DtcClusterTMMapping.md +++ b/docset/winserver2012r2-ps/msdtc/Add-DtcClusterTMMapping.md @@ -2,7 +2,7 @@ external help file: MSFT_DtcClusterTMMappingTask_v1.0.cdxml-help.xml Module Name: MsDTC ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/msdtc/add-dtcclustertmmapping?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/add-dtcclustertmmapping?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DtcClusterTMMapping --- diff --git a/docset/winserver2012r2-ps/msdtc/Complete-DtcDiagnosticTransaction.md b/docset/winserver2012r2-ps/msdtc/Complete-DtcDiagnosticTransaction.md index 93d997b017..afa05691cb 100644 --- a/docset/winserver2012r2-ps/msdtc/Complete-DtcDiagnosticTransaction.md +++ b/docset/winserver2012r2-ps/msdtc/Complete-DtcDiagnosticTransaction.md @@ -2,7 +2,7 @@ external help file: Microsoft.Dtc.PowerShell.dll-Help.xml Module Name: MsDTC ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/msdtc/complete-dtcdiagnostictransaction?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/complete-dtcdiagnostictransaction?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Complete-DtcDiagnosticTransaction --- diff --git a/docset/winserver2012r2-ps/msdtc/Get-Dtc.md b/docset/winserver2012r2-ps/msdtc/Get-Dtc.md index 2ee5c0e072..4c4413897a 100644 --- a/docset/winserver2012r2-ps/msdtc/Get-Dtc.md +++ b/docset/winserver2012r2-ps/msdtc/Get-Dtc.md @@ -2,7 +2,7 @@ external help file: MSFT_DtcTask_v1.0.cdxml-help.xml Module Name: MsDTC ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtc?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtc?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-Dtc --- diff --git a/docset/winserver2012r2-ps/msdtc/Get-DtcAdvancedHostSetting.md b/docset/winserver2012r2-ps/msdtc/Get-DtcAdvancedHostSetting.md index 90367c3197..85153e0d79 100644 --- a/docset/winserver2012r2-ps/msdtc/Get-DtcAdvancedHostSetting.md +++ b/docset/winserver2012r2-ps/msdtc/Get-DtcAdvancedHostSetting.md @@ -2,7 +2,7 @@ external help file: MSFT_DtcAdvancedHostSettingTask_v1.0.cdxml-help.xml Module Name: MsDTC ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtcadvancedhostsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtcadvancedhostsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DtcAdvancedHostSetting --- diff --git a/docset/winserver2012r2-ps/msdtc/Get-DtcAdvancedSetting.md b/docset/winserver2012r2-ps/msdtc/Get-DtcAdvancedSetting.md index 0629277ec3..3bed32d91d 100644 --- a/docset/winserver2012r2-ps/msdtc/Get-DtcAdvancedSetting.md +++ b/docset/winserver2012r2-ps/msdtc/Get-DtcAdvancedSetting.md @@ -2,7 +2,7 @@ external help file: MSFT_DtcAdvancedSettingTask_v1.0.cdxml-help.xml Module Name: MsDTC ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtcadvancedsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtcadvancedsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DtcAdvancedSetting --- diff --git a/docset/winserver2012r2-ps/msdtc/Get-DtcClusterDefault.md b/docset/winserver2012r2-ps/msdtc/Get-DtcClusterDefault.md index fc28e612ee..9b92759ec5 100644 --- a/docset/winserver2012r2-ps/msdtc/Get-DtcClusterDefault.md +++ b/docset/winserver2012r2-ps/msdtc/Get-DtcClusterDefault.md @@ -2,7 +2,7 @@ external help file: MSFT_DtcClusterDefaultTask_v1.0.cdxml-help.xml Module Name: MsDTC ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtcclusterdefault?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtcclusterdefault?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DtcClusterDefault --- diff --git a/docset/winserver2012r2-ps/msdtc/Get-DtcClusterTMMapping.md b/docset/winserver2012r2-ps/msdtc/Get-DtcClusterTMMapping.md index ae8e07d85a..0f11a95b75 100644 --- a/docset/winserver2012r2-ps/msdtc/Get-DtcClusterTMMapping.md +++ b/docset/winserver2012r2-ps/msdtc/Get-DtcClusterTMMapping.md @@ -2,7 +2,7 @@ external help file: MSFT_DtcClusterTMMappingTask_v1.0.cdxml-help.xml Module Name: MsDTC ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtcclustertmmapping?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtcclustertmmapping?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DtcClusterTMMapping --- diff --git a/docset/winserver2012r2-ps/msdtc/Get-DtcDefault.md b/docset/winserver2012r2-ps/msdtc/Get-DtcDefault.md index 9aecf3329f..d6b26b72b8 100644 --- a/docset/winserver2012r2-ps/msdtc/Get-DtcDefault.md +++ b/docset/winserver2012r2-ps/msdtc/Get-DtcDefault.md @@ -2,7 +2,7 @@ external help file: MSFT_DtcDefaultTask_v1.0.cdxml-help.xml Module Name: MsDTC ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtcdefault?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtcdefault?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DtcDefault --- diff --git a/docset/winserver2012r2-ps/msdtc/Get-DtcLog.md b/docset/winserver2012r2-ps/msdtc/Get-DtcLog.md index 7d48cda163..6f0fbee3e5 100644 --- a/docset/winserver2012r2-ps/msdtc/Get-DtcLog.md +++ b/docset/winserver2012r2-ps/msdtc/Get-DtcLog.md @@ -2,7 +2,7 @@ external help file: MSFT_DtcLogTask_v1.0.cdxml-help.xml Module Name: MsDTC ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtclog?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtclog?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DtcLog --- diff --git a/docset/winserver2012r2-ps/msdtc/Get-DtcNetworkSetting.md b/docset/winserver2012r2-ps/msdtc/Get-DtcNetworkSetting.md index b5f42e09a3..b6b24f2ab7 100644 --- a/docset/winserver2012r2-ps/msdtc/Get-DtcNetworkSetting.md +++ b/docset/winserver2012r2-ps/msdtc/Get-DtcNetworkSetting.md @@ -2,7 +2,7 @@ external help file: MSFT_DtcNetworkSettingTask_v1.0.cdxml-help.xml Module Name: MsDTC ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtcnetworksetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtcnetworksetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DtcNetworkSetting --- diff --git a/docset/winserver2012r2-ps/msdtc/Get-DtcTransaction.md b/docset/winserver2012r2-ps/msdtc/Get-DtcTransaction.md index 024dc99cce..27e966ba87 100644 --- a/docset/winserver2012r2-ps/msdtc/Get-DtcTransaction.md +++ b/docset/winserver2012r2-ps/msdtc/Get-DtcTransaction.md @@ -2,7 +2,7 @@ external help file: MSFT_DtcTransactionTask_v1.0.cdxml-help.xml Module Name: MsDTC ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtctransaction?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtctransaction?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DtcTransaction --- diff --git a/docset/winserver2012r2-ps/msdtc/Get-DtcTransactionsStatistics.md b/docset/winserver2012r2-ps/msdtc/Get-DtcTransactionsStatistics.md index 24f340b2ef..9d5b15d3bc 100644 --- a/docset/winserver2012r2-ps/msdtc/Get-DtcTransactionsStatistics.md +++ b/docset/winserver2012r2-ps/msdtc/Get-DtcTransactionsStatistics.md @@ -2,7 +2,7 @@ external help file: MSFT_DtcTransactionsStatisticsTask_v1.0.cdxml-help.xml Module Name: MsDTC ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtctransactionsstatistics?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtctransactionsstatistics?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DtcTransactionsStatistics --- diff --git a/docset/winserver2012r2-ps/msdtc/Get-DtcTransactionsTraceSession.md b/docset/winserver2012r2-ps/msdtc/Get-DtcTransactionsTraceSession.md index ef274afd02..f3cf8da1d8 100644 --- a/docset/winserver2012r2-ps/msdtc/Get-DtcTransactionsTraceSession.md +++ b/docset/winserver2012r2-ps/msdtc/Get-DtcTransactionsTraceSession.md @@ -2,7 +2,7 @@ external help file: MSFT_DtcTransactionsTraceSessionTask_v1.0.cdxml-help.xml Module Name: MsDTC ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtctransactionstracesession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtctransactionstracesession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DtcTransactionsTraceSession --- diff --git a/docset/winserver2012r2-ps/msdtc/Get-DtcTransactionsTraceSetting.md b/docset/winserver2012r2-ps/msdtc/Get-DtcTransactionsTraceSetting.md index cf0ef1caf1..59338afc28 100644 --- a/docset/winserver2012r2-ps/msdtc/Get-DtcTransactionsTraceSetting.md +++ b/docset/winserver2012r2-ps/msdtc/Get-DtcTransactionsTraceSetting.md @@ -2,7 +2,7 @@ external help file: MSFT_DtcTransactionsTraceSettingTask_v1.0.cdxml-help.xml Module Name: MsDTC ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtctransactionstracesetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtctransactionstracesetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DtcTransactionsTraceSetting --- diff --git a/docset/winserver2012r2-ps/msdtc/Install-Dtc.md b/docset/winserver2012r2-ps/msdtc/Install-Dtc.md index 3d51deea68..a019e98d61 100644 --- a/docset/winserver2012r2-ps/msdtc/Install-Dtc.md +++ b/docset/winserver2012r2-ps/msdtc/Install-Dtc.md @@ -2,7 +2,7 @@ external help file: MSFT_DtcTask_v1.0.cdxml-help.xml Module Name: MsDTC ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/msdtc/install-dtc?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/install-dtc?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-Dtc --- diff --git a/docset/winserver2012r2-ps/msdtc/Join-DtcDiagnosticResourceManager.md b/docset/winserver2012r2-ps/msdtc/Join-DtcDiagnosticResourceManager.md index 68f7fc56a2..d493b02f21 100644 --- a/docset/winserver2012r2-ps/msdtc/Join-DtcDiagnosticResourceManager.md +++ b/docset/winserver2012r2-ps/msdtc/Join-DtcDiagnosticResourceManager.md @@ -2,7 +2,7 @@ external help file: Microsoft.Dtc.PowerShell.dll-Help.xml Module Name: MsDTC ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/msdtc/join-dtcdiagnosticresourcemanager?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/join-dtcdiagnosticresourcemanager?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Join-DtcDiagnosticResourceManager --- diff --git a/docset/winserver2012r2-ps/msdtc/New-DtcDiagnosticTransaction.md b/docset/winserver2012r2-ps/msdtc/New-DtcDiagnosticTransaction.md index e6c4f2a0db..159cd41368 100644 --- a/docset/winserver2012r2-ps/msdtc/New-DtcDiagnosticTransaction.md +++ b/docset/winserver2012r2-ps/msdtc/New-DtcDiagnosticTransaction.md @@ -2,7 +2,7 @@ external help file: Microsoft.Dtc.PowerShell.dll-Help.xml Module Name: MsDTC ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/msdtc/new-dtcdiagnostictransaction?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/new-dtcdiagnostictransaction?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-DtcDiagnosticTransaction --- diff --git a/docset/winserver2012r2-ps/msdtc/Receive-DtcDiagnosticTransaction.md b/docset/winserver2012r2-ps/msdtc/Receive-DtcDiagnosticTransaction.md index b7f688bfb2..c770fbd9cc 100644 --- a/docset/winserver2012r2-ps/msdtc/Receive-DtcDiagnosticTransaction.md +++ b/docset/winserver2012r2-ps/msdtc/Receive-DtcDiagnosticTransaction.md @@ -2,7 +2,7 @@ external help file: Microsoft.Dtc.PowerShell.dll-Help.xml Module Name: MsDTC ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/msdtc/receive-dtcdiagnostictransaction?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/receive-dtcdiagnostictransaction?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Receive-DtcDiagnosticTransaction --- diff --git a/docset/winserver2012r2-ps/msdtc/Remove-DtcClusterTMMapping.md b/docset/winserver2012r2-ps/msdtc/Remove-DtcClusterTMMapping.md index cf6b38fcce..8ed4f4332e 100644 --- a/docset/winserver2012r2-ps/msdtc/Remove-DtcClusterTMMapping.md +++ b/docset/winserver2012r2-ps/msdtc/Remove-DtcClusterTMMapping.md @@ -2,7 +2,7 @@ external help file: MSFT_DtcClusterTMMappingTask_v1.0.cdxml-help.xml Module Name: MsDTC ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/msdtc/remove-dtcclustertmmapping?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/remove-dtcclustertmmapping?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DtcClusterTMMapping --- diff --git a/docset/winserver2012r2-ps/msdtc/Reset-DtcLog.md b/docset/winserver2012r2-ps/msdtc/Reset-DtcLog.md index e63c12b5b2..19ef68789d 100644 --- a/docset/winserver2012r2-ps/msdtc/Reset-DtcLog.md +++ b/docset/winserver2012r2-ps/msdtc/Reset-DtcLog.md @@ -2,7 +2,7 @@ external help file: MSFT_DtcLogTask_v1.0.cdxml-help.xml Module Name: MsDTC ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/msdtc/reset-dtclog?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/reset-dtclog?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-DtcLog --- diff --git a/docset/winserver2012r2-ps/msdtc/Send-DtcDiagnosticTransaction.md b/docset/winserver2012r2-ps/msdtc/Send-DtcDiagnosticTransaction.md index 3a59df4c39..2d6a1bb132 100644 --- a/docset/winserver2012r2-ps/msdtc/Send-DtcDiagnosticTransaction.md +++ b/docset/winserver2012r2-ps/msdtc/Send-DtcDiagnosticTransaction.md @@ -2,7 +2,7 @@ external help file: Microsoft.Dtc.PowerShell.dll-Help.xml Module Name: MsDTC ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/msdtc/send-dtcdiagnostictransaction?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/send-dtcdiagnostictransaction?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Send-DtcDiagnosticTransaction --- diff --git a/docset/winserver2012r2-ps/msdtc/Set-DtcAdvancedHostSetting.md b/docset/winserver2012r2-ps/msdtc/Set-DtcAdvancedHostSetting.md index 33fc10b6b3..03ed3b4dd5 100644 --- a/docset/winserver2012r2-ps/msdtc/Set-DtcAdvancedHostSetting.md +++ b/docset/winserver2012r2-ps/msdtc/Set-DtcAdvancedHostSetting.md @@ -2,7 +2,7 @@ external help file: MSFT_DtcAdvancedHostSettingTask_v1.0.cdxml-help.xml Module Name: MsDTC ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/msdtc/set-dtcadvancedhostsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/set-dtcadvancedhostsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DtcAdvancedHostSetting --- diff --git a/docset/winserver2012r2-ps/msdtc/Set-DtcAdvancedSetting.md b/docset/winserver2012r2-ps/msdtc/Set-DtcAdvancedSetting.md index bae986ed4e..e34a0d9357 100644 --- a/docset/winserver2012r2-ps/msdtc/Set-DtcAdvancedSetting.md +++ b/docset/winserver2012r2-ps/msdtc/Set-DtcAdvancedSetting.md @@ -2,7 +2,7 @@ external help file: MSFT_DtcAdvancedSettingTask_v1.0.cdxml-help.xml Module Name: MsDTC ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/msdtc/set-dtcadvancedsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/set-dtcadvancedsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DtcAdvancedSetting --- diff --git a/docset/winserver2012r2-ps/msdtc/Set-DtcClusterDefault.md b/docset/winserver2012r2-ps/msdtc/Set-DtcClusterDefault.md index c6a26bb0ed..dabe5b65cd 100644 --- a/docset/winserver2012r2-ps/msdtc/Set-DtcClusterDefault.md +++ b/docset/winserver2012r2-ps/msdtc/Set-DtcClusterDefault.md @@ -2,7 +2,7 @@ external help file: MSFT_DtcClusterDefaultTask_v1.0.cdxml-help.xml Module Name: MsDTC ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/msdtc/set-dtcclusterdefault?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/set-dtcclusterdefault?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DtcClusterDefault --- diff --git a/docset/winserver2012r2-ps/msdtc/Set-DtcClusterTMMapping.md b/docset/winserver2012r2-ps/msdtc/Set-DtcClusterTMMapping.md index 58c6511333..670864bdd0 100644 --- a/docset/winserver2012r2-ps/msdtc/Set-DtcClusterTMMapping.md +++ b/docset/winserver2012r2-ps/msdtc/Set-DtcClusterTMMapping.md @@ -2,7 +2,7 @@ external help file: MSFT_DtcClusterTMMappingTask_v1.0.cdxml-help.xml Module Name: MsDTC ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/msdtc/set-dtcclustertmmapping?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/set-dtcclustertmmapping?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DtcClusterTMMapping --- diff --git a/docset/winserver2012r2-ps/msdtc/Set-DtcDefault.md b/docset/winserver2012r2-ps/msdtc/Set-DtcDefault.md index 99a7aa91f0..9a79fcf3fb 100644 --- a/docset/winserver2012r2-ps/msdtc/Set-DtcDefault.md +++ b/docset/winserver2012r2-ps/msdtc/Set-DtcDefault.md @@ -2,7 +2,7 @@ external help file: MSFT_DtcDefaultTask_v1.0.cdxml-help.xml Module Name: MsDTC ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/msdtc/set-dtcdefault?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/set-dtcdefault?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DtcDefault --- diff --git a/docset/winserver2012r2-ps/msdtc/Set-DtcLog.md b/docset/winserver2012r2-ps/msdtc/Set-DtcLog.md index 78aba296a1..02e6ea0b0f 100644 --- a/docset/winserver2012r2-ps/msdtc/Set-DtcLog.md +++ b/docset/winserver2012r2-ps/msdtc/Set-DtcLog.md @@ -2,7 +2,7 @@ external help file: MSFT_DtcLogTask_v1.0.cdxml-help.xml Module Name: MsDTC ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/msdtc/set-dtclog?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/set-dtclog?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DtcLog --- diff --git a/docset/winserver2012r2-ps/msdtc/Set-DtcNetworkSetting.md b/docset/winserver2012r2-ps/msdtc/Set-DtcNetworkSetting.md index 8207f9de4e..d6b06c45ab 100644 --- a/docset/winserver2012r2-ps/msdtc/Set-DtcNetworkSetting.md +++ b/docset/winserver2012r2-ps/msdtc/Set-DtcNetworkSetting.md @@ -2,7 +2,7 @@ external help file: MSFT_DtcNetworkSettingTask_v1.0.cdxml-help.xml Module Name: MsDTC ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/msdtc/set-dtcnetworksetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/set-dtcnetworksetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DtcNetworkSetting --- diff --git a/docset/winserver2012r2-ps/msdtc/Set-DtcTransaction.md b/docset/winserver2012r2-ps/msdtc/Set-DtcTransaction.md index 9e595d9af6..8fa0dc4920 100644 --- a/docset/winserver2012r2-ps/msdtc/Set-DtcTransaction.md +++ b/docset/winserver2012r2-ps/msdtc/Set-DtcTransaction.md @@ -2,7 +2,7 @@ external help file: MSFT_DtcTransactionTask_v1.0.cdxml-help.xml Module Name: MsDTC ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/msdtc/set-dtctransaction?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/set-dtctransaction?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DtcTransaction --- diff --git a/docset/winserver2012r2-ps/msdtc/Set-DtcTransactionsTraceSession.md b/docset/winserver2012r2-ps/msdtc/Set-DtcTransactionsTraceSession.md index 4b195416b1..2243189127 100644 --- a/docset/winserver2012r2-ps/msdtc/Set-DtcTransactionsTraceSession.md +++ b/docset/winserver2012r2-ps/msdtc/Set-DtcTransactionsTraceSession.md @@ -2,7 +2,7 @@ external help file: MSFT_DtcTransactionsTraceSessionTask_v1.0.cdxml-help.xml Module Name: MsDTC ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/msdtc/set-dtctransactionstracesession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/set-dtctransactionstracesession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DtcTransactionsTraceSession --- diff --git a/docset/winserver2012r2-ps/msdtc/Set-DtcTransactionsTraceSetting.md b/docset/winserver2012r2-ps/msdtc/Set-DtcTransactionsTraceSetting.md index 037227a80b..3e78cf3b61 100644 --- a/docset/winserver2012r2-ps/msdtc/Set-DtcTransactionsTraceSetting.md +++ b/docset/winserver2012r2-ps/msdtc/Set-DtcTransactionsTraceSetting.md @@ -2,7 +2,7 @@ external help file: MSFT_DtcTransactionsTraceSettingTask_v1.0.cdxml-help.xml Module Name: MsDTC ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/msdtc/set-dtctransactionstracesetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/set-dtctransactionstracesetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DtcTransactionsTraceSetting --- diff --git a/docset/winserver2012r2-ps/msdtc/Start-Dtc.md b/docset/winserver2012r2-ps/msdtc/Start-Dtc.md index db3cb8cd29..1a41b62b5e 100644 --- a/docset/winserver2012r2-ps/msdtc/Start-Dtc.md +++ b/docset/winserver2012r2-ps/msdtc/Start-Dtc.md @@ -2,7 +2,7 @@ external help file: MSFT_DtcTask_v1.0.cdxml-help.xml Module Name: MsDTC ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/msdtc/start-dtc?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/start-dtc?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-Dtc --- diff --git a/docset/winserver2012r2-ps/msdtc/Start-DtcDiagnosticResourceManager.md b/docset/winserver2012r2-ps/msdtc/Start-DtcDiagnosticResourceManager.md index fbfd5a8e5d..f2ab117fa8 100644 --- a/docset/winserver2012r2-ps/msdtc/Start-DtcDiagnosticResourceManager.md +++ b/docset/winserver2012r2-ps/msdtc/Start-DtcDiagnosticResourceManager.md @@ -2,7 +2,7 @@ external help file: Microsoft.Dtc.PowerShell.dll-Help.xml Module Name: MsDTC ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/msdtc/start-dtcdiagnosticresourcemanager?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/start-dtcdiagnosticresourcemanager?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-DtcDiagnosticResourceManager --- diff --git a/docset/winserver2012r2-ps/msdtc/Start-DtcTransactionsTraceSession.md b/docset/winserver2012r2-ps/msdtc/Start-DtcTransactionsTraceSession.md index 279511f830..6bc06fe592 100644 --- a/docset/winserver2012r2-ps/msdtc/Start-DtcTransactionsTraceSession.md +++ b/docset/winserver2012r2-ps/msdtc/Start-DtcTransactionsTraceSession.md @@ -2,7 +2,7 @@ external help file: MSFT_DtcTransactionsTraceSessionTask_v1.0.cdxml-help.xml Module Name: MsDTC ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/msdtc/start-dtctransactionstracesession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/start-dtctransactionstracesession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-DtcTransactionsTraceSession --- diff --git a/docset/winserver2012r2-ps/msdtc/Stop-Dtc.md b/docset/winserver2012r2-ps/msdtc/Stop-Dtc.md index a096763fe6..e4d1860be3 100644 --- a/docset/winserver2012r2-ps/msdtc/Stop-Dtc.md +++ b/docset/winserver2012r2-ps/msdtc/Stop-Dtc.md @@ -2,7 +2,7 @@ external help file: MSFT_DtcTask_v1.0.cdxml-help.xml Module Name: MsDTC ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/msdtc/stop-dtc?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/stop-dtc?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-Dtc --- diff --git a/docset/winserver2012r2-ps/msdtc/Stop-DtcDiagnosticResourceManager.md b/docset/winserver2012r2-ps/msdtc/Stop-DtcDiagnosticResourceManager.md index 7f3cf4b2e8..4ddb702814 100644 --- a/docset/winserver2012r2-ps/msdtc/Stop-DtcDiagnosticResourceManager.md +++ b/docset/winserver2012r2-ps/msdtc/Stop-DtcDiagnosticResourceManager.md @@ -2,7 +2,7 @@ external help file: Microsoft.Dtc.PowerShell.dll-Help.xml Module Name: MsDTC ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/msdtc/stop-dtcdiagnosticresourcemanager?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/stop-dtcdiagnosticresourcemanager?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-DtcDiagnosticResourceManager --- diff --git a/docset/winserver2012r2-ps/msdtc/Stop-DtcTransactionsTraceSession.md b/docset/winserver2012r2-ps/msdtc/Stop-DtcTransactionsTraceSession.md index 1b95905dd5..971d5737aa 100644 --- a/docset/winserver2012r2-ps/msdtc/Stop-DtcTransactionsTraceSession.md +++ b/docset/winserver2012r2-ps/msdtc/Stop-DtcTransactionsTraceSession.md @@ -2,7 +2,7 @@ external help file: MSFT_DtcTransactionsTraceSessionTask_v1.0.cdxml-help.xml Module Name: MsDTC ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/msdtc/stop-dtctransactionstracesession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/stop-dtctransactionstracesession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-DtcTransactionsTraceSession --- diff --git a/docset/winserver2012r2-ps/msdtc/Test-Dtc.md b/docset/winserver2012r2-ps/msdtc/Test-Dtc.md index fa056491a6..bcf2800cb5 100644 --- a/docset/winserver2012r2-ps/msdtc/Test-Dtc.md +++ b/docset/winserver2012r2-ps/msdtc/Test-Dtc.md @@ -2,7 +2,7 @@ external help file: TestDtc-help.xml Module Name: MsDTC ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/msdtc/test-dtc?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/test-dtc?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-Dtc --- diff --git a/docset/winserver2012r2-ps/msdtc/Undo-DtcDiagnosticTransaction.md b/docset/winserver2012r2-ps/msdtc/Undo-DtcDiagnosticTransaction.md index 654fa0b286..192135105f 100644 --- a/docset/winserver2012r2-ps/msdtc/Undo-DtcDiagnosticTransaction.md +++ b/docset/winserver2012r2-ps/msdtc/Undo-DtcDiagnosticTransaction.md @@ -2,7 +2,7 @@ external help file: Microsoft.Dtc.PowerShell.dll-Help.xml Module Name: MsDTC ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/msdtc/undo-dtcdiagnostictransaction?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/undo-dtcdiagnostictransaction?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Undo-DtcDiagnosticTransaction --- diff --git a/docset/winserver2012r2-ps/msdtc/Uninstall-Dtc.md b/docset/winserver2012r2-ps/msdtc/Uninstall-Dtc.md index 6fac769344..c439672085 100644 --- a/docset/winserver2012r2-ps/msdtc/Uninstall-Dtc.md +++ b/docset/winserver2012r2-ps/msdtc/Uninstall-Dtc.md @@ -2,7 +2,7 @@ external help file: MSFT_DtcTask_v1.0.cdxml-help.xml Module Name: MsDTC ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/msdtc/uninstall-dtc?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/uninstall-dtc?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-Dtc --- diff --git a/docset/winserver2012r2-ps/msdtc/Write-DtcTransactionsTraceSession.md b/docset/winserver2012r2-ps/msdtc/Write-DtcTransactionsTraceSession.md index 2a8d151fae..734b6f9455 100644 --- a/docset/winserver2012r2-ps/msdtc/Write-DtcTransactionsTraceSession.md +++ b/docset/winserver2012r2-ps/msdtc/Write-DtcTransactionsTraceSession.md @@ -2,7 +2,7 @@ external help file: MSFT_DtcTransactionsTraceSessionTask_v1.0.cdxml-help.xml Module Name: MsDTC ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/msdtc/write-dtctransactionstracesession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/write-dtctransactionstracesession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Write-DtcTransactionsTraceSession --- diff --git a/docset/winserver2012r2-ps/msmq/Clear-MSMQOutgoingQueue.md b/docset/winserver2012r2-ps/msmq/Clear-MSMQOutgoingQueue.md index 0d1a32c09d..f9b2516620 100644 --- a/docset/winserver2012r2-ps/msmq/Clear-MSMQOutgoingQueue.md +++ b/docset/winserver2012r2-ps/msmq/Clear-MSMQOutgoingQueue.md @@ -2,7 +2,7 @@ external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/msmq/clear-msmqoutgoingqueue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/clear-msmqoutgoingqueue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-MSMQOutgoingQueue --- diff --git a/docset/winserver2012r2-ps/msmq/Clear-MSMQQueue.md b/docset/winserver2012r2-ps/msmq/Clear-MSMQQueue.md index 95549e16b9..c23c63383d 100644 --- a/docset/winserver2012r2-ps/msmq/Clear-MSMQQueue.md +++ b/docset/winserver2012r2-ps/msmq/Clear-MSMQQueue.md @@ -2,7 +2,7 @@ external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/msmq/clear-msmqqueue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/clear-msmqqueue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-MSMQQueue --- diff --git a/docset/winserver2012r2-ps/msmq/Enable-MSMQCertificate.md b/docset/winserver2012r2-ps/msmq/Enable-MSMQCertificate.md index 5a92153cb0..2817d6b5ab 100644 --- a/docset/winserver2012r2-ps/msmq/Enable-MSMQCertificate.md +++ b/docset/winserver2012r2-ps/msmq/Enable-MSMQCertificate.md @@ -2,7 +2,7 @@ external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/msmq/enable-msmqcertificate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/enable-msmqcertificate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-MSMQCertificate --- diff --git a/docset/winserver2012r2-ps/msmq/Get-MSMQCertificate.md b/docset/winserver2012r2-ps/msmq/Get-MSMQCertificate.md index b50b7e217d..0c884664b7 100644 --- a/docset/winserver2012r2-ps/msmq/Get-MSMQCertificate.md +++ b/docset/winserver2012r2-ps/msmq/Get-MSMQCertificate.md @@ -2,7 +2,7 @@ external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/msmq/get-msmqcertificate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/get-msmqcertificate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MSMQCertificate --- diff --git a/docset/winserver2012r2-ps/msmq/Get-MSMQOutgoingQueue.md b/docset/winserver2012r2-ps/msmq/Get-MSMQOutgoingQueue.md index d21bbd79ec..7529b1e01f 100644 --- a/docset/winserver2012r2-ps/msmq/Get-MSMQOutgoingQueue.md +++ b/docset/winserver2012r2-ps/msmq/Get-MSMQOutgoingQueue.md @@ -2,7 +2,7 @@ external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/msmq/get-msmqoutgoingqueue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/get-msmqoutgoingqueue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MSMQOutgoingQueue --- diff --git a/docset/winserver2012r2-ps/msmq/Get-MsmqQueue.md b/docset/winserver2012r2-ps/msmq/Get-MsmqQueue.md index 446fae515e..07dc09fd79 100644 --- a/docset/winserver2012r2-ps/msmq/Get-MsmqQueue.md +++ b/docset/winserver2012r2-ps/msmq/Get-MsmqQueue.md @@ -2,7 +2,7 @@ external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/msmq/get-msmqqueue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/get-msmqqueue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MsmqQueue --- diff --git a/docset/winserver2012r2-ps/msmq/Get-MsmqQueueACL.md b/docset/winserver2012r2-ps/msmq/Get-MsmqQueueACL.md index 4ccd2653a6..695666e1f3 100644 --- a/docset/winserver2012r2-ps/msmq/Get-MsmqQueueACL.md +++ b/docset/winserver2012r2-ps/msmq/Get-MsmqQueueACL.md @@ -2,7 +2,7 @@ external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/msmq/get-msmqqueueacl?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/get-msmqqueueacl?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MsmqQueueACL --- diff --git a/docset/winserver2012r2-ps/msmq/Get-MsmqQueueManager.md b/docset/winserver2012r2-ps/msmq/Get-MsmqQueueManager.md index d3901fd439..4830816aa4 100644 --- a/docset/winserver2012r2-ps/msmq/Get-MsmqQueueManager.md +++ b/docset/winserver2012r2-ps/msmq/Get-MsmqQueueManager.md @@ -2,7 +2,7 @@ external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/msmq/get-msmqqueuemanager?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/get-msmqqueuemanager?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MsmqQueueManager --- diff --git a/docset/winserver2012r2-ps/msmq/Get-MsmqQueueManagerACL.md b/docset/winserver2012r2-ps/msmq/Get-MsmqQueueManagerACL.md index beb80c2a01..1d3ee8ef09 100644 --- a/docset/winserver2012r2-ps/msmq/Get-MsmqQueueManagerACL.md +++ b/docset/winserver2012r2-ps/msmq/Get-MsmqQueueManagerACL.md @@ -2,7 +2,7 @@ external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/msmq/get-msmqqueuemanageracl?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/get-msmqqueuemanageracl?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MsmqQueueManagerACL --- diff --git a/docset/winserver2012r2-ps/msmq/Move-MsmqMessage.md b/docset/winserver2012r2-ps/msmq/Move-MsmqMessage.md index bbe655c2dc..a53a5368e5 100644 --- a/docset/winserver2012r2-ps/msmq/Move-MsmqMessage.md +++ b/docset/winserver2012r2-ps/msmq/Move-MsmqMessage.md @@ -2,7 +2,7 @@ external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/msmq/move-msmqmessage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/move-msmqmessage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-MsmqMessage --- diff --git a/docset/winserver2012r2-ps/msmq/New-MsmqMessage.md b/docset/winserver2012r2-ps/msmq/New-MsmqMessage.md index 209d8fb154..19050bcfa8 100644 --- a/docset/winserver2012r2-ps/msmq/New-MsmqMessage.md +++ b/docset/winserver2012r2-ps/msmq/New-MsmqMessage.md @@ -2,7 +2,7 @@ external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/msmq/new-msmqmessage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/new-msmqmessage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-MsmqMessage --- diff --git a/docset/winserver2012r2-ps/msmq/New-MsmqQueue.md b/docset/winserver2012r2-ps/msmq/New-MsmqQueue.md index f9764f904b..555631461f 100644 --- a/docset/winserver2012r2-ps/msmq/New-MsmqQueue.md +++ b/docset/winserver2012r2-ps/msmq/New-MsmqQueue.md @@ -2,7 +2,7 @@ external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/msmq/new-msmqqueue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/new-msmqqueue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-MsmqQueue --- diff --git a/docset/winserver2012r2-ps/msmq/Receive-MsmqQueue.md b/docset/winserver2012r2-ps/msmq/Receive-MsmqQueue.md index 0b55e85647..4976e9ce93 100644 --- a/docset/winserver2012r2-ps/msmq/Receive-MsmqQueue.md +++ b/docset/winserver2012r2-ps/msmq/Receive-MsmqQueue.md @@ -2,7 +2,7 @@ external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/msmq/receive-msmqqueue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/receive-msmqqueue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Receive-MsmqQueue --- diff --git a/docset/winserver2012r2-ps/msmq/Remove-MsmqCertificate.md b/docset/winserver2012r2-ps/msmq/Remove-MsmqCertificate.md index 045af41810..4c7ba9f633 100644 --- a/docset/winserver2012r2-ps/msmq/Remove-MsmqCertificate.md +++ b/docset/winserver2012r2-ps/msmq/Remove-MsmqCertificate.md @@ -2,7 +2,7 @@ external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/msmq/remove-msmqcertificate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/remove-msmqcertificate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-MsmqCertificate --- diff --git a/docset/winserver2012r2-ps/msmq/Remove-MsmqQueue.md b/docset/winserver2012r2-ps/msmq/Remove-MsmqQueue.md index e7e455d050..46f3c0d011 100644 --- a/docset/winserver2012r2-ps/msmq/Remove-MsmqQueue.md +++ b/docset/winserver2012r2-ps/msmq/Remove-MsmqQueue.md @@ -2,7 +2,7 @@ external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/msmq/remove-msmqqueue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/remove-msmqqueue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-MsmqQueue --- diff --git a/docset/winserver2012r2-ps/msmq/Resume-MsmqOutgoingQueue.md b/docset/winserver2012r2-ps/msmq/Resume-MsmqOutgoingQueue.md index 47f45f942e..cda8aa2b27 100644 --- a/docset/winserver2012r2-ps/msmq/Resume-MsmqOutgoingQueue.md +++ b/docset/winserver2012r2-ps/msmq/Resume-MsmqOutgoingQueue.md @@ -2,7 +2,7 @@ external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/msmq/resume-msmqoutgoingqueue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/resume-msmqoutgoingqueue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-MsmqOutgoingQueue --- diff --git a/docset/winserver2012r2-ps/msmq/Send-MsmqQueue.md b/docset/winserver2012r2-ps/msmq/Send-MsmqQueue.md index 4af1782030..8cf5342721 100644 --- a/docset/winserver2012r2-ps/msmq/Send-MsmqQueue.md +++ b/docset/winserver2012r2-ps/msmq/Send-MsmqQueue.md @@ -2,7 +2,7 @@ external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/msmq/send-msmqqueue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/send-msmqqueue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Send-MsmqQueue --- diff --git a/docset/winserver2012r2-ps/msmq/Set-MsmqQueue.md b/docset/winserver2012r2-ps/msmq/Set-MsmqQueue.md index 658a2a66c6..fd8a231c7a 100644 --- a/docset/winserver2012r2-ps/msmq/Set-MsmqQueue.md +++ b/docset/winserver2012r2-ps/msmq/Set-MsmqQueue.md @@ -2,7 +2,7 @@ external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/msmq/set-msmqqueue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/set-msmqqueue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-MsmqQueue --- diff --git a/docset/winserver2012r2-ps/msmq/Set-MsmqQueueACL.md b/docset/winserver2012r2-ps/msmq/Set-MsmqQueueACL.md index 5c06ac7a3c..274e5469eb 100644 --- a/docset/winserver2012r2-ps/msmq/Set-MsmqQueueACL.md +++ b/docset/winserver2012r2-ps/msmq/Set-MsmqQueueACL.md @@ -2,7 +2,7 @@ external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/msmq/set-msmqqueueacl?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/set-msmqqueueacl?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-MsmqQueueACL --- diff --git a/docset/winserver2012r2-ps/msmq/Set-MsmqQueueManager.md b/docset/winserver2012r2-ps/msmq/Set-MsmqQueueManager.md index fbec59a607..a611f6ac7c 100644 --- a/docset/winserver2012r2-ps/msmq/Set-MsmqQueueManager.md +++ b/docset/winserver2012r2-ps/msmq/Set-MsmqQueueManager.md @@ -2,7 +2,7 @@ external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/msmq/set-msmqqueuemanager?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/set-msmqqueuemanager?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-MsmqQueueManager --- diff --git a/docset/winserver2012r2-ps/msmq/Set-MsmqQueueManagerACL.md b/docset/winserver2012r2-ps/msmq/Set-MsmqQueueManagerACL.md index 277763ce3b..8f76b5e706 100644 --- a/docset/winserver2012r2-ps/msmq/Set-MsmqQueueManagerACL.md +++ b/docset/winserver2012r2-ps/msmq/Set-MsmqQueueManagerACL.md @@ -2,7 +2,7 @@ external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/msmq/set-msmqqueuemanageracl?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/set-msmqqueuemanageracl?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-MsmqQueueManagerACL --- diff --git a/docset/winserver2012r2-ps/msmq/Suspend-MsmqOutgoingQueue.md b/docset/winserver2012r2-ps/msmq/Suspend-MsmqOutgoingQueue.md index 3af0e92519..0db469af44 100644 --- a/docset/winserver2012r2-ps/msmq/Suspend-MsmqOutgoingQueue.md +++ b/docset/winserver2012r2-ps/msmq/Suspend-MsmqOutgoingQueue.md @@ -2,7 +2,7 @@ external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/msmq/suspend-msmqoutgoingqueue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/suspend-msmqoutgoingqueue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-MsmqOutgoingQueue --- diff --git a/docset/winserver2012r2-ps/multipoint/Clear-WmsStation.md b/docset/winserver2012r2-ps/multipoint/Clear-WmsStation.md index aefccdb6f0..08936c35ca 100644 --- a/docset/winserver2012r2-ps/multipoint/Clear-WmsStation.md +++ b/docset/winserver2012r2-ps/multipoint/Clear-WmsStation.md @@ -2,7 +2,7 @@ external help file: WmsCmdlets.dll-Help.xml Module Name: MultiPoint ms.date: 12/06/2017 -online version: https://docs.microsoft.com/powershell/module/multipoint/clear-wmsstation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/clear-wmsstation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-WmsStation --- diff --git a/docset/winserver2012r2-ps/multipoint/Close-WmsApp.md b/docset/winserver2012r2-ps/multipoint/Close-WmsApp.md index 87383225e0..cf71e23beb 100644 --- a/docset/winserver2012r2-ps/multipoint/Close-WmsApp.md +++ b/docset/winserver2012r2-ps/multipoint/Close-WmsApp.md @@ -2,7 +2,7 @@ external help file: WmsCmdlets.dll-Help.xml Module Name: MultiPoint ms.date: 12/06/2017 -online version: https://docs.microsoft.com/powershell/module/multipoint/close-wmsapp?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/close-wmsapp?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Close-WmsApp --- diff --git a/docset/winserver2012r2-ps/multipoint/Close-WmsSession.md b/docset/winserver2012r2-ps/multipoint/Close-WmsSession.md index 127bf86131..a60f11ff74 100644 --- a/docset/winserver2012r2-ps/multipoint/Close-WmsSession.md +++ b/docset/winserver2012r2-ps/multipoint/Close-WmsSession.md @@ -2,7 +2,7 @@ external help file: WmsCmdlets.dll-Help.xml Module Name: MultiPoint ms.date: 12/06/2017 -online version: https://docs.microsoft.com/powershell/module/multipoint/close-wmssession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/close-wmssession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Close-WmsSession --- diff --git a/docset/winserver2012r2-ps/multipoint/Disconnect-WmsSession.md b/docset/winserver2012r2-ps/multipoint/Disconnect-WmsSession.md index b35a8b483e..792405aaf6 100644 --- a/docset/winserver2012r2-ps/multipoint/Disconnect-WmsSession.md +++ b/docset/winserver2012r2-ps/multipoint/Disconnect-WmsSession.md @@ -2,7 +2,7 @@ external help file: WmsCmdlets.dll-Help.xml Module Name: MultiPoint ms.date: 12/06/2017 -online version: https://docs.microsoft.com/powershell/module/multipoint/disconnect-wmssession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/disconnect-wmssession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disconnect-WmsSession --- diff --git a/docset/winserver2012r2-ps/multipoint/Get-WmsAlert.md b/docset/winserver2012r2-ps/multipoint/Get-WmsAlert.md index 5a20805c3a..862cd00818 100644 --- a/docset/winserver2012r2-ps/multipoint/Get-WmsAlert.md +++ b/docset/winserver2012r2-ps/multipoint/Get-WmsAlert.md @@ -2,7 +2,7 @@ external help file: WmsCmdlets.dll-Help.xml Module Name: MultiPoint ms.date: 12/06/2017 -online version: https://docs.microsoft.com/powershell/module/multipoint/get-wmsalert?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/get-wmsalert?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WmsAlert --- diff --git a/docset/winserver2012r2-ps/multipoint/Get-WmsApp.md b/docset/winserver2012r2-ps/multipoint/Get-WmsApp.md index 4fceeb27db..8879609ea3 100644 --- a/docset/winserver2012r2-ps/multipoint/Get-WmsApp.md +++ b/docset/winserver2012r2-ps/multipoint/Get-WmsApp.md @@ -2,7 +2,7 @@ external help file: WmsCmdlets.dll-Help.xml Module Name: MultiPoint ms.date: 12/06/2017 -online version: https://docs.microsoft.com/powershell/module/multipoint/get-wmsapp?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/get-wmsapp?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WmsApp --- diff --git a/docset/winserver2012r2-ps/multipoint/Get-WmsSession.md b/docset/winserver2012r2-ps/multipoint/Get-WmsSession.md index 2258200510..5932fa8a89 100644 --- a/docset/winserver2012r2-ps/multipoint/Get-WmsSession.md +++ b/docset/winserver2012r2-ps/multipoint/Get-WmsSession.md @@ -2,7 +2,7 @@ external help file: WmsCmdlets.dll-Help.xml Module Name: MultiPoint ms.date: 12/06/2017 -online version: https://docs.microsoft.com/powershell/module/multipoint/get-wmssession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/get-wmssession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WmsSession --- diff --git a/docset/winserver2012r2-ps/multipoint/Get-WmsStation.md b/docset/winserver2012r2-ps/multipoint/Get-WmsStation.md index 525969169a..ae57f013f3 100644 --- a/docset/winserver2012r2-ps/multipoint/Get-WmsStation.md +++ b/docset/winserver2012r2-ps/multipoint/Get-WmsStation.md @@ -2,7 +2,7 @@ external help file: WmsCmdlets.dll-Help.xml Module Name: MultiPoint ms.date: 12/06/2017 -online version: https://docs.microsoft.com/powershell/module/multipoint/get-wmsstation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/get-wmsstation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WmsStation --- diff --git a/docset/winserver2012r2-ps/multipoint/Get-WmsSystem.md b/docset/winserver2012r2-ps/multipoint/Get-WmsSystem.md index 024233f250..3d7199052e 100644 --- a/docset/winserver2012r2-ps/multipoint/Get-WmsSystem.md +++ b/docset/winserver2012r2-ps/multipoint/Get-WmsSystem.md @@ -2,7 +2,7 @@ external help file: WmsCmdlets.dll-Help.xml Module Name: MultiPoint ms.date: 12/06/2017 -online version: https://docs.microsoft.com/powershell/module/multipoint/get-wmssystem?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/get-wmssystem?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WmsSystem --- diff --git a/docset/winserver2012r2-ps/multipoint/Get-WmsThumbnail.md b/docset/winserver2012r2-ps/multipoint/Get-WmsThumbnail.md index 3c49c57b01..b47b4e9e51 100644 --- a/docset/winserver2012r2-ps/multipoint/Get-WmsThumbnail.md +++ b/docset/winserver2012r2-ps/multipoint/Get-WmsThumbnail.md @@ -2,7 +2,7 @@ external help file: WmsCmdlets.dll-Help.xml Module Name: MultiPoint ms.date: 12/06/2017 -online version: https://docs.microsoft.com/powershell/module/multipoint/get-wmsthumbnail?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/get-wmsthumbnail?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WmsThumbnail --- diff --git a/docset/winserver2012r2-ps/multipoint/Get-WmsUser.md b/docset/winserver2012r2-ps/multipoint/Get-WmsUser.md index 2d2dde1501..b37f533305 100644 --- a/docset/winserver2012r2-ps/multipoint/Get-WmsUser.md +++ b/docset/winserver2012r2-ps/multipoint/Get-WmsUser.md @@ -2,7 +2,7 @@ external help file: WmsCmdlets.dll-Help.xml Module Name: MultiPoint ms.date: 12/06/2017 -online version: https://docs.microsoft.com/powershell/module/multipoint/get-wmsuser?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/get-wmsuser?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WmsUser --- diff --git a/docset/winserver2012r2-ps/multipoint/Hide-WmsIdentifier.md b/docset/winserver2012r2-ps/multipoint/Hide-WmsIdentifier.md index 56977615be..4bb4801812 100644 --- a/docset/winserver2012r2-ps/multipoint/Hide-WmsIdentifier.md +++ b/docset/winserver2012r2-ps/multipoint/Hide-WmsIdentifier.md @@ -2,7 +2,7 @@ external help file: WmsCmdlets.dll-Help.xml Module Name: MultiPoint ms.date: 12/06/2017 -online version: https://docs.microsoft.com/powershell/module/multipoint/hide-wmsidentifier?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/hide-wmsidentifier?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Hide-WmsIdentifier --- diff --git a/docset/winserver2012r2-ps/multipoint/Lock-WmsSession.md b/docset/winserver2012r2-ps/multipoint/Lock-WmsSession.md index 440f89edbc..038027d0f4 100644 --- a/docset/winserver2012r2-ps/multipoint/Lock-WmsSession.md +++ b/docset/winserver2012r2-ps/multipoint/Lock-WmsSession.md @@ -2,7 +2,7 @@ external help file: WmsCmdlets.dll-Help.xml Module Name: MultiPoint ms.date: 12/06/2017 -online version: https://docs.microsoft.com/powershell/module/multipoint/lock-wmssession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/lock-wmssession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Lock-WmsSession --- diff --git a/docset/winserver2012r2-ps/multipoint/New-WmsUser.md b/docset/winserver2012r2-ps/multipoint/New-WmsUser.md index 21b99f21ef..3e0206fe96 100644 --- a/docset/winserver2012r2-ps/multipoint/New-WmsUser.md +++ b/docset/winserver2012r2-ps/multipoint/New-WmsUser.md @@ -2,7 +2,7 @@ external help file: WmsCmdlets.dll-Help.xml Module Name: MultiPoint ms.date: 12/06/2017 -online version: https://docs.microsoft.com/powershell/module/multipoint/new-wmsuser?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/new-wmsuser?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WmsUser --- diff --git a/docset/winserver2012r2-ps/multipoint/Open-WmsApp.md b/docset/winserver2012r2-ps/multipoint/Open-WmsApp.md index 0f9db2961c..61f15d724a 100644 --- a/docset/winserver2012r2-ps/multipoint/Open-WmsApp.md +++ b/docset/winserver2012r2-ps/multipoint/Open-WmsApp.md @@ -2,7 +2,7 @@ external help file: WmsCmdlets.dll-Help.xml Module Name: MultiPoint ms.date: 12/06/2017 -online version: https://docs.microsoft.com/powershell/module/multipoint/open-wmsapp?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/open-wmsapp?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Open-WmsApp --- diff --git a/docset/winserver2012r2-ps/multipoint/Register-WmsEvent.md b/docset/winserver2012r2-ps/multipoint/Register-WmsEvent.md index d6344fc8f0..1e94484a3b 100644 --- a/docset/winserver2012r2-ps/multipoint/Register-WmsEvent.md +++ b/docset/winserver2012r2-ps/multipoint/Register-WmsEvent.md @@ -2,7 +2,7 @@ external help file: WmsCmdlets.dll-Help.xml Module Name: MultiPoint ms.date: 12/06/2017 -online version: https://docs.microsoft.com/powershell/module/multipoint/register-wmsevent?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/register-wmsevent?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Register-WmsEvent --- diff --git a/docset/winserver2012r2-ps/multipoint/Remove-WmsUser.md b/docset/winserver2012r2-ps/multipoint/Remove-WmsUser.md index bd3d575af7..68bbbb8507 100644 --- a/docset/winserver2012r2-ps/multipoint/Remove-WmsUser.md +++ b/docset/winserver2012r2-ps/multipoint/Remove-WmsUser.md @@ -2,7 +2,7 @@ external help file: WmsCmdlets.dll-Help.xml Module Name: MultiPoint ms.date: 12/06/2017 -online version: https://docs.microsoft.com/powershell/module/multipoint/remove-wmsuser?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/remove-wmsuser?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WmsUser --- diff --git a/docset/winserver2012r2-ps/multipoint/Reset-WmsSystem.md b/docset/winserver2012r2-ps/multipoint/Reset-WmsSystem.md index fcb81ea9e3..52ceaeb9d2 100644 --- a/docset/winserver2012r2-ps/multipoint/Reset-WmsSystem.md +++ b/docset/winserver2012r2-ps/multipoint/Reset-WmsSystem.md @@ -2,7 +2,7 @@ external help file: WmsCmdlets.dll-Help.xml Module Name: MultiPoint ms.date: 12/06/2017 -online version: https://docs.microsoft.com/powershell/module/multipoint/reset-wmssystem?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/reset-wmssystem?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-WmsSystem --- diff --git a/docset/winserver2012r2-ps/multipoint/Search-WmsSystem.md b/docset/winserver2012r2-ps/multipoint/Search-WmsSystem.md index 01c4b815cf..1f4d051d48 100644 --- a/docset/winserver2012r2-ps/multipoint/Search-WmsSystem.md +++ b/docset/winserver2012r2-ps/multipoint/Search-WmsSystem.md @@ -2,7 +2,7 @@ external help file: WmsCmdlets.dll-Help.xml Module Name: MultiPoint ms.date: 12/06/2017 -online version: https://docs.microsoft.com/powershell/module/multipoint/search-wmssystem?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/search-wmssystem?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Search-WmsSystem --- diff --git a/docset/winserver2012r2-ps/multipoint/Set-WmsStation.md b/docset/winserver2012r2-ps/multipoint/Set-WmsStation.md index ed753a1f9f..b0d0247262 100644 --- a/docset/winserver2012r2-ps/multipoint/Set-WmsStation.md +++ b/docset/winserver2012r2-ps/multipoint/Set-WmsStation.md @@ -2,7 +2,7 @@ external help file: WmsCmdlets.dll-Help.xml Module Name: MultiPoint ms.date: 12/06/2017 -online version: https://docs.microsoft.com/powershell/module/multipoint/set-wmsstation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/set-wmsstation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WmsStation --- diff --git a/docset/winserver2012r2-ps/multipoint/Set-WmsSystem.md b/docset/winserver2012r2-ps/multipoint/Set-WmsSystem.md index 04c606ebde..1f5fd3ae28 100644 --- a/docset/winserver2012r2-ps/multipoint/Set-WmsSystem.md +++ b/docset/winserver2012r2-ps/multipoint/Set-WmsSystem.md @@ -2,7 +2,7 @@ external help file: WmsCmdlets.dll-Help.xml Module Name: MultiPoint ms.date: 12/06/2017 -online version: https://docs.microsoft.com/powershell/module/multipoint/set-wmssystem?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/set-wmssystem?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WmsSystem --- diff --git a/docset/winserver2012r2-ps/multipoint/Show-WmsIdentifier.md b/docset/winserver2012r2-ps/multipoint/Show-WmsIdentifier.md index f4f25b85e2..4512409b39 100644 --- a/docset/winserver2012r2-ps/multipoint/Show-WmsIdentifier.md +++ b/docset/winserver2012r2-ps/multipoint/Show-WmsIdentifier.md @@ -2,7 +2,7 @@ external help file: WmsCmdlets.dll-Help.xml Module Name: MultiPoint ms.date: 12/06/2017 -online version: https://docs.microsoft.com/powershell/module/multipoint/show-wmsidentifier?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/show-wmsidentifier?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Show-WmsIdentifier --- diff --git a/docset/winserver2012r2-ps/multipoint/Show-WmsSystem.md b/docset/winserver2012r2-ps/multipoint/Show-WmsSystem.md index 867e75f2ce..362b7dc65d 100644 --- a/docset/winserver2012r2-ps/multipoint/Show-WmsSystem.md +++ b/docset/winserver2012r2-ps/multipoint/Show-WmsSystem.md @@ -2,7 +2,7 @@ external help file: WmsCmdlets.dll-Help.xml Module Name: MultiPoint ms.date: 12/06/2017 -online version: https://docs.microsoft.com/powershell/module/multipoint/show-wmssystem?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/show-wmssystem?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Show-WmsSystem --- diff --git a/docset/winserver2012r2-ps/multipoint/Split-WmsStation.md b/docset/winserver2012r2-ps/multipoint/Split-WmsStation.md index a5e2c0b77b..a146f42fdb 100644 --- a/docset/winserver2012r2-ps/multipoint/Split-WmsStation.md +++ b/docset/winserver2012r2-ps/multipoint/Split-WmsStation.md @@ -2,7 +2,7 @@ external help file: WmsCmdlets.dll-Help.xml Module Name: MultiPoint ms.date: 12/06/2017 -online version: https://docs.microsoft.com/powershell/module/multipoint/split-wmsstation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/split-wmsstation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Split-WmsStation --- diff --git a/docset/winserver2012r2-ps/multipoint/Switch-WmsSystem.md b/docset/winserver2012r2-ps/multipoint/Switch-WmsSystem.md index fb3a0045ff..f2cda0123d 100644 --- a/docset/winserver2012r2-ps/multipoint/Switch-WmsSystem.md +++ b/docset/winserver2012r2-ps/multipoint/Switch-WmsSystem.md @@ -2,7 +2,7 @@ external help file: WmsCmdlets.dll-Help.xml Module Name: MultiPoint ms.date: 12/06/2017 -online version: https://docs.microsoft.com/powershell/module/multipoint/switch-wmssystem?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/switch-wmssystem?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Switch-WmsSystem --- diff --git a/docset/winserver2012r2-ps/multipoint/Unlock-WmsSession.md b/docset/winserver2012r2-ps/multipoint/Unlock-WmsSession.md index 6324c9bed0..9dbed66db6 100644 --- a/docset/winserver2012r2-ps/multipoint/Unlock-WmsSession.md +++ b/docset/winserver2012r2-ps/multipoint/Unlock-WmsSession.md @@ -2,7 +2,7 @@ external help file: WmsCmdlets.dll-Help.xml Module Name: MultiPoint ms.date: 12/06/2017 -online version: https://docs.microsoft.com/powershell/module/multipoint/unlock-wmssession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/unlock-wmssession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unlock-WmsSession --- diff --git a/docset/winserver2012r2-ps/multipoint/Unregister-WmsEvent.md b/docset/winserver2012r2-ps/multipoint/Unregister-WmsEvent.md index d59d0e462a..4929cd140f 100644 --- a/docset/winserver2012r2-ps/multipoint/Unregister-WmsEvent.md +++ b/docset/winserver2012r2-ps/multipoint/Unregister-WmsEvent.md @@ -2,7 +2,7 @@ external help file: WmsCmdlets.dll-Help.xml Module Name: MultiPoint ms.date: 12/06/2017 -online version: https://docs.microsoft.com/powershell/module/multipoint/unregister-wmsevent?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/unregister-wmsevent?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unregister-WmsEvent --- diff --git a/docset/winserver2012r2-ps/multipoint/Update-WmsCoreManager.md b/docset/winserver2012r2-ps/multipoint/Update-WmsCoreManager.md index 2fef92698d..1dc63aac5f 100644 --- a/docset/winserver2012r2-ps/multipoint/Update-WmsCoreManager.md +++ b/docset/winserver2012r2-ps/multipoint/Update-WmsCoreManager.md @@ -2,7 +2,7 @@ external help file: WmsCmdlets.dll-Help.xml Module Name: MultiPoint ms.date: 12/06/2017 -online version: https://docs.microsoft.com/powershell/module/multipoint/update-wmscoremanager?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/update-wmscoremanager?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-WmsCoreManager --- diff --git a/docset/winserver2012r2-ps/netadapter/Disable-NetAdapter.md b/docset/winserver2012r2-ps/netadapter/Disable-NetAdapter.md index 3c13e9c297..6306343521 100644 --- a/docset/winserver2012r2-ps/netadapter/Disable-NetAdapter.md +++ b/docset/winserver2012r2-ps/netadapter/Disable-NetAdapter.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapter.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetAdapter --- diff --git a/docset/winserver2012r2-ps/netadapter/Disable-NetAdapterBinding.md b/docset/winserver2012r2-ps/netadapter/Disable-NetAdapterBinding.md index 86fa6442a1..40ce4f7039 100644 --- a/docset/winserver2012r2-ps/netadapter/Disable-NetAdapterBinding.md +++ b/docset/winserver2012r2-ps/netadapter/Disable-NetAdapterBinding.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterBinding.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapterbinding?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapterbinding?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetAdapterBinding --- diff --git a/docset/winserver2012r2-ps/netadapter/Disable-NetAdapterChecksumOffload.md b/docset/winserver2012r2-ps/netadapter/Disable-NetAdapterChecksumOffload.md index 565f5aea43..832235fd7b 100644 --- a/docset/winserver2012r2-ps/netadapter/Disable-NetAdapterChecksumOffload.md +++ b/docset/winserver2012r2-ps/netadapter/Disable-NetAdapterChecksumOffload.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterChecksumOffload.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapterchecksumoffload?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapterchecksumoffload?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetAdapterChecksumOffload --- diff --git a/docset/winserver2012r2-ps/netadapter/Disable-NetAdapterEncapsulatedPacketTaskOffload.md b/docset/winserver2012r2-ps/netadapter/Disable-NetAdapterEncapsulatedPacketTaskOffload.md index 6765744059..036ae3813f 100644 --- a/docset/winserver2012r2-ps/netadapter/Disable-NetAdapterEncapsulatedPacketTaskOffload.md +++ b/docset/winserver2012r2-ps/netadapter/Disable-NetAdapterEncapsulatedPacketTaskOffload.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterEncapsulatedPacketTaskOffload.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapterencapsulatedpackettaskoffload?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapterencapsulatedpackettaskoffload?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetAdapterEncapsulatedPacketTaskOffload --- diff --git a/docset/winserver2012r2-ps/netadapter/Disable-NetAdapterIPsecOffload.md b/docset/winserver2012r2-ps/netadapter/Disable-NetAdapterIPsecOffload.md index fd9c010be1..b3d6855cba 100644 --- a/docset/winserver2012r2-ps/netadapter/Disable-NetAdapterIPsecOffload.md +++ b/docset/winserver2012r2-ps/netadapter/Disable-NetAdapterIPsecOffload.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterIPsecOffload.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapteripsecoffload?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapteripsecoffload?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetAdapterIPsecOffload --- diff --git a/docset/winserver2012r2-ps/netadapter/Disable-NetAdapterLso.md b/docset/winserver2012r2-ps/netadapter/Disable-NetAdapterLso.md index 19c57758c7..5d18704703 100644 --- a/docset/winserver2012r2-ps/netadapter/Disable-NetAdapterLso.md +++ b/docset/winserver2012r2-ps/netadapter/Disable-NetAdapterLso.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterLso.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapterlso?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapterlso?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetAdapterLso --- diff --git a/docset/winserver2012r2-ps/netadapter/Disable-NetAdapterPowerManagement.md b/docset/winserver2012r2-ps/netadapter/Disable-NetAdapterPowerManagement.md index 967fc2a7aa..4d371953ad 100644 --- a/docset/winserver2012r2-ps/netadapter/Disable-NetAdapterPowerManagement.md +++ b/docset/winserver2012r2-ps/netadapter/Disable-NetAdapterPowerManagement.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterPowerManagement.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapterpowermanagement?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapterpowermanagement?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetAdapterPowerManagement --- diff --git a/docset/winserver2012r2-ps/netadapter/Disable-NetAdapterQos.md b/docset/winserver2012r2-ps/netadapter/Disable-NetAdapterQos.md index 980982b5ad..bc84c55049 100644 --- a/docset/winserver2012r2-ps/netadapter/Disable-NetAdapterQos.md +++ b/docset/winserver2012r2-ps/netadapter/Disable-NetAdapterQos.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterQos.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapterqos?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapterqos?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetAdapterQos --- diff --git a/docset/winserver2012r2-ps/netadapter/Disable-NetAdapterRdma.md b/docset/winserver2012r2-ps/netadapter/Disable-NetAdapterRdma.md index 3698f6f04c..0313368ee4 100644 --- a/docset/winserver2012r2-ps/netadapter/Disable-NetAdapterRdma.md +++ b/docset/winserver2012r2-ps/netadapter/Disable-NetAdapterRdma.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterRdma.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapterrdma?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapterrdma?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetAdapterRdma --- diff --git a/docset/winserver2012r2-ps/netadapter/Disable-NetAdapterRsc.md b/docset/winserver2012r2-ps/netadapter/Disable-NetAdapterRsc.md index 28a38b22c2..3fdd2d411f 100644 --- a/docset/winserver2012r2-ps/netadapter/Disable-NetAdapterRsc.md +++ b/docset/winserver2012r2-ps/netadapter/Disable-NetAdapterRsc.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterRsc.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapterrsc?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapterrsc?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetAdapterRsc --- diff --git a/docset/winserver2012r2-ps/netadapter/Disable-NetAdapterRss.md b/docset/winserver2012r2-ps/netadapter/Disable-NetAdapterRss.md index d89e77a559..a4dab05b18 100644 --- a/docset/winserver2012r2-ps/netadapter/Disable-NetAdapterRss.md +++ b/docset/winserver2012r2-ps/netadapter/Disable-NetAdapterRss.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterRss.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapterrss?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapterrss?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetAdapterRss --- diff --git a/docset/winserver2012r2-ps/netadapter/Disable-NetAdapterSriov.md b/docset/winserver2012r2-ps/netadapter/Disable-NetAdapterSriov.md index ec679eb8be..1bb6d45cae 100644 --- a/docset/winserver2012r2-ps/netadapter/Disable-NetAdapterSriov.md +++ b/docset/winserver2012r2-ps/netadapter/Disable-NetAdapterSriov.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterSriov.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadaptersriov?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadaptersriov?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetAdapterSriov --- diff --git a/docset/winserver2012r2-ps/netadapter/Disable-NetAdapterVmq.md b/docset/winserver2012r2-ps/netadapter/Disable-NetAdapterVmq.md index 0e8184203f..4d978b2a71 100644 --- a/docset/winserver2012r2-ps/netadapter/Disable-NetAdapterVmq.md +++ b/docset/winserver2012r2-ps/netadapter/Disable-NetAdapterVmq.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterVmq.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadaptervmq?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadaptervmq?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetAdapterVmq --- diff --git a/docset/winserver2012r2-ps/netadapter/Enable-NetAdapter.md b/docset/winserver2012r2-ps/netadapter/Enable-NetAdapter.md index 3832054a82..07bda5f9d0 100644 --- a/docset/winserver2012r2-ps/netadapter/Enable-NetAdapter.md +++ b/docset/winserver2012r2-ps/netadapter/Enable-NetAdapter.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapter.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetAdapter --- diff --git a/docset/winserver2012r2-ps/netadapter/Enable-NetAdapterBinding.md b/docset/winserver2012r2-ps/netadapter/Enable-NetAdapterBinding.md index b905b697e2..d235b17308 100644 --- a/docset/winserver2012r2-ps/netadapter/Enable-NetAdapterBinding.md +++ b/docset/winserver2012r2-ps/netadapter/Enable-NetAdapterBinding.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterBinding.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapterbinding?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapterbinding?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetAdapterBinding --- diff --git a/docset/winserver2012r2-ps/netadapter/Enable-NetAdapterChecksumOffload.md b/docset/winserver2012r2-ps/netadapter/Enable-NetAdapterChecksumOffload.md index ddfa784c33..8a633b5055 100644 --- a/docset/winserver2012r2-ps/netadapter/Enable-NetAdapterChecksumOffload.md +++ b/docset/winserver2012r2-ps/netadapter/Enable-NetAdapterChecksumOffload.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterChecksumOffload.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapterchecksumoffload?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapterchecksumoffload?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetAdapterChecksumOffload --- diff --git a/docset/winserver2012r2-ps/netadapter/Enable-NetAdapterEncapsulatedPacketTaskOffload.md b/docset/winserver2012r2-ps/netadapter/Enable-NetAdapterEncapsulatedPacketTaskOffload.md index c7b5f05450..c9f9f3ef0a 100644 --- a/docset/winserver2012r2-ps/netadapter/Enable-NetAdapterEncapsulatedPacketTaskOffload.md +++ b/docset/winserver2012r2-ps/netadapter/Enable-NetAdapterEncapsulatedPacketTaskOffload.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterEncapsulatedPacketTaskOffload.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapterencapsulatedpackettaskoffload?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapterencapsulatedpackettaskoffload?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetAdapterEncapsulatedPacketTaskOffload --- diff --git a/docset/winserver2012r2-ps/netadapter/Enable-NetAdapterIPsecOffload.md b/docset/winserver2012r2-ps/netadapter/Enable-NetAdapterIPsecOffload.md index 76d1ece7f3..5eefd69fb3 100644 --- a/docset/winserver2012r2-ps/netadapter/Enable-NetAdapterIPsecOffload.md +++ b/docset/winserver2012r2-ps/netadapter/Enable-NetAdapterIPsecOffload.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterIPsecOffload.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapteripsecoffload?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapteripsecoffload?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetAdapterIPsecOffload --- diff --git a/docset/winserver2012r2-ps/netadapter/Enable-NetAdapterLso.md b/docset/winserver2012r2-ps/netadapter/Enable-NetAdapterLso.md index 3613cbf506..e5cbbcc131 100644 --- a/docset/winserver2012r2-ps/netadapter/Enable-NetAdapterLso.md +++ b/docset/winserver2012r2-ps/netadapter/Enable-NetAdapterLso.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterLso.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapterlso?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapterlso?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetAdapterLso --- diff --git a/docset/winserver2012r2-ps/netadapter/Enable-NetAdapterPowerManagement.md b/docset/winserver2012r2-ps/netadapter/Enable-NetAdapterPowerManagement.md index 75811c5939..aa87c6d7b0 100644 --- a/docset/winserver2012r2-ps/netadapter/Enable-NetAdapterPowerManagement.md +++ b/docset/winserver2012r2-ps/netadapter/Enable-NetAdapterPowerManagement.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterPowerManagement.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapterpowermanagement?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapterpowermanagement?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetAdapterPowerManagement --- diff --git a/docset/winserver2012r2-ps/netadapter/Enable-NetAdapterQos.md b/docset/winserver2012r2-ps/netadapter/Enable-NetAdapterQos.md index 73014f9917..e510f4b6e5 100644 --- a/docset/winserver2012r2-ps/netadapter/Enable-NetAdapterQos.md +++ b/docset/winserver2012r2-ps/netadapter/Enable-NetAdapterQos.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterQos.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapterqos?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapterqos?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetAdapterQos --- diff --git a/docset/winserver2012r2-ps/netadapter/Enable-NetAdapterRdma.md b/docset/winserver2012r2-ps/netadapter/Enable-NetAdapterRdma.md index b9e278a8c2..7cdf15db48 100644 --- a/docset/winserver2012r2-ps/netadapter/Enable-NetAdapterRdma.md +++ b/docset/winserver2012r2-ps/netadapter/Enable-NetAdapterRdma.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterRdma.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapterrdma?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapterrdma?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetAdapterRdma --- diff --git a/docset/winserver2012r2-ps/netadapter/Enable-NetAdapterRsc.md b/docset/winserver2012r2-ps/netadapter/Enable-NetAdapterRsc.md index ceef813c01..4aabdc0157 100644 --- a/docset/winserver2012r2-ps/netadapter/Enable-NetAdapterRsc.md +++ b/docset/winserver2012r2-ps/netadapter/Enable-NetAdapterRsc.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterRsc.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapterrsc?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapterrsc?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetAdapterRsc --- diff --git a/docset/winserver2012r2-ps/netadapter/Enable-NetAdapterRss.md b/docset/winserver2012r2-ps/netadapter/Enable-NetAdapterRss.md index 57b19ed35e..b6057fe40b 100644 --- a/docset/winserver2012r2-ps/netadapter/Enable-NetAdapterRss.md +++ b/docset/winserver2012r2-ps/netadapter/Enable-NetAdapterRss.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterRss.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapterrss?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapterrss?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetAdapterRss --- diff --git a/docset/winserver2012r2-ps/netadapter/Enable-NetAdapterSriov.md b/docset/winserver2012r2-ps/netadapter/Enable-NetAdapterSriov.md index a0c07c7d2e..c9d71df8ae 100644 --- a/docset/winserver2012r2-ps/netadapter/Enable-NetAdapterSriov.md +++ b/docset/winserver2012r2-ps/netadapter/Enable-NetAdapterSriov.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterSriov.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadaptersriov?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadaptersriov?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetAdapterSriov --- diff --git a/docset/winserver2012r2-ps/netadapter/Enable-NetAdapterVmq.md b/docset/winserver2012r2-ps/netadapter/Enable-NetAdapterVmq.md index 3c4817581d..763dc69cde 100644 --- a/docset/winserver2012r2-ps/netadapter/Enable-NetAdapterVmq.md +++ b/docset/winserver2012r2-ps/netadapter/Enable-NetAdapterVmq.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterVmq.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadaptervmq?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadaptervmq?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetAdapterVmq --- diff --git a/docset/winserver2012r2-ps/netadapter/Get-NetAdapter.md b/docset/winserver2012r2-ps/netadapter/Get-NetAdapter.md index 636b08529b..20a0477af3 100644 --- a/docset/winserver2012r2-ps/netadapter/Get-NetAdapter.md +++ b/docset/winserver2012r2-ps/netadapter/Get-NetAdapter.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapter.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapter --- diff --git a/docset/winserver2012r2-ps/netadapter/Get-NetAdapterAdvancedProperty.md b/docset/winserver2012r2-ps/netadapter/Get-NetAdapterAdvancedProperty.md index 7c668deadb..d48f111449 100644 --- a/docset/winserver2012r2-ps/netadapter/Get-NetAdapterAdvancedProperty.md +++ b/docset/winserver2012r2-ps/netadapter/Get-NetAdapterAdvancedProperty.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterAdvancedProperty.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapteradvancedproperty?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapteradvancedproperty?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterAdvancedProperty --- diff --git a/docset/winserver2012r2-ps/netadapter/Get-NetAdapterBinding.md b/docset/winserver2012r2-ps/netadapter/Get-NetAdapterBinding.md index 842634a834..3553b80868 100644 --- a/docset/winserver2012r2-ps/netadapter/Get-NetAdapterBinding.md +++ b/docset/winserver2012r2-ps/netadapter/Get-NetAdapterBinding.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterBinding.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterbinding?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterbinding?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterBinding --- diff --git a/docset/winserver2012r2-ps/netadapter/Get-NetAdapterChecksumOffload.md b/docset/winserver2012r2-ps/netadapter/Get-NetAdapterChecksumOffload.md index b350107ecf..bbe1887078 100644 --- a/docset/winserver2012r2-ps/netadapter/Get-NetAdapterChecksumOffload.md +++ b/docset/winserver2012r2-ps/netadapter/Get-NetAdapterChecksumOffload.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterChecksumOffload.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterchecksumoffload?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterchecksumoffload?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterChecksumOffload --- diff --git a/docset/winserver2012r2-ps/netadapter/Get-NetAdapterEncapsulatedPacketTaskOffload.md b/docset/winserver2012r2-ps/netadapter/Get-NetAdapterEncapsulatedPacketTaskOffload.md index 60765ca6a6..f6e56bb0ed 100644 --- a/docset/winserver2012r2-ps/netadapter/Get-NetAdapterEncapsulatedPacketTaskOffload.md +++ b/docset/winserver2012r2-ps/netadapter/Get-NetAdapterEncapsulatedPacketTaskOffload.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterEncapsulatedPacketTaskOffload.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterencapsulatedpackettaskoffload?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterencapsulatedpackettaskoffload?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterEncapsulatedPacketTaskOffload --- diff --git a/docset/winserver2012r2-ps/netadapter/Get-NetAdapterHardwareInfo.md b/docset/winserver2012r2-ps/netadapter/Get-NetAdapterHardwareInfo.md index bde1050cc7..b1dd471a3a 100644 --- a/docset/winserver2012r2-ps/netadapter/Get-NetAdapterHardwareInfo.md +++ b/docset/winserver2012r2-ps/netadapter/Get-NetAdapterHardwareInfo.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterHardwareInfo.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterhardwareinfo?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterhardwareinfo?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterHardwareInfo --- diff --git a/docset/winserver2012r2-ps/netadapter/Get-NetAdapterIPsecOffload.md b/docset/winserver2012r2-ps/netadapter/Get-NetAdapterIPsecOffload.md index 3e4d6b880c..26840a7ae7 100644 --- a/docset/winserver2012r2-ps/netadapter/Get-NetAdapterIPsecOffload.md +++ b/docset/winserver2012r2-ps/netadapter/Get-NetAdapterIPsecOffload.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterIPsecOffload.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapteripsecoffload?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapteripsecoffload?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterIPsecOffload --- diff --git a/docset/winserver2012r2-ps/netadapter/Get-NetAdapterLso.md b/docset/winserver2012r2-ps/netadapter/Get-NetAdapterLso.md index 593311f3d5..a28434e9de 100644 --- a/docset/winserver2012r2-ps/netadapter/Get-NetAdapterLso.md +++ b/docset/winserver2012r2-ps/netadapter/Get-NetAdapterLso.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterLso.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterlso?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterlso?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterLso --- diff --git a/docset/winserver2012r2-ps/netadapter/Get-NetAdapterPowerManagement.md b/docset/winserver2012r2-ps/netadapter/Get-NetAdapterPowerManagement.md index cba4a2d2e9..93baf26b0d 100644 --- a/docset/winserver2012r2-ps/netadapter/Get-NetAdapterPowerManagement.md +++ b/docset/winserver2012r2-ps/netadapter/Get-NetAdapterPowerManagement.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterPowerManagement.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterpowermanagement?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterpowermanagement?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterPowerManagement --- diff --git a/docset/winserver2012r2-ps/netadapter/Get-NetAdapterQos.md b/docset/winserver2012r2-ps/netadapter/Get-NetAdapterQos.md index 5ef7aa2b45..3d7dad199b 100644 --- a/docset/winserver2012r2-ps/netadapter/Get-NetAdapterQos.md +++ b/docset/winserver2012r2-ps/netadapter/Get-NetAdapterQos.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterQos.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterqos?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterqos?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterQos --- diff --git a/docset/winserver2012r2-ps/netadapter/Get-NetAdapterRdma.md b/docset/winserver2012r2-ps/netadapter/Get-NetAdapterRdma.md index af45bc653e..e61fafe0f6 100644 --- a/docset/winserver2012r2-ps/netadapter/Get-NetAdapterRdma.md +++ b/docset/winserver2012r2-ps/netadapter/Get-NetAdapterRdma.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterRdma.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterrdma?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterrdma?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterRdma --- diff --git a/docset/winserver2012r2-ps/netadapter/Get-NetAdapterRsc.md b/docset/winserver2012r2-ps/netadapter/Get-NetAdapterRsc.md index 808e9e3447..c35bd8c673 100644 --- a/docset/winserver2012r2-ps/netadapter/Get-NetAdapterRsc.md +++ b/docset/winserver2012r2-ps/netadapter/Get-NetAdapterRsc.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterRsc.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterrsc?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterrsc?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterRsc --- diff --git a/docset/winserver2012r2-ps/netadapter/Get-NetAdapterRss.md b/docset/winserver2012r2-ps/netadapter/Get-NetAdapterRss.md index 39a33a0dd4..bc77a09473 100644 --- a/docset/winserver2012r2-ps/netadapter/Get-NetAdapterRss.md +++ b/docset/winserver2012r2-ps/netadapter/Get-NetAdapterRss.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterRss.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterrss?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterrss?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterRss --- diff --git a/docset/winserver2012r2-ps/netadapter/Get-NetAdapterSriov.md b/docset/winserver2012r2-ps/netadapter/Get-NetAdapterSriov.md index c18d782679..d2e3a59465 100644 --- a/docset/winserver2012r2-ps/netadapter/Get-NetAdapterSriov.md +++ b/docset/winserver2012r2-ps/netadapter/Get-NetAdapterSriov.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterSriov.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadaptersriov?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadaptersriov?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterSriov --- diff --git a/docset/winserver2012r2-ps/netadapter/Get-NetAdapterSriovVf.md b/docset/winserver2012r2-ps/netadapter/Get-NetAdapterSriovVf.md index 6fef8eeb11..26153b87bc 100644 --- a/docset/winserver2012r2-ps/netadapter/Get-NetAdapterSriovVf.md +++ b/docset/winserver2012r2-ps/netadapter/Get-NetAdapterSriovVf.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterSriovVf.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadaptersriovvf?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadaptersriovvf?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterSriovVf --- diff --git a/docset/winserver2012r2-ps/netadapter/Get-NetAdapterStatistics.md b/docset/winserver2012r2-ps/netadapter/Get-NetAdapterStatistics.md index 58dd433b9d..85d9dcf78f 100644 --- a/docset/winserver2012r2-ps/netadapter/Get-NetAdapterStatistics.md +++ b/docset/winserver2012r2-ps/netadapter/Get-NetAdapterStatistics.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterStatistics.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterstatistics?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterstatistics?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterStatistics --- diff --git a/docset/winserver2012r2-ps/netadapter/Get-NetAdapterVPort.md b/docset/winserver2012r2-ps/netadapter/Get-NetAdapterVPort.md index 16289eeb12..f25d658746 100644 --- a/docset/winserver2012r2-ps/netadapter/Get-NetAdapterVPort.md +++ b/docset/winserver2012r2-ps/netadapter/Get-NetAdapterVPort.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterVPort.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadaptervport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadaptervport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterVPort --- diff --git a/docset/winserver2012r2-ps/netadapter/Get-NetAdapterVmq.md b/docset/winserver2012r2-ps/netadapter/Get-NetAdapterVmq.md index 8c39c71a78..6b2f6b818c 100644 --- a/docset/winserver2012r2-ps/netadapter/Get-NetAdapterVmq.md +++ b/docset/winserver2012r2-ps/netadapter/Get-NetAdapterVmq.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterVmq.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadaptervmq?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadaptervmq?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterVmq --- diff --git a/docset/winserver2012r2-ps/netadapter/Get-NetAdapterVmqQueue.md b/docset/winserver2012r2-ps/netadapter/Get-NetAdapterVmqQueue.md index d7468f4cc5..f9c0fb7eff 100644 --- a/docset/winserver2012r2-ps/netadapter/Get-NetAdapterVmqQueue.md +++ b/docset/winserver2012r2-ps/netadapter/Get-NetAdapterVmqQueue.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterVmqQueue.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadaptervmqqueue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadaptervmqqueue?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterVmqQueue --- diff --git a/docset/winserver2012r2-ps/netadapter/New-NetAdapterAdvancedProperty.md b/docset/winserver2012r2-ps/netadapter/New-NetAdapterAdvancedProperty.md index 2152b50e73..d1339b808e 100644 --- a/docset/winserver2012r2-ps/netadapter/New-NetAdapterAdvancedProperty.md +++ b/docset/winserver2012r2-ps/netadapter/New-NetAdapterAdvancedProperty.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterAdvancedProperty.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/new-netadapteradvancedproperty?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/new-netadapteradvancedproperty?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetAdapterAdvancedProperty --- diff --git a/docset/winserver2012r2-ps/netadapter/Remove-NetAdapterAdvancedProperty.md b/docset/winserver2012r2-ps/netadapter/Remove-NetAdapterAdvancedProperty.md index a73be67e30..50b2fdbc08 100644 --- a/docset/winserver2012r2-ps/netadapter/Remove-NetAdapterAdvancedProperty.md +++ b/docset/winserver2012r2-ps/netadapter/Remove-NetAdapterAdvancedProperty.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterAdvancedProperty.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/remove-netadapteradvancedproperty?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/remove-netadapteradvancedproperty?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetAdapterAdvancedProperty --- diff --git a/docset/winserver2012r2-ps/netadapter/Rename-NetAdapter.md b/docset/winserver2012r2-ps/netadapter/Rename-NetAdapter.md index 54025ad3f8..231b47d11e 100644 --- a/docset/winserver2012r2-ps/netadapter/Rename-NetAdapter.md +++ b/docset/winserver2012r2-ps/netadapter/Rename-NetAdapter.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapter.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/rename-netadapter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/rename-netadapter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-NetAdapter --- diff --git a/docset/winserver2012r2-ps/netadapter/Reset-NetAdapterAdvancedProperty.md b/docset/winserver2012r2-ps/netadapter/Reset-NetAdapterAdvancedProperty.md index 9919a0a308..c51532b3ac 100644 --- a/docset/winserver2012r2-ps/netadapter/Reset-NetAdapterAdvancedProperty.md +++ b/docset/winserver2012r2-ps/netadapter/Reset-NetAdapterAdvancedProperty.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterAdvancedProperty.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/reset-netadapteradvancedproperty?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/reset-netadapteradvancedproperty?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-NetAdapterAdvancedProperty --- diff --git a/docset/winserver2012r2-ps/netadapter/Restart-NetAdapter.md b/docset/winserver2012r2-ps/netadapter/Restart-NetAdapter.md index 687c7c4a70..2a98a84518 100644 --- a/docset/winserver2012r2-ps/netadapter/Restart-NetAdapter.md +++ b/docset/winserver2012r2-ps/netadapter/Restart-NetAdapter.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapter.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/restart-netadapter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/restart-netadapter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restart-NetAdapter --- diff --git a/docset/winserver2012r2-ps/netadapter/Set-NetAdapter.md b/docset/winserver2012r2-ps/netadapter/Set-NetAdapter.md index a697964056..705c79641a 100644 --- a/docset/winserver2012r2-ps/netadapter/Set-NetAdapter.md +++ b/docset/winserver2012r2-ps/netadapter/Set-NetAdapter.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapter.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapter --- diff --git a/docset/winserver2012r2-ps/netadapter/Set-NetAdapterAdvancedProperty.md b/docset/winserver2012r2-ps/netadapter/Set-NetAdapterAdvancedProperty.md index 8128b2b229..7664416ba8 100644 --- a/docset/winserver2012r2-ps/netadapter/Set-NetAdapterAdvancedProperty.md +++ b/docset/winserver2012r2-ps/netadapter/Set-NetAdapterAdvancedProperty.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterAdvancedProperty.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapteradvancedproperty?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapteradvancedproperty?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapterAdvancedProperty --- diff --git a/docset/winserver2012r2-ps/netadapter/Set-NetAdapterBinding.md b/docset/winserver2012r2-ps/netadapter/Set-NetAdapterBinding.md index 870525baf5..0658105261 100644 --- a/docset/winserver2012r2-ps/netadapter/Set-NetAdapterBinding.md +++ b/docset/winserver2012r2-ps/netadapter/Set-NetAdapterBinding.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterBinding.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapterbinding?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapterbinding?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapterBinding --- diff --git a/docset/winserver2012r2-ps/netadapter/Set-NetAdapterChecksumOffload.md b/docset/winserver2012r2-ps/netadapter/Set-NetAdapterChecksumOffload.md index a4d2f60b13..871418f2b8 100644 --- a/docset/winserver2012r2-ps/netadapter/Set-NetAdapterChecksumOffload.md +++ b/docset/winserver2012r2-ps/netadapter/Set-NetAdapterChecksumOffload.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterChecksumOffload.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapterchecksumoffload?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapterchecksumoffload?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapterChecksumOffload --- diff --git a/docset/winserver2012r2-ps/netadapter/Set-NetAdapterEncapsulatedPacketTaskOffload.md b/docset/winserver2012r2-ps/netadapter/Set-NetAdapterEncapsulatedPacketTaskOffload.md index aad232d597..08b37ba985 100644 --- a/docset/winserver2012r2-ps/netadapter/Set-NetAdapterEncapsulatedPacketTaskOffload.md +++ b/docset/winserver2012r2-ps/netadapter/Set-NetAdapterEncapsulatedPacketTaskOffload.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterEncapsulatedPacketTaskOffload.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapterencapsulatedpackettaskoffload?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapterencapsulatedpackettaskoffload?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapterEncapsulatedPacketTaskOffload --- diff --git a/docset/winserver2012r2-ps/netadapter/Set-NetAdapterIPsecOffload.md b/docset/winserver2012r2-ps/netadapter/Set-NetAdapterIPsecOffload.md index 0b12116bf6..cd0d426f9e 100644 --- a/docset/winserver2012r2-ps/netadapter/Set-NetAdapterIPsecOffload.md +++ b/docset/winserver2012r2-ps/netadapter/Set-NetAdapterIPsecOffload.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterIPsecOffload.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapteripsecoffload?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapteripsecoffload?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapterIPsecOffload --- diff --git a/docset/winserver2012r2-ps/netadapter/Set-NetAdapterLso.md b/docset/winserver2012r2-ps/netadapter/Set-NetAdapterLso.md index 7e52367e83..47c71cadb3 100644 --- a/docset/winserver2012r2-ps/netadapter/Set-NetAdapterLso.md +++ b/docset/winserver2012r2-ps/netadapter/Set-NetAdapterLso.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterLso.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapterlso?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapterlso?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapterLso --- diff --git a/docset/winserver2012r2-ps/netadapter/Set-NetAdapterPowerManagement.md b/docset/winserver2012r2-ps/netadapter/Set-NetAdapterPowerManagement.md index 35fb7f8ab4..e078957052 100644 --- a/docset/winserver2012r2-ps/netadapter/Set-NetAdapterPowerManagement.md +++ b/docset/winserver2012r2-ps/netadapter/Set-NetAdapterPowerManagement.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterPowerManagement.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapterpowermanagement?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapterpowermanagement?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapterPowerManagement --- diff --git a/docset/winserver2012r2-ps/netadapter/Set-NetAdapterQos.md b/docset/winserver2012r2-ps/netadapter/Set-NetAdapterQos.md index 59380f5f39..40b1304140 100644 --- a/docset/winserver2012r2-ps/netadapter/Set-NetAdapterQos.md +++ b/docset/winserver2012r2-ps/netadapter/Set-NetAdapterQos.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterQos.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapterqos?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapterqos?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapterQos --- diff --git a/docset/winserver2012r2-ps/netadapter/Set-NetAdapterRdma.md b/docset/winserver2012r2-ps/netadapter/Set-NetAdapterRdma.md index fccc643212..20e8021f28 100644 --- a/docset/winserver2012r2-ps/netadapter/Set-NetAdapterRdma.md +++ b/docset/winserver2012r2-ps/netadapter/Set-NetAdapterRdma.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterRdma.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapterrdma?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapterrdma?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapterRdma --- diff --git a/docset/winserver2012r2-ps/netadapter/Set-NetAdapterRsc.md b/docset/winserver2012r2-ps/netadapter/Set-NetAdapterRsc.md index 1a61b217e6..b1fe3adaca 100644 --- a/docset/winserver2012r2-ps/netadapter/Set-NetAdapterRsc.md +++ b/docset/winserver2012r2-ps/netadapter/Set-NetAdapterRsc.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterRsc.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapterrsc?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapterrsc?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapterRsc --- diff --git a/docset/winserver2012r2-ps/netadapter/Set-NetAdapterRss.md b/docset/winserver2012r2-ps/netadapter/Set-NetAdapterRss.md index 93ed30d2ff..0413e98255 100644 --- a/docset/winserver2012r2-ps/netadapter/Set-NetAdapterRss.md +++ b/docset/winserver2012r2-ps/netadapter/Set-NetAdapterRss.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterRss.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapterrss?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapterrss?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapterRss --- diff --git a/docset/winserver2012r2-ps/netadapter/Set-NetAdapterSriov.md b/docset/winserver2012r2-ps/netadapter/Set-NetAdapterSriov.md index fb583637dd..a62748b2c0 100644 --- a/docset/winserver2012r2-ps/netadapter/Set-NetAdapterSriov.md +++ b/docset/winserver2012r2-ps/netadapter/Set-NetAdapterSriov.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterSriov.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadaptersriov?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadaptersriov?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapterSriov --- diff --git a/docset/winserver2012r2-ps/netadapter/Set-NetAdapterVmq.md b/docset/winserver2012r2-ps/netadapter/Set-NetAdapterVmq.md index 86fe3c9847..9326c1ae5a 100644 --- a/docset/winserver2012r2-ps/netadapter/Set-NetAdapterVmq.md +++ b/docset/winserver2012r2-ps/netadapter/Set-NetAdapterVmq.md @@ -2,7 +2,7 @@ external help file: MSFT_NetAdapterVmq.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadaptervmq?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadaptervmq?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapterVmq --- diff --git a/docset/winserver2012r2-ps/netconnection/Get-NetConnectionProfile.md b/docset/winserver2012r2-ps/netconnection/Get-NetConnectionProfile.md index 23f238d542..addff897d4 100644 --- a/docset/winserver2012r2-ps/netconnection/Get-NetConnectionProfile.md +++ b/docset/winserver2012r2-ps/netconnection/Get-NetConnectionProfile.md @@ -2,7 +2,7 @@ external help file: MSFT_NetConnectionProfile.cdxml-help.xml Module Name: NetConnection ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netconnectionprofile/get-netconnectionprofile?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netconnectionprofile/get-netconnectionprofile?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetConnectionProfile --- diff --git a/docset/winserver2012r2-ps/netconnection/Set-NetConnectionProfile.md b/docset/winserver2012r2-ps/netconnection/Set-NetConnectionProfile.md index 1cb3b081a5..11f4064f1b 100644 --- a/docset/winserver2012r2-ps/netconnection/Set-NetConnectionProfile.md +++ b/docset/winserver2012r2-ps/netconnection/Set-NetConnectionProfile.md @@ -2,7 +2,7 @@ external help file: MSFT_NetConnectionProfile.cdxml-help.xml Module Name: NetConnection ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netconnectionprofile/set-netconnectionprofile?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netconnectionprofile/set-netconnectionprofile?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetConnectionProfile --- diff --git a/docset/winserver2012r2-ps/neteventpacketcapture/Add-NetEventNetworkAdapter.md b/docset/winserver2012r2-ps/neteventpacketcapture/Add-NetEventNetworkAdapter.md index 6cb574e044..efb0683e44 100644 --- a/docset/winserver2012r2-ps/neteventpacketcapture/Add-NetEventNetworkAdapter.md +++ b/docset/winserver2012r2-ps/neteventpacketcapture/Add-NetEventNetworkAdapter.md @@ -2,7 +2,7 @@ external help file: MSFT_NetEventNetworkAdapter.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/add-neteventnetworkadapter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/add-neteventnetworkadapter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NetEventNetworkAdapter --- diff --git a/docset/winserver2012r2-ps/neteventpacketcapture/Add-NetEventPacketCaptureProvider.md b/docset/winserver2012r2-ps/neteventpacketcapture/Add-NetEventPacketCaptureProvider.md index b551782422..e21299ef5d 100644 --- a/docset/winserver2012r2-ps/neteventpacketcapture/Add-NetEventPacketCaptureProvider.md +++ b/docset/winserver2012r2-ps/neteventpacketcapture/Add-NetEventPacketCaptureProvider.md @@ -2,7 +2,7 @@ external help file: MSFT_NetEventPacketCaptureProvider.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/add-neteventpacketcaptureprovider?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/add-neteventpacketcaptureprovider?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NetEventPacketCaptureProvider --- diff --git a/docset/winserver2012r2-ps/neteventpacketcapture/Add-NetEventProvider.md b/docset/winserver2012r2-ps/neteventpacketcapture/Add-NetEventProvider.md index fabd9129c5..73d91b2e29 100644 --- a/docset/winserver2012r2-ps/neteventpacketcapture/Add-NetEventProvider.md +++ b/docset/winserver2012r2-ps/neteventpacketcapture/Add-NetEventProvider.md @@ -2,7 +2,7 @@ external help file: MSFT_NetEventProvider.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/add-neteventprovider?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/add-neteventprovider?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NetEventProvider --- diff --git a/docset/winserver2012r2-ps/neteventpacketcapture/Add-NetEventVmNetworkAdapter.md b/docset/winserver2012r2-ps/neteventpacketcapture/Add-NetEventVmNetworkAdapter.md index e9dfae04f8..cd149e7392 100644 --- a/docset/winserver2012r2-ps/neteventpacketcapture/Add-NetEventVmNetworkAdapter.md +++ b/docset/winserver2012r2-ps/neteventpacketcapture/Add-NetEventVmNetworkAdapter.md @@ -2,7 +2,7 @@ external help file: MSFT_NetEventVmNetworkAdatper.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/add-neteventvmnetworkadapter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/add-neteventvmnetworkadapter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NetEventVmNetworkAdapter --- diff --git a/docset/winserver2012r2-ps/neteventpacketcapture/Add-NetEventVmSwitch.md b/docset/winserver2012r2-ps/neteventpacketcapture/Add-NetEventVmSwitch.md index e5b7875dca..2996a1a81e 100644 --- a/docset/winserver2012r2-ps/neteventpacketcapture/Add-NetEventVmSwitch.md +++ b/docset/winserver2012r2-ps/neteventpacketcapture/Add-NetEventVmSwitch.md @@ -2,7 +2,7 @@ external help file: MSFT_NetEventVmSwitch.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/add-neteventvmswitch?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/add-neteventvmswitch?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NetEventVmSwitch --- diff --git a/docset/winserver2012r2-ps/neteventpacketcapture/Get-NetEventNetworkAdapter.md b/docset/winserver2012r2-ps/neteventpacketcapture/Get-NetEventNetworkAdapter.md index cf60ffe581..63b81aa6a9 100644 --- a/docset/winserver2012r2-ps/neteventpacketcapture/Get-NetEventNetworkAdapter.md +++ b/docset/winserver2012r2-ps/neteventpacketcapture/Get-NetEventNetworkAdapter.md @@ -2,7 +2,7 @@ external help file: MSFT_NetEventNetworkAdapter.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/get-neteventnetworkadapter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/get-neteventnetworkadapter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetEventNetworkAdapter --- diff --git a/docset/winserver2012r2-ps/neteventpacketcapture/Get-NetEventPacketCaptureProvider.md b/docset/winserver2012r2-ps/neteventpacketcapture/Get-NetEventPacketCaptureProvider.md index 9a95405773..f3963e6904 100644 --- a/docset/winserver2012r2-ps/neteventpacketcapture/Get-NetEventPacketCaptureProvider.md +++ b/docset/winserver2012r2-ps/neteventpacketcapture/Get-NetEventPacketCaptureProvider.md @@ -2,7 +2,7 @@ external help file: MSFT_NetEventPacketCaptureProvider.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/get-neteventpacketcaptureprovider?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/get-neteventpacketcaptureprovider?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetEventPacketCaptureProvider --- diff --git a/docset/winserver2012r2-ps/neteventpacketcapture/Get-NetEventProvider.md b/docset/winserver2012r2-ps/neteventpacketcapture/Get-NetEventProvider.md index 24a0cac1a9..6f26ff26d6 100644 --- a/docset/winserver2012r2-ps/neteventpacketcapture/Get-NetEventProvider.md +++ b/docset/winserver2012r2-ps/neteventpacketcapture/Get-NetEventProvider.md @@ -2,7 +2,7 @@ external help file: MSFT_NetEventProvider.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/get-neteventprovider?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/get-neteventprovider?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetEventProvider --- diff --git a/docset/winserver2012r2-ps/neteventpacketcapture/Get-NetEventSession.md b/docset/winserver2012r2-ps/neteventpacketcapture/Get-NetEventSession.md index f4ffd71a5b..feaf3e7faa 100644 --- a/docset/winserver2012r2-ps/neteventpacketcapture/Get-NetEventSession.md +++ b/docset/winserver2012r2-ps/neteventpacketcapture/Get-NetEventSession.md @@ -2,7 +2,7 @@ external help file: MSFT_NetEventSession.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/get-neteventsession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/get-neteventsession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetEventSession --- diff --git a/docset/winserver2012r2-ps/neteventpacketcapture/Get-NetEventVmNetworkAdapter.md b/docset/winserver2012r2-ps/neteventpacketcapture/Get-NetEventVmNetworkAdapter.md index f6001c16ff..50022465cf 100644 --- a/docset/winserver2012r2-ps/neteventpacketcapture/Get-NetEventVmNetworkAdapter.md +++ b/docset/winserver2012r2-ps/neteventpacketcapture/Get-NetEventVmNetworkAdapter.md @@ -2,7 +2,7 @@ external help file: MSFT_NetEventVmNetworkAdatper.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/get-neteventvmnetworkadapter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/get-neteventvmnetworkadapter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetEventVmNetworkAdapter --- diff --git a/docset/winserver2012r2-ps/neteventpacketcapture/Get-NetEventVmSwitch.md b/docset/winserver2012r2-ps/neteventpacketcapture/Get-NetEventVmSwitch.md index 7b4bad40ac..1849c9d227 100644 --- a/docset/winserver2012r2-ps/neteventpacketcapture/Get-NetEventVmSwitch.md +++ b/docset/winserver2012r2-ps/neteventpacketcapture/Get-NetEventVmSwitch.md @@ -2,7 +2,7 @@ external help file: MSFT_NetEventVmSwitch.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/get-neteventvmswitch?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/get-neteventvmswitch?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetEventVmSwitch --- diff --git a/docset/winserver2012r2-ps/neteventpacketcapture/New-NetEventSession.md b/docset/winserver2012r2-ps/neteventpacketcapture/New-NetEventSession.md index e98329fc24..1faaa4ec6d 100644 --- a/docset/winserver2012r2-ps/neteventpacketcapture/New-NetEventSession.md +++ b/docset/winserver2012r2-ps/neteventpacketcapture/New-NetEventSession.md @@ -2,7 +2,7 @@ external help file: MSFT_NetEventSession.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/new-neteventsession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/new-neteventsession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetEventSession --- diff --git a/docset/winserver2012r2-ps/neteventpacketcapture/Remove-NetEventNetworkAdapter.md b/docset/winserver2012r2-ps/neteventpacketcapture/Remove-NetEventNetworkAdapter.md index 5066beff6e..6de48b1ba1 100644 --- a/docset/winserver2012r2-ps/neteventpacketcapture/Remove-NetEventNetworkAdapter.md +++ b/docset/winserver2012r2-ps/neteventpacketcapture/Remove-NetEventNetworkAdapter.md @@ -2,7 +2,7 @@ external help file: MSFT_NetEventNetworkAdapter.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventnetworkadapter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventnetworkadapter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetEventNetworkAdapter --- diff --git a/docset/winserver2012r2-ps/neteventpacketcapture/Remove-NetEventPacketCaptureProvider.md b/docset/winserver2012r2-ps/neteventpacketcapture/Remove-NetEventPacketCaptureProvider.md index efc3a9af92..3dc5ab06da 100644 --- a/docset/winserver2012r2-ps/neteventpacketcapture/Remove-NetEventPacketCaptureProvider.md +++ b/docset/winserver2012r2-ps/neteventpacketcapture/Remove-NetEventPacketCaptureProvider.md @@ -2,7 +2,7 @@ external help file: MSFT_NetEventPacketCaptureProvider.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventpacketcaptureprovider?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventpacketcaptureprovider?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetEventPacketCaptureProvider --- diff --git a/docset/winserver2012r2-ps/neteventpacketcapture/Remove-NetEventProvider.md b/docset/winserver2012r2-ps/neteventpacketcapture/Remove-NetEventProvider.md index 3da81f86b9..2de8294295 100644 --- a/docset/winserver2012r2-ps/neteventpacketcapture/Remove-NetEventProvider.md +++ b/docset/winserver2012r2-ps/neteventpacketcapture/Remove-NetEventProvider.md @@ -2,7 +2,7 @@ external help file: MSFT_NetEventProvider.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventprovider?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventprovider?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetEventProvider --- diff --git a/docset/winserver2012r2-ps/neteventpacketcapture/Remove-NetEventSession.md b/docset/winserver2012r2-ps/neteventpacketcapture/Remove-NetEventSession.md index 13534e4e09..3ea09a59ed 100644 --- a/docset/winserver2012r2-ps/neteventpacketcapture/Remove-NetEventSession.md +++ b/docset/winserver2012r2-ps/neteventpacketcapture/Remove-NetEventSession.md @@ -2,7 +2,7 @@ external help file: MSFT_NetEventSession.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventsession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventsession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetEventSession --- diff --git a/docset/winserver2012r2-ps/neteventpacketcapture/Remove-NetEventVmNetworkAdapter.md b/docset/winserver2012r2-ps/neteventpacketcapture/Remove-NetEventVmNetworkAdapter.md index 7debc275c7..4e3dc20dc8 100644 --- a/docset/winserver2012r2-ps/neteventpacketcapture/Remove-NetEventVmNetworkAdapter.md +++ b/docset/winserver2012r2-ps/neteventpacketcapture/Remove-NetEventVmNetworkAdapter.md @@ -2,7 +2,7 @@ external help file: MSFT_NetEventVmNetworkAdatper.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventvmnetworkadapter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventvmnetworkadapter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetEventVmNetworkAdapter --- diff --git a/docset/winserver2012r2-ps/neteventpacketcapture/Remove-NetEventVmSwitch.md b/docset/winserver2012r2-ps/neteventpacketcapture/Remove-NetEventVmSwitch.md index 2c157c05b2..5a370ac467 100644 --- a/docset/winserver2012r2-ps/neteventpacketcapture/Remove-NetEventVmSwitch.md +++ b/docset/winserver2012r2-ps/neteventpacketcapture/Remove-NetEventVmSwitch.md @@ -2,7 +2,7 @@ external help file: MSFT_NetEventVmSwitch.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventvmswitch?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventvmswitch?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetEventVmSwitch --- diff --git a/docset/winserver2012r2-ps/neteventpacketcapture/Set-NetEventPacketCaptureProvider.md b/docset/winserver2012r2-ps/neteventpacketcapture/Set-NetEventPacketCaptureProvider.md index cfea6b7d3a..9973169b06 100644 --- a/docset/winserver2012r2-ps/neteventpacketcapture/Set-NetEventPacketCaptureProvider.md +++ b/docset/winserver2012r2-ps/neteventpacketcapture/Set-NetEventPacketCaptureProvider.md @@ -2,7 +2,7 @@ external help file: MSFT_NetEventPacketCaptureProvider.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/set-neteventpacketcaptureprovider?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/set-neteventpacketcaptureprovider?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetEventPacketCaptureProvider --- diff --git a/docset/winserver2012r2-ps/neteventpacketcapture/Set-NetEventProvider.md b/docset/winserver2012r2-ps/neteventpacketcapture/Set-NetEventProvider.md index 0bd0d385bd..665a11e2de 100644 --- a/docset/winserver2012r2-ps/neteventpacketcapture/Set-NetEventProvider.md +++ b/docset/winserver2012r2-ps/neteventpacketcapture/Set-NetEventProvider.md @@ -2,7 +2,7 @@ external help file: MSFT_NetEventProvider.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/set-neteventprovider?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/set-neteventprovider?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetEventProvider --- diff --git a/docset/winserver2012r2-ps/neteventpacketcapture/Set-NetEventSession.md b/docset/winserver2012r2-ps/neteventpacketcapture/Set-NetEventSession.md index 512868451d..6bcc7a0980 100644 --- a/docset/winserver2012r2-ps/neteventpacketcapture/Set-NetEventSession.md +++ b/docset/winserver2012r2-ps/neteventpacketcapture/Set-NetEventSession.md @@ -2,7 +2,7 @@ external help file: MSFT_NetEventSession.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/set-neteventsession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/set-neteventsession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetEventSession --- diff --git a/docset/winserver2012r2-ps/neteventpacketcapture/Start-NetEventSession.md b/docset/winserver2012r2-ps/neteventpacketcapture/Start-NetEventSession.md index 865566d02e..30a30d7a47 100644 --- a/docset/winserver2012r2-ps/neteventpacketcapture/Start-NetEventSession.md +++ b/docset/winserver2012r2-ps/neteventpacketcapture/Start-NetEventSession.md @@ -2,7 +2,7 @@ external help file: MSFT_NetEventSession.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/start-neteventsession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/start-neteventsession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-NetEventSession --- diff --git a/docset/winserver2012r2-ps/neteventpacketcapture/Stop-NetEventSession.md b/docset/winserver2012r2-ps/neteventpacketcapture/Stop-NetEventSession.md index 829999f132..15d58b969b 100644 --- a/docset/winserver2012r2-ps/neteventpacketcapture/Stop-NetEventSession.md +++ b/docset/winserver2012r2-ps/neteventpacketcapture/Stop-NetEventSession.md @@ -2,7 +2,7 @@ external help file: MSFT_NetEventSession.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/stop-neteventsession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/stop-neteventsession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-NetEventSession --- diff --git a/docset/winserver2012r2-ps/netlbfo/Add-NetLbfoTeamMember.md b/docset/winserver2012r2-ps/netlbfo/Add-NetLbfoTeamMember.md index fb0803ca26..b44110f48f 100644 --- a/docset/winserver2012r2-ps/netlbfo/Add-NetLbfoTeamMember.md +++ b/docset/winserver2012r2-ps/netlbfo/Add-NetLbfoTeamMember.md @@ -2,7 +2,7 @@ external help file: MSFT_NetLbfoTeamMember.cdxml-help.xml Module Name: NetLbfo ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netlbfo/add-netlbfoteammember?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/add-netlbfoteammember?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NetLbfoTeamMember --- diff --git a/docset/winserver2012r2-ps/netlbfo/Add-NetLbfoTeamNic.md b/docset/winserver2012r2-ps/netlbfo/Add-NetLbfoTeamNic.md index 09ccdb68e2..1c0645fac5 100644 --- a/docset/winserver2012r2-ps/netlbfo/Add-NetLbfoTeamNic.md +++ b/docset/winserver2012r2-ps/netlbfo/Add-NetLbfoTeamNic.md @@ -2,7 +2,7 @@ external help file: MSFT_NetLbfoTeamNic.cdxml-help.xml Module Name: NetLbfo ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netlbfo/add-netlbfoteamnic?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/add-netlbfoteamnic?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NetLbfoTeamNic --- diff --git a/docset/winserver2012r2-ps/netlbfo/Get-NetLbfoTeam.md b/docset/winserver2012r2-ps/netlbfo/Get-NetLbfoTeam.md index 38855bd01f..11671a43d3 100644 --- a/docset/winserver2012r2-ps/netlbfo/Get-NetLbfoTeam.md +++ b/docset/winserver2012r2-ps/netlbfo/Get-NetLbfoTeam.md @@ -2,7 +2,7 @@ external help file: MSFT_NetLbfoTeam.cdxml-help.xml Module Name: NetLbfo ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netlbfo/get-netlbfoteam?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/get-netlbfoteam?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetLbfoTeam --- diff --git a/docset/winserver2012r2-ps/netlbfo/Get-NetLbfoTeamMember.md b/docset/winserver2012r2-ps/netlbfo/Get-NetLbfoTeamMember.md index 7f72d108e9..d0a12cca57 100644 --- a/docset/winserver2012r2-ps/netlbfo/Get-NetLbfoTeamMember.md +++ b/docset/winserver2012r2-ps/netlbfo/Get-NetLbfoTeamMember.md @@ -2,7 +2,7 @@ external help file: MSFT_NetLbfoTeamMember.cdxml-help.xml Module Name: NetLbfo ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netlbfo/get-netlbfoteammember?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/get-netlbfoteammember?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetLbfoTeamMember --- diff --git a/docset/winserver2012r2-ps/netlbfo/Get-NetLbfoTeamNic.md b/docset/winserver2012r2-ps/netlbfo/Get-NetLbfoTeamNic.md index f3293df14d..d4b3596a38 100644 --- a/docset/winserver2012r2-ps/netlbfo/Get-NetLbfoTeamNic.md +++ b/docset/winserver2012r2-ps/netlbfo/Get-NetLbfoTeamNic.md @@ -2,7 +2,7 @@ external help file: MSFT_NetLbfoTeamNic.cdxml-help.xml Module Name: NetLbfo ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netlbfo/get-netlbfoteamnic?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/get-netlbfoteamnic?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetLbfoTeamNic --- diff --git a/docset/winserver2012r2-ps/netlbfo/New-NetLbfoTeam.md b/docset/winserver2012r2-ps/netlbfo/New-NetLbfoTeam.md index b862b55eac..3c5db2d1a4 100644 --- a/docset/winserver2012r2-ps/netlbfo/New-NetLbfoTeam.md +++ b/docset/winserver2012r2-ps/netlbfo/New-NetLbfoTeam.md @@ -2,7 +2,7 @@ external help file: MSFT_NetLbfoTeam.cdxml-help.xml Module Name: NetLbfo ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netlbfo/new-netlbfoteam?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/new-netlbfoteam?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetLbfoTeam --- diff --git a/docset/winserver2012r2-ps/netlbfo/Remove-NetLbfoTeam.md b/docset/winserver2012r2-ps/netlbfo/Remove-NetLbfoTeam.md index de85219d87..35c9b9618e 100644 --- a/docset/winserver2012r2-ps/netlbfo/Remove-NetLbfoTeam.md +++ b/docset/winserver2012r2-ps/netlbfo/Remove-NetLbfoTeam.md @@ -2,7 +2,7 @@ external help file: MSFT_NetLbfoTeam.cdxml-help.xml Module Name: NetLbfo ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netlbfo/remove-netlbfoteam?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/remove-netlbfoteam?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetLbfoTeam --- diff --git a/docset/winserver2012r2-ps/netlbfo/Remove-NetLbfoTeamMember.md b/docset/winserver2012r2-ps/netlbfo/Remove-NetLbfoTeamMember.md index dc6c72e131..6e8f5f8599 100644 --- a/docset/winserver2012r2-ps/netlbfo/Remove-NetLbfoTeamMember.md +++ b/docset/winserver2012r2-ps/netlbfo/Remove-NetLbfoTeamMember.md @@ -2,7 +2,7 @@ external help file: MSFT_NetLbfoTeamMember.cdxml-help.xml Module Name: NetLbfo ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netlbfo/remove-netlbfoteammember?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/remove-netlbfoteammember?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetLbfoTeamMember --- diff --git a/docset/winserver2012r2-ps/netlbfo/Remove-NetLbfoTeamNic.md b/docset/winserver2012r2-ps/netlbfo/Remove-NetLbfoTeamNic.md index f29d449168..8bd5f18d5f 100644 --- a/docset/winserver2012r2-ps/netlbfo/Remove-NetLbfoTeamNic.md +++ b/docset/winserver2012r2-ps/netlbfo/Remove-NetLbfoTeamNic.md @@ -2,7 +2,7 @@ external help file: MSFT_NetLbfoTeamNic.cdxml-help.xml Module Name: NetLbfo ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netlbfo/remove-netlbfoteamnic?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/remove-netlbfoteamnic?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetLbfoTeamNic --- diff --git a/docset/winserver2012r2-ps/netlbfo/Rename-NetLbfoTeam.md b/docset/winserver2012r2-ps/netlbfo/Rename-NetLbfoTeam.md index 574e841fe9..c47afca12d 100644 --- a/docset/winserver2012r2-ps/netlbfo/Rename-NetLbfoTeam.md +++ b/docset/winserver2012r2-ps/netlbfo/Rename-NetLbfoTeam.md @@ -2,7 +2,7 @@ external help file: MSFT_NetLbfoTeam.cdxml-help.xml Module Name: NetLbfo ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netlbfo/rename-netlbfoteam?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/rename-netlbfoteam?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-NetLbfoTeam --- diff --git a/docset/winserver2012r2-ps/netlbfo/Set-NetLbfoTeam.md b/docset/winserver2012r2-ps/netlbfo/Set-NetLbfoTeam.md index 4524aac0e1..fdf8f6e3ef 100644 --- a/docset/winserver2012r2-ps/netlbfo/Set-NetLbfoTeam.md +++ b/docset/winserver2012r2-ps/netlbfo/Set-NetLbfoTeam.md @@ -2,7 +2,7 @@ external help file: MSFT_NetLbfoTeam.cdxml-help.xml Module Name: NetLbfo ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netlbfo/set-netlbfoteam?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/set-netlbfoteam?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetLbfoTeam --- diff --git a/docset/winserver2012r2-ps/netlbfo/Set-NetLbfoTeamMember.md b/docset/winserver2012r2-ps/netlbfo/Set-NetLbfoTeamMember.md index ae520fdbe9..0542c32ad7 100644 --- a/docset/winserver2012r2-ps/netlbfo/Set-NetLbfoTeamMember.md +++ b/docset/winserver2012r2-ps/netlbfo/Set-NetLbfoTeamMember.md @@ -2,7 +2,7 @@ external help file: MSFT_NetLbfoTeamMember.cdxml-help.xml Module Name: NetLbfo ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netlbfo/set-netlbfoteammember?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/set-netlbfoteammember?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetLbfoTeamMember --- diff --git a/docset/winserver2012r2-ps/netlbfo/Set-NetLbfoTeamNic.md b/docset/winserver2012r2-ps/netlbfo/Set-NetLbfoTeamNic.md index ff072d0891..a1c8d7630b 100644 --- a/docset/winserver2012r2-ps/netlbfo/Set-NetLbfoTeamNic.md +++ b/docset/winserver2012r2-ps/netlbfo/Set-NetLbfoTeamNic.md @@ -2,7 +2,7 @@ external help file: MSFT_NetLbfoTeamNic.cdxml-help.xml Module Name: NetLbfo ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netlbfo/set-netlbfoteamnic?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/set-netlbfoteamnic?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetLbfoTeamNic --- diff --git a/docset/winserver2012r2-ps/netnat/Add-NetNatExternalAddress.md b/docset/winserver2012r2-ps/netnat/Add-NetNatExternalAddress.md index c6bce41b5d..e2a367e073 100644 --- a/docset/winserver2012r2-ps/netnat/Add-NetNatExternalAddress.md +++ b/docset/winserver2012r2-ps/netnat/Add-NetNatExternalAddress.md @@ -2,7 +2,7 @@ external help file: MSFT_NetNatExternalAddress.cdxml-help.xml Module Name: NetNat ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netnat/add-netnatexternaladdress?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netnat/add-netnatexternaladdress?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NetNatExternalAddress --- diff --git a/docset/winserver2012r2-ps/netnat/Add-NetNatStaticMapping.md b/docset/winserver2012r2-ps/netnat/Add-NetNatStaticMapping.md index c3406552aa..7309a51da4 100644 --- a/docset/winserver2012r2-ps/netnat/Add-NetNatStaticMapping.md +++ b/docset/winserver2012r2-ps/netnat/Add-NetNatStaticMapping.md @@ -2,7 +2,7 @@ external help file: MSFT_NetNatStaticMapping.cdxml-help.xml Module Name: NetNat ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netnat/add-netnatstaticmapping?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netnat/add-netnatstaticmapping?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NetNatStaticMapping --- diff --git a/docset/winserver2012r2-ps/netnat/Get-NetNat.md b/docset/winserver2012r2-ps/netnat/Get-NetNat.md index 32890160e6..48505aa009 100644 --- a/docset/winserver2012r2-ps/netnat/Get-NetNat.md +++ b/docset/winserver2012r2-ps/netnat/Get-NetNat.md @@ -2,7 +2,7 @@ external help file: MSFT_NetNat.cdxml-help.xml Module Name: NetNat ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netnat/get-netnat?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netnat/get-netnat?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetNat --- diff --git a/docset/winserver2012r2-ps/netnat/Get-NetNatExternalAddress.md b/docset/winserver2012r2-ps/netnat/Get-NetNatExternalAddress.md index 70d3319d00..de7e643679 100644 --- a/docset/winserver2012r2-ps/netnat/Get-NetNatExternalAddress.md +++ b/docset/winserver2012r2-ps/netnat/Get-NetNatExternalAddress.md @@ -2,7 +2,7 @@ external help file: MSFT_NetNatExternalAddress.cdxml-help.xml Module Name: NetNat ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netnat/get-netnatexternaladdress?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netnat/get-netnatexternaladdress?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetNatExternalAddress --- diff --git a/docset/winserver2012r2-ps/netnat/Get-NetNatGlobal.md b/docset/winserver2012r2-ps/netnat/Get-NetNatGlobal.md index 1d19d652fe..02f5e738c6 100644 --- a/docset/winserver2012r2-ps/netnat/Get-NetNatGlobal.md +++ b/docset/winserver2012r2-ps/netnat/Get-NetNatGlobal.md @@ -2,7 +2,7 @@ external help file: MSFT_NetNatGlobal.cdxml-help.xml Module Name: NetNat ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netnat/get-netnatglobal?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netnat/get-netnatglobal?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetNatGlobal --- diff --git a/docset/winserver2012r2-ps/netnat/Get-NetNatSession.md b/docset/winserver2012r2-ps/netnat/Get-NetNatSession.md index 93de835f65..5dfe9037a5 100644 --- a/docset/winserver2012r2-ps/netnat/Get-NetNatSession.md +++ b/docset/winserver2012r2-ps/netnat/Get-NetNatSession.md @@ -2,7 +2,7 @@ external help file: MSFT_NetNatSession.cdxml-help.xml Module Name: NetNat ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netnat/get-netnatsession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netnat/get-netnatsession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetNatSession --- diff --git a/docset/winserver2012r2-ps/netnat/Get-NetNatStaticMapping.md b/docset/winserver2012r2-ps/netnat/Get-NetNatStaticMapping.md index c5e03383c1..5538320b9d 100644 --- a/docset/winserver2012r2-ps/netnat/Get-NetNatStaticMapping.md +++ b/docset/winserver2012r2-ps/netnat/Get-NetNatStaticMapping.md @@ -2,7 +2,7 @@ external help file: MSFT_NetNatStaticMapping.cdxml-help.xml Module Name: NetNat ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netnat/get-netnatstaticmapping?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netnat/get-netnatstaticmapping?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetNatStaticMapping --- diff --git a/docset/winserver2012r2-ps/netnat/New-NetNat.md b/docset/winserver2012r2-ps/netnat/New-NetNat.md index 4df25a46d9..e7cf900e64 100644 --- a/docset/winserver2012r2-ps/netnat/New-NetNat.md +++ b/docset/winserver2012r2-ps/netnat/New-NetNat.md @@ -2,7 +2,7 @@ external help file: MSFT_NetNat.cdxml-help.xml Module Name: NetNat ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netnat/new-netnat?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netnat/new-netnat?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetNat --- diff --git a/docset/winserver2012r2-ps/netnat/Remove-NetNat.md b/docset/winserver2012r2-ps/netnat/Remove-NetNat.md index 661997c5dc..ef7754127a 100644 --- a/docset/winserver2012r2-ps/netnat/Remove-NetNat.md +++ b/docset/winserver2012r2-ps/netnat/Remove-NetNat.md @@ -2,7 +2,7 @@ external help file: MSFT_NetNat.cdxml-help.xml Module Name: NetNat ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netnat/remove-netnat?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netnat/remove-netnat?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetNat --- diff --git a/docset/winserver2012r2-ps/netnat/Remove-NetNatExternalAddress.md b/docset/winserver2012r2-ps/netnat/Remove-NetNatExternalAddress.md index a15eac68ac..0c302af076 100644 --- a/docset/winserver2012r2-ps/netnat/Remove-NetNatExternalAddress.md +++ b/docset/winserver2012r2-ps/netnat/Remove-NetNatExternalAddress.md @@ -2,7 +2,7 @@ external help file: MSFT_NetNatExternalAddress.cdxml-help.xml Module Name: NetNat ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netnat/remove-netnatexternaladdress?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netnat/remove-netnatexternaladdress?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetNatExternalAddress --- diff --git a/docset/winserver2012r2-ps/netnat/Remove-NetNatStaticMapping.md b/docset/winserver2012r2-ps/netnat/Remove-NetNatStaticMapping.md index cf96c0329d..9bc08b0fbd 100644 --- a/docset/winserver2012r2-ps/netnat/Remove-NetNatStaticMapping.md +++ b/docset/winserver2012r2-ps/netnat/Remove-NetNatStaticMapping.md @@ -2,7 +2,7 @@ external help file: MSFT_NetNatStaticMapping.cdxml-help.xml Module Name: NetNat ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netnat/remove-netnatstaticmapping?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netnat/remove-netnatstaticmapping?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetNatStaticMapping --- diff --git a/docset/winserver2012r2-ps/netnat/Set-NetNat.md b/docset/winserver2012r2-ps/netnat/Set-NetNat.md index 41a60f3ba9..128e3633d4 100644 --- a/docset/winserver2012r2-ps/netnat/Set-NetNat.md +++ b/docset/winserver2012r2-ps/netnat/Set-NetNat.md @@ -2,7 +2,7 @@ external help file: MSFT_NetNat.cdxml-help.xml Module Name: NetNat ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netnat/set-netnat?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netnat/set-netnat?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetNat --- diff --git a/docset/winserver2012r2-ps/netnat/Set-NetNatGlobal.md b/docset/winserver2012r2-ps/netnat/Set-NetNatGlobal.md index 4e758403ea..e99713ca52 100644 --- a/docset/winserver2012r2-ps/netnat/Set-NetNatGlobal.md +++ b/docset/winserver2012r2-ps/netnat/Set-NetNatGlobal.md @@ -2,7 +2,7 @@ external help file: MSFT_NetNatGlobal.cdxml-help.xml Module Name: NetNat ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netnat/set-netnatglobal?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netnat/set-netnatglobal?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetNatGlobal --- diff --git a/docset/winserver2012r2-ps/netqos/Get-NetQosPolicy.md b/docset/winserver2012r2-ps/netqos/Get-NetQosPolicy.md index 41f1f54861..42992225a4 100644 --- a/docset/winserver2012r2-ps/netqos/Get-NetQosPolicy.md +++ b/docset/winserver2012r2-ps/netqos/Get-NetQosPolicy.md @@ -2,7 +2,7 @@ external help file: MSFT_NetQosPolicy.cdxml-help.xml Module Name: NetQoS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netqos/get-netqospolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netqos/get-netqospolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetQosPolicy --- diff --git a/docset/winserver2012r2-ps/netqos/New-NetQosPolicy.md b/docset/winserver2012r2-ps/netqos/New-NetQosPolicy.md index dccb944d3d..d0969549ee 100644 --- a/docset/winserver2012r2-ps/netqos/New-NetQosPolicy.md +++ b/docset/winserver2012r2-ps/netqos/New-NetQosPolicy.md @@ -2,7 +2,7 @@ external help file: MSFT_NetQosPolicy.cdxml-help.xml Module Name: NetQoS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netqos/new-netqospolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netqos/new-netqospolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetQosPolicy --- diff --git a/docset/winserver2012r2-ps/netqos/Remove-NetQosPolicy.md b/docset/winserver2012r2-ps/netqos/Remove-NetQosPolicy.md index 864f338fac..021755261b 100644 --- a/docset/winserver2012r2-ps/netqos/Remove-NetQosPolicy.md +++ b/docset/winserver2012r2-ps/netqos/Remove-NetQosPolicy.md @@ -2,7 +2,7 @@ external help file: MSFT_NetQosPolicy.cdxml-help.xml Module Name: NetQoS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netqos/remove-netqospolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netqos/remove-netqospolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetQosPolicy --- diff --git a/docset/winserver2012r2-ps/netqos/Set-NetQosPolicy.md b/docset/winserver2012r2-ps/netqos/Set-NetQosPolicy.md index 51bb8f810e..9d08fa9b74 100644 --- a/docset/winserver2012r2-ps/netqos/Set-NetQosPolicy.md +++ b/docset/winserver2012r2-ps/netqos/Set-NetQosPolicy.md @@ -2,7 +2,7 @@ external help file: MSFT_NetQosPolicy.cdxml-help.xml Module Name: NetQoS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netqos/set-netqospolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netqos/set-netqospolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetQosPolicy --- diff --git a/docset/winserver2012r2-ps/netsecurity/Copy-NetFirewallRule.md b/docset/winserver2012r2-ps/netsecurity/Copy-NetFirewallRule.md index 6413733778..027ac9635b 100644 --- a/docset/winserver2012r2-ps/netsecurity/Copy-NetFirewallRule.md +++ b/docset/winserver2012r2-ps/netsecurity/Copy-NetFirewallRule.md @@ -2,7 +2,7 @@ external help file: NetFirewallRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/copy-netfirewallrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/copy-netfirewallrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Copy-NetFirewallRule --- diff --git a/docset/winserver2012r2-ps/netsecurity/Copy-NetIPsecMainModeCryptoSet.md b/docset/winserver2012r2-ps/netsecurity/Copy-NetIPsecMainModeCryptoSet.md index 376ed64042..9033b1a56d 100644 --- a/docset/winserver2012r2-ps/netsecurity/Copy-NetIPsecMainModeCryptoSet.md +++ b/docset/winserver2012r2-ps/netsecurity/Copy-NetIPsecMainModeCryptoSet.md @@ -2,7 +2,7 @@ external help file: NetIPsecMainModeCryptoSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/copy-netipsecmainmodecryptoset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/copy-netipsecmainmodecryptoset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Copy-NetIPsecMainModeCryptoSet --- diff --git a/docset/winserver2012r2-ps/netsecurity/Copy-NetIPsecMainModeRule.md b/docset/winserver2012r2-ps/netsecurity/Copy-NetIPsecMainModeRule.md index 9655a9cfee..a2c7b51c3e 100644 --- a/docset/winserver2012r2-ps/netsecurity/Copy-NetIPsecMainModeRule.md +++ b/docset/winserver2012r2-ps/netsecurity/Copy-NetIPsecMainModeRule.md @@ -2,7 +2,7 @@ external help file: NetIPsecMainModeRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/copy-netipsecmainmoderule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/copy-netipsecmainmoderule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Copy-NetIPsecMainModeRule --- diff --git a/docset/winserver2012r2-ps/netsecurity/Copy-NetIPsecPhase1AuthSet.md b/docset/winserver2012r2-ps/netsecurity/Copy-NetIPsecPhase1AuthSet.md index d2a7faa1ae..8251d626d9 100644 --- a/docset/winserver2012r2-ps/netsecurity/Copy-NetIPsecPhase1AuthSet.md +++ b/docset/winserver2012r2-ps/netsecurity/Copy-NetIPsecPhase1AuthSet.md @@ -2,7 +2,7 @@ external help file: NetIPsecPhase1AuthSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/copy-netipsecphase1authset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/copy-netipsecphase1authset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Copy-NetIPsecPhase1AuthSet --- diff --git a/docset/winserver2012r2-ps/netsecurity/Copy-NetIPsecPhase2AuthSet.md b/docset/winserver2012r2-ps/netsecurity/Copy-NetIPsecPhase2AuthSet.md index 68d0011492..4e269237d0 100644 --- a/docset/winserver2012r2-ps/netsecurity/Copy-NetIPsecPhase2AuthSet.md +++ b/docset/winserver2012r2-ps/netsecurity/Copy-NetIPsecPhase2AuthSet.md @@ -2,7 +2,7 @@ external help file: NetIPsecPhase2AuthSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/copy-netipsecphase2authset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/copy-netipsecphase2authset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Copy-NetIPsecPhase2AuthSet --- diff --git a/docset/winserver2012r2-ps/netsecurity/Copy-NetIPsecQuickModeCryptoSet.md b/docset/winserver2012r2-ps/netsecurity/Copy-NetIPsecQuickModeCryptoSet.md index c52698fbf2..c1abb2d1e4 100644 --- a/docset/winserver2012r2-ps/netsecurity/Copy-NetIPsecQuickModeCryptoSet.md +++ b/docset/winserver2012r2-ps/netsecurity/Copy-NetIPsecQuickModeCryptoSet.md @@ -2,7 +2,7 @@ external help file: NetIPsecQuickModeCryptoSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/copy-netipsecquickmodecryptoset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/copy-netipsecquickmodecryptoset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Copy-NetIPsecQuickModeCryptoSet --- diff --git a/docset/winserver2012r2-ps/netsecurity/Copy-NetIPsecRule.md b/docset/winserver2012r2-ps/netsecurity/Copy-NetIPsecRule.md index c5c9163170..6130a2d67e 100644 --- a/docset/winserver2012r2-ps/netsecurity/Copy-NetIPsecRule.md +++ b/docset/winserver2012r2-ps/netsecurity/Copy-NetIPsecRule.md @@ -2,7 +2,7 @@ external help file: NetIPsecRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/copy-netipsecrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/copy-netipsecrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Copy-NetIPsecRule --- diff --git a/docset/winserver2012r2-ps/netsecurity/Disable-NetFirewallRule.md b/docset/winserver2012r2-ps/netsecurity/Disable-NetFirewallRule.md index 92db36411f..3dda0b959e 100644 --- a/docset/winserver2012r2-ps/netsecurity/Disable-NetFirewallRule.md +++ b/docset/winserver2012r2-ps/netsecurity/Disable-NetFirewallRule.md @@ -2,7 +2,7 @@ external help file: NetFirewallRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/disable-netfirewallrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/disable-netfirewallrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetFirewallRule --- diff --git a/docset/winserver2012r2-ps/netsecurity/Disable-NetIPsecMainModeRule.md b/docset/winserver2012r2-ps/netsecurity/Disable-NetIPsecMainModeRule.md index 1b5decc33a..f5591d111d 100644 --- a/docset/winserver2012r2-ps/netsecurity/Disable-NetIPsecMainModeRule.md +++ b/docset/winserver2012r2-ps/netsecurity/Disable-NetIPsecMainModeRule.md @@ -2,7 +2,7 @@ external help file: NetIPsecMainModeRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/disable-netipsecmainmoderule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/disable-netipsecmainmoderule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetIPsecMainModeRule --- diff --git a/docset/winserver2012r2-ps/netsecurity/Disable-NetIPsecRule.md b/docset/winserver2012r2-ps/netsecurity/Disable-NetIPsecRule.md index 63a68a6a70..c0810dd4b6 100644 --- a/docset/winserver2012r2-ps/netsecurity/Disable-NetIPsecRule.md +++ b/docset/winserver2012r2-ps/netsecurity/Disable-NetIPsecRule.md @@ -2,7 +2,7 @@ external help file: NetIPsecRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/disable-netipsecrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/disable-netipsecrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetIPsecRule --- diff --git a/docset/winserver2012r2-ps/netsecurity/Enable-NetFirewallRule.md b/docset/winserver2012r2-ps/netsecurity/Enable-NetFirewallRule.md index 504f95bf43..c847c86f53 100644 --- a/docset/winserver2012r2-ps/netsecurity/Enable-NetFirewallRule.md +++ b/docset/winserver2012r2-ps/netsecurity/Enable-NetFirewallRule.md @@ -2,7 +2,7 @@ external help file: NetFirewallRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/enable-netfirewallrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/enable-netfirewallrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetFirewallRule --- diff --git a/docset/winserver2012r2-ps/netsecurity/Enable-NetIPsecMainModeRule.md b/docset/winserver2012r2-ps/netsecurity/Enable-NetIPsecMainModeRule.md index 3ff3a41bb0..fe45702cfd 100644 --- a/docset/winserver2012r2-ps/netsecurity/Enable-NetIPsecMainModeRule.md +++ b/docset/winserver2012r2-ps/netsecurity/Enable-NetIPsecMainModeRule.md @@ -2,7 +2,7 @@ external help file: NetIPsecMainModeRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/enable-netipsecmainmoderule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/enable-netipsecmainmoderule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetIPsecMainModeRule --- diff --git a/docset/winserver2012r2-ps/netsecurity/Enable-NetIPsecRule.md b/docset/winserver2012r2-ps/netsecurity/Enable-NetIPsecRule.md index 8e1d5fba84..37775a187e 100644 --- a/docset/winserver2012r2-ps/netsecurity/Enable-NetIPsecRule.md +++ b/docset/winserver2012r2-ps/netsecurity/Enable-NetIPsecRule.md @@ -2,7 +2,7 @@ external help file: NetIPsecRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/enable-netipsecrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/enable-netipsecrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetIPsecRule --- diff --git a/docset/winserver2012r2-ps/netsecurity/Find-NetIPsecRule.md b/docset/winserver2012r2-ps/netsecurity/Find-NetIPsecRule.md index 8b3623978e..0399fedab0 100644 --- a/docset/winserver2012r2-ps/netsecurity/Find-NetIPsecRule.md +++ b/docset/winserver2012r2-ps/netsecurity/Find-NetIPsecRule.md @@ -2,7 +2,7 @@ external help file: NetIPsecRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/find-netipsecrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/find-netipsecrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Find-NetIPsecRule --- diff --git a/docset/winserver2012r2-ps/netsecurity/Get-DAPolicyChange.md b/docset/winserver2012r2-ps/netsecurity/Get-DAPolicyChange.md index a7a1cb7a61..782895a58d 100644 --- a/docset/winserver2012r2-ps/netsecurity/Get-DAPolicyChange.md +++ b/docset/winserver2012r2-ps/netsecurity/Get-DAPolicyChange.md @@ -2,7 +2,7 @@ external help file: Microsoft.Windows.Firewall.Commands.dll-Help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-dapolicychange?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-dapolicychange?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DAPolicyChange --- diff --git a/docset/winserver2012r2-ps/netsecurity/Get-NetFirewallAddressFilter.md b/docset/winserver2012r2-ps/netsecurity/Get-NetFirewallAddressFilter.md index 34f5c8bcc3..252a7cd15a 100644 --- a/docset/winserver2012r2-ps/netsecurity/Get-NetFirewallAddressFilter.md +++ b/docset/winserver2012r2-ps/netsecurity/Get-NetFirewallAddressFilter.md @@ -2,7 +2,7 @@ external help file: NetFirewallAddressFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewalladdressfilter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netfirewalladdressfilter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetFirewallAddressFilter --- diff --git a/docset/winserver2012r2-ps/netsecurity/Get-NetFirewallApplicationFilter.md b/docset/winserver2012r2-ps/netsecurity/Get-NetFirewallApplicationFilter.md index 9c0326058f..5f5e46e28a 100644 --- a/docset/winserver2012r2-ps/netsecurity/Get-NetFirewallApplicationFilter.md +++ b/docset/winserver2012r2-ps/netsecurity/Get-NetFirewallApplicationFilter.md @@ -2,7 +2,7 @@ external help file: NetFirewallApplicationFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewallapplicationfilter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netfirewallapplicationfilter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetFirewallApplicationFilter --- diff --git a/docset/winserver2012r2-ps/netsecurity/Get-NetFirewallInterfaceFilter.md b/docset/winserver2012r2-ps/netsecurity/Get-NetFirewallInterfaceFilter.md index 3d3b36aaa1..1ed1187f7a 100644 --- a/docset/winserver2012r2-ps/netsecurity/Get-NetFirewallInterfaceFilter.md +++ b/docset/winserver2012r2-ps/netsecurity/Get-NetFirewallInterfaceFilter.md @@ -2,7 +2,7 @@ external help file: NetFirewallInterfaceFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewallinterfacefilter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netfirewallinterfacefilter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetFirewallInterfaceFilter --- diff --git a/docset/winserver2012r2-ps/netsecurity/Get-NetFirewallInterfaceTypeFilter.md b/docset/winserver2012r2-ps/netsecurity/Get-NetFirewallInterfaceTypeFilter.md index bc3d3201f6..e9c1a1b198 100644 --- a/docset/winserver2012r2-ps/netsecurity/Get-NetFirewallInterfaceTypeFilter.md +++ b/docset/winserver2012r2-ps/netsecurity/Get-NetFirewallInterfaceTypeFilter.md @@ -2,7 +2,7 @@ external help file: NetFirewallInterfaceTypeFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewallinterfacetypefilter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netfirewallinterfacetypefilter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetFirewallInterfaceTypeFilter --- diff --git a/docset/winserver2012r2-ps/netsecurity/Get-NetFirewallPortFilter.md b/docset/winserver2012r2-ps/netsecurity/Get-NetFirewallPortFilter.md index 2f41fa0342..386de235e4 100644 --- a/docset/winserver2012r2-ps/netsecurity/Get-NetFirewallPortFilter.md +++ b/docset/winserver2012r2-ps/netsecurity/Get-NetFirewallPortFilter.md @@ -2,7 +2,7 @@ external help file: NetFirewallPortFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewallportfilter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netfirewallportfilter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetFirewallPortFilter --- diff --git a/docset/winserver2012r2-ps/netsecurity/Get-NetFirewallProfile.md b/docset/winserver2012r2-ps/netsecurity/Get-NetFirewallProfile.md index e1130d4556..ba7e6bdf74 100644 --- a/docset/winserver2012r2-ps/netsecurity/Get-NetFirewallProfile.md +++ b/docset/winserver2012r2-ps/netsecurity/Get-NetFirewallProfile.md @@ -2,7 +2,7 @@ external help file: NetFirewallProfile.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewallprofile?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netfirewallprofile?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetFirewallProfile --- diff --git a/docset/winserver2012r2-ps/netsecurity/Get-NetFirewallRule.md b/docset/winserver2012r2-ps/netsecurity/Get-NetFirewallRule.md index ca5811e7ee..56f558281c 100644 --- a/docset/winserver2012r2-ps/netsecurity/Get-NetFirewallRule.md +++ b/docset/winserver2012r2-ps/netsecurity/Get-NetFirewallRule.md @@ -2,7 +2,7 @@ external help file: NetFirewallRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewallrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netfirewallrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetFirewallRule --- diff --git a/docset/winserver2012r2-ps/netsecurity/Get-NetFirewallSecurityFilter.md b/docset/winserver2012r2-ps/netsecurity/Get-NetFirewallSecurityFilter.md index 3478e264e3..cd800dd21e 100644 --- a/docset/winserver2012r2-ps/netsecurity/Get-NetFirewallSecurityFilter.md +++ b/docset/winserver2012r2-ps/netsecurity/Get-NetFirewallSecurityFilter.md @@ -2,7 +2,7 @@ external help file: NetFirewallSecurityFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewallsecurityfilter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netfirewallsecurityfilter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetFirewallSecurityFilter --- diff --git a/docset/winserver2012r2-ps/netsecurity/Get-NetFirewallServiceFilter.md b/docset/winserver2012r2-ps/netsecurity/Get-NetFirewallServiceFilter.md index 78ed131e7d..e9a78b7299 100644 --- a/docset/winserver2012r2-ps/netsecurity/Get-NetFirewallServiceFilter.md +++ b/docset/winserver2012r2-ps/netsecurity/Get-NetFirewallServiceFilter.md @@ -2,7 +2,7 @@ external help file: NetFirewallServiceFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewallservicefilter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netfirewallservicefilter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetFirewallServiceFilter --- diff --git a/docset/winserver2012r2-ps/netsecurity/Get-NetFirewallSetting.md b/docset/winserver2012r2-ps/netsecurity/Get-NetFirewallSetting.md index f239ed3542..af8b7402eb 100644 --- a/docset/winserver2012r2-ps/netsecurity/Get-NetFirewallSetting.md +++ b/docset/winserver2012r2-ps/netsecurity/Get-NetFirewallSetting.md @@ -2,7 +2,7 @@ external help file: NetFirewallSetting.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewallsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netfirewallsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetFirewallSetting --- diff --git a/docset/winserver2012r2-ps/netsecurity/Get-NetIPsecDospSetting.md b/docset/winserver2012r2-ps/netsecurity/Get-NetIPsecDospSetting.md index 12ff440cf8..c19e9dc3ed 100644 --- a/docset/winserver2012r2-ps/netsecurity/Get-NetIPsecDospSetting.md +++ b/docset/winserver2012r2-ps/netsecurity/Get-NetIPsecDospSetting.md @@ -2,7 +2,7 @@ external help file: NetIPsecDospSetting.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netipsecdospsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netipsecdospsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPsecDospSetting --- diff --git a/docset/winserver2012r2-ps/netsecurity/Get-NetIPsecMainModeCryptoSet.md b/docset/winserver2012r2-ps/netsecurity/Get-NetIPsecMainModeCryptoSet.md index 5acf5ab6c0..d17d395fd3 100644 --- a/docset/winserver2012r2-ps/netsecurity/Get-NetIPsecMainModeCryptoSet.md +++ b/docset/winserver2012r2-ps/netsecurity/Get-NetIPsecMainModeCryptoSet.md @@ -2,7 +2,7 @@ external help file: NetIPsecMainModeCryptoSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netipsecmainmodecryptoset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netipsecmainmodecryptoset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPsecMainModeCryptoSet --- diff --git a/docset/winserver2012r2-ps/netsecurity/Get-NetIPsecMainModeRule.md b/docset/winserver2012r2-ps/netsecurity/Get-NetIPsecMainModeRule.md index 74a9e5e042..0df69fd4ec 100644 --- a/docset/winserver2012r2-ps/netsecurity/Get-NetIPsecMainModeRule.md +++ b/docset/winserver2012r2-ps/netsecurity/Get-NetIPsecMainModeRule.md @@ -2,7 +2,7 @@ external help file: NetIPsecMainModeRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netipsecmainmoderule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netipsecmainmoderule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPsecMainModeRule --- diff --git a/docset/winserver2012r2-ps/netsecurity/Get-NetIPsecMainModeSA.md b/docset/winserver2012r2-ps/netsecurity/Get-NetIPsecMainModeSA.md index 81d67511b6..9287a688c6 100644 --- a/docset/winserver2012r2-ps/netsecurity/Get-NetIPsecMainModeSA.md +++ b/docset/winserver2012r2-ps/netsecurity/Get-NetIPsecMainModeSA.md @@ -2,7 +2,7 @@ external help file: NetIPsecMainModeSA.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netipsecmainmodesa?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netipsecmainmodesa?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPsecMainModeSA --- diff --git a/docset/winserver2012r2-ps/netsecurity/Get-NetIPsecPhase1AuthSet.md b/docset/winserver2012r2-ps/netsecurity/Get-NetIPsecPhase1AuthSet.md index 631ac7f81b..d99669ae0d 100644 --- a/docset/winserver2012r2-ps/netsecurity/Get-NetIPsecPhase1AuthSet.md +++ b/docset/winserver2012r2-ps/netsecurity/Get-NetIPsecPhase1AuthSet.md @@ -2,7 +2,7 @@ external help file: NetIPsecPhase1AuthSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netipsecphase1authset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netipsecphase1authset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPsecPhase1AuthSet --- diff --git a/docset/winserver2012r2-ps/netsecurity/Get-NetIPsecPhase2AuthSet.md b/docset/winserver2012r2-ps/netsecurity/Get-NetIPsecPhase2AuthSet.md index d4f819c613..5c735f2c25 100644 --- a/docset/winserver2012r2-ps/netsecurity/Get-NetIPsecPhase2AuthSet.md +++ b/docset/winserver2012r2-ps/netsecurity/Get-NetIPsecPhase2AuthSet.md @@ -2,7 +2,7 @@ external help file: NetIPsecPhase2AuthSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netipsecphase2authset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netipsecphase2authset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPsecPhase2AuthSet --- diff --git a/docset/winserver2012r2-ps/netsecurity/Get-NetIPsecQuickModeCryptoSet.md b/docset/winserver2012r2-ps/netsecurity/Get-NetIPsecQuickModeCryptoSet.md index b1ab565992..9b95a5a9ed 100644 --- a/docset/winserver2012r2-ps/netsecurity/Get-NetIPsecQuickModeCryptoSet.md +++ b/docset/winserver2012r2-ps/netsecurity/Get-NetIPsecQuickModeCryptoSet.md @@ -2,7 +2,7 @@ external help file: NetIPsecQuickModeCryptoSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netipsecquickmodecryptoset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netipsecquickmodecryptoset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPsecQuickModeCryptoSet --- diff --git a/docset/winserver2012r2-ps/netsecurity/Get-NetIPsecQuickModeSA.md b/docset/winserver2012r2-ps/netsecurity/Get-NetIPsecQuickModeSA.md index 1530b7875e..c532f8a969 100644 --- a/docset/winserver2012r2-ps/netsecurity/Get-NetIPsecQuickModeSA.md +++ b/docset/winserver2012r2-ps/netsecurity/Get-NetIPsecQuickModeSA.md @@ -2,7 +2,7 @@ external help file: NetIPsecQuickModeSA.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netipsecquickmodesa?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netipsecquickmodesa?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPsecQuickModeSA --- diff --git a/docset/winserver2012r2-ps/netsecurity/Get-NetIPsecRule.md b/docset/winserver2012r2-ps/netsecurity/Get-NetIPsecRule.md index 52c48f16d0..725b751491 100644 --- a/docset/winserver2012r2-ps/netsecurity/Get-NetIPsecRule.md +++ b/docset/winserver2012r2-ps/netsecurity/Get-NetIPsecRule.md @@ -2,7 +2,7 @@ external help file: NetIPsecRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netipsecrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netipsecrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPsecRule --- diff --git a/docset/winserver2012r2-ps/netsecurity/New-NetFirewallRule.md b/docset/winserver2012r2-ps/netsecurity/New-NetFirewallRule.md index 4d6c82bd21..85adbc9875 100644 --- a/docset/winserver2012r2-ps/netsecurity/New-NetFirewallRule.md +++ b/docset/winserver2012r2-ps/netsecurity/New-NetFirewallRule.md @@ -2,7 +2,7 @@ external help file: NetFirewallRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netfirewallrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netfirewallrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetFirewallRule --- diff --git a/docset/winserver2012r2-ps/netsecurity/New-NetIPsecAuthProposal.md b/docset/winserver2012r2-ps/netsecurity/New-NetIPsecAuthProposal.md index 94029d1e24..ef2cf5114f 100644 --- a/docset/winserver2012r2-ps/netsecurity/New-NetIPsecAuthProposal.md +++ b/docset/winserver2012r2-ps/netsecurity/New-NetIPsecAuthProposal.md @@ -2,7 +2,7 @@ external help file: Microsoft.Windows.Firewall.Commands.dll-Help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netipsecauthproposal?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netipsecauthproposal?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetIPsecAuthProposal --- diff --git a/docset/winserver2012r2-ps/netsecurity/New-NetIPsecDospSetting.md b/docset/winserver2012r2-ps/netsecurity/New-NetIPsecDospSetting.md index 8a30f415cc..e01adb4e51 100644 --- a/docset/winserver2012r2-ps/netsecurity/New-NetIPsecDospSetting.md +++ b/docset/winserver2012r2-ps/netsecurity/New-NetIPsecDospSetting.md @@ -2,7 +2,7 @@ external help file: NetIPsecDospSetting.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netipsecdospsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netipsecdospsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetIPsecDospSetting --- diff --git a/docset/winserver2012r2-ps/netsecurity/New-NetIPsecMainModeCryptoProposal.md b/docset/winserver2012r2-ps/netsecurity/New-NetIPsecMainModeCryptoProposal.md index a24649bd93..859bffb278 100644 --- a/docset/winserver2012r2-ps/netsecurity/New-NetIPsecMainModeCryptoProposal.md +++ b/docset/winserver2012r2-ps/netsecurity/New-NetIPsecMainModeCryptoProposal.md @@ -2,7 +2,7 @@ external help file: Microsoft.Windows.Firewall.Commands.dll-Help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netipsecmainmodecryptoproposal?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netipsecmainmodecryptoproposal?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetIPsecMainModeCryptoProposal --- diff --git a/docset/winserver2012r2-ps/netsecurity/New-NetIPsecMainModeCryptoSet.md b/docset/winserver2012r2-ps/netsecurity/New-NetIPsecMainModeCryptoSet.md index 2f367c985a..7a1df83aa8 100644 --- a/docset/winserver2012r2-ps/netsecurity/New-NetIPsecMainModeCryptoSet.md +++ b/docset/winserver2012r2-ps/netsecurity/New-NetIPsecMainModeCryptoSet.md @@ -2,7 +2,7 @@ external help file: NetIPsecMainModeCryptoSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netipsecmainmodecryptoset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netipsecmainmodecryptoset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetIPsecMainModeCryptoSet --- diff --git a/docset/winserver2012r2-ps/netsecurity/New-NetIPsecMainModeRule.md b/docset/winserver2012r2-ps/netsecurity/New-NetIPsecMainModeRule.md index cc783cb1e0..805e189d85 100644 --- a/docset/winserver2012r2-ps/netsecurity/New-NetIPsecMainModeRule.md +++ b/docset/winserver2012r2-ps/netsecurity/New-NetIPsecMainModeRule.md @@ -2,7 +2,7 @@ external help file: NetIPsecMainModeRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netipsecmainmoderule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netipsecmainmoderule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetIPsecMainModeRule --- diff --git a/docset/winserver2012r2-ps/netsecurity/New-NetIPsecPhase1AuthSet.md b/docset/winserver2012r2-ps/netsecurity/New-NetIPsecPhase1AuthSet.md index 1ea5bf3b77..a3a428e5a8 100644 --- a/docset/winserver2012r2-ps/netsecurity/New-NetIPsecPhase1AuthSet.md +++ b/docset/winserver2012r2-ps/netsecurity/New-NetIPsecPhase1AuthSet.md @@ -2,7 +2,7 @@ external help file: NetIPsecPhase1AuthSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netipsecphase1authset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netipsecphase1authset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetIPsecPhase1AuthSet --- diff --git a/docset/winserver2012r2-ps/netsecurity/New-NetIPsecPhase2AuthSet.md b/docset/winserver2012r2-ps/netsecurity/New-NetIPsecPhase2AuthSet.md index d0269d51be..973a348104 100644 --- a/docset/winserver2012r2-ps/netsecurity/New-NetIPsecPhase2AuthSet.md +++ b/docset/winserver2012r2-ps/netsecurity/New-NetIPsecPhase2AuthSet.md @@ -2,7 +2,7 @@ external help file: NetIPsecPhase2AuthSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netipsecphase2authset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netipsecphase2authset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetIPsecPhase2AuthSet --- diff --git a/docset/winserver2012r2-ps/netsecurity/New-NetIPsecQuickModeCryptoProposal.md b/docset/winserver2012r2-ps/netsecurity/New-NetIPsecQuickModeCryptoProposal.md index 24add8b738..a2bcc5c815 100644 --- a/docset/winserver2012r2-ps/netsecurity/New-NetIPsecQuickModeCryptoProposal.md +++ b/docset/winserver2012r2-ps/netsecurity/New-NetIPsecQuickModeCryptoProposal.md @@ -2,7 +2,7 @@ external help file: Microsoft.Windows.Firewall.Commands.dll-Help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netipsecquickmodecryptoproposal?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netipsecquickmodecryptoproposal?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetIPsecQuickModeCryptoProposal --- diff --git a/docset/winserver2012r2-ps/netsecurity/New-NetIPsecQuickModeCryptoSet.md b/docset/winserver2012r2-ps/netsecurity/New-NetIPsecQuickModeCryptoSet.md index 8d5836009b..3c60d30948 100644 --- a/docset/winserver2012r2-ps/netsecurity/New-NetIPsecQuickModeCryptoSet.md +++ b/docset/winserver2012r2-ps/netsecurity/New-NetIPsecQuickModeCryptoSet.md @@ -2,7 +2,7 @@ external help file: NetIPsecQuickModeCryptoSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netipsecquickmodecryptoset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netipsecquickmodecryptoset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetIPsecQuickModeCryptoSet --- diff --git a/docset/winserver2012r2-ps/netsecurity/New-NetIPsecRule.md b/docset/winserver2012r2-ps/netsecurity/New-NetIPsecRule.md index dbb216b1da..d8a787609c 100644 --- a/docset/winserver2012r2-ps/netsecurity/New-NetIPsecRule.md +++ b/docset/winserver2012r2-ps/netsecurity/New-NetIPsecRule.md @@ -2,7 +2,7 @@ external help file: NetIPsecRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netipsecrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netipsecrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetIPsecRule --- diff --git a/docset/winserver2012r2-ps/netsecurity/Open-NetGPO.md b/docset/winserver2012r2-ps/netsecurity/Open-NetGPO.md index d80a3316c2..5f145db394 100644 --- a/docset/winserver2012r2-ps/netsecurity/Open-NetGPO.md +++ b/docset/winserver2012r2-ps/netsecurity/Open-NetGPO.md @@ -2,7 +2,7 @@ external help file: NetGPO.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/open-netgpo?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/open-netgpo?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Open-NetGPO --- diff --git a/docset/winserver2012r2-ps/netsecurity/Remove-NetFirewallRule.md b/docset/winserver2012r2-ps/netsecurity/Remove-NetFirewallRule.md index ced2a53c1e..867004a153 100644 --- a/docset/winserver2012r2-ps/netsecurity/Remove-NetFirewallRule.md +++ b/docset/winserver2012r2-ps/netsecurity/Remove-NetFirewallRule.md @@ -2,7 +2,7 @@ external help file: NetFirewallRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/remove-netfirewallrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/remove-netfirewallrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetFirewallRule --- diff --git a/docset/winserver2012r2-ps/netsecurity/Remove-NetIPsecDospSetting.md b/docset/winserver2012r2-ps/netsecurity/Remove-NetIPsecDospSetting.md index ebe0de61cc..b5e3189085 100644 --- a/docset/winserver2012r2-ps/netsecurity/Remove-NetIPsecDospSetting.md +++ b/docset/winserver2012r2-ps/netsecurity/Remove-NetIPsecDospSetting.md @@ -2,7 +2,7 @@ external help file: NetIPsecDospSetting.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/remove-netipsecdospsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/remove-netipsecdospsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetIPsecDospSetting --- diff --git a/docset/winserver2012r2-ps/netsecurity/Remove-NetIPsecMainModeCryptoSet.md b/docset/winserver2012r2-ps/netsecurity/Remove-NetIPsecMainModeCryptoSet.md index 681e7ddd38..7398c42e1d 100644 --- a/docset/winserver2012r2-ps/netsecurity/Remove-NetIPsecMainModeCryptoSet.md +++ b/docset/winserver2012r2-ps/netsecurity/Remove-NetIPsecMainModeCryptoSet.md @@ -2,7 +2,7 @@ external help file: NetIPsecMainModeCryptoSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/remove-netipsecmainmodecryptoset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/remove-netipsecmainmodecryptoset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetIPsecMainModeCryptoSet --- diff --git a/docset/winserver2012r2-ps/netsecurity/Remove-NetIPsecMainModeRule.md b/docset/winserver2012r2-ps/netsecurity/Remove-NetIPsecMainModeRule.md index 95f98e5522..5d2c8e6fd6 100644 --- a/docset/winserver2012r2-ps/netsecurity/Remove-NetIPsecMainModeRule.md +++ b/docset/winserver2012r2-ps/netsecurity/Remove-NetIPsecMainModeRule.md @@ -2,7 +2,7 @@ external help file: NetIPsecMainModeRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/remove-netipsecmainmoderule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/remove-netipsecmainmoderule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetIPsecMainModeRule --- diff --git a/docset/winserver2012r2-ps/netsecurity/Remove-NetIPsecMainModeSA.md b/docset/winserver2012r2-ps/netsecurity/Remove-NetIPsecMainModeSA.md index 00b2879781..10fe3f3919 100644 --- a/docset/winserver2012r2-ps/netsecurity/Remove-NetIPsecMainModeSA.md +++ b/docset/winserver2012r2-ps/netsecurity/Remove-NetIPsecMainModeSA.md @@ -2,7 +2,7 @@ external help file: NetIPsecMainModeSA.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/remove-netipsecmainmodesa?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/remove-netipsecmainmodesa?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetIPsecMainModeSA --- diff --git a/docset/winserver2012r2-ps/netsecurity/Remove-NetIPsecPhase1AuthSet.md b/docset/winserver2012r2-ps/netsecurity/Remove-NetIPsecPhase1AuthSet.md index 88947194c7..a661d6d429 100644 --- a/docset/winserver2012r2-ps/netsecurity/Remove-NetIPsecPhase1AuthSet.md +++ b/docset/winserver2012r2-ps/netsecurity/Remove-NetIPsecPhase1AuthSet.md @@ -2,7 +2,7 @@ external help file: NetIPsecPhase1AuthSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/remove-netipsecphase1authset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/remove-netipsecphase1authset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetIPsecPhase1AuthSet --- diff --git a/docset/winserver2012r2-ps/netsecurity/Remove-NetIPsecPhase2AuthSet.md b/docset/winserver2012r2-ps/netsecurity/Remove-NetIPsecPhase2AuthSet.md index 17fd7a4bb4..f8fb56b703 100644 --- a/docset/winserver2012r2-ps/netsecurity/Remove-NetIPsecPhase2AuthSet.md +++ b/docset/winserver2012r2-ps/netsecurity/Remove-NetIPsecPhase2AuthSet.md @@ -2,7 +2,7 @@ external help file: NetIPsecPhase2AuthSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/remove-netipsecphase2authset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/remove-netipsecphase2authset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetIPsecPhase2AuthSet --- diff --git a/docset/winserver2012r2-ps/netsecurity/Remove-NetIPsecQuickModeCryptoSet.md b/docset/winserver2012r2-ps/netsecurity/Remove-NetIPsecQuickModeCryptoSet.md index bdcbe73fdc..598c161926 100644 --- a/docset/winserver2012r2-ps/netsecurity/Remove-NetIPsecQuickModeCryptoSet.md +++ b/docset/winserver2012r2-ps/netsecurity/Remove-NetIPsecQuickModeCryptoSet.md @@ -2,7 +2,7 @@ external help file: NetIPsecQuickModeCryptoSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/remove-netipsecquickmodecryptoset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/remove-netipsecquickmodecryptoset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetIPsecQuickModeCryptoSet --- diff --git a/docset/winserver2012r2-ps/netsecurity/Remove-NetIPsecQuickModeSA.md b/docset/winserver2012r2-ps/netsecurity/Remove-NetIPsecQuickModeSA.md index 54cb3f46dd..616395ef0f 100644 --- a/docset/winserver2012r2-ps/netsecurity/Remove-NetIPsecQuickModeSA.md +++ b/docset/winserver2012r2-ps/netsecurity/Remove-NetIPsecQuickModeSA.md @@ -2,7 +2,7 @@ external help file: NetIPsecQuickModeSA.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/remove-netipsecquickmodesa?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/remove-netipsecquickmodesa?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetIPsecQuickModeSA --- diff --git a/docset/winserver2012r2-ps/netsecurity/Remove-NetIPsecRule.md b/docset/winserver2012r2-ps/netsecurity/Remove-NetIPsecRule.md index e04b9f3485..8d0a684dec 100644 --- a/docset/winserver2012r2-ps/netsecurity/Remove-NetIPsecRule.md +++ b/docset/winserver2012r2-ps/netsecurity/Remove-NetIPsecRule.md @@ -2,7 +2,7 @@ external help file: NetIPsecRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/remove-netipsecrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/remove-netipsecrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetIPsecRule --- diff --git a/docset/winserver2012r2-ps/netsecurity/Rename-NetFirewallRule.md b/docset/winserver2012r2-ps/netsecurity/Rename-NetFirewallRule.md index 6691a7c63c..4ecbb22864 100644 --- a/docset/winserver2012r2-ps/netsecurity/Rename-NetFirewallRule.md +++ b/docset/winserver2012r2-ps/netsecurity/Rename-NetFirewallRule.md @@ -2,7 +2,7 @@ external help file: NetFirewallRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/rename-netfirewallrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/rename-netfirewallrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-NetFirewallRule --- diff --git a/docset/winserver2012r2-ps/netsecurity/Rename-NetIPsecMainModeCryptoSet.md b/docset/winserver2012r2-ps/netsecurity/Rename-NetIPsecMainModeCryptoSet.md index 2316cc949a..a990f897be 100644 --- a/docset/winserver2012r2-ps/netsecurity/Rename-NetIPsecMainModeCryptoSet.md +++ b/docset/winserver2012r2-ps/netsecurity/Rename-NetIPsecMainModeCryptoSet.md @@ -2,7 +2,7 @@ external help file: NetIPsecMainModeCryptoSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/rename-netipsecmainmodecryptoset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/rename-netipsecmainmodecryptoset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-NetIPsecMainModeCryptoSet --- diff --git a/docset/winserver2012r2-ps/netsecurity/Rename-NetIPsecMainModeRule.md b/docset/winserver2012r2-ps/netsecurity/Rename-NetIPsecMainModeRule.md index 487bbd3a7e..0fa41f9efe 100644 --- a/docset/winserver2012r2-ps/netsecurity/Rename-NetIPsecMainModeRule.md +++ b/docset/winserver2012r2-ps/netsecurity/Rename-NetIPsecMainModeRule.md @@ -2,7 +2,7 @@ external help file: NetIPsecMainModeRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/rename-netipsecmainmoderule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/rename-netipsecmainmoderule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-NetIPsecMainModeRule --- diff --git a/docset/winserver2012r2-ps/netsecurity/Rename-NetIPsecPhase1AuthSet.md b/docset/winserver2012r2-ps/netsecurity/Rename-NetIPsecPhase1AuthSet.md index 32af6e7ed2..61618d6d91 100644 --- a/docset/winserver2012r2-ps/netsecurity/Rename-NetIPsecPhase1AuthSet.md +++ b/docset/winserver2012r2-ps/netsecurity/Rename-NetIPsecPhase1AuthSet.md @@ -2,7 +2,7 @@ external help file: NetIPsecPhase1AuthSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/rename-netipsecphase1authset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/rename-netipsecphase1authset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-NetIPsecPhase1AuthSet --- diff --git a/docset/winserver2012r2-ps/netsecurity/Rename-NetIPsecPhase2AuthSet.md b/docset/winserver2012r2-ps/netsecurity/Rename-NetIPsecPhase2AuthSet.md index 3b02b22c9e..dfe0104edd 100644 --- a/docset/winserver2012r2-ps/netsecurity/Rename-NetIPsecPhase2AuthSet.md +++ b/docset/winserver2012r2-ps/netsecurity/Rename-NetIPsecPhase2AuthSet.md @@ -2,7 +2,7 @@ external help file: NetIPsecPhase2AuthSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/rename-netipsecphase2authset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/rename-netipsecphase2authset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-NetIPsecPhase2AuthSet --- diff --git a/docset/winserver2012r2-ps/netsecurity/Rename-NetIPsecQuickModeCryptoSet.md b/docset/winserver2012r2-ps/netsecurity/Rename-NetIPsecQuickModeCryptoSet.md index efec401cf4..c72a0b27b3 100644 --- a/docset/winserver2012r2-ps/netsecurity/Rename-NetIPsecQuickModeCryptoSet.md +++ b/docset/winserver2012r2-ps/netsecurity/Rename-NetIPsecQuickModeCryptoSet.md @@ -2,7 +2,7 @@ external help file: NetIPsecQuickModeCryptoSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/rename-netipsecquickmodecryptoset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/rename-netipsecquickmodecryptoset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-NetIPsecQuickModeCryptoSet --- diff --git a/docset/winserver2012r2-ps/netsecurity/Rename-NetIPsecRule.md b/docset/winserver2012r2-ps/netsecurity/Rename-NetIPsecRule.md index 6fda55efe3..e05c6a5535 100644 --- a/docset/winserver2012r2-ps/netsecurity/Rename-NetIPsecRule.md +++ b/docset/winserver2012r2-ps/netsecurity/Rename-NetIPsecRule.md @@ -2,7 +2,7 @@ external help file: NetIPsecRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/rename-netipsecrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/rename-netipsecrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-NetIPsecRule --- diff --git a/docset/winserver2012r2-ps/netsecurity/Save-NetGPO.md b/docset/winserver2012r2-ps/netsecurity/Save-NetGPO.md index 269ad5015d..9f038bab0e 100644 --- a/docset/winserver2012r2-ps/netsecurity/Save-NetGPO.md +++ b/docset/winserver2012r2-ps/netsecurity/Save-NetGPO.md @@ -2,7 +2,7 @@ external help file: NetGPO.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/save-netgpo?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/save-netgpo?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Save-NetGPO --- diff --git a/docset/winserver2012r2-ps/netsecurity/Set-NetFirewallAddressFilter.md b/docset/winserver2012r2-ps/netsecurity/Set-NetFirewallAddressFilter.md index 77b23768d0..6827e58c5b 100644 --- a/docset/winserver2012r2-ps/netsecurity/Set-NetFirewallAddressFilter.md +++ b/docset/winserver2012r2-ps/netsecurity/Set-NetFirewallAddressFilter.md @@ -2,7 +2,7 @@ external help file: NetFirewallAddressFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewalladdressfilter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netfirewalladdressfilter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetFirewallAddressFilter --- diff --git a/docset/winserver2012r2-ps/netsecurity/Set-NetFirewallApplicationFilter.md b/docset/winserver2012r2-ps/netsecurity/Set-NetFirewallApplicationFilter.md index eb668128fe..0e8ab50a83 100644 --- a/docset/winserver2012r2-ps/netsecurity/Set-NetFirewallApplicationFilter.md +++ b/docset/winserver2012r2-ps/netsecurity/Set-NetFirewallApplicationFilter.md @@ -2,7 +2,7 @@ external help file: NetFirewallApplicationFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewallapplicationfilter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netfirewallapplicationfilter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetFirewallApplicationFilter --- diff --git a/docset/winserver2012r2-ps/netsecurity/Set-NetFirewallInterfaceFilter.md b/docset/winserver2012r2-ps/netsecurity/Set-NetFirewallInterfaceFilter.md index 76204bda44..a314548251 100644 --- a/docset/winserver2012r2-ps/netsecurity/Set-NetFirewallInterfaceFilter.md +++ b/docset/winserver2012r2-ps/netsecurity/Set-NetFirewallInterfaceFilter.md @@ -2,7 +2,7 @@ external help file: NetFirewallInterfaceFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewallinterfacefilter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netfirewallinterfacefilter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetFirewallInterfaceFilter --- diff --git a/docset/winserver2012r2-ps/netsecurity/Set-NetFirewallInterfaceTypeFilter.md b/docset/winserver2012r2-ps/netsecurity/Set-NetFirewallInterfaceTypeFilter.md index a8db4d3dcc..95e324d2c7 100644 --- a/docset/winserver2012r2-ps/netsecurity/Set-NetFirewallInterfaceTypeFilter.md +++ b/docset/winserver2012r2-ps/netsecurity/Set-NetFirewallInterfaceTypeFilter.md @@ -2,7 +2,7 @@ external help file: NetFirewallInterfaceTypeFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewallinterfacetypefilter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netfirewallinterfacetypefilter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetFirewallInterfaceTypeFilter --- diff --git a/docset/winserver2012r2-ps/netsecurity/Set-NetFirewallPortFilter.md b/docset/winserver2012r2-ps/netsecurity/Set-NetFirewallPortFilter.md index 7e1c6f1035..fe74b9d311 100644 --- a/docset/winserver2012r2-ps/netsecurity/Set-NetFirewallPortFilter.md +++ b/docset/winserver2012r2-ps/netsecurity/Set-NetFirewallPortFilter.md @@ -2,7 +2,7 @@ external help file: NetFirewallPortFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewallportfilter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netfirewallportfilter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetFirewallPortFilter --- diff --git a/docset/winserver2012r2-ps/netsecurity/Set-NetFirewallProfile.md b/docset/winserver2012r2-ps/netsecurity/Set-NetFirewallProfile.md index 1f54b6154b..a5bb5e91c9 100644 --- a/docset/winserver2012r2-ps/netsecurity/Set-NetFirewallProfile.md +++ b/docset/winserver2012r2-ps/netsecurity/Set-NetFirewallProfile.md @@ -2,7 +2,7 @@ external help file: NetFirewallProfile.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewallprofile?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netfirewallprofile?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetFirewallProfile --- diff --git a/docset/winserver2012r2-ps/netsecurity/Set-NetFirewallRule.md b/docset/winserver2012r2-ps/netsecurity/Set-NetFirewallRule.md index b409a21376..c48c8a7c47 100644 --- a/docset/winserver2012r2-ps/netsecurity/Set-NetFirewallRule.md +++ b/docset/winserver2012r2-ps/netsecurity/Set-NetFirewallRule.md @@ -2,7 +2,7 @@ external help file: NetFirewallRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewallrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netfirewallrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetFirewallRule --- diff --git a/docset/winserver2012r2-ps/netsecurity/Set-NetFirewallSecurityFilter.md b/docset/winserver2012r2-ps/netsecurity/Set-NetFirewallSecurityFilter.md index 29e5d4b4b4..7bfb064ea4 100644 --- a/docset/winserver2012r2-ps/netsecurity/Set-NetFirewallSecurityFilter.md +++ b/docset/winserver2012r2-ps/netsecurity/Set-NetFirewallSecurityFilter.md @@ -2,7 +2,7 @@ external help file: NetFirewallSecurityFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewallsecurityfilter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netfirewallsecurityfilter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetFirewallSecurityFilter --- diff --git a/docset/winserver2012r2-ps/netsecurity/Set-NetFirewallServiceFilter.md b/docset/winserver2012r2-ps/netsecurity/Set-NetFirewallServiceFilter.md index 603c5552c4..50bfe24bbe 100644 --- a/docset/winserver2012r2-ps/netsecurity/Set-NetFirewallServiceFilter.md +++ b/docset/winserver2012r2-ps/netsecurity/Set-NetFirewallServiceFilter.md @@ -2,7 +2,7 @@ external help file: NetFirewallServiceFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewallservicefilter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netfirewallservicefilter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetFirewallServiceFilter --- diff --git a/docset/winserver2012r2-ps/netsecurity/Set-NetFirewallSetting.md b/docset/winserver2012r2-ps/netsecurity/Set-NetFirewallSetting.md index 6778c15646..28e6b38e73 100644 --- a/docset/winserver2012r2-ps/netsecurity/Set-NetFirewallSetting.md +++ b/docset/winserver2012r2-ps/netsecurity/Set-NetFirewallSetting.md @@ -2,7 +2,7 @@ external help file: NetFirewallSetting.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewallsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netfirewallsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetFirewallSetting --- diff --git a/docset/winserver2012r2-ps/netsecurity/Set-NetIPsecDospSetting.md b/docset/winserver2012r2-ps/netsecurity/Set-NetIPsecDospSetting.md index 149d151593..13f6b81e2d 100644 --- a/docset/winserver2012r2-ps/netsecurity/Set-NetIPsecDospSetting.md +++ b/docset/winserver2012r2-ps/netsecurity/Set-NetIPsecDospSetting.md @@ -2,7 +2,7 @@ external help file: NetIPsecDospSetting.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netipsecdospsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netipsecdospsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetIPsecDospSetting --- diff --git a/docset/winserver2012r2-ps/netsecurity/Set-NetIPsecMainModeCryptoSet.md b/docset/winserver2012r2-ps/netsecurity/Set-NetIPsecMainModeCryptoSet.md index 35470419a5..372c67ee32 100644 --- a/docset/winserver2012r2-ps/netsecurity/Set-NetIPsecMainModeCryptoSet.md +++ b/docset/winserver2012r2-ps/netsecurity/Set-NetIPsecMainModeCryptoSet.md @@ -2,7 +2,7 @@ external help file: NetIPsecMainModeCryptoSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netipsecmainmodecryptoset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netipsecmainmodecryptoset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetIPsecMainModeCryptoSet --- diff --git a/docset/winserver2012r2-ps/netsecurity/Set-NetIPsecMainModeRule.md b/docset/winserver2012r2-ps/netsecurity/Set-NetIPsecMainModeRule.md index b37d5d6ac3..dbb0dc572e 100644 --- a/docset/winserver2012r2-ps/netsecurity/Set-NetIPsecMainModeRule.md +++ b/docset/winserver2012r2-ps/netsecurity/Set-NetIPsecMainModeRule.md @@ -2,7 +2,7 @@ external help file: NetIPsecMainModeRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netipsecmainmoderule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netipsecmainmoderule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetIPsecMainModeRule --- diff --git a/docset/winserver2012r2-ps/netsecurity/Set-NetIPsecPhase1AuthSet.md b/docset/winserver2012r2-ps/netsecurity/Set-NetIPsecPhase1AuthSet.md index 3e2d2891bf..6cb4f92a8c 100644 --- a/docset/winserver2012r2-ps/netsecurity/Set-NetIPsecPhase1AuthSet.md +++ b/docset/winserver2012r2-ps/netsecurity/Set-NetIPsecPhase1AuthSet.md @@ -2,7 +2,7 @@ external help file: NetIPsecPhase1AuthSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netipsecphase1authset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netipsecphase1authset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetIPsecPhase1AuthSet --- diff --git a/docset/winserver2012r2-ps/netsecurity/Set-NetIPsecPhase2AuthSet.md b/docset/winserver2012r2-ps/netsecurity/Set-NetIPsecPhase2AuthSet.md index cd9b466a01..30f3734faa 100644 --- a/docset/winserver2012r2-ps/netsecurity/Set-NetIPsecPhase2AuthSet.md +++ b/docset/winserver2012r2-ps/netsecurity/Set-NetIPsecPhase2AuthSet.md @@ -2,7 +2,7 @@ external help file: NetIPsecPhase2AuthSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netipsecphase2authset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netipsecphase2authset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetIPsecPhase2AuthSet --- diff --git a/docset/winserver2012r2-ps/netsecurity/Set-NetIPsecQuickModeCryptoSet.md b/docset/winserver2012r2-ps/netsecurity/Set-NetIPsecQuickModeCryptoSet.md index fc8e8cdd51..86f60a9daa 100644 --- a/docset/winserver2012r2-ps/netsecurity/Set-NetIPsecQuickModeCryptoSet.md +++ b/docset/winserver2012r2-ps/netsecurity/Set-NetIPsecQuickModeCryptoSet.md @@ -2,7 +2,7 @@ external help file: NetIPsecQuickModeCryptoSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netipsecquickmodecryptoset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netipsecquickmodecryptoset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetIPsecQuickModeCryptoSet --- diff --git a/docset/winserver2012r2-ps/netsecurity/Set-NetIPsecRule.md b/docset/winserver2012r2-ps/netsecurity/Set-NetIPsecRule.md index cece804d4d..67296c43fb 100644 --- a/docset/winserver2012r2-ps/netsecurity/Set-NetIPsecRule.md +++ b/docset/winserver2012r2-ps/netsecurity/Set-NetIPsecRule.md @@ -2,7 +2,7 @@ external help file: NetIPsecRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netipsecrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netipsecrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetIPsecRule --- diff --git a/docset/winserver2012r2-ps/netsecurity/Show-NetFirewallRule.md b/docset/winserver2012r2-ps/netsecurity/Show-NetFirewallRule.md index f8fcd2c44c..d0253dcdfc 100644 --- a/docset/winserver2012r2-ps/netsecurity/Show-NetFirewallRule.md +++ b/docset/winserver2012r2-ps/netsecurity/Show-NetFirewallRule.md @@ -2,7 +2,7 @@ external help file: NetFirewallRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/show-netfirewallrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/show-netfirewallrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Show-NetFirewallRule --- diff --git a/docset/winserver2012r2-ps/netsecurity/Show-NetIPsecRule.md b/docset/winserver2012r2-ps/netsecurity/Show-NetIPsecRule.md index 5bac6c52f5..b2766d70e2 100644 --- a/docset/winserver2012r2-ps/netsecurity/Show-NetIPsecRule.md +++ b/docset/winserver2012r2-ps/netsecurity/Show-NetIPsecRule.md @@ -2,7 +2,7 @@ external help file: NetIPsecRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/show-netipsecrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/show-netipsecrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Show-NetIPsecRule --- diff --git a/docset/winserver2012r2-ps/netsecurity/Sync-NetIPsecRule.md b/docset/winserver2012r2-ps/netsecurity/Sync-NetIPsecRule.md index 3576871f76..38414d0447 100644 --- a/docset/winserver2012r2-ps/netsecurity/Sync-NetIPsecRule.md +++ b/docset/winserver2012r2-ps/netsecurity/Sync-NetIPsecRule.md @@ -2,7 +2,7 @@ external help file: NetIPsecRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/sync-netipsecrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/sync-netipsecrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Sync-NetIPsecRule --- diff --git a/docset/winserver2012r2-ps/netsecurity/Update-NetIPsecRule.md b/docset/winserver2012r2-ps/netsecurity/Update-NetIPsecRule.md index f1026688e1..1e8d1d6b48 100644 --- a/docset/winserver2012r2-ps/netsecurity/Update-NetIPsecRule.md +++ b/docset/winserver2012r2-ps/netsecurity/Update-NetIPsecRule.md @@ -2,7 +2,7 @@ external help file: NetIPsecRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netsecurity/update-netipsecrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/update-netipsecrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-NetIPsecRule --- diff --git a/docset/winserver2012r2-ps/netswitchteam/Add-NetSwitchTeamMember.md b/docset/winserver2012r2-ps/netswitchteam/Add-NetSwitchTeamMember.md index e242c8954f..36b74a5dd0 100644 --- a/docset/winserver2012r2-ps/netswitchteam/Add-NetSwitchTeamMember.md +++ b/docset/winserver2012r2-ps/netswitchteam/Add-NetSwitchTeamMember.md @@ -2,7 +2,7 @@ external help file: MSFT_NetSwitchTeam.cdxml-help.xml Module Name: NetSwitchTeam ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netswitchteam/add-netswitchteammember?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netswitchteam/add-netswitchteammember?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NetSwitchTeamMember --- diff --git a/docset/winserver2012r2-ps/netswitchteam/Get-NetSwitchTeam.md b/docset/winserver2012r2-ps/netswitchteam/Get-NetSwitchTeam.md index 744f388387..2ccca6a1ba 100644 --- a/docset/winserver2012r2-ps/netswitchteam/Get-NetSwitchTeam.md +++ b/docset/winserver2012r2-ps/netswitchteam/Get-NetSwitchTeam.md @@ -2,7 +2,7 @@ external help file: MSFT_NetSwitchTeam.cdxml-help.xml Module Name: NetSwitchTeam ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netswitchteam/get-netswitchteam?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netswitchteam/get-netswitchteam?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetSwitchTeam --- diff --git a/docset/winserver2012r2-ps/netswitchteam/Get-NetSwitchTeamMember.md b/docset/winserver2012r2-ps/netswitchteam/Get-NetSwitchTeamMember.md index e179832a06..eb8589516b 100644 --- a/docset/winserver2012r2-ps/netswitchteam/Get-NetSwitchTeamMember.md +++ b/docset/winserver2012r2-ps/netswitchteam/Get-NetSwitchTeamMember.md @@ -2,7 +2,7 @@ external help file: MSFT_NetSwitchTeamMember.cdxml-help.xml Module Name: NetSwitchTeam ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netswitchteam/get-netswitchteammember?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netswitchteam/get-netswitchteammember?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetSwitchTeamMember --- diff --git a/docset/winserver2012r2-ps/netswitchteam/New-NetSwitchTeam.md b/docset/winserver2012r2-ps/netswitchteam/New-NetSwitchTeam.md index 132b87b326..7fd826135b 100644 --- a/docset/winserver2012r2-ps/netswitchteam/New-NetSwitchTeam.md +++ b/docset/winserver2012r2-ps/netswitchteam/New-NetSwitchTeam.md @@ -2,7 +2,7 @@ external help file: MSFT_NetSwitchTeam.cdxml-help.xml Module Name: NetSwitchTeam ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netswitchteam/new-netswitchteam?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netswitchteam/new-netswitchteam?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetSwitchTeam --- diff --git a/docset/winserver2012r2-ps/netswitchteam/Remove-NetSwitchTeam.md b/docset/winserver2012r2-ps/netswitchteam/Remove-NetSwitchTeam.md index 4c9c7192fb..27fdbd76bd 100644 --- a/docset/winserver2012r2-ps/netswitchteam/Remove-NetSwitchTeam.md +++ b/docset/winserver2012r2-ps/netswitchteam/Remove-NetSwitchTeam.md @@ -2,7 +2,7 @@ external help file: MSFT_NetSwitchTeam.cdxml-help.xml Module Name: NetSwitchTeam ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netswitchteam/remove-netswitchteam?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netswitchteam/remove-netswitchteam?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetSwitchTeam --- diff --git a/docset/winserver2012r2-ps/netswitchteam/Remove-NetSwitchTeamMember.md b/docset/winserver2012r2-ps/netswitchteam/Remove-NetSwitchTeamMember.md index 3e69c1e304..bae1416e54 100644 --- a/docset/winserver2012r2-ps/netswitchteam/Remove-NetSwitchTeamMember.md +++ b/docset/winserver2012r2-ps/netswitchteam/Remove-NetSwitchTeamMember.md @@ -2,7 +2,7 @@ external help file: MSFT_NetSwitchTeam.cdxml-help.xml Module Name: NetSwitchTeam ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netswitchteam/remove-netswitchteammember?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netswitchteam/remove-netswitchteammember?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetSwitchTeamMember --- diff --git a/docset/winserver2012r2-ps/netswitchteam/Rename-NetSwitchTeam.md b/docset/winserver2012r2-ps/netswitchteam/Rename-NetSwitchTeam.md index 78e0b37435..b53adb39da 100644 --- a/docset/winserver2012r2-ps/netswitchteam/Rename-NetSwitchTeam.md +++ b/docset/winserver2012r2-ps/netswitchteam/Rename-NetSwitchTeam.md @@ -2,7 +2,7 @@ external help file: MSFT_NetSwitchTeam.cdxml-help.xml Module Name: NetSwitchTeam ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/netswitchteam/rename-netswitchteam?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netswitchteam/rename-netswitchteam?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-NetSwitchTeam --- diff --git a/docset/winserver2012r2-ps/nettcpip/Find-NetRoute.md b/docset/winserver2012r2-ps/nettcpip/Find-NetRoute.md index eaa412f510..e08f67e285 100644 --- a/docset/winserver2012r2-ps/nettcpip/Find-NetRoute.md +++ b/docset/winserver2012r2-ps/nettcpip/Find-NetRoute.md @@ -2,7 +2,7 @@ external help file: MSFT_NetRoute.cdxml-help.xml Module Name: NetTCPIP ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nettcpip/find-netroute?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/find-netroute?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Find-NetRoute --- diff --git a/docset/winserver2012r2-ps/nettcpip/Get-NetCompartment.md b/docset/winserver2012r2-ps/nettcpip/Get-NetCompartment.md index a0fdb11c8b..7ddccca712 100644 --- a/docset/winserver2012r2-ps/nettcpip/Get-NetCompartment.md +++ b/docset/winserver2012r2-ps/nettcpip/Get-NetCompartment.md @@ -2,7 +2,7 @@ external help file: MSFT_NetCompartment.cdxml-help.xml Module Name: NetTCPIP ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netcompartment?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netcompartment?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetCompartment --- diff --git a/docset/winserver2012r2-ps/nettcpip/Get-NetIPAddress.md b/docset/winserver2012r2-ps/nettcpip/Get-NetIPAddress.md index 13a47c87c6..589e86cb66 100644 --- a/docset/winserver2012r2-ps/nettcpip/Get-NetIPAddress.md +++ b/docset/winserver2012r2-ps/nettcpip/Get-NetIPAddress.md @@ -2,7 +2,7 @@ external help file: MSFT_NetIPAddress.cdxml-help.xml Module Name: NetTCPIP ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netipaddress?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netipaddress?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPAddress --- diff --git a/docset/winserver2012r2-ps/nettcpip/Get-NetIPConfiguration.md b/docset/winserver2012r2-ps/nettcpip/Get-NetIPConfiguration.md index 6d25dbcf46..b6b6a218a2 100644 --- a/docset/winserver2012r2-ps/nettcpip/Get-NetIPConfiguration.md +++ b/docset/winserver2012r2-ps/nettcpip/Get-NetIPConfiguration.md @@ -2,7 +2,7 @@ external help file: NetIPConfiguration-help.xml Module Name: NetTCPIP ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netipconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netipconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPConfiguration --- diff --git a/docset/winserver2012r2-ps/nettcpip/Get-NetIPInterface.md b/docset/winserver2012r2-ps/nettcpip/Get-NetIPInterface.md index c0368ac75a..807bb4e7f8 100644 --- a/docset/winserver2012r2-ps/nettcpip/Get-NetIPInterface.md +++ b/docset/winserver2012r2-ps/nettcpip/Get-NetIPInterface.md @@ -2,7 +2,7 @@ external help file: MSFT_NetIPInterface.cdxml-help.xml Module Name: NetTCPIP ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netipinterface?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netipinterface?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPInterface --- diff --git a/docset/winserver2012r2-ps/nettcpip/Get-NetIPv4Protocol.md b/docset/winserver2012r2-ps/nettcpip/Get-NetIPv4Protocol.md index a84d52884d..5e9f020d95 100644 --- a/docset/winserver2012r2-ps/nettcpip/Get-NetIPv4Protocol.md +++ b/docset/winserver2012r2-ps/nettcpip/Get-NetIPv4Protocol.md @@ -2,7 +2,7 @@ external help file: MSFT_NetIPv4Protocol.cdxml-help.xml Module Name: NetTCPIP ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netipv4protocol?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netipv4protocol?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPv4Protocol --- diff --git a/docset/winserver2012r2-ps/nettcpip/Get-NetIPv6Protocol.md b/docset/winserver2012r2-ps/nettcpip/Get-NetIPv6Protocol.md index c8631cfad9..d123ed65bf 100644 --- a/docset/winserver2012r2-ps/nettcpip/Get-NetIPv6Protocol.md +++ b/docset/winserver2012r2-ps/nettcpip/Get-NetIPv6Protocol.md @@ -2,7 +2,7 @@ external help file: MSFT_NetIPv6Protocol.cdxml-help.xml Module Name: NetTCPIP ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netipv6protocol?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netipv6protocol?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPv6Protocol --- diff --git a/docset/winserver2012r2-ps/nettcpip/Get-NetNeighbor.md b/docset/winserver2012r2-ps/nettcpip/Get-NetNeighbor.md index 19eec78da7..d07a1048e0 100644 --- a/docset/winserver2012r2-ps/nettcpip/Get-NetNeighbor.md +++ b/docset/winserver2012r2-ps/nettcpip/Get-NetNeighbor.md @@ -2,7 +2,7 @@ external help file: MSFT_NetNeighbor.cdxml-help.xml Module Name: NetTCPIP ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netneighbor?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netneighbor?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetNeighbor --- diff --git a/docset/winserver2012r2-ps/nettcpip/Get-NetOffloadGlobalSetting.md b/docset/winserver2012r2-ps/nettcpip/Get-NetOffloadGlobalSetting.md index bd722eefbf..8ac66eafc8 100644 --- a/docset/winserver2012r2-ps/nettcpip/Get-NetOffloadGlobalSetting.md +++ b/docset/winserver2012r2-ps/nettcpip/Get-NetOffloadGlobalSetting.md @@ -2,7 +2,7 @@ external help file: MSFT_NetOffloadGlobalSetting.cdxml-help.xml Module Name: NetTCPIP ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netoffloadglobalsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netoffloadglobalsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetOffloadGlobalSetting --- diff --git a/docset/winserver2012r2-ps/nettcpip/Get-NetPrefixPolicy.md b/docset/winserver2012r2-ps/nettcpip/Get-NetPrefixPolicy.md index 881451f7e8..10326421d9 100644 --- a/docset/winserver2012r2-ps/nettcpip/Get-NetPrefixPolicy.md +++ b/docset/winserver2012r2-ps/nettcpip/Get-NetPrefixPolicy.md @@ -2,7 +2,7 @@ external help file: MSFT_NetPrefixPolicy.cdxml-help.xml Module Name: NetTCPIP ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netprefixpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netprefixpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetPrefixPolicy --- diff --git a/docset/winserver2012r2-ps/nettcpip/Get-NetRoute.md b/docset/winserver2012r2-ps/nettcpip/Get-NetRoute.md index b8776324f0..a4661374a9 100644 --- a/docset/winserver2012r2-ps/nettcpip/Get-NetRoute.md +++ b/docset/winserver2012r2-ps/nettcpip/Get-NetRoute.md @@ -2,7 +2,7 @@ external help file: MSFT_NetRoute.cdxml-help.xml Module Name: NetTCPIP ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netroute?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netroute?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetRoute --- diff --git a/docset/winserver2012r2-ps/nettcpip/Get-NetTCPConnection.md b/docset/winserver2012r2-ps/nettcpip/Get-NetTCPConnection.md index 7b7f8f3184..bb85a39a08 100644 --- a/docset/winserver2012r2-ps/nettcpip/Get-NetTCPConnection.md +++ b/docset/winserver2012r2-ps/nettcpip/Get-NetTCPConnection.md @@ -2,7 +2,7 @@ external help file: MSFT_NetTCPConnection.cdxml-help.xml Module Name: NetTCPIP ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-nettcpconnection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-nettcpconnection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetTCPConnection --- diff --git a/docset/winserver2012r2-ps/nettcpip/Get-NetTCPSetting.md b/docset/winserver2012r2-ps/nettcpip/Get-NetTCPSetting.md index 5f2fbf9375..06b0721dc7 100644 --- a/docset/winserver2012r2-ps/nettcpip/Get-NetTCPSetting.md +++ b/docset/winserver2012r2-ps/nettcpip/Get-NetTCPSetting.md @@ -2,7 +2,7 @@ external help file: MSFT_NetTCPSetting.cdxml-help.xml Module Name: NetTCPIP ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-nettcpsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-nettcpsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetTCPSetting --- diff --git a/docset/winserver2012r2-ps/nettcpip/Get-NetTransportFilter.md b/docset/winserver2012r2-ps/nettcpip/Get-NetTransportFilter.md index ea17139fb8..cb68bb6516 100644 --- a/docset/winserver2012r2-ps/nettcpip/Get-NetTransportFilter.md +++ b/docset/winserver2012r2-ps/nettcpip/Get-NetTransportFilter.md @@ -2,7 +2,7 @@ external help file: MSFT_NetTransportFilter.cdxml-help.xml Module Name: NetTCPIP ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-nettransportfilter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-nettransportfilter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetTransportFilter --- diff --git a/docset/winserver2012r2-ps/nettcpip/Get-NetUDPEndpoint.md b/docset/winserver2012r2-ps/nettcpip/Get-NetUDPEndpoint.md index 7ca690a5fa..54fdbab7f7 100644 --- a/docset/winserver2012r2-ps/nettcpip/Get-NetUDPEndpoint.md +++ b/docset/winserver2012r2-ps/nettcpip/Get-NetUDPEndpoint.md @@ -2,7 +2,7 @@ external help file: MSFT_NetUDPEndpoint.cdxml-help.xml Module Name: NetTCPIP ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netudpendpoint?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netudpendpoint?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetUDPEndpoint --- diff --git a/docset/winserver2012r2-ps/nettcpip/Get-NetUDPSetting.md b/docset/winserver2012r2-ps/nettcpip/Get-NetUDPSetting.md index 6b4c958386..42b07da896 100644 --- a/docset/winserver2012r2-ps/nettcpip/Get-NetUDPSetting.md +++ b/docset/winserver2012r2-ps/nettcpip/Get-NetUDPSetting.md @@ -2,7 +2,7 @@ external help file: MSFT_NetUDPSetting.cdxml-help.xml Module Name: NetTCPIP ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netudpsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netudpsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetUDPSetting --- diff --git a/docset/winserver2012r2-ps/nettcpip/New-NetIPAddress.md b/docset/winserver2012r2-ps/nettcpip/New-NetIPAddress.md index 3fc4fdcf6f..7c2b98e59a 100644 --- a/docset/winserver2012r2-ps/nettcpip/New-NetIPAddress.md +++ b/docset/winserver2012r2-ps/nettcpip/New-NetIPAddress.md @@ -2,7 +2,7 @@ external help file: MSFT_NetIPAddress.cdxml-help.xml Module Name: NetTCPIP ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nettcpip/new-netipaddress?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/new-netipaddress?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetIPAddress --- diff --git a/docset/winserver2012r2-ps/nettcpip/New-NetNeighbor.md b/docset/winserver2012r2-ps/nettcpip/New-NetNeighbor.md index f43491b50a..475647fb07 100644 --- a/docset/winserver2012r2-ps/nettcpip/New-NetNeighbor.md +++ b/docset/winserver2012r2-ps/nettcpip/New-NetNeighbor.md @@ -2,7 +2,7 @@ external help file: MSFT_NetNeighbor.cdxml-help.xml Module Name: NetTCPIP ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nettcpip/new-netneighbor?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/new-netneighbor?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetNeighbor --- diff --git a/docset/winserver2012r2-ps/nettcpip/New-NetRoute.md b/docset/winserver2012r2-ps/nettcpip/New-NetRoute.md index 73933ea817..9fd4d2e3db 100644 --- a/docset/winserver2012r2-ps/nettcpip/New-NetRoute.md +++ b/docset/winserver2012r2-ps/nettcpip/New-NetRoute.md @@ -2,7 +2,7 @@ external help file: MSFT_NetRoute.cdxml-help.xml Module Name: NetTCPIP ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nettcpip/new-netroute?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/new-netroute?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetRoute --- diff --git a/docset/winserver2012r2-ps/nettcpip/New-NetTransportFilter.md b/docset/winserver2012r2-ps/nettcpip/New-NetTransportFilter.md index 91c37328e4..62a09eb986 100644 --- a/docset/winserver2012r2-ps/nettcpip/New-NetTransportFilter.md +++ b/docset/winserver2012r2-ps/nettcpip/New-NetTransportFilter.md @@ -2,7 +2,7 @@ external help file: MSFT_NetTransportFilter.cdxml-help.xml Module Name: NetTCPIP ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nettcpip/new-nettransportfilter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/new-nettransportfilter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetTransportFilter --- diff --git a/docset/winserver2012r2-ps/nettcpip/Remove-NetIPAddress.md b/docset/winserver2012r2-ps/nettcpip/Remove-NetIPAddress.md index 57b091b48a..d057bdca1f 100644 --- a/docset/winserver2012r2-ps/nettcpip/Remove-NetIPAddress.md +++ b/docset/winserver2012r2-ps/nettcpip/Remove-NetIPAddress.md @@ -2,7 +2,7 @@ external help file: MSFT_NetIPAddress.cdxml-help.xml Module Name: NetTCPIP ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nettcpip/remove-netipaddress?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/remove-netipaddress?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetIPAddress --- diff --git a/docset/winserver2012r2-ps/nettcpip/Remove-NetNeighbor.md b/docset/winserver2012r2-ps/nettcpip/Remove-NetNeighbor.md index ec9a6e23c3..3e834ef48c 100644 --- a/docset/winserver2012r2-ps/nettcpip/Remove-NetNeighbor.md +++ b/docset/winserver2012r2-ps/nettcpip/Remove-NetNeighbor.md @@ -2,7 +2,7 @@ external help file: MSFT_NetNeighbor.cdxml-help.xml Module Name: NetTCPIP ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nettcpip/remove-netneighbor?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/remove-netneighbor?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetNeighbor --- diff --git a/docset/winserver2012r2-ps/nettcpip/Remove-NetRoute.md b/docset/winserver2012r2-ps/nettcpip/Remove-NetRoute.md index 41bdcd63e4..dcfeeedaac 100644 --- a/docset/winserver2012r2-ps/nettcpip/Remove-NetRoute.md +++ b/docset/winserver2012r2-ps/nettcpip/Remove-NetRoute.md @@ -2,7 +2,7 @@ external help file: MSFT_NetRoute.cdxml-help.xml Module Name: NetTCPIP ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nettcpip/remove-netroute?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/remove-netroute?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetRoute --- diff --git a/docset/winserver2012r2-ps/nettcpip/Remove-NetTransportFilter.md b/docset/winserver2012r2-ps/nettcpip/Remove-NetTransportFilter.md index 155f18e533..a2747cf7bc 100644 --- a/docset/winserver2012r2-ps/nettcpip/Remove-NetTransportFilter.md +++ b/docset/winserver2012r2-ps/nettcpip/Remove-NetTransportFilter.md @@ -2,7 +2,7 @@ external help file: MSFT_NetTransportFilter.cdxml-help.xml Module Name: NetTCPIP ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nettcpip/remove-nettransportfilter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/remove-nettransportfilter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetTransportFilter --- diff --git a/docset/winserver2012r2-ps/nettcpip/Set-NetIPAddress.md b/docset/winserver2012r2-ps/nettcpip/Set-NetIPAddress.md index 0ed141ffcd..31e11dd12e 100644 --- a/docset/winserver2012r2-ps/nettcpip/Set-NetIPAddress.md +++ b/docset/winserver2012r2-ps/nettcpip/Set-NetIPAddress.md @@ -2,7 +2,7 @@ external help file: MSFT_NetIPAddress.cdxml-help.xml Module Name: NetTCPIP ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nettcpip/set-netipaddress?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/set-netipaddress?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetIPAddress --- diff --git a/docset/winserver2012r2-ps/nettcpip/Set-NetIPInterface.md b/docset/winserver2012r2-ps/nettcpip/Set-NetIPInterface.md index adafdcaf2f..815b4a72bc 100644 --- a/docset/winserver2012r2-ps/nettcpip/Set-NetIPInterface.md +++ b/docset/winserver2012r2-ps/nettcpip/Set-NetIPInterface.md @@ -2,7 +2,7 @@ external help file: MSFT_NetIPInterface.cdxml-help.xml Module Name: NetTCPIP ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nettcpip/set-netipinterface?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/set-netipinterface?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetIPInterface --- diff --git a/docset/winserver2012r2-ps/nettcpip/Set-NetIPv4Protocol.md b/docset/winserver2012r2-ps/nettcpip/Set-NetIPv4Protocol.md index 57f83e4d90..6d970ff2f8 100644 --- a/docset/winserver2012r2-ps/nettcpip/Set-NetIPv4Protocol.md +++ b/docset/winserver2012r2-ps/nettcpip/Set-NetIPv4Protocol.md @@ -2,7 +2,7 @@ external help file: MSFT_NetIPv4Protocol.cdxml-help.xml Module Name: NetTCPIP ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nettcpip/set-netipv4protocol?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/set-netipv4protocol?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetIPv4Protocol --- diff --git a/docset/winserver2012r2-ps/nettcpip/Set-NetIPv6Protocol.md b/docset/winserver2012r2-ps/nettcpip/Set-NetIPv6Protocol.md index d231ca3001..65bfdd48d7 100644 --- a/docset/winserver2012r2-ps/nettcpip/Set-NetIPv6Protocol.md +++ b/docset/winserver2012r2-ps/nettcpip/Set-NetIPv6Protocol.md @@ -2,7 +2,7 @@ external help file: MSFT_NetIPv6Protocol.cdxml-help.xml Module Name: NetTCPIP ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nettcpip/set-netipv6protocol?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/set-netipv6protocol?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetIPv6Protocol --- diff --git a/docset/winserver2012r2-ps/nettcpip/Set-NetNeighbor.md b/docset/winserver2012r2-ps/nettcpip/Set-NetNeighbor.md index a251344782..bbe414ed67 100644 --- a/docset/winserver2012r2-ps/nettcpip/Set-NetNeighbor.md +++ b/docset/winserver2012r2-ps/nettcpip/Set-NetNeighbor.md @@ -2,7 +2,7 @@ external help file: MSFT_NetNeighbor.cdxml-help.xml Module Name: NetTCPIP ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nettcpip/set-netneighbor?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/set-netneighbor?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetNeighbor --- diff --git a/docset/winserver2012r2-ps/nettcpip/Set-NetOffloadGlobalSetting.md b/docset/winserver2012r2-ps/nettcpip/Set-NetOffloadGlobalSetting.md index f04d6f2c5b..4723616fc2 100644 --- a/docset/winserver2012r2-ps/nettcpip/Set-NetOffloadGlobalSetting.md +++ b/docset/winserver2012r2-ps/nettcpip/Set-NetOffloadGlobalSetting.md @@ -2,7 +2,7 @@ external help file: MSFT_NetOffloadGlobalSetting.cdxml-help.xml Module Name: NetTCPIP ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nettcpip/set-netoffloadglobalsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/set-netoffloadglobalsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetOffloadGlobalSetting --- diff --git a/docset/winserver2012r2-ps/nettcpip/Set-NetRoute.md b/docset/winserver2012r2-ps/nettcpip/Set-NetRoute.md index 5e9939b86b..83923d41d8 100644 --- a/docset/winserver2012r2-ps/nettcpip/Set-NetRoute.md +++ b/docset/winserver2012r2-ps/nettcpip/Set-NetRoute.md @@ -2,7 +2,7 @@ external help file: MSFT_NetRoute.cdxml-help.xml Module Name: NetTCPIP ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nettcpip/set-netroute?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/set-netroute?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetRoute --- diff --git a/docset/winserver2012r2-ps/nettcpip/Set-NetTCPSetting.md b/docset/winserver2012r2-ps/nettcpip/Set-NetTCPSetting.md index ab75074d82..bf3d87b3c1 100644 --- a/docset/winserver2012r2-ps/nettcpip/Set-NetTCPSetting.md +++ b/docset/winserver2012r2-ps/nettcpip/Set-NetTCPSetting.md @@ -2,7 +2,7 @@ external help file: MSFT_NetTCPSetting.cdxml-help.xml Module Name: NetTCPIP ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nettcpip/set-nettcpsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/set-nettcpsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetTCPSetting --- diff --git a/docset/winserver2012r2-ps/nettcpip/Set-NetUDPSetting.md b/docset/winserver2012r2-ps/nettcpip/Set-NetUDPSetting.md index fed9db7747..001b5c8c54 100644 --- a/docset/winserver2012r2-ps/nettcpip/Set-NetUDPSetting.md +++ b/docset/winserver2012r2-ps/nettcpip/Set-NetUDPSetting.md @@ -2,7 +2,7 @@ external help file: MSFT_NetUDPSetting.cdxml-help.xml Module Name: NetTCPIP ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nettcpip/set-netudpsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/set-netudpsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetUDPSetting --- diff --git a/docset/winserver2012r2-ps/nettcpip/Test-NetConnection.md b/docset/winserver2012r2-ps/nettcpip/Test-NetConnection.md index 3be5357a1d..1d7ebcbc82 100644 --- a/docset/winserver2012r2-ps/nettcpip/Test-NetConnection.md +++ b/docset/winserver2012r2-ps/nettcpip/Test-NetConnection.md @@ -2,7 +2,7 @@ external help file: Test-NetConnection-help.xml Module Name: NetTCPIP ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nettcpip/test-netconnection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/test-netconnection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-NetConnection --- diff --git a/docset/winserver2012r2-ps/netwnv/Get-NetVirtualizationCustomerRoute.md b/docset/winserver2012r2-ps/netwnv/Get-NetVirtualizationCustomerRoute.md index 86576fc90d..8f08f92f72 100644 --- a/docset/winserver2012r2-ps/netwnv/Get-NetVirtualizationCustomerRoute.md +++ b/docset/winserver2012r2-ps/netwnv/Get-NetVirtualizationCustomerRoute.md @@ -2,7 +2,7 @@ external help file: MSFT_NetVirtualizationCustomerRouteSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netwnv/get-netvirtualizationcustomerroute?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/get-netvirtualizationcustomerroute?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetVirtualizationCustomerRoute --- diff --git a/docset/winserver2012r2-ps/netwnv/Get-NetVirtualizationGlobal.md b/docset/winserver2012r2-ps/netwnv/Get-NetVirtualizationGlobal.md index ed4766e098..ed09707689 100644 --- a/docset/winserver2012r2-ps/netwnv/Get-NetVirtualizationGlobal.md +++ b/docset/winserver2012r2-ps/netwnv/Get-NetVirtualizationGlobal.md @@ -2,7 +2,7 @@ external help file: MSFT_NetVirtualizationGlobalSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netwnv/get-netvirtualizationglobal?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/get-netvirtualizationglobal?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetVirtualizationGlobal --- diff --git a/docset/winserver2012r2-ps/netwnv/Get-NetVirtualizationLookupRecord.md b/docset/winserver2012r2-ps/netwnv/Get-NetVirtualizationLookupRecord.md index ce4cc78f95..f4109794b3 100644 --- a/docset/winserver2012r2-ps/netwnv/Get-NetVirtualizationLookupRecord.md +++ b/docset/winserver2012r2-ps/netwnv/Get-NetVirtualizationLookupRecord.md @@ -2,7 +2,7 @@ external help file: MSFT_NetVirtualizationLookupRecordSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netwnv/get-netvirtualizationlookuprecord?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/get-netvirtualizationlookuprecord?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetVirtualizationLookupRecord --- diff --git a/docset/winserver2012r2-ps/netwnv/Get-NetVirtualizationProviderAddress.md b/docset/winserver2012r2-ps/netwnv/Get-NetVirtualizationProviderAddress.md index ce4bdb0054..446e0721c6 100644 --- a/docset/winserver2012r2-ps/netwnv/Get-NetVirtualizationProviderAddress.md +++ b/docset/winserver2012r2-ps/netwnv/Get-NetVirtualizationProviderAddress.md @@ -2,7 +2,7 @@ external help file: MSFT_NetVirtualizationProviderAddressSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netwnv/get-netvirtualizationprovideraddress?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/get-netvirtualizationprovideraddress?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetVirtualizationProviderAddress --- diff --git a/docset/winserver2012r2-ps/netwnv/Get-NetVirtualizationProviderRoute.md b/docset/winserver2012r2-ps/netwnv/Get-NetVirtualizationProviderRoute.md index d52d9e2232..2772e28683 100644 --- a/docset/winserver2012r2-ps/netwnv/Get-NetVirtualizationProviderRoute.md +++ b/docset/winserver2012r2-ps/netwnv/Get-NetVirtualizationProviderRoute.md @@ -2,7 +2,7 @@ external help file: MSFT_NetVirtualizationProviderRouteSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netwnv/get-netvirtualizationproviderroute?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/get-netvirtualizationproviderroute?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetVirtualizationProviderRoute --- diff --git a/docset/winserver2012r2-ps/netwnv/New-NetVirtualizationCustomerRoute.md b/docset/winserver2012r2-ps/netwnv/New-NetVirtualizationCustomerRoute.md index 448e35c9de..9674289793 100644 --- a/docset/winserver2012r2-ps/netwnv/New-NetVirtualizationCustomerRoute.md +++ b/docset/winserver2012r2-ps/netwnv/New-NetVirtualizationCustomerRoute.md @@ -2,7 +2,7 @@ external help file: MSFT_NetVirtualizationCustomerRouteSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netwnv/new-netvirtualizationcustomerroute?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/new-netvirtualizationcustomerroute?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetVirtualizationCustomerRoute --- diff --git a/docset/winserver2012r2-ps/netwnv/New-NetVirtualizationLookupRecord.md b/docset/winserver2012r2-ps/netwnv/New-NetVirtualizationLookupRecord.md index ce03a40abf..3343746447 100644 --- a/docset/winserver2012r2-ps/netwnv/New-NetVirtualizationLookupRecord.md +++ b/docset/winserver2012r2-ps/netwnv/New-NetVirtualizationLookupRecord.md @@ -2,7 +2,7 @@ external help file: MSFT_NetVirtualizationLookupRecordSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netwnv/new-netvirtualizationlookuprecord?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/new-netvirtualizationlookuprecord?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetVirtualizationLookupRecord --- diff --git a/docset/winserver2012r2-ps/netwnv/New-NetVirtualizationProviderAddress.md b/docset/winserver2012r2-ps/netwnv/New-NetVirtualizationProviderAddress.md index 2198b3a356..3bd5b598e2 100644 --- a/docset/winserver2012r2-ps/netwnv/New-NetVirtualizationProviderAddress.md +++ b/docset/winserver2012r2-ps/netwnv/New-NetVirtualizationProviderAddress.md @@ -2,7 +2,7 @@ external help file: MSFT_NetVirtualizationProviderAddressSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netwnv/new-netvirtualizationprovideraddress?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/new-netvirtualizationprovideraddress?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetVirtualizationProviderAddress --- diff --git a/docset/winserver2012r2-ps/netwnv/New-NetVirtualizationProviderRoute.md b/docset/winserver2012r2-ps/netwnv/New-NetVirtualizationProviderRoute.md index 05a0e89da9..11f209b7ed 100644 --- a/docset/winserver2012r2-ps/netwnv/New-NetVirtualizationProviderRoute.md +++ b/docset/winserver2012r2-ps/netwnv/New-NetVirtualizationProviderRoute.md @@ -2,7 +2,7 @@ external help file: MSFT_NetVirtualizationProviderRouteSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netwnv/new-netvirtualizationproviderroute?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/new-netvirtualizationproviderroute?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetVirtualizationProviderRoute --- diff --git a/docset/winserver2012r2-ps/netwnv/Remove-NetVirtualizationCustomerRoute.md b/docset/winserver2012r2-ps/netwnv/Remove-NetVirtualizationCustomerRoute.md index 79a68152d2..7581547899 100644 --- a/docset/winserver2012r2-ps/netwnv/Remove-NetVirtualizationCustomerRoute.md +++ b/docset/winserver2012r2-ps/netwnv/Remove-NetVirtualizationCustomerRoute.md @@ -2,7 +2,7 @@ external help file: MSFT_NetVirtualizationCustomerRouteSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netwnv/remove-netvirtualizationcustomerroute?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/remove-netvirtualizationcustomerroute?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetVirtualizationCustomerRoute --- diff --git a/docset/winserver2012r2-ps/netwnv/Remove-NetVirtualizationLookupRecord.md b/docset/winserver2012r2-ps/netwnv/Remove-NetVirtualizationLookupRecord.md index 094e5cbbb0..f9e49f93e3 100644 --- a/docset/winserver2012r2-ps/netwnv/Remove-NetVirtualizationLookupRecord.md +++ b/docset/winserver2012r2-ps/netwnv/Remove-NetVirtualizationLookupRecord.md @@ -2,7 +2,7 @@ external help file: MSFT_NetVirtualizationLookupRecordSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netwnv/remove-netvirtualizationlookuprecord?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/remove-netvirtualizationlookuprecord?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetVirtualizationLookupRecord --- diff --git a/docset/winserver2012r2-ps/netwnv/Remove-NetVirtualizationProviderAddress.md b/docset/winserver2012r2-ps/netwnv/Remove-NetVirtualizationProviderAddress.md index fab55514d0..301c64479a 100644 --- a/docset/winserver2012r2-ps/netwnv/Remove-NetVirtualizationProviderAddress.md +++ b/docset/winserver2012r2-ps/netwnv/Remove-NetVirtualizationProviderAddress.md @@ -2,7 +2,7 @@ external help file: MSFT_NetVirtualizationProviderAddressSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netwnv/remove-netvirtualizationprovideraddress?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/remove-netvirtualizationprovideraddress?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetVirtualizationProviderAddress --- diff --git a/docset/winserver2012r2-ps/netwnv/Remove-NetVirtualizationProviderRoute.md b/docset/winserver2012r2-ps/netwnv/Remove-NetVirtualizationProviderRoute.md index d3d42b2784..e3cf61b52c 100644 --- a/docset/winserver2012r2-ps/netwnv/Remove-NetVirtualizationProviderRoute.md +++ b/docset/winserver2012r2-ps/netwnv/Remove-NetVirtualizationProviderRoute.md @@ -2,7 +2,7 @@ external help file: MSFT_NetVirtualizationProviderRouteSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netwnv/remove-netvirtualizationproviderroute?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/remove-netvirtualizationproviderroute?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetVirtualizationProviderRoute --- diff --git a/docset/winserver2012r2-ps/netwnv/Select-NetVirtualizationNextHop.md b/docset/winserver2012r2-ps/netwnv/Select-NetVirtualizationNextHop.md index 24c66a5e35..6a4c589500 100644 --- a/docset/winserver2012r2-ps/netwnv/Select-NetVirtualizationNextHop.md +++ b/docset/winserver2012r2-ps/netwnv/Select-NetVirtualizationNextHop.md @@ -2,7 +2,7 @@ external help file: MSFT_NetVirtualizationNextHopLookup.cdxml-help.xml Module Name: NetWNV ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netwnv/select-netvirtualizationnexthop?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/select-netvirtualizationnexthop?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Select-NetVirtualizationNextHop --- diff --git a/docset/winserver2012r2-ps/netwnv/Set-NetVirtualizationCustomerRoute.md b/docset/winserver2012r2-ps/netwnv/Set-NetVirtualizationCustomerRoute.md index 86d8b6792b..6c801cddcc 100644 --- a/docset/winserver2012r2-ps/netwnv/Set-NetVirtualizationCustomerRoute.md +++ b/docset/winserver2012r2-ps/netwnv/Set-NetVirtualizationCustomerRoute.md @@ -2,7 +2,7 @@ external help file: MSFT_NetVirtualizationCustomerRouteSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netwnv/set-netvirtualizationcustomerroute?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/set-netvirtualizationcustomerroute?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetVirtualizationCustomerRoute --- diff --git a/docset/winserver2012r2-ps/netwnv/Set-NetVirtualizationGlobal.md b/docset/winserver2012r2-ps/netwnv/Set-NetVirtualizationGlobal.md index 2cd14b42af..3a5f014434 100644 --- a/docset/winserver2012r2-ps/netwnv/Set-NetVirtualizationGlobal.md +++ b/docset/winserver2012r2-ps/netwnv/Set-NetVirtualizationGlobal.md @@ -2,7 +2,7 @@ external help file: MSFT_NetVirtualizationGlobalSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netwnv/set-netvirtualizationglobal?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/set-netvirtualizationglobal?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetVirtualizationGlobal --- diff --git a/docset/winserver2012r2-ps/netwnv/Set-NetVirtualizationLookupRecord.md b/docset/winserver2012r2-ps/netwnv/Set-NetVirtualizationLookupRecord.md index 8e95cb7268..2c1d61c661 100644 --- a/docset/winserver2012r2-ps/netwnv/Set-NetVirtualizationLookupRecord.md +++ b/docset/winserver2012r2-ps/netwnv/Set-NetVirtualizationLookupRecord.md @@ -2,7 +2,7 @@ external help file: MSFT_NetVirtualizationLookupRecordSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netwnv/set-netvirtualizationlookuprecord?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/set-netvirtualizationlookuprecord?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetVirtualizationLookupRecord --- diff --git a/docset/winserver2012r2-ps/netwnv/Set-NetVirtualizationProviderAddress.md b/docset/winserver2012r2-ps/netwnv/Set-NetVirtualizationProviderAddress.md index 8b61652d09..fa415b716c 100644 --- a/docset/winserver2012r2-ps/netwnv/Set-NetVirtualizationProviderAddress.md +++ b/docset/winserver2012r2-ps/netwnv/Set-NetVirtualizationProviderAddress.md @@ -2,7 +2,7 @@ external help file: MSFT_NetVirtualizationProviderAddressSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netwnv/set-netvirtualizationprovideraddress?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/set-netvirtualizationprovideraddress?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetVirtualizationProviderAddress --- diff --git a/docset/winserver2012r2-ps/netwnv/Set-NetVirtualizationProviderRoute.md b/docset/winserver2012r2-ps/netwnv/Set-NetVirtualizationProviderRoute.md index 4b8fb9a7bf..8e4409fdf5 100644 --- a/docset/winserver2012r2-ps/netwnv/Set-NetVirtualizationProviderRoute.md +++ b/docset/winserver2012r2-ps/netwnv/Set-NetVirtualizationProviderRoute.md @@ -2,7 +2,7 @@ external help file: MSFT_NetVirtualizationProviderRouteSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/netwnv/set-netvirtualizationproviderroute?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/set-netvirtualizationproviderroute?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetVirtualizationProviderRoute --- diff --git a/docset/winserver2012r2-ps/networkconnectivitystatus/Get-DAConnectionStatus.md b/docset/winserver2012r2-ps/networkconnectivitystatus/Get-DAConnectionStatus.md index f815aa022c..55a7123778 100644 --- a/docset/winserver2012r2-ps/networkconnectivitystatus/Get-DAConnectionStatus.md +++ b/docset/winserver2012r2-ps/networkconnectivitystatus/Get-DAConnectionStatus.md @@ -2,7 +2,7 @@ external help file: MSFT_DAConnectionStatus.cdxml-help.xml Module Name: NetworkConnectivityStatus ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/networkconnectivitystatus/get-daconnectionstatus?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkconnectivitystatus/get-daconnectionstatus?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DAConnectionStatus --- diff --git a/docset/winserver2012r2-ps/networkconnectivitystatus/Get-NCSIPolicyConfiguration.md b/docset/winserver2012r2-ps/networkconnectivitystatus/Get-NCSIPolicyConfiguration.md index 179d663b67..3902601d15 100644 --- a/docset/winserver2012r2-ps/networkconnectivitystatus/Get-NCSIPolicyConfiguration.md +++ b/docset/winserver2012r2-ps/networkconnectivitystatus/Get-NCSIPolicyConfiguration.md @@ -2,7 +2,7 @@ external help file: MSFT_NCSIPolicyConfiguration.cdxml-help.xml Module Name: NetworkConnectivityStatus ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/networkconnectivitystatus/get-ncsipolicyconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkconnectivitystatus/get-ncsipolicyconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NCSIPolicyConfiguration --- diff --git a/docset/winserver2012r2-ps/networkconnectivitystatus/Reset-NCSIPolicyConfiguration.md b/docset/winserver2012r2-ps/networkconnectivitystatus/Reset-NCSIPolicyConfiguration.md index 7bb12a2bb7..40e7fca00e 100644 --- a/docset/winserver2012r2-ps/networkconnectivitystatus/Reset-NCSIPolicyConfiguration.md +++ b/docset/winserver2012r2-ps/networkconnectivitystatus/Reset-NCSIPolicyConfiguration.md @@ -2,7 +2,7 @@ external help file: MSFT_NCSIPolicyConfiguration.cdxml-help.xml Module Name: NetworkConnectivityStatus ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/networkconnectivitystatus/reset-ncsipolicyconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkconnectivitystatus/reset-ncsipolicyconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-NCSIPolicyConfiguration --- diff --git a/docset/winserver2012r2-ps/networkconnectivitystatus/Set-NCSIPolicyConfiguration.md b/docset/winserver2012r2-ps/networkconnectivitystatus/Set-NCSIPolicyConfiguration.md index 8c506c7998..3628f6b695 100644 --- a/docset/winserver2012r2-ps/networkconnectivitystatus/Set-NCSIPolicyConfiguration.md +++ b/docset/winserver2012r2-ps/networkconnectivitystatus/Set-NCSIPolicyConfiguration.md @@ -2,7 +2,7 @@ external help file: MSFT_NCSIPolicyConfiguration.cdxml-help.xml Module Name: NetworkConnectivityStatus ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/networkconnectivitystatus/set-ncsipolicyconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkconnectivitystatus/set-ncsipolicyconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NCSIPolicyConfiguration --- diff --git a/docset/winserver2012r2-ps/networkloadbalancingclusters/Add-NlbClusterNode.md b/docset/winserver2012r2-ps/networkloadbalancingclusters/Add-NlbClusterNode.md index 93672b1bce..892ae42ce4 100644 --- a/docset/winserver2012r2-ps/networkloadbalancingclusters/Add-NlbClusterNode.md +++ b/docset/winserver2012r2-ps/networkloadbalancingclusters/Add-NlbClusterNode.md @@ -2,7 +2,7 @@ external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/add-nlbclusternode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/add-nlbclusternode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NlbClusterNode --- diff --git a/docset/winserver2012r2-ps/networkloadbalancingclusters/Add-NlbClusterNodeDip.md b/docset/winserver2012r2-ps/networkloadbalancingclusters/Add-NlbClusterNodeDip.md index b355552ab1..c21bee89f0 100644 --- a/docset/winserver2012r2-ps/networkloadbalancingclusters/Add-NlbClusterNodeDip.md +++ b/docset/winserver2012r2-ps/networkloadbalancingclusters/Add-NlbClusterNodeDip.md @@ -2,7 +2,7 @@ external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/add-nlbclusternodedip?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/add-nlbclusternodedip?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NlbClusterNodeDip --- diff --git a/docset/winserver2012r2-ps/networkloadbalancingclusters/Add-NlbClusterPortRule.md b/docset/winserver2012r2-ps/networkloadbalancingclusters/Add-NlbClusterPortRule.md index 65585a1c75..b3f3166469 100644 --- a/docset/winserver2012r2-ps/networkloadbalancingclusters/Add-NlbClusterPortRule.md +++ b/docset/winserver2012r2-ps/networkloadbalancingclusters/Add-NlbClusterPortRule.md @@ -2,7 +2,7 @@ external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/add-nlbclusterportrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/add-nlbclusterportrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NlbClusterPortRule --- diff --git a/docset/winserver2012r2-ps/networkloadbalancingclusters/Add-NlbClusterVip.md b/docset/winserver2012r2-ps/networkloadbalancingclusters/Add-NlbClusterVip.md index 9ea760987d..cf33aab887 100644 --- a/docset/winserver2012r2-ps/networkloadbalancingclusters/Add-NlbClusterVip.md +++ b/docset/winserver2012r2-ps/networkloadbalancingclusters/Add-NlbClusterVip.md @@ -2,7 +2,7 @@ external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/add-nlbclustervip?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/add-nlbclustervip?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NlbClusterVip --- diff --git a/docset/winserver2012r2-ps/networkloadbalancingclusters/Disable-NlbClusterPortRule.md b/docset/winserver2012r2-ps/networkloadbalancingclusters/Disable-NlbClusterPortRule.md index 33d3b90c1b..8ee8c0c50f 100644 --- a/docset/winserver2012r2-ps/networkloadbalancingclusters/Disable-NlbClusterPortRule.md +++ b/docset/winserver2012r2-ps/networkloadbalancingclusters/Disable-NlbClusterPortRule.md @@ -2,7 +2,7 @@ external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/disable-nlbclusterportrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/disable-nlbclusterportrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NlbClusterPortRule --- diff --git a/docset/winserver2012r2-ps/networkloadbalancingclusters/Enable-NlbClusterPortRule.md b/docset/winserver2012r2-ps/networkloadbalancingclusters/Enable-NlbClusterPortRule.md index ad170e2436..aaa38de13f 100644 --- a/docset/winserver2012r2-ps/networkloadbalancingclusters/Enable-NlbClusterPortRule.md +++ b/docset/winserver2012r2-ps/networkloadbalancingclusters/Enable-NlbClusterPortRule.md @@ -2,7 +2,7 @@ external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/enable-nlbclusterportrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/enable-nlbclusterportrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NlbClusterPortRule --- diff --git a/docset/winserver2012r2-ps/networkloadbalancingclusters/Get-NlbCluster.md b/docset/winserver2012r2-ps/networkloadbalancingclusters/Get-NlbCluster.md index 9ef1627cb9..360e99910c 100644 --- a/docset/winserver2012r2-ps/networkloadbalancingclusters/Get-NlbCluster.md +++ b/docset/winserver2012r2-ps/networkloadbalancingclusters/Get-NlbCluster.md @@ -2,7 +2,7 @@ external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbcluster?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbcluster?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NlbCluster --- diff --git a/docset/winserver2012r2-ps/networkloadbalancingclusters/Get-NlbClusterDriverInfo.md b/docset/winserver2012r2-ps/networkloadbalancingclusters/Get-NlbClusterDriverInfo.md index d489a3fce6..250f7efa3e 100644 --- a/docset/winserver2012r2-ps/networkloadbalancingclusters/Get-NlbClusterDriverInfo.md +++ b/docset/winserver2012r2-ps/networkloadbalancingclusters/Get-NlbClusterDriverInfo.md @@ -2,7 +2,7 @@ external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclusterdriverinfo?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclusterdriverinfo?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NlbClusterDriverInfo --- diff --git a/docset/winserver2012r2-ps/networkloadbalancingclusters/Get-NlbClusterNode.md b/docset/winserver2012r2-ps/networkloadbalancingclusters/Get-NlbClusterNode.md index f5d138ec16..e9b7b7051a 100644 --- a/docset/winserver2012r2-ps/networkloadbalancingclusters/Get-NlbClusterNode.md +++ b/docset/winserver2012r2-ps/networkloadbalancingclusters/Get-NlbClusterNode.md @@ -2,7 +2,7 @@ external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclusternode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclusternode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NlbClusterNode --- diff --git a/docset/winserver2012r2-ps/networkloadbalancingclusters/Get-NlbClusterNodeDip.md b/docset/winserver2012r2-ps/networkloadbalancingclusters/Get-NlbClusterNodeDip.md index 3007cccef4..1ddefb8035 100644 --- a/docset/winserver2012r2-ps/networkloadbalancingclusters/Get-NlbClusterNodeDip.md +++ b/docset/winserver2012r2-ps/networkloadbalancingclusters/Get-NlbClusterNodeDip.md @@ -2,7 +2,7 @@ external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclusternodedip?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclusternodedip?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NlbClusterNodeDip --- diff --git a/docset/winserver2012r2-ps/networkloadbalancingclusters/Get-NlbClusterNodeNetworkInterface.md b/docset/winserver2012r2-ps/networkloadbalancingclusters/Get-NlbClusterNodeNetworkInterface.md index 5df3586b33..50d3109b85 100644 --- a/docset/winserver2012r2-ps/networkloadbalancingclusters/Get-NlbClusterNodeNetworkInterface.md +++ b/docset/winserver2012r2-ps/networkloadbalancingclusters/Get-NlbClusterNodeNetworkInterface.md @@ -2,7 +2,7 @@ external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclusternodenetworkinterface?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclusternodenetworkinterface?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NlbClusterNodeNetworkInterface --- diff --git a/docset/winserver2012r2-ps/networkloadbalancingclusters/Get-NlbClusterPortRule.md b/docset/winserver2012r2-ps/networkloadbalancingclusters/Get-NlbClusterPortRule.md index e83d11d44d..dd1a596d95 100644 --- a/docset/winserver2012r2-ps/networkloadbalancingclusters/Get-NlbClusterPortRule.md +++ b/docset/winserver2012r2-ps/networkloadbalancingclusters/Get-NlbClusterPortRule.md @@ -2,7 +2,7 @@ external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclusterportrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclusterportrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NlbClusterPortRule --- diff --git a/docset/winserver2012r2-ps/networkloadbalancingclusters/Get-NlbClusterVip.md b/docset/winserver2012r2-ps/networkloadbalancingclusters/Get-NlbClusterVip.md index 07230fb172..285dfa7e6e 100644 --- a/docset/winserver2012r2-ps/networkloadbalancingclusters/Get-NlbClusterVip.md +++ b/docset/winserver2012r2-ps/networkloadbalancingclusters/Get-NlbClusterVip.md @@ -2,7 +2,7 @@ external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclustervip?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclustervip?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NlbClusterVip --- diff --git a/docset/winserver2012r2-ps/networkloadbalancingclusters/New-NlbCluster.md b/docset/winserver2012r2-ps/networkloadbalancingclusters/New-NlbCluster.md index bc4b5ed9c5..fc71f641ae 100644 --- a/docset/winserver2012r2-ps/networkloadbalancingclusters/New-NlbCluster.md +++ b/docset/winserver2012r2-ps/networkloadbalancingclusters/New-NlbCluster.md @@ -2,7 +2,7 @@ external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/new-nlbcluster?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/new-nlbcluster?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NlbCluster --- diff --git a/docset/winserver2012r2-ps/networkloadbalancingclusters/New-NlbClusterIpv6Address.md b/docset/winserver2012r2-ps/networkloadbalancingclusters/New-NlbClusterIpv6Address.md index 62df443190..a2f18cc7af 100644 --- a/docset/winserver2012r2-ps/networkloadbalancingclusters/New-NlbClusterIpv6Address.md +++ b/docset/winserver2012r2-ps/networkloadbalancingclusters/New-NlbClusterIpv6Address.md @@ -2,7 +2,7 @@ external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/new-nlbclusteripv6address?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/new-nlbclusteripv6address?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NlbClusterIpv6Address --- diff --git a/docset/winserver2012r2-ps/networkloadbalancingclusters/Remove-NlbCluster.md b/docset/winserver2012r2-ps/networkloadbalancingclusters/Remove-NlbCluster.md index bf15bb7674..ca09917f80 100644 --- a/docset/winserver2012r2-ps/networkloadbalancingclusters/Remove-NlbCluster.md +++ b/docset/winserver2012r2-ps/networkloadbalancingclusters/Remove-NlbCluster.md @@ -2,7 +2,7 @@ external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/remove-nlbcluster?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/remove-nlbcluster?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NlbCluster --- diff --git a/docset/winserver2012r2-ps/networkloadbalancingclusters/Remove-NlbClusterNode.md b/docset/winserver2012r2-ps/networkloadbalancingclusters/Remove-NlbClusterNode.md index 4aaae153dd..6a92dd5168 100644 --- a/docset/winserver2012r2-ps/networkloadbalancingclusters/Remove-NlbClusterNode.md +++ b/docset/winserver2012r2-ps/networkloadbalancingclusters/Remove-NlbClusterNode.md @@ -2,7 +2,7 @@ external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/remove-nlbclusternode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/remove-nlbclusternode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NlbClusterNode --- diff --git a/docset/winserver2012r2-ps/networkloadbalancingclusters/Remove-NlbClusterNodeDip.md b/docset/winserver2012r2-ps/networkloadbalancingclusters/Remove-NlbClusterNodeDip.md index 0b5a8c87de..7066e87a9a 100644 --- a/docset/winserver2012r2-ps/networkloadbalancingclusters/Remove-NlbClusterNodeDip.md +++ b/docset/winserver2012r2-ps/networkloadbalancingclusters/Remove-NlbClusterNodeDip.md @@ -2,7 +2,7 @@ external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/remove-nlbclusternodedip?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/remove-nlbclusternodedip?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NlbClusterNodeDip --- diff --git a/docset/winserver2012r2-ps/networkloadbalancingclusters/Remove-NlbClusterPortRule.md b/docset/winserver2012r2-ps/networkloadbalancingclusters/Remove-NlbClusterPortRule.md index 47a86b4752..a0b73bf854 100644 --- a/docset/winserver2012r2-ps/networkloadbalancingclusters/Remove-NlbClusterPortRule.md +++ b/docset/winserver2012r2-ps/networkloadbalancingclusters/Remove-NlbClusterPortRule.md @@ -2,7 +2,7 @@ external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/remove-nlbclusterportrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/remove-nlbclusterportrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NlbClusterPortRule --- diff --git a/docset/winserver2012r2-ps/networkloadbalancingclusters/Remove-NlbClusterVip.md b/docset/winserver2012r2-ps/networkloadbalancingclusters/Remove-NlbClusterVip.md index a3592f88f7..4d4e4bdf33 100644 --- a/docset/winserver2012r2-ps/networkloadbalancingclusters/Remove-NlbClusterVip.md +++ b/docset/winserver2012r2-ps/networkloadbalancingclusters/Remove-NlbClusterVip.md @@ -2,7 +2,7 @@ external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/remove-nlbclustervip?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/remove-nlbclustervip?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NlbClusterVip --- diff --git a/docset/winserver2012r2-ps/networkloadbalancingclusters/Resume-NlbCluster.md b/docset/winserver2012r2-ps/networkloadbalancingclusters/Resume-NlbCluster.md index d9226ef06c..4872bc471b 100644 --- a/docset/winserver2012r2-ps/networkloadbalancingclusters/Resume-NlbCluster.md +++ b/docset/winserver2012r2-ps/networkloadbalancingclusters/Resume-NlbCluster.md @@ -2,7 +2,7 @@ external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/resume-nlbcluster?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/resume-nlbcluster?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-NlbCluster --- diff --git a/docset/winserver2012r2-ps/networkloadbalancingclusters/Resume-NlbClusterNode.md b/docset/winserver2012r2-ps/networkloadbalancingclusters/Resume-NlbClusterNode.md index 36ce94e3d9..95c460fe3b 100644 --- a/docset/winserver2012r2-ps/networkloadbalancingclusters/Resume-NlbClusterNode.md +++ b/docset/winserver2012r2-ps/networkloadbalancingclusters/Resume-NlbClusterNode.md @@ -2,7 +2,7 @@ external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/resume-nlbclusternode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/resume-nlbclusternode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-NlbClusterNode --- diff --git a/docset/winserver2012r2-ps/networkloadbalancingclusters/Set-NlbCluster.md b/docset/winserver2012r2-ps/networkloadbalancingclusters/Set-NlbCluster.md index 80f0cae35b..ae2872705f 100644 --- a/docset/winserver2012r2-ps/networkloadbalancingclusters/Set-NlbCluster.md +++ b/docset/winserver2012r2-ps/networkloadbalancingclusters/Set-NlbCluster.md @@ -2,7 +2,7 @@ external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbcluster?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbcluster?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NlbCluster --- diff --git a/docset/winserver2012r2-ps/networkloadbalancingclusters/Set-NlbClusterNode.md b/docset/winserver2012r2-ps/networkloadbalancingclusters/Set-NlbClusterNode.md index 8441e3b38c..c1b7829e7c 100644 --- a/docset/winserver2012r2-ps/networkloadbalancingclusters/Set-NlbClusterNode.md +++ b/docset/winserver2012r2-ps/networkloadbalancingclusters/Set-NlbClusterNode.md @@ -2,7 +2,7 @@ external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclusternode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclusternode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NlbClusterNode --- diff --git a/docset/winserver2012r2-ps/networkloadbalancingclusters/Set-NlbClusterNodeDip.md b/docset/winserver2012r2-ps/networkloadbalancingclusters/Set-NlbClusterNodeDip.md index 5f0c9e5693..915f1b9a1d 100644 --- a/docset/winserver2012r2-ps/networkloadbalancingclusters/Set-NlbClusterNodeDip.md +++ b/docset/winserver2012r2-ps/networkloadbalancingclusters/Set-NlbClusterNodeDip.md @@ -2,7 +2,7 @@ external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclusternodedip?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclusternodedip?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NlbClusterNodeDip --- diff --git a/docset/winserver2012r2-ps/networkloadbalancingclusters/Set-NlbClusterPortRule.md b/docset/winserver2012r2-ps/networkloadbalancingclusters/Set-NlbClusterPortRule.md index 254824d36c..e8fbd29258 100644 --- a/docset/winserver2012r2-ps/networkloadbalancingclusters/Set-NlbClusterPortRule.md +++ b/docset/winserver2012r2-ps/networkloadbalancingclusters/Set-NlbClusterPortRule.md @@ -2,7 +2,7 @@ external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclusterportrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclusterportrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NlbClusterPortRule --- diff --git a/docset/winserver2012r2-ps/networkloadbalancingclusters/Set-NlbClusterPortRuleNodeHandlingPriority.md b/docset/winserver2012r2-ps/networkloadbalancingclusters/Set-NlbClusterPortRuleNodeHandlingPriority.md index f9dc3e96d5..46bd2cfc1f 100644 --- a/docset/winserver2012r2-ps/networkloadbalancingclusters/Set-NlbClusterPortRuleNodeHandlingPriority.md +++ b/docset/winserver2012r2-ps/networkloadbalancingclusters/Set-NlbClusterPortRuleNodeHandlingPriority.md @@ -2,7 +2,7 @@ external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclusterportrulenodehandlingpriority?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclusterportrulenodehandlingpriority?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NlbClusterPortRuleNodeHandlingPriority --- diff --git a/docset/winserver2012r2-ps/networkloadbalancingclusters/Set-NlbClusterPortRuleNodeWeight.md b/docset/winserver2012r2-ps/networkloadbalancingclusters/Set-NlbClusterPortRuleNodeWeight.md index 621abc527d..493bdc7086 100644 --- a/docset/winserver2012r2-ps/networkloadbalancingclusters/Set-NlbClusterPortRuleNodeWeight.md +++ b/docset/winserver2012r2-ps/networkloadbalancingclusters/Set-NlbClusterPortRuleNodeWeight.md @@ -2,7 +2,7 @@ external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclusterportrulenodeweight?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclusterportrulenodeweight?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NlbClusterPortRuleNodeWeight --- diff --git a/docset/winserver2012r2-ps/networkloadbalancingclusters/Set-NlbClusterVip.md b/docset/winserver2012r2-ps/networkloadbalancingclusters/Set-NlbClusterVip.md index cde73cde18..64d9d5605d 100644 --- a/docset/winserver2012r2-ps/networkloadbalancingclusters/Set-NlbClusterVip.md +++ b/docset/winserver2012r2-ps/networkloadbalancingclusters/Set-NlbClusterVip.md @@ -2,7 +2,7 @@ external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclustervip?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclustervip?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NlbClusterVip --- diff --git a/docset/winserver2012r2-ps/networkloadbalancingclusters/Start-NlbCluster.md b/docset/winserver2012r2-ps/networkloadbalancingclusters/Start-NlbCluster.md index 8984a5a6b3..5b4791948f 100644 --- a/docset/winserver2012r2-ps/networkloadbalancingclusters/Start-NlbCluster.md +++ b/docset/winserver2012r2-ps/networkloadbalancingclusters/Start-NlbCluster.md @@ -2,7 +2,7 @@ external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/start-nlbcluster?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/start-nlbcluster?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-NlbCluster --- diff --git a/docset/winserver2012r2-ps/networkloadbalancingclusters/Start-NlbClusterNode.md b/docset/winserver2012r2-ps/networkloadbalancingclusters/Start-NlbClusterNode.md index 0a9859298a..22e8c94c0e 100644 --- a/docset/winserver2012r2-ps/networkloadbalancingclusters/Start-NlbClusterNode.md +++ b/docset/winserver2012r2-ps/networkloadbalancingclusters/Start-NlbClusterNode.md @@ -2,7 +2,7 @@ external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/start-nlbclusternode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/start-nlbclusternode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-NlbClusterNode --- diff --git a/docset/winserver2012r2-ps/networkloadbalancingclusters/Stop-NlbCluster.md b/docset/winserver2012r2-ps/networkloadbalancingclusters/Stop-NlbCluster.md index ad53cfe679..7ca47efa2b 100644 --- a/docset/winserver2012r2-ps/networkloadbalancingclusters/Stop-NlbCluster.md +++ b/docset/winserver2012r2-ps/networkloadbalancingclusters/Stop-NlbCluster.md @@ -2,7 +2,7 @@ external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/stop-nlbcluster?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/stop-nlbcluster?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-NlbCluster --- diff --git a/docset/winserver2012r2-ps/networkloadbalancingclusters/Stop-NlbClusterNode.md b/docset/winserver2012r2-ps/networkloadbalancingclusters/Stop-NlbClusterNode.md index c4795519d5..b50c41c8b8 100644 --- a/docset/winserver2012r2-ps/networkloadbalancingclusters/Stop-NlbClusterNode.md +++ b/docset/winserver2012r2-ps/networkloadbalancingclusters/Stop-NlbClusterNode.md @@ -2,7 +2,7 @@ external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/stop-nlbclusternode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/stop-nlbclusternode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-NlbClusterNode --- diff --git a/docset/winserver2012r2-ps/networkloadbalancingclusters/Suspend-NlbCluster.md b/docset/winserver2012r2-ps/networkloadbalancingclusters/Suspend-NlbCluster.md index 5153965ce1..d51cf89514 100644 --- a/docset/winserver2012r2-ps/networkloadbalancingclusters/Suspend-NlbCluster.md +++ b/docset/winserver2012r2-ps/networkloadbalancingclusters/Suspend-NlbCluster.md @@ -2,7 +2,7 @@ external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/suspend-nlbcluster?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/suspend-nlbcluster?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-NlbCluster --- diff --git a/docset/winserver2012r2-ps/networkloadbalancingclusters/Suspend-NlbClusterNode.md b/docset/winserver2012r2-ps/networkloadbalancingclusters/Suspend-NlbClusterNode.md index e48e3c9a98..cbde1eb9fe 100644 --- a/docset/winserver2012r2-ps/networkloadbalancingclusters/Suspend-NlbClusterNode.md +++ b/docset/winserver2012r2-ps/networkloadbalancingclusters/Suspend-NlbClusterNode.md @@ -2,7 +2,7 @@ external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/suspend-nlbclusternode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/suspend-nlbclusternode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-NlbClusterNode --- diff --git a/docset/winserver2012r2-ps/networktransition/Add-NetIPHttpsCertBinding.md b/docset/winserver2012r2-ps/networktransition/Add-NetIPHttpsCertBinding.md index dbc57f9f4b..c062a1a72b 100644 --- a/docset/winserver2012r2-ps/networktransition/Add-NetIPHttpsCertBinding.md +++ b/docset/winserver2012r2-ps/networktransition/Add-NetIPHttpsCertBinding.md @@ -2,7 +2,7 @@ external help file: MSFT_NetIpHTTPsConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/networktransition/add-netiphttpscertbinding?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/add-netiphttpscertbinding?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NetIPHttpsCertBinding --- diff --git a/docset/winserver2012r2-ps/networktransition/Disable-NetDnsTransitionConfiguration.md b/docset/winserver2012r2-ps/networktransition/Disable-NetDnsTransitionConfiguration.md index 7c56ad7f72..64740c753e 100644 --- a/docset/winserver2012r2-ps/networktransition/Disable-NetDnsTransitionConfiguration.md +++ b/docset/winserver2012r2-ps/networktransition/Disable-NetDnsTransitionConfiguration.md @@ -2,7 +2,7 @@ external help file: MSFT_NetDnsTransitionConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/networktransition/disable-netdnstransitionconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/disable-netdnstransitionconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetDnsTransitionConfiguration --- diff --git a/docset/winserver2012r2-ps/networktransition/Disable-NetIPHttpsProfile.md b/docset/winserver2012r2-ps/networktransition/Disable-NetIPHttpsProfile.md index 0b918d5a05..93ac55c579 100644 --- a/docset/winserver2012r2-ps/networktransition/Disable-NetIPHttpsProfile.md +++ b/docset/winserver2012r2-ps/networktransition/Disable-NetIPHttpsProfile.md @@ -2,7 +2,7 @@ external help file: MSFT_NetIpHTTPsConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/networktransition/disable-netiphttpsprofile?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/disable-netiphttpsprofile?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetIPHttpsProfile --- diff --git a/docset/winserver2012r2-ps/networktransition/Disable-NetNatTransitionConfiguration.md b/docset/winserver2012r2-ps/networktransition/Disable-NetNatTransitionConfiguration.md index fe69987adb..970a75a9d2 100644 --- a/docset/winserver2012r2-ps/networktransition/Disable-NetNatTransitionConfiguration.md +++ b/docset/winserver2012r2-ps/networktransition/Disable-NetNatTransitionConfiguration.md @@ -2,7 +2,7 @@ external help file: MSFT_NetNatTransitionConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/networktransition/disable-netnattransitionconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/disable-netnattransitionconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetNatTransitionConfiguration --- diff --git a/docset/winserver2012r2-ps/networktransition/Enable-NetDnsTransitionConfiguration.md b/docset/winserver2012r2-ps/networktransition/Enable-NetDnsTransitionConfiguration.md index a15f960523..7b4e74ee2e 100644 --- a/docset/winserver2012r2-ps/networktransition/Enable-NetDnsTransitionConfiguration.md +++ b/docset/winserver2012r2-ps/networktransition/Enable-NetDnsTransitionConfiguration.md @@ -2,7 +2,7 @@ external help file: MSFT_NetDnsTransitionConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/networktransition/enable-netdnstransitionconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/enable-netdnstransitionconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetDnsTransitionConfiguration --- diff --git a/docset/winserver2012r2-ps/networktransition/Enable-NetIPHttpsProfile.md b/docset/winserver2012r2-ps/networktransition/Enable-NetIPHttpsProfile.md index 53c1981835..87fe88c2d1 100644 --- a/docset/winserver2012r2-ps/networktransition/Enable-NetIPHttpsProfile.md +++ b/docset/winserver2012r2-ps/networktransition/Enable-NetIPHttpsProfile.md @@ -2,7 +2,7 @@ external help file: MSFT_NetIpHTTPsConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/networktransition/enable-netiphttpsprofile?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/enable-netiphttpsprofile?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetIPHttpsProfile --- diff --git a/docset/winserver2012r2-ps/networktransition/Enable-NetNatTransitionConfiguration.md b/docset/winserver2012r2-ps/networktransition/Enable-NetNatTransitionConfiguration.md index c5377704d4..87304c21b7 100644 --- a/docset/winserver2012r2-ps/networktransition/Enable-NetNatTransitionConfiguration.md +++ b/docset/winserver2012r2-ps/networktransition/Enable-NetNatTransitionConfiguration.md @@ -2,7 +2,7 @@ external help file: MSFT_NetNatTransitionConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/networktransition/enable-netnattransitionconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/enable-netnattransitionconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetNatTransitionConfiguration --- diff --git a/docset/winserver2012r2-ps/networktransition/Get-Net6to4Configuration.md b/docset/winserver2012r2-ps/networktransition/Get-Net6to4Configuration.md index 23f6362281..353d284864 100644 --- a/docset/winserver2012r2-ps/networktransition/Get-Net6to4Configuration.md +++ b/docset/winserver2012r2-ps/networktransition/Get-Net6to4Configuration.md @@ -2,7 +2,7 @@ external help file: MSFT_Net6to4Configuration.cdxml-help.xml Module Name: NetworkTransition ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/networktransition/get-net6to4configuration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/get-net6to4configuration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-Net6to4Configuration --- diff --git a/docset/winserver2012r2-ps/networktransition/Get-NetDnsTransitionConfiguration.md b/docset/winserver2012r2-ps/networktransition/Get-NetDnsTransitionConfiguration.md index f1e6ead831..087c9cc64b 100644 --- a/docset/winserver2012r2-ps/networktransition/Get-NetDnsTransitionConfiguration.md +++ b/docset/winserver2012r2-ps/networktransition/Get-NetDnsTransitionConfiguration.md @@ -2,7 +2,7 @@ external help file: MSFT_NetDnsTransitionConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/networktransition/get-netdnstransitionconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/get-netdnstransitionconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetDnsTransitionConfiguration --- diff --git a/docset/winserver2012r2-ps/networktransition/Get-NetDnsTransitionMonitoring.md b/docset/winserver2012r2-ps/networktransition/Get-NetDnsTransitionMonitoring.md index 246b79084b..a16889388c 100644 --- a/docset/winserver2012r2-ps/networktransition/Get-NetDnsTransitionMonitoring.md +++ b/docset/winserver2012r2-ps/networktransition/Get-NetDnsTransitionMonitoring.md @@ -2,7 +2,7 @@ external help file: MSFT_NetDnsTransitionMonitoring.cdxml-help.xml Module Name: NetworkTransition ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/networktransition/get-netdnstransitionmonitoring?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/get-netdnstransitionmonitoring?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetDnsTransitionMonitoring --- diff --git a/docset/winserver2012r2-ps/networktransition/Get-NetIPHttpsConfiguration.md b/docset/winserver2012r2-ps/networktransition/Get-NetIPHttpsConfiguration.md index 85c9163445..ea32087f92 100644 --- a/docset/winserver2012r2-ps/networktransition/Get-NetIPHttpsConfiguration.md +++ b/docset/winserver2012r2-ps/networktransition/Get-NetIPHttpsConfiguration.md @@ -2,7 +2,7 @@ external help file: MSFT_NetIpHTTPsConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/networktransition/get-netiphttpsconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/get-netiphttpsconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPHttpsConfiguration --- diff --git a/docset/winserver2012r2-ps/networktransition/Get-NetIPHttpsState.md b/docset/winserver2012r2-ps/networktransition/Get-NetIPHttpsState.md index 0f0be423b6..d010c001ac 100644 --- a/docset/winserver2012r2-ps/networktransition/Get-NetIPHttpsState.md +++ b/docset/winserver2012r2-ps/networktransition/Get-NetIPHttpsState.md @@ -2,7 +2,7 @@ external help file: MSFT_NetIpHTTPsState.cdxml-help.xml Module Name: NetworkTransition ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/networktransition/get-netiphttpsstate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/get-netiphttpsstate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPHttpsState --- diff --git a/docset/winserver2012r2-ps/networktransition/Get-NetIsatapConfiguration.md b/docset/winserver2012r2-ps/networktransition/Get-NetIsatapConfiguration.md index aef0858c23..7de0db2d4a 100644 --- a/docset/winserver2012r2-ps/networktransition/Get-NetIsatapConfiguration.md +++ b/docset/winserver2012r2-ps/networktransition/Get-NetIsatapConfiguration.md @@ -2,7 +2,7 @@ external help file: MSFT_NetISATAPConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/networktransition/get-netisatapconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/get-netisatapconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIsatapConfiguration --- diff --git a/docset/winserver2012r2-ps/networktransition/Get-NetNatTransitionConfiguration.md b/docset/winserver2012r2-ps/networktransition/Get-NetNatTransitionConfiguration.md index 018acd96bd..d874e8e3e6 100644 --- a/docset/winserver2012r2-ps/networktransition/Get-NetNatTransitionConfiguration.md +++ b/docset/winserver2012r2-ps/networktransition/Get-NetNatTransitionConfiguration.md @@ -2,7 +2,7 @@ external help file: MSFT_NetNatTransitionConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/networktransition/get-netnattransitionconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/get-netnattransitionconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetNatTransitionConfiguration --- diff --git a/docset/winserver2012r2-ps/networktransition/Get-NetNatTransitionMonitoring.md b/docset/winserver2012r2-ps/networktransition/Get-NetNatTransitionMonitoring.md index 043d314ed8..266945d2f5 100644 --- a/docset/winserver2012r2-ps/networktransition/Get-NetNatTransitionMonitoring.md +++ b/docset/winserver2012r2-ps/networktransition/Get-NetNatTransitionMonitoring.md @@ -2,7 +2,7 @@ external help file: MSFT_NetNatTransitionMonitoring.cdxml-help.xml Module Name: NetworkTransition ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/networktransition/get-netnattransitionmonitoring?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/get-netnattransitionmonitoring?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetNatTransitionMonitoring --- diff --git a/docset/winserver2012r2-ps/networktransition/Get-NetTeredoConfiguration.md b/docset/winserver2012r2-ps/networktransition/Get-NetTeredoConfiguration.md index 89ebf290f6..97fc0e2f83 100644 --- a/docset/winserver2012r2-ps/networktransition/Get-NetTeredoConfiguration.md +++ b/docset/winserver2012r2-ps/networktransition/Get-NetTeredoConfiguration.md @@ -2,7 +2,7 @@ external help file: MSFT_NetTeredoConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/networktransition/get-netteredoconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/get-netteredoconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetTeredoConfiguration --- diff --git a/docset/winserver2012r2-ps/networktransition/Get-NetTeredoState.md b/docset/winserver2012r2-ps/networktransition/Get-NetTeredoState.md index fdfb8c7a5d..aed5680285 100644 --- a/docset/winserver2012r2-ps/networktransition/Get-NetTeredoState.md +++ b/docset/winserver2012r2-ps/networktransition/Get-NetTeredoState.md @@ -2,7 +2,7 @@ external help file: MSFT_NetTeredoState.cdxml-help.xml Module Name: NetworkTransition ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/networktransition/get-netteredostate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/get-netteredostate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetTeredoState --- diff --git a/docset/winserver2012r2-ps/networktransition/New-NetIPHttpsConfiguration.md b/docset/winserver2012r2-ps/networktransition/New-NetIPHttpsConfiguration.md index d4703a76ce..30e5b6f6e4 100644 --- a/docset/winserver2012r2-ps/networktransition/New-NetIPHttpsConfiguration.md +++ b/docset/winserver2012r2-ps/networktransition/New-NetIPHttpsConfiguration.md @@ -2,7 +2,7 @@ external help file: MSFT_NetIpHTTPsConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/networktransition/new-netiphttpsconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/new-netiphttpsconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetIPHttpsConfiguration --- diff --git a/docset/winserver2012r2-ps/networktransition/New-NetNatTransitionConfiguration.md b/docset/winserver2012r2-ps/networktransition/New-NetNatTransitionConfiguration.md index 448d02ecf7..e8ade9d9df 100644 --- a/docset/winserver2012r2-ps/networktransition/New-NetNatTransitionConfiguration.md +++ b/docset/winserver2012r2-ps/networktransition/New-NetNatTransitionConfiguration.md @@ -2,7 +2,7 @@ external help file: MSFT_NetNatTransitionConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/networktransition/new-netnattransitionconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/new-netnattransitionconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetNatTransitionConfiguration --- diff --git a/docset/winserver2012r2-ps/networktransition/Remove-NetIPHttpsCertBinding.md b/docset/winserver2012r2-ps/networktransition/Remove-NetIPHttpsCertBinding.md index a68f9796a1..cdcf7f2965 100644 --- a/docset/winserver2012r2-ps/networktransition/Remove-NetIPHttpsCertBinding.md +++ b/docset/winserver2012r2-ps/networktransition/Remove-NetIPHttpsCertBinding.md @@ -2,7 +2,7 @@ external help file: MSFT_NetIpHTTPsConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/networktransition/remove-netiphttpscertbinding?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/remove-netiphttpscertbinding?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetIPHttpsCertBinding --- diff --git a/docset/winserver2012r2-ps/networktransition/Remove-NetIPHttpsConfiguration.md b/docset/winserver2012r2-ps/networktransition/Remove-NetIPHttpsConfiguration.md index 41c6377c0b..fe60445ceb 100644 --- a/docset/winserver2012r2-ps/networktransition/Remove-NetIPHttpsConfiguration.md +++ b/docset/winserver2012r2-ps/networktransition/Remove-NetIPHttpsConfiguration.md @@ -2,7 +2,7 @@ external help file: MSFT_NetIpHTTPsConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/networktransition/remove-netiphttpsconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/remove-netiphttpsconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetIPHttpsConfiguration --- diff --git a/docset/winserver2012r2-ps/networktransition/Remove-NetNatTransitionConfiguration.md b/docset/winserver2012r2-ps/networktransition/Remove-NetNatTransitionConfiguration.md index 4e2ab8a45e..2df6ece339 100644 --- a/docset/winserver2012r2-ps/networktransition/Remove-NetNatTransitionConfiguration.md +++ b/docset/winserver2012r2-ps/networktransition/Remove-NetNatTransitionConfiguration.md @@ -2,7 +2,7 @@ external help file: MSFT_NetNatTransitionConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/networktransition/remove-netnattransitionconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/remove-netnattransitionconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetNatTransitionConfiguration --- diff --git a/docset/winserver2012r2-ps/networktransition/Rename-NetIPHttpsConfiguration.md b/docset/winserver2012r2-ps/networktransition/Rename-NetIPHttpsConfiguration.md index 2516206c79..9a0630414a 100644 --- a/docset/winserver2012r2-ps/networktransition/Rename-NetIPHttpsConfiguration.md +++ b/docset/winserver2012r2-ps/networktransition/Rename-NetIPHttpsConfiguration.md @@ -2,7 +2,7 @@ external help file: MSFT_NetIpHTTPsConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/networktransition/rename-netiphttpsconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/rename-netiphttpsconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-NetIPHttpsConfiguration --- diff --git a/docset/winserver2012r2-ps/networktransition/Reset-Net6to4Configuration.md b/docset/winserver2012r2-ps/networktransition/Reset-Net6to4Configuration.md index 74ddf9a385..68e9a8b23b 100644 --- a/docset/winserver2012r2-ps/networktransition/Reset-Net6to4Configuration.md +++ b/docset/winserver2012r2-ps/networktransition/Reset-Net6to4Configuration.md @@ -2,7 +2,7 @@ external help file: MSFT_Net6to4Configuration.cdxml-help.xml Module Name: NetworkTransition ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/networktransition/reset-net6to4configuration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/reset-net6to4configuration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-Net6to4Configuration --- diff --git a/docset/winserver2012r2-ps/networktransition/Reset-NetDnsTransitionConfiguration.md b/docset/winserver2012r2-ps/networktransition/Reset-NetDnsTransitionConfiguration.md index 30ff2ed353..32aab79af2 100644 --- a/docset/winserver2012r2-ps/networktransition/Reset-NetDnsTransitionConfiguration.md +++ b/docset/winserver2012r2-ps/networktransition/Reset-NetDnsTransitionConfiguration.md @@ -2,7 +2,7 @@ external help file: MSFT_NetDnsTransitionConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/networktransition/reset-netdnstransitionconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/reset-netdnstransitionconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-NetDnsTransitionConfiguration --- diff --git a/docset/winserver2012r2-ps/networktransition/Reset-NetIPHttpsConfiguration.md b/docset/winserver2012r2-ps/networktransition/Reset-NetIPHttpsConfiguration.md index 90214d542c..099822d208 100644 --- a/docset/winserver2012r2-ps/networktransition/Reset-NetIPHttpsConfiguration.md +++ b/docset/winserver2012r2-ps/networktransition/Reset-NetIPHttpsConfiguration.md @@ -2,7 +2,7 @@ external help file: MSFT_NetIpHTTPsConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/networktransition/reset-netiphttpsconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/reset-netiphttpsconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-NetIPHttpsConfiguration --- diff --git a/docset/winserver2012r2-ps/networktransition/Reset-NetIsatapConfiguration.md b/docset/winserver2012r2-ps/networktransition/Reset-NetIsatapConfiguration.md index 009c854311..cdcfc63eeb 100644 --- a/docset/winserver2012r2-ps/networktransition/Reset-NetIsatapConfiguration.md +++ b/docset/winserver2012r2-ps/networktransition/Reset-NetIsatapConfiguration.md @@ -2,7 +2,7 @@ external help file: MSFT_NetISATAPConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/networktransition/reset-netisatapconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/reset-netisatapconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-NetIsatapConfiguration --- diff --git a/docset/winserver2012r2-ps/networktransition/Reset-NetTeredoConfiguration.md b/docset/winserver2012r2-ps/networktransition/Reset-NetTeredoConfiguration.md index aa9ba68ba4..569086a5a7 100644 --- a/docset/winserver2012r2-ps/networktransition/Reset-NetTeredoConfiguration.md +++ b/docset/winserver2012r2-ps/networktransition/Reset-NetTeredoConfiguration.md @@ -2,7 +2,7 @@ external help file: MSFT_NetTeredoConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/networktransition/reset-netteredoconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/reset-netteredoconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-NetTeredoConfiguration --- diff --git a/docset/winserver2012r2-ps/networktransition/Set-Net6to4Configuration.md b/docset/winserver2012r2-ps/networktransition/Set-Net6to4Configuration.md index 89cef4c393..1c7789c851 100644 --- a/docset/winserver2012r2-ps/networktransition/Set-Net6to4Configuration.md +++ b/docset/winserver2012r2-ps/networktransition/Set-Net6to4Configuration.md @@ -2,7 +2,7 @@ external help file: MSFT_Net6to4Configuration.cdxml-help.xml Module Name: NetworkTransition ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/networktransition/set-net6to4configuration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/set-net6to4configuration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-Net6to4Configuration --- diff --git a/docset/winserver2012r2-ps/networktransition/Set-NetDnsTransitionConfiguration.md b/docset/winserver2012r2-ps/networktransition/Set-NetDnsTransitionConfiguration.md index 7a5052edeb..f639a36aa2 100644 --- a/docset/winserver2012r2-ps/networktransition/Set-NetDnsTransitionConfiguration.md +++ b/docset/winserver2012r2-ps/networktransition/Set-NetDnsTransitionConfiguration.md @@ -2,7 +2,7 @@ external help file: MSFT_NetDnsTransitionConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/networktransition/set-netdnstransitionconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/set-netdnstransitionconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetDnsTransitionConfiguration --- diff --git a/docset/winserver2012r2-ps/networktransition/Set-NetIPHttpsConfiguration.md b/docset/winserver2012r2-ps/networktransition/Set-NetIPHttpsConfiguration.md index a5a048072e..b65267053e 100644 --- a/docset/winserver2012r2-ps/networktransition/Set-NetIPHttpsConfiguration.md +++ b/docset/winserver2012r2-ps/networktransition/Set-NetIPHttpsConfiguration.md @@ -2,7 +2,7 @@ external help file: MSFT_NetIpHTTPsConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/networktransition/set-netiphttpsconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/set-netiphttpsconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetIPHttpsConfiguration --- diff --git a/docset/winserver2012r2-ps/networktransition/Set-NetIsatapConfiguration.md b/docset/winserver2012r2-ps/networktransition/Set-NetIsatapConfiguration.md index 3ad8059ee7..d06e215b29 100644 --- a/docset/winserver2012r2-ps/networktransition/Set-NetIsatapConfiguration.md +++ b/docset/winserver2012r2-ps/networktransition/Set-NetIsatapConfiguration.md @@ -2,7 +2,7 @@ external help file: MSFT_NetISATAPConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/networktransition/set-netisatapconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/set-netisatapconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetIsatapConfiguration --- diff --git a/docset/winserver2012r2-ps/networktransition/Set-NetNatTransitionConfiguration.md b/docset/winserver2012r2-ps/networktransition/Set-NetNatTransitionConfiguration.md index f705f4458a..63021dc2ba 100644 --- a/docset/winserver2012r2-ps/networktransition/Set-NetNatTransitionConfiguration.md +++ b/docset/winserver2012r2-ps/networktransition/Set-NetNatTransitionConfiguration.md @@ -2,7 +2,7 @@ external help file: MSFT_NetNatTransitionConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/networktransition/set-netnattransitionconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/set-netnattransitionconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetNatTransitionConfiguration --- diff --git a/docset/winserver2012r2-ps/networktransition/Set-NetTeredoConfiguration.md b/docset/winserver2012r2-ps/networktransition/Set-NetTeredoConfiguration.md index 4708d4e723..c74bb1de59 100644 --- a/docset/winserver2012r2-ps/networktransition/Set-NetTeredoConfiguration.md +++ b/docset/winserver2012r2-ps/networktransition/Set-NetTeredoConfiguration.md @@ -2,7 +2,7 @@ external help file: MSFT_NetTeredoConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/networktransition/set-netteredoconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/set-netteredoconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetTeredoConfiguration --- diff --git a/docset/winserver2012r2-ps/nfs/Disconnect-NfsSession.md b/docset/winserver2012r2-ps/nfs/Disconnect-NfsSession.md index c4599ac1ae..9a449320f0 100644 --- a/docset/winserver2012r2-ps/nfs/Disconnect-NfsSession.md +++ b/docset/winserver2012r2-ps/nfs/Disconnect-NfsSession.md @@ -2,7 +2,7 @@ external help file: MSFT_NfsSession.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nfs/disconnect-nfssession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/disconnect-nfssession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disconnect-NfsSession --- diff --git a/docset/winserver2012r2-ps/nfs/Get-NfsClientConfiguration.md b/docset/winserver2012r2-ps/nfs/Get-NfsClientConfiguration.md index 4b57a0a94d..7033448837 100644 --- a/docset/winserver2012r2-ps/nfs/Get-NfsClientConfiguration.md +++ b/docset/winserver2012r2-ps/nfs/Get-NfsClientConfiguration.md @@ -2,7 +2,7 @@ external help file: MSFT_NfsClientConfig.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsclientconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsclientconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsClientConfiguration --- diff --git a/docset/winserver2012r2-ps/nfs/Get-NfsClientLock.md b/docset/winserver2012r2-ps/nfs/Get-NfsClientLock.md index 378603ab72..997603122d 100644 --- a/docset/winserver2012r2-ps/nfs/Get-NfsClientLock.md +++ b/docset/winserver2012r2-ps/nfs/Get-NfsClientLock.md @@ -2,7 +2,7 @@ external help file: MSFT_NfsClientLock.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsclientlock?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsclientlock?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsClientLock --- diff --git a/docset/winserver2012r2-ps/nfs/Get-NfsClientgroup.md b/docset/winserver2012r2-ps/nfs/Get-NfsClientgroup.md index 712946fc17..1f1928ad40 100644 --- a/docset/winserver2012r2-ps/nfs/Get-NfsClientgroup.md +++ b/docset/winserver2012r2-ps/nfs/Get-NfsClientgroup.md @@ -2,7 +2,7 @@ external help file: MSFT_NfsClientGroup.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsclientgroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsclientgroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsClientgroup --- diff --git a/docset/winserver2012r2-ps/nfs/Get-NfsMappedIdentity.md b/docset/winserver2012r2-ps/nfs/Get-NfsMappedIdentity.md index 21e36381b6..e660562407 100644 --- a/docset/winserver2012r2-ps/nfs/Get-NfsMappedIdentity.md +++ b/docset/winserver2012r2-ps/nfs/Get-NfsMappedIdentity.md @@ -2,7 +2,7 @@ external help file: Microsoft.FileServices.Powershell.NFS.dll-Help.xml Module Name: NFS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsmappedidentity?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsmappedidentity?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsMappedIdentity --- diff --git a/docset/winserver2012r2-ps/nfs/Get-NfsMappingStore.md b/docset/winserver2012r2-ps/nfs/Get-NfsMappingStore.md index 02be0f7e60..8d7eb28806 100644 --- a/docset/winserver2012r2-ps/nfs/Get-NfsMappingStore.md +++ b/docset/winserver2012r2-ps/nfs/Get-NfsMappingStore.md @@ -2,7 +2,7 @@ external help file: MSFT_NfsMappingStore.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsmappingstore?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsmappingstore?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsMappingStore --- diff --git a/docset/winserver2012r2-ps/nfs/Get-NfsMountedClient.md b/docset/winserver2012r2-ps/nfs/Get-NfsMountedClient.md index f6bd51be7f..1d7b0b93dc 100644 --- a/docset/winserver2012r2-ps/nfs/Get-NfsMountedClient.md +++ b/docset/winserver2012r2-ps/nfs/Get-NfsMountedClient.md @@ -2,7 +2,7 @@ external help file: MSFT_NfsMountedClient.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsmountedclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsmountedclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsMountedClient --- diff --git a/docset/winserver2012r2-ps/nfs/Get-NfsNetgroup.md b/docset/winserver2012r2-ps/nfs/Get-NfsNetgroup.md index 78a00228da..ee61c96e65 100644 --- a/docset/winserver2012r2-ps/nfs/Get-NfsNetgroup.md +++ b/docset/winserver2012r2-ps/nfs/Get-NfsNetgroup.md @@ -2,7 +2,7 @@ external help file: Microsoft.FileServices.Powershell.NFS.dll-Help.xml Module Name: NFS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsnetgroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsnetgroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsNetgroup --- diff --git a/docset/winserver2012r2-ps/nfs/Get-NfsNetgroupStore.md b/docset/winserver2012r2-ps/nfs/Get-NfsNetgroupStore.md index 9b2f2d3e6c..39ec2c2b36 100644 --- a/docset/winserver2012r2-ps/nfs/Get-NfsNetgroupStore.md +++ b/docset/winserver2012r2-ps/nfs/Get-NfsNetgroupStore.md @@ -2,7 +2,7 @@ external help file: MSFT_NfsNetgroupStore.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsnetgroupstore?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsnetgroupstore?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsNetgroupStore --- diff --git a/docset/winserver2012r2-ps/nfs/Get-NfsOpenFile.md b/docset/winserver2012r2-ps/nfs/Get-NfsOpenFile.md index 28883882dc..df628e157a 100644 --- a/docset/winserver2012r2-ps/nfs/Get-NfsOpenFile.md +++ b/docset/winserver2012r2-ps/nfs/Get-NfsOpenFile.md @@ -2,7 +2,7 @@ external help file: MSFT_NfsOpenFile.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsopenfile?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsopenfile?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsOpenFile --- diff --git a/docset/winserver2012r2-ps/nfs/Get-NfsServerConfiguration.md b/docset/winserver2012r2-ps/nfs/Get-NfsServerConfiguration.md index 9f33a53df8..284350ed59 100644 --- a/docset/winserver2012r2-ps/nfs/Get-NfsServerConfiguration.md +++ b/docset/winserver2012r2-ps/nfs/Get-NfsServerConfiguration.md @@ -2,7 +2,7 @@ external help file: MSFT_NfsServerConfig.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsserverconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsserverconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsServerConfiguration --- diff --git a/docset/winserver2012r2-ps/nfs/Get-NfsSession.md b/docset/winserver2012r2-ps/nfs/Get-NfsSession.md index 0b1939a4f6..738c331055 100644 --- a/docset/winserver2012r2-ps/nfs/Get-NfsSession.md +++ b/docset/winserver2012r2-ps/nfs/Get-NfsSession.md @@ -2,7 +2,7 @@ external help file: MSFT_NfsSession.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfssession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfssession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsSession --- diff --git a/docset/winserver2012r2-ps/nfs/Get-NfsShare.md b/docset/winserver2012r2-ps/nfs/Get-NfsShare.md index 1cd6bfbce1..9ce3122e7b 100644 --- a/docset/winserver2012r2-ps/nfs/Get-NfsShare.md +++ b/docset/winserver2012r2-ps/nfs/Get-NfsShare.md @@ -2,7 +2,7 @@ external help file: MSFT_NfsShare.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsshare?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsshare?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsShare --- diff --git a/docset/winserver2012r2-ps/nfs/Get-NfsSharePermission.md b/docset/winserver2012r2-ps/nfs/Get-NfsSharePermission.md index 84f733f23a..6e2b752d6d 100644 --- a/docset/winserver2012r2-ps/nfs/Get-NfsSharePermission.md +++ b/docset/winserver2012r2-ps/nfs/Get-NfsSharePermission.md @@ -2,7 +2,7 @@ external help file: MSFT_NfsServerTasks.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfssharepermission?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfssharepermission?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsSharePermission --- diff --git a/docset/winserver2012r2-ps/nfs/Get-NfsStatistics.md b/docset/winserver2012r2-ps/nfs/Get-NfsStatistics.md index 029526d8e1..f7f94573fe 100644 --- a/docset/winserver2012r2-ps/nfs/Get-NfsStatistics.md +++ b/docset/winserver2012r2-ps/nfs/Get-NfsStatistics.md @@ -2,7 +2,7 @@ external help file: MSFT_NfsStatistics.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsstatistics?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsstatistics?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsStatistics --- diff --git a/docset/winserver2012r2-ps/nfs/Grant-NfsSharePermission.md b/docset/winserver2012r2-ps/nfs/Grant-NfsSharePermission.md index 2a9779c5b4..af00f2b721 100644 --- a/docset/winserver2012r2-ps/nfs/Grant-NfsSharePermission.md +++ b/docset/winserver2012r2-ps/nfs/Grant-NfsSharePermission.md @@ -2,7 +2,7 @@ external help file: MSFT_NfsServerTasks.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nfs/grant-nfssharepermission?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/grant-nfssharepermission?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Grant-NfsSharePermission --- diff --git a/docset/winserver2012r2-ps/nfs/Install-NfsMappingStore.md b/docset/winserver2012r2-ps/nfs/Install-NfsMappingStore.md index 88d5a76601..743f5b3574 100644 --- a/docset/winserver2012r2-ps/nfs/Install-NfsMappingStore.md +++ b/docset/winserver2012r2-ps/nfs/Install-NfsMappingStore.md @@ -2,7 +2,7 @@ external help file: Microsoft.FileServices.Powershell.NFS.dll-Help.xml Module Name: NFS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nfs/install-nfsmappingstore?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/install-nfsmappingstore?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-NfsMappingStore --- diff --git a/docset/winserver2012r2-ps/nfs/New-NfsClientgroup.md b/docset/winserver2012r2-ps/nfs/New-NfsClientgroup.md index 8e38409506..d1fc8943a8 100644 --- a/docset/winserver2012r2-ps/nfs/New-NfsClientgroup.md +++ b/docset/winserver2012r2-ps/nfs/New-NfsClientgroup.md @@ -2,7 +2,7 @@ external help file: MSFT_NfsServerTasks.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nfs/new-nfsclientgroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/new-nfsclientgroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NfsClientgroup --- diff --git a/docset/winserver2012r2-ps/nfs/New-NfsMappedIdentity.md b/docset/winserver2012r2-ps/nfs/New-NfsMappedIdentity.md index 1de7169b81..9c27412624 100644 --- a/docset/winserver2012r2-ps/nfs/New-NfsMappedIdentity.md +++ b/docset/winserver2012r2-ps/nfs/New-NfsMappedIdentity.md @@ -2,7 +2,7 @@ external help file: Microsoft.FileServices.Powershell.NFS.dll-Help.xml Module Name: NFS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nfs/new-nfsmappedidentity?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/new-nfsmappedidentity?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NfsMappedIdentity --- diff --git a/docset/winserver2012r2-ps/nfs/New-NfsNetgroup.md b/docset/winserver2012r2-ps/nfs/New-NfsNetgroup.md index 72d8e31214..df08ce75bf 100644 --- a/docset/winserver2012r2-ps/nfs/New-NfsNetgroup.md +++ b/docset/winserver2012r2-ps/nfs/New-NfsNetgroup.md @@ -2,7 +2,7 @@ external help file: Microsoft.FileServices.Powershell.NFS.dll-Help.xml Module Name: NFS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nfs/new-nfsnetgroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/new-nfsnetgroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NfsNetgroup --- diff --git a/docset/winserver2012r2-ps/nfs/New-NfsShare.md b/docset/winserver2012r2-ps/nfs/New-NfsShare.md index 5b7db7e07b..fd72de82cf 100644 --- a/docset/winserver2012r2-ps/nfs/New-NfsShare.md +++ b/docset/winserver2012r2-ps/nfs/New-NfsShare.md @@ -2,7 +2,7 @@ external help file: MSFT_NfsServerTasks.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nfs/new-nfsshare?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/new-nfsshare?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NfsShare --- diff --git a/docset/winserver2012r2-ps/nfs/Remove-NfsClientgroup.md b/docset/winserver2012r2-ps/nfs/Remove-NfsClientgroup.md index 19e84411e7..bc06895490 100644 --- a/docset/winserver2012r2-ps/nfs/Remove-NfsClientgroup.md +++ b/docset/winserver2012r2-ps/nfs/Remove-NfsClientgroup.md @@ -2,7 +2,7 @@ external help file: MSFT_NfsClientGroup.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nfs/remove-nfsclientgroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/remove-nfsclientgroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NfsClientgroup --- diff --git a/docset/winserver2012r2-ps/nfs/Remove-NfsMappedIdentity.md b/docset/winserver2012r2-ps/nfs/Remove-NfsMappedIdentity.md index c5fd939cff..7948f62c5d 100644 --- a/docset/winserver2012r2-ps/nfs/Remove-NfsMappedIdentity.md +++ b/docset/winserver2012r2-ps/nfs/Remove-NfsMappedIdentity.md @@ -2,7 +2,7 @@ external help file: Microsoft.FileServices.Powershell.NFS.dll-Help.xml Module Name: NFS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nfs/remove-nfsmappedidentity?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/remove-nfsmappedidentity?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NfsMappedIdentity --- diff --git a/docset/winserver2012r2-ps/nfs/Remove-NfsNetgroup.md b/docset/winserver2012r2-ps/nfs/Remove-NfsNetgroup.md index 5df92e1d00..3760ddeecd 100644 --- a/docset/winserver2012r2-ps/nfs/Remove-NfsNetgroup.md +++ b/docset/winserver2012r2-ps/nfs/Remove-NfsNetgroup.md @@ -2,7 +2,7 @@ external help file: Microsoft.FileServices.Powershell.NFS.dll-Help.xml Module Name: NFS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nfs/remove-nfsnetgroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/remove-nfsnetgroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NfsNetgroup --- diff --git a/docset/winserver2012r2-ps/nfs/Remove-NfsShare.md b/docset/winserver2012r2-ps/nfs/Remove-NfsShare.md index 420bed5988..6266fc0ffd 100644 --- a/docset/winserver2012r2-ps/nfs/Remove-NfsShare.md +++ b/docset/winserver2012r2-ps/nfs/Remove-NfsShare.md @@ -2,7 +2,7 @@ external help file: MSFT_NfsShare.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nfs/remove-nfsshare?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/remove-nfsshare?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NfsShare --- diff --git a/docset/winserver2012r2-ps/nfs/Rename-NfsClientgroup.md b/docset/winserver2012r2-ps/nfs/Rename-NfsClientgroup.md index 8439198915..bab654f2d9 100644 --- a/docset/winserver2012r2-ps/nfs/Rename-NfsClientgroup.md +++ b/docset/winserver2012r2-ps/nfs/Rename-NfsClientgroup.md @@ -2,7 +2,7 @@ external help file: MSFT_NfsServerTasks.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nfs/rename-nfsclientgroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/rename-nfsclientgroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-NfsClientgroup --- diff --git a/docset/winserver2012r2-ps/nfs/Reset-NfsStatistics.md b/docset/winserver2012r2-ps/nfs/Reset-NfsStatistics.md index b2952aa8e3..0461070836 100644 --- a/docset/winserver2012r2-ps/nfs/Reset-NfsStatistics.md +++ b/docset/winserver2012r2-ps/nfs/Reset-NfsStatistics.md @@ -2,7 +2,7 @@ external help file: MSFT_NfsStatistics.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nfs/reset-nfsstatistics?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/reset-nfsstatistics?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-NfsStatistics --- diff --git a/docset/winserver2012r2-ps/nfs/Resolve-NfsMappedIdentity.md b/docset/winserver2012r2-ps/nfs/Resolve-NfsMappedIdentity.md index 0a1e1bda13..fc22ac6636 100644 --- a/docset/winserver2012r2-ps/nfs/Resolve-NfsMappedIdentity.md +++ b/docset/winserver2012r2-ps/nfs/Resolve-NfsMappedIdentity.md @@ -2,7 +2,7 @@ external help file: MSFT_NfsServerTasks.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nfs/resolve-nfsmappedidentity?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/resolve-nfsmappedidentity?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resolve-NfsMappedIdentity --- diff --git a/docset/winserver2012r2-ps/nfs/Revoke-NfsClientLock.md b/docset/winserver2012r2-ps/nfs/Revoke-NfsClientLock.md index 51f3d00c77..a39abd3f67 100644 --- a/docset/winserver2012r2-ps/nfs/Revoke-NfsClientLock.md +++ b/docset/winserver2012r2-ps/nfs/Revoke-NfsClientLock.md @@ -2,7 +2,7 @@ external help file: MSFT_NfsClientLock.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nfs/revoke-nfsclientlock?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/revoke-nfsclientlock?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Revoke-NfsClientLock --- diff --git a/docset/winserver2012r2-ps/nfs/Revoke-NfsMountedClient.md b/docset/winserver2012r2-ps/nfs/Revoke-NfsMountedClient.md index fd7ed2dd51..21f0986d17 100644 --- a/docset/winserver2012r2-ps/nfs/Revoke-NfsMountedClient.md +++ b/docset/winserver2012r2-ps/nfs/Revoke-NfsMountedClient.md @@ -2,7 +2,7 @@ external help file: MSFT_NfsMountedClient.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nfs/revoke-nfsmountedclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/revoke-nfsmountedclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Revoke-NfsMountedClient --- diff --git a/docset/winserver2012r2-ps/nfs/Revoke-NfsOpenFile.md b/docset/winserver2012r2-ps/nfs/Revoke-NfsOpenFile.md index 72dac46dc2..ac6c46fca6 100644 --- a/docset/winserver2012r2-ps/nfs/Revoke-NfsOpenFile.md +++ b/docset/winserver2012r2-ps/nfs/Revoke-NfsOpenFile.md @@ -2,7 +2,7 @@ external help file: MSFT_NfsOpenFile.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nfs/revoke-nfsopenfile?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/revoke-nfsopenfile?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Revoke-NfsOpenFile --- diff --git a/docset/winserver2012r2-ps/nfs/Revoke-NfsSharePermission.md b/docset/winserver2012r2-ps/nfs/Revoke-NfsSharePermission.md index dbd6fca372..e586edd5db 100644 --- a/docset/winserver2012r2-ps/nfs/Revoke-NfsSharePermission.md +++ b/docset/winserver2012r2-ps/nfs/Revoke-NfsSharePermission.md @@ -2,7 +2,7 @@ external help file: MSFT_NfsServerTasks.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nfs/revoke-nfssharepermission?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/revoke-nfssharepermission?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Revoke-NfsSharePermission --- diff --git a/docset/winserver2012r2-ps/nfs/Set-NfsClientConfiguration.md b/docset/winserver2012r2-ps/nfs/Set-NfsClientConfiguration.md index 907f6d17ff..8917fa8d3f 100644 --- a/docset/winserver2012r2-ps/nfs/Set-NfsClientConfiguration.md +++ b/docset/winserver2012r2-ps/nfs/Set-NfsClientConfiguration.md @@ -2,7 +2,7 @@ external help file: MSFT_NfsClientConfig.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nfs/set-nfsclientconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/set-nfsclientconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NfsClientConfiguration --- diff --git a/docset/winserver2012r2-ps/nfs/Set-NfsClientgroup.md b/docset/winserver2012r2-ps/nfs/Set-NfsClientgroup.md index c25da0b17c..a5e0fbef29 100644 --- a/docset/winserver2012r2-ps/nfs/Set-NfsClientgroup.md +++ b/docset/winserver2012r2-ps/nfs/Set-NfsClientgroup.md @@ -2,7 +2,7 @@ external help file: MSFT_NfsServerTasks.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nfs/set-nfsclientgroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/set-nfsclientgroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NfsClientgroup --- diff --git a/docset/winserver2012r2-ps/nfs/Set-NfsMappedIdentity.md b/docset/winserver2012r2-ps/nfs/Set-NfsMappedIdentity.md index c92ff4710f..2c7fd21d8e 100644 --- a/docset/winserver2012r2-ps/nfs/Set-NfsMappedIdentity.md +++ b/docset/winserver2012r2-ps/nfs/Set-NfsMappedIdentity.md @@ -2,7 +2,7 @@ external help file: Microsoft.FileServices.Powershell.NFS.dll-Help.xml Module Name: NFS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nfs/set-nfsmappedidentity?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/set-nfsmappedidentity?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NfsMappedIdentity --- diff --git a/docset/winserver2012r2-ps/nfs/Set-NfsMappingStore.md b/docset/winserver2012r2-ps/nfs/Set-NfsMappingStore.md index 4dd889f0af..7eeedede09 100644 --- a/docset/winserver2012r2-ps/nfs/Set-NfsMappingStore.md +++ b/docset/winserver2012r2-ps/nfs/Set-NfsMappingStore.md @@ -2,7 +2,7 @@ external help file: MSFT_NfsMappingStore.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nfs/set-nfsmappingstore?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/set-nfsmappingstore?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NfsMappingStore --- diff --git a/docset/winserver2012r2-ps/nfs/Set-NfsNetgroup.md b/docset/winserver2012r2-ps/nfs/Set-NfsNetgroup.md index 509ebc0abd..4e5b669033 100644 --- a/docset/winserver2012r2-ps/nfs/Set-NfsNetgroup.md +++ b/docset/winserver2012r2-ps/nfs/Set-NfsNetgroup.md @@ -2,7 +2,7 @@ external help file: Microsoft.FileServices.Powershell.NFS.dll-Help.xml Module Name: NFS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nfs/set-nfsnetgroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/set-nfsnetgroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NfsNetgroup --- diff --git a/docset/winserver2012r2-ps/nfs/Set-NfsNetgroupStore.md b/docset/winserver2012r2-ps/nfs/Set-NfsNetgroupStore.md index 3a8087fa00..82cc70bda8 100644 --- a/docset/winserver2012r2-ps/nfs/Set-NfsNetgroupStore.md +++ b/docset/winserver2012r2-ps/nfs/Set-NfsNetgroupStore.md @@ -2,7 +2,7 @@ external help file: MSFT_NfsNetgroupStore.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nfs/set-nfsnetgroupstore?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/set-nfsnetgroupstore?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NfsNetgroupStore --- diff --git a/docset/winserver2012r2-ps/nfs/Set-NfsServerConfiguration.md b/docset/winserver2012r2-ps/nfs/Set-NfsServerConfiguration.md index 443dcb0c4c..b0add22580 100644 --- a/docset/winserver2012r2-ps/nfs/Set-NfsServerConfiguration.md +++ b/docset/winserver2012r2-ps/nfs/Set-NfsServerConfiguration.md @@ -2,7 +2,7 @@ external help file: MSFT_NfsServerConfig.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nfs/set-nfsserverconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/set-nfsserverconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NfsServerConfiguration --- diff --git a/docset/winserver2012r2-ps/nfs/Set-NfsShare.md b/docset/winserver2012r2-ps/nfs/Set-NfsShare.md index d7e825f704..ccb5617034 100644 --- a/docset/winserver2012r2-ps/nfs/Set-NfsShare.md +++ b/docset/winserver2012r2-ps/nfs/Set-NfsShare.md @@ -2,7 +2,7 @@ external help file: MSFT_NfsServerTasks.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nfs/set-nfsshare?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/set-nfsshare?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NfsShare --- diff --git a/docset/winserver2012r2-ps/nfs/Test-NfsMappedIdentity.md b/docset/winserver2012r2-ps/nfs/Test-NfsMappedIdentity.md index 10d9172932..4914e0e0ca 100644 --- a/docset/winserver2012r2-ps/nfs/Test-NfsMappedIdentity.md +++ b/docset/winserver2012r2-ps/nfs/Test-NfsMappedIdentity.md @@ -2,7 +2,7 @@ external help file: Microsoft.FileServices.Powershell.NFS.dll-Help.xml Module Name: NFS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nfs/test-nfsmappedidentity?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/test-nfsmappedidentity?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-NfsMappedIdentity --- diff --git a/docset/winserver2012r2-ps/nfs/Test-NfsMappingStore.md b/docset/winserver2012r2-ps/nfs/Test-NfsMappingStore.md index 56561951f5..246ea3c2ac 100644 --- a/docset/winserver2012r2-ps/nfs/Test-NfsMappingStore.md +++ b/docset/winserver2012r2-ps/nfs/Test-NfsMappingStore.md @@ -2,7 +2,7 @@ external help file: MSFT_NfsServerTasks.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/nfs/test-nfsmappingstore?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/test-nfsmappingstore?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-NfsMappingStore --- diff --git a/docset/winserver2012r2-ps/nps/Export-NpsConfiguration.md b/docset/winserver2012r2-ps/nps/Export-NpsConfiguration.md index 8fda898610..4852979069 100644 --- a/docset/winserver2012r2-ps/nps/Export-NpsConfiguration.md +++ b/docset/winserver2012r2-ps/nps/Export-NpsConfiguration.md @@ -2,7 +2,7 @@ external help file: Microsoft.NPS.Commands.dll-Help.xml Module Name: NPS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/nps/export-npsconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nps/export-npsconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-NpsConfiguration --- diff --git a/docset/winserver2012r2-ps/nps/Get-NpsRadiusClient.md b/docset/winserver2012r2-ps/nps/Get-NpsRadiusClient.md index d768bb44ca..7d6878aad4 100644 --- a/docset/winserver2012r2-ps/nps/Get-NpsRadiusClient.md +++ b/docset/winserver2012r2-ps/nps/Get-NpsRadiusClient.md @@ -2,7 +2,7 @@ external help file: Microsoft.NPS.Commands.dll-Help.xml Module Name: NPS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/nps/get-npsradiusclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nps/get-npsradiusclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NpsRadiusClient --- diff --git a/docset/winserver2012r2-ps/nps/Get-NpsRemediationServer.md b/docset/winserver2012r2-ps/nps/Get-NpsRemediationServer.md index ea84bcac41..e71e8a63c2 100644 --- a/docset/winserver2012r2-ps/nps/Get-NpsRemediationServer.md +++ b/docset/winserver2012r2-ps/nps/Get-NpsRemediationServer.md @@ -2,7 +2,7 @@ external help file: Microsoft.NPS.Commands.dll-Help.xml Module Name: NPS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/nps/get-npsremediationserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nps/get-npsremediationserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NpsRemediationServer --- diff --git a/docset/winserver2012r2-ps/nps/Get-NpsRemediationServerGroup.md b/docset/winserver2012r2-ps/nps/Get-NpsRemediationServerGroup.md index 34afbbedce..8ebe7fb88c 100644 --- a/docset/winserver2012r2-ps/nps/Get-NpsRemediationServerGroup.md +++ b/docset/winserver2012r2-ps/nps/Get-NpsRemediationServerGroup.md @@ -2,7 +2,7 @@ external help file: Microsoft.NPS.Commands.dll-Help.xml Module Name: NPS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/nps/get-npsremediationservergroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nps/get-npsremediationservergroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NpsRemediationServerGroup --- diff --git a/docset/winserver2012r2-ps/nps/Get-NpsSharedSecretTemplate.md b/docset/winserver2012r2-ps/nps/Get-NpsSharedSecretTemplate.md index d806e34170..7359d41dab 100644 --- a/docset/winserver2012r2-ps/nps/Get-NpsSharedSecretTemplate.md +++ b/docset/winserver2012r2-ps/nps/Get-NpsSharedSecretTemplate.md @@ -2,7 +2,7 @@ external help file: Microsoft.NPS.Commands.dll-Help.xml Module Name: NPS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/nps/get-npssharedsecrettemplate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nps/get-npssharedsecrettemplate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NpsSharedSecretTemplate --- diff --git a/docset/winserver2012r2-ps/nps/Import-NpsConfiguration.md b/docset/winserver2012r2-ps/nps/Import-NpsConfiguration.md index 33234715ac..2788f7fc71 100644 --- a/docset/winserver2012r2-ps/nps/Import-NpsConfiguration.md +++ b/docset/winserver2012r2-ps/nps/Import-NpsConfiguration.md @@ -2,7 +2,7 @@ external help file: Microsoft.NPS.Commands.dll-Help.xml Module Name: NPS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/nps/import-npsconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nps/import-npsconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-NpsConfiguration --- diff --git a/docset/winserver2012r2-ps/nps/New-NpsRadiusClient.md b/docset/winserver2012r2-ps/nps/New-NpsRadiusClient.md index 2b1137f80e..dcb50cfda7 100644 --- a/docset/winserver2012r2-ps/nps/New-NpsRadiusClient.md +++ b/docset/winserver2012r2-ps/nps/New-NpsRadiusClient.md @@ -2,7 +2,7 @@ external help file: Microsoft.NPS.Commands.dll-Help.xml Module Name: NPS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/nps/new-npsradiusclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nps/new-npsradiusclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NpsRadiusClient --- diff --git a/docset/winserver2012r2-ps/nps/New-NpsRemediationServer.md b/docset/winserver2012r2-ps/nps/New-NpsRemediationServer.md index 73ece2d5ac..4677919a6c 100644 --- a/docset/winserver2012r2-ps/nps/New-NpsRemediationServer.md +++ b/docset/winserver2012r2-ps/nps/New-NpsRemediationServer.md @@ -2,7 +2,7 @@ external help file: Microsoft.NPS.Commands.dll-Help.xml Module Name: NPS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/nps/new-npsremediationserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nps/new-npsremediationserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NpsRemediationServer --- diff --git a/docset/winserver2012r2-ps/nps/New-NpsRemediationServerGroup.md b/docset/winserver2012r2-ps/nps/New-NpsRemediationServerGroup.md index c4d298b6f4..8fb0f1eb3a 100644 --- a/docset/winserver2012r2-ps/nps/New-NpsRemediationServerGroup.md +++ b/docset/winserver2012r2-ps/nps/New-NpsRemediationServerGroup.md @@ -2,7 +2,7 @@ external help file: Microsoft.NPS.Commands.dll-Help.xml Module Name: NPS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/nps/new-npsremediationservergroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nps/new-npsremediationservergroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NpsRemediationServerGroup --- diff --git a/docset/winserver2012r2-ps/nps/Remove-NpsRadiusClient.md b/docset/winserver2012r2-ps/nps/Remove-NpsRadiusClient.md index 3b1b3aefb6..ee8f5cbe95 100644 --- a/docset/winserver2012r2-ps/nps/Remove-NpsRadiusClient.md +++ b/docset/winserver2012r2-ps/nps/Remove-NpsRadiusClient.md @@ -2,7 +2,7 @@ external help file: Microsoft.NPS.Commands.dll-Help.xml Module Name: NPS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/nps/remove-npsradiusclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nps/remove-npsradiusclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NpsRadiusClient --- diff --git a/docset/winserver2012r2-ps/nps/Remove-NpsRemediationServer.md b/docset/winserver2012r2-ps/nps/Remove-NpsRemediationServer.md index 3855af925a..f3e5800d14 100644 --- a/docset/winserver2012r2-ps/nps/Remove-NpsRemediationServer.md +++ b/docset/winserver2012r2-ps/nps/Remove-NpsRemediationServer.md @@ -2,7 +2,7 @@ external help file: Microsoft.NPS.Commands.dll-Help.xml Module Name: NPS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/nps/remove-npsremediationserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nps/remove-npsremediationserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NpsRemediationServer --- diff --git a/docset/winserver2012r2-ps/nps/Remove-NpsRemediationServerGroup.md b/docset/winserver2012r2-ps/nps/Remove-NpsRemediationServerGroup.md index a155f36189..a86a91c657 100644 --- a/docset/winserver2012r2-ps/nps/Remove-NpsRemediationServerGroup.md +++ b/docset/winserver2012r2-ps/nps/Remove-NpsRemediationServerGroup.md @@ -2,7 +2,7 @@ external help file: Microsoft.NPS.Commands.dll-Help.xml Module Name: NPS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/nps/remove-npsremediationservergroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nps/remove-npsremediationservergroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NpsRemediationServerGroup --- diff --git a/docset/winserver2012r2-ps/nps/Set-NpsRadiusClient.md b/docset/winserver2012r2-ps/nps/Set-NpsRadiusClient.md index 05f6bce162..65abcfc9d4 100644 --- a/docset/winserver2012r2-ps/nps/Set-NpsRadiusClient.md +++ b/docset/winserver2012r2-ps/nps/Set-NpsRadiusClient.md @@ -2,7 +2,7 @@ external help file: Microsoft.NPS.Commands.dll-Help.xml Module Name: NPS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/nps/set-npsradiusclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nps/set-npsradiusclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NpsRadiusClient --- diff --git a/docset/winserver2012r2-ps/pcsvdevice/Get-PcsvDevice.md b/docset/winserver2012r2-ps/pcsvdevice/Get-PcsvDevice.md index 4a1b524968..d679fdb16f 100644 --- a/docset/winserver2012r2-ps/pcsvdevice/Get-PcsvDevice.md +++ b/docset/winserver2012r2-ps/pcsvdevice/Get-PcsvDevice.md @@ -2,7 +2,7 @@ external help file: CIM_PhysicalComputerSystemView.cdxml-help.xml Module Name: PCSVDevice ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/pcsvdevice/get-pcsvdevice?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pcsvdevice/get-pcsvdevice?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PcsvDevice --- diff --git a/docset/winserver2012r2-ps/pcsvdevice/Restart-PcsvDevice.md b/docset/winserver2012r2-ps/pcsvdevice/Restart-PcsvDevice.md index fcd9bed6c4..d0a932731d 100644 --- a/docset/winserver2012r2-ps/pcsvdevice/Restart-PcsvDevice.md +++ b/docset/winserver2012r2-ps/pcsvdevice/Restart-PcsvDevice.md @@ -2,7 +2,7 @@ external help file: CIM_PhysicalComputerSystemView.cdxml-help.xml Module Name: PCSVDevice ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/pcsvdevice/restart-pcsvdevice?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pcsvdevice/restart-pcsvdevice?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restart-PcsvDevice --- diff --git a/docset/winserver2012r2-ps/pcsvdevice/Set-PcsvDeviceBootConfiguration.md b/docset/winserver2012r2-ps/pcsvdevice/Set-PcsvDeviceBootConfiguration.md index 3977de9cc5..7858507099 100644 --- a/docset/winserver2012r2-ps/pcsvdevice/Set-PcsvDeviceBootConfiguration.md +++ b/docset/winserver2012r2-ps/pcsvdevice/Set-PcsvDeviceBootConfiguration.md @@ -2,7 +2,7 @@ external help file: CIM_PhysicalComputerSystemView.cdxml-help.xml Module Name: PCSVDevice ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/pcsvdevice/set-pcsvdevicebootconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pcsvdevice/set-pcsvdevicebootconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-PcsvDeviceBootConfiguration --- diff --git a/docset/winserver2012r2-ps/pcsvdevice/Start-PcsvDevice.md b/docset/winserver2012r2-ps/pcsvdevice/Start-PcsvDevice.md index 863c20bcb2..fd410e1617 100644 --- a/docset/winserver2012r2-ps/pcsvdevice/Start-PcsvDevice.md +++ b/docset/winserver2012r2-ps/pcsvdevice/Start-PcsvDevice.md @@ -2,7 +2,7 @@ external help file: CIM_PhysicalComputerSystemView.cdxml-help.xml Module Name: PCSVDevice ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/pcsvdevice/start-pcsvdevice?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pcsvdevice/start-pcsvdevice?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-PcsvDevice --- diff --git a/docset/winserver2012r2-ps/pcsvdevice/Stop-PcsvDevice.md b/docset/winserver2012r2-ps/pcsvdevice/Stop-PcsvDevice.md index e385ffce8e..56511bfe0a 100644 --- a/docset/winserver2012r2-ps/pcsvdevice/Stop-PcsvDevice.md +++ b/docset/winserver2012r2-ps/pcsvdevice/Stop-PcsvDevice.md @@ -2,7 +2,7 @@ external help file: CIM_PhysicalComputerSystemView.cdxml-help.xml Module Name: PCSVDevice ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/pcsvdevice/stop-pcsvdevice?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pcsvdevice/stop-pcsvdevice?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-PcsvDevice --- diff --git a/docset/winserver2012r2-ps/pef/Add-PefMessageSource.md b/docset/winserver2012r2-ps/pef/Add-PefMessageSource.md index 0e0ba79ea2..187b93165f 100644 --- a/docset/winserver2012r2-ps/pef/Add-PefMessageSource.md +++ b/docset/winserver2012r2-ps/pef/Add-PefMessageSource.md @@ -2,7 +2,7 @@ external help file: Microsoft.Protocols.Tools.PowerShell.dll-Help.xml Module Name: PEF ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/pef/add-pefmessagesource?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pef/add-pefmessagesource?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-PefMessageSource --- diff --git a/docset/winserver2012r2-ps/pef/Add-PefProviderConfig.md b/docset/winserver2012r2-ps/pef/Add-PefProviderConfig.md index 14864688fc..227b9c6a62 100644 --- a/docset/winserver2012r2-ps/pef/Add-PefProviderConfig.md +++ b/docset/winserver2012r2-ps/pef/Add-PefProviderConfig.md @@ -2,7 +2,7 @@ external help file: Microsoft.Protocols.Tools.PowerShell.dll-Help.xml Module Name: PEF ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/pef/add-pefproviderconfig?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pef/add-pefproviderconfig?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-PefProviderConfig --- diff --git a/docset/winserver2012r2-ps/pef/Invoke-PefCustomAction.md b/docset/winserver2012r2-ps/pef/Invoke-PefCustomAction.md index 1c2201e62f..0191d916e1 100644 --- a/docset/winserver2012r2-ps/pef/Invoke-PefCustomAction.md +++ b/docset/winserver2012r2-ps/pef/Invoke-PefCustomAction.md @@ -2,7 +2,7 @@ external help file: Microsoft.Protocols.Tools.PowerShell.dll-Help.xml Module Name: PEF ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/pef/invoke-pefcustomaction?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pef/invoke-pefcustomaction?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-PefCustomAction --- diff --git a/docset/winserver2012r2-ps/pef/New-PefDateTimeTrigger.md b/docset/winserver2012r2-ps/pef/New-PefDateTimeTrigger.md index 9a1f969304..745bb0369f 100644 --- a/docset/winserver2012r2-ps/pef/New-PefDateTimeTrigger.md +++ b/docset/winserver2012r2-ps/pef/New-PefDateTimeTrigger.md @@ -2,7 +2,7 @@ external help file: Microsoft.Protocols.Tools.PowerShell.dll-Help.xml Module Name: PEF ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/pef/new-pefdatetimetrigger?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pef/new-pefdatetimetrigger?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-PefDateTimeTrigger --- diff --git a/docset/winserver2012r2-ps/pef/New-PefEventLogTrigger.md b/docset/winserver2012r2-ps/pef/New-PefEventLogTrigger.md index f8df89705b..62572d0868 100644 --- a/docset/winserver2012r2-ps/pef/New-PefEventLogTrigger.md +++ b/docset/winserver2012r2-ps/pef/New-PefEventLogTrigger.md @@ -2,7 +2,7 @@ external help file: Microsoft.Protocols.Tools.PowerShell.dll-Help.xml Module Name: PEF ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/pef/new-pefeventlogtrigger?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pef/new-pefeventlogtrigger?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-PefEventLogTrigger --- diff --git a/docset/winserver2012r2-ps/pef/New-PefKeyDownTrigger.md b/docset/winserver2012r2-ps/pef/New-PefKeyDownTrigger.md index 7aba5470dc..de84001bcf 100644 --- a/docset/winserver2012r2-ps/pef/New-PefKeyDownTrigger.md +++ b/docset/winserver2012r2-ps/pef/New-PefKeyDownTrigger.md @@ -2,7 +2,7 @@ external help file: Microsoft.Protocols.Tools.PowerShell.dll-Help.xml Module Name: PEF ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/pef/new-pefkeydowntrigger?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pef/new-pefkeydowntrigger?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-PefKeyDownTrigger --- diff --git a/docset/winserver2012r2-ps/pef/New-PefMessageTrigger.md b/docset/winserver2012r2-ps/pef/New-PefMessageTrigger.md index 3dcd1c1227..9c9e273b62 100644 --- a/docset/winserver2012r2-ps/pef/New-PefMessageTrigger.md +++ b/docset/winserver2012r2-ps/pef/New-PefMessageTrigger.md @@ -2,7 +2,7 @@ external help file: Microsoft.Protocols.Tools.PowerShell.dll-Help.xml Module Name: PEF ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/pef/new-pefmessagetrigger?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pef/new-pefmessagetrigger?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-PefMessageTrigger --- diff --git a/docset/winserver2012r2-ps/pef/New-PefProcessTrigger.md b/docset/winserver2012r2-ps/pef/New-PefProcessTrigger.md index dcc83768dc..ca52012c7f 100644 --- a/docset/winserver2012r2-ps/pef/New-PefProcessTrigger.md +++ b/docset/winserver2012r2-ps/pef/New-PefProcessTrigger.md @@ -2,7 +2,7 @@ external help file: Microsoft.Protocols.Tools.PowerShell.dll-Help.xml Module Name: PEF ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/pef/new-pefprocesstrigger?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pef/new-pefprocesstrigger?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-PefProcessTrigger --- diff --git a/docset/winserver2012r2-ps/pef/New-PefTargetHost.md b/docset/winserver2012r2-ps/pef/New-PefTargetHost.md index fd59935cf1..63427713f9 100644 --- a/docset/winserver2012r2-ps/pef/New-PefTargetHost.md +++ b/docset/winserver2012r2-ps/pef/New-PefTargetHost.md @@ -2,7 +2,7 @@ external help file: Microsoft.Protocols.Tools.PowerShell.dll-Help.xml Module Name: PEF ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/pef/new-peftargethost?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pef/new-peftargethost?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-PefTargetHost --- diff --git a/docset/winserver2012r2-ps/pef/New-PefTimeSpanTrigger.md b/docset/winserver2012r2-ps/pef/New-PefTimeSpanTrigger.md index e4178b9310..c1768fd09d 100644 --- a/docset/winserver2012r2-ps/pef/New-PefTimeSpanTrigger.md +++ b/docset/winserver2012r2-ps/pef/New-PefTimeSpanTrigger.md @@ -2,7 +2,7 @@ external help file: Microsoft.Protocols.Tools.PowerShell.dll-Help.xml Module Name: PEF ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/pef/new-peftimespantrigger?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pef/new-peftimespantrigger?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-PefTimeSpanTrigger --- diff --git a/docset/winserver2012r2-ps/pef/New-PefTraceSession.md b/docset/winserver2012r2-ps/pef/New-PefTraceSession.md index 6d501d77aa..046b80799d 100644 --- a/docset/winserver2012r2-ps/pef/New-PefTraceSession.md +++ b/docset/winserver2012r2-ps/pef/New-PefTraceSession.md @@ -2,7 +2,7 @@ external help file: Microsoft.Protocols.Tools.PowerShell.dll-Help.xml Module Name: PEF ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/pef/new-peftracesession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pef/new-peftracesession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-PefTraceSession --- diff --git a/docset/winserver2012r2-ps/pef/New-PefWin32EventTrigger.md b/docset/winserver2012r2-ps/pef/New-PefWin32EventTrigger.md index 5a0565c7d0..8e90ebfed8 100644 --- a/docset/winserver2012r2-ps/pef/New-PefWin32EventTrigger.md +++ b/docset/winserver2012r2-ps/pef/New-PefWin32EventTrigger.md @@ -2,7 +2,7 @@ external help file: Microsoft.Protocols.Tools.PowerShell.dll-Help.xml Module Name: PEF ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/pef/new-pefwin32eventtrigger?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pef/new-pefwin32eventtrigger?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-PefWin32EventTrigger --- diff --git a/docset/winserver2012r2-ps/pef/Save-PefDataCollection.md b/docset/winserver2012r2-ps/pef/Save-PefDataCollection.md index 412d9de4b2..82bf950df0 100644 --- a/docset/winserver2012r2-ps/pef/Save-PefDataCollection.md +++ b/docset/winserver2012r2-ps/pef/Save-PefDataCollection.md @@ -2,7 +2,7 @@ external help file: Microsoft.Protocols.Tools.PowerShell.dll-Help.xml Module Name: PEF ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/pef/save-pefdatacollection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pef/save-pefdatacollection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Save-PefDataCollection --- diff --git a/docset/winserver2012r2-ps/pef/Set-PefTraceFilter.md b/docset/winserver2012r2-ps/pef/Set-PefTraceFilter.md index f20e4dfe79..acd9b76c0e 100644 --- a/docset/winserver2012r2-ps/pef/Set-PefTraceFilter.md +++ b/docset/winserver2012r2-ps/pef/Set-PefTraceFilter.md @@ -2,7 +2,7 @@ external help file: Microsoft.Protocols.Tools.PowerShell.dll-Help.xml Module Name: PEF ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/pef/set-peftracefilter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pef/set-peftracefilter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-PefTraceFilter --- diff --git a/docset/winserver2012r2-ps/pef/Start-PefTraceSession.md b/docset/winserver2012r2-ps/pef/Start-PefTraceSession.md index 502c5db956..7e7ffc7df3 100644 --- a/docset/winserver2012r2-ps/pef/Start-PefTraceSession.md +++ b/docset/winserver2012r2-ps/pef/Start-PefTraceSession.md @@ -2,7 +2,7 @@ external help file: Microsoft.Protocols.Tools.PowerShell.dll-Help.xml Module Name: PEF ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/pef/start-peftracesession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pef/start-peftracesession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-PefTraceSession --- diff --git a/docset/winserver2012r2-ps/pef/Stop-PefTraceSession.md b/docset/winserver2012r2-ps/pef/Stop-PefTraceSession.md index a507025cb5..f945e6c649 100644 --- a/docset/winserver2012r2-ps/pef/Stop-PefTraceSession.md +++ b/docset/winserver2012r2-ps/pef/Stop-PefTraceSession.md @@ -2,7 +2,7 @@ external help file: Microsoft.Protocols.Tools.PowerShell.dll-Help.xml Module Name: PEF ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/pef/stop-peftracesession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pef/stop-peftracesession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-PefTraceSession --- diff --git a/docset/winserver2012r2-ps/pki/Add-CertificateEnrollmentPolicyServer.md b/docset/winserver2012r2-ps/pki/Add-CertificateEnrollmentPolicyServer.md index 9590e8e884..78899fb8c8 100644 --- a/docset/winserver2012r2-ps/pki/Add-CertificateEnrollmentPolicyServer.md +++ b/docset/winserver2012r2-ps/pki/Add-CertificateEnrollmentPolicyServer.md @@ -2,7 +2,7 @@ external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/pki/add-certificateenrollmentpolicyserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/add-certificateenrollmentpolicyserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-CertificateEnrollmentPolicyServer --- diff --git a/docset/winserver2012r2-ps/pki/Export-Certificate.md b/docset/winserver2012r2-ps/pki/Export-Certificate.md index f101716162..1791072360 100644 --- a/docset/winserver2012r2-ps/pki/Export-Certificate.md +++ b/docset/winserver2012r2-ps/pki/Export-Certificate.md @@ -2,7 +2,7 @@ external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/pki/export-certificate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/export-certificate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-Certificate --- diff --git a/docset/winserver2012r2-ps/pki/Export-PfxCertificate.md b/docset/winserver2012r2-ps/pki/Export-PfxCertificate.md index 8262282198..2a63de4d03 100644 --- a/docset/winserver2012r2-ps/pki/Export-PfxCertificate.md +++ b/docset/winserver2012r2-ps/pki/Export-PfxCertificate.md @@ -2,7 +2,7 @@ external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/pki/export-pfxcertificate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/export-pfxcertificate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-PfxCertificate --- diff --git a/docset/winserver2012r2-ps/pki/Get-Certificate.md b/docset/winserver2012r2-ps/pki/Get-Certificate.md index f9fbfe0f98..19280063c9 100644 --- a/docset/winserver2012r2-ps/pki/Get-Certificate.md +++ b/docset/winserver2012r2-ps/pki/Get-Certificate.md @@ -2,7 +2,7 @@ external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/pki/get-certificate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/get-certificate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-Certificate --- diff --git a/docset/winserver2012r2-ps/pki/Get-CertificateAutoEnrollmentPolicy.md b/docset/winserver2012r2-ps/pki/Get-CertificateAutoEnrollmentPolicy.md index ff734370f5..ea06ac0b25 100644 --- a/docset/winserver2012r2-ps/pki/Get-CertificateAutoEnrollmentPolicy.md +++ b/docset/winserver2012r2-ps/pki/Get-CertificateAutoEnrollmentPolicy.md @@ -2,7 +2,7 @@ external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/pki/get-certificateautoenrollmentpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/get-certificateautoenrollmentpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CertificateAutoEnrollmentPolicy --- diff --git a/docset/winserver2012r2-ps/pki/Get-CertificateEnrollmentPolicyServer.md b/docset/winserver2012r2-ps/pki/Get-CertificateEnrollmentPolicyServer.md index 73fd9f81c7..da2a51cfd6 100644 --- a/docset/winserver2012r2-ps/pki/Get-CertificateEnrollmentPolicyServer.md +++ b/docset/winserver2012r2-ps/pki/Get-CertificateEnrollmentPolicyServer.md @@ -2,7 +2,7 @@ external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/pki/get-certificateenrollmentpolicyserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/get-certificateenrollmentpolicyserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CertificateEnrollmentPolicyServer --- diff --git a/docset/winserver2012r2-ps/pki/Get-CertificateNotificationTask.md b/docset/winserver2012r2-ps/pki/Get-CertificateNotificationTask.md index f12b186525..2e6f32c763 100644 --- a/docset/winserver2012r2-ps/pki/Get-CertificateNotificationTask.md +++ b/docset/winserver2012r2-ps/pki/Get-CertificateNotificationTask.md @@ -2,7 +2,7 @@ external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/pki/get-certificatenotificationtask?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/get-certificatenotificationtask?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CertificateNotificationTask --- diff --git a/docset/winserver2012r2-ps/pki/Get-PfxData.md b/docset/winserver2012r2-ps/pki/Get-PfxData.md index 581e075026..4695105c9c 100644 --- a/docset/winserver2012r2-ps/pki/Get-PfxData.md +++ b/docset/winserver2012r2-ps/pki/Get-PfxData.md @@ -2,7 +2,7 @@ external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/pki/get-pfxdata?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/get-pfxdata?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PfxData --- diff --git a/docset/winserver2012r2-ps/pki/Import-Certificate.md b/docset/winserver2012r2-ps/pki/Import-Certificate.md index 7edf0b31d3..d685995200 100644 --- a/docset/winserver2012r2-ps/pki/Import-Certificate.md +++ b/docset/winserver2012r2-ps/pki/Import-Certificate.md @@ -2,7 +2,7 @@ external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/pki/import-certificate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/import-certificate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-Certificate --- diff --git a/docset/winserver2012r2-ps/pki/Import-PfxCertificate.md b/docset/winserver2012r2-ps/pki/Import-PfxCertificate.md index 3fc07bddda..a168871e1c 100644 --- a/docset/winserver2012r2-ps/pki/Import-PfxCertificate.md +++ b/docset/winserver2012r2-ps/pki/Import-PfxCertificate.md @@ -2,7 +2,7 @@ external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/pki/import-pfxcertificate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/import-pfxcertificate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-PfxCertificate --- diff --git a/docset/winserver2012r2-ps/pki/New-CertificateNotificationTask.md b/docset/winserver2012r2-ps/pki/New-CertificateNotificationTask.md index 98ee72e162..f63e76870b 100644 --- a/docset/winserver2012r2-ps/pki/New-CertificateNotificationTask.md +++ b/docset/winserver2012r2-ps/pki/New-CertificateNotificationTask.md @@ -2,7 +2,7 @@ external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/pki/new-certificatenotificationtask?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/new-certificatenotificationtask?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-CertificateNotificationTask --- diff --git a/docset/winserver2012r2-ps/pki/New-SelfSignedCertificate.md b/docset/winserver2012r2-ps/pki/New-SelfSignedCertificate.md index e03917e5f4..c1774ca1f0 100644 --- a/docset/winserver2012r2-ps/pki/New-SelfSignedCertificate.md +++ b/docset/winserver2012r2-ps/pki/New-SelfSignedCertificate.md @@ -2,7 +2,7 @@ external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/pki/new-selfsignedcertificate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/new-selfsignedcertificate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-SelfSignedCertificate --- diff --git a/docset/winserver2012r2-ps/pki/Remove-CertificateEnrollmentPolicyServer.md b/docset/winserver2012r2-ps/pki/Remove-CertificateEnrollmentPolicyServer.md index 4b11818879..8d41933ad0 100644 --- a/docset/winserver2012r2-ps/pki/Remove-CertificateEnrollmentPolicyServer.md +++ b/docset/winserver2012r2-ps/pki/Remove-CertificateEnrollmentPolicyServer.md @@ -2,7 +2,7 @@ external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/pki/remove-certificateenrollmentpolicyserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/remove-certificateenrollmentpolicyserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-CertificateEnrollmentPolicyServer --- diff --git a/docset/winserver2012r2-ps/pki/Remove-CertificateNotificationTask.md b/docset/winserver2012r2-ps/pki/Remove-CertificateNotificationTask.md index e9337b4570..d4dcd0720a 100644 --- a/docset/winserver2012r2-ps/pki/Remove-CertificateNotificationTask.md +++ b/docset/winserver2012r2-ps/pki/Remove-CertificateNotificationTask.md @@ -2,7 +2,7 @@ external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/pki/remove-certificatenotificationtask?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/remove-certificatenotificationtask?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-CertificateNotificationTask --- diff --git a/docset/winserver2012r2-ps/pki/Set-CertificateAutoEnrollmentPolicy.md b/docset/winserver2012r2-ps/pki/Set-CertificateAutoEnrollmentPolicy.md index dcca8df9a4..97cb47e017 100644 --- a/docset/winserver2012r2-ps/pki/Set-CertificateAutoEnrollmentPolicy.md +++ b/docset/winserver2012r2-ps/pki/Set-CertificateAutoEnrollmentPolicy.md @@ -2,7 +2,7 @@ external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/pki/set-certificateautoenrollmentpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/set-certificateautoenrollmentpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-CertificateAutoEnrollmentPolicy --- diff --git a/docset/winserver2012r2-ps/pki/Switch-Certificate.md b/docset/winserver2012r2-ps/pki/Switch-Certificate.md index 6bd7e9916f..0e53710f5b 100644 --- a/docset/winserver2012r2-ps/pki/Switch-Certificate.md +++ b/docset/winserver2012r2-ps/pki/Switch-Certificate.md @@ -2,7 +2,7 @@ external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/pki/switch-certificate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/switch-certificate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Switch-Certificate --- diff --git a/docset/winserver2012r2-ps/pki/Test-Certificate.md b/docset/winserver2012r2-ps/pki/Test-Certificate.md index 2699e8def8..5c68bdc3b2 100644 --- a/docset/winserver2012r2-ps/pki/Test-Certificate.md +++ b/docset/winserver2012r2-ps/pki/Test-Certificate.md @@ -2,7 +2,7 @@ external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/pki/test-certificate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/test-certificate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-Certificate --- diff --git a/docset/winserver2012r2-ps/powershellwebaccess/Add-PswaAuthorizationRule.md b/docset/winserver2012r2-ps/powershellwebaccess/Add-PswaAuthorizationRule.md index 2953bcc4b8..11131aca32 100644 --- a/docset/winserver2012r2-ps/powershellwebaccess/Add-PswaAuthorizationRule.md +++ b/docset/winserver2012r2-ps/powershellwebaccess/Add-PswaAuthorizationRule.md @@ -2,7 +2,7 @@ external help file: Microsoft.Management.UI.PowWA.Commands.dll-Help.xml Module Name: PowerShellWebAccess ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/powershellwebaccess/add-pswaauthorizationrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/powershellwebaccess/add-pswaauthorizationrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-PswaAuthorizationRule --- diff --git a/docset/winserver2012r2-ps/powershellwebaccess/Get-PswaAuthorizationRule.md b/docset/winserver2012r2-ps/powershellwebaccess/Get-PswaAuthorizationRule.md index 9a6850953b..7a82cd62c4 100644 --- a/docset/winserver2012r2-ps/powershellwebaccess/Get-PswaAuthorizationRule.md +++ b/docset/winserver2012r2-ps/powershellwebaccess/Get-PswaAuthorizationRule.md @@ -2,7 +2,7 @@ external help file: Microsoft.Management.UI.PowWA.Commands.dll-Help.xml Module Name: PowerShellWebAccess ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/powershellwebaccess/get-pswaauthorizationrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/powershellwebaccess/get-pswaauthorizationrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PswaAuthorizationRule --- diff --git a/docset/winserver2012r2-ps/powershellwebaccess/Install-PswaWebApplication.md b/docset/winserver2012r2-ps/powershellwebaccess/Install-PswaWebApplication.md index 4763056ba8..8e00356d53 100644 --- a/docset/winserver2012r2-ps/powershellwebaccess/Install-PswaWebApplication.md +++ b/docset/winserver2012r2-ps/powershellwebaccess/Install-PswaWebApplication.md @@ -2,7 +2,7 @@ external help file: Microsoft.Management.UI.PowWA.Commands.dll-help.xml Module Name: PowerShellWebAccess ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/powershellwebaccess/install-pswawebapplication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/powershellwebaccess/install-pswawebapplication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-PswaWebApplication --- diff --git a/docset/winserver2012r2-ps/powershellwebaccess/Remove-PswaAuthorizationRule.md b/docset/winserver2012r2-ps/powershellwebaccess/Remove-PswaAuthorizationRule.md index 9f75f42039..6b075e5f2a 100644 --- a/docset/winserver2012r2-ps/powershellwebaccess/Remove-PswaAuthorizationRule.md +++ b/docset/winserver2012r2-ps/powershellwebaccess/Remove-PswaAuthorizationRule.md @@ -2,7 +2,7 @@ external help file: Microsoft.Management.UI.PowWA.Commands.dll-Help.xml Module Name: PowerShellWebAccess ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/powershellwebaccess/remove-pswaauthorizationrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/powershellwebaccess/remove-pswaauthorizationrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-PswaAuthorizationRule --- diff --git a/docset/winserver2012r2-ps/powershellwebaccess/Test-PswaAuthorizationRule.md b/docset/winserver2012r2-ps/powershellwebaccess/Test-PswaAuthorizationRule.md index f97ecbc3e9..388ec5d69b 100644 --- a/docset/winserver2012r2-ps/powershellwebaccess/Test-PswaAuthorizationRule.md +++ b/docset/winserver2012r2-ps/powershellwebaccess/Test-PswaAuthorizationRule.md @@ -2,7 +2,7 @@ external help file: Microsoft.Management.UI.PowWA.Commands.dll-Help.xml Module Name: PowerShellWebAccess ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/powershellwebaccess/test-pswaauthorizationrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/powershellwebaccess/test-pswaauthorizationrule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-PswaAuthorizationRule --- diff --git a/docset/winserver2012r2-ps/powershellwebaccess/Uninstall-PswaWebApplication.md b/docset/winserver2012r2-ps/powershellwebaccess/Uninstall-PswaWebApplication.md index 6d44af2f76..1e798d85df 100644 --- a/docset/winserver2012r2-ps/powershellwebaccess/Uninstall-PswaWebApplication.md +++ b/docset/winserver2012r2-ps/powershellwebaccess/Uninstall-PswaWebApplication.md @@ -2,7 +2,7 @@ external help file: Microsoft.Management.UI.PowWA.Commands.dll-help.xml Module Name: PowerShellWebAccess ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/powershellwebaccess/uninstall-pswawebapplication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/powershellwebaccess/uninstall-pswawebapplication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-PswaWebApplication --- diff --git a/docset/winserver2012r2-ps/printmanagement/Add-Printer.md b/docset/winserver2012r2-ps/printmanagement/Add-Printer.md index 89398f2085..c0a0b2e952 100644 --- a/docset/winserver2012r2-ps/printmanagement/Add-Printer.md +++ b/docset/winserver2012r2-ps/printmanagement/Add-Printer.md @@ -2,7 +2,7 @@ external help file: MSFT_Printer_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/printmanagement/add-printer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/add-printer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-Printer --- diff --git a/docset/winserver2012r2-ps/printmanagement/Add-PrinterDriver.md b/docset/winserver2012r2-ps/printmanagement/Add-PrinterDriver.md index 4e3d0f5f3b..b29111b361 100644 --- a/docset/winserver2012r2-ps/printmanagement/Add-PrinterDriver.md +++ b/docset/winserver2012r2-ps/printmanagement/Add-PrinterDriver.md @@ -2,7 +2,7 @@ external help file: MSFT_PrinterDriver_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/printmanagement/add-printerdriver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/add-printerdriver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-PrinterDriver --- diff --git a/docset/winserver2012r2-ps/printmanagement/Add-PrinterPort.md b/docset/winserver2012r2-ps/printmanagement/Add-PrinterPort.md index bab072a0e2..e7b29be7a1 100644 --- a/docset/winserver2012r2-ps/printmanagement/Add-PrinterPort.md +++ b/docset/winserver2012r2-ps/printmanagement/Add-PrinterPort.md @@ -2,7 +2,7 @@ external help file: MSFT_PrinterPortTasks_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/printmanagement/add-printerport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/add-printerport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-PrinterPort --- diff --git a/docset/winserver2012r2-ps/printmanagement/Get-PrintConfiguration.md b/docset/winserver2012r2-ps/printmanagement/Get-PrintConfiguration.md index 5140ee1f27..de49c46c15 100644 --- a/docset/winserver2012r2-ps/printmanagement/Get-PrintConfiguration.md +++ b/docset/winserver2012r2-ps/printmanagement/Get-PrintConfiguration.md @@ -2,7 +2,7 @@ external help file: MSFT_PrinterConfiguration_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/printmanagement/get-printconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/get-printconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PrintConfiguration --- diff --git a/docset/winserver2012r2-ps/printmanagement/Get-PrintJob.md b/docset/winserver2012r2-ps/printmanagement/Get-PrintJob.md index 6714eea0e7..f81bc3b848 100644 --- a/docset/winserver2012r2-ps/printmanagement/Get-PrintJob.md +++ b/docset/winserver2012r2-ps/printmanagement/Get-PrintJob.md @@ -2,7 +2,7 @@ external help file: MSFT_PrintJob_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/printmanagement/get-printjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/get-printjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PrintJob --- diff --git a/docset/winserver2012r2-ps/printmanagement/Get-Printer.md b/docset/winserver2012r2-ps/printmanagement/Get-Printer.md index 15fb049563..3f4f9bfcbb 100644 --- a/docset/winserver2012r2-ps/printmanagement/Get-Printer.md +++ b/docset/winserver2012r2-ps/printmanagement/Get-Printer.md @@ -2,7 +2,7 @@ external help file: MSFT_Printer_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/printmanagement/get-printer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/get-printer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-Printer --- diff --git a/docset/winserver2012r2-ps/printmanagement/Get-PrinterDriver.md b/docset/winserver2012r2-ps/printmanagement/Get-PrinterDriver.md index 95dfcb6151..1e023248d7 100644 --- a/docset/winserver2012r2-ps/printmanagement/Get-PrinterDriver.md +++ b/docset/winserver2012r2-ps/printmanagement/Get-PrinterDriver.md @@ -2,7 +2,7 @@ external help file: MSFT_PrinterDriver_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/printmanagement/get-printerdriver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/get-printerdriver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PrinterDriver --- diff --git a/docset/winserver2012r2-ps/printmanagement/Get-PrinterPort.md b/docset/winserver2012r2-ps/printmanagement/Get-PrinterPort.md index fe660c6751..e6fab5f176 100644 --- a/docset/winserver2012r2-ps/printmanagement/Get-PrinterPort.md +++ b/docset/winserver2012r2-ps/printmanagement/Get-PrinterPort.md @@ -2,7 +2,7 @@ external help file: MSFT_PrinterPort_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/printmanagement/get-printerport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/get-printerport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PrinterPort --- diff --git a/docset/winserver2012r2-ps/printmanagement/Get-PrinterProperty.md b/docset/winserver2012r2-ps/printmanagement/Get-PrinterProperty.md index 7a1558672a..0ab676525f 100644 --- a/docset/winserver2012r2-ps/printmanagement/Get-PrinterProperty.md +++ b/docset/winserver2012r2-ps/printmanagement/Get-PrinterProperty.md @@ -2,7 +2,7 @@ external help file: MSFT_PrinterProperty_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/printmanagement/get-printerproperty?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/get-printerproperty?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PrinterProperty --- diff --git a/docset/winserver2012r2-ps/printmanagement/Read-PrinterNfcTag.md b/docset/winserver2012r2-ps/printmanagement/Read-PrinterNfcTag.md index a600433d7b..d58a67606a 100644 --- a/docset/winserver2012r2-ps/printmanagement/Read-PrinterNfcTag.md +++ b/docset/winserver2012r2-ps/printmanagement/Read-PrinterNfcTag.md @@ -2,7 +2,7 @@ external help file: MSFT_PrinterNfcTagTasks_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/printmanagement/read-printernfctag?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/read-printernfctag?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Read-PrinterNfcTag --- diff --git a/docset/winserver2012r2-ps/printmanagement/Remove-PrintJob.md b/docset/winserver2012r2-ps/printmanagement/Remove-PrintJob.md index b2b7abf4c5..dba81fc68d 100644 --- a/docset/winserver2012r2-ps/printmanagement/Remove-PrintJob.md +++ b/docset/winserver2012r2-ps/printmanagement/Remove-PrintJob.md @@ -2,7 +2,7 @@ external help file: MSFT_PrintJob_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/printmanagement/remove-printjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/remove-printjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-PrintJob --- diff --git a/docset/winserver2012r2-ps/printmanagement/Remove-Printer.md b/docset/winserver2012r2-ps/printmanagement/Remove-Printer.md index b66df423dc..9204d3b53f 100644 --- a/docset/winserver2012r2-ps/printmanagement/Remove-Printer.md +++ b/docset/winserver2012r2-ps/printmanagement/Remove-Printer.md @@ -2,7 +2,7 @@ external help file: MSFT_Printer_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/printmanagement/remove-printer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/remove-printer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-Printer --- diff --git a/docset/winserver2012r2-ps/printmanagement/Remove-PrinterDriver.md b/docset/winserver2012r2-ps/printmanagement/Remove-PrinterDriver.md index baa1be2722..b8e9e486ee 100644 --- a/docset/winserver2012r2-ps/printmanagement/Remove-PrinterDriver.md +++ b/docset/winserver2012r2-ps/printmanagement/Remove-PrinterDriver.md @@ -2,7 +2,7 @@ external help file: MSFT_PrinterDriver_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/printmanagement/remove-printerdriver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/remove-printerdriver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-PrinterDriver --- diff --git a/docset/winserver2012r2-ps/printmanagement/Remove-PrinterPort.md b/docset/winserver2012r2-ps/printmanagement/Remove-PrinterPort.md index 19de7e1c81..3771e0c6d4 100644 --- a/docset/winserver2012r2-ps/printmanagement/Remove-PrinterPort.md +++ b/docset/winserver2012r2-ps/printmanagement/Remove-PrinterPort.md @@ -2,7 +2,7 @@ external help file: MSFT_PrinterPort_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/printmanagement/remove-printerport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/remove-printerport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-PrinterPort --- diff --git a/docset/winserver2012r2-ps/printmanagement/Rename-Printer.md b/docset/winserver2012r2-ps/printmanagement/Rename-Printer.md index 052e466dcb..b04eb06b1c 100644 --- a/docset/winserver2012r2-ps/printmanagement/Rename-Printer.md +++ b/docset/winserver2012r2-ps/printmanagement/Rename-Printer.md @@ -2,7 +2,7 @@ external help file: MSFT_Printer_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/printmanagement/rename-printer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/rename-printer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-Printer --- diff --git a/docset/winserver2012r2-ps/printmanagement/Restart-PrintJob.md b/docset/winserver2012r2-ps/printmanagement/Restart-PrintJob.md index f6a027a2d3..09fa70dda0 100644 --- a/docset/winserver2012r2-ps/printmanagement/Restart-PrintJob.md +++ b/docset/winserver2012r2-ps/printmanagement/Restart-PrintJob.md @@ -2,7 +2,7 @@ external help file: MSFT_PrintJob_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/printmanagement/restart-printjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/restart-printjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restart-PrintJob --- diff --git a/docset/winserver2012r2-ps/printmanagement/Resume-PrintJob.md b/docset/winserver2012r2-ps/printmanagement/Resume-PrintJob.md index cab3290b31..8bfccb5c73 100644 --- a/docset/winserver2012r2-ps/printmanagement/Resume-PrintJob.md +++ b/docset/winserver2012r2-ps/printmanagement/Resume-PrintJob.md @@ -2,7 +2,7 @@ external help file: MSFT_PrintJob_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/printmanagement/resume-printjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/resume-printjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-PrintJob --- diff --git a/docset/winserver2012r2-ps/printmanagement/Set-PrintConfiguration.md b/docset/winserver2012r2-ps/printmanagement/Set-PrintConfiguration.md index 8d8d509d84..9ec35336bb 100644 --- a/docset/winserver2012r2-ps/printmanagement/Set-PrintConfiguration.md +++ b/docset/winserver2012r2-ps/printmanagement/Set-PrintConfiguration.md @@ -2,7 +2,7 @@ external help file: MSFT_PrinterConfiguration_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/printmanagement/set-printconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/set-printconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-PrintConfiguration --- diff --git a/docset/winserver2012r2-ps/printmanagement/Set-Printer.md b/docset/winserver2012r2-ps/printmanagement/Set-Printer.md index 396b2479d4..5d52308cd8 100644 --- a/docset/winserver2012r2-ps/printmanagement/Set-Printer.md +++ b/docset/winserver2012r2-ps/printmanagement/Set-Printer.md @@ -2,7 +2,7 @@ external help file: MSFT_Printer_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/printmanagement/set-printer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/set-printer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-Printer --- diff --git a/docset/winserver2012r2-ps/printmanagement/Set-PrinterProperty.md b/docset/winserver2012r2-ps/printmanagement/Set-PrinterProperty.md index 482b29c354..b8ccdc7bed 100644 --- a/docset/winserver2012r2-ps/printmanagement/Set-PrinterProperty.md +++ b/docset/winserver2012r2-ps/printmanagement/Set-PrinterProperty.md @@ -2,7 +2,7 @@ external help file: MSFT_PrinterProperty_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/printmanagement/set-printerproperty?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/set-printerproperty?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-PrinterProperty --- diff --git a/docset/winserver2012r2-ps/printmanagement/Suspend-PrintJob.md b/docset/winserver2012r2-ps/printmanagement/Suspend-PrintJob.md index 088e7faae6..9214f836ed 100644 --- a/docset/winserver2012r2-ps/printmanagement/Suspend-PrintJob.md +++ b/docset/winserver2012r2-ps/printmanagement/Suspend-PrintJob.md @@ -2,7 +2,7 @@ external help file: MSFT_PrintJob_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/printmanagement/suspend-printjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/suspend-printjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-PrintJob --- diff --git a/docset/winserver2012r2-ps/printmanagement/Write-PrinterNfcTag.md b/docset/winserver2012r2-ps/printmanagement/Write-PrinterNfcTag.md index aa1973e0ed..9e2009ce4d 100644 --- a/docset/winserver2012r2-ps/printmanagement/Write-PrinterNfcTag.md +++ b/docset/winserver2012r2-ps/printmanagement/Write-PrinterNfcTag.md @@ -2,7 +2,7 @@ external help file: MSFT_PrinterNfcTagTasks_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/printmanagement/write-printernfctag?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/write-printernfctag?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Write-PrinterNfcTag --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Add-BgpCustomRoute.md b/docset/winserver2012r2-ps/remoteaccess/Add-BgpCustomRoute.md index f562b26912..c295ea075f 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Add-BgpCustomRoute.md +++ b/docset/winserver2012r2-ps/remoteaccess/Add-BgpCustomRoute.md @@ -2,7 +2,7 @@ external help file: PS_BgpCustomRoute_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-bgpcustomroute?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-bgpcustomroute?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-BgpCustomRoute --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Add-BgpPeer.md b/docset/winserver2012r2-ps/remoteaccess/Add-BgpPeer.md index 652e3dc959..bd2ed68d91 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Add-BgpPeer.md +++ b/docset/winserver2012r2-ps/remoteaccess/Add-BgpPeer.md @@ -2,7 +2,7 @@ external help file: PS_BgpPeer_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-bgppeer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-bgppeer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-BgpPeer --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Add-BgpRouter.md b/docset/winserver2012r2-ps/remoteaccess/Add-BgpRouter.md index 4613d8005c..0c3d632113 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Add-BgpRouter.md +++ b/docset/winserver2012r2-ps/remoteaccess/Add-BgpRouter.md @@ -2,7 +2,7 @@ external help file: PS_BgpRouter_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-bgprouter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-bgprouter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-BgpRouter --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Add-BgpRoutingPolicy.md b/docset/winserver2012r2-ps/remoteaccess/Add-BgpRoutingPolicy.md index a8de78eb9f..e9e133182c 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Add-BgpRoutingPolicy.md +++ b/docset/winserver2012r2-ps/remoteaccess/Add-BgpRoutingPolicy.md @@ -2,7 +2,7 @@ external help file: PS_BgpRoutingPolicy_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-bgproutingpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-bgproutingpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-BgpRoutingPolicy --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Add-BgpRoutingPolicyForPeer.md b/docset/winserver2012r2-ps/remoteaccess/Add-BgpRoutingPolicyForPeer.md index f8d129121e..beddf7772b 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Add-BgpRoutingPolicyForPeer.md +++ b/docset/winserver2012r2-ps/remoteaccess/Add-BgpRoutingPolicyForPeer.md @@ -2,7 +2,7 @@ external help file: PS_BgpRoutingPolicyForPeer_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-bgproutingpolicyforpeer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-bgproutingpolicyforpeer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-BgpRoutingPolicyForPeer --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Add-DAAppServer.md b/docset/winserver2012r2-ps/remoteaccess/Add-DAAppServer.md index 6942b85f58..acfba5804c 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Add-DAAppServer.md +++ b/docset/winserver2012r2-ps/remoteaccess/Add-DAAppServer.md @@ -2,7 +2,7 @@ external help file: PS_DAAppServer_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-daappserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-daappserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DAAppServer --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Add-DAClient.md b/docset/winserver2012r2-ps/remoteaccess/Add-DAClient.md index 64f801ce10..4a91628f37 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Add-DAClient.md +++ b/docset/winserver2012r2-ps/remoteaccess/Add-DAClient.md @@ -2,7 +2,7 @@ external help file: PS_DAClient_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-daclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-daclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DAClient --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Add-DAClientDnsConfiguration.md b/docset/winserver2012r2-ps/remoteaccess/Add-DAClientDnsConfiguration.md index f73a2450d5..71c2dd7b43 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Add-DAClientDnsConfiguration.md +++ b/docset/winserver2012r2-ps/remoteaccess/Add-DAClientDnsConfiguration.md @@ -2,7 +2,7 @@ external help file: PS_DAClientDNSConfiguration_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-daclientdnsconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-daclientdnsconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DAClientDnsConfiguration --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Add-DAEntryPoint.md b/docset/winserver2012r2-ps/remoteaccess/Add-DAEntryPoint.md index 9d49e5f2cb..da2fb6dfe3 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Add-DAEntryPoint.md +++ b/docset/winserver2012r2-ps/remoteaccess/Add-DAEntryPoint.md @@ -2,7 +2,7 @@ external help file: PS_DAEntryPoint_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-daentrypoint?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-daentrypoint?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DAEntryPoint --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Add-DAMgmtServer.md b/docset/winserver2012r2-ps/remoteaccess/Add-DAMgmtServer.md index 646827a662..224579259b 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Add-DAMgmtServer.md +++ b/docset/winserver2012r2-ps/remoteaccess/Add-DAMgmtServer.md @@ -2,7 +2,7 @@ external help file: PS_DAMgmtServer_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-damgmtserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-damgmtserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DAMgmtServer --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Add-RemoteAccessIpFilter.md b/docset/winserver2012r2-ps/remoteaccess/Add-RemoteAccessIpFilter.md index 32e48c740a..99c9ab16d5 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Add-RemoteAccessIpFilter.md +++ b/docset/winserver2012r2-ps/remoteaccess/Add-RemoteAccessIpFilter.md @@ -2,7 +2,7 @@ external help file: PS_IPFilter_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-remoteaccessipfilter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-remoteaccessipfilter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-RemoteAccessIpFilter --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Add-RemoteAccessLoadBalancerNode.md b/docset/winserver2012r2-ps/remoteaccess/Add-RemoteAccessLoadBalancerNode.md index 9c354b2dee..c703312212 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Add-RemoteAccessLoadBalancerNode.md +++ b/docset/winserver2012r2-ps/remoteaccess/Add-RemoteAccessLoadBalancerNode.md @@ -2,7 +2,7 @@ external help file: PS_RemoteAccessLoadBalancerNode_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-remoteaccessloadbalancernode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-remoteaccessloadbalancernode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-RemoteAccessLoadBalancerNode --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Add-RemoteAccessRadius.md b/docset/winserver2012r2-ps/remoteaccess/Add-RemoteAccessRadius.md index 9fb0a298d9..1e5eb9d490 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Add-RemoteAccessRadius.md +++ b/docset/winserver2012r2-ps/remoteaccess/Add-RemoteAccessRadius.md @@ -2,7 +2,7 @@ external help file: PS_RemoteAccessRADIUS_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-remoteaccessradius?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-remoteaccessradius?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-RemoteAccessRadius --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Add-VpnIPAddressRange.md b/docset/winserver2012r2-ps/remoteaccess/Add-VpnIPAddressRange.md index d8efe52e61..ad6e6b9d8e 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Add-VpnIPAddressRange.md +++ b/docset/winserver2012r2-ps/remoteaccess/Add-VpnIPAddressRange.md @@ -2,7 +2,7 @@ external help file: PS_VPNIPAddressRange_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-vpnipaddressrange?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-vpnipaddressrange?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VpnIPAddressRange --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Add-VpnS2SInterface.md b/docset/winserver2012r2-ps/remoteaccess/Add-VpnS2SInterface.md index 378a644185..b7c86f47b1 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Add-VpnS2SInterface.md +++ b/docset/winserver2012r2-ps/remoteaccess/Add-VpnS2SInterface.md @@ -2,7 +2,7 @@ external help file: PS_VpnS2SInterface_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-vpns2sinterface?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-vpns2sinterface?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VpnS2SInterface --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Clear-RemoteAccessInboxAccountingStore.md b/docset/winserver2012r2-ps/remoteaccess/Clear-RemoteAccessInboxAccountingStore.md index 70d6b7ee4b..bbe95b78cd 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Clear-RemoteAccessInboxAccountingStore.md +++ b/docset/winserver2012r2-ps/remoteaccess/Clear-RemoteAccessInboxAccountingStore.md @@ -2,7 +2,7 @@ external help file: PS_RemoteAccessInboxAccountingStore_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/clear-remoteaccessinboxaccountingstore?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/clear-remoteaccessinboxaccountingstore?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-RemoteAccessInboxAccountingStore --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Clear-VpnS2SInterfaceStatistics.md b/docset/winserver2012r2-ps/remoteaccess/Clear-VpnS2SInterfaceStatistics.md index 31b6480973..dc204d2a39 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Clear-VpnS2SInterfaceStatistics.md +++ b/docset/winserver2012r2-ps/remoteaccess/Clear-VpnS2SInterfaceStatistics.md @@ -2,7 +2,7 @@ external help file: PS_VpnS2SInterfaceStatistics_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/clear-vpns2sinterfacestatistics?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/clear-vpns2sinterfacestatistics?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-VpnS2SInterfaceStatistics --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Connect-VpnS2SInterface.md b/docset/winserver2012r2-ps/remoteaccess/Connect-VpnS2SInterface.md index 43600ea113..415d420714 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Connect-VpnS2SInterface.md +++ b/docset/winserver2012r2-ps/remoteaccess/Connect-VpnS2SInterface.md @@ -2,7 +2,7 @@ external help file: PS_VpnS2SInterface_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/connect-vpns2sinterface?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/connect-vpns2sinterface?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Connect-VpnS2SInterface --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Disable-DAMultiSite.md b/docset/winserver2012r2-ps/remoteaccess/Disable-DAMultiSite.md index 41d01b69cb..33072e5cc7 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Disable-DAMultiSite.md +++ b/docset/winserver2012r2-ps/remoteaccess/Disable-DAMultiSite.md @@ -2,7 +2,7 @@ external help file: PS_DAMultiSite_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/disable-damultisite?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/disable-damultisite?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-DAMultiSite --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Disable-DAOtpAuthentication.md b/docset/winserver2012r2-ps/remoteaccess/Disable-DAOtpAuthentication.md index 5f148a7389..2f051c582a 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Disable-DAOtpAuthentication.md +++ b/docset/winserver2012r2-ps/remoteaccess/Disable-DAOtpAuthentication.md @@ -2,7 +2,7 @@ external help file: PS_DAOtpAuthentication_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/disable-daotpauthentication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/disable-daotpauthentication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-DAOtpAuthentication --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Disable-RemoteAccessRoutingDomain.md b/docset/winserver2012r2-ps/remoteaccess/Disable-RemoteAccessRoutingDomain.md index fc3e3261bc..16663c7a53 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Disable-RemoteAccessRoutingDomain.md +++ b/docset/winserver2012r2-ps/remoteaccess/Disable-RemoteAccessRoutingDomain.md @@ -2,7 +2,7 @@ external help file: PS_RemoteAccessRoutingDomain_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/disable-remoteaccessroutingdomain?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/disable-remoteaccessroutingdomain?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-RemoteAccessRoutingDomain --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Disconnect-VpnS2SInterface.md b/docset/winserver2012r2-ps/remoteaccess/Disconnect-VpnS2SInterface.md index c1aaeb3804..de57d5a6bb 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Disconnect-VpnS2SInterface.md +++ b/docset/winserver2012r2-ps/remoteaccess/Disconnect-VpnS2SInterface.md @@ -2,7 +2,7 @@ external help file: PS_VpnS2SInterface_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/disconnect-vpns2sinterface?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/disconnect-vpns2sinterface?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disconnect-VpnS2SInterface --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Disconnect-VpnUser.md b/docset/winserver2012r2-ps/remoteaccess/Disconnect-VpnUser.md index da27e8c495..5bbee3c6ba 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Disconnect-VpnUser.md +++ b/docset/winserver2012r2-ps/remoteaccess/Disconnect-VpnUser.md @@ -2,7 +2,7 @@ external help file: PS_VPNUser_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/disconnect-vpnuser?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/disconnect-vpnuser?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disconnect-VpnUser --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Enable-DAMultiSite.md b/docset/winserver2012r2-ps/remoteaccess/Enable-DAMultiSite.md index 090837b165..d22b82ab0b 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Enable-DAMultiSite.md +++ b/docset/winserver2012r2-ps/remoteaccess/Enable-DAMultiSite.md @@ -2,7 +2,7 @@ external help file: PS_DAMultiSite_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/enable-damultisite?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/enable-damultisite?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-DAMultiSite --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Enable-DAOtpAuthentication.md b/docset/winserver2012r2-ps/remoteaccess/Enable-DAOtpAuthentication.md index 16280d4b97..15512628c3 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Enable-DAOtpAuthentication.md +++ b/docset/winserver2012r2-ps/remoteaccess/Enable-DAOtpAuthentication.md @@ -2,7 +2,7 @@ external help file: PS_DAOtpAuthentication_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/enable-daotpauthentication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/enable-daotpauthentication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-DAOtpAuthentication --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Enable-RemoteAccessRoutingDomain.md b/docset/winserver2012r2-ps/remoteaccess/Enable-RemoteAccessRoutingDomain.md index 0553ba7ff3..9550573ac8 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Enable-RemoteAccessRoutingDomain.md +++ b/docset/winserver2012r2-ps/remoteaccess/Enable-RemoteAccessRoutingDomain.md @@ -2,7 +2,7 @@ external help file: PS_RemoteAccessRoutingDomain_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/enable-remoteaccessroutingdomain?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/enable-remoteaccessroutingdomain?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-RemoteAccessRoutingDomain --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Get-BgpCustomRoute.md b/docset/winserver2012r2-ps/remoteaccess/Get-BgpCustomRoute.md index cb21b923aa..0f8ecbcd64 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Get-BgpCustomRoute.md +++ b/docset/winserver2012r2-ps/remoteaccess/Get-BgpCustomRoute.md @@ -2,7 +2,7 @@ external help file: PS_BgpCustomRoute_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-bgpcustomroute?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-bgpcustomroute?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BgpCustomRoute --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Get-BgpPeer.md b/docset/winserver2012r2-ps/remoteaccess/Get-BgpPeer.md index bf029ed651..35c56180d9 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Get-BgpPeer.md +++ b/docset/winserver2012r2-ps/remoteaccess/Get-BgpPeer.md @@ -2,7 +2,7 @@ external help file: PS_BgpPeer_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-bgppeer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-bgppeer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BgpPeer --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Get-BgpRouteInformation.md b/docset/winserver2012r2-ps/remoteaccess/Get-BgpRouteInformation.md index 6456e6010b..22f78b279c 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Get-BgpRouteInformation.md +++ b/docset/winserver2012r2-ps/remoteaccess/Get-BgpRouteInformation.md @@ -2,7 +2,7 @@ external help file: PS_BgpRoute_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-bgprouteinformation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-bgprouteinformation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BgpRouteInformation --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Get-BgpRouter.md b/docset/winserver2012r2-ps/remoteaccess/Get-BgpRouter.md index 4dfe213eea..7535c78b06 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Get-BgpRouter.md +++ b/docset/winserver2012r2-ps/remoteaccess/Get-BgpRouter.md @@ -2,7 +2,7 @@ external help file: PS_BgpRouter_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-bgprouter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-bgprouter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BgpRouter --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Get-BgpRoutingPolicy.md b/docset/winserver2012r2-ps/remoteaccess/Get-BgpRoutingPolicy.md index 8b888dfcb4..3acf495816 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Get-BgpRoutingPolicy.md +++ b/docset/winserver2012r2-ps/remoteaccess/Get-BgpRoutingPolicy.md @@ -2,7 +2,7 @@ external help file: PS_BgpRoutingPolicy_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-bgproutingpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-bgproutingpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BgpRoutingPolicy --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Get-BgpStatistics.md b/docset/winserver2012r2-ps/remoteaccess/Get-BgpStatistics.md index 7222301fef..86bf0e3fcd 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Get-BgpStatistics.md +++ b/docset/winserver2012r2-ps/remoteaccess/Get-BgpStatistics.md @@ -2,7 +2,7 @@ external help file: PS_BgpStatistics_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-bgpstatistics?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-bgpstatistics?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BgpStatistics --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Get-DAAppServer.md b/docset/winserver2012r2-ps/remoteaccess/Get-DAAppServer.md index 14e5587ead..337eba40ef 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Get-DAAppServer.md +++ b/docset/winserver2012r2-ps/remoteaccess/Get-DAAppServer.md @@ -2,7 +2,7 @@ external help file: PS_DAAppServer_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-daappserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-daappserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DAAppServer --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Get-DAClient.md b/docset/winserver2012r2-ps/remoteaccess/Get-DAClient.md index 0c1ab27a61..72c6a40789 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Get-DAClient.md +++ b/docset/winserver2012r2-ps/remoteaccess/Get-DAClient.md @@ -2,7 +2,7 @@ external help file: PS_DAClient_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-daclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-daclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DAClient --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Get-DAClientDnsConfiguration.md b/docset/winserver2012r2-ps/remoteaccess/Get-DAClientDnsConfiguration.md index 36c27dd560..b4f1a12eef 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Get-DAClientDnsConfiguration.md +++ b/docset/winserver2012r2-ps/remoteaccess/Get-DAClientDnsConfiguration.md @@ -2,7 +2,7 @@ external help file: PS_DAClientDNSConfiguration_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-daclientdnsconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-daclientdnsconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DAClientDnsConfiguration --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Get-DAEntryPoint.md b/docset/winserver2012r2-ps/remoteaccess/Get-DAEntryPoint.md index a06fa4ca42..bf4ed37f9b 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Get-DAEntryPoint.md +++ b/docset/winserver2012r2-ps/remoteaccess/Get-DAEntryPoint.md @@ -2,7 +2,7 @@ external help file: PS_DAEntryPoint_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-daentrypoint?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-daentrypoint?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DAEntryPoint --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Get-DAEntryPointDC.md b/docset/winserver2012r2-ps/remoteaccess/Get-DAEntryPointDC.md index 3fd86774af..979e48dd4c 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Get-DAEntryPointDC.md +++ b/docset/winserver2012r2-ps/remoteaccess/Get-DAEntryPointDC.md @@ -2,7 +2,7 @@ external help file: PS_DAEntryPointDC_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-daentrypointdc?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-daentrypointdc?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DAEntryPointDC --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Get-DAMgmtServer.md b/docset/winserver2012r2-ps/remoteaccess/Get-DAMgmtServer.md index 9fa428568b..df98f8544a 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Get-DAMgmtServer.md +++ b/docset/winserver2012r2-ps/remoteaccess/Get-DAMgmtServer.md @@ -2,7 +2,7 @@ external help file: PS_DAMgmtServer_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-damgmtserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-damgmtserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DAMgmtServer --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Get-DAMultiSite.md b/docset/winserver2012r2-ps/remoteaccess/Get-DAMultiSite.md index 3f00da63f8..c4610e9706 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Get-DAMultiSite.md +++ b/docset/winserver2012r2-ps/remoteaccess/Get-DAMultiSite.md @@ -2,7 +2,7 @@ external help file: PS_DAMultiSite_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-damultisite?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-damultisite?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DAMultiSite --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Get-DANetworkLocationServer.md b/docset/winserver2012r2-ps/remoteaccess/Get-DANetworkLocationServer.md index b1d3696601..0e5ee5e09f 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Get-DANetworkLocationServer.md +++ b/docset/winserver2012r2-ps/remoteaccess/Get-DANetworkLocationServer.md @@ -2,7 +2,7 @@ external help file: PS_DANetworkLocationServer_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-danetworklocationserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-danetworklocationserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DANetworkLocationServer --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Get-DAOtpAuthentication.md b/docset/winserver2012r2-ps/remoteaccess/Get-DAOtpAuthentication.md index 60aa020a27..86e3b8a01e 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Get-DAOtpAuthentication.md +++ b/docset/winserver2012r2-ps/remoteaccess/Get-DAOtpAuthentication.md @@ -2,7 +2,7 @@ external help file: PS_DAOtpAuthentication_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-daotpauthentication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-daotpauthentication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DAOtpAuthentication --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Get-DAServer.md b/docset/winserver2012r2-ps/remoteaccess/Get-DAServer.md index 515aa957e9..def0082b3d 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Get-DAServer.md +++ b/docset/winserver2012r2-ps/remoteaccess/Get-DAServer.md @@ -2,7 +2,7 @@ external help file: PS_DAServer_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-daserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-daserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DAServer --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Get-RemoteAccess.md b/docset/winserver2012r2-ps/remoteaccess/Get-RemoteAccess.md index ce0e7b94dd..a8bdb4f514 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Get-RemoteAccess.md +++ b/docset/winserver2012r2-ps/remoteaccess/Get-RemoteAccess.md @@ -2,7 +2,7 @@ external help file: PS_RemoteAccess_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-remoteaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-remoteaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RemoteAccess --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Get-RemoteAccessAccounting.md b/docset/winserver2012r2-ps/remoteaccess/Get-RemoteAccessAccounting.md index 41471aee29..e410337f0c 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Get-RemoteAccessAccounting.md +++ b/docset/winserver2012r2-ps/remoteaccess/Get-RemoteAccessAccounting.md @@ -2,7 +2,7 @@ external help file: PS_RemoteAccessAccounting_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-remoteaccessaccounting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-remoteaccessaccounting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RemoteAccessAccounting --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Get-RemoteAccessConfiguration.md b/docset/winserver2012r2-ps/remoteaccess/Get-RemoteAccessConfiguration.md index 5be0aa9a65..10acf795c4 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Get-RemoteAccessConfiguration.md +++ b/docset/winserver2012r2-ps/remoteaccess/Get-RemoteAccessConfiguration.md @@ -2,7 +2,7 @@ external help file: PS_RemoteAccessConfiguration_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-remoteaccessconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-remoteaccessconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RemoteAccessConfiguration --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Get-RemoteAccessConnectionStatistics.md b/docset/winserver2012r2-ps/remoteaccess/Get-RemoteAccessConnectionStatistics.md index 3edb6f2780..762bd83890 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Get-RemoteAccessConnectionStatistics.md +++ b/docset/winserver2012r2-ps/remoteaccess/Get-RemoteAccessConnectionStatistics.md @@ -2,7 +2,7 @@ external help file: PS_RemoteAccessConnectionStatistics_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-remoteaccessconnectionstatistics?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-remoteaccessconnectionstatistics?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RemoteAccessConnectionStatistics --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Get-RemoteAccessConnectionStatisticsSummary.md b/docset/winserver2012r2-ps/remoteaccess/Get-RemoteAccessConnectionStatisticsSummary.md index 6bf83cda21..b312d656d4 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Get-RemoteAccessConnectionStatisticsSummary.md +++ b/docset/winserver2012r2-ps/remoteaccess/Get-RemoteAccessConnectionStatisticsSummary.md @@ -2,7 +2,7 @@ external help file: PS_RemoteAccessConnectionStatisticsSummary_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-remoteaccessconnectionstatisticssummary?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-remoteaccessconnectionstatisticssummary?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RemoteAccessConnectionStatisticsSummary --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Get-RemoteAccessHealth.md b/docset/winserver2012r2-ps/remoteaccess/Get-RemoteAccessHealth.md index 467c675d38..cb774be836 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Get-RemoteAccessHealth.md +++ b/docset/winserver2012r2-ps/remoteaccess/Get-RemoteAccessHealth.md @@ -2,7 +2,7 @@ external help file: PS_RemoteAccessHealth_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-remoteaccesshealth?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-remoteaccesshealth?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RemoteAccessHealth --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Get-RemoteAccessIpFilter.md b/docset/winserver2012r2-ps/remoteaccess/Get-RemoteAccessIpFilter.md index 7e5de26f5b..360a628913 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Get-RemoteAccessIpFilter.md +++ b/docset/winserver2012r2-ps/remoteaccess/Get-RemoteAccessIpFilter.md @@ -2,7 +2,7 @@ external help file: PS_IPFilter_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-remoteaccessipfilter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-remoteaccessipfilter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RemoteAccessIpFilter --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Get-RemoteAccessLoadBalancer.md b/docset/winserver2012r2-ps/remoteaccess/Get-RemoteAccessLoadBalancer.md index 7e8c7ea627..e3cf4c860d 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Get-RemoteAccessLoadBalancer.md +++ b/docset/winserver2012r2-ps/remoteaccess/Get-RemoteAccessLoadBalancer.md @@ -2,7 +2,7 @@ external help file: PS_RemoteAccessLoadBalancer_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-remoteaccessloadbalancer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-remoteaccessloadbalancer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RemoteAccessLoadBalancer --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Get-RemoteAccessRadius.md b/docset/winserver2012r2-ps/remoteaccess/Get-RemoteAccessRadius.md index 1d595b4ee3..1af93683e9 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Get-RemoteAccessRadius.md +++ b/docset/winserver2012r2-ps/remoteaccess/Get-RemoteAccessRadius.md @@ -2,7 +2,7 @@ external help file: PS_RemoteAccessRADIUS_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-remoteaccessradius?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-remoteaccessradius?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RemoteAccessRadius --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Get-RemoteAccessRoutingDomain.md b/docset/winserver2012r2-ps/remoteaccess/Get-RemoteAccessRoutingDomain.md index 963c4393f1..dfbe89f83e 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Get-RemoteAccessRoutingDomain.md +++ b/docset/winserver2012r2-ps/remoteaccess/Get-RemoteAccessRoutingDomain.md @@ -2,7 +2,7 @@ external help file: PS_RemoteAccessRoutingDomain_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-remoteaccessroutingdomain?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-remoteaccessroutingdomain?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RemoteAccessRoutingDomain --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Get-RemoteAccessUserActivity.md b/docset/winserver2012r2-ps/remoteaccess/Get-RemoteAccessUserActivity.md index 763c3da874..0d3b42dcb3 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Get-RemoteAccessUserActivity.md +++ b/docset/winserver2012r2-ps/remoteaccess/Get-RemoteAccessUserActivity.md @@ -2,7 +2,7 @@ external help file: PS_RemoteAccessUserActivity_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-remoteaccessuseractivity?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-remoteaccessuseractivity?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RemoteAccessUserActivity --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Get-RoutingProtocolPreference.md b/docset/winserver2012r2-ps/remoteaccess/Get-RoutingProtocolPreference.md index 93817f43a7..abf1a30e7c 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Get-RoutingProtocolPreference.md +++ b/docset/winserver2012r2-ps/remoteaccess/Get-RoutingProtocolPreference.md @@ -2,7 +2,7 @@ external help file: PS_RoutingProtocolPreference_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-routingprotocolpreference?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-routingprotocolpreference?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RoutingProtocolPreference --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Get-VpnAuthProtocol.md b/docset/winserver2012r2-ps/remoteaccess/Get-VpnAuthProtocol.md index ce68617203..735f1b35da 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Get-VpnAuthProtocol.md +++ b/docset/winserver2012r2-ps/remoteaccess/Get-VpnAuthProtocol.md @@ -2,7 +2,7 @@ external help file: PS_VpnAuthProtocol_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-vpnauthprotocol?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-vpnauthprotocol?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VpnAuthProtocol --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Get-VpnS2SInterface.md b/docset/winserver2012r2-ps/remoteaccess/Get-VpnS2SInterface.md index 0c42d130b1..fc93c5ee1b 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Get-VpnS2SInterface.md +++ b/docset/winserver2012r2-ps/remoteaccess/Get-VpnS2SInterface.md @@ -2,7 +2,7 @@ external help file: PS_VpnS2SInterface_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-vpns2sinterface?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-vpns2sinterface?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VpnS2SInterface --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Get-VpnS2SInterfaceStatistics.md b/docset/winserver2012r2-ps/remoteaccess/Get-VpnS2SInterfaceStatistics.md index f9d3525a24..9afe6a531d 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Get-VpnS2SInterfaceStatistics.md +++ b/docset/winserver2012r2-ps/remoteaccess/Get-VpnS2SInterfaceStatistics.md @@ -2,7 +2,7 @@ external help file: PS_VpnS2SInterfaceStatistics_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-vpns2sinterfacestatistics?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-vpns2sinterfacestatistics?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VpnS2SInterfaceStatistics --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Get-VpnServerConfiguration.md b/docset/winserver2012r2-ps/remoteaccess/Get-VpnServerConfiguration.md index 6463a74681..da22b4227f 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Get-VpnServerConfiguration.md +++ b/docset/winserver2012r2-ps/remoteaccess/Get-VpnServerConfiguration.md @@ -2,7 +2,7 @@ external help file: PS_VpnServerIPsecConfiguration_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-vpnserverconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-vpnserverconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VpnServerConfiguration --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Install-RemoteAccess.md b/docset/winserver2012r2-ps/remoteaccess/Install-RemoteAccess.md index f965a14860..77ccb526b6 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Install-RemoteAccess.md +++ b/docset/winserver2012r2-ps/remoteaccess/Install-RemoteAccess.md @@ -2,7 +2,7 @@ external help file: PS_RemoteAccess_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 05/31/2018 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/install-remoteaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/install-remoteaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-RemoteAccess --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Remove-BgpCustomRoute.md b/docset/winserver2012r2-ps/remoteaccess/Remove-BgpCustomRoute.md index 1cbd63d349..75cbdae13c 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Remove-BgpCustomRoute.md +++ b/docset/winserver2012r2-ps/remoteaccess/Remove-BgpCustomRoute.md @@ -2,7 +2,7 @@ external help file: PS_BgpCustomRoute_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-bgpcustomroute?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-bgpcustomroute?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-BgpCustomRoute --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Remove-BgpPeer.md b/docset/winserver2012r2-ps/remoteaccess/Remove-BgpPeer.md index c3390eec35..902dbe0239 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Remove-BgpPeer.md +++ b/docset/winserver2012r2-ps/remoteaccess/Remove-BgpPeer.md @@ -2,7 +2,7 @@ external help file: PS_BgpPeer_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-bgppeer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-bgppeer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-BgpPeer --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Remove-BgpRouter.md b/docset/winserver2012r2-ps/remoteaccess/Remove-BgpRouter.md index dc1fa846e2..d34b2104d2 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Remove-BgpRouter.md +++ b/docset/winserver2012r2-ps/remoteaccess/Remove-BgpRouter.md @@ -2,7 +2,7 @@ external help file: PS_BgpRouter_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-bgprouter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-bgprouter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-BgpRouter --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Remove-BgpRoutingPolicy.md b/docset/winserver2012r2-ps/remoteaccess/Remove-BgpRoutingPolicy.md index c05c15b268..e8691c7758 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Remove-BgpRoutingPolicy.md +++ b/docset/winserver2012r2-ps/remoteaccess/Remove-BgpRoutingPolicy.md @@ -2,7 +2,7 @@ external help file: PS_BgpRoutingPolicy_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-bgproutingpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-bgproutingpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-BgpRoutingPolicy --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Remove-BgpRoutingPolicyForPeer.md b/docset/winserver2012r2-ps/remoteaccess/Remove-BgpRoutingPolicyForPeer.md index edbb9ec889..5fe656dc1b 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Remove-BgpRoutingPolicyForPeer.md +++ b/docset/winserver2012r2-ps/remoteaccess/Remove-BgpRoutingPolicyForPeer.md @@ -2,7 +2,7 @@ external help file: PS_BgpRoutingPolicyForPeer_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-bgproutingpolicyforpeer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-bgproutingpolicyforpeer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-BgpRoutingPolicyForPeer --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Remove-DAAppServer.md b/docset/winserver2012r2-ps/remoteaccess/Remove-DAAppServer.md index 99cc1801ad..9f60010bfb 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Remove-DAAppServer.md +++ b/docset/winserver2012r2-ps/remoteaccess/Remove-DAAppServer.md @@ -2,7 +2,7 @@ external help file: PS_DAAppServer_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-daappserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-daappserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DAAppServer --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Remove-DAClient.md b/docset/winserver2012r2-ps/remoteaccess/Remove-DAClient.md index d4a75b9941..9a7e7c6d25 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Remove-DAClient.md +++ b/docset/winserver2012r2-ps/remoteaccess/Remove-DAClient.md @@ -2,7 +2,7 @@ external help file: PS_DAClient_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-daclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-daclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DAClient --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Remove-DAClientDnsConfiguration.md b/docset/winserver2012r2-ps/remoteaccess/Remove-DAClientDnsConfiguration.md index 2d0736df22..82a1985e15 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Remove-DAClientDnsConfiguration.md +++ b/docset/winserver2012r2-ps/remoteaccess/Remove-DAClientDnsConfiguration.md @@ -2,7 +2,7 @@ external help file: PS_DAClientDNSConfiguration_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-daclientdnsconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-daclientdnsconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DAClientDnsConfiguration --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Remove-DAEntryPoint.md b/docset/winserver2012r2-ps/remoteaccess/Remove-DAEntryPoint.md index bfcde4f2ca..c6108bba30 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Remove-DAEntryPoint.md +++ b/docset/winserver2012r2-ps/remoteaccess/Remove-DAEntryPoint.md @@ -2,7 +2,7 @@ external help file: PS_DAEntryPoint_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-daentrypoint?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-daentrypoint?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DAEntryPoint --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Remove-DAMgmtServer.md b/docset/winserver2012r2-ps/remoteaccess/Remove-DAMgmtServer.md index 3bdcfe1bbc..2897898afe 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Remove-DAMgmtServer.md +++ b/docset/winserver2012r2-ps/remoteaccess/Remove-DAMgmtServer.md @@ -2,7 +2,7 @@ external help file: PS_DAMgmtServer_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-damgmtserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-damgmtserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DAMgmtServer --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Remove-RemoteAccessIpFilter.md b/docset/winserver2012r2-ps/remoteaccess/Remove-RemoteAccessIpFilter.md index a3f5f1e9ce..18e383f4a1 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Remove-RemoteAccessIpFilter.md +++ b/docset/winserver2012r2-ps/remoteaccess/Remove-RemoteAccessIpFilter.md @@ -2,7 +2,7 @@ external help file: PS_IPFilter_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-remoteaccessipfilter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-remoteaccessipfilter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-RemoteAccessIpFilter --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Remove-RemoteAccessLoadBalancerNode.md b/docset/winserver2012r2-ps/remoteaccess/Remove-RemoteAccessLoadBalancerNode.md index af5bce9295..eed966f1f3 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Remove-RemoteAccessLoadBalancerNode.md +++ b/docset/winserver2012r2-ps/remoteaccess/Remove-RemoteAccessLoadBalancerNode.md @@ -2,7 +2,7 @@ external help file: PS_RemoteAccessLoadBalancerNode_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-remoteaccessloadbalancernode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-remoteaccessloadbalancernode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-RemoteAccessLoadBalancerNode --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Remove-RemoteAccessRadius.md b/docset/winserver2012r2-ps/remoteaccess/Remove-RemoteAccessRadius.md index b9e8bf7aa0..6ee8aea2b1 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Remove-RemoteAccessRadius.md +++ b/docset/winserver2012r2-ps/remoteaccess/Remove-RemoteAccessRadius.md @@ -2,7 +2,7 @@ external help file: PS_RemoteAccessRADIUS_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-remoteaccessradius?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-remoteaccessradius?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-RemoteAccessRadius --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Remove-VpnIPAddressRange.md b/docset/winserver2012r2-ps/remoteaccess/Remove-VpnIPAddressRange.md index a683f84248..8e56d511b5 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Remove-VpnIPAddressRange.md +++ b/docset/winserver2012r2-ps/remoteaccess/Remove-VpnIPAddressRange.md @@ -2,7 +2,7 @@ external help file: PS_VPNIPAddressRange_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-vpnipaddressrange?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-vpnipaddressrange?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VpnIPAddressRange --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Remove-VpnS2SInterface.md b/docset/winserver2012r2-ps/remoteaccess/Remove-VpnS2SInterface.md index 350a4c82de..35fbbfb66c 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Remove-VpnS2SInterface.md +++ b/docset/winserver2012r2-ps/remoteaccess/Remove-VpnS2SInterface.md @@ -2,7 +2,7 @@ external help file: PS_VpnS2SInterface_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-vpns2sinterface?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-vpns2sinterface?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VpnS2SInterface --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Set-BgpPeer.md b/docset/winserver2012r2-ps/remoteaccess/Set-BgpPeer.md index 2664359f43..378b95d12d 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Set-BgpPeer.md +++ b/docset/winserver2012r2-ps/remoteaccess/Set-BgpPeer.md @@ -2,7 +2,7 @@ external help file: PS_BgpPeer_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-bgppeer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-bgppeer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-BgpPeer --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Set-BgpRouter.md b/docset/winserver2012r2-ps/remoteaccess/Set-BgpRouter.md index 1f4bf9af56..882adc5779 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Set-BgpRouter.md +++ b/docset/winserver2012r2-ps/remoteaccess/Set-BgpRouter.md @@ -2,7 +2,7 @@ external help file: PS_BgpRouter_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-bgprouter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-bgprouter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-BgpRouter --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Set-BgpRoutingPolicy.md b/docset/winserver2012r2-ps/remoteaccess/Set-BgpRoutingPolicy.md index c7942e0a33..5696a0cb54 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Set-BgpRoutingPolicy.md +++ b/docset/winserver2012r2-ps/remoteaccess/Set-BgpRoutingPolicy.md @@ -2,7 +2,7 @@ external help file: PS_BgpRoutingPolicy_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-bgproutingpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-bgproutingpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-BgpRoutingPolicy --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Set-BgpRoutingPolicyForPeer.md b/docset/winserver2012r2-ps/remoteaccess/Set-BgpRoutingPolicyForPeer.md index dbfa8bdd09..b428be1360 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Set-BgpRoutingPolicyForPeer.md +++ b/docset/winserver2012r2-ps/remoteaccess/Set-BgpRoutingPolicyForPeer.md @@ -2,7 +2,7 @@ external help file: PS_BgpRoutingPolicyForPeer_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-bgproutingpolicyforpeer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-bgproutingpolicyforpeer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-BgpRoutingPolicyForPeer --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Set-DAAppServerConnection.md b/docset/winserver2012r2-ps/remoteaccess/Set-DAAppServerConnection.md index afcb6ec842..a1738d87fc 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Set-DAAppServerConnection.md +++ b/docset/winserver2012r2-ps/remoteaccess/Set-DAAppServerConnection.md @@ -2,7 +2,7 @@ external help file: PS_DAAppServerConnection_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-daappserverconnection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-daappserverconnection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DAAppServerConnection --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Set-DAClient.md b/docset/winserver2012r2-ps/remoteaccess/Set-DAClient.md index 71e4c5ca00..2d00492891 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Set-DAClient.md +++ b/docset/winserver2012r2-ps/remoteaccess/Set-DAClient.md @@ -2,7 +2,7 @@ external help file: PS_DAClient_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-daclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-daclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DAClient --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Set-DAClientDnsConfiguration.md b/docset/winserver2012r2-ps/remoteaccess/Set-DAClientDnsConfiguration.md index 1c12e1e46f..61ac62a507 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Set-DAClientDnsConfiguration.md +++ b/docset/winserver2012r2-ps/remoteaccess/Set-DAClientDnsConfiguration.md @@ -2,7 +2,7 @@ external help file: PS_DAClientDNSConfiguration_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-daclientdnsconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-daclientdnsconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DAClientDnsConfiguration --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Set-DAEntryPoint.md b/docset/winserver2012r2-ps/remoteaccess/Set-DAEntryPoint.md index 02796c8ee9..b318e6a97a 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Set-DAEntryPoint.md +++ b/docset/winserver2012r2-ps/remoteaccess/Set-DAEntryPoint.md @@ -2,7 +2,7 @@ external help file: PS_DAEntryPoint_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-daentrypoint?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-daentrypoint?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DAEntryPoint --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Set-DAEntryPointDC.md b/docset/winserver2012r2-ps/remoteaccess/Set-DAEntryPointDC.md index 48196885c6..06476f7126 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Set-DAEntryPointDC.md +++ b/docset/winserver2012r2-ps/remoteaccess/Set-DAEntryPointDC.md @@ -2,7 +2,7 @@ external help file: PS_DAEntryPointDC_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-daentrypointdc?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-daentrypointdc?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DAEntryPointDC --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Set-DAMultiSite.md b/docset/winserver2012r2-ps/remoteaccess/Set-DAMultiSite.md index be63506aea..1173ae8fe3 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Set-DAMultiSite.md +++ b/docset/winserver2012r2-ps/remoteaccess/Set-DAMultiSite.md @@ -2,7 +2,7 @@ external help file: PS_DAMultiSite_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-damultisite?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-damultisite?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DAMultiSite --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Set-DANetworkLocationServer.md b/docset/winserver2012r2-ps/remoteaccess/Set-DANetworkLocationServer.md index 0bafb4ac80..1479f579fe 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Set-DANetworkLocationServer.md +++ b/docset/winserver2012r2-ps/remoteaccess/Set-DANetworkLocationServer.md @@ -2,7 +2,7 @@ external help file: PS_DANetworkLocationServer_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-danetworklocationserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-danetworklocationserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DANetworkLocationServer --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Set-DAOtpAuthentication.md b/docset/winserver2012r2-ps/remoteaccess/Set-DAOtpAuthentication.md index 23f5e42f49..8e480c3994 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Set-DAOtpAuthentication.md +++ b/docset/winserver2012r2-ps/remoteaccess/Set-DAOtpAuthentication.md @@ -2,7 +2,7 @@ external help file: PS_DAOtpAuthentication_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-daotpauthentication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-daotpauthentication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DAOtpAuthentication --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Set-DAServer.md b/docset/winserver2012r2-ps/remoteaccess/Set-DAServer.md index 09a9ebe4fc..f94e6bfeff 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Set-DAServer.md +++ b/docset/winserver2012r2-ps/remoteaccess/Set-DAServer.md @@ -2,7 +2,7 @@ external help file: PS_DAServer_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-daserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-daserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DAServer --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Set-RemoteAccess.md b/docset/winserver2012r2-ps/remoteaccess/Set-RemoteAccess.md index 0a98f8f16c..7a1b3ba005 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Set-RemoteAccess.md +++ b/docset/winserver2012r2-ps/remoteaccess/Set-RemoteAccess.md @@ -2,7 +2,7 @@ external help file: PS_RemoteAccess_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-remoteaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-remoteaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RemoteAccess --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Set-RemoteAccessAccounting.md b/docset/winserver2012r2-ps/remoteaccess/Set-RemoteAccessAccounting.md index 006aa0ee20..ab9a54beed 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Set-RemoteAccessAccounting.md +++ b/docset/winserver2012r2-ps/remoteaccess/Set-RemoteAccessAccounting.md @@ -2,7 +2,7 @@ external help file: PS_RemoteAccessAccounting_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-remoteaccessaccounting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-remoteaccessaccounting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RemoteAccessAccounting --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Set-RemoteAccessConfiguration.md b/docset/winserver2012r2-ps/remoteaccess/Set-RemoteAccessConfiguration.md index e40c8a4011..ec6f7e1051 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Set-RemoteAccessConfiguration.md +++ b/docset/winserver2012r2-ps/remoteaccess/Set-RemoteAccessConfiguration.md @@ -2,7 +2,7 @@ external help file: PS_RemoteAccessConfiguration_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-remoteaccessconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-remoteaccessconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RemoteAccessConfiguration --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Set-RemoteAccessInboxAccountingStore.md b/docset/winserver2012r2-ps/remoteaccess/Set-RemoteAccessInboxAccountingStore.md index 0f1840a82b..1c37d9a1e3 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Set-RemoteAccessInboxAccountingStore.md +++ b/docset/winserver2012r2-ps/remoteaccess/Set-RemoteAccessInboxAccountingStore.md @@ -2,7 +2,7 @@ external help file: PS_RemoteAccessInboxAccountingStore_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-remoteaccessinboxaccountingstore?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-remoteaccessinboxaccountingstore?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RemoteAccessInboxAccountingStore --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Set-RemoteAccessIpFilter.md b/docset/winserver2012r2-ps/remoteaccess/Set-RemoteAccessIpFilter.md index a63bcd2680..415d27213a 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Set-RemoteAccessIpFilter.md +++ b/docset/winserver2012r2-ps/remoteaccess/Set-RemoteAccessIpFilter.md @@ -2,7 +2,7 @@ external help file: PS_IPFilter_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-remoteaccessipfilter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-remoteaccessipfilter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RemoteAccessIpFilter --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Set-RemoteAccessLoadBalancer.md b/docset/winserver2012r2-ps/remoteaccess/Set-RemoteAccessLoadBalancer.md index aa45785a5e..28980bb7f7 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Set-RemoteAccessLoadBalancer.md +++ b/docset/winserver2012r2-ps/remoteaccess/Set-RemoteAccessLoadBalancer.md @@ -2,7 +2,7 @@ external help file: PS_RemoteAccessLoadBalancer_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-remoteaccessloadbalancer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-remoteaccessloadbalancer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RemoteAccessLoadBalancer --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Set-RemoteAccessRadius.md b/docset/winserver2012r2-ps/remoteaccess/Set-RemoteAccessRadius.md index 0c454dd41f..35f87436be 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Set-RemoteAccessRadius.md +++ b/docset/winserver2012r2-ps/remoteaccess/Set-RemoteAccessRadius.md @@ -2,7 +2,7 @@ external help file: PS_RemoteAccessRADIUS_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-remoteaccessradius?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-remoteaccessradius?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RemoteAccessRadius --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Set-RemoteAccessRoutingDomain.md b/docset/winserver2012r2-ps/remoteaccess/Set-RemoteAccessRoutingDomain.md index 84b8f52619..3dadceedbc 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Set-RemoteAccessRoutingDomain.md +++ b/docset/winserver2012r2-ps/remoteaccess/Set-RemoteAccessRoutingDomain.md @@ -2,7 +2,7 @@ external help file: PS_RemoteAccessRoutingDomain_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-remoteaccessroutingdomain?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-remoteaccessroutingdomain?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RemoteAccessRoutingDomain --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Set-RoutingProtocolPreference.md b/docset/winserver2012r2-ps/remoteaccess/Set-RoutingProtocolPreference.md index 8abd99589c..6295718706 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Set-RoutingProtocolPreference.md +++ b/docset/winserver2012r2-ps/remoteaccess/Set-RoutingProtocolPreference.md @@ -2,7 +2,7 @@ external help file: PS_RoutingProtocolPreference_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-routingprotocolpreference?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-routingprotocolpreference?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RoutingProtocolPreference --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Set-VpnAuthProtocol.md b/docset/winserver2012r2-ps/remoteaccess/Set-VpnAuthProtocol.md index be5b5969a3..64d66f790d 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Set-VpnAuthProtocol.md +++ b/docset/winserver2012r2-ps/remoteaccess/Set-VpnAuthProtocol.md @@ -2,7 +2,7 @@ external help file: PS_VpnAuthProtocol_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-vpnauthprotocol?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-vpnauthprotocol?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VpnAuthProtocol --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Set-VpnAuthType.md b/docset/winserver2012r2-ps/remoteaccess/Set-VpnAuthType.md index 8c1869bf64..d9372d3200 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Set-VpnAuthType.md +++ b/docset/winserver2012r2-ps/remoteaccess/Set-VpnAuthType.md @@ -2,7 +2,7 @@ external help file: PS_VPNAuthType_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-vpnauthtype?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-vpnauthtype?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VpnAuthType --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Set-VpnIPAddressAssignment.md b/docset/winserver2012r2-ps/remoteaccess/Set-VpnIPAddressAssignment.md index d6d030bb50..0f880c075b 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Set-VpnIPAddressAssignment.md +++ b/docset/winserver2012r2-ps/remoteaccess/Set-VpnIPAddressAssignment.md @@ -2,7 +2,7 @@ external help file: PS_VPNIPAddressAssignment_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-vpnipaddressassignment?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-vpnipaddressassignment?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VpnIPAddressAssignment --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Set-VpnS2SInterface.md b/docset/winserver2012r2-ps/remoteaccess/Set-VpnS2SInterface.md index a35dd863ff..f2a0bc86e4 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Set-VpnS2SInterface.md +++ b/docset/winserver2012r2-ps/remoteaccess/Set-VpnS2SInterface.md @@ -2,7 +2,7 @@ external help file: PS_VpnS2SInterface_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-vpns2sinterface?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-vpns2sinterface?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VpnS2SInterface --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Set-VpnServerConfiguration.md b/docset/winserver2012r2-ps/remoteaccess/Set-VpnServerConfiguration.md index 2b391e550a..8715fbfc81 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Set-VpnServerConfiguration.md +++ b/docset/winserver2012r2-ps/remoteaccess/Set-VpnServerConfiguration.md @@ -2,7 +2,7 @@ external help file: PS_VpnServerIPsecConfiguration_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-vpnserverconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-vpnserverconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VpnServerConfiguration --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Start-BgpPeer.md b/docset/winserver2012r2-ps/remoteaccess/Start-BgpPeer.md index 9f9cbfb5d6..601ccdaf34 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Start-BgpPeer.md +++ b/docset/winserver2012r2-ps/remoteaccess/Start-BgpPeer.md @@ -2,7 +2,7 @@ external help file: PS_BgpPeer_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/start-bgppeer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/start-bgppeer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-BgpPeer --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Stop-BgpPeer.md b/docset/winserver2012r2-ps/remoteaccess/Stop-BgpPeer.md index e662351b7a..533c3163b7 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Stop-BgpPeer.md +++ b/docset/winserver2012r2-ps/remoteaccess/Stop-BgpPeer.md @@ -2,7 +2,7 @@ external help file: PS_BgpPeer_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/stop-bgppeer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/stop-bgppeer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-BgpPeer --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Uninstall-RemoteAccess.md b/docset/winserver2012r2-ps/remoteaccess/Uninstall-RemoteAccess.md index 40681beec1..4de18a780d 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Uninstall-RemoteAccess.md +++ b/docset/winserver2012r2-ps/remoteaccess/Uninstall-RemoteAccess.md @@ -2,7 +2,7 @@ external help file: PS_RemoteAccess_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/uninstall-remoteaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/uninstall-remoteaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-RemoteAccess --- diff --git a/docset/winserver2012r2-ps/remoteaccess/Update-DAMgmtServer.md b/docset/winserver2012r2-ps/remoteaccess/Update-DAMgmtServer.md index f84878c497..4ecf784def 100644 --- a/docset/winserver2012r2-ps/remoteaccess/Update-DAMgmtServer.md +++ b/docset/winserver2012r2-ps/remoteaccess/Update-DAMgmtServer.md @@ -2,7 +2,7 @@ external help file: PS_DAMgmtServer_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/update-damgmtserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/update-damgmtserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-DAMgmtServer --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Add-RDServer.md b/docset/winserver2012r2-ps/remotedesktop/Add-RDServer.md index 0c02c22eee..910dc4579b 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Add-RDServer.md +++ b/docset/winserver2012r2-ps/remotedesktop/Add-RDServer.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/add-rdserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/add-rdserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-RDServer --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Add-RDSessionHost.md b/docset/winserver2012r2-ps/remotedesktop/Add-RDSessionHost.md index 115fb16bcc..ede9d5fbb3 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Add-RDSessionHost.md +++ b/docset/winserver2012r2-ps/remotedesktop/Add-RDSessionHost.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/add-rdsessionhost?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/add-rdsessionhost?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-RDSessionHost --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Add-RDVirtualDesktopToCollection.md b/docset/winserver2012r2-ps/remotedesktop/Add-RDVirtualDesktopToCollection.md index ee44df77c5..b102bffc86 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Add-RDVirtualDesktopToCollection.md +++ b/docset/winserver2012r2-ps/remotedesktop/Add-RDVirtualDesktopToCollection.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/add-rdvirtualdesktoptocollection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/add-rdvirtualdesktoptocollection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-RDVirtualDesktopToCollection --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Disable-RDVirtualDesktopADMachineAccountReuse.md b/docset/winserver2012r2-ps/remotedesktop/Disable-RDVirtualDesktopADMachineAccountReuse.md index 122da352df..a62e1e8140 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Disable-RDVirtualDesktopADMachineAccountReuse.md +++ b/docset/winserver2012r2-ps/remotedesktop/Disable-RDVirtualDesktopADMachineAccountReuse.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/disable-rdvirtualdesktopadmachineaccountreuse?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/disable-rdvirtualdesktopadmachineaccountreuse?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-RDVirtualDesktopADMachineAccountReuse --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Disconnect-RDUser.md b/docset/winserver2012r2-ps/remotedesktop/Disconnect-RDUser.md index 062f5c5228..ea0ff7d394 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Disconnect-RDUser.md +++ b/docset/winserver2012r2-ps/remotedesktop/Disconnect-RDUser.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/disconnect-rduser?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/disconnect-rduser?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disconnect-RDUser --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Enable-RDVirtualDesktopADMachineAccountReuse.md b/docset/winserver2012r2-ps/remotedesktop/Enable-RDVirtualDesktopADMachineAccountReuse.md index 0f1eaa0a67..6dc900008d 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Enable-RDVirtualDesktopADMachineAccountReuse.md +++ b/docset/winserver2012r2-ps/remotedesktop/Enable-RDVirtualDesktopADMachineAccountReuse.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/enable-rdvirtualdesktopadmachineaccountreuse?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/enable-rdvirtualdesktopadmachineaccountreuse?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-RDVirtualDesktopADMachineAccountReuse --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Export-RDPersonalVirtualDesktopAssignment.md b/docset/winserver2012r2-ps/remotedesktop/Export-RDPersonalVirtualDesktopAssignment.md index 5d330841d9..77da96968a 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Export-RDPersonalVirtualDesktopAssignment.md +++ b/docset/winserver2012r2-ps/remotedesktop/Export-RDPersonalVirtualDesktopAssignment.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/export-rdpersonalvirtualdesktopassignment?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/export-rdpersonalvirtualdesktopassignment?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-RDPersonalVirtualDesktopAssignment --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Get-RDAvailableApp.md b/docset/winserver2012r2-ps/remotedesktop/Get-RDAvailableApp.md index 272e1aa287..35c07f5db7 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Get-RDAvailableApp.md +++ b/docset/winserver2012r2-ps/remotedesktop/Get-RDAvailableApp.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdavailableapp?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdavailableapp?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDAvailableApp --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Get-RDCertificate.md b/docset/winserver2012r2-ps/remotedesktop/Get-RDCertificate.md index 356c9c979f..f836cd0ef7 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Get-RDCertificate.md +++ b/docset/winserver2012r2-ps/remotedesktop/Get-RDCertificate.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdcertificate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdcertificate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDCertificate --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Get-RDConnectionBrokerHighAvailability.md b/docset/winserver2012r2-ps/remotedesktop/Get-RDConnectionBrokerHighAvailability.md index 8f2613dc30..361d10e856 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Get-RDConnectionBrokerHighAvailability.md +++ b/docset/winserver2012r2-ps/remotedesktop/Get-RDConnectionBrokerHighAvailability.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdconnectionbrokerhighavailability?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdconnectionbrokerhighavailability?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDConnectionBrokerHighAvailability --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Get-RDDeploymentGatewayConfiguration.md b/docset/winserver2012r2-ps/remotedesktop/Get-RDDeploymentGatewayConfiguration.md index da8ac745f8..82f97cdf1a 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Get-RDDeploymentGatewayConfiguration.md +++ b/docset/winserver2012r2-ps/remotedesktop/Get-RDDeploymentGatewayConfiguration.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rddeploymentgatewayconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rddeploymentgatewayconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDDeploymentGatewayConfiguration --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Get-RDFileTypeAssociation.md b/docset/winserver2012r2-ps/remotedesktop/Get-RDFileTypeAssociation.md index f99dba47ae..7473a4a30a 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Get-RDFileTypeAssociation.md +++ b/docset/winserver2012r2-ps/remotedesktop/Get-RDFileTypeAssociation.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdfiletypeassociation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdfiletypeassociation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDFileTypeAssociation --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Get-RDLicenseConfiguration.md b/docset/winserver2012r2-ps/remotedesktop/Get-RDLicenseConfiguration.md index 1076d97d84..1c5ff77594 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Get-RDLicenseConfiguration.md +++ b/docset/winserver2012r2-ps/remotedesktop/Get-RDLicenseConfiguration.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdlicenseconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdlicenseconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDLicenseConfiguration --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Get-RDPersonalVirtualDesktopAssignment.md b/docset/winserver2012r2-ps/remotedesktop/Get-RDPersonalVirtualDesktopAssignment.md index df98cca663..ca95e0fdcd 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Get-RDPersonalVirtualDesktopAssignment.md +++ b/docset/winserver2012r2-ps/remotedesktop/Get-RDPersonalVirtualDesktopAssignment.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdpersonalvirtualdesktopassignment?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdpersonalvirtualdesktopassignment?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDPersonalVirtualDesktopAssignment --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Get-RDPersonalVirtualDesktopPatchSchedule.md b/docset/winserver2012r2-ps/remotedesktop/Get-RDPersonalVirtualDesktopPatchSchedule.md index 87a6a851a1..cddc8ac4f5 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Get-RDPersonalVirtualDesktopPatchSchedule.md +++ b/docset/winserver2012r2-ps/remotedesktop/Get-RDPersonalVirtualDesktopPatchSchedule.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdpersonalvirtualdesktoppatchschedule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdpersonalvirtualdesktoppatchschedule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDPersonalVirtualDesktopPatchSchedule --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Get-RDRemoteApp.md b/docset/winserver2012r2-ps/remotedesktop/Get-RDRemoteApp.md index ae192b8b17..a30c2ac84b 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Get-RDRemoteApp.md +++ b/docset/winserver2012r2-ps/remotedesktop/Get-RDRemoteApp.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdremoteapp?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdremoteapp?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDRemoteApp --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Get-RDRemoteDesktop.md b/docset/winserver2012r2-ps/remotedesktop/Get-RDRemoteDesktop.md index 2b31acc2f5..a4d7d698b2 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Get-RDRemoteDesktop.md +++ b/docset/winserver2012r2-ps/remotedesktop/Get-RDRemoteDesktop.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdremotedesktop?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdremotedesktop?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDRemoteDesktop --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Get-RDServer.md b/docset/winserver2012r2-ps/remotedesktop/Get-RDServer.md index e7d279dfc3..a81a26108d 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Get-RDServer.md +++ b/docset/winserver2012r2-ps/remotedesktop/Get-RDServer.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDServer --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Get-RDSessionCollection.md b/docset/winserver2012r2-ps/remotedesktop/Get-RDSessionCollection.md index 8b2cab84a8..0144e8fc46 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Get-RDSessionCollection.md +++ b/docset/winserver2012r2-ps/remotedesktop/Get-RDSessionCollection.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdsessioncollection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdsessioncollection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDSessionCollection --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Get-RDSessionCollectionConfiguration.md b/docset/winserver2012r2-ps/remotedesktop/Get-RDSessionCollectionConfiguration.md index b0b12bbfc8..c882629590 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Get-RDSessionCollectionConfiguration.md +++ b/docset/winserver2012r2-ps/remotedesktop/Get-RDSessionCollectionConfiguration.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdsessioncollectionconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdsessioncollectionconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDSessionCollectionConfiguration --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Get-RDSessionHost.md b/docset/winserver2012r2-ps/remotedesktop/Get-RDSessionHost.md index f43247e98c..be56449b47 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Get-RDSessionHost.md +++ b/docset/winserver2012r2-ps/remotedesktop/Get-RDSessionHost.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdsessionhost?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdsessionhost?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDSessionHost --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Get-RDUserSession.md b/docset/winserver2012r2-ps/remotedesktop/Get-RDUserSession.md index 1cdd3362b3..3de982c516 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Get-RDUserSession.md +++ b/docset/winserver2012r2-ps/remotedesktop/Get-RDUserSession.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdusersession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdusersession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDUserSession --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Get-RDVirtualDesktop.md b/docset/winserver2012r2-ps/remotedesktop/Get-RDVirtualDesktop.md index d278c87eab..1b7d4e28f0 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Get-RDVirtualDesktop.md +++ b/docset/winserver2012r2-ps/remotedesktop/Get-RDVirtualDesktop.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktop?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktop?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDVirtualDesktop --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Get-RDVirtualDesktopCollection.md b/docset/winserver2012r2-ps/remotedesktop/Get-RDVirtualDesktopCollection.md index 37dad45ead..3e99ca6687 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Get-RDVirtualDesktopCollection.md +++ b/docset/winserver2012r2-ps/remotedesktop/Get-RDVirtualDesktopCollection.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktopcollection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktopcollection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDVirtualDesktopCollection --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Get-RDVirtualDesktopCollectionConfiguration.md b/docset/winserver2012r2-ps/remotedesktop/Get-RDVirtualDesktopCollectionConfiguration.md index 1e60412343..d3a1db8edf 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Get-RDVirtualDesktopCollectionConfiguration.md +++ b/docset/winserver2012r2-ps/remotedesktop/Get-RDVirtualDesktopCollectionConfiguration.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktopcollectionconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktopcollectionconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDVirtualDesktopCollectionConfiguration --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Get-RDVirtualDesktopCollectionJobStatus.md b/docset/winserver2012r2-ps/remotedesktop/Get-RDVirtualDesktopCollectionJobStatus.md index be69d86dda..c4f164e4fc 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Get-RDVirtualDesktopCollectionJobStatus.md +++ b/docset/winserver2012r2-ps/remotedesktop/Get-RDVirtualDesktopCollectionJobStatus.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktopcollectionjobstatus?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktopcollectionjobstatus?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDVirtualDesktopCollectionJobStatus --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Get-RDVirtualDesktopConcurrency.md b/docset/winserver2012r2-ps/remotedesktop/Get-RDVirtualDesktopConcurrency.md index 533227af59..5b4ed46f31 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Get-RDVirtualDesktopConcurrency.md +++ b/docset/winserver2012r2-ps/remotedesktop/Get-RDVirtualDesktopConcurrency.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktopconcurrency?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktopconcurrency?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDVirtualDesktopConcurrency --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Get-RDVirtualDesktopIdleCount.md b/docset/winserver2012r2-ps/remotedesktop/Get-RDVirtualDesktopIdleCount.md index 0501ac3817..6ae4ef2d48 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Get-RDVirtualDesktopIdleCount.md +++ b/docset/winserver2012r2-ps/remotedesktop/Get-RDVirtualDesktopIdleCount.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktopidlecount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktopidlecount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDVirtualDesktopIdleCount --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Get-RDVirtualDesktopTemplateExportPath.md b/docset/winserver2012r2-ps/remotedesktop/Get-RDVirtualDesktopTemplateExportPath.md index 0cd96e6c67..846d3d3b9b 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Get-RDVirtualDesktopTemplateExportPath.md +++ b/docset/winserver2012r2-ps/remotedesktop/Get-RDVirtualDesktopTemplateExportPath.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktoptemplateexportpath?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktoptemplateexportpath?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDVirtualDesktopTemplateExportPath --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Get-RDWorkspace.md b/docset/winserver2012r2-ps/remotedesktop/Get-RDWorkspace.md index 2bf9e05e5e..16c6830000 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Get-RDWorkspace.md +++ b/docset/winserver2012r2-ps/remotedesktop/Get-RDWorkspace.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdworkspace?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdworkspace?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDWorkspace --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Grant-RDOUAccess.md b/docset/winserver2012r2-ps/remotedesktop/Grant-RDOUAccess.md index f118894adc..2ca8059c56 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Grant-RDOUAccess.md +++ b/docset/winserver2012r2-ps/remotedesktop/Grant-RDOUAccess.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/grant-rdouaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/grant-rdouaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Grant-RDOUAccess --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Import-RDPersonalVirtualDesktopAssignment.md b/docset/winserver2012r2-ps/remotedesktop/Import-RDPersonalVirtualDesktopAssignment.md index 80cf755416..898c32badb 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Import-RDPersonalVirtualDesktopAssignment.md +++ b/docset/winserver2012r2-ps/remotedesktop/Import-RDPersonalVirtualDesktopAssignment.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/import-rdpersonalvirtualdesktopassignment?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/import-rdpersonalvirtualdesktopassignment?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-RDPersonalVirtualDesktopAssignment --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Invoke-RDUserLogoff.md b/docset/winserver2012r2-ps/remotedesktop/Invoke-RDUserLogoff.md index 6a373d43eb..0345f6d705 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Invoke-RDUserLogoff.md +++ b/docset/winserver2012r2-ps/remotedesktop/Invoke-RDUserLogoff.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/invoke-rduserlogoff?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/invoke-rduserlogoff?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-RDUserLogoff --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Move-RDVirtualDesktop.md b/docset/winserver2012r2-ps/remotedesktop/Move-RDVirtualDesktop.md index 9028735d17..fc4fd6e347 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Move-RDVirtualDesktop.md +++ b/docset/winserver2012r2-ps/remotedesktop/Move-RDVirtualDesktop.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/move-rdvirtualdesktop?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/move-rdvirtualdesktop?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-RDVirtualDesktop --- diff --git a/docset/winserver2012r2-ps/remotedesktop/New-RDCertificate.md b/docset/winserver2012r2-ps/remotedesktop/New-RDCertificate.md index 73aef0cb61..aed11e7d53 100644 --- a/docset/winserver2012r2-ps/remotedesktop/New-RDCertificate.md +++ b/docset/winserver2012r2-ps/remotedesktop/New-RDCertificate.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/new-rdcertificate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/new-rdcertificate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-RDCertificate --- diff --git a/docset/winserver2012r2-ps/remotedesktop/New-RDPersonalVirtualDesktopPatchSchedule.md b/docset/winserver2012r2-ps/remotedesktop/New-RDPersonalVirtualDesktopPatchSchedule.md index 93b3503750..5accd3bb5b 100644 --- a/docset/winserver2012r2-ps/remotedesktop/New-RDPersonalVirtualDesktopPatchSchedule.md +++ b/docset/winserver2012r2-ps/remotedesktop/New-RDPersonalVirtualDesktopPatchSchedule.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/new-rdpersonalvirtualdesktoppatchschedule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/new-rdpersonalvirtualdesktoppatchschedule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-RDPersonalVirtualDesktopPatchSchedule --- diff --git a/docset/winserver2012r2-ps/remotedesktop/New-RDRemoteApp.md b/docset/winserver2012r2-ps/remotedesktop/New-RDRemoteApp.md index 055c88a3b4..927c1762d1 100644 --- a/docset/winserver2012r2-ps/remotedesktop/New-RDRemoteApp.md +++ b/docset/winserver2012r2-ps/remotedesktop/New-RDRemoteApp.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/new-rdremoteapp?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/new-rdremoteapp?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-RDRemoteApp --- diff --git a/docset/winserver2012r2-ps/remotedesktop/New-RDSessionCollection.md b/docset/winserver2012r2-ps/remotedesktop/New-RDSessionCollection.md index 4f66d8aade..1703343b59 100644 --- a/docset/winserver2012r2-ps/remotedesktop/New-RDSessionCollection.md +++ b/docset/winserver2012r2-ps/remotedesktop/New-RDSessionCollection.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/new-rdsessioncollection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/new-rdsessioncollection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-RDSessionCollection --- diff --git a/docset/winserver2012r2-ps/remotedesktop/New-RDSessionDeployment.md b/docset/winserver2012r2-ps/remotedesktop/New-RDSessionDeployment.md index 4193133f64..d2e54dbc4d 100644 --- a/docset/winserver2012r2-ps/remotedesktop/New-RDSessionDeployment.md +++ b/docset/winserver2012r2-ps/remotedesktop/New-RDSessionDeployment.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/new-rdsessiondeployment?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/new-rdsessiondeployment?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-RDSessionDeployment --- diff --git a/docset/winserver2012r2-ps/remotedesktop/New-RDVirtualDesktopCollection.md b/docset/winserver2012r2-ps/remotedesktop/New-RDVirtualDesktopCollection.md index 0a4102b9c5..07df9b693f 100644 --- a/docset/winserver2012r2-ps/remotedesktop/New-RDVirtualDesktopCollection.md +++ b/docset/winserver2012r2-ps/remotedesktop/New-RDVirtualDesktopCollection.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/new-rdvirtualdesktopcollection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/new-rdvirtualdesktopcollection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-RDVirtualDesktopCollection --- diff --git a/docset/winserver2012r2-ps/remotedesktop/New-RDVirtualDesktopDeployment.md b/docset/winserver2012r2-ps/remotedesktop/New-RDVirtualDesktopDeployment.md index 12a519999f..829a3b0970 100644 --- a/docset/winserver2012r2-ps/remotedesktop/New-RDVirtualDesktopDeployment.md +++ b/docset/winserver2012r2-ps/remotedesktop/New-RDVirtualDesktopDeployment.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/new-rdvirtualdesktopdeployment?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/new-rdvirtualdesktopdeployment?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-RDVirtualDesktopDeployment --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Remove-RDPersonalVirtualDesktopAssignment.md b/docset/winserver2012r2-ps/remotedesktop/Remove-RDPersonalVirtualDesktopAssignment.md index f2ee3e3f01..3e92cc2b14 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Remove-RDPersonalVirtualDesktopAssignment.md +++ b/docset/winserver2012r2-ps/remotedesktop/Remove-RDPersonalVirtualDesktopAssignment.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/remove-rdpersonalvirtualdesktopassignment?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/remove-rdpersonalvirtualdesktopassignment?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-RDPersonalVirtualDesktopAssignment --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Remove-RDPersonalVirtualDesktopPatchSchedule.md b/docset/winserver2012r2-ps/remotedesktop/Remove-RDPersonalVirtualDesktopPatchSchedule.md index 5841b25bd9..8062a9aca5 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Remove-RDPersonalVirtualDesktopPatchSchedule.md +++ b/docset/winserver2012r2-ps/remotedesktop/Remove-RDPersonalVirtualDesktopPatchSchedule.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/remove-rdpersonalvirtualdesktoppatchschedule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/remove-rdpersonalvirtualdesktoppatchschedule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-RDPersonalVirtualDesktopPatchSchedule --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Remove-RDRemoteApp.md b/docset/winserver2012r2-ps/remotedesktop/Remove-RDRemoteApp.md index 4604282d50..5835fee255 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Remove-RDRemoteApp.md +++ b/docset/winserver2012r2-ps/remotedesktop/Remove-RDRemoteApp.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/remove-rdremoteapp?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/remove-rdremoteapp?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-RDRemoteApp --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Remove-RDServer.md b/docset/winserver2012r2-ps/remotedesktop/Remove-RDServer.md index af8eef3b67..c3dcf059d4 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Remove-RDServer.md +++ b/docset/winserver2012r2-ps/remotedesktop/Remove-RDServer.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/remove-rdserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/remove-rdserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-RDServer --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Remove-RDSessionCollection.md b/docset/winserver2012r2-ps/remotedesktop/Remove-RDSessionCollection.md index ad1b754b9a..46750eac0b 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Remove-RDSessionCollection.md +++ b/docset/winserver2012r2-ps/remotedesktop/Remove-RDSessionCollection.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/remove-rdsessioncollection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/remove-rdsessioncollection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-RDSessionCollection --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Remove-RDSessionHost.md b/docset/winserver2012r2-ps/remotedesktop/Remove-RDSessionHost.md index ec7237ad77..12eebd10a4 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Remove-RDSessionHost.md +++ b/docset/winserver2012r2-ps/remotedesktop/Remove-RDSessionHost.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/remove-rdsessionhost?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/remove-rdsessionhost?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-RDSessionHost --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Remove-RDVirtualDesktopCollection.md b/docset/winserver2012r2-ps/remotedesktop/Remove-RDVirtualDesktopCollection.md index 5fe880e3f4..8e5f4d6a61 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Remove-RDVirtualDesktopCollection.md +++ b/docset/winserver2012r2-ps/remotedesktop/Remove-RDVirtualDesktopCollection.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/remove-rdvirtualdesktopcollection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/remove-rdvirtualdesktopcollection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-RDVirtualDesktopCollection --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Remove-RDVirtualDesktopFromCollection.md b/docset/winserver2012r2-ps/remotedesktop/Remove-RDVirtualDesktopFromCollection.md index 13a86b07c0..f335505ef5 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Remove-RDVirtualDesktopFromCollection.md +++ b/docset/winserver2012r2-ps/remotedesktop/Remove-RDVirtualDesktopFromCollection.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/remove-rdvirtualdesktopfromcollection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/remove-rdvirtualdesktopfromcollection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-RDVirtualDesktopFromCollection --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Send-RDUserMessage.md b/docset/winserver2012r2-ps/remotedesktop/Send-RDUserMessage.md index 145dce89ad..175dbdf5c0 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Send-RDUserMessage.md +++ b/docset/winserver2012r2-ps/remotedesktop/Send-RDUserMessage.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/send-rdusermessage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/send-rdusermessage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Send-RDUserMessage --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Set-RDActiveManagementServer.md b/docset/winserver2012r2-ps/remotedesktop/Set-RDActiveManagementServer.md index 11a2ec1857..66e7054f03 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Set-RDActiveManagementServer.md +++ b/docset/winserver2012r2-ps/remotedesktop/Set-RDActiveManagementServer.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdactivemanagementserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdactivemanagementserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDActiveManagementServer --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Set-RDCertificate.md b/docset/winserver2012r2-ps/remotedesktop/Set-RDCertificate.md index ff00b82215..740410fc2f 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Set-RDCertificate.md +++ b/docset/winserver2012r2-ps/remotedesktop/Set-RDCertificate.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdcertificate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdcertificate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDCertificate --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Set-RDClientAccessName.md b/docset/winserver2012r2-ps/remotedesktop/Set-RDClientAccessName.md index 9f28d599d4..2d45740c55 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Set-RDClientAccessName.md +++ b/docset/winserver2012r2-ps/remotedesktop/Set-RDClientAccessName.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdclientaccessname?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdclientaccessname?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDClientAccessName --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Set-RDConnectionBrokerHighAvailability.md b/docset/winserver2012r2-ps/remotedesktop/Set-RDConnectionBrokerHighAvailability.md index 6d21f7a7f9..56bdd44cfe 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Set-RDConnectionBrokerHighAvailability.md +++ b/docset/winserver2012r2-ps/remotedesktop/Set-RDConnectionBrokerHighAvailability.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdconnectionbrokerhighavailability?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdconnectionbrokerhighavailability?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDConnectionBrokerHighAvailability --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Set-RDDatabaseConnectionString.md b/docset/winserver2012r2-ps/remotedesktop/Set-RDDatabaseConnectionString.md index 317c23a536..2c5a80e551 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Set-RDDatabaseConnectionString.md +++ b/docset/winserver2012r2-ps/remotedesktop/Set-RDDatabaseConnectionString.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rddatabaseconnectionstring?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rddatabaseconnectionstring?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDDatabaseConnectionString --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Set-RDDeploymentGatewayConfiguration.md b/docset/winserver2012r2-ps/remotedesktop/Set-RDDeploymentGatewayConfiguration.md index a9483d8144..6e5c112c28 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Set-RDDeploymentGatewayConfiguration.md +++ b/docset/winserver2012r2-ps/remotedesktop/Set-RDDeploymentGatewayConfiguration.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rddeploymentgatewayconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rddeploymentgatewayconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDDeploymentGatewayConfiguration --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Set-RDFileTypeAssociation.md b/docset/winserver2012r2-ps/remotedesktop/Set-RDFileTypeAssociation.md index 32e5ffe0eb..5e54d72c04 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Set-RDFileTypeAssociation.md +++ b/docset/winserver2012r2-ps/remotedesktop/Set-RDFileTypeAssociation.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdfiletypeassociation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdfiletypeassociation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDFileTypeAssociation --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Set-RDLicenseConfiguration.md b/docset/winserver2012r2-ps/remotedesktop/Set-RDLicenseConfiguration.md index bc7a282c52..fa2f1d6f30 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Set-RDLicenseConfiguration.md +++ b/docset/winserver2012r2-ps/remotedesktop/Set-RDLicenseConfiguration.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdlicenseconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdlicenseconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDLicenseConfiguration --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Set-RDPersonalVirtualDesktopAssignment.md b/docset/winserver2012r2-ps/remotedesktop/Set-RDPersonalVirtualDesktopAssignment.md index 0da13b6712..2769b66a56 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Set-RDPersonalVirtualDesktopAssignment.md +++ b/docset/winserver2012r2-ps/remotedesktop/Set-RDPersonalVirtualDesktopAssignment.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdpersonalvirtualdesktopassignment?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdpersonalvirtualdesktopassignment?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDPersonalVirtualDesktopAssignment --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Set-RDPersonalVirtualDesktopPatchSchedule.md b/docset/winserver2012r2-ps/remotedesktop/Set-RDPersonalVirtualDesktopPatchSchedule.md index b32b7d48af..6158b7b971 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Set-RDPersonalVirtualDesktopPatchSchedule.md +++ b/docset/winserver2012r2-ps/remotedesktop/Set-RDPersonalVirtualDesktopPatchSchedule.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdpersonalvirtualdesktoppatchschedule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdpersonalvirtualdesktoppatchschedule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDPersonalVirtualDesktopPatchSchedule --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Set-RDRemoteApp.md b/docset/winserver2012r2-ps/remotedesktop/Set-RDRemoteApp.md index 8b6f52d7a6..319624c28d 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Set-RDRemoteApp.md +++ b/docset/winserver2012r2-ps/remotedesktop/Set-RDRemoteApp.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdremoteapp?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdremoteapp?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDRemoteApp --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Set-RDRemoteDesktop.md b/docset/winserver2012r2-ps/remotedesktop/Set-RDRemoteDesktop.md index c03f8265be..3cbaee7e3b 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Set-RDRemoteDesktop.md +++ b/docset/winserver2012r2-ps/remotedesktop/Set-RDRemoteDesktop.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdremotedesktop?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdremotedesktop?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDRemoteDesktop --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Set-RDSessionCollectionConfiguration.md b/docset/winserver2012r2-ps/remotedesktop/Set-RDSessionCollectionConfiguration.md index cd00d140fb..a7da3a6be5 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Set-RDSessionCollectionConfiguration.md +++ b/docset/winserver2012r2-ps/remotedesktop/Set-RDSessionCollectionConfiguration.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdsessioncollectionconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdsessioncollectionconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDSessionCollectionConfiguration --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Set-RDSessionHost.md b/docset/winserver2012r2-ps/remotedesktop/Set-RDSessionHost.md index f13bdf2562..4d4d8df745 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Set-RDSessionHost.md +++ b/docset/winserver2012r2-ps/remotedesktop/Set-RDSessionHost.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdsessionhost?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdsessionhost?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDSessionHost --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Set-RDVirtualDesktopCollectionConfiguration.md b/docset/winserver2012r2-ps/remotedesktop/Set-RDVirtualDesktopCollectionConfiguration.md index 91221b5e42..213fd0632b 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Set-RDVirtualDesktopCollectionConfiguration.md +++ b/docset/winserver2012r2-ps/remotedesktop/Set-RDVirtualDesktopCollectionConfiguration.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdvirtualdesktopcollectionconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdvirtualdesktopcollectionconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDVirtualDesktopCollectionConfiguration --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Set-RDVirtualDesktopConcurrency.md b/docset/winserver2012r2-ps/remotedesktop/Set-RDVirtualDesktopConcurrency.md index 8a9b32a97f..2c8f4e90c7 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Set-RDVirtualDesktopConcurrency.md +++ b/docset/winserver2012r2-ps/remotedesktop/Set-RDVirtualDesktopConcurrency.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdvirtualdesktopconcurrency?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdvirtualdesktopconcurrency?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDVirtualDesktopConcurrency --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Set-RDVirtualDesktopIdleCount.md b/docset/winserver2012r2-ps/remotedesktop/Set-RDVirtualDesktopIdleCount.md index fb2fa02179..e87b33f531 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Set-RDVirtualDesktopIdleCount.md +++ b/docset/winserver2012r2-ps/remotedesktop/Set-RDVirtualDesktopIdleCount.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdvirtualdesktopidlecount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdvirtualdesktopidlecount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDVirtualDesktopIdleCount --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Set-RDVirtualDesktopTemplateExportPath.md b/docset/winserver2012r2-ps/remotedesktop/Set-RDVirtualDesktopTemplateExportPath.md index fb557252da..e6fffa59b9 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Set-RDVirtualDesktopTemplateExportPath.md +++ b/docset/winserver2012r2-ps/remotedesktop/Set-RDVirtualDesktopTemplateExportPath.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdvirtualdesktoptemplateexportpath?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdvirtualdesktoptemplateexportpath?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDVirtualDesktopTemplateExportPath --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Set-RDWorkspace.md b/docset/winserver2012r2-ps/remotedesktop/Set-RDWorkspace.md index 836a385863..ce036f110b 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Set-RDWorkspace.md +++ b/docset/winserver2012r2-ps/remotedesktop/Set-RDWorkspace.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdworkspace?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdworkspace?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDWorkspace --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Stop-RDVirtualDesktopCollectionJob.md b/docset/winserver2012r2-ps/remotedesktop/Stop-RDVirtualDesktopCollectionJob.md index 5fc23ae1ed..92e507759c 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Stop-RDVirtualDesktopCollectionJob.md +++ b/docset/winserver2012r2-ps/remotedesktop/Stop-RDVirtualDesktopCollectionJob.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/stop-rdvirtualdesktopcollectionjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/stop-rdvirtualdesktopcollectionjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-RDVirtualDesktopCollectionJob --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Test-RDOUAccess.md b/docset/winserver2012r2-ps/remotedesktop/Test-RDOUAccess.md index 8bcd757118..679f000100 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Test-RDOUAccess.md +++ b/docset/winserver2012r2-ps/remotedesktop/Test-RDOUAccess.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/test-rdouaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/test-rdouaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-RDOUAccess --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Test-RDVirtualDesktopADMachineAccountReuse.md b/docset/winserver2012r2-ps/remotedesktop/Test-RDVirtualDesktopADMachineAccountReuse.md index 4f11fa981e..1e2bc080f1 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Test-RDVirtualDesktopADMachineAccountReuse.md +++ b/docset/winserver2012r2-ps/remotedesktop/Test-RDVirtualDesktopADMachineAccountReuse.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/test-rdvirtualdesktopadmachineaccountreuse?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/test-rdvirtualdesktopadmachineaccountreuse?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-RDVirtualDesktopADMachineAccountReuse --- diff --git a/docset/winserver2012r2-ps/remotedesktop/Update-RDVirtualDesktopCollection.md b/docset/winserver2012r2-ps/remotedesktop/Update-RDVirtualDesktopCollection.md index 1f4f11018a..2e5e46c39c 100644 --- a/docset/winserver2012r2-ps/remotedesktop/Update-RDVirtualDesktopCollection.md +++ b/docset/winserver2012r2-ps/remotedesktop/Update-RDVirtualDesktopCollection.md @@ -2,7 +2,7 @@ external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/update-rdvirtualdesktopcollection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/update-rdvirtualdesktopcollection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-RDVirtualDesktopCollection --- diff --git a/docset/winserver2012r2-ps/remotedesktopservices/Convert-License.md b/docset/winserver2012r2-ps/remotedesktopservices/Convert-License.md index 70778ab77b..a8e1b8a438 100644 --- a/docset/winserver2012r2-ps/remotedesktopservices/Convert-License.md +++ b/docset/winserver2012r2-ps/remotedesktopservices/Convert-License.md @@ -2,7 +2,7 @@ external help file: TSPSCmdlets.dll-Help.xml Module Name: RemoteDesktopServices ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/remotedesktopservices/convert-license?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remotedesktopservices/convert-license?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Convert-License --- diff --git a/docset/winserver2012r2-ps/scheduledtasks/Disable-ScheduledTask.md b/docset/winserver2012r2-ps/scheduledtasks/Disable-ScheduledTask.md index 18c1dd7403..ad012b0e8e 100644 --- a/docset/winserver2012r2-ps/scheduledtasks/Disable-ScheduledTask.md +++ b/docset/winserver2012r2-ps/scheduledtasks/Disable-ScheduledTask.md @@ -2,7 +2,7 @@ external help file: PS_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/disable-scheduledtask?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/disable-scheduledtask?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-ScheduledTask --- diff --git a/docset/winserver2012r2-ps/scheduledtasks/Enable-ScheduledTask.md b/docset/winserver2012r2-ps/scheduledtasks/Enable-ScheduledTask.md index 3fe9cf6dd3..22417777df 100644 --- a/docset/winserver2012r2-ps/scheduledtasks/Enable-ScheduledTask.md +++ b/docset/winserver2012r2-ps/scheduledtasks/Enable-ScheduledTask.md @@ -2,7 +2,7 @@ external help file: PS_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/enable-scheduledtask?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/enable-scheduledtask?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-ScheduledTask --- diff --git a/docset/winserver2012r2-ps/scheduledtasks/Export-ScheduledTask.md b/docset/winserver2012r2-ps/scheduledtasks/Export-ScheduledTask.md index fd57e5018c..52aaa0533d 100644 --- a/docset/winserver2012r2-ps/scheduledtasks/Export-ScheduledTask.md +++ b/docset/winserver2012r2-ps/scheduledtasks/Export-ScheduledTask.md @@ -2,7 +2,7 @@ external help file: PS_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/export-scheduledtask?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/export-scheduledtask?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-ScheduledTask --- diff --git a/docset/winserver2012r2-ps/scheduledtasks/Get-ClusteredScheduledTask.md b/docset/winserver2012r2-ps/scheduledtasks/Get-ClusteredScheduledTask.md index 67d57994af..54bc7381e6 100644 --- a/docset/winserver2012r2-ps/scheduledtasks/Get-ClusteredScheduledTask.md +++ b/docset/winserver2012r2-ps/scheduledtasks/Get-ClusteredScheduledTask.md @@ -2,7 +2,7 @@ external help file: PS_ClusteredScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/get-clusteredscheduledtask?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/get-clusteredscheduledtask?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusteredScheduledTask --- diff --git a/docset/winserver2012r2-ps/scheduledtasks/Get-ScheduledTask.md b/docset/winserver2012r2-ps/scheduledtasks/Get-ScheduledTask.md index d9e2a37094..def41e02cf 100644 --- a/docset/winserver2012r2-ps/scheduledtasks/Get-ScheduledTask.md +++ b/docset/winserver2012r2-ps/scheduledtasks/Get-ScheduledTask.md @@ -2,7 +2,7 @@ external help file: MSFT_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/get-scheduledtask?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/get-scheduledtask?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ScheduledTask --- diff --git a/docset/winserver2012r2-ps/scheduledtasks/Get-ScheduledTaskInfo.md b/docset/winserver2012r2-ps/scheduledtasks/Get-ScheduledTaskInfo.md index 7d453a398c..0d9a433611 100644 --- a/docset/winserver2012r2-ps/scheduledtasks/Get-ScheduledTaskInfo.md +++ b/docset/winserver2012r2-ps/scheduledtasks/Get-ScheduledTaskInfo.md @@ -2,7 +2,7 @@ external help file: PS_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/get-scheduledtaskinfo?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/get-scheduledtaskinfo?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ScheduledTaskInfo --- diff --git a/docset/winserver2012r2-ps/scheduledtasks/New-ScheduledTask.md b/docset/winserver2012r2-ps/scheduledtasks/New-ScheduledTask.md index 05bc5b484e..8298ac024f 100644 --- a/docset/winserver2012r2-ps/scheduledtasks/New-ScheduledTask.md +++ b/docset/winserver2012r2-ps/scheduledtasks/New-ScheduledTask.md @@ -2,7 +2,7 @@ external help file: PS_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/new-scheduledtask?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/new-scheduledtask?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ScheduledTask --- diff --git a/docset/winserver2012r2-ps/scheduledtasks/New-ScheduledTaskAction.md b/docset/winserver2012r2-ps/scheduledtasks/New-ScheduledTaskAction.md index b10e349211..3dd686a5a7 100644 --- a/docset/winserver2012r2-ps/scheduledtasks/New-ScheduledTaskAction.md +++ b/docset/winserver2012r2-ps/scheduledtasks/New-ScheduledTaskAction.md @@ -2,7 +2,7 @@ external help file: PS_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/new-scheduledtaskaction?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/new-scheduledtaskaction?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ScheduledTaskAction --- diff --git a/docset/winserver2012r2-ps/scheduledtasks/New-ScheduledTaskPrincipal.md b/docset/winserver2012r2-ps/scheduledtasks/New-ScheduledTaskPrincipal.md index 88b0d5d35e..a49ddbe898 100644 --- a/docset/winserver2012r2-ps/scheduledtasks/New-ScheduledTaskPrincipal.md +++ b/docset/winserver2012r2-ps/scheduledtasks/New-ScheduledTaskPrincipal.md @@ -2,7 +2,7 @@ external help file: PS_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/new-scheduledtaskprincipal?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/new-scheduledtaskprincipal?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ScheduledTaskPrincipal --- diff --git a/docset/winserver2012r2-ps/scheduledtasks/New-ScheduledTaskSettingsSet.md b/docset/winserver2012r2-ps/scheduledtasks/New-ScheduledTaskSettingsSet.md index af1488500e..ed66f54442 100644 --- a/docset/winserver2012r2-ps/scheduledtasks/New-ScheduledTaskSettingsSet.md +++ b/docset/winserver2012r2-ps/scheduledtasks/New-ScheduledTaskSettingsSet.md @@ -2,7 +2,7 @@ external help file: PS_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/new-scheduledtasksettingsset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/new-scheduledtasksettingsset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ScheduledTaskSettingsSet --- diff --git a/docset/winserver2012r2-ps/scheduledtasks/New-ScheduledTaskTrigger.md b/docset/winserver2012r2-ps/scheduledtasks/New-ScheduledTaskTrigger.md index 2127318e7d..12e2c51615 100644 --- a/docset/winserver2012r2-ps/scheduledtasks/New-ScheduledTaskTrigger.md +++ b/docset/winserver2012r2-ps/scheduledtasks/New-ScheduledTaskTrigger.md @@ -2,7 +2,7 @@ external help file: PSScheduledJobPrxy-help.xml Module Name: ScheduledTasks ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/new-scheduledtasktrigger?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/new-scheduledtasktrigger?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ScheduledTaskTrigger --- diff --git a/docset/winserver2012r2-ps/scheduledtasks/Register-ClusteredScheduledTask.md b/docset/winserver2012r2-ps/scheduledtasks/Register-ClusteredScheduledTask.md index 217fcaa1ce..75986ce9ca 100644 --- a/docset/winserver2012r2-ps/scheduledtasks/Register-ClusteredScheduledTask.md +++ b/docset/winserver2012r2-ps/scheduledtasks/Register-ClusteredScheduledTask.md @@ -2,7 +2,7 @@ external help file: PS_ClusteredScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/register-clusteredscheduledtask?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/register-clusteredscheduledtask?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Register-ClusteredScheduledTask --- diff --git a/docset/winserver2012r2-ps/scheduledtasks/Register-ScheduledTask.md b/docset/winserver2012r2-ps/scheduledtasks/Register-ScheduledTask.md index d58e2cc45d..21a4aa379f 100644 --- a/docset/winserver2012r2-ps/scheduledtasks/Register-ScheduledTask.md +++ b/docset/winserver2012r2-ps/scheduledtasks/Register-ScheduledTask.md @@ -2,7 +2,7 @@ external help file: PS_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/register-scheduledtask?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/register-scheduledtask?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Register-ScheduledTask --- diff --git a/docset/winserver2012r2-ps/scheduledtasks/Set-ClusteredScheduledTask.md b/docset/winserver2012r2-ps/scheduledtasks/Set-ClusteredScheduledTask.md index f6f31e9133..30ccfa363e 100644 --- a/docset/winserver2012r2-ps/scheduledtasks/Set-ClusteredScheduledTask.md +++ b/docset/winserver2012r2-ps/scheduledtasks/Set-ClusteredScheduledTask.md @@ -2,7 +2,7 @@ external help file: PS_ClusteredScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/set-clusteredscheduledtask?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/set-clusteredscheduledtask?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusteredScheduledTask --- diff --git a/docset/winserver2012r2-ps/scheduledtasks/Set-ScheduledTask.md b/docset/winserver2012r2-ps/scheduledtasks/Set-ScheduledTask.md index 4dc3626a7f..7914b953ae 100644 --- a/docset/winserver2012r2-ps/scheduledtasks/Set-ScheduledTask.md +++ b/docset/winserver2012r2-ps/scheduledtasks/Set-ScheduledTask.md @@ -2,7 +2,7 @@ external help file: PS_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/set-scheduledtask?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/set-scheduledtask?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ScheduledTask --- diff --git a/docset/winserver2012r2-ps/scheduledtasks/Start-ScheduledTask.md b/docset/winserver2012r2-ps/scheduledtasks/Start-ScheduledTask.md index c845d587e5..96dd9db0bf 100644 --- a/docset/winserver2012r2-ps/scheduledtasks/Start-ScheduledTask.md +++ b/docset/winserver2012r2-ps/scheduledtasks/Start-ScheduledTask.md @@ -2,7 +2,7 @@ external help file: PS_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/start-scheduledtask?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/start-scheduledtask?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-ScheduledTask --- diff --git a/docset/winserver2012r2-ps/scheduledtasks/Stop-ScheduledTask.md b/docset/winserver2012r2-ps/scheduledtasks/Stop-ScheduledTask.md index 58fe9da21f..e070d0a5da 100644 --- a/docset/winserver2012r2-ps/scheduledtasks/Stop-ScheduledTask.md +++ b/docset/winserver2012r2-ps/scheduledtasks/Stop-ScheduledTask.md @@ -2,7 +2,7 @@ external help file: PS_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/stop-scheduledtask?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/stop-scheduledtask?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-ScheduledTask --- diff --git a/docset/winserver2012r2-ps/scheduledtasks/Unregister-ClusteredScheduledTask.md b/docset/winserver2012r2-ps/scheduledtasks/Unregister-ClusteredScheduledTask.md index b2ac7bd498..1af36e389e 100644 --- a/docset/winserver2012r2-ps/scheduledtasks/Unregister-ClusteredScheduledTask.md +++ b/docset/winserver2012r2-ps/scheduledtasks/Unregister-ClusteredScheduledTask.md @@ -2,7 +2,7 @@ external help file: PS_ClusteredScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/unregister-clusteredscheduledtask?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/unregister-clusteredscheduledtask?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unregister-ClusteredScheduledTask --- diff --git a/docset/winserver2012r2-ps/scheduledtasks/Unregister-ScheduledTask.md b/docset/winserver2012r2-ps/scheduledtasks/Unregister-ScheduledTask.md index fdf4cc6cc3..fcdeb357ba 100644 --- a/docset/winserver2012r2-ps/scheduledtasks/Unregister-ScheduledTask.md +++ b/docset/winserver2012r2-ps/scheduledtasks/Unregister-ScheduledTask.md @@ -2,7 +2,7 @@ external help file: MSFT_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/unregister-scheduledtask?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/unregister-scheduledtask?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unregister-ScheduledTask --- diff --git a/docset/winserver2012r2-ps/secureboot/Confirm-SecureBootUEFI.md b/docset/winserver2012r2-ps/secureboot/Confirm-SecureBootUEFI.md index 54d8f725a6..dc3212b28e 100644 --- a/docset/winserver2012r2-ps/secureboot/Confirm-SecureBootUEFI.md +++ b/docset/winserver2012r2-ps/secureboot/Confirm-SecureBootUEFI.md @@ -2,7 +2,7 @@ external help file: Microsoft.SecureBoot.Commands.dll-Help.xml Module Name: SecureBoot ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/secureboot/confirm-securebootuefi?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/secureboot/confirm-securebootuefi?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Confirm-SecureBootUEFI --- diff --git a/docset/winserver2012r2-ps/secureboot/Format-SecureBootUEFI.md b/docset/winserver2012r2-ps/secureboot/Format-SecureBootUEFI.md index 4316ebc582..bb80ce60dc 100644 --- a/docset/winserver2012r2-ps/secureboot/Format-SecureBootUEFI.md +++ b/docset/winserver2012r2-ps/secureboot/Format-SecureBootUEFI.md @@ -2,7 +2,7 @@ external help file: Microsoft.SecureBoot.Commands.dll-Help.xml Module Name: SecureBoot ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/secureboot/format-securebootuefi?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/secureboot/format-securebootuefi?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Format-SecureBootUEFI --- diff --git a/docset/winserver2012r2-ps/secureboot/Get-SecureBootPolicy.md b/docset/winserver2012r2-ps/secureboot/Get-SecureBootPolicy.md index dd9c41491a..d8f2f02575 100644 --- a/docset/winserver2012r2-ps/secureboot/Get-SecureBootPolicy.md +++ b/docset/winserver2012r2-ps/secureboot/Get-SecureBootPolicy.md @@ -2,7 +2,7 @@ external help file: Microsoft.SecureBoot.Commands.dll-Help.xml Module Name: SecureBoot ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/secureboot/get-securebootpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/secureboot/get-securebootpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SecureBootPolicy --- diff --git a/docset/winserver2012r2-ps/secureboot/Get-SecureBootUEFI.md b/docset/winserver2012r2-ps/secureboot/Get-SecureBootUEFI.md index c2a87d6100..b507f6919e 100644 --- a/docset/winserver2012r2-ps/secureboot/Get-SecureBootUEFI.md +++ b/docset/winserver2012r2-ps/secureboot/Get-SecureBootUEFI.md @@ -2,7 +2,7 @@ external help file: Microsoft.SecureBoot.Commands.dll-Help.xml Module Name: SecureBoot ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/secureboot/get-securebootuefi?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/secureboot/get-securebootuefi?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SecureBootUEFI --- diff --git a/docset/winserver2012r2-ps/secureboot/Set-SecureBootUEFI.md b/docset/winserver2012r2-ps/secureboot/Set-SecureBootUEFI.md index 87693bb2c3..8fd1070fd8 100644 --- a/docset/winserver2012r2-ps/secureboot/Set-SecureBootUEFI.md +++ b/docset/winserver2012r2-ps/secureboot/Set-SecureBootUEFI.md @@ -2,7 +2,7 @@ external help file: Microsoft.SecureBoot.Commands.dll-Help.xml Module Name: SecureBoot ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/secureboot/set-securebootuefi?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/secureboot/set-securebootuefi?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SecureBootUEFI --- diff --git a/docset/winserver2012r2-ps/servercore/Get-DisplayResolution.md b/docset/winserver2012r2-ps/servercore/Get-DisplayResolution.md index 06b82b8b1d..744f8a68ed 100644 --- a/docset/winserver2012r2-ps/servercore/Get-DisplayResolution.md +++ b/docset/winserver2012r2-ps/servercore/Get-DisplayResolution.md @@ -2,7 +2,7 @@ external help file: ServerCore-help.xml Module Name: ServerCore ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/servercore/get-displayresolution?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servercore/get-displayresolution?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DisplayResolution --- diff --git a/docset/winserver2012r2-ps/servercore/Set-DisplayResolution.md b/docset/winserver2012r2-ps/servercore/Set-DisplayResolution.md index a0c98f4977..2ff5ce676c 100644 --- a/docset/winserver2012r2-ps/servercore/Set-DisplayResolution.md +++ b/docset/winserver2012r2-ps/servercore/Set-DisplayResolution.md @@ -2,7 +2,7 @@ external help file: ServerCore-help.xml Module Name: ServerCore ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/servercore/set-displayresolution?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servercore/set-displayresolution?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DisplayResolution --- diff --git a/docset/winserver2012r2-ps/servermanager/Disable-ServerManagerStandardUserRemoting.md b/docset/winserver2012r2-ps/servermanager/Disable-ServerManagerStandardUserRemoting.md index d0d4f4c168..031cc97e5f 100644 --- a/docset/winserver2012r2-ps/servermanager/Disable-ServerManagerStandardUserRemoting.md +++ b/docset/winserver2012r2-ps/servermanager/Disable-ServerManagerStandardUserRemoting.md @@ -2,7 +2,7 @@ external help file: ServerManager-help.xml Module Name: ServerManager ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/servermanager/disable-servermanagerstandarduserremoting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanager/disable-servermanagerstandarduserremoting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-ServerManagerStandardUserRemoting --- diff --git a/docset/winserver2012r2-ps/servermanager/Enable-ServerManagerStandardUserRemoting.md b/docset/winserver2012r2-ps/servermanager/Enable-ServerManagerStandardUserRemoting.md index 0377f955f8..442a4a0ecc 100644 --- a/docset/winserver2012r2-ps/servermanager/Enable-ServerManagerStandardUserRemoting.md +++ b/docset/winserver2012r2-ps/servermanager/Enable-ServerManagerStandardUserRemoting.md @@ -2,7 +2,7 @@ external help file: ServerManager-help.xml Module Name: ServerManager ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/servermanager/enable-servermanagerstandarduserremoting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanager/enable-servermanagerstandarduserremoting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-ServerManagerStandardUserRemoting --- diff --git a/docset/winserver2012r2-ps/servermanager/Get-WindowsFeature.md b/docset/winserver2012r2-ps/servermanager/Get-WindowsFeature.md index 3d4d2eb031..9c13a2f536 100644 --- a/docset/winserver2012r2-ps/servermanager/Get-WindowsFeature.md +++ b/docset/winserver2012r2-ps/servermanager/Get-WindowsFeature.md @@ -2,7 +2,7 @@ external help file: Microsoft.Windows.ServerManager.PowerShell.dll-Help.xml Module Name: ServerManager ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/servermanager/get-windowsfeature?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanager/get-windowsfeature?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WindowsFeature --- diff --git a/docset/winserver2012r2-ps/servermanager/Install-WindowsFeature.md b/docset/winserver2012r2-ps/servermanager/Install-WindowsFeature.md index 7ac9e94432..5a3adaa9ff 100644 --- a/docset/winserver2012r2-ps/servermanager/Install-WindowsFeature.md +++ b/docset/winserver2012r2-ps/servermanager/Install-WindowsFeature.md @@ -2,7 +2,7 @@ external help file: Microsoft.Windows.ServerManager.PowerShell.dll-Help.xml Module Name: ServerManager ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/servermanager/install-windowsfeature?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanager/install-windowsfeature?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-WindowsFeature --- diff --git a/docset/winserver2012r2-ps/servermanager/Uninstall-WindowsFeature.md b/docset/winserver2012r2-ps/servermanager/Uninstall-WindowsFeature.md index 988cb5311f..530387ea50 100644 --- a/docset/winserver2012r2-ps/servermanager/Uninstall-WindowsFeature.md +++ b/docset/winserver2012r2-ps/servermanager/Uninstall-WindowsFeature.md @@ -2,7 +2,7 @@ external help file: Microsoft.Windows.ServerManager.PowerShell.dll-Help.xml Module Name: ServerManager ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/servermanager/uninstall-windowsfeature?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanager/uninstall-windowsfeature?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-WindowsFeature --- diff --git a/docset/winserver2012r2-ps/servermanagertasks/Get-SMCounterSample.md b/docset/winserver2012r2-ps/servermanagertasks/Get-SMCounterSample.md index 18f675629d..12d112be73 100644 --- a/docset/winserver2012r2-ps/servermanagertasks/Get-SMCounterSample.md +++ b/docset/winserver2012r2-ps/servermanagertasks/Get-SMCounterSample.md @@ -2,7 +2,7 @@ external help file: ServerManagerTasks.cdxml-help.xml Module Name: ServerManagerTasks ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/servermanagertasks/get-smcountersample?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanagertasks/get-smcountersample?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SMCounterSample --- diff --git a/docset/winserver2012r2-ps/servermanagertasks/Get-SMPerformanceCollector.md b/docset/winserver2012r2-ps/servermanagertasks/Get-SMPerformanceCollector.md index 2f20e6654c..bd7ea5e5a9 100644 --- a/docset/winserver2012r2-ps/servermanagertasks/Get-SMPerformanceCollector.md +++ b/docset/winserver2012r2-ps/servermanagertasks/Get-SMPerformanceCollector.md @@ -2,7 +2,7 @@ external help file: ServerManagerTasks.cdxml-help.xml Module Name: ServerManagerTasks ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/servermanagertasks/get-smperformancecollector?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanagertasks/get-smperformancecollector?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SMPerformanceCollector --- diff --git a/docset/winserver2012r2-ps/servermanagertasks/Get-SMServerBpaResult.md b/docset/winserver2012r2-ps/servermanagertasks/Get-SMServerBpaResult.md index 321e6a3be0..6b900c0ef4 100644 --- a/docset/winserver2012r2-ps/servermanagertasks/Get-SMServerBpaResult.md +++ b/docset/winserver2012r2-ps/servermanagertasks/Get-SMServerBpaResult.md @@ -2,7 +2,7 @@ external help file: ServerManagerTasks.cdxml-help.xml Module Name: ServerManagerTasks ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/servermanagertasks/get-smserverbparesult?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanagertasks/get-smserverbparesult?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SMServerBpaResult --- diff --git a/docset/winserver2012r2-ps/servermanagertasks/Get-SMServerClusterName.md b/docset/winserver2012r2-ps/servermanagertasks/Get-SMServerClusterName.md index 171a07b861..06270cc768 100644 --- a/docset/winserver2012r2-ps/servermanagertasks/Get-SMServerClusterName.md +++ b/docset/winserver2012r2-ps/servermanagertasks/Get-SMServerClusterName.md @@ -2,7 +2,7 @@ external help file: ServerManagerTasks.cdxml-help.xml Module Name: ServerManagerTasks ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/servermanagertasks/get-smserverclustername?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanagertasks/get-smserverclustername?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SMServerClusterName --- diff --git a/docset/winserver2012r2-ps/servermanagertasks/Get-SMServerEvent.md b/docset/winserver2012r2-ps/servermanagertasks/Get-SMServerEvent.md index 1a99e24b5e..3ffe04949c 100644 --- a/docset/winserver2012r2-ps/servermanagertasks/Get-SMServerEvent.md +++ b/docset/winserver2012r2-ps/servermanagertasks/Get-SMServerEvent.md @@ -2,7 +2,7 @@ external help file: ServerManagerTasks.cdxml-help.xml Module Name: ServerManagerTasks ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/servermanagertasks/get-smserverevent?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanagertasks/get-smserverevent?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SMServerEvent --- diff --git a/docset/winserver2012r2-ps/servermanagertasks/Get-SMServerFeature.md b/docset/winserver2012r2-ps/servermanagertasks/Get-SMServerFeature.md index cad06e51f5..7514269259 100644 --- a/docset/winserver2012r2-ps/servermanagertasks/Get-SMServerFeature.md +++ b/docset/winserver2012r2-ps/servermanagertasks/Get-SMServerFeature.md @@ -2,7 +2,7 @@ external help file: ServerManagerTasks.cdxml-help.xml Module Name: ServerManagerTasks ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/servermanagertasks/get-smserverfeature?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanagertasks/get-smserverfeature?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SMServerFeature --- diff --git a/docset/winserver2012r2-ps/servermanagertasks/Get-SMServerInventory.md b/docset/winserver2012r2-ps/servermanagertasks/Get-SMServerInventory.md index 74b943156e..2a876ece65 100644 --- a/docset/winserver2012r2-ps/servermanagertasks/Get-SMServerInventory.md +++ b/docset/winserver2012r2-ps/servermanagertasks/Get-SMServerInventory.md @@ -2,7 +2,7 @@ external help file: ServerManagerTasks.cdxml-help.xml Module Name: ServerManagerTasks ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/servermanagertasks/get-smserverinventory?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanagertasks/get-smserverinventory?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SMServerInventory --- diff --git a/docset/winserver2012r2-ps/servermanagertasks/Get-SMServerService.md b/docset/winserver2012r2-ps/servermanagertasks/Get-SMServerService.md index 6dae33f5e4..1f34b4520f 100644 --- a/docset/winserver2012r2-ps/servermanagertasks/Get-SMServerService.md +++ b/docset/winserver2012r2-ps/servermanagertasks/Get-SMServerService.md @@ -2,7 +2,7 @@ external help file: ServerManagerTasks.cdxml-help.xml Module Name: ServerManagerTasks ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/servermanagertasks/get-smserverservice?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanagertasks/get-smserverservice?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SMServerService --- diff --git a/docset/winserver2012r2-ps/servermanagertasks/Remove-SMServerPerformanceLog.md b/docset/winserver2012r2-ps/servermanagertasks/Remove-SMServerPerformanceLog.md index e9a5db2d9d..7b48f02983 100644 --- a/docset/winserver2012r2-ps/servermanagertasks/Remove-SMServerPerformanceLog.md +++ b/docset/winserver2012r2-ps/servermanagertasks/Remove-SMServerPerformanceLog.md @@ -2,7 +2,7 @@ external help file: ServerManagerTasks.cdxml-help.xml Module Name: ServerManagerTasks ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/servermanagertasks/remove-smserverperformancelog?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanagertasks/remove-smserverperformancelog?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-SMServerPerformanceLog --- diff --git a/docset/winserver2012r2-ps/servermanagertasks/Start-SMPerformanceCollector.md b/docset/winserver2012r2-ps/servermanagertasks/Start-SMPerformanceCollector.md index 509671b318..e1c81f4ec2 100644 --- a/docset/winserver2012r2-ps/servermanagertasks/Start-SMPerformanceCollector.md +++ b/docset/winserver2012r2-ps/servermanagertasks/Start-SMPerformanceCollector.md @@ -2,7 +2,7 @@ external help file: ServerManagerTasks.cdxml-help.xml Module Name: ServerManagerTasks ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/servermanagertasks/start-smperformancecollector?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanagertasks/start-smperformancecollector?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-SMPerformanceCollector --- diff --git a/docset/winserver2012r2-ps/servermanagertasks/Stop-SMPerformanceCollector.md b/docset/winserver2012r2-ps/servermanagertasks/Stop-SMPerformanceCollector.md index baa8615f26..226de8f6ce 100644 --- a/docset/winserver2012r2-ps/servermanagertasks/Stop-SMPerformanceCollector.md +++ b/docset/winserver2012r2-ps/servermanagertasks/Stop-SMPerformanceCollector.md @@ -2,7 +2,7 @@ external help file: ServerManagerTasks.cdxml-help.xml Module Name: ServerManagerTasks ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/servermanagertasks/stop-smperformancecollector?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanagertasks/stop-smperformancecollector?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-SMPerformanceCollector --- diff --git a/docset/winserver2012r2-ps/servermigration/Export-SmigServerSetting.md b/docset/winserver2012r2-ps/servermigration/Export-SmigServerSetting.md index b24cfa9900..cf9b071e67 100644 --- a/docset/winserver2012r2-ps/servermigration/Export-SmigServerSetting.md +++ b/docset/winserver2012r2-ps/servermigration/Export-SmigServerSetting.md @@ -2,7 +2,7 @@ external help file: Microsoft.Windows.ServerManager.Migration.dll-Help.xml Module Name: ServerMigration ms.date: 12/06/2017 -online version: https://docs.microsoft.com/powershell/module/servermigration/export-smigserversetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermigration/export-smigserversetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-SmigServerSetting --- diff --git a/docset/winserver2012r2-ps/servermigration/Get-SmigServerFeature.md b/docset/winserver2012r2-ps/servermigration/Get-SmigServerFeature.md index 02e6ce639a..c4cb980397 100644 --- a/docset/winserver2012r2-ps/servermigration/Get-SmigServerFeature.md +++ b/docset/winserver2012r2-ps/servermigration/Get-SmigServerFeature.md @@ -2,7 +2,7 @@ external help file: Microsoft.Windows.ServerManager.Migration.dll-Help.xml Module Name: ServerMigration ms.date: 12/06/2017 -online version: https://docs.microsoft.com/powershell/module/servermigration/get-smigserverfeature?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermigration/get-smigserverfeature?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmigServerFeature --- diff --git a/docset/winserver2012r2-ps/servermigration/Import-SmigServerSetting.md b/docset/winserver2012r2-ps/servermigration/Import-SmigServerSetting.md index ee50ac7c69..431bb1688d 100644 --- a/docset/winserver2012r2-ps/servermigration/Import-SmigServerSetting.md +++ b/docset/winserver2012r2-ps/servermigration/Import-SmigServerSetting.md @@ -2,7 +2,7 @@ external help file: Microsoft.Windows.ServerManager.Migration.dll-Help.xml Module Name: ServerMigration ms.date: 04/29/2022 -online version: https://docs.microsoft.com/powershell/module/servermigration/import-smigserversetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermigration/import-smigserversetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-SmigServerSetting --- diff --git a/docset/winserver2012r2-ps/servermigration/Receive-SmigServerData.md b/docset/winserver2012r2-ps/servermigration/Receive-SmigServerData.md index 9cdf3708bb..4bc829e6ed 100644 --- a/docset/winserver2012r2-ps/servermigration/Receive-SmigServerData.md +++ b/docset/winserver2012r2-ps/servermigration/Receive-SmigServerData.md @@ -2,7 +2,7 @@ external help file: Microsoft.Windows.ServerManager.Migration.dll-Help.xml Module Name: ServerMigration ms.date: 12/06/2017 -online version: https://docs.microsoft.com/powershell/module/servermigration/receive-smigserverdata?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermigration/receive-smigserverdata?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Receive-SmigServerData --- diff --git a/docset/winserver2012r2-ps/servermigration/Send-SmigServerData.md b/docset/winserver2012r2-ps/servermigration/Send-SmigServerData.md index a92167c9c6..8d3bf981ed 100644 --- a/docset/winserver2012r2-ps/servermigration/Send-SmigServerData.md +++ b/docset/winserver2012r2-ps/servermigration/Send-SmigServerData.md @@ -2,7 +2,7 @@ external help file: Microsoft.Windows.ServerManager.Migration.dll-Help.xml Module Name: ServerMigration ms.date: 12/06/2017 -online version: https://docs.microsoft.com/powershell/module/servermigration/send-smigserverdata?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermigration/send-smigserverdata?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Send-SmigServerData --- diff --git a/docset/winserver2012r2-ps/smbshare/Block-SmbShareAccess.md b/docset/winserver2012r2-ps/smbshare/Block-SmbShareAccess.md index a988fbc022..19569189f6 100644 --- a/docset/winserver2012r2-ps/smbshare/Block-SmbShareAccess.md +++ b/docset/winserver2012r2-ps/smbshare/Block-SmbShareAccess.md @@ -2,7 +2,7 @@ external help file: SmbShare.cdxml-help.xml Module Name: SmbShare ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/smbshare/block-smbshareaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/block-smbshareaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Block-SmbShareAccess --- diff --git a/docset/winserver2012r2-ps/smbshare/Close-SmbOpenFile.md b/docset/winserver2012r2-ps/smbshare/Close-SmbOpenFile.md index 8e0ac5031a..05ff2c8c17 100644 --- a/docset/winserver2012r2-ps/smbshare/Close-SmbOpenFile.md +++ b/docset/winserver2012r2-ps/smbshare/Close-SmbOpenFile.md @@ -2,7 +2,7 @@ external help file: SmbOpenFile.cdxml-help.xml Module Name: SmbShare ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/smbshare/close-smbopenfile?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/close-smbopenfile?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Close-SmbOpenFile --- diff --git a/docset/winserver2012r2-ps/smbshare/Close-SmbSession.md b/docset/winserver2012r2-ps/smbshare/Close-SmbSession.md index bbcb23f105..e887592dd7 100644 --- a/docset/winserver2012r2-ps/smbshare/Close-SmbSession.md +++ b/docset/winserver2012r2-ps/smbshare/Close-SmbSession.md @@ -2,7 +2,7 @@ external help file: SmbSession.cdxml-help.xml Module Name: SmbShare ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/smbshare/close-smbsession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/close-smbsession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Close-SmbSession --- diff --git a/docset/winserver2012r2-ps/smbshare/Disable-SmbDelegation.md b/docset/winserver2012r2-ps/smbshare/Disable-SmbDelegation.md index b54c535b21..6d5c81cfd3 100644 --- a/docset/winserver2012r2-ps/smbshare/Disable-SmbDelegation.md +++ b/docset/winserver2012r2-ps/smbshare/Disable-SmbDelegation.md @@ -2,7 +2,7 @@ external help file: SmbScriptModule-help.xml Module Name: SmbShare ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/smbshare/disable-smbdelegation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/disable-smbdelegation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-SmbDelegation --- diff --git a/docset/winserver2012r2-ps/smbshare/Enable-SmbDelegation.md b/docset/winserver2012r2-ps/smbshare/Enable-SmbDelegation.md index a36f1ef19b..7e064c1713 100644 --- a/docset/winserver2012r2-ps/smbshare/Enable-SmbDelegation.md +++ b/docset/winserver2012r2-ps/smbshare/Enable-SmbDelegation.md @@ -2,7 +2,7 @@ external help file: SmbScriptModule-help.xml Module Name: SmbShare ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/smbshare/enable-smbdelegation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/enable-smbdelegation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-SmbDelegation --- diff --git a/docset/winserver2012r2-ps/smbshare/Get-SmbBandwidthLimit.md b/docset/winserver2012r2-ps/smbshare/Get-SmbBandwidthLimit.md index 1c3f72ef0e..c606085f4d 100644 --- a/docset/winserver2012r2-ps/smbshare/Get-SmbBandwidthLimit.md +++ b/docset/winserver2012r2-ps/smbshare/Get-SmbBandwidthLimit.md @@ -2,7 +2,7 @@ external help file: SmbBandwidthLimit.cdxml-help.xml Module Name: SmbShare ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbbandwidthlimit?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbbandwidthlimit?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbBandwidthLimit --- diff --git a/docset/winserver2012r2-ps/smbshare/Get-SmbClientConfiguration.md b/docset/winserver2012r2-ps/smbshare/Get-SmbClientConfiguration.md index 0477a6f550..df986b0f1c 100644 --- a/docset/winserver2012r2-ps/smbshare/Get-SmbClientConfiguration.md +++ b/docset/winserver2012r2-ps/smbshare/Get-SmbClientConfiguration.md @@ -2,7 +2,7 @@ external help file: SmbClientConfiguration.cdxml-help.xml Module Name: SmbShare ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbclientconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbclientconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbClientConfiguration --- diff --git a/docset/winserver2012r2-ps/smbshare/Get-SmbClientNetworkInterface.md b/docset/winserver2012r2-ps/smbshare/Get-SmbClientNetworkInterface.md index 3c065d8547..a94842f700 100644 --- a/docset/winserver2012r2-ps/smbshare/Get-SmbClientNetworkInterface.md +++ b/docset/winserver2012r2-ps/smbshare/Get-SmbClientNetworkInterface.md @@ -2,7 +2,7 @@ external help file: SmbClientNetworkInterface.cdxml-help.xml Module Name: SmbShare ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbclientnetworkinterface?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbclientnetworkinterface?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbClientNetworkInterface --- diff --git a/docset/winserver2012r2-ps/smbshare/Get-SmbConnection.md b/docset/winserver2012r2-ps/smbshare/Get-SmbConnection.md index af413e8364..e9a0cd687d 100644 --- a/docset/winserver2012r2-ps/smbshare/Get-SmbConnection.md +++ b/docset/winserver2012r2-ps/smbshare/Get-SmbConnection.md @@ -2,7 +2,7 @@ external help file: SmbConnection.cdxml-help.xml Module Name: SmbShare ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbconnection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbconnection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbConnection --- diff --git a/docset/winserver2012r2-ps/smbshare/Get-SmbDelegation.md b/docset/winserver2012r2-ps/smbshare/Get-SmbDelegation.md index 869b3a36cf..475679ae5e 100644 --- a/docset/winserver2012r2-ps/smbshare/Get-SmbDelegation.md +++ b/docset/winserver2012r2-ps/smbshare/Get-SmbDelegation.md @@ -2,7 +2,7 @@ external help file: SmbScriptModule-help.xml Module Name: SmbShare ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbdelegation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbdelegation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbDelegation --- diff --git a/docset/winserver2012r2-ps/smbshare/Get-SmbMapping.md b/docset/winserver2012r2-ps/smbshare/Get-SmbMapping.md index f59d6bd3fd..93280e25ec 100644 --- a/docset/winserver2012r2-ps/smbshare/Get-SmbMapping.md +++ b/docset/winserver2012r2-ps/smbshare/Get-SmbMapping.md @@ -2,7 +2,7 @@ external help file: SmbMapping.cdxml-help.xml Module Name: SmbShare ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbmapping?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbmapping?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbMapping --- diff --git a/docset/winserver2012r2-ps/smbshare/Get-SmbMultichannelConnection.md b/docset/winserver2012r2-ps/smbshare/Get-SmbMultichannelConnection.md index da78a6750b..aef2059ac4 100644 --- a/docset/winserver2012r2-ps/smbshare/Get-SmbMultichannelConnection.md +++ b/docset/winserver2012r2-ps/smbshare/Get-SmbMultichannelConnection.md @@ -2,7 +2,7 @@ external help file: SmbMultichannelConnection.cdxml-help.xml Module Name: SmbShare ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbmultichannelconnection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbmultichannelconnection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbMultichannelConnection --- diff --git a/docset/winserver2012r2-ps/smbshare/Get-SmbMultichannelConstraint.md b/docset/winserver2012r2-ps/smbshare/Get-SmbMultichannelConstraint.md index 5fe78984c7..9ad277abad 100644 --- a/docset/winserver2012r2-ps/smbshare/Get-SmbMultichannelConstraint.md +++ b/docset/winserver2012r2-ps/smbshare/Get-SmbMultichannelConstraint.md @@ -2,7 +2,7 @@ external help file: SmbMultichannelConstraint.cdxml-help.xml Module Name: SmbShare ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbmultichannelconstraint?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbmultichannelconstraint?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbMultichannelConstraint --- diff --git a/docset/winserver2012r2-ps/smbshare/Get-SmbOpenFile.md b/docset/winserver2012r2-ps/smbshare/Get-SmbOpenFile.md index 67f2041c19..0fa80467df 100644 --- a/docset/winserver2012r2-ps/smbshare/Get-SmbOpenFile.md +++ b/docset/winserver2012r2-ps/smbshare/Get-SmbOpenFile.md @@ -2,7 +2,7 @@ external help file: SmbOpenFile.cdxml-help.xml Module Name: SmbShare ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbopenfile?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbopenfile?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbOpenFile --- diff --git a/docset/winserver2012r2-ps/smbshare/Get-SmbServerConfiguration.md b/docset/winserver2012r2-ps/smbshare/Get-SmbServerConfiguration.md index c7160bdfe1..efce2daee3 100644 --- a/docset/winserver2012r2-ps/smbshare/Get-SmbServerConfiguration.md +++ b/docset/winserver2012r2-ps/smbshare/Get-SmbServerConfiguration.md @@ -2,7 +2,7 @@ external help file: SmbServerConfiguration.cdxml-help.xml Module Name: SmbShare ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbserverconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbserverconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbServerConfiguration --- diff --git a/docset/winserver2012r2-ps/smbshare/Get-SmbServerNetworkInterface.md b/docset/winserver2012r2-ps/smbshare/Get-SmbServerNetworkInterface.md index b26906d2c8..590056c69a 100644 --- a/docset/winserver2012r2-ps/smbshare/Get-SmbServerNetworkInterface.md +++ b/docset/winserver2012r2-ps/smbshare/Get-SmbServerNetworkInterface.md @@ -2,7 +2,7 @@ external help file: SmbServerNetworkInterface.cdxml-help.xml Module Name: SmbShare ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbservernetworkinterface?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbservernetworkinterface?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbServerNetworkInterface --- diff --git a/docset/winserver2012r2-ps/smbshare/Get-SmbSession.md b/docset/winserver2012r2-ps/smbshare/Get-SmbSession.md index 4117ef61ff..0015de32ca 100644 --- a/docset/winserver2012r2-ps/smbshare/Get-SmbSession.md +++ b/docset/winserver2012r2-ps/smbshare/Get-SmbSession.md @@ -2,7 +2,7 @@ external help file: SmbSession.cdxml-help.xml Module Name: SmbShare ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbsession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbsession?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbSession --- diff --git a/docset/winserver2012r2-ps/smbshare/Get-SmbShare.md b/docset/winserver2012r2-ps/smbshare/Get-SmbShare.md index dc89de3ef9..7b5186d5c8 100644 --- a/docset/winserver2012r2-ps/smbshare/Get-SmbShare.md +++ b/docset/winserver2012r2-ps/smbshare/Get-SmbShare.md @@ -2,7 +2,7 @@ external help file: SmbShare.cdxml-help.xml Module Name: SmbShare ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbshare?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbshare?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbShare --- diff --git a/docset/winserver2012r2-ps/smbshare/Get-SmbShareAccess.md b/docset/winserver2012r2-ps/smbshare/Get-SmbShareAccess.md index cf159574db..536d504c09 100644 --- a/docset/winserver2012r2-ps/smbshare/Get-SmbShareAccess.md +++ b/docset/winserver2012r2-ps/smbshare/Get-SmbShareAccess.md @@ -2,7 +2,7 @@ external help file: SmbShare.cdxml-help.xml Module Name: SmbShare ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbshareaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbshareaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbShareAccess --- diff --git a/docset/winserver2012r2-ps/smbshare/Grant-SmbShareAccess.md b/docset/winserver2012r2-ps/smbshare/Grant-SmbShareAccess.md index c4a79bd8e3..86813bc624 100644 --- a/docset/winserver2012r2-ps/smbshare/Grant-SmbShareAccess.md +++ b/docset/winserver2012r2-ps/smbshare/Grant-SmbShareAccess.md @@ -2,7 +2,7 @@ external help file: SmbShare.cdxml-help.xml Module Name: SmbShare ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/smbshare/grant-smbshareaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/grant-smbshareaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Grant-SmbShareAccess --- diff --git a/docset/winserver2012r2-ps/smbshare/New-SmbMapping.md b/docset/winserver2012r2-ps/smbshare/New-SmbMapping.md index 0371a3dd09..60c769004d 100644 --- a/docset/winserver2012r2-ps/smbshare/New-SmbMapping.md +++ b/docset/winserver2012r2-ps/smbshare/New-SmbMapping.md @@ -2,7 +2,7 @@ external help file: SmbMapping.cdxml-help.xml Module Name: SmbShare ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/smbshare/new-smbmapping?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/new-smbmapping?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-SmbMapping --- diff --git a/docset/winserver2012r2-ps/smbshare/New-SmbMultichannelConstraint.md b/docset/winserver2012r2-ps/smbshare/New-SmbMultichannelConstraint.md index c71808e137..e2a484ef16 100644 --- a/docset/winserver2012r2-ps/smbshare/New-SmbMultichannelConstraint.md +++ b/docset/winserver2012r2-ps/smbshare/New-SmbMultichannelConstraint.md @@ -2,7 +2,7 @@ external help file: SmbMultichannelConstraint.cdxml-help.xml Module Name: SmbShare ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/smbshare/new-smbmultichannelconstraint?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/new-smbmultichannelconstraint?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-SmbMultichannelConstraint --- diff --git a/docset/winserver2012r2-ps/smbshare/New-SmbShare.md b/docset/winserver2012r2-ps/smbshare/New-SmbShare.md index b5aea12aa4..dfe4395030 100644 --- a/docset/winserver2012r2-ps/smbshare/New-SmbShare.md +++ b/docset/winserver2012r2-ps/smbshare/New-SmbShare.md @@ -2,7 +2,7 @@ external help file: SmbShare.cdxml-help.xml Module Name: SmbShare ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/smbshare/new-smbshare?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/new-smbshare?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-SmbShare --- diff --git a/docset/winserver2012r2-ps/smbshare/Remove-SmbBandwidthLimit.md b/docset/winserver2012r2-ps/smbshare/Remove-SmbBandwidthLimit.md index c25ad74258..843d90e14b 100644 --- a/docset/winserver2012r2-ps/smbshare/Remove-SmbBandwidthLimit.md +++ b/docset/winserver2012r2-ps/smbshare/Remove-SmbBandwidthLimit.md @@ -2,7 +2,7 @@ external help file: SmbBandwidthLimit.cdxml-help.xml Module Name: SmbShare ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/smbshare/remove-smbbandwidthlimit?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/remove-smbbandwidthlimit?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-SmbBandwidthLimit --- diff --git a/docset/winserver2012r2-ps/smbshare/Remove-SmbMapping.md b/docset/winserver2012r2-ps/smbshare/Remove-SmbMapping.md index bb7b393d78..92eace57ef 100644 --- a/docset/winserver2012r2-ps/smbshare/Remove-SmbMapping.md +++ b/docset/winserver2012r2-ps/smbshare/Remove-SmbMapping.md @@ -2,7 +2,7 @@ external help file: SmbMapping.cdxml-help.xml Module Name: SmbShare ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/smbshare/remove-smbmapping?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/remove-smbmapping?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-SmbMapping --- diff --git a/docset/winserver2012r2-ps/smbshare/Remove-SmbMultichannelConstraint.md b/docset/winserver2012r2-ps/smbshare/Remove-SmbMultichannelConstraint.md index b7d0b00e97..3be3d9f627 100644 --- a/docset/winserver2012r2-ps/smbshare/Remove-SmbMultichannelConstraint.md +++ b/docset/winserver2012r2-ps/smbshare/Remove-SmbMultichannelConstraint.md @@ -2,7 +2,7 @@ external help file: SmbMultichannelConstraint.cdxml-help.xml Module Name: SmbShare ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/smbshare/remove-smbmultichannelconstraint?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/remove-smbmultichannelconstraint?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-SmbMultichannelConstraint --- diff --git a/docset/winserver2012r2-ps/smbshare/Remove-SmbShare.md b/docset/winserver2012r2-ps/smbshare/Remove-SmbShare.md index c97096d114..ac28e5eb03 100644 --- a/docset/winserver2012r2-ps/smbshare/Remove-SmbShare.md +++ b/docset/winserver2012r2-ps/smbshare/Remove-SmbShare.md @@ -2,7 +2,7 @@ external help file: SmbShare.cdxml-help.xml Module Name: SmbShare ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/smbshare/remove-smbshare?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/remove-smbshare?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-SmbShare --- diff --git a/docset/winserver2012r2-ps/smbshare/Revoke-SmbShareAccess.md b/docset/winserver2012r2-ps/smbshare/Revoke-SmbShareAccess.md index ade59d9c31..232aafcda7 100644 --- a/docset/winserver2012r2-ps/smbshare/Revoke-SmbShareAccess.md +++ b/docset/winserver2012r2-ps/smbshare/Revoke-SmbShareAccess.md @@ -2,7 +2,7 @@ external help file: SmbShare.cdxml-help.xml Module Name: SmbShare ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/smbshare/revoke-smbshareaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/revoke-smbshareaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Revoke-SmbShareAccess --- diff --git a/docset/winserver2012r2-ps/smbshare/Set-SmbBandwidthLimit.md b/docset/winserver2012r2-ps/smbshare/Set-SmbBandwidthLimit.md index da0b66efd6..1b118b25c7 100644 --- a/docset/winserver2012r2-ps/smbshare/Set-SmbBandwidthLimit.md +++ b/docset/winserver2012r2-ps/smbshare/Set-SmbBandwidthLimit.md @@ -2,7 +2,7 @@ external help file: SmbBandwidthLimit.cdxml-help.xml Module Name: SmbShare ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/smbshare/set-smbbandwidthlimit?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/set-smbbandwidthlimit?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SmbBandwidthLimit --- diff --git a/docset/winserver2012r2-ps/smbshare/Set-SmbClientConfiguration.md b/docset/winserver2012r2-ps/smbshare/Set-SmbClientConfiguration.md index 82b7659018..5b44bbe936 100644 --- a/docset/winserver2012r2-ps/smbshare/Set-SmbClientConfiguration.md +++ b/docset/winserver2012r2-ps/smbshare/Set-SmbClientConfiguration.md @@ -2,7 +2,7 @@ external help file: SmbClientConfiguration.cdxml-help.xml Module Name: SmbShare ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/smbshare/set-smbclientconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/set-smbclientconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SmbClientConfiguration --- diff --git a/docset/winserver2012r2-ps/smbshare/Set-SmbPathAcl.md b/docset/winserver2012r2-ps/smbshare/Set-SmbPathAcl.md index e8b1eba2cf..e2c0ce9bfd 100644 --- a/docset/winserver2012r2-ps/smbshare/Set-SmbPathAcl.md +++ b/docset/winserver2012r2-ps/smbshare/Set-SmbPathAcl.md @@ -2,7 +2,7 @@ external help file: SmbScriptModule-help.xml Module Name: SmbShare ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/smbshare/set-smbpathacl?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/set-smbpathacl?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SmbPathAcl --- diff --git a/docset/winserver2012r2-ps/smbshare/Set-SmbServerConfiguration.md b/docset/winserver2012r2-ps/smbshare/Set-SmbServerConfiguration.md index 92c305175c..50c4058296 100644 --- a/docset/winserver2012r2-ps/smbshare/Set-SmbServerConfiguration.md +++ b/docset/winserver2012r2-ps/smbshare/Set-SmbServerConfiguration.md @@ -2,7 +2,7 @@ external help file: SmbServerConfiguration.cdxml-help.xml Module Name: SmbShare ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/smbshare/set-smbserverconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/set-smbserverconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SmbServerConfiguration --- diff --git a/docset/winserver2012r2-ps/smbshare/Set-SmbShare.md b/docset/winserver2012r2-ps/smbshare/Set-SmbShare.md index cc457e256a..a9d66d0f90 100644 --- a/docset/winserver2012r2-ps/smbshare/Set-SmbShare.md +++ b/docset/winserver2012r2-ps/smbshare/Set-SmbShare.md @@ -2,7 +2,7 @@ external help file: SmbShare.cdxml-help.xml Module Name: SmbShare ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/smbshare/set-smbshare?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/set-smbshare?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SmbShare --- diff --git a/docset/winserver2012r2-ps/smbshare/Unblock-SmbShareAccess.md b/docset/winserver2012r2-ps/smbshare/Unblock-SmbShareAccess.md index 2bdb6d642d..2eede3b72b 100644 --- a/docset/winserver2012r2-ps/smbshare/Unblock-SmbShareAccess.md +++ b/docset/winserver2012r2-ps/smbshare/Unblock-SmbShareAccess.md @@ -2,7 +2,7 @@ external help file: SmbShare.cdxml-help.xml Module Name: SmbShare ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/smbshare/unblock-smbshareaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/unblock-smbshareaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unblock-SmbShareAccess --- diff --git a/docset/winserver2012r2-ps/smbshare/Update-SmbMultichannelConnection.md b/docset/winserver2012r2-ps/smbshare/Update-SmbMultichannelConnection.md index d923e52f18..cd9eb4f872 100644 --- a/docset/winserver2012r2-ps/smbshare/Update-SmbMultichannelConnection.md +++ b/docset/winserver2012r2-ps/smbshare/Update-SmbMultichannelConnection.md @@ -2,7 +2,7 @@ external help file: SmbMultichannelConnection.cdxml-help.xml Module Name: SmbShare ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/smbshare/update-smbmultichannelconnection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/update-smbmultichannelconnection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-SmbMultichannelConnection --- diff --git a/docset/winserver2012r2-ps/smbwitness/Get-SmbWitnessClient.md b/docset/winserver2012r2-ps/smbwitness/Get-SmbWitnessClient.md index 3e3ebcc5c9..1540f7c48a 100644 --- a/docset/winserver2012r2-ps/smbwitness/Get-SmbWitnessClient.md +++ b/docset/winserver2012r2-ps/smbwitness/Get-SmbWitnessClient.md @@ -2,7 +2,7 @@ external help file: SmbWitnessWmiClient.cdxml-help.xml Module Name: SmbWitness ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/smbwitness/get-smbwitnessclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbwitness/get-smbwitnessclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbWitnessClient --- diff --git a/docset/winserver2012r2-ps/smbwitness/Move-SmbWitnessClient.md b/docset/winserver2012r2-ps/smbwitness/Move-SmbWitnessClient.md index 601da22937..b3ae9e84a0 100644 --- a/docset/winserver2012r2-ps/smbwitness/Move-SmbWitnessClient.md +++ b/docset/winserver2012r2-ps/smbwitness/Move-SmbWitnessClient.md @@ -2,7 +2,7 @@ external help file: SmbWitnessWmiClient.cdxml-help.xml Module Name: SmbWitness ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/smbwitness/move-smbwitnessclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbwitness/move-smbwitnessclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-SmbWitnessClient --- diff --git a/docset/winserver2012r2-ps/smisconfig/Register-SmisProvider.md b/docset/winserver2012r2-ps/smisconfig/Register-SmisProvider.md index 4a9b12f3f3..973e2f505c 100644 --- a/docset/winserver2012r2-ps/smisconfig/Register-SmisProvider.md +++ b/docset/winserver2012r2-ps/smisconfig/Register-SmisProvider.md @@ -2,7 +2,7 @@ external help file: Microsoft.Windows.StorageManagementService.Configuration.Cmdlets.dll-Help.xml Module Name: SMISConfig ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/smisconfig/register-smisprovider?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smisconfig/register-smisprovider?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Register-SmisProvider --- diff --git a/docset/winserver2012r2-ps/smisconfig/Search-SmisProvider.md b/docset/winserver2012r2-ps/smisconfig/Search-SmisProvider.md index ae85a743a4..3cc732d1a9 100644 --- a/docset/winserver2012r2-ps/smisconfig/Search-SmisProvider.md +++ b/docset/winserver2012r2-ps/smisconfig/Search-SmisProvider.md @@ -2,7 +2,7 @@ external help file: PS_SmisProvider_v1.0.cdxml-help.xml Module Name: SMISConfig ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/smisconfig/search-smisprovider?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smisconfig/search-smisprovider?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Search-SmisProvider --- diff --git a/docset/winserver2012r2-ps/smisconfig/Unregister-SmisProvider.md b/docset/winserver2012r2-ps/smisconfig/Unregister-SmisProvider.md index ee2f278192..7765b999a6 100644 --- a/docset/winserver2012r2-ps/smisconfig/Unregister-SmisProvider.md +++ b/docset/winserver2012r2-ps/smisconfig/Unregister-SmisProvider.md @@ -2,7 +2,7 @@ external help file: PS_SmisProvider_v1.0.cdxml-help.xml Module Name: SMISConfig ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/smisconfig/unregister-smisprovider?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smisconfig/unregister-smisprovider?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unregister-SmisProvider --- diff --git a/docset/winserver2012r2-ps/softwareinventorylogging/Get-SilComputer.md b/docset/winserver2012r2-ps/softwareinventorylogging/Get-SilComputer.md index 2357e84d57..70717782c8 100644 --- a/docset/winserver2012r2-ps/softwareinventorylogging/Get-SilComputer.md +++ b/docset/winserver2012r2-ps/softwareinventorylogging/Get-SilComputer.md @@ -2,7 +2,7 @@ external help file: MsftSil_Computer.cdxml-help.xml Module Name: SoftwareInventoryLogging ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/softwareinventorylogging/get-silcomputer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/softwareinventorylogging/get-silcomputer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SilComputer --- diff --git a/docset/winserver2012r2-ps/softwareinventorylogging/Get-SilComputerIdentity.md b/docset/winserver2012r2-ps/softwareinventorylogging/Get-SilComputerIdentity.md index 3c012bf368..0be52b2828 100644 --- a/docset/winserver2012r2-ps/softwareinventorylogging/Get-SilComputerIdentity.md +++ b/docset/winserver2012r2-ps/softwareinventorylogging/Get-SilComputerIdentity.md @@ -2,7 +2,7 @@ external help file: MsftSil_ComputerIdentity.cdxml-help.xml Module Name: SoftwareInventoryLogging ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/softwareinventorylogging/get-silcomputeridentity?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/softwareinventorylogging/get-silcomputeridentity?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SilComputerIdentity --- diff --git a/docset/winserver2012r2-ps/softwareinventorylogging/Get-SilData.md b/docset/winserver2012r2-ps/softwareinventorylogging/Get-SilData.md index 0416c0d082..45e634b2d3 100644 --- a/docset/winserver2012r2-ps/softwareinventorylogging/Get-SilData.md +++ b/docset/winserver2012r2-ps/softwareinventorylogging/Get-SilData.md @@ -2,7 +2,7 @@ external help file: Msft_MiStreamTasks.cdxml-help.xml Module Name: SoftwareInventoryLogging ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/softwareinventorylogging/get-sildata?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/softwareinventorylogging/get-sildata?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SilData --- diff --git a/docset/winserver2012r2-ps/softwareinventorylogging/Get-SilLogging.md b/docset/winserver2012r2-ps/softwareinventorylogging/Get-SilLogging.md index 41cf1fee4b..12a253ccb0 100644 --- a/docset/winserver2012r2-ps/softwareinventorylogging/Get-SilLogging.md +++ b/docset/winserver2012r2-ps/softwareinventorylogging/Get-SilLogging.md @@ -2,7 +2,7 @@ external help file: MsftSil_ManagementTasks-help.xml Module Name: SoftwareInventoryLogging ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/softwareinventorylogging/get-sillogging?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/softwareinventorylogging/get-sillogging?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SilLogging --- diff --git a/docset/winserver2012r2-ps/softwareinventorylogging/Get-SilSoftware.md b/docset/winserver2012r2-ps/softwareinventorylogging/Get-SilSoftware.md index 1401face7c..65f8cce8f4 100644 --- a/docset/winserver2012r2-ps/softwareinventorylogging/Get-SilSoftware.md +++ b/docset/winserver2012r2-ps/softwareinventorylogging/Get-SilSoftware.md @@ -2,7 +2,7 @@ external help file: MsftSil_Software.cdxml-help.xml Module Name: SoftwareInventoryLogging ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/softwareinventorylogging/get-silsoftware?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/softwareinventorylogging/get-silsoftware?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SilSoftware --- diff --git a/docset/winserver2012r2-ps/softwareinventorylogging/Get-SilUalAccess.md b/docset/winserver2012r2-ps/softwareinventorylogging/Get-SilUalAccess.md index f8aee61388..a2e9718ea8 100644 --- a/docset/winserver2012r2-ps/softwareinventorylogging/Get-SilUalAccess.md +++ b/docset/winserver2012r2-ps/softwareinventorylogging/Get-SilUalAccess.md @@ -2,7 +2,7 @@ external help file: MsftSil_UalAccess.cdxml-help.xml Module Name: SoftwareInventoryLogging ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/softwareinventorylogging/get-silualaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/softwareinventorylogging/get-silualaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SilUalAccess --- diff --git a/docset/winserver2012r2-ps/softwareinventorylogging/Get-SilWindowsUpdate.md b/docset/winserver2012r2-ps/softwareinventorylogging/Get-SilWindowsUpdate.md index 1d06e28a00..4795b6aab3 100644 --- a/docset/winserver2012r2-ps/softwareinventorylogging/Get-SilWindowsUpdate.md +++ b/docset/winserver2012r2-ps/softwareinventorylogging/Get-SilWindowsUpdate.md @@ -2,7 +2,7 @@ external help file: MsftSil_WindowsUpdate.cdxml-help.xml Module Name: SoftwareInventoryLogging ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/softwareinventorylogging/get-silwindowsupdate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/softwareinventorylogging/get-silwindowsupdate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SilWindowsUpdate --- diff --git a/docset/winserver2012r2-ps/softwareinventorylogging/Publish-SilData.md b/docset/winserver2012r2-ps/softwareinventorylogging/Publish-SilData.md index 8ee0512273..70c8599296 100644 --- a/docset/winserver2012r2-ps/softwareinventorylogging/Publish-SilData.md +++ b/docset/winserver2012r2-ps/softwareinventorylogging/Publish-SilData.md @@ -2,7 +2,7 @@ external help file: Msft_MiStreamTasks.cdxml-help.xml Module Name: SoftwareInventoryLogging ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/softwareinventorylogging/publish-sildata?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/softwareinventorylogging/publish-sildata?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Publish-SilData --- diff --git a/docset/winserver2012r2-ps/softwareinventorylogging/Set-SilLogging.md b/docset/winserver2012r2-ps/softwareinventorylogging/Set-SilLogging.md index d06e10d31d..c4c216887c 100644 --- a/docset/winserver2012r2-ps/softwareinventorylogging/Set-SilLogging.md +++ b/docset/winserver2012r2-ps/softwareinventorylogging/Set-SilLogging.md @@ -2,7 +2,7 @@ external help file: MsftSil_ManagementTasks-help.xml Module Name: SoftwareInventoryLogging ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/softwareinventorylogging/set-sillogging?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/softwareinventorylogging/set-sillogging?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SilLogging --- diff --git a/docset/winserver2012r2-ps/softwareinventorylogging/Start-SilLogging.md b/docset/winserver2012r2-ps/softwareinventorylogging/Start-SilLogging.md index 4b80c2d594..917aecf3e8 100644 --- a/docset/winserver2012r2-ps/softwareinventorylogging/Start-SilLogging.md +++ b/docset/winserver2012r2-ps/softwareinventorylogging/Start-SilLogging.md @@ -2,7 +2,7 @@ external help file: MsftSil_ManagementTasks-help.xml Module Name: SoftwareInventoryLogging ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/softwareinventorylogging/start-sillogging?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/softwareinventorylogging/start-sillogging?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-SilLogging --- diff --git a/docset/winserver2012r2-ps/softwareinventorylogging/Stop-SilLogging.md b/docset/winserver2012r2-ps/softwareinventorylogging/Stop-SilLogging.md index d4c3ec767d..1400b1f85e 100644 --- a/docset/winserver2012r2-ps/softwareinventorylogging/Stop-SilLogging.md +++ b/docset/winserver2012r2-ps/softwareinventorylogging/Stop-SilLogging.md @@ -2,7 +2,7 @@ external help file: MsftSil_ManagementTasks-help.xml Module Name: SoftwareInventoryLogging ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/softwareinventorylogging/stop-sillogging?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/softwareinventorylogging/stop-sillogging?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-SilLogging --- diff --git a/docset/winserver2012r2-ps/startscreen/Export-StartLayout.md b/docset/winserver2012r2-ps/startscreen/Export-StartLayout.md index 81a6bdd73c..25482ecacc 100644 --- a/docset/winserver2012r2-ps/startscreen/Export-StartLayout.md +++ b/docset/winserver2012r2-ps/startscreen/Export-StartLayout.md @@ -2,7 +2,7 @@ external help file: Microsoft.Windows.StartScreen.Commands.dll-Help.xml Module Name: StartScreen ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/startscreen/export-startlayout?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/startscreen/export-startlayout?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-StartLayout --- diff --git a/docset/winserver2012r2-ps/startscreen/Get-StartApps.md b/docset/winserver2012r2-ps/startscreen/Get-StartApps.md index ca355e850a..e2518d13c4 100644 --- a/docset/winserver2012r2-ps/startscreen/Get-StartApps.md +++ b/docset/winserver2012r2-ps/startscreen/Get-StartApps.md @@ -2,7 +2,7 @@ external help file: Microsoft.Windows.StartScreen.Commands.dll-help.xml Module Name: StartScreen ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/startscreen/get-startapps?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/startscreen/get-startapps?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StartApps --- diff --git a/docset/winserver2012r2-ps/startscreen/Import-StartLayout.md b/docset/winserver2012r2-ps/startscreen/Import-StartLayout.md index e58279ebbe..a02e155795 100644 --- a/docset/winserver2012r2-ps/startscreen/Import-StartLayout.md +++ b/docset/winserver2012r2-ps/startscreen/Import-StartLayout.md @@ -2,7 +2,7 @@ external help file: Microsoft.Windows.StartScreen.Commands.dll-Help.xml Module Name: StartScreen ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/startscreen/import-startlayout?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/startscreen/import-startlayout?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-StartLayout --- diff --git a/docset/winserver2012r2-ps/storage/Add-InitiatorIdToMaskingSet.md b/docset/winserver2012r2-ps/storage/Add-InitiatorIdToMaskingSet.md index 231895cbc3..3b43e5ef02 100644 --- a/docset/winserver2012r2-ps/storage/Add-InitiatorIdToMaskingSet.md +++ b/docset/winserver2012r2-ps/storage/Add-InitiatorIdToMaskingSet.md @@ -2,7 +2,7 @@ external help file: MaskingSet.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/add-initiatoridtomaskingset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/add-initiatoridtomaskingset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-InitiatorIdToMaskingSet --- diff --git a/docset/winserver2012r2-ps/storage/Add-PartitionAccessPath.md b/docset/winserver2012r2-ps/storage/Add-PartitionAccessPath.md index 1edf629fe6..c31f11fb95 100644 --- a/docset/winserver2012r2-ps/storage/Add-PartitionAccessPath.md +++ b/docset/winserver2012r2-ps/storage/Add-PartitionAccessPath.md @@ -2,7 +2,7 @@ external help file: Partition.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/add-partitionaccesspath?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/add-partitionaccesspath?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-PartitionAccessPath --- diff --git a/docset/winserver2012r2-ps/storage/Add-PhysicalDisk.md b/docset/winserver2012r2-ps/storage/Add-PhysicalDisk.md index 72cecd763a..d067802dbe 100644 --- a/docset/winserver2012r2-ps/storage/Add-PhysicalDisk.md +++ b/docset/winserver2012r2-ps/storage/Add-PhysicalDisk.md @@ -2,7 +2,7 @@ external help file: StorageCmdlets.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/add-physicaldisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/add-physicaldisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-PhysicalDisk --- diff --git a/docset/winserver2012r2-ps/storage/Add-TargetPortToMaskingSet.md b/docset/winserver2012r2-ps/storage/Add-TargetPortToMaskingSet.md index 2045f00881..6f0eb3bab5 100644 --- a/docset/winserver2012r2-ps/storage/Add-TargetPortToMaskingSet.md +++ b/docset/winserver2012r2-ps/storage/Add-TargetPortToMaskingSet.md @@ -2,7 +2,7 @@ external help file: MaskingSet.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/add-targetporttomaskingset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/add-targetporttomaskingset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-TargetPortToMaskingSet --- diff --git a/docset/winserver2012r2-ps/storage/Add-VirtualDiskToMaskingSet.md b/docset/winserver2012r2-ps/storage/Add-VirtualDiskToMaskingSet.md index c7ee3cf12a..aabf776d66 100644 --- a/docset/winserver2012r2-ps/storage/Add-VirtualDiskToMaskingSet.md +++ b/docset/winserver2012r2-ps/storage/Add-VirtualDiskToMaskingSet.md @@ -2,7 +2,7 @@ external help file: MaskingSet.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/add-virtualdisktomaskingset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/add-virtualdisktomaskingset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VirtualDiskToMaskingSet --- diff --git a/docset/winserver2012r2-ps/storage/Clear-Disk.md b/docset/winserver2012r2-ps/storage/Clear-Disk.md index c1fa9a5993..8e1bf101c8 100644 --- a/docset/winserver2012r2-ps/storage/Clear-Disk.md +++ b/docset/winserver2012r2-ps/storage/Clear-Disk.md @@ -2,7 +2,7 @@ external help file: Disk.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/clear-disk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/clear-disk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-Disk --- diff --git a/docset/winserver2012r2-ps/storage/Clear-FileStorageTier.md b/docset/winserver2012r2-ps/storage/Clear-FileStorageTier.md index 5ad09cce39..0bcfa68071 100644 --- a/docset/winserver2012r2-ps/storage/Clear-FileStorageTier.md +++ b/docset/winserver2012r2-ps/storage/Clear-FileStorageTier.md @@ -2,7 +2,7 @@ external help file: FileStorageTier.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/clear-filestoragetier?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/clear-filestoragetier?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-FileStorageTier --- diff --git a/docset/winserver2012r2-ps/storage/Connect-VirtualDisk.md b/docset/winserver2012r2-ps/storage/Connect-VirtualDisk.md index 8b884906be..ae2be2e8d4 100644 --- a/docset/winserver2012r2-ps/storage/Connect-VirtualDisk.md +++ b/docset/winserver2012r2-ps/storage/Connect-VirtualDisk.md @@ -2,7 +2,7 @@ external help file: VirtualDisk.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/connect-virtualdisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/connect-virtualdisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Connect-VirtualDisk --- diff --git a/docset/winserver2012r2-ps/storage/Disable-PhysicalDiskIndication.md b/docset/winserver2012r2-ps/storage/Disable-PhysicalDiskIndication.md index 9b4b3d7945..0ea5879570 100644 --- a/docset/winserver2012r2-ps/storage/Disable-PhysicalDiskIndication.md +++ b/docset/winserver2012r2-ps/storage/Disable-PhysicalDiskIndication.md @@ -2,7 +2,7 @@ external help file: PhysicalDisk.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/disable-physicaldiskindication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/disable-physicaldiskindication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-PhysicalDiskIndication --- diff --git a/docset/winserver2012r2-ps/storage/Disable-StorageEnclosureIdentification.md b/docset/winserver2012r2-ps/storage/Disable-StorageEnclosureIdentification.md index 4b4cc0acb3..a2da56af2a 100644 --- a/docset/winserver2012r2-ps/storage/Disable-StorageEnclosureIdentification.md +++ b/docset/winserver2012r2-ps/storage/Disable-StorageEnclosureIdentification.md @@ -2,7 +2,7 @@ external help file: StorageEnclosure.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/disable-storageenclosureidentification?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/disable-storageenclosureidentification?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-StorageEnclosureIdentification --- diff --git a/docset/winserver2012r2-ps/storage/Disconnect-VirtualDisk.md b/docset/winserver2012r2-ps/storage/Disconnect-VirtualDisk.md index 8e8472ea9c..2850448ef3 100644 --- a/docset/winserver2012r2-ps/storage/Disconnect-VirtualDisk.md +++ b/docset/winserver2012r2-ps/storage/Disconnect-VirtualDisk.md @@ -2,7 +2,7 @@ external help file: VirtualDisk.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/disconnect-virtualdisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/disconnect-virtualdisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disconnect-VirtualDisk --- diff --git a/docset/winserver2012r2-ps/storage/Dismount-DiskImage.md b/docset/winserver2012r2-ps/storage/Dismount-DiskImage.md index 5b863694d8..e92c848ec3 100644 --- a/docset/winserver2012r2-ps/storage/Dismount-DiskImage.md +++ b/docset/winserver2012r2-ps/storage/Dismount-DiskImage.md @@ -2,7 +2,7 @@ external help file: DiskImage.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/dismount-diskimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/dismount-diskimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Dismount-DiskImage --- diff --git a/docset/winserver2012r2-ps/storage/Enable-PhysicalDiskIndication.md b/docset/winserver2012r2-ps/storage/Enable-PhysicalDiskIndication.md index 49c21bb5b7..582e5bce5c 100644 --- a/docset/winserver2012r2-ps/storage/Enable-PhysicalDiskIndication.md +++ b/docset/winserver2012r2-ps/storage/Enable-PhysicalDiskIndication.md @@ -2,7 +2,7 @@ external help file: PhysicalDisk.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/enable-physicaldiskindication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/enable-physicaldiskindication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-PhysicalDiskIndication --- diff --git a/docset/winserver2012r2-ps/storage/Enable-StorageEnclosureIdentification.md b/docset/winserver2012r2-ps/storage/Enable-StorageEnclosureIdentification.md index 5f0fea09fc..d1bf63ed8d 100644 --- a/docset/winserver2012r2-ps/storage/Enable-StorageEnclosureIdentification.md +++ b/docset/winserver2012r2-ps/storage/Enable-StorageEnclosureIdentification.md @@ -2,7 +2,7 @@ external help file: StorageEnclosure.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/enable-storageenclosureidentification?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/enable-storageenclosureidentification?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-StorageEnclosureIdentification --- diff --git a/docset/winserver2012r2-ps/storage/Format-Volume.md b/docset/winserver2012r2-ps/storage/Format-Volume.md index df8683d75e..9df5c00ae7 100644 --- a/docset/winserver2012r2-ps/storage/Format-Volume.md +++ b/docset/winserver2012r2-ps/storage/Format-Volume.md @@ -2,7 +2,7 @@ external help file: Volume.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/format-volume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/format-volume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Format-Volume --- diff --git a/docset/winserver2012r2-ps/storage/Get-Disk.md b/docset/winserver2012r2-ps/storage/Get-Disk.md index 3bde66cbaa..e63d9c0c93 100644 --- a/docset/winserver2012r2-ps/storage/Get-Disk.md +++ b/docset/winserver2012r2-ps/storage/Get-Disk.md @@ -2,7 +2,7 @@ external help file: Disk.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/get-disk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-disk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-Disk --- diff --git a/docset/winserver2012r2-ps/storage/Get-DiskImage.md b/docset/winserver2012r2-ps/storage/Get-DiskImage.md index a2c7cd1309..be982f5547 100644 --- a/docset/winserver2012r2-ps/storage/Get-DiskImage.md +++ b/docset/winserver2012r2-ps/storage/Get-DiskImage.md @@ -2,7 +2,7 @@ external help file: DiskImage.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/get-diskimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-diskimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DiskImage --- diff --git a/docset/winserver2012r2-ps/storage/Get-FileIntegrity.md b/docset/winserver2012r2-ps/storage/Get-FileIntegrity.md index 978dc053b9..15ee64f3be 100644 --- a/docset/winserver2012r2-ps/storage/Get-FileIntegrity.md +++ b/docset/winserver2012r2-ps/storage/Get-FileIntegrity.md @@ -2,7 +2,7 @@ external help file: FileIntegrity.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/get-fileintegrity?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-fileintegrity?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FileIntegrity --- diff --git a/docset/winserver2012r2-ps/storage/Get-FileStorageTier.md b/docset/winserver2012r2-ps/storage/Get-FileStorageTier.md index 7891a2b2d9..500359f5e9 100644 --- a/docset/winserver2012r2-ps/storage/Get-FileStorageTier.md +++ b/docset/winserver2012r2-ps/storage/Get-FileStorageTier.md @@ -2,7 +2,7 @@ external help file: FileStorageTier.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/get-filestoragetier?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-filestoragetier?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FileStorageTier --- diff --git a/docset/winserver2012r2-ps/storage/Get-InitiatorId.md b/docset/winserver2012r2-ps/storage/Get-InitiatorId.md index 4e05130cff..b396f3735c 100644 --- a/docset/winserver2012r2-ps/storage/Get-InitiatorId.md +++ b/docset/winserver2012r2-ps/storage/Get-InitiatorId.md @@ -2,7 +2,7 @@ external help file: InitiatorId.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/get-initiatorid?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-initiatorid?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-InitiatorId --- diff --git a/docset/winserver2012r2-ps/storage/Get-InitiatorPort.md b/docset/winserver2012r2-ps/storage/Get-InitiatorPort.md index d19c3dd496..cb0eb65dfd 100644 --- a/docset/winserver2012r2-ps/storage/Get-InitiatorPort.md +++ b/docset/winserver2012r2-ps/storage/Get-InitiatorPort.md @@ -2,7 +2,7 @@ external help file: InitiatorPort.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/get-initiatorport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-initiatorport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-InitiatorPort --- diff --git a/docset/winserver2012r2-ps/storage/Get-MaskingSet.md b/docset/winserver2012r2-ps/storage/Get-MaskingSet.md index 5aba93fb84..b91a009a74 100644 --- a/docset/winserver2012r2-ps/storage/Get-MaskingSet.md +++ b/docset/winserver2012r2-ps/storage/Get-MaskingSet.md @@ -2,7 +2,7 @@ external help file: MaskingSet.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/get-maskingset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-maskingset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MaskingSet --- diff --git a/docset/winserver2012r2-ps/storage/Get-OffloadDataTransferSetting.md b/docset/winserver2012r2-ps/storage/Get-OffloadDataTransferSetting.md index abe7729e54..0d5b95706b 100644 --- a/docset/winserver2012r2-ps/storage/Get-OffloadDataTransferSetting.md +++ b/docset/winserver2012r2-ps/storage/Get-OffloadDataTransferSetting.md @@ -2,7 +2,7 @@ external help file: OffloadDataTransferSetting.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/get-offloaddatatransfersetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-offloaddatatransfersetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-OffloadDataTransferSetting --- diff --git a/docset/winserver2012r2-ps/storage/Get-Partition.md b/docset/winserver2012r2-ps/storage/Get-Partition.md index e2b834e933..21b6d8d62e 100644 --- a/docset/winserver2012r2-ps/storage/Get-Partition.md +++ b/docset/winserver2012r2-ps/storage/Get-Partition.md @@ -2,7 +2,7 @@ external help file: Partition.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/get-partition?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-partition?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-Partition --- diff --git a/docset/winserver2012r2-ps/storage/Get-PartitionSupportedSize.md b/docset/winserver2012r2-ps/storage/Get-PartitionSupportedSize.md index d7ab924434..2e8764ace6 100644 --- a/docset/winserver2012r2-ps/storage/Get-PartitionSupportedSize.md +++ b/docset/winserver2012r2-ps/storage/Get-PartitionSupportedSize.md @@ -2,7 +2,7 @@ external help file: Partition.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/get-partitionsupportedsize?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-partitionsupportedsize?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PartitionSupportedSize --- diff --git a/docset/winserver2012r2-ps/storage/Get-PhysicalDisk.md b/docset/winserver2012r2-ps/storage/Get-PhysicalDisk.md index 8af02b14a8..d8dffdfde3 100644 --- a/docset/winserver2012r2-ps/storage/Get-PhysicalDisk.md +++ b/docset/winserver2012r2-ps/storage/Get-PhysicalDisk.md @@ -2,7 +2,7 @@ external help file: PhysicalDisk.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/get-physicaldisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-physicaldisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PhysicalDisk --- diff --git a/docset/winserver2012r2-ps/storage/Get-ResiliencySetting.md b/docset/winserver2012r2-ps/storage/Get-ResiliencySetting.md index bd588cefde..5080e7e91d 100644 --- a/docset/winserver2012r2-ps/storage/Get-ResiliencySetting.md +++ b/docset/winserver2012r2-ps/storage/Get-ResiliencySetting.md @@ -2,7 +2,7 @@ external help file: ResiliencySetting.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/get-resiliencysetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-resiliencysetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ResiliencySetting --- diff --git a/docset/winserver2012r2-ps/storage/Get-StorageEnclosure.md b/docset/winserver2012r2-ps/storage/Get-StorageEnclosure.md index 4988093e38..9143d85a1d 100644 --- a/docset/winserver2012r2-ps/storage/Get-StorageEnclosure.md +++ b/docset/winserver2012r2-ps/storage/Get-StorageEnclosure.md @@ -2,7 +2,7 @@ external help file: StorageEnclosure.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/get-storageenclosure?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storageenclosure?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageEnclosure --- diff --git a/docset/winserver2012r2-ps/storage/Get-StorageEnclosureVendorData.md b/docset/winserver2012r2-ps/storage/Get-StorageEnclosureVendorData.md index 31cf3fadf3..a0414be5a4 100644 --- a/docset/winserver2012r2-ps/storage/Get-StorageEnclosureVendorData.md +++ b/docset/winserver2012r2-ps/storage/Get-StorageEnclosureVendorData.md @@ -2,7 +2,7 @@ external help file: StorageEnclosure.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/get-storageenclosurevendordata?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storageenclosurevendordata?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageEnclosureVendorData --- diff --git a/docset/winserver2012r2-ps/storage/Get-StorageJob.md b/docset/winserver2012r2-ps/storage/Get-StorageJob.md index f02aa263e5..20ee60821c 100644 --- a/docset/winserver2012r2-ps/storage/Get-StorageJob.md +++ b/docset/winserver2012r2-ps/storage/Get-StorageJob.md @@ -2,7 +2,7 @@ external help file: StorageJob.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/get-storagejob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagejob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageJob --- diff --git a/docset/winserver2012r2-ps/storage/Get-StorageNode.md b/docset/winserver2012r2-ps/storage/Get-StorageNode.md index a75508d69c..83b793d1d4 100644 --- a/docset/winserver2012r2-ps/storage/Get-StorageNode.md +++ b/docset/winserver2012r2-ps/storage/Get-StorageNode.md @@ -2,7 +2,7 @@ external help file: StorageNode.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/get-storagenode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagenode?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageNode --- diff --git a/docset/winserver2012r2-ps/storage/Get-StoragePool.md b/docset/winserver2012r2-ps/storage/Get-StoragePool.md index 71fbc0de4f..78313efc99 100644 --- a/docset/winserver2012r2-ps/storage/Get-StoragePool.md +++ b/docset/winserver2012r2-ps/storage/Get-StoragePool.md @@ -2,7 +2,7 @@ external help file: StoragePool.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/get-storagepool?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagepool?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StoragePool --- diff --git a/docset/winserver2012r2-ps/storage/Get-StorageProvider.md b/docset/winserver2012r2-ps/storage/Get-StorageProvider.md index 359776723d..4e32eeacf5 100644 --- a/docset/winserver2012r2-ps/storage/Get-StorageProvider.md +++ b/docset/winserver2012r2-ps/storage/Get-StorageProvider.md @@ -2,7 +2,7 @@ external help file: StorageProvider.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/get-storageprovider?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storageprovider?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageProvider --- diff --git a/docset/winserver2012r2-ps/storage/Get-StorageReliabilityCounter.md b/docset/winserver2012r2-ps/storage/Get-StorageReliabilityCounter.md index 5341e36808..f95ed1594c 100644 --- a/docset/winserver2012r2-ps/storage/Get-StorageReliabilityCounter.md +++ b/docset/winserver2012r2-ps/storage/Get-StorageReliabilityCounter.md @@ -2,7 +2,7 @@ external help file: StorageReliabilityCounter.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/get-storagereliabilitycounter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagereliabilitycounter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageReliabilityCounter --- diff --git a/docset/winserver2012r2-ps/storage/Get-StorageSetting.md b/docset/winserver2012r2-ps/storage/Get-StorageSetting.md index 52e62e79b3..9cbdf0e22b 100644 --- a/docset/winserver2012r2-ps/storage/Get-StorageSetting.md +++ b/docset/winserver2012r2-ps/storage/Get-StorageSetting.md @@ -2,7 +2,7 @@ external help file: StorageSetting.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/get-storagesetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagesetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageSetting --- diff --git a/docset/winserver2012r2-ps/storage/Get-StorageSubSystem.md b/docset/winserver2012r2-ps/storage/Get-StorageSubSystem.md index 29c0e94689..ffd89895fa 100644 --- a/docset/winserver2012r2-ps/storage/Get-StorageSubSystem.md +++ b/docset/winserver2012r2-ps/storage/Get-StorageSubSystem.md @@ -2,7 +2,7 @@ external help file: StorageSubSystem.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/get-storagesubsystem?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagesubsystem?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageSubSystem --- diff --git a/docset/winserver2012r2-ps/storage/Get-StorageTier.md b/docset/winserver2012r2-ps/storage/Get-StorageTier.md index 9f2056641d..88eb01ddd8 100644 --- a/docset/winserver2012r2-ps/storage/Get-StorageTier.md +++ b/docset/winserver2012r2-ps/storage/Get-StorageTier.md @@ -2,7 +2,7 @@ external help file: StorageTier.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/get-storagetier?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagetier?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageTier --- diff --git a/docset/winserver2012r2-ps/storage/Get-StorageTierSupportedSize.md b/docset/winserver2012r2-ps/storage/Get-StorageTierSupportedSize.md index 366e89c734..5c19658fa5 100644 --- a/docset/winserver2012r2-ps/storage/Get-StorageTierSupportedSize.md +++ b/docset/winserver2012r2-ps/storage/Get-StorageTierSupportedSize.md @@ -2,7 +2,7 @@ external help file: StorageTier.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/get-storagetiersupportedsize?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagetiersupportedsize?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageTierSupportedSize --- diff --git a/docset/winserver2012r2-ps/storage/Get-SupportedClusterSizes.md b/docset/winserver2012r2-ps/storage/Get-SupportedClusterSizes.md index c8f446ea90..4d6de64f84 100644 --- a/docset/winserver2012r2-ps/storage/Get-SupportedClusterSizes.md +++ b/docset/winserver2012r2-ps/storage/Get-SupportedClusterSizes.md @@ -2,7 +2,7 @@ external help file: Volume.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/get-supportedclustersizes?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-supportedclustersizes?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SupportedClusterSizes --- diff --git a/docset/winserver2012r2-ps/storage/Get-SupportedFileSystems.md b/docset/winserver2012r2-ps/storage/Get-SupportedFileSystems.md index 5bb86e814f..8ff933df16 100644 --- a/docset/winserver2012r2-ps/storage/Get-SupportedFileSystems.md +++ b/docset/winserver2012r2-ps/storage/Get-SupportedFileSystems.md @@ -2,7 +2,7 @@ external help file: Volume.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/get-supportedfilesystems?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-supportedfilesystems?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SupportedFileSystems --- diff --git a/docset/winserver2012r2-ps/storage/Get-TargetPort.md b/docset/winserver2012r2-ps/storage/Get-TargetPort.md index f6fa917f6e..bb4f7f7d7b 100644 --- a/docset/winserver2012r2-ps/storage/Get-TargetPort.md +++ b/docset/winserver2012r2-ps/storage/Get-TargetPort.md @@ -2,7 +2,7 @@ external help file: TargetPort.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/get-targetport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-targetport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-TargetPort --- diff --git a/docset/winserver2012r2-ps/storage/Get-TargetPortal.md b/docset/winserver2012r2-ps/storage/Get-TargetPortal.md index 33b4480b01..508c4f01a3 100644 --- a/docset/winserver2012r2-ps/storage/Get-TargetPortal.md +++ b/docset/winserver2012r2-ps/storage/Get-TargetPortal.md @@ -2,7 +2,7 @@ external help file: TargetPortal.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/get-targetportal?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-targetportal?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-TargetPortal --- diff --git a/docset/winserver2012r2-ps/storage/Get-VirtualDisk.md b/docset/winserver2012r2-ps/storage/Get-VirtualDisk.md index 9a3aa623c3..c9d286e3ba 100644 --- a/docset/winserver2012r2-ps/storage/Get-VirtualDisk.md +++ b/docset/winserver2012r2-ps/storage/Get-VirtualDisk.md @@ -2,7 +2,7 @@ external help file: VirtualDisk.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/get-virtualdisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-virtualdisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VirtualDisk --- diff --git a/docset/winserver2012r2-ps/storage/Get-VirtualDiskSupportedSize.md b/docset/winserver2012r2-ps/storage/Get-VirtualDiskSupportedSize.md index ad47b0651d..c3412adf75 100644 --- a/docset/winserver2012r2-ps/storage/Get-VirtualDiskSupportedSize.md +++ b/docset/winserver2012r2-ps/storage/Get-VirtualDiskSupportedSize.md @@ -2,7 +2,7 @@ external help file: StoragePool.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/get-virtualdisksupportedsize?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-virtualdisksupportedsize?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VirtualDiskSupportedSize --- diff --git a/docset/winserver2012r2-ps/storage/Get-Volume.md b/docset/winserver2012r2-ps/storage/Get-Volume.md index 2498724c24..6a79984822 100644 --- a/docset/winserver2012r2-ps/storage/Get-Volume.md +++ b/docset/winserver2012r2-ps/storage/Get-Volume.md @@ -2,7 +2,7 @@ external help file: Volume.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/get-volume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-volume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-Volume --- diff --git a/docset/winserver2012r2-ps/storage/Get-VolumeCorruptionCount.md b/docset/winserver2012r2-ps/storage/Get-VolumeCorruptionCount.md index be383b691f..a291ded780 100644 --- a/docset/winserver2012r2-ps/storage/Get-VolumeCorruptionCount.md +++ b/docset/winserver2012r2-ps/storage/Get-VolumeCorruptionCount.md @@ -2,7 +2,7 @@ external help file: Volume.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/get-volumecorruptioncount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-volumecorruptioncount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VolumeCorruptionCount --- diff --git a/docset/winserver2012r2-ps/storage/Get-VolumeScrubPolicy.md b/docset/winserver2012r2-ps/storage/Get-VolumeScrubPolicy.md index 8a7172da81..be6ee61639 100644 --- a/docset/winserver2012r2-ps/storage/Get-VolumeScrubPolicy.md +++ b/docset/winserver2012r2-ps/storage/Get-VolumeScrubPolicy.md @@ -2,7 +2,7 @@ external help file: Volume.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/get-volumescrubpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-volumescrubpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VolumeScrubPolicy --- diff --git a/docset/winserver2012r2-ps/storage/Hide-VirtualDisk.md b/docset/winserver2012r2-ps/storage/Hide-VirtualDisk.md index d05b9771b6..97370b9cd9 100644 --- a/docset/winserver2012r2-ps/storage/Hide-VirtualDisk.md +++ b/docset/winserver2012r2-ps/storage/Hide-VirtualDisk.md @@ -2,7 +2,7 @@ external help file: VirtualDisk.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/hide-virtualdisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/hide-virtualdisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Hide-VirtualDisk --- diff --git a/docset/winserver2012r2-ps/storage/Initialize-Disk.md b/docset/winserver2012r2-ps/storage/Initialize-Disk.md index d65e989be3..a978f94ba8 100644 --- a/docset/winserver2012r2-ps/storage/Initialize-Disk.md +++ b/docset/winserver2012r2-ps/storage/Initialize-Disk.md @@ -2,7 +2,7 @@ external help file: Disk.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/initialize-disk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/initialize-disk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Initialize-Disk --- diff --git a/docset/winserver2012r2-ps/storage/Mount-DiskImage.md b/docset/winserver2012r2-ps/storage/Mount-DiskImage.md index e01abea191..0e638e9130 100644 --- a/docset/winserver2012r2-ps/storage/Mount-DiskImage.md +++ b/docset/winserver2012r2-ps/storage/Mount-DiskImage.md @@ -2,7 +2,7 @@ external help file: DiskImage.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/mount-diskimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/mount-diskimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Mount-DiskImage --- diff --git a/docset/winserver2012r2-ps/storage/New-MaskingSet.md b/docset/winserver2012r2-ps/storage/New-MaskingSet.md index 0fa03f4add..59fb030eea 100644 --- a/docset/winserver2012r2-ps/storage/New-MaskingSet.md +++ b/docset/winserver2012r2-ps/storage/New-MaskingSet.md @@ -2,7 +2,7 @@ external help file: StorageSubSystem.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/new-maskingset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/new-maskingset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-MaskingSet --- diff --git a/docset/winserver2012r2-ps/storage/New-Partition.md b/docset/winserver2012r2-ps/storage/New-Partition.md index 9753ae4948..74a666bc21 100644 --- a/docset/winserver2012r2-ps/storage/New-Partition.md +++ b/docset/winserver2012r2-ps/storage/New-Partition.md @@ -2,7 +2,7 @@ external help file: Disk.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/new-partition?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/new-partition?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-Partition --- diff --git a/docset/winserver2012r2-ps/storage/New-StoragePool.md b/docset/winserver2012r2-ps/storage/New-StoragePool.md index d560eb4d86..ab6d43415c 100644 --- a/docset/winserver2012r2-ps/storage/New-StoragePool.md +++ b/docset/winserver2012r2-ps/storage/New-StoragePool.md @@ -2,7 +2,7 @@ external help file: StorageSubSystem.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/new-storagepool?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/new-storagepool?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-StoragePool --- diff --git a/docset/winserver2012r2-ps/storage/New-StorageSubsystemVirtualDisk.md b/docset/winserver2012r2-ps/storage/New-StorageSubsystemVirtualDisk.md index df40d445cb..db9f578743 100644 --- a/docset/winserver2012r2-ps/storage/New-StorageSubsystemVirtualDisk.md +++ b/docset/winserver2012r2-ps/storage/New-StorageSubsystemVirtualDisk.md @@ -2,7 +2,7 @@ external help file: StorageSubSystem.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/new-storagesubsystemvirtualdisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/new-storagesubsystemvirtualdisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-StorageSubsystemVirtualDisk --- diff --git a/docset/winserver2012r2-ps/storage/New-StorageTier.md b/docset/winserver2012r2-ps/storage/New-StorageTier.md index 15766a94b4..25dea5f314 100644 --- a/docset/winserver2012r2-ps/storage/New-StorageTier.md +++ b/docset/winserver2012r2-ps/storage/New-StorageTier.md @@ -2,7 +2,7 @@ external help file: StoragePool.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/new-storagetier?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/new-storagetier?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-StorageTier --- diff --git a/docset/winserver2012r2-ps/storage/New-VirtualDisk.md b/docset/winserver2012r2-ps/storage/New-VirtualDisk.md index 7129c8ac05..b81a42e651 100644 --- a/docset/winserver2012r2-ps/storage/New-VirtualDisk.md +++ b/docset/winserver2012r2-ps/storage/New-VirtualDisk.md @@ -2,7 +2,7 @@ external help file: StoragePool.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/new-virtualdisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/new-virtualdisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VirtualDisk --- diff --git a/docset/winserver2012r2-ps/storage/New-VirtualDiskClone.md b/docset/winserver2012r2-ps/storage/New-VirtualDiskClone.md index 2ae7ef2627..cdeeb2f410 100644 --- a/docset/winserver2012r2-ps/storage/New-VirtualDiskClone.md +++ b/docset/winserver2012r2-ps/storage/New-VirtualDiskClone.md @@ -2,7 +2,7 @@ external help file: VirtualDisk.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/new-virtualdiskclone?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/new-virtualdiskclone?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VirtualDiskClone --- diff --git a/docset/winserver2012r2-ps/storage/New-VirtualDiskSnapshot.md b/docset/winserver2012r2-ps/storage/New-VirtualDiskSnapshot.md index e7e6ed5ede..960edb0f1e 100644 --- a/docset/winserver2012r2-ps/storage/New-VirtualDiskSnapshot.md +++ b/docset/winserver2012r2-ps/storage/New-VirtualDiskSnapshot.md @@ -2,7 +2,7 @@ external help file: VirtualDisk.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/new-virtualdisksnapshot?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/new-virtualdisksnapshot?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VirtualDiskSnapshot --- diff --git a/docset/winserver2012r2-ps/storage/New-Volume.md b/docset/winserver2012r2-ps/storage/New-Volume.md index 26f78c0399..d6628f5f75 100644 --- a/docset/winserver2012r2-ps/storage/New-Volume.md +++ b/docset/winserver2012r2-ps/storage/New-Volume.md @@ -2,7 +2,7 @@ external help file: StoragePool.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/new-volume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/new-volume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-Volume --- diff --git a/docset/winserver2012r2-ps/storage/Optimize-Volume.md b/docset/winserver2012r2-ps/storage/Optimize-Volume.md index b9d9301165..da1ba07cc8 100644 --- a/docset/winserver2012r2-ps/storage/Optimize-Volume.md +++ b/docset/winserver2012r2-ps/storage/Optimize-Volume.md @@ -2,7 +2,7 @@ external help file: Volume.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/optimize-volume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/optimize-volume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Optimize-Volume --- diff --git a/docset/winserver2012r2-ps/storage/Register-StorageSubsystem.md b/docset/winserver2012r2-ps/storage/Register-StorageSubsystem.md index 02e2c3415b..d54bf294bb 100644 --- a/docset/winserver2012r2-ps/storage/Register-StorageSubsystem.md +++ b/docset/winserver2012r2-ps/storage/Register-StorageSubsystem.md @@ -2,7 +2,7 @@ external help file: StorageProvider.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/register-storagesubsystem?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/register-storagesubsystem?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Register-StorageSubsystem --- diff --git a/docset/winserver2012r2-ps/storage/Remove-InitiatorId.md b/docset/winserver2012r2-ps/storage/Remove-InitiatorId.md index 8aabb7b16a..fc4746733a 100644 --- a/docset/winserver2012r2-ps/storage/Remove-InitiatorId.md +++ b/docset/winserver2012r2-ps/storage/Remove-InitiatorId.md @@ -2,7 +2,7 @@ external help file: InitiatorId.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/remove-initiatorid?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-initiatorid?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-InitiatorId --- diff --git a/docset/winserver2012r2-ps/storage/Remove-InitiatorIdFromMaskingSet.md b/docset/winserver2012r2-ps/storage/Remove-InitiatorIdFromMaskingSet.md index f9a95bf709..e94c77cd49 100644 --- a/docset/winserver2012r2-ps/storage/Remove-InitiatorIdFromMaskingSet.md +++ b/docset/winserver2012r2-ps/storage/Remove-InitiatorIdFromMaskingSet.md @@ -2,7 +2,7 @@ external help file: MaskingSet.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/remove-initiatoridfrommaskingset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-initiatoridfrommaskingset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-InitiatorIdFromMaskingSet --- diff --git a/docset/winserver2012r2-ps/storage/Remove-MaskingSet.md b/docset/winserver2012r2-ps/storage/Remove-MaskingSet.md index 4ccf607d05..37ac7355f0 100644 --- a/docset/winserver2012r2-ps/storage/Remove-MaskingSet.md +++ b/docset/winserver2012r2-ps/storage/Remove-MaskingSet.md @@ -2,7 +2,7 @@ external help file: MaskingSet.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/remove-maskingset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-maskingset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-MaskingSet --- diff --git a/docset/winserver2012r2-ps/storage/Remove-Partition.md b/docset/winserver2012r2-ps/storage/Remove-Partition.md index 7b3232c6b1..15729097f1 100644 --- a/docset/winserver2012r2-ps/storage/Remove-Partition.md +++ b/docset/winserver2012r2-ps/storage/Remove-Partition.md @@ -2,7 +2,7 @@ external help file: Partition.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/remove-partition?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-partition?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-Partition --- diff --git a/docset/winserver2012r2-ps/storage/Remove-PartitionAccessPath.md b/docset/winserver2012r2-ps/storage/Remove-PartitionAccessPath.md index 2860d5fe86..3eedb2df80 100644 --- a/docset/winserver2012r2-ps/storage/Remove-PartitionAccessPath.md +++ b/docset/winserver2012r2-ps/storage/Remove-PartitionAccessPath.md @@ -2,7 +2,7 @@ external help file: Partition.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/remove-partitionaccesspath?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-partitionaccesspath?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-PartitionAccessPath --- diff --git a/docset/winserver2012r2-ps/storage/Remove-PhysicalDisk.md b/docset/winserver2012r2-ps/storage/Remove-PhysicalDisk.md index a1d513f379..0950dc0cea 100644 --- a/docset/winserver2012r2-ps/storage/Remove-PhysicalDisk.md +++ b/docset/winserver2012r2-ps/storage/Remove-PhysicalDisk.md @@ -2,7 +2,7 @@ external help file: StorageCmdlets.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/remove-physicaldisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-physicaldisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-PhysicalDisk --- diff --git a/docset/winserver2012r2-ps/storage/Remove-StoragePool.md b/docset/winserver2012r2-ps/storage/Remove-StoragePool.md index 3afb85837d..8381af6621 100644 --- a/docset/winserver2012r2-ps/storage/Remove-StoragePool.md +++ b/docset/winserver2012r2-ps/storage/Remove-StoragePool.md @@ -2,7 +2,7 @@ external help file: StoragePool.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/remove-storagepool?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-storagepool?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-StoragePool --- diff --git a/docset/winserver2012r2-ps/storage/Remove-StorageTier.md b/docset/winserver2012r2-ps/storage/Remove-StorageTier.md index 559d6e731a..26d167259d 100644 --- a/docset/winserver2012r2-ps/storage/Remove-StorageTier.md +++ b/docset/winserver2012r2-ps/storage/Remove-StorageTier.md @@ -2,7 +2,7 @@ external help file: StorageTier.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/remove-storagetier?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-storagetier?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-StorageTier --- diff --git a/docset/winserver2012r2-ps/storage/Remove-TargetPortFromMaskingSet.md b/docset/winserver2012r2-ps/storage/Remove-TargetPortFromMaskingSet.md index 24f3178c7f..b133171808 100644 --- a/docset/winserver2012r2-ps/storage/Remove-TargetPortFromMaskingSet.md +++ b/docset/winserver2012r2-ps/storage/Remove-TargetPortFromMaskingSet.md @@ -2,7 +2,7 @@ external help file: MaskingSet.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/remove-targetportfrommaskingset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-targetportfrommaskingset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-TargetPortFromMaskingSet --- diff --git a/docset/winserver2012r2-ps/storage/Remove-VirtualDisk.md b/docset/winserver2012r2-ps/storage/Remove-VirtualDisk.md index ac745f1240..755ec047f8 100644 --- a/docset/winserver2012r2-ps/storage/Remove-VirtualDisk.md +++ b/docset/winserver2012r2-ps/storage/Remove-VirtualDisk.md @@ -2,7 +2,7 @@ external help file: VirtualDisk.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/remove-virtualdisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-virtualdisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VirtualDisk --- diff --git a/docset/winserver2012r2-ps/storage/Remove-VirtualDiskFromMaskingSet.md b/docset/winserver2012r2-ps/storage/Remove-VirtualDiskFromMaskingSet.md index f03ebebed1..4f6f55594e 100644 --- a/docset/winserver2012r2-ps/storage/Remove-VirtualDiskFromMaskingSet.md +++ b/docset/winserver2012r2-ps/storage/Remove-VirtualDiskFromMaskingSet.md @@ -2,7 +2,7 @@ external help file: MaskingSet.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/remove-virtualdiskfrommaskingset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-virtualdiskfrommaskingset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VirtualDiskFromMaskingSet --- diff --git a/docset/winserver2012r2-ps/storage/Rename-MaskingSet.md b/docset/winserver2012r2-ps/storage/Rename-MaskingSet.md index 03bf38c321..188b6544c0 100644 --- a/docset/winserver2012r2-ps/storage/Rename-MaskingSet.md +++ b/docset/winserver2012r2-ps/storage/Rename-MaskingSet.md @@ -2,7 +2,7 @@ external help file: MaskingSet.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/rename-maskingset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/rename-maskingset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-MaskingSet --- diff --git a/docset/winserver2012r2-ps/storage/Repair-FileIntegrity.md b/docset/winserver2012r2-ps/storage/Repair-FileIntegrity.md index 74aa706725..cd2b7a8ce0 100644 --- a/docset/winserver2012r2-ps/storage/Repair-FileIntegrity.md +++ b/docset/winserver2012r2-ps/storage/Repair-FileIntegrity.md @@ -2,7 +2,7 @@ external help file: FileIntegrity.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/repair-fileintegrity?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/repair-fileintegrity?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Repair-FileIntegrity --- diff --git a/docset/winserver2012r2-ps/storage/Repair-VirtualDisk.md b/docset/winserver2012r2-ps/storage/Repair-VirtualDisk.md index 986fc6c8a2..fe0961859e 100644 --- a/docset/winserver2012r2-ps/storage/Repair-VirtualDisk.md +++ b/docset/winserver2012r2-ps/storage/Repair-VirtualDisk.md @@ -2,7 +2,7 @@ external help file: VirtualDisk.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/repair-virtualdisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/repair-virtualdisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Repair-VirtualDisk --- diff --git a/docset/winserver2012r2-ps/storage/Repair-Volume.md b/docset/winserver2012r2-ps/storage/Repair-Volume.md index 6372166cd0..31ae6da12e 100644 --- a/docset/winserver2012r2-ps/storage/Repair-Volume.md +++ b/docset/winserver2012r2-ps/storage/Repair-Volume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Volume.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/repair-volume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/repair-volume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Repair-Volume --- diff --git a/docset/winserver2012r2-ps/storage/Reset-PhysicalDisk.md b/docset/winserver2012r2-ps/storage/Reset-PhysicalDisk.md index 417f1af8ca..c8710bd71c 100644 --- a/docset/winserver2012r2-ps/storage/Reset-PhysicalDisk.md +++ b/docset/winserver2012r2-ps/storage/Reset-PhysicalDisk.md @@ -2,7 +2,7 @@ external help file: PhysicalDisk.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/reset-physicaldisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/reset-physicaldisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-PhysicalDisk --- diff --git a/docset/winserver2012r2-ps/storage/Reset-StorageReliabilityCounter.md b/docset/winserver2012r2-ps/storage/Reset-StorageReliabilityCounter.md index fbfecefb91..218a25ae49 100644 --- a/docset/winserver2012r2-ps/storage/Reset-StorageReliabilityCounter.md +++ b/docset/winserver2012r2-ps/storage/Reset-StorageReliabilityCounter.md @@ -2,7 +2,7 @@ external help file: StorageReliabilityCounter.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/reset-storagereliabilitycounter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/reset-storagereliabilitycounter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-StorageReliabilityCounter --- diff --git a/docset/winserver2012r2-ps/storage/Resize-Partition.md b/docset/winserver2012r2-ps/storage/Resize-Partition.md index 8b010f29e9..6c7a9745a1 100644 --- a/docset/winserver2012r2-ps/storage/Resize-Partition.md +++ b/docset/winserver2012r2-ps/storage/Resize-Partition.md @@ -2,7 +2,7 @@ external help file: Partition.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/resize-partition?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/resize-partition?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resize-Partition --- diff --git a/docset/winserver2012r2-ps/storage/Resize-StorageTier.md b/docset/winserver2012r2-ps/storage/Resize-StorageTier.md index c842c5b8f4..c0a8a888b5 100644 --- a/docset/winserver2012r2-ps/storage/Resize-StorageTier.md +++ b/docset/winserver2012r2-ps/storage/Resize-StorageTier.md @@ -2,7 +2,7 @@ external help file: StorageTier.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/resize-storagetier?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/resize-storagetier?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resize-StorageTier --- diff --git a/docset/winserver2012r2-ps/storage/Resize-VirtualDisk.md b/docset/winserver2012r2-ps/storage/Resize-VirtualDisk.md index d26e1ca518..abc72dcdd1 100644 --- a/docset/winserver2012r2-ps/storage/Resize-VirtualDisk.md +++ b/docset/winserver2012r2-ps/storage/Resize-VirtualDisk.md @@ -2,7 +2,7 @@ external help file: VirtualDisk.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/resize-virtualdisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/resize-virtualdisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resize-VirtualDisk --- diff --git a/docset/winserver2012r2-ps/storage/Set-Disk.md b/docset/winserver2012r2-ps/storage/Set-Disk.md index c3a23f9ce9..61c04d9fff 100644 --- a/docset/winserver2012r2-ps/storage/Set-Disk.md +++ b/docset/winserver2012r2-ps/storage/Set-Disk.md @@ -2,7 +2,7 @@ external help file: StorageCmdlets.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/set-disk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-disk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-Disk --- diff --git a/docset/winserver2012r2-ps/storage/Set-FileIntegrity.md b/docset/winserver2012r2-ps/storage/Set-FileIntegrity.md index 6be70ac1e6..9617c8476a 100644 --- a/docset/winserver2012r2-ps/storage/Set-FileIntegrity.md +++ b/docset/winserver2012r2-ps/storage/Set-FileIntegrity.md @@ -2,7 +2,7 @@ external help file: FileIntegrity.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/set-fileintegrity?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-fileintegrity?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FileIntegrity --- diff --git a/docset/winserver2012r2-ps/storage/Set-FileStorageTier.md b/docset/winserver2012r2-ps/storage/Set-FileStorageTier.md index 7443e16a6b..98d954989d 100644 --- a/docset/winserver2012r2-ps/storage/Set-FileStorageTier.md +++ b/docset/winserver2012r2-ps/storage/Set-FileStorageTier.md @@ -2,7 +2,7 @@ external help file: FileStorageTier.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/set-filestoragetier?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-filestoragetier?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FileStorageTier --- diff --git a/docset/winserver2012r2-ps/storage/Set-InitiatorPort.md b/docset/winserver2012r2-ps/storage/Set-InitiatorPort.md index 9b29b72443..4d5bd89a51 100644 --- a/docset/winserver2012r2-ps/storage/Set-InitiatorPort.md +++ b/docset/winserver2012r2-ps/storage/Set-InitiatorPort.md @@ -2,7 +2,7 @@ external help file: InitiatorPort.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/set-initiatorport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-initiatorport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-InitiatorPort --- diff --git a/docset/winserver2012r2-ps/storage/Set-Partition.md b/docset/winserver2012r2-ps/storage/Set-Partition.md index df160b7c26..c47d0aec09 100644 --- a/docset/winserver2012r2-ps/storage/Set-Partition.md +++ b/docset/winserver2012r2-ps/storage/Set-Partition.md @@ -2,7 +2,7 @@ external help file: StorageCmdlets.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/set-partition?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-partition?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-Partition --- diff --git a/docset/winserver2012r2-ps/storage/Set-PhysicalDisk.md b/docset/winserver2012r2-ps/storage/Set-PhysicalDisk.md index 0108dce5f8..ad8d2b2785 100644 --- a/docset/winserver2012r2-ps/storage/Set-PhysicalDisk.md +++ b/docset/winserver2012r2-ps/storage/Set-PhysicalDisk.md @@ -2,7 +2,7 @@ external help file: StorageCmdlets.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/set-physicaldisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-physicaldisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-PhysicalDisk --- diff --git a/docset/winserver2012r2-ps/storage/Set-ResiliencySetting.md b/docset/winserver2012r2-ps/storage/Set-ResiliencySetting.md index 327fd5fb7f..7a7e895211 100644 --- a/docset/winserver2012r2-ps/storage/Set-ResiliencySetting.md +++ b/docset/winserver2012r2-ps/storage/Set-ResiliencySetting.md @@ -2,7 +2,7 @@ external help file: ResiliencySetting.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/set-resiliencysetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-resiliencysetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ResiliencySetting --- diff --git a/docset/winserver2012r2-ps/storage/Set-StoragePool.md b/docset/winserver2012r2-ps/storage/Set-StoragePool.md index 8cd285e91c..656f3d30aa 100644 --- a/docset/winserver2012r2-ps/storage/Set-StoragePool.md +++ b/docset/winserver2012r2-ps/storage/Set-StoragePool.md @@ -2,7 +2,7 @@ external help file: StorageCmdlets.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/set-storagepool?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-storagepool?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-StoragePool --- diff --git a/docset/winserver2012r2-ps/storage/Set-StorageProvider.md b/docset/winserver2012r2-ps/storage/Set-StorageProvider.md index f939a4a0af..f0bd7d4955 100644 --- a/docset/winserver2012r2-ps/storage/Set-StorageProvider.md +++ b/docset/winserver2012r2-ps/storage/Set-StorageProvider.md @@ -2,7 +2,7 @@ external help file: StorageProvider.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/set-storageprovider?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-storageprovider?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-StorageProvider --- diff --git a/docset/winserver2012r2-ps/storage/Set-StorageSetting.md b/docset/winserver2012r2-ps/storage/Set-StorageSetting.md index e487a31d33..65487c3566 100644 --- a/docset/winserver2012r2-ps/storage/Set-StorageSetting.md +++ b/docset/winserver2012r2-ps/storage/Set-StorageSetting.md @@ -2,7 +2,7 @@ external help file: StorageSetting.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/set-storagesetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-storagesetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-StorageSetting --- diff --git a/docset/winserver2012r2-ps/storage/Set-StorageSubSystem.md b/docset/winserver2012r2-ps/storage/Set-StorageSubSystem.md index 2093dd3f6b..9608182828 100644 --- a/docset/winserver2012r2-ps/storage/Set-StorageSubSystem.md +++ b/docset/winserver2012r2-ps/storage/Set-StorageSubSystem.md @@ -2,7 +2,7 @@ external help file: StorageCmdlets.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/set-storagesubsystem?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-storagesubsystem?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-StorageSubSystem --- diff --git a/docset/winserver2012r2-ps/storage/Set-StorageTier.md b/docset/winserver2012r2-ps/storage/Set-StorageTier.md index 9d4c6832ba..9e0a3dddc6 100644 --- a/docset/winserver2012r2-ps/storage/Set-StorageTier.md +++ b/docset/winserver2012r2-ps/storage/Set-StorageTier.md @@ -2,7 +2,7 @@ external help file: StorageCmdlets.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/set-storagetier?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-storagetier?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-StorageTier --- diff --git a/docset/winserver2012r2-ps/storage/Set-VirtualDisk.md b/docset/winserver2012r2-ps/storage/Set-VirtualDisk.md index 7407a6fe37..e95a7cb67a 100644 --- a/docset/winserver2012r2-ps/storage/Set-VirtualDisk.md +++ b/docset/winserver2012r2-ps/storage/Set-VirtualDisk.md @@ -2,7 +2,7 @@ external help file: StorageCmdlets.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/set-virtualdisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-virtualdisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VirtualDisk --- diff --git a/docset/winserver2012r2-ps/storage/Set-Volume.md b/docset/winserver2012r2-ps/storage/Set-Volume.md index b24f8ce31f..974cb7f9c0 100644 --- a/docset/winserver2012r2-ps/storage/Set-Volume.md +++ b/docset/winserver2012r2-ps/storage/Set-Volume.md @@ -2,7 +2,7 @@ external help file: Volume.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/set-volume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-volume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-Volume --- diff --git a/docset/winserver2012r2-ps/storage/Set-VolumeScrubPolicy.md b/docset/winserver2012r2-ps/storage/Set-VolumeScrubPolicy.md index 6bea21442f..355dad6015 100644 --- a/docset/winserver2012r2-ps/storage/Set-VolumeScrubPolicy.md +++ b/docset/winserver2012r2-ps/storage/Set-VolumeScrubPolicy.md @@ -2,7 +2,7 @@ external help file: Volume.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/set-volumescrubpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-volumescrubpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VolumeScrubPolicy --- diff --git a/docset/winserver2012r2-ps/storage/Show-VirtualDisk.md b/docset/winserver2012r2-ps/storage/Show-VirtualDisk.md index 16a50fdecd..b93e32bafc 100644 --- a/docset/winserver2012r2-ps/storage/Show-VirtualDisk.md +++ b/docset/winserver2012r2-ps/storage/Show-VirtualDisk.md @@ -2,7 +2,7 @@ external help file: VirtualDisk.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/show-virtualdisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/show-virtualdisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Show-VirtualDisk --- diff --git a/docset/winserver2012r2-ps/storage/Unregister-StorageSubsystem.md b/docset/winserver2012r2-ps/storage/Unregister-StorageSubsystem.md index 8735b88724..6f8cb4c609 100644 --- a/docset/winserver2012r2-ps/storage/Unregister-StorageSubsystem.md +++ b/docset/winserver2012r2-ps/storage/Unregister-StorageSubsystem.md @@ -2,7 +2,7 @@ external help file: StorageProvider.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/unregister-storagesubsystem?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/unregister-storagesubsystem?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unregister-StorageSubsystem --- diff --git a/docset/winserver2012r2-ps/storage/Update-Disk.md b/docset/winserver2012r2-ps/storage/Update-Disk.md index 89c6e410e3..15e215e9fa 100644 --- a/docset/winserver2012r2-ps/storage/Update-Disk.md +++ b/docset/winserver2012r2-ps/storage/Update-Disk.md @@ -2,7 +2,7 @@ external help file: Disk.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/update-disk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/update-disk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-Disk --- diff --git a/docset/winserver2012r2-ps/storage/Update-HostStorageCache.md b/docset/winserver2012r2-ps/storage/Update-HostStorageCache.md index 86742cd972..72c6c257c4 100644 --- a/docset/winserver2012r2-ps/storage/Update-HostStorageCache.md +++ b/docset/winserver2012r2-ps/storage/Update-HostStorageCache.md @@ -2,7 +2,7 @@ external help file: StorageSetting.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/update-hoststoragecache?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/update-hoststoragecache?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-HostStorageCache --- diff --git a/docset/winserver2012r2-ps/storage/Update-StoragePool.md b/docset/winserver2012r2-ps/storage/Update-StoragePool.md index 7cd258bd96..4f867bd63e 100644 --- a/docset/winserver2012r2-ps/storage/Update-StoragePool.md +++ b/docset/winserver2012r2-ps/storage/Update-StoragePool.md @@ -2,7 +2,7 @@ external help file: StoragePool.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/update-storagepool?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/update-storagepool?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-StoragePool --- diff --git a/docset/winserver2012r2-ps/storage/Update-StorageProviderCache.md b/docset/winserver2012r2-ps/storage/Update-StorageProviderCache.md index 0a3df4d926..2fef674004 100644 --- a/docset/winserver2012r2-ps/storage/Update-StorageProviderCache.md +++ b/docset/winserver2012r2-ps/storage/Update-StorageProviderCache.md @@ -2,7 +2,7 @@ external help file: StorageProvider.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/update-storageprovidercache?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/update-storageprovidercache?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-StorageProviderCache --- diff --git a/docset/winserver2012r2-ps/storage/Write-VolumeCache.md b/docset/winserver2012r2-ps/storage/Write-VolumeCache.md index 78b2556cd8..124b9a353f 100644 --- a/docset/winserver2012r2-ps/storage/Write-VolumeCache.md +++ b/docset/winserver2012r2-ps/storage/Write-VolumeCache.md @@ -2,7 +2,7 @@ external help file: Volume.cdxml-help.xml Module Name: Storage ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/storage/write-volumecache?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/write-volumecache?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Write-VolumeCache --- diff --git a/docset/winserver2012r2-ps/storagespaces/Disable-StorageSpacesMpioSupport.md b/docset/winserver2012r2-ps/storagespaces/Disable-StorageSpacesMpioSupport.md index 83b812b77d..88fb57d1bd 100644 --- a/docset/winserver2012r2-ps/storagespaces/Disable-StorageSpacesMpioSupport.md +++ b/docset/winserver2012r2-ps/storagespaces/Disable-StorageSpacesMpioSupport.md @@ -2,7 +2,7 @@ external help file: StorSpaces2_Cmdlets.xml Module Name: StorageSpaces ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/storagespaces/disable-storagespacesmpiosupport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagespaces/disable-storagespacesmpiosupport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-StorageSpacesMpioSupport --- diff --git a/docset/winserver2012r2-ps/storagespaces/Enable-StorageSpacesMpioSupport.md b/docset/winserver2012r2-ps/storagespaces/Enable-StorageSpacesMpioSupport.md index 3ed457603d..b2872e71aa 100644 --- a/docset/winserver2012r2-ps/storagespaces/Enable-StorageSpacesMpioSupport.md +++ b/docset/winserver2012r2-ps/storagespaces/Enable-StorageSpacesMpioSupport.md @@ -2,7 +2,7 @@ external help file: StorSpaces2_Cmdlets.xml Module Name: StorageSpaces ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/storagespaces/enable-storagespacesmpiosupport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagespaces/enable-storagespacesmpiosupport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-StorageSpacesMpioSupport --- diff --git a/docset/winserver2012r2-ps/storagespaces/Get-AvailableDriveLetter.md b/docset/winserver2012r2-ps/storagespaces/Get-AvailableDriveLetter.md index 082b78b683..e89e56ead8 100644 --- a/docset/winserver2012r2-ps/storagespaces/Get-AvailableDriveLetter.md +++ b/docset/winserver2012r2-ps/storagespaces/Get-AvailableDriveLetter.md @@ -2,7 +2,7 @@ external help file: StorSpaces2_Cmdlets.xml Module Name: StorageSpaces ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/storagespaces/get-availabledriveletter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagespaces/get-availabledriveletter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AvailableDriveLetter --- diff --git a/docset/winserver2012r2-ps/storagespaces/Get-SpacesConfiguration.md b/docset/winserver2012r2-ps/storagespaces/Get-SpacesConfiguration.md index 850ef5f7eb..515ce0702d 100644 --- a/docset/winserver2012r2-ps/storagespaces/Get-SpacesConfiguration.md +++ b/docset/winserver2012r2-ps/storagespaces/Get-SpacesConfiguration.md @@ -2,7 +2,7 @@ external help file: StorSpaces2_Cmdlets.xml Module Name: StorageSpaces ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/storagespaces/get-spacesconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagespaces/get-spacesconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SpacesConfiguration --- diff --git a/docset/winserver2012r2-ps/storagespaces/Get-SpacesPhysicalDisk.md b/docset/winserver2012r2-ps/storagespaces/Get-SpacesPhysicalDisk.md index 2d7baa84e4..ee718d33a4 100644 --- a/docset/winserver2012r2-ps/storagespaces/Get-SpacesPhysicalDisk.md +++ b/docset/winserver2012r2-ps/storagespaces/Get-SpacesPhysicalDisk.md @@ -2,7 +2,7 @@ external help file: StorSpaces2_Cmdlets.xml Module Name: StorageSpaces ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/storagespaces/get-spacesphysicaldisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagespaces/get-spacesphysicaldisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SpacesPhysicalDisk --- diff --git a/docset/winserver2012r2-ps/storagespaces/Get-SpacesPool.md b/docset/winserver2012r2-ps/storagespaces/Get-SpacesPool.md index 4c9469caac..8510255f19 100644 --- a/docset/winserver2012r2-ps/storagespaces/Get-SpacesPool.md +++ b/docset/winserver2012r2-ps/storagespaces/Get-SpacesPool.md @@ -2,7 +2,7 @@ external help file: StorSpaces2_Cmdlets.xml Module Name: StorageSpaces ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/storagespaces/get-spacespool?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagespaces/get-spacespool?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SpacesPool --- diff --git a/docset/winserver2012r2-ps/storagespaces/Get-SpacesPoolPhysicalDiskHWCounter.md b/docset/winserver2012r2-ps/storagespaces/Get-SpacesPoolPhysicalDiskHWCounter.md index 129c3f01d3..75510da334 100644 --- a/docset/winserver2012r2-ps/storagespaces/Get-SpacesPoolPhysicalDiskHWCounter.md +++ b/docset/winserver2012r2-ps/storagespaces/Get-SpacesPoolPhysicalDiskHWCounter.md @@ -2,7 +2,7 @@ external help file: StorSpaces2_Cmdlets.xml Module Name: StorageSpaces ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/storagespaces/get-spacespoolphysicaldiskhwcounter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagespaces/get-spacespoolphysicaldiskhwcounter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SpacesPoolPhysicalDiskHWCounter --- diff --git a/docset/winserver2012r2-ps/storagespaces/Get-SpacesProvider.md b/docset/winserver2012r2-ps/storagespaces/Get-SpacesProvider.md index d37b4e8b71..0f89206001 100644 --- a/docset/winserver2012r2-ps/storagespaces/Get-SpacesProvider.md +++ b/docset/winserver2012r2-ps/storagespaces/Get-SpacesProvider.md @@ -2,7 +2,7 @@ external help file: StorSpaces2_Cmdlets.xml Module Name: StorageSpaces ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/storagespaces/get-spacesprovider?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagespaces/get-spacesprovider?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SpacesProvider --- diff --git a/docset/winserver2012r2-ps/storagespaces/Get-SpacesSubsystem.md b/docset/winserver2012r2-ps/storagespaces/Get-SpacesSubsystem.md index 29e315f5db..3c8e5384d1 100644 --- a/docset/winserver2012r2-ps/storagespaces/Get-SpacesSubsystem.md +++ b/docset/winserver2012r2-ps/storagespaces/Get-SpacesSubsystem.md @@ -2,7 +2,7 @@ external help file: StorSpaces2_Cmdlets.xml Module Name: StorageSpaces ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/storagespaces/get-spacessubsystem?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagespaces/get-spacessubsystem?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SpacesSubsystem --- diff --git a/docset/winserver2012r2-ps/storagespaces/Get-SpacesVolume.md b/docset/winserver2012r2-ps/storagespaces/Get-SpacesVolume.md index c110789e77..44db166fad 100644 --- a/docset/winserver2012r2-ps/storagespaces/Get-SpacesVolume.md +++ b/docset/winserver2012r2-ps/storagespaces/Get-SpacesVolume.md @@ -2,7 +2,7 @@ external help file: StorSpaces2_Cmdlets.xml Module Name: StorageSpaces ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/storagespaces/get-spacesvolume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagespaces/get-spacesvolume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SpacesVolume --- diff --git a/docset/winserver2012r2-ps/storagespaces/Get-StorageSpacesMpioConfiguration.md b/docset/winserver2012r2-ps/storagespaces/Get-StorageSpacesMpioConfiguration.md index d556356a58..23e8ff0665 100644 --- a/docset/winserver2012r2-ps/storagespaces/Get-StorageSpacesMpioConfiguration.md +++ b/docset/winserver2012r2-ps/storagespaces/Get-StorageSpacesMpioConfiguration.md @@ -2,7 +2,7 @@ external help file: StorSpaces2_Cmdlets.xml Module Name: StorageSpaces ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/storagespaces/get-storagespacesmpioconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagespaces/get-storagespacesmpioconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageSpacesMpioConfiguration --- diff --git a/docset/winserver2012r2-ps/storagespaces/New-SpacesPool.md b/docset/winserver2012r2-ps/storagespaces/New-SpacesPool.md index aaa18459a3..402170742e 100644 --- a/docset/winserver2012r2-ps/storagespaces/New-SpacesPool.md +++ b/docset/winserver2012r2-ps/storagespaces/New-SpacesPool.md @@ -2,7 +2,7 @@ external help file: StorSpaces2_Cmdlets.xml Module Name: StorageSpaces ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/storagespaces/new-spacespool?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagespaces/new-spacespool?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-SpacesPool --- diff --git a/docset/winserver2012r2-ps/storagespaces/New-SpacesVolume.md b/docset/winserver2012r2-ps/storagespaces/New-SpacesVolume.md index f2c292493f..78b26a5475 100644 --- a/docset/winserver2012r2-ps/storagespaces/New-SpacesVolume.md +++ b/docset/winserver2012r2-ps/storagespaces/New-SpacesVolume.md @@ -2,7 +2,7 @@ external help file: StorSpaces2_Cmdlets.xml Module Name: StorageSpaces ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/storagespaces/new-spacesvolume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagespaces/new-spacesvolume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-SpacesVolume --- diff --git a/docset/winserver2012r2-ps/storagespaces/New-StorageSpacesEventLog.md b/docset/winserver2012r2-ps/storagespaces/New-StorageSpacesEventLog.md index bbc3ab9807..3385a405ae 100644 --- a/docset/winserver2012r2-ps/storagespaces/New-StorageSpacesEventLog.md +++ b/docset/winserver2012r2-ps/storagespaces/New-StorageSpacesEventLog.md @@ -2,7 +2,7 @@ external help file: StorSpaces2_Cmdlets.xml Module Name: StorageSpaces ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/storagespaces/new-storagespaceseventlog?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagespaces/new-storagespaceseventlog?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-StorageSpacesEventLog --- diff --git a/docset/winserver2012r2-ps/storagespaces/Remove-StorageSpacesEventLog.md b/docset/winserver2012r2-ps/storagespaces/Remove-StorageSpacesEventLog.md index cd924d6b7c..33f0255ea8 100644 --- a/docset/winserver2012r2-ps/storagespaces/Remove-StorageSpacesEventLog.md +++ b/docset/winserver2012r2-ps/storagespaces/Remove-StorageSpacesEventLog.md @@ -2,7 +2,7 @@ external help file: StorSpaces2_Cmdlets.xml Module Name: StorageSpaces ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/storagespaces/remove-storagespaceseventlog?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagespaces/remove-storagespaceseventlog?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-StorageSpacesEventLog --- diff --git a/docset/winserver2012r2-ps/storagespaces/Repair-SpacesConfiguration.md b/docset/winserver2012r2-ps/storagespaces/Repair-SpacesConfiguration.md index 8084e5c5c4..7c74f648d7 100644 --- a/docset/winserver2012r2-ps/storagespaces/Repair-SpacesConfiguration.md +++ b/docset/winserver2012r2-ps/storagespaces/Repair-SpacesConfiguration.md @@ -2,7 +2,7 @@ external help file: StorSpaces2_Cmdlets.xml Module Name: StorageSpaces ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/storagespaces/repair-spacesconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagespaces/repair-spacesconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Repair-SpacesConfiguration --- diff --git a/docset/winserver2012r2-ps/storagespaces/Resize-SpacesVolume.md b/docset/winserver2012r2-ps/storagespaces/Resize-SpacesVolume.md index a9c074ccc2..a4003bf155 100644 --- a/docset/winserver2012r2-ps/storagespaces/Resize-SpacesVolume.md +++ b/docset/winserver2012r2-ps/storagespaces/Resize-SpacesVolume.md @@ -2,7 +2,7 @@ external help file: StorSpaces2_Cmdlets.xml Module Name: StorageSpaces ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/storagespaces/resize-spacesvolume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagespaces/resize-spacesvolume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resize-SpacesVolume --- diff --git a/docset/winserver2012r2-ps/storagespaces/Test-SpacesConfiguration.md b/docset/winserver2012r2-ps/storagespaces/Test-SpacesConfiguration.md index e2b27b23cf..ae6ce74176 100644 --- a/docset/winserver2012r2-ps/storagespaces/Test-SpacesConfiguration.md +++ b/docset/winserver2012r2-ps/storagespaces/Test-SpacesConfiguration.md @@ -2,7 +2,7 @@ external help file: StorSpaces2_Cmdlets.xml Module Name: StorageSpaces ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/storagespaces/test-spacesconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagespaces/test-spacesconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-SpacesConfiguration --- diff --git a/docset/winserver2012r2-ps/syncshare/Disable-SyncShare.md b/docset/winserver2012r2-ps/syncshare/Disable-SyncShare.md index ba4a017687..9f41a198c9 100644 --- a/docset/winserver2012r2-ps/syncshare/Disable-SyncShare.md +++ b/docset/winserver2012r2-ps/syncshare/Disable-SyncShare.md @@ -2,7 +2,7 @@ external help file: SyncShare.cdxml-help.xml Module Name: SyncShare ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/syncshare/disable-syncshare?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/syncshare/disable-syncshare?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-SyncShare --- diff --git a/docset/winserver2012r2-ps/syncshare/Enable-SyncShare.md b/docset/winserver2012r2-ps/syncshare/Enable-SyncShare.md index b7993899d5..464d1bb806 100644 --- a/docset/winserver2012r2-ps/syncshare/Enable-SyncShare.md +++ b/docset/winserver2012r2-ps/syncshare/Enable-SyncShare.md @@ -2,7 +2,7 @@ external help file: SyncShare.cdxml-help.xml Module Name: SyncShare ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/syncshare/enable-syncshare?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/syncshare/enable-syncshare?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-SyncShare --- diff --git a/docset/winserver2012r2-ps/syncshare/Get-SyncServerSetting.md b/docset/winserver2012r2-ps/syncshare/Get-SyncServerSetting.md index d6d0f4362c..6c3983bad5 100644 --- a/docset/winserver2012r2-ps/syncshare/Get-SyncServerSetting.md +++ b/docset/winserver2012r2-ps/syncshare/Get-SyncServerSetting.md @@ -2,7 +2,7 @@ external help file: SyncServerSetting.cdxml-help.xml Module Name: SyncShare ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/syncshare/get-syncserversetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/syncshare/get-syncserversetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SyncServerSetting --- diff --git a/docset/winserver2012r2-ps/syncshare/Get-SyncShare.md b/docset/winserver2012r2-ps/syncshare/Get-SyncShare.md index 3c5e38f21b..df294a86b6 100644 --- a/docset/winserver2012r2-ps/syncshare/Get-SyncShare.md +++ b/docset/winserver2012r2-ps/syncshare/Get-SyncShare.md @@ -2,7 +2,7 @@ external help file: SyncShare.cdxml-help.xml Module Name: SyncShare ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/syncshare/get-syncshare?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/syncshare/get-syncshare?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SyncShare --- diff --git a/docset/winserver2012r2-ps/syncshare/Get-SyncUserStatus.md b/docset/winserver2012r2-ps/syncshare/Get-SyncUserStatus.md index 6311f52210..67053e843b 100644 --- a/docset/winserver2012r2-ps/syncshare/Get-SyncUserStatus.md +++ b/docset/winserver2012r2-ps/syncshare/Get-SyncUserStatus.md @@ -2,7 +2,7 @@ external help file: SyncUserStatus.cdxml-help.xml Module Name: SyncShare ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/syncshare/get-syncuserstatus?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/syncshare/get-syncuserstatus?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SyncUserStatus --- diff --git a/docset/winserver2012r2-ps/syncshare/New-SyncShare.md b/docset/winserver2012r2-ps/syncshare/New-SyncShare.md index 1dcb51c924..d1c0d3eca6 100644 --- a/docset/winserver2012r2-ps/syncshare/New-SyncShare.md +++ b/docset/winserver2012r2-ps/syncshare/New-SyncShare.md @@ -2,7 +2,7 @@ external help file: SyncShare.cdxml-help.xml Module Name: SyncShare ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/syncshare/new-syncshare?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/syncshare/new-syncshare?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-SyncShare --- diff --git a/docset/winserver2012r2-ps/syncshare/Remove-SyncShare.md b/docset/winserver2012r2-ps/syncshare/Remove-SyncShare.md index 4a21d60f4b..763662ae1d 100644 --- a/docset/winserver2012r2-ps/syncshare/Remove-SyncShare.md +++ b/docset/winserver2012r2-ps/syncshare/Remove-SyncShare.md @@ -2,7 +2,7 @@ external help file: SyncShare.cdxml-help.xml Module Name: SyncShare ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/syncshare/remove-syncshare?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/syncshare/remove-syncshare?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-SyncShare --- diff --git a/docset/winserver2012r2-ps/syncshare/Repair-SyncShare.md b/docset/winserver2012r2-ps/syncshare/Repair-SyncShare.md index 65a4642d75..94fc2c71fe 100644 --- a/docset/winserver2012r2-ps/syncshare/Repair-SyncShare.md +++ b/docset/winserver2012r2-ps/syncshare/Repair-SyncShare.md @@ -2,7 +2,7 @@ external help file: SyncShare.cdxml-help.xml Module Name: SyncShare ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/syncshare/repair-syncshare?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/syncshare/repair-syncshare?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Repair-SyncShare --- diff --git a/docset/winserver2012r2-ps/syncshare/Set-SyncServerSetting.md b/docset/winserver2012r2-ps/syncshare/Set-SyncServerSetting.md index 6beb6b6718..6f51a76061 100644 --- a/docset/winserver2012r2-ps/syncshare/Set-SyncServerSetting.md +++ b/docset/winserver2012r2-ps/syncshare/Set-SyncServerSetting.md @@ -2,7 +2,7 @@ external help file: SyncServerSetting.cdxml-help.xml Module Name: SyncShare ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/syncshare/set-syncserversetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/syncshare/set-syncserversetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SyncServerSetting --- diff --git a/docset/winserver2012r2-ps/syncshare/Set-SyncShare.md b/docset/winserver2012r2-ps/syncshare/Set-SyncShare.md index b6326874a3..53c4564c97 100644 --- a/docset/winserver2012r2-ps/syncshare/Set-SyncShare.md +++ b/docset/winserver2012r2-ps/syncshare/Set-SyncShare.md @@ -2,7 +2,7 @@ external help file: SyncShare.cdxml-help.xml Module Name: SyncShare ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/syncshare/set-syncshare?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/syncshare/set-syncshare?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SyncShare --- diff --git a/docset/winserver2012r2-ps/tls/Disable-TlsSessionTicketKey.md b/docset/winserver2012r2-ps/tls/Disable-TlsSessionTicketKey.md index 3bee0e5d81..f050c8e29a 100644 --- a/docset/winserver2012r2-ps/tls/Disable-TlsSessionTicketKey.md +++ b/docset/winserver2012r2-ps/tls/Disable-TlsSessionTicketKey.md @@ -2,7 +2,7 @@ external help file: Microsoft.WindowsAuthenticationProtocols.Commands.dll-Help.xml Module Name: TLS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/tls/disable-tlssessionticketkey?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/tls/disable-tlssessionticketkey?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-TlsSessionTicketKey --- diff --git a/docset/winserver2012r2-ps/tls/Enable-TlsSessionTicketKey.md b/docset/winserver2012r2-ps/tls/Enable-TlsSessionTicketKey.md index d4bbd8ac24..11a5959453 100644 --- a/docset/winserver2012r2-ps/tls/Enable-TlsSessionTicketKey.md +++ b/docset/winserver2012r2-ps/tls/Enable-TlsSessionTicketKey.md @@ -2,7 +2,7 @@ external help file: Microsoft.WindowsAuthenticationProtocols.Commands.dll-Help.xml Module Name: TLS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/tls/enable-tlssessionticketkey?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/tls/enable-tlssessionticketkey?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-TlsSessionTicketKey --- diff --git a/docset/winserver2012r2-ps/tls/Export-TlsSessionTicketKey.md b/docset/winserver2012r2-ps/tls/Export-TlsSessionTicketKey.md index 081d7f9144..c51b14b13e 100644 --- a/docset/winserver2012r2-ps/tls/Export-TlsSessionTicketKey.md +++ b/docset/winserver2012r2-ps/tls/Export-TlsSessionTicketKey.md @@ -2,7 +2,7 @@ external help file: Microsoft.WindowsAuthenticationProtocols.Commands.dll-Help.xml Module Name: TLS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/tls/export-tlssessionticketkey?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/tls/export-tlssessionticketkey?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-TlsSessionTicketKey --- diff --git a/docset/winserver2012r2-ps/tls/New-TlsSessionTicketKey.md b/docset/winserver2012r2-ps/tls/New-TlsSessionTicketKey.md index 93e7aba27e..3d9330f1dd 100644 --- a/docset/winserver2012r2-ps/tls/New-TlsSessionTicketKey.md +++ b/docset/winserver2012r2-ps/tls/New-TlsSessionTicketKey.md @@ -2,7 +2,7 @@ external help file: Microsoft.WindowsAuthenticationProtocols.Commands.dll-Help.xml Module Name: TLS ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/tls/new-tlssessionticketkey?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/tls/new-tlssessionticketkey?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-TlsSessionTicketKey --- diff --git a/docset/winserver2012r2-ps/troubleshootingpack/Get-TroubleshootingPack.md b/docset/winserver2012r2-ps/troubleshootingpack/Get-TroubleshootingPack.md index 4748aac64d..d2cf017d6d 100644 --- a/docset/winserver2012r2-ps/troubleshootingpack/Get-TroubleshootingPack.md +++ b/docset/winserver2012r2-ps/troubleshootingpack/Get-TroubleshootingPack.md @@ -2,7 +2,7 @@ external help file: Microsoft.Windows.Diagnosis.TroubleshootingPack.dll-Help.xml Module Name: TroubleshootingPack ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/troubleshootingpack/get-troubleshootingpack?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/troubleshootingpack/get-troubleshootingpack?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-TroubleshootingPack --- diff --git a/docset/winserver2012r2-ps/troubleshootingpack/Invoke-TroubleshootingPack.md b/docset/winserver2012r2-ps/troubleshootingpack/Invoke-TroubleshootingPack.md index ce1c035c5e..fb6dea2634 100644 --- a/docset/winserver2012r2-ps/troubleshootingpack/Invoke-TroubleshootingPack.md +++ b/docset/winserver2012r2-ps/troubleshootingpack/Invoke-TroubleshootingPack.md @@ -2,7 +2,7 @@ external help file: Microsoft.Windows.Diagnosis.TroubleshootingPack.dll-Help.xml Module Name: TroubleshootingPack ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/troubleshootingpack/invoke-troubleshootingpack?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/troubleshootingpack/invoke-troubleshootingpack?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-TroubleshootingPack --- diff --git a/docset/winserver2012r2-ps/trustedplatformmodule/Clear-Tpm.md b/docset/winserver2012r2-ps/trustedplatformmodule/Clear-Tpm.md index 62959d93ff..eeb43bd9e2 100644 --- a/docset/winserver2012r2-ps/trustedplatformmodule/Clear-Tpm.md +++ b/docset/winserver2012r2-ps/trustedplatformmodule/Clear-Tpm.md @@ -2,7 +2,7 @@ external help file: Microsoft.Tpm.Commands.dll-Help.xml Module Name: TrustedPlatformModule ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/trustedplatformmodule/clear-tpm?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/trustedplatformmodule/clear-tpm?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-Tpm --- diff --git a/docset/winserver2012r2-ps/trustedplatformmodule/ConvertTo-TpmOwnerAuth.md b/docset/winserver2012r2-ps/trustedplatformmodule/ConvertTo-TpmOwnerAuth.md index 65ee168773..425464d031 100644 --- a/docset/winserver2012r2-ps/trustedplatformmodule/ConvertTo-TpmOwnerAuth.md +++ b/docset/winserver2012r2-ps/trustedplatformmodule/ConvertTo-TpmOwnerAuth.md @@ -2,7 +2,7 @@ external help file: Microsoft.Tpm.Commands.dll-Help.xml Module Name: TrustedPlatformModule ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/trustedplatformmodule/convertto-tpmownerauth?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/trustedplatformmodule/convertto-tpmownerauth?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: ConvertTo-TpmOwnerAuth --- diff --git a/docset/winserver2012r2-ps/trustedplatformmodule/Disable-TpmAutoProvisioning.md b/docset/winserver2012r2-ps/trustedplatformmodule/Disable-TpmAutoProvisioning.md index 56497170f0..ab5f64365c 100644 --- a/docset/winserver2012r2-ps/trustedplatformmodule/Disable-TpmAutoProvisioning.md +++ b/docset/winserver2012r2-ps/trustedplatformmodule/Disable-TpmAutoProvisioning.md @@ -2,7 +2,7 @@ external help file: Microsoft.Tpm.Commands.dll-Help.xml Module Name: TrustedPlatformModule ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/trustedplatformmodule/disable-tpmautoprovisioning?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/trustedplatformmodule/disable-tpmautoprovisioning?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-TpmAutoProvisioning --- diff --git a/docset/winserver2012r2-ps/trustedplatformmodule/Enable-TpmAutoProvisioning.md b/docset/winserver2012r2-ps/trustedplatformmodule/Enable-TpmAutoProvisioning.md index 5ce03e7dca..7af1dba724 100644 --- a/docset/winserver2012r2-ps/trustedplatformmodule/Enable-TpmAutoProvisioning.md +++ b/docset/winserver2012r2-ps/trustedplatformmodule/Enable-TpmAutoProvisioning.md @@ -2,7 +2,7 @@ external help file: Microsoft.Tpm.Commands.dll-Help.xml Module Name: TrustedPlatformModule ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/trustedplatformmodule/enable-tpmautoprovisioning?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/trustedplatformmodule/enable-tpmautoprovisioning?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-TpmAutoProvisioning --- diff --git a/docset/winserver2012r2-ps/trustedplatformmodule/Get-Tpm.md b/docset/winserver2012r2-ps/trustedplatformmodule/Get-Tpm.md index 54db9be27d..10cc18ca25 100644 --- a/docset/winserver2012r2-ps/trustedplatformmodule/Get-Tpm.md +++ b/docset/winserver2012r2-ps/trustedplatformmodule/Get-Tpm.md @@ -2,7 +2,7 @@ external help file: Microsoft.Tpm.Commands.dll-Help.xml Module Name: TrustedPlatformModule ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/trustedplatformmodule/get-tpm?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/trustedplatformmodule/get-tpm?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-Tpm --- diff --git a/docset/winserver2012r2-ps/trustedplatformmodule/Get-TpmEndorsementKeyInfo.md b/docset/winserver2012r2-ps/trustedplatformmodule/Get-TpmEndorsementKeyInfo.md index 9caf05ad4a..92b89c7c64 100644 --- a/docset/winserver2012r2-ps/trustedplatformmodule/Get-TpmEndorsementKeyInfo.md +++ b/docset/winserver2012r2-ps/trustedplatformmodule/Get-TpmEndorsementKeyInfo.md @@ -2,7 +2,7 @@ external help file: Microsoft.Tpm.Commands.dll-Help.xml Module Name: TrustedPlatformModule ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/trustedplatformmodule/get-tpmendorsementkeyinfo?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/trustedplatformmodule/get-tpmendorsementkeyinfo?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-TpmEndorsementKeyInfo --- diff --git a/docset/winserver2012r2-ps/trustedplatformmodule/Get-TpmSupportedFeature.md b/docset/winserver2012r2-ps/trustedplatformmodule/Get-TpmSupportedFeature.md index fc267f0c2f..5d50d744a0 100644 --- a/docset/winserver2012r2-ps/trustedplatformmodule/Get-TpmSupportedFeature.md +++ b/docset/winserver2012r2-ps/trustedplatformmodule/Get-TpmSupportedFeature.md @@ -2,7 +2,7 @@ external help file: Microsoft.Tpm.Commands.dll-Help.xml Module Name: TrustedPlatformModule ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/trustedplatformmodule/get-tpmsupportedfeature?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/trustedplatformmodule/get-tpmsupportedfeature?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-TpmSupportedFeature --- diff --git a/docset/winserver2012r2-ps/trustedplatformmodule/Import-TpmOwnerAuth.md b/docset/winserver2012r2-ps/trustedplatformmodule/Import-TpmOwnerAuth.md index 99a8ed28a6..76d8a5739b 100644 --- a/docset/winserver2012r2-ps/trustedplatformmodule/Import-TpmOwnerAuth.md +++ b/docset/winserver2012r2-ps/trustedplatformmodule/Import-TpmOwnerAuth.md @@ -2,7 +2,7 @@ external help file: Microsoft.Tpm.Commands.dll-Help.xml Module Name: TrustedPlatformModule ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/trustedplatformmodule/import-tpmownerauth?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/trustedplatformmodule/import-tpmownerauth?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-TpmOwnerAuth --- diff --git a/docset/winserver2012r2-ps/trustedplatformmodule/Initialize-Tpm.md b/docset/winserver2012r2-ps/trustedplatformmodule/Initialize-Tpm.md index 157ab931cf..89e48e3ed5 100644 --- a/docset/winserver2012r2-ps/trustedplatformmodule/Initialize-Tpm.md +++ b/docset/winserver2012r2-ps/trustedplatformmodule/Initialize-Tpm.md @@ -2,7 +2,7 @@ external help file: Microsoft.Tpm.Commands.dll-Help.xml Module Name: TrustedPlatformModule ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/trustedplatformmodule/initialize-tpm?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/trustedplatformmodule/initialize-tpm?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Initialize-Tpm --- diff --git a/docset/winserver2012r2-ps/trustedplatformmodule/Set-TpmOwnerAuth.md b/docset/winserver2012r2-ps/trustedplatformmodule/Set-TpmOwnerAuth.md index f236a0d1f7..9ba4df4e00 100644 --- a/docset/winserver2012r2-ps/trustedplatformmodule/Set-TpmOwnerAuth.md +++ b/docset/winserver2012r2-ps/trustedplatformmodule/Set-TpmOwnerAuth.md @@ -2,7 +2,7 @@ external help file: Microsoft.Tpm.Commands.dll-Help.xml Module Name: TrustedPlatformModule ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/trustedplatformmodule/set-tpmownerauth?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/trustedplatformmodule/set-tpmownerauth?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-TpmOwnerAuth --- diff --git a/docset/winserver2012r2-ps/trustedplatformmodule/Unblock-Tpm.md b/docset/winserver2012r2-ps/trustedplatformmodule/Unblock-Tpm.md index 33d3db3f45..12234e8eaf 100644 --- a/docset/winserver2012r2-ps/trustedplatformmodule/Unblock-Tpm.md +++ b/docset/winserver2012r2-ps/trustedplatformmodule/Unblock-Tpm.md @@ -2,7 +2,7 @@ external help file: Microsoft.Tpm.Commands.dll-Help.xml Module Name: TrustedPlatformModule ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/trustedplatformmodule/unblock-tpm?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/trustedplatformmodule/unblock-tpm?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unblock-Tpm --- diff --git a/docset/winserver2012r2-ps/updateservices/Add-WsusComputer.md b/docset/winserver2012r2-ps/updateservices/Add-WsusComputer.md index 1fb0b42526..5468e8a7d8 100644 --- a/docset/winserver2012r2-ps/updateservices/Add-WsusComputer.md +++ b/docset/winserver2012r2-ps/updateservices/Add-WsusComputer.md @@ -2,7 +2,7 @@ external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/updateservices/add-wsuscomputer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/add-wsuscomputer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WsusComputer --- diff --git a/docset/winserver2012r2-ps/updateservices/Approve-WsusUpdate.md b/docset/winserver2012r2-ps/updateservices/Approve-WsusUpdate.md index e1464e9861..7c6322d426 100644 --- a/docset/winserver2012r2-ps/updateservices/Approve-WsusUpdate.md +++ b/docset/winserver2012r2-ps/updateservices/Approve-WsusUpdate.md @@ -2,7 +2,7 @@ external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/updateservices/approve-wsusupdate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/approve-wsusupdate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Approve-WsusUpdate --- diff --git a/docset/winserver2012r2-ps/updateservices/Deny-WsusUpdate.md b/docset/winserver2012r2-ps/updateservices/Deny-WsusUpdate.md index 0345a58f7f..b414bf39ba 100644 --- a/docset/winserver2012r2-ps/updateservices/Deny-WsusUpdate.md +++ b/docset/winserver2012r2-ps/updateservices/Deny-WsusUpdate.md @@ -2,7 +2,7 @@ external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/updateservices/deny-wsusupdate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/deny-wsusupdate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Deny-WsusUpdate --- diff --git a/docset/winserver2012r2-ps/updateservices/Get-WsusClassification.md b/docset/winserver2012r2-ps/updateservices/Get-WsusClassification.md index 16a1314d80..889d92dd7f 100644 --- a/docset/winserver2012r2-ps/updateservices/Get-WsusClassification.md +++ b/docset/winserver2012r2-ps/updateservices/Get-WsusClassification.md @@ -2,7 +2,7 @@ external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/updateservices/get-wsusclassification?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/get-wsusclassification?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WsusClassification --- diff --git a/docset/winserver2012r2-ps/updateservices/Get-WsusComputer.md b/docset/winserver2012r2-ps/updateservices/Get-WsusComputer.md index fe843cbab3..fb6db5b909 100644 --- a/docset/winserver2012r2-ps/updateservices/Get-WsusComputer.md +++ b/docset/winserver2012r2-ps/updateservices/Get-WsusComputer.md @@ -2,7 +2,7 @@ external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/updateservices/get-wsuscomputer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/get-wsuscomputer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WsusComputer --- diff --git a/docset/winserver2012r2-ps/updateservices/Get-WsusProduct.md b/docset/winserver2012r2-ps/updateservices/Get-WsusProduct.md index 4984c6ea7f..210e3f21d1 100644 --- a/docset/winserver2012r2-ps/updateservices/Get-WsusProduct.md +++ b/docset/winserver2012r2-ps/updateservices/Get-WsusProduct.md @@ -2,7 +2,7 @@ external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/updateservices/get-wsusproduct?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/get-wsusproduct?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WsusProduct --- diff --git a/docset/winserver2012r2-ps/updateservices/Get-WsusServer.md b/docset/winserver2012r2-ps/updateservices/Get-WsusServer.md index 8624387b80..b944dc51b9 100644 --- a/docset/winserver2012r2-ps/updateservices/Get-WsusServer.md +++ b/docset/winserver2012r2-ps/updateservices/Get-WsusServer.md @@ -2,7 +2,7 @@ external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/updateservices/get-wsusserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/get-wsusserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WsusServer --- diff --git a/docset/winserver2012r2-ps/updateservices/Get-WsusUpdate.md b/docset/winserver2012r2-ps/updateservices/Get-WsusUpdate.md index b312aacf8e..1bb8a75965 100644 --- a/docset/winserver2012r2-ps/updateservices/Get-WsusUpdate.md +++ b/docset/winserver2012r2-ps/updateservices/Get-WsusUpdate.md @@ -2,7 +2,7 @@ external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/updateservices/get-wsusupdate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/get-wsusupdate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WsusUpdate --- diff --git a/docset/winserver2012r2-ps/updateservices/Invoke-WsusServerCleanup.md b/docset/winserver2012r2-ps/updateservices/Invoke-WsusServerCleanup.md index 4e7a003e99..be8b37b6ef 100644 --- a/docset/winserver2012r2-ps/updateservices/Invoke-WsusServerCleanup.md +++ b/docset/winserver2012r2-ps/updateservices/Invoke-WsusServerCleanup.md @@ -2,7 +2,7 @@ external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/updateservices/invoke-wsusservercleanup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/invoke-wsusservercleanup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-WsusServerCleanup --- diff --git a/docset/winserver2012r2-ps/updateservices/Set-WsusClassification.md b/docset/winserver2012r2-ps/updateservices/Set-WsusClassification.md index ee1296f423..4bf1b96881 100644 --- a/docset/winserver2012r2-ps/updateservices/Set-WsusClassification.md +++ b/docset/winserver2012r2-ps/updateservices/Set-WsusClassification.md @@ -2,7 +2,7 @@ external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/updateservices/set-wsusclassification?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/set-wsusclassification?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WsusClassification --- diff --git a/docset/winserver2012r2-ps/updateservices/Set-WsusProduct.md b/docset/winserver2012r2-ps/updateservices/Set-WsusProduct.md index 3064389a77..1e678ce3ab 100644 --- a/docset/winserver2012r2-ps/updateservices/Set-WsusProduct.md +++ b/docset/winserver2012r2-ps/updateservices/Set-WsusProduct.md @@ -2,7 +2,7 @@ external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/updateservices/set-wsusproduct?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/set-wsusproduct?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WsusProduct --- diff --git a/docset/winserver2012r2-ps/updateservices/Set-WsusServerSynchronization.md b/docset/winserver2012r2-ps/updateservices/Set-WsusServerSynchronization.md index 15202a0edb..cf6f2d5b86 100644 --- a/docset/winserver2012r2-ps/updateservices/Set-WsusServerSynchronization.md +++ b/docset/winserver2012r2-ps/updateservices/Set-WsusServerSynchronization.md @@ -2,7 +2,7 @@ external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/updateservices/set-wsusserversynchronization?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/set-wsusserversynchronization?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WsusServerSynchronization --- diff --git a/docset/winserver2012r2-ps/useraccesslogging/Disable-Ual.md b/docset/winserver2012r2-ps/useraccesslogging/Disable-Ual.md index eaa30b330b..8d1416df83 100644 --- a/docset/winserver2012r2-ps/useraccesslogging/Disable-Ual.md +++ b/docset/winserver2012r2-ps/useraccesslogging/Disable-Ual.md @@ -2,7 +2,7 @@ external help file: MsftUal_Admin.cdxml-help.xml Module Name: UserAccessLogging ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/disable-ual?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/disable-ual?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-Ual --- diff --git a/docset/winserver2012r2-ps/useraccesslogging/Enable-Ual.md b/docset/winserver2012r2-ps/useraccesslogging/Enable-Ual.md index 7749a5f329..b00faa0f35 100644 --- a/docset/winserver2012r2-ps/useraccesslogging/Enable-Ual.md +++ b/docset/winserver2012r2-ps/useraccesslogging/Enable-Ual.md @@ -2,7 +2,7 @@ external help file: MsftUal_Admin.cdxml-help.xml Module Name: UserAccessLogging ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/enable-ual?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/enable-ual?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-Ual --- diff --git a/docset/winserver2012r2-ps/useraccesslogging/Get-Ual.md b/docset/winserver2012r2-ps/useraccesslogging/Get-Ual.md index 84f5797875..e448fa9248 100644 --- a/docset/winserver2012r2-ps/useraccesslogging/Get-Ual.md +++ b/docset/winserver2012r2-ps/useraccesslogging/Get-Ual.md @@ -2,7 +2,7 @@ external help file: MsftUal_Admin.cdxml-help.xml Module Name: UserAccessLogging ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ual?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ual?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-Ual --- diff --git a/docset/winserver2012r2-ps/useraccesslogging/Get-UalDailyAccess.md b/docset/winserver2012r2-ps/useraccesslogging/Get-UalDailyAccess.md index 8b6bcfbfd1..354cb099d5 100644 --- a/docset/winserver2012r2-ps/useraccesslogging/Get-UalDailyAccess.md +++ b/docset/winserver2012r2-ps/useraccesslogging/Get-UalDailyAccess.md @@ -2,7 +2,7 @@ external help file: MsftUal_DailyAccess.cdxml-help.xml Module Name: UserAccessLogging ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ualdailyaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ualdailyaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UalDailyAccess --- diff --git a/docset/winserver2012r2-ps/useraccesslogging/Get-UalDailyDeviceAccess.md b/docset/winserver2012r2-ps/useraccesslogging/Get-UalDailyDeviceAccess.md index 6e4bdd7342..f193af6fd5 100644 --- a/docset/winserver2012r2-ps/useraccesslogging/Get-UalDailyDeviceAccess.md +++ b/docset/winserver2012r2-ps/useraccesslogging/Get-UalDailyDeviceAccess.md @@ -2,7 +2,7 @@ external help file: MsftUal_DailyDeviceAccess.cdxml-help.xml Module Name: UserAccessLogging ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ualdailydeviceaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ualdailydeviceaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UalDailyDeviceAccess --- diff --git a/docset/winserver2012r2-ps/useraccesslogging/Get-UalDailyUserAccess.md b/docset/winserver2012r2-ps/useraccesslogging/Get-UalDailyUserAccess.md index 7663f50d34..d5823401fb 100644 --- a/docset/winserver2012r2-ps/useraccesslogging/Get-UalDailyUserAccess.md +++ b/docset/winserver2012r2-ps/useraccesslogging/Get-UalDailyUserAccess.md @@ -2,7 +2,7 @@ external help file: MsftUal_DailyUserAccess.cdxml-help.xml Module Name: UserAccessLogging ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ualdailyuseraccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ualdailyuseraccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UalDailyUserAccess --- diff --git a/docset/winserver2012r2-ps/useraccesslogging/Get-UalDeviceAccess.md b/docset/winserver2012r2-ps/useraccesslogging/Get-UalDeviceAccess.md index 8360481d6f..c9e0733a5d 100644 --- a/docset/winserver2012r2-ps/useraccesslogging/Get-UalDeviceAccess.md +++ b/docset/winserver2012r2-ps/useraccesslogging/Get-UalDeviceAccess.md @@ -2,7 +2,7 @@ external help file: MsftUal_DeviceAccess.cdxml-help.xml Module Name: UserAccessLogging ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ualdeviceaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ualdeviceaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UalDeviceAccess --- diff --git a/docset/winserver2012r2-ps/useraccesslogging/Get-UalDns.md b/docset/winserver2012r2-ps/useraccesslogging/Get-UalDns.md index 9427cd13ea..1610df5805 100644 --- a/docset/winserver2012r2-ps/useraccesslogging/Get-UalDns.md +++ b/docset/winserver2012r2-ps/useraccesslogging/Get-UalDns.md @@ -2,7 +2,7 @@ external help file: MsftUal_Dns.cdxml-help.xml Module Name: UserAccessLogging ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ualdns?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ualdns?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UalDns --- diff --git a/docset/winserver2012r2-ps/useraccesslogging/Get-UalHyperV.md b/docset/winserver2012r2-ps/useraccesslogging/Get-UalHyperV.md index a5aaa87b8c..e00a70830b 100644 --- a/docset/winserver2012r2-ps/useraccesslogging/Get-UalHyperV.md +++ b/docset/winserver2012r2-ps/useraccesslogging/Get-UalHyperV.md @@ -2,7 +2,7 @@ external help file: MsftUal_HyperV.cdxml-help.xml Module Name: UserAccessLogging ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ualhyperv?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ualhyperv?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UalHyperV --- diff --git a/docset/winserver2012r2-ps/useraccesslogging/Get-UalOverview.md b/docset/winserver2012r2-ps/useraccesslogging/Get-UalOverview.md index 168be3eea4..a1f2d66422 100644 --- a/docset/winserver2012r2-ps/useraccesslogging/Get-UalOverview.md +++ b/docset/winserver2012r2-ps/useraccesslogging/Get-UalOverview.md @@ -2,7 +2,7 @@ external help file: MsftUal_Overview.cdxml-help.xml Module Name: UserAccessLogging ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ualoverview?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ualoverview?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UalOverview --- diff --git a/docset/winserver2012r2-ps/useraccesslogging/Get-UalServerDevice.md b/docset/winserver2012r2-ps/useraccesslogging/Get-UalServerDevice.md index 27bc7152ae..2d3a7e47aa 100644 --- a/docset/winserver2012r2-ps/useraccesslogging/Get-UalServerDevice.md +++ b/docset/winserver2012r2-ps/useraccesslogging/Get-UalServerDevice.md @@ -2,7 +2,7 @@ external help file: MsftUal_ServerDevice.cdxml-help.xml Module Name: UserAccessLogging ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ualserverdevice?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ualserverdevice?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UalServerDevice --- diff --git a/docset/winserver2012r2-ps/useraccesslogging/Get-UalServerUser.md b/docset/winserver2012r2-ps/useraccesslogging/Get-UalServerUser.md index 31851ed08f..f45cfb513c 100644 --- a/docset/winserver2012r2-ps/useraccesslogging/Get-UalServerUser.md +++ b/docset/winserver2012r2-ps/useraccesslogging/Get-UalServerUser.md @@ -2,7 +2,7 @@ external help file: MsftUal_ServerUser.cdxml-help.xml Module Name: UserAccessLogging ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ualserveruser?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ualserveruser?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UalServerUser --- diff --git a/docset/winserver2012r2-ps/useraccesslogging/Get-UalSystemId.md b/docset/winserver2012r2-ps/useraccesslogging/Get-UalSystemId.md index 0e2e55c137..07afa04681 100644 --- a/docset/winserver2012r2-ps/useraccesslogging/Get-UalSystemId.md +++ b/docset/winserver2012r2-ps/useraccesslogging/Get-UalSystemId.md @@ -2,7 +2,7 @@ external help file: MsftUal_SystemId.cdxml-help.xml Module Name: UserAccessLogging ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ualsystemid?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ualsystemid?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UalSystemId --- diff --git a/docset/winserver2012r2-ps/useraccesslogging/Get-UalUserAccess.md b/docset/winserver2012r2-ps/useraccesslogging/Get-UalUserAccess.md index e079d59db0..1b07756871 100644 --- a/docset/winserver2012r2-ps/useraccesslogging/Get-UalUserAccess.md +++ b/docset/winserver2012r2-ps/useraccesslogging/Get-UalUserAccess.md @@ -2,7 +2,7 @@ external help file: MsftUal_UserAccess.cdxml-help.xml Module Name: UserAccessLogging ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ualuseraccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ualuseraccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UalUserAccess --- diff --git a/docset/winserver2012r2-ps/vpnclient/Add-VpnConnection.md b/docset/winserver2012r2-ps/vpnclient/Add-VpnConnection.md index 40ef381dc5..7783147379 100644 --- a/docset/winserver2012r2-ps/vpnclient/Add-VpnConnection.md +++ b/docset/winserver2012r2-ps/vpnclient/Add-VpnConnection.md @@ -2,7 +2,7 @@ external help file: PS_VpnConnection_v1.0.0.cdxml-help.xml Module Name: VpnClient ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/vpnclient/add-vpnconnection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/add-vpnconnection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VpnConnection --- diff --git a/docset/winserver2012r2-ps/vpnclient/Add-VpnConnectionRoute.md b/docset/winserver2012r2-ps/vpnclient/Add-VpnConnectionRoute.md index 81a1519d59..9aff54fa92 100644 --- a/docset/winserver2012r2-ps/vpnclient/Add-VpnConnectionRoute.md +++ b/docset/winserver2012r2-ps/vpnclient/Add-VpnConnectionRoute.md @@ -2,7 +2,7 @@ external help file: PS_VpnConnectionRoute_v1.0.cdxml-help.xml Module Name: VpnClient ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/vpnclient/add-vpnconnectionroute?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/add-vpnconnectionroute?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VpnConnectionRoute --- diff --git a/docset/winserver2012r2-ps/vpnclient/Add-VpnConnectionTriggerApplication.md b/docset/winserver2012r2-ps/vpnclient/Add-VpnConnectionTriggerApplication.md index e8523151a7..b982925338 100644 --- a/docset/winserver2012r2-ps/vpnclient/Add-VpnConnectionTriggerApplication.md +++ b/docset/winserver2012r2-ps/vpnclient/Add-VpnConnectionTriggerApplication.md @@ -2,7 +2,7 @@ external help file: PS_VpnConnectionTriggerApplication_v1.0.cdxml-help.xml Module Name: VpnClient ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/vpnclient/add-vpnconnectiontriggerapplication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/add-vpnconnectiontriggerapplication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VpnConnectionTriggerApplication --- diff --git a/docset/winserver2012r2-ps/vpnclient/Add-VpnConnectionTriggerTrustedNetwork.md b/docset/winserver2012r2-ps/vpnclient/Add-VpnConnectionTriggerTrustedNetwork.md index 4f4ac693cc..311101223c 100644 --- a/docset/winserver2012r2-ps/vpnclient/Add-VpnConnectionTriggerTrustedNetwork.md +++ b/docset/winserver2012r2-ps/vpnclient/Add-VpnConnectionTriggerTrustedNetwork.md @@ -2,7 +2,7 @@ external help file: PS_VpnConnectionTriggerTrustedNetwork_v1.0.cdxml-help.xml Module Name: VpnClient ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/vpnclient/add-vpnconnectiontriggertrustednetwork?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/add-vpnconnectiontriggertrustednetwork?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VpnConnectionTriggerTrustedNetwork --- diff --git a/docset/winserver2012r2-ps/vpnclient/Get-VpnConnection.md b/docset/winserver2012r2-ps/vpnclient/Get-VpnConnection.md index f7b57474f2..a402e25888 100644 --- a/docset/winserver2012r2-ps/vpnclient/Get-VpnConnection.md +++ b/docset/winserver2012r2-ps/vpnclient/Get-VpnConnection.md @@ -2,7 +2,7 @@ external help file: PS_VpnConnection_v1.0.0.cdxml-help.xml Module Name: VpnClient ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/vpnclient/get-vpnconnection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/get-vpnconnection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VpnConnection --- diff --git a/docset/winserver2012r2-ps/vpnclient/Get-VpnConnectionTrigger.md b/docset/winserver2012r2-ps/vpnclient/Get-VpnConnectionTrigger.md index f4d803ecaf..514ea68adc 100644 --- a/docset/winserver2012r2-ps/vpnclient/Get-VpnConnectionTrigger.md +++ b/docset/winserver2012r2-ps/vpnclient/Get-VpnConnectionTrigger.md @@ -2,7 +2,7 @@ external help file: PS_VpnConnectionTrigger_v1.0.cdxml-help.xml Module Name: VpnClient ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/vpnclient/get-vpnconnectiontrigger?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/get-vpnconnectiontrigger?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VpnConnectionTrigger --- diff --git a/docset/winserver2012r2-ps/vpnclient/New-EapConfiguration.md b/docset/winserver2012r2-ps/vpnclient/New-EapConfiguration.md index fc17c123c9..42c7f6f3ee 100644 --- a/docset/winserver2012r2-ps/vpnclient/New-EapConfiguration.md +++ b/docset/winserver2012r2-ps/vpnclient/New-EapConfiguration.md @@ -2,7 +2,7 @@ external help file: PS_EapConfiguration_v1.0.0.cdxml-help.xml Module Name: VpnClient ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/vpnclient/new-eapconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/new-eapconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-EapConfiguration --- diff --git a/docset/winserver2012r2-ps/vpnclient/New-VpnServerAddress.md b/docset/winserver2012r2-ps/vpnclient/New-VpnServerAddress.md index df72b45268..fb5e872e85 100644 --- a/docset/winserver2012r2-ps/vpnclient/New-VpnServerAddress.md +++ b/docset/winserver2012r2-ps/vpnclient/New-VpnServerAddress.md @@ -2,7 +2,7 @@ external help file: PS_VpnServerAddress_v1.0.cdxml-help.xml Module Name: VpnClient ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/vpnclient/new-vpnserveraddress?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/new-vpnserveraddress?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VpnServerAddress --- diff --git a/docset/winserver2012r2-ps/vpnclient/Remove-VpnConnection.md b/docset/winserver2012r2-ps/vpnclient/Remove-VpnConnection.md index 8e2241b72e..9ce4d0008a 100644 --- a/docset/winserver2012r2-ps/vpnclient/Remove-VpnConnection.md +++ b/docset/winserver2012r2-ps/vpnclient/Remove-VpnConnection.md @@ -2,7 +2,7 @@ external help file: PS_VpnConnection_v1.0.0.cdxml-help.xml Module Name: VpnClient ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/vpnclient/remove-vpnconnection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/remove-vpnconnection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VpnConnection --- diff --git a/docset/winserver2012r2-ps/vpnclient/Remove-VpnConnectionRoute.md b/docset/winserver2012r2-ps/vpnclient/Remove-VpnConnectionRoute.md index 52f5347246..d69436d202 100644 --- a/docset/winserver2012r2-ps/vpnclient/Remove-VpnConnectionRoute.md +++ b/docset/winserver2012r2-ps/vpnclient/Remove-VpnConnectionRoute.md @@ -2,7 +2,7 @@ external help file: PS_VpnConnectionRoute_v1.0.cdxml-help.xml Module Name: VpnClient ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/vpnclient/remove-vpnconnectionroute?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/remove-vpnconnectionroute?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VpnConnectionRoute --- diff --git a/docset/winserver2012r2-ps/vpnclient/Remove-VpnConnectionTriggerApplication.md b/docset/winserver2012r2-ps/vpnclient/Remove-VpnConnectionTriggerApplication.md index 54dde424c7..91eaf2f984 100644 --- a/docset/winserver2012r2-ps/vpnclient/Remove-VpnConnectionTriggerApplication.md +++ b/docset/winserver2012r2-ps/vpnclient/Remove-VpnConnectionTriggerApplication.md @@ -2,7 +2,7 @@ external help file: PS_VpnConnectionTriggerApplication_v1.0.cdxml-help.xml Module Name: VpnClient ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/vpnclient/remove-vpnconnectiontriggerapplication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/remove-vpnconnectiontriggerapplication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VpnConnectionTriggerApplication --- diff --git a/docset/winserver2012r2-ps/vpnclient/Remove-VpnConnectionTriggerTrustedNetwork.md b/docset/winserver2012r2-ps/vpnclient/Remove-VpnConnectionTriggerTrustedNetwork.md index bdbba98e92..e64a3a250c 100644 --- a/docset/winserver2012r2-ps/vpnclient/Remove-VpnConnectionTriggerTrustedNetwork.md +++ b/docset/winserver2012r2-ps/vpnclient/Remove-VpnConnectionTriggerTrustedNetwork.md @@ -2,7 +2,7 @@ external help file: PS_VpnConnectionTriggerTrustedNetwork_v1.0.cdxml-help.xml Module Name: VpnClient ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/vpnclient/remove-vpnconnectiontriggertrustednetwork?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/remove-vpnconnectiontriggertrustednetwork?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VpnConnectionTriggerTrustedNetwork --- diff --git a/docset/winserver2012r2-ps/vpnclient/Set-VpnConnection.md b/docset/winserver2012r2-ps/vpnclient/Set-VpnConnection.md index c09b0c7e1a..df21bdfb0c 100644 --- a/docset/winserver2012r2-ps/vpnclient/Set-VpnConnection.md +++ b/docset/winserver2012r2-ps/vpnclient/Set-VpnConnection.md @@ -2,7 +2,7 @@ external help file: PS_VpnConnection_v1.0.0.cdxml-help.xml Module Name: VpnClient ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/vpnclient/set-vpnconnection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/set-vpnconnection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VpnConnection --- diff --git a/docset/winserver2012r2-ps/vpnclient/Set-VpnConnectionIPsecConfiguration.md b/docset/winserver2012r2-ps/vpnclient/Set-VpnConnectionIPsecConfiguration.md index c3c0d13c80..6f7b216fdf 100644 --- a/docset/winserver2012r2-ps/vpnclient/Set-VpnConnectionIPsecConfiguration.md +++ b/docset/winserver2012r2-ps/vpnclient/Set-VpnConnectionIPsecConfiguration.md @@ -2,7 +2,7 @@ external help file: PS_VpnConnectionIPsecConfiguration_v1.0.cdxml-help.xml Module Name: VpnClient ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/vpnclient/set-vpnconnectionipsecconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/set-vpnconnectionipsecconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VpnConnectionIPsecConfiguration --- diff --git a/docset/winserver2012r2-ps/vpnclient/Set-VpnConnectionProxy.md b/docset/winserver2012r2-ps/vpnclient/Set-VpnConnectionProxy.md index ddf5a83050..ca9c1854ad 100644 --- a/docset/winserver2012r2-ps/vpnclient/Set-VpnConnectionProxy.md +++ b/docset/winserver2012r2-ps/vpnclient/Set-VpnConnectionProxy.md @@ -2,7 +2,7 @@ external help file: PS_VpnConnectionProxy_v1.0.cdxml-help.xml Module Name: VpnClient ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/vpnclient/set-vpnconnectionproxy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/set-vpnconnectionproxy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VpnConnectionProxy --- diff --git a/docset/winserver2012r2-ps/waspsext/Get-WASAssessment.md b/docset/winserver2012r2-ps/waspsext/Get-WASAssessment.md index 40f9d6c6b2..018f37f94d 100644 --- a/docset/winserver2012r2-ps/waspsext/Get-WASAssessment.md +++ b/docset/winserver2012r2-ps/waspsext/Get-WASAssessment.md @@ -2,7 +2,7 @@ external help file: Microsoft.Assessments.WAS.PowerShell.dll-Help.xml Module Name: WasPSExt ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/waspsext/get-wasassessment?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/waspsext/get-wasassessment?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WASAssessment --- diff --git a/docset/winserver2012r2-ps/waspsext/Get-WASComputer.md b/docset/winserver2012r2-ps/waspsext/Get-WASComputer.md index c5c91ef20e..29136867c0 100644 --- a/docset/winserver2012r2-ps/waspsext/Get-WASComputer.md +++ b/docset/winserver2012r2-ps/waspsext/Get-WASComputer.md @@ -2,7 +2,7 @@ external help file: Microsoft.Assessments.WAS.PowerShell.dll-Help.xml Module Name: WasPSExt ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/waspsext/get-wascomputer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/waspsext/get-wascomputer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WASComputer --- diff --git a/docset/winserver2012r2-ps/waspsext/Get-WASImage.md b/docset/winserver2012r2-ps/waspsext/Get-WASImage.md index ea49c726b5..1d4adb9df4 100644 --- a/docset/winserver2012r2-ps/waspsext/Get-WASImage.md +++ b/docset/winserver2012r2-ps/waspsext/Get-WASImage.md @@ -2,7 +2,7 @@ external help file: Microsoft.Assessments.WAS.PowerShell.dll-Help.xml Module Name: WasPSExt ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/waspsext/get-wasimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/waspsext/get-wasimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WASImage --- diff --git a/docset/winserver2012r2-ps/waspsext/Get-WASJob.md b/docset/winserver2012r2-ps/waspsext/Get-WASJob.md index 9142b90f60..277fb94255 100644 --- a/docset/winserver2012r2-ps/waspsext/Get-WASJob.md +++ b/docset/winserver2012r2-ps/waspsext/Get-WASJob.md @@ -2,7 +2,7 @@ external help file: Microsoft.Assessments.WAS.PowerShell.dll-Help.xml Module Name: WasPSExt ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/waspsext/get-wasjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/waspsext/get-wasjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WASJob --- diff --git a/docset/winserver2012r2-ps/waspsext/Get-WASJobInstance.md b/docset/winserver2012r2-ps/waspsext/Get-WASJobInstance.md index f565e23e39..cac4da6ce0 100644 --- a/docset/winserver2012r2-ps/waspsext/Get-WASJobInstance.md +++ b/docset/winserver2012r2-ps/waspsext/Get-WASJobInstance.md @@ -2,7 +2,7 @@ external help file: Microsoft.Assessments.WAS.PowerShell.dll-Help.xml Module Name: WasPSExt ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/waspsext/get-wasjobinstance?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/waspsext/get-wasjobinstance?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WASJobInstance --- diff --git a/docset/winserver2012r2-ps/waspsext/Get-WASJobInstanceStatus.md b/docset/winserver2012r2-ps/waspsext/Get-WASJobInstanceStatus.md index 976eb433f2..7808c62268 100644 --- a/docset/winserver2012r2-ps/waspsext/Get-WASJobInstanceStatus.md +++ b/docset/winserver2012r2-ps/waspsext/Get-WASJobInstanceStatus.md @@ -2,7 +2,7 @@ external help file: Microsoft.Assessments.WAS.PowerShell.dll-Help.xml Module Name: WasPSExt ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/waspsext/get-wasjobinstancestatus?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/waspsext/get-wasjobinstancestatus?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WASJobInstanceStatus --- diff --git a/docset/winserver2012r2-ps/waspsext/Invoke-WASJob.md b/docset/winserver2012r2-ps/waspsext/Invoke-WASJob.md index e28c69f474..2e37a5d9db 100644 --- a/docset/winserver2012r2-ps/waspsext/Invoke-WASJob.md +++ b/docset/winserver2012r2-ps/waspsext/Invoke-WASJob.md @@ -2,7 +2,7 @@ external help file: Microsoft.Assessments.WAS.PowerShell.dll-Help.xml Module Name: WasPSExt ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/waspsext/invoke-wasjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/waspsext/invoke-wasjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-WASJob --- diff --git a/docset/winserver2012r2-ps/waspsext/Register-WASImage.md b/docset/winserver2012r2-ps/waspsext/Register-WASImage.md index 72598b14c9..00b080e062 100644 --- a/docset/winserver2012r2-ps/waspsext/Register-WASImage.md +++ b/docset/winserver2012r2-ps/waspsext/Register-WASImage.md @@ -2,7 +2,7 @@ external help file: Microsoft.Assessments.WAS.PowerShell.dll-Help.xml Module Name: WasPSExt ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/waspsext/register-wasimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/waspsext/register-wasimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Register-WASImage --- diff --git a/docset/winserver2012r2-ps/waspsext/Reset-WASComputer.md b/docset/winserver2012r2-ps/waspsext/Reset-WASComputer.md index 5c43ea853d..7c55be7711 100644 --- a/docset/winserver2012r2-ps/waspsext/Reset-WASComputer.md +++ b/docset/winserver2012r2-ps/waspsext/Reset-WASComputer.md @@ -2,7 +2,7 @@ external help file: Microsoft.Assessments.WAS.PowerShell.dll-Help.xml Module Name: WasPSExt ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/waspsext/reset-wascomputer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/waspsext/reset-wascomputer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-WASComputer --- diff --git a/docset/winserver2012r2-ps/waspsext/Resume-WASComputer.md b/docset/winserver2012r2-ps/waspsext/Resume-WASComputer.md index bd7f91c10c..dadcc07c78 100644 --- a/docset/winserver2012r2-ps/waspsext/Resume-WASComputer.md +++ b/docset/winserver2012r2-ps/waspsext/Resume-WASComputer.md @@ -2,7 +2,7 @@ external help file: Microsoft.Assessments.WAS.PowerShell.dll-Help.xml Module Name: WasPSExt ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/waspsext/resume-wascomputer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/waspsext/resume-wascomputer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-WASComputer --- diff --git a/docset/winserver2012r2-ps/waspsext/Skip-WASJobInstance.md b/docset/winserver2012r2-ps/waspsext/Skip-WASJobInstance.md index 267d843174..23e6bbe77a 100644 --- a/docset/winserver2012r2-ps/waspsext/Skip-WASJobInstance.md +++ b/docset/winserver2012r2-ps/waspsext/Skip-WASJobInstance.md @@ -2,7 +2,7 @@ external help file: Microsoft.Assessments.WAS.PowerShell.dll-Help.xml Module Name: WasPSExt ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/waspsext/skip-wasjobinstance?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/waspsext/skip-wasjobinstance?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Skip-WASJobInstance --- diff --git a/docset/winserver2012r2-ps/waspsext/Stop-WASJobInstance.md b/docset/winserver2012r2-ps/waspsext/Stop-WASJobInstance.md index e9e175acf5..e8b37dddef 100644 --- a/docset/winserver2012r2-ps/waspsext/Stop-WASJobInstance.md +++ b/docset/winserver2012r2-ps/waspsext/Stop-WASJobInstance.md @@ -2,7 +2,7 @@ external help file: Microsoft.Assessments.WAS.PowerShell.dll-Help.xml Module Name: WasPSExt ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/waspsext/stop-wasjobinstance?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/waspsext/stop-wasjobinstance?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-WASJobInstance --- diff --git a/docset/winserver2012r2-ps/waspsext/Update-WASJob.md b/docset/winserver2012r2-ps/waspsext/Update-WASJob.md index 624738ecfa..9007192ec5 100644 --- a/docset/winserver2012r2-ps/waspsext/Update-WASJob.md +++ b/docset/winserver2012r2-ps/waspsext/Update-WASJob.md @@ -2,7 +2,7 @@ external help file: Microsoft.Assessments.WAS.PowerShell.dll-Help.xml Module Name: WasPSExt ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/waspsext/update-wasjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/waspsext/update-wasjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-WASJob --- diff --git a/docset/winserver2012r2-ps/wdac/Add-OdbcDsn.md b/docset/winserver2012r2-ps/wdac/Add-OdbcDsn.md index 5c65816cc0..2ab96ead2f 100644 --- a/docset/winserver2012r2-ps/wdac/Add-OdbcDsn.md +++ b/docset/winserver2012r2-ps/wdac/Add-OdbcDsn.md @@ -2,7 +2,7 @@ external help file: MSFT_OdbcDsnTask_v1.0.cdxml-help.xml Module Name: Wdac ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/wdac/add-odbcdsn?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/add-odbcdsn?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-OdbcDsn --- diff --git a/docset/winserver2012r2-ps/wdac/Disable-OdbcPerfCounter.md b/docset/winserver2012r2-ps/wdac/Disable-OdbcPerfCounter.md index 1c47d69adf..c76a0320de 100644 --- a/docset/winserver2012r2-ps/wdac/Disable-OdbcPerfCounter.md +++ b/docset/winserver2012r2-ps/wdac/Disable-OdbcPerfCounter.md @@ -2,7 +2,7 @@ external help file: MSFT_OdbcPerfCounterTask_v1.0.cdxml-help.xml Module Name: Wdac ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/wdac/disable-odbcperfcounter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/disable-odbcperfcounter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-OdbcPerfCounter --- diff --git a/docset/winserver2012r2-ps/wdac/Disable-WdacBidTrace.md b/docset/winserver2012r2-ps/wdac/Disable-WdacBidTrace.md index 6a4400031c..39cb1929c2 100644 --- a/docset/winserver2012r2-ps/wdac/Disable-WdacBidTrace.md +++ b/docset/winserver2012r2-ps/wdac/Disable-WdacBidTrace.md @@ -2,7 +2,7 @@ external help file: MSFT_WdacBidTraceTask_v1.0.cdxml-help.xml Module Name: Wdac ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/wdac/disable-wdacbidtrace?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/disable-wdacbidtrace?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WdacBidTrace --- diff --git a/docset/winserver2012r2-ps/wdac/Enable-OdbcPerfCounter.md b/docset/winserver2012r2-ps/wdac/Enable-OdbcPerfCounter.md index 55f41508d5..5a58740028 100644 --- a/docset/winserver2012r2-ps/wdac/Enable-OdbcPerfCounter.md +++ b/docset/winserver2012r2-ps/wdac/Enable-OdbcPerfCounter.md @@ -2,7 +2,7 @@ external help file: MSFT_OdbcPerfCounterTask_v1.0.cdxml-help.xml Module Name: Wdac ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/wdac/enable-odbcperfcounter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/enable-odbcperfcounter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-OdbcPerfCounter --- diff --git a/docset/winserver2012r2-ps/wdac/Enable-WdacBidTrace.md b/docset/winserver2012r2-ps/wdac/Enable-WdacBidTrace.md index 49f8325086..8a31ec662b 100644 --- a/docset/winserver2012r2-ps/wdac/Enable-WdacBidTrace.md +++ b/docset/winserver2012r2-ps/wdac/Enable-WdacBidTrace.md @@ -2,7 +2,7 @@ external help file: MSFT_WdacBidTraceTask_v1.0.cdxml-help.xml Module Name: Wdac ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/wdac/enable-wdacbidtrace?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/enable-wdacbidtrace?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WdacBidTrace --- diff --git a/docset/winserver2012r2-ps/wdac/Get-OdbcDriver.md b/docset/winserver2012r2-ps/wdac/Get-OdbcDriver.md index 7bc78936f5..70ffade3bf 100644 --- a/docset/winserver2012r2-ps/wdac/Get-OdbcDriver.md +++ b/docset/winserver2012r2-ps/wdac/Get-OdbcDriver.md @@ -2,7 +2,7 @@ external help file: MSFT_OdbcDriverTask_v1.0.cdxml-help.xml Module Name: Wdac ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/wdac/get-odbcdriver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/get-odbcdriver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-OdbcDriver --- diff --git a/docset/winserver2012r2-ps/wdac/Get-OdbcDsn.md b/docset/winserver2012r2-ps/wdac/Get-OdbcDsn.md index 91dc945b5d..d13a38d4db 100644 --- a/docset/winserver2012r2-ps/wdac/Get-OdbcDsn.md +++ b/docset/winserver2012r2-ps/wdac/Get-OdbcDsn.md @@ -2,7 +2,7 @@ external help file: MSFT_OdbcDsnTask_v1.0.cdxml-help.xml Module Name: Wdac ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/wdac/get-odbcdsn?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/get-odbcdsn?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-OdbcDsn --- diff --git a/docset/winserver2012r2-ps/wdac/Get-OdbcPerfCounter.md b/docset/winserver2012r2-ps/wdac/Get-OdbcPerfCounter.md index 64c57505f8..4bafff6620 100644 --- a/docset/winserver2012r2-ps/wdac/Get-OdbcPerfCounter.md +++ b/docset/winserver2012r2-ps/wdac/Get-OdbcPerfCounter.md @@ -2,7 +2,7 @@ external help file: MSFT_OdbcPerfCounterTask_v1.0.cdxml-help.xml Module Name: Wdac ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/wdac/get-odbcperfcounter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/get-odbcperfcounter?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-OdbcPerfCounter --- diff --git a/docset/winserver2012r2-ps/wdac/Get-WdacBidTrace.md b/docset/winserver2012r2-ps/wdac/Get-WdacBidTrace.md index ffca19f834..a01630df10 100644 --- a/docset/winserver2012r2-ps/wdac/Get-WdacBidTrace.md +++ b/docset/winserver2012r2-ps/wdac/Get-WdacBidTrace.md @@ -2,7 +2,7 @@ external help file: MSFT_WdacBidTraceTask_v1.0.cdxml-help.xml Module Name: Wdac ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/wdac/get-wdacbidtrace?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/get-wdacbidtrace?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WdacBidTrace --- diff --git a/docset/winserver2012r2-ps/wdac/Remove-OdbcDsn.md b/docset/winserver2012r2-ps/wdac/Remove-OdbcDsn.md index 80ef6e4a63..6bcb4bec5f 100644 --- a/docset/winserver2012r2-ps/wdac/Remove-OdbcDsn.md +++ b/docset/winserver2012r2-ps/wdac/Remove-OdbcDsn.md @@ -2,7 +2,7 @@ external help file: MSFT_OdbcDsnTask_v1.0.cdxml-help.xml Module Name: Wdac ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/wdac/remove-odbcdsn?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/remove-odbcdsn?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-OdbcDsn --- diff --git a/docset/winserver2012r2-ps/wdac/Set-OdbcDriver.md b/docset/winserver2012r2-ps/wdac/Set-OdbcDriver.md index d8ce4aaa62..1840da9e40 100644 --- a/docset/winserver2012r2-ps/wdac/Set-OdbcDriver.md +++ b/docset/winserver2012r2-ps/wdac/Set-OdbcDriver.md @@ -2,7 +2,7 @@ external help file: MSFT_OdbcDriverTask_v1.0.cdxml-help.xml Module Name: Wdac ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/wdac/set-odbcdriver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/set-odbcdriver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-OdbcDriver --- diff --git a/docset/winserver2012r2-ps/wdac/Set-OdbcDsn.md b/docset/winserver2012r2-ps/wdac/Set-OdbcDsn.md index 1f6275dee2..def97f1a86 100644 --- a/docset/winserver2012r2-ps/wdac/Set-OdbcDsn.md +++ b/docset/winserver2012r2-ps/wdac/Set-OdbcDsn.md @@ -2,7 +2,7 @@ external help file: MSFT_OdbcDsnTask_v1.0.cdxml-help.xml Module Name: Wdac ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/wdac/set-odbcdsn?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/set-odbcdsn?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-OdbcDsn --- diff --git a/docset/winserver2012r2-ps/wds/Add-WdsDriverPackage.md b/docset/winserver2012r2-ps/wds/Add-WdsDriverPackage.md index c20979bda4..91d6cfb623 100644 --- a/docset/winserver2012r2-ps/wds/Add-WdsDriverPackage.md +++ b/docset/winserver2012r2-ps/wds/Add-WdsDriverPackage.md @@ -2,7 +2,7 @@ external help file: MSFT_WdsDriverPackage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/wds/add-wdsdriverpackage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/add-wdsdriverpackage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WdsDriverPackage --- diff --git a/docset/winserver2012r2-ps/wds/Approve-WdsClient.md b/docset/winserver2012r2-ps/wds/Approve-WdsClient.md index 7ffea1125d..a9ef0d63eb 100644 --- a/docset/winserver2012r2-ps/wds/Approve-WdsClient.md +++ b/docset/winserver2012r2-ps/wds/Approve-WdsClient.md @@ -2,7 +2,7 @@ external help file: MSFT_WdsClient_v1.0.cdxml-help.xml Module Name: WDS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/wds/approve-wdsclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/approve-wdsclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Approve-WdsClient --- diff --git a/docset/winserver2012r2-ps/wds/Copy-WdsInstallImage.md b/docset/winserver2012r2-ps/wds/Copy-WdsInstallImage.md index 3fe6ef2d10..660a466f86 100644 --- a/docset/winserver2012r2-ps/wds/Copy-WdsInstallImage.md +++ b/docset/winserver2012r2-ps/wds/Copy-WdsInstallImage.md @@ -2,7 +2,7 @@ external help file: MSFT_WdsInstallImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/wds/copy-wdsinstallimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/copy-wdsinstallimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Copy-WdsInstallImage --- diff --git a/docset/winserver2012r2-ps/wds/Deny-WdsClient.md b/docset/winserver2012r2-ps/wds/Deny-WdsClient.md index 48670be94d..b9389fce03 100644 --- a/docset/winserver2012r2-ps/wds/Deny-WdsClient.md +++ b/docset/winserver2012r2-ps/wds/Deny-WdsClient.md @@ -2,7 +2,7 @@ external help file: MSFT_WdsClient_v1.0.cdxml-help.xml Module Name: WDS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/wds/deny-wdsclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/deny-wdsclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Deny-WdsClient --- diff --git a/docset/winserver2012r2-ps/wds/Disable-WdsBootImage.md b/docset/winserver2012r2-ps/wds/Disable-WdsBootImage.md index 6f3eca3164..5923bfb46e 100644 --- a/docset/winserver2012r2-ps/wds/Disable-WdsBootImage.md +++ b/docset/winserver2012r2-ps/wds/Disable-WdsBootImage.md @@ -2,7 +2,7 @@ external help file: MSFT_WdsBootImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/wds/disable-wdsbootimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/disable-wdsbootimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WdsBootImage --- diff --git a/docset/winserver2012r2-ps/wds/Disable-WdsDriverPackage.md b/docset/winserver2012r2-ps/wds/Disable-WdsDriverPackage.md index f36e07c073..a58688ffa5 100644 --- a/docset/winserver2012r2-ps/wds/Disable-WdsDriverPackage.md +++ b/docset/winserver2012r2-ps/wds/Disable-WdsDriverPackage.md @@ -2,7 +2,7 @@ external help file: MSFT_WdsDriverPackage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/wds/disable-wdsdriverpackage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/disable-wdsdriverpackage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WdsDriverPackage --- diff --git a/docset/winserver2012r2-ps/wds/Disable-WdsInstallImage.md b/docset/winserver2012r2-ps/wds/Disable-WdsInstallImage.md index 77a3deb22c..d3438190a1 100644 --- a/docset/winserver2012r2-ps/wds/Disable-WdsInstallImage.md +++ b/docset/winserver2012r2-ps/wds/Disable-WdsInstallImage.md @@ -2,7 +2,7 @@ external help file: MSFT_WdsInstallImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/wds/disable-wdsinstallimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/disable-wdsinstallimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WdsInstallImage --- diff --git a/docset/winserver2012r2-ps/wds/Disconnect-WdsMulticastClient.md b/docset/winserver2012r2-ps/wds/Disconnect-WdsMulticastClient.md index c286beda0f..a37c58648b 100644 --- a/docset/winserver2012r2-ps/wds/Disconnect-WdsMulticastClient.md +++ b/docset/winserver2012r2-ps/wds/Disconnect-WdsMulticastClient.md @@ -2,7 +2,7 @@ external help file: MSFT_WdsMulticastClient_v1.0.cdxml-help.xml Module Name: WDS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/wds/disconnect-wdsmulticastclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/disconnect-wdsmulticastclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disconnect-WdsMulticastClient --- diff --git a/docset/winserver2012r2-ps/wds/Enable-WdsBootImage.md b/docset/winserver2012r2-ps/wds/Enable-WdsBootImage.md index 2e34abb44d..22feef42d2 100644 --- a/docset/winserver2012r2-ps/wds/Enable-WdsBootImage.md +++ b/docset/winserver2012r2-ps/wds/Enable-WdsBootImage.md @@ -2,7 +2,7 @@ external help file: MSFT_WdsBootImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/wds/enable-wdsbootimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/enable-wdsbootimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WdsBootImage --- diff --git a/docset/winserver2012r2-ps/wds/Enable-WdsDriverPackage.md b/docset/winserver2012r2-ps/wds/Enable-WdsDriverPackage.md index 615d60974b..22ccae9363 100644 --- a/docset/winserver2012r2-ps/wds/Enable-WdsDriverPackage.md +++ b/docset/winserver2012r2-ps/wds/Enable-WdsDriverPackage.md @@ -2,7 +2,7 @@ external help file: MSFT_WdsDriverPackage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/wds/enable-wdsdriverpackage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/enable-wdsdriverpackage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WdsDriverPackage --- diff --git a/docset/winserver2012r2-ps/wds/Enable-WdsInstallImage.md b/docset/winserver2012r2-ps/wds/Enable-WdsInstallImage.md index 2bbe5202b3..1c66459ce7 100644 --- a/docset/winserver2012r2-ps/wds/Enable-WdsInstallImage.md +++ b/docset/winserver2012r2-ps/wds/Enable-WdsInstallImage.md @@ -2,7 +2,7 @@ external help file: MSFT_WdsInstallImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/wds/enable-wdsinstallimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/enable-wdsinstallimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WdsInstallImage --- diff --git a/docset/winserver2012r2-ps/wds/Export-WdsBootImage.md b/docset/winserver2012r2-ps/wds/Export-WdsBootImage.md index 940dff7523..200bfccb60 100644 --- a/docset/winserver2012r2-ps/wds/Export-WdsBootImage.md +++ b/docset/winserver2012r2-ps/wds/Export-WdsBootImage.md @@ -2,7 +2,7 @@ external help file: MSFT_WdsBootImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/wds/export-wdsbootimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/export-wdsbootimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-WdsBootImage --- diff --git a/docset/winserver2012r2-ps/wds/Export-WdsInstallImage.md b/docset/winserver2012r2-ps/wds/Export-WdsInstallImage.md index bec7090762..fc17ed96a4 100644 --- a/docset/winserver2012r2-ps/wds/Export-WdsInstallImage.md +++ b/docset/winserver2012r2-ps/wds/Export-WdsInstallImage.md @@ -2,7 +2,7 @@ external help file: MSFT_WdsInstallImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/wds/export-wdsinstallimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/export-wdsinstallimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-WdsInstallImage --- diff --git a/docset/winserver2012r2-ps/wds/Get-WdsBootImage.md b/docset/winserver2012r2-ps/wds/Get-WdsBootImage.md index 432dc37f31..1a29ccc12a 100644 --- a/docset/winserver2012r2-ps/wds/Get-WdsBootImage.md +++ b/docset/winserver2012r2-ps/wds/Get-WdsBootImage.md @@ -2,7 +2,7 @@ external help file: MSFT_WdsBootImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/wds/get-wdsbootimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/get-wdsbootimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WdsBootImage --- diff --git a/docset/winserver2012r2-ps/wds/Get-WdsClient.md b/docset/winserver2012r2-ps/wds/Get-WdsClient.md index 8fd16aeebf..5e28cc9a52 100644 --- a/docset/winserver2012r2-ps/wds/Get-WdsClient.md +++ b/docset/winserver2012r2-ps/wds/Get-WdsClient.md @@ -2,7 +2,7 @@ external help file: MSFT_WdsClient_v1.0.cdxml-help.xml Module Name: WDS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/wds/get-wdsclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/get-wdsclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WdsClient --- diff --git a/docset/winserver2012r2-ps/wds/Get-WdsDriverPackage.md b/docset/winserver2012r2-ps/wds/Get-WdsDriverPackage.md index f1a57462f5..9a2dec712d 100644 --- a/docset/winserver2012r2-ps/wds/Get-WdsDriverPackage.md +++ b/docset/winserver2012r2-ps/wds/Get-WdsDriverPackage.md @@ -2,7 +2,7 @@ external help file: MSFT_WdsDriverPackage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/wds/get-wdsdriverpackage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/get-wdsdriverpackage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WdsDriverPackage --- diff --git a/docset/winserver2012r2-ps/wds/Get-WdsInstallImage.md b/docset/winserver2012r2-ps/wds/Get-WdsInstallImage.md index 2f575fb605..088adacbf9 100644 --- a/docset/winserver2012r2-ps/wds/Get-WdsInstallImage.md +++ b/docset/winserver2012r2-ps/wds/Get-WdsInstallImage.md @@ -2,7 +2,7 @@ external help file: MSFT_WdsInstallImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/wds/get-wdsinstallimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/get-wdsinstallimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WdsInstallImage --- diff --git a/docset/winserver2012r2-ps/wds/Get-WdsInstallImageGroup.md b/docset/winserver2012r2-ps/wds/Get-WdsInstallImageGroup.md index dbf57bf0de..a3191a7b1d 100644 --- a/docset/winserver2012r2-ps/wds/Get-WdsInstallImageGroup.md +++ b/docset/winserver2012r2-ps/wds/Get-WdsInstallImageGroup.md @@ -2,7 +2,7 @@ external help file: MSFT_WdsInstallImageGroup_v1.0.cdxml-help.xml Module Name: WDS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/wds/get-wdsinstallimagegroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/get-wdsinstallimagegroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WdsInstallImageGroup --- diff --git a/docset/winserver2012r2-ps/wds/Get-WdsMulticastClient.md b/docset/winserver2012r2-ps/wds/Get-WdsMulticastClient.md index 353aa5187e..ad24a0ad05 100644 --- a/docset/winserver2012r2-ps/wds/Get-WdsMulticastClient.md +++ b/docset/winserver2012r2-ps/wds/Get-WdsMulticastClient.md @@ -2,7 +2,7 @@ external help file: MSFT_WdsMulticastClient_v1.0.cdxml-help.xml Module Name: WDS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/wds/get-wdsmulticastclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/get-wdsmulticastclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WdsMulticastClient --- diff --git a/docset/winserver2012r2-ps/wds/Import-WdsBootImage.md b/docset/winserver2012r2-ps/wds/Import-WdsBootImage.md index 5df252dc3a..2dc6ba6e59 100644 --- a/docset/winserver2012r2-ps/wds/Import-WdsBootImage.md +++ b/docset/winserver2012r2-ps/wds/Import-WdsBootImage.md @@ -2,7 +2,7 @@ external help file: MSFT_WdsBootImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/wds/import-wdsbootimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/import-wdsbootimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-WdsBootImage --- diff --git a/docset/winserver2012r2-ps/wds/Import-WdsDriverPackage.md b/docset/winserver2012r2-ps/wds/Import-WdsDriverPackage.md index 164707692d..850e7d6aa6 100644 --- a/docset/winserver2012r2-ps/wds/Import-WdsDriverPackage.md +++ b/docset/winserver2012r2-ps/wds/Import-WdsDriverPackage.md @@ -2,7 +2,7 @@ external help file: MSFT_WdsDriverPackage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/wds/import-wdsdriverpackage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/import-wdsdriverpackage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-WdsDriverPackage --- diff --git a/docset/winserver2012r2-ps/wds/Import-WdsInstallImage.md b/docset/winserver2012r2-ps/wds/Import-WdsInstallImage.md index 58a1cb7d75..dee23fb85c 100644 --- a/docset/winserver2012r2-ps/wds/Import-WdsInstallImage.md +++ b/docset/winserver2012r2-ps/wds/Import-WdsInstallImage.md @@ -2,7 +2,7 @@ external help file: MSFT_WdsInstallImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/wds/import-wdsinstallimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/import-wdsinstallimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-WdsInstallImage --- diff --git a/docset/winserver2012r2-ps/wds/New-WdsClient.md b/docset/winserver2012r2-ps/wds/New-WdsClient.md index 688eb9d557..cd8611f389 100644 --- a/docset/winserver2012r2-ps/wds/New-WdsClient.md +++ b/docset/winserver2012r2-ps/wds/New-WdsClient.md @@ -2,7 +2,7 @@ external help file: MSFT_WdsClient_v1.0.cdxml-help.xml Module Name: WDS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/wds/new-wdsclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/new-wdsclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WdsClient --- diff --git a/docset/winserver2012r2-ps/wds/New-WdsInstallImageGroup.md b/docset/winserver2012r2-ps/wds/New-WdsInstallImageGroup.md index 3b336121d6..4ae7972d8d 100644 --- a/docset/winserver2012r2-ps/wds/New-WdsInstallImageGroup.md +++ b/docset/winserver2012r2-ps/wds/New-WdsInstallImageGroup.md @@ -2,7 +2,7 @@ external help file: MSFT_WdsInstallImageGroup_v1.0.cdxml-help.xml Module Name: WDS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/wds/new-wdsinstallimagegroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/new-wdsinstallimagegroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WdsInstallImageGroup --- diff --git a/docset/winserver2012r2-ps/wds/Remove-WdsBootImage.md b/docset/winserver2012r2-ps/wds/Remove-WdsBootImage.md index d9a7a48138..51d4577e10 100644 --- a/docset/winserver2012r2-ps/wds/Remove-WdsBootImage.md +++ b/docset/winserver2012r2-ps/wds/Remove-WdsBootImage.md @@ -2,7 +2,7 @@ external help file: MSFT_WdsBootImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/wds/remove-wdsbootimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/remove-wdsbootimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WdsBootImage --- diff --git a/docset/winserver2012r2-ps/wds/Remove-WdsClient.md b/docset/winserver2012r2-ps/wds/Remove-WdsClient.md index d84d2268fd..f7cf828425 100644 --- a/docset/winserver2012r2-ps/wds/Remove-WdsClient.md +++ b/docset/winserver2012r2-ps/wds/Remove-WdsClient.md @@ -2,7 +2,7 @@ external help file: MSFT_WdsClient_v1.0.cdxml-help.xml Module Name: WDS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/wds/remove-wdsclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/remove-wdsclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WdsClient --- diff --git a/docset/winserver2012r2-ps/wds/Remove-WdsDriverPackage.md b/docset/winserver2012r2-ps/wds/Remove-WdsDriverPackage.md index df509440ec..354917c3e3 100644 --- a/docset/winserver2012r2-ps/wds/Remove-WdsDriverPackage.md +++ b/docset/winserver2012r2-ps/wds/Remove-WdsDriverPackage.md @@ -2,7 +2,7 @@ external help file: MSFT_WdsDriverPackage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/wds/remove-wdsdriverpackage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/remove-wdsdriverpackage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WdsDriverPackage --- diff --git a/docset/winserver2012r2-ps/wds/Remove-WdsInstallImage.md b/docset/winserver2012r2-ps/wds/Remove-WdsInstallImage.md index f28e2ea973..563dccb427 100644 --- a/docset/winserver2012r2-ps/wds/Remove-WdsInstallImage.md +++ b/docset/winserver2012r2-ps/wds/Remove-WdsInstallImage.md @@ -2,7 +2,7 @@ external help file: MSFT_WdsInstallImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/wds/remove-wdsinstallimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/remove-wdsinstallimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WdsInstallImage --- diff --git a/docset/winserver2012r2-ps/wds/Remove-WdsInstallImageGroup.md b/docset/winserver2012r2-ps/wds/Remove-WdsInstallImageGroup.md index a399320189..469cd8dc87 100644 --- a/docset/winserver2012r2-ps/wds/Remove-WdsInstallImageGroup.md +++ b/docset/winserver2012r2-ps/wds/Remove-WdsInstallImageGroup.md @@ -2,7 +2,7 @@ external help file: MSFT_WdsInstallImageGroup_v1.0.cdxml-help.xml Module Name: WDS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/wds/remove-wdsinstallimagegroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/remove-wdsinstallimagegroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WdsInstallImageGroup --- diff --git a/docset/winserver2012r2-ps/wds/Set-WdsBootImage.md b/docset/winserver2012r2-ps/wds/Set-WdsBootImage.md index 9a40ab2b0b..f15889c5c4 100644 --- a/docset/winserver2012r2-ps/wds/Set-WdsBootImage.md +++ b/docset/winserver2012r2-ps/wds/Set-WdsBootImage.md @@ -2,7 +2,7 @@ external help file: MSFT_WdsBootImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/wds/set-wdsbootimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/set-wdsbootimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WdsBootImage --- diff --git a/docset/winserver2012r2-ps/wds/Set-WdsClient.md b/docset/winserver2012r2-ps/wds/Set-WdsClient.md index 8aeb7fb060..366a153676 100644 --- a/docset/winserver2012r2-ps/wds/Set-WdsClient.md +++ b/docset/winserver2012r2-ps/wds/Set-WdsClient.md @@ -2,7 +2,7 @@ external help file: MSFT_WdsClient_v1.0.cdxml-help.xml Module Name: WDS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/wds/set-wdsclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/set-wdsclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WdsClient --- diff --git a/docset/winserver2012r2-ps/wds/Set-WdsInstallImage.md b/docset/winserver2012r2-ps/wds/Set-WdsInstallImage.md index e3fc5050cc..e942f3c8d6 100644 --- a/docset/winserver2012r2-ps/wds/Set-WdsInstallImage.md +++ b/docset/winserver2012r2-ps/wds/Set-WdsInstallImage.md @@ -2,7 +2,7 @@ external help file: MSFT_WdsInstallImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/wds/set-wdsinstallimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/set-wdsinstallimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WdsInstallImage --- diff --git a/docset/winserver2012r2-ps/wds/Set-WdsInstallImageGroup.md b/docset/winserver2012r2-ps/wds/Set-WdsInstallImageGroup.md index 6b137b7948..b6a5ce3753 100644 --- a/docset/winserver2012r2-ps/wds/Set-WdsInstallImageGroup.md +++ b/docset/winserver2012r2-ps/wds/Set-WdsInstallImageGroup.md @@ -2,7 +2,7 @@ external help file: MSFT_WdsInstallImageGroup_v1.0.cdxml-help.xml Module Name: WDS ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/wds/set-wdsinstallimagegroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/set-wdsinstallimagegroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WdsInstallImageGroup --- diff --git a/docset/winserver2012r2-ps/webadministration/Add-WebConfiguration.md b/docset/winserver2012r2-ps/webadministration/Add-WebConfiguration.md index a6e93ceeb3..ffe66c9334 100644 --- a/docset/winserver2012r2-ps/webadministration/Add-WebConfiguration.md +++ b/docset/winserver2012r2-ps/webadministration/Add-WebConfiguration.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/add-webconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/add-webconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WebConfiguration --- diff --git a/docset/winserver2012r2-ps/webadministration/Add-WebConfigurationLock.md b/docset/winserver2012r2-ps/webadministration/Add-WebConfigurationLock.md index 5e8322f526..2f52d6df77 100644 --- a/docset/winserver2012r2-ps/webadministration/Add-WebConfigurationLock.md +++ b/docset/winserver2012r2-ps/webadministration/Add-WebConfigurationLock.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/add-webconfigurationlock?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/add-webconfigurationlock?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WebConfigurationLock --- diff --git a/docset/winserver2012r2-ps/webadministration/Add-WebConfigurationProperty.md b/docset/winserver2012r2-ps/webadministration/Add-WebConfigurationProperty.md index ca04c46d53..62753b4697 100644 --- a/docset/winserver2012r2-ps/webadministration/Add-WebConfigurationProperty.md +++ b/docset/winserver2012r2-ps/webadministration/Add-WebConfigurationProperty.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/add-webconfigurationproperty?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/add-webconfigurationproperty?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WebConfigurationProperty --- diff --git a/docset/winserver2012r2-ps/webadministration/Backup-WebConfiguration.md b/docset/winserver2012r2-ps/webadministration/Backup-WebConfiguration.md index 1b0b7841e7..2788b72960 100644 --- a/docset/winserver2012r2-ps/webadministration/Backup-WebConfiguration.md +++ b/docset/winserver2012r2-ps/webadministration/Backup-WebConfiguration.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/backup-webconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/backup-webconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Backup-WebConfiguration --- diff --git a/docset/winserver2012r2-ps/webadministration/Clear-WebCentralCertProvider.md b/docset/winserver2012r2-ps/webadministration/Clear-WebCentralCertProvider.md index b1c128bf4c..0674c86be6 100644 --- a/docset/winserver2012r2-ps/webadministration/Clear-WebCentralCertProvider.md +++ b/docset/winserver2012r2-ps/webadministration/Clear-WebCentralCertProvider.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/clear-webcentralcertprovider?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/clear-webcentralcertprovider?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-WebCentralCertProvider --- diff --git a/docset/winserver2012r2-ps/webadministration/Clear-WebConfiguration.md b/docset/winserver2012r2-ps/webadministration/Clear-WebConfiguration.md index 792dff2585..1b15823925 100644 --- a/docset/winserver2012r2-ps/webadministration/Clear-WebConfiguration.md +++ b/docset/winserver2012r2-ps/webadministration/Clear-WebConfiguration.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/clear-webconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/clear-webconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-WebConfiguration --- diff --git a/docset/winserver2012r2-ps/webadministration/Clear-WebRequestTracingSetting.md b/docset/winserver2012r2-ps/webadministration/Clear-WebRequestTracingSetting.md index ae9876cfd9..779237d17b 100644 --- a/docset/winserver2012r2-ps/webadministration/Clear-WebRequestTracingSetting.md +++ b/docset/winserver2012r2-ps/webadministration/Clear-WebRequestTracingSetting.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/clear-webrequesttracingsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/clear-webrequesttracingsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-WebRequestTracingSetting --- diff --git a/docset/winserver2012r2-ps/webadministration/Clear-WebRequestTracingSettings.md b/docset/winserver2012r2-ps/webadministration/Clear-WebRequestTracingSettings.md index f896e6a2bc..439d004231 100644 --- a/docset/winserver2012r2-ps/webadministration/Clear-WebRequestTracingSettings.md +++ b/docset/winserver2012r2-ps/webadministration/Clear-WebRequestTracingSettings.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/clear-webrequesttracingsettings?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/clear-webrequesttracingsettings?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-WebRequestTracingSettings --- diff --git a/docset/winserver2012r2-ps/webadministration/ConvertTo-WebApplication.md b/docset/winserver2012r2-ps/webadministration/ConvertTo-WebApplication.md index 3c74735255..795ffa56fe 100644 --- a/docset/winserver2012r2-ps/webadministration/ConvertTo-WebApplication.md +++ b/docset/winserver2012r2-ps/webadministration/ConvertTo-WebApplication.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/convertto-webapplication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/convertto-webapplication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: ConvertTo-WebApplication --- diff --git a/docset/winserver2012r2-ps/webadministration/Disable-WebCentralCertProvider.md b/docset/winserver2012r2-ps/webadministration/Disable-WebCentralCertProvider.md index 02938c8e2c..058a05b15a 100644 --- a/docset/winserver2012r2-ps/webadministration/Disable-WebCentralCertProvider.md +++ b/docset/winserver2012r2-ps/webadministration/Disable-WebCentralCertProvider.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/disable-webcentralcertprovider?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/disable-webcentralcertprovider?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WebCentralCertProvider --- diff --git a/docset/winserver2012r2-ps/webadministration/Disable-WebGlobalModule.md b/docset/winserver2012r2-ps/webadministration/Disable-WebGlobalModule.md index 2ebfd0dc9c..20685bf222 100644 --- a/docset/winserver2012r2-ps/webadministration/Disable-WebGlobalModule.md +++ b/docset/winserver2012r2-ps/webadministration/Disable-WebGlobalModule.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/disable-webglobalmodule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/disable-webglobalmodule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WebGlobalModule --- diff --git a/docset/winserver2012r2-ps/webadministration/Disable-WebRequestTracing.md b/docset/winserver2012r2-ps/webadministration/Disable-WebRequestTracing.md index 4e194a6983..5ff4837488 100644 --- a/docset/winserver2012r2-ps/webadministration/Disable-WebRequestTracing.md +++ b/docset/winserver2012r2-ps/webadministration/Disable-WebRequestTracing.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/disable-webrequesttracing?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/disable-webrequesttracing?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WebRequestTracing --- diff --git a/docset/winserver2012r2-ps/webadministration/Enable-WebCentralCertProvider.md b/docset/winserver2012r2-ps/webadministration/Enable-WebCentralCertProvider.md index 727791448a..a79d8c63b0 100644 --- a/docset/winserver2012r2-ps/webadministration/Enable-WebCentralCertProvider.md +++ b/docset/winserver2012r2-ps/webadministration/Enable-WebCentralCertProvider.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/enable-webcentralcertprovider?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/enable-webcentralcertprovider?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WebCentralCertProvider --- diff --git a/docset/winserver2012r2-ps/webadministration/Enable-WebGlobalModule.md b/docset/winserver2012r2-ps/webadministration/Enable-WebGlobalModule.md index 445ac1a4b9..fc07f1be8c 100644 --- a/docset/winserver2012r2-ps/webadministration/Enable-WebGlobalModule.md +++ b/docset/winserver2012r2-ps/webadministration/Enable-WebGlobalModule.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/enable-webglobalmodule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/enable-webglobalmodule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WebGlobalModule --- diff --git a/docset/winserver2012r2-ps/webadministration/Enable-WebRequestTracing.md b/docset/winserver2012r2-ps/webadministration/Enable-WebRequestTracing.md index 304e143e4d..73e92259f6 100644 --- a/docset/winserver2012r2-ps/webadministration/Enable-WebRequestTracing.md +++ b/docset/winserver2012r2-ps/webadministration/Enable-WebRequestTracing.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/enable-webrequesttracing?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/enable-webrequesttracing?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WebRequestTracing --- diff --git a/docset/winserver2012r2-ps/webadministration/Get-WebAppDomain.md b/docset/winserver2012r2-ps/webadministration/Get-WebAppDomain.md index 3257c87ee8..683d68e3ae 100644 --- a/docset/winserver2012r2-ps/webadministration/Get-WebAppDomain.md +++ b/docset/winserver2012r2-ps/webadministration/Get-WebAppDomain.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webappdomain?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webappdomain?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebAppDomain --- diff --git a/docset/winserver2012r2-ps/webadministration/Get-WebAppPoolState.md b/docset/winserver2012r2-ps/webadministration/Get-WebAppPoolState.md index e7e9764197..ee736ab888 100644 --- a/docset/winserver2012r2-ps/webadministration/Get-WebAppPoolState.md +++ b/docset/winserver2012r2-ps/webadministration/Get-WebAppPoolState.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webapppoolstate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webapppoolstate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebAppPoolState --- diff --git a/docset/winserver2012r2-ps/webadministration/Get-WebApplication.md b/docset/winserver2012r2-ps/webadministration/Get-WebApplication.md index 0d8f431b4d..3b79e14f3b 100644 --- a/docset/winserver2012r2-ps/webadministration/Get-WebApplication.md +++ b/docset/winserver2012r2-ps/webadministration/Get-WebApplication.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webapplication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webapplication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebApplication --- diff --git a/docset/winserver2012r2-ps/webadministration/Get-WebBinding.md b/docset/winserver2012r2-ps/webadministration/Get-WebBinding.md index 8b262136ec..adedf95767 100644 --- a/docset/winserver2012r2-ps/webadministration/Get-WebBinding.md +++ b/docset/winserver2012r2-ps/webadministration/Get-WebBinding.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webbinding?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webbinding?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebBinding --- diff --git a/docset/winserver2012r2-ps/webadministration/Get-WebCentralCertProvider.md b/docset/winserver2012r2-ps/webadministration/Get-WebCentralCertProvider.md index 4109522c90..5b96780d23 100644 --- a/docset/winserver2012r2-ps/webadministration/Get-WebCentralCertProvider.md +++ b/docset/winserver2012r2-ps/webadministration/Get-WebCentralCertProvider.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webcentralcertprovider?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webcentralcertprovider?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebCentralCertProvider --- diff --git a/docset/winserver2012r2-ps/webadministration/Get-WebConfigFile.md b/docset/winserver2012r2-ps/webadministration/Get-WebConfigFile.md index 859d0cdd0e..2122eef306 100644 --- a/docset/winserver2012r2-ps/webadministration/Get-WebConfigFile.md +++ b/docset/winserver2012r2-ps/webadministration/Get-WebConfigFile.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webconfigfile?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webconfigfile?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebConfigFile --- diff --git a/docset/winserver2012r2-ps/webadministration/Get-WebConfiguration.md b/docset/winserver2012r2-ps/webadministration/Get-WebConfiguration.md index 343157d3a5..38bf460364 100644 --- a/docset/winserver2012r2-ps/webadministration/Get-WebConfiguration.md +++ b/docset/winserver2012r2-ps/webadministration/Get-WebConfiguration.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebConfiguration --- diff --git a/docset/winserver2012r2-ps/webadministration/Get-WebConfigurationBackup.md b/docset/winserver2012r2-ps/webadministration/Get-WebConfigurationBackup.md index aac5a45184..205107105a 100644 --- a/docset/winserver2012r2-ps/webadministration/Get-WebConfigurationBackup.md +++ b/docset/winserver2012r2-ps/webadministration/Get-WebConfigurationBackup.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webconfigurationbackup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webconfigurationbackup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebConfigurationBackup --- diff --git a/docset/winserver2012r2-ps/webadministration/Get-WebConfigurationLocation.md b/docset/winserver2012r2-ps/webadministration/Get-WebConfigurationLocation.md index 06f4bf0a0c..76a4d886ce 100644 --- a/docset/winserver2012r2-ps/webadministration/Get-WebConfigurationLocation.md +++ b/docset/winserver2012r2-ps/webadministration/Get-WebConfigurationLocation.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webconfigurationlocation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webconfigurationlocation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebConfigurationLocation --- diff --git a/docset/winserver2012r2-ps/webadministration/Get-WebConfigurationLock.md b/docset/winserver2012r2-ps/webadministration/Get-WebConfigurationLock.md index bab21c8074..3161828b86 100644 --- a/docset/winserver2012r2-ps/webadministration/Get-WebConfigurationLock.md +++ b/docset/winserver2012r2-ps/webadministration/Get-WebConfigurationLock.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webconfigurationlock?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webconfigurationlock?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebConfigurationLock --- diff --git a/docset/winserver2012r2-ps/webadministration/Get-WebConfigurationProperty.md b/docset/winserver2012r2-ps/webadministration/Get-WebConfigurationProperty.md index f329ea01a9..87ea6578aa 100644 --- a/docset/winserver2012r2-ps/webadministration/Get-WebConfigurationProperty.md +++ b/docset/winserver2012r2-ps/webadministration/Get-WebConfigurationProperty.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webconfigurationproperty?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webconfigurationproperty?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebConfigurationProperty --- diff --git a/docset/winserver2012r2-ps/webadministration/Get-WebFilePath.md b/docset/winserver2012r2-ps/webadministration/Get-WebFilePath.md index d0a8cfdec7..f533f55ef7 100644 --- a/docset/winserver2012r2-ps/webadministration/Get-WebFilePath.md +++ b/docset/winserver2012r2-ps/webadministration/Get-WebFilePath.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webfilepath?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webfilepath?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebFilePath --- diff --git a/docset/winserver2012r2-ps/webadministration/Get-WebGlobalModule.md b/docset/winserver2012r2-ps/webadministration/Get-WebGlobalModule.md index 5ce64bba17..eb60e9d9fe 100644 --- a/docset/winserver2012r2-ps/webadministration/Get-WebGlobalModule.md +++ b/docset/winserver2012r2-ps/webadministration/Get-WebGlobalModule.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webglobalmodule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webglobalmodule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebGlobalModule --- diff --git a/docset/winserver2012r2-ps/webadministration/Get-WebHandler.md b/docset/winserver2012r2-ps/webadministration/Get-WebHandler.md index 18ed3c7c9b..ece964b939 100644 --- a/docset/winserver2012r2-ps/webadministration/Get-WebHandler.md +++ b/docset/winserver2012r2-ps/webadministration/Get-WebHandler.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webhandler?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webhandler?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebHandler --- diff --git a/docset/winserver2012r2-ps/webadministration/Get-WebItemState.md b/docset/winserver2012r2-ps/webadministration/Get-WebItemState.md index 71fbe064ce..795a3dbb86 100644 --- a/docset/winserver2012r2-ps/webadministration/Get-WebItemState.md +++ b/docset/winserver2012r2-ps/webadministration/Get-WebItemState.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webitemstate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webitemstate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebItemState --- diff --git a/docset/winserver2012r2-ps/webadministration/Get-WebManagedModule.md b/docset/winserver2012r2-ps/webadministration/Get-WebManagedModule.md index 2aa8addf4d..e29b7a62a1 100644 --- a/docset/winserver2012r2-ps/webadministration/Get-WebManagedModule.md +++ b/docset/winserver2012r2-ps/webadministration/Get-WebManagedModule.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webmanagedmodule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webmanagedmodule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebManagedModule --- diff --git a/docset/winserver2012r2-ps/webadministration/Get-WebRequest.md b/docset/winserver2012r2-ps/webadministration/Get-WebRequest.md index 732131709f..f69ec105ce 100644 --- a/docset/winserver2012r2-ps/webadministration/Get-WebRequest.md +++ b/docset/winserver2012r2-ps/webadministration/Get-WebRequest.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webrequest?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webrequest?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebRequest --- diff --git a/docset/winserver2012r2-ps/webadministration/Get-WebURL.md b/docset/winserver2012r2-ps/webadministration/Get-WebURL.md index 1b1df52b11..682e881a1c 100644 --- a/docset/winserver2012r2-ps/webadministration/Get-WebURL.md +++ b/docset/winserver2012r2-ps/webadministration/Get-WebURL.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-weburl?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-weburl?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebURL --- diff --git a/docset/winserver2012r2-ps/webadministration/Get-WebVirtualDirectory.md b/docset/winserver2012r2-ps/webadministration/Get-WebVirtualDirectory.md index 82d9223664..ed4082c6b3 100644 --- a/docset/winserver2012r2-ps/webadministration/Get-WebVirtualDirectory.md +++ b/docset/winserver2012r2-ps/webadministration/Get-WebVirtualDirectory.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webvirtualdirectory?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webvirtualdirectory?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebVirtualDirectory --- diff --git a/docset/winserver2012r2-ps/webadministration/Get-Website.md b/docset/winserver2012r2-ps/webadministration/Get-Website.md index 3e13950490..31832281eb 100644 --- a/docset/winserver2012r2-ps/webadministration/Get-Website.md +++ b/docset/winserver2012r2-ps/webadministration/Get-Website.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-website?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-website?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-Website --- diff --git a/docset/winserver2012r2-ps/webadministration/Get-WebsiteState.md b/docset/winserver2012r2-ps/webadministration/Get-WebsiteState.md index bffece9604..86b596db7d 100644 --- a/docset/winserver2012r2-ps/webadministration/Get-WebsiteState.md +++ b/docset/winserver2012r2-ps/webadministration/Get-WebsiteState.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-websitestate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-websitestate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebsiteState --- diff --git a/docset/winserver2012r2-ps/webadministration/New-WebAppPool.md b/docset/winserver2012r2-ps/webadministration/New-WebAppPool.md index 4e6abdb73b..96ca50530f 100644 --- a/docset/winserver2012r2-ps/webadministration/New-WebAppPool.md +++ b/docset/winserver2012r2-ps/webadministration/New-WebAppPool.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/new-webapppool?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/new-webapppool?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WebAppPool --- diff --git a/docset/winserver2012r2-ps/webadministration/New-WebApplication.md b/docset/winserver2012r2-ps/webadministration/New-WebApplication.md index 776375b3ae..1e68fc7782 100644 --- a/docset/winserver2012r2-ps/webadministration/New-WebApplication.md +++ b/docset/winserver2012r2-ps/webadministration/New-WebApplication.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/new-webapplication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/new-webapplication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WebApplication --- diff --git a/docset/winserver2012r2-ps/webadministration/New-WebBinding.md b/docset/winserver2012r2-ps/webadministration/New-WebBinding.md index ea94d04241..05b604f7ce 100644 --- a/docset/winserver2012r2-ps/webadministration/New-WebBinding.md +++ b/docset/winserver2012r2-ps/webadministration/New-WebBinding.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/new-webbinding?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/new-webbinding?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WebBinding --- diff --git a/docset/winserver2012r2-ps/webadministration/New-WebFtpSite.md b/docset/winserver2012r2-ps/webadministration/New-WebFtpSite.md index 0aca91d762..05d4898738 100644 --- a/docset/winserver2012r2-ps/webadministration/New-WebFtpSite.md +++ b/docset/winserver2012r2-ps/webadministration/New-WebFtpSite.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/new-webftpsite?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/new-webftpsite?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WebFtpSite --- diff --git a/docset/winserver2012r2-ps/webadministration/New-WebGlobalModule.md b/docset/winserver2012r2-ps/webadministration/New-WebGlobalModule.md index 7c39d6bdb8..2952f19d65 100644 --- a/docset/winserver2012r2-ps/webadministration/New-WebGlobalModule.md +++ b/docset/winserver2012r2-ps/webadministration/New-WebGlobalModule.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/new-webglobalmodule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/new-webglobalmodule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WebGlobalModule --- diff --git a/docset/winserver2012r2-ps/webadministration/New-WebHandler.md b/docset/winserver2012r2-ps/webadministration/New-WebHandler.md index 6a5e774933..600d1b0d8b 100644 --- a/docset/winserver2012r2-ps/webadministration/New-WebHandler.md +++ b/docset/winserver2012r2-ps/webadministration/New-WebHandler.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/new-webhandler?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/new-webhandler?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WebHandler --- diff --git a/docset/winserver2012r2-ps/webadministration/New-WebManagedModule.md b/docset/winserver2012r2-ps/webadministration/New-WebManagedModule.md index 79b44076b6..ca48d48cc8 100644 --- a/docset/winserver2012r2-ps/webadministration/New-WebManagedModule.md +++ b/docset/winserver2012r2-ps/webadministration/New-WebManagedModule.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/new-webmanagedmodule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/new-webmanagedmodule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WebManagedModule --- diff --git a/docset/winserver2012r2-ps/webadministration/New-WebVirtualDirectory.md b/docset/winserver2012r2-ps/webadministration/New-WebVirtualDirectory.md index ace1d9ed0e..5f08bda9fa 100644 --- a/docset/winserver2012r2-ps/webadministration/New-WebVirtualDirectory.md +++ b/docset/winserver2012r2-ps/webadministration/New-WebVirtualDirectory.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/new-webvirtualdirectory?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/new-webvirtualdirectory?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WebVirtualDirectory --- diff --git a/docset/winserver2012r2-ps/webadministration/New-Website.md b/docset/winserver2012r2-ps/webadministration/New-Website.md index 0d3ceae47f..2d3eaa5d0c 100644 --- a/docset/winserver2012r2-ps/webadministration/New-Website.md +++ b/docset/winserver2012r2-ps/webadministration/New-Website.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/new-website?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/new-website?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-Website --- diff --git a/docset/winserver2012r2-ps/webadministration/Remove-WebAppPool.md b/docset/winserver2012r2-ps/webadministration/Remove-WebAppPool.md index 794561e3d1..f3bcb157cd 100644 --- a/docset/winserver2012r2-ps/webadministration/Remove-WebAppPool.md +++ b/docset/winserver2012r2-ps/webadministration/Remove-WebAppPool.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-webapppool?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-webapppool?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WebAppPool --- diff --git a/docset/winserver2012r2-ps/webadministration/Remove-WebApplication.md b/docset/winserver2012r2-ps/webadministration/Remove-WebApplication.md index 43935eabb2..1235644990 100644 --- a/docset/winserver2012r2-ps/webadministration/Remove-WebApplication.md +++ b/docset/winserver2012r2-ps/webadministration/Remove-WebApplication.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-webapplication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-webapplication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WebApplication --- diff --git a/docset/winserver2012r2-ps/webadministration/Remove-WebBinding.md b/docset/winserver2012r2-ps/webadministration/Remove-WebBinding.md index 79d4564cf0..1c6a0ef706 100644 --- a/docset/winserver2012r2-ps/webadministration/Remove-WebBinding.md +++ b/docset/winserver2012r2-ps/webadministration/Remove-WebBinding.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-webbinding?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-webbinding?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WebBinding --- diff --git a/docset/winserver2012r2-ps/webadministration/Remove-WebConfigurationBackup.md b/docset/winserver2012r2-ps/webadministration/Remove-WebConfigurationBackup.md index 107860d9cf..1ee767f6bc 100644 --- a/docset/winserver2012r2-ps/webadministration/Remove-WebConfigurationBackup.md +++ b/docset/winserver2012r2-ps/webadministration/Remove-WebConfigurationBackup.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-webconfigurationbackup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-webconfigurationbackup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WebConfigurationBackup --- diff --git a/docset/winserver2012r2-ps/webadministration/Remove-WebConfigurationLocation.md b/docset/winserver2012r2-ps/webadministration/Remove-WebConfigurationLocation.md index 093b6c6d78..44b7406680 100644 --- a/docset/winserver2012r2-ps/webadministration/Remove-WebConfigurationLocation.md +++ b/docset/winserver2012r2-ps/webadministration/Remove-WebConfigurationLocation.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-webconfigurationlocation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-webconfigurationlocation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WebConfigurationLocation --- diff --git a/docset/winserver2012r2-ps/webadministration/Remove-WebConfigurationLock.md b/docset/winserver2012r2-ps/webadministration/Remove-WebConfigurationLock.md index 83f87e97a6..8fe7395e2b 100644 --- a/docset/winserver2012r2-ps/webadministration/Remove-WebConfigurationLock.md +++ b/docset/winserver2012r2-ps/webadministration/Remove-WebConfigurationLock.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-webconfigurationlock?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-webconfigurationlock?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WebConfigurationLock --- diff --git a/docset/winserver2012r2-ps/webadministration/Remove-WebConfigurationProperty.md b/docset/winserver2012r2-ps/webadministration/Remove-WebConfigurationProperty.md index f7aa2af24e..7e760a6840 100644 --- a/docset/winserver2012r2-ps/webadministration/Remove-WebConfigurationProperty.md +++ b/docset/winserver2012r2-ps/webadministration/Remove-WebConfigurationProperty.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-webconfigurationproperty?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-webconfigurationproperty?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WebConfigurationProperty --- diff --git a/docset/winserver2012r2-ps/webadministration/Remove-WebGlobalModule.md b/docset/winserver2012r2-ps/webadministration/Remove-WebGlobalModule.md index 24fb56bf9a..4fb8a21508 100644 --- a/docset/winserver2012r2-ps/webadministration/Remove-WebGlobalModule.md +++ b/docset/winserver2012r2-ps/webadministration/Remove-WebGlobalModule.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-webglobalmodule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-webglobalmodule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WebGlobalModule --- diff --git a/docset/winserver2012r2-ps/webadministration/Remove-WebHandler.md b/docset/winserver2012r2-ps/webadministration/Remove-WebHandler.md index 0ecb8c88fd..af4d45da9c 100644 --- a/docset/winserver2012r2-ps/webadministration/Remove-WebHandler.md +++ b/docset/winserver2012r2-ps/webadministration/Remove-WebHandler.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-webhandler?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-webhandler?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WebHandler --- diff --git a/docset/winserver2012r2-ps/webadministration/Remove-WebManagedModule.md b/docset/winserver2012r2-ps/webadministration/Remove-WebManagedModule.md index 6182129292..c3871360f9 100644 --- a/docset/winserver2012r2-ps/webadministration/Remove-WebManagedModule.md +++ b/docset/winserver2012r2-ps/webadministration/Remove-WebManagedModule.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-webmanagedmodule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-webmanagedmodule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WebManagedModule --- diff --git a/docset/winserver2012r2-ps/webadministration/Remove-WebVirtualDirectory.md b/docset/winserver2012r2-ps/webadministration/Remove-WebVirtualDirectory.md index d418b13540..a28d4c9ba4 100644 --- a/docset/winserver2012r2-ps/webadministration/Remove-WebVirtualDirectory.md +++ b/docset/winserver2012r2-ps/webadministration/Remove-WebVirtualDirectory.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-webvirtualdirectory?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-webvirtualdirectory?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WebVirtualDirectory --- diff --git a/docset/winserver2012r2-ps/webadministration/Remove-Website.md b/docset/winserver2012r2-ps/webadministration/Remove-Website.md index 1e7e5a14c4..ec2707eadf 100644 --- a/docset/winserver2012r2-ps/webadministration/Remove-Website.md +++ b/docset/winserver2012r2-ps/webadministration/Remove-Website.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-website?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-website?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-Website --- diff --git a/docset/winserver2012r2-ps/webadministration/Rename-WebConfigurationLocation.md b/docset/winserver2012r2-ps/webadministration/Rename-WebConfigurationLocation.md index 940772f874..71c4440461 100644 --- a/docset/winserver2012r2-ps/webadministration/Rename-WebConfigurationLocation.md +++ b/docset/winserver2012r2-ps/webadministration/Rename-WebConfigurationLocation.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/rename-webconfigurationlocation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/rename-webconfigurationlocation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-WebConfigurationLocation --- diff --git a/docset/winserver2012r2-ps/webadministration/Restart-WebAppPool.md b/docset/winserver2012r2-ps/webadministration/Restart-WebAppPool.md index deddb22607..8bf83f7fbb 100644 --- a/docset/winserver2012r2-ps/webadministration/Restart-WebAppPool.md +++ b/docset/winserver2012r2-ps/webadministration/Restart-WebAppPool.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/restart-webapppool?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/restart-webapppool?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restart-WebAppPool --- diff --git a/docset/winserver2012r2-ps/webadministration/Restart-WebItem.md b/docset/winserver2012r2-ps/webadministration/Restart-WebItem.md index 5b5273c295..9f64c07865 100644 --- a/docset/winserver2012r2-ps/webadministration/Restart-WebItem.md +++ b/docset/winserver2012r2-ps/webadministration/Restart-WebItem.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/restart-webitem?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/restart-webitem?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restart-WebItem --- diff --git a/docset/winserver2012r2-ps/webadministration/Restore-WebConfiguration.md b/docset/winserver2012r2-ps/webadministration/Restore-WebConfiguration.md index 59bc6319a8..a1b5cc8a7e 100644 --- a/docset/winserver2012r2-ps/webadministration/Restore-WebConfiguration.md +++ b/docset/winserver2012r2-ps/webadministration/Restore-WebConfiguration.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/restore-webconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/restore-webconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-WebConfiguration --- diff --git a/docset/winserver2012r2-ps/webadministration/Select-WebConfiguration.md b/docset/winserver2012r2-ps/webadministration/Select-WebConfiguration.md index ef90f568fd..18868da406 100644 --- a/docset/winserver2012r2-ps/webadministration/Select-WebConfiguration.md +++ b/docset/winserver2012r2-ps/webadministration/Select-WebConfiguration.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/select-webconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/select-webconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Select-WebConfiguration --- diff --git a/docset/winserver2012r2-ps/webadministration/Set-WebBinding.md b/docset/winserver2012r2-ps/webadministration/Set-WebBinding.md index 49a0664407..8ee297343f 100644 --- a/docset/winserver2012r2-ps/webadministration/Set-WebBinding.md +++ b/docset/winserver2012r2-ps/webadministration/Set-WebBinding.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/set-webbinding?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/set-webbinding?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WebBinding --- diff --git a/docset/winserver2012r2-ps/webadministration/Set-WebCentralCertProvider.md b/docset/winserver2012r2-ps/webadministration/Set-WebCentralCertProvider.md index fedffaa2f1..77e590b333 100644 --- a/docset/winserver2012r2-ps/webadministration/Set-WebCentralCertProvider.md +++ b/docset/winserver2012r2-ps/webadministration/Set-WebCentralCertProvider.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/set-webcentralcertprovider?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/set-webcentralcertprovider?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WebCentralCertProvider --- diff --git a/docset/winserver2012r2-ps/webadministration/Set-WebCentralCertProviderCredential.md b/docset/winserver2012r2-ps/webadministration/Set-WebCentralCertProviderCredential.md index bd169257c3..763e7cb0c3 100644 --- a/docset/winserver2012r2-ps/webadministration/Set-WebCentralCertProviderCredential.md +++ b/docset/winserver2012r2-ps/webadministration/Set-WebCentralCertProviderCredential.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/set-webcentralcertprovidercredential?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/set-webcentralcertprovidercredential?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WebCentralCertProviderCredential --- diff --git a/docset/winserver2012r2-ps/webadministration/Set-WebConfiguration.md b/docset/winserver2012r2-ps/webadministration/Set-WebConfiguration.md index 43cfc62653..a844e002e1 100644 --- a/docset/winserver2012r2-ps/webadministration/Set-WebConfiguration.md +++ b/docset/winserver2012r2-ps/webadministration/Set-WebConfiguration.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/set-webconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/set-webconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WebConfiguration --- diff --git a/docset/winserver2012r2-ps/webadministration/Set-WebConfigurationProperty.md b/docset/winserver2012r2-ps/webadministration/Set-WebConfigurationProperty.md index c7294add72..9c4661786a 100644 --- a/docset/winserver2012r2-ps/webadministration/Set-WebConfigurationProperty.md +++ b/docset/winserver2012r2-ps/webadministration/Set-WebConfigurationProperty.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/set-webconfigurationproperty?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/set-webconfigurationproperty?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WebConfigurationProperty --- diff --git a/docset/winserver2012r2-ps/webadministration/Set-WebGlobalModule.md b/docset/winserver2012r2-ps/webadministration/Set-WebGlobalModule.md index 2a6e5bb332..add342faad 100644 --- a/docset/winserver2012r2-ps/webadministration/Set-WebGlobalModule.md +++ b/docset/winserver2012r2-ps/webadministration/Set-WebGlobalModule.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/set-webglobalmodule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/set-webglobalmodule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WebGlobalModule --- diff --git a/docset/winserver2012r2-ps/webadministration/Set-WebHandler.md b/docset/winserver2012r2-ps/webadministration/Set-WebHandler.md index 92c6cf5ecd..8db0103aeb 100644 --- a/docset/winserver2012r2-ps/webadministration/Set-WebHandler.md +++ b/docset/winserver2012r2-ps/webadministration/Set-WebHandler.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/set-webhandler?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/set-webhandler?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WebHandler --- diff --git a/docset/winserver2012r2-ps/webadministration/Set-WebManagedModule.md b/docset/winserver2012r2-ps/webadministration/Set-WebManagedModule.md index 340aaf8916..5892b328d3 100644 --- a/docset/winserver2012r2-ps/webadministration/Set-WebManagedModule.md +++ b/docset/winserver2012r2-ps/webadministration/Set-WebManagedModule.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/set-webmanagedmodule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/set-webmanagedmodule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WebManagedModule --- diff --git a/docset/winserver2012r2-ps/webadministration/Start-WebAppPool.md b/docset/winserver2012r2-ps/webadministration/Start-WebAppPool.md index 87bcca2452..33f649b0ac 100644 --- a/docset/winserver2012r2-ps/webadministration/Start-WebAppPool.md +++ b/docset/winserver2012r2-ps/webadministration/Start-WebAppPool.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/start-webapppool?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/start-webapppool?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-WebAppPool --- diff --git a/docset/winserver2012r2-ps/webadministration/Start-WebCommitDelay.md b/docset/winserver2012r2-ps/webadministration/Start-WebCommitDelay.md index 28903d31fc..bdc991ca81 100644 --- a/docset/winserver2012r2-ps/webadministration/Start-WebCommitDelay.md +++ b/docset/winserver2012r2-ps/webadministration/Start-WebCommitDelay.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/start-webcommitdelay?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/start-webcommitdelay?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-WebCommitDelay --- diff --git a/docset/winserver2012r2-ps/webadministration/Start-WebItem.md b/docset/winserver2012r2-ps/webadministration/Start-WebItem.md index f31a1b7c9d..dbbaa25592 100644 --- a/docset/winserver2012r2-ps/webadministration/Start-WebItem.md +++ b/docset/winserver2012r2-ps/webadministration/Start-WebItem.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/start-webitem?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/start-webitem?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-WebItem --- diff --git a/docset/winserver2012r2-ps/webadministration/Start-Website.md b/docset/winserver2012r2-ps/webadministration/Start-Website.md index 71c3034c98..c9713ac153 100644 --- a/docset/winserver2012r2-ps/webadministration/Start-Website.md +++ b/docset/winserver2012r2-ps/webadministration/Start-Website.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/start-website?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/start-website?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-Website --- diff --git a/docset/winserver2012r2-ps/webadministration/Stop-WebAppPool.md b/docset/winserver2012r2-ps/webadministration/Stop-WebAppPool.md index cd3e5433fe..ace11f6202 100644 --- a/docset/winserver2012r2-ps/webadministration/Stop-WebAppPool.md +++ b/docset/winserver2012r2-ps/webadministration/Stop-WebAppPool.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/stop-webapppool?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/stop-webapppool?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-WebAppPool --- diff --git a/docset/winserver2012r2-ps/webadministration/Stop-WebCommitDelay.md b/docset/winserver2012r2-ps/webadministration/Stop-WebCommitDelay.md index 890e0bf819..4df6e78ee9 100644 --- a/docset/winserver2012r2-ps/webadministration/Stop-WebCommitDelay.md +++ b/docset/winserver2012r2-ps/webadministration/Stop-WebCommitDelay.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/stop-webcommitdelay?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/stop-webcommitdelay?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-WebCommitDelay --- diff --git a/docset/winserver2012r2-ps/webadministration/Stop-WebItem.md b/docset/winserver2012r2-ps/webadministration/Stop-WebItem.md index 0eb4028a86..2d01437295 100644 --- a/docset/winserver2012r2-ps/webadministration/Stop-WebItem.md +++ b/docset/winserver2012r2-ps/webadministration/Stop-WebItem.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/stop-webitem?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/stop-webitem?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-WebItem --- diff --git a/docset/winserver2012r2-ps/webadministration/Stop-Website.md b/docset/winserver2012r2-ps/webadministration/Stop-Website.md index 6a0bc67f1e..9002f3c255 100644 --- a/docset/winserver2012r2-ps/webadministration/Stop-Website.md +++ b/docset/winserver2012r2-ps/webadministration/Stop-Website.md @@ -2,7 +2,7 @@ external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/webadministration/stop-website?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/stop-website?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-Website --- diff --git a/docset/winserver2012r2-ps/webapplicationproxy/Add-WebApplicationProxyApplication.md b/docset/winserver2012r2-ps/webapplicationproxy/Add-WebApplicationProxyApplication.md index 6ba63d3e81..1c9acabd8c 100644 --- a/docset/winserver2012r2-ps/webapplicationproxy/Add-WebApplicationProxyApplication.md +++ b/docset/winserver2012r2-ps/webapplicationproxy/Add-WebApplicationProxyApplication.md @@ -2,7 +2,7 @@ external help file: WebApplicationProxy-help.xml Module Name: WebApplicationProxy ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/webapplicationproxy/add-webapplicationproxyapplication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webapplicationproxy/add-webapplicationproxyapplication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WebApplicationProxyApplication --- diff --git a/docset/winserver2012r2-ps/webapplicationproxy/Get-WebApplicationProxyApplication.md b/docset/winserver2012r2-ps/webapplicationproxy/Get-WebApplicationProxyApplication.md index d33b6ef8bf..33bd41f3c6 100644 --- a/docset/winserver2012r2-ps/webapplicationproxy/Get-WebApplicationProxyApplication.md +++ b/docset/winserver2012r2-ps/webapplicationproxy/Get-WebApplicationProxyApplication.md @@ -2,7 +2,7 @@ external help file: WebApplicationProxy-help.xml Module Name: WebApplicationProxy ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/webapplicationproxy/get-webapplicationproxyapplication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webapplicationproxy/get-webapplicationproxyapplication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebApplicationProxyApplication --- diff --git a/docset/winserver2012r2-ps/webapplicationproxy/Get-WebApplicationProxyAvailableADFSRelyingParty.md b/docset/winserver2012r2-ps/webapplicationproxy/Get-WebApplicationProxyAvailableADFSRelyingParty.md index 561af14060..36d20cf2b5 100644 --- a/docset/winserver2012r2-ps/webapplicationproxy/Get-WebApplicationProxyAvailableADFSRelyingParty.md +++ b/docset/winserver2012r2-ps/webapplicationproxy/Get-WebApplicationProxyAvailableADFSRelyingParty.md @@ -2,7 +2,7 @@ external help file: WebApplicationProxy-help.xml Module Name: WebApplicationProxy ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/webapplicationproxy/get-webapplicationproxyavailableadfsrelyingparty?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webapplicationproxy/get-webapplicationproxyavailableadfsrelyingparty?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebApplicationProxyAvailableADFSRelyingParty --- diff --git a/docset/winserver2012r2-ps/webapplicationproxy/Get-WebApplicationProxyConfiguration.md b/docset/winserver2012r2-ps/webapplicationproxy/Get-WebApplicationProxyConfiguration.md index fcab606ad4..0578ad20a5 100644 --- a/docset/winserver2012r2-ps/webapplicationproxy/Get-WebApplicationProxyConfiguration.md +++ b/docset/winserver2012r2-ps/webapplicationproxy/Get-WebApplicationProxyConfiguration.md @@ -2,7 +2,7 @@ external help file: WebApplicationProxy-help.xml Module Name: WebApplicationProxy ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/webapplicationproxy/get-webapplicationproxyconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webapplicationproxy/get-webapplicationproxyconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebApplicationProxyConfiguration --- diff --git a/docset/winserver2012r2-ps/webapplicationproxy/Get-WebApplicationProxyHealth.md b/docset/winserver2012r2-ps/webapplicationproxy/Get-WebApplicationProxyHealth.md index f568145408..b8b24cda5e 100644 --- a/docset/winserver2012r2-ps/webapplicationproxy/Get-WebApplicationProxyHealth.md +++ b/docset/winserver2012r2-ps/webapplicationproxy/Get-WebApplicationProxyHealth.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.ApplicationProxy.Management.PowerShell.dll-Help.xml Module Name: WebApplicationProxy ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/webapplicationproxy/get-webapplicationproxyhealth?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webapplicationproxy/get-webapplicationproxyhealth?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebApplicationProxyHealth --- diff --git a/docset/winserver2012r2-ps/webapplicationproxy/Get-WebApplicationProxySslCertificate.md b/docset/winserver2012r2-ps/webapplicationproxy/Get-WebApplicationProxySslCertificate.md index d8c8ae86bd..cae5ed0c2a 100644 --- a/docset/winserver2012r2-ps/webapplicationproxy/Get-WebApplicationProxySslCertificate.md +++ b/docset/winserver2012r2-ps/webapplicationproxy/Get-WebApplicationProxySslCertificate.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.Proxy.dll-Help.xml Module Name: WebApplicationProxy ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/webapplicationproxy/get-webapplicationproxysslcertificate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webapplicationproxy/get-webapplicationproxysslcertificate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebApplicationProxySslCertificate --- diff --git a/docset/winserver2012r2-ps/webapplicationproxy/Install-WebApplicationProxy.md b/docset/winserver2012r2-ps/webapplicationproxy/Install-WebApplicationProxy.md index b1922657ce..d537016e43 100644 --- a/docset/winserver2012r2-ps/webapplicationproxy/Install-WebApplicationProxy.md +++ b/docset/winserver2012r2-ps/webapplicationproxy/Install-WebApplicationProxy.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.Proxy.dll-Help.xml Module Name: WebApplicationProxy ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/webapplicationproxy/install-webapplicationproxy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webapplicationproxy/install-webapplicationproxy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-WebApplicationProxy --- diff --git a/docset/winserver2012r2-ps/webapplicationproxy/Remove-WebApplicationProxyApplication.md b/docset/winserver2012r2-ps/webapplicationproxy/Remove-WebApplicationProxyApplication.md index 76cb0ceae6..df410a9aea 100644 --- a/docset/winserver2012r2-ps/webapplicationproxy/Remove-WebApplicationProxyApplication.md +++ b/docset/winserver2012r2-ps/webapplicationproxy/Remove-WebApplicationProxyApplication.md @@ -2,7 +2,7 @@ external help file: WebApplicationProxy-help.xml Module Name: WebApplicationProxy ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/webapplicationproxy/remove-webapplicationproxyapplication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webapplicationproxy/remove-webapplicationproxyapplication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WebApplicationProxyApplication --- diff --git a/docset/winserver2012r2-ps/webapplicationproxy/Set-WebApplicationProxyApplication.md b/docset/winserver2012r2-ps/webapplicationproxy/Set-WebApplicationProxyApplication.md index cb64268b6a..66f23d0dd8 100644 --- a/docset/winserver2012r2-ps/webapplicationproxy/Set-WebApplicationProxyApplication.md +++ b/docset/winserver2012r2-ps/webapplicationproxy/Set-WebApplicationProxyApplication.md @@ -2,7 +2,7 @@ external help file: WebApplicationProxy-help.xml Module Name: WebApplicationProxy ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/webapplicationproxy/set-webapplicationproxyapplication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webapplicationproxy/set-webapplicationproxyapplication?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WebApplicationProxyApplication --- diff --git a/docset/winserver2012r2-ps/webapplicationproxy/Set-WebApplicationProxyConfiguration.md b/docset/winserver2012r2-ps/webapplicationproxy/Set-WebApplicationProxyConfiguration.md index 833e216661..a8620dc28b 100644 --- a/docset/winserver2012r2-ps/webapplicationproxy/Set-WebApplicationProxyConfiguration.md +++ b/docset/winserver2012r2-ps/webapplicationproxy/Set-WebApplicationProxyConfiguration.md @@ -2,7 +2,7 @@ external help file: WebApplicationProxy-help.xml Module Name: WebApplicationProxy ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/webapplicationproxy/set-webapplicationproxyconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webapplicationproxy/set-webapplicationproxyconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WebApplicationProxyConfiguration --- diff --git a/docset/winserver2012r2-ps/webapplicationproxy/Set-WebApplicationProxySslCertificate.md b/docset/winserver2012r2-ps/webapplicationproxy/Set-WebApplicationProxySslCertificate.md index f6585cd258..18c509866b 100644 --- a/docset/winserver2012r2-ps/webapplicationproxy/Set-WebApplicationProxySslCertificate.md +++ b/docset/winserver2012r2-ps/webapplicationproxy/Set-WebApplicationProxySslCertificate.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.Proxy.dll-Help.xml Module Name: WebApplicationProxy ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/webapplicationproxy/set-webapplicationproxysslcertificate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webapplicationproxy/set-webapplicationproxysslcertificate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WebApplicationProxySslCertificate --- diff --git a/docset/winserver2012r2-ps/webapplicationproxy/Update-WebApplicationProxyDeviceRegistration.md b/docset/winserver2012r2-ps/webapplicationproxy/Update-WebApplicationProxyDeviceRegistration.md index 2820880df7..a46cb2dd49 100644 --- a/docset/winserver2012r2-ps/webapplicationproxy/Update-WebApplicationProxyDeviceRegistration.md +++ b/docset/winserver2012r2-ps/webapplicationproxy/Update-WebApplicationProxyDeviceRegistration.md @@ -2,7 +2,7 @@ external help file: Microsoft.IdentityServer.Management.Proxy.dll-Help.xml Module Name: WebApplicationProxy ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/webapplicationproxy/update-webapplicationproxydeviceregistration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webapplicationproxy/update-webapplicationproxydeviceregistration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-WebApplicationProxyDeviceRegistration --- diff --git a/docset/winserver2012r2-ps/whea/Get-WheaMemoryPolicy.md b/docset/winserver2012r2-ps/whea/Get-WheaMemoryPolicy.md index 74199d0324..709fbfc23a 100644 --- a/docset/winserver2012r2-ps/whea/Get-WheaMemoryPolicy.md +++ b/docset/winserver2012r2-ps/whea/Get-WheaMemoryPolicy.md @@ -2,7 +2,7 @@ external help file: Microsoft.Windows.Whea.WheaMemoryPolicy.dll-Help.xml Module Name: WHEA ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/whea/get-wheamemorypolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/whea/get-wheamemorypolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WheaMemoryPolicy --- diff --git a/docset/winserver2012r2-ps/whea/Set-WheaMemoryPolicy.md b/docset/winserver2012r2-ps/whea/Set-WheaMemoryPolicy.md index 09bf4c6bad..e1fdf8be40 100644 --- a/docset/winserver2012r2-ps/whea/Set-WheaMemoryPolicy.md +++ b/docset/winserver2012r2-ps/whea/Set-WheaMemoryPolicy.md @@ -2,7 +2,7 @@ external help file: Microsoft.Windows.Whea.WheaMemoryPolicy.dll-Help.xml Module Name: WHEA ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/whea/set-wheamemorypolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/whea/set-wheamemorypolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WheaMemoryPolicy --- diff --git a/docset/winserver2012r2-ps/windowsdeveloperlicense/Get-WindowsDeveloperLicense.md b/docset/winserver2012r2-ps/windowsdeveloperlicense/Get-WindowsDeveloperLicense.md index 6bac74abd5..519e2be4c9 100644 --- a/docset/winserver2012r2-ps/windowsdeveloperlicense/Get-WindowsDeveloperLicense.md +++ b/docset/winserver2012r2-ps/windowsdeveloperlicense/Get-WindowsDeveloperLicense.md @@ -2,7 +2,7 @@ external help file: Microsoft.Windows.DeveloperLicense.Commands.dll-Help.xml Module Name: WindowsDeveloperLicense ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/windowsdeveloperlicense/get-windowsdeveloperlicense?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsdeveloperlicense/get-windowsdeveloperlicense?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WindowsDeveloperLicense --- diff --git a/docset/winserver2012r2-ps/windowsdeveloperlicense/Show-WindowsDeveloperLicenseRegistration.md b/docset/winserver2012r2-ps/windowsdeveloperlicense/Show-WindowsDeveloperLicenseRegistration.md index 85e7682bb1..00b8a57262 100644 --- a/docset/winserver2012r2-ps/windowsdeveloperlicense/Show-WindowsDeveloperLicenseRegistration.md +++ b/docset/winserver2012r2-ps/windowsdeveloperlicense/Show-WindowsDeveloperLicenseRegistration.md @@ -2,7 +2,7 @@ external help file: Microsoft.Windows.DeveloperLicense.Commands.dll-Help.xml Module Name: WindowsDeveloperLicense ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/windowsdeveloperlicense/show-windowsdeveloperlicenseregistration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsdeveloperlicense/show-windowsdeveloperlicenseregistration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Show-WindowsDeveloperLicenseRegistration --- diff --git a/docset/winserver2012r2-ps/windowsdeveloperlicense/Unregister-WindowsDeveloperLicense.md b/docset/winserver2012r2-ps/windowsdeveloperlicense/Unregister-WindowsDeveloperLicense.md index 6914ef840a..934c546f7e 100644 --- a/docset/winserver2012r2-ps/windowsdeveloperlicense/Unregister-WindowsDeveloperLicense.md +++ b/docset/winserver2012r2-ps/windowsdeveloperlicense/Unregister-WindowsDeveloperLicense.md @@ -2,7 +2,7 @@ external help file: Microsoft.Windows.DeveloperLicense.Commands.dll-Help.xml Module Name: WindowsDeveloperLicense ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/windowsdeveloperlicense/unregister-windowsdeveloperlicense?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsdeveloperlicense/unregister-windowsdeveloperlicense?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unregister-WindowsDeveloperLicense --- diff --git a/docset/winserver2012r2-ps/windowserrorreporting/Disable-WindowsErrorReporting.md b/docset/winserver2012r2-ps/windowserrorreporting/Disable-WindowsErrorReporting.md index 87ffd52dca..e224aef26d 100644 --- a/docset/winserver2012r2-ps/windowserrorreporting/Disable-WindowsErrorReporting.md +++ b/docset/winserver2012r2-ps/windowserrorreporting/Disable-WindowsErrorReporting.md @@ -2,7 +2,7 @@ external help file: Microsoft.WindowsErrorReporting.PowerShell.dll-Help.xml Module Name: WindowsErrorReporting ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/windowserrorreporting/disable-windowserrorreporting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowserrorreporting/disable-windowserrorreporting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WindowsErrorReporting --- diff --git a/docset/winserver2012r2-ps/windowserrorreporting/Enable-WindowsErrorReporting.md b/docset/winserver2012r2-ps/windowserrorreporting/Enable-WindowsErrorReporting.md index 84de566912..1fd9cd633e 100644 --- a/docset/winserver2012r2-ps/windowserrorreporting/Enable-WindowsErrorReporting.md +++ b/docset/winserver2012r2-ps/windowserrorreporting/Enable-WindowsErrorReporting.md @@ -2,7 +2,7 @@ external help file: Microsoft.WindowsErrorReporting.PowerShell.dll-Help.xml Module Name: WindowsErrorReporting ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/windowserrorreporting/enable-windowserrorreporting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowserrorreporting/enable-windowserrorreporting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WindowsErrorReporting --- diff --git a/docset/winserver2012r2-ps/windowserrorreporting/Get-WindowsErrorReporting.md b/docset/winserver2012r2-ps/windowserrorreporting/Get-WindowsErrorReporting.md index 55ab19051d..b690c5d307 100644 --- a/docset/winserver2012r2-ps/windowserrorreporting/Get-WindowsErrorReporting.md +++ b/docset/winserver2012r2-ps/windowserrorreporting/Get-WindowsErrorReporting.md @@ -2,7 +2,7 @@ external help file: Microsoft.WindowsErrorReporting.PowerShell.dll-Help.xml Module Name: WindowsErrorReporting ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/windowserrorreporting/get-windowserrorreporting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowserrorreporting/get-windowserrorreporting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WindowsErrorReporting --- diff --git a/docset/winserver2012r2-ps/windowssearch/Get-WindowsSearchSetting.md b/docset/winserver2012r2-ps/windowssearch/Get-WindowsSearchSetting.md index 2a0b169c6b..a9f9881761 100644 --- a/docset/winserver2012r2-ps/windowssearch/Get-WindowsSearchSetting.md +++ b/docset/winserver2012r2-ps/windowssearch/Get-WindowsSearchSetting.md @@ -2,7 +2,7 @@ external help file: Microsoft.WindowsSearch.Commands.dll-Help.xml Module Name: WindowsSearch ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/windowssearch/get-windowssearchsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowssearch/get-windowssearchsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WindowsSearchSetting --- diff --git a/docset/winserver2012r2-ps/windowssearch/Set-WindowsSearchSetting.md b/docset/winserver2012r2-ps/windowssearch/Set-WindowsSearchSetting.md index 283f7cb10a..8054e6f070 100644 --- a/docset/winserver2012r2-ps/windowssearch/Set-WindowsSearchSetting.md +++ b/docset/winserver2012r2-ps/windowssearch/Set-WindowsSearchSetting.md @@ -2,7 +2,7 @@ external help file: Microsoft.WindowsSearch.Commands.dll-Help.xml Module Name: WindowsSearch ms.date: 10/29/2017 -online version: https://docs.microsoft.com/powershell/module/windowssearch/set-windowssearchsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowssearch/set-windowssearchsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WindowsSearchSetting --- diff --git a/docset/winserver2012r2-ps/windowsserverbackup/Add-WBBackupTarget.md b/docset/winserver2012r2-ps/windowsserverbackup/Add-WBBackupTarget.md index f7441363c1..996034e66e 100644 --- a/docset/winserver2012r2-ps/windowsserverbackup/Add-WBBackupTarget.md +++ b/docset/winserver2012r2-ps/windowsserverbackup/Add-WBBackupTarget.md @@ -2,7 +2,7 @@ external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/add-wbbackuptarget?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/add-wbbackuptarget?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WBBackupTarget --- diff --git a/docset/winserver2012r2-ps/windowsserverbackup/Add-WBBareMetalRecovery.md b/docset/winserver2012r2-ps/windowsserverbackup/Add-WBBareMetalRecovery.md index 99600c5d03..02651fd1ea 100644 --- a/docset/winserver2012r2-ps/windowsserverbackup/Add-WBBareMetalRecovery.md +++ b/docset/winserver2012r2-ps/windowsserverbackup/Add-WBBareMetalRecovery.md @@ -2,7 +2,7 @@ external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/add-wbbaremetalrecovery?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/add-wbbaremetalrecovery?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WBBareMetalRecovery --- diff --git a/docset/winserver2012r2-ps/windowsserverbackup/Add-WBFileSpec.md b/docset/winserver2012r2-ps/windowsserverbackup/Add-WBFileSpec.md index 3ba9eb7592..d54ad2e2be 100644 --- a/docset/winserver2012r2-ps/windowsserverbackup/Add-WBFileSpec.md +++ b/docset/winserver2012r2-ps/windowsserverbackup/Add-WBFileSpec.md @@ -2,7 +2,7 @@ external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/add-wbfilespec?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/add-wbfilespec?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WBFileSpec --- diff --git a/docset/winserver2012r2-ps/windowsserverbackup/Add-WBSystemState.md b/docset/winserver2012r2-ps/windowsserverbackup/Add-WBSystemState.md index 212411d1a9..aee24a6634 100644 --- a/docset/winserver2012r2-ps/windowsserverbackup/Add-WBSystemState.md +++ b/docset/winserver2012r2-ps/windowsserverbackup/Add-WBSystemState.md @@ -2,7 +2,7 @@ external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/add-wbsystemstate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/add-wbsystemstate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WBSystemState --- diff --git a/docset/winserver2012r2-ps/windowsserverbackup/Add-WBVirtualMachine.md b/docset/winserver2012r2-ps/windowsserverbackup/Add-WBVirtualMachine.md index b12a97f4a7..8a5229fb39 100644 --- a/docset/winserver2012r2-ps/windowsserverbackup/Add-WBVirtualMachine.md +++ b/docset/winserver2012r2-ps/windowsserverbackup/Add-WBVirtualMachine.md @@ -2,7 +2,7 @@ external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/add-wbvirtualmachine?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/add-wbvirtualmachine?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WBVirtualMachine --- diff --git a/docset/winserver2012r2-ps/windowsserverbackup/Add-WBVolume.md b/docset/winserver2012r2-ps/windowsserverbackup/Add-WBVolume.md index 6761707b21..6315fa6191 100644 --- a/docset/winserver2012r2-ps/windowsserverbackup/Add-WBVolume.md +++ b/docset/winserver2012r2-ps/windowsserverbackup/Add-WBVolume.md @@ -2,7 +2,7 @@ external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/add-wbvolume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/add-wbvolume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WBVolume --- diff --git a/docset/winserver2012r2-ps/windowsserverbackup/Get-WBBackupSet.md b/docset/winserver2012r2-ps/windowsserverbackup/Get-WBBackupSet.md index 00834fe221..ed42cea3b2 100644 --- a/docset/winserver2012r2-ps/windowsserverbackup/Get-WBBackupSet.md +++ b/docset/winserver2012r2-ps/windowsserverbackup/Get-WBBackupSet.md @@ -2,7 +2,7 @@ external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbbackupset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbbackupset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBBackupSet --- diff --git a/docset/winserver2012r2-ps/windowsserverbackup/Get-WBBackupTarget.md b/docset/winserver2012r2-ps/windowsserverbackup/Get-WBBackupTarget.md index d15ad22978..a7233a0d72 100644 --- a/docset/winserver2012r2-ps/windowsserverbackup/Get-WBBackupTarget.md +++ b/docset/winserver2012r2-ps/windowsserverbackup/Get-WBBackupTarget.md @@ -2,7 +2,7 @@ external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbbackuptarget?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbbackuptarget?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBBackupTarget --- diff --git a/docset/winserver2012r2-ps/windowsserverbackup/Get-WBBackupVolumeBrowsePath.md b/docset/winserver2012r2-ps/windowsserverbackup/Get-WBBackupVolumeBrowsePath.md index 4e407ec84c..7b2f13934b 100644 --- a/docset/winserver2012r2-ps/windowsserverbackup/Get-WBBackupVolumeBrowsePath.md +++ b/docset/winserver2012r2-ps/windowsserverbackup/Get-WBBackupVolumeBrowsePath.md @@ -2,7 +2,7 @@ external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbbackupvolumebrowsepath?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbbackupvolumebrowsepath?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBBackupVolumeBrowsePath --- diff --git a/docset/winserver2012r2-ps/windowsserverbackup/Get-WBBareMetalRecovery.md b/docset/winserver2012r2-ps/windowsserverbackup/Get-WBBareMetalRecovery.md index f602374689..ec5f2c1379 100644 --- a/docset/winserver2012r2-ps/windowsserverbackup/Get-WBBareMetalRecovery.md +++ b/docset/winserver2012r2-ps/windowsserverbackup/Get-WBBareMetalRecovery.md @@ -2,7 +2,7 @@ external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbbaremetalrecovery?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbbaremetalrecovery?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBBareMetalRecovery --- diff --git a/docset/winserver2012r2-ps/windowsserverbackup/Get-WBDisk.md b/docset/winserver2012r2-ps/windowsserverbackup/Get-WBDisk.md index 56a0eb2c93..41e1171e13 100644 --- a/docset/winserver2012r2-ps/windowsserverbackup/Get-WBDisk.md +++ b/docset/winserver2012r2-ps/windowsserverbackup/Get-WBDisk.md @@ -2,7 +2,7 @@ external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbdisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbdisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBDisk --- diff --git a/docset/winserver2012r2-ps/windowsserverbackup/Get-WBFileSpec.md b/docset/winserver2012r2-ps/windowsserverbackup/Get-WBFileSpec.md index a4ab03c061..ed64015598 100644 --- a/docset/winserver2012r2-ps/windowsserverbackup/Get-WBFileSpec.md +++ b/docset/winserver2012r2-ps/windowsserverbackup/Get-WBFileSpec.md @@ -2,7 +2,7 @@ external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbfilespec?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbfilespec?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBFileSpec --- diff --git a/docset/winserver2012r2-ps/windowsserverbackup/Get-WBJob.md b/docset/winserver2012r2-ps/windowsserverbackup/Get-WBJob.md index 88889802e5..395e6e2616 100644 --- a/docset/winserver2012r2-ps/windowsserverbackup/Get-WBJob.md +++ b/docset/winserver2012r2-ps/windowsserverbackup/Get-WBJob.md @@ -2,7 +2,7 @@ external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBJob --- diff --git a/docset/winserver2012r2-ps/windowsserverbackup/Get-WBPerformanceConfiguration.md b/docset/winserver2012r2-ps/windowsserverbackup/Get-WBPerformanceConfiguration.md index 8546231f32..44bc116f2a 100644 --- a/docset/winserver2012r2-ps/windowsserverbackup/Get-WBPerformanceConfiguration.md +++ b/docset/winserver2012r2-ps/windowsserverbackup/Get-WBPerformanceConfiguration.md @@ -2,7 +2,7 @@ external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbperformanceconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbperformanceconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBPerformanceConfiguration --- diff --git a/docset/winserver2012r2-ps/windowsserverbackup/Get-WBPolicy.md b/docset/winserver2012r2-ps/windowsserverbackup/Get-WBPolicy.md index e69e73356d..06f5b03a21 100644 --- a/docset/winserver2012r2-ps/windowsserverbackup/Get-WBPolicy.md +++ b/docset/winserver2012r2-ps/windowsserverbackup/Get-WBPolicy.md @@ -2,7 +2,7 @@ external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBPolicy --- diff --git a/docset/winserver2012r2-ps/windowsserverbackup/Get-WBSchedule.md b/docset/winserver2012r2-ps/windowsserverbackup/Get-WBSchedule.md index 072c31d339..757dac7b27 100644 --- a/docset/winserver2012r2-ps/windowsserverbackup/Get-WBSchedule.md +++ b/docset/winserver2012r2-ps/windowsserverbackup/Get-WBSchedule.md @@ -2,7 +2,7 @@ external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbschedule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbschedule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBSchedule --- diff --git a/docset/winserver2012r2-ps/windowsserverbackup/Get-WBSummary.md b/docset/winserver2012r2-ps/windowsserverbackup/Get-WBSummary.md index 2f3cd72282..ab7ed0ef8b 100644 --- a/docset/winserver2012r2-ps/windowsserverbackup/Get-WBSummary.md +++ b/docset/winserver2012r2-ps/windowsserverbackup/Get-WBSummary.md @@ -2,7 +2,7 @@ external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbsummary?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbsummary?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBSummary --- diff --git a/docset/winserver2012r2-ps/windowsserverbackup/Get-WBSystemState.md b/docset/winserver2012r2-ps/windowsserverbackup/Get-WBSystemState.md index f87b9bea8f..0c60e68afb 100644 --- a/docset/winserver2012r2-ps/windowsserverbackup/Get-WBSystemState.md +++ b/docset/winserver2012r2-ps/windowsserverbackup/Get-WBSystemState.md @@ -2,7 +2,7 @@ external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbsystemstate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbsystemstate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBSystemState --- diff --git a/docset/winserver2012r2-ps/windowsserverbackup/Get-WBVirtualMachine.md b/docset/winserver2012r2-ps/windowsserverbackup/Get-WBVirtualMachine.md index 1174ef285e..b20acd6b31 100644 --- a/docset/winserver2012r2-ps/windowsserverbackup/Get-WBVirtualMachine.md +++ b/docset/winserver2012r2-ps/windowsserverbackup/Get-WBVirtualMachine.md @@ -2,7 +2,7 @@ external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbvirtualmachine?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbvirtualmachine?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBVirtualMachine --- diff --git a/docset/winserver2012r2-ps/windowsserverbackup/Get-WBVolume.md b/docset/winserver2012r2-ps/windowsserverbackup/Get-WBVolume.md index fcf14142b4..67e96618b8 100644 --- a/docset/winserver2012r2-ps/windowsserverbackup/Get-WBVolume.md +++ b/docset/winserver2012r2-ps/windowsserverbackup/Get-WBVolume.md @@ -2,7 +2,7 @@ external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbvolume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbvolume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBVolume --- diff --git a/docset/winserver2012r2-ps/windowsserverbackup/Get-WBVssBackupOption.md b/docset/winserver2012r2-ps/windowsserverbackup/Get-WBVssBackupOption.md index 2db9cfc6b0..2b806b1d9e 100644 --- a/docset/winserver2012r2-ps/windowsserverbackup/Get-WBVssBackupOption.md +++ b/docset/winserver2012r2-ps/windowsserverbackup/Get-WBVssBackupOption.md @@ -2,7 +2,7 @@ external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbvssbackupoption?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbvssbackupoption?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBVssBackupOption --- diff --git a/docset/winserver2012r2-ps/windowsserverbackup/New-WBBackupTarget.md b/docset/winserver2012r2-ps/windowsserverbackup/New-WBBackupTarget.md index 5a9b827853..fbc41798b9 100644 --- a/docset/winserver2012r2-ps/windowsserverbackup/New-WBBackupTarget.md +++ b/docset/winserver2012r2-ps/windowsserverbackup/New-WBBackupTarget.md @@ -2,7 +2,7 @@ external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/new-wbbackuptarget?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/new-wbbackuptarget?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WBBackupTarget --- diff --git a/docset/winserver2012r2-ps/windowsserverbackup/New-WBFileSpec.md b/docset/winserver2012r2-ps/windowsserverbackup/New-WBFileSpec.md index 21b53d4d40..0ce877c6ff 100644 --- a/docset/winserver2012r2-ps/windowsserverbackup/New-WBFileSpec.md +++ b/docset/winserver2012r2-ps/windowsserverbackup/New-WBFileSpec.md @@ -2,7 +2,7 @@ external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/new-wbfilespec?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/new-wbfilespec?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WBFileSpec --- diff --git a/docset/winserver2012r2-ps/windowsserverbackup/New-WBPolicy.md b/docset/winserver2012r2-ps/windowsserverbackup/New-WBPolicy.md index fd7d16bedc..d4fbd0373d 100644 --- a/docset/winserver2012r2-ps/windowsserverbackup/New-WBPolicy.md +++ b/docset/winserver2012r2-ps/windowsserverbackup/New-WBPolicy.md @@ -2,7 +2,7 @@ external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/new-wbpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/new-wbpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WBPolicy --- diff --git a/docset/winserver2012r2-ps/windowsserverbackup/Remove-WBBackupSet.md b/docset/winserver2012r2-ps/windowsserverbackup/Remove-WBBackupSet.md index ffda4f7e26..a752d816f6 100644 --- a/docset/winserver2012r2-ps/windowsserverbackup/Remove-WBBackupSet.md +++ b/docset/winserver2012r2-ps/windowsserverbackup/Remove-WBBackupSet.md @@ -2,7 +2,7 @@ external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/remove-wbbackupset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/remove-wbbackupset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WBBackupSet --- diff --git a/docset/winserver2012r2-ps/windowsserverbackup/Remove-WBBackupTarget.md b/docset/winserver2012r2-ps/windowsserverbackup/Remove-WBBackupTarget.md index 0ecffa0dc3..96f917c093 100644 --- a/docset/winserver2012r2-ps/windowsserverbackup/Remove-WBBackupTarget.md +++ b/docset/winserver2012r2-ps/windowsserverbackup/Remove-WBBackupTarget.md @@ -2,7 +2,7 @@ external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/remove-wbbackuptarget?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/remove-wbbackuptarget?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WBBackupTarget --- diff --git a/docset/winserver2012r2-ps/windowsserverbackup/Remove-WBBareMetalRecovery.md b/docset/winserver2012r2-ps/windowsserverbackup/Remove-WBBareMetalRecovery.md index 48568ebd65..4ab4acfdd3 100644 --- a/docset/winserver2012r2-ps/windowsserverbackup/Remove-WBBareMetalRecovery.md +++ b/docset/winserver2012r2-ps/windowsserverbackup/Remove-WBBareMetalRecovery.md @@ -2,7 +2,7 @@ external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/remove-wbbaremetalrecovery?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/remove-wbbaremetalrecovery?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WBBareMetalRecovery --- diff --git a/docset/winserver2012r2-ps/windowsserverbackup/Remove-WBCatalog.md b/docset/winserver2012r2-ps/windowsserverbackup/Remove-WBCatalog.md index 9dfa27ea98..49cb015a52 100644 --- a/docset/winserver2012r2-ps/windowsserverbackup/Remove-WBCatalog.md +++ b/docset/winserver2012r2-ps/windowsserverbackup/Remove-WBCatalog.md @@ -2,7 +2,7 @@ external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/remove-wbcatalog?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/remove-wbcatalog?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WBCatalog --- diff --git a/docset/winserver2012r2-ps/windowsserverbackup/Remove-WBFileSpec.md b/docset/winserver2012r2-ps/windowsserverbackup/Remove-WBFileSpec.md index 9b6c330efc..31f2ef61b1 100644 --- a/docset/winserver2012r2-ps/windowsserverbackup/Remove-WBFileSpec.md +++ b/docset/winserver2012r2-ps/windowsserverbackup/Remove-WBFileSpec.md @@ -2,7 +2,7 @@ external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/remove-wbfilespec?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/remove-wbfilespec?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WBFileSpec --- diff --git a/docset/winserver2012r2-ps/windowsserverbackup/Remove-WBPolicy.md b/docset/winserver2012r2-ps/windowsserverbackup/Remove-WBPolicy.md index 62158d467c..5256801771 100644 --- a/docset/winserver2012r2-ps/windowsserverbackup/Remove-WBPolicy.md +++ b/docset/winserver2012r2-ps/windowsserverbackup/Remove-WBPolicy.md @@ -2,7 +2,7 @@ external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/remove-wbpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/remove-wbpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WBPolicy --- diff --git a/docset/winserver2012r2-ps/windowsserverbackup/Remove-WBSystemState.md b/docset/winserver2012r2-ps/windowsserverbackup/Remove-WBSystemState.md index 6d6c29948f..7f9fb3d09d 100644 --- a/docset/winserver2012r2-ps/windowsserverbackup/Remove-WBSystemState.md +++ b/docset/winserver2012r2-ps/windowsserverbackup/Remove-WBSystemState.md @@ -2,7 +2,7 @@ external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/remove-wbsystemstate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/remove-wbsystemstate?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WBSystemState --- diff --git a/docset/winserver2012r2-ps/windowsserverbackup/Remove-WBVirtualMachine.md b/docset/winserver2012r2-ps/windowsserverbackup/Remove-WBVirtualMachine.md index 47644f285f..89ae015d73 100644 --- a/docset/winserver2012r2-ps/windowsserverbackup/Remove-WBVirtualMachine.md +++ b/docset/winserver2012r2-ps/windowsserverbackup/Remove-WBVirtualMachine.md @@ -2,7 +2,7 @@ external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/remove-wbvirtualmachine?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/remove-wbvirtualmachine?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WBVirtualMachine --- diff --git a/docset/winserver2012r2-ps/windowsserverbackup/Remove-WBVolume.md b/docset/winserver2012r2-ps/windowsserverbackup/Remove-WBVolume.md index 9c6da926ac..798e28d920 100644 --- a/docset/winserver2012r2-ps/windowsserverbackup/Remove-WBVolume.md +++ b/docset/winserver2012r2-ps/windowsserverbackup/Remove-WBVolume.md @@ -2,7 +2,7 @@ external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/remove-wbvolume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/remove-wbvolume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WBVolume --- diff --git a/docset/winserver2012r2-ps/windowsserverbackup/Restore-WBCatalog.md b/docset/winserver2012r2-ps/windowsserverbackup/Restore-WBCatalog.md index 5190378b28..a7409f7001 100644 --- a/docset/winserver2012r2-ps/windowsserverbackup/Restore-WBCatalog.md +++ b/docset/winserver2012r2-ps/windowsserverbackup/Restore-WBCatalog.md @@ -2,7 +2,7 @@ external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/restore-wbcatalog?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/restore-wbcatalog?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-WBCatalog --- diff --git a/docset/winserver2012r2-ps/windowsserverbackup/Resume-WBBackup.md b/docset/winserver2012r2-ps/windowsserverbackup/Resume-WBBackup.md index 6c81afaaad..2512f5c566 100644 --- a/docset/winserver2012r2-ps/windowsserverbackup/Resume-WBBackup.md +++ b/docset/winserver2012r2-ps/windowsserverbackup/Resume-WBBackup.md @@ -2,7 +2,7 @@ external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/resume-wbbackup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/resume-wbbackup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-WBBackup --- diff --git a/docset/winserver2012r2-ps/windowsserverbackup/Resume-WBVolumeRecovery.md b/docset/winserver2012r2-ps/windowsserverbackup/Resume-WBVolumeRecovery.md index 4d1e44c9a3..1c2beb4179 100644 --- a/docset/winserver2012r2-ps/windowsserverbackup/Resume-WBVolumeRecovery.md +++ b/docset/winserver2012r2-ps/windowsserverbackup/Resume-WBVolumeRecovery.md @@ -2,7 +2,7 @@ external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/resume-wbvolumerecovery?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/resume-wbvolumerecovery?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-WBVolumeRecovery --- diff --git a/docset/winserver2012r2-ps/windowsserverbackup/Set-WBPerformanceConfiguration.md b/docset/winserver2012r2-ps/windowsserverbackup/Set-WBPerformanceConfiguration.md index e921ba2416..b795db2c01 100644 --- a/docset/winserver2012r2-ps/windowsserverbackup/Set-WBPerformanceConfiguration.md +++ b/docset/winserver2012r2-ps/windowsserverbackup/Set-WBPerformanceConfiguration.md @@ -2,7 +2,7 @@ external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/set-wbperformanceconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/set-wbperformanceconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WBPerformanceConfiguration --- diff --git a/docset/winserver2012r2-ps/windowsserverbackup/Set-WBPolicy.md b/docset/winserver2012r2-ps/windowsserverbackup/Set-WBPolicy.md index ef410388e3..01e6caf948 100644 --- a/docset/winserver2012r2-ps/windowsserverbackup/Set-WBPolicy.md +++ b/docset/winserver2012r2-ps/windowsserverbackup/Set-WBPolicy.md @@ -2,7 +2,7 @@ external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/set-wbpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/set-wbpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WBPolicy --- diff --git a/docset/winserver2012r2-ps/windowsserverbackup/Set-WBSchedule.md b/docset/winserver2012r2-ps/windowsserverbackup/Set-WBSchedule.md index d6ee110f1f..95d04b28ca 100644 --- a/docset/winserver2012r2-ps/windowsserverbackup/Set-WBSchedule.md +++ b/docset/winserver2012r2-ps/windowsserverbackup/Set-WBSchedule.md @@ -2,7 +2,7 @@ external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/set-wbschedule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/set-wbschedule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WBSchedule --- diff --git a/docset/winserver2012r2-ps/windowsserverbackup/Set-WBVssBackupOption.md b/docset/winserver2012r2-ps/windowsserverbackup/Set-WBVssBackupOption.md index df9eb4c70e..e98b51e82c 100644 --- a/docset/winserver2012r2-ps/windowsserverbackup/Set-WBVssBackupOption.md +++ b/docset/winserver2012r2-ps/windowsserverbackup/Set-WBVssBackupOption.md @@ -2,7 +2,7 @@ external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/set-wbvssbackupoption?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/set-wbvssbackupoption?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WBVssBackupOption --- diff --git a/docset/winserver2012r2-ps/windowsserverbackup/Start-WBApplicationRecovery.md b/docset/winserver2012r2-ps/windowsserverbackup/Start-WBApplicationRecovery.md index c139def5e5..fa84b12e11 100644 --- a/docset/winserver2012r2-ps/windowsserverbackup/Start-WBApplicationRecovery.md +++ b/docset/winserver2012r2-ps/windowsserverbackup/Start-WBApplicationRecovery.md @@ -2,7 +2,7 @@ external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/start-wbapplicationrecovery?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/start-wbapplicationrecovery?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-WBApplicationRecovery --- diff --git a/docset/winserver2012r2-ps/windowsserverbackup/Start-WBBackup.md b/docset/winserver2012r2-ps/windowsserverbackup/Start-WBBackup.md index 27d48e6af8..70329bf477 100644 --- a/docset/winserver2012r2-ps/windowsserverbackup/Start-WBBackup.md +++ b/docset/winserver2012r2-ps/windowsserverbackup/Start-WBBackup.md @@ -2,7 +2,7 @@ external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/start-wbbackup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/start-wbbackup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-WBBackup --- diff --git a/docset/winserver2012r2-ps/windowsserverbackup/Start-WBFileRecovery.md b/docset/winserver2012r2-ps/windowsserverbackup/Start-WBFileRecovery.md index 6050a5133c..2ab7d1c5ec 100644 --- a/docset/winserver2012r2-ps/windowsserverbackup/Start-WBFileRecovery.md +++ b/docset/winserver2012r2-ps/windowsserverbackup/Start-WBFileRecovery.md @@ -2,7 +2,7 @@ external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/start-wbfilerecovery?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/start-wbfilerecovery?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-WBFileRecovery --- diff --git a/docset/winserver2012r2-ps/windowsserverbackup/Start-WBHyperVRecovery.md b/docset/winserver2012r2-ps/windowsserverbackup/Start-WBHyperVRecovery.md index 0b29ab746a..798589c6e1 100644 --- a/docset/winserver2012r2-ps/windowsserverbackup/Start-WBHyperVRecovery.md +++ b/docset/winserver2012r2-ps/windowsserverbackup/Start-WBHyperVRecovery.md @@ -2,7 +2,7 @@ external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/start-wbhypervrecovery?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/start-wbhypervrecovery?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-WBHyperVRecovery --- diff --git a/docset/winserver2012r2-ps/windowsserverbackup/Start-WBSystemStateRecovery.md b/docset/winserver2012r2-ps/windowsserverbackup/Start-WBSystemStateRecovery.md index ad37ed9842..ef5512a309 100644 --- a/docset/winserver2012r2-ps/windowsserverbackup/Start-WBSystemStateRecovery.md +++ b/docset/winserver2012r2-ps/windowsserverbackup/Start-WBSystemStateRecovery.md @@ -2,7 +2,7 @@ external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/start-wbsystemstaterecovery?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/start-wbsystemstaterecovery?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-WBSystemStateRecovery --- diff --git a/docset/winserver2012r2-ps/windowsserverbackup/Start-WBVolumeRecovery.md b/docset/winserver2012r2-ps/windowsserverbackup/Start-WBVolumeRecovery.md index d1e9c1eaeb..1e85f73c02 100644 --- a/docset/winserver2012r2-ps/windowsserverbackup/Start-WBVolumeRecovery.md +++ b/docset/winserver2012r2-ps/windowsserverbackup/Start-WBVolumeRecovery.md @@ -2,7 +2,7 @@ external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/start-wbvolumerecovery?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/start-wbvolumerecovery?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-WBVolumeRecovery --- diff --git a/docset/winserver2012r2-ps/windowsserverbackup/Stop-WBJob.md b/docset/winserver2012r2-ps/windowsserverbackup/Stop-WBJob.md index 4589894b5b..8feb552209 100644 --- a/docset/winserver2012r2-ps/windowsserverbackup/Stop-WBJob.md +++ b/docset/winserver2012r2-ps/windowsserverbackup/Stop-WBJob.md @@ -2,7 +2,7 @@ external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 10/30/2017 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/stop-wbjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/stop-wbjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-WBJob --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Add-HostedEmailAccount.md b/docset/winserver2012r2-ps/wsscmdlets/Add-HostedEmailAccount.md index 67b0409145..f880bb1d4e 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Add-HostedEmailAccount.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Add-HostedEmailAccount.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/add-hostedemailaccount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/add-hostedemailaccount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-HostedEmailAccount --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Add-O365User.md b/docset/winserver2012r2-ps/wsscmdlets/Add-O365User.md index b145304a88..d97a9ac650 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Add-O365User.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Add-O365User.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/add-o365user?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/add-o365user?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-O365User --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Add-WssBackupConfiguration.md b/docset/winserver2012r2-ps/wsscmdlets/Add-WssBackupConfiguration.md index ae4d02758e..868984bd8e 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Add-WssBackupConfiguration.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Add-WssBackupConfiguration.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/add-wssbackupconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/add-wssbackupconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WssBackupConfiguration --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Add-WssBackupSchedule.md b/docset/winserver2012r2-ps/wsscmdlets/Add-WssBackupSchedule.md index aa059a7000..a381d847f3 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Add-WssBackupSchedule.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Add-WssBackupSchedule.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/add-wssbackupschedule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/add-wssbackupschedule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WssBackupSchedule --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Add-WssBackupSystemRecovery.md b/docset/winserver2012r2-ps/wsscmdlets/Add-WssBackupSystemRecovery.md index 50c1f32cd4..67ca73efaa 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Add-WssBackupSystemRecovery.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Add-WssBackupSystemRecovery.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/add-wssbackupsystemrecovery?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/add-wssbackupsystemrecovery?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WssBackupSystemRecovery --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Add-WssBackupTarget.md b/docset/winserver2012r2-ps/wsscmdlets/Add-WssBackupTarget.md index 6cca920f1d..429eead994 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Add-WssBackupTarget.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Add-WssBackupTarget.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/add-wssbackuptarget?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/add-wssbackuptarget?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WssBackupTarget --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Add-WssBackupVolume.md b/docset/winserver2012r2-ps/wsscmdlets/Add-WssBackupVolume.md index f21f9ee017..d9d8a27d53 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Add-WssBackupVolume.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Add-WssBackupVolume.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/add-wssbackupvolume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/add-wssbackupvolume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WssBackupVolume --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Add-WssComputerAccess.md b/docset/winserver2012r2-ps/wsscmdlets/Add-WssComputerAccess.md index 1ab150af31..a2e6678de0 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Add-WssComputerAccess.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Add-WssComputerAccess.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/add-wsscomputeraccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/add-wsscomputeraccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WssComputerAccess --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Add-WssDisksToSpacesPool.md b/docset/winserver2012r2-ps/wsscmdlets/Add-WssDisksToSpacesPool.md index f024fb01b3..c7700d18aa 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Add-WssDisksToSpacesPool.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Add-WssDisksToSpacesPool.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/add-wssdiskstospacespool?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/add-wssdiskstospacespool?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WssDisksToSpacesPool --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Add-WssFolder.md b/docset/winserver2012r2-ps/wsscmdlets/Add-WssFolder.md index 2011f0fd69..9875675454 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Add-WssFolder.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Add-WssFolder.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/add-wssfolder?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/add-wssfolder?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WssFolder --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Add-WssLocalMachineCert.md b/docset/winserver2012r2-ps/wsscmdlets/Add-WssLocalMachineCert.md index 15deb40d34..0280c84249 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Add-WssLocalMachineCert.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Add-WssLocalMachineCert.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/add-wsslocalmachinecert?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/add-wsslocalmachinecert?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WssLocalMachineCert --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Add-WssMsoGroup.md b/docset/winserver2012r2-ps/wsscmdlets/Add-WssMsoGroup.md index 3067403928..dc045aa8af 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Add-WssMsoGroup.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Add-WssMsoGroup.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/add-wssmsogroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/add-wssmsogroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WssMsoGroup --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Add-WssMsoUser.md b/docset/winserver2012r2-ps/wsscmdlets/Add-WssMsoUser.md index 5a593c5329..9147480c5e 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Add-WssMsoUser.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Add-WssMsoUser.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/add-wssmsouser?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/add-wssmsouser?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WssMsoUser --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Add-WssRemoteWebAccessLink.md b/docset/winserver2012r2-ps/wsscmdlets/Add-WssRemoteWebAccessLink.md index 7b20429584..1d0e56ec81 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Add-WssRemoteWebAccessLink.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Add-WssRemoteWebAccessLink.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/add-wssremotewebaccesslink?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/add-wssremotewebaccesslink?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WssRemoteWebAccessLink --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Add-WssUser.md b/docset/winserver2012r2-ps/wsscmdlets/Add-WssUser.md index 8345d0e5c4..7403e86307 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Add-WssUser.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Add-WssUser.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/add-wssuser?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/add-wssuser?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WssUser --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Add-WssUserGroup.md b/docset/winserver2012r2-ps/wsscmdlets/Add-WssUserGroup.md index 009a091f64..471c6d2440 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Add-WssUserGroup.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Add-WssUserGroup.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/add-wssusergroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/add-wssusergroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WssUserGroup --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Add-WssUserGroupMembership.md b/docset/winserver2012r2-ps/wsscmdlets/Add-WssUserGroupMembership.md index 7a5a5f2120..60db63d011 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Add-WssUserGroupMembership.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Add-WssUserGroupMembership.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/add-wssusergroupmembership?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/add-wssusergroupmembership?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WssUserGroupMembership --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Clear-AssignedHostedEmailAccount.md b/docset/winserver2012r2-ps/wsscmdlets/Clear-AssignedHostedEmailAccount.md index 17a1eb0835..f5e25191fd 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Clear-AssignedHostedEmailAccount.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Clear-AssignedHostedEmailAccount.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/clear-assignedhostedemailaccount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/clear-assignedhostedemailaccount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-AssignedHostedEmailAccount --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Clear-O365AssignedUser.md b/docset/winserver2012r2-ps/wsscmdlets/Clear-O365AssignedUser.md index a7ed43bd9c..bc7d09321b 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Clear-O365AssignedUser.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Clear-O365AssignedUser.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/clear-o365assigneduser?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/clear-o365assigneduser?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-O365AssignedUser --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Clear-WssAlert.md b/docset/winserver2012r2-ps/wsscmdlets/Clear-WssAlert.md index 142acb0ab0..ff9effd510 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Clear-WssAlert.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Clear-WssAlert.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/clear-wssalert?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/clear-wssalert?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-WssAlert --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Copy-WssClientRecoveryImage.md b/docset/winserver2012r2-ps/wsscmdlets/Copy-WssClientRecoveryImage.md index a0bcb1a3a1..598ae96532 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Copy-WssClientRecoveryImage.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Copy-WssClientRecoveryImage.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/copy-wssclientrecoveryimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/copy-wssclientrecoveryimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Copy-WssClientRecoveryImage --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Disable-ExchangeIntegration.md b/docset/winserver2012r2-ps/wsscmdlets/Disable-ExchangeIntegration.md index 604b21e783..d07eda94c5 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Disable-ExchangeIntegration.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Disable-ExchangeIntegration.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/disable-exchangeintegration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/disable-exchangeintegration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-ExchangeIntegration --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Disable-FolderRedirection.md b/docset/winserver2012r2-ps/wsscmdlets/Disable-FolderRedirection.md index 2b137a8b48..c5b6baf632 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Disable-FolderRedirection.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Disable-FolderRedirection.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/disable-folderredirection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/disable-folderredirection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-FolderRedirection --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Disable-HostedEmailAccount.md b/docset/winserver2012r2-ps/wsscmdlets/Disable-HostedEmailAccount.md index 478859ab5f..e1d83d3ac8 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Disable-HostedEmailAccount.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Disable-HostedEmailAccount.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/disable-hostedemailaccount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/disable-hostedemailaccount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-HostedEmailAccount --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Disable-HostedEmailIntegration.md b/docset/winserver2012r2-ps/wsscmdlets/Disable-HostedEmailIntegration.md index 124e135401..9c30b95390 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Disable-HostedEmailIntegration.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Disable-HostedEmailIntegration.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/disable-hostedemailintegration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/disable-hostedemailintegration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-HostedEmailIntegration --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Disable-O365Integration.md b/docset/winserver2012r2-ps/wsscmdlets/Disable-O365Integration.md index f3fa11e0f2..ed1806f816 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Disable-O365Integration.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Disable-O365Integration.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/disable-o365integration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/disable-o365integration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-O365Integration --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Disable-O365User.md b/docset/winserver2012r2-ps/wsscmdlets/Disable-O365User.md index 507650176c..6af0838c87 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Disable-O365User.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Disable-O365User.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/disable-o365user?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/disable-o365user?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-O365User --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Disable-SecurityPolicy.md b/docset/winserver2012r2-ps/wsscmdlets/Disable-SecurityPolicy.md index a1a1ba9ab2..93c72f085f 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Disable-SecurityPolicy.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Disable-SecurityPolicy.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/disable-securitypolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/disable-securitypolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-SecurityPolicy --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Disable-WssAlert.md b/docset/winserver2012r2-ps/wsscmdlets/Disable-WssAlert.md index 5030424602..5d19fe6252 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Disable-WssAlert.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Disable-WssAlert.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/disable-wssalert?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/disable-wssalert?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WssAlert --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Disable-WssBackupPolicy.md b/docset/winserver2012r2-ps/wsscmdlets/Disable-WssBackupPolicy.md index ecdd523a2a..a585e6ea43 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Disable-WssBackupPolicy.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Disable-WssBackupPolicy.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/disable-wssbackuppolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/disable-wssbackuppolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WssBackupPolicy --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Disable-WssBranchCache.md b/docset/winserver2012r2-ps/wsscmdlets/Disable-WssBranchCache.md index b27c90f285..8070c73f8d 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Disable-WssBranchCache.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Disable-WssBranchCache.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/disable-wssbranchcache?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/disable-wssbranchcache?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WssBranchCache --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Disable-WssClientBackup.md b/docset/winserver2012r2-ps/wsscmdlets/Disable-WssClientBackup.md index 05a0091e33..3d6ff7ee88 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Disable-WssClientBackup.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Disable-WssClientBackup.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/disable-wssclientbackup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/disable-wssclientbackup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WssClientBackup --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Disable-WssClientBackupVolume.md b/docset/winserver2012r2-ps/wsscmdlets/Disable-WssClientBackupVolume.md index 14bfa199a4..123a6ac41e 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Disable-WssClientBackupVolume.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Disable-WssClientBackupVolume.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/disable-wssclientbackupvolume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/disable-wssclientbackupvolume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WssClientBackupVolume --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Disable-WssMsoIntegration.md b/docset/winserver2012r2-ps/wsscmdlets/Disable-WssMsoIntegration.md index c011e97312..c8b1f19c71 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Disable-WssMsoIntegration.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Disable-WssMsoIntegration.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/disable-wssmsointegration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/disable-wssmsointegration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WssMsoIntegration --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Disable-WssMsoSharePointPermissionInheritance.md b/docset/winserver2012r2-ps/wsscmdlets/Disable-WssMsoSharePointPermissionInheritance.md index 94700d0433..33153c8228 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Disable-WssMsoSharePointPermissionInheritance.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Disable-WssMsoSharePointPermissionInheritance.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/disable-wssmsosharepointpermissioninheritance?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/disable-wssmsosharepointpermissioninheritance?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WssMsoSharePointPermissionInheritance --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Disable-WssMsoUser.md b/docset/winserver2012r2-ps/wsscmdlets/Disable-WssMsoUser.md index 3bfc6d2a6d..441ae91f7e 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Disable-WssMsoUser.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Disable-WssMsoUser.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/disable-wssmsouser?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/disable-wssmsouser?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WssMsoUser --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Disable-WssRemoteWebAccess.md b/docset/winserver2012r2-ps/wsscmdlets/Disable-WssRemoteWebAccess.md index a488e9de02..d5d5611718 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Disable-WssRemoteWebAccess.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Disable-WssRemoteWebAccess.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/disable-wssremotewebaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/disable-wssremotewebaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WssRemoteWebAccess --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Enable-ExchangeIntegration.md b/docset/winserver2012r2-ps/wsscmdlets/Enable-ExchangeIntegration.md index 5499de8c9c..a46745b212 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Enable-ExchangeIntegration.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Enable-ExchangeIntegration.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/enable-exchangeintegration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/enable-exchangeintegration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-ExchangeIntegration --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Enable-FolderRedirection.md b/docset/winserver2012r2-ps/wsscmdlets/Enable-FolderRedirection.md index 2246f5e339..ad4c83c4af 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Enable-FolderRedirection.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Enable-FolderRedirection.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/enable-folderredirection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/enable-folderredirection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-FolderRedirection --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Enable-HostedEmailAccount.md b/docset/winserver2012r2-ps/wsscmdlets/Enable-HostedEmailAccount.md index 7a32e1c0f1..4269e9c838 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Enable-HostedEmailAccount.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Enable-HostedEmailAccount.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/enable-hostedemailaccount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/enable-hostedemailaccount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-HostedEmailAccount --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Enable-HostedEmailIntegration.md b/docset/winserver2012r2-ps/wsscmdlets/Enable-HostedEmailIntegration.md index 1b4ed96774..cf0a68a82b 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Enable-HostedEmailIntegration.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Enable-HostedEmailIntegration.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/enable-hostedemailintegration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/enable-hostedemailintegration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-HostedEmailIntegration --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Enable-O365Integration.md b/docset/winserver2012r2-ps/wsscmdlets/Enable-O365Integration.md index ecb0dc5409..24dec9a618 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Enable-O365Integration.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Enable-O365Integration.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/enable-o365integration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/enable-o365integration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-O365Integration --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Enable-O365User.md b/docset/winserver2012r2-ps/wsscmdlets/Enable-O365User.md index 7fb6be50e4..146059b054 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Enable-O365User.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Enable-O365User.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/enable-o365user?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/enable-o365user?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-O365User --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Enable-SecurityPolicy.md b/docset/winserver2012r2-ps/wsscmdlets/Enable-SecurityPolicy.md index 2b12d89998..64ac78b932 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Enable-SecurityPolicy.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Enable-SecurityPolicy.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/enable-securitypolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/enable-securitypolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-SecurityPolicy --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Enable-WssAlert.md b/docset/winserver2012r2-ps/wsscmdlets/Enable-WssAlert.md index 2966a70ed3..30f74f39f1 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Enable-WssAlert.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Enable-WssAlert.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/enable-wssalert?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/enable-wssalert?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WssAlert --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Enable-WssBranchCache.md b/docset/winserver2012r2-ps/wsscmdlets/Enable-WssBranchCache.md index 2d9dc70158..6cea919cf7 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Enable-WssBranchCache.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Enable-WssBranchCache.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/enable-wssbranchcache?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/enable-wssbranchcache?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WssBranchCache --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Enable-WssClientBackup.md b/docset/winserver2012r2-ps/wsscmdlets/Enable-WssClientBackup.md index c2abafa417..064d14bd83 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Enable-WssClientBackup.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Enable-WssClientBackup.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/enable-wssclientbackup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/enable-wssclientbackup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WssClientBackup --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Enable-WssClientBackupVolume.md b/docset/winserver2012r2-ps/wsscmdlets/Enable-WssClientBackupVolume.md index 13657efcbf..f7de51f2c6 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Enable-WssClientBackupVolume.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Enable-WssClientBackupVolume.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/enable-wssclientbackupvolume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/enable-wssclientbackupvolume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WssClientBackupVolume --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Enable-WssIntuneIntegration.md b/docset/winserver2012r2-ps/wsscmdlets/Enable-WssIntuneIntegration.md index a4e2cba22a..fb31ffa502 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Enable-WssIntuneIntegration.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Enable-WssIntuneIntegration.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/enable-wssintuneintegration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/enable-wssintuneintegration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WssIntuneIntegration --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Enable-WssMsoIntegration.md b/docset/winserver2012r2-ps/wsscmdlets/Enable-WssMsoIntegration.md index 4e0c946821..779ddb0b30 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Enable-WssMsoIntegration.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Enable-WssMsoIntegration.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/enable-wssmsointegration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/enable-wssmsointegration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WssMsoIntegration --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Enable-WssMsoSharePointPermissionInheritance.md b/docset/winserver2012r2-ps/wsscmdlets/Enable-WssMsoSharePointPermissionInheritance.md index e37e52a2d5..0722dece78 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Enable-WssMsoSharePointPermissionInheritance.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Enable-WssMsoSharePointPermissionInheritance.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/enable-wssmsosharepointpermissioninheritance?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/enable-wssmsosharepointpermissioninheritance?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WssMsoSharePointPermissionInheritance --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Enable-WssMsoUser.md b/docset/winserver2012r2-ps/wsscmdlets/Enable-WssMsoUser.md index daa3060209..5b1202a757 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Enable-WssMsoUser.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Enable-WssMsoUser.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/enable-wssmsouser?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/enable-wssmsouser?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WssMsoUser --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Enable-WssRemoteWebAccess.md b/docset/winserver2012r2-ps/wsscmdlets/Enable-WssRemoteWebAccess.md index 6232621dd8..5fa40de313 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Enable-WssRemoteWebAccess.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Enable-WssRemoteWebAccess.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/enable-wssremotewebaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/enable-wssremotewebaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WssRemoteWebAccess --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-HostedEmailAccount.md b/docset/winserver2012r2-ps/wsscmdlets/Get-HostedEmailAccount.md index 0720e134cd..827cb4bb1c 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-HostedEmailAccount.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-HostedEmailAccount.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-hostedemailaccount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-hostedemailaccount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HostedEmailAccount --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-HostedEmailDomains.md b/docset/winserver2012r2-ps/wsscmdlets/Get-HostedEmailDomains.md index e399d01ae5..f9549429a1 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-HostedEmailDomains.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-HostedEmailDomains.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-hostedemaildomains?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-hostedemaildomains?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HostedEmailDomains --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-O365AssignedUser.md b/docset/winserver2012r2-ps/wsscmdlets/Get-O365AssignedUser.md index 46b963ec25..60bfe071ed 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-O365AssignedUser.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-O365AssignedUser.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-o365assigneduser?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-o365assigneduser?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-O365AssignedUser --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-O365DnsRecord.md b/docset/winserver2012r2-ps/wsscmdlets/Get-O365DnsRecord.md index 38d7293cc8..37b1c721cd 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-O365DnsRecord.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-O365DnsRecord.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-o365dnsrecord?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-o365dnsrecord?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-O365DnsRecord --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-O365DomainConfiguration.md b/docset/winserver2012r2-ps/wsscmdlets/Get-O365DomainConfiguration.md index 41462d208f..97c2fa3737 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-O365DomainConfiguration.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-O365DomainConfiguration.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-o365domainconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-o365domainconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-O365DomainConfiguration --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-O365EmailAddresses.md b/docset/winserver2012r2-ps/wsscmdlets/Get-O365EmailAddresses.md index 8d9cbacd8e..bd82192ee6 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-O365EmailAddresses.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-O365EmailAddresses.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-o365emailaddresses?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-o365emailaddresses?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-O365EmailAddresses --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-O365SubscriptionInfo.md b/docset/winserver2012r2-ps/wsscmdlets/Get-O365SubscriptionInfo.md index c90ae78058..dafcc33811 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-O365SubscriptionInfo.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-O365SubscriptionInfo.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-o365subscriptioninfo?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-o365subscriptioninfo?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-O365SubscriptionInfo --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-O365User.md b/docset/winserver2012r2-ps/wsscmdlets/Get-O365User.md index 4d3f977a6a..67fe60d5be 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-O365User.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-O365User.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-o365user?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-o365user?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-O365User --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssAddIn.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssAddIn.md index 2e0a476ab1..7b4e4b9c99 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssAddIn.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssAddIn.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssaddin?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssaddin?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssAddIn --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssAlert.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssAlert.md index c9644b3ae5..be0bd26d51 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssAlert.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssAlert.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssalert?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssalert?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssAlert --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssBackupConfiguration.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssBackupConfiguration.md index 7f469e41e5..7d148b32e0 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssBackupConfiguration.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssBackupConfiguration.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssbackupconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssbackupconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssBackupConfiguration --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssBackupDisk.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssBackupDisk.md index 8f46bb2fbd..344ccf50e3 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssBackupDisk.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssBackupDisk.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssbackupdisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssbackupdisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssBackupDisk --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssBackupJob.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssBackupJob.md index 169a4bfa6a..37ff4c58ac 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssBackupJob.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssBackupJob.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssbackupjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssbackupjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssBackupJob --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssBackupPolicy.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssBackupPolicy.md index a5edc1774c..39b8b211be 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssBackupPolicy.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssBackupPolicy.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssbackuppolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssbackuppolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssBackupPolicy --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssBackupSchedule.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssBackupSchedule.md index 12b127c631..198264f6ab 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssBackupSchedule.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssBackupSchedule.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssbackupschedule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssbackupschedule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssBackupSchedule --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssBackupSet.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssBackupSet.md index e83ba3d334..b639053e8b 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssBackupSet.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssBackupSet.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssbackupset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssbackupset?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssBackupSet --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssBackupSystemRecovery.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssBackupSystemRecovery.md index a412ab64ed..a67ceb1034 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssBackupSystemRecovery.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssBackupSystemRecovery.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssbackupsystemrecovery?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssbackupsystemrecovery?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssBackupSystemRecovery --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssBackupTarget.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssBackupTarget.md index 3060f0a247..b3d253849f 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssBackupTarget.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssBackupTarget.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssbackuptarget?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssbackuptarget?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssBackupTarget --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssBackupVolume.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssBackupVolume.md index 302242723f..a542bf0ba3 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssBackupVolume.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssBackupVolume.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssbackupvolume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssbackupvolume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssBackupVolume --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssBpaScanResult.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssBpaScanResult.md index fb60cb6fbb..190131c67a 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssBpaScanResult.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssBpaScanResult.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssbpascanresult?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssbpascanresult?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssBpaScanResult --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssBranchCacheStatus.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssBranchCacheStatus.md index 6978475a10..9f5b7bff9c 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssBranchCacheStatus.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssBranchCacheStatus.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssbranchcachestatus?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssbranchcachestatus?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssBranchCacheStatus --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssClientBackup.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssClientBackup.md index da5c38d7d2..3b6f003e12 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssClientBackup.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssClientBackup.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssclientbackup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssclientbackup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssClientBackup --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssClientBackupClient.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssClientBackupClient.md index fbaf7582b8..3d33e19d85 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssClientBackupClient.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssClientBackupClient.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssclientbackupclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssclientbackupclient?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssClientBackupClient --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssClientBackupOperationStatus.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssClientBackupOperationStatus.md index 2c12d48da6..3c5585aaec 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssClientBackupOperationStatus.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssClientBackupOperationStatus.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssclientbackupoperationstatus?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssclientbackupoperationstatus?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssClientBackupOperationStatus --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssClientBackupVolume.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssClientBackupVolume.md index 3df9e61df9..636609ed25 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssClientBackupVolume.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssClientBackupVolume.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssclientbackupvolume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssclientbackupvolume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssClientBackupVolume --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssClientBackupVolumeJob.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssClientBackupVolumeJob.md index 21e547a2d5..4d3d4ca6bc 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssClientBackupVolumeJob.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssClientBackupVolumeJob.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssclientbackupvolumejob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssclientbackupvolumejob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssClientBackupVolumeJob --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssClientBmrMediaGenerationJob.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssClientBmrMediaGenerationJob.md index 1d5cdd49dd..ab2b11de93 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssClientBmrMediaGenerationJob.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssClientBmrMediaGenerationJob.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssclientbmrmediagenerationjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssclientbmrmediagenerationjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssClientBmrMediaGenerationJob --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssComputer.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssComputer.md index b37305d954..7f7ecaa488 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssComputer.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssComputer.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wsscomputer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wsscomputer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssComputer --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssDisk.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssDisk.md index d2559685a4..199c6fa993 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssDisk.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssDisk.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssdisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssdisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssDisk --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssDomainNameConfiguration.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssDomainNameConfiguration.md index ce6f9c0d6a..b1db591ea4 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssDomainNameConfiguration.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssDomainNameConfiguration.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssdomainnameconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssdomainnameconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssDomainNameConfiguration --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssDrive.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssDrive.md index ea1d3a61e9..0d53a30c52 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssDrive.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssDrive.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssdrive?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssdrive?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssDrive --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssDriveInUse.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssDriveInUse.md index 3dd6de0840..17bd93d58b 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssDriveInUse.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssDriveInUse.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssdriveinuse?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssdriveinuse?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssDriveInUse --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssFileHistoryConfiguration.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssFileHistoryConfiguration.md index 4d9f935701..213c221027 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssFileHistoryConfiguration.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssFileHistoryConfiguration.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssfilehistoryconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssfilehistoryconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssFileHistoryConfiguration --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssFileHistoryManagementStatus.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssFileHistoryManagementStatus.md index b1cf443d03..a440a2e0ee 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssFileHistoryManagementStatus.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssFileHistoryManagementStatus.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssfilehistorymanagementstatus?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssfilehistorymanagementstatus?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssFileHistoryManagementStatus --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssFolder.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssFolder.md index c20c9d71e9..0f83ac2c57 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssFolder.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssFolder.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssfolder?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssfolder?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssFolder --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssGlobalClientBackupPolicy.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssGlobalClientBackupPolicy.md index f83d53ad80..4d3685ffdb 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssGlobalClientBackupPolicy.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssGlobalClientBackupPolicy.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssglobalclientbackuppolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssglobalclientbackuppolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssGlobalClientBackupPolicy --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssMediaLibraryName.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssMediaLibraryName.md index c513e7fcaa..7f9f4d13a4 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssMediaLibraryName.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssMediaLibraryName.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssmedialibraryname?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssmedialibraryname?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssMediaLibraryName --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssMediaServerEnabled.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssMediaServerEnabled.md index f995826651..0348ccfebf 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssMediaServerEnabled.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssMediaServerEnabled.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssmediaserverenabled?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssmediaserverenabled?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssMediaServerEnabled --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssMediaSharedFolder.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssMediaSharedFolder.md index d924dcf65d..04eb603f49 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssMediaSharedFolder.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssMediaSharedFolder.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssmediasharedfolder?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssmediasharedfolder?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssMediaSharedFolder --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssMediaStreamingVideoQuality.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssMediaStreamingVideoQuality.md index f73f0fedf0..4edb263a90 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssMediaStreamingVideoQuality.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssMediaStreamingVideoQuality.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssmediastreamingvideoquality?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssmediastreamingvideoquality?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssMediaStreamingVideoQuality --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssMountVhd.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssMountVhd.md index 573b5f3097..a7897d9b5e 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssMountVhd.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssMountVhd.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssmountvhd?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssmountvhd?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssMountVhd --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssMsoAssignedGroup.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssMsoAssignedGroup.md index 968dcebeee..8511ac95f2 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssMsoAssignedGroup.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssMsoAssignedGroup.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssmsoassignedgroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssmsoassignedgroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssMsoAssignedGroup --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssMsoAssignedUser.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssMsoAssignedUser.md index 34093c8f6a..223036da8d 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssMsoAssignedUser.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssMsoAssignedUser.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssmsoassigneduser?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssmsoassigneduser?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssMsoAssignedUser --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssMsoDomainConfiguration.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssMsoDomainConfiguration.md index ff3e3f41c0..096713886c 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssMsoDomainConfiguration.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssMsoDomainConfiguration.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssmsodomainconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssmsodomainconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssMsoDomainConfiguration --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssMsoGroup.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssMsoGroup.md index 6b3404334e..b89fc40e31 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssMsoGroup.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssMsoGroup.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssmsogroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssmsogroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssMsoGroup --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssMsoSharePointLibrary.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssMsoSharePointLibrary.md index 2bcd76d27e..0b406b4dd6 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssMsoSharePointLibrary.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssMsoSharePointLibrary.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssmsosharepointlibrary?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssmsosharepointlibrary?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssMsoSharePointLibrary --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssMsoSharePointPermission.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssMsoSharePointPermission.md index ec21fc5970..c6eeb33d67 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssMsoSharePointPermission.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssMsoSharePointPermission.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssmsosharepointpermission?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssmsosharepointpermission?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssMsoSharePointPermission --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssMsoSharePointPrincipal.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssMsoSharePointPrincipal.md index 879ddd5e1d..467f0b9843 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssMsoSharePointPrincipal.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssMsoSharePointPrincipal.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssmsosharepointprincipal?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssmsosharepointprincipal?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssMsoSharePointPrincipal --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssMsoSharePointSite.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssMsoSharePointSite.md index e4117325d2..96c02225c8 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssMsoSharePointSite.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssMsoSharePointSite.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssmsosharepointsite?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssmsosharepointsite?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssMsoSharePointSite --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssMsoSubscription.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssMsoSubscription.md index c4bef02836..72072802af 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssMsoSubscription.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssMsoSubscription.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssmsosubscription?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssmsosubscription?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssMsoSubscription --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssMsoUser.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssMsoUser.md index 4059592890..0dfc1e3043 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssMsoUser.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssMsoUser.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssmsouser?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssmsouser?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssMsoUser --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssPasswordPolicy.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssPasswordPolicy.md index b0953b4b20..e5384aa964 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssPasswordPolicy.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssPasswordPolicy.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wsspasswordpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wsspasswordpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssPasswordPolicy --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssPersonalFolder.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssPersonalFolder.md index 1b41bb61d0..800511c887 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssPersonalFolder.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssPersonalFolder.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wsspersonalfolder?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wsspersonalfolder?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssPersonalFolder --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssPoolableDisk.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssPoolableDisk.md index 1c750b4d83..789cd936be 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssPoolableDisk.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssPoolableDisk.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wsspoolabledisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wsspoolabledisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssPoolableDisk --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssRecoveryItem.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssRecoveryItem.md index de0f817f78..d0f29c8b08 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssRecoveryItem.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssRecoveryItem.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssrecoveryitem?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssrecoveryitem?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssRecoveryItem --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssRemoteConnection.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssRemoteConnection.md index 0103cfb613..f63933b0e3 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssRemoteConnection.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssRemoteConnection.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssremoteconnection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssremoteconnection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssRemoteConnection --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssRemoteWebAccessBackgroundImage.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssRemoteWebAccessBackgroundImage.md index 087f1257dd..42a251bc93 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssRemoteWebAccessBackgroundImage.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssRemoteWebAccessBackgroundImage.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssremotewebaccessbackgroundimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssremotewebaccessbackgroundimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssRemoteWebAccessBackgroundImage --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssRemoteWebAccessLink.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssRemoteWebAccessLink.md index 0b7ef78119..f3079eea3f 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssRemoteWebAccessLink.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssRemoteWebAccessLink.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssremotewebaccesslink?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssremotewebaccesslink?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssRemoteWebAccessLink --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssRemoteWebAccessLogo.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssRemoteWebAccessLogo.md index aa4189a2db..2f96512e3d 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssRemoteWebAccessLogo.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssRemoteWebAccessLogo.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssremotewebaccesslogo?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssremotewebaccesslogo?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssRemoteWebAccessLogo --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssRemoteWebAccessStatus.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssRemoteWebAccessStatus.md index be0bf5e812..da81d6535c 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssRemoteWebAccessStatus.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssRemoteWebAccessStatus.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssremotewebaccessstatus?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssremotewebaccessstatus?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssRemoteWebAccessStatus --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssRemoteWebAccessTitle.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssRemoteWebAccessTitle.md index 809916c17f..661c250694 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssRemoteWebAccessTitle.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssRemoteWebAccessTitle.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssremotewebaccesstitle?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssremotewebaccesstitle?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssRemoteWebAccessTitle --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssReport.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssReport.md index 5c27517f4c..11396f48fb 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssReport.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssReport.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssreport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssreport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssReport --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssReportEmailSetting.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssReportEmailSetting.md index 2bd8059596..e9ce2147a9 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssReportEmailSetting.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssReportEmailSetting.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssreportemailsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssreportemailsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssReportEmailSetting --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssReportHtml.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssReportHtml.md index 5511f37746..6565e69390 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssReportHtml.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssReportHtml.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssreporthtml?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssreporthtml?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssReportHtml --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssReportSchedule.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssReportSchedule.md index 6dc6cb2b1e..b037cdfae3 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssReportSchedule.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssReportSchedule.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssreportschedule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssreportschedule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssReportSchedule --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssReportSection.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssReportSection.md index 7a135390c5..15a17c073d 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssReportSection.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssReportSection.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssreportsection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssreportsection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssReportSection --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssRouterInformation.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssRouterInformation.md index 983bd8adc0..ac300f848a 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssRouterInformation.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssRouterInformation.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssrouterinformation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssrouterinformation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssRouterInformation --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssServerConnectionOption.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssServerConnectionOption.md index fc5ff22b3c..a70fe080d9 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssServerConnectionOption.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssServerConnectionOption.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssserverconnectionoption?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssserverconnectionoption?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssServerConnectionOption --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssSpacesPool.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssSpacesPool.md index f95f06be23..06d25da3ce 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssSpacesPool.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssSpacesPool.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssspacespool?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssspacespool?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssSpacesPool --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssUser.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssUser.md index a4b150591d..4eeafc5e8f 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssUser.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssUser.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssuser?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssuser?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssUser --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssUserGroup.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssUserGroup.md index 74177ae8e0..07bbc0260e 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssUserGroup.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssUserGroup.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wssusergroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wssusergroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssUserGroup --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssWinSatCpuScore.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssWinSatCpuScore.md index 33380870a5..5dd92ab93f 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssWinSatCpuScore.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssWinSatCpuScore.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wsswinsatcpuscore?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wsswinsatcpuscore?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssWinSatCpuScore --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Get-WssWinSatCpuScoreUserConfigurable.md b/docset/winserver2012r2-ps/wsscmdlets/Get-WssWinSatCpuScoreUserConfigurable.md index 6807a9c043..09d998abb1 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Get-WssWinSatCpuScoreUserConfigurable.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Get-WssWinSatCpuScoreUserConfigurable.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/get-wsswinsatcpuscoreuserconfigurable?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/get-wsswinsatcpuscoreuserconfigurable?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssWinSatCpuScoreUserConfigurable --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Initialize-WssBackupDisk.md b/docset/winserver2012r2-ps/wsscmdlets/Initialize-WssBackupDisk.md index cd5d115ef3..251dfd0a5a 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Initialize-WssBackupDisk.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Initialize-WssBackupDisk.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/initialize-wssbackupdisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/initialize-wssbackupdisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Initialize-WssBackupDisk --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Initialize-WssDisk.md b/docset/winserver2012r2-ps/wsscmdlets/Initialize-WssDisk.md index 89a944d1ef..663b7e2e3c 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Initialize-WssDisk.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Initialize-WssDisk.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/initialize-wssdisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/initialize-wssdisk?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Initialize-WssDisk --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Install-WssAddIn.md b/docset/winserver2012r2-ps/wsscmdlets/Install-WssAddIn.md index ad33946c46..496c362134 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Install-WssAddIn.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Install-WssAddIn.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/install-wssaddin?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/install-wssaddin?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-WssAddIn --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Install-WssVpnServer.md b/docset/winserver2012r2-ps/wsscmdlets/Install-WssVpnServer.md index a2f1aac8a0..ce2624322c 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Install-WssVpnServer.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Install-WssVpnServer.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/install-wssvpnserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/install-wssvpnserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-WssVpnServer --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Invoke-WssBpaScan.md b/docset/winserver2012r2-ps/wsscmdlets/Invoke-WssBpaScan.md index 795d3fea44..baba1bc6df 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Invoke-WssBpaScan.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Invoke-WssBpaScan.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/invoke-wssbpascan?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/invoke-wssbpascan?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-WssBpaScan --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Measure-WssFolder.md b/docset/winserver2012r2-ps/wsscmdlets/Measure-WssFolder.md index 5b0ad91c49..62c9437d6f 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Measure-WssFolder.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Measure-WssFolder.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/measure-wssfolder?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/measure-wssfolder?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Measure-WssFolder --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Move-WssFolder.md b/docset/winserver2012r2-ps/wsscmdlets/Move-WssFolder.md index 468e806cf7..54756f9ad2 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Move-WssFolder.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Move-WssFolder.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/move-wssfolder?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/move-wssfolder?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-WssFolder --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/New-WssBackupConfiguration.md b/docset/winserver2012r2-ps/wsscmdlets/New-WssBackupConfiguration.md index 924d1c6fec..9a2b033a25 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/New-WssBackupConfiguration.md +++ b/docset/winserver2012r2-ps/wsscmdlets/New-WssBackupConfiguration.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/new-wssbackupconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/new-wssbackupconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WssBackupConfiguration --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/New-WssBackupTarget.md b/docset/winserver2012r2-ps/wsscmdlets/New-WssBackupTarget.md index 42ae62e053..34d39a63e7 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/New-WssBackupTarget.md +++ b/docset/winserver2012r2-ps/wsscmdlets/New-WssBackupTarget.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/new-wssbackuptarget?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/new-wssbackuptarget?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WssBackupTarget --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/New-WssMsoSharePointLibrary.md b/docset/winserver2012r2-ps/wsscmdlets/New-WssMsoSharePointLibrary.md index a019ecc1ea..943cc7768c 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/New-WssMsoSharePointLibrary.md +++ b/docset/winserver2012r2-ps/wsscmdlets/New-WssMsoSharePointLibrary.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/new-wssmsosharepointlibrary?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/new-wssmsosharepointlibrary?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WssMsoSharePointLibrary --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/New-WssPersonalFolder.md b/docset/winserver2012r2-ps/wsscmdlets/New-WssPersonalFolder.md index 1382854f5f..0a43e853f4 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/New-WssPersonalFolder.md +++ b/docset/winserver2012r2-ps/wsscmdlets/New-WssPersonalFolder.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/new-wsspersonalfolder?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/new-wsspersonalfolder?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WssPersonalFolder --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/New-WssRecoveryOption.md b/docset/winserver2012r2-ps/wsscmdlets/New-WssRecoveryOption.md index ffe69fc32e..679d2ebea0 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/New-WssRecoveryOption.md +++ b/docset/winserver2012r2-ps/wsscmdlets/New-WssRecoveryOption.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/new-wssrecoveryoption?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/new-wssrecoveryoption?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WssRecoveryOption --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/New-WssReport.md b/docset/winserver2012r2-ps/wsscmdlets/New-WssReport.md index 017672ddd7..a69421cb81 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/New-WssReport.md +++ b/docset/winserver2012r2-ps/wsscmdlets/New-WssReport.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/new-wssreport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/new-wssreport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WssReport --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/New-WssStorageSpace.md b/docset/winserver2012r2-ps/wsscmdlets/New-WssStorageSpace.md index cf70c94a29..729fa754cb 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/New-WssStorageSpace.md +++ b/docset/winserver2012r2-ps/wsscmdlets/New-WssStorageSpace.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/new-wssstoragespace?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/new-wssstoragespace?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WssStorageSpace --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Remove-HostedEmailAccount.md b/docset/winserver2012r2-ps/wsscmdlets/Remove-HostedEmailAccount.md index f6e48e7336..72bf4a81f7 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Remove-HostedEmailAccount.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Remove-HostedEmailAccount.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/remove-hostedemailaccount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/remove-hostedemailaccount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-HostedEmailAccount --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Remove-O365Domain.md b/docset/winserver2012r2-ps/wsscmdlets/Remove-O365Domain.md index 62a48e39a4..be6c0f766b 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Remove-O365Domain.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Remove-O365Domain.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/remove-o365domain?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/remove-o365domain?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-O365Domain --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Remove-O365User.md b/docset/winserver2012r2-ps/wsscmdlets/Remove-O365User.md index 9b80c4fc81..22eeae3446 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Remove-O365User.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Remove-O365User.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/remove-o365user?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/remove-o365user?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-O365User --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Remove-WssBackupConfiguration.md b/docset/winserver2012r2-ps/wsscmdlets/Remove-WssBackupConfiguration.md index 4f62490216..d6c1fd9d2a 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Remove-WssBackupConfiguration.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Remove-WssBackupConfiguration.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/remove-wssbackupconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/remove-wssbackupconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WssBackupConfiguration --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Remove-WssBackupSchedule.md b/docset/winserver2012r2-ps/wsscmdlets/Remove-WssBackupSchedule.md index 1ea152418f..bbc6ef1f70 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Remove-WssBackupSchedule.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Remove-WssBackupSchedule.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/remove-wssbackupschedule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/remove-wssbackupschedule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WssBackupSchedule --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Remove-WssBackupSystemRecovery.md b/docset/winserver2012r2-ps/wsscmdlets/Remove-WssBackupSystemRecovery.md index eeb15620ac..5c6bed1e0e 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Remove-WssBackupSystemRecovery.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Remove-WssBackupSystemRecovery.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/remove-wssbackupsystemrecovery?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/remove-wssbackupsystemrecovery?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WssBackupSystemRecovery --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Remove-WssBackupTarget.md b/docset/winserver2012r2-ps/wsscmdlets/Remove-WssBackupTarget.md index 20bd19c7da..6288cf5188 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Remove-WssBackupTarget.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Remove-WssBackupTarget.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/remove-wssbackuptarget?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/remove-wssbackuptarget?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WssBackupTarget --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Remove-WssBackupVolume.md b/docset/winserver2012r2-ps/wsscmdlets/Remove-WssBackupVolume.md index 5bae42fdbd..1283310df5 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Remove-WssBackupVolume.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Remove-WssBackupVolume.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/remove-wssbackupvolume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/remove-wssbackupvolume?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WssBackupVolume --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Remove-WssComputer.md b/docset/winserver2012r2-ps/wsscmdlets/Remove-WssComputer.md index 2ffd6884af..3c5adb184e 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Remove-WssComputer.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Remove-WssComputer.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/remove-wsscomputer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/remove-wsscomputer?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WssComputer --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Remove-WssComputerAccess.md b/docset/winserver2012r2-ps/wsscmdlets/Remove-WssComputerAccess.md index 1f0aed06f3..1777c2e140 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Remove-WssComputerAccess.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Remove-WssComputerAccess.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/remove-wsscomputeraccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/remove-wsscomputeraccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WssComputerAccess --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Remove-WssFolder.md b/docset/winserver2012r2-ps/wsscmdlets/Remove-WssFolder.md index 304c915e0f..0732525240 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Remove-WssFolder.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Remove-WssFolder.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/remove-wssfolder?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/remove-wssfolder?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WssFolder --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Remove-WssMsoGroup.md b/docset/winserver2012r2-ps/wsscmdlets/Remove-WssMsoGroup.md index dcfbe906ab..866fc829a7 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Remove-WssMsoGroup.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Remove-WssMsoGroup.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/remove-wssmsogroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/remove-wssmsogroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WssMsoGroup --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Remove-WssMsoGroupAssignment.md b/docset/winserver2012r2-ps/wsscmdlets/Remove-WssMsoGroupAssignment.md index d5a84c3009..97bb4bf351 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Remove-WssMsoGroupAssignment.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Remove-WssMsoGroupAssignment.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/remove-wssmsogroupassignment?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/remove-wssmsogroupassignment?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WssMsoGroupAssignment --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Remove-WssMsoSharePointLibrary.md b/docset/winserver2012r2-ps/wsscmdlets/Remove-WssMsoSharePointLibrary.md index 79419d6bd5..a186fc4d38 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Remove-WssMsoSharePointLibrary.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Remove-WssMsoSharePointLibrary.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/remove-wssmsosharepointlibrary?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/remove-wssmsosharepointlibrary?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WssMsoSharePointLibrary --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Remove-WssMsoSharePointPermission.md b/docset/winserver2012r2-ps/wsscmdlets/Remove-WssMsoSharePointPermission.md index 7e3bd65514..54a6c48936 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Remove-WssMsoSharePointPermission.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Remove-WssMsoSharePointPermission.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/remove-wssmsosharepointpermission?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/remove-wssmsosharepointpermission?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WssMsoSharePointPermission --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Remove-WssMsoUser.md b/docset/winserver2012r2-ps/wsscmdlets/Remove-WssMsoUser.md index ed139989a7..f60b395213 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Remove-WssMsoUser.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Remove-WssMsoUser.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/remove-wssmsouser?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/remove-wssmsouser?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WssMsoUser --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Remove-WssMsoUserAssignment.md b/docset/winserver2012r2-ps/wsscmdlets/Remove-WssMsoUserAssignment.md index ec8ea1f10d..818255905a 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Remove-WssMsoUserAssignment.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Remove-WssMsoUserAssignment.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/remove-wssmsouserassignment?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/remove-wssmsouserassignment?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WssMsoUserAssignment --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Remove-WssRemoteWebAccessLink.md b/docset/winserver2012r2-ps/wsscmdlets/Remove-WssRemoteWebAccessLink.md index 79fad2bc4e..cad9cfcd38 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Remove-WssRemoteWebAccessLink.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Remove-WssRemoteWebAccessLink.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/remove-wssremotewebaccesslink?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/remove-wssremotewebaccesslink?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WssRemoteWebAccessLink --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Remove-WssReport.md b/docset/winserver2012r2-ps/wsscmdlets/Remove-WssReport.md index 68e2796b97..1f79c41fee 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Remove-WssReport.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Remove-WssReport.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/remove-wssreport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/remove-wssreport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WssReport --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Remove-WssUser.md b/docset/winserver2012r2-ps/wsscmdlets/Remove-WssUser.md index 363763e756..0141f6b154 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Remove-WssUser.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Remove-WssUser.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/remove-wssuser?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/remove-wssuser?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WssUser --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Remove-WssUserGroup.md b/docset/winserver2012r2-ps/wsscmdlets/Remove-WssUserGroup.md index d2e5961acc..de15b85ed6 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Remove-WssUserGroup.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Remove-WssUserGroup.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/remove-wssusergroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/remove-wssusergroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WssUserGroup --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Remove-WssUserGroupMembership.md b/docset/winserver2012r2-ps/wsscmdlets/Remove-WssUserGroupMembership.md index 65ef65a386..5be6779b9b 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Remove-WssUserGroupMembership.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Remove-WssUserGroupMembership.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/remove-wssusergroupmembership?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/remove-wssusergroupmembership?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WssUserGroupMembership --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Rename-WssMsoAssignedUser.md b/docset/winserver2012r2-ps/wsscmdlets/Rename-WssMsoAssignedUser.md index 404e28b21f..bf9f3f4156 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Rename-WssMsoAssignedUser.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Rename-WssMsoAssignedUser.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/rename-wssmsoassigneduser?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/rename-wssmsoassigneduser?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-WssMsoAssignedUser --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Repair-WssAlert.md b/docset/winserver2012r2-ps/wsscmdlets/Repair-WssAlert.md index 80a77d49f5..92e93268c5 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Repair-WssAlert.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Repair-WssAlert.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/repair-wssalert?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/repair-wssalert?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Repair-WssAlert --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Repair-WssMediaStreamingMetadata.md b/docset/winserver2012r2-ps/wsscmdlets/Repair-WssMediaStreamingMetadata.md index 2b619af78b..bfd98ba6dc 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Repair-WssMediaStreamingMetadata.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Repair-WssMediaStreamingMetadata.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/repair-wssmediastreamingmetadata?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/repair-wssmediastreamingmetadata?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Repair-WssMediaStreamingMetadata --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Repair-WssRemoteWebAccess.md b/docset/winserver2012r2-ps/wsscmdlets/Repair-WssRemoteWebAccess.md index d661a0ae13..ea0a0a6052 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Repair-WssRemoteWebAccess.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Repair-WssRemoteWebAccess.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/repair-wssremotewebaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/repair-wssremotewebaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Repair-WssRemoteWebAccess --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Repair-WssRouterConfiguration.md b/docset/winserver2012r2-ps/wsscmdlets/Repair-WssRouterConfiguration.md index 510c08245f..3f826a191a 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Repair-WssRouterConfiguration.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Repair-WssRouterConfiguration.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/repair-wssrouterconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/repair-wssrouterconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Repair-WssRouterConfiguration --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Resume-WssBackupPolicy.md b/docset/winserver2012r2-ps/wsscmdlets/Resume-WssBackupPolicy.md index e922b20682..c7abe142fb 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Resume-WssBackupPolicy.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Resume-WssBackupPolicy.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/resume-wssbackuppolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/resume-wssbackuppolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-WssBackupPolicy --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Select-WssMountVhd.md b/docset/winserver2012r2-ps/wsscmdlets/Select-WssMountVhd.md index 476a9e87c3..43d35f6929 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Select-WssMountVhd.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Select-WssMountVhd.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/select-wssmountvhd?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/select-wssmountvhd?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Select-WssMountVhd --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Send-WssReport.md b/docset/winserver2012r2-ps/wsscmdlets/Send-WssReport.md index 9d4aad8b5f..5dc163be84 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Send-WssReport.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Send-WssReport.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/send-wssreport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/send-wssreport?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Send-WssReport --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Set-HostedEmailAccount.md b/docset/winserver2012r2-ps/wsscmdlets/Set-HostedEmailAccount.md index adc76e5ac2..bc679705ba 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Set-HostedEmailAccount.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Set-HostedEmailAccount.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/set-hostedemailaccount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/set-hostedemailaccount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-HostedEmailAccount --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Set-O365AssignedUser.md b/docset/winserver2012r2-ps/wsscmdlets/Set-O365AssignedUser.md index fde5c32826..2104e12015 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Set-O365AssignedUser.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Set-O365AssignedUser.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/set-o365assigneduser?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/set-o365assigneduser?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-O365AssignedUser --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Set-O365Domain.md b/docset/winserver2012r2-ps/wsscmdlets/Set-O365Domain.md index 346ecce18b..bddb256e3c 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Set-O365Domain.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Set-O365Domain.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/set-o365domain?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/set-o365domain?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-O365Domain --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Set-O365EmailAddresses.md b/docset/winserver2012r2-ps/wsscmdlets/Set-O365EmailAddresses.md index d6e8eea634..180192f939 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Set-O365EmailAddresses.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Set-O365EmailAddresses.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/set-o365emailaddresses?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/set-o365emailaddresses?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-O365EmailAddresses --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Set-WssBackupPolicy.md b/docset/winserver2012r2-ps/wsscmdlets/Set-WssBackupPolicy.md index 53bb9f9dc8..1a3ed480a1 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Set-WssBackupPolicy.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Set-WssBackupPolicy.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/set-wssbackuppolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/set-wssbackuppolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WssBackupPolicy --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Set-WssClientBackup.md b/docset/winserver2012r2-ps/wsscmdlets/Set-WssClientBackup.md index b62ac341e2..2d5430e9b0 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Set-WssClientBackup.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Set-WssClientBackup.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/set-wssclientbackup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/set-wssclientbackup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WssClientBackup --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Set-WssClientBackupVolumeExcludedFolder.md b/docset/winserver2012r2-ps/wsscmdlets/Set-WssClientBackupVolumeExcludedFolder.md index 19b66052b3..58f5804965 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Set-WssClientBackupVolumeExcludedFolder.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Set-WssClientBackupVolumeExcludedFolder.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/set-wssclientbackupvolumeexcludedfolder?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/set-wssclientbackupvolumeexcludedfolder?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WssClientBackupVolumeExcludedFolder --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Set-WssDomainNameConfiguration.md b/docset/winserver2012r2-ps/wsscmdlets/Set-WssDomainNameConfiguration.md index 496135f3e3..9bd9049fb5 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Set-WssDomainNameConfiguration.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Set-WssDomainNameConfiguration.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/set-wssdomainnameconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/set-wssdomainnameconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WssDomainNameConfiguration --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Set-WssDrive.md b/docset/winserver2012r2-ps/wsscmdlets/Set-WssDrive.md index 85880bd3b5..633c448e8a 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Set-WssDrive.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Set-WssDrive.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/set-wssdrive?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/set-wssdrive?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WssDrive --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Set-WssFileHistoryConfiguration.md b/docset/winserver2012r2-ps/wsscmdlets/Set-WssFileHistoryConfiguration.md index fa40084048..65ef8affd6 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Set-WssFileHistoryConfiguration.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Set-WssFileHistoryConfiguration.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/set-wssfilehistoryconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/set-wssfilehistoryconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WssFileHistoryConfiguration --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Set-WssFileHistoryManagementStatus.md b/docset/winserver2012r2-ps/wsscmdlets/Set-WssFileHistoryManagementStatus.md index 2726cf0a2a..53bf0554ff 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Set-WssFileHistoryManagementStatus.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Set-WssFileHistoryManagementStatus.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/set-wssfilehistorymanagementstatus?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/set-wssfilehistorymanagementstatus?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WssFileHistoryManagementStatus --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Set-WssFolder.md b/docset/winserver2012r2-ps/wsscmdlets/Set-WssFolder.md index 3412f01a14..2ea8b3a852 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Set-WssFolder.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Set-WssFolder.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/set-wssfolder?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/set-wssfolder?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WssFolder --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Set-WssGlobalClientBackupPolicy.md b/docset/winserver2012r2-ps/wsscmdlets/Set-WssGlobalClientBackupPolicy.md index 0d189a921f..6024902ac4 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Set-WssGlobalClientBackupPolicy.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Set-WssGlobalClientBackupPolicy.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/set-wssglobalclientbackuppolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/set-wssglobalclientbackuppolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WssGlobalClientBackupPolicy --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Set-WssMediaLibraryInclusion.md b/docset/winserver2012r2-ps/wsscmdlets/Set-WssMediaLibraryInclusion.md index 0ec83ddbf3..8c5eee02f5 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Set-WssMediaLibraryInclusion.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Set-WssMediaLibraryInclusion.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/set-wssmedialibraryinclusion?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/set-wssmedialibraryinclusion?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WssMediaLibraryInclusion --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Set-WssMediaLibraryName.md b/docset/winserver2012r2-ps/wsscmdlets/Set-WssMediaLibraryName.md index f7d2bc8366..ed1469448f 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Set-WssMediaLibraryName.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Set-WssMediaLibraryName.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/set-wssmedialibraryname?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/set-wssmedialibraryname?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WssMediaLibraryName --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Set-WssMediaServerEnabled.md b/docset/winserver2012r2-ps/wsscmdlets/Set-WssMediaServerEnabled.md index 3ae867c497..6a9dc121cc 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Set-WssMediaServerEnabled.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Set-WssMediaServerEnabled.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/set-wssmediaserverenabled?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/set-wssmediaserverenabled?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WssMediaServerEnabled --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Set-WssMediaStreamingVideoQuality.md b/docset/winserver2012r2-ps/wsscmdlets/Set-WssMediaStreamingVideoQuality.md index 44b8562fdf..77070e02c0 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Set-WssMediaStreamingVideoQuality.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Set-WssMediaStreamingVideoQuality.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/set-wssmediastreamingvideoquality?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/set-wssmediastreamingvideoquality?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WssMediaStreamingVideoQuality --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Set-WssMsoGroupAssignment.md b/docset/winserver2012r2-ps/wsscmdlets/Set-WssMsoGroupAssignment.md index 73ed44b7f5..f7ad3deccb 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Set-WssMsoGroupAssignment.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Set-WssMsoGroupAssignment.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/set-wssmsogroupassignment?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/set-wssmsogroupassignment?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WssMsoGroupAssignment --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Set-WssMsoSharePointLibrary.md b/docset/winserver2012r2-ps/wsscmdlets/Set-WssMsoSharePointLibrary.md index 4f088a2154..44430b6cea 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Set-WssMsoSharePointLibrary.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Set-WssMsoSharePointLibrary.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/set-wssmsosharepointlibrary?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/set-wssmsosharepointlibrary?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WssMsoSharePointLibrary --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Set-WssMsoSharePointPermission.md b/docset/winserver2012r2-ps/wsscmdlets/Set-WssMsoSharePointPermission.md index 1e751aa029..23f8d5e2d3 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Set-WssMsoSharePointPermission.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Set-WssMsoSharePointPermission.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/set-wssmsosharepointpermission?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/set-wssmsosharepointpermission?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WssMsoSharePointPermission --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Set-WssMsoUserAssignment.md b/docset/winserver2012r2-ps/wsscmdlets/Set-WssMsoUserAssignment.md index 331ece5f1f..23debb6151 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Set-WssMsoUserAssignment.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Set-WssMsoUserAssignment.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/set-wssmsouserassignment?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/set-wssmsouserassignment?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WssMsoUserAssignment --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Set-WssMsoUserLicense.md b/docset/winserver2012r2-ps/wsscmdlets/Set-WssMsoUserLicense.md index 4e9299111a..9c7064222f 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Set-WssMsoUserLicense.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Set-WssMsoUserLicense.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/set-wssmsouserlicense?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/set-wssmsouserlicense?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WssMsoUserLicense --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Set-WssPasswordPolicy.md b/docset/winserver2012r2-ps/wsscmdlets/Set-WssPasswordPolicy.md index 240627aac6..7ba6165f2f 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Set-WssPasswordPolicy.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Set-WssPasswordPolicy.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/set-wsspasswordpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/set-wsspasswordpolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WssPasswordPolicy --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Set-WssRemoteWebAccessBackgroundImage.md b/docset/winserver2012r2-ps/wsscmdlets/Set-WssRemoteWebAccessBackgroundImage.md index 583c840c17..61a5d0cda2 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Set-WssRemoteWebAccessBackgroundImage.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Set-WssRemoteWebAccessBackgroundImage.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/set-wssremotewebaccessbackgroundimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/set-wssremotewebaccessbackgroundimage?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WssRemoteWebAccessBackgroundImage --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Set-WssRemoteWebAccessLogo.md b/docset/winserver2012r2-ps/wsscmdlets/Set-WssRemoteWebAccessLogo.md index af2e1a3c87..bc186367e3 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Set-WssRemoteWebAccessLogo.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Set-WssRemoteWebAccessLogo.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/set-wssremotewebaccesslogo?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/set-wssremotewebaccesslogo?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WssRemoteWebAccessLogo --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Set-WssRemoteWebAccessTitle.md b/docset/winserver2012r2-ps/wsscmdlets/Set-WssRemoteWebAccessTitle.md index 49062dc2b5..7bb7852fb2 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Set-WssRemoteWebAccessTitle.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Set-WssRemoteWebAccessTitle.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/set-wssremotewebaccesstitle?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/set-wssremotewebaccesstitle?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WssRemoteWebAccessTitle --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Set-WssReportEmailSetting.md b/docset/winserver2012r2-ps/wsscmdlets/Set-WssReportEmailSetting.md index e453fd6a66..e6bf34fcd0 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Set-WssReportEmailSetting.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Set-WssReportEmailSetting.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/set-wssreportemailsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/set-wssreportemailsetting?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WssReportEmailSetting --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Set-WssReportSchedule.md b/docset/winserver2012r2-ps/wsscmdlets/Set-WssReportSchedule.md index d6c7005404..6b8f891333 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Set-WssReportSchedule.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Set-WssReportSchedule.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/set-wssreportschedule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/set-wssreportschedule?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WssReportSchedule --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Set-WssReportSection.md b/docset/winserver2012r2-ps/wsscmdlets/Set-WssReportSection.md index c610dbb1c0..e3aa78979e 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Set-WssReportSection.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Set-WssReportSection.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/set-wssreportsection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/set-wssreportsection?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WssReportSection --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Set-WssServerConnectionOption.md b/docset/winserver2012r2-ps/wsscmdlets/Set-WssServerConnectionOption.md index 2a93bd5531..794f9d5a5f 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Set-WssServerConnectionOption.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Set-WssServerConnectionOption.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/set-wssserverconnectionoption?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/set-wssserverconnectionoption?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WssServerConnectionOption --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Set-WssUserAccess.md b/docset/winserver2012r2-ps/wsscmdlets/Set-WssUserAccess.md index 87102c7d66..9bc25f0ba3 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Set-WssUserAccess.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Set-WssUserAccess.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/set-wssuseraccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/set-wssuseraccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WssUserAccess --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Set-WssUserDashboardVisibility.md b/docset/winserver2012r2-ps/wsscmdlets/Set-WssUserDashboardVisibility.md index 5355372016..652be9a94c 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Set-WssUserDashboardVisibility.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Set-WssUserDashboardVisibility.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/set-wssuserdashboardvisibility?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/set-wssuserdashboardvisibility?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WssUserDashboardVisibility --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Set-WssUserGroup.md b/docset/winserver2012r2-ps/wsscmdlets/Set-WssUserGroup.md index 478b469092..67b7035850 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Set-WssUserGroup.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Set-WssUserGroup.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/set-wssusergroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/set-wssusergroup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WssUserGroup --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Set-WssUserGroupAccess.md b/docset/winserver2012r2-ps/wsscmdlets/Set-WssUserGroupAccess.md index 7bd7b6392b..86dddbf770 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Set-WssUserGroupAccess.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Set-WssUserGroupAccess.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/set-wssusergroupaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/set-wssusergroupaccess?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WssUserGroupAccess --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Set-WssWinSatCpuScore.md b/docset/winserver2012r2-ps/wsscmdlets/Set-WssWinSatCpuScore.md index e9f912742c..60b40ed793 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Set-WssWinSatCpuScore.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Set-WssWinSatCpuScore.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/set-wsswinsatcpuscore?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/set-wsswinsatcpuscore?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WssWinSatCpuScore --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Start-WssBackupJob.md b/docset/winserver2012r2-ps/wsscmdlets/Start-WssBackupJob.md index 64532e960d..b4037f94da 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Start-WssBackupJob.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Start-WssBackupJob.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/start-wssbackupjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/start-wssbackupjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-WssBackupJob --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Start-WssClientBackup.md b/docset/winserver2012r2-ps/wsscmdlets/Start-WssClientBackup.md index 849ac48636..04b35f629c 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Start-WssClientBackup.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Start-WssClientBackup.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/start-wssclientbackup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/start-wssclientbackup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-WssClientBackup --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Start-WssClientBackupRepair.md b/docset/winserver2012r2-ps/wsscmdlets/Start-WssClientBackupRepair.md index 12ba63053d..1c6fdb4a06 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Start-WssClientBackupRepair.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Start-WssClientBackupRepair.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/start-wssclientbackuprepair?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/start-wssclientbackuprepair?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-WssClientBackupRepair --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Start-WssClientBmrMediaGenerationJob.md b/docset/winserver2012r2-ps/wsscmdlets/Start-WssClientBmrMediaGenerationJob.md index 9bac2fbbbd..1643ca51d1 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Start-WssClientBmrMediaGenerationJob.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Start-WssClientBmrMediaGenerationJob.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/start-wssclientbmrmediagenerationjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/start-wssclientbmrmediagenerationjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-WssClientBmrMediaGenerationJob --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Start-WssRouterConfiguration.md b/docset/winserver2012r2-ps/wsscmdlets/Start-WssRouterConfiguration.md index eaa398584a..b15e75b6ae 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Start-WssRouterConfiguration.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Start-WssRouterConfiguration.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/start-wssrouterconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/start-wssrouterconfiguration?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-WssRouterConfiguration --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Start-WssServerFileRestore.md b/docset/winserver2012r2-ps/wsscmdlets/Start-WssServerFileRestore.md index 05ff47a1a9..16b273dbe5 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Start-WssServerFileRestore.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Start-WssServerFileRestore.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/start-wssserverfilerestore?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/start-wssserverfilerestore?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-WssServerFileRestore --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Start-WssServerVolumeRestore.md b/docset/winserver2012r2-ps/wsscmdlets/Start-WssServerVolumeRestore.md index cb988e8147..0ab31d2b87 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Start-WssServerVolumeRestore.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Start-WssServerVolumeRestore.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/start-wssservervolumerestore?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/start-wssservervolumerestore?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-WssServerVolumeRestore --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Stop-WssBackupJob.md b/docset/winserver2012r2-ps/wsscmdlets/Stop-WssBackupJob.md index 999e98888f..d585805d57 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Stop-WssBackupJob.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Stop-WssBackupJob.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/stop-wssbackupjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/stop-wssbackupjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-WssBackupJob --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Stop-WssClientBackup.md b/docset/winserver2012r2-ps/wsscmdlets/Stop-WssClientBackup.md index 953bf36291..3730b78cf4 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Stop-WssClientBackup.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Stop-WssClientBackup.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/stop-wssclientbackup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/stop-wssclientbackup?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-WssClientBackup --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Stop-WssClientBackupRepair.md b/docset/winserver2012r2-ps/wsscmdlets/Stop-WssClientBackupRepair.md index 91faf93510..477d8c667f 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Stop-WssClientBackupRepair.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Stop-WssClientBackupRepair.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/stop-wssclientbackuprepair?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/stop-wssclientbackuprepair?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-WssClientBackupRepair --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Stop-WssClientBmrMediaGenerationJob.md b/docset/winserver2012r2-ps/wsscmdlets/Stop-WssClientBmrMediaGenerationJob.md index 94075c6607..100401ce4a 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Stop-WssClientBmrMediaGenerationJob.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Stop-WssClientBmrMediaGenerationJob.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/stop-wssclientbmrmediagenerationjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/stop-wssclientbmrmediagenerationjob?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-WssClientBmrMediaGenerationJob --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Suspend-WssBackupPolicy.md b/docset/winserver2012r2-ps/wsscmdlets/Suspend-WssBackupPolicy.md index 58e42dc054..176c24ec82 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Suspend-WssBackupPolicy.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Suspend-WssBackupPolicy.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/suspend-wssbackuppolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/suspend-wssbackuppolicy?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-WssBackupPolicy --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Sync-WssAccount.md b/docset/winserver2012r2-ps/wsscmdlets/Sync-WssAccount.md index c7daa44265..dc61e409a0 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Sync-WssAccount.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Sync-WssAccount.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/sync-wssaccount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/sync-wssaccount?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Sync-WssAccount --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Test-WssDrive.md b/docset/winserver2012r2-ps/wsscmdlets/Test-WssDrive.md index ce2658decb..8f4b6e7f3f 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Test-WssDrive.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Test-WssDrive.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/test-wssdrive?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/test-wssdrive?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-WssDrive --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Test-WssHealth.md b/docset/winserver2012r2-ps/wsscmdlets/Test-WssHealth.md index 5f4feb0c0d..a1ecb65cd0 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Test-WssHealth.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Test-WssHealth.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/test-wsshealth?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/test-wsshealth?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-WssHealth --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Test-WssVpnServerInstallation.md b/docset/winserver2012r2-ps/wsscmdlets/Test-WssVpnServerInstallation.md index d579c1962c..bcc834619f 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Test-WssVpnServerInstallation.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Test-WssVpnServerInstallation.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/test-wssvpnserverinstallation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/test-wssvpnserverinstallation?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-WssVpnServerInstallation --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Uninstall-WssAddIn.md b/docset/winserver2012r2-ps/wsscmdlets/Uninstall-WssAddIn.md index cd2d65b91e..565f4ff9df 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Uninstall-WssAddIn.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Uninstall-WssAddIn.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/uninstall-wssaddin?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/uninstall-wssaddin?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-WssAddIn --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Uninstall-WssVpnServer.md b/docset/winserver2012r2-ps/wsscmdlets/Uninstall-WssVpnServer.md index 00bb18cbe7..461763bd68 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Uninstall-WssVpnServer.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Uninstall-WssVpnServer.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/uninstall-wssvpnserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/uninstall-wssvpnserver?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-WssVpnServer --- diff --git a/docset/winserver2012r2-ps/wsscmdlets/Update-O365AccountName.md b/docset/winserver2012r2-ps/wsscmdlets/Update-O365AccountName.md index 0545aec59a..2395169247 100644 --- a/docset/winserver2012r2-ps/wsscmdlets/Update-O365AccountName.md +++ b/docset/winserver2012r2-ps/wsscmdlets/Update-O365AccountName.md @@ -2,7 +2,7 @@ external help file: WssCmdlets.dll-Help.xml Module Name: WSSCmdlets ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsscmdlets/update-o365accountname?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsscmdlets/update-o365accountname?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-O365AccountName --- diff --git a/docset/winserver2012r2-ps/wsssetup/Get-WssConfigurationStatus.md b/docset/winserver2012r2-ps/wsssetup/Get-WssConfigurationStatus.md index d04166395a..97e9ee4f0c 100644 --- a/docset/winserver2012r2-ps/wsssetup/Get-WssConfigurationStatus.md +++ b/docset/winserver2012r2-ps/wsssetup/Get-WssConfigurationStatus.md @@ -2,7 +2,7 @@ external help file: Wssg.Setup.Commands.dll-Help.xml Module Name: WSSSetup ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsssetup/get-wssconfigurationstatus?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsssetup/get-wssconfigurationstatus?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WssConfigurationStatus --- diff --git a/docset/winserver2012r2-ps/wsssetup/Remove-WssConfigurationData.md b/docset/winserver2012r2-ps/wsssetup/Remove-WssConfigurationData.md index 77b71cd0b7..e506d0edc8 100644 --- a/docset/winserver2012r2-ps/wsssetup/Remove-WssConfigurationData.md +++ b/docset/winserver2012r2-ps/wsssetup/Remove-WssConfigurationData.md @@ -2,7 +2,7 @@ external help file: Wssg.Setup.Commands.dll-Help.xml Module Name: WSSSetup ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsssetup/remove-wssconfigurationdata?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsssetup/remove-wssconfigurationdata?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WssConfigurationData --- diff --git a/docset/winserver2012r2-ps/wsssetup/Start-WssConfigurationService.md b/docset/winserver2012r2-ps/wsssetup/Start-WssConfigurationService.md index 618d54c284..dfa55a0e1d 100644 --- a/docset/winserver2012r2-ps/wsssetup/Start-WssConfigurationService.md +++ b/docset/winserver2012r2-ps/wsssetup/Start-WssConfigurationService.md @@ -2,7 +2,7 @@ external help file: Wssg.Setup.Commands.dll-Help.xml Module Name: WSSSetup ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsssetup/start-wssconfigurationservice?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsssetup/start-wssconfigurationservice?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-WssConfigurationService --- diff --git a/docset/winserver2012r2-ps/wsssetup/Test-WssConfigurationOption.md b/docset/winserver2012r2-ps/wsssetup/Test-WssConfigurationOption.md index 3feb1bf57b..8a6e001d3c 100644 --- a/docset/winserver2012r2-ps/wsssetup/Test-WssConfigurationOption.md +++ b/docset/winserver2012r2-ps/wsssetup/Test-WssConfigurationOption.md @@ -2,7 +2,7 @@ external help file: Wssg.Setup.Commands.dll-Help.xml Module Name: WSSSetup ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsssetup/test-wssconfigurationoption?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsssetup/test-wssconfigurationoption?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-WssConfigurationOption --- diff --git a/docset/winserver2012r2-ps/wsssetup/Test-WssPrecheckResult.md b/docset/winserver2012r2-ps/wsssetup/Test-WssPrecheckResult.md index 0c8d41a0ec..eaaddf187f 100644 --- a/docset/winserver2012r2-ps/wsssetup/Test-WssPrecheckResult.md +++ b/docset/winserver2012r2-ps/wsssetup/Test-WssPrecheckResult.md @@ -2,7 +2,7 @@ external help file: Wssg.Setup.Commands.dll-Help.xml Module Name: WSSSetup ms.date: 12/05/2017 -online version: https://docs.microsoft.com/powershell/module/wsssetup/test-wssprecheckresult?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wsssetup/test-wssprecheckresult?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-WssPrecheckResult --- From db38e2bc94fc140c2363e25ab90bbdb0750e49fb Mon Sep 17 00:00:00 2001 From: Sean Wheeler Date: Tue, 20 Sep 2022 13:03:22 -0500 Subject: [PATCH 246/965] Update URLs for site rebrand --- .../Disable-DiagnosticDataViewing.md | 2 +- .../Enable-DiagnosticDataViewing.md | 2 +- .../Microsoft.DiagnosticDataViewer/Get-DiagnosticData.md | 2 +- .../Microsoft.DiagnosticDataViewer/Get-DiagnosticDataTypes.md | 2 +- .../Get-DiagnosticDataViewingSetting.md | 2 +- .../Get-DiagnosticStoreCapacity.md | 2 +- .../Set-DiagnosticStoreCapacity.md | 2 +- .../Disable-ServerManagerStandardUserRemoting.md | 2 +- .../Enable-ServerManagerStandardUserRemoting.md | 2 +- .../Export-SmigServerSetting.md | 2 +- .../Get-SmigServerFeature.md | 2 +- .../Get-WindowsFeature.md | 2 +- .../Import-SmigServerSetting.md | 2 +- .../Install-WindowsFeature.md | 2 +- .../Receive-SmigServerData.md | 2 +- .../Send-SmigServerData.md | 2 +- .../Microsoft.Windows.ServerManager.Migration/ServerManager.md | 2 +- .../Uninstall-WindowsFeature.md | 2 +- .../activedirectory/Add-ADCentralAccessPolicyMember.md | 2 +- .../activedirectory/Add-ADComputerServiceAccount.md | 2 +- .../Add-ADDomainControllerPasswordReplicationPolicy.md | 2 +- .../activedirectory/Add-ADFineGrainedPasswordPolicySubject.md | 2 +- docset/winserver2016-ps/activedirectory/Add-ADGroupMember.md | 2 +- .../activedirectory/Add-ADPrincipalGroupMembership.md | 2 +- .../activedirectory/Add-ADResourcePropertyListMember.md | 2 +- .../activedirectory/Clear-ADAccountExpiration.md | 2 +- .../activedirectory/Clear-ADClaimTransformLink.md | 2 +- docset/winserver2016-ps/activedirectory/Disable-ADAccount.md | 2 +- .../activedirectory/Disable-ADOptionalFeature.md | 2 +- docset/winserver2016-ps/activedirectory/Enable-ADAccount.md | 2 +- .../activedirectory/Enable-ADOptionalFeature.md | 2 +- .../activedirectory/Get-ADAccountAuthorizationGroup.md | 2 +- .../Get-ADAccountResultantPasswordReplicationPolicy.md | 2 +- .../activedirectory/Get-ADAuthenticationPolicy.md | 2 +- .../activedirectory/Get-ADAuthenticationPolicySilo.md | 2 +- .../activedirectory/Get-ADCentralAccessPolicy.md | 2 +- .../winserver2016-ps/activedirectory/Get-ADCentralAccessRule.md | 2 +- .../activedirectory/Get-ADClaimTransformPolicy.md | 2 +- docset/winserver2016-ps/activedirectory/Get-ADClaimType.md | 2 +- docset/winserver2016-ps/activedirectory/Get-ADComputer.md | 2 +- .../activedirectory/Get-ADComputerServiceAccount.md | 2 +- .../activedirectory/Get-ADDCCloningExcludedApplicationList.md | 2 +- .../activedirectory/Get-ADDefaultDomainPasswordPolicy.md | 2 +- docset/winserver2016-ps/activedirectory/Get-ADDomain.md | 2 +- .../winserver2016-ps/activedirectory/Get-ADDomainController.md | 2 +- .../Get-ADDomainControllerPasswordReplicationPolicy.md | 2 +- .../Get-ADDomainControllerPasswordReplicationPolicyUsage.md | 2 +- .../activedirectory/Get-ADFineGrainedPasswordPolicy.md | 2 +- .../activedirectory/Get-ADFineGrainedPasswordPolicySubject.md | 2 +- docset/winserver2016-ps/activedirectory/Get-ADForest.md | 2 +- docset/winserver2016-ps/activedirectory/Get-ADGroup.md | 2 +- docset/winserver2016-ps/activedirectory/Get-ADGroupMember.md | 2 +- docset/winserver2016-ps/activedirectory/Get-ADObject.md | 2 +- .../winserver2016-ps/activedirectory/Get-ADOptionalFeature.md | 2 +- .../activedirectory/Get-ADOrganizationalUnit.md | 2 +- .../activedirectory/Get-ADPrincipalGroupMembership.md | 2 +- .../activedirectory/Get-ADReplicationAttributeMetadata.md | 2 +- .../activedirectory/Get-ADReplicationConnection.md | 2 +- .../activedirectory/Get-ADReplicationFailure.md | 2 +- .../activedirectory/Get-ADReplicationPartnerMetadata.md | 2 +- .../activedirectory/Get-ADReplicationQueueOperation.md | 2 +- .../winserver2016-ps/activedirectory/Get-ADReplicationSite.md | 2 +- .../activedirectory/Get-ADReplicationSiteLink.md | 2 +- .../activedirectory/Get-ADReplicationSiteLinkBridge.md | 2 +- .../winserver2016-ps/activedirectory/Get-ADReplicationSubnet.md | 2 +- .../activedirectory/Get-ADReplicationUpToDatenessVectorTable.md | 2 +- .../winserver2016-ps/activedirectory/Get-ADResourceProperty.md | 2 +- .../activedirectory/Get-ADResourcePropertyList.md | 2 +- .../activedirectory/Get-ADResourcePropertyValueType.md | 2 +- docset/winserver2016-ps/activedirectory/Get-ADRootDSE.md | 2 +- docset/winserver2016-ps/activedirectory/Get-ADServiceAccount.md | 2 +- docset/winserver2016-ps/activedirectory/Get-ADTrust.md | 2 +- docset/winserver2016-ps/activedirectory/Get-ADUser.md | 2 +- .../activedirectory/Get-ADUserResultantPasswordPolicy.md | 2 +- .../activedirectory/Grant-ADAuthenticationPolicySiloAccess.md | 2 +- .../activedirectory/Install-ADServiceAccount.md | 2 +- .../winserver2016-ps/activedirectory/Move-ADDirectoryServer.md | 2 +- .../Move-ADDirectoryServerOperationMasterRole.md | 2 +- docset/winserver2016-ps/activedirectory/Move-ADObject.md | 2 +- .../activedirectory/New-ADAuthenticationPolicy.md | 2 +- .../activedirectory/New-ADAuthenticationPolicySilo.md | 2 +- .../activedirectory/New-ADCentralAccessPolicy.md | 2 +- .../winserver2016-ps/activedirectory/New-ADCentralAccessRule.md | 2 +- .../activedirectory/New-ADClaimTransformPolicy.md | 2 +- docset/winserver2016-ps/activedirectory/New-ADClaimType.md | 2 +- docset/winserver2016-ps/activedirectory/New-ADComputer.md | 2 +- .../winserver2016-ps/activedirectory/New-ADDCCloneConfigFile.md | 2 +- .../activedirectory/New-ADFineGrainedPasswordPolicy.md | 2 +- docset/winserver2016-ps/activedirectory/New-ADGroup.md | 2 +- docset/winserver2016-ps/activedirectory/New-ADObject.md | 2 +- .../activedirectory/New-ADOrganizationalUnit.md | 2 +- .../winserver2016-ps/activedirectory/New-ADReplicationSite.md | 2 +- .../activedirectory/New-ADReplicationSiteLink.md | 2 +- .../activedirectory/New-ADReplicationSiteLinkBridge.md | 2 +- .../winserver2016-ps/activedirectory/New-ADReplicationSubnet.md | 2 +- .../winserver2016-ps/activedirectory/New-ADResourceProperty.md | 2 +- .../activedirectory/New-ADResourcePropertyList.md | 2 +- docset/winserver2016-ps/activedirectory/New-ADServiceAccount.md | 2 +- docset/winserver2016-ps/activedirectory/New-ADUser.md | 2 +- .../activedirectory/Remove-ADAuthenticationPolicy.md | 2 +- .../activedirectory/Remove-ADAuthenticationPolicySilo.md | 2 +- .../activedirectory/Remove-ADCentralAccessPolicy.md | 2 +- .../activedirectory/Remove-ADCentralAccessPolicyMember.md | 2 +- .../activedirectory/Remove-ADCentralAccessRule.md | 2 +- .../activedirectory/Remove-ADClaimTransformPolicy.md | 2 +- docset/winserver2016-ps/activedirectory/Remove-ADClaimType.md | 2 +- docset/winserver2016-ps/activedirectory/Remove-ADComputer.md | 2 +- .../activedirectory/Remove-ADComputerServiceAccount.md | 2 +- .../Remove-ADDomainControllerPasswordReplicationPolicy.md | 2 +- .../activedirectory/Remove-ADFineGrainedPasswordPolicy.md | 2 +- .../Remove-ADFineGrainedPasswordPolicySubject.md | 2 +- docset/winserver2016-ps/activedirectory/Remove-ADGroup.md | 2 +- docset/winserver2016-ps/activedirectory/Remove-ADGroupMember.md | 2 +- docset/winserver2016-ps/activedirectory/Remove-ADObject.md | 2 +- .../activedirectory/Remove-ADOrganizationalUnit.md | 2 +- .../activedirectory/Remove-ADPrincipalGroupMembership.md | 2 +- .../activedirectory/Remove-ADReplicationSite.md | 2 +- .../activedirectory/Remove-ADReplicationSiteLink.md | 2 +- .../activedirectory/Remove-ADReplicationSiteLinkBridge.md | 2 +- .../activedirectory/Remove-ADReplicationSubnet.md | 2 +- .../activedirectory/Remove-ADResourceProperty.md | 2 +- .../activedirectory/Remove-ADResourcePropertyList.md | 2 +- .../activedirectory/Remove-ADResourcePropertyListMember.md | 2 +- .../winserver2016-ps/activedirectory/Remove-ADServiceAccount.md | 2 +- docset/winserver2016-ps/activedirectory/Remove-ADUser.md | 2 +- docset/winserver2016-ps/activedirectory/Rename-ADObject.md | 2 +- .../activedirectory/Reset-ADServiceAccountPassword.md | 2 +- docset/winserver2016-ps/activedirectory/Restore-ADObject.md | 2 +- .../activedirectory/Revoke-ADAuthenticationPolicySiloAccess.md | 2 +- docset/winserver2016-ps/activedirectory/Search-ADAccount.md | 2 +- .../activedirectory/Set-ADAccountAuthenticationPolicySilo.md | 2 +- docset/winserver2016-ps/activedirectory/Set-ADAccountControl.md | 2 +- .../winserver2016-ps/activedirectory/Set-ADAccountExpiration.md | 2 +- .../winserver2016-ps/activedirectory/Set-ADAccountPassword.md | 2 +- .../activedirectory/Set-ADAuthenticationPolicy.md | 2 +- .../activedirectory/Set-ADAuthenticationPolicySilo.md | 2 +- .../activedirectory/Set-ADCentralAccessPolicy.md | 2 +- .../winserver2016-ps/activedirectory/Set-ADCentralAccessRule.md | 2 +- .../activedirectory/Set-ADClaimTransformLink.md | 2 +- .../activedirectory/Set-ADClaimTransformPolicy.md | 2 +- docset/winserver2016-ps/activedirectory/Set-ADClaimType.md | 2 +- docset/winserver2016-ps/activedirectory/Set-ADComputer.md | 2 +- .../activedirectory/Set-ADDefaultDomainPasswordPolicy.md | 2 +- docset/winserver2016-ps/activedirectory/Set-ADDomain.md | 2 +- docset/winserver2016-ps/activedirectory/Set-ADDomainMode.md | 2 +- .../activedirectory/Set-ADFineGrainedPasswordPolicy.md | 2 +- docset/winserver2016-ps/activedirectory/Set-ADForest.md | 2 +- docset/winserver2016-ps/activedirectory/Set-ADForestMode.md | 2 +- docset/winserver2016-ps/activedirectory/Set-ADGroup.md | 2 +- docset/winserver2016-ps/activedirectory/Set-ADObject.md | 2 +- .../activedirectory/Set-ADOrganizationalUnit.md | 2 +- .../activedirectory/Set-ADReplicationConnection.md | 2 +- .../winserver2016-ps/activedirectory/Set-ADReplicationSite.md | 2 +- .../activedirectory/Set-ADReplicationSiteLink.md | 2 +- .../activedirectory/Set-ADReplicationSiteLinkBridge.md | 2 +- .../winserver2016-ps/activedirectory/Set-ADReplicationSubnet.md | 2 +- .../winserver2016-ps/activedirectory/Set-ADResourceProperty.md | 2 +- .../activedirectory/Set-ADResourcePropertyList.md | 2 +- docset/winserver2016-ps/activedirectory/Set-ADServiceAccount.md | 2 +- docset/winserver2016-ps/activedirectory/Set-ADUser.md | 2 +- .../activedirectory/Show-ADAuthenticationPolicyExpression.md | 2 +- docset/winserver2016-ps/activedirectory/Sync-ADObject.md | 2 +- .../winserver2016-ps/activedirectory/Test-ADServiceAccount.md | 2 +- .../activedirectory/Uninstall-ADServiceAccount.md | 2 +- docset/winserver2016-ps/activedirectory/Unlock-ADAccount.md | 2 +- .../adcsadministration/Add-CAAuthorityInformationAccess.md | 2 +- .../adcsadministration/Add-CACrlDistributionPoint.md | 2 +- docset/winserver2016-ps/adcsadministration/Add-CATemplate.md | 2 +- .../winserver2016-ps/adcsadministration/Backup-CARoleService.md | 2 +- .../adcsadministration/Confirm-CAEndorsementKeyInfo.md | 2 +- .../adcsadministration/Get-CAAuthorityInformationAccess.md | 2 +- .../adcsadministration/Get-CACrlDistributionPoint.md | 2 +- docset/winserver2016-ps/adcsadministration/Get-CATemplate.md | 2 +- .../adcsadministration/Remove-CAAuthorityInformationAccess.md | 2 +- .../adcsadministration/Remove-CACrlDistributionPoint.md | 2 +- docset/winserver2016-ps/adcsadministration/Remove-CATemplate.md | 2 +- .../adcsadministration/Restore-CARoleService.md | 2 +- .../adcsdeployment/Install-AdcsCertificationAuthority.md | 2 +- .../adcsdeployment/Install-AdcsEnrollmentPolicyWebService.md | 2 +- .../adcsdeployment/Install-AdcsEnrollmentWebService.md | 2 +- .../Install-AdcsNetworkDeviceEnrollmentService.md | 2 +- .../adcsdeployment/Install-AdcsOnlineResponder.md | 2 +- .../adcsdeployment/Install-AdcsWebEnrollment.md | 2 +- .../adcsdeployment/Uninstall-AdcsCertificationAuthority.md | 2 +- .../adcsdeployment/Uninstall-AdcsEnrollmentPolicyWebService.md | 2 +- .../adcsdeployment/Uninstall-AdcsEnrollmentWebService.md | 2 +- .../Uninstall-AdcsNetworkDeviceEnrollmentService.md | 2 +- .../adcsdeployment/Uninstall-AdcsOnlineResponder.md | 2 +- .../adcsdeployment/Uninstall-AdcsWebEnrollment.md | 2 +- .../addsdeployment/Add-ADDSReadOnlyDomainControllerAccount.md | 2 +- docset/winserver2016-ps/addsdeployment/Install-ADDSDomain.md | 2 +- .../addsdeployment/Install-ADDSDomainController.md | 2 +- docset/winserver2016-ps/addsdeployment/Install-ADDSForest.md | 2 +- .../addsdeployment/Test-ADDSDomainControllerInstallation.md | 2 +- .../addsdeployment/Test-ADDSDomainControllerUninstallation.md | 2 +- .../addsdeployment/Test-ADDSDomainInstallation.md | 2 +- .../addsdeployment/Test-ADDSForestInstallation.md | 2 +- .../Test-ADDSReadOnlyDomainControllerAccountCreation.md | 2 +- .../addsdeployment/Uninstall-ADDSDomainController.md | 2 +- docset/winserver2016-ps/adfs/Add-AdfsAttributeStore.md | 2 +- docset/winserver2016-ps/adfs/Add-AdfsCertificate.md | 2 +- docset/winserver2016-ps/adfs/Add-AdfsClaimDescription.md | 2 +- docset/winserver2016-ps/adfs/Add-AdfsClaimsProviderTrust.md | 2 +- .../winserver2016-ps/adfs/Add-AdfsClaimsProviderTrustsGroup.md | 2 +- docset/winserver2016-ps/adfs/Add-AdfsClient.md | 2 +- .../adfs/Add-AdfsDeviceRegistrationUpnSuffix.md | 2 +- docset/winserver2016-ps/adfs/Add-AdfsFarmNode.md | 2 +- .../winserver2016-ps/adfs/Add-AdfsLocalClaimsProviderTrust.md | 2 +- docset/winserver2016-ps/adfs/Add-AdfsNativeClientApplication.md | 2 +- .../adfs/Add-AdfsNonClaimsAwareRelyingPartyTrust.md | 2 +- docset/winserver2016-ps/adfs/Add-AdfsRelyingPartyTrust.md | 2 +- docset/winserver2016-ps/adfs/Add-AdfsRelyingPartyTrustsGroup.md | 2 +- docset/winserver2016-ps/adfs/Add-AdfsScopeDescription.md | 2 +- docset/winserver2016-ps/adfs/Add-AdfsServerApplication.md | 2 +- .../winserver2016-ps/adfs/Add-AdfsTrustedFederationPartner.md | 2 +- docset/winserver2016-ps/adfs/Add-AdfsWebApiApplication.md | 2 +- .../adfs/Add-AdfsWebApplicationProxyRelyingPartyTrust.md | 2 +- docset/winserver2016-ps/adfs/Disable-AdfsApplicationGroup.md | 2 +- .../winserver2016-ps/adfs/Disable-AdfsCertificateAuthority.md | 2 +- docset/winserver2016-ps/adfs/Disable-AdfsClaimsProviderTrust.md | 2 +- docset/winserver2016-ps/adfs/Disable-AdfsClient.md | 2 +- docset/winserver2016-ps/adfs/Disable-AdfsDeviceRegistration.md | 2 +- docset/winserver2016-ps/adfs/Disable-AdfsEndpoint.md | 2 +- .../adfs/Disable-AdfsLocalClaimsProviderTrust.md | 2 +- .../adfs/Disable-AdfsNonClaimsAwareRelyingPartyTrust.md | 2 +- docset/winserver2016-ps/adfs/Disable-AdfsRelyingPartyTrust.md | 2 +- .../adfs/Disable-AdfsWebApplicationProxyRelyingPartyTrust.md | 2 +- docset/winserver2016-ps/adfs/Enable-AdfsApplicationGroup.md | 2 +- docset/winserver2016-ps/adfs/Enable-AdfsClaimsProviderTrust.md | 2 +- docset/winserver2016-ps/adfs/Enable-AdfsClient.md | 2 +- docset/winserver2016-ps/adfs/Enable-AdfsDeviceRegistration.md | 2 +- docset/winserver2016-ps/adfs/Enable-AdfsEndpoint.md | 2 +- .../adfs/Enable-AdfsLocalClaimsProviderTrust.md | 2 +- .../adfs/Enable-AdfsNonClaimsAwareRelyingPartyTrust.md | 2 +- docset/winserver2016-ps/adfs/Enable-AdfsRelyingPartyTrust.md | 2 +- .../adfs/Enable-AdfsWebApplicationProxyRelyingPartyTrust.md | 2 +- .../adfs/Export-AdfsAuthenticationProviderConfigurationData.md | 2 +- docset/winserver2016-ps/adfs/Export-AdfsDeploymentSQLScript.md | 2 +- docset/winserver2016-ps/adfs/Export-AdfsWebContent.md | 2 +- docset/winserver2016-ps/adfs/Export-AdfsWebTheme.md | 2 +- docset/winserver2016-ps/adfs/Get-AdfsAccessControlPolicy.md | 2 +- .../adfs/Get-AdfsAdditionalAuthenticationRule.md | 2 +- docset/winserver2016-ps/adfs/Get-AdfsApplicationGroup.md | 2 +- docset/winserver2016-ps/adfs/Get-AdfsApplicationPermission.md | 2 +- docset/winserver2016-ps/adfs/Get-AdfsAttributeStore.md | 2 +- docset/winserver2016-ps/adfs/Get-AdfsAuthenticationProvider.md | 2 +- .../adfs/Get-AdfsAuthenticationProviderWebContent.md | 2 +- docset/winserver2016-ps/adfs/Get-AdfsAzureMfaConfigured.md | 2 +- docset/winserver2016-ps/adfs/Get-AdfsCertificate.md | 2 +- docset/winserver2016-ps/adfs/Get-AdfsCertificateAuthority.md | 2 +- docset/winserver2016-ps/adfs/Get-AdfsClaimDescription.md | 2 +- docset/winserver2016-ps/adfs/Get-AdfsClaimsProviderTrust.md | 2 +- .../winserver2016-ps/adfs/Get-AdfsClaimsProviderTrustsGroup.md | 2 +- docset/winserver2016-ps/adfs/Get-AdfsClient.md | 2 +- docset/winserver2016-ps/adfs/Get-AdfsDeviceRegistration.md | 2 +- .../adfs/Get-AdfsDeviceRegistrationUpnSuffix.md | 2 +- docset/winserver2016-ps/adfs/Get-AdfsEndpoint.md | 2 +- docset/winserver2016-ps/adfs/Get-AdfsFarmInformation.md | 2 +- .../winserver2016-ps/adfs/Get-AdfsGlobalAuthenticationPolicy.md | 2 +- docset/winserver2016-ps/adfs/Get-AdfsGlobalWebContent.md | 2 +- .../winserver2016-ps/adfs/Get-AdfsLocalClaimsProviderTrust.md | 2 +- docset/winserver2016-ps/adfs/Get-AdfsNativeClientApplication.md | 2 +- .../adfs/Get-AdfsNonClaimsAwareRelyingPartyTrust.md | 2 +- docset/winserver2016-ps/adfs/Get-AdfsProperties.md | 2 +- docset/winserver2016-ps/adfs/Get-AdfsRegistrationHosts.md | 2 +- docset/winserver2016-ps/adfs/Get-AdfsRelyingPartyTrust.md | 2 +- docset/winserver2016-ps/adfs/Get-AdfsRelyingPartyTrustsGroup.md | 2 +- docset/winserver2016-ps/adfs/Get-AdfsRelyingPartyWebContent.md | 2 +- docset/winserver2016-ps/adfs/Get-AdfsRelyingPartyWebTheme.md | 2 +- docset/winserver2016-ps/adfs/Get-AdfsScopeDescription.md | 2 +- docset/winserver2016-ps/adfs/Get-AdfsServerApplication.md | 2 +- docset/winserver2016-ps/adfs/Get-AdfsSslCertificate.md | 2 +- docset/winserver2016-ps/adfs/Get-AdfsSyncProperties.md | 2 +- .../winserver2016-ps/adfs/Get-AdfsTrustedFederationPartner.md | 2 +- docset/winserver2016-ps/adfs/Get-AdfsWebApiApplication.md | 2 +- .../adfs/Get-AdfsWebApplicationProxyRelyingPartyTrust.md | 2 +- docset/winserver2016-ps/adfs/Get-AdfsWebConfig.md | 2 +- docset/winserver2016-ps/adfs/Get-AdfsWebTheme.md | 2 +- docset/winserver2016-ps/adfs/Grant-AdfsApplicationPermission.md | 2 +- .../adfs/Import-AdfsAuthenticationProviderConfigurationData.md | 2 +- docset/winserver2016-ps/adfs/Import-AdfsWebContent.md | 2 +- docset/winserver2016-ps/adfs/Initialize-ADDeviceRegistration.md | 2 +- docset/winserver2016-ps/adfs/Install-AdfsFarm.md | 2 +- .../winserver2016-ps/adfs/Invoke-AdfsFarmBehaviorLevelRaise.md | 2 +- docset/winserver2016-ps/adfs/New-AdfsAccessControlPolicy.md | 2 +- docset/winserver2016-ps/adfs/New-AdfsApplicationGroup.md | 2 +- .../winserver2016-ps/adfs/New-AdfsAzureMfaTenantCertificate.md | 2 +- docset/winserver2016-ps/adfs/New-AdfsClaimRuleSet.md | 2 +- docset/winserver2016-ps/adfs/New-AdfsContactPerson.md | 2 +- .../adfs/New-AdfsLdapAttributeToClaimMapping.md | 2 +- docset/winserver2016-ps/adfs/New-AdfsLdapServerConnection.md | 2 +- docset/winserver2016-ps/adfs/New-AdfsOrganization.md | 2 +- docset/winserver2016-ps/adfs/New-AdfsSamlEndpoint.md | 2 +- docset/winserver2016-ps/adfs/New-AdfsWebTheme.md | 2 +- docset/winserver2016-ps/adfs/Publish-SslCertificate.md | 2 +- .../adfs/Register-AdfsAuthenticationProvider.md | 2 +- docset/winserver2016-ps/adfs/Remove-AdfsAccessControlPolicy.md | 2 +- docset/winserver2016-ps/adfs/Remove-AdfsApplicationGroup.md | 2 +- docset/winserver2016-ps/adfs/Remove-AdfsAttributeStore.md | 2 +- .../adfs/Remove-AdfsAuthenticationProviderWebContent.md | 2 +- docset/winserver2016-ps/adfs/Remove-AdfsCertificate.md | 2 +- docset/winserver2016-ps/adfs/Remove-AdfsClaimDescription.md | 2 +- docset/winserver2016-ps/adfs/Remove-AdfsClaimsProviderTrust.md | 2 +- .../adfs/Remove-AdfsClaimsProviderTrustsGroup.md | 2 +- docset/winserver2016-ps/adfs/Remove-AdfsClient.md | 2 +- .../adfs/Remove-AdfsDeviceRegistrationUpnSuffix.md | 2 +- docset/winserver2016-ps/adfs/Remove-AdfsFarmNode.md | 2 +- docset/winserver2016-ps/adfs/Remove-AdfsGlobalWebContent.md | 2 +- .../adfs/Remove-AdfsLocalClaimsProviderTrust.md | 2 +- .../winserver2016-ps/adfs/Remove-AdfsNativeClientApplication.md | 2 +- .../adfs/Remove-AdfsNonClaimsAwareRelyingPartyTrust.md | 2 +- docset/winserver2016-ps/adfs/Remove-AdfsRelyingPartyTrust.md | 2 +- .../winserver2016-ps/adfs/Remove-AdfsRelyingPartyTrustsGroup.md | 2 +- .../winserver2016-ps/adfs/Remove-AdfsRelyingPartyWebContent.md | 2 +- docset/winserver2016-ps/adfs/Remove-AdfsRelyingPartyWebTheme.md | 2 +- docset/winserver2016-ps/adfs/Remove-AdfsScopeDescription.md | 2 +- docset/winserver2016-ps/adfs/Remove-AdfsServerApplication.md | 2 +- .../adfs/Remove-AdfsTrustedFederationPartner.md | 2 +- docset/winserver2016-ps/adfs/Remove-AdfsWebApiApplication.md | 2 +- .../adfs/Remove-AdfsWebApplicationProxyRelyingPartyTrust.md | 2 +- docset/winserver2016-ps/adfs/Remove-AdfsWebTheme.md | 2 +- docset/winserver2016-ps/adfs/Restore-AdfsFarmBehaviorLevel.md | 2 +- .../winserver2016-ps/adfs/Revoke-AdfsApplicationPermission.md | 2 +- docset/winserver2016-ps/adfs/Revoke-AdfsProxyTrust.md | 2 +- docset/winserver2016-ps/adfs/Set-AdfsAccessControlPolicy.md | 2 +- .../adfs/Set-AdfsAdditionalAuthenticationRule.md | 2 +- .../winserver2016-ps/adfs/Set-AdfsAlternateTlsClientBinding.md | 2 +- docset/winserver2016-ps/adfs/Set-AdfsApplicationGroup.md | 2 +- docset/winserver2016-ps/adfs/Set-AdfsApplicationPermission.md | 2 +- docset/winserver2016-ps/adfs/Set-AdfsAttributeStore.md | 2 +- .../adfs/Set-AdfsAuthenticationProviderWebContent.md | 2 +- docset/winserver2016-ps/adfs/Set-AdfsAzureMfaTenant.md | 2 +- docset/winserver2016-ps/adfs/Set-AdfsCertSharingContainer.md | 2 +- docset/winserver2016-ps/adfs/Set-AdfsCertificate.md | 2 +- docset/winserver2016-ps/adfs/Set-AdfsCertificateAuthority.md | 2 +- docset/winserver2016-ps/adfs/Set-AdfsClaimDescription.md | 2 +- docset/winserver2016-ps/adfs/Set-AdfsClaimsProviderTrust.md | 2 +- docset/winserver2016-ps/adfs/Set-AdfsClient.md | 2 +- docset/winserver2016-ps/adfs/Set-AdfsDeviceRegistration.md | 2 +- .../adfs/Set-AdfsDeviceRegistrationUpnSuffix.md | 2 +- docset/winserver2016-ps/adfs/Set-AdfsEndpoint.md | 2 +- docset/winserver2016-ps/adfs/Set-AdfsFarmInformation.md | 2 +- .../winserver2016-ps/adfs/Set-AdfsGlobalAuthenticationPolicy.md | 2 +- docset/winserver2016-ps/adfs/Set-AdfsGlobalWebContent.md | 2 +- .../winserver2016-ps/adfs/Set-AdfsLocalClaimsProviderTrust.md | 2 +- docset/winserver2016-ps/adfs/Set-AdfsNativeClientApplication.md | 2 +- .../adfs/Set-AdfsNonClaimsAwareRelyingPartyTrust.md | 2 +- docset/winserver2016-ps/adfs/Set-AdfsProperties.md | 2 +- docset/winserver2016-ps/adfs/Set-AdfsRegistrationHosts.md | 2 +- docset/winserver2016-ps/adfs/Set-AdfsRelyingPartyTrust.md | 2 +- docset/winserver2016-ps/adfs/Set-AdfsRelyingPartyWebContent.md | 2 +- docset/winserver2016-ps/adfs/Set-AdfsRelyingPartyWebTheme.md | 2 +- docset/winserver2016-ps/adfs/Set-AdfsScopeDescription.md | 2 +- docset/winserver2016-ps/adfs/Set-AdfsServerApplication.md | 2 +- docset/winserver2016-ps/adfs/Set-AdfsSslCertificate.md | 2 +- docset/winserver2016-ps/adfs/Set-AdfsSyncProperties.md | 2 +- .../winserver2016-ps/adfs/Set-AdfsTrustedFederationPartner.md | 2 +- docset/winserver2016-ps/adfs/Set-AdfsWebApiApplication.md | 2 +- .../adfs/Set-AdfsWebApplicationProxyRelyingPartyTrust.md | 2 +- docset/winserver2016-ps/adfs/Set-AdfsWebConfig.md | 2 +- docset/winserver2016-ps/adfs/Set-AdfsWebTheme.md | 2 +- docset/winserver2016-ps/adfs/Test-AdfsFarmBehaviorLevelRaise.md | 2 +- .../winserver2016-ps/adfs/Test-AdfsFarmBehaviorLevelRestore.md | 2 +- docset/winserver2016-ps/adfs/Test-AdfsFarmInstallation.md | 2 +- docset/winserver2016-ps/adfs/Test-AdfsFarmJoin.md | 2 +- .../adfs/Unregister-AdfsAuthenticationProvider.md | 2 +- docset/winserver2016-ps/adfs/Update-AdfsCertificate.md | 2 +- docset/winserver2016-ps/adfs/Update-AdfsClaimsProviderTrust.md | 2 +- docset/winserver2016-ps/adfs/Update-AdfsRelyingPartyTrust.md | 2 +- docset/winserver2016-ps/adrms/Install-ADRMS.md | 2 +- docset/winserver2016-ps/adrms/Uninstall-ADRMS.md | 2 +- docset/winserver2016-ps/adrms/Update-ADRMS.md | 2 +- .../adrmsadmin/Export-RmsReportDefinitionLanguage.md | 2 +- docset/winserver2016-ps/adrmsadmin/Export-RmsTPD.md | 2 +- docset/winserver2016-ps/adrmsadmin/Export-RmsTUD.md | 2 +- docset/winserver2016-ps/adrmsadmin/Get-RmsCertChain.md | 2 +- docset/winserver2016-ps/adrmsadmin/Get-RmsCertInfo.md | 2 +- docset/winserver2016-ps/adrmsadmin/Get-RmsChildCert.md | 2 +- docset/winserver2016-ps/adrmsadmin/Get-RmsEncryptedIL.md | 2 +- docset/winserver2016-ps/adrmsadmin/Get-RmsRequestInfo.md | 2 +- docset/winserver2016-ps/adrmsadmin/Get-RmsSvcAccount.md | 2 +- docset/winserver2016-ps/adrmsadmin/Get-RmsSystemHealthReport.md | 2 +- docset/winserver2016-ps/adrmsadmin/Get-RmsUserRequestReport.md | 2 +- docset/winserver2016-ps/adrmsadmin/Import-RmsTPD.md | 2 +- docset/winserver2016-ps/adrmsadmin/Import-RmsTUD.md | 2 +- docset/winserver2016-ps/adrmsadmin/Initialize-RmsCryptoMode2.md | 2 +- docset/winserver2016-ps/adrmsadmin/Install-RmsMfgEnrollment.md | 2 +- docset/winserver2016-ps/adrmsadmin/Install-RmsMfgSupport.md | 2 +- docset/winserver2016-ps/adrmsadmin/Set-RmsSvcAccount.md | 2 +- .../winserver2016-ps/adrmsadmin/Uninstall-RmsMfgEnrollment.md | 2 +- docset/winserver2016-ps/adrmsadmin/Uninstall-RmsMfgSupport.md | 2 +- docset/winserver2016-ps/adrmsadmin/Update-RmsCluster.md | 2 +- docset/winserver2016-ps/adrmsadmin/Update-RmsMfgEnrollment.md | 2 +- .../appbackgroundtask/Disable-AppBackgroundTaskDiagnosticLog.md | 2 +- .../appbackgroundtask/Enable-AppBackgroundTaskDiagnosticLog.md | 2 +- .../winserver2016-ps/appbackgroundtask/Get-AppBackgroundTask.md | 2 +- .../appbackgroundtask/Set-AppBackgroundTaskResourcePolicy.md | 2 +- .../appbackgroundtask/Start-AppBackgroundTask.md | 2 +- .../appbackgroundtask/Unregister-AppBackgroundTask.md | 2 +- .../winserver2016-ps/applocker/Get-AppLockerFileInformation.md | 2 +- docset/winserver2016-ps/applocker/Get-AppLockerPolicy.md | 2 +- docset/winserver2016-ps/applocker/New-AppLockerPolicy.md | 2 +- docset/winserver2016-ps/applocker/Set-AppLockerPolicy.md | 2 +- docset/winserver2016-ps/applocker/Test-AppLockerPolicy.md | 2 +- .../appvclient/Add-AppvClientConnectionGroup.md | 2 +- docset/winserver2016-ps/appvclient/Add-AppvClientPackage.md | 2 +- docset/winserver2016-ps/appvclient/Add-AppvPublishingServer.md | 2 +- docset/winserver2016-ps/appvclient/Disable-Appv.md | 2 +- .../appvclient/Disable-AppvClientConnectionGroup.md | 2 +- docset/winserver2016-ps/appvclient/Enable-Appv.md | 2 +- .../appvclient/Enable-AppvClientConnectionGroup.md | 2 +- docset/winserver2016-ps/appvclient/Get-AppvClientApplication.md | 2 +- .../winserver2016-ps/appvclient/Get-AppvClientConfiguration.md | 2 +- .../appvclient/Get-AppvClientConnectionGroup.md | 2 +- docset/winserver2016-ps/appvclient/Get-AppvClientMode.md | 2 +- docset/winserver2016-ps/appvclient/Get-AppvClientPackage.md | 2 +- docset/winserver2016-ps/appvclient/Get-AppvPublishingServer.md | 2 +- docset/winserver2016-ps/appvclient/Get-AppvStatus.md | 2 +- docset/winserver2016-ps/appvclient/Get-AppvVirtualProcess.md | 2 +- .../appvclient/Mount-AppvClientConnectionGroup.md | 2 +- docset/winserver2016-ps/appvclient/Mount-AppvClientPackage.md | 2 +- docset/winserver2016-ps/appvclient/Publish-AppvClientPackage.md | 2 +- .../appvclient/Remove-AppvClientConnectionGroup.md | 2 +- docset/winserver2016-ps/appvclient/Remove-AppvClientPackage.md | 2 +- .../winserver2016-ps/appvclient/Remove-AppvPublishingServer.md | 2 +- .../appvclient/Repair-AppvClientConnectionGroup.md | 2 +- docset/winserver2016-ps/appvclient/Repair-AppvClientPackage.md | 2 +- docset/winserver2016-ps/appvclient/Send-AppvClientReport.md | 2 +- .../winserver2016-ps/appvclient/Set-AppvClientConfiguration.md | 2 +- docset/winserver2016-ps/appvclient/Set-AppvClientMode.md | 2 +- docset/winserver2016-ps/appvclient/Set-AppvClientPackage.md | 2 +- docset/winserver2016-ps/appvclient/Set-AppvPublishingServer.md | 2 +- docset/winserver2016-ps/appvclient/Start-AppvVirtualProcess.md | 2 +- .../appvclient/Stop-AppvClientConnectionGroup.md | 2 +- docset/winserver2016-ps/appvclient/Stop-AppvClientPackage.md | 2 +- docset/winserver2016-ps/appvclient/Sync-AppvPublishingServer.md | 2 +- .../winserver2016-ps/appvclient/Unpublish-AppvClientPackage.md | 2 +- .../appvsequencer/Expand-AppvSequencerPackage.md | 2 +- .../appvsequencer/New-AppvPackageAccelerator.md | 2 +- .../winserver2016-ps/appvsequencer/New-AppvSequencerPackage.md | 2 +- .../appvsequencer/Update-AppvSequencerPackage.md | 2 +- docset/winserver2016-ps/appx/Add-AppxPackage.md | 2 +- docset/winserver2016-ps/appx/Add-AppxVolume.md | 2 +- docset/winserver2016-ps/appx/Dismount-AppxVolume.md | 2 +- docset/winserver2016-ps/appx/Get-AppxDefaultVolume.md | 2 +- docset/winserver2016-ps/appx/Get-AppxLastError.md | 2 +- docset/winserver2016-ps/appx/Get-AppxLog.md | 2 +- docset/winserver2016-ps/appx/Get-AppxPackage.md | 2 +- docset/winserver2016-ps/appx/Get-AppxPackageManifest.md | 2 +- docset/winserver2016-ps/appx/Get-AppxVolume.md | 2 +- docset/winserver2016-ps/appx/Get-NonRemovableAppsPolicy.md | 2 +- docset/winserver2016-ps/appx/Invoke-CommandInDesktopPackage.md | 2 +- docset/winserver2016-ps/appx/Mount-AppxVolume.md | 2 +- docset/winserver2016-ps/appx/Move-AppxPackage.md | 2 +- docset/winserver2016-ps/appx/Remove-AppxPackage.md | 2 +- docset/winserver2016-ps/appx/Remove-AppxVolume.md | 2 +- docset/winserver2016-ps/appx/Reset-AppxPackage.md | 2 +- docset/winserver2016-ps/appx/Set-AppxDefaultVolume.md | 2 +- docset/winserver2016-ps/appx/Set-NonRemovableAppsPolicy.md | 2 +- docset/winserver2016-ps/assignedaccess/Clear-AssignedAccess.md | 2 +- docset/winserver2016-ps/assignedaccess/Get-AssignedAccess.md | 2 +- docset/winserver2016-ps/assignedaccess/Set-AssignedAccess.md | 2 +- docset/winserver2016-ps/bestpractices/Get-BpaModel.md | 2 +- docset/winserver2016-ps/bestpractices/Get-BpaResult.md | 2 +- docset/winserver2016-ps/bestpractices/Invoke-BpaModel.md | 2 +- docset/winserver2016-ps/bestpractices/Set-BpaResult.md | 2 +- docset/winserver2016-ps/bitlocker/Add-BitLockerKeyProtector.md | 2 +- .../winserver2016-ps/bitlocker/Backup-BitLockerKeyProtector.md | 2 +- docset/winserver2016-ps/bitlocker/Clear-BitLockerAutoUnlock.md | 2 +- docset/winserver2016-ps/bitlocker/Disable-BitLocker.md | 2 +- .../winserver2016-ps/bitlocker/Disable-BitLockerAutoUnlock.md | 2 +- docset/winserver2016-ps/bitlocker/Enable-BitLocker.md | 2 +- docset/winserver2016-ps/bitlocker/Enable-BitLockerAutoUnlock.md | 2 +- docset/winserver2016-ps/bitlocker/Get-BitLockerVolume.md | 2 +- docset/winserver2016-ps/bitlocker/Lock-BitLocker.md | 2 +- .../winserver2016-ps/bitlocker/Remove-BitLockerKeyProtector.md | 2 +- docset/winserver2016-ps/bitlocker/Resume-BitLocker.md | 2 +- docset/winserver2016-ps/bitlocker/Suspend-BitLocker.md | 2 +- docset/winserver2016-ps/bitlocker/Unlock-BitLocker.md | 2 +- docset/winserver2016-ps/bitstransfer/Add-BitsFile.md | 2 +- docset/winserver2016-ps/bitstransfer/Complete-BitsTransfer.md | 2 +- docset/winserver2016-ps/bitstransfer/Get-BitsTransfer.md | 2 +- docset/winserver2016-ps/bitstransfer/Remove-BitsTransfer.md | 2 +- docset/winserver2016-ps/bitstransfer/Resume-BitsTransfer.md | 2 +- docset/winserver2016-ps/bitstransfer/Set-BitsTransfer.md | 2 +- docset/winserver2016-ps/bitstransfer/Start-BitsTransfer.md | 2 +- docset/winserver2016-ps/bitstransfer/Suspend-BitsTransfer.md | 2 +- .../booteventcollector/Checkpoint-SbecActiveConfig.md | 2 +- .../booteventcollector/Clear-SbecProviderCache.md | 2 +- .../booteventcollector/Disable-SbecAutologger.md | 2 +- docset/winserver2016-ps/booteventcollector/Disable-SbecBcd.md | 2 +- .../booteventcollector/Enable-SbecAutologger.md | 2 +- docset/winserver2016-ps/booteventcollector/Enable-SbecBcd.md | 2 +- .../winserver2016-ps/booteventcollector/Enable-SbecBootImage.md | 2 +- docset/winserver2016-ps/booteventcollector/Enable-SbecWdsBcd.md | 2 +- .../winserver2016-ps/booteventcollector/Get-SbecActiveConfig.md | 2 +- .../winserver2016-ps/booteventcollector/Get-SbecBackupConfig.md | 2 +- .../winserver2016-ps/booteventcollector/Get-SbecDestination.md | 2 +- .../winserver2016-ps/booteventcollector/Get-SbecForwarding.md | 2 +- docset/winserver2016-ps/booteventcollector/Get-SbecHistory.md | 2 +- .../booteventcollector/Get-SbecLocalizedMessage.md | 2 +- .../winserver2016-ps/booteventcollector/Get-SbecLogSession.md | 2 +- .../booteventcollector/Get-SbecTraceProviders.md | 2 +- .../booteventcollector/New-SbecUnattendFragment.md | 2 +- .../booteventcollector/Redo-SbecActiveConfig.md | 2 +- .../booteventcollector/Restore-SbecBackupConfig.md | 2 +- docset/winserver2016-ps/booteventcollector/Save-SbecInstance.md | 2 +- .../winserver2016-ps/booteventcollector/Save-SbecLogSession.md | 2 +- .../winserver2016-ps/booteventcollector/Set-SbecActiveConfig.md | 2 +- .../winserver2016-ps/booteventcollector/Set-SbecLogSession.md | 2 +- .../winserver2016-ps/booteventcollector/Start-SbecInstance.md | 2 +- .../winserver2016-ps/booteventcollector/Start-SbecLogSession.md | 2 +- .../booteventcollector/Start-SbecNtKernelLogSession.md | 2 +- .../booteventcollector/Start-SbecSimpleLogSession.md | 2 +- docset/winserver2016-ps/booteventcollector/Stop-SbecInstance.md | 2 +- .../winserver2016-ps/booteventcollector/Stop-SbecLogSession.md | 2 +- .../booteventcollector/Test-SbecActiveConfig.md | 2 +- docset/winserver2016-ps/booteventcollector/Test-SbecConfig.md | 2 +- .../booteventcollector/Undo-SbecActiveConfig.md | 2 +- docset/winserver2016-ps/branchcache/Add-BCDataCacheExtension.md | 2 +- docset/winserver2016-ps/branchcache/Clear-BCCache.md | 2 +- docset/winserver2016-ps/branchcache/Disable-BC.md | 2 +- docset/winserver2016-ps/branchcache/Disable-BCDowngrading.md | 2 +- docset/winserver2016-ps/branchcache/Disable-BCServeOnBattery.md | 2 +- docset/winserver2016-ps/branchcache/Enable-BCDistributed.md | 2 +- docset/winserver2016-ps/branchcache/Enable-BCDowngrading.md | 2 +- docset/winserver2016-ps/branchcache/Enable-BCHostedClient.md | 2 +- docset/winserver2016-ps/branchcache/Enable-BCHostedServer.md | 2 +- docset/winserver2016-ps/branchcache/Enable-BCLocal.md | 2 +- docset/winserver2016-ps/branchcache/Enable-BCServeOnBattery.md | 2 +- docset/winserver2016-ps/branchcache/Export-BCCachePackage.md | 2 +- docset/winserver2016-ps/branchcache/Export-BCSecretKey.md | 2 +- .../winserver2016-ps/branchcache/Get-BCClientConfiguration.md | 2 +- .../branchcache/Get-BCContentServerConfiguration.md | 2 +- docset/winserver2016-ps/branchcache/Get-BCDataCache.md | 2 +- docset/winserver2016-ps/branchcache/Get-BCDataCacheExtension.md | 2 +- docset/winserver2016-ps/branchcache/Get-BCHashCache.md | 2 +- .../branchcache/Get-BCHostedCacheServerConfiguration.md | 2 +- .../winserver2016-ps/branchcache/Get-BCNetworkConfiguration.md | 2 +- docset/winserver2016-ps/branchcache/Get-BCStatus.md | 2 +- docset/winserver2016-ps/branchcache/Import-BCCachePackage.md | 2 +- docset/winserver2016-ps/branchcache/Import-BCSecretKey.md | 2 +- docset/winserver2016-ps/branchcache/Publish-BCFileContent.md | 2 +- docset/winserver2016-ps/branchcache/Publish-BCWebContent.md | 2 +- .../winserver2016-ps/branchcache/Remove-BCDataCacheExtension.md | 2 +- docset/winserver2016-ps/branchcache/Reset-BC.md | 2 +- docset/winserver2016-ps/branchcache/Set-BCAuthentication.md | 2 +- docset/winserver2016-ps/branchcache/Set-BCCache.md | 2 +- .../winserver2016-ps/branchcache/Set-BCDataCacheEntryMaxAge.md | 2 +- docset/winserver2016-ps/branchcache/Set-BCMinSMBLatency.md | 2 +- docset/winserver2016-ps/branchcache/Set-BCSecretKey.md | 2 +- .../winserver2016-ps/clusterawareupdating/Add-CauClusterRole.md | 2 +- .../clusterawareupdating/Disable-CauClusterRole.md | 2 +- .../clusterawareupdating/Enable-CauClusterRole.md | 2 +- .../winserver2016-ps/clusterawareupdating/Export-CauReport.md | 2 +- .../winserver2016-ps/clusterawareupdating/Get-CauClusterRole.md | 2 +- docset/winserver2016-ps/clusterawareupdating/Get-CauPlugin.md | 2 +- docset/winserver2016-ps/clusterawareupdating/Get-CauReport.md | 2 +- docset/winserver2016-ps/clusterawareupdating/Get-CauRun.md | 2 +- docset/winserver2016-ps/clusterawareupdating/Invoke-CauRun.md | 2 +- docset/winserver2016-ps/clusterawareupdating/Invoke-CauScan.md | 2 +- .../winserver2016-ps/clusterawareupdating/Register-CauPlugin.md | 2 +- .../clusterawareupdating/Remove-CauClusterRole.md | 2 +- .../winserver2016-ps/clusterawareupdating/Save-CauDebugTrace.md | 2 +- .../winserver2016-ps/clusterawareupdating/Set-CauClusterRole.md | 2 +- docset/winserver2016-ps/clusterawareupdating/Stop-CauRun.md | 2 +- docset/winserver2016-ps/clusterawareupdating/Test-CauSetup.md | 2 +- .../clusterawareupdating/Unregister-CauPlugin.md | 2 +- docset/winserver2016-ps/configci/Add-SignerRule.md | 2 +- docset/winserver2016-ps/configci/ConvertFrom-CIPolicy.md | 2 +- docset/winserver2016-ps/configci/Edit-CIPolicyRule.md | 2 +- docset/winserver2016-ps/configci/Get-CIPolicy.md | 2 +- docset/winserver2016-ps/configci/Get-CIPolicyIdInfo.md | 2 +- docset/winserver2016-ps/configci/Get-CIPolicyInfo.md | 2 +- docset/winserver2016-ps/configci/Get-SystemDriver.md | 2 +- docset/winserver2016-ps/configci/Merge-CIPolicy.md | 2 +- docset/winserver2016-ps/configci/New-CIPolicy.md | 2 +- docset/winserver2016-ps/configci/New-CIPolicyRule.md | 2 +- docset/winserver2016-ps/configci/Remove-CIPolicyRule.md | 2 +- docset/winserver2016-ps/configci/Set-CIPolicyIdInfo.md | 2 +- docset/winserver2016-ps/configci/Set-CIPolicyVersion.md | 2 +- docset/winserver2016-ps/configci/Set-HVCIOptions.md | 2 +- docset/winserver2016-ps/configci/Set-RuleOption.md | 2 +- docset/winserver2016-ps/dcbqos/Disable-NetQosFlowControl.md | 2 +- docset/winserver2016-ps/dcbqos/Enable-NetQosFlowControl.md | 2 +- docset/winserver2016-ps/dcbqos/Get-NetQosDcbxSetting.md | 2 +- docset/winserver2016-ps/dcbqos/Get-NetQosFlowControl.md | 2 +- docset/winserver2016-ps/dcbqos/Get-NetQosTrafficClass.md | 2 +- docset/winserver2016-ps/dcbqos/New-NetQosTrafficClass.md | 2 +- docset/winserver2016-ps/dcbqos/Remove-NetQosTrafficClass.md | 2 +- docset/winserver2016-ps/dcbqos/Set-NetQosDcbxSetting.md | 2 +- docset/winserver2016-ps/dcbqos/Set-NetQosFlowControl.md | 2 +- docset/winserver2016-ps/dcbqos/Set-NetQosTrafficClass.md | 2 +- docset/winserver2016-ps/dcbqos/Switch-NetQosDcbxSetting.md | 2 +- docset/winserver2016-ps/dcbqos/Switch-NetQosFlowControl.md | 2 +- docset/winserver2016-ps/dcbqos/Switch-NetQosTrafficClass.md | 2 +- docset/winserver2016-ps/deduplication/Disable-DedupVolume.md | 2 +- docset/winserver2016-ps/deduplication/Enable-DedupVolume.md | 2 +- docset/winserver2016-ps/deduplication/Expand-DedupFile.md | 2 +- docset/winserver2016-ps/deduplication/Get-DedupJob.md | 2 +- docset/winserver2016-ps/deduplication/Get-DedupMetadata.md | 2 +- docset/winserver2016-ps/deduplication/Get-DedupSchedule.md | 2 +- docset/winserver2016-ps/deduplication/Get-DedupStatus.md | 2 +- docset/winserver2016-ps/deduplication/Get-DedupVolume.md | 2 +- .../winserver2016-ps/deduplication/Measure-DedupFileMetadata.md | 2 +- docset/winserver2016-ps/deduplication/New-DedupSchedule.md | 2 +- docset/winserver2016-ps/deduplication/Remove-DedupSchedule.md | 2 +- docset/winserver2016-ps/deduplication/Set-DedupSchedule.md | 2 +- docset/winserver2016-ps/deduplication/Set-DedupVolume.md | 2 +- docset/winserver2016-ps/deduplication/Start-DedupJob.md | 2 +- docset/winserver2016-ps/deduplication/Stop-DedupJob.md | 2 +- docset/winserver2016-ps/deduplication/Update-DedupStatus.md | 2 +- docset/winserver2016-ps/defender/Add-MpPreference.md | 2 +- docset/winserver2016-ps/defender/Get-MpComputerStatus.md | 2 +- docset/winserver2016-ps/defender/Get-MpPreference.md | 2 +- docset/winserver2016-ps/defender/Get-MpThreat.md | 2 +- docset/winserver2016-ps/defender/Get-MpThreatCatalog.md | 2 +- docset/winserver2016-ps/defender/Get-MpThreatDetection.md | 2 +- docset/winserver2016-ps/defender/Remove-MpPreference.md | 2 +- docset/winserver2016-ps/defender/Remove-MpThreat.md | 2 +- docset/winserver2016-ps/defender/Set-MpPreference.md | 2 +- docset/winserver2016-ps/defender/Start-MpScan.md | 2 +- docset/winserver2016-ps/defender/Start-MpWDOScan.md | 2 +- docset/winserver2016-ps/defender/Update-MpSignature.md | 2 +- .../devicehealthattestation/Backup-DHASConfiguration.md | 2 +- .../Get-DHASActiveEncryptionCertificate.md | 2 +- .../devicehealthattestation/Get-DHASActiveSigningCertificate.md | 2 +- .../devicehealthattestation/Get-DHASCertificateChainPolicy.md | 2 +- .../Get-DHASInactiveEncryptionCertificate.md | 2 +- .../Get-DHASInactiveSigningCertificate.md | 2 +- .../devicehealthattestation/Install-DeviceHealthAttestation.md | 2 +- .../Remove-DHASInactiveEncryptionCertificate.md | 2 +- .../Remove-DHASInactiveSigningCertificate.md | 2 +- .../devicehealthattestation/Restore-DHASConfiguration.md | 2 +- .../Set-DHASActiveEncryptionCertificate.md | 2 +- .../devicehealthattestation/Set-DHASActiveSigningCertificate.md | 2 +- .../devicehealthattestation/Set-DHASCertificateChainPolicy.md | 2 +- .../Set-DHASSupportedAuthenticationSchema.md | 2 +- .../Uninstall-DeviceHealthAttestation.md | 2 +- docset/winserver2016-ps/dfsn/Get-DfsnAccess.md | 2 +- docset/winserver2016-ps/dfsn/Get-DfsnFolder.md | 2 +- docset/winserver2016-ps/dfsn/Get-DfsnFolderTarget.md | 2 +- docset/winserver2016-ps/dfsn/Get-DfsnRoot.md | 2 +- docset/winserver2016-ps/dfsn/Get-DfsnRootTarget.md | 2 +- docset/winserver2016-ps/dfsn/Get-DfsnServerConfiguration.md | 2 +- docset/winserver2016-ps/dfsn/Grant-DfsnAccess.md | 2 +- docset/winserver2016-ps/dfsn/Move-DfsnFolder.md | 2 +- docset/winserver2016-ps/dfsn/New-DfsnFolder.md | 2 +- docset/winserver2016-ps/dfsn/New-DfsnFolderTarget.md | 2 +- docset/winserver2016-ps/dfsn/New-DfsnRoot.md | 2 +- docset/winserver2016-ps/dfsn/New-DfsnRootTarget.md | 2 +- docset/winserver2016-ps/dfsn/Remove-DfsnAccess.md | 2 +- docset/winserver2016-ps/dfsn/Remove-DfsnFolder.md | 2 +- docset/winserver2016-ps/dfsn/Remove-DfsnFolderTarget.md | 2 +- docset/winserver2016-ps/dfsn/Remove-DfsnRoot.md | 2 +- docset/winserver2016-ps/dfsn/Remove-DfsnRootTarget.md | 2 +- docset/winserver2016-ps/dfsn/Revoke-DfsnAccess.md | 2 +- docset/winserver2016-ps/dfsn/Set-DfsnFolder.md | 2 +- docset/winserver2016-ps/dfsn/Set-DfsnFolderTarget.md | 2 +- docset/winserver2016-ps/dfsn/Set-DfsnRoot.md | 2 +- docset/winserver2016-ps/dfsn/Set-DfsnRootTarget.md | 2 +- docset/winserver2016-ps/dfsn/Set-DfsnServerConfiguration.md | 2 +- docset/winserver2016-ps/dfsr/Add-DfsrConnection.md | 2 +- docset/winserver2016-ps/dfsr/Add-DfsrMember.md | 2 +- docset/winserver2016-ps/dfsr/ConvertFrom-DfsrGuid.md | 2 +- docset/winserver2016-ps/dfsr/Export-DfsrClone.md | 2 +- docset/winserver2016-ps/dfsr/Get-DfsReplicatedFolder.md | 2 +- docset/winserver2016-ps/dfsr/Get-DfsReplicationGroup.md | 2 +- docset/winserver2016-ps/dfsr/Get-DfsrBacklog.md | 2 +- docset/winserver2016-ps/dfsr/Get-DfsrCloneState.md | 2 +- docset/winserver2016-ps/dfsr/Get-DfsrConnection.md | 2 +- docset/winserver2016-ps/dfsr/Get-DfsrConnectionSchedule.md | 2 +- docset/winserver2016-ps/dfsr/Get-DfsrDelegation.md | 2 +- docset/winserver2016-ps/dfsr/Get-DfsrFileHash.md | 2 +- docset/winserver2016-ps/dfsr/Get-DfsrGroupSchedule.md | 2 +- docset/winserver2016-ps/dfsr/Get-DfsrIdRecord.md | 2 +- docset/winserver2016-ps/dfsr/Get-DfsrMember.md | 2 +- docset/winserver2016-ps/dfsr/Get-DfsrMembership.md | 2 +- docset/winserver2016-ps/dfsr/Get-DfsrPreservedFiles.md | 2 +- docset/winserver2016-ps/dfsr/Get-DfsrServiceConfiguration.md | 2 +- docset/winserver2016-ps/dfsr/Get-DfsrState.md | 2 +- docset/winserver2016-ps/dfsr/Grant-DfsrDelegation.md | 2 +- docset/winserver2016-ps/dfsr/Import-DfsrClone.md | 2 +- docset/winserver2016-ps/dfsr/New-DfsReplicatedFolder.md | 2 +- docset/winserver2016-ps/dfsr/New-DfsReplicationGroup.md | 2 +- docset/winserver2016-ps/dfsr/Remove-DfsReplicatedFolder.md | 2 +- docset/winserver2016-ps/dfsr/Remove-DfsReplicationGroup.md | 2 +- docset/winserver2016-ps/dfsr/Remove-DfsrConnection.md | 2 +- docset/winserver2016-ps/dfsr/Remove-DfsrMember.md | 2 +- docset/winserver2016-ps/dfsr/Remove-DfsrPropagationTestFile.md | 2 +- docset/winserver2016-ps/dfsr/Reset-DfsrCloneState.md | 2 +- docset/winserver2016-ps/dfsr/Restore-DfsrPreservedFiles.md | 2 +- docset/winserver2016-ps/dfsr/Revoke-DfsrDelegation.md | 2 +- docset/winserver2016-ps/dfsr/Set-DfsReplicatedFolder.md | 2 +- docset/winserver2016-ps/dfsr/Set-DfsReplicationGroup.md | 2 +- docset/winserver2016-ps/dfsr/Set-DfsrConnection.md | 2 +- docset/winserver2016-ps/dfsr/Set-DfsrConnectionSchedule.md | 2 +- docset/winserver2016-ps/dfsr/Set-DfsrGroupSchedule.md | 2 +- docset/winserver2016-ps/dfsr/Set-DfsrMember.md | 2 +- docset/winserver2016-ps/dfsr/Set-DfsrMembership.md | 2 +- docset/winserver2016-ps/dfsr/Set-DfsrServiceConfiguration.md | 2 +- docset/winserver2016-ps/dfsr/Start-DfsrPropagationTest.md | 2 +- docset/winserver2016-ps/dfsr/Suspend-DfsReplicationGroup.md | 2 +- docset/winserver2016-ps/dfsr/Sync-DfsReplicationGroup.md | 2 +- docset/winserver2016-ps/dfsr/Update-DfsrConfigurationFromAD.md | 2 +- docset/winserver2016-ps/dfsr/Write-DfsrHealthReport.md | 2 +- docset/winserver2016-ps/dfsr/Write-DfsrPropagationReport.md | 2 +- docset/winserver2016-ps/dhcpserver/Add-DhcpServerInDC.md | 2 +- .../winserver2016-ps/dhcpserver/Add-DhcpServerSecurityGroup.md | 2 +- docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4Class.md | 2 +- .../dhcpserver/Add-DhcpServerv4ExclusionRange.md | 2 +- docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4Failover.md | 2 +- .../dhcpserver/Add-DhcpServerv4FailoverScope.md | 2 +- docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4Filter.md | 2 +- docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4Lease.md | 2 +- .../dhcpserver/Add-DhcpServerv4MulticastExclusionRange.md | 2 +- .../dhcpserver/Add-DhcpServerv4MulticastScope.md | 2 +- .../dhcpserver/Add-DhcpServerv4OptionDefinition.md | 2 +- docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4Policy.md | 2 +- .../dhcpserver/Add-DhcpServerv4PolicyIPRange.md | 2 +- .../winserver2016-ps/dhcpserver/Add-DhcpServerv4Reservation.md | 2 +- docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4Scope.md | 2 +- .../winserver2016-ps/dhcpserver/Add-DhcpServerv4Superscope.md | 2 +- docset/winserver2016-ps/dhcpserver/Add-DhcpServerv6Class.md | 2 +- .../dhcpserver/Add-DhcpServerv6ExclusionRange.md | 2 +- docset/winserver2016-ps/dhcpserver/Add-DhcpServerv6Lease.md | 2 +- .../dhcpserver/Add-DhcpServerv6OptionDefinition.md | 2 +- .../winserver2016-ps/dhcpserver/Add-DhcpServerv6Reservation.md | 2 +- docset/winserver2016-ps/dhcpserver/Add-DhcpServerv6Scope.md | 2 +- docset/winserver2016-ps/dhcpserver/Backup-DhcpServer.md | 2 +- docset/winserver2016-ps/dhcpserver/Export-DhcpServer.md | 2 +- docset/winserver2016-ps/dhcpserver/Get-DhcpServerAuditLog.md | 2 +- docset/winserver2016-ps/dhcpserver/Get-DhcpServerDatabase.md | 2 +- .../winserver2016-ps/dhcpserver/Get-DhcpServerDnsCredential.md | 2 +- docset/winserver2016-ps/dhcpserver/Get-DhcpServerInDC.md | 2 +- docset/winserver2016-ps/dhcpserver/Get-DhcpServerSetting.md | 2 +- docset/winserver2016-ps/dhcpserver/Get-DhcpServerVersion.md | 2 +- docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4Binding.md | 2 +- docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4Class.md | 2 +- .../winserver2016-ps/dhcpserver/Get-DhcpServerv4DnsSetting.md | 2 +- .../dhcpserver/Get-DhcpServerv4ExclusionRange.md | 2 +- docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4Failover.md | 2 +- docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4Filter.md | 2 +- .../winserver2016-ps/dhcpserver/Get-DhcpServerv4FilterList.md | 2 +- .../dhcpserver/Get-DhcpServerv4FreeIPAddress.md | 2 +- docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4Lease.md | 2 +- .../dhcpserver/Get-DhcpServerv4MulticastExclusionRange.md | 2 +- .../dhcpserver/Get-DhcpServerv4MulticastLease.md | 2 +- .../dhcpserver/Get-DhcpServerv4MulticastScope.md | 2 +- .../dhcpserver/Get-DhcpServerv4MulticastScopeStatistics.md | 2 +- .../dhcpserver/Get-DhcpServerv4OptionDefinition.md | 2 +- .../winserver2016-ps/dhcpserver/Get-DhcpServerv4OptionValue.md | 2 +- docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4Policy.md | 2 +- .../dhcpserver/Get-DhcpServerv4PolicyIPRange.md | 2 +- .../winserver2016-ps/dhcpserver/Get-DhcpServerv4Reservation.md | 2 +- docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4Scope.md | 2 +- .../dhcpserver/Get-DhcpServerv4ScopeStatistics.md | 2 +- .../winserver2016-ps/dhcpserver/Get-DhcpServerv4Statistics.md | 2 +- .../winserver2016-ps/dhcpserver/Get-DhcpServerv4Superscope.md | 2 +- .../dhcpserver/Get-DhcpServerv4SuperscopeStatistics.md | 2 +- docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6Binding.md | 2 +- docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6Class.md | 2 +- .../winserver2016-ps/dhcpserver/Get-DhcpServerv6DnsSetting.md | 2 +- .../dhcpserver/Get-DhcpServerv6ExclusionRange.md | 2 +- .../dhcpserver/Get-DhcpServerv6FreeIPAddress.md | 2 +- docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6Lease.md | 2 +- .../dhcpserver/Get-DhcpServerv6OptionDefinition.md | 2 +- .../winserver2016-ps/dhcpserver/Get-DhcpServerv6OptionValue.md | 2 +- .../winserver2016-ps/dhcpserver/Get-DhcpServerv6Reservation.md | 2 +- docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6Scope.md | 2 +- .../dhcpserver/Get-DhcpServerv6ScopeStatistics.md | 2 +- .../dhcpserver/Get-DhcpServerv6StatelessStatistics.md | 2 +- .../dhcpserver/Get-DhcpServerv6StatelessStore.md | 2 +- .../winserver2016-ps/dhcpserver/Get-DhcpServerv6Statistics.md | 2 +- docset/winserver2016-ps/dhcpserver/Import-DhcpServer.md | 2 +- .../dhcpserver/Invoke-DhcpServerv4FailoverReplication.md | 2 +- .../dhcpserver/Remove-DhcpServerDnsCredential.md | 2 +- docset/winserver2016-ps/dhcpserver/Remove-DhcpServerInDC.md | 2 +- docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4Class.md | 2 +- .../dhcpserver/Remove-DhcpServerv4ExclusionRange.md | 2 +- .../winserver2016-ps/dhcpserver/Remove-DhcpServerv4Failover.md | 2 +- .../dhcpserver/Remove-DhcpServerv4FailoverScope.md | 2 +- docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4Filter.md | 2 +- docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4Lease.md | 2 +- .../dhcpserver/Remove-DhcpServerv4MulticastExclusionRange.md | 2 +- .../dhcpserver/Remove-DhcpServerv4MulticastLease.md | 2 +- .../dhcpserver/Remove-DhcpServerv4MulticastScope.md | 2 +- .../dhcpserver/Remove-DhcpServerv4OptionDefinition.md | 2 +- .../dhcpserver/Remove-DhcpServerv4OptionValue.md | 2 +- docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4Policy.md | 2 +- .../dhcpserver/Remove-DhcpServerv4PolicyIPRange.md | 2 +- .../dhcpserver/Remove-DhcpServerv4Reservation.md | 2 +- docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4Scope.md | 2 +- .../dhcpserver/Remove-DhcpServerv4Superscope.md | 2 +- docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv6Class.md | 2 +- .../dhcpserver/Remove-DhcpServerv6ExclusionRange.md | 2 +- docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv6Lease.md | 2 +- .../dhcpserver/Remove-DhcpServerv6OptionDefinition.md | 2 +- .../dhcpserver/Remove-DhcpServerv6OptionValue.md | 2 +- .../dhcpserver/Remove-DhcpServerv6Reservation.md | 2 +- docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv6Scope.md | 2 +- .../dhcpserver/Rename-DhcpServerv4Superscope.md | 2 +- .../winserver2016-ps/dhcpserver/Repair-DhcpServerv4IPRecord.md | 2 +- docset/winserver2016-ps/dhcpserver/Restore-DhcpServer.md | 2 +- docset/winserver2016-ps/dhcpserver/Set-DhcpServerAuditLog.md | 2 +- docset/winserver2016-ps/dhcpserver/Set-DhcpServerDatabase.md | 2 +- .../winserver2016-ps/dhcpserver/Set-DhcpServerDnsCredential.md | 2 +- docset/winserver2016-ps/dhcpserver/Set-DhcpServerSetting.md | 2 +- docset/winserver2016-ps/dhcpserver/Set-DhcpServerv4Binding.md | 2 +- docset/winserver2016-ps/dhcpserver/Set-DhcpServerv4Class.md | 2 +- .../winserver2016-ps/dhcpserver/Set-DhcpServerv4DnsSetting.md | 2 +- docset/winserver2016-ps/dhcpserver/Set-DhcpServerv4Failover.md | 2 +- .../winserver2016-ps/dhcpserver/Set-DhcpServerv4FilterList.md | 2 +- .../dhcpserver/Set-DhcpServerv4MulticastScope.md | 2 +- .../dhcpserver/Set-DhcpServerv4OptionDefinition.md | 2 +- .../winserver2016-ps/dhcpserver/Set-DhcpServerv4OptionValue.md | 2 +- docset/winserver2016-ps/dhcpserver/Set-DhcpServerv4Policy.md | 2 +- .../winserver2016-ps/dhcpserver/Set-DhcpServerv4Reservation.md | 2 +- docset/winserver2016-ps/dhcpserver/Set-DhcpServerv4Scope.md | 2 +- docset/winserver2016-ps/dhcpserver/Set-DhcpServerv6Binding.md | 2 +- docset/winserver2016-ps/dhcpserver/Set-DhcpServerv6Class.md | 2 +- .../winserver2016-ps/dhcpserver/Set-DhcpServerv6DnsSetting.md | 2 +- .../dhcpserver/Set-DhcpServerv6OptionDefinition.md | 2 +- .../winserver2016-ps/dhcpserver/Set-DhcpServerv6OptionValue.md | 2 +- .../winserver2016-ps/dhcpserver/Set-DhcpServerv6Reservation.md | 2 +- docset/winserver2016-ps/dhcpserver/Set-DhcpServerv6Scope.md | 2 +- .../dhcpserver/Set-DhcpServerv6StatelessStore.md | 2 +- .../Disable-DAManualEntryPointSelection.md | 2 +- .../Enable-DAManualEntryPointSelection.md | 2 +- .../Get-DAClientExperienceConfiguration.md | 2 +- .../directaccessclientcomponents/Get-DAEntryPointTableItem.md | 2 +- .../directaccessclientcomponents/New-DAEntryPointTableItem.md | 2 +- .../Remove-DAEntryPointTableItem.md | 2 +- .../Rename-DAEntryPointTableItem.md | 2 +- .../Reset-DAClientExperienceConfiguration.md | 2 +- .../directaccessclientcomponents/Reset-DAEntryPointTableItem.md | 2 +- .../Set-DAClientExperienceConfiguration.md | 2 +- .../directaccessclientcomponents/Set-DAEntryPointTableItem.md | 2 +- docset/winserver2016-ps/dism/Add-AppxProvisionedPackage.md | 2 +- docset/winserver2016-ps/dism/Add-WindowsCapability.md | 2 +- docset/winserver2016-ps/dism/Add-WindowsDriver.md | 2 +- docset/winserver2016-ps/dism/Add-WindowsImage.md | 2 +- docset/winserver2016-ps/dism/Add-WindowsPackage.md | 2 +- docset/winserver2016-ps/dism/Clear-WindowsCorruptMountPoint.md | 2 +- docset/winserver2016-ps/dism/Disable-WindowsOptionalFeature.md | 2 +- docset/winserver2016-ps/dism/Dismount-WindowsImage.md | 2 +- docset/winserver2016-ps/dism/Enable-WindowsOptionalFeature.md | 2 +- docset/winserver2016-ps/dism/Expand-WindowsCustomDataImage.md | 2 +- docset/winserver2016-ps/dism/Expand-WindowsImage.md | 2 +- docset/winserver2016-ps/dism/Export-WindowsDriver.md | 2 +- docset/winserver2016-ps/dism/Export-WindowsImage.md | 2 +- docset/winserver2016-ps/dism/Get-AppxProvisionedPackage.md | 2 +- docset/winserver2016-ps/dism/Get-WIMBootEntry.md | 2 +- docset/winserver2016-ps/dism/Get-WindowsCapability.md | 2 +- docset/winserver2016-ps/dism/Get-WindowsDriver.md | 2 +- docset/winserver2016-ps/dism/Get-WindowsEdition.md | 2 +- docset/winserver2016-ps/dism/Get-WindowsImage.md | 2 +- docset/winserver2016-ps/dism/Get-WindowsImageContent.md | 2 +- docset/winserver2016-ps/dism/Get-WindowsOptionalFeature.md | 2 +- docset/winserver2016-ps/dism/Get-WindowsPackage.md | 2 +- docset/winserver2016-ps/dism/Get-WindowsReservedStorageState.md | 2 +- docset/winserver2016-ps/dism/Mount-WindowsImage.md | 2 +- docset/winserver2016-ps/dism/New-WindowsCustomImage.md | 2 +- docset/winserver2016-ps/dism/New-WindowsImage.md | 2 +- docset/winserver2016-ps/dism/Optimize-WindowsImage.md | 2 +- docset/winserver2016-ps/dism/Remove-AppxProvisionedPackage.md | 2 +- docset/winserver2016-ps/dism/Remove-WindowsCapability.md | 2 +- docset/winserver2016-ps/dism/Remove-WindowsDriver.md | 2 +- docset/winserver2016-ps/dism/Remove-WindowsImage.md | 2 +- docset/winserver2016-ps/dism/Remove-WindowsPackage.md | 2 +- docset/winserver2016-ps/dism/Repair-WindowsImage.md | 2 +- docset/winserver2016-ps/dism/Save-WindowsImage.md | 2 +- docset/winserver2016-ps/dism/Set-AppXProvisionedDataFile.md | 2 +- docset/winserver2016-ps/dism/Set-WindowsEdition.md | 2 +- docset/winserver2016-ps/dism/Set-WindowsProductKey.md | 2 +- docset/winserver2016-ps/dism/Set-WindowsReservedStorageState.md | 2 +- docset/winserver2016-ps/dism/Split-WindowsImage.md | 2 +- docset/winserver2016-ps/dism/Update-WIMBootEntry.md | 2 +- docset/winserver2016-ps/dism/Use-WindowsUnattend.md | 2 +- docset/winserver2016-ps/dnsclient/Add-DnsClientNrptRule.md | 2 +- docset/winserver2016-ps/dnsclient/Clear-DnsClientCache.md | 2 +- docset/winserver2016-ps/dnsclient/Get-DnsClient.md | 2 +- docset/winserver2016-ps/dnsclient/Get-DnsClientCache.md | 2 +- docset/winserver2016-ps/dnsclient/Get-DnsClientGlobalSetting.md | 2 +- docset/winserver2016-ps/dnsclient/Get-DnsClientNrptGlobal.md | 2 +- docset/winserver2016-ps/dnsclient/Get-DnsClientNrptPolicy.md | 2 +- docset/winserver2016-ps/dnsclient/Get-DnsClientNrptRule.md | 2 +- docset/winserver2016-ps/dnsclient/Get-DnsClientServerAddress.md | 2 +- docset/winserver2016-ps/dnsclient/Register-DnsClient.md | 2 +- docset/winserver2016-ps/dnsclient/Remove-DnsClientNrptRule.md | 2 +- docset/winserver2016-ps/dnsclient/Resolve-DnsName.md | 2 +- docset/winserver2016-ps/dnsclient/Set-DnsClient.md | 2 +- docset/winserver2016-ps/dnsclient/Set-DnsClientGlobalSetting.md | 2 +- docset/winserver2016-ps/dnsclient/Set-DnsClientNrptGlobal.md | 2 +- docset/winserver2016-ps/dnsclient/Set-DnsClientNrptRule.md | 2 +- docset/winserver2016-ps/dnsclient/Set-DnsClientServerAddress.md | 2 +- docset/winserver2016-ps/dnsserver/Add-DnsServerClientSubnet.md | 2 +- .../dnsserver/Add-DnsServerConditionalForwarderZone.md | 2 +- .../dnsserver/Add-DnsServerDirectoryPartition.md | 2 +- docset/winserver2016-ps/dnsserver/Add-DnsServerForwarder.md | 2 +- docset/winserver2016-ps/dnsserver/Add-DnsServerPrimaryZone.md | 2 +- .../dnsserver/Add-DnsServerQueryResolutionPolicy.md | 2 +- .../winserver2016-ps/dnsserver/Add-DnsServerRecursionScope.md | 2 +- .../winserver2016-ps/dnsserver/Add-DnsServerResourceRecord.md | 2 +- .../winserver2016-ps/dnsserver/Add-DnsServerResourceRecordA.md | 2 +- .../dnsserver/Add-DnsServerResourceRecordAAAA.md | 2 +- .../dnsserver/Add-DnsServerResourceRecordCName.md | 2 +- .../winserver2016-ps/dnsserver/Add-DnsServerResourceRecordDS.md | 2 +- .../dnsserver/Add-DnsServerResourceRecordDnsKey.md | 2 +- .../winserver2016-ps/dnsserver/Add-DnsServerResourceRecordMX.md | 2 +- .../dnsserver/Add-DnsServerResourceRecordPtr.md | 2 +- .../dnsserver/Add-DnsServerResponseRateLimitingExceptionlist.md | 2 +- docset/winserver2016-ps/dnsserver/Add-DnsServerRootHint.md | 2 +- docset/winserver2016-ps/dnsserver/Add-DnsServerSecondaryZone.md | 2 +- docset/winserver2016-ps/dnsserver/Add-DnsServerSigningKey.md | 2 +- docset/winserver2016-ps/dnsserver/Add-DnsServerStubZone.md | 2 +- docset/winserver2016-ps/dnsserver/Add-DnsServerTrustAnchor.md | 2 +- .../dnsserver/Add-DnsServerVirtualizationInstance.md | 2 +- .../winserver2016-ps/dnsserver/Add-DnsServerZoneDelegation.md | 2 +- docset/winserver2016-ps/dnsserver/Add-DnsServerZoneScope.md | 2 +- .../dnsserver/Add-DnsServerZoneTransferPolicy.md | 2 +- docset/winserver2016-ps/dnsserver/Clear-DnsServerCache.md | 2 +- docset/winserver2016-ps/dnsserver/Clear-DnsServerStatistics.md | 2 +- .../dnsserver/ConvertTo-DnsServerPrimaryZone.md | 2 +- .../dnsserver/ConvertTo-DnsServerSecondaryZone.md | 2 +- docset/winserver2016-ps/dnsserver/Disable-DnsServerPolicy.md | 2 +- .../dnsserver/Disable-DnsServerSigningKeyRollover.md | 2 +- docset/winserver2016-ps/dnsserver/Enable-DnsServerPolicy.md | 2 +- .../dnsserver/Enable-DnsServerSigningKeyRollover.md | 2 +- .../dnsserver/Export-DnsServerDnsSecPublicKey.md | 2 +- docset/winserver2016-ps/dnsserver/Export-DnsServerZone.md | 2 +- docset/winserver2016-ps/dnsserver/Get-DnsServer.md | 2 +- docset/winserver2016-ps/dnsserver/Get-DnsServerCache.md | 2 +- docset/winserver2016-ps/dnsserver/Get-DnsServerClientSubnet.md | 2 +- docset/winserver2016-ps/dnsserver/Get-DnsServerDiagnostics.md | 2 +- .../dnsserver/Get-DnsServerDirectoryPartition.md | 2 +- .../dnsserver/Get-DnsServerDnsSecZoneSetting.md | 2 +- docset/winserver2016-ps/dnsserver/Get-DnsServerDsSetting.md | 2 +- docset/winserver2016-ps/dnsserver/Get-DnsServerEDns.md | 2 +- docset/winserver2016-ps/dnsserver/Get-DnsServerForwarder.md | 2 +- .../winserver2016-ps/dnsserver/Get-DnsServerGlobalNameZone.md | 2 +- .../dnsserver/Get-DnsServerGlobalQueryBlockList.md | 2 +- .../dnsserver/Get-DnsServerQueryResolutionPolicy.md | 2 +- docset/winserver2016-ps/dnsserver/Get-DnsServerRecursion.md | 2 +- .../winserver2016-ps/dnsserver/Get-DnsServerRecursionScope.md | 2 +- .../winserver2016-ps/dnsserver/Get-DnsServerResourceRecord.md | 2 +- .../dnsserver/Get-DnsServerResponseRateLimiting.md | 2 +- .../dnsserver/Get-DnsServerResponseRateLimitingExceptionlist.md | 2 +- docset/winserver2016-ps/dnsserver/Get-DnsServerRootHint.md | 2 +- docset/winserver2016-ps/dnsserver/Get-DnsServerScavenging.md | 2 +- docset/winserver2016-ps/dnsserver/Get-DnsServerSetting.md | 2 +- docset/winserver2016-ps/dnsserver/Get-DnsServerSigningKey.md | 2 +- docset/winserver2016-ps/dnsserver/Get-DnsServerStatistics.md | 2 +- docset/winserver2016-ps/dnsserver/Get-DnsServerTrustAnchor.md | 2 +- docset/winserver2016-ps/dnsserver/Get-DnsServerTrustPoint.md | 2 +- .../dnsserver/Get-DnsServerVirtualizationInstance.md | 2 +- docset/winserver2016-ps/dnsserver/Get-DnsServerZone.md | 2 +- docset/winserver2016-ps/dnsserver/Get-DnsServerZoneAging.md | 2 +- .../winserver2016-ps/dnsserver/Get-DnsServerZoneDelegation.md | 2 +- docset/winserver2016-ps/dnsserver/Get-DnsServerZoneScope.md | 2 +- .../dnsserver/Get-DnsServerZoneTransferPolicy.md | 2 +- .../dnsserver/Import-DnsServerResourceRecordDS.md | 2 +- docset/winserver2016-ps/dnsserver/Import-DnsServerRootHint.md | 2 +- .../winserver2016-ps/dnsserver/Import-DnsServerTrustAnchor.md | 2 +- .../dnsserver/Invoke-DnsServerSigningKeyRollover.md | 2 +- docset/winserver2016-ps/dnsserver/Invoke-DnsServerZoneSign.md | 2 +- docset/winserver2016-ps/dnsserver/Invoke-DnsServerZoneUnsign.md | 2 +- .../dnsserver/Register-DnsServerDirectoryPartition.md | 2 +- .../winserver2016-ps/dnsserver/Remove-DnsServerClientSubnet.md | 2 +- .../dnsserver/Remove-DnsServerDirectoryPartition.md | 2 +- docset/winserver2016-ps/dnsserver/Remove-DnsServerForwarder.md | 2 +- .../dnsserver/Remove-DnsServerQueryResolutionPolicy.md | 2 +- .../dnsserver/Remove-DnsServerRecursionScope.md | 2 +- .../dnsserver/Remove-DnsServerResourceRecord.md | 2 +- .../Remove-DnsServerResponseRateLimitingExceptionlist.md | 2 +- docset/winserver2016-ps/dnsserver/Remove-DnsServerRootHint.md | 2 +- docset/winserver2016-ps/dnsserver/Remove-DnsServerSigningKey.md | 2 +- .../winserver2016-ps/dnsserver/Remove-DnsServerTrustAnchor.md | 2 +- .../dnsserver/Remove-DnsServerVirtualizationInstance.md | 2 +- docset/winserver2016-ps/dnsserver/Remove-DnsServerZone.md | 2 +- .../dnsserver/Remove-DnsServerZoneDelegation.md | 2 +- docset/winserver2016-ps/dnsserver/Remove-DnsServerZoneScope.md | 2 +- .../dnsserver/Remove-DnsServerZoneTransferPolicy.md | 2 +- .../dnsserver/Reset-DnsServerZoneKeyMasterRole.md | 2 +- .../winserver2016-ps/dnsserver/Restore-DnsServerPrimaryZone.md | 2 +- .../dnsserver/Restore-DnsServerSecondaryZone.md | 2 +- docset/winserver2016-ps/dnsserver/Resume-DnsServerZone.md | 2 +- docset/winserver2016-ps/dnsserver/Set-DnsServer.md | 2 +- docset/winserver2016-ps/dnsserver/Set-DnsServerCache.md | 2 +- docset/winserver2016-ps/dnsserver/Set-DnsServerClientSubnet.md | 2 +- .../dnsserver/Set-DnsServerConditionalForwarderZone.md | 2 +- docset/winserver2016-ps/dnsserver/Set-DnsServerDiagnostics.md | 2 +- .../dnsserver/Set-DnsServerDnsSecZoneSetting.md | 2 +- docset/winserver2016-ps/dnsserver/Set-DnsServerDsSetting.md | 2 +- docset/winserver2016-ps/dnsserver/Set-DnsServerEDns.md | 2 +- docset/winserver2016-ps/dnsserver/Set-DnsServerForwarder.md | 2 +- .../winserver2016-ps/dnsserver/Set-DnsServerGlobalNameZone.md | 2 +- .../dnsserver/Set-DnsServerGlobalQueryBlockList.md | 2 +- docset/winserver2016-ps/dnsserver/Set-DnsServerPrimaryZone.md | 2 +- .../dnsserver/Set-DnsServerQueryResolutionPolicy.md | 2 +- docset/winserver2016-ps/dnsserver/Set-DnsServerRecursion.md | 2 +- .../winserver2016-ps/dnsserver/Set-DnsServerRecursionScope.md | 2 +- .../winserver2016-ps/dnsserver/Set-DnsServerResourceRecord.md | 2 +- .../dnsserver/Set-DnsServerResourceRecordAging.md | 2 +- .../dnsserver/Set-DnsServerResponseRateLimiting.md | 2 +- .../dnsserver/Set-DnsServerResponseRateLimitingExceptionlist.md | 2 +- docset/winserver2016-ps/dnsserver/Set-DnsServerRootHint.md | 2 +- docset/winserver2016-ps/dnsserver/Set-DnsServerScavenging.md | 2 +- docset/winserver2016-ps/dnsserver/Set-DnsServerSecondaryZone.md | 2 +- docset/winserver2016-ps/dnsserver/Set-DnsServerSetting.md | 2 +- docset/winserver2016-ps/dnsserver/Set-DnsServerSigningKey.md | 2 +- docset/winserver2016-ps/dnsserver/Set-DnsServerStubZone.md | 2 +- .../dnsserver/Set-DnsServerVirtualizationInstance.md | 2 +- docset/winserver2016-ps/dnsserver/Set-DnsServerZoneAging.md | 2 +- .../winserver2016-ps/dnsserver/Set-DnsServerZoneDelegation.md | 2 +- .../dnsserver/Set-DnsServerZoneTransferPolicy.md | 2 +- docset/winserver2016-ps/dnsserver/Show-DnsServerCache.md | 2 +- .../dnsserver/Show-DnsServerKeyStorageProvider.md | 2 +- docset/winserver2016-ps/dnsserver/Start-DnsServerScavenging.md | 2 +- .../winserver2016-ps/dnsserver/Start-DnsServerZoneTransfer.md | 2 +- .../dnsserver/Step-DnsServerSigningKeyRollover.md | 2 +- docset/winserver2016-ps/dnsserver/Suspend-DnsServerZone.md | 2 +- docset/winserver2016-ps/dnsserver/Sync-DnsServerZone.md | 2 +- docset/winserver2016-ps/dnsserver/Test-DnsServer.md | 2 +- .../dnsserver/Test-DnsServerDnsSecZoneSetting.md | 2 +- .../dnsserver/Unregister-DnsServerDirectoryPartition.md | 2 +- docset/winserver2016-ps/dnsserver/Update-DnsServerTrustPoint.md | 2 +- .../eventtracingmanagement/Add-EtwTraceProvider.md | 2 +- .../eventtracingmanagement/Get-AutologgerConfig.md | 2 +- .../eventtracingmanagement/Get-EtwTraceProvider.md | 2 +- .../eventtracingmanagement/Get-EtwTraceSession.md | 2 +- .../eventtracingmanagement/New-AutologgerConfig.md | 2 +- .../eventtracingmanagement/New-EtwTraceSession.md | 2 +- .../eventtracingmanagement/Remove-AutologgerConfig.md | 2 +- .../eventtracingmanagement/Remove-EtwTraceProvider.md | 2 +- .../eventtracingmanagement/Save-EtwTraceSession.md | 2 +- .../eventtracingmanagement/Send-EtwTraceSession.md | 2 +- .../eventtracingmanagement/Set-AutologgerConfig.md | 2 +- .../eventtracingmanagement/Set-EtwTraceProvider.md | 2 +- .../eventtracingmanagement/Start-EtwTraceSession.md | 2 +- .../eventtracingmanagement/Stop-EtwTraceSession.md | 2 +- .../eventtracingmanagement/Update-EtwTraceSession.md | 2 +- .../winserver2016-ps/failoverclusters/Add-ClusterCheckpoint.md | 2 +- docset/winserver2016-ps/failoverclusters/Add-ClusterDisk.md | 2 +- .../failoverclusters/Add-ClusterFileServerRole.md | 2 +- .../failoverclusters/Add-ClusterGenericApplicationRole.md | 2 +- .../failoverclusters/Add-ClusterGenericScriptRole.md | 2 +- .../failoverclusters/Add-ClusterGenericServiceRole.md | 2 +- docset/winserver2016-ps/failoverclusters/Add-ClusterGroup.md | 2 +- .../failoverclusters/Add-ClusterGroupSetDependency.md | 2 +- .../winserver2016-ps/failoverclusters/Add-ClusterGroupToSet.md | 2 +- docset/winserver2016-ps/failoverclusters/Add-ClusterNode.md | 2 +- docset/winserver2016-ps/failoverclusters/Add-ClusterResource.md | 2 +- .../failoverclusters/Add-ClusterResourceDependency.md | 2 +- .../failoverclusters/Add-ClusterResourceType.md | 2 +- .../failoverclusters/Add-ClusterScaleOutFileServerRole.md | 2 +- .../failoverclusters/Add-ClusterSharedVolume.md | 2 +- .../failoverclusters/Add-ClusterVMMonitoredItem.md | 2 +- .../failoverclusters/Add-ClusterVirtualMachineRole.md | 2 +- .../failoverclusters/Add-ClusteriSCSITargetServerRole.md | 2 +- docset/winserver2016-ps/failoverclusters/Block-ClusterAccess.md | 2 +- .../failoverclusters/Clear-ClusterDiskReservation.md | 2 +- docset/winserver2016-ps/failoverclusters/Clear-ClusterNode.md | 2 +- .../failoverclusters/Disable-ClusterStorageSpacesDirect.md | 2 +- .../failoverclusters/Enable-ClusterStorageSpacesDirect.md | 2 +- docset/winserver2016-ps/failoverclusters/Get-Cluster.md | 2 +- docset/winserver2016-ps/failoverclusters/Get-ClusterAccess.md | 2 +- .../failoverclusters/Get-ClusterAvailableDisk.md | 2 +- .../winserver2016-ps/failoverclusters/Get-ClusterCheckpoint.md | 2 +- .../failoverclusters/Get-ClusterDiagnosticInfo.md | 2 +- .../winserver2016-ps/failoverclusters/Get-ClusterFaultDomain.md | 2 +- .../failoverclusters/Get-ClusterFaultDomainXML.md | 2 +- docset/winserver2016-ps/failoverclusters/Get-ClusterGroup.md | 2 +- docset/winserver2016-ps/failoverclusters/Get-ClusterGroupSet.md | 2 +- .../failoverclusters/Get-ClusterGroupSetDependency.md | 2 +- docset/winserver2016-ps/failoverclusters/Get-ClusterLog.md | 2 +- docset/winserver2016-ps/failoverclusters/Get-ClusterNetwork.md | 2 +- .../failoverclusters/Get-ClusterNetworkInterface.md | 2 +- docset/winserver2016-ps/failoverclusters/Get-ClusterNode.md | 2 +- .../winserver2016-ps/failoverclusters/Get-ClusterOwnerNode.md | 2 +- .../winserver2016-ps/failoverclusters/Get-ClusterParameter.md | 2 +- docset/winserver2016-ps/failoverclusters/Get-ClusterQuorum.md | 2 +- docset/winserver2016-ps/failoverclusters/Get-ClusterResource.md | 2 +- .../failoverclusters/Get-ClusterResourceDependency.md | 2 +- .../failoverclusters/Get-ClusterResourceDependencyReport.md | 2 +- .../failoverclusters/Get-ClusterResourceType.md | 2 +- .../failoverclusters/Get-ClusterSharedVolume.md | 2 +- .../failoverclusters/Get-ClusterSharedVolumeState.md | 2 +- .../failoverclusters/Get-ClusterStorageSpacesDirect.md | 2 +- .../failoverclusters/Get-ClusterVMMonitoredItem.md | 2 +- docset/winserver2016-ps/failoverclusters/Grant-ClusterAccess.md | 2 +- docset/winserver2016-ps/failoverclusters/Move-ClusterGroup.md | 2 +- .../winserver2016-ps/failoverclusters/Move-ClusterResource.md | 2 +- .../failoverclusters/Move-ClusterSharedVolume.md | 2 +- .../failoverclusters/Move-ClusterVirtualMachineRole.md | 2 +- docset/winserver2016-ps/failoverclusters/New-Cluster.md | 2 +- .../winserver2016-ps/failoverclusters/New-ClusterFaultDomain.md | 2 +- docset/winserver2016-ps/failoverclusters/New-ClusterGroupSet.md | 2 +- .../winserver2016-ps/failoverclusters/New-ClusterNameAccount.md | 2 +- docset/winserver2016-ps/failoverclusters/Remove-Cluster.md | 2 +- .../winserver2016-ps/failoverclusters/Remove-ClusterAccess.md | 2 +- .../failoverclusters/Remove-ClusterCheckpoint.md | 2 +- .../failoverclusters/Remove-ClusterFaultDomain.md | 2 +- docset/winserver2016-ps/failoverclusters/Remove-ClusterGroup.md | 2 +- .../failoverclusters/Remove-ClusterGroupFromSet.md | 2 +- .../winserver2016-ps/failoverclusters/Remove-ClusterGroupSet.md | 2 +- .../failoverclusters/Remove-ClusterGroupSetDependency.md | 2 +- docset/winserver2016-ps/failoverclusters/Remove-ClusterNode.md | 2 +- .../winserver2016-ps/failoverclusters/Remove-ClusterResource.md | 2 +- .../failoverclusters/Remove-ClusterResourceDependency.md | 2 +- .../failoverclusters/Remove-ClusterResourceType.md | 2 +- .../failoverclusters/Remove-ClusterSharedVolume.md | 2 +- .../failoverclusters/Remove-ClusterVMMonitoredItem.md | 2 +- .../failoverclusters/Repair-ClusterStorageSpacesDirect.md | 2 +- .../failoverclusters/Reset-ClusterVMMonitoredState.md | 2 +- docset/winserver2016-ps/failoverclusters/Resume-ClusterNode.md | 2 +- .../winserver2016-ps/failoverclusters/Resume-ClusterResource.md | 2 +- .../winserver2016-ps/failoverclusters/Set-ClusterFaultDomain.md | 2 +- .../failoverclusters/Set-ClusterFaultDomainXML.md | 2 +- docset/winserver2016-ps/failoverclusters/Set-ClusterGroupSet.md | 2 +- docset/winserver2016-ps/failoverclusters/Set-ClusterLog.md | 2 +- .../winserver2016-ps/failoverclusters/Set-ClusterOwnerNode.md | 2 +- .../winserver2016-ps/failoverclusters/Set-ClusterParameter.md | 2 +- docset/winserver2016-ps/failoverclusters/Set-ClusterQuorum.md | 2 +- .../failoverclusters/Set-ClusterResourceDependency.md | 2 +- .../failoverclusters/Set-ClusterStorageSpacesDirect.md | 2 +- .../failoverclusters/Set-ClusterStorageSpacesDirectDisk.md | 2 +- docset/winserver2016-ps/failoverclusters/Start-Cluster.md | 2 +- docset/winserver2016-ps/failoverclusters/Start-ClusterGroup.md | 2 +- docset/winserver2016-ps/failoverclusters/Start-ClusterNode.md | 2 +- .../winserver2016-ps/failoverclusters/Start-ClusterResource.md | 2 +- docset/winserver2016-ps/failoverclusters/Stop-Cluster.md | 2 +- docset/winserver2016-ps/failoverclusters/Stop-ClusterGroup.md | 2 +- docset/winserver2016-ps/failoverclusters/Stop-ClusterNode.md | 2 +- .../winserver2016-ps/failoverclusters/Stop-ClusterResource.md | 2 +- docset/winserver2016-ps/failoverclusters/Suspend-ClusterNode.md | 2 +- .../failoverclusters/Suspend-ClusterResource.md | 2 +- docset/winserver2016-ps/failoverclusters/Test-Cluster.md | 2 +- .../failoverclusters/Test-ClusterResourceFailure.md | 2 +- .../failoverclusters/Update-ClusterFunctionalLevel.md | 2 +- .../failoverclusters/Update-ClusterIPResource.md | 2 +- .../failoverclusters/Update-ClusterNetworkNameResource.md | 2 +- .../Update-ClusterVirtualMachineConfiguration.md | 2 +- .../fileserverresourcemanager/Get-FsrmAdrSetting.md | 2 +- .../fileserverresourcemanager/Get-FsrmAutoQuota.md | 2 +- .../fileserverresourcemanager/Get-FsrmClassification.md | 2 +- .../Get-FsrmClassificationPropertyDefinition.md | 2 +- .../fileserverresourcemanager/Get-FsrmClassificationRule.md | 2 +- .../fileserverresourcemanager/Get-FsrmEffectiveNamespace.md | 2 +- .../fileserverresourcemanager/Get-FsrmFileGroup.md | 2 +- .../fileserverresourcemanager/Get-FsrmFileManagementJob.md | 2 +- .../fileserverresourcemanager/Get-FsrmFileScreen.md | 2 +- .../fileserverresourcemanager/Get-FsrmFileScreenException.md | 2 +- .../fileserverresourcemanager/Get-FsrmFileScreenTemplate.md | 2 +- .../winserver2016-ps/fileserverresourcemanager/Get-FsrmMacro.md | 2 +- .../fileserverresourcemanager/Get-FsrmMgmtProperty.md | 2 +- .../winserver2016-ps/fileserverresourcemanager/Get-FsrmQuota.md | 2 +- .../fileserverresourcemanager/Get-FsrmQuotaTemplate.md | 2 +- .../fileserverresourcemanager/Get-FsrmRmsTemplate.md | 2 +- .../fileserverresourcemanager/Get-FsrmSetting.md | 2 +- .../fileserverresourcemanager/Get-FsrmStorageReport.md | 2 +- .../fileserverresourcemanager/New-FsrmAction.md | 2 +- .../fileserverresourcemanager/New-FsrmAutoQuota.md | 2 +- .../New-FsrmClassificationPropertyDefinition.md | 2 +- .../New-FsrmClassificationPropertyValue.md | 2 +- .../fileserverresourcemanager/New-FsrmClassificationRule.md | 2 +- .../fileserverresourcemanager/New-FsrmFMJNotification.md | 2 +- .../fileserverresourcemanager/New-FsrmFileGroup.md | 2 +- .../fileserverresourcemanager/New-FsrmFileManagementJob.md | 2 +- .../fileserverresourcemanager/New-FsrmFileScreen.md | 2 +- .../fileserverresourcemanager/New-FsrmFileScreenException.md | 2 +- .../fileserverresourcemanager/New-FsrmFileScreenTemplate.md | 2 +- .../fileserverresourcemanager/New-FsrmFmjAction.md | 2 +- .../fileserverresourcemanager/New-FsrmFmjCondition.md | 2 +- .../fileserverresourcemanager/New-FsrmFmjNotificationAction.md | 2 +- .../winserver2016-ps/fileserverresourcemanager/New-FsrmQuota.md | 2 +- .../fileserverresourcemanager/New-FsrmQuotaTemplate.md | 2 +- .../fileserverresourcemanager/New-FsrmQuotaThreshold.md | 2 +- .../fileserverresourcemanager/New-FsrmScheduledTask.md | 2 +- .../fileserverresourcemanager/New-FsrmStorageReport.md | 2 +- .../fileserverresourcemanager/Remove-FsrmAutoQuota.md | 2 +- .../Remove-FsrmClassificationPropertyDefinition.md | 2 +- .../fileserverresourcemanager/Remove-FsrmClassificationRule.md | 2 +- .../fileserverresourcemanager/Remove-FsrmFileGroup.md | 2 +- .../fileserverresourcemanager/Remove-FsrmFileManagementJob.md | 2 +- .../fileserverresourcemanager/Remove-FsrmFileScreen.md | 2 +- .../fileserverresourcemanager/Remove-FsrmFileScreenException.md | 2 +- .../fileserverresourcemanager/Remove-FsrmFileScreenTemplate.md | 2 +- .../fileserverresourcemanager/Remove-FsrmMgmtProperty.md | 2 +- .../fileserverresourcemanager/Remove-FsrmQuota.md | 2 +- .../fileserverresourcemanager/Remove-FsrmQuotaTemplate.md | 2 +- .../fileserverresourcemanager/Remove-FsrmStorageReport.md | 2 +- .../fileserverresourcemanager/Reset-FsrmFileScreen.md | 2 +- .../fileserverresourcemanager/Reset-FsrmQuota.md | 2 +- .../fileserverresourcemanager/Send-FsrmTestEmail.md | 2 +- .../fileserverresourcemanager/Set-FsrmAdrSetting.md | 2 +- .../fileserverresourcemanager/Set-FsrmAutoQuota.md | 2 +- .../fileserverresourcemanager/Set-FsrmClassification.md | 2 +- .../Set-FsrmClassificationPropertyDefinition.md | 2 +- .../fileserverresourcemanager/Set-FsrmClassificationRule.md | 2 +- .../fileserverresourcemanager/Set-FsrmFileGroup.md | 2 +- .../fileserverresourcemanager/Set-FsrmFileManagementJob.md | 2 +- .../fileserverresourcemanager/Set-FsrmFileScreen.md | 2 +- .../fileserverresourcemanager/Set-FsrmFileScreenException.md | 2 +- .../fileserverresourcemanager/Set-FsrmFileScreenTemplate.md | 2 +- .../fileserverresourcemanager/Set-FsrmMgmtProperty.md | 2 +- .../winserver2016-ps/fileserverresourcemanager/Set-FsrmQuota.md | 2 +- .../fileserverresourcemanager/Set-FsrmQuotaTemplate.md | 2 +- .../fileserverresourcemanager/Set-FsrmSetting.md | 2 +- .../fileserverresourcemanager/Set-FsrmStorageReport.md | 2 +- .../fileserverresourcemanager/Start-FsrmClassification.md | 2 +- .../fileserverresourcemanager/Start-FsrmFileManagementJob.md | 2 +- .../fileserverresourcemanager/Start-FsrmStorageReport.md | 2 +- .../fileserverresourcemanager/Stop-FsrmClassification.md | 2 +- .../fileserverresourcemanager/Stop-FsrmFileManagementJob.md | 2 +- .../fileserverresourcemanager/Stop-FsrmStorageReport.md | 2 +- .../fileserverresourcemanager/Update-FsrmAutoQuota.md | 2 +- .../Update-FsrmClassificationPropertyDefinition.md | 2 +- .../fileserverresourcemanager/Update-FsrmQuota.md | 2 +- .../fileserverresourcemanager/Wait-FsrmClassification.md | 2 +- .../fileserverresourcemanager/Wait-FsrmFileManagementJob.md | 2 +- .../fileserverresourcemanager/Wait-FsrmStorageReport.md | 2 +- docset/winserver2016-ps/grouppolicy/Backup-GPO.md | 2 +- docset/winserver2016-ps/grouppolicy/Copy-GPO.md | 2 +- docset/winserver2016-ps/grouppolicy/Get-GPInheritance.md | 2 +- docset/winserver2016-ps/grouppolicy/Get-GPO.md | 2 +- docset/winserver2016-ps/grouppolicy/Get-GPOReport.md | 2 +- docset/winserver2016-ps/grouppolicy/Get-GPPermission.md | 2 +- docset/winserver2016-ps/grouppolicy/Get-GPPrefRegistryValue.md | 2 +- docset/winserver2016-ps/grouppolicy/Get-GPRegistryValue.md | 2 +- .../winserver2016-ps/grouppolicy/Get-GPResultantSetOfPolicy.md | 2 +- docset/winserver2016-ps/grouppolicy/Get-GPStarterGPO.md | 2 +- docset/winserver2016-ps/grouppolicy/Import-GPO.md | 2 +- docset/winserver2016-ps/grouppolicy/Invoke-GPUpdate.md | 2 +- docset/winserver2016-ps/grouppolicy/New-GPLink.md | 2 +- docset/winserver2016-ps/grouppolicy/New-GPO.md | 2 +- docset/winserver2016-ps/grouppolicy/New-GPStarterGPO.md | 2 +- docset/winserver2016-ps/grouppolicy/Remove-GPLink.md | 2 +- docset/winserver2016-ps/grouppolicy/Remove-GPO.md | 2 +- .../winserver2016-ps/grouppolicy/Remove-GPPrefRegistryValue.md | 2 +- docset/winserver2016-ps/grouppolicy/Remove-GPRegistryValue.md | 2 +- docset/winserver2016-ps/grouppolicy/Rename-GPO.md | 2 +- docset/winserver2016-ps/grouppolicy/Restore-GPO.md | 2 +- docset/winserver2016-ps/grouppolicy/Set-GPInheritance.md | 2 +- docset/winserver2016-ps/grouppolicy/Set-GPLink.md | 2 +- docset/winserver2016-ps/grouppolicy/Set-GPPermission.md | 2 +- docset/winserver2016-ps/grouppolicy/Set-GPPrefRegistryValue.md | 2 +- docset/winserver2016-ps/grouppolicy/Set-GPRegistryValue.md | 2 +- .../hardwarecertification/Export-HwCertTestCollectionToXml.md | 2 +- .../hardwarecertification/Import-HwCertTestCollectionFromXml.md | 2 +- .../Merge-HwCertTestCollectionFromPackage.md | 2 +- .../hardwarecertification/Merge-HwCertTestCollectionFromXml.md | 2 +- .../hardwarecertification/New-HwCertProjectDefinitionFile.md | 2 +- .../hardwarecertification/New-HwCertTestCollection.md | 2 +- .../New-HwCertTestCollectionExcelReport.md | 2 +- .../hgsattestation/Add-HgsAttestationCIPolicy.md | 2 +- .../hgsattestation/Add-HgsAttestationDumpPolicy.md | 2 +- .../hgsattestation/Add-HgsAttestationHostGroup.md | 2 +- .../hgsattestation/Add-HgsAttestationTpmHost.md | 2 +- .../hgsattestation/Add-HgsAttestationTpmPolicy.md | 2 +- .../hgsattestation/Disable-HgsAttestationPolicy.md | 2 +- .../hgsattestation/Enable-HgsAttestationPolicy.md | 2 +- .../hgsattestation/Get-HgsAttestationHostGroup.md | 2 +- .../winserver2016-ps/hgsattestation/Get-HgsAttestationPolicy.md | 2 +- .../hgsattestation/Get-HgsAttestationSignerCertificate.md | 2 +- .../hgsattestation/Get-HgsAttestationTpmHost.md | 2 +- .../hgsattestation/Remove-HgsAttestationHostGroup.md | 2 +- .../hgsattestation/Remove-HgsAttestationPolicy.md | 2 +- .../hgsattestation/Remove-HgsAttestationTpmHost.md | 2 +- docset/winserver2016-ps/hgsclient/ConvertTo-HgsKeyProtector.md | 2 +- docset/winserver2016-ps/hgsclient/Export-HgsGuardian.md | 2 +- .../hgsclient/Get-HgsAttestationBaselinePolicy.md | 2 +- docset/winserver2016-ps/hgsclient/Get-HgsClientConfiguration.md | 2 +- docset/winserver2016-ps/hgsclient/Get-HgsGuardian.md | 2 +- .../winserver2016-ps/hgsclient/Grant-HgsKeyProtectorAccess.md | 2 +- docset/winserver2016-ps/hgsclient/Import-HgsGuardian.md | 2 +- docset/winserver2016-ps/hgsclient/New-HgsGuardian.md | 2 +- docset/winserver2016-ps/hgsclient/New-HgsKeyProtector.md | 2 +- docset/winserver2016-ps/hgsclient/Remove-HgsGuardian.md | 2 +- .../winserver2016-ps/hgsclient/Revoke-HgsKeyProtectorAccess.md | 2 +- docset/winserver2016-ps/hgsclient/Set-HgsClientConfiguration.md | 2 +- .../winserver2016-ps/hgsclient/Test-HgsClientConfiguration.md | 2 +- docset/winserver2016-ps/hgsdiagnostics/Get-HgsTrace.md | 2 +- docset/winserver2016-ps/hgsdiagnostics/Get-HgsTraceFileData.md | 2 +- docset/winserver2016-ps/hgsdiagnostics/New-HgsTraceTarget.md | 2 +- docset/winserver2016-ps/hgsdiagnostics/Test-HgsTraceTarget.md | 2 +- .../Add-HgsKeyProtectionAttestationSignerCertificate.md | 2 +- .../hgskeyprotection/Add-HgsKeyProtectionCertificate.md | 2 +- .../hgskeyprotection/Export-HgsKeyProtectionState.md | 2 +- .../Get-HgsKeyProtectionAttestationSignerCertificate.md | 2 +- .../hgskeyprotection/Get-HgsKeyProtectionCertificate.md | 2 +- .../hgskeyprotection/Get-HgsKeyProtectionConfiguration.md | 2 +- .../hgskeyprotection/Import-HgsKeyProtectionState.md | 2 +- .../Remove-HgsKeyProtectionAttestationSignerCertificate.md | 2 +- .../hgskeyprotection/Remove-HgsKeyProtectionCertificate.md | 2 +- .../Set-HgsKeyProtectionAttestationSignerCertificatePolicy.md | 2 +- .../hgskeyprotection/Set-HgsKeyProtectionCertificate.md | 2 +- .../hgskeyprotection/Set-HgsKeyProtectionConfiguration.md | 2 +- docset/winserver2016-ps/hgsserver/Clear-HgsServer.md | 2 +- docset/winserver2016-ps/hgsserver/Export-HgsServerState.md | 2 +- docset/winserver2016-ps/hgsserver/Get-HgsServer.md | 2 +- docset/winserver2016-ps/hgsserver/Import-HgsServerState.md | 2 +- docset/winserver2016-ps/hgsserver/Initialize-HgsServer.md | 2 +- docset/winserver2016-ps/hgsserver/Install-HgsServer.md | 2 +- docset/winserver2016-ps/hgsserver/Set-HgsServer.md | 2 +- docset/winserver2016-ps/hgsserver/Test-HgsServer.md | 2 +- docset/winserver2016-ps/hgsserver/Uninstall-HgsServer.md | 2 +- docset/winserver2016-ps/hnvdiagnostics/Debug-SlbDatapath.md | 2 +- .../hnvdiagnostics/Debug-VirtualMachineQueueOperation.md | 2 +- .../winserver2016-ps/hnvdiagnostics/Disable-MuxEchoResponder.md | 2 +- .../winserver2016-ps/hnvdiagnostics/Enable-MuxEchoResponder.md | 2 +- docset/winserver2016-ps/hnvdiagnostics/Get-CustomerRoute.md | 2 +- .../hnvdiagnostics/Get-NetworkControllerVipResource.md | 2 +- docset/winserver2016-ps/hnvdiagnostics/Get-PACAMapping.md | 2 +- docset/winserver2016-ps/hnvdiagnostics/Get-ProviderAddress.md | 2 +- .../hnvdiagnostics/Get-VMNetworkAdapterPortId.md | 2 +- .../hnvdiagnostics/Get-VMSwitchExternalPortId.md | 2 +- docset/winserver2016-ps/hnvdiagnostics/Get-VipHostMapping.md | 2 +- .../winserver2016-ps/hnvdiagnostics/Test-DipHostReachability.md | 2 +- .../hnvdiagnostics/Test-EncapOverheadSettings.md | 2 +- .../hnvdiagnostics/Test-LogicalNetworkConnection.md | 2 +- .../hnvdiagnostics/Test-LogicalNetworkSupportsJumboPacket.md | 2 +- docset/winserver2016-ps/hnvdiagnostics/Test-VipReachability.md | 2 +- .../hnvdiagnostics/Test-VirtualNetworkConnection.md | 2 +- .../winserver2016-ps/hostcomputeservice/Get-ComputeProcess.md | 2 +- .../winserver2016-ps/hostcomputeservice/Stop-ComputeProcess.md | 2 +- docset/winserver2016-ps/hyper-v/Add-VMDvdDrive.md | 2 +- docset/winserver2016-ps/hyper-v/Add-VMFibreChannelHba.md | 2 +- docset/winserver2016-ps/hyper-v/Add-VMGroupMember.md | 2 +- docset/winserver2016-ps/hyper-v/Add-VMHardDiskDrive.md | 2 +- docset/winserver2016-ps/hyper-v/Add-VMMigrationNetwork.md | 2 +- docset/winserver2016-ps/hyper-v/Add-VMNetworkAdapter.md | 2 +- docset/winserver2016-ps/hyper-v/Add-VMNetworkAdapterAcl.md | 2 +- .../winserver2016-ps/hyper-v/Add-VMNetworkAdapterExtendedAcl.md | 2 +- docset/winserver2016-ps/hyper-v/Add-VMRemoteFx3dVideoAdapter.md | 2 +- docset/winserver2016-ps/hyper-v/Add-VMScsiController.md | 2 +- docset/winserver2016-ps/hyper-v/Add-VMStoragePath.md | 2 +- docset/winserver2016-ps/hyper-v/Add-VMSwitch.md | 2 +- .../hyper-v/Add-VMSwitchExtensionPortFeature.md | 2 +- .../hyper-v/Add-VMSwitchExtensionSwitchFeature.md | 2 +- docset/winserver2016-ps/hyper-v/Add-VMSwitchTeamMember.md | 2 +- .../hyper-v/Add-VmNetworkAdapterRoutingDomainMapping.md | 2 +- docset/winserver2016-ps/hyper-v/Checkpoint-VM.md | 2 +- docset/winserver2016-ps/hyper-v/Compare-VM.md | 2 +- docset/winserver2016-ps/hyper-v/Complete-VMFailover.md | 2 +- docset/winserver2016-ps/hyper-v/Connect-VMNetworkAdapter.md | 2 +- docset/winserver2016-ps/hyper-v/Connect-VMSan.md | 2 +- docset/winserver2016-ps/hyper-v/Convert-VHD.md | 2 +- docset/winserver2016-ps/hyper-v/Copy-VMFile.md | 2 +- docset/winserver2016-ps/hyper-v/Debug-VM.md | 2 +- docset/winserver2016-ps/hyper-v/Disable-VMConsoleSupport.md | 2 +- docset/winserver2016-ps/hyper-v/Disable-VMEventing.md | 2 +- docset/winserver2016-ps/hyper-v/Disable-VMIntegrationService.md | 2 +- docset/winserver2016-ps/hyper-v/Disable-VMMigration.md | 2 +- .../hyper-v/Disable-VMRemoteFXPhysicalVideoAdapter.md | 2 +- docset/winserver2016-ps/hyper-v/Disable-VMResourceMetering.md | 2 +- docset/winserver2016-ps/hyper-v/Disable-VMSwitchExtension.md | 2 +- docset/winserver2016-ps/hyper-v/Disable-VMTPM.md | 2 +- docset/winserver2016-ps/hyper-v/Disconnect-VMNetworkAdapter.md | 2 +- docset/winserver2016-ps/hyper-v/Disconnect-VMSan.md | 2 +- docset/winserver2016-ps/hyper-v/Dismount-VHD.md | 2 +- docset/winserver2016-ps/hyper-v/Enable-VMConsoleSupport.md | 2 +- docset/winserver2016-ps/hyper-v/Enable-VMEventing.md | 2 +- docset/winserver2016-ps/hyper-v/Enable-VMIntegrationService.md | 2 +- docset/winserver2016-ps/hyper-v/Enable-VMMigration.md | 2 +- .../hyper-v/Enable-VMRemoteFXPhysicalVideoAdapter.md | 2 +- docset/winserver2016-ps/hyper-v/Enable-VMReplication.md | 2 +- docset/winserver2016-ps/hyper-v/Enable-VMResourceMetering.md | 2 +- docset/winserver2016-ps/hyper-v/Enable-VMSwitchExtension.md | 2 +- docset/winserver2016-ps/hyper-v/Enable-VMTPM.md | 2 +- docset/winserver2016-ps/hyper-v/Export-VM.md | 2 +- docset/winserver2016-ps/hyper-v/Export-VMSnapshot.md | 2 +- docset/winserver2016-ps/hyper-v/Get-VHD.md | 2 +- docset/winserver2016-ps/hyper-v/Get-VHDSet.md | 2 +- docset/winserver2016-ps/hyper-v/Get-VHDSnapshot.md | 2 +- docset/winserver2016-ps/hyper-v/Get-VM.md | 2 +- docset/winserver2016-ps/hyper-v/Get-VMBios.md | 2 +- docset/winserver2016-ps/hyper-v/Get-VMComPort.md | 2 +- docset/winserver2016-ps/hyper-v/Get-VMConnectAccess.md | 2 +- docset/winserver2016-ps/hyper-v/Get-VMDvdDrive.md | 2 +- docset/winserver2016-ps/hyper-v/Get-VMFibreChannelHba.md | 2 +- docset/winserver2016-ps/hyper-v/Get-VMFirmware.md | 2 +- docset/winserver2016-ps/hyper-v/Get-VMFloppyDiskDrive.md | 2 +- docset/winserver2016-ps/hyper-v/Get-VMGroup.md | 2 +- docset/winserver2016-ps/hyper-v/Get-VMHardDiskDrive.md | 2 +- docset/winserver2016-ps/hyper-v/Get-VMHost.md | 2 +- docset/winserver2016-ps/hyper-v/Get-VMHostCluster.md | 2 +- docset/winserver2016-ps/hyper-v/Get-VMHostNumaNode.md | 2 +- docset/winserver2016-ps/hyper-v/Get-VMHostNumaNodeStatus.md | 2 +- docset/winserver2016-ps/hyper-v/Get-VMHostSupportedVersion.md | 2 +- docset/winserver2016-ps/hyper-v/Get-VMIdeController.md | 2 +- docset/winserver2016-ps/hyper-v/Get-VMIntegrationService.md | 2 +- docset/winserver2016-ps/hyper-v/Get-VMKeyProtector.md | 2 +- docset/winserver2016-ps/hyper-v/Get-VMMemory.md | 2 +- docset/winserver2016-ps/hyper-v/Get-VMMigrationNetwork.md | 2 +- docset/winserver2016-ps/hyper-v/Get-VMNetworkAdapter.md | 2 +- docset/winserver2016-ps/hyper-v/Get-VMNetworkAdapterAcl.md | 2 +- .../winserver2016-ps/hyper-v/Get-VMNetworkAdapterExtendedAcl.md | 2 +- .../hyper-v/Get-VMNetworkAdapterFailoverConfiguration.md | 2 +- .../hyper-v/Get-VMNetworkAdapterRoutingDomainMapping.md | 2 +- .../winserver2016-ps/hyper-v/Get-VMNetworkAdapterTeamMapping.md | 2 +- docset/winserver2016-ps/hyper-v/Get-VMNetworkAdapterVlan.md | 2 +- docset/winserver2016-ps/hyper-v/Get-VMProcessor.md | 2 +- .../hyper-v/Get-VMRemoteFXPhysicalVideoAdapter.md | 2 +- docset/winserver2016-ps/hyper-v/Get-VMRemoteFx3dVideoAdapter.md | 2 +- docset/winserver2016-ps/hyper-v/Get-VMReplication.md | 2 +- .../hyper-v/Get-VMReplicationAuthorizationEntry.md | 2 +- docset/winserver2016-ps/hyper-v/Get-VMReplicationServer.md | 2 +- docset/winserver2016-ps/hyper-v/Get-VMResourcePool.md | 2 +- docset/winserver2016-ps/hyper-v/Get-VMSan.md | 2 +- docset/winserver2016-ps/hyper-v/Get-VMScsiController.md | 2 +- docset/winserver2016-ps/hyper-v/Get-VMSecurity.md | 2 +- docset/winserver2016-ps/hyper-v/Get-VMSnapshot.md | 2 +- docset/winserver2016-ps/hyper-v/Get-VMStoragePath.md | 2 +- docset/winserver2016-ps/hyper-v/Get-VMSwitch.md | 2 +- docset/winserver2016-ps/hyper-v/Get-VMSwitchExtension.md | 2 +- .../winserver2016-ps/hyper-v/Get-VMSwitchExtensionPortData.md | 2 +- .../hyper-v/Get-VMSwitchExtensionPortFeature.md | 2 +- .../winserver2016-ps/hyper-v/Get-VMSwitchExtensionSwitchData.md | 2 +- .../hyper-v/Get-VMSwitchExtensionSwitchFeature.md | 2 +- docset/winserver2016-ps/hyper-v/Get-VMSwitchTeam.md | 2 +- docset/winserver2016-ps/hyper-v/Get-VMSystemSwitchExtension.md | 2 +- .../hyper-v/Get-VMSystemSwitchExtensionPortFeature.md | 2 +- .../hyper-v/Get-VMSystemSwitchExtensionSwitchFeature.md | 2 +- docset/winserver2016-ps/hyper-v/Get-VMVideo.md | 2 +- .../winserver2016-ps/hyper-v/Get-VmNetworkAdapterIsolation.md | 2 +- docset/winserver2016-ps/hyper-v/Grant-VMConnectAccess.md | 2 +- docset/winserver2016-ps/hyper-v/Import-VM.md | 2 +- docset/winserver2016-ps/hyper-v/Import-VMInitialReplication.md | 2 +- docset/winserver2016-ps/hyper-v/Measure-VM.md | 2 +- docset/winserver2016-ps/hyper-v/Measure-VMReplication.md | 2 +- docset/winserver2016-ps/hyper-v/Measure-VMResourcePool.md | 2 +- docset/winserver2016-ps/hyper-v/Merge-VHD.md | 2 +- docset/winserver2016-ps/hyper-v/Mount-VHD.md | 2 +- docset/winserver2016-ps/hyper-v/Move-VM.md | 2 +- docset/winserver2016-ps/hyper-v/Move-VMStorage.md | 2 +- docset/winserver2016-ps/hyper-v/New-VFD.md | 2 +- docset/winserver2016-ps/hyper-v/New-VHD.md | 2 +- docset/winserver2016-ps/hyper-v/New-VM.md | 2 +- docset/winserver2016-ps/hyper-v/New-VMGroup.md | 2 +- .../hyper-v/New-VMReplicationAuthorizationEntry.md | 2 +- docset/winserver2016-ps/hyper-v/New-VMResourcePool.md | 2 +- docset/winserver2016-ps/hyper-v/New-VMSan.md | 2 +- docset/winserver2016-ps/hyper-v/New-VMSwitch.md | 2 +- docset/winserver2016-ps/hyper-v/Optimize-VHD.md | 2 +- docset/winserver2016-ps/hyper-v/Optimize-VHDSet.md | 2 +- docset/winserver2016-ps/hyper-v/Remove-VHDSnapshot.md | 2 +- docset/winserver2016-ps/hyper-v/Remove-VM.md | 2 +- docset/winserver2016-ps/hyper-v/Remove-VMDvdDrive.md | 2 +- docset/winserver2016-ps/hyper-v/Remove-VMFibreChannelHba.md | 2 +- docset/winserver2016-ps/hyper-v/Remove-VMGroup.md | 2 +- docset/winserver2016-ps/hyper-v/Remove-VMGroupMember.md | 2 +- docset/winserver2016-ps/hyper-v/Remove-VMHardDiskDrive.md | 2 +- docset/winserver2016-ps/hyper-v/Remove-VMMigrationNetwork.md | 2 +- docset/winserver2016-ps/hyper-v/Remove-VMNetworkAdapter.md | 2 +- docset/winserver2016-ps/hyper-v/Remove-VMNetworkAdapterAcl.md | 2 +- .../hyper-v/Remove-VMNetworkAdapterExtendedAcl.md | 2 +- .../hyper-v/Remove-VMNetworkAdapterRoutingDomainMapping.md | 2 +- .../hyper-v/Remove-VMNetworkAdapterTeamMapping.md | 2 +- .../winserver2016-ps/hyper-v/Remove-VMRemoteFx3dVideoAdapter.md | 2 +- docset/winserver2016-ps/hyper-v/Remove-VMReplication.md | 2 +- .../hyper-v/Remove-VMReplicationAuthorizationEntry.md | 2 +- docset/winserver2016-ps/hyper-v/Remove-VMResourcePool.md | 2 +- docset/winserver2016-ps/hyper-v/Remove-VMSan.md | 2 +- docset/winserver2016-ps/hyper-v/Remove-VMSavedState.md | 2 +- docset/winserver2016-ps/hyper-v/Remove-VMScsiController.md | 2 +- docset/winserver2016-ps/hyper-v/Remove-VMSnapshot.md | 2 +- docset/winserver2016-ps/hyper-v/Remove-VMStoragePath.md | 2 +- docset/winserver2016-ps/hyper-v/Remove-VMSwitch.md | 2 +- .../hyper-v/Remove-VMSwitchExtensionPortFeature.md | 2 +- .../hyper-v/Remove-VMSwitchExtensionSwitchFeature.md | 2 +- docset/winserver2016-ps/hyper-v/Remove-VMSwitchTeamMember.md | 2 +- docset/winserver2016-ps/hyper-v/Rename-VM.md | 2 +- docset/winserver2016-ps/hyper-v/Rename-VMGroup.md | 2 +- docset/winserver2016-ps/hyper-v/Rename-VMNetworkAdapter.md | 2 +- docset/winserver2016-ps/hyper-v/Rename-VMResourcePool.md | 2 +- docset/winserver2016-ps/hyper-v/Rename-VMSan.md | 2 +- docset/winserver2016-ps/hyper-v/Rename-VMSnapshot.md | 2 +- docset/winserver2016-ps/hyper-v/Rename-VMSwitch.md | 2 +- docset/winserver2016-ps/hyper-v/Repair-VM.md | 2 +- .../winserver2016-ps/hyper-v/Reset-VMReplicationStatistics.md | 2 +- docset/winserver2016-ps/hyper-v/Reset-VMResourceMetering.md | 2 +- docset/winserver2016-ps/hyper-v/Resize-VHD.md | 2 +- docset/winserver2016-ps/hyper-v/Restart-VM.md | 2 +- docset/winserver2016-ps/hyper-v/Restore-VMSnapshot.md | 2 +- docset/winserver2016-ps/hyper-v/Resume-VM.md | 2 +- docset/winserver2016-ps/hyper-v/Resume-VMReplication.md | 2 +- docset/winserver2016-ps/hyper-v/Revoke-VMConnectAccess.md | 2 +- docset/winserver2016-ps/hyper-v/Save-VM.md | 2 +- docset/winserver2016-ps/hyper-v/Set-VHD.md | 2 +- docset/winserver2016-ps/hyper-v/Set-VM.md | 2 +- docset/winserver2016-ps/hyper-v/Set-VMBios.md | 2 +- docset/winserver2016-ps/hyper-v/Set-VMComPort.md | 2 +- docset/winserver2016-ps/hyper-v/Set-VMDvdDrive.md | 2 +- docset/winserver2016-ps/hyper-v/Set-VMFibreChannelHba.md | 2 +- docset/winserver2016-ps/hyper-v/Set-VMFirmware.md | 2 +- docset/winserver2016-ps/hyper-v/Set-VMFloppyDiskDrive.md | 2 +- docset/winserver2016-ps/hyper-v/Set-VMHardDiskDrive.md | 2 +- docset/winserver2016-ps/hyper-v/Set-VMHost.md | 2 +- docset/winserver2016-ps/hyper-v/Set-VMHostCluster.md | 2 +- docset/winserver2016-ps/hyper-v/Set-VMKeyProtector.md | 2 +- docset/winserver2016-ps/hyper-v/Set-VMMemory.md | 2 +- docset/winserver2016-ps/hyper-v/Set-VMMigrationNetwork.md | 2 +- docset/winserver2016-ps/hyper-v/Set-VMNetworkAdapter.md | 2 +- .../hyper-v/Set-VMNetworkAdapterFailoverConfiguration.md | 2 +- .../winserver2016-ps/hyper-v/Set-VMNetworkAdapterTeamMapping.md | 2 +- docset/winserver2016-ps/hyper-v/Set-VMNetworkAdapterVlan.md | 2 +- docset/winserver2016-ps/hyper-v/Set-VMProcessor.md | 2 +- docset/winserver2016-ps/hyper-v/Set-VMRemoteFx3dVideoAdapter.md | 2 +- docset/winserver2016-ps/hyper-v/Set-VMReplication.md | 2 +- .../hyper-v/Set-VMReplicationAuthorizationEntry.md | 2 +- docset/winserver2016-ps/hyper-v/Set-VMReplicationServer.md | 2 +- docset/winserver2016-ps/hyper-v/Set-VMResourcePool.md | 2 +- docset/winserver2016-ps/hyper-v/Set-VMSan.md | 2 +- docset/winserver2016-ps/hyper-v/Set-VMSecurity.md | 2 +- docset/winserver2016-ps/hyper-v/Set-VMSecurityPolicy.md | 2 +- docset/winserver2016-ps/hyper-v/Set-VMSwitch.md | 2 +- .../hyper-v/Set-VMSwitchExtensionPortFeature.md | 2 +- .../hyper-v/Set-VMSwitchExtensionSwitchFeature.md | 2 +- docset/winserver2016-ps/hyper-v/Set-VMSwitchTeam.md | 2 +- docset/winserver2016-ps/hyper-v/Set-VMVideo.md | 2 +- .../winserver2016-ps/hyper-v/Set-VmNetworkAdapterIsolation.md | 2 +- .../hyper-v/Set-VmNetworkAdapterRoutingDomainMapping.md | 2 +- docset/winserver2016-ps/hyper-v/Start-VM.md | 2 +- docset/winserver2016-ps/hyper-v/Start-VMFailover.md | 2 +- docset/winserver2016-ps/hyper-v/Start-VMInitialReplication.md | 2 +- docset/winserver2016-ps/hyper-v/Start-VMTrace.md | 2 +- docset/winserver2016-ps/hyper-v/Stop-VM.md | 2 +- docset/winserver2016-ps/hyper-v/Stop-VMFailover.md | 2 +- docset/winserver2016-ps/hyper-v/Stop-VMInitialReplication.md | 2 +- docset/winserver2016-ps/hyper-v/Stop-VMReplication.md | 2 +- docset/winserver2016-ps/hyper-v/Stop-VMTrace.md | 2 +- docset/winserver2016-ps/hyper-v/Suspend-VM.md | 2 +- docset/winserver2016-ps/hyper-v/Suspend-VMReplication.md | 2 +- docset/winserver2016-ps/hyper-v/Test-VHD.md | 2 +- docset/winserver2016-ps/hyper-v/Test-VMNetworkAdapter.md | 2 +- docset/winserver2016-ps/hyper-v/Test-VMReplicationConnection.md | 2 +- docset/winserver2016-ps/hyper-v/Update-VMVersion.md | 2 +- .../iisadministration/Clear-IISCentralCertProvider.md | 2 +- .../iisadministration/Clear-IISConfigCollection.md | 2 +- .../iisadministration/Disable-IISCentralCertProvider.md | 2 +- .../iisadministration/Disable-IISSharedConfig.md | 2 +- .../iisadministration/Enable-IISCentralCertProvider.md | 2 +- .../iisadministration/Enable-IISSharedConfig.md | 2 +- .../iisadministration/Export-IISConfiguration.md | 2 +- docset/winserver2016-ps/iisadministration/Get-IISAppPool.md | 2 +- .../iisadministration/Get-IISCentralCertProvider.md | 2 +- .../iisadministration/Get-IISConfigAttributeValue.md | 2 +- .../iisadministration/Get-IISConfigCollection.md | 2 +- .../iisadministration/Get-IISConfigCollectionElement.md | 2 +- .../winserver2016-ps/iisadministration/Get-IISConfigElement.md | 2 +- .../winserver2016-ps/iisadministration/Get-IISConfigSection.md | 2 +- .../winserver2016-ps/iisadministration/Get-IISServerManager.md | 2 +- .../winserver2016-ps/iisadministration/Get-IISSharedConfig.md | 2 +- docset/winserver2016-ps/iisadministration/Get-IISSite.md | 2 +- docset/winserver2016-ps/iisadministration/Get-IISSiteBinding.md | 2 +- .../iisadministration/New-IISConfigCollectionElement.md | 2 +- docset/winserver2016-ps/iisadministration/New-IISSite.md | 2 +- docset/winserver2016-ps/iisadministration/New-IISSiteBinding.md | 2 +- .../iisadministration/Remove-IISConfigAttribute.md | 2 +- .../iisadministration/Remove-IISConfigCollectionElement.md | 2 +- .../iisadministration/Remove-IISConfigElement.md | 2 +- docset/winserver2016-ps/iisadministration/Remove-IISSite.md | 2 +- .../winserver2016-ps/iisadministration/Remove-IISSiteBinding.md | 2 +- .../iisadministration/Reset-IISServerManager.md | 2 +- .../iisadministration/Set-IISCentralCertProvider.md | 2 +- .../iisadministration/Set-IISCentralCertProviderCredential.md | 2 +- .../iisadministration/Set-IISConfigAttributeValue.md | 2 +- .../winserver2016-ps/iisadministration/Start-IISCommitDelay.md | 2 +- docset/winserver2016-ps/iisadministration/Start-IISSite.md | 2 +- .../winserver2016-ps/iisadministration/Stop-IISCommitDelay.md | 2 +- docset/winserver2016-ps/iisadministration/Stop-IISSite.md | 2 +- .../Get-WinAcceptLanguageFromLanguageListOptOut.md | 2 +- .../international/Get-WinCultureFromLanguageListOptOut.md | 2 +- .../international/Get-WinDefaultInputMethodOverride.md | 2 +- docset/winserver2016-ps/international/Get-WinHomeLocation.md | 2 +- .../winserver2016-ps/international/Get-WinLanguageBarOption.md | 2 +- docset/winserver2016-ps/international/Get-WinSystemLocale.md | 2 +- .../winserver2016-ps/international/Get-WinUILanguageOverride.md | 2 +- .../winserver2016-ps/international/Get-WinUserLanguageList.md | 2 +- .../winserver2016-ps/international/New-WinUserLanguageList.md | 2 +- docset/winserver2016-ps/international/Set-Culture.md | 2 +- .../Set-WinAcceptLanguageFromLanguageListOptOut.md | 2 +- .../international/Set-WinCultureFromLanguageListOptOut.md | 2 +- .../international/Set-WinDefaultInputMethodOverride.md | 2 +- docset/winserver2016-ps/international/Set-WinHomeLocation.md | 2 +- .../winserver2016-ps/international/Set-WinLanguageBarOption.md | 2 +- docset/winserver2016-ps/international/Set-WinSystemLocale.md | 2 +- .../winserver2016-ps/international/Set-WinUILanguageOverride.md | 2 +- .../winserver2016-ps/international/Set-WinUserLanguageList.md | 2 +- docset/winserver2016-ps/ipamserver/Add-IpamAddress.md | 2 +- docset/winserver2016-ps/ipamserver/Add-IpamAddressSpace.md | 2 +- docset/winserver2016-ps/ipamserver/Add-IpamBlock.md | 2 +- docset/winserver2016-ps/ipamserver/Add-IpamCustomField.md | 2 +- .../ipamserver/Add-IpamCustomFieldAssociation.md | 2 +- docset/winserver2016-ps/ipamserver/Add-IpamCustomValue.md | 2 +- docset/winserver2016-ps/ipamserver/Add-IpamDiscoveryDomain.md | 2 +- docset/winserver2016-ps/ipamserver/Add-IpamRange.md | 2 +- docset/winserver2016-ps/ipamserver/Add-IpamServerInventory.md | 2 +- docset/winserver2016-ps/ipamserver/Add-IpamSubnet.md | 2 +- docset/winserver2016-ps/ipamserver/Disable-IpamCapability.md | 2 +- docset/winserver2016-ps/ipamserver/Enable-IpamCapability.md | 2 +- docset/winserver2016-ps/ipamserver/Export-IpamAddress.md | 2 +- docset/winserver2016-ps/ipamserver/Export-IpamRange.md | 2 +- docset/winserver2016-ps/ipamserver/Export-IpamSubnet.md | 2 +- docset/winserver2016-ps/ipamserver/Find-IpamFreeAddress.md | 2 +- docset/winserver2016-ps/ipamserver/Find-IpamFreeRange.md | 2 +- docset/winserver2016-ps/ipamserver/Find-IpamFreeSubnet.md | 2 +- docset/winserver2016-ps/ipamserver/Get-IpamAddress.md | 2 +- docset/winserver2016-ps/ipamserver/Get-IpamAddressSpace.md | 2 +- .../ipamserver/Get-IpamAddressUtilizationThreshold.md | 2 +- docset/winserver2016-ps/ipamserver/Get-IpamBlock.md | 2 +- docset/winserver2016-ps/ipamserver/Get-IpamCapability.md | 2 +- docset/winserver2016-ps/ipamserver/Get-IpamConfiguration.md | 2 +- .../winserver2016-ps/ipamserver/Get-IpamConfigurationEvent.md | 2 +- docset/winserver2016-ps/ipamserver/Get-IpamCustomField.md | 2 +- .../ipamserver/Get-IpamCustomFieldAssociation.md | 2 +- docset/winserver2016-ps/ipamserver/Get-IpamDatabase.md | 2 +- .../ipamserver/Get-IpamDhcpConfigurationEvent.md | 2 +- docset/winserver2016-ps/ipamserver/Get-IpamDhcpScope.md | 2 +- docset/winserver2016-ps/ipamserver/Get-IpamDhcpServer.md | 2 +- docset/winserver2016-ps/ipamserver/Get-IpamDhcpSuperscope.md | 2 +- docset/winserver2016-ps/ipamserver/Get-IpamDiscoveryDomain.md | 2 +- .../ipamserver/Get-IpamDnsConditionalForwarder.md | 2 +- docset/winserver2016-ps/ipamserver/Get-IpamDnsResourceRecord.md | 2 +- docset/winserver2016-ps/ipamserver/Get-IpamDnsServer.md | 2 +- docset/winserver2016-ps/ipamserver/Get-IpamDnsZone.md | 2 +- .../winserver2016-ps/ipamserver/Get-IpamIpAddressAuditEvent.md | 2 +- docset/winserver2016-ps/ipamserver/Get-IpamRange.md | 2 +- docset/winserver2016-ps/ipamserver/Get-IpamServerInventory.md | 2 +- docset/winserver2016-ps/ipamserver/Get-IpamSubnet.md | 2 +- docset/winserver2016-ps/ipamserver/Import-IpamAddress.md | 2 +- docset/winserver2016-ps/ipamserver/Import-IpamRange.md | 2 +- docset/winserver2016-ps/ipamserver/Import-IpamSubnet.md | 2 +- .../winserver2016-ps/ipamserver/Invoke-IpamGpoProvisioning.md | 2 +- .../ipamserver/Invoke-IpamServerProvisioning.md | 2 +- docset/winserver2016-ps/ipamserver/Move-IpamDatabase.md | 2 +- docset/winserver2016-ps/ipamserver/Remove-IpamAddress.md | 2 +- docset/winserver2016-ps/ipamserver/Remove-IpamAddressSpace.md | 2 +- docset/winserver2016-ps/ipamserver/Remove-IpamBlock.md | 2 +- .../ipamserver/Remove-IpamConfigurationEvent.md | 2 +- docset/winserver2016-ps/ipamserver/Remove-IpamCustomField.md | 2 +- .../ipamserver/Remove-IpamCustomFieldAssociation.md | 2 +- docset/winserver2016-ps/ipamserver/Remove-IpamCustomValue.md | 2 +- .../ipamserver/Remove-IpamDhcpConfigurationEvent.md | 2 +- .../winserver2016-ps/ipamserver/Remove-IpamDiscoveryDomain.md | 2 +- .../ipamserver/Remove-IpamIpAddressAuditEvent.md | 2 +- docset/winserver2016-ps/ipamserver/Remove-IpamRange.md | 2 +- .../winserver2016-ps/ipamserver/Remove-IpamServerInventory.md | 2 +- docset/winserver2016-ps/ipamserver/Remove-IpamSubnet.md | 2 +- .../winserver2016-ps/ipamserver/Remove-IpamUtilizationData.md | 2 +- docset/winserver2016-ps/ipamserver/Rename-IpamCustomField.md | 2 +- docset/winserver2016-ps/ipamserver/Rename-IpamCustomValue.md | 2 +- docset/winserver2016-ps/ipamserver/Set-IpamAccessScope.md | 2 +- docset/winserver2016-ps/ipamserver/Set-IpamAddress.md | 2 +- docset/winserver2016-ps/ipamserver/Set-IpamAddressSpace.md | 2 +- .../ipamserver/Set-IpamAddressUtilizationThreshold.md | 2 +- docset/winserver2016-ps/ipamserver/Set-IpamBlock.md | 2 +- docset/winserver2016-ps/ipamserver/Set-IpamConfiguration.md | 2 +- .../ipamserver/Set-IpamCustomFieldAssociation.md | 2 +- docset/winserver2016-ps/ipamserver/Set-IpamDatabase.md | 2 +- docset/winserver2016-ps/ipamserver/Set-IpamDiscoveryDomain.md | 2 +- docset/winserver2016-ps/ipamserver/Set-IpamRange.md | 2 +- docset/winserver2016-ps/ipamserver/Set-IpamServerInventory.md | 2 +- docset/winserver2016-ps/ipamserver/Set-IpamSubnet.md | 2 +- docset/winserver2016-ps/ipamserver/Update-IpamServer.md | 2 +- docset/winserver2016-ps/iscsi/Connect-IscsiTarget.md | 2 +- docset/winserver2016-ps/iscsi/Disconnect-IscsiTarget.md | 2 +- docset/winserver2016-ps/iscsi/Get-IscsiConnection.md | 2 +- docset/winserver2016-ps/iscsi/Get-IscsiSession.md | 2 +- docset/winserver2016-ps/iscsi/Get-IscsiTarget.md | 2 +- docset/winserver2016-ps/iscsi/Get-IscsiTargetPortal.md | 2 +- docset/winserver2016-ps/iscsi/New-IscsiTargetPortal.md | 2 +- docset/winserver2016-ps/iscsi/Register-IscsiSession.md | 2 +- docset/winserver2016-ps/iscsi/Remove-IscsiTargetPortal.md | 2 +- docset/winserver2016-ps/iscsi/Set-IscsiChapSecret.md | 2 +- docset/winserver2016-ps/iscsi/Unregister-IscsiSession.md | 2 +- docset/winserver2016-ps/iscsi/Update-IscsiTarget.md | 2 +- docset/winserver2016-ps/iscsi/Update-IscsiTargetPortal.md | 2 +- .../iscsitarget/Add-IscsiVirtualDiskTargetMapping.md | 2 +- .../winserver2016-ps/iscsitarget/Checkpoint-IscsiVirtualDisk.md | 2 +- docset/winserver2016-ps/iscsitarget/Convert-IscsiVirtualDisk.md | 2 +- .../iscsitarget/Dismount-IscsiVirtualDiskSnapshot.md | 2 +- .../iscsitarget/Export-IscsiTargetServerConfiguration.md | 2 +- .../iscsitarget/Export-IscsiVirtualDiskSnapshot.md | 2 +- docset/winserver2016-ps/iscsitarget/Get-IscsiServerTarget.md | 2 +- .../iscsitarget/Get-IscsiTargetServerSetting.md | 2 +- docset/winserver2016-ps/iscsitarget/Get-IscsiVirtualDisk.md | 2 +- .../iscsitarget/Get-IscsiVirtualDiskSnapshot.md | 2 +- .../iscsitarget/Import-IscsiTargetServerConfiguration.md | 2 +- docset/winserver2016-ps/iscsitarget/Import-IscsiVirtualDisk.md | 2 +- .../iscsitarget/Mount-IscsiVirtualDiskSnapshot.md | 2 +- docset/winserver2016-ps/iscsitarget/New-IscsiServerTarget.md | 2 +- docset/winserver2016-ps/iscsitarget/New-IscsiVirtualDisk.md | 2 +- docset/winserver2016-ps/iscsitarget/Remove-IscsiServerTarget.md | 2 +- docset/winserver2016-ps/iscsitarget/Remove-IscsiVirtualDisk.md | 2 +- .../iscsitarget/Remove-IscsiVirtualDiskSnapshot.md | 2 +- .../iscsitarget/Remove-IscsiVirtualDiskTargetMapping.md | 2 +- docset/winserver2016-ps/iscsitarget/Resize-IscsiVirtualDisk.md | 2 +- docset/winserver2016-ps/iscsitarget/Restore-IscsiVirtualDisk.md | 2 +- docset/winserver2016-ps/iscsitarget/Set-IscsiServerTarget.md | 2 +- .../iscsitarget/Set-IscsiTargetServerSetting.md | 2 +- docset/winserver2016-ps/iscsitarget/Set-IscsiVirtualDisk.md | 2 +- .../iscsitarget/Set-IscsiVirtualDiskSnapshot.md | 2 +- .../iscsitarget/Stop-IscsiVirtualDiskOperation.md | 2 +- docset/winserver2016-ps/kds/Add-KdsRootKey.md | 2 +- docset/winserver2016-ps/kds/Clear-KdsCache.md | 2 +- docset/winserver2016-ps/kds/Get-KdsConfiguration.md | 2 +- docset/winserver2016-ps/kds/Get-KdsRootKey.md | 2 +- docset/winserver2016-ps/kds/Set-KdsConfiguration.md | 2 +- docset/winserver2016-ps/kds/Test-KdsRootKey.md | 2 +- docset/winserver2016-ps/mmagent/Debug-MMAppPrelaunch.md | 2 +- docset/winserver2016-ps/mmagent/Disable-MMAgent.md | 2 +- docset/winserver2016-ps/mmagent/Enable-MMAgent.md | 2 +- docset/winserver2016-ps/mmagent/Get-MMAgent.md | 2 +- docset/winserver2016-ps/mmagent/Set-MMAgent.md | 2 +- docset/winserver2016-ps/mpio/Clear-MSDSMSupportedHW.md | 2 +- docset/winserver2016-ps/mpio/Disable-MSDSMAutomaticClaim.md | 2 +- docset/winserver2016-ps/mpio/Enable-MSDSMAutomaticClaim.md | 2 +- docset/winserver2016-ps/mpio/Get-MPIOAvailableHW.md | 2 +- docset/winserver2016-ps/mpio/Get-MPIOSetting.md | 2 +- docset/winserver2016-ps/mpio/Get-MSDSMAutomaticClaimSettings.md | 2 +- .../mpio/Get-MSDSMGlobalDefaultLoadBalancePolicy.md | 2 +- docset/winserver2016-ps/mpio/Get-MSDSMSupportedHW.md | 2 +- docset/winserver2016-ps/mpio/New-MSDSMSupportedHW.md | 2 +- docset/winserver2016-ps/mpio/Remove-MSDSMSupportedHW.md | 2 +- docset/winserver2016-ps/mpio/Set-MPIOSetting.md | 2 +- .../mpio/Set-MSDSMGlobalDefaultLoadBalancePolicy.md | 2 +- docset/winserver2016-ps/mpio/Update-MPIOClaimedHW.md | 2 +- docset/winserver2016-ps/msdtc/Add-DtcClusterTMMapping.md | 2 +- .../winserver2016-ps/msdtc/Complete-DtcDiagnosticTransaction.md | 2 +- docset/winserver2016-ps/msdtc/Get-Dtc.md | 2 +- docset/winserver2016-ps/msdtc/Get-DtcAdvancedHostSetting.md | 2 +- docset/winserver2016-ps/msdtc/Get-DtcAdvancedSetting.md | 2 +- docset/winserver2016-ps/msdtc/Get-DtcClusterDefault.md | 2 +- docset/winserver2016-ps/msdtc/Get-DtcClusterTMMapping.md | 2 +- docset/winserver2016-ps/msdtc/Get-DtcDefault.md | 2 +- docset/winserver2016-ps/msdtc/Get-DtcLog.md | 2 +- docset/winserver2016-ps/msdtc/Get-DtcNetworkSetting.md | 2 +- docset/winserver2016-ps/msdtc/Get-DtcTransaction.md | 2 +- docset/winserver2016-ps/msdtc/Get-DtcTransactionsStatistics.md | 2 +- .../winserver2016-ps/msdtc/Get-DtcTransactionsTraceSession.md | 2 +- .../winserver2016-ps/msdtc/Get-DtcTransactionsTraceSetting.md | 2 +- docset/winserver2016-ps/msdtc/Install-Dtc.md | 2 +- .../winserver2016-ps/msdtc/Join-DtcDiagnosticResourceManager.md | 2 +- docset/winserver2016-ps/msdtc/New-DtcDiagnosticTransaction.md | 2 +- .../winserver2016-ps/msdtc/Receive-DtcDiagnosticTransaction.md | 2 +- docset/winserver2016-ps/msdtc/Remove-DtcClusterTMMapping.md | 2 +- docset/winserver2016-ps/msdtc/Reset-DtcLog.md | 2 +- docset/winserver2016-ps/msdtc/Send-DtcDiagnosticTransaction.md | 2 +- docset/winserver2016-ps/msdtc/Set-DtcAdvancedHostSetting.md | 2 +- docset/winserver2016-ps/msdtc/Set-DtcAdvancedSetting.md | 2 +- docset/winserver2016-ps/msdtc/Set-DtcClusterDefault.md | 2 +- docset/winserver2016-ps/msdtc/Set-DtcClusterTMMapping.md | 2 +- docset/winserver2016-ps/msdtc/Set-DtcDefault.md | 2 +- docset/winserver2016-ps/msdtc/Set-DtcLog.md | 2 +- docset/winserver2016-ps/msdtc/Set-DtcNetworkSetting.md | 2 +- docset/winserver2016-ps/msdtc/Set-DtcTransaction.md | 2 +- .../winserver2016-ps/msdtc/Set-DtcTransactionsTraceSession.md | 2 +- .../winserver2016-ps/msdtc/Set-DtcTransactionsTraceSetting.md | 2 +- docset/winserver2016-ps/msdtc/Start-Dtc.md | 2 +- .../msdtc/Start-DtcDiagnosticResourceManager.md | 2 +- .../winserver2016-ps/msdtc/Start-DtcTransactionsTraceSession.md | 2 +- docset/winserver2016-ps/msdtc/Stop-Dtc.md | 2 +- .../winserver2016-ps/msdtc/Stop-DtcDiagnosticResourceManager.md | 2 +- .../winserver2016-ps/msdtc/Stop-DtcTransactionsTraceSession.md | 2 +- docset/winserver2016-ps/msdtc/Test-Dtc.md | 2 +- docset/winserver2016-ps/msdtc/Undo-DtcDiagnosticTransaction.md | 2 +- docset/winserver2016-ps/msdtc/Uninstall-Dtc.md | 2 +- .../winserver2016-ps/msdtc/Write-DtcTransactionsTraceSession.md | 2 +- docset/winserver2016-ps/msmq/Clear-MSMQOutgoingQueue.md | 2 +- docset/winserver2016-ps/msmq/Clear-MSMQQueue.md | 2 +- docset/winserver2016-ps/msmq/Enable-MSMQCertificate.md | 2 +- docset/winserver2016-ps/msmq/Get-MSMQCertificate.md | 2 +- docset/winserver2016-ps/msmq/Get-MSMQOutgoingQueue.md | 2 +- docset/winserver2016-ps/msmq/Get-MsmqQueue.md | 2 +- docset/winserver2016-ps/msmq/Get-MsmqQueueACL.md | 2 +- docset/winserver2016-ps/msmq/Get-MsmqQueueManager.md | 2 +- docset/winserver2016-ps/msmq/Get-MsmqQueueManagerACL.md | 2 +- docset/winserver2016-ps/msmq/Move-MsmqMessage.md | 2 +- docset/winserver2016-ps/msmq/New-MsmqMessage.md | 2 +- docset/winserver2016-ps/msmq/New-MsmqQueue.md | 2 +- docset/winserver2016-ps/msmq/Receive-MsmqQueue.md | 2 +- docset/winserver2016-ps/msmq/Remove-MsmqCertificate.md | 2 +- docset/winserver2016-ps/msmq/Remove-MsmqQueue.md | 2 +- docset/winserver2016-ps/msmq/Resume-MsmqOutgoingQueue.md | 2 +- docset/winserver2016-ps/msmq/Send-MsmqQueue.md | 2 +- docset/winserver2016-ps/msmq/Set-MsmqQueue.md | 2 +- docset/winserver2016-ps/msmq/Set-MsmqQueueACL.md | 2 +- docset/winserver2016-ps/msmq/Set-MsmqQueueManager.md | 2 +- docset/winserver2016-ps/msmq/Set-MsmqQueueManagerACL.md | 2 +- docset/winserver2016-ps/msmq/Suspend-MsmqOutgoingQueue.md | 2 +- docset/winserver2016-ps/multipoint/Add-WmsSystem.md | 2 +- docset/winserver2016-ps/multipoint/Clear-WmsStation.md | 2 +- docset/winserver2016-ps/multipoint/Close-WmsApp.md | 2 +- docset/winserver2016-ps/multipoint/Close-WmsSession.md | 2 +- docset/winserver2016-ps/multipoint/Disable-WmsDiskProtection.md | 2 +- .../winserver2016-ps/multipoint/Disable-WmsScheduledUpdate.md | 2 +- docset/winserver2016-ps/multipoint/Disable-WmsWebLimiting.md | 2 +- docset/winserver2016-ps/multipoint/Disconnect-WmsSession.md | 2 +- docset/winserver2016-ps/multipoint/Enable-WmsDiskProtection.md | 2 +- docset/winserver2016-ps/multipoint/Enable-WmsScheduledUpdate.md | 2 +- docset/winserver2016-ps/multipoint/Enable-WmsWebLimiting.md | 2 +- docset/winserver2016-ps/multipoint/Get-WmsAlert.md | 2 +- docset/winserver2016-ps/multipoint/Get-WmsApp.md | 2 +- docset/winserver2016-ps/multipoint/Get-WmsDiskProtection.md | 2 +- docset/winserver2016-ps/multipoint/Get-WmsScheduledUpdate.md | 2 +- docset/winserver2016-ps/multipoint/Get-WmsSession.md | 2 +- docset/winserver2016-ps/multipoint/Get-WmsStation.md | 2 +- docset/winserver2016-ps/multipoint/Get-WmsSystem.md | 2 +- docset/winserver2016-ps/multipoint/Get-WmsUser.md | 2 +- docset/winserver2016-ps/multipoint/Get-WmsVersion.md | 2 +- docset/winserver2016-ps/multipoint/Get-WmsWebLimiting.md | 2 +- docset/winserver2016-ps/multipoint/Hide-WmsIdentifier.md | 2 +- docset/winserver2016-ps/multipoint/Join-WmsStation.md | 2 +- docset/winserver2016-ps/multipoint/Lock-WmsSession.md | 2 +- docset/winserver2016-ps/multipoint/Lock-WmsUsbStorage.md | 2 +- docset/winserver2016-ps/multipoint/New-WmsUser.md | 2 +- docset/winserver2016-ps/multipoint/Open-WmsApp.md | 2 +- docset/winserver2016-ps/multipoint/Publish-WmsDesktop.md | 2 +- docset/winserver2016-ps/multipoint/Remove-WmsSystem.md | 2 +- docset/winserver2016-ps/multipoint/Remove-WmsUser.md | 2 +- docset/winserver2016-ps/multipoint/Restart-WmsSystem.md | 2 +- docset/winserver2016-ps/multipoint/Resume-WmsDiskProtection.md | 2 +- docset/winserver2016-ps/multipoint/Search-WmsSystem.md | 2 +- docset/winserver2016-ps/multipoint/Set-WmsScheduledUpdate.md | 2 +- docset/winserver2016-ps/multipoint/Set-WmsStation.md | 2 +- docset/winserver2016-ps/multipoint/Set-WmsSystem.md | 2 +- docset/winserver2016-ps/multipoint/Set-WmsUser.md | 2 +- docset/winserver2016-ps/multipoint/Set-WmsWebLimiting.md | 2 +- docset/winserver2016-ps/multipoint/Show-WmsDesktop.md | 2 +- docset/winserver2016-ps/multipoint/Show-WmsIdentifier.md | 2 +- docset/winserver2016-ps/multipoint/Split-WmsStation.md | 2 +- docset/winserver2016-ps/multipoint/Stop-WmsSystem.md | 2 +- docset/winserver2016-ps/multipoint/Suspend-WmsDiskProtection.md | 2 +- docset/winserver2016-ps/multipoint/Unlock-WmsSession.md | 2 +- docset/winserver2016-ps/multipoint/Unlock-WmsUsbStorage.md | 2 +- docset/winserver2016-ps/multipoint/Unpublish-WmsDesktop.md | 2 +- docset/winserver2016-ps/multipoint/Update-WmsStation.md | 2 +- .../multipointvdi/Disable-WmsVirtualDesktopRole.md | 2 +- .../multipointvdi/Enable-WmsVirtualDesktopRole.md | 2 +- docset/winserver2016-ps/multipointvdi/Get-WmsVirtualDesktop.md | 2 +- .../winserver2016-ps/multipointvdi/Import-WmsVirtualDesktop.md | 2 +- docset/winserver2016-ps/multipointvdi/New-WmsVirtualDesktop.md | 2 +- .../multipointvdi/New-WmsVirtualDesktopTemplate.md | 2 +- docset/winserver2016-ps/multipointvdi/Open-WmsVirtualDesktop.md | 2 +- .../nanoserverimagegenerator/Edit-NanoServerImage.md | 2 +- .../nanoserverimagegenerator/Get-NanoServerPackage.md | 2 +- .../nanoserverimagegenerator/New-NanoServerImage.md | 2 +- docset/winserver2016-ps/netadapter/Disable-NetAdapter.md | 2 +- docset/winserver2016-ps/netadapter/Disable-NetAdapterBinding.md | 2 +- .../netadapter/Disable-NetAdapterChecksumOffload.md | 2 +- .../Disable-NetAdapterEncapsulatedPacketTaskOffload.md | 2 +- .../netadapter/Disable-NetAdapterIPsecOffload.md | 2 +- docset/winserver2016-ps/netadapter/Disable-NetAdapterLso.md | 2 +- .../netadapter/Disable-NetAdapterPowerManagement.md | 2 +- docset/winserver2016-ps/netadapter/Disable-NetAdapterQos.md | 2 +- docset/winserver2016-ps/netadapter/Disable-NetAdapterRdma.md | 2 +- docset/winserver2016-ps/netadapter/Disable-NetAdapterRsc.md | 2 +- docset/winserver2016-ps/netadapter/Disable-NetAdapterRss.md | 2 +- docset/winserver2016-ps/netadapter/Disable-NetAdapterSriov.md | 2 +- docset/winserver2016-ps/netadapter/Disable-NetAdapterVmq.md | 2 +- docset/winserver2016-ps/netadapter/Enable-NetAdapter.md | 2 +- docset/winserver2016-ps/netadapter/Enable-NetAdapterBinding.md | 2 +- .../netadapter/Enable-NetAdapterChecksumOffload.md | 2 +- .../Enable-NetAdapterEncapsulatedPacketTaskOffload.md | 2 +- .../netadapter/Enable-NetAdapterIPsecOffload.md | 2 +- docset/winserver2016-ps/netadapter/Enable-NetAdapterLso.md | 2 +- .../netadapter/Enable-NetAdapterPowerManagement.md | 2 +- docset/winserver2016-ps/netadapter/Enable-NetAdapterQos.md | 2 +- docset/winserver2016-ps/netadapter/Enable-NetAdapterRdma.md | 2 +- docset/winserver2016-ps/netadapter/Enable-NetAdapterRsc.md | 2 +- docset/winserver2016-ps/netadapter/Enable-NetAdapterRss.md | 2 +- docset/winserver2016-ps/netadapter/Enable-NetAdapterSriov.md | 2 +- docset/winserver2016-ps/netadapter/Enable-NetAdapterVmq.md | 2 +- docset/winserver2016-ps/netadapter/Get-NetAdapter.md | 2 +- .../netadapter/Get-NetAdapterAdvancedProperty.md | 2 +- docset/winserver2016-ps/netadapter/Get-NetAdapterBinding.md | 2 +- .../netadapter/Get-NetAdapterChecksumOffload.md | 2 +- .../netadapter/Get-NetAdapterEncapsulatedPacketTaskOffload.md | 2 +- .../winserver2016-ps/netadapter/Get-NetAdapterHardwareInfo.md | 2 +- .../winserver2016-ps/netadapter/Get-NetAdapterIPsecOffload.md | 2 +- docset/winserver2016-ps/netadapter/Get-NetAdapterLso.md | 2 +- .../netadapter/Get-NetAdapterPowerManagement.md | 2 +- docset/winserver2016-ps/netadapter/Get-NetAdapterQos.md | 2 +- docset/winserver2016-ps/netadapter/Get-NetAdapterRdma.md | 2 +- docset/winserver2016-ps/netadapter/Get-NetAdapterRsc.md | 2 +- docset/winserver2016-ps/netadapter/Get-NetAdapterRss.md | 2 +- docset/winserver2016-ps/netadapter/Get-NetAdapterSriov.md | 2 +- docset/winserver2016-ps/netadapter/Get-NetAdapterSriovVf.md | 2 +- docset/winserver2016-ps/netadapter/Get-NetAdapterStatistics.md | 2 +- docset/winserver2016-ps/netadapter/Get-NetAdapterVPort.md | 2 +- docset/winserver2016-ps/netadapter/Get-NetAdapterVmq.md | 2 +- docset/winserver2016-ps/netadapter/Get-NetAdapterVmqQueue.md | 2 +- .../netadapter/New-NetAdapterAdvancedProperty.md | 2 +- .../netadapter/Remove-NetAdapterAdvancedProperty.md | 2 +- docset/winserver2016-ps/netadapter/Rename-NetAdapter.md | 2 +- .../netadapter/Reset-NetAdapterAdvancedProperty.md | 2 +- docset/winserver2016-ps/netadapter/Restart-NetAdapter.md | 2 +- docset/winserver2016-ps/netadapter/Set-NetAdapter.md | 2 +- .../netadapter/Set-NetAdapterAdvancedProperty.md | 2 +- docset/winserver2016-ps/netadapter/Set-NetAdapterBinding.md | 2 +- .../netadapter/Set-NetAdapterChecksumOffload.md | 2 +- .../netadapter/Set-NetAdapterEncapsulatedPacketTaskOffload.md | 2 +- .../winserver2016-ps/netadapter/Set-NetAdapterIPsecOffload.md | 2 +- docset/winserver2016-ps/netadapter/Set-NetAdapterLso.md | 2 +- .../netadapter/Set-NetAdapterPowerManagement.md | 2 +- docset/winserver2016-ps/netadapter/Set-NetAdapterQos.md | 2 +- docset/winserver2016-ps/netadapter/Set-NetAdapterRdma.md | 2 +- docset/winserver2016-ps/netadapter/Set-NetAdapterRsc.md | 2 +- docset/winserver2016-ps/netadapter/Set-NetAdapterRss.md | 2 +- docset/winserver2016-ps/netadapter/Set-NetAdapterSriov.md | 2 +- docset/winserver2016-ps/netadapter/Set-NetAdapterVmq.md | 2 +- .../winserver2016-ps/netconnection/Get-NetConnectionProfile.md | 2 +- .../winserver2016-ps/netconnection/Set-NetConnectionProfile.md | 2 +- .../neteventpacketcapture/Add-NetEventNetworkAdapter.md | 2 +- .../neteventpacketcapture/Add-NetEventPacketCaptureProvider.md | 2 +- .../neteventpacketcapture/Add-NetEventProvider.md | 2 +- .../neteventpacketcapture/Add-NetEventVmNetworkAdapter.md | 2 +- .../neteventpacketcapture/Add-NetEventVmSwitch.md | 2 +- .../neteventpacketcapture/Add-NetEventWFPCaptureProvider.md | 2 +- .../neteventpacketcapture/Get-NetEventNetworkAdapter.md | 2 +- .../neteventpacketcapture/Get-NetEventPacketCaptureProvider.md | 2 +- .../neteventpacketcapture/Get-NetEventProvider.md | 2 +- .../neteventpacketcapture/Get-NetEventSession.md | 2 +- .../neteventpacketcapture/Get-NetEventVmNetworkAdapter.md | 2 +- .../neteventpacketcapture/Get-NetEventVmSwitch.md | 2 +- .../neteventpacketcapture/Get-NetEventWFPCaptureProvider.md | 2 +- .../neteventpacketcapture/New-NetEventSession.md | 2 +- .../neteventpacketcapture/Remove-NetEventNetworkAdapter.md | 2 +- .../Remove-NetEventPacketCaptureProvider.md | 2 +- .../neteventpacketcapture/Remove-NetEventProvider.md | 2 +- .../neteventpacketcapture/Remove-NetEventSession.md | 2 +- .../neteventpacketcapture/Remove-NetEventVmNetworkAdapter.md | 2 +- .../neteventpacketcapture/Remove-NetEventVmSwitch.md | 2 +- .../neteventpacketcapture/Remove-NetEventWFPCaptureProvider.md | 2 +- .../neteventpacketcapture/Set-NetEventPacketCaptureProvider.md | 2 +- .../neteventpacketcapture/Set-NetEventProvider.md | 2 +- .../neteventpacketcapture/Set-NetEventSession.md | 2 +- .../neteventpacketcapture/Set-NetEventWFPCaptureProvider.md | 2 +- .../neteventpacketcapture/Start-NetEventSession.md | 2 +- .../neteventpacketcapture/Stop-NetEventSession.md | 2 +- docset/winserver2016-ps/netlbfo/Add-NetLbfoTeamMember.md | 2 +- docset/winserver2016-ps/netlbfo/Add-NetLbfoTeamNic.md | 2 +- docset/winserver2016-ps/netlbfo/Get-NetLbfoTeam.md | 2 +- docset/winserver2016-ps/netlbfo/Get-NetLbfoTeamMember.md | 2 +- docset/winserver2016-ps/netlbfo/Get-NetLbfoTeamNic.md | 2 +- docset/winserver2016-ps/netlbfo/New-NetLbfoTeam.md | 2 +- docset/winserver2016-ps/netlbfo/Remove-NetLbfoTeam.md | 2 +- docset/winserver2016-ps/netlbfo/Remove-NetLbfoTeamMember.md | 2 +- docset/winserver2016-ps/netlbfo/Remove-NetLbfoTeamNic.md | 2 +- docset/winserver2016-ps/netlbfo/Rename-NetLbfoTeam.md | 2 +- docset/winserver2016-ps/netlbfo/Set-NetLbfoTeam.md | 2 +- docset/winserver2016-ps/netlbfo/Set-NetLbfoTeamMember.md | 2 +- docset/winserver2016-ps/netlbfo/Set-NetLbfoTeamNic.md | 2 +- docset/winserver2016-ps/netlldpagent/Disable-NetLldpAgent.md | 2 +- docset/winserver2016-ps/netlldpagent/Enable-NetLldpAgent.md | 2 +- docset/winserver2016-ps/netlldpagent/Get-NetLldpAgent.md | 2 +- docset/winserver2016-ps/netnat/Add-NetNatExternalAddress.md | 2 +- docset/winserver2016-ps/netnat/Add-NetNatStaticMapping.md | 2 +- docset/winserver2016-ps/netnat/Get-NetNat.md | 2 +- docset/winserver2016-ps/netnat/Get-NetNatExternalAddress.md | 2 +- docset/winserver2016-ps/netnat/Get-NetNatGlobal.md | 2 +- docset/winserver2016-ps/netnat/Get-NetNatSession.md | 2 +- docset/winserver2016-ps/netnat/Get-NetNatStaticMapping.md | 2 +- docset/winserver2016-ps/netnat/New-NetNat.md | 2 +- docset/winserver2016-ps/netnat/Remove-NetNat.md | 2 +- docset/winserver2016-ps/netnat/Remove-NetNatExternalAddress.md | 2 +- docset/winserver2016-ps/netnat/Remove-NetNatStaticMapping.md | 2 +- docset/winserver2016-ps/netnat/Set-NetNat.md | 2 +- docset/winserver2016-ps/netnat/Set-NetNatGlobal.md | 2 +- docset/winserver2016-ps/netqos/Get-NetQosPolicy.md | 2 +- docset/winserver2016-ps/netqos/New-NetQosPolicy.md | 2 +- docset/winserver2016-ps/netqos/Remove-NetQosPolicy.md | 2 +- docset/winserver2016-ps/netqos/Set-NetQosPolicy.md | 2 +- docset/winserver2016-ps/netsecurity/Copy-NetFirewallRule.md | 2 +- .../netsecurity/Copy-NetIPsecMainModeCryptoSet.md | 2 +- .../winserver2016-ps/netsecurity/Copy-NetIPsecMainModeRule.md | 2 +- .../winserver2016-ps/netsecurity/Copy-NetIPsecPhase1AuthSet.md | 2 +- .../winserver2016-ps/netsecurity/Copy-NetIPsecPhase2AuthSet.md | 2 +- .../netsecurity/Copy-NetIPsecQuickModeCryptoSet.md | 2 +- docset/winserver2016-ps/netsecurity/Copy-NetIPsecRule.md | 2 +- docset/winserver2016-ps/netsecurity/Disable-NetFirewallRule.md | 2 +- .../netsecurity/Disable-NetIPsecMainModeRule.md | 2 +- docset/winserver2016-ps/netsecurity/Disable-NetIPsecRule.md | 2 +- docset/winserver2016-ps/netsecurity/Enable-NetFirewallRule.md | 2 +- .../winserver2016-ps/netsecurity/Enable-NetIPsecMainModeRule.md | 2 +- docset/winserver2016-ps/netsecurity/Enable-NetIPsecRule.md | 2 +- docset/winserver2016-ps/netsecurity/Find-NetIPsecRule.md | 2 +- docset/winserver2016-ps/netsecurity/Get-DAPolicyChange.md | 2 +- .../netsecurity/Get-NetFirewallAddressFilter.md | 2 +- .../netsecurity/Get-NetFirewallApplicationFilter.md | 2 +- .../netsecurity/Get-NetFirewallInterfaceFilter.md | 2 +- .../netsecurity/Get-NetFirewallInterfaceTypeFilter.md | 2 +- .../winserver2016-ps/netsecurity/Get-NetFirewallPortFilter.md | 2 +- docset/winserver2016-ps/netsecurity/Get-NetFirewallProfile.md | 2 +- docset/winserver2016-ps/netsecurity/Get-NetFirewallRule.md | 2 +- .../netsecurity/Get-NetFirewallSecurityFilter.md | 2 +- .../netsecurity/Get-NetFirewallServiceFilter.md | 2 +- docset/winserver2016-ps/netsecurity/Get-NetFirewallSetting.md | 2 +- docset/winserver2016-ps/netsecurity/Get-NetIPsecDospSetting.md | 2 +- .../netsecurity/Get-NetIPsecMainModeCryptoSet.md | 2 +- docset/winserver2016-ps/netsecurity/Get-NetIPsecMainModeRule.md | 2 +- docset/winserver2016-ps/netsecurity/Get-NetIPsecMainModeSA.md | 2 +- .../winserver2016-ps/netsecurity/Get-NetIPsecPhase1AuthSet.md | 2 +- .../winserver2016-ps/netsecurity/Get-NetIPsecPhase2AuthSet.md | 2 +- .../netsecurity/Get-NetIPsecQuickModeCryptoSet.md | 2 +- docset/winserver2016-ps/netsecurity/Get-NetIPsecQuickModeSA.md | 2 +- docset/winserver2016-ps/netsecurity/Get-NetIPsecRule.md | 2 +- docset/winserver2016-ps/netsecurity/New-NetFirewallRule.md | 2 +- docset/winserver2016-ps/netsecurity/New-NetIPsecAuthProposal.md | 2 +- docset/winserver2016-ps/netsecurity/New-NetIPsecDospSetting.md | 2 +- .../netsecurity/New-NetIPsecMainModeCryptoProposal.md | 2 +- .../netsecurity/New-NetIPsecMainModeCryptoSet.md | 2 +- docset/winserver2016-ps/netsecurity/New-NetIPsecMainModeRule.md | 2 +- .../winserver2016-ps/netsecurity/New-NetIPsecPhase1AuthSet.md | 2 +- .../winserver2016-ps/netsecurity/New-NetIPsecPhase2AuthSet.md | 2 +- .../netsecurity/New-NetIPsecQuickModeCryptoProposal.md | 2 +- .../netsecurity/New-NetIPsecQuickModeCryptoSet.md | 2 +- docset/winserver2016-ps/netsecurity/New-NetIPsecRule.md | 2 +- docset/winserver2016-ps/netsecurity/Open-NetGPO.md | 2 +- docset/winserver2016-ps/netsecurity/Remove-NetFirewallRule.md | 2 +- .../winserver2016-ps/netsecurity/Remove-NetIPsecDospSetting.md | 2 +- .../netsecurity/Remove-NetIPsecMainModeCryptoSet.md | 2 +- .../winserver2016-ps/netsecurity/Remove-NetIPsecMainModeRule.md | 2 +- .../winserver2016-ps/netsecurity/Remove-NetIPsecMainModeSA.md | 2 +- .../netsecurity/Remove-NetIPsecPhase1AuthSet.md | 2 +- .../netsecurity/Remove-NetIPsecPhase2AuthSet.md | 2 +- .../netsecurity/Remove-NetIPsecQuickModeCryptoSet.md | 2 +- .../winserver2016-ps/netsecurity/Remove-NetIPsecQuickModeSA.md | 2 +- docset/winserver2016-ps/netsecurity/Remove-NetIPsecRule.md | 2 +- docset/winserver2016-ps/netsecurity/Rename-NetFirewallRule.md | 2 +- .../netsecurity/Rename-NetIPsecMainModeCryptoSet.md | 2 +- .../winserver2016-ps/netsecurity/Rename-NetIPsecMainModeRule.md | 2 +- .../netsecurity/Rename-NetIPsecPhase1AuthSet.md | 2 +- .../netsecurity/Rename-NetIPsecPhase2AuthSet.md | 2 +- .../netsecurity/Rename-NetIPsecQuickModeCryptoSet.md | 2 +- docset/winserver2016-ps/netsecurity/Rename-NetIPsecRule.md | 2 +- docset/winserver2016-ps/netsecurity/Save-NetGPO.md | 2 +- .../netsecurity/Set-NetFirewallAddressFilter.md | 2 +- .../netsecurity/Set-NetFirewallApplicationFilter.md | 2 +- .../netsecurity/Set-NetFirewallInterfaceFilter.md | 2 +- .../netsecurity/Set-NetFirewallInterfaceTypeFilter.md | 2 +- .../winserver2016-ps/netsecurity/Set-NetFirewallPortFilter.md | 2 +- docset/winserver2016-ps/netsecurity/Set-NetFirewallProfile.md | 2 +- docset/winserver2016-ps/netsecurity/Set-NetFirewallRule.md | 2 +- .../netsecurity/Set-NetFirewallSecurityFilter.md | 2 +- .../netsecurity/Set-NetFirewallServiceFilter.md | 2 +- docset/winserver2016-ps/netsecurity/Set-NetFirewallSetting.md | 2 +- docset/winserver2016-ps/netsecurity/Set-NetIPsecDospSetting.md | 2 +- .../netsecurity/Set-NetIPsecMainModeCryptoSet.md | 2 +- docset/winserver2016-ps/netsecurity/Set-NetIPsecMainModeRule.md | 2 +- .../winserver2016-ps/netsecurity/Set-NetIPsecPhase1AuthSet.md | 2 +- .../winserver2016-ps/netsecurity/Set-NetIPsecPhase2AuthSet.md | 2 +- .../netsecurity/Set-NetIPsecQuickModeCryptoSet.md | 2 +- docset/winserver2016-ps/netsecurity/Set-NetIPsecRule.md | 2 +- docset/winserver2016-ps/netsecurity/Show-NetFirewallRule.md | 2 +- docset/winserver2016-ps/netsecurity/Show-NetIPsecRule.md | 2 +- docset/winserver2016-ps/netsecurity/Sync-NetIPsecRule.md | 2 +- docset/winserver2016-ps/netsecurity/Update-NetIPsecRule.md | 2 +- .../winserver2016-ps/netswitchteam/Add-NetSwitchTeamMember.md | 2 +- docset/winserver2016-ps/netswitchteam/Get-NetSwitchTeam.md | 2 +- .../winserver2016-ps/netswitchteam/Get-NetSwitchTeamMember.md | 2 +- docset/winserver2016-ps/netswitchteam/New-NetSwitchTeam.md | 2 +- docset/winserver2016-ps/netswitchteam/Remove-NetSwitchTeam.md | 2 +- .../netswitchteam/Remove-NetSwitchTeamMember.md | 2 +- docset/winserver2016-ps/netswitchteam/Rename-NetSwitchTeam.md | 2 +- docset/winserver2016-ps/nettcpip/Find-NetRoute.md | 2 +- docset/winserver2016-ps/nettcpip/Get-NetCompartment.md | 2 +- docset/winserver2016-ps/nettcpip/Get-NetIPAddress.md | 2 +- docset/winserver2016-ps/nettcpip/Get-NetIPConfiguration.md | 2 +- docset/winserver2016-ps/nettcpip/Get-NetIPInterface.md | 2 +- docset/winserver2016-ps/nettcpip/Get-NetIPv4Protocol.md | 2 +- docset/winserver2016-ps/nettcpip/Get-NetIPv6Protocol.md | 2 +- docset/winserver2016-ps/nettcpip/Get-NetNeighbor.md | 2 +- docset/winserver2016-ps/nettcpip/Get-NetOffloadGlobalSetting.md | 2 +- docset/winserver2016-ps/nettcpip/Get-NetPrefixPolicy.md | 2 +- docset/winserver2016-ps/nettcpip/Get-NetRoute.md | 2 +- docset/winserver2016-ps/nettcpip/Get-NetTCPConnection.md | 2 +- docset/winserver2016-ps/nettcpip/Get-NetTCPSetting.md | 2 +- docset/winserver2016-ps/nettcpip/Get-NetTransportFilter.md | 2 +- docset/winserver2016-ps/nettcpip/Get-NetUDPEndpoint.md | 2 +- docset/winserver2016-ps/nettcpip/Get-NetUDPSetting.md | 2 +- docset/winserver2016-ps/nettcpip/New-NetIPAddress.md | 2 +- docset/winserver2016-ps/nettcpip/New-NetNeighbor.md | 2 +- docset/winserver2016-ps/nettcpip/New-NetRoute.md | 2 +- docset/winserver2016-ps/nettcpip/New-NetTransportFilter.md | 2 +- docset/winserver2016-ps/nettcpip/Remove-NetIPAddress.md | 2 +- docset/winserver2016-ps/nettcpip/Remove-NetNeighbor.md | 2 +- docset/winserver2016-ps/nettcpip/Remove-NetRoute.md | 2 +- docset/winserver2016-ps/nettcpip/Remove-NetTransportFilter.md | 2 +- docset/winserver2016-ps/nettcpip/Set-NetIPAddress.md | 2 +- docset/winserver2016-ps/nettcpip/Set-NetIPInterface.md | 2 +- docset/winserver2016-ps/nettcpip/Set-NetIPv4Protocol.md | 2 +- docset/winserver2016-ps/nettcpip/Set-NetIPv6Protocol.md | 2 +- docset/winserver2016-ps/nettcpip/Set-NetNeighbor.md | 2 +- docset/winserver2016-ps/nettcpip/Set-NetOffloadGlobalSetting.md | 2 +- docset/winserver2016-ps/nettcpip/Set-NetRoute.md | 2 +- docset/winserver2016-ps/nettcpip/Set-NetTCPSetting.md | 2 +- docset/winserver2016-ps/nettcpip/Set-NetUDPSetting.md | 2 +- docset/winserver2016-ps/nettcpip/Test-NetConnection.md | 2 +- .../netwnv/Get-NetVirtualizationCustomerRoute.md | 2 +- docset/winserver2016-ps/netwnv/Get-NetVirtualizationGlobal.md | 2 +- .../netwnv/Get-NetVirtualizationLookupRecord.md | 2 +- .../netwnv/Get-NetVirtualizationProviderAddress.md | 2 +- .../netwnv/Get-NetVirtualizationProviderRoute.md | 2 +- .../netwnv/New-NetVirtualizationCustomerRoute.md | 2 +- .../netwnv/New-NetVirtualizationLookupRecord.md | 2 +- .../netwnv/New-NetVirtualizationProviderAddress.md | 2 +- .../netwnv/New-NetVirtualizationProviderRoute.md | 2 +- .../netwnv/Remove-NetVirtualizationCustomerRoute.md | 2 +- .../netwnv/Remove-NetVirtualizationLookupRecord.md | 2 +- .../netwnv/Remove-NetVirtualizationProviderAddress.md | 2 +- .../netwnv/Remove-NetVirtualizationProviderRoute.md | 2 +- .../winserver2016-ps/netwnv/Select-NetVirtualizationNextHop.md | 2 +- .../netwnv/Set-NetVirtualizationCustomerRoute.md | 2 +- docset/winserver2016-ps/netwnv/Set-NetVirtualizationGlobal.md | 2 +- .../netwnv/Set-NetVirtualizationLookupRecord.md | 2 +- .../netwnv/Set-NetVirtualizationProviderAddress.md | 2 +- .../netwnv/Set-NetVirtualizationProviderRoute.md | 2 +- .../networkconnectivitystatus/Get-DAConnectionStatus.md | 2 +- .../networkconnectivitystatus/Get-NCSIPolicyConfiguration.md | 2 +- .../networkconnectivitystatus/Reset-NCSIPolicyConfiguration.md | 2 +- .../networkconnectivitystatus/Set-NCSIPolicyConfiguration.md | 2 +- .../networkcontroller/Add-NetworkControllerNode.md | 2 +- .../networkcontroller/Clear-NetworkControllerNodeContent.md | 2 +- .../networkcontroller/Disable-NetworkControllerNode.md | 2 +- .../networkcontroller/Enable-NetworkControllerNode.md | 2 +- .../winserver2016-ps/networkcontroller/Get-NetworkController.md | 2 +- .../networkcontroller/Get-NetworkControllerAccessControlList.md | 2 +- .../Get-NetworkControllerAccessControlListRule.md | 2 +- .../networkcontroller/Get-NetworkControllerCluster.md | 2 +- .../networkcontroller/Get-NetworkControllerConnectivityCheck.md | 2 +- .../Get-NetworkControllerConnectivityCheckResult.md | 2 +- .../networkcontroller/Get-NetworkControllerCredential.md | 2 +- .../networkcontroller/Get-NetworkControllerDiagnostic.md | 2 +- .../networkcontroller/Get-NetworkControllerFabricRoute.md | 2 +- .../networkcontroller/Get-NetworkControllerGateway.md | 2 +- .../networkcontroller/Get-NetworkControllerGatewayPool.md | 2 +- .../Get-NetworkControllerInternalResourceInstances.md | 2 +- .../networkcontroller/Get-NetworkControllerIpPool.md | 2 +- .../networkcontroller/Get-NetworkControllerLoadBalancer.md | 2 +- .../Get-NetworkControllerLoadBalancerBackendAddressPool.md | 2 +- .../Get-NetworkControllerLoadBalancerConfiguration.md | 2 +- .../Get-NetworkControllerLoadBalancerFrontendIpConfiguration.md | 2 +- .../Get-NetworkControllerLoadBalancerInboundNatRule.md | 2 +- .../networkcontroller/Get-NetworkControllerLoadBalancerMux.md | 2 +- .../Get-NetworkControllerLoadBalancerOutboundNatRule.md | 2 +- .../networkcontroller/Get-NetworkControllerLoadBalancerProbe.md | 2 +- .../networkcontroller/Get-NetworkControllerLoadBalancingRule.md | 2 +- .../networkcontroller/Get-NetworkControllerLogicalNetwork.md | 2 +- .../networkcontroller/Get-NetworkControllerLogicalSubnet.md | 2 +- .../networkcontroller/Get-NetworkControllerMacPool.md | 2 +- .../networkcontroller/Get-NetworkControllerNetworkInterface.md | 2 +- .../Get-NetworkControllerNetworkInterfaceIpConfiguration.md | 2 +- .../networkcontroller/Get-NetworkControllerNode.md | 2 +- .../networkcontroller/Get-NetworkControllerPublicIpAddress.md | 2 +- .../networkcontroller/Get-NetworkControllerRoute.md | 2 +- .../networkcontroller/Get-NetworkControllerRouteTable.md | 2 +- .../networkcontroller/Get-NetworkControllerServer.md | 2 +- .../networkcontroller/Get-NetworkControllerServerInterface.md | 2 +- .../networkcontroller/Get-NetworkControllerServiceInsertion.md | 2 +- .../networkcontroller/Get-NetworkControllerState.md | 2 +- .../networkcontroller/Get-NetworkControllerStatistics.md | 2 +- .../networkcontroller/Get-NetworkControllerVirtualGateway.md | 2 +- .../Get-NetworkControllerVirtualGatewayBgpPeer.md | 2 +- .../Get-NetworkControllerVirtualGatewayBgpRouter.md | 2 +- .../Get-NetworkControllerVirtualGatewayNetworkConnection.md | 2 +- .../Get-NetworkControllerVirtualGatewayPolicyMap.md | 2 +- .../networkcontroller/Get-NetworkControllerVirtualNetwork.md | 2 +- .../Get-NetworkControllerVirtualNetworkConfiguration.md | 2 +- .../networkcontroller/Get-NetworkControllerVirtualServer.md | 2 +- .../networkcontroller/Get-NetworkControllerVirtualSubnet.md | 2 +- .../Get-NetworkControllerVirtualSwitchConfiguration.md | 2 +- .../networkcontroller/Install-NetworkController.md | 2 +- .../networkcontroller/Install-NetworkControllerCluster.md | 2 +- .../Invoke-NetworkControllerConnectivityCheck.md | 2 +- .../networkcontroller/Invoke-NetworkControllerState.md | 2 +- .../networkcontroller/New-NetworkControllerAccessControlList.md | 2 +- .../New-NetworkControllerAccessControlListRule.md | 2 +- .../networkcontroller/New-NetworkControllerCredential.md | 2 +- .../networkcontroller/New-NetworkControllerFabricRoute.md | 2 +- .../networkcontroller/New-NetworkControllerGateway.md | 2 +- .../networkcontroller/New-NetworkControllerGatewayPool.md | 2 +- .../networkcontroller/New-NetworkControllerIpPool.md | 2 +- .../networkcontroller/New-NetworkControllerLoadBalancer.md | 2 +- .../New-NetworkControllerLoadBalancerBackendAddressPool.md | 2 +- .../New-NetworkControllerLoadBalancerConfiguration.md | 2 +- .../New-NetworkControllerLoadBalancerFrontendIpConfiguration.md | 2 +- .../New-NetworkControllerLoadBalancerInboundNatRule.md | 2 +- .../networkcontroller/New-NetworkControllerLoadBalancerMux.md | 2 +- .../New-NetworkControllerLoadBalancerOutboundNatRule.md | 2 +- .../networkcontroller/New-NetworkControllerLoadBalancerProbe.md | 2 +- .../networkcontroller/New-NetworkControllerLoadBalancingRule.md | 2 +- .../networkcontroller/New-NetworkControllerLogicalNetwork.md | 2 +- .../networkcontroller/New-NetworkControllerLogicalSubnet.md | 2 +- .../networkcontroller/New-NetworkControllerMacPool.md | 2 +- .../networkcontroller/New-NetworkControllerNetworkInterface.md | 2 +- .../New-NetworkControllerNetworkInterfaceIpConfiguration.md | 2 +- .../networkcontroller/New-NetworkControllerNodeObject.md | 2 +- .../networkcontroller/New-NetworkControllerPublicIpAddress.md | 2 +- .../networkcontroller/New-NetworkControllerRoute.md | 2 +- .../networkcontroller/New-NetworkControllerRouteTable.md | 2 +- .../networkcontroller/New-NetworkControllerServer.md | 2 +- .../networkcontroller/New-NetworkControllerServerInterface.md | 2 +- .../networkcontroller/New-NetworkControllerServiceInsertion.md | 2 +- .../networkcontroller/New-NetworkControllerVirtualGateway.md | 2 +- .../New-NetworkControllerVirtualGatewayBgpPeer.md | 2 +- .../New-NetworkControllerVirtualGatewayBgpRouter.md | 2 +- .../New-NetworkControllerVirtualGatewayNetworkConnection.md | 2 +- .../New-NetworkControllerVirtualGatewayPolicyMap.md | 2 +- .../networkcontroller/New-NetworkControllerVirtualNetwork.md | 2 +- .../networkcontroller/New-NetworkControllerVirtualServer.md | 2 +- .../networkcontroller/New-NetworkControllerVirtualSubnet.md | 2 +- .../Remove-NetworkControllerAccessControlList.md | 2 +- .../Remove-NetworkControllerAccessControlListRule.md | 2 +- .../networkcontroller/Remove-NetworkControllerCredential.md | 2 +- .../networkcontroller/Remove-NetworkControllerFabricRoute.md | 2 +- .../networkcontroller/Remove-NetworkControllerGateway.md | 2 +- .../networkcontroller/Remove-NetworkControllerGatewayPool.md | 2 +- .../networkcontroller/Remove-NetworkControllerIpPool.md | 2 +- .../networkcontroller/Remove-NetworkControllerLoadBalancer.md | 2 +- .../Remove-NetworkControllerLoadBalancerBackendAddressPool.md | 2 +- .../Remove-NetworkControllerLoadBalancerConfiguration.md | 2 +- ...move-NetworkControllerLoadBalancerFrontendIpConfiguration.md | 2 +- .../Remove-NetworkControllerLoadBalancerInboundNatRule.md | 2 +- .../Remove-NetworkControllerLoadBalancerMux.md | 2 +- .../Remove-NetworkControllerLoadBalancerOutboundNatRule.md | 2 +- .../Remove-NetworkControllerLoadBalancerProbe.md | 2 +- .../Remove-NetworkControllerLoadBalancingRule.md | 2 +- .../networkcontroller/Remove-NetworkControllerLogicalNetwork.md | 2 +- .../networkcontroller/Remove-NetworkControllerLogicalSubnet.md | 2 +- .../networkcontroller/Remove-NetworkControllerMacPool.md | 2 +- .../Remove-NetworkControllerNetworkInterface.md | 2 +- .../Remove-NetworkControllerNetworkInterfaceIpConfiguration.md | 2 +- .../networkcontroller/Remove-NetworkControllerNode.md | 2 +- .../Remove-NetworkControllerPublicIpAddress.md | 2 +- .../networkcontroller/Remove-NetworkControllerRoute.md | 2 +- .../networkcontroller/Remove-NetworkControllerRouteTable.md | 2 +- .../networkcontroller/Remove-NetworkControllerServer.md | 2 +- .../Remove-NetworkControllerServerInterface.md | 2 +- .../Remove-NetworkControllerServiceInsertion.md | 2 +- .../networkcontroller/Remove-NetworkControllerVirtualGateway.md | 2 +- .../Remove-NetworkControllerVirtualGatewayBgpPeer.md | 2 +- .../Remove-NetworkControllerVirtualGatewayBgpRouter.md | 2 +- .../Remove-NetworkControllerVirtualGatewayNetworkConnection.md | 2 +- .../Remove-NetworkControllerVirtualGatewayPolicyMap.md | 2 +- .../networkcontroller/Remove-NetworkControllerVirtualNetwork.md | 2 +- .../networkcontroller/Remove-NetworkControllerVirtualServer.md | 2 +- .../networkcontroller/Remove-NetworkControllerVirtualSubnet.md | 2 +- .../networkcontroller/Repair-NetworkControllerCluster.md | 2 +- .../winserver2016-ps/networkcontroller/Set-NetworkController.md | 2 +- .../networkcontroller/Set-NetworkControllerCluster.md | 2 +- .../networkcontroller/Set-NetworkControllerDiagnostic.md | 2 +- .../networkcontroller/Set-NetworkControllerNode.md | 2 +- .../Set-NetworkControllerVirtualNetworkConfiguration.md | 2 +- .../Set-NetworkControllerVirtualSwitchConfiguration.md | 2 +- .../networkcontroller/Uninstall-NetworkController.md | 2 +- .../networkcontroller/Uninstall-NetworkControllerCluster.md | 2 +- .../networkcontroller/Update-NetworkController.md | 2 +- .../networkcontrollerdiagnostics/Debug-NetworkController.md | 2 +- .../Debug-NetworkControllerConfigurationState.md | 2 +- .../Debug-ServiceFabricNodeStatus.md | 2 +- .../Get-NetworkControllerDeploymentInfo.md | 2 +- .../Get-NetworkControllerReplica.md | 2 +- .../networkloadbalancingclusters/Add-NlbClusterNode.md | 2 +- .../networkloadbalancingclusters/Add-NlbClusterNodeDip.md | 2 +- .../networkloadbalancingclusters/Add-NlbClusterPortRule.md | 2 +- .../networkloadbalancingclusters/Add-NlbClusterVip.md | 2 +- .../networkloadbalancingclusters/Disable-NlbClusterPortRule.md | 2 +- .../networkloadbalancingclusters/Enable-NlbClusterPortRule.md | 2 +- .../networkloadbalancingclusters/Get-NlbCluster.md | 2 +- .../networkloadbalancingclusters/Get-NlbClusterDriverInfo.md | 2 +- .../networkloadbalancingclusters/Get-NlbClusterNode.md | 2 +- .../networkloadbalancingclusters/Get-NlbClusterNodeDip.md | 2 +- .../Get-NlbClusterNodeNetworkInterface.md | 2 +- .../networkloadbalancingclusters/Get-NlbClusterPortRule.md | 2 +- .../networkloadbalancingclusters/Get-NlbClusterVip.md | 2 +- .../networkloadbalancingclusters/New-NlbCluster.md | 2 +- .../networkloadbalancingclusters/New-NlbClusterIpv6Address.md | 2 +- .../networkloadbalancingclusters/Remove-NlbCluster.md | 2 +- .../networkloadbalancingclusters/Remove-NlbClusterNode.md | 2 +- .../networkloadbalancingclusters/Remove-NlbClusterNodeDip.md | 2 +- .../networkloadbalancingclusters/Remove-NlbClusterPortRule.md | 2 +- .../networkloadbalancingclusters/Remove-NlbClusterVip.md | 2 +- .../networkloadbalancingclusters/Resume-NlbCluster.md | 2 +- .../networkloadbalancingclusters/Resume-NlbClusterNode.md | 2 +- .../networkloadbalancingclusters/Set-NlbCluster.md | 2 +- .../networkloadbalancingclusters/Set-NlbClusterNode.md | 2 +- .../networkloadbalancingclusters/Set-NlbClusterNodeDip.md | 2 +- .../networkloadbalancingclusters/Set-NlbClusterPortRule.md | 2 +- .../Set-NlbClusterPortRuleNodeHandlingPriority.md | 2 +- .../Set-NlbClusterPortRuleNodeWeight.md | 2 +- .../networkloadbalancingclusters/Set-NlbClusterVip.md | 2 +- .../networkloadbalancingclusters/Start-NlbCluster.md | 2 +- .../networkloadbalancingclusters/Start-NlbClusterNode.md | 2 +- .../networkloadbalancingclusters/Stop-NlbCluster.md | 2 +- .../networkloadbalancingclusters/Stop-NlbClusterNode.md | 2 +- .../networkloadbalancingclusters/Suspend-NlbCluster.md | 2 +- .../networkloadbalancingclusters/Suspend-NlbClusterNode.md | 2 +- .../networkswitchmanager/Disable-NetworkSwitchEthernetPort.md | 2 +- .../networkswitchmanager/Disable-NetworkSwitchFeature.md | 2 +- .../networkswitchmanager/Disable-NetworkSwitchVlan.md | 2 +- .../networkswitchmanager/Enable-NetworkSwitchEthernetPort.md | 2 +- .../networkswitchmanager/Enable-NetworkSwitchFeature.md | 2 +- .../networkswitchmanager/Enable-NetworkSwitchVlan.md | 2 +- .../networkswitchmanager/Get-NetworkSwitchEthernetPort.md | 2 +- .../networkswitchmanager/Get-NetworkSwitchFeature.md | 2 +- .../networkswitchmanager/Get-NetworkSwitchGlobalData.md | 2 +- .../networkswitchmanager/Get-NetworkSwitchVlan.md | 2 +- .../networkswitchmanager/New-NetworkSwitchVlan.md | 2 +- .../Remove-NetworkSwitchEthernetPortIPAddress.md | 2 +- .../networkswitchmanager/Remove-NetworkSwitchVlan.md | 2 +- .../networkswitchmanager/Restore-NetworkSwitchConfiguration.md | 2 +- .../networkswitchmanager/Save-NetworkSwitchConfiguration.md | 2 +- .../Set-NetworkSwitchEthernetPortIPAddress.md | 2 +- .../networkswitchmanager/Set-NetworkSwitchPortMode.md | 2 +- .../networkswitchmanager/Set-NetworkSwitchPortProperty.md | 2 +- .../networkswitchmanager/Set-NetworkSwitchVlanProperty.md | 2 +- .../networktransition/Add-NetIPHttpsCertBinding.md | 2 +- .../networktransition/Disable-NetDnsTransitionConfiguration.md | 2 +- .../networktransition/Disable-NetIPHttpsProfile.md | 2 +- .../networktransition/Disable-NetNatTransitionConfiguration.md | 2 +- .../networktransition/Enable-NetDnsTransitionConfiguration.md | 2 +- .../networktransition/Enable-NetIPHttpsProfile.md | 2 +- .../networktransition/Enable-NetNatTransitionConfiguration.md | 2 +- .../networktransition/Get-Net6to4Configuration.md | 2 +- .../networktransition/Get-NetDnsTransitionConfiguration.md | 2 +- .../networktransition/Get-NetDnsTransitionMonitoring.md | 2 +- .../networktransition/Get-NetIPHttpsConfiguration.md | 2 +- .../winserver2016-ps/networktransition/Get-NetIPHttpsState.md | 2 +- .../networktransition/Get-NetIsatapConfiguration.md | 2 +- .../networktransition/Get-NetNatTransitionConfiguration.md | 2 +- .../networktransition/Get-NetNatTransitionMonitoring.md | 2 +- .../networktransition/Get-NetTeredoConfiguration.md | 2 +- docset/winserver2016-ps/networktransition/Get-NetTeredoState.md | 2 +- .../networktransition/New-NetIPHttpsConfiguration.md | 2 +- .../networktransition/New-NetNatTransitionConfiguration.md | 2 +- .../networktransition/Remove-NetIPHttpsCertBinding.md | 2 +- .../networktransition/Remove-NetIPHttpsConfiguration.md | 2 +- .../networktransition/Remove-NetNatTransitionConfiguration.md | 2 +- .../networktransition/Rename-NetIPHttpsConfiguration.md | 2 +- .../networktransition/Reset-Net6to4Configuration.md | 2 +- .../networktransition/Reset-NetDnsTransitionConfiguration.md | 2 +- .../networktransition/Reset-NetIPHttpsConfiguration.md | 2 +- .../networktransition/Reset-NetIsatapConfiguration.md | 2 +- .../networktransition/Reset-NetTeredoConfiguration.md | 2 +- .../networktransition/Set-Net6to4Configuration.md | 2 +- .../networktransition/Set-NetDnsTransitionConfiguration.md | 2 +- .../networktransition/Set-NetIPHttpsConfiguration.md | 2 +- .../networktransition/Set-NetIsatapConfiguration.md | 2 +- .../networktransition/Set-NetNatTransitionConfiguration.md | 2 +- .../networktransition/Set-NetTeredoConfiguration.md | 2 +- docset/winserver2016-ps/nfs/Disconnect-NfsSession.md | 2 +- docset/winserver2016-ps/nfs/Get-NfsClientConfiguration.md | 2 +- docset/winserver2016-ps/nfs/Get-NfsClientLock.md | 2 +- docset/winserver2016-ps/nfs/Get-NfsClientgroup.md | 2 +- docset/winserver2016-ps/nfs/Get-NfsMappedIdentity.md | 2 +- docset/winserver2016-ps/nfs/Get-NfsMappingStore.md | 2 +- docset/winserver2016-ps/nfs/Get-NfsMountedClient.md | 2 +- docset/winserver2016-ps/nfs/Get-NfsNetgroup.md | 2 +- docset/winserver2016-ps/nfs/Get-NfsNetgroupStore.md | 2 +- docset/winserver2016-ps/nfs/Get-NfsOpenFile.md | 2 +- docset/winserver2016-ps/nfs/Get-NfsServerConfiguration.md | 2 +- docset/winserver2016-ps/nfs/Get-NfsSession.md | 2 +- docset/winserver2016-ps/nfs/Get-NfsShare.md | 2 +- docset/winserver2016-ps/nfs/Get-NfsSharePermission.md | 2 +- docset/winserver2016-ps/nfs/Get-NfsStatistics.md | 2 +- docset/winserver2016-ps/nfs/Grant-NfsSharePermission.md | 2 +- docset/winserver2016-ps/nfs/Install-NfsMappingStore.md | 2 +- docset/winserver2016-ps/nfs/New-NfsClientgroup.md | 2 +- docset/winserver2016-ps/nfs/New-NfsMappedIdentity.md | 2 +- docset/winserver2016-ps/nfs/New-NfsNetgroup.md | 2 +- docset/winserver2016-ps/nfs/New-NfsShare.md | 2 +- docset/winserver2016-ps/nfs/Remove-NfsClientgroup.md | 2 +- docset/winserver2016-ps/nfs/Remove-NfsMappedIdentity.md | 2 +- docset/winserver2016-ps/nfs/Remove-NfsNetgroup.md | 2 +- docset/winserver2016-ps/nfs/Remove-NfsShare.md | 2 +- docset/winserver2016-ps/nfs/Rename-NfsClientgroup.md | 2 +- docset/winserver2016-ps/nfs/Reset-NfsStatistics.md | 2 +- docset/winserver2016-ps/nfs/Resolve-NfsMappedIdentity.md | 2 +- docset/winserver2016-ps/nfs/Revoke-NfsClientLock.md | 2 +- docset/winserver2016-ps/nfs/Revoke-NfsMountedClient.md | 2 +- docset/winserver2016-ps/nfs/Revoke-NfsOpenFile.md | 2 +- docset/winserver2016-ps/nfs/Revoke-NfsSharePermission.md | 2 +- docset/winserver2016-ps/nfs/Set-NfsClientConfiguration.md | 2 +- docset/winserver2016-ps/nfs/Set-NfsClientgroup.md | 2 +- docset/winserver2016-ps/nfs/Set-NfsMappedIdentity.md | 2 +- docset/winserver2016-ps/nfs/Set-NfsMappingStore.md | 2 +- docset/winserver2016-ps/nfs/Set-NfsNetgroup.md | 2 +- docset/winserver2016-ps/nfs/Set-NfsNetgroupStore.md | 2 +- docset/winserver2016-ps/nfs/Set-NfsServerConfiguration.md | 2 +- docset/winserver2016-ps/nfs/Set-NfsShare.md | 2 +- docset/winserver2016-ps/nfs/Test-NfsMappedIdentity.md | 2 +- docset/winserver2016-ps/nfs/Test-NfsMappingStore.md | 2 +- docset/winserver2016-ps/nps/Export-NpsConfiguration.md | 2 +- docset/winserver2016-ps/nps/Get-NpsRadiusClient.md | 2 +- docset/winserver2016-ps/nps/Get-NpsSharedSecretTemplate.md | 2 +- docset/winserver2016-ps/nps/Import-NpsConfiguration.md | 2 +- docset/winserver2016-ps/nps/New-NpsRadiusClient.md | 2 +- docset/winserver2016-ps/nps/Remove-NpsRadiusClient.md | 2 +- docset/winserver2016-ps/nps/Set-NpsRadiusClient.md | 2 +- docset/winserver2016-ps/pcsvdevice/Clear-PcsvDeviceLog.md | 2 +- docset/winserver2016-ps/pcsvdevice/Get-PcsvDevice.md | 2 +- docset/winserver2016-ps/pcsvdevice/Get-PcsvDeviceLog.md | 2 +- docset/winserver2016-ps/pcsvdevice/Restart-PcsvDevice.md | 2 +- .../pcsvdevice/Set-PcsvDeviceBootConfiguration.md | 2 +- .../pcsvdevice/Set-PcsvDeviceNetworkConfiguration.md | 2 +- .../winserver2016-ps/pcsvdevice/Set-PcsvDeviceUserPassword.md | 2 +- docset/winserver2016-ps/pcsvdevice/Start-PcsvDevice.md | 2 +- docset/winserver2016-ps/pcsvdevice/Stop-PcsvDevice.md | 2 +- .../pki/Add-CertificateEnrollmentPolicyServer.md | 2 +- docset/winserver2016-ps/pki/Export-Certificate.md | 2 +- docset/winserver2016-ps/pki/Export-PfxCertificate.md | 2 +- docset/winserver2016-ps/pki/Get-Certificate.md | 2 +- .../winserver2016-ps/pki/Get-CertificateAutoEnrollmentPolicy.md | 2 +- .../pki/Get-CertificateEnrollmentPolicyServer.md | 2 +- docset/winserver2016-ps/pki/Get-CertificateNotificationTask.md | 2 +- docset/winserver2016-ps/pki/Get-PfxData.md | 2 +- docset/winserver2016-ps/pki/Import-Certificate.md | 2 +- docset/winserver2016-ps/pki/Import-PfxCertificate.md | 2 +- docset/winserver2016-ps/pki/New-CertificateNotificationTask.md | 2 +- docset/winserver2016-ps/pki/New-SelfSignedCertificate.md | 2 +- .../pki/Remove-CertificateEnrollmentPolicyServer.md | 2 +- .../winserver2016-ps/pki/Remove-CertificateNotificationTask.md | 2 +- .../winserver2016-ps/pki/Set-CertificateAutoEnrollmentPolicy.md | 2 +- docset/winserver2016-ps/pki/Switch-Certificate.md | 2 +- docset/winserver2016-ps/pki/Test-Certificate.md | 2 +- .../platformidentifier/Get-PlatformIdentifier.md | 2 +- docset/winserver2016-ps/pnpdevice/Disable-PnpDevice.md | 2 +- docset/winserver2016-ps/pnpdevice/Enable-PnpDevice.md | 2 +- docset/winserver2016-ps/pnpdevice/Get-PnpDevice.md | 2 +- docset/winserver2016-ps/pnpdevice/Get-PnpDeviceProperty.md | 2 +- docset/winserver2016-ps/printmanagement/Add-Printer.md | 2 +- docset/winserver2016-ps/printmanagement/Add-PrinterDriver.md | 2 +- docset/winserver2016-ps/printmanagement/Add-PrinterPort.md | 2 +- .../winserver2016-ps/printmanagement/Get-PrintConfiguration.md | 2 +- docset/winserver2016-ps/printmanagement/Get-PrintJob.md | 2 +- docset/winserver2016-ps/printmanagement/Get-Printer.md | 2 +- docset/winserver2016-ps/printmanagement/Get-PrinterDriver.md | 2 +- docset/winserver2016-ps/printmanagement/Get-PrinterPort.md | 2 +- docset/winserver2016-ps/printmanagement/Get-PrinterProperty.md | 2 +- docset/winserver2016-ps/printmanagement/Read-PrinterNfcTag.md | 2 +- docset/winserver2016-ps/printmanagement/Remove-PrintJob.md | 2 +- docset/winserver2016-ps/printmanagement/Remove-Printer.md | 2 +- docset/winserver2016-ps/printmanagement/Remove-PrinterDriver.md | 2 +- docset/winserver2016-ps/printmanagement/Remove-PrinterPort.md | 2 +- docset/winserver2016-ps/printmanagement/Rename-Printer.md | 2 +- docset/winserver2016-ps/printmanagement/Restart-PrintJob.md | 2 +- docset/winserver2016-ps/printmanagement/Resume-PrintJob.md | 2 +- .../winserver2016-ps/printmanagement/Set-PrintConfiguration.md | 2 +- docset/winserver2016-ps/printmanagement/Set-Printer.md | 2 +- docset/winserver2016-ps/printmanagement/Set-PrinterProperty.md | 2 +- docset/winserver2016-ps/printmanagement/Suspend-PrintJob.md | 2 +- docset/winserver2016-ps/printmanagement/Write-PrinterNfcTag.md | 2 +- .../processmitigations/ConvertTo-ProcessMitigationPolicy.md | 2 +- .../processmitigations/Get-ProcessMitigation.md | 2 +- .../processmitigations/Set-ProcessMitigation.md | 2 +- docset/winserver2016-ps/provisioning/Export-Trace.md | 2 +- docset/winserver2016-ps/remoteaccess/Add-BgpCustomRoute.md | 2 +- docset/winserver2016-ps/remoteaccess/Add-BgpPeer.md | 2 +- docset/winserver2016-ps/remoteaccess/Add-BgpRouteAggregate.md | 2 +- docset/winserver2016-ps/remoteaccess/Add-BgpRouter.md | 2 +- docset/winserver2016-ps/remoteaccess/Add-BgpRoutingPolicy.md | 2 +- .../remoteaccess/Add-BgpRoutingPolicyForPeer.md | 2 +- docset/winserver2016-ps/remoteaccess/Add-DAAppServer.md | 2 +- docset/winserver2016-ps/remoteaccess/Add-DAClient.md | 2 +- .../remoteaccess/Add-DAClientDnsConfiguration.md | 2 +- docset/winserver2016-ps/remoteaccess/Add-DAEntryPoint.md | 2 +- docset/winserver2016-ps/remoteaccess/Add-DAMgmtServer.md | 2 +- .../winserver2016-ps/remoteaccess/Add-RemoteAccessIpFilter.md | 2 +- .../remoteaccess/Add-RemoteAccessLoadBalancerNode.md | 2 +- docset/winserver2016-ps/remoteaccess/Add-RemoteAccessRadius.md | 2 +- docset/winserver2016-ps/remoteaccess/Add-VpnIPAddressRange.md | 2 +- docset/winserver2016-ps/remoteaccess/Add-VpnS2SInterface.md | 2 +- docset/winserver2016-ps/remoteaccess/Add-VpnSstpProxyRule.md | 2 +- .../remoteaccess/Clear-BgpRouteFlapDampening.md | 2 +- .../remoteaccess/Clear-RemoteAccessInboxAccountingStore.md | 2 +- .../remoteaccess/Clear-VpnS2SInterfaceStatistics.md | 2 +- docset/winserver2016-ps/remoteaccess/Connect-VpnS2SInterface.md | 2 +- .../remoteaccess/Disable-BgpRouteFlapDampening.md | 2 +- docset/winserver2016-ps/remoteaccess/Disable-DAMultiSite.md | 2 +- .../remoteaccess/Disable-DAOtpAuthentication.md | 2 +- .../remoteaccess/Disable-RemoteAccessRoutingDomain.md | 2 +- .../winserver2016-ps/remoteaccess/Disconnect-VpnS2SInterface.md | 2 +- docset/winserver2016-ps/remoteaccess/Disconnect-VpnUser.md | 2 +- .../remoteaccess/Enable-BgpRouteFlapDampening.md | 2 +- docset/winserver2016-ps/remoteaccess/Enable-DAMultiSite.md | 2 +- .../winserver2016-ps/remoteaccess/Enable-DAOtpAuthentication.md | 2 +- .../remoteaccess/Enable-RemoteAccessRoutingDomain.md | 2 +- docset/winserver2016-ps/remoteaccess/Get-BgpCustomRoute.md | 2 +- docset/winserver2016-ps/remoteaccess/Get-BgpPeer.md | 2 +- docset/winserver2016-ps/remoteaccess/Get-BgpRouteAggregate.md | 2 +- .../winserver2016-ps/remoteaccess/Get-BgpRouteFlapDampening.md | 2 +- docset/winserver2016-ps/remoteaccess/Get-BgpRouteInformation.md | 2 +- docset/winserver2016-ps/remoteaccess/Get-BgpRouter.md | 2 +- docset/winserver2016-ps/remoteaccess/Get-BgpRoutingPolicy.md | 2 +- docset/winserver2016-ps/remoteaccess/Get-BgpStatistics.md | 2 +- docset/winserver2016-ps/remoteaccess/Get-DAAppServer.md | 2 +- docset/winserver2016-ps/remoteaccess/Get-DAClient.md | 2 +- .../remoteaccess/Get-DAClientDnsConfiguration.md | 2 +- docset/winserver2016-ps/remoteaccess/Get-DAEntryPoint.md | 2 +- docset/winserver2016-ps/remoteaccess/Get-DAEntryPointDC.md | 2 +- docset/winserver2016-ps/remoteaccess/Get-DAMgmtServer.md | 2 +- docset/winserver2016-ps/remoteaccess/Get-DAMultiSite.md | 2 +- .../remoteaccess/Get-DANetworkLocationServer.md | 2 +- docset/winserver2016-ps/remoteaccess/Get-DAOtpAuthentication.md | 2 +- docset/winserver2016-ps/remoteaccess/Get-DAServer.md | 2 +- docset/winserver2016-ps/remoteaccess/Get-RemoteAccess.md | 2 +- .../winserver2016-ps/remoteaccess/Get-RemoteAccessAccounting.md | 2 +- .../remoteaccess/Get-RemoteAccessConfiguration.md | 2 +- .../remoteaccess/Get-RemoteAccessConnectionStatistics.md | 2 +- .../remoteaccess/Get-RemoteAccessConnectionStatisticsSummary.md | 2 +- docset/winserver2016-ps/remoteaccess/Get-RemoteAccessHealth.md | 2 +- .../winserver2016-ps/remoteaccess/Get-RemoteAccessIpFilter.md | 2 +- .../remoteaccess/Get-RemoteAccessLoadBalancer.md | 2 +- docset/winserver2016-ps/remoteaccess/Get-RemoteAccessRadius.md | 2 +- .../remoteaccess/Get-RemoteAccessRoutingDomain.md | 2 +- .../remoteaccess/Get-RemoteAccessUserActivity.md | 2 +- .../remoteaccess/Get-RoutingProtocolPreference.md | 2 +- docset/winserver2016-ps/remoteaccess/Get-VpnAuthProtocol.md | 2 +- docset/winserver2016-ps/remoteaccess/Get-VpnS2SInterface.md | 2 +- .../remoteaccess/Get-VpnS2SInterfaceStatistics.md | 2 +- .../winserver2016-ps/remoteaccess/Get-VpnServerConfiguration.md | 2 +- docset/winserver2016-ps/remoteaccess/Get-VpnSstpProxyRule.md | 2 +- docset/winserver2016-ps/remoteaccess/Install-RemoteAccess.md | 2 +- docset/winserver2016-ps/remoteaccess/New-VpnSstpProxyRule.md | 2 +- docset/winserver2016-ps/remoteaccess/New-VpnTrafficSelector.md | 2 +- docset/winserver2016-ps/remoteaccess/Remove-BgpCustomRoute.md | 2 +- docset/winserver2016-ps/remoteaccess/Remove-BgpPeer.md | 2 +- .../winserver2016-ps/remoteaccess/Remove-BgpRouteAggregate.md | 2 +- docset/winserver2016-ps/remoteaccess/Remove-BgpRouter.md | 2 +- docset/winserver2016-ps/remoteaccess/Remove-BgpRoutingPolicy.md | 2 +- .../remoteaccess/Remove-BgpRoutingPolicyForPeer.md | 2 +- docset/winserver2016-ps/remoteaccess/Remove-DAAppServer.md | 2 +- docset/winserver2016-ps/remoteaccess/Remove-DAClient.md | 2 +- .../remoteaccess/Remove-DAClientDnsConfiguration.md | 2 +- docset/winserver2016-ps/remoteaccess/Remove-DAEntryPoint.md | 2 +- docset/winserver2016-ps/remoteaccess/Remove-DAMgmtServer.md | 2 +- .../remoteaccess/Remove-RemoteAccessIpFilter.md | 2 +- .../remoteaccess/Remove-RemoteAccessLoadBalancerNode.md | 2 +- .../winserver2016-ps/remoteaccess/Remove-RemoteAccessRadius.md | 2 +- .../winserver2016-ps/remoteaccess/Remove-VpnIPAddressRange.md | 2 +- docset/winserver2016-ps/remoteaccess/Remove-VpnS2SInterface.md | 2 +- docset/winserver2016-ps/remoteaccess/Remove-VpnSstpProxyRule.md | 2 +- docset/winserver2016-ps/remoteaccess/Set-BgpPeer.md | 2 +- docset/winserver2016-ps/remoteaccess/Set-BgpRouteAggregate.md | 2 +- .../winserver2016-ps/remoteaccess/Set-BgpRouteFlapDampening.md | 2 +- docset/winserver2016-ps/remoteaccess/Set-BgpRouter.md | 2 +- docset/winserver2016-ps/remoteaccess/Set-BgpRoutingPolicy.md | 2 +- .../remoteaccess/Set-BgpRoutingPolicyForPeer.md | 2 +- .../winserver2016-ps/remoteaccess/Set-DAAppServerConnection.md | 2 +- docset/winserver2016-ps/remoteaccess/Set-DAClient.md | 2 +- .../remoteaccess/Set-DAClientDnsConfiguration.md | 2 +- docset/winserver2016-ps/remoteaccess/Set-DAEntryPoint.md | 2 +- docset/winserver2016-ps/remoteaccess/Set-DAEntryPointDC.md | 2 +- docset/winserver2016-ps/remoteaccess/Set-DAMultiSite.md | 2 +- .../remoteaccess/Set-DANetworkLocationServer.md | 2 +- docset/winserver2016-ps/remoteaccess/Set-DAOtpAuthentication.md | 2 +- docset/winserver2016-ps/remoteaccess/Set-DAServer.md | 2 +- docset/winserver2016-ps/remoteaccess/Set-RemoteAccess.md | 2 +- .../winserver2016-ps/remoteaccess/Set-RemoteAccessAccounting.md | 2 +- .../remoteaccess/Set-RemoteAccessConfiguration.md | 2 +- .../remoteaccess/Set-RemoteAccessInboxAccountingStore.md | 2 +- .../winserver2016-ps/remoteaccess/Set-RemoteAccessIpFilter.md | 2 +- .../remoteaccess/Set-RemoteAccessLoadBalancer.md | 2 +- docset/winserver2016-ps/remoteaccess/Set-RemoteAccessRadius.md | 2 +- .../remoteaccess/Set-RemoteAccessRoutingDomain.md | 2 +- .../remoteaccess/Set-RoutingProtocolPreference.md | 2 +- docset/winserver2016-ps/remoteaccess/Set-VpnAuthProtocol.md | 2 +- docset/winserver2016-ps/remoteaccess/Set-VpnAuthType.md | 2 +- .../winserver2016-ps/remoteaccess/Set-VpnIPAddressAssignment.md | 2 +- docset/winserver2016-ps/remoteaccess/Set-VpnS2SInterface.md | 2 +- .../winserver2016-ps/remoteaccess/Set-VpnServerConfiguration.md | 2 +- docset/winserver2016-ps/remoteaccess/Set-VpnSstpProxyRule.md | 2 +- docset/winserver2016-ps/remoteaccess/Start-BgpPeer.md | 2 +- docset/winserver2016-ps/remoteaccess/Stop-BgpPeer.md | 2 +- docset/winserver2016-ps/remoteaccess/Uninstall-RemoteAccess.md | 2 +- docset/winserver2016-ps/remoteaccess/Update-DAMgmtServer.md | 2 +- docset/winserver2016-ps/remotedesktop/Add-RDServer.md | 2 +- docset/winserver2016-ps/remotedesktop/Add-RDSessionHost.md | 2 +- .../remotedesktop/Add-RDVirtualDesktopToCollection.md | 2 +- .../Disable-RDVirtualDesktopADMachineAccountReuse.md | 2 +- docset/winserver2016-ps/remotedesktop/Disconnect-RDUser.md | 2 +- .../Enable-RDVirtualDesktopADMachineAccountReuse.md | 2 +- .../remotedesktop/Export-RDPersonalSessionDesktopAssignment.md | 2 +- .../remotedesktop/Export-RDPersonalVirtualDesktopAssignment.md | 2 +- docset/winserver2016-ps/remotedesktop/Get-RDAvailableApp.md | 2 +- docset/winserver2016-ps/remotedesktop/Get-RDCertificate.md | 2 +- .../remotedesktop/Get-RDConnectionBrokerHighAvailability.md | 2 +- .../remotedesktop/Get-RDDeploymentGatewayConfiguration.md | 2 +- .../winserver2016-ps/remotedesktop/Get-RDFileTypeAssociation.md | 2 +- .../remotedesktop/Get-RDLicenseConfiguration.md | 2 +- .../remotedesktop/Get-RDPersonalSessionDesktopAssignment.md | 2 +- .../remotedesktop/Get-RDPersonalVirtualDesktopAssignment.md | 2 +- .../remotedesktop/Get-RDPersonalVirtualDesktopPatchSchedule.md | 2 +- docset/winserver2016-ps/remotedesktop/Get-RDRemoteApp.md | 2 +- docset/winserver2016-ps/remotedesktop/Get-RDRemoteDesktop.md | 2 +- docset/winserver2016-ps/remotedesktop/Get-RDServer.md | 2 +- .../winserver2016-ps/remotedesktop/Get-RDSessionCollection.md | 2 +- .../remotedesktop/Get-RDSessionCollectionConfiguration.md | 2 +- docset/winserver2016-ps/remotedesktop/Get-RDSessionHost.md | 2 +- docset/winserver2016-ps/remotedesktop/Get-RDUserSession.md | 2 +- docset/winserver2016-ps/remotedesktop/Get-RDVirtualDesktop.md | 2 +- .../remotedesktop/Get-RDVirtualDesktopCollection.md | 2 +- .../Get-RDVirtualDesktopCollectionConfiguration.md | 2 +- .../remotedesktop/Get-RDVirtualDesktopCollectionJobStatus.md | 2 +- .../remotedesktop/Get-RDVirtualDesktopConcurrency.md | 2 +- .../remotedesktop/Get-RDVirtualDesktopIdleCount.md | 2 +- .../remotedesktop/Get-RDVirtualDesktopTemplateExportPath.md | 2 +- docset/winserver2016-ps/remotedesktop/Get-RDWorkspace.md | 2 +- docset/winserver2016-ps/remotedesktop/Grant-RDOUAccess.md | 2 +- .../remotedesktop/Import-RDPersonalSessionDesktopAssignment.md | 2 +- .../remotedesktop/Import-RDPersonalVirtualDesktopAssignment.md | 2 +- docset/winserver2016-ps/remotedesktop/Invoke-RDUserLogoff.md | 2 +- docset/winserver2016-ps/remotedesktop/Move-RDVirtualDesktop.md | 2 +- docset/winserver2016-ps/remotedesktop/New-RDCertificate.md | 2 +- .../remotedesktop/New-RDPersonalVirtualDesktopPatchSchedule.md | 2 +- docset/winserver2016-ps/remotedesktop/New-RDRemoteApp.md | 2 +- .../winserver2016-ps/remotedesktop/New-RDSessionCollection.md | 2 +- .../winserver2016-ps/remotedesktop/New-RDSessionDeployment.md | 2 +- .../remotedesktop/New-RDVirtualDesktopCollection.md | 2 +- .../remotedesktop/New-RDVirtualDesktopDeployment.md | 2 +- .../remotedesktop/Remove-RDDatabaseConnectionString.md | 2 +- .../remotedesktop/Remove-RDPersonalSessionDesktopAssignment.md | 2 +- .../remotedesktop/Remove-RDPersonalVirtualDesktopAssignment.md | 2 +- .../Remove-RDPersonalVirtualDesktopPatchSchedule.md | 2 +- docset/winserver2016-ps/remotedesktop/Remove-RDRemoteApp.md | 2 +- docset/winserver2016-ps/remotedesktop/Remove-RDServer.md | 2 +- .../remotedesktop/Remove-RDSessionCollection.md | 2 +- docset/winserver2016-ps/remotedesktop/Remove-RDSessionHost.md | 2 +- .../remotedesktop/Remove-RDVirtualDesktopCollection.md | 2 +- .../remotedesktop/Remove-RDVirtualDesktopFromCollection.md | 2 +- docset/winserver2016-ps/remotedesktop/Send-RDUserMessage.md | 2 +- .../remotedesktop/Set-RDActiveManagementServer.md | 2 +- docset/winserver2016-ps/remotedesktop/Set-RDCertificate.md | 2 +- docset/winserver2016-ps/remotedesktop/Set-RDClientAccessName.md | 2 +- .../remotedesktop/Set-RDConnectionBrokerHighAvailability.md | 2 +- .../remotedesktop/Set-RDDatabaseConnectionString.md | 2 +- .../remotedesktop/Set-RDDeploymentGatewayConfiguration.md | 2 +- .../winserver2016-ps/remotedesktop/Set-RDFileTypeAssociation.md | 2 +- .../remotedesktop/Set-RDLicenseConfiguration.md | 2 +- .../remotedesktop/Set-RDPersonalSessionDesktopAssignment.md | 2 +- .../remotedesktop/Set-RDPersonalVirtualDesktopAssignment.md | 2 +- .../remotedesktop/Set-RDPersonalVirtualDesktopPatchSchedule.md | 2 +- docset/winserver2016-ps/remotedesktop/Set-RDRemoteApp.md | 2 +- docset/winserver2016-ps/remotedesktop/Set-RDRemoteDesktop.md | 2 +- .../remotedesktop/Set-RDSessionCollectionConfiguration.md | 2 +- docset/winserver2016-ps/remotedesktop/Set-RDSessionHost.md | 2 +- .../Set-RDVirtualDesktopCollectionConfiguration.md | 2 +- .../remotedesktop/Set-RDVirtualDesktopConcurrency.md | 2 +- .../remotedesktop/Set-RDVirtualDesktopIdleCount.md | 2 +- .../remotedesktop/Set-RDVirtualDesktopTemplateExportPath.md | 2 +- docset/winserver2016-ps/remotedesktop/Set-RDWorkspace.md | 2 +- .../remotedesktop/Stop-RDVirtualDesktopCollectionJob.md | 2 +- docset/winserver2016-ps/remotedesktop/Test-RDOUAccess.md | 2 +- .../remotedesktop/Test-RDVirtualDesktopADMachineAccountReuse.md | 2 +- .../remotedesktop/Update-RDVirtualDesktopCollection.md | 2 +- .../winserver2016-ps/remotedesktopservices/Convert-License.md | 2 +- docset/winserver2016-ps/scheduledtasks/Disable-ScheduledTask.md | 2 +- docset/winserver2016-ps/scheduledtasks/Enable-ScheduledTask.md | 2 +- docset/winserver2016-ps/scheduledtasks/Export-ScheduledTask.md | 2 +- .../scheduledtasks/Get-ClusteredScheduledTask.md | 2 +- docset/winserver2016-ps/scheduledtasks/Get-ScheduledTask.md | 2 +- docset/winserver2016-ps/scheduledtasks/Get-ScheduledTaskInfo.md | 2 +- docset/winserver2016-ps/scheduledtasks/New-ScheduledTask.md | 2 +- .../winserver2016-ps/scheduledtasks/New-ScheduledTaskAction.md | 2 +- .../scheduledtasks/New-ScheduledTaskPrincipal.md | 2 +- .../scheduledtasks/New-ScheduledTaskSettingsSet.md | 2 +- .../winserver2016-ps/scheduledtasks/New-ScheduledTaskTrigger.md | 2 +- .../scheduledtasks/Register-ClusteredScheduledTask.md | 2 +- .../winserver2016-ps/scheduledtasks/Register-ScheduledTask.md | 2 +- .../scheduledtasks/Set-ClusteredScheduledTask.md | 2 +- docset/winserver2016-ps/scheduledtasks/Set-ScheduledTask.md | 2 +- docset/winserver2016-ps/scheduledtasks/Start-ScheduledTask.md | 2 +- docset/winserver2016-ps/scheduledtasks/Stop-ScheduledTask.md | 2 +- .../scheduledtasks/Unregister-ClusteredScheduledTask.md | 2 +- .../winserver2016-ps/scheduledtasks/Unregister-ScheduledTask.md | 2 +- docset/winserver2016-ps/secureboot/Confirm-SecureBootUEFI.md | 2 +- docset/winserver2016-ps/secureboot/Format-SecureBootUEFI.md | 2 +- docset/winserver2016-ps/secureboot/Get-SecureBootPolicy.md | 2 +- docset/winserver2016-ps/secureboot/Get-SecureBootUEFI.md | 2 +- docset/winserver2016-ps/secureboot/Set-SecureBootUEFI.md | 2 +- docset/winserver2016-ps/servercore/Get-DisplayResolution.md | 2 +- docset/winserver2016-ps/servercore/Set-DisplayResolution.md | 2 +- .../winserver2016-ps/servermanagertasks/Get-SMCounterSample.md | 2 +- .../servermanagertasks/Get-SMPerformanceCollector.md | 2 +- .../servermanagertasks/Get-SMServerBpaResult.md | 2 +- .../servermanagertasks/Get-SMServerClusterName.md | 2 +- docset/winserver2016-ps/servermanagertasks/Get-SMServerEvent.md | 2 +- .../winserver2016-ps/servermanagertasks/Get-SMServerFeature.md | 2 +- .../servermanagertasks/Get-SMServerInventory.md | 2 +- .../winserver2016-ps/servermanagertasks/Get-SMServerService.md | 2 +- .../servermanagertasks/Remove-SMServerPerformanceLog.md | 2 +- .../servermanagertasks/Start-SMPerformanceCollector.md | 2 +- .../servermanagertasks/Stop-SMPerformanceCollector.md | 2 +- .../shieldedvmcmdlets/Get-KeyProtectorFromShieldingDataFile.md | 2 +- .../shieldedvmcmdlets/Get-ShieldedVMProvisioningStatus.md | 2 +- .../winserver2016-ps/shieldedvmcmdlets/Initialize-ShieldedVM.md | 2 +- .../shieldedvmcmdlets/New-ShieldedVMSpecializationDataFile.md | 2 +- .../shieldedvmcmdlets/Test-ShieldingDataApplicability.md | 2 +- .../shieldedvmdatafile/Import-ShieldingDataFile.md | 2 +- .../shieldedvmdatafile/New-ShieldingDataFile.md | 2 +- .../shieldedvmdatafile/New-VolumeIDQualifier.md | 2 +- .../shieldedvmdatafile/Save-ShieldedVMRecoveryKey.md | 2 +- .../shieldedvmdatafile/Save-VolumeSignatureCatalog.md | 2 +- .../shieldedvmdatafile/Unprotect-ShieldedVMRecoveryKey.md | 2 +- .../shieldedvmtemplate/Initialize-VMShieldingHelperVHD.md | 2 +- .../winserver2016-ps/shieldedvmtemplate/Protect-TemplateDisk.md | 2 +- docset/winserver2016-ps/smbshare/Block-SmbShareAccess.md | 2 +- docset/winserver2016-ps/smbshare/Close-SmbOpenFile.md | 2 +- docset/winserver2016-ps/smbshare/Close-SmbSession.md | 2 +- docset/winserver2016-ps/smbshare/Disable-SmbDelegation.md | 2 +- docset/winserver2016-ps/smbshare/Enable-SmbDelegation.md | 2 +- docset/winserver2016-ps/smbshare/Get-SmbBandwidthLimit.md | 2 +- docset/winserver2016-ps/smbshare/Get-SmbClientConfiguration.md | 2 +- .../winserver2016-ps/smbshare/Get-SmbClientNetworkInterface.md | 2 +- docset/winserver2016-ps/smbshare/Get-SmbConnection.md | 2 +- docset/winserver2016-ps/smbshare/Get-SmbDelegation.md | 2 +- docset/winserver2016-ps/smbshare/Get-SmbMapping.md | 2 +- .../winserver2016-ps/smbshare/Get-SmbMultichannelConnection.md | 2 +- .../winserver2016-ps/smbshare/Get-SmbMultichannelConstraint.md | 2 +- docset/winserver2016-ps/smbshare/Get-SmbOpenFile.md | 2 +- docset/winserver2016-ps/smbshare/Get-SmbServerConfiguration.md | 2 +- .../winserver2016-ps/smbshare/Get-SmbServerNetworkInterface.md | 2 +- docset/winserver2016-ps/smbshare/Get-SmbSession.md | 2 +- docset/winserver2016-ps/smbshare/Get-SmbShare.md | 2 +- docset/winserver2016-ps/smbshare/Get-SmbShareAccess.md | 2 +- docset/winserver2016-ps/smbshare/Grant-SmbShareAccess.md | 2 +- docset/winserver2016-ps/smbshare/New-SmbMapping.md | 2 +- .../winserver2016-ps/smbshare/New-SmbMultichannelConstraint.md | 2 +- docset/winserver2016-ps/smbshare/New-SmbShare.md | 2 +- docset/winserver2016-ps/smbshare/Remove-SmbBandwidthLimit.md | 2 +- docset/winserver2016-ps/smbshare/Remove-SmbMapping.md | 2 +- .../smbshare/Remove-SmbMultichannelConstraint.md | 2 +- docset/winserver2016-ps/smbshare/Remove-SmbShare.md | 2 +- docset/winserver2016-ps/smbshare/Revoke-SmbShareAccess.md | 2 +- docset/winserver2016-ps/smbshare/Set-SmbBandwidthLimit.md | 2 +- docset/winserver2016-ps/smbshare/Set-SmbClientConfiguration.md | 2 +- docset/winserver2016-ps/smbshare/Set-SmbPathAcl.md | 2 +- docset/winserver2016-ps/smbshare/Set-SmbServerConfiguration.md | 2 +- docset/winserver2016-ps/smbshare/Set-SmbShare.md | 2 +- docset/winserver2016-ps/smbshare/Unblock-SmbShareAccess.md | 2 +- .../smbshare/Update-SmbMultichannelConnection.md | 2 +- docset/winserver2016-ps/smbwitness/Get-SmbWitnessClient.md | 2 +- docset/winserver2016-ps/smbwitness/Move-SmbWitnessClient.md | 2 +- docset/winserver2016-ps/smisconfig/Register-SmisProvider.md | 2 +- docset/winserver2016-ps/smisconfig/Search-SmisProvider.md | 2 +- docset/winserver2016-ps/smisconfig/Unregister-SmisProvider.md | 2 +- .../softwareinventorylogging/Get-SilComputer.md | 2 +- docset/winserver2016-ps/softwareinventorylogging/Get-SilData.md | 2 +- .../winserver2016-ps/softwareinventorylogging/Get-SilLogging.md | 2 +- .../softwareinventorylogging/Get-SilSoftware.md | 2 +- .../softwareinventorylogging/Get-SilUalAccess.md | 2 +- .../softwareinventorylogging/Get-SilWindowsUpdate.md | 2 +- .../softwareinventorylogging/Publish-SilData.md | 2 +- .../winserver2016-ps/softwareinventorylogging/Set-SilLogging.md | 2 +- .../softwareinventorylogging/Start-SilLogging.md | 2 +- .../softwareinventorylogging/Stop-SilLogging.md | 2 +- docset/winserver2016-ps/startlayout/Export-StartLayout.md | 2 +- docset/winserver2016-ps/startlayout/Get-StartApps.md | 2 +- docset/winserver2016-ps/startlayout/Import-StartLayout.md | 2 +- docset/winserver2016-ps/storage/Add-InitiatorIdToMaskingSet.md | 2 +- docset/winserver2016-ps/storage/Add-PartitionAccessPath.md | 2 +- docset/winserver2016-ps/storage/Add-PhysicalDisk.md | 2 +- docset/winserver2016-ps/storage/Add-TargetPortToMaskingSet.md | 2 +- docset/winserver2016-ps/storage/Add-VirtualDiskToMaskingSet.md | 2 +- docset/winserver2016-ps/storage/Block-FileShareAccess.md | 2 +- docset/winserver2016-ps/storage/Clear-Disk.md | 2 +- docset/winserver2016-ps/storage/Clear-FileStorageTier.md | 2 +- docset/winserver2016-ps/storage/Connect-VirtualDisk.md | 2 +- docset/winserver2016-ps/storage/Debug-FileShare.md | 2 +- docset/winserver2016-ps/storage/Debug-StorageSubSystem.md | 2 +- docset/winserver2016-ps/storage/Debug-Volume.md | 2 +- .../storage/Disable-PhysicalDiskIdentification.md | 2 +- .../storage/Disable-StorageEnclosureIdentification.md | 2 +- .../winserver2016-ps/storage/Disable-StorageHighAvailability.md | 2 +- .../winserver2016-ps/storage/Disable-StorageMaintenanceMode.md | 2 +- docset/winserver2016-ps/storage/Disconnect-VirtualDisk.md | 2 +- docset/winserver2016-ps/storage/Dismount-DiskImage.md | 2 +- .../storage/Enable-PhysicalDiskIdentification.md | 2 +- .../storage/Enable-StorageEnclosureIdentification.md | 2 +- .../winserver2016-ps/storage/Enable-StorageHighAvailability.md | 2 +- .../winserver2016-ps/storage/Enable-StorageMaintenanceMode.md | 2 +- docset/winserver2016-ps/storage/Format-Volume.md | 2 +- docset/winserver2016-ps/storage/Get-DedupProperties.md | 2 +- docset/winserver2016-ps/storage/Get-Disk.md | 2 +- docset/winserver2016-ps/storage/Get-DiskImage.md | 2 +- docset/winserver2016-ps/storage/Get-DiskStorageNodeView.md | 2 +- docset/winserver2016-ps/storage/Get-FileIntegrity.md | 2 +- docset/winserver2016-ps/storage/Get-FileShare.md | 2 +- .../winserver2016-ps/storage/Get-FileShareAccessControlEntry.md | 2 +- docset/winserver2016-ps/storage/Get-FileStorageTier.md | 2 +- docset/winserver2016-ps/storage/Get-InitiatorId.md | 2 +- docset/winserver2016-ps/storage/Get-InitiatorPort.md | 2 +- docset/winserver2016-ps/storage/Get-MaskingSet.md | 2 +- .../winserver2016-ps/storage/Get-OffloadDataTransferSetting.md | 2 +- docset/winserver2016-ps/storage/Get-Partition.md | 2 +- docset/winserver2016-ps/storage/Get-PartitionSupportedSize.md | 2 +- docset/winserver2016-ps/storage/Get-PhysicalDisk.md | 2 +- .../winserver2016-ps/storage/Get-PhysicalDiskStorageNodeView.md | 2 +- docset/winserver2016-ps/storage/Get-PhysicalExtent.md | 2 +- .../winserver2016-ps/storage/Get-PhysicalExtentAssociation.md | 2 +- docset/winserver2016-ps/storage/Get-ResiliencySetting.md | 2 +- docset/winserver2016-ps/storage/Get-StorageAdvancedProperty.md | 2 +- docset/winserver2016-ps/storage/Get-StorageDiagnosticInfo.md | 2 +- docset/winserver2016-ps/storage/Get-StorageEnclosure.md | 2 +- .../storage/Get-StorageEnclosureStorageNodeView.md | 2 +- .../winserver2016-ps/storage/Get-StorageEnclosureVendorData.md | 2 +- docset/winserver2016-ps/storage/Get-StorageFaultDomain.md | 2 +- docset/winserver2016-ps/storage/Get-StorageFileServer.md | 2 +- .../winserver2016-ps/storage/Get-StorageFirmwareInformation.md | 2 +- docset/winserver2016-ps/storage/Get-StorageHealthAction.md | 2 +- docset/winserver2016-ps/storage/Get-StorageHealthReport.md | 2 +- docset/winserver2016-ps/storage/Get-StorageHealthSetting.md | 2 +- docset/winserver2016-ps/storage/Get-StorageJob.md | 2 +- docset/winserver2016-ps/storage/Get-StorageNode.md | 2 +- docset/winserver2016-ps/storage/Get-StoragePool.md | 2 +- docset/winserver2016-ps/storage/Get-StorageProvider.md | 2 +- .../winserver2016-ps/storage/Get-StorageReliabilityCounter.md | 2 +- docset/winserver2016-ps/storage/Get-StorageSetting.md | 2 +- docset/winserver2016-ps/storage/Get-StorageSubSystem.md | 2 +- docset/winserver2016-ps/storage/Get-StorageTier.md | 2 +- docset/winserver2016-ps/storage/Get-StorageTierSupportedSize.md | 2 +- docset/winserver2016-ps/storage/Get-SupportedClusterSizes.md | 2 +- docset/winserver2016-ps/storage/Get-SupportedFileSystems.md | 2 +- docset/winserver2016-ps/storage/Get-TargetPort.md | 2 +- docset/winserver2016-ps/storage/Get-TargetPortal.md | 2 +- docset/winserver2016-ps/storage/Get-VirtualDisk.md | 2 +- docset/winserver2016-ps/storage/Get-VirtualDiskSupportedSize.md | 2 +- docset/winserver2016-ps/storage/Get-Volume.md | 2 +- docset/winserver2016-ps/storage/Get-VolumeCorruptionCount.md | 2 +- docset/winserver2016-ps/storage/Get-VolumeScrubPolicy.md | 2 +- docset/winserver2016-ps/storage/Grant-FileShareAccess.md | 2 +- docset/winserver2016-ps/storage/Hide-VirtualDisk.md | 2 +- docset/winserver2016-ps/storage/Initialize-Disk.md | 2 +- docset/winserver2016-ps/storage/Mount-DiskImage.md | 2 +- docset/winserver2016-ps/storage/New-FileShare.md | 2 +- docset/winserver2016-ps/storage/New-MaskingSet.md | 2 +- docset/winserver2016-ps/storage/New-Partition.md | 2 +- docset/winserver2016-ps/storage/New-StorageFileServer.md | 2 +- docset/winserver2016-ps/storage/New-StoragePool.md | 2 +- .../winserver2016-ps/storage/New-StorageSubsystemVirtualDisk.md | 2 +- docset/winserver2016-ps/storage/New-StorageTier.md | 2 +- docset/winserver2016-ps/storage/New-VirtualDisk.md | 2 +- docset/winserver2016-ps/storage/New-VirtualDiskClone.md | 2 +- docset/winserver2016-ps/storage/New-VirtualDiskSnapshot.md | 2 +- docset/winserver2016-ps/storage/New-Volume.md | 2 +- docset/winserver2016-ps/storage/Optimize-StoragePool.md | 2 +- docset/winserver2016-ps/storage/Optimize-Volume.md | 2 +- docset/winserver2016-ps/storage/Register-StorageSubsystem.md | 2 +- docset/winserver2016-ps/storage/Remove-FileShare.md | 2 +- docset/winserver2016-ps/storage/Remove-InitiatorId.md | 2 +- .../storage/Remove-InitiatorIdFromMaskingSet.md | 2 +- docset/winserver2016-ps/storage/Remove-MaskingSet.md | 2 +- docset/winserver2016-ps/storage/Remove-Partition.md | 2 +- docset/winserver2016-ps/storage/Remove-PartitionAccessPath.md | 2 +- docset/winserver2016-ps/storage/Remove-PhysicalDisk.md | 2 +- docset/winserver2016-ps/storage/Remove-StorageFileServer.md | 2 +- docset/winserver2016-ps/storage/Remove-StorageHealthSetting.md | 2 +- docset/winserver2016-ps/storage/Remove-StoragePool.md | 2 +- docset/winserver2016-ps/storage/Remove-StorageTier.md | 2 +- .../winserver2016-ps/storage/Remove-TargetPortFromMaskingSet.md | 2 +- docset/winserver2016-ps/storage/Remove-VirtualDisk.md | 2 +- .../storage/Remove-VirtualDiskFromMaskingSet.md | 2 +- docset/winserver2016-ps/storage/Rename-MaskingSet.md | 2 +- docset/winserver2016-ps/storage/Repair-FileIntegrity.md | 2 +- docset/winserver2016-ps/storage/Repair-VirtualDisk.md | 2 +- docset/winserver2016-ps/storage/Repair-Volume.md | 2 +- docset/winserver2016-ps/storage/Reset-PhysicalDisk.md | 2 +- .../winserver2016-ps/storage/Reset-StorageReliabilityCounter.md | 2 +- docset/winserver2016-ps/storage/Resize-Partition.md | 2 +- docset/winserver2016-ps/storage/Resize-StorageTier.md | 2 +- docset/winserver2016-ps/storage/Resize-VirtualDisk.md | 2 +- docset/winserver2016-ps/storage/Revoke-FileShareAccess.md | 2 +- docset/winserver2016-ps/storage/Set-Disk.md | 2 +- docset/winserver2016-ps/storage/Set-FileIntegrity.md | 2 +- docset/winserver2016-ps/storage/Set-FileShare.md | 2 +- docset/winserver2016-ps/storage/Set-FileStorageTier.md | 2 +- docset/winserver2016-ps/storage/Set-InitiatorPort.md | 2 +- docset/winserver2016-ps/storage/Set-Partition.md | 2 +- docset/winserver2016-ps/storage/Set-PhysicalDisk.md | 2 +- docset/winserver2016-ps/storage/Set-ResiliencySetting.md | 2 +- docset/winserver2016-ps/storage/Set-StorageFileServer.md | 2 +- docset/winserver2016-ps/storage/Set-StorageHealthSetting.md | 2 +- docset/winserver2016-ps/storage/Set-StoragePool.md | 2 +- docset/winserver2016-ps/storage/Set-StorageProvider.md | 2 +- docset/winserver2016-ps/storage/Set-StorageSetting.md | 2 +- docset/winserver2016-ps/storage/Set-StorageSubSystem.md | 2 +- docset/winserver2016-ps/storage/Set-StorageTier.md | 2 +- docset/winserver2016-ps/storage/Set-VirtualDisk.md | 2 +- docset/winserver2016-ps/storage/Set-Volume.md | 2 +- docset/winserver2016-ps/storage/Set-VolumeScrubPolicy.md | 2 +- docset/winserver2016-ps/storage/Show-VirtualDisk.md | 2 +- docset/winserver2016-ps/storage/Start-StorageDiagnosticLog.md | 2 +- docset/winserver2016-ps/storage/Stop-StorageDiagnosticLog.md | 2 +- docset/winserver2016-ps/storage/Stop-StorageJob.md | 2 +- docset/winserver2016-ps/storage/Unblock-FileShareAccess.md | 2 +- docset/winserver2016-ps/storage/Unregister-StorageSubsystem.md | 2 +- docset/winserver2016-ps/storage/Update-Disk.md | 2 +- docset/winserver2016-ps/storage/Update-HostStorageCache.md | 2 +- docset/winserver2016-ps/storage/Update-StorageFirmware.md | 2 +- docset/winserver2016-ps/storage/Update-StoragePool.md | 2 +- docset/winserver2016-ps/storage/Update-StorageProviderCache.md | 2 +- docset/winserver2016-ps/storage/Write-VolumeCache.md | 2 +- docset/winserver2016-ps/storageqos/Get-StorageQoSFlow.md | 2 +- docset/winserver2016-ps/storageqos/Get-StorageQosPolicy.md | 2 +- docset/winserver2016-ps/storageqos/Get-StorageQosPolicyStore.md | 2 +- docset/winserver2016-ps/storageqos/Get-StorageQosVolume.md | 2 +- docset/winserver2016-ps/storageqos/New-StorageQosPolicy.md | 2 +- docset/winserver2016-ps/storageqos/Remove-StorageQosPolicy.md | 2 +- docset/winserver2016-ps/storageqos/Set-StorageQosPolicy.md | 2 +- docset/winserver2016-ps/storageqos/Set-StorageQosPolicyStore.md | 2 +- docset/winserver2016-ps/storagereplica/Clear-SRMetadata.md | 2 +- .../winserver2016-ps/storagereplica/Export-SRConfiguration.md | 2 +- docset/winserver2016-ps/storagereplica/Get-SRAccess.md | 2 +- docset/winserver2016-ps/storagereplica/Get-SRDelegation.md | 2 +- docset/winserver2016-ps/storagereplica/Get-SRGroup.md | 2 +- .../winserver2016-ps/storagereplica/Get-SRNetworkConstraint.md | 2 +- docset/winserver2016-ps/storagereplica/Get-SRPartnership.md | 2 +- docset/winserver2016-ps/storagereplica/Grant-SRAccess.md | 2 +- docset/winserver2016-ps/storagereplica/Grant-SRDelegation.md | 2 +- docset/winserver2016-ps/storagereplica/New-SRGroup.md | 2 +- docset/winserver2016-ps/storagereplica/New-SRPartnership.md | 2 +- docset/winserver2016-ps/storagereplica/Remove-SRGroup.md | 2 +- .../storagereplica/Remove-SRNetworkConstraint.md | 2 +- docset/winserver2016-ps/storagereplica/Remove-SRPartnership.md | 2 +- docset/winserver2016-ps/storagereplica/Revoke-SRAccess.md | 2 +- docset/winserver2016-ps/storagereplica/Revoke-SRDelegation.md | 2 +- docset/winserver2016-ps/storagereplica/Set-SRGroup.md | 2 +- .../winserver2016-ps/storagereplica/Set-SRNetworkConstraint.md | 2 +- docset/winserver2016-ps/storagereplica/Set-SRPartnership.md | 2 +- docset/winserver2016-ps/storagereplica/Suspend-SRGroup.md | 2 +- docset/winserver2016-ps/storagereplica/Sync-SRGroup.md | 2 +- docset/winserver2016-ps/storagereplica/Test-SRTopology.md | 2 +- docset/winserver2016-ps/syncshare/Disable-SyncShare.md | 2 +- docset/winserver2016-ps/syncshare/Enable-SyncShare.md | 2 +- docset/winserver2016-ps/syncshare/Get-SyncServerSetting.md | 2 +- docset/winserver2016-ps/syncshare/Get-SyncShare.md | 2 +- docset/winserver2016-ps/syncshare/Get-SyncUserStatus.md | 2 +- docset/winserver2016-ps/syncshare/New-SyncShare.md | 2 +- docset/winserver2016-ps/syncshare/Remove-SyncShare.md | 2 +- docset/winserver2016-ps/syncshare/Repair-SyncShare.md | 2 +- docset/winserver2016-ps/syncshare/Set-SyncServerSetting.md | 2 +- docset/winserver2016-ps/syncshare/Set-SyncShare.md | 2 +- .../winserver2016-ps/systeminsights/Add-InsightsCapability.md | 2 +- .../systeminsights/Disable-InsightsCapability.md | 2 +- .../systeminsights/Disable-InsightsCapabilitySchedule.md | 2 +- .../systeminsights/Enable-InsightsCapability.md | 2 +- .../systeminsights/Enable-InsightsCapabilitySchedule.md | 2 +- .../winserver2016-ps/systeminsights/Get-InsightsCapability.md | 2 +- .../systeminsights/Get-InsightsCapabilityAction.md | 2 +- .../systeminsights/Get-InsightsCapabilityResult.md | 2 +- .../systeminsights/Get-InsightsCapabilitySchedule.md | 2 +- .../systeminsights/Invoke-InsightsCapability.md | 2 +- .../systeminsights/Remove-InsightsCapability.md | 2 +- .../systeminsights/Remove-InsightsCapabilityAction.md | 2 +- .../systeminsights/Set-InsightsCapabilityAction.md | 2 +- .../systeminsights/Set-InsightsCapabilitySchedule.md | 2 +- .../systeminsights/Update-InsightsCapability.md | 2 +- docset/winserver2016-ps/tls/Disable-TlsCipherSuite.md | 2 +- docset/winserver2016-ps/tls/Disable-TlsEccCurve.md | 2 +- docset/winserver2016-ps/tls/Disable-TlsSessionTicketKey.md | 2 +- docset/winserver2016-ps/tls/Enable-TlsCipherSuite.md | 2 +- docset/winserver2016-ps/tls/Enable-TlsEccCurve.md | 2 +- docset/winserver2016-ps/tls/Enable-TlsSessionTicketKey.md | 2 +- docset/winserver2016-ps/tls/Export-TlsSessionTicketKey.md | 2 +- docset/winserver2016-ps/tls/Get-TlsCipherSuite.md | 2 +- docset/winserver2016-ps/tls/Get-TlsEccCurve.md | 2 +- docset/winserver2016-ps/tls/New-TlsSessionTicketKey.md | 2 +- .../troubleshootingpack/Get-TroubleshootingPack.md | 2 +- .../troubleshootingpack/Invoke-TroubleshootingPack.md | 2 +- docset/winserver2016-ps/trustedplatformmodule/Clear-Tpm.md | 2 +- .../trustedplatformmodule/ConvertTo-TpmOwnerAuth.md | 2 +- .../trustedplatformmodule/Disable-TpmAutoProvisioning.md | 2 +- .../trustedplatformmodule/Enable-TpmAutoProvisioning.md | 2 +- docset/winserver2016-ps/trustedplatformmodule/Get-Tpm.md | 2 +- .../trustedplatformmodule/Get-TpmEndorsementKeyInfo.md | 2 +- .../trustedplatformmodule/Get-TpmSupportedFeature.md | 2 +- .../trustedplatformmodule/Import-TpmOwnerAuth.md | 2 +- docset/winserver2016-ps/trustedplatformmodule/Initialize-Tpm.md | 2 +- .../winserver2016-ps/trustedplatformmodule/Set-TpmOwnerAuth.md | 2 +- docset/winserver2016-ps/trustedplatformmodule/Unblock-Tpm.md | 2 +- docset/winserver2016-ps/uev/Clear-UevAppxPackage.md | 2 +- docset/winserver2016-ps/uev/Clear-UevConfiguration.md | 2 +- docset/winserver2016-ps/uev/Disable-Uev.md | 2 +- docset/winserver2016-ps/uev/Disable-UevAppxPackage.md | 2 +- docset/winserver2016-ps/uev/Disable-UevTemplate.md | 2 +- docset/winserver2016-ps/uev/Enable-Uev.md | 2 +- docset/winserver2016-ps/uev/Enable-UevAppxPackage.md | 2 +- docset/winserver2016-ps/uev/Enable-UevTemplate.md | 2 +- docset/winserver2016-ps/uev/Export-UevConfiguration.md | 2 +- docset/winserver2016-ps/uev/Export-UevPackage.md | 2 +- docset/winserver2016-ps/uev/Get-UevAppxPackage.md | 2 +- docset/winserver2016-ps/uev/Get-UevConfiguration.md | 2 +- docset/winserver2016-ps/uev/Get-UevStatus.md | 2 +- docset/winserver2016-ps/uev/Get-UevTemplate.md | 2 +- docset/winserver2016-ps/uev/Get-UevTemplateProgram.md | 2 +- docset/winserver2016-ps/uev/Import-UevConfiguration.md | 2 +- docset/winserver2016-ps/uev/Register-UevTemplate.md | 2 +- docset/winserver2016-ps/uev/Repair-UevTemplateIndex.md | 2 +- docset/winserver2016-ps/uev/Restore-UevBackup.md | 2 +- docset/winserver2016-ps/uev/Restore-UevUserSetting.md | 2 +- docset/winserver2016-ps/uev/Set-UevConfiguration.md | 2 +- docset/winserver2016-ps/uev/Set-UevTemplateProfile.md | 2 +- docset/winserver2016-ps/uev/Test-UevTemplate.md | 2 +- docset/winserver2016-ps/uev/Unregister-UevTemplate.md | 2 +- docset/winserver2016-ps/uev/Update-UevTemplate.md | 2 +- docset/winserver2016-ps/updateservices/Add-WsusComputer.md | 2 +- .../winserver2016-ps/updateservices/Add-WsusDynamicCategory.md | 2 +- docset/winserver2016-ps/updateservices/Approve-WsusUpdate.md | 2 +- docset/winserver2016-ps/updateservices/Deny-WsusUpdate.md | 2 +- .../winserver2016-ps/updateservices/Get-WsusClassification.md | 2 +- docset/winserver2016-ps/updateservices/Get-WsusComputer.md | 2 +- .../winserver2016-ps/updateservices/Get-WsusDynamicCategory.md | 2 +- docset/winserver2016-ps/updateservices/Get-WsusProduct.md | 2 +- docset/winserver2016-ps/updateservices/Get-WsusServer.md | 2 +- docset/winserver2016-ps/updateservices/Get-WsusUpdate.md | 2 +- .../winserver2016-ps/updateservices/Invoke-WsusServerCleanup.md | 2 +- .../updateservices/Remove-WsusDynamicCategory.md | 2 +- .../winserver2016-ps/updateservices/Set-WsusClassification.md | 2 +- .../winserver2016-ps/updateservices/Set-WsusDynamicCategory.md | 2 +- docset/winserver2016-ps/updateservices/Set-WsusProduct.md | 2 +- .../updateservices/Set-WsusServerSynchronization.md | 2 +- docset/winserver2016-ps/useraccesslogging/Disable-Ual.md | 2 +- docset/winserver2016-ps/useraccesslogging/Enable-Ual.md | 2 +- docset/winserver2016-ps/useraccesslogging/Get-Ual.md | 2 +- docset/winserver2016-ps/useraccesslogging/Get-UalDailyAccess.md | 2 +- .../useraccesslogging/Get-UalDailyDeviceAccess.md | 2 +- .../useraccesslogging/Get-UalDailyUserAccess.md | 2 +- .../winserver2016-ps/useraccesslogging/Get-UalDeviceAccess.md | 2 +- docset/winserver2016-ps/useraccesslogging/Get-UalDns.md | 2 +- docset/winserver2016-ps/useraccesslogging/Get-UalHyperV.md | 2 +- docset/winserver2016-ps/useraccesslogging/Get-UalOverview.md | 2 +- .../winserver2016-ps/useraccesslogging/Get-UalServerDevice.md | 2 +- docset/winserver2016-ps/useraccesslogging/Get-UalServerUser.md | 2 +- docset/winserver2016-ps/useraccesslogging/Get-UalSystemId.md | 2 +- docset/winserver2016-ps/useraccesslogging/Get-UalUserAccess.md | 2 +- docset/winserver2016-ps/vamt/Add-VamtProductKey.md | 2 +- docset/winserver2016-ps/vamt/Export-VamtData.md | 2 +- docset/winserver2016-ps/vamt/Find-VamtManagedMachine.md | 2 +- docset/winserver2016-ps/vamt/Get-VamtConfirmationId.md | 2 +- docset/winserver2016-ps/vamt/Get-VamtProduct.md | 2 +- docset/winserver2016-ps/vamt/Get-VamtProductKey.md | 2 +- docset/winserver2016-ps/vamt/Import-VamtData.md | 2 +- docset/winserver2016-ps/vamt/Initialize-VamtData.md | 2 +- docset/winserver2016-ps/vamt/Install-VamtConfirmationId.md | 2 +- docset/winserver2016-ps/vamt/Install-VamtProductActivation.md | 2 +- docset/winserver2016-ps/vamt/Install-VamtProductKey.md | 2 +- docset/winserver2016-ps/vamt/Update-VamtProduct.md | 2 +- docset/winserver2016-ps/vpnclient/Add-VpnConnection.md | 2 +- docset/winserver2016-ps/vpnclient/Add-VpnConnectionRoute.md | 2 +- .../vpnclient/Add-VpnConnectionTriggerApplication.md | 2 +- .../vpnclient/Add-VpnConnectionTriggerDnsConfiguration.md | 2 +- .../vpnclient/Add-VpnConnectionTriggerTrustedNetwork.md | 2 +- docset/winserver2016-ps/vpnclient/Get-VpnConnection.md | 2 +- docset/winserver2016-ps/vpnclient/Get-VpnConnectionTrigger.md | 2 +- docset/winserver2016-ps/vpnclient/New-EapConfiguration.md | 2 +- docset/winserver2016-ps/vpnclient/New-VpnServerAddress.md | 2 +- docset/winserver2016-ps/vpnclient/Remove-VpnConnection.md | 2 +- docset/winserver2016-ps/vpnclient/Remove-VpnConnectionRoute.md | 2 +- .../vpnclient/Remove-VpnConnectionTriggerApplication.md | 2 +- .../vpnclient/Remove-VpnConnectionTriggerDnsConfiguration.md | 2 +- .../vpnclient/Remove-VpnConnectionTriggerTrustedNetwork.md | 2 +- docset/winserver2016-ps/vpnclient/Set-VpnConnection.md | 2 +- .../vpnclient/Set-VpnConnectionIPsecConfiguration.md | 2 +- docset/winserver2016-ps/vpnclient/Set-VpnConnectionProxy.md | 2 +- .../vpnclient/Set-VpnConnectionTriggerDnsConfiguration.md | 2 +- .../vpnclient/Set-VpnConnectionTriggerTrustedNetwork.md | 2 +- docset/winserver2016-ps/wdac/Add-OdbcDsn.md | 2 +- docset/winserver2016-ps/wdac/Disable-OdbcPerfCounter.md | 2 +- docset/winserver2016-ps/wdac/Disable-WdacBidTrace.md | 2 +- docset/winserver2016-ps/wdac/Enable-OdbcPerfCounter.md | 2 +- docset/winserver2016-ps/wdac/Enable-WdacBidTrace.md | 2 +- docset/winserver2016-ps/wdac/Get-OdbcDriver.md | 2 +- docset/winserver2016-ps/wdac/Get-OdbcDsn.md | 2 +- docset/winserver2016-ps/wdac/Get-OdbcPerfCounter.md | 2 +- docset/winserver2016-ps/wdac/Get-WdacBidTrace.md | 2 +- docset/winserver2016-ps/wdac/Remove-OdbcDsn.md | 2 +- docset/winserver2016-ps/wdac/Set-OdbcDriver.md | 2 +- docset/winserver2016-ps/wdac/Set-OdbcDsn.md | 2 +- docset/winserver2016-ps/wds/Add-WdsDriverPackage.md | 2 +- docset/winserver2016-ps/wds/Approve-WdsClient.md | 2 +- docset/winserver2016-ps/wds/Copy-WdsInstallImage.md | 2 +- docset/winserver2016-ps/wds/Deny-WdsClient.md | 2 +- docset/winserver2016-ps/wds/Disable-WdsBootImage.md | 2 +- docset/winserver2016-ps/wds/Disable-WdsDriverPackage.md | 2 +- docset/winserver2016-ps/wds/Disable-WdsInstallImage.md | 2 +- docset/winserver2016-ps/wds/Disconnect-WdsMulticastClient.md | 2 +- docset/winserver2016-ps/wds/Enable-WdsBootImage.md | 2 +- docset/winserver2016-ps/wds/Enable-WdsDriverPackage.md | 2 +- docset/winserver2016-ps/wds/Enable-WdsInstallImage.md | 2 +- docset/winserver2016-ps/wds/Export-WdsBootImage.md | 2 +- docset/winserver2016-ps/wds/Export-WdsInstallImage.md | 2 +- docset/winserver2016-ps/wds/Get-WdsBootImage.md | 2 +- docset/winserver2016-ps/wds/Get-WdsClient.md | 2 +- docset/winserver2016-ps/wds/Get-WdsDriverPackage.md | 2 +- docset/winserver2016-ps/wds/Get-WdsInstallImage.md | 2 +- docset/winserver2016-ps/wds/Get-WdsInstallImageGroup.md | 2 +- docset/winserver2016-ps/wds/Get-WdsMulticastClient.md | 2 +- docset/winserver2016-ps/wds/Import-WdsBootImage.md | 2 +- docset/winserver2016-ps/wds/Import-WdsDriverPackage.md | 2 +- docset/winserver2016-ps/wds/Import-WdsInstallImage.md | 2 +- docset/winserver2016-ps/wds/New-WdsClient.md | 2 +- docset/winserver2016-ps/wds/New-WdsInstallImageGroup.md | 2 +- docset/winserver2016-ps/wds/Remove-WdsBootImage.md | 2 +- docset/winserver2016-ps/wds/Remove-WdsClient.md | 2 +- docset/winserver2016-ps/wds/Remove-WdsDriverPackage.md | 2 +- docset/winserver2016-ps/wds/Remove-WdsInstallImage.md | 2 +- docset/winserver2016-ps/wds/Remove-WdsInstallImageGroup.md | 2 +- docset/winserver2016-ps/wds/Set-WdsBootImage.md | 2 +- docset/winserver2016-ps/wds/Set-WdsClient.md | 2 +- docset/winserver2016-ps/wds/Set-WdsInstallImage.md | 2 +- docset/winserver2016-ps/wds/Set-WdsInstallImageGroup.md | 2 +- .../winserver2016-ps/webadministration/Add-WebConfiguration.md | 2 +- .../webadministration/Add-WebConfigurationLock.md | 2 +- .../webadministration/Add-WebConfigurationProperty.md | 2 +- .../webadministration/Backup-WebConfiguration.md | 2 +- .../webadministration/Clear-WebCentralCertProvider.md | 2 +- .../webadministration/Clear-WebConfiguration.md | 2 +- .../webadministration/Clear-WebRequestTracingSetting.md | 2 +- .../webadministration/Clear-WebRequestTracingSettings.md | 2 +- .../webadministration/ConvertTo-WebApplication.md | 2 +- .../webadministration/Disable-WebCentralCertProvider.md | 2 +- .../webadministration/Disable-WebGlobalModule.md | 2 +- .../webadministration/Disable-WebRequestTracing.md | 2 +- .../webadministration/Enable-WebCentralCertProvider.md | 2 +- .../webadministration/Enable-WebGlobalModule.md | 2 +- .../webadministration/Enable-WebRequestTracing.md | 2 +- docset/winserver2016-ps/webadministration/Get-WebAppDomain.md | 2 +- .../winserver2016-ps/webadministration/Get-WebAppPoolState.md | 2 +- docset/winserver2016-ps/webadministration/Get-WebApplication.md | 2 +- docset/winserver2016-ps/webadministration/Get-WebBinding.md | 2 +- .../webadministration/Get-WebCentralCertProvider.md | 2 +- docset/winserver2016-ps/webadministration/Get-WebConfigFile.md | 2 +- .../winserver2016-ps/webadministration/Get-WebConfiguration.md | 2 +- .../webadministration/Get-WebConfigurationBackup.md | 2 +- .../webadministration/Get-WebConfigurationLocation.md | 2 +- .../webadministration/Get-WebConfigurationLock.md | 2 +- .../webadministration/Get-WebConfigurationProperty.md | 2 +- docset/winserver2016-ps/webadministration/Get-WebFilePath.md | 2 +- .../winserver2016-ps/webadministration/Get-WebGlobalModule.md | 2 +- docset/winserver2016-ps/webadministration/Get-WebHandler.md | 2 +- docset/winserver2016-ps/webadministration/Get-WebItemState.md | 2 +- .../winserver2016-ps/webadministration/Get-WebManagedModule.md | 2 +- docset/winserver2016-ps/webadministration/Get-WebRequest.md | 2 +- docset/winserver2016-ps/webadministration/Get-WebURL.md | 2 +- .../webadministration/Get-WebVirtualDirectory.md | 2 +- docset/winserver2016-ps/webadministration/Get-Website.md | 2 +- docset/winserver2016-ps/webadministration/Get-WebsiteState.md | 2 +- docset/winserver2016-ps/webadministration/New-WebAppPool.md | 2 +- docset/winserver2016-ps/webadministration/New-WebApplication.md | 2 +- docset/winserver2016-ps/webadministration/New-WebBinding.md | 2 +- docset/winserver2016-ps/webadministration/New-WebFtpSite.md | 2 +- .../winserver2016-ps/webadministration/New-WebGlobalModule.md | 2 +- docset/winserver2016-ps/webadministration/New-WebHandler.md | 2 +- .../winserver2016-ps/webadministration/New-WebManagedModule.md | 2 +- .../webadministration/New-WebVirtualDirectory.md | 2 +- docset/winserver2016-ps/webadministration/New-Website.md | 2 +- docset/winserver2016-ps/webadministration/Remove-WebAppPool.md | 2 +- .../winserver2016-ps/webadministration/Remove-WebApplication.md | 2 +- docset/winserver2016-ps/webadministration/Remove-WebBinding.md | 2 +- .../webadministration/Remove-WebConfigurationBackup.md | 2 +- .../webadministration/Remove-WebConfigurationLocation.md | 2 +- .../webadministration/Remove-WebConfigurationLock.md | 2 +- .../webadministration/Remove-WebConfigurationProperty.md | 2 +- .../webadministration/Remove-WebGlobalModule.md | 2 +- docset/winserver2016-ps/webadministration/Remove-WebHandler.md | 2 +- .../webadministration/Remove-WebManagedModule.md | 2 +- .../webadministration/Remove-WebVirtualDirectory.md | 2 +- docset/winserver2016-ps/webadministration/Remove-Website.md | 2 +- .../webadministration/Rename-WebConfigurationLocation.md | 2 +- docset/winserver2016-ps/webadministration/Restart-WebAppPool.md | 2 +- docset/winserver2016-ps/webadministration/Restart-WebItem.md | 2 +- .../webadministration/Restore-WebConfiguration.md | 2 +- .../webadministration/Select-WebConfiguration.md | 2 +- docset/winserver2016-ps/webadministration/Set-WebBinding.md | 2 +- .../webadministration/Set-WebCentralCertProvider.md | 2 +- .../webadministration/Set-WebCentralCertProviderCredential.md | 2 +- .../winserver2016-ps/webadministration/Set-WebConfiguration.md | 2 +- .../webadministration/Set-WebConfigurationProperty.md | 2 +- .../winserver2016-ps/webadministration/Set-WebGlobalModule.md | 2 +- docset/winserver2016-ps/webadministration/Set-WebHandler.md | 2 +- .../winserver2016-ps/webadministration/Set-WebManagedModule.md | 2 +- docset/winserver2016-ps/webadministration/Start-WebAppPool.md | 2 +- .../winserver2016-ps/webadministration/Start-WebCommitDelay.md | 2 +- docset/winserver2016-ps/webadministration/Start-WebItem.md | 2 +- docset/winserver2016-ps/webadministration/Start-Website.md | 2 +- docset/winserver2016-ps/webadministration/Stop-WebAppPool.md | 2 +- .../winserver2016-ps/webadministration/Stop-WebCommitDelay.md | 2 +- docset/winserver2016-ps/webadministration/Stop-WebItem.md | 2 +- docset/winserver2016-ps/webadministration/Stop-Website.md | 2 +- .../webapplicationproxy/Add-WebApplicationProxyApplication.md | 2 +- .../webapplicationproxy/Get-WebApplicationProxyApplication.md | 2 +- .../Get-WebApplicationProxyAvailableADFSRelyingParty.md | 2 +- .../webapplicationproxy/Get-WebApplicationProxyConfiguration.md | 2 +- .../webapplicationproxy/Get-WebApplicationProxyHealth.md | 2 +- .../Get-WebApplicationProxySslCertificate.md | 2 +- .../webapplicationproxy/Install-WebApplicationProxy.md | 2 +- .../Remove-WebApplicationProxyApplication.md | 2 +- .../webapplicationproxy/Set-WebApplicationProxyApplication.md | 2 +- .../webapplicationproxy/Set-WebApplicationProxyConfiguration.md | 2 +- .../Set-WebApplicationProxySslCertificate.md | 2 +- .../Update-WebApplicationProxyDeviceRegistration.md | 2 +- docset/winserver2016-ps/whea/Get-WheaMemoryPolicy.md | 2 +- docset/winserver2016-ps/whea/Set-WheaMemoryPolicy.md | 2 +- .../windowsdeveloperlicense/Get-WindowsDeveloperLicense.md | 2 +- .../Show-WindowsDeveloperLicenseRegistration.md | 2 +- .../Unregister-WindowsDeveloperLicense.md | 2 +- .../windowsdiagnosticdata/Clear-WindowsDiagnosticData.md | 2 +- .../windowserrorreporting/Disable-WindowsErrorReporting.md | 2 +- .../windowserrorreporting/Enable-WindowsErrorReporting.md | 2 +- .../windowserrorreporting/Get-WindowsErrorReporting.md | 2 +- .../winserver2016-ps/windowssearch/Get-WindowsSearchSetting.md | 2 +- .../winserver2016-ps/windowssearch/Set-WindowsSearchSetting.md | 2 +- .../winserver2016-ps/windowsserverbackup/Add-WBBackupTarget.md | 2 +- .../windowsserverbackup/Add-WBBareMetalRecovery.md | 2 +- docset/winserver2016-ps/windowsserverbackup/Add-WBFileSpec.md | 2 +- .../winserver2016-ps/windowsserverbackup/Add-WBSystemState.md | 2 +- .../windowsserverbackup/Add-WBVirtualMachine.md | 2 +- docset/winserver2016-ps/windowsserverbackup/Add-WBVolume.md | 2 +- docset/winserver2016-ps/windowsserverbackup/Get-WBBackupSet.md | 2 +- .../winserver2016-ps/windowsserverbackup/Get-WBBackupTarget.md | 2 +- .../windowsserverbackup/Get-WBBackupVolumeBrowsePath.md | 2 +- .../windowsserverbackup/Get-WBBareMetalRecovery.md | 2 +- docset/winserver2016-ps/windowsserverbackup/Get-WBDisk.md | 2 +- docset/winserver2016-ps/windowsserverbackup/Get-WBFileSpec.md | 2 +- docset/winserver2016-ps/windowsserverbackup/Get-WBJob.md | 2 +- .../windowsserverbackup/Get-WBPerformanceConfiguration.md | 2 +- docset/winserver2016-ps/windowsserverbackup/Get-WBPolicy.md | 2 +- docset/winserver2016-ps/windowsserverbackup/Get-WBSchedule.md | 2 +- docset/winserver2016-ps/windowsserverbackup/Get-WBSummary.md | 2 +- .../winserver2016-ps/windowsserverbackup/Get-WBSystemState.md | 2 +- .../windowsserverbackup/Get-WBVirtualMachine.md | 2 +- docset/winserver2016-ps/windowsserverbackup/Get-WBVolume.md | 2 +- .../windowsserverbackup/Get-WBVssBackupOption.md | 2 +- .../winserver2016-ps/windowsserverbackup/New-WBBackupTarget.md | 2 +- docset/winserver2016-ps/windowsserverbackup/New-WBFileSpec.md | 2 +- docset/winserver2016-ps/windowsserverbackup/New-WBPolicy.md | 2 +- .../winserver2016-ps/windowsserverbackup/Remove-WBBackupSet.md | 2 +- .../windowsserverbackup/Remove-WBBackupTarget.md | 2 +- .../windowsserverbackup/Remove-WBBareMetalRecovery.md | 2 +- docset/winserver2016-ps/windowsserverbackup/Remove-WBCatalog.md | 2 +- .../winserver2016-ps/windowsserverbackup/Remove-WBFileSpec.md | 2 +- docset/winserver2016-ps/windowsserverbackup/Remove-WBPolicy.md | 2 +- .../windowsserverbackup/Remove-WBSystemState.md | 2 +- .../windowsserverbackup/Remove-WBVirtualMachine.md | 2 +- docset/winserver2016-ps/windowsserverbackup/Remove-WBVolume.md | 2 +- .../winserver2016-ps/windowsserverbackup/Restore-WBCatalog.md | 2 +- docset/winserver2016-ps/windowsserverbackup/Resume-WBBackup.md | 2 +- .../windowsserverbackup/Resume-WBVolumeRecovery.md | 2 +- .../windowsserverbackup/Set-WBPerformanceConfiguration.md | 2 +- docset/winserver2016-ps/windowsserverbackup/Set-WBPolicy.md | 2 +- docset/winserver2016-ps/windowsserverbackup/Set-WBSchedule.md | 2 +- .../windowsserverbackup/Set-WBVssBackupOption.md | 2 +- .../windowsserverbackup/Start-WBApplicationRecovery.md | 2 +- docset/winserver2016-ps/windowsserverbackup/Start-WBBackup.md | 2 +- .../windowsserverbackup/Start-WBFileRecovery.md | 2 +- .../windowsserverbackup/Start-WBHyperVRecovery.md | 2 +- .../windowsserverbackup/Start-WBSystemStateRecovery.md | 2 +- .../windowsserverbackup/Start-WBVolumeRecovery.md | 2 +- docset/winserver2016-ps/windowsserverbackup/Stop-WBJob.md | 2 +- docset/winserver2016-ps/windowsupdate/Get-WindowsUpdateLog.md | 2 +- 3263 files changed, 3263 insertions(+), 3263 deletions(-) diff --git a/docset/winserver2016-ps/Microsoft.DiagnosticDataViewer/Disable-DiagnosticDataViewing.md b/docset/winserver2016-ps/Microsoft.DiagnosticDataViewer/Disable-DiagnosticDataViewing.md index a49cc9c475..f39c7df6f6 100644 --- a/docset/winserver2016-ps/Microsoft.DiagnosticDataViewer/Disable-DiagnosticDataViewing.md +++ b/docset/winserver2016-ps/Microsoft.DiagnosticDataViewer/Disable-DiagnosticDataViewing.md @@ -1,7 +1,7 @@ --- external help file: DDVCmdlets.dll-Help.xml Module Name: Microsoft.DiagnosticDataViewer -online version: https://docs.microsoft.com/powershell/module/microsoft.diagnosticdataviewer/disable-diagnosticdataviewing?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/microsoft.diagnosticdataviewer/disable-diagnosticdataviewing?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-DiagnosticDataViewing --- diff --git a/docset/winserver2016-ps/Microsoft.DiagnosticDataViewer/Enable-DiagnosticDataViewing.md b/docset/winserver2016-ps/Microsoft.DiagnosticDataViewer/Enable-DiagnosticDataViewing.md index 81cbe8f349..be2a7748ec 100644 --- a/docset/winserver2016-ps/Microsoft.DiagnosticDataViewer/Enable-DiagnosticDataViewing.md +++ b/docset/winserver2016-ps/Microsoft.DiagnosticDataViewer/Enable-DiagnosticDataViewing.md @@ -1,7 +1,7 @@ --- external help file: DDVCmdlets.dll-Help.xml Module Name: Microsoft.DiagnosticDataViewer -online version: https://docs.microsoft.com/powershell/module/microsoft.diagnosticdataviewer/enable-diagnosticdataviewing?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/microsoft.diagnosticdataviewer/enable-diagnosticdataviewing?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-DiagnosticDataViewing --- diff --git a/docset/winserver2016-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticData.md b/docset/winserver2016-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticData.md index 9b9f60db26..6056984dec 100644 --- a/docset/winserver2016-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticData.md +++ b/docset/winserver2016-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticData.md @@ -1,7 +1,7 @@ --- external help file: DDVCmdlets.dll-Help.xml Module Name: Microsoft.DiagnosticDataViewer -online version: https://docs.microsoft.com/powershell/module/microsoft.diagnosticdataviewer/get-diagnosticdata?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/microsoft.diagnosticdataviewer/get-diagnosticdata?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DiagnosticData --- diff --git a/docset/winserver2016-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticDataTypes.md b/docset/winserver2016-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticDataTypes.md index 37d71a61d9..e14b19f29f 100644 --- a/docset/winserver2016-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticDataTypes.md +++ b/docset/winserver2016-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticDataTypes.md @@ -1,7 +1,7 @@ --- external help file: DDVCmdlets.dll-Help.xml Module Name: Microsoft.DiagnosticDataViewer -online version: https://docs.microsoft.com/powershell/module/microsoft.diagnosticdataviewer/get-diagnosticdatatypes?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/microsoft.diagnosticdataviewer/get-diagnosticdatatypes?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DiagnosticDataTypes --- diff --git a/docset/winserver2016-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticDataViewingSetting.md b/docset/winserver2016-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticDataViewingSetting.md index 18d01be307..2c892439ee 100644 --- a/docset/winserver2016-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticDataViewingSetting.md +++ b/docset/winserver2016-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticDataViewingSetting.md @@ -1,7 +1,7 @@ --- external help file: DDVCmdlets.dll-Help.xml Module Name: Microsoft.DiagnosticDataViewer -online version: https://docs.microsoft.com/powershell/module/microsoft.diagnosticdataviewer/get-diagnosticdataviewingsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/microsoft.diagnosticdataviewer/get-diagnosticdataviewingsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DiagnosticDataViewingSetting --- diff --git a/docset/winserver2016-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticStoreCapacity.md b/docset/winserver2016-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticStoreCapacity.md index c1eb26cb50..2ce16abcff 100644 --- a/docset/winserver2016-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticStoreCapacity.md +++ b/docset/winserver2016-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticStoreCapacity.md @@ -1,7 +1,7 @@ --- external help file: DDVCmdlets.dll-Help.xml Module Name: Microsoft.DiagnosticDataViewer -online version: https://docs.microsoft.com/powershell/module/microsoft.diagnosticdataviewer/get-diagnosticstorecapacity?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/microsoft.diagnosticdataviewer/get-diagnosticstorecapacity?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DiagnosticStoreCapacity --- diff --git a/docset/winserver2016-ps/Microsoft.DiagnosticDataViewer/Set-DiagnosticStoreCapacity.md b/docset/winserver2016-ps/Microsoft.DiagnosticDataViewer/Set-DiagnosticStoreCapacity.md index 4c9f43dfd1..cd85a0a005 100644 --- a/docset/winserver2016-ps/Microsoft.DiagnosticDataViewer/Set-DiagnosticStoreCapacity.md +++ b/docset/winserver2016-ps/Microsoft.DiagnosticDataViewer/Set-DiagnosticStoreCapacity.md @@ -1,7 +1,7 @@ --- external help file: DDVCmdlets.dll-Help.xml Module Name: Microsoft.DiagnosticDataViewer -online version: https://docs.microsoft.com/powershell/module/microsoft.diagnosticdataviewer/set-diagnosticstorecapacity?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/microsoft.diagnosticdataviewer/set-diagnosticstorecapacity?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DiagnosticStoreCapacity --- diff --git a/docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration/Disable-ServerManagerStandardUserRemoting.md b/docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration/Disable-ServerManagerStandardUserRemoting.md index 662ac12868..7d4b7f19f9 100644 --- a/docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration/Disable-ServerManagerStandardUserRemoting.md +++ b/docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration/Disable-ServerManagerStandardUserRemoting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ServerManager-help.xml Module Name: Microsoft.Windows.ServerManager.Migration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/disable-servermanagerstandarduserremoting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/disable-servermanagerstandarduserremoting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-ServerManagerStandardUserRemoting --- diff --git a/docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration/Enable-ServerManagerStandardUserRemoting.md b/docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration/Enable-ServerManagerStandardUserRemoting.md index 50e8493439..08a4bdad47 100644 --- a/docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration/Enable-ServerManagerStandardUserRemoting.md +++ b/docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration/Enable-ServerManagerStandardUserRemoting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ServerManager-help.xml Module Name: Microsoft.Windows.ServerManager.Migration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/enable-servermanagerstandarduserremoting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/enable-servermanagerstandarduserremoting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-ServerManagerStandardUserRemoting --- diff --git a/docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration/Export-SmigServerSetting.md b/docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration/Export-SmigServerSetting.md index 52b8790b44..f11625a8e0 100644 --- a/docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration/Export-SmigServerSetting.md +++ b/docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration/Export-SmigServerSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.ServerManager.PowerShell.dll-Help.xml Module Name: Microsoft.Windows.ServerManager.Migration ms.date: 01/03/2017 -online version: https://docs.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/export-smigserversetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/export-smigserversetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-SmigServerSetting --- diff --git a/docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration/Get-SmigServerFeature.md b/docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration/Get-SmigServerFeature.md index fe63a11cdd..e9ba2089ab 100644 --- a/docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration/Get-SmigServerFeature.md +++ b/docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration/Get-SmigServerFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.ServerManager.PowerShell.dll-Help.xml Module Name: Microsoft.Windows.ServerManager.Migration ms.date: 01/03/2017 -online version: https://docs.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/get-smigserverfeature?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/get-smigserverfeature?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmigServerFeature --- diff --git a/docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration/Get-WindowsFeature.md b/docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration/Get-WindowsFeature.md index 1538d0c098..8f030bad30 100644 --- a/docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration/Get-WindowsFeature.md +++ b/docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration/Get-WindowsFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.ServerManager.PowerShell.dll-Help.xml Module Name: Microsoft.Windows.ServerManager.Migration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/get-windowsfeature?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/get-windowsfeature?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WindowsFeature --- diff --git a/docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration/Import-SmigServerSetting.md b/docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration/Import-SmigServerSetting.md index ea7181e593..b7624b1cdf 100644 --- a/docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration/Import-SmigServerSetting.md +++ b/docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration/Import-SmigServerSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.ServerManager.PowerShell.dll-Help.xml Module Name: Microsoft.Windows.ServerManager.Migration ms.date: 01/03/2017 -online version: https://docs.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/import-smigserversetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/import-smigserversetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-SmigServerSetting --- diff --git a/docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration/Install-WindowsFeature.md b/docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration/Install-WindowsFeature.md index 9d2da11018..81dc22c116 100644 --- a/docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration/Install-WindowsFeature.md +++ b/docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration/Install-WindowsFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.ServerManager.PowerShell.dll-Help.xml Module Name: Microsoft.Windows.ServerManager.Migration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/install-windowsfeature?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/install-windowsfeature?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-WindowsFeature --- diff --git a/docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration/Receive-SmigServerData.md b/docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration/Receive-SmigServerData.md index 7c28a0c608..4aedafcab8 100644 --- a/docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration/Receive-SmigServerData.md +++ b/docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration/Receive-SmigServerData.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.ServerManager.PowerShell.dll-Help.xml Module Name: Microsoft.Windows.ServerManager.Migration ms.date: 01/03/2017 -online version: https://docs.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/receive-smigserverdata?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/receive-smigserverdata?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Receive-SmigServerData --- diff --git a/docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration/Send-SmigServerData.md b/docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration/Send-SmigServerData.md index 4d5ae37033..2bce2f4046 100644 --- a/docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration/Send-SmigServerData.md +++ b/docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration/Send-SmigServerData.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.ServerManager.PowerShell.dll-Help.xml Module Name: Microsoft.Windows.ServerManager.Migration ms.date: 01/03/2017 -online version: https://docs.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/send-smigserverdata?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/send-smigserverdata?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Send-SmigServerData --- diff --git a/docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration/ServerManager.md b/docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration/ServerManager.md index 2dd1d562d0..5a86c8a701 100644 --- a/docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration/ServerManager.md +++ b/docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration/ServerManager.md @@ -5,7 +5,7 @@ Help Version: 5.0.0.1 Locale: en-US Module Name: Microsoft.Windows.ServerManager.Migration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/servermanager?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/servermanager?view=windowsserver2016-ps&wt.mc_id=ps-gethelp title: ServerManager --- diff --git a/docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration/Uninstall-WindowsFeature.md b/docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration/Uninstall-WindowsFeature.md index 86ebe3bbc6..3f78becd06 100644 --- a/docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration/Uninstall-WindowsFeature.md +++ b/docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration/Uninstall-WindowsFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.ServerManager.PowerShell.dll-Help.xml Module Name: Microsoft.Windows.ServerManager.Migration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/uninstall-windowsfeature?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/uninstall-windowsfeature?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-WindowsFeature --- diff --git a/docset/winserver2016-ps/activedirectory/Add-ADCentralAccessPolicyMember.md b/docset/winserver2016-ps/activedirectory/Add-ADCentralAccessPolicyMember.md index 28765ff5dd..dead84a511 100644 --- a/docset/winserver2016-ps/activedirectory/Add-ADCentralAccessPolicyMember.md +++ b/docset/winserver2016-ps/activedirectory/Add-ADCentralAccessPolicyMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/add-adcentralaccesspolicymember?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/add-adcentralaccesspolicymember?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ADCentralAccessPolicyMember --- diff --git a/docset/winserver2016-ps/activedirectory/Add-ADComputerServiceAccount.md b/docset/winserver2016-ps/activedirectory/Add-ADComputerServiceAccount.md index 6d6fa4af4a..0f34386333 100644 --- a/docset/winserver2016-ps/activedirectory/Add-ADComputerServiceAccount.md +++ b/docset/winserver2016-ps/activedirectory/Add-ADComputerServiceAccount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/add-adcomputerserviceaccount?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/add-adcomputerserviceaccount?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ADComputerServiceAccount --- diff --git a/docset/winserver2016-ps/activedirectory/Add-ADDomainControllerPasswordReplicationPolicy.md b/docset/winserver2016-ps/activedirectory/Add-ADDomainControllerPasswordReplicationPolicy.md index dfbfa6f9a3..47c4ea3ee8 100644 --- a/docset/winserver2016-ps/activedirectory/Add-ADDomainControllerPasswordReplicationPolicy.md +++ b/docset/winserver2016-ps/activedirectory/Add-ADDomainControllerPasswordReplicationPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/add-addomaincontrollerpasswordreplicationpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/add-addomaincontrollerpasswordreplicationpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ADDomainControllerPasswordReplicationPolicy --- diff --git a/docset/winserver2016-ps/activedirectory/Add-ADFineGrainedPasswordPolicySubject.md b/docset/winserver2016-ps/activedirectory/Add-ADFineGrainedPasswordPolicySubject.md index 958944bb42..c701ba7ebc 100644 --- a/docset/winserver2016-ps/activedirectory/Add-ADFineGrainedPasswordPolicySubject.md +++ b/docset/winserver2016-ps/activedirectory/Add-ADFineGrainedPasswordPolicySubject.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/add-adfinegrainedpasswordpolicysubject?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/add-adfinegrainedpasswordpolicysubject?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ADFineGrainedPasswordPolicySubject --- diff --git a/docset/winserver2016-ps/activedirectory/Add-ADGroupMember.md b/docset/winserver2016-ps/activedirectory/Add-ADGroupMember.md index a49e1cc4ef..22f8862dc7 100644 --- a/docset/winserver2016-ps/activedirectory/Add-ADGroupMember.md +++ b/docset/winserver2016-ps/activedirectory/Add-ADGroupMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/add-adgroupmember?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/add-adgroupmember?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ADGroupMember --- diff --git a/docset/winserver2016-ps/activedirectory/Add-ADPrincipalGroupMembership.md b/docset/winserver2016-ps/activedirectory/Add-ADPrincipalGroupMembership.md index 84b2b8f4e2..7577d5742f 100644 --- a/docset/winserver2016-ps/activedirectory/Add-ADPrincipalGroupMembership.md +++ b/docset/winserver2016-ps/activedirectory/Add-ADPrincipalGroupMembership.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/add-adprincipalgroupmembership?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/add-adprincipalgroupmembership?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ADPrincipalGroupMembership --- diff --git a/docset/winserver2016-ps/activedirectory/Add-ADResourcePropertyListMember.md b/docset/winserver2016-ps/activedirectory/Add-ADResourcePropertyListMember.md index 75a84838e3..bc118b8987 100644 --- a/docset/winserver2016-ps/activedirectory/Add-ADResourcePropertyListMember.md +++ b/docset/winserver2016-ps/activedirectory/Add-ADResourcePropertyListMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/add-adresourcepropertylistmember?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/add-adresourcepropertylistmember?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ADResourcePropertyListMember --- diff --git a/docset/winserver2016-ps/activedirectory/Clear-ADAccountExpiration.md b/docset/winserver2016-ps/activedirectory/Clear-ADAccountExpiration.md index f92337cc10..dc98c1d85b 100644 --- a/docset/winserver2016-ps/activedirectory/Clear-ADAccountExpiration.md +++ b/docset/winserver2016-ps/activedirectory/Clear-ADAccountExpiration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/clear-adaccountexpiration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/clear-adaccountexpiration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-ADAccountExpiration --- diff --git a/docset/winserver2016-ps/activedirectory/Clear-ADClaimTransformLink.md b/docset/winserver2016-ps/activedirectory/Clear-ADClaimTransformLink.md index 3a595ff09c..0693d8f886 100644 --- a/docset/winserver2016-ps/activedirectory/Clear-ADClaimTransformLink.md +++ b/docset/winserver2016-ps/activedirectory/Clear-ADClaimTransformLink.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/clear-adclaimtransformlink?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/clear-adclaimtransformlink?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-ADClaimTransformLink --- diff --git a/docset/winserver2016-ps/activedirectory/Disable-ADAccount.md b/docset/winserver2016-ps/activedirectory/Disable-ADAccount.md index 728a868bc5..99f483f487 100644 --- a/docset/winserver2016-ps/activedirectory/Disable-ADAccount.md +++ b/docset/winserver2016-ps/activedirectory/Disable-ADAccount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/disable-adaccount?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/disable-adaccount?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-ADAccount --- diff --git a/docset/winserver2016-ps/activedirectory/Disable-ADOptionalFeature.md b/docset/winserver2016-ps/activedirectory/Disable-ADOptionalFeature.md index e9228c3c95..6988c2962b 100644 --- a/docset/winserver2016-ps/activedirectory/Disable-ADOptionalFeature.md +++ b/docset/winserver2016-ps/activedirectory/Disable-ADOptionalFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/disable-adoptionalfeature?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/disable-adoptionalfeature?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-ADOptionalFeature --- diff --git a/docset/winserver2016-ps/activedirectory/Enable-ADAccount.md b/docset/winserver2016-ps/activedirectory/Enable-ADAccount.md index 459486cb12..098213ca1b 100644 --- a/docset/winserver2016-ps/activedirectory/Enable-ADAccount.md +++ b/docset/winserver2016-ps/activedirectory/Enable-ADAccount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/enable-adaccount?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/enable-adaccount?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-ADAccount --- diff --git a/docset/winserver2016-ps/activedirectory/Enable-ADOptionalFeature.md b/docset/winserver2016-ps/activedirectory/Enable-ADOptionalFeature.md index af812a8c50..9205f49309 100644 --- a/docset/winserver2016-ps/activedirectory/Enable-ADOptionalFeature.md +++ b/docset/winserver2016-ps/activedirectory/Enable-ADOptionalFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/enable-adoptionalfeature?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/enable-adoptionalfeature?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-ADOptionalFeature --- diff --git a/docset/winserver2016-ps/activedirectory/Get-ADAccountAuthorizationGroup.md b/docset/winserver2016-ps/activedirectory/Get-ADAccountAuthorizationGroup.md index a4a90045a6..1809ca8a67 100644 --- a/docset/winserver2016-ps/activedirectory/Get-ADAccountAuthorizationGroup.md +++ b/docset/winserver2016-ps/activedirectory/Get-ADAccountAuthorizationGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adaccountauthorizationgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adaccountauthorizationgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADAccountAuthorizationGroup --- diff --git a/docset/winserver2016-ps/activedirectory/Get-ADAccountResultantPasswordReplicationPolicy.md b/docset/winserver2016-ps/activedirectory/Get-ADAccountResultantPasswordReplicationPolicy.md index 8201e2c8ba..da4d1b9155 100644 --- a/docset/winserver2016-ps/activedirectory/Get-ADAccountResultantPasswordReplicationPolicy.md +++ b/docset/winserver2016-ps/activedirectory/Get-ADAccountResultantPasswordReplicationPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adaccountresultantpasswordreplicationpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adaccountresultantpasswordreplicationpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADAccountResultantPasswordReplicationPolicy --- diff --git a/docset/winserver2016-ps/activedirectory/Get-ADAuthenticationPolicy.md b/docset/winserver2016-ps/activedirectory/Get-ADAuthenticationPolicy.md index 92d374bcc8..915da2de5b 100644 --- a/docset/winserver2016-ps/activedirectory/Get-ADAuthenticationPolicy.md +++ b/docset/winserver2016-ps/activedirectory/Get-ADAuthenticationPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adauthenticationpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adauthenticationpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADAuthenticationPolicy --- diff --git a/docset/winserver2016-ps/activedirectory/Get-ADAuthenticationPolicySilo.md b/docset/winserver2016-ps/activedirectory/Get-ADAuthenticationPolicySilo.md index 441bf88e61..b9004fc4cf 100644 --- a/docset/winserver2016-ps/activedirectory/Get-ADAuthenticationPolicySilo.md +++ b/docset/winserver2016-ps/activedirectory/Get-ADAuthenticationPolicySilo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adauthenticationpolicysilo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adauthenticationpolicysilo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADAuthenticationPolicySilo --- diff --git a/docset/winserver2016-ps/activedirectory/Get-ADCentralAccessPolicy.md b/docset/winserver2016-ps/activedirectory/Get-ADCentralAccessPolicy.md index 1626839500..519b84ced7 100644 --- a/docset/winserver2016-ps/activedirectory/Get-ADCentralAccessPolicy.md +++ b/docset/winserver2016-ps/activedirectory/Get-ADCentralAccessPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adcentralaccesspolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adcentralaccesspolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADCentralAccessPolicy --- diff --git a/docset/winserver2016-ps/activedirectory/Get-ADCentralAccessRule.md b/docset/winserver2016-ps/activedirectory/Get-ADCentralAccessRule.md index 212af0f03c..106342f1e0 100644 --- a/docset/winserver2016-ps/activedirectory/Get-ADCentralAccessRule.md +++ b/docset/winserver2016-ps/activedirectory/Get-ADCentralAccessRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adcentralaccessrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adcentralaccessrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADCentralAccessRule --- diff --git a/docset/winserver2016-ps/activedirectory/Get-ADClaimTransformPolicy.md b/docset/winserver2016-ps/activedirectory/Get-ADClaimTransformPolicy.md index ffaea54a32..2ae66463c0 100644 --- a/docset/winserver2016-ps/activedirectory/Get-ADClaimTransformPolicy.md +++ b/docset/winserver2016-ps/activedirectory/Get-ADClaimTransformPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adclaimtransformpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adclaimtransformpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADClaimTransformPolicy --- diff --git a/docset/winserver2016-ps/activedirectory/Get-ADClaimType.md b/docset/winserver2016-ps/activedirectory/Get-ADClaimType.md index 90f97995a8..8ffe30ab1a 100644 --- a/docset/winserver2016-ps/activedirectory/Get-ADClaimType.md +++ b/docset/winserver2016-ps/activedirectory/Get-ADClaimType.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adclaimtype?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adclaimtype?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADClaimType --- diff --git a/docset/winserver2016-ps/activedirectory/Get-ADComputer.md b/docset/winserver2016-ps/activedirectory/Get-ADComputer.md index 037d6d9a23..5ded0dc292 100644 --- a/docset/winserver2016-ps/activedirectory/Get-ADComputer.md +++ b/docset/winserver2016-ps/activedirectory/Get-ADComputer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adcomputer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adcomputer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADComputer --- diff --git a/docset/winserver2016-ps/activedirectory/Get-ADComputerServiceAccount.md b/docset/winserver2016-ps/activedirectory/Get-ADComputerServiceAccount.md index 0963ec3693..1bde68135d 100644 --- a/docset/winserver2016-ps/activedirectory/Get-ADComputerServiceAccount.md +++ b/docset/winserver2016-ps/activedirectory/Get-ADComputerServiceAccount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adcomputerserviceaccount?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adcomputerserviceaccount?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADComputerServiceAccount --- diff --git a/docset/winserver2016-ps/activedirectory/Get-ADDCCloningExcludedApplicationList.md b/docset/winserver2016-ps/activedirectory/Get-ADDCCloningExcludedApplicationList.md index 394d5a4258..6e67cec9ac 100644 --- a/docset/winserver2016-ps/activedirectory/Get-ADDCCloningExcludedApplicationList.md +++ b/docset/winserver2016-ps/activedirectory/Get-ADDCCloningExcludedApplicationList.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-addccloningexcludedapplicationlist?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-addccloningexcludedapplicationlist?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADDCCloningExcludedApplicationList --- diff --git a/docset/winserver2016-ps/activedirectory/Get-ADDefaultDomainPasswordPolicy.md b/docset/winserver2016-ps/activedirectory/Get-ADDefaultDomainPasswordPolicy.md index b39a1ce359..5b6c0cf694 100644 --- a/docset/winserver2016-ps/activedirectory/Get-ADDefaultDomainPasswordPolicy.md +++ b/docset/winserver2016-ps/activedirectory/Get-ADDefaultDomainPasswordPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-addefaultdomainpasswordpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-addefaultdomainpasswordpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADDefaultDomainPasswordPolicy --- diff --git a/docset/winserver2016-ps/activedirectory/Get-ADDomain.md b/docset/winserver2016-ps/activedirectory/Get-ADDomain.md index 81d852f6a1..b07b6ba2b3 100644 --- a/docset/winserver2016-ps/activedirectory/Get-ADDomain.md +++ b/docset/winserver2016-ps/activedirectory/Get-ADDomain.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-addomain?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-addomain?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADDomain --- diff --git a/docset/winserver2016-ps/activedirectory/Get-ADDomainController.md b/docset/winserver2016-ps/activedirectory/Get-ADDomainController.md index f247c6757d..cbf638abd5 100644 --- a/docset/winserver2016-ps/activedirectory/Get-ADDomainController.md +++ b/docset/winserver2016-ps/activedirectory/Get-ADDomainController.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-addomaincontroller?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-addomaincontroller?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADDomainController --- diff --git a/docset/winserver2016-ps/activedirectory/Get-ADDomainControllerPasswordReplicationPolicy.md b/docset/winserver2016-ps/activedirectory/Get-ADDomainControllerPasswordReplicationPolicy.md index d1077b45ed..0899c796fb 100644 --- a/docset/winserver2016-ps/activedirectory/Get-ADDomainControllerPasswordReplicationPolicy.md +++ b/docset/winserver2016-ps/activedirectory/Get-ADDomainControllerPasswordReplicationPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-addomaincontrollerpasswordreplicationpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-addomaincontrollerpasswordreplicationpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADDomainControllerPasswordReplicationPolicy --- diff --git a/docset/winserver2016-ps/activedirectory/Get-ADDomainControllerPasswordReplicationPolicyUsage.md b/docset/winserver2016-ps/activedirectory/Get-ADDomainControllerPasswordReplicationPolicyUsage.md index 85ba4e1913..c4f0136dd4 100644 --- a/docset/winserver2016-ps/activedirectory/Get-ADDomainControllerPasswordReplicationPolicyUsage.md +++ b/docset/winserver2016-ps/activedirectory/Get-ADDomainControllerPasswordReplicationPolicyUsage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-addomaincontrollerpasswordreplicationpolicyusage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-addomaincontrollerpasswordreplicationpolicyusage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADDomainControllerPasswordReplicationPolicyUsage --- diff --git a/docset/winserver2016-ps/activedirectory/Get-ADFineGrainedPasswordPolicy.md b/docset/winserver2016-ps/activedirectory/Get-ADFineGrainedPasswordPolicy.md index 2f2d52ee08..b712c1f023 100644 --- a/docset/winserver2016-ps/activedirectory/Get-ADFineGrainedPasswordPolicy.md +++ b/docset/winserver2016-ps/activedirectory/Get-ADFineGrainedPasswordPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adfinegrainedpasswordpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adfinegrainedpasswordpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADFineGrainedPasswordPolicy --- diff --git a/docset/winserver2016-ps/activedirectory/Get-ADFineGrainedPasswordPolicySubject.md b/docset/winserver2016-ps/activedirectory/Get-ADFineGrainedPasswordPolicySubject.md index 6bf1fd4127..3c5c7a21da 100644 --- a/docset/winserver2016-ps/activedirectory/Get-ADFineGrainedPasswordPolicySubject.md +++ b/docset/winserver2016-ps/activedirectory/Get-ADFineGrainedPasswordPolicySubject.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adfinegrainedpasswordpolicysubject?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adfinegrainedpasswordpolicysubject?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADFineGrainedPasswordPolicySubject --- diff --git a/docset/winserver2016-ps/activedirectory/Get-ADForest.md b/docset/winserver2016-ps/activedirectory/Get-ADForest.md index b71a2364e6..218a68df97 100644 --- a/docset/winserver2016-ps/activedirectory/Get-ADForest.md +++ b/docset/winserver2016-ps/activedirectory/Get-ADForest.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adforest?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adforest?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADForest --- diff --git a/docset/winserver2016-ps/activedirectory/Get-ADGroup.md b/docset/winserver2016-ps/activedirectory/Get-ADGroup.md index 853fca9ddf..07981ee706 100644 --- a/docset/winserver2016-ps/activedirectory/Get-ADGroup.md +++ b/docset/winserver2016-ps/activedirectory/Get-ADGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADGroup --- diff --git a/docset/winserver2016-ps/activedirectory/Get-ADGroupMember.md b/docset/winserver2016-ps/activedirectory/Get-ADGroupMember.md index 5a32c29124..fad2291480 100644 --- a/docset/winserver2016-ps/activedirectory/Get-ADGroupMember.md +++ b/docset/winserver2016-ps/activedirectory/Get-ADGroupMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adgroupmember?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adgroupmember?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADGroupMember --- diff --git a/docset/winserver2016-ps/activedirectory/Get-ADObject.md b/docset/winserver2016-ps/activedirectory/Get-ADObject.md index 95631e6275..4763a4b031 100644 --- a/docset/winserver2016-ps/activedirectory/Get-ADObject.md +++ b/docset/winserver2016-ps/activedirectory/Get-ADObject.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adobject?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adobject?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADObject --- diff --git a/docset/winserver2016-ps/activedirectory/Get-ADOptionalFeature.md b/docset/winserver2016-ps/activedirectory/Get-ADOptionalFeature.md index 58c53e1bc7..0f1ad3a9a0 100644 --- a/docset/winserver2016-ps/activedirectory/Get-ADOptionalFeature.md +++ b/docset/winserver2016-ps/activedirectory/Get-ADOptionalFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adoptionalfeature?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adoptionalfeature?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADOptionalFeature --- diff --git a/docset/winserver2016-ps/activedirectory/Get-ADOrganizationalUnit.md b/docset/winserver2016-ps/activedirectory/Get-ADOrganizationalUnit.md index 335937803b..b1d6efa363 100644 --- a/docset/winserver2016-ps/activedirectory/Get-ADOrganizationalUnit.md +++ b/docset/winserver2016-ps/activedirectory/Get-ADOrganizationalUnit.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adorganizationalunit?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adorganizationalunit?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADOrganizationalUnit --- diff --git a/docset/winserver2016-ps/activedirectory/Get-ADPrincipalGroupMembership.md b/docset/winserver2016-ps/activedirectory/Get-ADPrincipalGroupMembership.md index 1502618043..6afebebdef 100644 --- a/docset/winserver2016-ps/activedirectory/Get-ADPrincipalGroupMembership.md +++ b/docset/winserver2016-ps/activedirectory/Get-ADPrincipalGroupMembership.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adprincipalgroupmembership?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adprincipalgroupmembership?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADPrincipalGroupMembership --- diff --git a/docset/winserver2016-ps/activedirectory/Get-ADReplicationAttributeMetadata.md b/docset/winserver2016-ps/activedirectory/Get-ADReplicationAttributeMetadata.md index 5b6cf0c5cf..51cda774b4 100644 --- a/docset/winserver2016-ps/activedirectory/Get-ADReplicationAttributeMetadata.md +++ b/docset/winserver2016-ps/activedirectory/Get-ADReplicationAttributeMetadata.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adreplicationattributemetadata?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adreplicationattributemetadata?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADReplicationAttributeMetadata --- diff --git a/docset/winserver2016-ps/activedirectory/Get-ADReplicationConnection.md b/docset/winserver2016-ps/activedirectory/Get-ADReplicationConnection.md index ef546a2aa4..8f61b2d714 100644 --- a/docset/winserver2016-ps/activedirectory/Get-ADReplicationConnection.md +++ b/docset/winserver2016-ps/activedirectory/Get-ADReplicationConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adreplicationconnection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adreplicationconnection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADReplicationConnection --- diff --git a/docset/winserver2016-ps/activedirectory/Get-ADReplicationFailure.md b/docset/winserver2016-ps/activedirectory/Get-ADReplicationFailure.md index 93145458e0..eacd7b41dc 100644 --- a/docset/winserver2016-ps/activedirectory/Get-ADReplicationFailure.md +++ b/docset/winserver2016-ps/activedirectory/Get-ADReplicationFailure.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adreplicationfailure?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adreplicationfailure?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADReplicationFailure --- diff --git a/docset/winserver2016-ps/activedirectory/Get-ADReplicationPartnerMetadata.md b/docset/winserver2016-ps/activedirectory/Get-ADReplicationPartnerMetadata.md index 381584c8ba..66eec21fcb 100644 --- a/docset/winserver2016-ps/activedirectory/Get-ADReplicationPartnerMetadata.md +++ b/docset/winserver2016-ps/activedirectory/Get-ADReplicationPartnerMetadata.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adreplicationpartnermetadata?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adreplicationpartnermetadata?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADReplicationPartnerMetadata --- diff --git a/docset/winserver2016-ps/activedirectory/Get-ADReplicationQueueOperation.md b/docset/winserver2016-ps/activedirectory/Get-ADReplicationQueueOperation.md index 261e4f6829..9d99416a69 100644 --- a/docset/winserver2016-ps/activedirectory/Get-ADReplicationQueueOperation.md +++ b/docset/winserver2016-ps/activedirectory/Get-ADReplicationQueueOperation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adreplicationqueueoperation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adreplicationqueueoperation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADReplicationQueueOperation --- diff --git a/docset/winserver2016-ps/activedirectory/Get-ADReplicationSite.md b/docset/winserver2016-ps/activedirectory/Get-ADReplicationSite.md index 09bbffbd54..8400bc58bd 100644 --- a/docset/winserver2016-ps/activedirectory/Get-ADReplicationSite.md +++ b/docset/winserver2016-ps/activedirectory/Get-ADReplicationSite.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adreplicationsite?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adreplicationsite?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADReplicationSite --- diff --git a/docset/winserver2016-ps/activedirectory/Get-ADReplicationSiteLink.md b/docset/winserver2016-ps/activedirectory/Get-ADReplicationSiteLink.md index 045c3616c2..09e3e6e293 100644 --- a/docset/winserver2016-ps/activedirectory/Get-ADReplicationSiteLink.md +++ b/docset/winserver2016-ps/activedirectory/Get-ADReplicationSiteLink.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adreplicationsitelink?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adreplicationsitelink?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADReplicationSiteLink --- diff --git a/docset/winserver2016-ps/activedirectory/Get-ADReplicationSiteLinkBridge.md b/docset/winserver2016-ps/activedirectory/Get-ADReplicationSiteLinkBridge.md index ee37719e54..b54e818f19 100644 --- a/docset/winserver2016-ps/activedirectory/Get-ADReplicationSiteLinkBridge.md +++ b/docset/winserver2016-ps/activedirectory/Get-ADReplicationSiteLinkBridge.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adreplicationsitelinkbridge?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adreplicationsitelinkbridge?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADReplicationSiteLinkBridge --- diff --git a/docset/winserver2016-ps/activedirectory/Get-ADReplicationSubnet.md b/docset/winserver2016-ps/activedirectory/Get-ADReplicationSubnet.md index 7fa27b0e70..2ae34dc59e 100644 --- a/docset/winserver2016-ps/activedirectory/Get-ADReplicationSubnet.md +++ b/docset/winserver2016-ps/activedirectory/Get-ADReplicationSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adreplicationsubnet?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adreplicationsubnet?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADReplicationSubnet --- diff --git a/docset/winserver2016-ps/activedirectory/Get-ADReplicationUpToDatenessVectorTable.md b/docset/winserver2016-ps/activedirectory/Get-ADReplicationUpToDatenessVectorTable.md index cab6082cf0..4e33baedf4 100644 --- a/docset/winserver2016-ps/activedirectory/Get-ADReplicationUpToDatenessVectorTable.md +++ b/docset/winserver2016-ps/activedirectory/Get-ADReplicationUpToDatenessVectorTable.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adreplicationuptodatenessvectortable?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adreplicationuptodatenessvectortable?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADReplicationUpToDatenessVectorTable --- diff --git a/docset/winserver2016-ps/activedirectory/Get-ADResourceProperty.md b/docset/winserver2016-ps/activedirectory/Get-ADResourceProperty.md index dcb12dc640..4ae076dc43 100644 --- a/docset/winserver2016-ps/activedirectory/Get-ADResourceProperty.md +++ b/docset/winserver2016-ps/activedirectory/Get-ADResourceProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adresourceproperty?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adresourceproperty?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADResourceProperty --- diff --git a/docset/winserver2016-ps/activedirectory/Get-ADResourcePropertyList.md b/docset/winserver2016-ps/activedirectory/Get-ADResourcePropertyList.md index 59d67e253b..7d7cf7a6d0 100644 --- a/docset/winserver2016-ps/activedirectory/Get-ADResourcePropertyList.md +++ b/docset/winserver2016-ps/activedirectory/Get-ADResourcePropertyList.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adresourcepropertylist?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adresourcepropertylist?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADResourcePropertyList --- diff --git a/docset/winserver2016-ps/activedirectory/Get-ADResourcePropertyValueType.md b/docset/winserver2016-ps/activedirectory/Get-ADResourcePropertyValueType.md index 01b886c5e4..a09a85311c 100644 --- a/docset/winserver2016-ps/activedirectory/Get-ADResourcePropertyValueType.md +++ b/docset/winserver2016-ps/activedirectory/Get-ADResourcePropertyValueType.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adresourcepropertyvaluetype?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adresourcepropertyvaluetype?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADResourcePropertyValueType --- diff --git a/docset/winserver2016-ps/activedirectory/Get-ADRootDSE.md b/docset/winserver2016-ps/activedirectory/Get-ADRootDSE.md index 5ab0691aba..de105c294f 100644 --- a/docset/winserver2016-ps/activedirectory/Get-ADRootDSE.md +++ b/docset/winserver2016-ps/activedirectory/Get-ADRootDSE.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adrootdse?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adrootdse?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADRootDSE --- diff --git a/docset/winserver2016-ps/activedirectory/Get-ADServiceAccount.md b/docset/winserver2016-ps/activedirectory/Get-ADServiceAccount.md index f62bb261b0..b87e84bc37 100644 --- a/docset/winserver2016-ps/activedirectory/Get-ADServiceAccount.md +++ b/docset/winserver2016-ps/activedirectory/Get-ADServiceAccount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adserviceaccount?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adserviceaccount?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADServiceAccount --- diff --git a/docset/winserver2016-ps/activedirectory/Get-ADTrust.md b/docset/winserver2016-ps/activedirectory/Get-ADTrust.md index 311832004f..4df7b56644 100644 --- a/docset/winserver2016-ps/activedirectory/Get-ADTrust.md +++ b/docset/winserver2016-ps/activedirectory/Get-ADTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adtrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adtrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADTrust --- diff --git a/docset/winserver2016-ps/activedirectory/Get-ADUser.md b/docset/winserver2016-ps/activedirectory/Get-ADUser.md index ead21faeee..8afd76dcb4 100644 --- a/docset/winserver2016-ps/activedirectory/Get-ADUser.md +++ b/docset/winserver2016-ps/activedirectory/Get-ADUser.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-aduser?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-aduser?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADUser --- diff --git a/docset/winserver2016-ps/activedirectory/Get-ADUserResultantPasswordPolicy.md b/docset/winserver2016-ps/activedirectory/Get-ADUserResultantPasswordPolicy.md index eac24b0800..4e89c32d22 100644 --- a/docset/winserver2016-ps/activedirectory/Get-ADUserResultantPasswordPolicy.md +++ b/docset/winserver2016-ps/activedirectory/Get-ADUserResultantPasswordPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-aduserresultantpasswordpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-aduserresultantpasswordpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADUserResultantPasswordPolicy --- diff --git a/docset/winserver2016-ps/activedirectory/Grant-ADAuthenticationPolicySiloAccess.md b/docset/winserver2016-ps/activedirectory/Grant-ADAuthenticationPolicySiloAccess.md index a016792dc9..fd3a2b49f9 100644 --- a/docset/winserver2016-ps/activedirectory/Grant-ADAuthenticationPolicySiloAccess.md +++ b/docset/winserver2016-ps/activedirectory/Grant-ADAuthenticationPolicySiloAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/grant-adauthenticationpolicysiloaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/grant-adauthenticationpolicysiloaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Grant-ADAuthenticationPolicySiloAccess --- diff --git a/docset/winserver2016-ps/activedirectory/Install-ADServiceAccount.md b/docset/winserver2016-ps/activedirectory/Install-ADServiceAccount.md index 49c9e229fc..10f0cdc35c 100644 --- a/docset/winserver2016-ps/activedirectory/Install-ADServiceAccount.md +++ b/docset/winserver2016-ps/activedirectory/Install-ADServiceAccount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/install-adserviceaccount?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/install-adserviceaccount?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-ADServiceAccount --- diff --git a/docset/winserver2016-ps/activedirectory/Move-ADDirectoryServer.md b/docset/winserver2016-ps/activedirectory/Move-ADDirectoryServer.md index 5efdbedb3b..2aa808cbc2 100644 --- a/docset/winserver2016-ps/activedirectory/Move-ADDirectoryServer.md +++ b/docset/winserver2016-ps/activedirectory/Move-ADDirectoryServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/move-addirectoryserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/move-addirectoryserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-ADDirectoryServer --- diff --git a/docset/winserver2016-ps/activedirectory/Move-ADDirectoryServerOperationMasterRole.md b/docset/winserver2016-ps/activedirectory/Move-ADDirectoryServerOperationMasterRole.md index e48d383b92..2203157299 100644 --- a/docset/winserver2016-ps/activedirectory/Move-ADDirectoryServerOperationMasterRole.md +++ b/docset/winserver2016-ps/activedirectory/Move-ADDirectoryServerOperationMasterRole.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/move-addirectoryserveroperationmasterrole?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/move-addirectoryserveroperationmasterrole?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-ADDirectoryServerOperationMasterRole --- diff --git a/docset/winserver2016-ps/activedirectory/Move-ADObject.md b/docset/winserver2016-ps/activedirectory/Move-ADObject.md index 59339d03a6..dac51dd5d7 100644 --- a/docset/winserver2016-ps/activedirectory/Move-ADObject.md +++ b/docset/winserver2016-ps/activedirectory/Move-ADObject.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/move-adobject?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/move-adobject?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-ADObject --- diff --git a/docset/winserver2016-ps/activedirectory/New-ADAuthenticationPolicy.md b/docset/winserver2016-ps/activedirectory/New-ADAuthenticationPolicy.md index b3023fadda..904c78c9c9 100644 --- a/docset/winserver2016-ps/activedirectory/New-ADAuthenticationPolicy.md +++ b/docset/winserver2016-ps/activedirectory/New-ADAuthenticationPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adauthenticationpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adauthenticationpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADAuthenticationPolicy --- diff --git a/docset/winserver2016-ps/activedirectory/New-ADAuthenticationPolicySilo.md b/docset/winserver2016-ps/activedirectory/New-ADAuthenticationPolicySilo.md index e7b7b200d8..e94333dd1f 100644 --- a/docset/winserver2016-ps/activedirectory/New-ADAuthenticationPolicySilo.md +++ b/docset/winserver2016-ps/activedirectory/New-ADAuthenticationPolicySilo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adauthenticationpolicysilo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adauthenticationpolicysilo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADAuthenticationPolicySilo --- diff --git a/docset/winserver2016-ps/activedirectory/New-ADCentralAccessPolicy.md b/docset/winserver2016-ps/activedirectory/New-ADCentralAccessPolicy.md index 81c5b4a334..c1316a5295 100644 --- a/docset/winserver2016-ps/activedirectory/New-ADCentralAccessPolicy.md +++ b/docset/winserver2016-ps/activedirectory/New-ADCentralAccessPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adcentralaccesspolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adcentralaccesspolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADCentralAccessPolicy --- diff --git a/docset/winserver2016-ps/activedirectory/New-ADCentralAccessRule.md b/docset/winserver2016-ps/activedirectory/New-ADCentralAccessRule.md index b205b95e48..f9034d3121 100644 --- a/docset/winserver2016-ps/activedirectory/New-ADCentralAccessRule.md +++ b/docset/winserver2016-ps/activedirectory/New-ADCentralAccessRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adcentralaccessrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adcentralaccessrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADCentralAccessRule --- diff --git a/docset/winserver2016-ps/activedirectory/New-ADClaimTransformPolicy.md b/docset/winserver2016-ps/activedirectory/New-ADClaimTransformPolicy.md index c172a78794..9ed67d3245 100644 --- a/docset/winserver2016-ps/activedirectory/New-ADClaimTransformPolicy.md +++ b/docset/winserver2016-ps/activedirectory/New-ADClaimTransformPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adclaimtransformpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adclaimtransformpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADClaimTransformPolicy --- diff --git a/docset/winserver2016-ps/activedirectory/New-ADClaimType.md b/docset/winserver2016-ps/activedirectory/New-ADClaimType.md index 48e4e8badd..3103380f32 100644 --- a/docset/winserver2016-ps/activedirectory/New-ADClaimType.md +++ b/docset/winserver2016-ps/activedirectory/New-ADClaimType.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adclaimtype?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adclaimtype?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADClaimType --- diff --git a/docset/winserver2016-ps/activedirectory/New-ADComputer.md b/docset/winserver2016-ps/activedirectory/New-ADComputer.md index a32a5a4f0f..0ee21f444d 100644 --- a/docset/winserver2016-ps/activedirectory/New-ADComputer.md +++ b/docset/winserver2016-ps/activedirectory/New-ADComputer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adcomputer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adcomputer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADComputer --- diff --git a/docset/winserver2016-ps/activedirectory/New-ADDCCloneConfigFile.md b/docset/winserver2016-ps/activedirectory/New-ADDCCloneConfigFile.md index 01bb0fc6b9..14f0386e19 100644 --- a/docset/winserver2016-ps/activedirectory/New-ADDCCloneConfigFile.md +++ b/docset/winserver2016-ps/activedirectory/New-ADDCCloneConfigFile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-addccloneconfigfile?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-addccloneconfigfile?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADDCCloneConfigFile --- diff --git a/docset/winserver2016-ps/activedirectory/New-ADFineGrainedPasswordPolicy.md b/docset/winserver2016-ps/activedirectory/New-ADFineGrainedPasswordPolicy.md index a4dd37dffe..7f3ef1a881 100644 --- a/docset/winserver2016-ps/activedirectory/New-ADFineGrainedPasswordPolicy.md +++ b/docset/winserver2016-ps/activedirectory/New-ADFineGrainedPasswordPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adfinegrainedpasswordpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adfinegrainedpasswordpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADFineGrainedPasswordPolicy --- diff --git a/docset/winserver2016-ps/activedirectory/New-ADGroup.md b/docset/winserver2016-ps/activedirectory/New-ADGroup.md index 85aca3b7f5..1985f9c5f1 100644 --- a/docset/winserver2016-ps/activedirectory/New-ADGroup.md +++ b/docset/winserver2016-ps/activedirectory/New-ADGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADGroup --- diff --git a/docset/winserver2016-ps/activedirectory/New-ADObject.md b/docset/winserver2016-ps/activedirectory/New-ADObject.md index e0b99a42ca..7529f8fd82 100644 --- a/docset/winserver2016-ps/activedirectory/New-ADObject.md +++ b/docset/winserver2016-ps/activedirectory/New-ADObject.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adobject?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adobject?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADObject --- diff --git a/docset/winserver2016-ps/activedirectory/New-ADOrganizationalUnit.md b/docset/winserver2016-ps/activedirectory/New-ADOrganizationalUnit.md index 67e0bb825d..4e043895c7 100644 --- a/docset/winserver2016-ps/activedirectory/New-ADOrganizationalUnit.md +++ b/docset/winserver2016-ps/activedirectory/New-ADOrganizationalUnit.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adorganizationalunit?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adorganizationalunit?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADOrganizationalUnit --- diff --git a/docset/winserver2016-ps/activedirectory/New-ADReplicationSite.md b/docset/winserver2016-ps/activedirectory/New-ADReplicationSite.md index a69572dd2f..61a7b0693c 100644 --- a/docset/winserver2016-ps/activedirectory/New-ADReplicationSite.md +++ b/docset/winserver2016-ps/activedirectory/New-ADReplicationSite.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adreplicationsite?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adreplicationsite?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADReplicationSite --- diff --git a/docset/winserver2016-ps/activedirectory/New-ADReplicationSiteLink.md b/docset/winserver2016-ps/activedirectory/New-ADReplicationSiteLink.md index 45b8a8f3b5..ea3c04c04a 100644 --- a/docset/winserver2016-ps/activedirectory/New-ADReplicationSiteLink.md +++ b/docset/winserver2016-ps/activedirectory/New-ADReplicationSiteLink.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adreplicationsitelink?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adreplicationsitelink?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADReplicationSiteLink --- diff --git a/docset/winserver2016-ps/activedirectory/New-ADReplicationSiteLinkBridge.md b/docset/winserver2016-ps/activedirectory/New-ADReplicationSiteLinkBridge.md index bc4e2bb60e..8bea9f4f2e 100644 --- a/docset/winserver2016-ps/activedirectory/New-ADReplicationSiteLinkBridge.md +++ b/docset/winserver2016-ps/activedirectory/New-ADReplicationSiteLinkBridge.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adreplicationsitelinkbridge?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adreplicationsitelinkbridge?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADReplicationSiteLinkBridge --- diff --git a/docset/winserver2016-ps/activedirectory/New-ADReplicationSubnet.md b/docset/winserver2016-ps/activedirectory/New-ADReplicationSubnet.md index 864c3a2f51..2aa58cc8f7 100644 --- a/docset/winserver2016-ps/activedirectory/New-ADReplicationSubnet.md +++ b/docset/winserver2016-ps/activedirectory/New-ADReplicationSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adreplicationsubnet?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adreplicationsubnet?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADReplicationSubnet --- diff --git a/docset/winserver2016-ps/activedirectory/New-ADResourceProperty.md b/docset/winserver2016-ps/activedirectory/New-ADResourceProperty.md index 703e8e29e1..8102f7d2c1 100644 --- a/docset/winserver2016-ps/activedirectory/New-ADResourceProperty.md +++ b/docset/winserver2016-ps/activedirectory/New-ADResourceProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adresourceproperty?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adresourceproperty?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADResourceProperty --- diff --git a/docset/winserver2016-ps/activedirectory/New-ADResourcePropertyList.md b/docset/winserver2016-ps/activedirectory/New-ADResourcePropertyList.md index c0232b9f36..7051d073cd 100644 --- a/docset/winserver2016-ps/activedirectory/New-ADResourcePropertyList.md +++ b/docset/winserver2016-ps/activedirectory/New-ADResourcePropertyList.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adresourcepropertylist?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adresourcepropertylist?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADResourcePropertyList --- diff --git a/docset/winserver2016-ps/activedirectory/New-ADServiceAccount.md b/docset/winserver2016-ps/activedirectory/New-ADServiceAccount.md index f43ed74107..ef174f949d 100644 --- a/docset/winserver2016-ps/activedirectory/New-ADServiceAccount.md +++ b/docset/winserver2016-ps/activedirectory/New-ADServiceAccount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adserviceaccount?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adserviceaccount?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADServiceAccount --- diff --git a/docset/winserver2016-ps/activedirectory/New-ADUser.md b/docset/winserver2016-ps/activedirectory/New-ADUser.md index d141e22504..3c8737362c 100644 --- a/docset/winserver2016-ps/activedirectory/New-ADUser.md +++ b/docset/winserver2016-ps/activedirectory/New-ADUser.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-aduser?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-aduser?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADUser --- diff --git a/docset/winserver2016-ps/activedirectory/Remove-ADAuthenticationPolicy.md b/docset/winserver2016-ps/activedirectory/Remove-ADAuthenticationPolicy.md index 2b86e2941e..f3e8ca95ee 100644 --- a/docset/winserver2016-ps/activedirectory/Remove-ADAuthenticationPolicy.md +++ b/docset/winserver2016-ps/activedirectory/Remove-ADAuthenticationPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adauthenticationpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adauthenticationpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADAuthenticationPolicy --- diff --git a/docset/winserver2016-ps/activedirectory/Remove-ADAuthenticationPolicySilo.md b/docset/winserver2016-ps/activedirectory/Remove-ADAuthenticationPolicySilo.md index a9c50cb927..af4600d46b 100644 --- a/docset/winserver2016-ps/activedirectory/Remove-ADAuthenticationPolicySilo.md +++ b/docset/winserver2016-ps/activedirectory/Remove-ADAuthenticationPolicySilo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adauthenticationpolicysilo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adauthenticationpolicysilo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADAuthenticationPolicySilo --- diff --git a/docset/winserver2016-ps/activedirectory/Remove-ADCentralAccessPolicy.md b/docset/winserver2016-ps/activedirectory/Remove-ADCentralAccessPolicy.md index 422362ada8..e170c3ae9d 100644 --- a/docset/winserver2016-ps/activedirectory/Remove-ADCentralAccessPolicy.md +++ b/docset/winserver2016-ps/activedirectory/Remove-ADCentralAccessPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adcentralaccesspolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adcentralaccesspolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADCentralAccessPolicy --- diff --git a/docset/winserver2016-ps/activedirectory/Remove-ADCentralAccessPolicyMember.md b/docset/winserver2016-ps/activedirectory/Remove-ADCentralAccessPolicyMember.md index 60b1cc384f..14715047dc 100644 --- a/docset/winserver2016-ps/activedirectory/Remove-ADCentralAccessPolicyMember.md +++ b/docset/winserver2016-ps/activedirectory/Remove-ADCentralAccessPolicyMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adcentralaccesspolicymember?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adcentralaccesspolicymember?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADCentralAccessPolicyMember --- diff --git a/docset/winserver2016-ps/activedirectory/Remove-ADCentralAccessRule.md b/docset/winserver2016-ps/activedirectory/Remove-ADCentralAccessRule.md index 19bc92726d..79dca76479 100644 --- a/docset/winserver2016-ps/activedirectory/Remove-ADCentralAccessRule.md +++ b/docset/winserver2016-ps/activedirectory/Remove-ADCentralAccessRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adcentralaccessrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adcentralaccessrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADCentralAccessRule --- diff --git a/docset/winserver2016-ps/activedirectory/Remove-ADClaimTransformPolicy.md b/docset/winserver2016-ps/activedirectory/Remove-ADClaimTransformPolicy.md index c9b83f0ec9..c0f133ce36 100644 --- a/docset/winserver2016-ps/activedirectory/Remove-ADClaimTransformPolicy.md +++ b/docset/winserver2016-ps/activedirectory/Remove-ADClaimTransformPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adclaimtransformpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adclaimtransformpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADClaimTransformPolicy --- diff --git a/docset/winserver2016-ps/activedirectory/Remove-ADClaimType.md b/docset/winserver2016-ps/activedirectory/Remove-ADClaimType.md index a4b1fad2a6..06a17c74b4 100644 --- a/docset/winserver2016-ps/activedirectory/Remove-ADClaimType.md +++ b/docset/winserver2016-ps/activedirectory/Remove-ADClaimType.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adclaimtype?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adclaimtype?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADClaimType --- diff --git a/docset/winserver2016-ps/activedirectory/Remove-ADComputer.md b/docset/winserver2016-ps/activedirectory/Remove-ADComputer.md index b53b50b58e..6744f689bd 100644 --- a/docset/winserver2016-ps/activedirectory/Remove-ADComputer.md +++ b/docset/winserver2016-ps/activedirectory/Remove-ADComputer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adcomputer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adcomputer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADComputer --- diff --git a/docset/winserver2016-ps/activedirectory/Remove-ADComputerServiceAccount.md b/docset/winserver2016-ps/activedirectory/Remove-ADComputerServiceAccount.md index 56765714cc..9f60facbe4 100644 --- a/docset/winserver2016-ps/activedirectory/Remove-ADComputerServiceAccount.md +++ b/docset/winserver2016-ps/activedirectory/Remove-ADComputerServiceAccount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adcomputerserviceaccount?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adcomputerserviceaccount?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADComputerServiceAccount --- diff --git a/docset/winserver2016-ps/activedirectory/Remove-ADDomainControllerPasswordReplicationPolicy.md b/docset/winserver2016-ps/activedirectory/Remove-ADDomainControllerPasswordReplicationPolicy.md index 4ed8dc56ed..8ae3c2f21a 100644 --- a/docset/winserver2016-ps/activedirectory/Remove-ADDomainControllerPasswordReplicationPolicy.md +++ b/docset/winserver2016-ps/activedirectory/Remove-ADDomainControllerPasswordReplicationPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-addomaincontrollerpasswordreplicationpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-addomaincontrollerpasswordreplicationpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADDomainControllerPasswordReplicationPolicy --- diff --git a/docset/winserver2016-ps/activedirectory/Remove-ADFineGrainedPasswordPolicy.md b/docset/winserver2016-ps/activedirectory/Remove-ADFineGrainedPasswordPolicy.md index 3881744a5f..0c618b4475 100644 --- a/docset/winserver2016-ps/activedirectory/Remove-ADFineGrainedPasswordPolicy.md +++ b/docset/winserver2016-ps/activedirectory/Remove-ADFineGrainedPasswordPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adfinegrainedpasswordpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adfinegrainedpasswordpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADFineGrainedPasswordPolicy --- diff --git a/docset/winserver2016-ps/activedirectory/Remove-ADFineGrainedPasswordPolicySubject.md b/docset/winserver2016-ps/activedirectory/Remove-ADFineGrainedPasswordPolicySubject.md index 345ff13678..2ab63755e8 100644 --- a/docset/winserver2016-ps/activedirectory/Remove-ADFineGrainedPasswordPolicySubject.md +++ b/docset/winserver2016-ps/activedirectory/Remove-ADFineGrainedPasswordPolicySubject.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adfinegrainedpasswordpolicysubject?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adfinegrainedpasswordpolicysubject?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADFineGrainedPasswordPolicySubject --- diff --git a/docset/winserver2016-ps/activedirectory/Remove-ADGroup.md b/docset/winserver2016-ps/activedirectory/Remove-ADGroup.md index 692ed7c89f..04441ba756 100644 --- a/docset/winserver2016-ps/activedirectory/Remove-ADGroup.md +++ b/docset/winserver2016-ps/activedirectory/Remove-ADGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADGroup --- diff --git a/docset/winserver2016-ps/activedirectory/Remove-ADGroupMember.md b/docset/winserver2016-ps/activedirectory/Remove-ADGroupMember.md index 531fa13816..41cea98e45 100644 --- a/docset/winserver2016-ps/activedirectory/Remove-ADGroupMember.md +++ b/docset/winserver2016-ps/activedirectory/Remove-ADGroupMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adgroupmember?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adgroupmember?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADGroupMember --- diff --git a/docset/winserver2016-ps/activedirectory/Remove-ADObject.md b/docset/winserver2016-ps/activedirectory/Remove-ADObject.md index 1f4e7326a1..5b31acf549 100644 --- a/docset/winserver2016-ps/activedirectory/Remove-ADObject.md +++ b/docset/winserver2016-ps/activedirectory/Remove-ADObject.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adobject?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adobject?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADObject --- diff --git a/docset/winserver2016-ps/activedirectory/Remove-ADOrganizationalUnit.md b/docset/winserver2016-ps/activedirectory/Remove-ADOrganizationalUnit.md index 473aaa7f79..ab9c8c5351 100644 --- a/docset/winserver2016-ps/activedirectory/Remove-ADOrganizationalUnit.md +++ b/docset/winserver2016-ps/activedirectory/Remove-ADOrganizationalUnit.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adorganizationalunit?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adorganizationalunit?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADOrganizationalUnit --- diff --git a/docset/winserver2016-ps/activedirectory/Remove-ADPrincipalGroupMembership.md b/docset/winserver2016-ps/activedirectory/Remove-ADPrincipalGroupMembership.md index aecb77d9c2..52d5d53c94 100644 --- a/docset/winserver2016-ps/activedirectory/Remove-ADPrincipalGroupMembership.md +++ b/docset/winserver2016-ps/activedirectory/Remove-ADPrincipalGroupMembership.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adprincipalgroupmembership?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adprincipalgroupmembership?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADPrincipalGroupMembership --- diff --git a/docset/winserver2016-ps/activedirectory/Remove-ADReplicationSite.md b/docset/winserver2016-ps/activedirectory/Remove-ADReplicationSite.md index 98058c6c8d..64c6a36786 100644 --- a/docset/winserver2016-ps/activedirectory/Remove-ADReplicationSite.md +++ b/docset/winserver2016-ps/activedirectory/Remove-ADReplicationSite.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adreplicationsite?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adreplicationsite?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADReplicationSite --- diff --git a/docset/winserver2016-ps/activedirectory/Remove-ADReplicationSiteLink.md b/docset/winserver2016-ps/activedirectory/Remove-ADReplicationSiteLink.md index fe9461266a..bc43b88d79 100644 --- a/docset/winserver2016-ps/activedirectory/Remove-ADReplicationSiteLink.md +++ b/docset/winserver2016-ps/activedirectory/Remove-ADReplicationSiteLink.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adreplicationsitelink?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adreplicationsitelink?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADReplicationSiteLink --- diff --git a/docset/winserver2016-ps/activedirectory/Remove-ADReplicationSiteLinkBridge.md b/docset/winserver2016-ps/activedirectory/Remove-ADReplicationSiteLinkBridge.md index 98630da116..ed567dc008 100644 --- a/docset/winserver2016-ps/activedirectory/Remove-ADReplicationSiteLinkBridge.md +++ b/docset/winserver2016-ps/activedirectory/Remove-ADReplicationSiteLinkBridge.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adreplicationsitelinkbridge?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adreplicationsitelinkbridge?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADReplicationSiteLinkBridge --- diff --git a/docset/winserver2016-ps/activedirectory/Remove-ADReplicationSubnet.md b/docset/winserver2016-ps/activedirectory/Remove-ADReplicationSubnet.md index 1db72659f7..83e57afbe1 100644 --- a/docset/winserver2016-ps/activedirectory/Remove-ADReplicationSubnet.md +++ b/docset/winserver2016-ps/activedirectory/Remove-ADReplicationSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adreplicationsubnet?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adreplicationsubnet?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADReplicationSubnet --- diff --git a/docset/winserver2016-ps/activedirectory/Remove-ADResourceProperty.md b/docset/winserver2016-ps/activedirectory/Remove-ADResourceProperty.md index 780b657bca..cc2e6d52a3 100644 --- a/docset/winserver2016-ps/activedirectory/Remove-ADResourceProperty.md +++ b/docset/winserver2016-ps/activedirectory/Remove-ADResourceProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adresourceproperty?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adresourceproperty?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADResourceProperty --- diff --git a/docset/winserver2016-ps/activedirectory/Remove-ADResourcePropertyList.md b/docset/winserver2016-ps/activedirectory/Remove-ADResourcePropertyList.md index 7cd5d3e921..a1a06daf81 100644 --- a/docset/winserver2016-ps/activedirectory/Remove-ADResourcePropertyList.md +++ b/docset/winserver2016-ps/activedirectory/Remove-ADResourcePropertyList.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adresourcepropertylist?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adresourcepropertylist?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADResourcePropertyList --- diff --git a/docset/winserver2016-ps/activedirectory/Remove-ADResourcePropertyListMember.md b/docset/winserver2016-ps/activedirectory/Remove-ADResourcePropertyListMember.md index f51db2249c..5643334174 100644 --- a/docset/winserver2016-ps/activedirectory/Remove-ADResourcePropertyListMember.md +++ b/docset/winserver2016-ps/activedirectory/Remove-ADResourcePropertyListMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adresourcepropertylistmember?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adresourcepropertylistmember?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADResourcePropertyListMember --- diff --git a/docset/winserver2016-ps/activedirectory/Remove-ADServiceAccount.md b/docset/winserver2016-ps/activedirectory/Remove-ADServiceAccount.md index b2af601268..bfefef8025 100644 --- a/docset/winserver2016-ps/activedirectory/Remove-ADServiceAccount.md +++ b/docset/winserver2016-ps/activedirectory/Remove-ADServiceAccount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adserviceaccount?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adserviceaccount?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADServiceAccount --- diff --git a/docset/winserver2016-ps/activedirectory/Remove-ADUser.md b/docset/winserver2016-ps/activedirectory/Remove-ADUser.md index 1dc2cd2645..d9f8f39e57 100644 --- a/docset/winserver2016-ps/activedirectory/Remove-ADUser.md +++ b/docset/winserver2016-ps/activedirectory/Remove-ADUser.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-aduser?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-aduser?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADUser --- diff --git a/docset/winserver2016-ps/activedirectory/Rename-ADObject.md b/docset/winserver2016-ps/activedirectory/Rename-ADObject.md index 34ed2c5352..9977472b5c 100644 --- a/docset/winserver2016-ps/activedirectory/Rename-ADObject.md +++ b/docset/winserver2016-ps/activedirectory/Rename-ADObject.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/rename-adobject?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/rename-adobject?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-ADObject --- diff --git a/docset/winserver2016-ps/activedirectory/Reset-ADServiceAccountPassword.md b/docset/winserver2016-ps/activedirectory/Reset-ADServiceAccountPassword.md index 4278554325..3037467826 100644 --- a/docset/winserver2016-ps/activedirectory/Reset-ADServiceAccountPassword.md +++ b/docset/winserver2016-ps/activedirectory/Reset-ADServiceAccountPassword.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/reset-adserviceaccountpassword?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/reset-adserviceaccountpassword?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-ADServiceAccountPassword --- diff --git a/docset/winserver2016-ps/activedirectory/Restore-ADObject.md b/docset/winserver2016-ps/activedirectory/Restore-ADObject.md index 76f3af283f..0292f9c3a5 100644 --- a/docset/winserver2016-ps/activedirectory/Restore-ADObject.md +++ b/docset/winserver2016-ps/activedirectory/Restore-ADObject.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/restore-adobject?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/restore-adobject?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-ADObject --- diff --git a/docset/winserver2016-ps/activedirectory/Revoke-ADAuthenticationPolicySiloAccess.md b/docset/winserver2016-ps/activedirectory/Revoke-ADAuthenticationPolicySiloAccess.md index e97a3a8c70..1b6af10759 100644 --- a/docset/winserver2016-ps/activedirectory/Revoke-ADAuthenticationPolicySiloAccess.md +++ b/docset/winserver2016-ps/activedirectory/Revoke-ADAuthenticationPolicySiloAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/revoke-adauthenticationpolicysiloaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/revoke-adauthenticationpolicysiloaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Revoke-ADAuthenticationPolicySiloAccess --- diff --git a/docset/winserver2016-ps/activedirectory/Search-ADAccount.md b/docset/winserver2016-ps/activedirectory/Search-ADAccount.md index b9ecc4746a..60d507a59f 100644 --- a/docset/winserver2016-ps/activedirectory/Search-ADAccount.md +++ b/docset/winserver2016-ps/activedirectory/Search-ADAccount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/search-adaccount?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/search-adaccount?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Search-ADAccount --- diff --git a/docset/winserver2016-ps/activedirectory/Set-ADAccountAuthenticationPolicySilo.md b/docset/winserver2016-ps/activedirectory/Set-ADAccountAuthenticationPolicySilo.md index 8ab1b59711..6edd9ef7af 100644 --- a/docset/winserver2016-ps/activedirectory/Set-ADAccountAuthenticationPolicySilo.md +++ b/docset/winserver2016-ps/activedirectory/Set-ADAccountAuthenticationPolicySilo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adaccountauthenticationpolicysilo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adaccountauthenticationpolicysilo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADAccountAuthenticationPolicySilo --- diff --git a/docset/winserver2016-ps/activedirectory/Set-ADAccountControl.md b/docset/winserver2016-ps/activedirectory/Set-ADAccountControl.md index 6a7914717f..f7c14d5d33 100644 --- a/docset/winserver2016-ps/activedirectory/Set-ADAccountControl.md +++ b/docset/winserver2016-ps/activedirectory/Set-ADAccountControl.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adaccountcontrol?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adaccountcontrol?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADAccountControl --- diff --git a/docset/winserver2016-ps/activedirectory/Set-ADAccountExpiration.md b/docset/winserver2016-ps/activedirectory/Set-ADAccountExpiration.md index 96402941fd..55375718e4 100644 --- a/docset/winserver2016-ps/activedirectory/Set-ADAccountExpiration.md +++ b/docset/winserver2016-ps/activedirectory/Set-ADAccountExpiration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adaccountexpiration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adaccountexpiration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADAccountExpiration --- diff --git a/docset/winserver2016-ps/activedirectory/Set-ADAccountPassword.md b/docset/winserver2016-ps/activedirectory/Set-ADAccountPassword.md index ddb74583e7..b608cf7d7c 100644 --- a/docset/winserver2016-ps/activedirectory/Set-ADAccountPassword.md +++ b/docset/winserver2016-ps/activedirectory/Set-ADAccountPassword.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adaccountpassword?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adaccountpassword?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADAccountPassword --- diff --git a/docset/winserver2016-ps/activedirectory/Set-ADAuthenticationPolicy.md b/docset/winserver2016-ps/activedirectory/Set-ADAuthenticationPolicy.md index 0dfba6a5c8..1e3b2cf766 100644 --- a/docset/winserver2016-ps/activedirectory/Set-ADAuthenticationPolicy.md +++ b/docset/winserver2016-ps/activedirectory/Set-ADAuthenticationPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adauthenticationpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adauthenticationpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADAuthenticationPolicy --- diff --git a/docset/winserver2016-ps/activedirectory/Set-ADAuthenticationPolicySilo.md b/docset/winserver2016-ps/activedirectory/Set-ADAuthenticationPolicySilo.md index bb60690a6a..193cba8a15 100644 --- a/docset/winserver2016-ps/activedirectory/Set-ADAuthenticationPolicySilo.md +++ b/docset/winserver2016-ps/activedirectory/Set-ADAuthenticationPolicySilo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adauthenticationpolicysilo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adauthenticationpolicysilo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADAuthenticationPolicySilo --- diff --git a/docset/winserver2016-ps/activedirectory/Set-ADCentralAccessPolicy.md b/docset/winserver2016-ps/activedirectory/Set-ADCentralAccessPolicy.md index 2228f5bc33..c86027570e 100644 --- a/docset/winserver2016-ps/activedirectory/Set-ADCentralAccessPolicy.md +++ b/docset/winserver2016-ps/activedirectory/Set-ADCentralAccessPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adcentralaccesspolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adcentralaccesspolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADCentralAccessPolicy --- diff --git a/docset/winserver2016-ps/activedirectory/Set-ADCentralAccessRule.md b/docset/winserver2016-ps/activedirectory/Set-ADCentralAccessRule.md index 44b51004f5..6fca1a1ef1 100644 --- a/docset/winserver2016-ps/activedirectory/Set-ADCentralAccessRule.md +++ b/docset/winserver2016-ps/activedirectory/Set-ADCentralAccessRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adcentralaccessrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adcentralaccessrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADCentralAccessRule --- diff --git a/docset/winserver2016-ps/activedirectory/Set-ADClaimTransformLink.md b/docset/winserver2016-ps/activedirectory/Set-ADClaimTransformLink.md index 77cb2fce2b..da1ee68589 100644 --- a/docset/winserver2016-ps/activedirectory/Set-ADClaimTransformLink.md +++ b/docset/winserver2016-ps/activedirectory/Set-ADClaimTransformLink.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adclaimtransformlink?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adclaimtransformlink?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADClaimTransformLink --- diff --git a/docset/winserver2016-ps/activedirectory/Set-ADClaimTransformPolicy.md b/docset/winserver2016-ps/activedirectory/Set-ADClaimTransformPolicy.md index f8e308a485..2f743f33bc 100644 --- a/docset/winserver2016-ps/activedirectory/Set-ADClaimTransformPolicy.md +++ b/docset/winserver2016-ps/activedirectory/Set-ADClaimTransformPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adclaimtransformpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adclaimtransformpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADClaimTransformPolicy --- diff --git a/docset/winserver2016-ps/activedirectory/Set-ADClaimType.md b/docset/winserver2016-ps/activedirectory/Set-ADClaimType.md index 77e3526a54..0c35b5dc34 100644 --- a/docset/winserver2016-ps/activedirectory/Set-ADClaimType.md +++ b/docset/winserver2016-ps/activedirectory/Set-ADClaimType.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adclaimtype?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adclaimtype?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADClaimType --- diff --git a/docset/winserver2016-ps/activedirectory/Set-ADComputer.md b/docset/winserver2016-ps/activedirectory/Set-ADComputer.md index 436a959213..08043dc39b 100644 --- a/docset/winserver2016-ps/activedirectory/Set-ADComputer.md +++ b/docset/winserver2016-ps/activedirectory/Set-ADComputer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adcomputer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adcomputer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADComputer --- diff --git a/docset/winserver2016-ps/activedirectory/Set-ADDefaultDomainPasswordPolicy.md b/docset/winserver2016-ps/activedirectory/Set-ADDefaultDomainPasswordPolicy.md index a471e6015b..541810facf 100644 --- a/docset/winserver2016-ps/activedirectory/Set-ADDefaultDomainPasswordPolicy.md +++ b/docset/winserver2016-ps/activedirectory/Set-ADDefaultDomainPasswordPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-addefaultdomainpasswordpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-addefaultdomainpasswordpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADDefaultDomainPasswordPolicy --- diff --git a/docset/winserver2016-ps/activedirectory/Set-ADDomain.md b/docset/winserver2016-ps/activedirectory/Set-ADDomain.md index 17dfebd6c5..4a729b6102 100644 --- a/docset/winserver2016-ps/activedirectory/Set-ADDomain.md +++ b/docset/winserver2016-ps/activedirectory/Set-ADDomain.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-addomain?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-addomain?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADDomain --- diff --git a/docset/winserver2016-ps/activedirectory/Set-ADDomainMode.md b/docset/winserver2016-ps/activedirectory/Set-ADDomainMode.md index 2edb50ead4..1fd4682b2f 100644 --- a/docset/winserver2016-ps/activedirectory/Set-ADDomainMode.md +++ b/docset/winserver2016-ps/activedirectory/Set-ADDomainMode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-addomainmode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-addomainmode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADDomainMode --- diff --git a/docset/winserver2016-ps/activedirectory/Set-ADFineGrainedPasswordPolicy.md b/docset/winserver2016-ps/activedirectory/Set-ADFineGrainedPasswordPolicy.md index d773a951d0..c5a072c9a7 100644 --- a/docset/winserver2016-ps/activedirectory/Set-ADFineGrainedPasswordPolicy.md +++ b/docset/winserver2016-ps/activedirectory/Set-ADFineGrainedPasswordPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adfinegrainedpasswordpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adfinegrainedpasswordpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADFineGrainedPasswordPolicy --- diff --git a/docset/winserver2016-ps/activedirectory/Set-ADForest.md b/docset/winserver2016-ps/activedirectory/Set-ADForest.md index 101d702b50..555a7208d0 100644 --- a/docset/winserver2016-ps/activedirectory/Set-ADForest.md +++ b/docset/winserver2016-ps/activedirectory/Set-ADForest.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adforest?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adforest?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADForest --- diff --git a/docset/winserver2016-ps/activedirectory/Set-ADForestMode.md b/docset/winserver2016-ps/activedirectory/Set-ADForestMode.md index 23b4cfb334..ec06cd2803 100644 --- a/docset/winserver2016-ps/activedirectory/Set-ADForestMode.md +++ b/docset/winserver2016-ps/activedirectory/Set-ADForestMode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adforestmode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adforestmode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADForestMode --- diff --git a/docset/winserver2016-ps/activedirectory/Set-ADGroup.md b/docset/winserver2016-ps/activedirectory/Set-ADGroup.md index 6df76d4abd..b541ea9604 100644 --- a/docset/winserver2016-ps/activedirectory/Set-ADGroup.md +++ b/docset/winserver2016-ps/activedirectory/Set-ADGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADGroup --- diff --git a/docset/winserver2016-ps/activedirectory/Set-ADObject.md b/docset/winserver2016-ps/activedirectory/Set-ADObject.md index a18fc8e3e6..35b18b04d2 100644 --- a/docset/winserver2016-ps/activedirectory/Set-ADObject.md +++ b/docset/winserver2016-ps/activedirectory/Set-ADObject.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adobject?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adobject?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADObject --- diff --git a/docset/winserver2016-ps/activedirectory/Set-ADOrganizationalUnit.md b/docset/winserver2016-ps/activedirectory/Set-ADOrganizationalUnit.md index d101d261f5..99d194834c 100644 --- a/docset/winserver2016-ps/activedirectory/Set-ADOrganizationalUnit.md +++ b/docset/winserver2016-ps/activedirectory/Set-ADOrganizationalUnit.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adorganizationalunit?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adorganizationalunit?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADOrganizationalUnit --- diff --git a/docset/winserver2016-ps/activedirectory/Set-ADReplicationConnection.md b/docset/winserver2016-ps/activedirectory/Set-ADReplicationConnection.md index 3e317c435c..ef6da9fdb2 100644 --- a/docset/winserver2016-ps/activedirectory/Set-ADReplicationConnection.md +++ b/docset/winserver2016-ps/activedirectory/Set-ADReplicationConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adreplicationconnection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adreplicationconnection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADReplicationConnection --- diff --git a/docset/winserver2016-ps/activedirectory/Set-ADReplicationSite.md b/docset/winserver2016-ps/activedirectory/Set-ADReplicationSite.md index 94a5bef7bc..b4fabab065 100644 --- a/docset/winserver2016-ps/activedirectory/Set-ADReplicationSite.md +++ b/docset/winserver2016-ps/activedirectory/Set-ADReplicationSite.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adreplicationsite?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adreplicationsite?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADReplicationSite --- diff --git a/docset/winserver2016-ps/activedirectory/Set-ADReplicationSiteLink.md b/docset/winserver2016-ps/activedirectory/Set-ADReplicationSiteLink.md index 2308b3d7af..8bb87ccb0d 100644 --- a/docset/winserver2016-ps/activedirectory/Set-ADReplicationSiteLink.md +++ b/docset/winserver2016-ps/activedirectory/Set-ADReplicationSiteLink.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adreplicationsitelink?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adreplicationsitelink?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADReplicationSiteLink --- diff --git a/docset/winserver2016-ps/activedirectory/Set-ADReplicationSiteLinkBridge.md b/docset/winserver2016-ps/activedirectory/Set-ADReplicationSiteLinkBridge.md index 402e9bc5f3..8fa215cd40 100644 --- a/docset/winserver2016-ps/activedirectory/Set-ADReplicationSiteLinkBridge.md +++ b/docset/winserver2016-ps/activedirectory/Set-ADReplicationSiteLinkBridge.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adreplicationsitelinkbridge?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adreplicationsitelinkbridge?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADReplicationSiteLinkBridge --- diff --git a/docset/winserver2016-ps/activedirectory/Set-ADReplicationSubnet.md b/docset/winserver2016-ps/activedirectory/Set-ADReplicationSubnet.md index 582a39e9cf..856ab3abe3 100644 --- a/docset/winserver2016-ps/activedirectory/Set-ADReplicationSubnet.md +++ b/docset/winserver2016-ps/activedirectory/Set-ADReplicationSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adreplicationsubnet?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adreplicationsubnet?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADReplicationSubnet --- diff --git a/docset/winserver2016-ps/activedirectory/Set-ADResourceProperty.md b/docset/winserver2016-ps/activedirectory/Set-ADResourceProperty.md index ca220cf475..e98d9eda7b 100644 --- a/docset/winserver2016-ps/activedirectory/Set-ADResourceProperty.md +++ b/docset/winserver2016-ps/activedirectory/Set-ADResourceProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adresourceproperty?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adresourceproperty?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADResourceProperty --- diff --git a/docset/winserver2016-ps/activedirectory/Set-ADResourcePropertyList.md b/docset/winserver2016-ps/activedirectory/Set-ADResourcePropertyList.md index b6278e05a0..0e5b6b5848 100644 --- a/docset/winserver2016-ps/activedirectory/Set-ADResourcePropertyList.md +++ b/docset/winserver2016-ps/activedirectory/Set-ADResourcePropertyList.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adresourcepropertylist?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adresourcepropertylist?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADResourcePropertyList --- diff --git a/docset/winserver2016-ps/activedirectory/Set-ADServiceAccount.md b/docset/winserver2016-ps/activedirectory/Set-ADServiceAccount.md index aa73935712..a5716ab184 100644 --- a/docset/winserver2016-ps/activedirectory/Set-ADServiceAccount.md +++ b/docset/winserver2016-ps/activedirectory/Set-ADServiceAccount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adserviceaccount?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adserviceaccount?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADServiceAccount --- diff --git a/docset/winserver2016-ps/activedirectory/Set-ADUser.md b/docset/winserver2016-ps/activedirectory/Set-ADUser.md index bb11f4a950..8a88e250ad 100644 --- a/docset/winserver2016-ps/activedirectory/Set-ADUser.md +++ b/docset/winserver2016-ps/activedirectory/Set-ADUser.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-aduser?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-aduser?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADUser --- diff --git a/docset/winserver2016-ps/activedirectory/Show-ADAuthenticationPolicyExpression.md b/docset/winserver2016-ps/activedirectory/Show-ADAuthenticationPolicyExpression.md index 27cd8e2ae0..dd4b675d39 100644 --- a/docset/winserver2016-ps/activedirectory/Show-ADAuthenticationPolicyExpression.md +++ b/docset/winserver2016-ps/activedirectory/Show-ADAuthenticationPolicyExpression.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/show-adauthenticationpolicyexpression?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/show-adauthenticationpolicyexpression?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Show-ADAuthenticationPolicyExpression --- diff --git a/docset/winserver2016-ps/activedirectory/Sync-ADObject.md b/docset/winserver2016-ps/activedirectory/Sync-ADObject.md index e7090856d7..1315d356fb 100644 --- a/docset/winserver2016-ps/activedirectory/Sync-ADObject.md +++ b/docset/winserver2016-ps/activedirectory/Sync-ADObject.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/sync-adobject?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/sync-adobject?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Sync-ADObject --- diff --git a/docset/winserver2016-ps/activedirectory/Test-ADServiceAccount.md b/docset/winserver2016-ps/activedirectory/Test-ADServiceAccount.md index cad4e3dcd4..c9978373d2 100644 --- a/docset/winserver2016-ps/activedirectory/Test-ADServiceAccount.md +++ b/docset/winserver2016-ps/activedirectory/Test-ADServiceAccount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/test-adserviceaccount?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/test-adserviceaccount?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-ADServiceAccount --- diff --git a/docset/winserver2016-ps/activedirectory/Uninstall-ADServiceAccount.md b/docset/winserver2016-ps/activedirectory/Uninstall-ADServiceAccount.md index 3e6f9130f6..d2bbe36bed 100644 --- a/docset/winserver2016-ps/activedirectory/Uninstall-ADServiceAccount.md +++ b/docset/winserver2016-ps/activedirectory/Uninstall-ADServiceAccount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/uninstall-adserviceaccount?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/uninstall-adserviceaccount?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-ADServiceAccount --- diff --git a/docset/winserver2016-ps/activedirectory/Unlock-ADAccount.md b/docset/winserver2016-ps/activedirectory/Unlock-ADAccount.md index faf6ca8403..41764a4f67 100644 --- a/docset/winserver2016-ps/activedirectory/Unlock-ADAccount.md +++ b/docset/winserver2016-ps/activedirectory/Unlock-ADAccount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/unlock-adaccount?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/unlock-adaccount?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unlock-ADAccount --- diff --git a/docset/winserver2016-ps/adcsadministration/Add-CAAuthorityInformationAccess.md b/docset/winserver2016-ps/adcsadministration/Add-CAAuthorityInformationAccess.md index b095da21b2..822ac37aa1 100644 --- a/docset/winserver2016-ps/adcsadministration/Add-CAAuthorityInformationAccess.md +++ b/docset/winserver2016-ps/adcsadministration/Add-CAAuthorityInformationAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: ADCSAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsadministration/add-caauthorityinformationaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/add-caauthorityinformationaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-CAAuthorityInformationAccess --- diff --git a/docset/winserver2016-ps/adcsadministration/Add-CACrlDistributionPoint.md b/docset/winserver2016-ps/adcsadministration/Add-CACrlDistributionPoint.md index b644f488be..0215144ac6 100644 --- a/docset/winserver2016-ps/adcsadministration/Add-CACrlDistributionPoint.md +++ b/docset/winserver2016-ps/adcsadministration/Add-CACrlDistributionPoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: ADCSAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsadministration/add-cacrldistributionpoint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/add-cacrldistributionpoint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-CACrlDistributionPoint --- diff --git a/docset/winserver2016-ps/adcsadministration/Add-CATemplate.md b/docset/winserver2016-ps/adcsadministration/Add-CATemplate.md index 9395356e23..0dda08bc6b 100644 --- a/docset/winserver2016-ps/adcsadministration/Add-CATemplate.md +++ b/docset/winserver2016-ps/adcsadministration/Add-CATemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: ADCSAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsadministration/add-catemplate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/add-catemplate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-CATemplate --- diff --git a/docset/winserver2016-ps/adcsadministration/Backup-CARoleService.md b/docset/winserver2016-ps/adcsadministration/Backup-CARoleService.md index 809bd8aada..6f36989394 100644 --- a/docset/winserver2016-ps/adcsadministration/Backup-CARoleService.md +++ b/docset/winserver2016-ps/adcsadministration/Backup-CARoleService.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: ADCSAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsadministration/backup-caroleservice?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/backup-caroleservice?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Backup-CARoleService --- diff --git a/docset/winserver2016-ps/adcsadministration/Confirm-CAEndorsementKeyInfo.md b/docset/winserver2016-ps/adcsadministration/Confirm-CAEndorsementKeyInfo.md index 46a9bfc41e..7a8405a774 100644 --- a/docset/winserver2016-ps/adcsadministration/Confirm-CAEndorsementKeyInfo.md +++ b/docset/winserver2016-ps/adcsadministration/Confirm-CAEndorsementKeyInfo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: ADCSAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsadministration/confirm-caendorsementkeyinfo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/confirm-caendorsementkeyinfo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Confirm-CAEndorsementKeyInfo --- diff --git a/docset/winserver2016-ps/adcsadministration/Get-CAAuthorityInformationAccess.md b/docset/winserver2016-ps/adcsadministration/Get-CAAuthorityInformationAccess.md index 6cd33e538c..d881e74014 100644 --- a/docset/winserver2016-ps/adcsadministration/Get-CAAuthorityInformationAccess.md +++ b/docset/winserver2016-ps/adcsadministration/Get-CAAuthorityInformationAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: ADCSAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsadministration/get-caauthorityinformationaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/get-caauthorityinformationaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CAAuthorityInformationAccess --- diff --git a/docset/winserver2016-ps/adcsadministration/Get-CACrlDistributionPoint.md b/docset/winserver2016-ps/adcsadministration/Get-CACrlDistributionPoint.md index 7692cedcf4..2a4c45444d 100644 --- a/docset/winserver2016-ps/adcsadministration/Get-CACrlDistributionPoint.md +++ b/docset/winserver2016-ps/adcsadministration/Get-CACrlDistributionPoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: ADCSAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsadministration/get-cacrldistributionpoint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/get-cacrldistributionpoint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CACrlDistributionPoint --- diff --git a/docset/winserver2016-ps/adcsadministration/Get-CATemplate.md b/docset/winserver2016-ps/adcsadministration/Get-CATemplate.md index bc1e677eaa..ccd202bf45 100644 --- a/docset/winserver2016-ps/adcsadministration/Get-CATemplate.md +++ b/docset/winserver2016-ps/adcsadministration/Get-CATemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: ADCSAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsadministration/get-catemplate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/get-catemplate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CATemplate --- diff --git a/docset/winserver2016-ps/adcsadministration/Remove-CAAuthorityInformationAccess.md b/docset/winserver2016-ps/adcsadministration/Remove-CAAuthorityInformationAccess.md index eba059711b..0407b8384e 100644 --- a/docset/winserver2016-ps/adcsadministration/Remove-CAAuthorityInformationAccess.md +++ b/docset/winserver2016-ps/adcsadministration/Remove-CAAuthorityInformationAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: ADCSAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsadministration/remove-caauthorityinformationaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/remove-caauthorityinformationaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-CAAuthorityInformationAccess --- diff --git a/docset/winserver2016-ps/adcsadministration/Remove-CACrlDistributionPoint.md b/docset/winserver2016-ps/adcsadministration/Remove-CACrlDistributionPoint.md index 91fede4968..4f47009dc4 100644 --- a/docset/winserver2016-ps/adcsadministration/Remove-CACrlDistributionPoint.md +++ b/docset/winserver2016-ps/adcsadministration/Remove-CACrlDistributionPoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: ADCSAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsadministration/remove-cacrldistributionpoint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/remove-cacrldistributionpoint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-CACrlDistributionPoint --- diff --git a/docset/winserver2016-ps/adcsadministration/Remove-CATemplate.md b/docset/winserver2016-ps/adcsadministration/Remove-CATemplate.md index 0e66912d4d..d1d87550be 100644 --- a/docset/winserver2016-ps/adcsadministration/Remove-CATemplate.md +++ b/docset/winserver2016-ps/adcsadministration/Remove-CATemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: ADCSAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsadministration/remove-catemplate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/remove-catemplate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-CATemplate --- diff --git a/docset/winserver2016-ps/adcsadministration/Restore-CARoleService.md b/docset/winserver2016-ps/adcsadministration/Restore-CARoleService.md index bdd74531ea..641a872e09 100644 --- a/docset/winserver2016-ps/adcsadministration/Restore-CARoleService.md +++ b/docset/winserver2016-ps/adcsadministration/Restore-CARoleService.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: ADCSAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsadministration/restore-caroleservice?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/restore-caroleservice?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-CARoleService --- diff --git a/docset/winserver2016-ps/adcsdeployment/Install-AdcsCertificationAuthority.md b/docset/winserver2016-ps/adcsdeployment/Install-AdcsCertificationAuthority.md index d6f8a49572..a00a51729a 100644 --- a/docset/winserver2016-ps/adcsdeployment/Install-AdcsCertificationAuthority.md +++ b/docset/winserver2016-ps/adcsdeployment/Install-AdcsCertificationAuthority.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: ADCSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/install-adcscertificationauthority?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/install-adcscertificationauthority?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-AdcsCertificationAuthority --- diff --git a/docset/winserver2016-ps/adcsdeployment/Install-AdcsEnrollmentPolicyWebService.md b/docset/winserver2016-ps/adcsdeployment/Install-AdcsEnrollmentPolicyWebService.md index ce28e8635f..c3642c9c49 100644 --- a/docset/winserver2016-ps/adcsdeployment/Install-AdcsEnrollmentPolicyWebService.md +++ b/docset/winserver2016-ps/adcsdeployment/Install-AdcsEnrollmentPolicyWebService.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: ADCSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/install-adcsenrollmentpolicywebservice?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/install-adcsenrollmentpolicywebservice?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-AdcsEnrollmentPolicyWebService --- diff --git a/docset/winserver2016-ps/adcsdeployment/Install-AdcsEnrollmentWebService.md b/docset/winserver2016-ps/adcsdeployment/Install-AdcsEnrollmentWebService.md index c451850feb..dc60fc31aa 100644 --- a/docset/winserver2016-ps/adcsdeployment/Install-AdcsEnrollmentWebService.md +++ b/docset/winserver2016-ps/adcsdeployment/Install-AdcsEnrollmentWebService.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: ADCSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/install-adcsenrollmentwebservice?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/install-adcsenrollmentwebservice?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-AdcsEnrollmentWebService --- diff --git a/docset/winserver2016-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md b/docset/winserver2016-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md index a954f62225..48208d5718 100644 --- a/docset/winserver2016-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md +++ b/docset/winserver2016-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: ADCSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/install-adcsnetworkdeviceenrollmentservice?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/install-adcsnetworkdeviceenrollmentservice?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-AdcsNetworkDeviceEnrollmentService --- diff --git a/docset/winserver2016-ps/adcsdeployment/Install-AdcsOnlineResponder.md b/docset/winserver2016-ps/adcsdeployment/Install-AdcsOnlineResponder.md index a8e71cba78..2fa1c68571 100644 --- a/docset/winserver2016-ps/adcsdeployment/Install-AdcsOnlineResponder.md +++ b/docset/winserver2016-ps/adcsdeployment/Install-AdcsOnlineResponder.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: ADCSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/install-adcsonlineresponder?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/install-adcsonlineresponder?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-AdcsOnlineResponder --- diff --git a/docset/winserver2016-ps/adcsdeployment/Install-AdcsWebEnrollment.md b/docset/winserver2016-ps/adcsdeployment/Install-AdcsWebEnrollment.md index 28ba37afa3..5c919e9af5 100644 --- a/docset/winserver2016-ps/adcsdeployment/Install-AdcsWebEnrollment.md +++ b/docset/winserver2016-ps/adcsdeployment/Install-AdcsWebEnrollment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: ADCSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/install-adcswebenrollment?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/install-adcswebenrollment?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-AdcsWebEnrollment --- diff --git a/docset/winserver2016-ps/adcsdeployment/Uninstall-AdcsCertificationAuthority.md b/docset/winserver2016-ps/adcsdeployment/Uninstall-AdcsCertificationAuthority.md index a5626d5210..b7890a3e18 100644 --- a/docset/winserver2016-ps/adcsdeployment/Uninstall-AdcsCertificationAuthority.md +++ b/docset/winserver2016-ps/adcsdeployment/Uninstall-AdcsCertificationAuthority.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: ADCSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/uninstall-adcscertificationauthority?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/uninstall-adcscertificationauthority?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-AdcsCertificationAuthority --- diff --git a/docset/winserver2016-ps/adcsdeployment/Uninstall-AdcsEnrollmentPolicyWebService.md b/docset/winserver2016-ps/adcsdeployment/Uninstall-AdcsEnrollmentPolicyWebService.md index 935592e510..4fb85d0fa5 100644 --- a/docset/winserver2016-ps/adcsdeployment/Uninstall-AdcsEnrollmentPolicyWebService.md +++ b/docset/winserver2016-ps/adcsdeployment/Uninstall-AdcsEnrollmentPolicyWebService.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: ADCSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/uninstall-adcsenrollmentpolicywebservice?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/uninstall-adcsenrollmentpolicywebservice?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-AdcsEnrollmentPolicyWebService --- diff --git a/docset/winserver2016-ps/adcsdeployment/Uninstall-AdcsEnrollmentWebService.md b/docset/winserver2016-ps/adcsdeployment/Uninstall-AdcsEnrollmentWebService.md index 16813c288b..d271efdad9 100644 --- a/docset/winserver2016-ps/adcsdeployment/Uninstall-AdcsEnrollmentWebService.md +++ b/docset/winserver2016-ps/adcsdeployment/Uninstall-AdcsEnrollmentWebService.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: ADCSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/uninstall-adcsenrollmentwebservice?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/uninstall-adcsenrollmentwebservice?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-AdcsEnrollmentWebService --- diff --git a/docset/winserver2016-ps/adcsdeployment/Uninstall-AdcsNetworkDeviceEnrollmentService.md b/docset/winserver2016-ps/adcsdeployment/Uninstall-AdcsNetworkDeviceEnrollmentService.md index 291bc91e5a..01c126d59d 100644 --- a/docset/winserver2016-ps/adcsdeployment/Uninstall-AdcsNetworkDeviceEnrollmentService.md +++ b/docset/winserver2016-ps/adcsdeployment/Uninstall-AdcsNetworkDeviceEnrollmentService.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: ADCSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/uninstall-adcsnetworkdeviceenrollmentservice?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/uninstall-adcsnetworkdeviceenrollmentservice?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-AdcsNetworkDeviceEnrollmentService --- diff --git a/docset/winserver2016-ps/adcsdeployment/Uninstall-AdcsOnlineResponder.md b/docset/winserver2016-ps/adcsdeployment/Uninstall-AdcsOnlineResponder.md index 2de9288fc5..df30eb2ec3 100644 --- a/docset/winserver2016-ps/adcsdeployment/Uninstall-AdcsOnlineResponder.md +++ b/docset/winserver2016-ps/adcsdeployment/Uninstall-AdcsOnlineResponder.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: ADCSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/uninstall-adcsonlineresponder?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/uninstall-adcsonlineresponder?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-AdcsOnlineResponder --- diff --git a/docset/winserver2016-ps/adcsdeployment/Uninstall-AdcsWebEnrollment.md b/docset/winserver2016-ps/adcsdeployment/Uninstall-AdcsWebEnrollment.md index eb1ac6ed2f..ff88620d2a 100644 --- a/docset/winserver2016-ps/adcsdeployment/Uninstall-AdcsWebEnrollment.md +++ b/docset/winserver2016-ps/adcsdeployment/Uninstall-AdcsWebEnrollment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: ADCSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/uninstall-adcswebenrollment?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/uninstall-adcswebenrollment?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-AdcsWebEnrollment --- diff --git a/docset/winserver2016-ps/addsdeployment/Add-ADDSReadOnlyDomainControllerAccount.md b/docset/winserver2016-ps/addsdeployment/Add-ADDSReadOnlyDomainControllerAccount.md index 0a1b4910e7..9973ed601e 100644 --- a/docset/winserver2016-ps/addsdeployment/Add-ADDSReadOnlyDomainControllerAccount.md +++ b/docset/winserver2016-ps/addsdeployment/Add-ADDSReadOnlyDomainControllerAccount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.DirectoryServices.Deployment.dll-Help.xml Module Name: ADDSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/addsdeployment/add-addsreadonlydomaincontrolleraccount?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/addsdeployment/add-addsreadonlydomaincontrolleraccount?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ADDSReadOnlyDomainControllerAccount --- diff --git a/docset/winserver2016-ps/addsdeployment/Install-ADDSDomain.md b/docset/winserver2016-ps/addsdeployment/Install-ADDSDomain.md index bc65dd22c9..0dab62e2c7 100644 --- a/docset/winserver2016-ps/addsdeployment/Install-ADDSDomain.md +++ b/docset/winserver2016-ps/addsdeployment/Install-ADDSDomain.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.DirectoryServices.Deployment.dll-Help.xml Module Name: ADDSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/addsdeployment/install-addsdomain?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/addsdeployment/install-addsdomain?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-ADDSDomain --- diff --git a/docset/winserver2016-ps/addsdeployment/Install-ADDSDomainController.md b/docset/winserver2016-ps/addsdeployment/Install-ADDSDomainController.md index a0a0532878..72ba4b4e9e 100644 --- a/docset/winserver2016-ps/addsdeployment/Install-ADDSDomainController.md +++ b/docset/winserver2016-ps/addsdeployment/Install-ADDSDomainController.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.DirectoryServices.Deployment.dll-Help.xml Module Name: ADDSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/addsdeployment/install-addsdomaincontroller?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/addsdeployment/install-addsdomaincontroller?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-ADDSDomainController --- diff --git a/docset/winserver2016-ps/addsdeployment/Install-ADDSForest.md b/docset/winserver2016-ps/addsdeployment/Install-ADDSForest.md index 89535b14d1..dba82f8ca0 100644 --- a/docset/winserver2016-ps/addsdeployment/Install-ADDSForest.md +++ b/docset/winserver2016-ps/addsdeployment/Install-ADDSForest.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.DirectoryServices.Deployment.dll-Help.xml Module Name: ADDSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/addsdeployment/install-addsforest?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/addsdeployment/install-addsforest?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-ADDSForest --- diff --git a/docset/winserver2016-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md b/docset/winserver2016-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md index 0ec3b7d442..7a05d89f45 100644 --- a/docset/winserver2016-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md +++ b/docset/winserver2016-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.DirectoryServices.Deployment.dll-Help.xml Module Name: ADDSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/addsdeployment/test-addsdomaincontrollerinstallation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/addsdeployment/test-addsdomaincontrollerinstallation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-ADDSDomainControllerInstallation --- diff --git a/docset/winserver2016-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md b/docset/winserver2016-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md index f830001d4e..78cc610cd4 100644 --- a/docset/winserver2016-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md +++ b/docset/winserver2016-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.DirectoryServices.Deployment.dll-Help.xml Module Name: ADDSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/addsdeployment/test-addsdomaincontrolleruninstallation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/addsdeployment/test-addsdomaincontrolleruninstallation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-ADDSDomainControllerUninstallation --- diff --git a/docset/winserver2016-ps/addsdeployment/Test-ADDSDomainInstallation.md b/docset/winserver2016-ps/addsdeployment/Test-ADDSDomainInstallation.md index 2edb0fcc19..e40a51ca0c 100644 --- a/docset/winserver2016-ps/addsdeployment/Test-ADDSDomainInstallation.md +++ b/docset/winserver2016-ps/addsdeployment/Test-ADDSDomainInstallation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.DirectoryServices.Deployment.dll-Help.xml Module Name: ADDSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/addsdeployment/test-addsdomaininstallation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/addsdeployment/test-addsdomaininstallation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-ADDSDomainInstallation --- diff --git a/docset/winserver2016-ps/addsdeployment/Test-ADDSForestInstallation.md b/docset/winserver2016-ps/addsdeployment/Test-ADDSForestInstallation.md index a0df11d413..69369812fc 100644 --- a/docset/winserver2016-ps/addsdeployment/Test-ADDSForestInstallation.md +++ b/docset/winserver2016-ps/addsdeployment/Test-ADDSForestInstallation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.DirectoryServices.Deployment.dll-Help.xml Module Name: ADDSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/addsdeployment/test-addsforestinstallation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/addsdeployment/test-addsforestinstallation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-ADDSForestInstallation --- diff --git a/docset/winserver2016-ps/addsdeployment/Test-ADDSReadOnlyDomainControllerAccountCreation.md b/docset/winserver2016-ps/addsdeployment/Test-ADDSReadOnlyDomainControllerAccountCreation.md index 484e26175e..017a1659e6 100644 --- a/docset/winserver2016-ps/addsdeployment/Test-ADDSReadOnlyDomainControllerAccountCreation.md +++ b/docset/winserver2016-ps/addsdeployment/Test-ADDSReadOnlyDomainControllerAccountCreation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.DirectoryServices.Deployment.dll-Help.xml Module Name: ADDSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/addsdeployment/test-addsreadonlydomaincontrolleraccountcreation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/addsdeployment/test-addsreadonlydomaincontrolleraccountcreation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-ADDSReadOnlyDomainControllerAccountCreation --- diff --git a/docset/winserver2016-ps/addsdeployment/Uninstall-ADDSDomainController.md b/docset/winserver2016-ps/addsdeployment/Uninstall-ADDSDomainController.md index 845d2828f0..e63e5fdd67 100644 --- a/docset/winserver2016-ps/addsdeployment/Uninstall-ADDSDomainController.md +++ b/docset/winserver2016-ps/addsdeployment/Uninstall-ADDSDomainController.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.DirectoryServices.Deployment.dll-Help.xml Module Name: ADDSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/addsdeployment/uninstall-addsdomaincontroller?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/addsdeployment/uninstall-addsdomaincontroller?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-ADDSDomainController --- diff --git a/docset/winserver2016-ps/adfs/Add-AdfsAttributeStore.md b/docset/winserver2016-ps/adfs/Add-AdfsAttributeStore.md index 7789d64250..f37ef94ce8 100644 --- a/docset/winserver2016-ps/adfs/Add-AdfsAttributeStore.md +++ b/docset/winserver2016-ps/adfs/Add-AdfsAttributeStore.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfsattributestore?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfsattributestore?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsAttributeStore --- diff --git a/docset/winserver2016-ps/adfs/Add-AdfsCertificate.md b/docset/winserver2016-ps/adfs/Add-AdfsCertificate.md index 46865e2318..35a986795e 100644 --- a/docset/winserver2016-ps/adfs/Add-AdfsCertificate.md +++ b/docset/winserver2016-ps/adfs/Add-AdfsCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfscertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfscertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsCertificate --- diff --git a/docset/winserver2016-ps/adfs/Add-AdfsClaimDescription.md b/docset/winserver2016-ps/adfs/Add-AdfsClaimDescription.md index b2f1530bea..0e8a74aaac 100644 --- a/docset/winserver2016-ps/adfs/Add-AdfsClaimDescription.md +++ b/docset/winserver2016-ps/adfs/Add-AdfsClaimDescription.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfsclaimdescription?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfsclaimdescription?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsClaimDescription --- diff --git a/docset/winserver2016-ps/adfs/Add-AdfsClaimsProviderTrust.md b/docset/winserver2016-ps/adfs/Add-AdfsClaimsProviderTrust.md index d03629a82a..a70ee32897 100644 --- a/docset/winserver2016-ps/adfs/Add-AdfsClaimsProviderTrust.md +++ b/docset/winserver2016-ps/adfs/Add-AdfsClaimsProviderTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfsclaimsprovidertrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfsclaimsprovidertrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsClaimsProviderTrust --- diff --git a/docset/winserver2016-ps/adfs/Add-AdfsClaimsProviderTrustsGroup.md b/docset/winserver2016-ps/adfs/Add-AdfsClaimsProviderTrustsGroup.md index eac7138803..2851defeb2 100644 --- a/docset/winserver2016-ps/adfs/Add-AdfsClaimsProviderTrustsGroup.md +++ b/docset/winserver2016-ps/adfs/Add-AdfsClaimsProviderTrustsGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfsclaimsprovidertrustsgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfsclaimsprovidertrustsgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsClaimsProviderTrustsGroup --- diff --git a/docset/winserver2016-ps/adfs/Add-AdfsClient.md b/docset/winserver2016-ps/adfs/Add-AdfsClient.md index 96ed9ad221..2495144e07 100644 --- a/docset/winserver2016-ps/adfs/Add-AdfsClient.md +++ b/docset/winserver2016-ps/adfs/Add-AdfsClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 09/19/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfsclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfsclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsClient --- diff --git a/docset/winserver2016-ps/adfs/Add-AdfsDeviceRegistrationUpnSuffix.md b/docset/winserver2016-ps/adfs/Add-AdfsDeviceRegistrationUpnSuffix.md index cdad0180eb..47ac143009 100644 --- a/docset/winserver2016-ps/adfs/Add-AdfsDeviceRegistrationUpnSuffix.md +++ b/docset/winserver2016-ps/adfs/Add-AdfsDeviceRegistrationUpnSuffix.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfsdeviceregistrationupnsuffix?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfsdeviceregistrationupnsuffix?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsDeviceRegistrationUpnSuffix --- diff --git a/docset/winserver2016-ps/adfs/Add-AdfsFarmNode.md b/docset/winserver2016-ps/adfs/Add-AdfsFarmNode.md index 8620d53bac..31519b9c38 100644 --- a/docset/winserver2016-ps/adfs/Add-AdfsFarmNode.md +++ b/docset/winserver2016-ps/adfs/Add-AdfsFarmNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Deployment.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfsfarmnode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfsfarmnode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsFarmNode --- diff --git a/docset/winserver2016-ps/adfs/Add-AdfsLocalClaimsProviderTrust.md b/docset/winserver2016-ps/adfs/Add-AdfsLocalClaimsProviderTrust.md index e9d4b24f2a..833e6a2130 100644 --- a/docset/winserver2016-ps/adfs/Add-AdfsLocalClaimsProviderTrust.md +++ b/docset/winserver2016-ps/adfs/Add-AdfsLocalClaimsProviderTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfslocalclaimsprovidertrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfslocalclaimsprovidertrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsLocalClaimsProviderTrust --- diff --git a/docset/winserver2016-ps/adfs/Add-AdfsNativeClientApplication.md b/docset/winserver2016-ps/adfs/Add-AdfsNativeClientApplication.md index c7f7bcc629..4b967574e4 100644 --- a/docset/winserver2016-ps/adfs/Add-AdfsNativeClientApplication.md +++ b/docset/winserver2016-ps/adfs/Add-AdfsNativeClientApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 09/19/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfsnativeclientapplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfsnativeclientapplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsNativeClientApplication --- diff --git a/docset/winserver2016-ps/adfs/Add-AdfsNonClaimsAwareRelyingPartyTrust.md b/docset/winserver2016-ps/adfs/Add-AdfsNonClaimsAwareRelyingPartyTrust.md index 74dbd0b02f..6f92cbccae 100644 --- a/docset/winserver2016-ps/adfs/Add-AdfsNonClaimsAwareRelyingPartyTrust.md +++ b/docset/winserver2016-ps/adfs/Add-AdfsNonClaimsAwareRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfsnonclaimsawarerelyingpartytrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfsnonclaimsawarerelyingpartytrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsNonClaimsAwareRelyingPartyTrust --- diff --git a/docset/winserver2016-ps/adfs/Add-AdfsRelyingPartyTrust.md b/docset/winserver2016-ps/adfs/Add-AdfsRelyingPartyTrust.md index 2c0471869f..267dc45552 100644 --- a/docset/winserver2016-ps/adfs/Add-AdfsRelyingPartyTrust.md +++ b/docset/winserver2016-ps/adfs/Add-AdfsRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfsrelyingpartytrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfsrelyingpartytrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsRelyingPartyTrust --- diff --git a/docset/winserver2016-ps/adfs/Add-AdfsRelyingPartyTrustsGroup.md b/docset/winserver2016-ps/adfs/Add-AdfsRelyingPartyTrustsGroup.md index 5bb5100db2..4f1c70c79f 100644 --- a/docset/winserver2016-ps/adfs/Add-AdfsRelyingPartyTrustsGroup.md +++ b/docset/winserver2016-ps/adfs/Add-AdfsRelyingPartyTrustsGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfsrelyingpartytrustsgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfsrelyingpartytrustsgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsRelyingPartyTrustsGroup --- diff --git a/docset/winserver2016-ps/adfs/Add-AdfsScopeDescription.md b/docset/winserver2016-ps/adfs/Add-AdfsScopeDescription.md index 3eacd818ea..bbbe9e3b2b 100644 --- a/docset/winserver2016-ps/adfs/Add-AdfsScopeDescription.md +++ b/docset/winserver2016-ps/adfs/Add-AdfsScopeDescription.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfsscopedescription?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfsscopedescription?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsScopeDescription --- diff --git a/docset/winserver2016-ps/adfs/Add-AdfsServerApplication.md b/docset/winserver2016-ps/adfs/Add-AdfsServerApplication.md index 21c4e3056c..1e5fe17570 100644 --- a/docset/winserver2016-ps/adfs/Add-AdfsServerApplication.md +++ b/docset/winserver2016-ps/adfs/Add-AdfsServerApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 09/19/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfsserverapplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfsserverapplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsServerApplication --- diff --git a/docset/winserver2016-ps/adfs/Add-AdfsTrustedFederationPartner.md b/docset/winserver2016-ps/adfs/Add-AdfsTrustedFederationPartner.md index 486d3be653..8c80a7fb06 100644 --- a/docset/winserver2016-ps/adfs/Add-AdfsTrustedFederationPartner.md +++ b/docset/winserver2016-ps/adfs/Add-AdfsTrustedFederationPartner.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfstrustedfederationpartner?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfstrustedfederationpartner?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsTrustedFederationPartner --- diff --git a/docset/winserver2016-ps/adfs/Add-AdfsWebApiApplication.md b/docset/winserver2016-ps/adfs/Add-AdfsWebApiApplication.md index c8453319dc..16ccd43714 100644 --- a/docset/winserver2016-ps/adfs/Add-AdfsWebApiApplication.md +++ b/docset/winserver2016-ps/adfs/Add-AdfsWebApiApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfswebapiapplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfswebapiapplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsWebApiApplication --- diff --git a/docset/winserver2016-ps/adfs/Add-AdfsWebApplicationProxyRelyingPartyTrust.md b/docset/winserver2016-ps/adfs/Add-AdfsWebApplicationProxyRelyingPartyTrust.md index 00f92505e4..84662649aa 100644 --- a/docset/winserver2016-ps/adfs/Add-AdfsWebApplicationProxyRelyingPartyTrust.md +++ b/docset/winserver2016-ps/adfs/Add-AdfsWebApplicationProxyRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfswebapplicationproxyrelyingpartytrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfswebapplicationproxyrelyingpartytrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsWebApplicationProxyRelyingPartyTrust --- diff --git a/docset/winserver2016-ps/adfs/Disable-AdfsApplicationGroup.md b/docset/winserver2016-ps/adfs/Disable-AdfsApplicationGroup.md index 81b7ede3ab..afd79d5fb2 100644 --- a/docset/winserver2016-ps/adfs/Disable-AdfsApplicationGroup.md +++ b/docset/winserver2016-ps/adfs/Disable-AdfsApplicationGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/disable-adfsapplicationgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/disable-adfsapplicationgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-AdfsApplicationGroup --- diff --git a/docset/winserver2016-ps/adfs/Disable-AdfsCertificateAuthority.md b/docset/winserver2016-ps/adfs/Disable-AdfsCertificateAuthority.md index 65848852e2..3d186abb9c 100644 --- a/docset/winserver2016-ps/adfs/Disable-AdfsCertificateAuthority.md +++ b/docset/winserver2016-ps/adfs/Disable-AdfsCertificateAuthority.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/disable-adfscertificateauthority?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/disable-adfscertificateauthority?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-AdfsCertificateAuthority --- diff --git a/docset/winserver2016-ps/adfs/Disable-AdfsClaimsProviderTrust.md b/docset/winserver2016-ps/adfs/Disable-AdfsClaimsProviderTrust.md index 399a832fd3..9a5e1a1e1a 100644 --- a/docset/winserver2016-ps/adfs/Disable-AdfsClaimsProviderTrust.md +++ b/docset/winserver2016-ps/adfs/Disable-AdfsClaimsProviderTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/disable-adfsclaimsprovidertrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/disable-adfsclaimsprovidertrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-AdfsClaimsProviderTrust --- diff --git a/docset/winserver2016-ps/adfs/Disable-AdfsClient.md b/docset/winserver2016-ps/adfs/Disable-AdfsClient.md index 47f08e1cf9..7fb47a74ab 100644 --- a/docset/winserver2016-ps/adfs/Disable-AdfsClient.md +++ b/docset/winserver2016-ps/adfs/Disable-AdfsClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/disable-adfsclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/disable-adfsclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-AdfsClient --- diff --git a/docset/winserver2016-ps/adfs/Disable-AdfsDeviceRegistration.md b/docset/winserver2016-ps/adfs/Disable-AdfsDeviceRegistration.md index 7bfaf34c51..da2da44476 100644 --- a/docset/winserver2016-ps/adfs/Disable-AdfsDeviceRegistration.md +++ b/docset/winserver2016-ps/adfs/Disable-AdfsDeviceRegistration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Deployment.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/disable-adfsdeviceregistration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/disable-adfsdeviceregistration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-AdfsDeviceRegistration --- diff --git a/docset/winserver2016-ps/adfs/Disable-AdfsEndpoint.md b/docset/winserver2016-ps/adfs/Disable-AdfsEndpoint.md index 4f5f87698f..38aae4d0b2 100644 --- a/docset/winserver2016-ps/adfs/Disable-AdfsEndpoint.md +++ b/docset/winserver2016-ps/adfs/Disable-AdfsEndpoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/disable-adfsendpoint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/disable-adfsendpoint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-AdfsEndpoint --- diff --git a/docset/winserver2016-ps/adfs/Disable-AdfsLocalClaimsProviderTrust.md b/docset/winserver2016-ps/adfs/Disable-AdfsLocalClaimsProviderTrust.md index d6c6192d73..d664a237e8 100644 --- a/docset/winserver2016-ps/adfs/Disable-AdfsLocalClaimsProviderTrust.md +++ b/docset/winserver2016-ps/adfs/Disable-AdfsLocalClaimsProviderTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/disable-adfslocalclaimsprovidertrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/disable-adfslocalclaimsprovidertrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-AdfsLocalClaimsProviderTrust --- diff --git a/docset/winserver2016-ps/adfs/Disable-AdfsNonClaimsAwareRelyingPartyTrust.md b/docset/winserver2016-ps/adfs/Disable-AdfsNonClaimsAwareRelyingPartyTrust.md index 5d3516f0a2..d9a9697c7e 100644 --- a/docset/winserver2016-ps/adfs/Disable-AdfsNonClaimsAwareRelyingPartyTrust.md +++ b/docset/winserver2016-ps/adfs/Disable-AdfsNonClaimsAwareRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/disable-adfsnonclaimsawarerelyingpartytrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/disable-adfsnonclaimsawarerelyingpartytrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-AdfsNonClaimsAwareRelyingPartyTrust --- diff --git a/docset/winserver2016-ps/adfs/Disable-AdfsRelyingPartyTrust.md b/docset/winserver2016-ps/adfs/Disable-AdfsRelyingPartyTrust.md index 37e3e23c2c..5f00fbe782 100644 --- a/docset/winserver2016-ps/adfs/Disable-AdfsRelyingPartyTrust.md +++ b/docset/winserver2016-ps/adfs/Disable-AdfsRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/disable-adfsrelyingpartytrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/disable-adfsrelyingpartytrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-AdfsRelyingPartyTrust --- diff --git a/docset/winserver2016-ps/adfs/Disable-AdfsWebApplicationProxyRelyingPartyTrust.md b/docset/winserver2016-ps/adfs/Disable-AdfsWebApplicationProxyRelyingPartyTrust.md index be21e8fc88..7f692273f5 100644 --- a/docset/winserver2016-ps/adfs/Disable-AdfsWebApplicationProxyRelyingPartyTrust.md +++ b/docset/winserver2016-ps/adfs/Disable-AdfsWebApplicationProxyRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/disable-adfswebapplicationproxyrelyingpartytrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/disable-adfswebapplicationproxyrelyingpartytrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-AdfsWebApplicationProxyRelyingPartyTrust --- diff --git a/docset/winserver2016-ps/adfs/Enable-AdfsApplicationGroup.md b/docset/winserver2016-ps/adfs/Enable-AdfsApplicationGroup.md index fe02145e53..b438a2a06b 100644 --- a/docset/winserver2016-ps/adfs/Enable-AdfsApplicationGroup.md +++ b/docset/winserver2016-ps/adfs/Enable-AdfsApplicationGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/enable-adfsapplicationgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/enable-adfsapplicationgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-AdfsApplicationGroup --- diff --git a/docset/winserver2016-ps/adfs/Enable-AdfsClaimsProviderTrust.md b/docset/winserver2016-ps/adfs/Enable-AdfsClaimsProviderTrust.md index e483be1feb..e14399e4b6 100644 --- a/docset/winserver2016-ps/adfs/Enable-AdfsClaimsProviderTrust.md +++ b/docset/winserver2016-ps/adfs/Enable-AdfsClaimsProviderTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/enable-adfsclaimsprovidertrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/enable-adfsclaimsprovidertrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-AdfsClaimsProviderTrust --- diff --git a/docset/winserver2016-ps/adfs/Enable-AdfsClient.md b/docset/winserver2016-ps/adfs/Enable-AdfsClient.md index b88b96cad4..519765d08d 100644 --- a/docset/winserver2016-ps/adfs/Enable-AdfsClient.md +++ b/docset/winserver2016-ps/adfs/Enable-AdfsClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/enable-adfsclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/enable-adfsclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-AdfsClient --- diff --git a/docset/winserver2016-ps/adfs/Enable-AdfsDeviceRegistration.md b/docset/winserver2016-ps/adfs/Enable-AdfsDeviceRegistration.md index 38e055a56f..b92c66e23a 100644 --- a/docset/winserver2016-ps/adfs/Enable-AdfsDeviceRegistration.md +++ b/docset/winserver2016-ps/adfs/Enable-AdfsDeviceRegistration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Deployment.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/enable-adfsdeviceregistration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/enable-adfsdeviceregistration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-AdfsDeviceRegistration --- diff --git a/docset/winserver2016-ps/adfs/Enable-AdfsEndpoint.md b/docset/winserver2016-ps/adfs/Enable-AdfsEndpoint.md index 0cb2664500..5646afaf28 100644 --- a/docset/winserver2016-ps/adfs/Enable-AdfsEndpoint.md +++ b/docset/winserver2016-ps/adfs/Enable-AdfsEndpoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/enable-adfsendpoint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/enable-adfsendpoint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-AdfsEndpoint --- diff --git a/docset/winserver2016-ps/adfs/Enable-AdfsLocalClaimsProviderTrust.md b/docset/winserver2016-ps/adfs/Enable-AdfsLocalClaimsProviderTrust.md index 7ae694a170..8cc4f176a8 100644 --- a/docset/winserver2016-ps/adfs/Enable-AdfsLocalClaimsProviderTrust.md +++ b/docset/winserver2016-ps/adfs/Enable-AdfsLocalClaimsProviderTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/enable-adfslocalclaimsprovidertrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/enable-adfslocalclaimsprovidertrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-AdfsLocalClaimsProviderTrust --- diff --git a/docset/winserver2016-ps/adfs/Enable-AdfsNonClaimsAwareRelyingPartyTrust.md b/docset/winserver2016-ps/adfs/Enable-AdfsNonClaimsAwareRelyingPartyTrust.md index e5333f6b31..92581ab5a0 100644 --- a/docset/winserver2016-ps/adfs/Enable-AdfsNonClaimsAwareRelyingPartyTrust.md +++ b/docset/winserver2016-ps/adfs/Enable-AdfsNonClaimsAwareRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/enable-adfsnonclaimsawarerelyingpartytrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/enable-adfsnonclaimsawarerelyingpartytrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-AdfsNonClaimsAwareRelyingPartyTrust --- diff --git a/docset/winserver2016-ps/adfs/Enable-AdfsRelyingPartyTrust.md b/docset/winserver2016-ps/adfs/Enable-AdfsRelyingPartyTrust.md index f316f8534d..64ad9875c9 100644 --- a/docset/winserver2016-ps/adfs/Enable-AdfsRelyingPartyTrust.md +++ b/docset/winserver2016-ps/adfs/Enable-AdfsRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/enable-adfsrelyingpartytrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/enable-adfsrelyingpartytrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-AdfsRelyingPartyTrust --- diff --git a/docset/winserver2016-ps/adfs/Enable-AdfsWebApplicationProxyRelyingPartyTrust.md b/docset/winserver2016-ps/adfs/Enable-AdfsWebApplicationProxyRelyingPartyTrust.md index 45bcd52448..9e5d52f11c 100644 --- a/docset/winserver2016-ps/adfs/Enable-AdfsWebApplicationProxyRelyingPartyTrust.md +++ b/docset/winserver2016-ps/adfs/Enable-AdfsWebApplicationProxyRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/enable-adfswebapplicationproxyrelyingpartytrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/enable-adfswebapplicationproxyrelyingpartytrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-AdfsWebApplicationProxyRelyingPartyTrust --- diff --git a/docset/winserver2016-ps/adfs/Export-AdfsAuthenticationProviderConfigurationData.md b/docset/winserver2016-ps/adfs/Export-AdfsAuthenticationProviderConfigurationData.md index b13c9be41b..601b2514bb 100644 --- a/docset/winserver2016-ps/adfs/Export-AdfsAuthenticationProviderConfigurationData.md +++ b/docset/winserver2016-ps/adfs/Export-AdfsAuthenticationProviderConfigurationData.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/export-adfsauthenticationproviderconfigurationdata?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/export-adfsauthenticationproviderconfigurationdata?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-AdfsAuthenticationProviderConfigurationData --- diff --git a/docset/winserver2016-ps/adfs/Export-AdfsDeploymentSQLScript.md b/docset/winserver2016-ps/adfs/Export-AdfsDeploymentSQLScript.md index 7ce9644c4b..d4f487b992 100644 --- a/docset/winserver2016-ps/adfs/Export-AdfsDeploymentSQLScript.md +++ b/docset/winserver2016-ps/adfs/Export-AdfsDeploymentSQLScript.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Deployment.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/export-adfsdeploymentsqlscript?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/export-adfsdeploymentsqlscript?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-AdfsDeploymentSQLScript --- diff --git a/docset/winserver2016-ps/adfs/Export-AdfsWebContent.md b/docset/winserver2016-ps/adfs/Export-AdfsWebContent.md index f9696b22aa..8c52e7a50b 100644 --- a/docset/winserver2016-ps/adfs/Export-AdfsWebContent.md +++ b/docset/winserver2016-ps/adfs/Export-AdfsWebContent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/export-adfswebcontent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/export-adfswebcontent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-AdfsWebContent --- diff --git a/docset/winserver2016-ps/adfs/Export-AdfsWebTheme.md b/docset/winserver2016-ps/adfs/Export-AdfsWebTheme.md index 1af02f92bb..cfd8144914 100644 --- a/docset/winserver2016-ps/adfs/Export-AdfsWebTheme.md +++ b/docset/winserver2016-ps/adfs/Export-AdfsWebTheme.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/export-adfswebtheme?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/export-adfswebtheme?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-AdfsWebTheme --- diff --git a/docset/winserver2016-ps/adfs/Get-AdfsAccessControlPolicy.md b/docset/winserver2016-ps/adfs/Get-AdfsAccessControlPolicy.md index c9f1736a3f..4c2a944fe1 100644 --- a/docset/winserver2016-ps/adfs/Get-AdfsAccessControlPolicy.md +++ b/docset/winserver2016-ps/adfs/Get-AdfsAccessControlPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsaccesscontrolpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsaccesscontrolpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsAccessControlPolicy --- diff --git a/docset/winserver2016-ps/adfs/Get-AdfsAdditionalAuthenticationRule.md b/docset/winserver2016-ps/adfs/Get-AdfsAdditionalAuthenticationRule.md index bd89b5876b..f9a7dc83fa 100644 --- a/docset/winserver2016-ps/adfs/Get-AdfsAdditionalAuthenticationRule.md +++ b/docset/winserver2016-ps/adfs/Get-AdfsAdditionalAuthenticationRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsadditionalauthenticationrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsadditionalauthenticationrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsAdditionalAuthenticationRule --- diff --git a/docset/winserver2016-ps/adfs/Get-AdfsApplicationGroup.md b/docset/winserver2016-ps/adfs/Get-AdfsApplicationGroup.md index ef29541f8c..9a135c90d9 100644 --- a/docset/winserver2016-ps/adfs/Get-AdfsApplicationGroup.md +++ b/docset/winserver2016-ps/adfs/Get-AdfsApplicationGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsapplicationgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsapplicationgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsApplicationGroup --- diff --git a/docset/winserver2016-ps/adfs/Get-AdfsApplicationPermission.md b/docset/winserver2016-ps/adfs/Get-AdfsApplicationPermission.md index ee06d08cce..1334e2ff5f 100644 --- a/docset/winserver2016-ps/adfs/Get-AdfsApplicationPermission.md +++ b/docset/winserver2016-ps/adfs/Get-AdfsApplicationPermission.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsapplicationpermission?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsapplicationpermission?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsApplicationPermission --- diff --git a/docset/winserver2016-ps/adfs/Get-AdfsAttributeStore.md b/docset/winserver2016-ps/adfs/Get-AdfsAttributeStore.md index 2502b78a5e..0fca6a5dcc 100644 --- a/docset/winserver2016-ps/adfs/Get-AdfsAttributeStore.md +++ b/docset/winserver2016-ps/adfs/Get-AdfsAttributeStore.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsattributestore?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsattributestore?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsAttributeStore --- diff --git a/docset/winserver2016-ps/adfs/Get-AdfsAuthenticationProvider.md b/docset/winserver2016-ps/adfs/Get-AdfsAuthenticationProvider.md index bd8db261ab..87ace0b140 100644 --- a/docset/winserver2016-ps/adfs/Get-AdfsAuthenticationProvider.md +++ b/docset/winserver2016-ps/adfs/Get-AdfsAuthenticationProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsauthenticationprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsauthenticationprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsAuthenticationProvider --- diff --git a/docset/winserver2016-ps/adfs/Get-AdfsAuthenticationProviderWebContent.md b/docset/winserver2016-ps/adfs/Get-AdfsAuthenticationProviderWebContent.md index 3fd882d2b4..4584887a75 100644 --- a/docset/winserver2016-ps/adfs/Get-AdfsAuthenticationProviderWebContent.md +++ b/docset/winserver2016-ps/adfs/Get-AdfsAuthenticationProviderWebContent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsauthenticationproviderwebcontent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsauthenticationproviderwebcontent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsAuthenticationProviderWebContent --- diff --git a/docset/winserver2016-ps/adfs/Get-AdfsAzureMfaConfigured.md b/docset/winserver2016-ps/adfs/Get-AdfsAzureMfaConfigured.md index a4acbd4cf8..1a96b9d309 100644 --- a/docset/winserver2016-ps/adfs/Get-AdfsAzureMfaConfigured.md +++ b/docset/winserver2016-ps/adfs/Get-AdfsAzureMfaConfigured.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsazuremfaconfigured?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsazuremfaconfigured?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsAzureMfaConfigured --- diff --git a/docset/winserver2016-ps/adfs/Get-AdfsCertificate.md b/docset/winserver2016-ps/adfs/Get-AdfsCertificate.md index 54ca599492..a3ca0f3d99 100644 --- a/docset/winserver2016-ps/adfs/Get-AdfsCertificate.md +++ b/docset/winserver2016-ps/adfs/Get-AdfsCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfscertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfscertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsCertificate --- diff --git a/docset/winserver2016-ps/adfs/Get-AdfsCertificateAuthority.md b/docset/winserver2016-ps/adfs/Get-AdfsCertificateAuthority.md index a7ca3ebed9..7c108a9ed8 100644 --- a/docset/winserver2016-ps/adfs/Get-AdfsCertificateAuthority.md +++ b/docset/winserver2016-ps/adfs/Get-AdfsCertificateAuthority.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfscertificateauthority?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfscertificateauthority?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsCertificateAuthority --- diff --git a/docset/winserver2016-ps/adfs/Get-AdfsClaimDescription.md b/docset/winserver2016-ps/adfs/Get-AdfsClaimDescription.md index 2dfc293310..aa8fc2378b 100644 --- a/docset/winserver2016-ps/adfs/Get-AdfsClaimDescription.md +++ b/docset/winserver2016-ps/adfs/Get-AdfsClaimDescription.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsclaimdescription?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsclaimdescription?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsClaimDescription --- diff --git a/docset/winserver2016-ps/adfs/Get-AdfsClaimsProviderTrust.md b/docset/winserver2016-ps/adfs/Get-AdfsClaimsProviderTrust.md index 449ac3aa21..a68a9684a0 100644 --- a/docset/winserver2016-ps/adfs/Get-AdfsClaimsProviderTrust.md +++ b/docset/winserver2016-ps/adfs/Get-AdfsClaimsProviderTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsclaimsprovidertrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsclaimsprovidertrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsClaimsProviderTrust --- diff --git a/docset/winserver2016-ps/adfs/Get-AdfsClaimsProviderTrustsGroup.md b/docset/winserver2016-ps/adfs/Get-AdfsClaimsProviderTrustsGroup.md index 3d8e14f85b..101d9b2c0f 100644 --- a/docset/winserver2016-ps/adfs/Get-AdfsClaimsProviderTrustsGroup.md +++ b/docset/winserver2016-ps/adfs/Get-AdfsClaimsProviderTrustsGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsclaimsprovidertrustsgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsclaimsprovidertrustsgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsClaimsProviderTrustsGroup --- diff --git a/docset/winserver2016-ps/adfs/Get-AdfsClient.md b/docset/winserver2016-ps/adfs/Get-AdfsClient.md index 98d637843d..b713ee89f2 100644 --- a/docset/winserver2016-ps/adfs/Get-AdfsClient.md +++ b/docset/winserver2016-ps/adfs/Get-AdfsClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsClient --- diff --git a/docset/winserver2016-ps/adfs/Get-AdfsDeviceRegistration.md b/docset/winserver2016-ps/adfs/Get-AdfsDeviceRegistration.md index beb5525def..0b054e4798 100644 --- a/docset/winserver2016-ps/adfs/Get-AdfsDeviceRegistration.md +++ b/docset/winserver2016-ps/adfs/Get-AdfsDeviceRegistration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsdeviceregistration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsdeviceregistration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsDeviceRegistration --- diff --git a/docset/winserver2016-ps/adfs/Get-AdfsDeviceRegistrationUpnSuffix.md b/docset/winserver2016-ps/adfs/Get-AdfsDeviceRegistrationUpnSuffix.md index 2723891ffb..d0ebacf801 100644 --- a/docset/winserver2016-ps/adfs/Get-AdfsDeviceRegistrationUpnSuffix.md +++ b/docset/winserver2016-ps/adfs/Get-AdfsDeviceRegistrationUpnSuffix.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsdeviceregistrationupnsuffix?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsdeviceregistrationupnsuffix?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsDeviceRegistrationUpnSuffix --- diff --git a/docset/winserver2016-ps/adfs/Get-AdfsEndpoint.md b/docset/winserver2016-ps/adfs/Get-AdfsEndpoint.md index e04947f049..8f3229d502 100644 --- a/docset/winserver2016-ps/adfs/Get-AdfsEndpoint.md +++ b/docset/winserver2016-ps/adfs/Get-AdfsEndpoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsendpoint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsendpoint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsEndpoint --- diff --git a/docset/winserver2016-ps/adfs/Get-AdfsFarmInformation.md b/docset/winserver2016-ps/adfs/Get-AdfsFarmInformation.md index 9b31b1bb92..46963feb3c 100644 --- a/docset/winserver2016-ps/adfs/Get-AdfsFarmInformation.md +++ b/docset/winserver2016-ps/adfs/Get-AdfsFarmInformation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsfarminformation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsfarminformation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsFarmInformation --- diff --git a/docset/winserver2016-ps/adfs/Get-AdfsGlobalAuthenticationPolicy.md b/docset/winserver2016-ps/adfs/Get-AdfsGlobalAuthenticationPolicy.md index dbb0234bdf..d586d8258f 100644 --- a/docset/winserver2016-ps/adfs/Get-AdfsGlobalAuthenticationPolicy.md +++ b/docset/winserver2016-ps/adfs/Get-AdfsGlobalAuthenticationPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsglobalauthenticationpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsglobalauthenticationpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsGlobalAuthenticationPolicy --- diff --git a/docset/winserver2016-ps/adfs/Get-AdfsGlobalWebContent.md b/docset/winserver2016-ps/adfs/Get-AdfsGlobalWebContent.md index fd4594b8de..9e5363776a 100644 --- a/docset/winserver2016-ps/adfs/Get-AdfsGlobalWebContent.md +++ b/docset/winserver2016-ps/adfs/Get-AdfsGlobalWebContent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsglobalwebcontent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsglobalwebcontent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsGlobalWebContent --- diff --git a/docset/winserver2016-ps/adfs/Get-AdfsLocalClaimsProviderTrust.md b/docset/winserver2016-ps/adfs/Get-AdfsLocalClaimsProviderTrust.md index 82b5caa9e7..0fe9dbdda6 100644 --- a/docset/winserver2016-ps/adfs/Get-AdfsLocalClaimsProviderTrust.md +++ b/docset/winserver2016-ps/adfs/Get-AdfsLocalClaimsProviderTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfslocalclaimsprovidertrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfslocalclaimsprovidertrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsLocalClaimsProviderTrust --- diff --git a/docset/winserver2016-ps/adfs/Get-AdfsNativeClientApplication.md b/docset/winserver2016-ps/adfs/Get-AdfsNativeClientApplication.md index 5b3770685d..5cec6b58ed 100644 --- a/docset/winserver2016-ps/adfs/Get-AdfsNativeClientApplication.md +++ b/docset/winserver2016-ps/adfs/Get-AdfsNativeClientApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsnativeclientapplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsnativeclientapplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsNativeClientApplication --- diff --git a/docset/winserver2016-ps/adfs/Get-AdfsNonClaimsAwareRelyingPartyTrust.md b/docset/winserver2016-ps/adfs/Get-AdfsNonClaimsAwareRelyingPartyTrust.md index e7888591d4..0195aa2976 100644 --- a/docset/winserver2016-ps/adfs/Get-AdfsNonClaimsAwareRelyingPartyTrust.md +++ b/docset/winserver2016-ps/adfs/Get-AdfsNonClaimsAwareRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsnonclaimsawarerelyingpartytrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsnonclaimsawarerelyingpartytrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsNonClaimsAwareRelyingPartyTrust --- diff --git a/docset/winserver2016-ps/adfs/Get-AdfsProperties.md b/docset/winserver2016-ps/adfs/Get-AdfsProperties.md index 6268959041..24bcb3a76a 100644 --- a/docset/winserver2016-ps/adfs/Get-AdfsProperties.md +++ b/docset/winserver2016-ps/adfs/Get-AdfsProperties.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsproperties?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsproperties?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsProperties --- diff --git a/docset/winserver2016-ps/adfs/Get-AdfsRegistrationHosts.md b/docset/winserver2016-ps/adfs/Get-AdfsRegistrationHosts.md index 8842078444..c539c2e6b6 100644 --- a/docset/winserver2016-ps/adfs/Get-AdfsRegistrationHosts.md +++ b/docset/winserver2016-ps/adfs/Get-AdfsRegistrationHosts.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsregistrationhosts?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsregistrationhosts?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsRegistrationHosts --- diff --git a/docset/winserver2016-ps/adfs/Get-AdfsRelyingPartyTrust.md b/docset/winserver2016-ps/adfs/Get-AdfsRelyingPartyTrust.md index 4c172c790e..77922faa6c 100644 --- a/docset/winserver2016-ps/adfs/Get-AdfsRelyingPartyTrust.md +++ b/docset/winserver2016-ps/adfs/Get-AdfsRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsrelyingpartytrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsrelyingpartytrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsRelyingPartyTrust --- diff --git a/docset/winserver2016-ps/adfs/Get-AdfsRelyingPartyTrustsGroup.md b/docset/winserver2016-ps/adfs/Get-AdfsRelyingPartyTrustsGroup.md index 88354e0e4d..345b67ef49 100644 --- a/docset/winserver2016-ps/adfs/Get-AdfsRelyingPartyTrustsGroup.md +++ b/docset/winserver2016-ps/adfs/Get-AdfsRelyingPartyTrustsGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsrelyingpartytrustsgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsrelyingpartytrustsgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsRelyingPartyTrustsGroup --- diff --git a/docset/winserver2016-ps/adfs/Get-AdfsRelyingPartyWebContent.md b/docset/winserver2016-ps/adfs/Get-AdfsRelyingPartyWebContent.md index cc33562e16..4dc41cfb00 100644 --- a/docset/winserver2016-ps/adfs/Get-AdfsRelyingPartyWebContent.md +++ b/docset/winserver2016-ps/adfs/Get-AdfsRelyingPartyWebContent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsrelyingpartywebcontent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsrelyingpartywebcontent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsRelyingPartyWebContent --- diff --git a/docset/winserver2016-ps/adfs/Get-AdfsRelyingPartyWebTheme.md b/docset/winserver2016-ps/adfs/Get-AdfsRelyingPartyWebTheme.md index 00f3459931..09bbad1ac3 100644 --- a/docset/winserver2016-ps/adfs/Get-AdfsRelyingPartyWebTheme.md +++ b/docset/winserver2016-ps/adfs/Get-AdfsRelyingPartyWebTheme.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsrelyingpartywebtheme?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsrelyingpartywebtheme?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsRelyingPartyWebTheme --- diff --git a/docset/winserver2016-ps/adfs/Get-AdfsScopeDescription.md b/docset/winserver2016-ps/adfs/Get-AdfsScopeDescription.md index bd2302bc7b..cddc61e2f4 100644 --- a/docset/winserver2016-ps/adfs/Get-AdfsScopeDescription.md +++ b/docset/winserver2016-ps/adfs/Get-AdfsScopeDescription.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsscopedescription?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsscopedescription?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsScopeDescription --- diff --git a/docset/winserver2016-ps/adfs/Get-AdfsServerApplication.md b/docset/winserver2016-ps/adfs/Get-AdfsServerApplication.md index 4649271820..7c940cc0a3 100644 --- a/docset/winserver2016-ps/adfs/Get-AdfsServerApplication.md +++ b/docset/winserver2016-ps/adfs/Get-AdfsServerApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsserverapplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsserverapplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsServerApplication --- diff --git a/docset/winserver2016-ps/adfs/Get-AdfsSslCertificate.md b/docset/winserver2016-ps/adfs/Get-AdfsSslCertificate.md index 6de7647e45..c7a4922f82 100644 --- a/docset/winserver2016-ps/adfs/Get-AdfsSslCertificate.md +++ b/docset/winserver2016-ps/adfs/Get-AdfsSslCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfssslcertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfssslcertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsSslCertificate --- diff --git a/docset/winserver2016-ps/adfs/Get-AdfsSyncProperties.md b/docset/winserver2016-ps/adfs/Get-AdfsSyncProperties.md index ffa955ef69..7073b17f28 100644 --- a/docset/winserver2016-ps/adfs/Get-AdfsSyncProperties.md +++ b/docset/winserver2016-ps/adfs/Get-AdfsSyncProperties.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfssyncproperties?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfssyncproperties?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsSyncProperties --- diff --git a/docset/winserver2016-ps/adfs/Get-AdfsTrustedFederationPartner.md b/docset/winserver2016-ps/adfs/Get-AdfsTrustedFederationPartner.md index 28b6abe10c..8c5d92b60f 100644 --- a/docset/winserver2016-ps/adfs/Get-AdfsTrustedFederationPartner.md +++ b/docset/winserver2016-ps/adfs/Get-AdfsTrustedFederationPartner.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfstrustedfederationpartner?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfstrustedfederationpartner?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsTrustedFederationPartner --- diff --git a/docset/winserver2016-ps/adfs/Get-AdfsWebApiApplication.md b/docset/winserver2016-ps/adfs/Get-AdfsWebApiApplication.md index c738bdadc2..2c2b15ad46 100644 --- a/docset/winserver2016-ps/adfs/Get-AdfsWebApiApplication.md +++ b/docset/winserver2016-ps/adfs/Get-AdfsWebApiApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfswebapiapplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfswebapiapplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsWebApiApplication --- diff --git a/docset/winserver2016-ps/adfs/Get-AdfsWebApplicationProxyRelyingPartyTrust.md b/docset/winserver2016-ps/adfs/Get-AdfsWebApplicationProxyRelyingPartyTrust.md index a14f203756..55adad30ec 100644 --- a/docset/winserver2016-ps/adfs/Get-AdfsWebApplicationProxyRelyingPartyTrust.md +++ b/docset/winserver2016-ps/adfs/Get-AdfsWebApplicationProxyRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfswebapplicationproxyrelyingpartytrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfswebapplicationproxyrelyingpartytrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsWebApplicationProxyRelyingPartyTrust --- diff --git a/docset/winserver2016-ps/adfs/Get-AdfsWebConfig.md b/docset/winserver2016-ps/adfs/Get-AdfsWebConfig.md index 3686bf13ca..0d46177315 100644 --- a/docset/winserver2016-ps/adfs/Get-AdfsWebConfig.md +++ b/docset/winserver2016-ps/adfs/Get-AdfsWebConfig.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfswebconfig?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfswebconfig?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsWebConfig --- diff --git a/docset/winserver2016-ps/adfs/Get-AdfsWebTheme.md b/docset/winserver2016-ps/adfs/Get-AdfsWebTheme.md index 14dabcd6cd..569bd49368 100644 --- a/docset/winserver2016-ps/adfs/Get-AdfsWebTheme.md +++ b/docset/winserver2016-ps/adfs/Get-AdfsWebTheme.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfswebtheme?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfswebtheme?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsWebTheme --- diff --git a/docset/winserver2016-ps/adfs/Grant-AdfsApplicationPermission.md b/docset/winserver2016-ps/adfs/Grant-AdfsApplicationPermission.md index e1c906d92c..d1cf5e33b9 100644 --- a/docset/winserver2016-ps/adfs/Grant-AdfsApplicationPermission.md +++ b/docset/winserver2016-ps/adfs/Grant-AdfsApplicationPermission.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/grant-adfsapplicationpermission?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/grant-adfsapplicationpermission?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Grant-AdfsApplicationPermission --- diff --git a/docset/winserver2016-ps/adfs/Import-AdfsAuthenticationProviderConfigurationData.md b/docset/winserver2016-ps/adfs/Import-AdfsAuthenticationProviderConfigurationData.md index fcb10a02ef..7946f0fa74 100644 --- a/docset/winserver2016-ps/adfs/Import-AdfsAuthenticationProviderConfigurationData.md +++ b/docset/winserver2016-ps/adfs/Import-AdfsAuthenticationProviderConfigurationData.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/import-adfsauthenticationproviderconfigurationdata?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/import-adfsauthenticationproviderconfigurationdata?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-AdfsAuthenticationProviderConfigurationData --- diff --git a/docset/winserver2016-ps/adfs/Import-AdfsWebContent.md b/docset/winserver2016-ps/adfs/Import-AdfsWebContent.md index a62b1bc1c8..6f6382af11 100644 --- a/docset/winserver2016-ps/adfs/Import-AdfsWebContent.md +++ b/docset/winserver2016-ps/adfs/Import-AdfsWebContent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/import-adfswebcontent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/import-adfswebcontent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-AdfsWebContent --- diff --git a/docset/winserver2016-ps/adfs/Initialize-ADDeviceRegistration.md b/docset/winserver2016-ps/adfs/Initialize-ADDeviceRegistration.md index f31983964b..b2da83b48d 100644 --- a/docset/winserver2016-ps/adfs/Initialize-ADDeviceRegistration.md +++ b/docset/winserver2016-ps/adfs/Initialize-ADDeviceRegistration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Deployment.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/initialize-addeviceregistration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/initialize-addeviceregistration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Initialize-ADDeviceRegistration --- diff --git a/docset/winserver2016-ps/adfs/Install-AdfsFarm.md b/docset/winserver2016-ps/adfs/Install-AdfsFarm.md index 9567bb51af..2e3edc01a8 100644 --- a/docset/winserver2016-ps/adfs/Install-AdfsFarm.md +++ b/docset/winserver2016-ps/adfs/Install-AdfsFarm.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Deployment.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/install-adfsfarm?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/install-adfsfarm?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-AdfsFarm --- diff --git a/docset/winserver2016-ps/adfs/Invoke-AdfsFarmBehaviorLevelRaise.md b/docset/winserver2016-ps/adfs/Invoke-AdfsFarmBehaviorLevelRaise.md index bb08051224..13de733b01 100644 --- a/docset/winserver2016-ps/adfs/Invoke-AdfsFarmBehaviorLevelRaise.md +++ b/docset/winserver2016-ps/adfs/Invoke-AdfsFarmBehaviorLevelRaise.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Deployment.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/invoke-adfsfarmbehaviorlevelraise?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/invoke-adfsfarmbehaviorlevelraise?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-AdfsFarmBehaviorLevelRaise --- diff --git a/docset/winserver2016-ps/adfs/New-AdfsAccessControlPolicy.md b/docset/winserver2016-ps/adfs/New-AdfsAccessControlPolicy.md index 3711c4c893..8710829d2e 100644 --- a/docset/winserver2016-ps/adfs/New-AdfsAccessControlPolicy.md +++ b/docset/winserver2016-ps/adfs/New-AdfsAccessControlPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/new-adfsaccesscontrolpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/new-adfsaccesscontrolpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-AdfsAccessControlPolicy --- diff --git a/docset/winserver2016-ps/adfs/New-AdfsApplicationGroup.md b/docset/winserver2016-ps/adfs/New-AdfsApplicationGroup.md index 77d066424e..268af9e89a 100644 --- a/docset/winserver2016-ps/adfs/New-AdfsApplicationGroup.md +++ b/docset/winserver2016-ps/adfs/New-AdfsApplicationGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/new-adfsapplicationgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/new-adfsapplicationgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-AdfsApplicationGroup --- diff --git a/docset/winserver2016-ps/adfs/New-AdfsAzureMfaTenantCertificate.md b/docset/winserver2016-ps/adfs/New-AdfsAzureMfaTenantCertificate.md index fa7167447e..d36cd22d05 100644 --- a/docset/winserver2016-ps/adfs/New-AdfsAzureMfaTenantCertificate.md +++ b/docset/winserver2016-ps/adfs/New-AdfsAzureMfaTenantCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/new-adfsazuremfatenantcertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/new-adfsazuremfatenantcertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-AdfsAzureMfaTenantCertificate --- diff --git a/docset/winserver2016-ps/adfs/New-AdfsClaimRuleSet.md b/docset/winserver2016-ps/adfs/New-AdfsClaimRuleSet.md index 1645196a88..0f71a639e1 100644 --- a/docset/winserver2016-ps/adfs/New-AdfsClaimRuleSet.md +++ b/docset/winserver2016-ps/adfs/New-AdfsClaimRuleSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/new-adfsclaimruleset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/new-adfsclaimruleset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-AdfsClaimRuleSet --- diff --git a/docset/winserver2016-ps/adfs/New-AdfsContactPerson.md b/docset/winserver2016-ps/adfs/New-AdfsContactPerson.md index 23af173aa6..f4858b4f6c 100644 --- a/docset/winserver2016-ps/adfs/New-AdfsContactPerson.md +++ b/docset/winserver2016-ps/adfs/New-AdfsContactPerson.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/new-adfscontactperson?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/new-adfscontactperson?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-AdfsContactPerson --- diff --git a/docset/winserver2016-ps/adfs/New-AdfsLdapAttributeToClaimMapping.md b/docset/winserver2016-ps/adfs/New-AdfsLdapAttributeToClaimMapping.md index 01e3104411..c4e342df38 100644 --- a/docset/winserver2016-ps/adfs/New-AdfsLdapAttributeToClaimMapping.md +++ b/docset/winserver2016-ps/adfs/New-AdfsLdapAttributeToClaimMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/new-adfsldapattributetoclaimmapping?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/new-adfsldapattributetoclaimmapping?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-AdfsLdapAttributeToClaimMapping --- diff --git a/docset/winserver2016-ps/adfs/New-AdfsLdapServerConnection.md b/docset/winserver2016-ps/adfs/New-AdfsLdapServerConnection.md index fb62aecbe1..b5ac566e86 100644 --- a/docset/winserver2016-ps/adfs/New-AdfsLdapServerConnection.md +++ b/docset/winserver2016-ps/adfs/New-AdfsLdapServerConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/new-adfsldapserverconnection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/new-adfsldapserverconnection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-AdfsLdapServerConnection --- diff --git a/docset/winserver2016-ps/adfs/New-AdfsOrganization.md b/docset/winserver2016-ps/adfs/New-AdfsOrganization.md index e6f80963a1..d726318779 100644 --- a/docset/winserver2016-ps/adfs/New-AdfsOrganization.md +++ b/docset/winserver2016-ps/adfs/New-AdfsOrganization.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/new-adfsorganization?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/new-adfsorganization?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-AdfsOrganization --- diff --git a/docset/winserver2016-ps/adfs/New-AdfsSamlEndpoint.md b/docset/winserver2016-ps/adfs/New-AdfsSamlEndpoint.md index 96f7cd3fcb..1afd7f07f2 100644 --- a/docset/winserver2016-ps/adfs/New-AdfsSamlEndpoint.md +++ b/docset/winserver2016-ps/adfs/New-AdfsSamlEndpoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/new-adfssamlendpoint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/new-adfssamlendpoint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-AdfsSamlEndpoint --- diff --git a/docset/winserver2016-ps/adfs/New-AdfsWebTheme.md b/docset/winserver2016-ps/adfs/New-AdfsWebTheme.md index 0bbf0d65af..a6b80b797a 100644 --- a/docset/winserver2016-ps/adfs/New-AdfsWebTheme.md +++ b/docset/winserver2016-ps/adfs/New-AdfsWebTheme.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/new-adfswebtheme?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/new-adfswebtheme?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-AdfsWebTheme --- diff --git a/docset/winserver2016-ps/adfs/Publish-SslCertificate.md b/docset/winserver2016-ps/adfs/Publish-SslCertificate.md index 5201620fb4..ae8601375b 100644 --- a/docset/winserver2016-ps/adfs/Publish-SslCertificate.md +++ b/docset/winserver2016-ps/adfs/Publish-SslCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Deployment.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/publish-sslcertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/publish-sslcertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Publish-SslCertificate --- diff --git a/docset/winserver2016-ps/adfs/Register-AdfsAuthenticationProvider.md b/docset/winserver2016-ps/adfs/Register-AdfsAuthenticationProvider.md index a51982c3a9..e2defd8d31 100644 --- a/docset/winserver2016-ps/adfs/Register-AdfsAuthenticationProvider.md +++ b/docset/winserver2016-ps/adfs/Register-AdfsAuthenticationProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/register-adfsauthenticationprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/register-adfsauthenticationprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Register-AdfsAuthenticationProvider --- diff --git a/docset/winserver2016-ps/adfs/Remove-AdfsAccessControlPolicy.md b/docset/winserver2016-ps/adfs/Remove-AdfsAccessControlPolicy.md index cef65ef51d..427dccc079 100644 --- a/docset/winserver2016-ps/adfs/Remove-AdfsAccessControlPolicy.md +++ b/docset/winserver2016-ps/adfs/Remove-AdfsAccessControlPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsaccesscontrolpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsaccesscontrolpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsAccessControlPolicy --- diff --git a/docset/winserver2016-ps/adfs/Remove-AdfsApplicationGroup.md b/docset/winserver2016-ps/adfs/Remove-AdfsApplicationGroup.md index 811e7f9a91..cfee2c7a60 100644 --- a/docset/winserver2016-ps/adfs/Remove-AdfsApplicationGroup.md +++ b/docset/winserver2016-ps/adfs/Remove-AdfsApplicationGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsapplicationgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsapplicationgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsApplicationGroup --- diff --git a/docset/winserver2016-ps/adfs/Remove-AdfsAttributeStore.md b/docset/winserver2016-ps/adfs/Remove-AdfsAttributeStore.md index 7adc2f4d77..c09717483b 100644 --- a/docset/winserver2016-ps/adfs/Remove-AdfsAttributeStore.md +++ b/docset/winserver2016-ps/adfs/Remove-AdfsAttributeStore.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsattributestore?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsattributestore?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsAttributeStore --- diff --git a/docset/winserver2016-ps/adfs/Remove-AdfsAuthenticationProviderWebContent.md b/docset/winserver2016-ps/adfs/Remove-AdfsAuthenticationProviderWebContent.md index 748eca3958..ef81cc0155 100644 --- a/docset/winserver2016-ps/adfs/Remove-AdfsAuthenticationProviderWebContent.md +++ b/docset/winserver2016-ps/adfs/Remove-AdfsAuthenticationProviderWebContent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsauthenticationproviderwebcontent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsauthenticationproviderwebcontent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsAuthenticationProviderWebContent --- diff --git a/docset/winserver2016-ps/adfs/Remove-AdfsCertificate.md b/docset/winserver2016-ps/adfs/Remove-AdfsCertificate.md index f82426ad1c..144ec3b48c 100644 --- a/docset/winserver2016-ps/adfs/Remove-AdfsCertificate.md +++ b/docset/winserver2016-ps/adfs/Remove-AdfsCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfscertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfscertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsCertificate --- diff --git a/docset/winserver2016-ps/adfs/Remove-AdfsClaimDescription.md b/docset/winserver2016-ps/adfs/Remove-AdfsClaimDescription.md index e3af456b56..d8cc2e463b 100644 --- a/docset/winserver2016-ps/adfs/Remove-AdfsClaimDescription.md +++ b/docset/winserver2016-ps/adfs/Remove-AdfsClaimDescription.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsclaimdescription?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsclaimdescription?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsClaimDescription --- diff --git a/docset/winserver2016-ps/adfs/Remove-AdfsClaimsProviderTrust.md b/docset/winserver2016-ps/adfs/Remove-AdfsClaimsProviderTrust.md index e68f7ec3fd..73894f2391 100644 --- a/docset/winserver2016-ps/adfs/Remove-AdfsClaimsProviderTrust.md +++ b/docset/winserver2016-ps/adfs/Remove-AdfsClaimsProviderTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsclaimsprovidertrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsclaimsprovidertrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsClaimsProviderTrust --- diff --git a/docset/winserver2016-ps/adfs/Remove-AdfsClaimsProviderTrustsGroup.md b/docset/winserver2016-ps/adfs/Remove-AdfsClaimsProviderTrustsGroup.md index 52b3352242..3da91ae81d 100644 --- a/docset/winserver2016-ps/adfs/Remove-AdfsClaimsProviderTrustsGroup.md +++ b/docset/winserver2016-ps/adfs/Remove-AdfsClaimsProviderTrustsGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsclaimsprovidertrustsgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsclaimsprovidertrustsgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsClaimsProviderTrustsGroup --- diff --git a/docset/winserver2016-ps/adfs/Remove-AdfsClient.md b/docset/winserver2016-ps/adfs/Remove-AdfsClient.md index 343fb13ba1..5a0b96e6bd 100644 --- a/docset/winserver2016-ps/adfs/Remove-AdfsClient.md +++ b/docset/winserver2016-ps/adfs/Remove-AdfsClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsClient --- diff --git a/docset/winserver2016-ps/adfs/Remove-AdfsDeviceRegistrationUpnSuffix.md b/docset/winserver2016-ps/adfs/Remove-AdfsDeviceRegistrationUpnSuffix.md index 10586da812..7ab20f42ef 100644 --- a/docset/winserver2016-ps/adfs/Remove-AdfsDeviceRegistrationUpnSuffix.md +++ b/docset/winserver2016-ps/adfs/Remove-AdfsDeviceRegistrationUpnSuffix.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsdeviceregistrationupnsuffix?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsdeviceregistrationupnsuffix?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsDeviceRegistrationUpnSuffix --- diff --git a/docset/winserver2016-ps/adfs/Remove-AdfsFarmNode.md b/docset/winserver2016-ps/adfs/Remove-AdfsFarmNode.md index 7f85fbbe90..3e9f2d3a69 100644 --- a/docset/winserver2016-ps/adfs/Remove-AdfsFarmNode.md +++ b/docset/winserver2016-ps/adfs/Remove-AdfsFarmNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Deployment.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsfarmnode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsfarmnode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsFarmNode --- diff --git a/docset/winserver2016-ps/adfs/Remove-AdfsGlobalWebContent.md b/docset/winserver2016-ps/adfs/Remove-AdfsGlobalWebContent.md index 691dc26338..684173a942 100644 --- a/docset/winserver2016-ps/adfs/Remove-AdfsGlobalWebContent.md +++ b/docset/winserver2016-ps/adfs/Remove-AdfsGlobalWebContent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsglobalwebcontent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsglobalwebcontent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsGlobalWebContent --- diff --git a/docset/winserver2016-ps/adfs/Remove-AdfsLocalClaimsProviderTrust.md b/docset/winserver2016-ps/adfs/Remove-AdfsLocalClaimsProviderTrust.md index 380a9dc242..0f91887941 100644 --- a/docset/winserver2016-ps/adfs/Remove-AdfsLocalClaimsProviderTrust.md +++ b/docset/winserver2016-ps/adfs/Remove-AdfsLocalClaimsProviderTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfslocalclaimsprovidertrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfslocalclaimsprovidertrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsLocalClaimsProviderTrust --- diff --git a/docset/winserver2016-ps/adfs/Remove-AdfsNativeClientApplication.md b/docset/winserver2016-ps/adfs/Remove-AdfsNativeClientApplication.md index bedd6369d5..87d774889b 100644 --- a/docset/winserver2016-ps/adfs/Remove-AdfsNativeClientApplication.md +++ b/docset/winserver2016-ps/adfs/Remove-AdfsNativeClientApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsnativeclientapplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsnativeclientapplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsNativeClientApplication --- diff --git a/docset/winserver2016-ps/adfs/Remove-AdfsNonClaimsAwareRelyingPartyTrust.md b/docset/winserver2016-ps/adfs/Remove-AdfsNonClaimsAwareRelyingPartyTrust.md index 4f511a42e5..cc7ad59694 100644 --- a/docset/winserver2016-ps/adfs/Remove-AdfsNonClaimsAwareRelyingPartyTrust.md +++ b/docset/winserver2016-ps/adfs/Remove-AdfsNonClaimsAwareRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsnonclaimsawarerelyingpartytrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsnonclaimsawarerelyingpartytrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsNonClaimsAwareRelyingPartyTrust --- diff --git a/docset/winserver2016-ps/adfs/Remove-AdfsRelyingPartyTrust.md b/docset/winserver2016-ps/adfs/Remove-AdfsRelyingPartyTrust.md index 304e7f0cfc..89bfa72e46 100644 --- a/docset/winserver2016-ps/adfs/Remove-AdfsRelyingPartyTrust.md +++ b/docset/winserver2016-ps/adfs/Remove-AdfsRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsrelyingpartytrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsrelyingpartytrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsRelyingPartyTrust --- diff --git a/docset/winserver2016-ps/adfs/Remove-AdfsRelyingPartyTrustsGroup.md b/docset/winserver2016-ps/adfs/Remove-AdfsRelyingPartyTrustsGroup.md index 87282b5ac4..08c1eb719a 100644 --- a/docset/winserver2016-ps/adfs/Remove-AdfsRelyingPartyTrustsGroup.md +++ b/docset/winserver2016-ps/adfs/Remove-AdfsRelyingPartyTrustsGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsrelyingpartytrustsgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsrelyingpartytrustsgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsRelyingPartyTrustsGroup --- diff --git a/docset/winserver2016-ps/adfs/Remove-AdfsRelyingPartyWebContent.md b/docset/winserver2016-ps/adfs/Remove-AdfsRelyingPartyWebContent.md index a1db31c333..d19d5babc3 100644 --- a/docset/winserver2016-ps/adfs/Remove-AdfsRelyingPartyWebContent.md +++ b/docset/winserver2016-ps/adfs/Remove-AdfsRelyingPartyWebContent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsrelyingpartywebcontent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsrelyingpartywebcontent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsRelyingPartyWebContent --- diff --git a/docset/winserver2016-ps/adfs/Remove-AdfsRelyingPartyWebTheme.md b/docset/winserver2016-ps/adfs/Remove-AdfsRelyingPartyWebTheme.md index 4e337bc874..76f5836669 100644 --- a/docset/winserver2016-ps/adfs/Remove-AdfsRelyingPartyWebTheme.md +++ b/docset/winserver2016-ps/adfs/Remove-AdfsRelyingPartyWebTheme.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsrelyingpartywebtheme?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsrelyingpartywebtheme?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsRelyingPartyWebTheme --- diff --git a/docset/winserver2016-ps/adfs/Remove-AdfsScopeDescription.md b/docset/winserver2016-ps/adfs/Remove-AdfsScopeDescription.md index d7b4f8221f..5f91927cb1 100644 --- a/docset/winserver2016-ps/adfs/Remove-AdfsScopeDescription.md +++ b/docset/winserver2016-ps/adfs/Remove-AdfsScopeDescription.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsscopedescription?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsscopedescription?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsScopeDescription --- diff --git a/docset/winserver2016-ps/adfs/Remove-AdfsServerApplication.md b/docset/winserver2016-ps/adfs/Remove-AdfsServerApplication.md index 57c101f508..14e5551771 100644 --- a/docset/winserver2016-ps/adfs/Remove-AdfsServerApplication.md +++ b/docset/winserver2016-ps/adfs/Remove-AdfsServerApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsserverapplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsserverapplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsServerApplication --- diff --git a/docset/winserver2016-ps/adfs/Remove-AdfsTrustedFederationPartner.md b/docset/winserver2016-ps/adfs/Remove-AdfsTrustedFederationPartner.md index 0a15734e8c..661187ab5f 100644 --- a/docset/winserver2016-ps/adfs/Remove-AdfsTrustedFederationPartner.md +++ b/docset/winserver2016-ps/adfs/Remove-AdfsTrustedFederationPartner.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfstrustedfederationpartner?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfstrustedfederationpartner?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsTrustedFederationPartner --- diff --git a/docset/winserver2016-ps/adfs/Remove-AdfsWebApiApplication.md b/docset/winserver2016-ps/adfs/Remove-AdfsWebApiApplication.md index bec90c1d21..d5a0a85828 100644 --- a/docset/winserver2016-ps/adfs/Remove-AdfsWebApiApplication.md +++ b/docset/winserver2016-ps/adfs/Remove-AdfsWebApiApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfswebapiapplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfswebapiapplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsWebApiApplication --- diff --git a/docset/winserver2016-ps/adfs/Remove-AdfsWebApplicationProxyRelyingPartyTrust.md b/docset/winserver2016-ps/adfs/Remove-AdfsWebApplicationProxyRelyingPartyTrust.md index a258238e85..e084436f71 100644 --- a/docset/winserver2016-ps/adfs/Remove-AdfsWebApplicationProxyRelyingPartyTrust.md +++ b/docset/winserver2016-ps/adfs/Remove-AdfsWebApplicationProxyRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfswebapplicationproxyrelyingpartytrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfswebapplicationproxyrelyingpartytrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsWebApplicationProxyRelyingPartyTrust --- diff --git a/docset/winserver2016-ps/adfs/Remove-AdfsWebTheme.md b/docset/winserver2016-ps/adfs/Remove-AdfsWebTheme.md index 9d21d5b639..6a5cd548d6 100644 --- a/docset/winserver2016-ps/adfs/Remove-AdfsWebTheme.md +++ b/docset/winserver2016-ps/adfs/Remove-AdfsWebTheme.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfswebtheme?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfswebtheme?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsWebTheme --- diff --git a/docset/winserver2016-ps/adfs/Restore-AdfsFarmBehaviorLevel.md b/docset/winserver2016-ps/adfs/Restore-AdfsFarmBehaviorLevel.md index a392d2df78..fd674c155c 100644 --- a/docset/winserver2016-ps/adfs/Restore-AdfsFarmBehaviorLevel.md +++ b/docset/winserver2016-ps/adfs/Restore-AdfsFarmBehaviorLevel.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Deployment.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/restore-adfsfarmbehaviorlevel?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/restore-adfsfarmbehaviorlevel?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-AdfsFarmBehaviorLevel --- diff --git a/docset/winserver2016-ps/adfs/Revoke-AdfsApplicationPermission.md b/docset/winserver2016-ps/adfs/Revoke-AdfsApplicationPermission.md index 76764ef39b..1e6bbcd0f5 100644 --- a/docset/winserver2016-ps/adfs/Revoke-AdfsApplicationPermission.md +++ b/docset/winserver2016-ps/adfs/Revoke-AdfsApplicationPermission.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/revoke-adfsapplicationpermission?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/revoke-adfsapplicationpermission?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Revoke-AdfsApplicationPermission --- diff --git a/docset/winserver2016-ps/adfs/Revoke-AdfsProxyTrust.md b/docset/winserver2016-ps/adfs/Revoke-AdfsProxyTrust.md index 05ce88aebf..be9ae3e9f2 100644 --- a/docset/winserver2016-ps/adfs/Revoke-AdfsProxyTrust.md +++ b/docset/winserver2016-ps/adfs/Revoke-AdfsProxyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/revoke-adfsproxytrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/revoke-adfsproxytrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Revoke-AdfsProxyTrust --- diff --git a/docset/winserver2016-ps/adfs/Set-AdfsAccessControlPolicy.md b/docset/winserver2016-ps/adfs/Set-AdfsAccessControlPolicy.md index a4a9329cd5..d58a5a7493 100644 --- a/docset/winserver2016-ps/adfs/Set-AdfsAccessControlPolicy.md +++ b/docset/winserver2016-ps/adfs/Set-AdfsAccessControlPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsaccesscontrolpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsaccesscontrolpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsAccessControlPolicy --- diff --git a/docset/winserver2016-ps/adfs/Set-AdfsAdditionalAuthenticationRule.md b/docset/winserver2016-ps/adfs/Set-AdfsAdditionalAuthenticationRule.md index e98e6fa19e..f0d2b60cf1 100644 --- a/docset/winserver2016-ps/adfs/Set-AdfsAdditionalAuthenticationRule.md +++ b/docset/winserver2016-ps/adfs/Set-AdfsAdditionalAuthenticationRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsadditionalauthenticationrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsadditionalauthenticationrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsAdditionalAuthenticationRule --- diff --git a/docset/winserver2016-ps/adfs/Set-AdfsAlternateTlsClientBinding.md b/docset/winserver2016-ps/adfs/Set-AdfsAlternateTlsClientBinding.md index 289c25e15f..66c48f40d1 100644 --- a/docset/winserver2016-ps/adfs/Set-AdfsAlternateTlsClientBinding.md +++ b/docset/winserver2016-ps/adfs/Set-AdfsAlternateTlsClientBinding.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsalternatetlsclientbinding?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsalternatetlsclientbinding?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsAlternateTlsClientBinding --- diff --git a/docset/winserver2016-ps/adfs/Set-AdfsApplicationGroup.md b/docset/winserver2016-ps/adfs/Set-AdfsApplicationGroup.md index b72fc1ebb3..f3816a19b4 100644 --- a/docset/winserver2016-ps/adfs/Set-AdfsApplicationGroup.md +++ b/docset/winserver2016-ps/adfs/Set-AdfsApplicationGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsapplicationgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsapplicationgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsApplicationGroup --- diff --git a/docset/winserver2016-ps/adfs/Set-AdfsApplicationPermission.md b/docset/winserver2016-ps/adfs/Set-AdfsApplicationPermission.md index 785e644a41..16dd483a2d 100644 --- a/docset/winserver2016-ps/adfs/Set-AdfsApplicationPermission.md +++ b/docset/winserver2016-ps/adfs/Set-AdfsApplicationPermission.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsapplicationpermission?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsapplicationpermission?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsApplicationPermission --- diff --git a/docset/winserver2016-ps/adfs/Set-AdfsAttributeStore.md b/docset/winserver2016-ps/adfs/Set-AdfsAttributeStore.md index f89da85e2f..506f308e68 100644 --- a/docset/winserver2016-ps/adfs/Set-AdfsAttributeStore.md +++ b/docset/winserver2016-ps/adfs/Set-AdfsAttributeStore.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsattributestore?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsattributestore?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsAttributeStore --- diff --git a/docset/winserver2016-ps/adfs/Set-AdfsAuthenticationProviderWebContent.md b/docset/winserver2016-ps/adfs/Set-AdfsAuthenticationProviderWebContent.md index 1799dc7727..dda10d213f 100644 --- a/docset/winserver2016-ps/adfs/Set-AdfsAuthenticationProviderWebContent.md +++ b/docset/winserver2016-ps/adfs/Set-AdfsAuthenticationProviderWebContent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsauthenticationproviderwebcontent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsauthenticationproviderwebcontent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsAuthenticationProviderWebContent --- diff --git a/docset/winserver2016-ps/adfs/Set-AdfsAzureMfaTenant.md b/docset/winserver2016-ps/adfs/Set-AdfsAzureMfaTenant.md index f10c7c1f3d..b8516d17ee 100644 --- a/docset/winserver2016-ps/adfs/Set-AdfsAzureMfaTenant.md +++ b/docset/winserver2016-ps/adfs/Set-AdfsAzureMfaTenant.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsazuremfatenant?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsazuremfatenant?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsAzureMfaTenant --- diff --git a/docset/winserver2016-ps/adfs/Set-AdfsCertSharingContainer.md b/docset/winserver2016-ps/adfs/Set-AdfsCertSharingContainer.md index c10b0e730e..601a0170fa 100644 --- a/docset/winserver2016-ps/adfs/Set-AdfsCertSharingContainer.md +++ b/docset/winserver2016-ps/adfs/Set-AdfsCertSharingContainer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfscertsharingcontainer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfscertsharingcontainer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsCertSharingContainer --- diff --git a/docset/winserver2016-ps/adfs/Set-AdfsCertificate.md b/docset/winserver2016-ps/adfs/Set-AdfsCertificate.md index b1f6b0ac04..f3a9fea0b1 100644 --- a/docset/winserver2016-ps/adfs/Set-AdfsCertificate.md +++ b/docset/winserver2016-ps/adfs/Set-AdfsCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfscertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfscertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsCertificate --- diff --git a/docset/winserver2016-ps/adfs/Set-AdfsCertificateAuthority.md b/docset/winserver2016-ps/adfs/Set-AdfsCertificateAuthority.md index 075d5adc10..44e294817e 100644 --- a/docset/winserver2016-ps/adfs/Set-AdfsCertificateAuthority.md +++ b/docset/winserver2016-ps/adfs/Set-AdfsCertificateAuthority.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfscertificateauthority?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfscertificateauthority?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsCertificateAuthority --- diff --git a/docset/winserver2016-ps/adfs/Set-AdfsClaimDescription.md b/docset/winserver2016-ps/adfs/Set-AdfsClaimDescription.md index 760c6888df..61b0f4b47f 100644 --- a/docset/winserver2016-ps/adfs/Set-AdfsClaimDescription.md +++ b/docset/winserver2016-ps/adfs/Set-AdfsClaimDescription.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsclaimdescription?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsclaimdescription?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsClaimDescription --- diff --git a/docset/winserver2016-ps/adfs/Set-AdfsClaimsProviderTrust.md b/docset/winserver2016-ps/adfs/Set-AdfsClaimsProviderTrust.md index eff690e660..c2a86306ec 100644 --- a/docset/winserver2016-ps/adfs/Set-AdfsClaimsProviderTrust.md +++ b/docset/winserver2016-ps/adfs/Set-AdfsClaimsProviderTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsclaimsprovidertrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsclaimsprovidertrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsClaimsProviderTrust --- diff --git a/docset/winserver2016-ps/adfs/Set-AdfsClient.md b/docset/winserver2016-ps/adfs/Set-AdfsClient.md index 00e5941b2d..b2ca33f01b 100644 --- a/docset/winserver2016-ps/adfs/Set-AdfsClient.md +++ b/docset/winserver2016-ps/adfs/Set-AdfsClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 09/19/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsClient --- diff --git a/docset/winserver2016-ps/adfs/Set-AdfsDeviceRegistration.md b/docset/winserver2016-ps/adfs/Set-AdfsDeviceRegistration.md index 93c917afd1..7d1a61e745 100644 --- a/docset/winserver2016-ps/adfs/Set-AdfsDeviceRegistration.md +++ b/docset/winserver2016-ps/adfs/Set-AdfsDeviceRegistration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsdeviceregistration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsdeviceregistration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsDeviceRegistration --- diff --git a/docset/winserver2016-ps/adfs/Set-AdfsDeviceRegistrationUpnSuffix.md b/docset/winserver2016-ps/adfs/Set-AdfsDeviceRegistrationUpnSuffix.md index d18bddd3d5..f9753a2f49 100644 --- a/docset/winserver2016-ps/adfs/Set-AdfsDeviceRegistrationUpnSuffix.md +++ b/docset/winserver2016-ps/adfs/Set-AdfsDeviceRegistrationUpnSuffix.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsdeviceregistrationupnsuffix?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsdeviceregistrationupnsuffix?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsDeviceRegistrationUpnSuffix --- diff --git a/docset/winserver2016-ps/adfs/Set-AdfsEndpoint.md b/docset/winserver2016-ps/adfs/Set-AdfsEndpoint.md index 75d2cd6f64..afc911fbb1 100644 --- a/docset/winserver2016-ps/adfs/Set-AdfsEndpoint.md +++ b/docset/winserver2016-ps/adfs/Set-AdfsEndpoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsendpoint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsendpoint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsEndpoint --- diff --git a/docset/winserver2016-ps/adfs/Set-AdfsFarmInformation.md b/docset/winserver2016-ps/adfs/Set-AdfsFarmInformation.md index 82f787b17e..8dccfcf7ea 100644 --- a/docset/winserver2016-ps/adfs/Set-AdfsFarmInformation.md +++ b/docset/winserver2016-ps/adfs/Set-AdfsFarmInformation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsfarminformation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsfarminformation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsFarmInformation --- diff --git a/docset/winserver2016-ps/adfs/Set-AdfsGlobalAuthenticationPolicy.md b/docset/winserver2016-ps/adfs/Set-AdfsGlobalAuthenticationPolicy.md index a9f35d42b5..dd4bdefd05 100644 --- a/docset/winserver2016-ps/adfs/Set-AdfsGlobalAuthenticationPolicy.md +++ b/docset/winserver2016-ps/adfs/Set-AdfsGlobalAuthenticationPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsglobalauthenticationpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsglobalauthenticationpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsGlobalAuthenticationPolicy --- diff --git a/docset/winserver2016-ps/adfs/Set-AdfsGlobalWebContent.md b/docset/winserver2016-ps/adfs/Set-AdfsGlobalWebContent.md index 30f597c33e..16a69fc581 100644 --- a/docset/winserver2016-ps/adfs/Set-AdfsGlobalWebContent.md +++ b/docset/winserver2016-ps/adfs/Set-AdfsGlobalWebContent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsglobalwebcontent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsglobalwebcontent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsGlobalWebContent --- diff --git a/docset/winserver2016-ps/adfs/Set-AdfsLocalClaimsProviderTrust.md b/docset/winserver2016-ps/adfs/Set-AdfsLocalClaimsProviderTrust.md index 3d2cba0a03..d056f1a798 100644 --- a/docset/winserver2016-ps/adfs/Set-AdfsLocalClaimsProviderTrust.md +++ b/docset/winserver2016-ps/adfs/Set-AdfsLocalClaimsProviderTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfslocalclaimsprovidertrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfslocalclaimsprovidertrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsLocalClaimsProviderTrust --- diff --git a/docset/winserver2016-ps/adfs/Set-AdfsNativeClientApplication.md b/docset/winserver2016-ps/adfs/Set-AdfsNativeClientApplication.md index 3964b59ccc..78ecd316a6 100644 --- a/docset/winserver2016-ps/adfs/Set-AdfsNativeClientApplication.md +++ b/docset/winserver2016-ps/adfs/Set-AdfsNativeClientApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 09/19/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsnativeclientapplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsnativeclientapplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsNativeClientApplication --- diff --git a/docset/winserver2016-ps/adfs/Set-AdfsNonClaimsAwareRelyingPartyTrust.md b/docset/winserver2016-ps/adfs/Set-AdfsNonClaimsAwareRelyingPartyTrust.md index 079750f9da..6917424453 100644 --- a/docset/winserver2016-ps/adfs/Set-AdfsNonClaimsAwareRelyingPartyTrust.md +++ b/docset/winserver2016-ps/adfs/Set-AdfsNonClaimsAwareRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsnonclaimsawarerelyingpartytrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsnonclaimsawarerelyingpartytrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsNonClaimsAwareRelyingPartyTrust --- diff --git a/docset/winserver2016-ps/adfs/Set-AdfsProperties.md b/docset/winserver2016-ps/adfs/Set-AdfsProperties.md index 02369362ff..cbead4ab84 100644 --- a/docset/winserver2016-ps/adfs/Set-AdfsProperties.md +++ b/docset/winserver2016-ps/adfs/Set-AdfsProperties.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/02/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsproperties?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsproperties?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsProperties --- diff --git a/docset/winserver2016-ps/adfs/Set-AdfsRegistrationHosts.md b/docset/winserver2016-ps/adfs/Set-AdfsRegistrationHosts.md index 8b30dc05c7..f13875436f 100644 --- a/docset/winserver2016-ps/adfs/Set-AdfsRegistrationHosts.md +++ b/docset/winserver2016-ps/adfs/Set-AdfsRegistrationHosts.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsregistrationhosts?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsregistrationhosts?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsRegistrationHosts --- diff --git a/docset/winserver2016-ps/adfs/Set-AdfsRelyingPartyTrust.md b/docset/winserver2016-ps/adfs/Set-AdfsRelyingPartyTrust.md index 77edf09ce7..8225be8748 100644 --- a/docset/winserver2016-ps/adfs/Set-AdfsRelyingPartyTrust.md +++ b/docset/winserver2016-ps/adfs/Set-AdfsRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsrelyingpartytrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsrelyingpartytrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsRelyingPartyTrust --- diff --git a/docset/winserver2016-ps/adfs/Set-AdfsRelyingPartyWebContent.md b/docset/winserver2016-ps/adfs/Set-AdfsRelyingPartyWebContent.md index 04a094bedf..f55491eeba 100644 --- a/docset/winserver2016-ps/adfs/Set-AdfsRelyingPartyWebContent.md +++ b/docset/winserver2016-ps/adfs/Set-AdfsRelyingPartyWebContent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsrelyingpartywebcontent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsrelyingpartywebcontent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsRelyingPartyWebContent --- diff --git a/docset/winserver2016-ps/adfs/Set-AdfsRelyingPartyWebTheme.md b/docset/winserver2016-ps/adfs/Set-AdfsRelyingPartyWebTheme.md index 3c9d0299e0..5b51a83f88 100644 --- a/docset/winserver2016-ps/adfs/Set-AdfsRelyingPartyWebTheme.md +++ b/docset/winserver2016-ps/adfs/Set-AdfsRelyingPartyWebTheme.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsrelyingpartywebtheme?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsrelyingpartywebtheme?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsRelyingPartyWebTheme --- diff --git a/docset/winserver2016-ps/adfs/Set-AdfsScopeDescription.md b/docset/winserver2016-ps/adfs/Set-AdfsScopeDescription.md index cfa059cf31..eab1c7f159 100644 --- a/docset/winserver2016-ps/adfs/Set-AdfsScopeDescription.md +++ b/docset/winserver2016-ps/adfs/Set-AdfsScopeDescription.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsscopedescription?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsscopedescription?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsScopeDescription --- diff --git a/docset/winserver2016-ps/adfs/Set-AdfsServerApplication.md b/docset/winserver2016-ps/adfs/Set-AdfsServerApplication.md index 023f6587a0..e215c18ed3 100644 --- a/docset/winserver2016-ps/adfs/Set-AdfsServerApplication.md +++ b/docset/winserver2016-ps/adfs/Set-AdfsServerApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 09/19/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsserverapplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsserverapplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsServerApplication --- diff --git a/docset/winserver2016-ps/adfs/Set-AdfsSslCertificate.md b/docset/winserver2016-ps/adfs/Set-AdfsSslCertificate.md index 8b0f61837c..c9676cde7b 100644 --- a/docset/winserver2016-ps/adfs/Set-AdfsSslCertificate.md +++ b/docset/winserver2016-ps/adfs/Set-AdfsSslCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfssslcertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfssslcertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsSslCertificate --- diff --git a/docset/winserver2016-ps/adfs/Set-AdfsSyncProperties.md b/docset/winserver2016-ps/adfs/Set-AdfsSyncProperties.md index 134b291cc4..7725143dbe 100644 --- a/docset/winserver2016-ps/adfs/Set-AdfsSyncProperties.md +++ b/docset/winserver2016-ps/adfs/Set-AdfsSyncProperties.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfssyncproperties?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfssyncproperties?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsSyncProperties --- diff --git a/docset/winserver2016-ps/adfs/Set-AdfsTrustedFederationPartner.md b/docset/winserver2016-ps/adfs/Set-AdfsTrustedFederationPartner.md index 3ca147e447..98e9366d8a 100644 --- a/docset/winserver2016-ps/adfs/Set-AdfsTrustedFederationPartner.md +++ b/docset/winserver2016-ps/adfs/Set-AdfsTrustedFederationPartner.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfstrustedfederationpartner?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfstrustedfederationpartner?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsTrustedFederationPartner --- diff --git a/docset/winserver2016-ps/adfs/Set-AdfsWebApiApplication.md b/docset/winserver2016-ps/adfs/Set-AdfsWebApiApplication.md index da5f77c67e..63e05cc89b 100644 --- a/docset/winserver2016-ps/adfs/Set-AdfsWebApiApplication.md +++ b/docset/winserver2016-ps/adfs/Set-AdfsWebApiApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfswebapiapplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfswebapiapplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsWebApiApplication --- diff --git a/docset/winserver2016-ps/adfs/Set-AdfsWebApplicationProxyRelyingPartyTrust.md b/docset/winserver2016-ps/adfs/Set-AdfsWebApplicationProxyRelyingPartyTrust.md index 3534fc69dc..de622265e3 100644 --- a/docset/winserver2016-ps/adfs/Set-AdfsWebApplicationProxyRelyingPartyTrust.md +++ b/docset/winserver2016-ps/adfs/Set-AdfsWebApplicationProxyRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfswebapplicationproxyrelyingpartytrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfswebapplicationproxyrelyingpartytrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsWebApplicationProxyRelyingPartyTrust --- diff --git a/docset/winserver2016-ps/adfs/Set-AdfsWebConfig.md b/docset/winserver2016-ps/adfs/Set-AdfsWebConfig.md index b79b4b1a18..85f6a2bb03 100644 --- a/docset/winserver2016-ps/adfs/Set-AdfsWebConfig.md +++ b/docset/winserver2016-ps/adfs/Set-AdfsWebConfig.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfswebconfig?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfswebconfig?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsWebConfig --- diff --git a/docset/winserver2016-ps/adfs/Set-AdfsWebTheme.md b/docset/winserver2016-ps/adfs/Set-AdfsWebTheme.md index be4ddb68b7..0ac78001bb 100644 --- a/docset/winserver2016-ps/adfs/Set-AdfsWebTheme.md +++ b/docset/winserver2016-ps/adfs/Set-AdfsWebTheme.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfswebtheme?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfswebtheme?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsWebTheme --- diff --git a/docset/winserver2016-ps/adfs/Test-AdfsFarmBehaviorLevelRaise.md b/docset/winserver2016-ps/adfs/Test-AdfsFarmBehaviorLevelRaise.md index eee3d865d8..9a7301528b 100644 --- a/docset/winserver2016-ps/adfs/Test-AdfsFarmBehaviorLevelRaise.md +++ b/docset/winserver2016-ps/adfs/Test-AdfsFarmBehaviorLevelRaise.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Deployment.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/test-adfsfarmbehaviorlevelraise?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/test-adfsfarmbehaviorlevelraise?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-AdfsFarmBehaviorLevelRaise --- diff --git a/docset/winserver2016-ps/adfs/Test-AdfsFarmBehaviorLevelRestore.md b/docset/winserver2016-ps/adfs/Test-AdfsFarmBehaviorLevelRestore.md index 3310a9d088..1e140559cb 100644 --- a/docset/winserver2016-ps/adfs/Test-AdfsFarmBehaviorLevelRestore.md +++ b/docset/winserver2016-ps/adfs/Test-AdfsFarmBehaviorLevelRestore.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Deployment.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/test-adfsfarmbehaviorlevelrestore?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/test-adfsfarmbehaviorlevelrestore?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-AdfsFarmBehaviorLevelRestore --- diff --git a/docset/winserver2016-ps/adfs/Test-AdfsFarmInstallation.md b/docset/winserver2016-ps/adfs/Test-AdfsFarmInstallation.md index 360a04d5f5..ef7b0e572a 100644 --- a/docset/winserver2016-ps/adfs/Test-AdfsFarmInstallation.md +++ b/docset/winserver2016-ps/adfs/Test-AdfsFarmInstallation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Deployment.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/test-adfsfarminstallation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/test-adfsfarminstallation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-AdfsFarmInstallation --- diff --git a/docset/winserver2016-ps/adfs/Test-AdfsFarmJoin.md b/docset/winserver2016-ps/adfs/Test-AdfsFarmJoin.md index 00a363c5fe..9013e28ee5 100644 --- a/docset/winserver2016-ps/adfs/Test-AdfsFarmJoin.md +++ b/docset/winserver2016-ps/adfs/Test-AdfsFarmJoin.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Deployment.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/test-adfsfarmjoin?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/test-adfsfarmjoin?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-AdfsFarmJoin --- diff --git a/docset/winserver2016-ps/adfs/Unregister-AdfsAuthenticationProvider.md b/docset/winserver2016-ps/adfs/Unregister-AdfsAuthenticationProvider.md index fc05e78c53..b03b0c324b 100644 --- a/docset/winserver2016-ps/adfs/Unregister-AdfsAuthenticationProvider.md +++ b/docset/winserver2016-ps/adfs/Unregister-AdfsAuthenticationProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/unregister-adfsauthenticationprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/unregister-adfsauthenticationprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unregister-AdfsAuthenticationProvider --- diff --git a/docset/winserver2016-ps/adfs/Update-AdfsCertificate.md b/docset/winserver2016-ps/adfs/Update-AdfsCertificate.md index f5b760d66d..1b37bdefd4 100644 --- a/docset/winserver2016-ps/adfs/Update-AdfsCertificate.md +++ b/docset/winserver2016-ps/adfs/Update-AdfsCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/update-adfscertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/update-adfscertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-AdfsCertificate --- diff --git a/docset/winserver2016-ps/adfs/Update-AdfsClaimsProviderTrust.md b/docset/winserver2016-ps/adfs/Update-AdfsClaimsProviderTrust.md index d1b9a5ac7d..94dcb25340 100644 --- a/docset/winserver2016-ps/adfs/Update-AdfsClaimsProviderTrust.md +++ b/docset/winserver2016-ps/adfs/Update-AdfsClaimsProviderTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/update-adfsclaimsprovidertrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/update-adfsclaimsprovidertrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-AdfsClaimsProviderTrust --- diff --git a/docset/winserver2016-ps/adfs/Update-AdfsRelyingPartyTrust.md b/docset/winserver2016-ps/adfs/Update-AdfsRelyingPartyTrust.md index 270984f042..da7969a986 100644 --- a/docset/winserver2016-ps/adfs/Update-AdfsRelyingPartyTrust.md +++ b/docset/winserver2016-ps/adfs/Update-AdfsRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/update-adfsrelyingpartytrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/update-adfsrelyingpartytrust?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-AdfsRelyingPartyTrust --- diff --git a/docset/winserver2016-ps/adrms/Install-ADRMS.md b/docset/winserver2016-ps/adrms/Install-ADRMS.md index c49cfcf3f0..c1d49b28fd 100644 --- a/docset/winserver2016-ps/adrms/Install-ADRMS.md +++ b/docset/winserver2016-ps/adrms/Install-ADRMS.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Configuration.dll-Help.xml Module Name: ADRMS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrms/install-adrms?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrms/install-adrms?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-ADRMS --- diff --git a/docset/winserver2016-ps/adrms/Uninstall-ADRMS.md b/docset/winserver2016-ps/adrms/Uninstall-ADRMS.md index 3424262b46..866323d583 100644 --- a/docset/winserver2016-ps/adrms/Uninstall-ADRMS.md +++ b/docset/winserver2016-ps/adrms/Uninstall-ADRMS.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Configuration.dll-Help.xml Module Name: ADRMS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrms/uninstall-adrms?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrms/uninstall-adrms?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-ADRMS --- diff --git a/docset/winserver2016-ps/adrms/Update-ADRMS.md b/docset/winserver2016-ps/adrms/Update-ADRMS.md index dac6484ed4..763cfbd90a 100644 --- a/docset/winserver2016-ps/adrms/Update-ADRMS.md +++ b/docset/winserver2016-ps/adrms/Update-ADRMS.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Configuration.dll-Help.xml Module Name: ADRMS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrms/update-adrms?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrms/update-adrms?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-ADRMS --- diff --git a/docset/winserver2016-ps/adrmsadmin/Export-RmsReportDefinitionLanguage.md b/docset/winserver2016-ps/adrmsadmin/Export-RmsReportDefinitionLanguage.md index 431724d7a8..33136ad9e4 100644 --- a/docset/winserver2016-ps/adrmsadmin/Export-RmsReportDefinitionLanguage.md +++ b/docset/winserver2016-ps/adrmsadmin/Export-RmsReportDefinitionLanguage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/export-rmsreportdefinitionlanguage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/export-rmsreportdefinitionlanguage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-RmsReportDefinitionLanguage --- diff --git a/docset/winserver2016-ps/adrmsadmin/Export-RmsTPD.md b/docset/winserver2016-ps/adrmsadmin/Export-RmsTPD.md index bfceaafd7f..b4b9850798 100644 --- a/docset/winserver2016-ps/adrmsadmin/Export-RmsTPD.md +++ b/docset/winserver2016-ps/adrmsadmin/Export-RmsTPD.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/export-rmstpd?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/export-rmstpd?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-RmsTPD --- diff --git a/docset/winserver2016-ps/adrmsadmin/Export-RmsTUD.md b/docset/winserver2016-ps/adrmsadmin/Export-RmsTUD.md index ceea86ef7a..a2aaf99a1c 100644 --- a/docset/winserver2016-ps/adrmsadmin/Export-RmsTUD.md +++ b/docset/winserver2016-ps/adrmsadmin/Export-RmsTUD.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/export-rmstud?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/export-rmstud?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-RmsTUD --- diff --git a/docset/winserver2016-ps/adrmsadmin/Get-RmsCertChain.md b/docset/winserver2016-ps/adrmsadmin/Get-RmsCertChain.md index 81e90a29d1..108a9a4d7b 100644 --- a/docset/winserver2016-ps/adrmsadmin/Get-RmsCertChain.md +++ b/docset/winserver2016-ps/adrmsadmin/Get-RmsCertChain.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/get-rmscertchain?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/get-rmscertchain?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RmsCertChain --- diff --git a/docset/winserver2016-ps/adrmsadmin/Get-RmsCertInfo.md b/docset/winserver2016-ps/adrmsadmin/Get-RmsCertInfo.md index 060683d272..81161f5b1d 100644 --- a/docset/winserver2016-ps/adrmsadmin/Get-RmsCertInfo.md +++ b/docset/winserver2016-ps/adrmsadmin/Get-RmsCertInfo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/get-rmscertinfo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/get-rmscertinfo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RmsCertInfo --- diff --git a/docset/winserver2016-ps/adrmsadmin/Get-RmsChildCert.md b/docset/winserver2016-ps/adrmsadmin/Get-RmsChildCert.md index b9e63b9b0b..d4c1975748 100644 --- a/docset/winserver2016-ps/adrmsadmin/Get-RmsChildCert.md +++ b/docset/winserver2016-ps/adrmsadmin/Get-RmsChildCert.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/get-rmschildcert?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/get-rmschildcert?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RmsChildCert --- diff --git a/docset/winserver2016-ps/adrmsadmin/Get-RmsEncryptedIL.md b/docset/winserver2016-ps/adrmsadmin/Get-RmsEncryptedIL.md index a34ae7241a..8323106f1f 100644 --- a/docset/winserver2016-ps/adrmsadmin/Get-RmsEncryptedIL.md +++ b/docset/winserver2016-ps/adrmsadmin/Get-RmsEncryptedIL.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/get-rmsencryptedil?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/get-rmsencryptedil?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RmsEncryptedIL --- diff --git a/docset/winserver2016-ps/adrmsadmin/Get-RmsRequestInfo.md b/docset/winserver2016-ps/adrmsadmin/Get-RmsRequestInfo.md index 2d95eb027e..9ed0136c6e 100644 --- a/docset/winserver2016-ps/adrmsadmin/Get-RmsRequestInfo.md +++ b/docset/winserver2016-ps/adrmsadmin/Get-RmsRequestInfo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/get-rmsrequestinfo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/get-rmsrequestinfo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RmsRequestInfo --- diff --git a/docset/winserver2016-ps/adrmsadmin/Get-RmsSvcAccount.md b/docset/winserver2016-ps/adrmsadmin/Get-RmsSvcAccount.md index 9aaf89d53f..c39202b1aa 100644 --- a/docset/winserver2016-ps/adrmsadmin/Get-RmsSvcAccount.md +++ b/docset/winserver2016-ps/adrmsadmin/Get-RmsSvcAccount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/get-rmssvcaccount?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/get-rmssvcaccount?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RmsSvcAccount --- diff --git a/docset/winserver2016-ps/adrmsadmin/Get-RmsSystemHealthReport.md b/docset/winserver2016-ps/adrmsadmin/Get-RmsSystemHealthReport.md index 005ebbff33..e592ab0650 100644 --- a/docset/winserver2016-ps/adrmsadmin/Get-RmsSystemHealthReport.md +++ b/docset/winserver2016-ps/adrmsadmin/Get-RmsSystemHealthReport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/get-rmssystemhealthreport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/get-rmssystemhealthreport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RmsSystemHealthReport --- diff --git a/docset/winserver2016-ps/adrmsadmin/Get-RmsUserRequestReport.md b/docset/winserver2016-ps/adrmsadmin/Get-RmsUserRequestReport.md index 929b0e2092..3b91f7c92a 100644 --- a/docset/winserver2016-ps/adrmsadmin/Get-RmsUserRequestReport.md +++ b/docset/winserver2016-ps/adrmsadmin/Get-RmsUserRequestReport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/get-rmsuserrequestreport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/get-rmsuserrequestreport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RmsUserRequestReport --- diff --git a/docset/winserver2016-ps/adrmsadmin/Import-RmsTPD.md b/docset/winserver2016-ps/adrmsadmin/Import-RmsTPD.md index ec632a9dc6..2e85c50506 100644 --- a/docset/winserver2016-ps/adrmsadmin/Import-RmsTPD.md +++ b/docset/winserver2016-ps/adrmsadmin/Import-RmsTPD.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/import-rmstpd?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/import-rmstpd?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-RmsTPD --- diff --git a/docset/winserver2016-ps/adrmsadmin/Import-RmsTUD.md b/docset/winserver2016-ps/adrmsadmin/Import-RmsTUD.md index 1736ed31f6..b88c8f9399 100644 --- a/docset/winserver2016-ps/adrmsadmin/Import-RmsTUD.md +++ b/docset/winserver2016-ps/adrmsadmin/Import-RmsTUD.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/import-rmstud?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/import-rmstud?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-RmsTUD --- diff --git a/docset/winserver2016-ps/adrmsadmin/Initialize-RmsCryptoMode2.md b/docset/winserver2016-ps/adrmsadmin/Initialize-RmsCryptoMode2.md index 5ad5c78df6..d1108abea6 100644 --- a/docset/winserver2016-ps/adrmsadmin/Initialize-RmsCryptoMode2.md +++ b/docset/winserver2016-ps/adrmsadmin/Initialize-RmsCryptoMode2.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/initialize-rmscryptomode2?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/initialize-rmscryptomode2?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Initialize-RmsCryptoMode2 --- diff --git a/docset/winserver2016-ps/adrmsadmin/Install-RmsMfgEnrollment.md b/docset/winserver2016-ps/adrmsadmin/Install-RmsMfgEnrollment.md index b7c6947c0d..35405920e0 100644 --- a/docset/winserver2016-ps/adrmsadmin/Install-RmsMfgEnrollment.md +++ b/docset/winserver2016-ps/adrmsadmin/Install-RmsMfgEnrollment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/install-rmsmfgenrollment?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/install-rmsmfgenrollment?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-RmsMfgEnrollment --- diff --git a/docset/winserver2016-ps/adrmsadmin/Install-RmsMfgSupport.md b/docset/winserver2016-ps/adrmsadmin/Install-RmsMfgSupport.md index d3a290d746..faa24c9e15 100644 --- a/docset/winserver2016-ps/adrmsadmin/Install-RmsMfgSupport.md +++ b/docset/winserver2016-ps/adrmsadmin/Install-RmsMfgSupport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/install-rmsmfgsupport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/install-rmsmfgsupport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-RmsMfgSupport --- diff --git a/docset/winserver2016-ps/adrmsadmin/Set-RmsSvcAccount.md b/docset/winserver2016-ps/adrmsadmin/Set-RmsSvcAccount.md index d4c01f2e8e..725796e588 100644 --- a/docset/winserver2016-ps/adrmsadmin/Set-RmsSvcAccount.md +++ b/docset/winserver2016-ps/adrmsadmin/Set-RmsSvcAccount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/set-rmssvcaccount?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/set-rmssvcaccount?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RmsSvcAccount --- diff --git a/docset/winserver2016-ps/adrmsadmin/Uninstall-RmsMfgEnrollment.md b/docset/winserver2016-ps/adrmsadmin/Uninstall-RmsMfgEnrollment.md index 7ef92a6bfd..30405150e8 100644 --- a/docset/winserver2016-ps/adrmsadmin/Uninstall-RmsMfgEnrollment.md +++ b/docset/winserver2016-ps/adrmsadmin/Uninstall-RmsMfgEnrollment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/uninstall-rmsmfgenrollment?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/uninstall-rmsmfgenrollment?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-RmsMfgEnrollment --- diff --git a/docset/winserver2016-ps/adrmsadmin/Uninstall-RmsMfgSupport.md b/docset/winserver2016-ps/adrmsadmin/Uninstall-RmsMfgSupport.md index 7877302196..0496163aeb 100644 --- a/docset/winserver2016-ps/adrmsadmin/Uninstall-RmsMfgSupport.md +++ b/docset/winserver2016-ps/adrmsadmin/Uninstall-RmsMfgSupport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/uninstall-rmsmfgsupport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/uninstall-rmsmfgsupport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-RmsMfgSupport --- diff --git a/docset/winserver2016-ps/adrmsadmin/Update-RmsCluster.md b/docset/winserver2016-ps/adrmsadmin/Update-RmsCluster.md index ad046df2ae..0c17492807 100644 --- a/docset/winserver2016-ps/adrmsadmin/Update-RmsCluster.md +++ b/docset/winserver2016-ps/adrmsadmin/Update-RmsCluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/update-rmscluster?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/update-rmscluster?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-RmsCluster --- diff --git a/docset/winserver2016-ps/adrmsadmin/Update-RmsMfgEnrollment.md b/docset/winserver2016-ps/adrmsadmin/Update-RmsMfgEnrollment.md index 4851850f96..f12097b7cb 100644 --- a/docset/winserver2016-ps/adrmsadmin/Update-RmsMfgEnrollment.md +++ b/docset/winserver2016-ps/adrmsadmin/Update-RmsMfgEnrollment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/update-rmsmfgenrollment?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/update-rmsmfgenrollment?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-RmsMfgEnrollment --- diff --git a/docset/winserver2016-ps/appbackgroundtask/Disable-AppBackgroundTaskDiagnosticLog.md b/docset/winserver2016-ps/appbackgroundtask/Disable-AppBackgroundTaskDiagnosticLog.md index 87b93d3d50..b71b7b2166 100644 --- a/docset/winserver2016-ps/appbackgroundtask/Disable-AppBackgroundTaskDiagnosticLog.md +++ b/docset/winserver2016-ps/appbackgroundtask/Disable-AppBackgroundTaskDiagnosticLog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: microsoft.windows.appbackgroundtask.commands.dll-Help.xml Module Name: AppBackgroundTask ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appbackgroundtask/disable-appbackgroundtaskdiagnosticlog?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appbackgroundtask/disable-appbackgroundtaskdiagnosticlog?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-AppBackgroundTaskDiagnosticLog --- diff --git a/docset/winserver2016-ps/appbackgroundtask/Enable-AppBackgroundTaskDiagnosticLog.md b/docset/winserver2016-ps/appbackgroundtask/Enable-AppBackgroundTaskDiagnosticLog.md index f914f7c6ec..6cfe142312 100644 --- a/docset/winserver2016-ps/appbackgroundtask/Enable-AppBackgroundTaskDiagnosticLog.md +++ b/docset/winserver2016-ps/appbackgroundtask/Enable-AppBackgroundTaskDiagnosticLog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: microsoft.windows.appbackgroundtask.commands.dll-Help.xml Module Name: AppBackgroundTask ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appbackgroundtask/enable-appbackgroundtaskdiagnosticlog?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appbackgroundtask/enable-appbackgroundtaskdiagnosticlog?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-AppBackgroundTaskDiagnosticLog --- diff --git a/docset/winserver2016-ps/appbackgroundtask/Get-AppBackgroundTask.md b/docset/winserver2016-ps/appbackgroundtask/Get-AppBackgroundTask.md index 597ed1458b..0fbba317c3 100644 --- a/docset/winserver2016-ps/appbackgroundtask/Get-AppBackgroundTask.md +++ b/docset/winserver2016-ps/appbackgroundtask/Get-AppBackgroundTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BackgroundTask.cdxml-help.xml Module Name: AppBackgroundTask ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appbackgroundtask/get-appbackgroundtask?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appbackgroundtask/get-appbackgroundtask?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppBackgroundTask --- diff --git a/docset/winserver2016-ps/appbackgroundtask/Set-AppBackgroundTaskResourcePolicy.md b/docset/winserver2016-ps/appbackgroundtask/Set-AppBackgroundTaskResourcePolicy.md index 93d8748ca5..a097295468 100644 --- a/docset/winserver2016-ps/appbackgroundtask/Set-AppBackgroundTaskResourcePolicy.md +++ b/docset/winserver2016-ps/appbackgroundtask/Set-AppBackgroundTaskResourcePolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: microsoft.windows.appbackgroundtask.commands.dll-Help.xml Module Name: AppBackgroundTask ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appbackgroundtask/set-appbackgroundtaskresourcepolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appbackgroundtask/set-appbackgroundtaskresourcepolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AppBackgroundTaskResourcePolicy --- diff --git a/docset/winserver2016-ps/appbackgroundtask/Start-AppBackgroundTask.md b/docset/winserver2016-ps/appbackgroundtask/Start-AppBackgroundTask.md index ff85f96a22..f0b07eaa4e 100644 --- a/docset/winserver2016-ps/appbackgroundtask/Start-AppBackgroundTask.md +++ b/docset/winserver2016-ps/appbackgroundtask/Start-AppBackgroundTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BackgroundTask.cdxml-help.xml Module Name: AppBackgroundTask ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appbackgroundtask/start-appbackgroundtask?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appbackgroundtask/start-appbackgroundtask?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-AppBackgroundTask --- diff --git a/docset/winserver2016-ps/appbackgroundtask/Unregister-AppBackgroundTask.md b/docset/winserver2016-ps/appbackgroundtask/Unregister-AppBackgroundTask.md index 78e8bbb167..e65472895e 100644 --- a/docset/winserver2016-ps/appbackgroundtask/Unregister-AppBackgroundTask.md +++ b/docset/winserver2016-ps/appbackgroundtask/Unregister-AppBackgroundTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BackgroundTask.cdxml-help.xml Module Name: AppBackgroundTask ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appbackgroundtask/unregister-appbackgroundtask?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appbackgroundtask/unregister-appbackgroundtask?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unregister-AppBackgroundTask --- diff --git a/docset/winserver2016-ps/applocker/Get-AppLockerFileInformation.md b/docset/winserver2016-ps/applocker/Get-AppLockerFileInformation.md index a11dbb75eb..d91467ed15 100644 --- a/docset/winserver2016-ps/applocker/Get-AppLockerFileInformation.md +++ b/docset/winserver2016-ps/applocker/Get-AppLockerFileInformation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Security.ApplicationId.PolicyManagement.Cmdlets.dll-Help.xml Module Name: AppLocker ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/applocker/get-applockerfileinformation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/applocker/get-applockerfileinformation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppLockerFileInformation --- diff --git a/docset/winserver2016-ps/applocker/Get-AppLockerPolicy.md b/docset/winserver2016-ps/applocker/Get-AppLockerPolicy.md index 561b99eb03..92b552173e 100644 --- a/docset/winserver2016-ps/applocker/Get-AppLockerPolicy.md +++ b/docset/winserver2016-ps/applocker/Get-AppLockerPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Security.ApplicationId.PolicyManagement.Cmdlets.dll-Help.xml Module Name: AppLocker ms.date: 09/28/2020 -online version: https://docs.microsoft.com/powershell/module/applocker/get-applockerpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/applocker/get-applockerpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppLockerPolicy --- diff --git a/docset/winserver2016-ps/applocker/New-AppLockerPolicy.md b/docset/winserver2016-ps/applocker/New-AppLockerPolicy.md index 8b55d1aada..807ddc1332 100644 --- a/docset/winserver2016-ps/applocker/New-AppLockerPolicy.md +++ b/docset/winserver2016-ps/applocker/New-AppLockerPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Security.ApplicationId.PolicyManagement.Cmdlets.dll-Help.xml Module Name: AppLocker ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/applocker/new-applockerpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/applocker/new-applockerpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-AppLockerPolicy --- diff --git a/docset/winserver2016-ps/applocker/Set-AppLockerPolicy.md b/docset/winserver2016-ps/applocker/Set-AppLockerPolicy.md index 3f5dca82c7..d3ae0fb8e1 100644 --- a/docset/winserver2016-ps/applocker/Set-AppLockerPolicy.md +++ b/docset/winserver2016-ps/applocker/Set-AppLockerPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Security.ApplicationId.PolicyManagement.Cmdlets.dll-Help.xml Module Name: AppLocker ms.date: 09/28/2020 -online version: https://docs.microsoft.com/powershell/module/applocker/set-applockerpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/applocker/set-applockerpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AppLockerPolicy --- diff --git a/docset/winserver2016-ps/applocker/Test-AppLockerPolicy.md b/docset/winserver2016-ps/applocker/Test-AppLockerPolicy.md index d918e68de9..b9415b2d07 100644 --- a/docset/winserver2016-ps/applocker/Test-AppLockerPolicy.md +++ b/docset/winserver2016-ps/applocker/Test-AppLockerPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Security.ApplicationId.PolicyManagement.Cmdlets.dll-Help.xml Module Name: AppLocker ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/applocker/test-applockerpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/applocker/test-applockerpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-AppLockerPolicy --- diff --git a/docset/winserver2016-ps/appvclient/Add-AppvClientConnectionGroup.md b/docset/winserver2016-ps/appvclient/Add-AppvClientConnectionGroup.md index be6d2ceec9..4653a75d53 100644 --- a/docset/winserver2016-ps/appvclient/Add-AppvClientConnectionGroup.md +++ b/docset/winserver2016-ps/appvclient/Add-AppvClientConnectionGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/add-appvclientconnectiongroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/add-appvclientconnectiongroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AppvClientConnectionGroup --- diff --git a/docset/winserver2016-ps/appvclient/Add-AppvClientPackage.md b/docset/winserver2016-ps/appvclient/Add-AppvClientPackage.md index 261c4535b0..ae7608cc01 100644 --- a/docset/winserver2016-ps/appvclient/Add-AppvClientPackage.md +++ b/docset/winserver2016-ps/appvclient/Add-AppvClientPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/add-appvclientpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/add-appvclientpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AppvClientPackage --- diff --git a/docset/winserver2016-ps/appvclient/Add-AppvPublishingServer.md b/docset/winserver2016-ps/appvclient/Add-AppvPublishingServer.md index 125f630ff7..975f638ca4 100644 --- a/docset/winserver2016-ps/appvclient/Add-AppvPublishingServer.md +++ b/docset/winserver2016-ps/appvclient/Add-AppvPublishingServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/add-appvpublishingserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/add-appvpublishingserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AppvPublishingServer --- diff --git a/docset/winserver2016-ps/appvclient/Disable-Appv.md b/docset/winserver2016-ps/appvclient/Disable-Appv.md index 062eaf240e..65d45a42c3 100644 --- a/docset/winserver2016-ps/appvclient/Disable-Appv.md +++ b/docset/winserver2016-ps/appvclient/Disable-Appv.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/disable-appv?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/disable-appv?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-Appv --- diff --git a/docset/winserver2016-ps/appvclient/Disable-AppvClientConnectionGroup.md b/docset/winserver2016-ps/appvclient/Disable-AppvClientConnectionGroup.md index ca5811332b..ef552b0523 100644 --- a/docset/winserver2016-ps/appvclient/Disable-AppvClientConnectionGroup.md +++ b/docset/winserver2016-ps/appvclient/Disable-AppvClientConnectionGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/disable-appvclientconnectiongroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/disable-appvclientconnectiongroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-AppvClientConnectionGroup --- diff --git a/docset/winserver2016-ps/appvclient/Enable-Appv.md b/docset/winserver2016-ps/appvclient/Enable-Appv.md index 871a8306d3..c1e9ade76c 100644 --- a/docset/winserver2016-ps/appvclient/Enable-Appv.md +++ b/docset/winserver2016-ps/appvclient/Enable-Appv.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/enable-appv?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/enable-appv?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-Appv --- diff --git a/docset/winserver2016-ps/appvclient/Enable-AppvClientConnectionGroup.md b/docset/winserver2016-ps/appvclient/Enable-AppvClientConnectionGroup.md index cab3da9309..f250e0ecc9 100644 --- a/docset/winserver2016-ps/appvclient/Enable-AppvClientConnectionGroup.md +++ b/docset/winserver2016-ps/appvclient/Enable-AppvClientConnectionGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/enable-appvclientconnectiongroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/enable-appvclientconnectiongroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-AppvClientConnectionGroup --- diff --git a/docset/winserver2016-ps/appvclient/Get-AppvClientApplication.md b/docset/winserver2016-ps/appvclient/Get-AppvClientApplication.md index bb9aa66d4c..c43215ef09 100644 --- a/docset/winserver2016-ps/appvclient/Get-AppvClientApplication.md +++ b/docset/winserver2016-ps/appvclient/Get-AppvClientApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/get-appvclientapplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/get-appvclientapplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppvClientApplication --- diff --git a/docset/winserver2016-ps/appvclient/Get-AppvClientConfiguration.md b/docset/winserver2016-ps/appvclient/Get-AppvClientConfiguration.md index 4702d5dead..754fa72c4a 100644 --- a/docset/winserver2016-ps/appvclient/Get-AppvClientConfiguration.md +++ b/docset/winserver2016-ps/appvclient/Get-AppvClientConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/get-appvclientconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/get-appvclientconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppvClientConfiguration --- diff --git a/docset/winserver2016-ps/appvclient/Get-AppvClientConnectionGroup.md b/docset/winserver2016-ps/appvclient/Get-AppvClientConnectionGroup.md index cb14b562d8..b208bfe82b 100644 --- a/docset/winserver2016-ps/appvclient/Get-AppvClientConnectionGroup.md +++ b/docset/winserver2016-ps/appvclient/Get-AppvClientConnectionGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/get-appvclientconnectiongroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/get-appvclientconnectiongroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppvClientConnectionGroup --- diff --git a/docset/winserver2016-ps/appvclient/Get-AppvClientMode.md b/docset/winserver2016-ps/appvclient/Get-AppvClientMode.md index 72f1406862..6f887b5176 100644 --- a/docset/winserver2016-ps/appvclient/Get-AppvClientMode.md +++ b/docset/winserver2016-ps/appvclient/Get-AppvClientMode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/get-appvclientmode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/get-appvclientmode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppvClientMode --- diff --git a/docset/winserver2016-ps/appvclient/Get-AppvClientPackage.md b/docset/winserver2016-ps/appvclient/Get-AppvClientPackage.md index c8bc2d85cd..c3b5803332 100644 --- a/docset/winserver2016-ps/appvclient/Get-AppvClientPackage.md +++ b/docset/winserver2016-ps/appvclient/Get-AppvClientPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/get-appvclientpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/get-appvclientpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppvClientPackage --- diff --git a/docset/winserver2016-ps/appvclient/Get-AppvPublishingServer.md b/docset/winserver2016-ps/appvclient/Get-AppvPublishingServer.md index 4db6442935..b4ec42481f 100644 --- a/docset/winserver2016-ps/appvclient/Get-AppvPublishingServer.md +++ b/docset/winserver2016-ps/appvclient/Get-AppvPublishingServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/get-appvpublishingserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/get-appvpublishingserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppvPublishingServer --- diff --git a/docset/winserver2016-ps/appvclient/Get-AppvStatus.md b/docset/winserver2016-ps/appvclient/Get-AppvStatus.md index d1680be746..23606fb7e8 100644 --- a/docset/winserver2016-ps/appvclient/Get-AppvStatus.md +++ b/docset/winserver2016-ps/appvclient/Get-AppvStatus.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/get-appvstatus?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/get-appvstatus?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppvStatus --- diff --git a/docset/winserver2016-ps/appvclient/Get-AppvVirtualProcess.md b/docset/winserver2016-ps/appvclient/Get-AppvVirtualProcess.md index 6db3147185..a6f8eff2dc 100644 --- a/docset/winserver2016-ps/appvclient/Get-AppvVirtualProcess.md +++ b/docset/winserver2016-ps/appvclient/Get-AppvVirtualProcess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: AppVClientCmdlets-help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/get-appvvirtualprocess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/get-appvvirtualprocess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppvVirtualProcess --- diff --git a/docset/winserver2016-ps/appvclient/Mount-AppvClientConnectionGroup.md b/docset/winserver2016-ps/appvclient/Mount-AppvClientConnectionGroup.md index 3585f19cdd..3cde485a03 100644 --- a/docset/winserver2016-ps/appvclient/Mount-AppvClientConnectionGroup.md +++ b/docset/winserver2016-ps/appvclient/Mount-AppvClientConnectionGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/mount-appvclientconnectiongroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/mount-appvclientconnectiongroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Mount-AppvClientConnectionGroup --- diff --git a/docset/winserver2016-ps/appvclient/Mount-AppvClientPackage.md b/docset/winserver2016-ps/appvclient/Mount-AppvClientPackage.md index 174780ee45..7c7d4eff10 100644 --- a/docset/winserver2016-ps/appvclient/Mount-AppvClientPackage.md +++ b/docset/winserver2016-ps/appvclient/Mount-AppvClientPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/mount-appvclientpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/mount-appvclientpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Mount-AppvClientPackage --- diff --git a/docset/winserver2016-ps/appvclient/Publish-AppvClientPackage.md b/docset/winserver2016-ps/appvclient/Publish-AppvClientPackage.md index 5c5b14d33c..74e29fa2bd 100644 --- a/docset/winserver2016-ps/appvclient/Publish-AppvClientPackage.md +++ b/docset/winserver2016-ps/appvclient/Publish-AppvClientPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/publish-appvclientpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/publish-appvclientpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Publish-AppvClientPackage --- diff --git a/docset/winserver2016-ps/appvclient/Remove-AppvClientConnectionGroup.md b/docset/winserver2016-ps/appvclient/Remove-AppvClientConnectionGroup.md index c95f73d1ad..c265fbf768 100644 --- a/docset/winserver2016-ps/appvclient/Remove-AppvClientConnectionGroup.md +++ b/docset/winserver2016-ps/appvclient/Remove-AppvClientConnectionGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/remove-appvclientconnectiongroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/remove-appvclientconnectiongroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AppvClientConnectionGroup --- diff --git a/docset/winserver2016-ps/appvclient/Remove-AppvClientPackage.md b/docset/winserver2016-ps/appvclient/Remove-AppvClientPackage.md index 9958575a92..0cde9404aa 100644 --- a/docset/winserver2016-ps/appvclient/Remove-AppvClientPackage.md +++ b/docset/winserver2016-ps/appvclient/Remove-AppvClientPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/remove-appvclientpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/remove-appvclientpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AppvClientPackage --- diff --git a/docset/winserver2016-ps/appvclient/Remove-AppvPublishingServer.md b/docset/winserver2016-ps/appvclient/Remove-AppvPublishingServer.md index c76fe9de17..669830cb0e 100644 --- a/docset/winserver2016-ps/appvclient/Remove-AppvPublishingServer.md +++ b/docset/winserver2016-ps/appvclient/Remove-AppvPublishingServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/remove-appvpublishingserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/remove-appvpublishingserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AppvPublishingServer --- diff --git a/docset/winserver2016-ps/appvclient/Repair-AppvClientConnectionGroup.md b/docset/winserver2016-ps/appvclient/Repair-AppvClientConnectionGroup.md index a77e24f4dc..a9f75a43f3 100644 --- a/docset/winserver2016-ps/appvclient/Repair-AppvClientConnectionGroup.md +++ b/docset/winserver2016-ps/appvclient/Repair-AppvClientConnectionGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/repair-appvclientconnectiongroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/repair-appvclientconnectiongroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Repair-AppvClientConnectionGroup --- diff --git a/docset/winserver2016-ps/appvclient/Repair-AppvClientPackage.md b/docset/winserver2016-ps/appvclient/Repair-AppvClientPackage.md index 37e5698fee..9ab43dacf8 100644 --- a/docset/winserver2016-ps/appvclient/Repair-AppvClientPackage.md +++ b/docset/winserver2016-ps/appvclient/Repair-AppvClientPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/repair-appvclientpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/repair-appvclientpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Repair-AppvClientPackage --- diff --git a/docset/winserver2016-ps/appvclient/Send-AppvClientReport.md b/docset/winserver2016-ps/appvclient/Send-AppvClientReport.md index bd3295b329..59413de27d 100644 --- a/docset/winserver2016-ps/appvclient/Send-AppvClientReport.md +++ b/docset/winserver2016-ps/appvclient/Send-AppvClientReport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/send-appvclientreport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/send-appvclientreport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Send-AppvClientReport --- diff --git a/docset/winserver2016-ps/appvclient/Set-AppvClientConfiguration.md b/docset/winserver2016-ps/appvclient/Set-AppvClientConfiguration.md index ed209d0d2c..e9e2eadcef 100644 --- a/docset/winserver2016-ps/appvclient/Set-AppvClientConfiguration.md +++ b/docset/winserver2016-ps/appvclient/Set-AppvClientConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/set-appvclientconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/set-appvclientconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AppvClientConfiguration --- diff --git a/docset/winserver2016-ps/appvclient/Set-AppvClientMode.md b/docset/winserver2016-ps/appvclient/Set-AppvClientMode.md index 95fabc1507..b0c3856919 100644 --- a/docset/winserver2016-ps/appvclient/Set-AppvClientMode.md +++ b/docset/winserver2016-ps/appvclient/Set-AppvClientMode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/set-appvclientmode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/set-appvclientmode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AppvClientMode --- diff --git a/docset/winserver2016-ps/appvclient/Set-AppvClientPackage.md b/docset/winserver2016-ps/appvclient/Set-AppvClientPackage.md index f35c54828e..a3cae40d6a 100644 --- a/docset/winserver2016-ps/appvclient/Set-AppvClientPackage.md +++ b/docset/winserver2016-ps/appvclient/Set-AppvClientPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/set-appvclientpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/set-appvclientpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AppvClientPackage --- diff --git a/docset/winserver2016-ps/appvclient/Set-AppvPublishingServer.md b/docset/winserver2016-ps/appvclient/Set-AppvPublishingServer.md index c9e98e5334..2e06ee4fab 100644 --- a/docset/winserver2016-ps/appvclient/Set-AppvPublishingServer.md +++ b/docset/winserver2016-ps/appvclient/Set-AppvPublishingServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/set-appvpublishingserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/set-appvpublishingserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AppvPublishingServer --- diff --git a/docset/winserver2016-ps/appvclient/Start-AppvVirtualProcess.md b/docset/winserver2016-ps/appvclient/Start-AppvVirtualProcess.md index 431ecd7386..5b43ffaff4 100644 --- a/docset/winserver2016-ps/appvclient/Start-AppvVirtualProcess.md +++ b/docset/winserver2016-ps/appvclient/Start-AppvVirtualProcess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: AppVClientCmdlets-help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/start-appvvirtualprocess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/start-appvvirtualprocess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-AppvVirtualProcess --- diff --git a/docset/winserver2016-ps/appvclient/Stop-AppvClientConnectionGroup.md b/docset/winserver2016-ps/appvclient/Stop-AppvClientConnectionGroup.md index 7ae83a026f..f53e15bc9f 100644 --- a/docset/winserver2016-ps/appvclient/Stop-AppvClientConnectionGroup.md +++ b/docset/winserver2016-ps/appvclient/Stop-AppvClientConnectionGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/stop-appvclientconnectiongroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/stop-appvclientconnectiongroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-AppvClientConnectionGroup --- diff --git a/docset/winserver2016-ps/appvclient/Stop-AppvClientPackage.md b/docset/winserver2016-ps/appvclient/Stop-AppvClientPackage.md index 5162cf80b7..7f8d6ad6dd 100644 --- a/docset/winserver2016-ps/appvclient/Stop-AppvClientPackage.md +++ b/docset/winserver2016-ps/appvclient/Stop-AppvClientPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/stop-appvclientpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/stop-appvclientpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-AppvClientPackage --- diff --git a/docset/winserver2016-ps/appvclient/Sync-AppvPublishingServer.md b/docset/winserver2016-ps/appvclient/Sync-AppvPublishingServer.md index b07ecc1aab..64de28bd07 100644 --- a/docset/winserver2016-ps/appvclient/Sync-AppvPublishingServer.md +++ b/docset/winserver2016-ps/appvclient/Sync-AppvPublishingServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/sync-appvpublishingserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/sync-appvpublishingserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Sync-AppvPublishingServer --- diff --git a/docset/winserver2016-ps/appvclient/Unpublish-AppvClientPackage.md b/docset/winserver2016-ps/appvclient/Unpublish-AppvClientPackage.md index f893b1b88a..48758be9de 100644 --- a/docset/winserver2016-ps/appvclient/Unpublish-AppvClientPackage.md +++ b/docset/winserver2016-ps/appvclient/Unpublish-AppvClientPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/unpublish-appvclientpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/unpublish-appvclientpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unpublish-AppvClientPackage --- diff --git a/docset/winserver2016-ps/appvsequencer/Expand-AppvSequencerPackage.md b/docset/winserver2016-ps/appvsequencer/Expand-AppvSequencerPackage.md index fa74dd703a..f2ca102992 100644 --- a/docset/winserver2016-ps/appvsequencer/Expand-AppvSequencerPackage.md +++ b/docset/winserver2016-ps/appvsequencer/Expand-AppvSequencerPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.Modernizer.Cmdlets.dll-Help.xml Module Name: AppvSequencer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvsequencer/expand-appvsequencerpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvsequencer/expand-appvsequencerpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Expand-AppvSequencerPackage --- diff --git a/docset/winserver2016-ps/appvsequencer/New-AppvPackageAccelerator.md b/docset/winserver2016-ps/appvsequencer/New-AppvPackageAccelerator.md index 5258879ffb..355b394705 100644 --- a/docset/winserver2016-ps/appvsequencer/New-AppvPackageAccelerator.md +++ b/docset/winserver2016-ps/appvsequencer/New-AppvPackageAccelerator.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.Modernizer.Cmdlets.dll-Help.xml Module Name: AppvSequencer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvsequencer/new-appvpackageaccelerator?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvsequencer/new-appvpackageaccelerator?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-AppvPackageAccelerator --- diff --git a/docset/winserver2016-ps/appvsequencer/New-AppvSequencerPackage.md b/docset/winserver2016-ps/appvsequencer/New-AppvSequencerPackage.md index d04c3abc00..98474d5f69 100644 --- a/docset/winserver2016-ps/appvsequencer/New-AppvSequencerPackage.md +++ b/docset/winserver2016-ps/appvsequencer/New-AppvSequencerPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.Modernizer.Cmdlets.dll-Help.xml Module Name: AppvSequencer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvsequencer/new-appvsequencerpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvsequencer/new-appvsequencerpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-AppvSequencerPackage --- diff --git a/docset/winserver2016-ps/appvsequencer/Update-AppvSequencerPackage.md b/docset/winserver2016-ps/appvsequencer/Update-AppvSequencerPackage.md index 4427094bb5..770bfe5aa0 100644 --- a/docset/winserver2016-ps/appvsequencer/Update-AppvSequencerPackage.md +++ b/docset/winserver2016-ps/appvsequencer/Update-AppvSequencerPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.Modernizer.Cmdlets.dll-Help.xml Module Name: AppvSequencer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvsequencer/update-appvsequencerpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvsequencer/update-appvsequencerpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-AppvSequencerPackage --- diff --git a/docset/winserver2016-ps/appx/Add-AppxPackage.md b/docset/winserver2016-ps/appx/Add-AppxPackage.md index ae2dd64e79..95ca46d0b3 100644 --- a/docset/winserver2016-ps/appx/Add-AppxPackage.md +++ b/docset/winserver2016-ps/appx/Add-AppxPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-help.xml Module Name: Appx ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appx/add-appxpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/add-appxpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AppxPackage --- diff --git a/docset/winserver2016-ps/appx/Add-AppxVolume.md b/docset/winserver2016-ps/appx/Add-AppxVolume.md index c68b3ce739..63b14f6ca2 100644 --- a/docset/winserver2016-ps/appx/Add-AppxVolume.md +++ b/docset/winserver2016-ps/appx/Add-AppxVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: Appx ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appx/add-appxvolume?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/add-appxvolume?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AppxVolume --- diff --git a/docset/winserver2016-ps/appx/Dismount-AppxVolume.md b/docset/winserver2016-ps/appx/Dismount-AppxVolume.md index 4d4a352ff6..fa73dc7a8f 100644 --- a/docset/winserver2016-ps/appx/Dismount-AppxVolume.md +++ b/docset/winserver2016-ps/appx/Dismount-AppxVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: Appx ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appx/dismount-appxvolume?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/dismount-appxvolume?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Dismount-AppxVolume --- diff --git a/docset/winserver2016-ps/appx/Get-AppxDefaultVolume.md b/docset/winserver2016-ps/appx/Get-AppxDefaultVolume.md index 4975afe324..7a9eefd0db 100644 --- a/docset/winserver2016-ps/appx/Get-AppxDefaultVolume.md +++ b/docset/winserver2016-ps/appx/Get-AppxDefaultVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: Appx ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appx/get-appxdefaultvolume?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/get-appxdefaultvolume?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppxDefaultVolume --- diff --git a/docset/winserver2016-ps/appx/Get-AppxLastError.md b/docset/winserver2016-ps/appx/Get-AppxLastError.md index b862584636..b0e69067ac 100644 --- a/docset/winserver2016-ps/appx/Get-AppxLastError.md +++ b/docset/winserver2016-ps/appx/Get-AppxLastError.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-help.xml Module Name: Appx ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appx/get-appxlasterror?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/get-appxlasterror?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppxLastError --- diff --git a/docset/winserver2016-ps/appx/Get-AppxLog.md b/docset/winserver2016-ps/appx/Get-AppxLog.md index c16af3e11f..2f8057f3b8 100644 --- a/docset/winserver2016-ps/appx/Get-AppxLog.md +++ b/docset/winserver2016-ps/appx/Get-AppxLog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-help.xml Module Name: Appx ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appx/get-appxlog?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/get-appxlog?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppxLog --- diff --git a/docset/winserver2016-ps/appx/Get-AppxPackage.md b/docset/winserver2016-ps/appx/Get-AppxPackage.md index de28ff6338..8fc36b19e3 100644 --- a/docset/winserver2016-ps/appx/Get-AppxPackage.md +++ b/docset/winserver2016-ps/appx/Get-AppxPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: Appx ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appx/get-appxpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/get-appxpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppxPackage --- diff --git a/docset/winserver2016-ps/appx/Get-AppxPackageManifest.md b/docset/winserver2016-ps/appx/Get-AppxPackageManifest.md index 9b884d6855..eb22678b75 100644 --- a/docset/winserver2016-ps/appx/Get-AppxPackageManifest.md +++ b/docset/winserver2016-ps/appx/Get-AppxPackageManifest.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: Appx ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appx/get-appxpackagemanifest?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/get-appxpackagemanifest?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppxPackageManifest --- diff --git a/docset/winserver2016-ps/appx/Get-AppxVolume.md b/docset/winserver2016-ps/appx/Get-AppxVolume.md index bb61332e2b..0f2849bd2f 100644 --- a/docset/winserver2016-ps/appx/Get-AppxVolume.md +++ b/docset/winserver2016-ps/appx/Get-AppxVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: Appx ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appx/get-appxvolume?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/get-appxvolume?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppxVolume --- diff --git a/docset/winserver2016-ps/appx/Get-NonRemovableAppsPolicy.md b/docset/winserver2016-ps/appx/Get-NonRemovableAppsPolicy.md index 78bf7d31cd..c485ad124b 100644 --- a/docset/winserver2016-ps/appx/Get-NonRemovableAppsPolicy.md +++ b/docset/winserver2016-ps/appx/Get-NonRemovableAppsPolicy.md @@ -4,7 +4,7 @@ description: Use this topic to help prevent the uninstall of specific Windows ap external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-help.xml Module Name: Appx ms.date: 02/05/2020 -online version: https://docs.microsoft.com/powershell/module/appx/get-nonremovableappspolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/get-nonremovableappspolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NonRemovableAppsPolicy --- diff --git a/docset/winserver2016-ps/appx/Invoke-CommandInDesktopPackage.md b/docset/winserver2016-ps/appx/Invoke-CommandInDesktopPackage.md index 05ecf74b5f..160f1f1f86 100644 --- a/docset/winserver2016-ps/appx/Invoke-CommandInDesktopPackage.md +++ b/docset/winserver2016-ps/appx/Invoke-CommandInDesktopPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: Appx ms.date: 05/19/2017 -online version: https://docs.microsoft.com/powershell/module/appx/invoke-commandindesktoppackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/invoke-commandindesktoppackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-CommandInDesktopPackage --- diff --git a/docset/winserver2016-ps/appx/Mount-AppxVolume.md b/docset/winserver2016-ps/appx/Mount-AppxVolume.md index fde6b43448..83ac2f0951 100644 --- a/docset/winserver2016-ps/appx/Mount-AppxVolume.md +++ b/docset/winserver2016-ps/appx/Mount-AppxVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: Appx ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appx/mount-appxvolume?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/mount-appxvolume?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Mount-AppxVolume --- diff --git a/docset/winserver2016-ps/appx/Move-AppxPackage.md b/docset/winserver2016-ps/appx/Move-AppxPackage.md index c86e84c753..6265e5f053 100644 --- a/docset/winserver2016-ps/appx/Move-AppxPackage.md +++ b/docset/winserver2016-ps/appx/Move-AppxPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: Appx ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appx/move-appxpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/move-appxpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-AppxPackage --- diff --git a/docset/winserver2016-ps/appx/Remove-AppxPackage.md b/docset/winserver2016-ps/appx/Remove-AppxPackage.md index 8118bcfeff..ab7973353e 100644 --- a/docset/winserver2016-ps/appx/Remove-AppxPackage.md +++ b/docset/winserver2016-ps/appx/Remove-AppxPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: Appx ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appx/remove-appxpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/remove-appxpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AppxPackage --- diff --git a/docset/winserver2016-ps/appx/Remove-AppxVolume.md b/docset/winserver2016-ps/appx/Remove-AppxVolume.md index 1422c24b11..4f9e8cfacc 100644 --- a/docset/winserver2016-ps/appx/Remove-AppxVolume.md +++ b/docset/winserver2016-ps/appx/Remove-AppxVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: Appx ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appx/remove-appxvolume?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/remove-appxvolume?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AppxVolume --- diff --git a/docset/winserver2016-ps/appx/Reset-AppxPackage.md b/docset/winserver2016-ps/appx/Reset-AppxPackage.md index 27838bd385..5a332aea5d 100644 --- a/docset/winserver2016-ps/appx/Reset-AppxPackage.md +++ b/docset/winserver2016-ps/appx/Reset-AppxPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-help.xml Module Name: Appx ms.date: 10/20/2020 -online version: https://docs.microsoft.com/powershell/module/appx/reset-appxpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/reset-appxpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-AppxPackage --- diff --git a/docset/winserver2016-ps/appx/Set-AppxDefaultVolume.md b/docset/winserver2016-ps/appx/Set-AppxDefaultVolume.md index 637b151799..cbde0bb76c 100644 --- a/docset/winserver2016-ps/appx/Set-AppxDefaultVolume.md +++ b/docset/winserver2016-ps/appx/Set-AppxDefaultVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: Appx ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appx/set-appxdefaultvolume?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/set-appxdefaultvolume?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AppxDefaultVolume --- diff --git a/docset/winserver2016-ps/appx/Set-NonRemovableAppsPolicy.md b/docset/winserver2016-ps/appx/Set-NonRemovableAppsPolicy.md index c6cf3e341a..4d5de39176 100644 --- a/docset/winserver2016-ps/appx/Set-NonRemovableAppsPolicy.md +++ b/docset/winserver2016-ps/appx/Set-NonRemovableAppsPolicy.md @@ -4,7 +4,7 @@ description: Use this topic to help prevent the uninstall of specific Windows ap external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-help.xml Module Name: Appx ms.date: 02/05/2020 -online version: https://docs.microsoft.com/powershell/module/appx/set-nonremovableappspolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/set-nonremovableappspolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NonRemovableAppsPolicy --- diff --git a/docset/winserver2016-ps/assignedaccess/Clear-AssignedAccess.md b/docset/winserver2016-ps/assignedaccess/Clear-AssignedAccess.md index c3974d6448..7e39f8fca5 100644 --- a/docset/winserver2016-ps/assignedaccess/Clear-AssignedAccess.md +++ b/docset/winserver2016-ps/assignedaccess/Clear-AssignedAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: AssignedAccess-help.xml Module Name: AssignedAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/assignedaccess/clear-assignedaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/assignedaccess/clear-assignedaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-AssignedAccess --- diff --git a/docset/winserver2016-ps/assignedaccess/Get-AssignedAccess.md b/docset/winserver2016-ps/assignedaccess/Get-AssignedAccess.md index d74b4b5e29..3412a71729 100644 --- a/docset/winserver2016-ps/assignedaccess/Get-AssignedAccess.md +++ b/docset/winserver2016-ps/assignedaccess/Get-AssignedAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: AssignedAccess-help.xml Module Name: AssignedAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/assignedaccess/get-assignedaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/assignedaccess/get-assignedaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AssignedAccess --- diff --git a/docset/winserver2016-ps/assignedaccess/Set-AssignedAccess.md b/docset/winserver2016-ps/assignedaccess/Set-AssignedAccess.md index 01fc87ee1b..225d7e94a4 100644 --- a/docset/winserver2016-ps/assignedaccess/Set-AssignedAccess.md +++ b/docset/winserver2016-ps/assignedaccess/Set-AssignedAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: AssignedAccess-help.xml Module Name: AssignedAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/assignedaccess/set-assignedaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/assignedaccess/set-assignedaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AssignedAccess --- diff --git a/docset/winserver2016-ps/bestpractices/Get-BpaModel.md b/docset/winserver2016-ps/bestpractices/Get-BpaModel.md index 064aa4c02f..55fdac743f 100644 --- a/docset/winserver2016-ps/bestpractices/Get-BpaModel.md +++ b/docset/winserver2016-ps/bestpractices/Get-BpaModel.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.BestPractices.Cmdlets.dll-Help.xml Module Name: BestPractices ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/bestpractices/get-bpamodel?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bestpractices/get-bpamodel?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BpaModel --- diff --git a/docset/winserver2016-ps/bestpractices/Get-BpaResult.md b/docset/winserver2016-ps/bestpractices/Get-BpaResult.md index a7d0764831..c0de857593 100644 --- a/docset/winserver2016-ps/bestpractices/Get-BpaResult.md +++ b/docset/winserver2016-ps/bestpractices/Get-BpaResult.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.BestPractices.Cmdlets.dll-Help.xml Module Name: BestPractices ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/bestpractices/get-bparesult?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bestpractices/get-bparesult?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BpaResult --- diff --git a/docset/winserver2016-ps/bestpractices/Invoke-BpaModel.md b/docset/winserver2016-ps/bestpractices/Invoke-BpaModel.md index c26098e472..62ce603109 100644 --- a/docset/winserver2016-ps/bestpractices/Invoke-BpaModel.md +++ b/docset/winserver2016-ps/bestpractices/Invoke-BpaModel.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.BestPractices.Cmdlets.dll-Help.xml Module Name: BestPractices ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/bestpractices/invoke-bpamodel?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bestpractices/invoke-bpamodel?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-BpaModel --- diff --git a/docset/winserver2016-ps/bestpractices/Set-BpaResult.md b/docset/winserver2016-ps/bestpractices/Set-BpaResult.md index f9cd5a5db3..4d2125df72 100644 --- a/docset/winserver2016-ps/bestpractices/Set-BpaResult.md +++ b/docset/winserver2016-ps/bestpractices/Set-BpaResult.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.BestPractices.Cmdlets.dll-Help.xml Module Name: BestPractices ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/bestpractices/set-bparesult?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bestpractices/set-bparesult?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-BpaResult --- diff --git a/docset/winserver2016-ps/bitlocker/Add-BitLockerKeyProtector.md b/docset/winserver2016-ps/bitlocker/Add-BitLockerKeyProtector.md index 8565e5ecd8..64cc096d55 100644 --- a/docset/winserver2016-ps/bitlocker/Add-BitLockerKeyProtector.md +++ b/docset/winserver2016-ps/bitlocker/Add-BitLockerKeyProtector.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BitLocker-help.xml Module Name: BitLocker ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitlocker/add-bitlockerkeyprotector?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/add-bitlockerkeyprotector?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-BitLockerKeyProtector --- diff --git a/docset/winserver2016-ps/bitlocker/Backup-BitLockerKeyProtector.md b/docset/winserver2016-ps/bitlocker/Backup-BitLockerKeyProtector.md index 8473d59adc..e4c46f8cfe 100644 --- a/docset/winserver2016-ps/bitlocker/Backup-BitLockerKeyProtector.md +++ b/docset/winserver2016-ps/bitlocker/Backup-BitLockerKeyProtector.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BitLocker-help.xml Module Name: BitLocker ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitlocker/backup-bitlockerkeyprotector?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/backup-bitlockerkeyprotector?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Backup-BitLockerKeyProtector --- diff --git a/docset/winserver2016-ps/bitlocker/Clear-BitLockerAutoUnlock.md b/docset/winserver2016-ps/bitlocker/Clear-BitLockerAutoUnlock.md index c1ea76f65a..76032d5d33 100644 --- a/docset/winserver2016-ps/bitlocker/Clear-BitLockerAutoUnlock.md +++ b/docset/winserver2016-ps/bitlocker/Clear-BitLockerAutoUnlock.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BitLocker-help.xml Module Name: BitLocker ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitlocker/clear-bitlockerautounlock?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/clear-bitlockerautounlock?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-BitLockerAutoUnlock --- diff --git a/docset/winserver2016-ps/bitlocker/Disable-BitLocker.md b/docset/winserver2016-ps/bitlocker/Disable-BitLocker.md index 2c538811fb..eb6648aaed 100644 --- a/docset/winserver2016-ps/bitlocker/Disable-BitLocker.md +++ b/docset/winserver2016-ps/bitlocker/Disable-BitLocker.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BitLocker-help.xml Module Name: BitLocker ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitlocker/disable-bitlocker?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/disable-bitlocker?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-BitLocker --- diff --git a/docset/winserver2016-ps/bitlocker/Disable-BitLockerAutoUnlock.md b/docset/winserver2016-ps/bitlocker/Disable-BitLockerAutoUnlock.md index cc5bc60888..b3713bb0a8 100644 --- a/docset/winserver2016-ps/bitlocker/Disable-BitLockerAutoUnlock.md +++ b/docset/winserver2016-ps/bitlocker/Disable-BitLockerAutoUnlock.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BitLocker-help.xml Module Name: BitLocker ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitlocker/disable-bitlockerautounlock?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/disable-bitlockerautounlock?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-BitLockerAutoUnlock --- diff --git a/docset/winserver2016-ps/bitlocker/Enable-BitLocker.md b/docset/winserver2016-ps/bitlocker/Enable-BitLocker.md index 4bd09b6146..c15d1ef4c2 100644 --- a/docset/winserver2016-ps/bitlocker/Enable-BitLocker.md +++ b/docset/winserver2016-ps/bitlocker/Enable-BitLocker.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BitLocker-help.xml Module Name: BitLocker ms.date: 12/14/2021 -online version: https://docs.microsoft.com/powershell/module/bitlocker/enable-bitlocker?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/enable-bitlocker?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-BitLocker --- diff --git a/docset/winserver2016-ps/bitlocker/Enable-BitLockerAutoUnlock.md b/docset/winserver2016-ps/bitlocker/Enable-BitLockerAutoUnlock.md index 72a3711a31..5ebb512b43 100644 --- a/docset/winserver2016-ps/bitlocker/Enable-BitLockerAutoUnlock.md +++ b/docset/winserver2016-ps/bitlocker/Enable-BitLockerAutoUnlock.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BitLocker-help.xml Module Name: BitLocker ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitlocker/enable-bitlockerautounlock?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/enable-bitlockerautounlock?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-BitLockerAutoUnlock --- diff --git a/docset/winserver2016-ps/bitlocker/Get-BitLockerVolume.md b/docset/winserver2016-ps/bitlocker/Get-BitLockerVolume.md index 4ce464f222..8abd529564 100644 --- a/docset/winserver2016-ps/bitlocker/Get-BitLockerVolume.md +++ b/docset/winserver2016-ps/bitlocker/Get-BitLockerVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BitLocker-help.xml Module Name: BitLocker ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitlocker/get-bitlockervolume?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/get-bitlockervolume?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BitLockerVolume --- diff --git a/docset/winserver2016-ps/bitlocker/Lock-BitLocker.md b/docset/winserver2016-ps/bitlocker/Lock-BitLocker.md index 3ea99d1643..50e67508c0 100644 --- a/docset/winserver2016-ps/bitlocker/Lock-BitLocker.md +++ b/docset/winserver2016-ps/bitlocker/Lock-BitLocker.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BitLocker-help.xml Module Name: BitLocker ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitlocker/lock-bitlocker?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/lock-bitlocker?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Lock-BitLocker --- diff --git a/docset/winserver2016-ps/bitlocker/Remove-BitLockerKeyProtector.md b/docset/winserver2016-ps/bitlocker/Remove-BitLockerKeyProtector.md index c000fdae97..9e56d0209a 100644 --- a/docset/winserver2016-ps/bitlocker/Remove-BitLockerKeyProtector.md +++ b/docset/winserver2016-ps/bitlocker/Remove-BitLockerKeyProtector.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BitLocker-help.xml Module Name: BitLocker ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitlocker/remove-bitlockerkeyprotector?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/remove-bitlockerkeyprotector?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-BitLockerKeyProtector --- diff --git a/docset/winserver2016-ps/bitlocker/Resume-BitLocker.md b/docset/winserver2016-ps/bitlocker/Resume-BitLocker.md index 7a718903e1..c45e7e84b8 100644 --- a/docset/winserver2016-ps/bitlocker/Resume-BitLocker.md +++ b/docset/winserver2016-ps/bitlocker/Resume-BitLocker.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BitLocker-help.xml Module Name: BitLocker ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitlocker/resume-bitlocker?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/resume-bitlocker?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-BitLocker --- diff --git a/docset/winserver2016-ps/bitlocker/Suspend-BitLocker.md b/docset/winserver2016-ps/bitlocker/Suspend-BitLocker.md index 80f69cd10d..a78719807f 100644 --- a/docset/winserver2016-ps/bitlocker/Suspend-BitLocker.md +++ b/docset/winserver2016-ps/bitlocker/Suspend-BitLocker.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BitLocker-help.xml Module Name: BitLocker ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitlocker/suspend-bitlocker?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/suspend-bitlocker?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-BitLocker --- diff --git a/docset/winserver2016-ps/bitlocker/Unlock-BitLocker.md b/docset/winserver2016-ps/bitlocker/Unlock-BitLocker.md index 28a562214a..ec4eb975b3 100644 --- a/docset/winserver2016-ps/bitlocker/Unlock-BitLocker.md +++ b/docset/winserver2016-ps/bitlocker/Unlock-BitLocker.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BitLocker-help.xml Module Name: BitLocker ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitlocker/unlock-bitlocker?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/unlock-bitlocker?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unlock-BitLocker --- diff --git a/docset/winserver2016-ps/bitstransfer/Add-BitsFile.md b/docset/winserver2016-ps/bitstransfer/Add-BitsFile.md index 6165e0a721..bbe52657f9 100644 --- a/docset/winserver2016-ps/bitstransfer/Add-BitsFile.md +++ b/docset/winserver2016-ps/bitstransfer/Add-BitsFile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.BackgroundIntelligentTransfer.Management.dll-Help.xml Module Name: BitsTransfer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitstransfer/add-bitsfile?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitstransfer/add-bitsfile?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-BitsFile --- diff --git a/docset/winserver2016-ps/bitstransfer/Complete-BitsTransfer.md b/docset/winserver2016-ps/bitstransfer/Complete-BitsTransfer.md index d0d6256c34..81b3765d92 100644 --- a/docset/winserver2016-ps/bitstransfer/Complete-BitsTransfer.md +++ b/docset/winserver2016-ps/bitstransfer/Complete-BitsTransfer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.BackgroundIntelligentTransfer.Management.dll-Help.xml Module Name: BitsTransfer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitstransfer/complete-bitstransfer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitstransfer/complete-bitstransfer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Complete-BitsTransfer --- diff --git a/docset/winserver2016-ps/bitstransfer/Get-BitsTransfer.md b/docset/winserver2016-ps/bitstransfer/Get-BitsTransfer.md index ce1397f878..6d4523fd32 100644 --- a/docset/winserver2016-ps/bitstransfer/Get-BitsTransfer.md +++ b/docset/winserver2016-ps/bitstransfer/Get-BitsTransfer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.BackgroundIntelligentTransfer.Management.dll-Help.xml Module Name: BitsTransfer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitstransfer/get-bitstransfer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitstransfer/get-bitstransfer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BitsTransfer --- diff --git a/docset/winserver2016-ps/bitstransfer/Remove-BitsTransfer.md b/docset/winserver2016-ps/bitstransfer/Remove-BitsTransfer.md index 2a8eb07949..b3c0f2ab65 100644 --- a/docset/winserver2016-ps/bitstransfer/Remove-BitsTransfer.md +++ b/docset/winserver2016-ps/bitstransfer/Remove-BitsTransfer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.BackgroundIntelligentTransfer.Management.dll-Help.xml Module Name: BitsTransfer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitstransfer/remove-bitstransfer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitstransfer/remove-bitstransfer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-BitsTransfer --- diff --git a/docset/winserver2016-ps/bitstransfer/Resume-BitsTransfer.md b/docset/winserver2016-ps/bitstransfer/Resume-BitsTransfer.md index d3e8d02860..33be48f0d7 100644 --- a/docset/winserver2016-ps/bitstransfer/Resume-BitsTransfer.md +++ b/docset/winserver2016-ps/bitstransfer/Resume-BitsTransfer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.BackgroundIntelligentTransfer.Management.dll-Help.xml Module Name: BitsTransfer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitstransfer/resume-bitstransfer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitstransfer/resume-bitstransfer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-BitsTransfer --- diff --git a/docset/winserver2016-ps/bitstransfer/Set-BitsTransfer.md b/docset/winserver2016-ps/bitstransfer/Set-BitsTransfer.md index cbb7a52433..e3087002ec 100644 --- a/docset/winserver2016-ps/bitstransfer/Set-BitsTransfer.md +++ b/docset/winserver2016-ps/bitstransfer/Set-BitsTransfer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.BackgroundIntelligentTransfer.Management.dll-Help.xml Module Name: BitsTransfer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitstransfer/set-bitstransfer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitstransfer/set-bitstransfer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-BitsTransfer --- diff --git a/docset/winserver2016-ps/bitstransfer/Start-BitsTransfer.md b/docset/winserver2016-ps/bitstransfer/Start-BitsTransfer.md index a62e4b724d..b3f50d8229 100644 --- a/docset/winserver2016-ps/bitstransfer/Start-BitsTransfer.md +++ b/docset/winserver2016-ps/bitstransfer/Start-BitsTransfer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.BackgroundIntelligentTransfer.Management.dll-Help.xml Module Name: BitsTransfer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitstransfer/start-bitstransfer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitstransfer/start-bitstransfer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-BitsTransfer --- diff --git a/docset/winserver2016-ps/bitstransfer/Suspend-BitsTransfer.md b/docset/winserver2016-ps/bitstransfer/Suspend-BitsTransfer.md index f9c8417e9f..1aabb78fa7 100644 --- a/docset/winserver2016-ps/bitstransfer/Suspend-BitsTransfer.md +++ b/docset/winserver2016-ps/bitstransfer/Suspend-BitsTransfer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.BackgroundIntelligentTransfer.Management.dll-Help.xml Module Name: BitsTransfer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitstransfer/suspend-bitstransfer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitstransfer/suspend-bitstransfer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-BitsTransfer --- diff --git a/docset/winserver2016-ps/booteventcollector/Checkpoint-SbecActiveConfig.md b/docset/winserver2016-ps/booteventcollector/Checkpoint-SbecActiveConfig.md index 32a8672717..9a9c79771c 100644 --- a/docset/winserver2016-ps/booteventcollector/Checkpoint-SbecActiveConfig.md +++ b/docset/winserver2016-ps/booteventcollector/Checkpoint-SbecActiveConfig.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/checkpoint-sbecactiveconfig?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/checkpoint-sbecactiveconfig?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Checkpoint-SbecActiveConfig --- diff --git a/docset/winserver2016-ps/booteventcollector/Clear-SbecProviderCache.md b/docset/winserver2016-ps/booteventcollector/Clear-SbecProviderCache.md index 1bd57ba9f3..dbdfa47ca2 100644 --- a/docset/winserver2016-ps/booteventcollector/Clear-SbecProviderCache.md +++ b/docset/winserver2016-ps/booteventcollector/Clear-SbecProviderCache.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/clear-sbecprovidercache?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/clear-sbecprovidercache?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-SbecProviderCache --- diff --git a/docset/winserver2016-ps/booteventcollector/Disable-SbecAutologger.md b/docset/winserver2016-ps/booteventcollector/Disable-SbecAutologger.md index e6f7d00609..983d06c6ab 100644 --- a/docset/winserver2016-ps/booteventcollector/Disable-SbecAutologger.md +++ b/docset/winserver2016-ps/booteventcollector/Disable-SbecAutologger.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/disable-sbecautologger?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/disable-sbecautologger?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-SbecAutologger --- diff --git a/docset/winserver2016-ps/booteventcollector/Disable-SbecBcd.md b/docset/winserver2016-ps/booteventcollector/Disable-SbecBcd.md index c705e9eecc..f3e0e531fc 100644 --- a/docset/winserver2016-ps/booteventcollector/Disable-SbecBcd.md +++ b/docset/winserver2016-ps/booteventcollector/Disable-SbecBcd.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/disable-sbecbcd?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/disable-sbecbcd?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-SbecBcd --- diff --git a/docset/winserver2016-ps/booteventcollector/Enable-SbecAutologger.md b/docset/winserver2016-ps/booteventcollector/Enable-SbecAutologger.md index b4dae4a9ba..6a430b6086 100644 --- a/docset/winserver2016-ps/booteventcollector/Enable-SbecAutologger.md +++ b/docset/winserver2016-ps/booteventcollector/Enable-SbecAutologger.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/enable-sbecautologger?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/enable-sbecautologger?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-SbecAutologger --- diff --git a/docset/winserver2016-ps/booteventcollector/Enable-SbecBcd.md b/docset/winserver2016-ps/booteventcollector/Enable-SbecBcd.md index f0d0faea38..4d24b06977 100644 --- a/docset/winserver2016-ps/booteventcollector/Enable-SbecBcd.md +++ b/docset/winserver2016-ps/booteventcollector/Enable-SbecBcd.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/enable-sbecbcd?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/enable-sbecbcd?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-SbecBcd --- diff --git a/docset/winserver2016-ps/booteventcollector/Enable-SbecBootImage.md b/docset/winserver2016-ps/booteventcollector/Enable-SbecBootImage.md index aa8a8c46a4..be23da607e 100644 --- a/docset/winserver2016-ps/booteventcollector/Enable-SbecBootImage.md +++ b/docset/winserver2016-ps/booteventcollector/Enable-SbecBootImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/enable-sbecbootimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/enable-sbecbootimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-SbecBootImage --- diff --git a/docset/winserver2016-ps/booteventcollector/Enable-SbecWdsBcd.md b/docset/winserver2016-ps/booteventcollector/Enable-SbecWdsBcd.md index 1d6543266e..7615e20cf0 100644 --- a/docset/winserver2016-ps/booteventcollector/Enable-SbecWdsBcd.md +++ b/docset/winserver2016-ps/booteventcollector/Enable-SbecWdsBcd.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/enable-sbecwdsbcd?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/enable-sbecwdsbcd?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-SbecWdsBcd --- diff --git a/docset/winserver2016-ps/booteventcollector/Get-SbecActiveConfig.md b/docset/winserver2016-ps/booteventcollector/Get-SbecActiveConfig.md index 9927ea1196..27c75da8ce 100644 --- a/docset/winserver2016-ps/booteventcollector/Get-SbecActiveConfig.md +++ b/docset/winserver2016-ps/booteventcollector/Get-SbecActiveConfig.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/get-sbecactiveconfig?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/get-sbecactiveconfig?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SbecActiveConfig --- diff --git a/docset/winserver2016-ps/booteventcollector/Get-SbecBackupConfig.md b/docset/winserver2016-ps/booteventcollector/Get-SbecBackupConfig.md index f420cf2e88..af55c1355d 100644 --- a/docset/winserver2016-ps/booteventcollector/Get-SbecBackupConfig.md +++ b/docset/winserver2016-ps/booteventcollector/Get-SbecBackupConfig.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/get-sbecbackupconfig?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/get-sbecbackupconfig?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SbecBackupConfig --- diff --git a/docset/winserver2016-ps/booteventcollector/Get-SbecDestination.md b/docset/winserver2016-ps/booteventcollector/Get-SbecDestination.md index abaa5580db..48967f4eb6 100644 --- a/docset/winserver2016-ps/booteventcollector/Get-SbecDestination.md +++ b/docset/winserver2016-ps/booteventcollector/Get-SbecDestination.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/get-sbecdestination?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/get-sbecdestination?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SbecDestination --- diff --git a/docset/winserver2016-ps/booteventcollector/Get-SbecForwarding.md b/docset/winserver2016-ps/booteventcollector/Get-SbecForwarding.md index 5b66b4ec27..02e59e3c13 100644 --- a/docset/winserver2016-ps/booteventcollector/Get-SbecForwarding.md +++ b/docset/winserver2016-ps/booteventcollector/Get-SbecForwarding.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/get-sbecforwarding?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/get-sbecforwarding?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SbecForwarding --- diff --git a/docset/winserver2016-ps/booteventcollector/Get-SbecHistory.md b/docset/winserver2016-ps/booteventcollector/Get-SbecHistory.md index 703e35a32b..dd7f3e54d0 100644 --- a/docset/winserver2016-ps/booteventcollector/Get-SbecHistory.md +++ b/docset/winserver2016-ps/booteventcollector/Get-SbecHistory.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/get-sbechistory?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/get-sbechistory?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SbecHistory --- diff --git a/docset/winserver2016-ps/booteventcollector/Get-SbecLocalizedMessage.md b/docset/winserver2016-ps/booteventcollector/Get-SbecLocalizedMessage.md index 4a5032aef6..4ebae12e69 100644 --- a/docset/winserver2016-ps/booteventcollector/Get-SbecLocalizedMessage.md +++ b/docset/winserver2016-ps/booteventcollector/Get-SbecLocalizedMessage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/get-sbeclocalizedmessage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/get-sbeclocalizedmessage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SbecLocalizedMessage --- diff --git a/docset/winserver2016-ps/booteventcollector/Get-SbecLogSession.md b/docset/winserver2016-ps/booteventcollector/Get-SbecLogSession.md index 0220663287..50286f4adb 100644 --- a/docset/winserver2016-ps/booteventcollector/Get-SbecLogSession.md +++ b/docset/winserver2016-ps/booteventcollector/Get-SbecLogSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/get-sbeclogsession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/get-sbeclogsession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SbecLogSession --- diff --git a/docset/winserver2016-ps/booteventcollector/Get-SbecTraceProviders.md b/docset/winserver2016-ps/booteventcollector/Get-SbecTraceProviders.md index 709604141d..94e7b102b1 100644 --- a/docset/winserver2016-ps/booteventcollector/Get-SbecTraceProviders.md +++ b/docset/winserver2016-ps/booteventcollector/Get-SbecTraceProviders.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/get-sbectraceproviders?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/get-sbectraceproviders?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SbecTraceProviders --- diff --git a/docset/winserver2016-ps/booteventcollector/New-SbecUnattendFragment.md b/docset/winserver2016-ps/booteventcollector/New-SbecUnattendFragment.md index 8dff5cca51..acd7b893c6 100644 --- a/docset/winserver2016-ps/booteventcollector/New-SbecUnattendFragment.md +++ b/docset/winserver2016-ps/booteventcollector/New-SbecUnattendFragment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/new-sbecunattendfragment?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/new-sbecunattendfragment?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-SbecUnattendFragment --- diff --git a/docset/winserver2016-ps/booteventcollector/Redo-SbecActiveConfig.md b/docset/winserver2016-ps/booteventcollector/Redo-SbecActiveConfig.md index 6fb2e33b0c..fa89db3fe3 100644 --- a/docset/winserver2016-ps/booteventcollector/Redo-SbecActiveConfig.md +++ b/docset/winserver2016-ps/booteventcollector/Redo-SbecActiveConfig.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/redo-sbecactiveconfig?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/redo-sbecactiveconfig?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Redo-SbecActiveConfig --- diff --git a/docset/winserver2016-ps/booteventcollector/Restore-SbecBackupConfig.md b/docset/winserver2016-ps/booteventcollector/Restore-SbecBackupConfig.md index 6c46a66206..286be6d599 100644 --- a/docset/winserver2016-ps/booteventcollector/Restore-SbecBackupConfig.md +++ b/docset/winserver2016-ps/booteventcollector/Restore-SbecBackupConfig.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/restore-sbecbackupconfig?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/restore-sbecbackupconfig?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-SbecBackupConfig --- diff --git a/docset/winserver2016-ps/booteventcollector/Save-SbecInstance.md b/docset/winserver2016-ps/booteventcollector/Save-SbecInstance.md index 262f284e17..3d43e2271c 100644 --- a/docset/winserver2016-ps/booteventcollector/Save-SbecInstance.md +++ b/docset/winserver2016-ps/booteventcollector/Save-SbecInstance.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/save-sbecinstance?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/save-sbecinstance?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Save-SbecInstance --- diff --git a/docset/winserver2016-ps/booteventcollector/Save-SbecLogSession.md b/docset/winserver2016-ps/booteventcollector/Save-SbecLogSession.md index f7d469c790..88a686aeec 100644 --- a/docset/winserver2016-ps/booteventcollector/Save-SbecLogSession.md +++ b/docset/winserver2016-ps/booteventcollector/Save-SbecLogSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/save-sbeclogsession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/save-sbeclogsession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Save-SbecLogSession --- diff --git a/docset/winserver2016-ps/booteventcollector/Set-SbecActiveConfig.md b/docset/winserver2016-ps/booteventcollector/Set-SbecActiveConfig.md index cadd6f86c0..05a1a375f6 100644 --- a/docset/winserver2016-ps/booteventcollector/Set-SbecActiveConfig.md +++ b/docset/winserver2016-ps/booteventcollector/Set-SbecActiveConfig.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/set-sbecactiveconfig?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/set-sbecactiveconfig?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SbecActiveConfig --- diff --git a/docset/winserver2016-ps/booteventcollector/Set-SbecLogSession.md b/docset/winserver2016-ps/booteventcollector/Set-SbecLogSession.md index a872ab93c1..cbf57ad8c9 100644 --- a/docset/winserver2016-ps/booteventcollector/Set-SbecLogSession.md +++ b/docset/winserver2016-ps/booteventcollector/Set-SbecLogSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/set-sbeclogsession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/set-sbeclogsession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SbecLogSession --- diff --git a/docset/winserver2016-ps/booteventcollector/Start-SbecInstance.md b/docset/winserver2016-ps/booteventcollector/Start-SbecInstance.md index da976ed52a..e83cf7defb 100644 --- a/docset/winserver2016-ps/booteventcollector/Start-SbecInstance.md +++ b/docset/winserver2016-ps/booteventcollector/Start-SbecInstance.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/start-sbecinstance?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/start-sbecinstance?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-SbecInstance --- diff --git a/docset/winserver2016-ps/booteventcollector/Start-SbecLogSession.md b/docset/winserver2016-ps/booteventcollector/Start-SbecLogSession.md index 6623c4202f..074d2b001d 100644 --- a/docset/winserver2016-ps/booteventcollector/Start-SbecLogSession.md +++ b/docset/winserver2016-ps/booteventcollector/Start-SbecLogSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/start-sbeclogsession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/start-sbeclogsession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-SbecLogSession --- diff --git a/docset/winserver2016-ps/booteventcollector/Start-SbecNtKernelLogSession.md b/docset/winserver2016-ps/booteventcollector/Start-SbecNtKernelLogSession.md index f7f33302ae..5a90977b6b 100644 --- a/docset/winserver2016-ps/booteventcollector/Start-SbecNtKernelLogSession.md +++ b/docset/winserver2016-ps/booteventcollector/Start-SbecNtKernelLogSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/start-sbecntkernellogsession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/start-sbecntkernellogsession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-SbecNtKernelLogSession --- diff --git a/docset/winserver2016-ps/booteventcollector/Start-SbecSimpleLogSession.md b/docset/winserver2016-ps/booteventcollector/Start-SbecSimpleLogSession.md index 544fced74f..062501ff1c 100644 --- a/docset/winserver2016-ps/booteventcollector/Start-SbecSimpleLogSession.md +++ b/docset/winserver2016-ps/booteventcollector/Start-SbecSimpleLogSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/start-sbecsimplelogsession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/start-sbecsimplelogsession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-SbecSimpleLogSession --- diff --git a/docset/winserver2016-ps/booteventcollector/Stop-SbecInstance.md b/docset/winserver2016-ps/booteventcollector/Stop-SbecInstance.md index c8e8c787d0..dc3ecedf82 100644 --- a/docset/winserver2016-ps/booteventcollector/Stop-SbecInstance.md +++ b/docset/winserver2016-ps/booteventcollector/Stop-SbecInstance.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/stop-sbecinstance?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/stop-sbecinstance?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-SbecInstance --- diff --git a/docset/winserver2016-ps/booteventcollector/Stop-SbecLogSession.md b/docset/winserver2016-ps/booteventcollector/Stop-SbecLogSession.md index 1da9889dc6..c3e4e20fa3 100644 --- a/docset/winserver2016-ps/booteventcollector/Stop-SbecLogSession.md +++ b/docset/winserver2016-ps/booteventcollector/Stop-SbecLogSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/stop-sbeclogsession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/stop-sbeclogsession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-SbecLogSession --- diff --git a/docset/winserver2016-ps/booteventcollector/Test-SbecActiveConfig.md b/docset/winserver2016-ps/booteventcollector/Test-SbecActiveConfig.md index 933d59dbbd..ee7bd60831 100644 --- a/docset/winserver2016-ps/booteventcollector/Test-SbecActiveConfig.md +++ b/docset/winserver2016-ps/booteventcollector/Test-SbecActiveConfig.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/test-sbecactiveconfig?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/test-sbecactiveconfig?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-SbecActiveConfig --- diff --git a/docset/winserver2016-ps/booteventcollector/Test-SbecConfig.md b/docset/winserver2016-ps/booteventcollector/Test-SbecConfig.md index c35e564c25..8676d6b89a 100644 --- a/docset/winserver2016-ps/booteventcollector/Test-SbecConfig.md +++ b/docset/winserver2016-ps/booteventcollector/Test-SbecConfig.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/test-sbecconfig?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/test-sbecconfig?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-SbecConfig --- diff --git a/docset/winserver2016-ps/booteventcollector/Undo-SbecActiveConfig.md b/docset/winserver2016-ps/booteventcollector/Undo-SbecActiveConfig.md index 32d4685387..34f937b2e1 100644 --- a/docset/winserver2016-ps/booteventcollector/Undo-SbecActiveConfig.md +++ b/docset/winserver2016-ps/booteventcollector/Undo-SbecActiveConfig.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/undo-sbecactiveconfig?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/undo-sbecactiveconfig?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Undo-SbecActiveConfig --- diff --git a/docset/winserver2016-ps/branchcache/Add-BCDataCacheExtension.md b/docset/winserver2016-ps/branchcache/Add-BCDataCacheExtension.md index 1e96cccae2..d1f04f84a0 100644 --- a/docset/winserver2016-ps/branchcache/Add-BCDataCacheExtension.md +++ b/docset/winserver2016-ps/branchcache/Add-BCDataCacheExtension.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/add-bcdatacacheextension?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/add-bcdatacacheextension?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-BCDataCacheExtension --- diff --git a/docset/winserver2016-ps/branchcache/Clear-BCCache.md b/docset/winserver2016-ps/branchcache/Clear-BCCache.md index e7b51cbf2a..f451d506f4 100644 --- a/docset/winserver2016-ps/branchcache/Clear-BCCache.md +++ b/docset/winserver2016-ps/branchcache/Clear-BCCache.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/clear-bccache?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/clear-bccache?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-BCCache --- diff --git a/docset/winserver2016-ps/branchcache/Disable-BC.md b/docset/winserver2016-ps/branchcache/Disable-BC.md index 791a5ab7fc..22c6681424 100644 --- a/docset/winserver2016-ps/branchcache/Disable-BC.md +++ b/docset/winserver2016-ps/branchcache/Disable-BC.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/disable-bc?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/disable-bc?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-BC --- diff --git a/docset/winserver2016-ps/branchcache/Disable-BCDowngrading.md b/docset/winserver2016-ps/branchcache/Disable-BCDowngrading.md index dcaa4f3bba..bafa848a39 100644 --- a/docset/winserver2016-ps/branchcache/Disable-BCDowngrading.md +++ b/docset/winserver2016-ps/branchcache/Disable-BCDowngrading.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/disable-bcdowngrading?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/disable-bcdowngrading?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-BCDowngrading --- diff --git a/docset/winserver2016-ps/branchcache/Disable-BCServeOnBattery.md b/docset/winserver2016-ps/branchcache/Disable-BCServeOnBattery.md index 72879480d2..e6ae311367 100644 --- a/docset/winserver2016-ps/branchcache/Disable-BCServeOnBattery.md +++ b/docset/winserver2016-ps/branchcache/Disable-BCServeOnBattery.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/disable-bcserveonbattery?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/disable-bcserveonbattery?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-BCServeOnBattery --- diff --git a/docset/winserver2016-ps/branchcache/Enable-BCDistributed.md b/docset/winserver2016-ps/branchcache/Enable-BCDistributed.md index 78b545e578..40a8c64e0c 100644 --- a/docset/winserver2016-ps/branchcache/Enable-BCDistributed.md +++ b/docset/winserver2016-ps/branchcache/Enable-BCDistributed.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/enable-bcdistributed?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/enable-bcdistributed?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-BCDistributed --- diff --git a/docset/winserver2016-ps/branchcache/Enable-BCDowngrading.md b/docset/winserver2016-ps/branchcache/Enable-BCDowngrading.md index 95b6662a48..2bae8b9aa6 100644 --- a/docset/winserver2016-ps/branchcache/Enable-BCDowngrading.md +++ b/docset/winserver2016-ps/branchcache/Enable-BCDowngrading.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/enable-bcdowngrading?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/enable-bcdowngrading?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-BCDowngrading --- diff --git a/docset/winserver2016-ps/branchcache/Enable-BCHostedClient.md b/docset/winserver2016-ps/branchcache/Enable-BCHostedClient.md index a13ae846c3..0512715283 100644 --- a/docset/winserver2016-ps/branchcache/Enable-BCHostedClient.md +++ b/docset/winserver2016-ps/branchcache/Enable-BCHostedClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/enable-bchostedclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/enable-bchostedclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-BCHostedClient --- diff --git a/docset/winserver2016-ps/branchcache/Enable-BCHostedServer.md b/docset/winserver2016-ps/branchcache/Enable-BCHostedServer.md index e29dc4c45a..00015c3652 100644 --- a/docset/winserver2016-ps/branchcache/Enable-BCHostedServer.md +++ b/docset/winserver2016-ps/branchcache/Enable-BCHostedServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/enable-bchostedserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/enable-bchostedserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-BCHostedServer --- diff --git a/docset/winserver2016-ps/branchcache/Enable-BCLocal.md b/docset/winserver2016-ps/branchcache/Enable-BCLocal.md index aa495c98e4..5fc2ceb0f5 100644 --- a/docset/winserver2016-ps/branchcache/Enable-BCLocal.md +++ b/docset/winserver2016-ps/branchcache/Enable-BCLocal.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/enable-bclocal?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/enable-bclocal?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-BCLocal --- diff --git a/docset/winserver2016-ps/branchcache/Enable-BCServeOnBattery.md b/docset/winserver2016-ps/branchcache/Enable-BCServeOnBattery.md index 3a40b11609..e0d1d8c985 100644 --- a/docset/winserver2016-ps/branchcache/Enable-BCServeOnBattery.md +++ b/docset/winserver2016-ps/branchcache/Enable-BCServeOnBattery.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/enable-bcserveonbattery?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/enable-bcserveonbattery?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-BCServeOnBattery --- diff --git a/docset/winserver2016-ps/branchcache/Export-BCCachePackage.md b/docset/winserver2016-ps/branchcache/Export-BCCachePackage.md index a261850917..5841a8dee6 100644 --- a/docset/winserver2016-ps/branchcache/Export-BCCachePackage.md +++ b/docset/winserver2016-ps/branchcache/Export-BCCachePackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/export-bccachepackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/export-bccachepackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-BCCachePackage --- diff --git a/docset/winserver2016-ps/branchcache/Export-BCSecretKey.md b/docset/winserver2016-ps/branchcache/Export-BCSecretKey.md index b970d61e4f..1ebb633420 100644 --- a/docset/winserver2016-ps/branchcache/Export-BCSecretKey.md +++ b/docset/winserver2016-ps/branchcache/Export-BCSecretKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/export-bcsecretkey?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/export-bcsecretkey?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-BCSecretKey --- diff --git a/docset/winserver2016-ps/branchcache/Get-BCClientConfiguration.md b/docset/winserver2016-ps/branchcache/Get-BCClientConfiguration.md index b22179b234..c8f64577be 100644 --- a/docset/winserver2016-ps/branchcache/Get-BCClientConfiguration.md +++ b/docset/winserver2016-ps/branchcache/Get-BCClientConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheClientSettingData.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/get-bcclientconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/get-bcclientconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BCClientConfiguration --- diff --git a/docset/winserver2016-ps/branchcache/Get-BCContentServerConfiguration.md b/docset/winserver2016-ps/branchcache/Get-BCContentServerConfiguration.md index e1335f7672..5ac5ec01ac 100644 --- a/docset/winserver2016-ps/branchcache/Get-BCContentServerConfiguration.md +++ b/docset/winserver2016-ps/branchcache/Get-BCContentServerConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheContentServerSettingData.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/get-bccontentserverconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/get-bccontentserverconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BCContentServerConfiguration --- diff --git a/docset/winserver2016-ps/branchcache/Get-BCDataCache.md b/docset/winserver2016-ps/branchcache/Get-BCDataCache.md index c710f882e8..84ae7525db 100644 --- a/docset/winserver2016-ps/branchcache/Get-BCDataCache.md +++ b/docset/winserver2016-ps/branchcache/Get-BCDataCache.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCachePrimaryRepublicationCacheFile.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/get-bcdatacache?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/get-bcdatacache?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BCDataCache --- diff --git a/docset/winserver2016-ps/branchcache/Get-BCDataCacheExtension.md b/docset/winserver2016-ps/branchcache/Get-BCDataCacheExtension.md index 323c322056..5687a9dc47 100644 --- a/docset/winserver2016-ps/branchcache/Get-BCDataCacheExtension.md +++ b/docset/winserver2016-ps/branchcache/Get-BCDataCacheExtension.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheSecondaryRepublicationCacheFile.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/get-bcdatacacheextension?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/get-bcdatacacheextension?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BCDataCacheExtension --- diff --git a/docset/winserver2016-ps/branchcache/Get-BCHashCache.md b/docset/winserver2016-ps/branchcache/Get-BCHashCache.md index f8edee6a3b..5afaa3793d 100644 --- a/docset/winserver2016-ps/branchcache/Get-BCHashCache.md +++ b/docset/winserver2016-ps/branchcache/Get-BCHashCache.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCachePrimaryPublicationCacheFile.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/get-bchashcache?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/get-bchashcache?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BCHashCache --- diff --git a/docset/winserver2016-ps/branchcache/Get-BCHostedCacheServerConfiguration.md b/docset/winserver2016-ps/branchcache/Get-BCHostedCacheServerConfiguration.md index c0b1129562..60b2b7ed55 100644 --- a/docset/winserver2016-ps/branchcache/Get-BCHostedCacheServerConfiguration.md +++ b/docset/winserver2016-ps/branchcache/Get-BCHostedCacheServerConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheHostedCacheServerSettingData.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/get-bchostedcacheserverconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/get-bchostedcacheserverconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BCHostedCacheServerConfiguration --- diff --git a/docset/winserver2016-ps/branchcache/Get-BCNetworkConfiguration.md b/docset/winserver2016-ps/branchcache/Get-BCNetworkConfiguration.md index cea80872ec..c295069113 100644 --- a/docset/winserver2016-ps/branchcache/Get-BCNetworkConfiguration.md +++ b/docset/winserver2016-ps/branchcache/Get-BCNetworkConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheNetworkSettingData.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/get-bcnetworkconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/get-bcnetworkconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BCNetworkConfiguration --- diff --git a/docset/winserver2016-ps/branchcache/Get-BCStatus.md b/docset/winserver2016-ps/branchcache/Get-BCStatus.md index 042504045b..ebaf9c64f6 100644 --- a/docset/winserver2016-ps/branchcache/Get-BCStatus.md +++ b/docset/winserver2016-ps/branchcache/Get-BCStatus.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheStatus.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/get-bcstatus?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/get-bcstatus?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BCStatus --- diff --git a/docset/winserver2016-ps/branchcache/Import-BCCachePackage.md b/docset/winserver2016-ps/branchcache/Import-BCCachePackage.md index 810f8ee277..8f458af0e5 100644 --- a/docset/winserver2016-ps/branchcache/Import-BCCachePackage.md +++ b/docset/winserver2016-ps/branchcache/Import-BCCachePackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/import-bccachepackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/import-bccachepackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-BCCachePackage --- diff --git a/docset/winserver2016-ps/branchcache/Import-BCSecretKey.md b/docset/winserver2016-ps/branchcache/Import-BCSecretKey.md index 04cbf7fd24..c25f94d25f 100644 --- a/docset/winserver2016-ps/branchcache/Import-BCSecretKey.md +++ b/docset/winserver2016-ps/branchcache/Import-BCSecretKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/import-bcsecretkey?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/import-bcsecretkey?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-BCSecretKey --- diff --git a/docset/winserver2016-ps/branchcache/Publish-BCFileContent.md b/docset/winserver2016-ps/branchcache/Publish-BCFileContent.md index eea19786d2..086d10404e 100644 --- a/docset/winserver2016-ps/branchcache/Publish-BCFileContent.md +++ b/docset/winserver2016-ps/branchcache/Publish-BCFileContent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/publish-bcfilecontent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/publish-bcfilecontent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Publish-BCFileContent --- diff --git a/docset/winserver2016-ps/branchcache/Publish-BCWebContent.md b/docset/winserver2016-ps/branchcache/Publish-BCWebContent.md index 7e91a89d43..0e8b6d263a 100644 --- a/docset/winserver2016-ps/branchcache/Publish-BCWebContent.md +++ b/docset/winserver2016-ps/branchcache/Publish-BCWebContent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/publish-bcwebcontent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/publish-bcwebcontent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Publish-BCWebContent --- diff --git a/docset/winserver2016-ps/branchcache/Remove-BCDataCacheExtension.md b/docset/winserver2016-ps/branchcache/Remove-BCDataCacheExtension.md index d562e65c64..8d588edf4b 100644 --- a/docset/winserver2016-ps/branchcache/Remove-BCDataCacheExtension.md +++ b/docset/winserver2016-ps/branchcache/Remove-BCDataCacheExtension.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/remove-bcdatacacheextension?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/remove-bcdatacacheextension?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-BCDataCacheExtension --- diff --git a/docset/winserver2016-ps/branchcache/Reset-BC.md b/docset/winserver2016-ps/branchcache/Reset-BC.md index c5f222a3e2..96a9b63ded 100644 --- a/docset/winserver2016-ps/branchcache/Reset-BC.md +++ b/docset/winserver2016-ps/branchcache/Reset-BC.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/reset-bc?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/reset-bc?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-BC --- diff --git a/docset/winserver2016-ps/branchcache/Set-BCAuthentication.md b/docset/winserver2016-ps/branchcache/Set-BCAuthentication.md index 5661cd9d29..404f7ec548 100644 --- a/docset/winserver2016-ps/branchcache/Set-BCAuthentication.md +++ b/docset/winserver2016-ps/branchcache/Set-BCAuthentication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/set-bcauthentication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/set-bcauthentication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-BCAuthentication --- diff --git a/docset/winserver2016-ps/branchcache/Set-BCCache.md b/docset/winserver2016-ps/branchcache/Set-BCCache.md index 7d4f73053b..0b55fc69c3 100644 --- a/docset/winserver2016-ps/branchcache/Set-BCCache.md +++ b/docset/winserver2016-ps/branchcache/Set-BCCache.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/set-bccache?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/set-bccache?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-BCCache --- diff --git a/docset/winserver2016-ps/branchcache/Set-BCDataCacheEntryMaxAge.md b/docset/winserver2016-ps/branchcache/Set-BCDataCacheEntryMaxAge.md index 8458e1c035..51883d9f60 100644 --- a/docset/winserver2016-ps/branchcache/Set-BCDataCacheEntryMaxAge.md +++ b/docset/winserver2016-ps/branchcache/Set-BCDataCacheEntryMaxAge.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/set-bcdatacacheentrymaxage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/set-bcdatacacheentrymaxage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-BCDataCacheEntryMaxAge --- diff --git a/docset/winserver2016-ps/branchcache/Set-BCMinSMBLatency.md b/docset/winserver2016-ps/branchcache/Set-BCMinSMBLatency.md index a6498ab5cf..2a156842be 100644 --- a/docset/winserver2016-ps/branchcache/Set-BCMinSMBLatency.md +++ b/docset/winserver2016-ps/branchcache/Set-BCMinSMBLatency.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/set-bcminsmblatency?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/set-bcminsmblatency?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-BCMinSMBLatency --- diff --git a/docset/winserver2016-ps/branchcache/Set-BCSecretKey.md b/docset/winserver2016-ps/branchcache/Set-BCSecretKey.md index dcce0fdaef..e9d53d051e 100644 --- a/docset/winserver2016-ps/branchcache/Set-BCSecretKey.md +++ b/docset/winserver2016-ps/branchcache/Set-BCSecretKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/set-bcsecretkey?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/set-bcsecretkey?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-BCSecretKey --- diff --git a/docset/winserver2016-ps/clusterawareupdating/Add-CauClusterRole.md b/docset/winserver2016-ps/clusterawareupdating/Add-CauClusterRole.md index 1839ab795e..2d0c0b1809 100644 --- a/docset/winserver2016-ps/clusterawareupdating/Add-CauClusterRole.md +++ b/docset/winserver2016-ps/clusterawareupdating/Add-CauClusterRole.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/add-cauclusterrole?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/add-cauclusterrole?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-CauClusterRole --- diff --git a/docset/winserver2016-ps/clusterawareupdating/Disable-CauClusterRole.md b/docset/winserver2016-ps/clusterawareupdating/Disable-CauClusterRole.md index 5c5aff3e3e..53c0a3c896 100644 --- a/docset/winserver2016-ps/clusterawareupdating/Disable-CauClusterRole.md +++ b/docset/winserver2016-ps/clusterawareupdating/Disable-CauClusterRole.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/disable-cauclusterrole?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/disable-cauclusterrole?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-CauClusterRole --- diff --git a/docset/winserver2016-ps/clusterawareupdating/Enable-CauClusterRole.md b/docset/winserver2016-ps/clusterawareupdating/Enable-CauClusterRole.md index 20da9b4c73..0a212b0084 100644 --- a/docset/winserver2016-ps/clusterawareupdating/Enable-CauClusterRole.md +++ b/docset/winserver2016-ps/clusterawareupdating/Enable-CauClusterRole.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/enable-cauclusterrole?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/enable-cauclusterrole?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-CauClusterRole --- diff --git a/docset/winserver2016-ps/clusterawareupdating/Export-CauReport.md b/docset/winserver2016-ps/clusterawareupdating/Export-CauReport.md index e39a16b488..7043e4f32a 100644 --- a/docset/winserver2016-ps/clusterawareupdating/Export-CauReport.md +++ b/docset/winserver2016-ps/clusterawareupdating/Export-CauReport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/export-caureport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/export-caureport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-CauReport --- diff --git a/docset/winserver2016-ps/clusterawareupdating/Get-CauClusterRole.md b/docset/winserver2016-ps/clusterawareupdating/Get-CauClusterRole.md index c47b0bee1e..e973743502 100644 --- a/docset/winserver2016-ps/clusterawareupdating/Get-CauClusterRole.md +++ b/docset/winserver2016-ps/clusterawareupdating/Get-CauClusterRole.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/get-cauclusterrole?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/get-cauclusterrole?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CauClusterRole --- diff --git a/docset/winserver2016-ps/clusterawareupdating/Get-CauPlugin.md b/docset/winserver2016-ps/clusterawareupdating/Get-CauPlugin.md index d1d1f5f522..51d093d710 100644 --- a/docset/winserver2016-ps/clusterawareupdating/Get-CauPlugin.md +++ b/docset/winserver2016-ps/clusterawareupdating/Get-CauPlugin.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/get-cauplugin?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/get-cauplugin?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CauPlugin --- diff --git a/docset/winserver2016-ps/clusterawareupdating/Get-CauReport.md b/docset/winserver2016-ps/clusterawareupdating/Get-CauReport.md index 011207f456..160b6aec0c 100644 --- a/docset/winserver2016-ps/clusterawareupdating/Get-CauReport.md +++ b/docset/winserver2016-ps/clusterawareupdating/Get-CauReport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/get-caureport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/get-caureport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CauReport --- diff --git a/docset/winserver2016-ps/clusterawareupdating/Get-CauRun.md b/docset/winserver2016-ps/clusterawareupdating/Get-CauRun.md index 21599224a9..93ecd2cca2 100644 --- a/docset/winserver2016-ps/clusterawareupdating/Get-CauRun.md +++ b/docset/winserver2016-ps/clusterawareupdating/Get-CauRun.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/get-caurun?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/get-caurun?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CauRun --- diff --git a/docset/winserver2016-ps/clusterawareupdating/Invoke-CauRun.md b/docset/winserver2016-ps/clusterawareupdating/Invoke-CauRun.md index 38314c0bf5..068fa3a8a7 100644 --- a/docset/winserver2016-ps/clusterawareupdating/Invoke-CauRun.md +++ b/docset/winserver2016-ps/clusterawareupdating/Invoke-CauRun.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/invoke-caurun?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/invoke-caurun?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-CauRun --- diff --git a/docset/winserver2016-ps/clusterawareupdating/Invoke-CauScan.md b/docset/winserver2016-ps/clusterawareupdating/Invoke-CauScan.md index 5371c75537..d30732d6b3 100644 --- a/docset/winserver2016-ps/clusterawareupdating/Invoke-CauScan.md +++ b/docset/winserver2016-ps/clusterawareupdating/Invoke-CauScan.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/invoke-causcan?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/invoke-causcan?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-CauScan --- diff --git a/docset/winserver2016-ps/clusterawareupdating/Register-CauPlugin.md b/docset/winserver2016-ps/clusterawareupdating/Register-CauPlugin.md index 99c44096bd..7394d3b195 100644 --- a/docset/winserver2016-ps/clusterawareupdating/Register-CauPlugin.md +++ b/docset/winserver2016-ps/clusterawareupdating/Register-CauPlugin.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/register-cauplugin?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/register-cauplugin?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Register-CauPlugin --- diff --git a/docset/winserver2016-ps/clusterawareupdating/Remove-CauClusterRole.md b/docset/winserver2016-ps/clusterawareupdating/Remove-CauClusterRole.md index e949dc8f6b..2edfe56971 100644 --- a/docset/winserver2016-ps/clusterawareupdating/Remove-CauClusterRole.md +++ b/docset/winserver2016-ps/clusterawareupdating/Remove-CauClusterRole.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/remove-cauclusterrole?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/remove-cauclusterrole?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-CauClusterRole --- diff --git a/docset/winserver2016-ps/clusterawareupdating/Save-CauDebugTrace.md b/docset/winserver2016-ps/clusterawareupdating/Save-CauDebugTrace.md index 83010aa6e7..3861ee3d51 100644 --- a/docset/winserver2016-ps/clusterawareupdating/Save-CauDebugTrace.md +++ b/docset/winserver2016-ps/clusterawareupdating/Save-CauDebugTrace.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/save-caudebugtrace?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/save-caudebugtrace?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Save-CauDebugTrace --- diff --git a/docset/winserver2016-ps/clusterawareupdating/Set-CauClusterRole.md b/docset/winserver2016-ps/clusterawareupdating/Set-CauClusterRole.md index 0ef6f580d0..16be69110e 100644 --- a/docset/winserver2016-ps/clusterawareupdating/Set-CauClusterRole.md +++ b/docset/winserver2016-ps/clusterawareupdating/Set-CauClusterRole.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/set-cauclusterrole?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/set-cauclusterrole?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-CauClusterRole --- diff --git a/docset/winserver2016-ps/clusterawareupdating/Stop-CauRun.md b/docset/winserver2016-ps/clusterawareupdating/Stop-CauRun.md index 32b75061e6..6f360fa2c9 100644 --- a/docset/winserver2016-ps/clusterawareupdating/Stop-CauRun.md +++ b/docset/winserver2016-ps/clusterawareupdating/Stop-CauRun.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/stop-caurun?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/stop-caurun?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-CauRun --- diff --git a/docset/winserver2016-ps/clusterawareupdating/Test-CauSetup.md b/docset/winserver2016-ps/clusterawareupdating/Test-CauSetup.md index 23dfebc51e..5b40fd0e23 100644 --- a/docset/winserver2016-ps/clusterawareupdating/Test-CauSetup.md +++ b/docset/winserver2016-ps/clusterawareupdating/Test-CauSetup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/test-causetup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/test-causetup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-CauSetup --- diff --git a/docset/winserver2016-ps/clusterawareupdating/Unregister-CauPlugin.md b/docset/winserver2016-ps/clusterawareupdating/Unregister-CauPlugin.md index 49ba005125..aa814e5192 100644 --- a/docset/winserver2016-ps/clusterawareupdating/Unregister-CauPlugin.md +++ b/docset/winserver2016-ps/clusterawareupdating/Unregister-CauPlugin.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/unregister-cauplugin?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/unregister-cauplugin?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unregister-CauPlugin --- diff --git a/docset/winserver2016-ps/configci/Add-SignerRule.md b/docset/winserver2016-ps/configci/Add-SignerRule.md index 24ddbfdefc..348781c044 100644 --- a/docset/winserver2016-ps/configci/Add-SignerRule.md +++ b/docset/winserver2016-ps/configci/Add-SignerRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ConfigCI.Commands.dll-Help.xml Module Name: ConfigCI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/configci/add-signerrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/configci/add-signerrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-SignerRule --- diff --git a/docset/winserver2016-ps/configci/ConvertFrom-CIPolicy.md b/docset/winserver2016-ps/configci/ConvertFrom-CIPolicy.md index f5f6deec0d..f773ed5a51 100644 --- a/docset/winserver2016-ps/configci/ConvertFrom-CIPolicy.md +++ b/docset/winserver2016-ps/configci/ConvertFrom-CIPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ConfigCI.Commands.dll-Help.xml Module Name: ConfigCI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/configci/convertfrom-cipolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/configci/convertfrom-cipolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: ConvertFrom-CIPolicy --- diff --git a/docset/winserver2016-ps/configci/Edit-CIPolicyRule.md b/docset/winserver2016-ps/configci/Edit-CIPolicyRule.md index 631d8ef13b..5b2484fac3 100644 --- a/docset/winserver2016-ps/configci/Edit-CIPolicyRule.md +++ b/docset/winserver2016-ps/configci/Edit-CIPolicyRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ConfigCI.Commands.dll-Help.xml Module Name: ConfigCI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/configci/edit-cipolicyrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/configci/edit-cipolicyrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Edit-CIPolicyRule --- diff --git a/docset/winserver2016-ps/configci/Get-CIPolicy.md b/docset/winserver2016-ps/configci/Get-CIPolicy.md index d3b59279a2..ab744de0dd 100644 --- a/docset/winserver2016-ps/configci/Get-CIPolicy.md +++ b/docset/winserver2016-ps/configci/Get-CIPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ConfigCI.Commands.dll-Help.xml Module Name: ConfigCI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/configci/get-cipolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/configci/get-cipolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CIPolicy --- diff --git a/docset/winserver2016-ps/configci/Get-CIPolicyIdInfo.md b/docset/winserver2016-ps/configci/Get-CIPolicyIdInfo.md index 7c27fe68c9..67454a306d 100644 --- a/docset/winserver2016-ps/configci/Get-CIPolicyIdInfo.md +++ b/docset/winserver2016-ps/configci/Get-CIPolicyIdInfo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ConfigCI.Commands.dll-Help.xml Module Name: ConfigCI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/configci/get-cipolicyidinfo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/configci/get-cipolicyidinfo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CIPolicyIdInfo --- diff --git a/docset/winserver2016-ps/configci/Get-CIPolicyInfo.md b/docset/winserver2016-ps/configci/Get-CIPolicyInfo.md index fd7777e69f..0adb478035 100644 --- a/docset/winserver2016-ps/configci/Get-CIPolicyInfo.md +++ b/docset/winserver2016-ps/configci/Get-CIPolicyInfo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ConfigCI.Commands.dll-Help.xml Module Name: ConfigCI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/configci/get-cipolicyinfo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/configci/get-cipolicyinfo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CIPolicyInfo --- diff --git a/docset/winserver2016-ps/configci/Get-SystemDriver.md b/docset/winserver2016-ps/configci/Get-SystemDriver.md index a1a6183ca9..7d8af196e7 100644 --- a/docset/winserver2016-ps/configci/Get-SystemDriver.md +++ b/docset/winserver2016-ps/configci/Get-SystemDriver.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ConfigCI.Commands.dll-Help.xml Module Name: ConfigCI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/configci/get-systemdriver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/configci/get-systemdriver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SystemDriver --- diff --git a/docset/winserver2016-ps/configci/Merge-CIPolicy.md b/docset/winserver2016-ps/configci/Merge-CIPolicy.md index cbec68a6d7..17fd607be5 100644 --- a/docset/winserver2016-ps/configci/Merge-CIPolicy.md +++ b/docset/winserver2016-ps/configci/Merge-CIPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ConfigCI.Commands.dll-Help.xml Module Name: ConfigCI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/configci/merge-cipolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/configci/merge-cipolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Merge-CIPolicy --- diff --git a/docset/winserver2016-ps/configci/New-CIPolicy.md b/docset/winserver2016-ps/configci/New-CIPolicy.md index 9bb51546b4..9aa0003310 100644 --- a/docset/winserver2016-ps/configci/New-CIPolicy.md +++ b/docset/winserver2016-ps/configci/New-CIPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ConfigCI.Commands.dll-Help.xml Module Name: ConfigCI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/configci/new-cipolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/configci/new-cipolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-CIPolicy --- diff --git a/docset/winserver2016-ps/configci/New-CIPolicyRule.md b/docset/winserver2016-ps/configci/New-CIPolicyRule.md index 8b445e7530..9032c5e161 100644 --- a/docset/winserver2016-ps/configci/New-CIPolicyRule.md +++ b/docset/winserver2016-ps/configci/New-CIPolicyRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ConfigCI.Commands.dll-Help.xml Module Name: ConfigCI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/configci/new-cipolicyrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/configci/new-cipolicyrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-CIPolicyRule --- diff --git a/docset/winserver2016-ps/configci/Remove-CIPolicyRule.md b/docset/winserver2016-ps/configci/Remove-CIPolicyRule.md index 70475c18f5..1a556427d8 100644 --- a/docset/winserver2016-ps/configci/Remove-CIPolicyRule.md +++ b/docset/winserver2016-ps/configci/Remove-CIPolicyRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ConfigCI.Commands.dll-Help.xml Module Name: ConfigCI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/configci/remove-cipolicyrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/configci/remove-cipolicyrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-CIPolicyRule --- diff --git a/docset/winserver2016-ps/configci/Set-CIPolicyIdInfo.md b/docset/winserver2016-ps/configci/Set-CIPolicyIdInfo.md index e4c2f1f114..efe4b9cbab 100644 --- a/docset/winserver2016-ps/configci/Set-CIPolicyIdInfo.md +++ b/docset/winserver2016-ps/configci/Set-CIPolicyIdInfo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ConfigCI.Commands.dll-Help.xml Module Name: ConfigCI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/configci/set-cipolicyidinfo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/configci/set-cipolicyidinfo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-CIPolicyIdInfo --- diff --git a/docset/winserver2016-ps/configci/Set-CIPolicyVersion.md b/docset/winserver2016-ps/configci/Set-CIPolicyVersion.md index 1b0ef565d1..e914ecf708 100644 --- a/docset/winserver2016-ps/configci/Set-CIPolicyVersion.md +++ b/docset/winserver2016-ps/configci/Set-CIPolicyVersion.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ConfigCI.Commands.dll-Help.xml Module Name: ConfigCI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/configci/set-cipolicyversion?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/configci/set-cipolicyversion?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-CIPolicyVersion --- diff --git a/docset/winserver2016-ps/configci/Set-HVCIOptions.md b/docset/winserver2016-ps/configci/Set-HVCIOptions.md index b2229b7e98..4137a40ad2 100644 --- a/docset/winserver2016-ps/configci/Set-HVCIOptions.md +++ b/docset/winserver2016-ps/configci/Set-HVCIOptions.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ConfigCI.Commands.dll-Help.xml Module Name: ConfigCI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/configci/set-hvcioptions?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/configci/set-hvcioptions?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-HVCIOptions --- diff --git a/docset/winserver2016-ps/configci/Set-RuleOption.md b/docset/winserver2016-ps/configci/Set-RuleOption.md index 87580ba905..5c026e6054 100644 --- a/docset/winserver2016-ps/configci/Set-RuleOption.md +++ b/docset/winserver2016-ps/configci/Set-RuleOption.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ConfigCI.Commands.dll-Help.xml Module Name: ConfigCI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/configci/set-ruleoption?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/configci/set-ruleoption?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RuleOption --- diff --git a/docset/winserver2016-ps/dcbqos/Disable-NetQosFlowControl.md b/docset/winserver2016-ps/dcbqos/Disable-NetQosFlowControl.md index c5e14c7c01..6739fb65cc 100644 --- a/docset/winserver2016-ps/dcbqos/Disable-NetQosFlowControl.md +++ b/docset/winserver2016-ps/dcbqos/Disable-NetQosFlowControl.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetQosFlowControl.cdxml-help.xml Module Name: DcbQoS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/dcbqos/disable-netqosflowcontrol?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/disable-netqosflowcontrol?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetQosFlowControl --- diff --git a/docset/winserver2016-ps/dcbqos/Enable-NetQosFlowControl.md b/docset/winserver2016-ps/dcbqos/Enable-NetQosFlowControl.md index 0603772343..c02a8d3d63 100644 --- a/docset/winserver2016-ps/dcbqos/Enable-NetQosFlowControl.md +++ b/docset/winserver2016-ps/dcbqos/Enable-NetQosFlowControl.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetQosFlowControl.cdxml-help.xml Module Name: DcbQoS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/dcbqos/enable-netqosflowcontrol?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/enable-netqosflowcontrol?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetQosFlowControl --- diff --git a/docset/winserver2016-ps/dcbqos/Get-NetQosDcbxSetting.md b/docset/winserver2016-ps/dcbqos/Get-NetQosDcbxSetting.md index c5a3a8738b..412dc84a69 100644 --- a/docset/winserver2016-ps/dcbqos/Get-NetQosDcbxSetting.md +++ b/docset/winserver2016-ps/dcbqos/Get-NetQosDcbxSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetQosDcbxSetting.cdxml-help.xml Module Name: DcbQoS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/dcbqos/get-netqosdcbxsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/get-netqosdcbxsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetQosDcbxSetting --- diff --git a/docset/winserver2016-ps/dcbqos/Get-NetQosFlowControl.md b/docset/winserver2016-ps/dcbqos/Get-NetQosFlowControl.md index 3c0ac204da..bea6e189b5 100644 --- a/docset/winserver2016-ps/dcbqos/Get-NetQosFlowControl.md +++ b/docset/winserver2016-ps/dcbqos/Get-NetQosFlowControl.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetQosFlowControl.cdxml-help.xml Module Name: DcbQoS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/dcbqos/get-netqosflowcontrol?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/get-netqosflowcontrol?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetQosFlowControl --- diff --git a/docset/winserver2016-ps/dcbqos/Get-NetQosTrafficClass.md b/docset/winserver2016-ps/dcbqos/Get-NetQosTrafficClass.md index 7d81de81f3..2d63f68acc 100644 --- a/docset/winserver2016-ps/dcbqos/Get-NetQosTrafficClass.md +++ b/docset/winserver2016-ps/dcbqos/Get-NetQosTrafficClass.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetQosTrafficClass.cdxml-help.xml Module Name: DcbQoS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/dcbqos/get-netqostrafficclass?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/get-netqostrafficclass?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetQosTrafficClass --- diff --git a/docset/winserver2016-ps/dcbqos/New-NetQosTrafficClass.md b/docset/winserver2016-ps/dcbqos/New-NetQosTrafficClass.md index 9e518a0474..b6c9bd2803 100644 --- a/docset/winserver2016-ps/dcbqos/New-NetQosTrafficClass.md +++ b/docset/winserver2016-ps/dcbqos/New-NetQosTrafficClass.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetQosTrafficClass.cdxml-help.xml Module Name: DcbQoS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/dcbqos/new-netqostrafficclass?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/new-netqostrafficclass?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetQosTrafficClass --- diff --git a/docset/winserver2016-ps/dcbqos/Remove-NetQosTrafficClass.md b/docset/winserver2016-ps/dcbqos/Remove-NetQosTrafficClass.md index de62cfad5b..490d68f107 100644 --- a/docset/winserver2016-ps/dcbqos/Remove-NetQosTrafficClass.md +++ b/docset/winserver2016-ps/dcbqos/Remove-NetQosTrafficClass.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetQosTrafficClass.cdxml-help.xml Module Name: DcbQoS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/dcbqos/remove-netqostrafficclass?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/remove-netqostrafficclass?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetQosTrafficClass --- diff --git a/docset/winserver2016-ps/dcbqos/Set-NetQosDcbxSetting.md b/docset/winserver2016-ps/dcbqos/Set-NetQosDcbxSetting.md index 6e44b5e1da..378336b18c 100644 --- a/docset/winserver2016-ps/dcbqos/Set-NetQosDcbxSetting.md +++ b/docset/winserver2016-ps/dcbqos/Set-NetQosDcbxSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetQosDcbxSetting.cdxml-help.xml Module Name: DcbQoS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/dcbqos/set-netqosdcbxsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/set-netqosdcbxsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetQosDcbxSetting --- diff --git a/docset/winserver2016-ps/dcbqos/Set-NetQosFlowControl.md b/docset/winserver2016-ps/dcbqos/Set-NetQosFlowControl.md index 8d36eced31..2e67ccae02 100644 --- a/docset/winserver2016-ps/dcbqos/Set-NetQosFlowControl.md +++ b/docset/winserver2016-ps/dcbqos/Set-NetQosFlowControl.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetQosFlowControl.cdxml-help.xml Module Name: DcbQoS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/dcbqos/set-netqosflowcontrol?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/set-netqosflowcontrol?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetQosFlowControl --- diff --git a/docset/winserver2016-ps/dcbqos/Set-NetQosTrafficClass.md b/docset/winserver2016-ps/dcbqos/Set-NetQosTrafficClass.md index 482599d72e..7b63571c19 100644 --- a/docset/winserver2016-ps/dcbqos/Set-NetQosTrafficClass.md +++ b/docset/winserver2016-ps/dcbqos/Set-NetQosTrafficClass.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetQosTrafficClass.cdxml-help.xml Module Name: DcbQoS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/dcbqos/set-netqostrafficclass?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/set-netqostrafficclass?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetQosTrafficClass --- diff --git a/docset/winserver2016-ps/dcbqos/Switch-NetQosDcbxSetting.md b/docset/winserver2016-ps/dcbqos/Switch-NetQosDcbxSetting.md index 4a8e328e64..ba389589db 100644 --- a/docset/winserver2016-ps/dcbqos/Switch-NetQosDcbxSetting.md +++ b/docset/winserver2016-ps/dcbqos/Switch-NetQosDcbxSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetQosDcbxSetting.cdxml-help.xml Module Name: DcbQoS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/dcbqos/switch-netqosdcbxsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/switch-netqosdcbxsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Switch-NetQosDcbxSetting --- diff --git a/docset/winserver2016-ps/dcbqos/Switch-NetQosFlowControl.md b/docset/winserver2016-ps/dcbqos/Switch-NetQosFlowControl.md index bdf2d5c9b3..21ce0eeb89 100644 --- a/docset/winserver2016-ps/dcbqos/Switch-NetQosFlowControl.md +++ b/docset/winserver2016-ps/dcbqos/Switch-NetQosFlowControl.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetQosFlowControl.cdxml-help.xml Module Name: DcbQoS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/dcbqos/switch-netqosflowcontrol?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/switch-netqosflowcontrol?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Switch-NetQosFlowControl --- diff --git a/docset/winserver2016-ps/dcbqos/Switch-NetQosTrafficClass.md b/docset/winserver2016-ps/dcbqos/Switch-NetQosTrafficClass.md index d92a72c370..81d5f4102c 100644 --- a/docset/winserver2016-ps/dcbqos/Switch-NetQosTrafficClass.md +++ b/docset/winserver2016-ps/dcbqos/Switch-NetQosTrafficClass.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetQosTrafficClass.cdxml-help.xml Module Name: DcbQoS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/dcbqos/switch-netqostrafficclass?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/switch-netqostrafficclass?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Switch-NetQosTrafficClass --- diff --git a/docset/winserver2016-ps/deduplication/Disable-DedupVolume.md b/docset/winserver2016-ps/deduplication/Disable-DedupVolume.md index 6747fe01c8..e4e17ddef5 100644 --- a/docset/winserver2016-ps/deduplication/Disable-DedupVolume.md +++ b/docset/winserver2016-ps/deduplication/Disable-DedupVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DedupVolume.cdxml-help.xml Module Name: Deduplication ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/deduplication/disable-dedupvolume?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/disable-dedupvolume?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-DedupVolume --- diff --git a/docset/winserver2016-ps/deduplication/Enable-DedupVolume.md b/docset/winserver2016-ps/deduplication/Enable-DedupVolume.md index 2e38662e07..a13d05f208 100644 --- a/docset/winserver2016-ps/deduplication/Enable-DedupVolume.md +++ b/docset/winserver2016-ps/deduplication/Enable-DedupVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DedupVolume.cdxml-help.xml Module Name: Deduplication ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/deduplication/enable-dedupvolume?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/enable-dedupvolume?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-DedupVolume --- diff --git a/docset/winserver2016-ps/deduplication/Expand-DedupFile.md b/docset/winserver2016-ps/deduplication/Expand-DedupFile.md index 4ce9b0b3f0..b7cb6a71ca 100644 --- a/docset/winserver2016-ps/deduplication/Expand-DedupFile.md +++ b/docset/winserver2016-ps/deduplication/Expand-DedupFile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DedupVolume.cdxml-help.xml Module Name: Deduplication ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/deduplication/expand-dedupfile?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/expand-dedupfile?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Expand-DedupFile --- diff --git a/docset/winserver2016-ps/deduplication/Get-DedupJob.md b/docset/winserver2016-ps/deduplication/Get-DedupJob.md index 90304de7b5..616f3da3ce 100644 --- a/docset/winserver2016-ps/deduplication/Get-DedupJob.md +++ b/docset/winserver2016-ps/deduplication/Get-DedupJob.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DedupJob.cdxml-help.xml Module Name: Deduplication ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/deduplication/get-dedupjob?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/get-dedupjob?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DedupJob --- diff --git a/docset/winserver2016-ps/deduplication/Get-DedupMetadata.md b/docset/winserver2016-ps/deduplication/Get-DedupMetadata.md index c84b6c5c7c..2168acf242 100644 --- a/docset/winserver2016-ps/deduplication/Get-DedupMetadata.md +++ b/docset/winserver2016-ps/deduplication/Get-DedupMetadata.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DedupMetadata.cdxml-help.xml Module Name: Deduplication ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/deduplication/get-dedupmetadata?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/get-dedupmetadata?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DedupMetadata --- diff --git a/docset/winserver2016-ps/deduplication/Get-DedupSchedule.md b/docset/winserver2016-ps/deduplication/Get-DedupSchedule.md index e8ab60ba31..33d2f867f0 100644 --- a/docset/winserver2016-ps/deduplication/Get-DedupSchedule.md +++ b/docset/winserver2016-ps/deduplication/Get-DedupSchedule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DedupSchedule.cdxml-help.xml Module Name: Deduplication ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/deduplication/get-dedupschedule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/get-dedupschedule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DedupSchedule --- diff --git a/docset/winserver2016-ps/deduplication/Get-DedupStatus.md b/docset/winserver2016-ps/deduplication/Get-DedupStatus.md index 58f6fd3c6d..b26bd26db8 100644 --- a/docset/winserver2016-ps/deduplication/Get-DedupStatus.md +++ b/docset/winserver2016-ps/deduplication/Get-DedupStatus.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DedupStatus.cdxml-help.xml Module Name: Deduplication ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/deduplication/get-dedupstatus?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/get-dedupstatus?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DedupStatus --- diff --git a/docset/winserver2016-ps/deduplication/Get-DedupVolume.md b/docset/winserver2016-ps/deduplication/Get-DedupVolume.md index 30dcde1f72..c67f2cff75 100644 --- a/docset/winserver2016-ps/deduplication/Get-DedupVolume.md +++ b/docset/winserver2016-ps/deduplication/Get-DedupVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DedupVolume.cdxml-help.xml Module Name: Deduplication ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/deduplication/get-dedupvolume?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/get-dedupvolume?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DedupVolume --- diff --git a/docset/winserver2016-ps/deduplication/Measure-DedupFileMetadata.md b/docset/winserver2016-ps/deduplication/Measure-DedupFileMetadata.md index ab7e522153..cb37b8aa2d 100644 --- a/docset/winserver2016-ps/deduplication/Measure-DedupFileMetadata.md +++ b/docset/winserver2016-ps/deduplication/Measure-DedupFileMetadata.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DedupFileMetadata.cdxml-help.xml Module Name: Deduplication ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/deduplication/measure-dedupfilemetadata?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/measure-dedupfilemetadata?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Measure-DedupFileMetadata --- diff --git a/docset/winserver2016-ps/deduplication/New-DedupSchedule.md b/docset/winserver2016-ps/deduplication/New-DedupSchedule.md index ef46949c2d..199c8b2c3d 100644 --- a/docset/winserver2016-ps/deduplication/New-DedupSchedule.md +++ b/docset/winserver2016-ps/deduplication/New-DedupSchedule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DedupSchedule.cdxml-help.xml Module Name: Deduplication ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/deduplication/new-dedupschedule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/new-dedupschedule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-DedupSchedule --- diff --git a/docset/winserver2016-ps/deduplication/Remove-DedupSchedule.md b/docset/winserver2016-ps/deduplication/Remove-DedupSchedule.md index dbf765e256..6ba99d0dcc 100644 --- a/docset/winserver2016-ps/deduplication/Remove-DedupSchedule.md +++ b/docset/winserver2016-ps/deduplication/Remove-DedupSchedule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DedupSchedule.cdxml-help.xml Module Name: Deduplication ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/deduplication/remove-dedupschedule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/remove-dedupschedule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DedupSchedule --- diff --git a/docset/winserver2016-ps/deduplication/Set-DedupSchedule.md b/docset/winserver2016-ps/deduplication/Set-DedupSchedule.md index 451388c683..4ad53f4b70 100644 --- a/docset/winserver2016-ps/deduplication/Set-DedupSchedule.md +++ b/docset/winserver2016-ps/deduplication/Set-DedupSchedule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DedupSchedule.cdxml-help.xml Module Name: Deduplication ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/deduplication/set-dedupschedule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/set-dedupschedule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DedupSchedule --- diff --git a/docset/winserver2016-ps/deduplication/Set-DedupVolume.md b/docset/winserver2016-ps/deduplication/Set-DedupVolume.md index 35ca078cc6..4f2e1352fe 100644 --- a/docset/winserver2016-ps/deduplication/Set-DedupVolume.md +++ b/docset/winserver2016-ps/deduplication/Set-DedupVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DedupVolume.cdxml-help.xml Module Name: Deduplication ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/deduplication/set-dedupvolume?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/set-dedupvolume?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DedupVolume --- diff --git a/docset/winserver2016-ps/deduplication/Start-DedupJob.md b/docset/winserver2016-ps/deduplication/Start-DedupJob.md index 9e55bc0cfa..bf38138c5d 100644 --- a/docset/winserver2016-ps/deduplication/Start-DedupJob.md +++ b/docset/winserver2016-ps/deduplication/Start-DedupJob.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DedupJob.cdxml-help.xml Module Name: Deduplication ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/deduplication/start-dedupjob?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/start-dedupjob?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-DedupJob --- diff --git a/docset/winserver2016-ps/deduplication/Stop-DedupJob.md b/docset/winserver2016-ps/deduplication/Stop-DedupJob.md index 694aae3da2..e6f02d6cd4 100644 --- a/docset/winserver2016-ps/deduplication/Stop-DedupJob.md +++ b/docset/winserver2016-ps/deduplication/Stop-DedupJob.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DedupJob.cdxml-help.xml Module Name: Deduplication ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/deduplication/stop-dedupjob?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/stop-dedupjob?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-DedupJob --- diff --git a/docset/winserver2016-ps/deduplication/Update-DedupStatus.md b/docset/winserver2016-ps/deduplication/Update-DedupStatus.md index 582d876b48..38da32c3bc 100644 --- a/docset/winserver2016-ps/deduplication/Update-DedupStatus.md +++ b/docset/winserver2016-ps/deduplication/Update-DedupStatus.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DedupStatus.cdxml-help.xml Module Name: Deduplication ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/deduplication/update-dedupstatus?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/update-dedupstatus?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-DedupStatus --- diff --git a/docset/winserver2016-ps/defender/Add-MpPreference.md b/docset/winserver2016-ps/defender/Add-MpPreference.md index f3d8035cda..716fc5d5e3 100644 --- a/docset/winserver2016-ps/defender/Add-MpPreference.md +++ b/docset/winserver2016-ps/defender/Add-MpPreference.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_MpPreference.cdxml-help.xml Module Name: Defender ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/defender/add-mppreference?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/defender/add-mppreference?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-MpPreference --- diff --git a/docset/winserver2016-ps/defender/Get-MpComputerStatus.md b/docset/winserver2016-ps/defender/Get-MpComputerStatus.md index 84b9064703..b1172f5a4a 100644 --- a/docset/winserver2016-ps/defender/Get-MpComputerStatus.md +++ b/docset/winserver2016-ps/defender/Get-MpComputerStatus.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_MpComputerStatus.cdxml-help.xml Module Name: Defender ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/defender/get-mpcomputerstatus?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/defender/get-mpcomputerstatus?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MpComputerStatus --- diff --git a/docset/winserver2016-ps/defender/Get-MpPreference.md b/docset/winserver2016-ps/defender/Get-MpPreference.md index a8642dab27..7e2f928be4 100644 --- a/docset/winserver2016-ps/defender/Get-MpPreference.md +++ b/docset/winserver2016-ps/defender/Get-MpPreference.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_MpPreference.cdxml-help.xml Module Name: Defender ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/defender/get-mppreference?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/defender/get-mppreference?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MpPreference --- diff --git a/docset/winserver2016-ps/defender/Get-MpThreat.md b/docset/winserver2016-ps/defender/Get-MpThreat.md index ff08f82036..4f66e92948 100644 --- a/docset/winserver2016-ps/defender/Get-MpThreat.md +++ b/docset/winserver2016-ps/defender/Get-MpThreat.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_MpThreat.cdxml-help.xml Module Name: Defender ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/defender/get-mpthreat?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/defender/get-mpthreat?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MpThreat --- diff --git a/docset/winserver2016-ps/defender/Get-MpThreatCatalog.md b/docset/winserver2016-ps/defender/Get-MpThreatCatalog.md index 60a4900eba..f011ed4863 100644 --- a/docset/winserver2016-ps/defender/Get-MpThreatCatalog.md +++ b/docset/winserver2016-ps/defender/Get-MpThreatCatalog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_MpThreatCatalog.cdxml-help.xml Module Name: Defender ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/defender/get-mpthreatcatalog?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/defender/get-mpthreatcatalog?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MpThreatCatalog --- diff --git a/docset/winserver2016-ps/defender/Get-MpThreatDetection.md b/docset/winserver2016-ps/defender/Get-MpThreatDetection.md index 4907a01816..9d5d3d3866 100644 --- a/docset/winserver2016-ps/defender/Get-MpThreatDetection.md +++ b/docset/winserver2016-ps/defender/Get-MpThreatDetection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_MpThreatDetection.cdxml-help.xml Module Name: Defender ms.date: 09/19/2018 -online version: https://docs.microsoft.com/powershell/module/defender/get-mpthreatdetection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/defender/get-mpthreatdetection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MpThreatDetection --- diff --git a/docset/winserver2016-ps/defender/Remove-MpPreference.md b/docset/winserver2016-ps/defender/Remove-MpPreference.md index a6738a3486..e3175b6110 100644 --- a/docset/winserver2016-ps/defender/Remove-MpPreference.md +++ b/docset/winserver2016-ps/defender/Remove-MpPreference.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_MpPreference.cdxml-help.xml Module Name: Defender ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/defender/remove-mppreference?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/defender/remove-mppreference?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-MpPreference --- diff --git a/docset/winserver2016-ps/defender/Remove-MpThreat.md b/docset/winserver2016-ps/defender/Remove-MpThreat.md index cbf251fc46..f04fa7f21a 100644 --- a/docset/winserver2016-ps/defender/Remove-MpThreat.md +++ b/docset/winserver2016-ps/defender/Remove-MpThreat.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_MpThreat.cdxml-help.xml Module Name: Defender ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/defender/remove-mpthreat?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/defender/remove-mpthreat?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-MpThreat --- diff --git a/docset/winserver2016-ps/defender/Set-MpPreference.md b/docset/winserver2016-ps/defender/Set-MpPreference.md index c157c7fe93..0f158508da 100644 --- a/docset/winserver2016-ps/defender/Set-MpPreference.md +++ b/docset/winserver2016-ps/defender/Set-MpPreference.md @@ -3,7 +3,7 @@ description: Use this article to help manage Windows and Windows Server technolo external help file: MSFT_MpPreference.cdxml-help.xml Module Name: Defender ms.date: 08/30/2022 -online version: https://docs.microsoft.com/powershell/module/defender/set-mppreference?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/defender/set-mppreference?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-MpPreference --- diff --git a/docset/winserver2016-ps/defender/Start-MpScan.md b/docset/winserver2016-ps/defender/Start-MpScan.md index e4e404553a..9e1d55b0b6 100644 --- a/docset/winserver2016-ps/defender/Start-MpScan.md +++ b/docset/winserver2016-ps/defender/Start-MpScan.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_MpScan.cdxml-help.xml Module Name: Defender ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/defender/start-mpscan?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/defender/start-mpscan?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-MpScan --- diff --git a/docset/winserver2016-ps/defender/Start-MpWDOScan.md b/docset/winserver2016-ps/defender/Start-MpWDOScan.md index f7f02ce409..19d79b480a 100644 --- a/docset/winserver2016-ps/defender/Start-MpWDOScan.md +++ b/docset/winserver2016-ps/defender/Start-MpWDOScan.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_MpWDOScan.cdxml-help.xml Module Name: Defender ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/defender/start-mpwdoscan?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/defender/start-mpwdoscan?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-MpWDOScan --- diff --git a/docset/winserver2016-ps/defender/Update-MpSignature.md b/docset/winserver2016-ps/defender/Update-MpSignature.md index a92cf772b5..70e44c4a36 100644 --- a/docset/winserver2016-ps/defender/Update-MpSignature.md +++ b/docset/winserver2016-ps/defender/Update-MpSignature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_MpSignature.cdxml-help.xml Module Name: Defender ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/defender/update-mpsignature?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/defender/update-mpsignature?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-MpSignature --- diff --git a/docset/winserver2016-ps/devicehealthattestation/Backup-DHASConfiguration.md b/docset/winserver2016-ps/devicehealthattestation/Backup-DHASConfiguration.md index b6d1d0023d..d4ac2ecee7 100644 --- a/docset/winserver2016-ps/devicehealthattestation/Backup-DHASConfiguration.md +++ b/docset/winserver2016-ps/devicehealthattestation/Backup-DHASConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.DeviceHealthAttestation.PowerShell.dll-Help.xml Module Name: DeviceHealthAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/devicehealthattestation/backup-dhasconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/devicehealthattestation/backup-dhasconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Backup-DHASConfiguration --- diff --git a/docset/winserver2016-ps/devicehealthattestation/Get-DHASActiveEncryptionCertificate.md b/docset/winserver2016-ps/devicehealthattestation/Get-DHASActiveEncryptionCertificate.md index 10c0a7f357..9d6d91c89a 100644 --- a/docset/winserver2016-ps/devicehealthattestation/Get-DHASActiveEncryptionCertificate.md +++ b/docset/winserver2016-ps/devicehealthattestation/Get-DHASActiveEncryptionCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.DeviceHealthAttestation.PowerShell.dll-Help.xml Module Name: DeviceHealthAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/devicehealthattestation/get-dhasactiveencryptioncertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/devicehealthattestation/get-dhasactiveencryptioncertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DHASActiveEncryptionCertificate --- diff --git a/docset/winserver2016-ps/devicehealthattestation/Get-DHASActiveSigningCertificate.md b/docset/winserver2016-ps/devicehealthattestation/Get-DHASActiveSigningCertificate.md index bb5cf7550f..43e256d00e 100644 --- a/docset/winserver2016-ps/devicehealthattestation/Get-DHASActiveSigningCertificate.md +++ b/docset/winserver2016-ps/devicehealthattestation/Get-DHASActiveSigningCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.DeviceHealthAttestation.PowerShell.dll-Help.xml Module Name: DeviceHealthAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/devicehealthattestation/get-dhasactivesigningcertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/devicehealthattestation/get-dhasactivesigningcertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DHASActiveSigningCertificate --- diff --git a/docset/winserver2016-ps/devicehealthattestation/Get-DHASCertificateChainPolicy.md b/docset/winserver2016-ps/devicehealthattestation/Get-DHASCertificateChainPolicy.md index df8b339bc1..1dfcfe33ad 100644 --- a/docset/winserver2016-ps/devicehealthattestation/Get-DHASCertificateChainPolicy.md +++ b/docset/winserver2016-ps/devicehealthattestation/Get-DHASCertificateChainPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.DeviceHealthAttestation.PowerShell.dll-Help.xml Module Name: DeviceHealthAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/devicehealthattestation/get-dhascertificatechainpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/devicehealthattestation/get-dhascertificatechainpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DHASCertificateChainPolicy --- diff --git a/docset/winserver2016-ps/devicehealthattestation/Get-DHASInactiveEncryptionCertificate.md b/docset/winserver2016-ps/devicehealthattestation/Get-DHASInactiveEncryptionCertificate.md index 2c1c37506c..7d171456e7 100644 --- a/docset/winserver2016-ps/devicehealthattestation/Get-DHASInactiveEncryptionCertificate.md +++ b/docset/winserver2016-ps/devicehealthattestation/Get-DHASInactiveEncryptionCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.DeviceHealthAttestation.PowerShell.dll-Help.xml Module Name: DeviceHealthAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/devicehealthattestation/get-dhasinactiveencryptioncertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/devicehealthattestation/get-dhasinactiveencryptioncertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DHASInactiveEncryptionCertificate --- diff --git a/docset/winserver2016-ps/devicehealthattestation/Get-DHASInactiveSigningCertificate.md b/docset/winserver2016-ps/devicehealthattestation/Get-DHASInactiveSigningCertificate.md index 2701c17f8e..02205dcb70 100644 --- a/docset/winserver2016-ps/devicehealthattestation/Get-DHASInactiveSigningCertificate.md +++ b/docset/winserver2016-ps/devicehealthattestation/Get-DHASInactiveSigningCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.DeviceHealthAttestation.PowerShell.dll-Help.xml Module Name: DeviceHealthAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/devicehealthattestation/get-dhasinactivesigningcertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/devicehealthattestation/get-dhasinactivesigningcertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DHASInactiveSigningCertificate --- diff --git a/docset/winserver2016-ps/devicehealthattestation/Install-DeviceHealthAttestation.md b/docset/winserver2016-ps/devicehealthattestation/Install-DeviceHealthAttestation.md index 89573048bd..53ae4dff09 100644 --- a/docset/winserver2016-ps/devicehealthattestation/Install-DeviceHealthAttestation.md +++ b/docset/winserver2016-ps/devicehealthattestation/Install-DeviceHealthAttestation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.DeviceHealthAttestation.PowerShell.dll-Help.xml Module Name: DeviceHealthAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/devicehealthattestation/install-devicehealthattestation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/devicehealthattestation/install-devicehealthattestation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-DeviceHealthAttestation --- diff --git a/docset/winserver2016-ps/devicehealthattestation/Remove-DHASInactiveEncryptionCertificate.md b/docset/winserver2016-ps/devicehealthattestation/Remove-DHASInactiveEncryptionCertificate.md index 1d1ec14af3..883c7274e5 100644 --- a/docset/winserver2016-ps/devicehealthattestation/Remove-DHASInactiveEncryptionCertificate.md +++ b/docset/winserver2016-ps/devicehealthattestation/Remove-DHASInactiveEncryptionCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.DeviceHealthAttestation.PowerShell.dll-Help.xml Module Name: DeviceHealthAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/devicehealthattestation/remove-dhasinactiveencryptioncertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/devicehealthattestation/remove-dhasinactiveencryptioncertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DHASInactiveEncryptionCertificate --- diff --git a/docset/winserver2016-ps/devicehealthattestation/Remove-DHASInactiveSigningCertificate.md b/docset/winserver2016-ps/devicehealthattestation/Remove-DHASInactiveSigningCertificate.md index 2c59f36c6f..29ac0b8031 100644 --- a/docset/winserver2016-ps/devicehealthattestation/Remove-DHASInactiveSigningCertificate.md +++ b/docset/winserver2016-ps/devicehealthattestation/Remove-DHASInactiveSigningCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.DeviceHealthAttestation.PowerShell.dll-Help.xml Module Name: DeviceHealthAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/devicehealthattestation/remove-dhasinactivesigningcertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/devicehealthattestation/remove-dhasinactivesigningcertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DHASInactiveSigningCertificate --- diff --git a/docset/winserver2016-ps/devicehealthattestation/Restore-DHASConfiguration.md b/docset/winserver2016-ps/devicehealthattestation/Restore-DHASConfiguration.md index 33ec2d3157..2e51a6fa6b 100644 --- a/docset/winserver2016-ps/devicehealthattestation/Restore-DHASConfiguration.md +++ b/docset/winserver2016-ps/devicehealthattestation/Restore-DHASConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.DeviceHealthAttestation.PowerShell.dll-Help.xml Module Name: DeviceHealthAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/devicehealthattestation/restore-dhasconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/devicehealthattestation/restore-dhasconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-DHASConfiguration --- diff --git a/docset/winserver2016-ps/devicehealthattestation/Set-DHASActiveEncryptionCertificate.md b/docset/winserver2016-ps/devicehealthattestation/Set-DHASActiveEncryptionCertificate.md index c76bf237d7..6215503959 100644 --- a/docset/winserver2016-ps/devicehealthattestation/Set-DHASActiveEncryptionCertificate.md +++ b/docset/winserver2016-ps/devicehealthattestation/Set-DHASActiveEncryptionCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.DeviceHealthAttestation.PowerShell.dll-Help.xml Module Name: DeviceHealthAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/devicehealthattestation/set-dhasactiveencryptioncertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/devicehealthattestation/set-dhasactiveencryptioncertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DHASActiveEncryptionCertificate --- diff --git a/docset/winserver2016-ps/devicehealthattestation/Set-DHASActiveSigningCertificate.md b/docset/winserver2016-ps/devicehealthattestation/Set-DHASActiveSigningCertificate.md index 8e7ce86488..fa09286dae 100644 --- a/docset/winserver2016-ps/devicehealthattestation/Set-DHASActiveSigningCertificate.md +++ b/docset/winserver2016-ps/devicehealthattestation/Set-DHASActiveSigningCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.DeviceHealthAttestation.PowerShell.dll-Help.xml Module Name: DeviceHealthAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/devicehealthattestation/set-dhasactivesigningcertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/devicehealthattestation/set-dhasactivesigningcertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DHASActiveSigningCertificate --- diff --git a/docset/winserver2016-ps/devicehealthattestation/Set-DHASCertificateChainPolicy.md b/docset/winserver2016-ps/devicehealthattestation/Set-DHASCertificateChainPolicy.md index 5b961d038a..e898729f7e 100644 --- a/docset/winserver2016-ps/devicehealthattestation/Set-DHASCertificateChainPolicy.md +++ b/docset/winserver2016-ps/devicehealthattestation/Set-DHASCertificateChainPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.DeviceHealthAttestation.PowerShell.dll-Help.xml Module Name: DeviceHealthAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/devicehealthattestation/set-dhascertificatechainpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/devicehealthattestation/set-dhascertificatechainpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DHASCertificateChainPolicy --- diff --git a/docset/winserver2016-ps/devicehealthattestation/Set-DHASSupportedAuthenticationSchema.md b/docset/winserver2016-ps/devicehealthattestation/Set-DHASSupportedAuthenticationSchema.md index b1f571867f..c4b16630b6 100644 --- a/docset/winserver2016-ps/devicehealthattestation/Set-DHASSupportedAuthenticationSchema.md +++ b/docset/winserver2016-ps/devicehealthattestation/Set-DHASSupportedAuthenticationSchema.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.DeviceHealthAttestation.PowerShell.dll-Help.xml Module Name: DeviceHealthAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/devicehealthattestation/set-dhassupportedauthenticationschema?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/devicehealthattestation/set-dhassupportedauthenticationschema?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DHASSupportedAuthenticationSchema --- diff --git a/docset/winserver2016-ps/devicehealthattestation/Uninstall-DeviceHealthAttestation.md b/docset/winserver2016-ps/devicehealthattestation/Uninstall-DeviceHealthAttestation.md index e3f755b4f8..5b69dacb2d 100644 --- a/docset/winserver2016-ps/devicehealthattestation/Uninstall-DeviceHealthAttestation.md +++ b/docset/winserver2016-ps/devicehealthattestation/Uninstall-DeviceHealthAttestation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.DeviceHealthAttestation.PowerShell.dll-Help.xml Module Name: DeviceHealthAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/devicehealthattestation/uninstall-devicehealthattestation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/devicehealthattestation/uninstall-devicehealthattestation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-DeviceHealthAttestation --- diff --git a/docset/winserver2016-ps/dfsn/Get-DfsnAccess.md b/docset/winserver2016-ps/dfsn/Get-DfsnAccess.md index 824eb91aa6..6a6c374583 100644 --- a/docset/winserver2016-ps/dfsn/Get-DfsnAccess.md +++ b/docset/winserver2016-ps/dfsn/Get-DfsnAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceAccess.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/get-dfsnaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/get-dfsnaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsnAccess --- diff --git a/docset/winserver2016-ps/dfsn/Get-DfsnFolder.md b/docset/winserver2016-ps/dfsn/Get-DfsnFolder.md index 48a8711ba8..abe64a4f49 100644 --- a/docset/winserver2016-ps/dfsn/Get-DfsnFolder.md +++ b/docset/winserver2016-ps/dfsn/Get-DfsnFolder.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceFolder.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/get-dfsnfolder?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/get-dfsnfolder?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsnFolder --- diff --git a/docset/winserver2016-ps/dfsn/Get-DfsnFolderTarget.md b/docset/winserver2016-ps/dfsn/Get-DfsnFolderTarget.md index f8da8d6aa8..746e69b2c2 100644 --- a/docset/winserver2016-ps/dfsn/Get-DfsnFolderTarget.md +++ b/docset/winserver2016-ps/dfsn/Get-DfsnFolderTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceFolderTarget.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/get-dfsnfoldertarget?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/get-dfsnfoldertarget?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsnFolderTarget --- diff --git a/docset/winserver2016-ps/dfsn/Get-DfsnRoot.md b/docset/winserver2016-ps/dfsn/Get-DfsnRoot.md index ba61697b2d..9d99a92f8e 100644 --- a/docset/winserver2016-ps/dfsn/Get-DfsnRoot.md +++ b/docset/winserver2016-ps/dfsn/Get-DfsnRoot.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespace.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/get-dfsnroot?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/get-dfsnroot?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsnRoot --- diff --git a/docset/winserver2016-ps/dfsn/Get-DfsnRootTarget.md b/docset/winserver2016-ps/dfsn/Get-DfsnRootTarget.md index abe8fb5d66..5e0ee9be1a 100644 --- a/docset/winserver2016-ps/dfsn/Get-DfsnRootTarget.md +++ b/docset/winserver2016-ps/dfsn/Get-DfsnRootTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceRootTarget.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/get-dfsnroottarget?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/get-dfsnroottarget?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsnRootTarget --- diff --git a/docset/winserver2016-ps/dfsn/Get-DfsnServerConfiguration.md b/docset/winserver2016-ps/dfsn/Get-DfsnServerConfiguration.md index fe2dc91ce4..5e7daeb2fa 100644 --- a/docset/winserver2016-ps/dfsn/Get-DfsnServerConfiguration.md +++ b/docset/winserver2016-ps/dfsn/Get-DfsnServerConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceServerConfig.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/get-dfsnserverconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/get-dfsnserverconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsnServerConfiguration --- diff --git a/docset/winserver2016-ps/dfsn/Grant-DfsnAccess.md b/docset/winserver2016-ps/dfsn/Grant-DfsnAccess.md index 5842da30b2..fb516659b7 100644 --- a/docset/winserver2016-ps/dfsn/Grant-DfsnAccess.md +++ b/docset/winserver2016-ps/dfsn/Grant-DfsnAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceAccess.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/grant-dfsnaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/grant-dfsnaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Grant-DfsnAccess --- diff --git a/docset/winserver2016-ps/dfsn/Move-DfsnFolder.md b/docset/winserver2016-ps/dfsn/Move-DfsnFolder.md index 6b822aba59..16b1ea9725 100644 --- a/docset/winserver2016-ps/dfsn/Move-DfsnFolder.md +++ b/docset/winserver2016-ps/dfsn/Move-DfsnFolder.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceFolder.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/move-dfsnfolder?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/move-dfsnfolder?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-DfsnFolder --- diff --git a/docset/winserver2016-ps/dfsn/New-DfsnFolder.md b/docset/winserver2016-ps/dfsn/New-DfsnFolder.md index 2eb1953d56..8117ead686 100644 --- a/docset/winserver2016-ps/dfsn/New-DfsnFolder.md +++ b/docset/winserver2016-ps/dfsn/New-DfsnFolder.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceFolder.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/new-dfsnfolder?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/new-dfsnfolder?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-DfsnFolder --- diff --git a/docset/winserver2016-ps/dfsn/New-DfsnFolderTarget.md b/docset/winserver2016-ps/dfsn/New-DfsnFolderTarget.md index 27207c78e4..8b5a07c5b2 100644 --- a/docset/winserver2016-ps/dfsn/New-DfsnFolderTarget.md +++ b/docset/winserver2016-ps/dfsn/New-DfsnFolderTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceFolderTarget.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/new-dfsnfoldertarget?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/new-dfsnfoldertarget?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-DfsnFolderTarget --- diff --git a/docset/winserver2016-ps/dfsn/New-DfsnRoot.md b/docset/winserver2016-ps/dfsn/New-DfsnRoot.md index 8e8617763d..396eef1dea 100644 --- a/docset/winserver2016-ps/dfsn/New-DfsnRoot.md +++ b/docset/winserver2016-ps/dfsn/New-DfsnRoot.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespace.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/new-dfsnroot?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/new-dfsnroot?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-DfsnRoot --- diff --git a/docset/winserver2016-ps/dfsn/New-DfsnRootTarget.md b/docset/winserver2016-ps/dfsn/New-DfsnRootTarget.md index bae2e59979..a3667ac2ea 100644 --- a/docset/winserver2016-ps/dfsn/New-DfsnRootTarget.md +++ b/docset/winserver2016-ps/dfsn/New-DfsnRootTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceRootTarget.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/new-dfsnroottarget?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/new-dfsnroottarget?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-DfsnRootTarget --- diff --git a/docset/winserver2016-ps/dfsn/Remove-DfsnAccess.md b/docset/winserver2016-ps/dfsn/Remove-DfsnAccess.md index e7ee73dcaf..8563c01e0e 100644 --- a/docset/winserver2016-ps/dfsn/Remove-DfsnAccess.md +++ b/docset/winserver2016-ps/dfsn/Remove-DfsnAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceAccess.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/remove-dfsnaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/remove-dfsnaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DfsnAccess --- diff --git a/docset/winserver2016-ps/dfsn/Remove-DfsnFolder.md b/docset/winserver2016-ps/dfsn/Remove-DfsnFolder.md index 9cce967918..4d1ec2255d 100644 --- a/docset/winserver2016-ps/dfsn/Remove-DfsnFolder.md +++ b/docset/winserver2016-ps/dfsn/Remove-DfsnFolder.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceFolder.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/remove-dfsnfolder?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/remove-dfsnfolder?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DfsnFolder --- diff --git a/docset/winserver2016-ps/dfsn/Remove-DfsnFolderTarget.md b/docset/winserver2016-ps/dfsn/Remove-DfsnFolderTarget.md index a41b54e426..c6c477b92f 100644 --- a/docset/winserver2016-ps/dfsn/Remove-DfsnFolderTarget.md +++ b/docset/winserver2016-ps/dfsn/Remove-DfsnFolderTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceFolderTarget.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/remove-dfsnfoldertarget?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/remove-dfsnfoldertarget?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DfsnFolderTarget --- diff --git a/docset/winserver2016-ps/dfsn/Remove-DfsnRoot.md b/docset/winserver2016-ps/dfsn/Remove-DfsnRoot.md index 7334021f5e..2ea4790d0f 100644 --- a/docset/winserver2016-ps/dfsn/Remove-DfsnRoot.md +++ b/docset/winserver2016-ps/dfsn/Remove-DfsnRoot.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespace.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/remove-dfsnroot?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/remove-dfsnroot?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DfsnRoot --- diff --git a/docset/winserver2016-ps/dfsn/Remove-DfsnRootTarget.md b/docset/winserver2016-ps/dfsn/Remove-DfsnRootTarget.md index f733fe2b10..280adaf86e 100644 --- a/docset/winserver2016-ps/dfsn/Remove-DfsnRootTarget.md +++ b/docset/winserver2016-ps/dfsn/Remove-DfsnRootTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceRootTarget.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/remove-dfsnroottarget?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/remove-dfsnroottarget?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DfsnRootTarget --- diff --git a/docset/winserver2016-ps/dfsn/Revoke-DfsnAccess.md b/docset/winserver2016-ps/dfsn/Revoke-DfsnAccess.md index bd2ccaad01..2715a8d093 100644 --- a/docset/winserver2016-ps/dfsn/Revoke-DfsnAccess.md +++ b/docset/winserver2016-ps/dfsn/Revoke-DfsnAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceAccess.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/revoke-dfsnaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/revoke-dfsnaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Revoke-DfsnAccess --- diff --git a/docset/winserver2016-ps/dfsn/Set-DfsnFolder.md b/docset/winserver2016-ps/dfsn/Set-DfsnFolder.md index aabc33d1bc..c59c7bbc63 100644 --- a/docset/winserver2016-ps/dfsn/Set-DfsnFolder.md +++ b/docset/winserver2016-ps/dfsn/Set-DfsnFolder.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceFolder.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/set-dfsnfolder?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/set-dfsnfolder?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DfsnFolder --- diff --git a/docset/winserver2016-ps/dfsn/Set-DfsnFolderTarget.md b/docset/winserver2016-ps/dfsn/Set-DfsnFolderTarget.md index b319018bee..6feb2a7cbd 100644 --- a/docset/winserver2016-ps/dfsn/Set-DfsnFolderTarget.md +++ b/docset/winserver2016-ps/dfsn/Set-DfsnFolderTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceFolderTarget.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/set-dfsnfoldertarget?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/set-dfsnfoldertarget?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DfsnFolderTarget --- diff --git a/docset/winserver2016-ps/dfsn/Set-DfsnRoot.md b/docset/winserver2016-ps/dfsn/Set-DfsnRoot.md index d3ec9b65c7..51db5acac5 100644 --- a/docset/winserver2016-ps/dfsn/Set-DfsnRoot.md +++ b/docset/winserver2016-ps/dfsn/Set-DfsnRoot.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespace.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/set-dfsnroot?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/set-dfsnroot?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DfsnRoot --- diff --git a/docset/winserver2016-ps/dfsn/Set-DfsnRootTarget.md b/docset/winserver2016-ps/dfsn/Set-DfsnRootTarget.md index 3d49f477b3..383d72373a 100644 --- a/docset/winserver2016-ps/dfsn/Set-DfsnRootTarget.md +++ b/docset/winserver2016-ps/dfsn/Set-DfsnRootTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceRootTarget.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/set-dfsnroottarget?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/set-dfsnroottarget?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DfsnRootTarget --- diff --git a/docset/winserver2016-ps/dfsn/Set-DfsnServerConfiguration.md b/docset/winserver2016-ps/dfsn/Set-DfsnServerConfiguration.md index d57ccc8425..5e71658e5b 100644 --- a/docset/winserver2016-ps/dfsn/Set-DfsnServerConfiguration.md +++ b/docset/winserver2016-ps/dfsn/Set-DfsnServerConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceServerConfig.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/set-dfsnserverconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/set-dfsnserverconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DfsnServerConfiguration --- diff --git a/docset/winserver2016-ps/dfsr/Add-DfsrConnection.md b/docset/winserver2016-ps/dfsr/Add-DfsrConnection.md index f2c8d32280..571d38ba88 100644 --- a/docset/winserver2016-ps/dfsr/Add-DfsrConnection.md +++ b/docset/winserver2016-ps/dfsr/Add-DfsrConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/add-dfsrconnection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/add-dfsrconnection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DfsrConnection --- diff --git a/docset/winserver2016-ps/dfsr/Add-DfsrMember.md b/docset/winserver2016-ps/dfsr/Add-DfsrMember.md index ea98168a32..175116a97d 100644 --- a/docset/winserver2016-ps/dfsr/Add-DfsrMember.md +++ b/docset/winserver2016-ps/dfsr/Add-DfsrMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/add-dfsrmember?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/add-dfsrmember?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DfsrMember --- diff --git a/docset/winserver2016-ps/dfsr/ConvertFrom-DfsrGuid.md b/docset/winserver2016-ps/dfsr/ConvertFrom-DfsrGuid.md index 2a5c3776fe..670a02d20d 100644 --- a/docset/winserver2016-ps/dfsr/ConvertFrom-DfsrGuid.md +++ b/docset/winserver2016-ps/dfsr/ConvertFrom-DfsrGuid.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/convertfrom-dfsrguid?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/convertfrom-dfsrguid?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: ConvertFrom-DfsrGuid --- diff --git a/docset/winserver2016-ps/dfsr/Export-DfsrClone.md b/docset/winserver2016-ps/dfsr/Export-DfsrClone.md index 7eb2f23e32..5a39086a1e 100644 --- a/docset/winserver2016-ps/dfsr/Export-DfsrClone.md +++ b/docset/winserver2016-ps/dfsr/Export-DfsrClone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/export-dfsrclone?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/export-dfsrclone?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-DfsrClone --- diff --git a/docset/winserver2016-ps/dfsr/Get-DfsReplicatedFolder.md b/docset/winserver2016-ps/dfsr/Get-DfsReplicatedFolder.md index ad49077171..0a5301ec01 100644 --- a/docset/winserver2016-ps/dfsr/Get-DfsReplicatedFolder.md +++ b/docset/winserver2016-ps/dfsr/Get-DfsReplicatedFolder.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsreplicatedfolder?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsreplicatedfolder?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsReplicatedFolder --- diff --git a/docset/winserver2016-ps/dfsr/Get-DfsReplicationGroup.md b/docset/winserver2016-ps/dfsr/Get-DfsReplicationGroup.md index 9870d64526..32e21b8933 100644 --- a/docset/winserver2016-ps/dfsr/Get-DfsReplicationGroup.md +++ b/docset/winserver2016-ps/dfsr/Get-DfsReplicationGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsreplicationgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsreplicationgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsReplicationGroup --- diff --git a/docset/winserver2016-ps/dfsr/Get-DfsrBacklog.md b/docset/winserver2016-ps/dfsr/Get-DfsrBacklog.md index d85985e31b..6015f3d6e6 100644 --- a/docset/winserver2016-ps/dfsr/Get-DfsrBacklog.md +++ b/docset/winserver2016-ps/dfsr/Get-DfsrBacklog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsrbacklog?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsrbacklog?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsrBacklog --- diff --git a/docset/winserver2016-ps/dfsr/Get-DfsrCloneState.md b/docset/winserver2016-ps/dfsr/Get-DfsrCloneState.md index 28a25f099d..5b95255144 100644 --- a/docset/winserver2016-ps/dfsr/Get-DfsrCloneState.md +++ b/docset/winserver2016-ps/dfsr/Get-DfsrCloneState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsrclonestate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsrclonestate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsrCloneState --- diff --git a/docset/winserver2016-ps/dfsr/Get-DfsrConnection.md b/docset/winserver2016-ps/dfsr/Get-DfsrConnection.md index abef100c1f..f88231cac8 100644 --- a/docset/winserver2016-ps/dfsr/Get-DfsrConnection.md +++ b/docset/winserver2016-ps/dfsr/Get-DfsrConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsrconnection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsrconnection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsrConnection --- diff --git a/docset/winserver2016-ps/dfsr/Get-DfsrConnectionSchedule.md b/docset/winserver2016-ps/dfsr/Get-DfsrConnectionSchedule.md index b7845d8c98..e1a860651e 100644 --- a/docset/winserver2016-ps/dfsr/Get-DfsrConnectionSchedule.md +++ b/docset/winserver2016-ps/dfsr/Get-DfsrConnectionSchedule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsrconnectionschedule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsrconnectionschedule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsrConnectionSchedule --- diff --git a/docset/winserver2016-ps/dfsr/Get-DfsrDelegation.md b/docset/winserver2016-ps/dfsr/Get-DfsrDelegation.md index 49a69b7128..22ccf7ec08 100644 --- a/docset/winserver2016-ps/dfsr/Get-DfsrDelegation.md +++ b/docset/winserver2016-ps/dfsr/Get-DfsrDelegation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsrdelegation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsrdelegation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsrDelegation --- diff --git a/docset/winserver2016-ps/dfsr/Get-DfsrFileHash.md b/docset/winserver2016-ps/dfsr/Get-DfsrFileHash.md index 2d26196041..79845f92f8 100644 --- a/docset/winserver2016-ps/dfsr/Get-DfsrFileHash.md +++ b/docset/winserver2016-ps/dfsr/Get-DfsrFileHash.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsrfilehash?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsrfilehash?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsrFileHash --- diff --git a/docset/winserver2016-ps/dfsr/Get-DfsrGroupSchedule.md b/docset/winserver2016-ps/dfsr/Get-DfsrGroupSchedule.md index 64b8707ab5..142e2e1999 100644 --- a/docset/winserver2016-ps/dfsr/Get-DfsrGroupSchedule.md +++ b/docset/winserver2016-ps/dfsr/Get-DfsrGroupSchedule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsrgroupschedule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsrgroupschedule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsrGroupSchedule --- diff --git a/docset/winserver2016-ps/dfsr/Get-DfsrIdRecord.md b/docset/winserver2016-ps/dfsr/Get-DfsrIdRecord.md index b9200190f7..3ca516b3a1 100644 --- a/docset/winserver2016-ps/dfsr/Get-DfsrIdRecord.md +++ b/docset/winserver2016-ps/dfsr/Get-DfsrIdRecord.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsridrecord?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsridrecord?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsrIdRecord --- diff --git a/docset/winserver2016-ps/dfsr/Get-DfsrMember.md b/docset/winserver2016-ps/dfsr/Get-DfsrMember.md index 5388092b27..a511c9810b 100644 --- a/docset/winserver2016-ps/dfsr/Get-DfsrMember.md +++ b/docset/winserver2016-ps/dfsr/Get-DfsrMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsrmember?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsrmember?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsrMember --- diff --git a/docset/winserver2016-ps/dfsr/Get-DfsrMembership.md b/docset/winserver2016-ps/dfsr/Get-DfsrMembership.md index 2594af0070..0ece995ed6 100644 --- a/docset/winserver2016-ps/dfsr/Get-DfsrMembership.md +++ b/docset/winserver2016-ps/dfsr/Get-DfsrMembership.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsrmembership?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsrmembership?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsrMembership --- diff --git a/docset/winserver2016-ps/dfsr/Get-DfsrPreservedFiles.md b/docset/winserver2016-ps/dfsr/Get-DfsrPreservedFiles.md index 5c8ca9017c..e7ff70fdf6 100644 --- a/docset/winserver2016-ps/dfsr/Get-DfsrPreservedFiles.md +++ b/docset/winserver2016-ps/dfsr/Get-DfsrPreservedFiles.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsrpreservedfiles?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsrpreservedfiles?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsrPreservedFiles --- diff --git a/docset/winserver2016-ps/dfsr/Get-DfsrServiceConfiguration.md b/docset/winserver2016-ps/dfsr/Get-DfsrServiceConfiguration.md index 654eb946bf..700c330e8a 100644 --- a/docset/winserver2016-ps/dfsr/Get-DfsrServiceConfiguration.md +++ b/docset/winserver2016-ps/dfsr/Get-DfsrServiceConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsrserviceconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsrserviceconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsrServiceConfiguration --- diff --git a/docset/winserver2016-ps/dfsr/Get-DfsrState.md b/docset/winserver2016-ps/dfsr/Get-DfsrState.md index 49739f9341..6eb4444d27 100644 --- a/docset/winserver2016-ps/dfsr/Get-DfsrState.md +++ b/docset/winserver2016-ps/dfsr/Get-DfsrState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsrstate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsrstate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsrState --- diff --git a/docset/winserver2016-ps/dfsr/Grant-DfsrDelegation.md b/docset/winserver2016-ps/dfsr/Grant-DfsrDelegation.md index 08dec4c2c3..4dfc2002e2 100644 --- a/docset/winserver2016-ps/dfsr/Grant-DfsrDelegation.md +++ b/docset/winserver2016-ps/dfsr/Grant-DfsrDelegation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/grant-dfsrdelegation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/grant-dfsrdelegation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Grant-DfsrDelegation --- diff --git a/docset/winserver2016-ps/dfsr/Import-DfsrClone.md b/docset/winserver2016-ps/dfsr/Import-DfsrClone.md index 877d3c4ef7..cc605ac2be 100644 --- a/docset/winserver2016-ps/dfsr/Import-DfsrClone.md +++ b/docset/winserver2016-ps/dfsr/Import-DfsrClone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/import-dfsrclone?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/import-dfsrclone?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-DfsrClone --- diff --git a/docset/winserver2016-ps/dfsr/New-DfsReplicatedFolder.md b/docset/winserver2016-ps/dfsr/New-DfsReplicatedFolder.md index 7d7f58f122..d6b6581397 100644 --- a/docset/winserver2016-ps/dfsr/New-DfsReplicatedFolder.md +++ b/docset/winserver2016-ps/dfsr/New-DfsReplicatedFolder.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/new-dfsreplicatedfolder?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/new-dfsreplicatedfolder?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-DfsReplicatedFolder --- diff --git a/docset/winserver2016-ps/dfsr/New-DfsReplicationGroup.md b/docset/winserver2016-ps/dfsr/New-DfsReplicationGroup.md index adf737c209..fdb4b9936d 100644 --- a/docset/winserver2016-ps/dfsr/New-DfsReplicationGroup.md +++ b/docset/winserver2016-ps/dfsr/New-DfsReplicationGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/new-dfsreplicationgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/new-dfsreplicationgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-DfsReplicationGroup --- diff --git a/docset/winserver2016-ps/dfsr/Remove-DfsReplicatedFolder.md b/docset/winserver2016-ps/dfsr/Remove-DfsReplicatedFolder.md index 82a8985409..c94fd8c6fd 100644 --- a/docset/winserver2016-ps/dfsr/Remove-DfsReplicatedFolder.md +++ b/docset/winserver2016-ps/dfsr/Remove-DfsReplicatedFolder.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/remove-dfsreplicatedfolder?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/remove-dfsreplicatedfolder?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DfsReplicatedFolder --- diff --git a/docset/winserver2016-ps/dfsr/Remove-DfsReplicationGroup.md b/docset/winserver2016-ps/dfsr/Remove-DfsReplicationGroup.md index 6b6d082892..8d5017ad00 100644 --- a/docset/winserver2016-ps/dfsr/Remove-DfsReplicationGroup.md +++ b/docset/winserver2016-ps/dfsr/Remove-DfsReplicationGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/remove-dfsreplicationgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/remove-dfsreplicationgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DfsReplicationGroup --- diff --git a/docset/winserver2016-ps/dfsr/Remove-DfsrConnection.md b/docset/winserver2016-ps/dfsr/Remove-DfsrConnection.md index 30973764ae..beef18d40b 100644 --- a/docset/winserver2016-ps/dfsr/Remove-DfsrConnection.md +++ b/docset/winserver2016-ps/dfsr/Remove-DfsrConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/remove-dfsrconnection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/remove-dfsrconnection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DfsrConnection --- diff --git a/docset/winserver2016-ps/dfsr/Remove-DfsrMember.md b/docset/winserver2016-ps/dfsr/Remove-DfsrMember.md index 93645c34e7..0f6e6891ca 100644 --- a/docset/winserver2016-ps/dfsr/Remove-DfsrMember.md +++ b/docset/winserver2016-ps/dfsr/Remove-DfsrMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/remove-dfsrmember?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/remove-dfsrmember?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DfsrMember --- diff --git a/docset/winserver2016-ps/dfsr/Remove-DfsrPropagationTestFile.md b/docset/winserver2016-ps/dfsr/Remove-DfsrPropagationTestFile.md index 40ad4dfba4..7f7272345a 100644 --- a/docset/winserver2016-ps/dfsr/Remove-DfsrPropagationTestFile.md +++ b/docset/winserver2016-ps/dfsr/Remove-DfsrPropagationTestFile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/remove-dfsrpropagationtestfile?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/remove-dfsrpropagationtestfile?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DfsrPropagationTestFile --- diff --git a/docset/winserver2016-ps/dfsr/Reset-DfsrCloneState.md b/docset/winserver2016-ps/dfsr/Reset-DfsrCloneState.md index 4c69d482be..80956c6af1 100644 --- a/docset/winserver2016-ps/dfsr/Reset-DfsrCloneState.md +++ b/docset/winserver2016-ps/dfsr/Reset-DfsrCloneState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/reset-dfsrclonestate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/reset-dfsrclonestate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-DfsrCloneState --- diff --git a/docset/winserver2016-ps/dfsr/Restore-DfsrPreservedFiles.md b/docset/winserver2016-ps/dfsr/Restore-DfsrPreservedFiles.md index 8f4a7be1c7..1fb2ecfef7 100644 --- a/docset/winserver2016-ps/dfsr/Restore-DfsrPreservedFiles.md +++ b/docset/winserver2016-ps/dfsr/Restore-DfsrPreservedFiles.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/restore-dfsrpreservedfiles?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/restore-dfsrpreservedfiles?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-DfsrPreservedFiles --- diff --git a/docset/winserver2016-ps/dfsr/Revoke-DfsrDelegation.md b/docset/winserver2016-ps/dfsr/Revoke-DfsrDelegation.md index 7896018149..2601e4d7d6 100644 --- a/docset/winserver2016-ps/dfsr/Revoke-DfsrDelegation.md +++ b/docset/winserver2016-ps/dfsr/Revoke-DfsrDelegation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/revoke-dfsrdelegation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/revoke-dfsrdelegation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Revoke-DfsrDelegation --- diff --git a/docset/winserver2016-ps/dfsr/Set-DfsReplicatedFolder.md b/docset/winserver2016-ps/dfsr/Set-DfsReplicatedFolder.md index fa46a76444..e2600a9651 100644 --- a/docset/winserver2016-ps/dfsr/Set-DfsReplicatedFolder.md +++ b/docset/winserver2016-ps/dfsr/Set-DfsReplicatedFolder.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/set-dfsreplicatedfolder?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/set-dfsreplicatedfolder?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DfsReplicatedFolder --- diff --git a/docset/winserver2016-ps/dfsr/Set-DfsReplicationGroup.md b/docset/winserver2016-ps/dfsr/Set-DfsReplicationGroup.md index 7079796fbb..7d0ff51046 100644 --- a/docset/winserver2016-ps/dfsr/Set-DfsReplicationGroup.md +++ b/docset/winserver2016-ps/dfsr/Set-DfsReplicationGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/set-dfsreplicationgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/set-dfsreplicationgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DfsReplicationGroup --- diff --git a/docset/winserver2016-ps/dfsr/Set-DfsrConnection.md b/docset/winserver2016-ps/dfsr/Set-DfsrConnection.md index ca495e0ff9..057ef115e3 100644 --- a/docset/winserver2016-ps/dfsr/Set-DfsrConnection.md +++ b/docset/winserver2016-ps/dfsr/Set-DfsrConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/set-dfsrconnection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/set-dfsrconnection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DfsrConnection --- diff --git a/docset/winserver2016-ps/dfsr/Set-DfsrConnectionSchedule.md b/docset/winserver2016-ps/dfsr/Set-DfsrConnectionSchedule.md index ab0b1d387e..783a380d01 100644 --- a/docset/winserver2016-ps/dfsr/Set-DfsrConnectionSchedule.md +++ b/docset/winserver2016-ps/dfsr/Set-DfsrConnectionSchedule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/set-dfsrconnectionschedule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/set-dfsrconnectionschedule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DfsrConnectionSchedule --- diff --git a/docset/winserver2016-ps/dfsr/Set-DfsrGroupSchedule.md b/docset/winserver2016-ps/dfsr/Set-DfsrGroupSchedule.md index 3902ebdb17..2b31b3048a 100644 --- a/docset/winserver2016-ps/dfsr/Set-DfsrGroupSchedule.md +++ b/docset/winserver2016-ps/dfsr/Set-DfsrGroupSchedule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/set-dfsrgroupschedule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/set-dfsrgroupschedule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DfsrGroupSchedule --- diff --git a/docset/winserver2016-ps/dfsr/Set-DfsrMember.md b/docset/winserver2016-ps/dfsr/Set-DfsrMember.md index 63cc4cdc92..76ba49b764 100644 --- a/docset/winserver2016-ps/dfsr/Set-DfsrMember.md +++ b/docset/winserver2016-ps/dfsr/Set-DfsrMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/set-dfsrmember?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/set-dfsrmember?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DfsrMember --- diff --git a/docset/winserver2016-ps/dfsr/Set-DfsrMembership.md b/docset/winserver2016-ps/dfsr/Set-DfsrMembership.md index d953772be9..c91173bd68 100644 --- a/docset/winserver2016-ps/dfsr/Set-DfsrMembership.md +++ b/docset/winserver2016-ps/dfsr/Set-DfsrMembership.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/set-dfsrmembership?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/set-dfsrmembership?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DfsrMembership --- diff --git a/docset/winserver2016-ps/dfsr/Set-DfsrServiceConfiguration.md b/docset/winserver2016-ps/dfsr/Set-DfsrServiceConfiguration.md index 58446c51de..2bfc51b65f 100644 --- a/docset/winserver2016-ps/dfsr/Set-DfsrServiceConfiguration.md +++ b/docset/winserver2016-ps/dfsr/Set-DfsrServiceConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/set-dfsrserviceconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/set-dfsrserviceconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DfsrServiceConfiguration --- diff --git a/docset/winserver2016-ps/dfsr/Start-DfsrPropagationTest.md b/docset/winserver2016-ps/dfsr/Start-DfsrPropagationTest.md index 25a0c3ae9a..7663bf609e 100644 --- a/docset/winserver2016-ps/dfsr/Start-DfsrPropagationTest.md +++ b/docset/winserver2016-ps/dfsr/Start-DfsrPropagationTest.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/start-dfsrpropagationtest?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/start-dfsrpropagationtest?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-DfsrPropagationTest --- diff --git a/docset/winserver2016-ps/dfsr/Suspend-DfsReplicationGroup.md b/docset/winserver2016-ps/dfsr/Suspend-DfsReplicationGroup.md index 92a9375343..0963c2f981 100644 --- a/docset/winserver2016-ps/dfsr/Suspend-DfsReplicationGroup.md +++ b/docset/winserver2016-ps/dfsr/Suspend-DfsReplicationGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/suspend-dfsreplicationgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/suspend-dfsreplicationgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-DfsReplicationGroup --- diff --git a/docset/winserver2016-ps/dfsr/Sync-DfsReplicationGroup.md b/docset/winserver2016-ps/dfsr/Sync-DfsReplicationGroup.md index 4a39e4b2df..f26cbca260 100644 --- a/docset/winserver2016-ps/dfsr/Sync-DfsReplicationGroup.md +++ b/docset/winserver2016-ps/dfsr/Sync-DfsReplicationGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/sync-dfsreplicationgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/sync-dfsreplicationgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Sync-DfsReplicationGroup --- diff --git a/docset/winserver2016-ps/dfsr/Update-DfsrConfigurationFromAD.md b/docset/winserver2016-ps/dfsr/Update-DfsrConfigurationFromAD.md index 8af5954645..1164f0a35f 100644 --- a/docset/winserver2016-ps/dfsr/Update-DfsrConfigurationFromAD.md +++ b/docset/winserver2016-ps/dfsr/Update-DfsrConfigurationFromAD.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/update-dfsrconfigurationfromad?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/update-dfsrconfigurationfromad?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-DfsrConfigurationFromAD --- diff --git a/docset/winserver2016-ps/dfsr/Write-DfsrHealthReport.md b/docset/winserver2016-ps/dfsr/Write-DfsrHealthReport.md index e3d512b31b..1121371743 100644 --- a/docset/winserver2016-ps/dfsr/Write-DfsrHealthReport.md +++ b/docset/winserver2016-ps/dfsr/Write-DfsrHealthReport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/write-dfsrhealthreport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/write-dfsrhealthreport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Write-DfsrHealthReport --- diff --git a/docset/winserver2016-ps/dfsr/Write-DfsrPropagationReport.md b/docset/winserver2016-ps/dfsr/Write-DfsrPropagationReport.md index fe4370268e..15f62cd141 100644 --- a/docset/winserver2016-ps/dfsr/Write-DfsrPropagationReport.md +++ b/docset/winserver2016-ps/dfsr/Write-DfsrPropagationReport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/write-dfsrpropagationreport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/write-dfsrpropagationreport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Write-DfsrPropagationReport --- diff --git a/docset/winserver2016-ps/dhcpserver/Add-DhcpServerInDC.md b/docset/winserver2016-ps/dhcpserver/Add-DhcpServerInDC.md index 856bb7d209..1804e65641 100644 --- a/docset/winserver2016-ps/dhcpserver/Add-DhcpServerInDC.md +++ b/docset/winserver2016-ps/dhcpserver/Add-DhcpServerInDC.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerInDC_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverindc?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverindc?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerInDC --- diff --git a/docset/winserver2016-ps/dhcpserver/Add-DhcpServerSecurityGroup.md b/docset/winserver2016-ps/dhcpserver/Add-DhcpServerSecurityGroup.md index f2f0ed79b4..703d14dd66 100644 --- a/docset/winserver2016-ps/dhcpserver/Add-DhcpServerSecurityGroup.md +++ b/docset/winserver2016-ps/dhcpserver/Add-DhcpServerSecurityGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerSecurityGroup_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserversecuritygroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserversecuritygroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerSecurityGroup --- diff --git a/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4Class.md b/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4Class.md index 9c1311409f..a5c27ccc0d 100644 --- a/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4Class.md +++ b/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4Class.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Class_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4class?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4class?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4Class --- diff --git a/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4ExclusionRange.md b/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4ExclusionRange.md index a4523d5dac..b5a6a3a2c3 100644 --- a/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4ExclusionRange.md +++ b/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4ExclusionRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4ExclusionRange_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4exclusionrange?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4exclusionrange?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4ExclusionRange --- diff --git a/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4Failover.md b/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4Failover.md index 40c81b48b2..3f53e41b7f 100644 --- a/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4Failover.md +++ b/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4Failover.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Failover_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4failover?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4failover?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4Failover --- diff --git a/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4FailoverScope.md b/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4FailoverScope.md index 62c5950aee..34eb3b4484 100644 --- a/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4FailoverScope.md +++ b/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4FailoverScope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4FailoverScope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4failoverscope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4failoverscope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4FailoverScope --- diff --git a/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4Filter.md b/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4Filter.md index b6c6d1f531..03ea29afd8 100644 --- a/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4Filter.md +++ b/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4Filter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Filter_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4filter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4filter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4Filter --- diff --git a/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4Lease.md b/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4Lease.md index 806d385e9e..edd279cc49 100644 --- a/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4Lease.md +++ b/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4Lease.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Lease_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4lease?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4lease?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4Lease --- diff --git a/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4MulticastExclusionRange.md b/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4MulticastExclusionRange.md index 8f8369f715..115f829bb2 100644 --- a/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4MulticastExclusionRange.md +++ b/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4MulticastExclusionRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4MulticastExclusionRange_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4multicastexclusionrange?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4multicastexclusionrange?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4MulticastExclusionRange --- diff --git a/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4MulticastScope.md b/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4MulticastScope.md index d7fb9acc09..385f9ee468 100644 --- a/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4MulticastScope.md +++ b/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4MulticastScope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4MulticastScope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4multicastscope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4multicastscope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4MulticastScope --- diff --git a/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4OptionDefinition.md b/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4OptionDefinition.md index a717153228..d5a08a35e1 100644 --- a/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4OptionDefinition.md +++ b/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4OptionDefinition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4OptionDefinition_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4optiondefinition?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4optiondefinition?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4OptionDefinition --- diff --git a/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4Policy.md b/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4Policy.md index bf1e13f2d9..a55d887cff 100644 --- a/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4Policy.md +++ b/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4Policy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Policy_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4policy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4policy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4Policy --- diff --git a/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4PolicyIPRange.md b/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4PolicyIPRange.md index 3142a721ad..3a24852bce 100644 --- a/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4PolicyIPRange.md +++ b/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4PolicyIPRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4PolicyIPRange_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4policyiprange?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4policyiprange?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4PolicyIPRange --- diff --git a/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4Reservation.md b/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4Reservation.md index c8b4feef2f..931c7c8277 100644 --- a/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4Reservation.md +++ b/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4Reservation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4Reservation_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4reservation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4reservation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4Reservation --- diff --git a/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4Scope.md b/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4Scope.md index 959a4f14aa..aedb687f57 100644 --- a/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4Scope.md +++ b/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4Scope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4Scope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4scope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4scope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4Scope --- diff --git a/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4Superscope.md b/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4Superscope.md index 23d00bb0c9..82a6230650 100644 --- a/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4Superscope.md +++ b/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv4Superscope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4Superscope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4superscope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4superscope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4Superscope --- diff --git a/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv6Class.md b/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv6Class.md index ee4d2de01a..215f8c9a5d 100644 --- a/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv6Class.md +++ b/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv6Class.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv6Class_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6class?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6class?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv6Class --- diff --git a/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv6ExclusionRange.md b/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv6ExclusionRange.md index dcc0a049cd..77a9afb251 100644 --- a/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv6ExclusionRange.md +++ b/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv6ExclusionRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6ExclusionRange_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6exclusionrange?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6exclusionrange?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv6ExclusionRange --- diff --git a/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv6Lease.md b/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv6Lease.md index 3b19139704..8d7a22e5ee 100644 --- a/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv6Lease.md +++ b/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv6Lease.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv6Lease_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6lease?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6lease?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv6Lease --- diff --git a/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv6OptionDefinition.md b/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv6OptionDefinition.md index 88e7d6b393..5169facdb9 100644 --- a/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv6OptionDefinition.md +++ b/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv6OptionDefinition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6OptionDefinition_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6optiondefinition?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6optiondefinition?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv6OptionDefinition --- diff --git a/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv6Reservation.md b/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv6Reservation.md index 744e39fc79..988d0b56e9 100644 --- a/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv6Reservation.md +++ b/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv6Reservation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6Reservation_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6reservation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6reservation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv6Reservation --- diff --git a/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv6Scope.md b/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv6Scope.md index ab0e910b0a..36ffad7794 100644 --- a/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv6Scope.md +++ b/docset/winserver2016-ps/dhcpserver/Add-DhcpServerv6Scope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6Scope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6scope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6scope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv6Scope --- diff --git a/docset/winserver2016-ps/dhcpserver/Backup-DhcpServer.md b/docset/winserver2016-ps/dhcpserver/Backup-DhcpServer.md index 18303383b9..344682de6a 100644 --- a/docset/winserver2016-ps/dhcpserver/Backup-DhcpServer.md +++ b/docset/winserver2016-ps/dhcpserver/Backup-DhcpServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServer_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/backup-dhcpserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/backup-dhcpserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Backup-DhcpServer --- diff --git a/docset/winserver2016-ps/dhcpserver/Export-DhcpServer.md b/docset/winserver2016-ps/dhcpserver/Export-DhcpServer.md index aab6dfab93..b49f415c73 100644 --- a/docset/winserver2016-ps/dhcpserver/Export-DhcpServer.md +++ b/docset/winserver2016-ps/dhcpserver/Export-DhcpServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DhcpServerMigration-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/export-dhcpserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/export-dhcpserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-DhcpServer --- diff --git a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerAuditLog.md b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerAuditLog.md index 1dbafc269e..bf7024e11c 100644 --- a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerAuditLog.md +++ b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerAuditLog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerAuditLog_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverauditlog?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverauditlog?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerAuditLog --- diff --git a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerDatabase.md b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerDatabase.md index 90a0985c11..e797616a38 100644 --- a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerDatabase.md +++ b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerDatabase.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerDatabase_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverdatabase?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverdatabase?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerDatabase --- diff --git a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerDnsCredential.md b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerDnsCredential.md index 701e154666..e3488c7d38 100644 --- a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerDnsCredential.md +++ b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerDnsCredential.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerDnsCredential_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverdnscredential?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverdnscredential?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerDnsCredential --- diff --git a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerInDC.md b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerInDC.md index 348bc7854d..a943f4b59a 100644 --- a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerInDC.md +++ b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerInDC.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerInDC_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverindc?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverindc?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerInDC --- diff --git a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerSetting.md b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerSetting.md index 732082c845..2f1829dd4b 100644 --- a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerSetting.md +++ b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerSetting_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserversetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserversetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerSetting --- diff --git a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerVersion.md b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerVersion.md index fb846371bc..cc8cef8d83 100644 --- a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerVersion.md +++ b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerVersion.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerVersion_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverversion?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverversion?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerVersion --- diff --git a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4Binding.md b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4Binding.md index 9e8ae781db..f4e5398183 100644 --- a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4Binding.md +++ b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4Binding.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4Binding_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4binding?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4binding?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4Binding --- diff --git a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4Class.md b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4Class.md index 19f0423c39..22b9800632 100644 --- a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4Class.md +++ b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4Class.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Class_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4class?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4class?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4Class --- diff --git a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4DnsSetting.md b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4DnsSetting.md index 8dcabc2e68..76000babd3 100644 --- a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4DnsSetting.md +++ b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4DnsSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4DnsSetting_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4dnssetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4dnssetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4DnsSetting --- diff --git a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4ExclusionRange.md b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4ExclusionRange.md index 0864190c57..b2982580dd 100644 --- a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4ExclusionRange.md +++ b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4ExclusionRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4ExclusionRange_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4exclusionrange?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4exclusionrange?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4ExclusionRange --- diff --git a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4Failover.md b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4Failover.md index d859dd96ae..d1ceb84744 100644 --- a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4Failover.md +++ b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4Failover.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Failover_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4failover?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4failover?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4Failover --- diff --git a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4Filter.md b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4Filter.md index 975bd5f5e6..d9bf3481c3 100644 --- a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4Filter.md +++ b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4Filter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Filter_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4filter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4filter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4Filter --- diff --git a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4FilterList.md b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4FilterList.md index 1ea34131a0..9ba256ccc5 100644 --- a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4FilterList.md +++ b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4FilterList.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4FilterList_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4filterlist?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4filterlist?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4FilterList --- diff --git a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4FreeIPAddress.md b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4FreeIPAddress.md index fea65f7463..1a9d30006b 100644 --- a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4FreeIPAddress.md +++ b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4FreeIPAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4FreeIPAddress_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4freeipaddress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4freeipaddress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4FreeIPAddress --- diff --git a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4Lease.md b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4Lease.md index eb3d0d5220..c30de2e75f 100644 --- a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4Lease.md +++ b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4Lease.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Lease_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4lease?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4lease?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4Lease --- diff --git a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4MulticastExclusionRange.md b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4MulticastExclusionRange.md index 902321d5f9..82f1d5f537 100644 --- a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4MulticastExclusionRange.md +++ b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4MulticastExclusionRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4MulticastExclusionRange_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4multicastexclusionrange?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4multicastexclusionrange?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4MulticastExclusionRange --- diff --git a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4MulticastLease.md b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4MulticastLease.md index eb1aed4439..c9f87f0760 100644 --- a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4MulticastLease.md +++ b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4MulticastLease.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4MulticastLease_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4multicastlease?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4multicastlease?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4MulticastLease --- diff --git a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4MulticastScope.md b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4MulticastScope.md index 43355bec2e..02c1711526 100644 --- a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4MulticastScope.md +++ b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4MulticastScope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4MulticastScope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4multicastscope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4multicastscope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4MulticastScope --- diff --git a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4MulticastScopeStatistics.md b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4MulticastScopeStatistics.md index 81d7a9ae63..d9d2dbfd75 100644 --- a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4MulticastScopeStatistics.md +++ b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4MulticastScopeStatistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4MulticastScopeStatistics_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4multicastscopestatistics?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4multicastscopestatistics?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4MulticastScopeStatistics --- diff --git a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4OptionDefinition.md b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4OptionDefinition.md index 225babbded..ea806dd686 100644 --- a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4OptionDefinition.md +++ b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4OptionDefinition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4OptionDefinition_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4optiondefinition?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4optiondefinition?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4OptionDefinition --- diff --git a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4OptionValue.md b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4OptionValue.md index 718317e077..e6b82d2731 100644 --- a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4OptionValue.md +++ b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4OptionValue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4OptionValue_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4optionvalue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4optionvalue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4OptionValue --- diff --git a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4Policy.md b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4Policy.md index b22c848e82..61e54e359d 100644 --- a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4Policy.md +++ b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4Policy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Policy_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4policy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4policy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4Policy --- diff --git a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4PolicyIPRange.md b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4PolicyIPRange.md index 492b5a6548..3dc30c6569 100644 --- a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4PolicyIPRange.md +++ b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4PolicyIPRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4PolicyIPRange_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4policyiprange?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4policyiprange?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4PolicyIPRange --- diff --git a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4Reservation.md b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4Reservation.md index 1bde397635..70f04ef952 100644 --- a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4Reservation.md +++ b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4Reservation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4Reservation_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4reservation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4reservation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4Reservation --- diff --git a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4Scope.md b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4Scope.md index e0238e00ff..5cafd06e46 100644 --- a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4Scope.md +++ b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4Scope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4Scope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4scope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4scope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4Scope --- diff --git a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4ScopeStatistics.md b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4ScopeStatistics.md index d253815c31..ba439c2f2b 100644 --- a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4ScopeStatistics.md +++ b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4ScopeStatistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4ScopeStatistics_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4scopestatistics?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4scopestatistics?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4ScopeStatistics --- diff --git a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4Statistics.md b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4Statistics.md index 327c40580f..919623ead0 100644 --- a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4Statistics.md +++ b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4Statistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Statistics_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4statistics?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4statistics?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4Statistics --- diff --git a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4Superscope.md b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4Superscope.md index 6f9105f293..eefb436003 100644 --- a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4Superscope.md +++ b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4Superscope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4Superscope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4superscope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4superscope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4Superscope --- diff --git a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4SuperscopeStatistics.md b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4SuperscopeStatistics.md index bf63d79bfd..e95b7af93c 100644 --- a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4SuperscopeStatistics.md +++ b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv4SuperscopeStatistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4SuperScopeStatistics_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4superscopestatistics?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4superscopestatistics?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4SuperscopeStatistics --- diff --git a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6Binding.md b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6Binding.md index c8e46cf19b..8381d08fe8 100644 --- a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6Binding.md +++ b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6Binding.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6Binding_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6binding?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6binding?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6Binding --- diff --git a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6Class.md b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6Class.md index 77d6b87503..668a683c11 100644 --- a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6Class.md +++ b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6Class.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv6Class_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6class?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6class?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6Class --- diff --git a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6DnsSetting.md b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6DnsSetting.md index 25f1ad9388..28e85e2c09 100644 --- a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6DnsSetting.md +++ b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6DnsSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv6DnsSetting_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6dnssetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6dnssetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6DnsSetting --- diff --git a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6ExclusionRange.md b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6ExclusionRange.md index 933a29b91c..2773d7b582 100644 --- a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6ExclusionRange.md +++ b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6ExclusionRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6ExclusionRange_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6exclusionrange?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6exclusionrange?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6ExclusionRange --- diff --git a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6FreeIPAddress.md b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6FreeIPAddress.md index 1e306a9a99..f553e566ef 100644 --- a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6FreeIPAddress.md +++ b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6FreeIPAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv6FreeIPAddress_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6freeipaddress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6freeipaddress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6FreeIPAddress --- diff --git a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6Lease.md b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6Lease.md index ed86a5a940..716b2d1dc6 100644 --- a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6Lease.md +++ b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6Lease.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv6Lease_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6lease?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6lease?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6Lease --- diff --git a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6OptionDefinition.md b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6OptionDefinition.md index 7457df6f03..fa77f74d27 100644 --- a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6OptionDefinition.md +++ b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6OptionDefinition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6OptionDefinition_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6optiondefinition?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6optiondefinition?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6OptionDefinition --- diff --git a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6OptionValue.md b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6OptionValue.md index eaf9c579b7..0ec2390aec 100644 --- a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6OptionValue.md +++ b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6OptionValue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6OptionValue_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6optionvalue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6optionvalue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6OptionValue --- diff --git a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6Reservation.md b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6Reservation.md index 09aa685350..1922f2082f 100644 --- a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6Reservation.md +++ b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6Reservation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6Reservation_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6reservation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6reservation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6Reservation --- diff --git a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6Scope.md b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6Scope.md index ad8b69a3de..b7a1643e4b 100644 --- a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6Scope.md +++ b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6Scope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6Scope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6scope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6scope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6Scope --- diff --git a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6ScopeStatistics.md b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6ScopeStatistics.md index 2743ad0f08..1b56432197 100644 --- a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6ScopeStatistics.md +++ b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6ScopeStatistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6ScopeStatistics_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6scopestatistics?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6scopestatistics?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6ScopeStatistics --- diff --git a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6StatelessStatistics.md b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6StatelessStatistics.md index 4fbf62a75b..97a60a0e9a 100644 --- a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6StatelessStatistics.md +++ b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6StatelessStatistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv6StatelessStatistics_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6statelessstatistics?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6statelessstatistics?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6StatelessStatistics --- diff --git a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6StatelessStore.md b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6StatelessStore.md index 0c417d724a..157ef3976b 100644 --- a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6StatelessStore.md +++ b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6StatelessStore.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv6StatelessStore_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6statelessstore?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6statelessstore?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6StatelessStore --- diff --git a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6Statistics.md b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6Statistics.md index 22d1cef82e..97e207b51d 100644 --- a/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6Statistics.md +++ b/docset/winserver2016-ps/dhcpserver/Get-DhcpServerv6Statistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv6Statistics_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6statistics?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6statistics?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6Statistics --- diff --git a/docset/winserver2016-ps/dhcpserver/Import-DhcpServer.md b/docset/winserver2016-ps/dhcpserver/Import-DhcpServer.md index e1850916d4..8b8f9c6138 100644 --- a/docset/winserver2016-ps/dhcpserver/Import-DhcpServer.md +++ b/docset/winserver2016-ps/dhcpserver/Import-DhcpServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DhcpServerMigration-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/import-dhcpserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/import-dhcpserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-DhcpServer --- diff --git a/docset/winserver2016-ps/dhcpserver/Invoke-DhcpServerv4FailoverReplication.md b/docset/winserver2016-ps/dhcpserver/Invoke-DhcpServerv4FailoverReplication.md index 07176a2fb0..3f9e533cac 100644 --- a/docset/winserver2016-ps/dhcpserver/Invoke-DhcpServerv4FailoverReplication.md +++ b/docset/winserver2016-ps/dhcpserver/Invoke-DhcpServerv4FailoverReplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4FailoverReplication_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/invoke-dhcpserverv4failoverreplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/invoke-dhcpserverv4failoverreplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-DhcpServerv4FailoverReplication --- diff --git a/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerDnsCredential.md b/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerDnsCredential.md index 4d03e0f587..0e31e806cb 100644 --- a/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerDnsCredential.md +++ b/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerDnsCredential.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerDnsCredential_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverdnscredential?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverdnscredential?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerDnsCredential --- diff --git a/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerInDC.md b/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerInDC.md index 4f5f1b2c3d..a8b38fedd6 100644 --- a/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerInDC.md +++ b/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerInDC.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerInDC_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverindc?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverindc?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerInDC --- diff --git a/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4Class.md b/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4Class.md index f3b3398f05..e4c8381917 100644 --- a/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4Class.md +++ b/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4Class.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Class_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4class?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4class?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4Class --- diff --git a/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4ExclusionRange.md b/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4ExclusionRange.md index 202ed22f73..cfd948fe54 100644 --- a/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4ExclusionRange.md +++ b/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4ExclusionRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4ExclusionRange_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4exclusionrange?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4exclusionrange?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4ExclusionRange --- diff --git a/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4Failover.md b/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4Failover.md index daf9ff10a3..c70123d2c4 100644 --- a/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4Failover.md +++ b/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4Failover.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Failover_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4failover?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4failover?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4Failover --- diff --git a/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4FailoverScope.md b/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4FailoverScope.md index bdb3e897e6..1fb3b7e4ec 100644 --- a/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4FailoverScope.md +++ b/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4FailoverScope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4FailoverScope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4failoverscope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4failoverscope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4FailoverScope --- diff --git a/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4Filter.md b/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4Filter.md index 63e6465aab..c300264b88 100644 --- a/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4Filter.md +++ b/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4Filter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Filter_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4filter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4filter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4Filter --- diff --git a/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4Lease.md b/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4Lease.md index 18335b0799..1a4ca1d235 100644 --- a/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4Lease.md +++ b/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4Lease.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Lease_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4lease?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4lease?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4Lease --- diff --git a/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4MulticastExclusionRange.md b/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4MulticastExclusionRange.md index 503c646edd..afe009c48e 100644 --- a/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4MulticastExclusionRange.md +++ b/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4MulticastExclusionRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4MulticastExclusionRange_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4multicastexclusionrange?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4multicastexclusionrange?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4MulticastExclusionRange --- diff --git a/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4MulticastLease.md b/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4MulticastLease.md index 7eeb311d5d..6dcba45790 100644 --- a/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4MulticastLease.md +++ b/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4MulticastLease.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4MulticastLease_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4multicastlease?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4multicastlease?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4MulticastLease --- diff --git a/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4MulticastScope.md b/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4MulticastScope.md index 754f8081e1..d9f949191a 100644 --- a/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4MulticastScope.md +++ b/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4MulticastScope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4MulticastScope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4multicastscope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4multicastscope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4MulticastScope --- diff --git a/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4OptionDefinition.md b/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4OptionDefinition.md index 1f6c6ae783..cf414a7d6a 100644 --- a/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4OptionDefinition.md +++ b/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4OptionDefinition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4OptionDefinition_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4optiondefinition?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4optiondefinition?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4OptionDefinition --- diff --git a/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4OptionValue.md b/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4OptionValue.md index 57858affed..6362dca1ec 100644 --- a/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4OptionValue.md +++ b/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4OptionValue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4OptionValue_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4optionvalue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4optionvalue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4OptionValue --- diff --git a/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4Policy.md b/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4Policy.md index e6869d7a7c..0bb3c02531 100644 --- a/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4Policy.md +++ b/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4Policy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Policy_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4policy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4policy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4Policy --- diff --git a/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4PolicyIPRange.md b/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4PolicyIPRange.md index 35fa8e0b8b..fb370e0826 100644 --- a/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4PolicyIPRange.md +++ b/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4PolicyIPRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4PolicyIPRange_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4policyiprange?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4policyiprange?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4PolicyIPRange --- diff --git a/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4Reservation.md b/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4Reservation.md index 36618d8707..3c22786dcd 100644 --- a/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4Reservation.md +++ b/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4Reservation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4Reservation_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4reservation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4reservation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4Reservation --- diff --git a/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4Scope.md b/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4Scope.md index 078dce74d1..b9f4459e9e 100644 --- a/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4Scope.md +++ b/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4Scope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4Scope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4scope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4scope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4Scope --- diff --git a/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4Superscope.md b/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4Superscope.md index 20054f3351..a832776dd6 100644 --- a/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4Superscope.md +++ b/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv4Superscope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4Superscope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4superscope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4superscope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4Superscope --- diff --git a/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv6Class.md b/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv6Class.md index 63c754d323..6f808f3a52 100644 --- a/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv6Class.md +++ b/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv6Class.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv6Class_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6class?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6class?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv6Class --- diff --git a/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv6ExclusionRange.md b/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv6ExclusionRange.md index ff335ecef3..679b4383da 100644 --- a/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv6ExclusionRange.md +++ b/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv6ExclusionRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6ExclusionRange_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6exclusionrange?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6exclusionrange?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv6ExclusionRange --- diff --git a/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv6Lease.md b/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv6Lease.md index bc3b6317d8..b67b482bee 100644 --- a/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv6Lease.md +++ b/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv6Lease.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv6Lease_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6lease?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6lease?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv6Lease --- diff --git a/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv6OptionDefinition.md b/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv6OptionDefinition.md index 93991f7950..bb4adef440 100644 --- a/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv6OptionDefinition.md +++ b/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv6OptionDefinition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6OptionDefinition_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6optiondefinition?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6optiondefinition?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv6OptionDefinition --- diff --git a/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv6OptionValue.md b/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv6OptionValue.md index a09e6ecd30..710102f427 100644 --- a/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv6OptionValue.md +++ b/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv6OptionValue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6OptionValue_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6optionvalue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6optionvalue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv6OptionValue --- diff --git a/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv6Reservation.md b/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv6Reservation.md index ffe9b6086d..a0b3d7b2e7 100644 --- a/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv6Reservation.md +++ b/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv6Reservation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6Reservation_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6reservation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6reservation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv6Reservation --- diff --git a/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv6Scope.md b/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv6Scope.md index a86d068666..4472fb7271 100644 --- a/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv6Scope.md +++ b/docset/winserver2016-ps/dhcpserver/Remove-DhcpServerv6Scope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6Scope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6scope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6scope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv6Scope --- diff --git a/docset/winserver2016-ps/dhcpserver/Rename-DhcpServerv4Superscope.md b/docset/winserver2016-ps/dhcpserver/Rename-DhcpServerv4Superscope.md index f64a5661f0..57ee4f0730 100644 --- a/docset/winserver2016-ps/dhcpserver/Rename-DhcpServerv4Superscope.md +++ b/docset/winserver2016-ps/dhcpserver/Rename-DhcpServerv4Superscope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4Superscope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/rename-dhcpserverv4superscope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/rename-dhcpserverv4superscope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-DhcpServerv4Superscope --- diff --git a/docset/winserver2016-ps/dhcpserver/Repair-DhcpServerv4IPRecord.md b/docset/winserver2016-ps/dhcpserver/Repair-DhcpServerv4IPRecord.md index a74b6f21df..b094779eb5 100644 --- a/docset/winserver2016-ps/dhcpserver/Repair-DhcpServerv4IPRecord.md +++ b/docset/winserver2016-ps/dhcpserver/Repair-DhcpServerv4IPRecord.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4IPRecord_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/repair-dhcpserverv4iprecord?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/repair-dhcpserverv4iprecord?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Repair-DhcpServerv4IPRecord --- diff --git a/docset/winserver2016-ps/dhcpserver/Restore-DhcpServer.md b/docset/winserver2016-ps/dhcpserver/Restore-DhcpServer.md index 1732b967a3..779e608707 100644 --- a/docset/winserver2016-ps/dhcpserver/Restore-DhcpServer.md +++ b/docset/winserver2016-ps/dhcpserver/Restore-DhcpServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServer_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/restore-dhcpserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/restore-dhcpserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-DhcpServer --- diff --git a/docset/winserver2016-ps/dhcpserver/Set-DhcpServerAuditLog.md b/docset/winserver2016-ps/dhcpserver/Set-DhcpServerAuditLog.md index 22dcdbb567..5a6c820a0e 100644 --- a/docset/winserver2016-ps/dhcpserver/Set-DhcpServerAuditLog.md +++ b/docset/winserver2016-ps/dhcpserver/Set-DhcpServerAuditLog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerAuditLog_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverauditlog?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverauditlog?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerAuditLog --- diff --git a/docset/winserver2016-ps/dhcpserver/Set-DhcpServerDatabase.md b/docset/winserver2016-ps/dhcpserver/Set-DhcpServerDatabase.md index 445d67feb5..da57ae5d80 100644 --- a/docset/winserver2016-ps/dhcpserver/Set-DhcpServerDatabase.md +++ b/docset/winserver2016-ps/dhcpserver/Set-DhcpServerDatabase.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerDatabase_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverdatabase?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverdatabase?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerDatabase --- diff --git a/docset/winserver2016-ps/dhcpserver/Set-DhcpServerDnsCredential.md b/docset/winserver2016-ps/dhcpserver/Set-DhcpServerDnsCredential.md index b8543ca3ce..1d1c381288 100644 --- a/docset/winserver2016-ps/dhcpserver/Set-DhcpServerDnsCredential.md +++ b/docset/winserver2016-ps/dhcpserver/Set-DhcpServerDnsCredential.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerDnsCredential_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverdnscredential?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverdnscredential?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerDnsCredential --- diff --git a/docset/winserver2016-ps/dhcpserver/Set-DhcpServerSetting.md b/docset/winserver2016-ps/dhcpserver/Set-DhcpServerSetting.md index 5b9df8c9ab..70cda4aa8b 100644 --- a/docset/winserver2016-ps/dhcpserver/Set-DhcpServerSetting.md +++ b/docset/winserver2016-ps/dhcpserver/Set-DhcpServerSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerSetting_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserversetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserversetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerSetting --- diff --git a/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv4Binding.md b/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv4Binding.md index d96f47dd76..12f29e094f 100644 --- a/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv4Binding.md +++ b/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv4Binding.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4Binding_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4binding?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4binding?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv4Binding --- diff --git a/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv4Class.md b/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv4Class.md index cfcf7bed33..b9cfab1608 100644 --- a/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv4Class.md +++ b/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv4Class.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Class_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4class?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4class?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv4Class --- diff --git a/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv4DnsSetting.md b/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv4DnsSetting.md index d9c58c5689..75577b0785 100644 --- a/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv4DnsSetting.md +++ b/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv4DnsSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4DnsSetting_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4dnssetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4dnssetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv4DnsSetting --- diff --git a/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv4Failover.md b/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv4Failover.md index 587d81edc6..55e9a04720 100644 --- a/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv4Failover.md +++ b/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv4Failover.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Failover_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4failover?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4failover?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv4Failover --- diff --git a/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv4FilterList.md b/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv4FilterList.md index 258feebfb3..a092ec9cb3 100644 --- a/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv4FilterList.md +++ b/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv4FilterList.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4FilterList_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4filterlist?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4filterlist?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv4FilterList --- diff --git a/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv4MulticastScope.md b/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv4MulticastScope.md index cfcc913f3e..dd422f37b2 100644 --- a/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv4MulticastScope.md +++ b/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv4MulticastScope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4MulticastScope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4multicastscope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4multicastscope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv4MulticastScope --- diff --git a/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv4OptionDefinition.md b/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv4OptionDefinition.md index ca5d22e65a..c9d160fa07 100644 --- a/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv4OptionDefinition.md +++ b/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv4OptionDefinition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4OptionDefinition_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4optiondefinition?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4optiondefinition?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv4OptionDefinition --- diff --git a/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv4OptionValue.md b/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv4OptionValue.md index 2745f781da..dc6ec81efe 100644 --- a/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv4OptionValue.md +++ b/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv4OptionValue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4OptionValue_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4optionvalue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4optionvalue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv4OptionValue --- diff --git a/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv4Policy.md b/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv4Policy.md index 6621393881..fa4ff2f3c0 100644 --- a/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv4Policy.md +++ b/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv4Policy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Policy_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4policy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4policy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv4Policy --- diff --git a/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv4Reservation.md b/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv4Reservation.md index e40b4d6a26..c2ee4ede0e 100644 --- a/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv4Reservation.md +++ b/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv4Reservation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4Reservation_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4reservation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4reservation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv4Reservation --- diff --git a/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv4Scope.md b/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv4Scope.md index b89817f964..7bbe0f25f3 100644 --- a/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv4Scope.md +++ b/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv4Scope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4Scope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4scope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4scope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv4Scope --- diff --git a/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv6Binding.md b/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv6Binding.md index 39161aa45c..0c5b0632d2 100644 --- a/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv6Binding.md +++ b/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv6Binding.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6Binding_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6binding?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6binding?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv6Binding --- diff --git a/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv6Class.md b/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv6Class.md index 04e5c7d5a1..c333695a54 100644 --- a/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv6Class.md +++ b/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv6Class.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv6Class_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6class?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6class?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv6Class --- diff --git a/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv6DnsSetting.md b/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv6DnsSetting.md index ee44d33b81..f79163fe4c 100644 --- a/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv6DnsSetting.md +++ b/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv6DnsSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv6DnsSetting_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6dnssetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6dnssetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv6DnsSetting --- diff --git a/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv6OptionDefinition.md b/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv6OptionDefinition.md index c683af8285..d56c936cfe 100644 --- a/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv6OptionDefinition.md +++ b/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv6OptionDefinition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6OptionDefinition_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6optiondefinition?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6optiondefinition?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv6OptionDefinition --- diff --git a/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv6OptionValue.md b/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv6OptionValue.md index 3277a7034b..e4f80caed9 100644 --- a/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv6OptionValue.md +++ b/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv6OptionValue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6OptionValue_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6optionvalue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6optionvalue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv6OptionValue --- diff --git a/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv6Reservation.md b/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv6Reservation.md index a32874303d..ab6289f342 100644 --- a/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv6Reservation.md +++ b/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv6Reservation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6Reservation_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6reservation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6reservation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv6Reservation --- diff --git a/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv6Scope.md b/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv6Scope.md index a1de4e5a0c..5687ce369e 100644 --- a/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv6Scope.md +++ b/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv6Scope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6Scope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6scope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6scope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv6Scope --- diff --git a/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv6StatelessStore.md b/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv6StatelessStore.md index e527bf1d70..d6a6a443ef 100644 --- a/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv6StatelessStore.md +++ b/docset/winserver2016-ps/dhcpserver/Set-DhcpServerv6StatelessStore.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv6StatelessStore_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6statelessstore?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6statelessstore?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv6StatelessStore --- diff --git a/docset/winserver2016-ps/directaccessclientcomponents/Disable-DAManualEntryPointSelection.md b/docset/winserver2016-ps/directaccessclientcomponents/Disable-DAManualEntryPointSelection.md index f4d0ab8f7f..dde5bf1d99 100644 --- a/docset/winserver2016-ps/directaccessclientcomponents/Disable-DAManualEntryPointSelection.md +++ b/docset/winserver2016-ps/directaccessclientcomponents/Disable-DAManualEntryPointSelection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DASiteTableEntry.cdxml-help.xml Module Name: DirectAccessClientComponents ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/directaccessclientcomponents/disable-damanualentrypointselection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/directaccessclientcomponents/disable-damanualentrypointselection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-DAManualEntryPointSelection --- diff --git a/docset/winserver2016-ps/directaccessclientcomponents/Enable-DAManualEntryPointSelection.md b/docset/winserver2016-ps/directaccessclientcomponents/Enable-DAManualEntryPointSelection.md index 262e43f1b8..c50749422a 100644 --- a/docset/winserver2016-ps/directaccessclientcomponents/Enable-DAManualEntryPointSelection.md +++ b/docset/winserver2016-ps/directaccessclientcomponents/Enable-DAManualEntryPointSelection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DASiteTableEntry.cdxml-help.xml Module Name: DirectAccessClientComponents ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/directaccessclientcomponents/enable-damanualentrypointselection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/directaccessclientcomponents/enable-damanualentrypointselection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-DAManualEntryPointSelection --- diff --git a/docset/winserver2016-ps/directaccessclientcomponents/Get-DAClientExperienceConfiguration.md b/docset/winserver2016-ps/directaccessclientcomponents/Get-DAClientExperienceConfiguration.md index 0c89794303..c1acb8ec43 100644 --- a/docset/winserver2016-ps/directaccessclientcomponents/Get-DAClientExperienceConfiguration.md +++ b/docset/winserver2016-ps/directaccessclientcomponents/Get-DAClientExperienceConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DAClientExperienceConfiguration.cdxml-help.xml Module Name: DirectAccessClientComponents ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/directaccessclientcomponents/get-daclientexperienceconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/directaccessclientcomponents/get-daclientexperienceconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DAClientExperienceConfiguration --- diff --git a/docset/winserver2016-ps/directaccessclientcomponents/Get-DAEntryPointTableItem.md b/docset/winserver2016-ps/directaccessclientcomponents/Get-DAEntryPointTableItem.md index 930d8b6bca..ddcfa97035 100644 --- a/docset/winserver2016-ps/directaccessclientcomponents/Get-DAEntryPointTableItem.md +++ b/docset/winserver2016-ps/directaccessclientcomponents/Get-DAEntryPointTableItem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DASiteTableEntry.cdxml-help.xml Module Name: DirectAccessClientComponents ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/directaccessclientcomponents/get-daentrypointtableitem?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/directaccessclientcomponents/get-daentrypointtableitem?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DAEntryPointTableItem --- diff --git a/docset/winserver2016-ps/directaccessclientcomponents/New-DAEntryPointTableItem.md b/docset/winserver2016-ps/directaccessclientcomponents/New-DAEntryPointTableItem.md index da15f90121..ac2505986e 100644 --- a/docset/winserver2016-ps/directaccessclientcomponents/New-DAEntryPointTableItem.md +++ b/docset/winserver2016-ps/directaccessclientcomponents/New-DAEntryPointTableItem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DASiteTableEntry.cdxml-help.xml Module Name: DirectAccessClientComponents ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/directaccessclientcomponents/new-daentrypointtableitem?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/directaccessclientcomponents/new-daentrypointtableitem?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-DAEntryPointTableItem --- diff --git a/docset/winserver2016-ps/directaccessclientcomponents/Remove-DAEntryPointTableItem.md b/docset/winserver2016-ps/directaccessclientcomponents/Remove-DAEntryPointTableItem.md index 174f38965c..86be1ef740 100644 --- a/docset/winserver2016-ps/directaccessclientcomponents/Remove-DAEntryPointTableItem.md +++ b/docset/winserver2016-ps/directaccessclientcomponents/Remove-DAEntryPointTableItem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DASiteTableEntry.cdxml-help.xml Module Name: DirectAccessClientComponents ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/directaccessclientcomponents/remove-daentrypointtableitem?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/directaccessclientcomponents/remove-daentrypointtableitem?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DAEntryPointTableItem --- diff --git a/docset/winserver2016-ps/directaccessclientcomponents/Rename-DAEntryPointTableItem.md b/docset/winserver2016-ps/directaccessclientcomponents/Rename-DAEntryPointTableItem.md index cbdda8b3a1..d477584748 100644 --- a/docset/winserver2016-ps/directaccessclientcomponents/Rename-DAEntryPointTableItem.md +++ b/docset/winserver2016-ps/directaccessclientcomponents/Rename-DAEntryPointTableItem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DASiteTableEntry.cdxml-help.xml Module Name: DirectAccessClientComponents ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/directaccessclientcomponents/rename-daentrypointtableitem?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/directaccessclientcomponents/rename-daentrypointtableitem?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-DAEntryPointTableItem --- diff --git a/docset/winserver2016-ps/directaccessclientcomponents/Reset-DAClientExperienceConfiguration.md b/docset/winserver2016-ps/directaccessclientcomponents/Reset-DAClientExperienceConfiguration.md index 40813039fb..d1ece240fe 100644 --- a/docset/winserver2016-ps/directaccessclientcomponents/Reset-DAClientExperienceConfiguration.md +++ b/docset/winserver2016-ps/directaccessclientcomponents/Reset-DAClientExperienceConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DAClientExperienceConfiguration.cdxml-help.xml Module Name: DirectAccessClientComponents ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/directaccessclientcomponents/reset-daclientexperienceconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/directaccessclientcomponents/reset-daclientexperienceconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-DAClientExperienceConfiguration --- diff --git a/docset/winserver2016-ps/directaccessclientcomponents/Reset-DAEntryPointTableItem.md b/docset/winserver2016-ps/directaccessclientcomponents/Reset-DAEntryPointTableItem.md index 4f21639b30..79bc942c61 100644 --- a/docset/winserver2016-ps/directaccessclientcomponents/Reset-DAEntryPointTableItem.md +++ b/docset/winserver2016-ps/directaccessclientcomponents/Reset-DAEntryPointTableItem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DASiteTableEntry.cdxml-help.xml Module Name: DirectAccessClientComponents ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/directaccessclientcomponents/reset-daentrypointtableitem?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/directaccessclientcomponents/reset-daentrypointtableitem?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-DAEntryPointTableItem --- diff --git a/docset/winserver2016-ps/directaccessclientcomponents/Set-DAClientExperienceConfiguration.md b/docset/winserver2016-ps/directaccessclientcomponents/Set-DAClientExperienceConfiguration.md index 41a7a0111e..933bb59586 100644 --- a/docset/winserver2016-ps/directaccessclientcomponents/Set-DAClientExperienceConfiguration.md +++ b/docset/winserver2016-ps/directaccessclientcomponents/Set-DAClientExperienceConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DAClientExperienceConfiguration.cdxml-help.xml Module Name: DirectAccessClientComponents ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/directaccessclientcomponents/set-daclientexperienceconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/directaccessclientcomponents/set-daclientexperienceconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DAClientExperienceConfiguration --- diff --git a/docset/winserver2016-ps/directaccessclientcomponents/Set-DAEntryPointTableItem.md b/docset/winserver2016-ps/directaccessclientcomponents/Set-DAEntryPointTableItem.md index 7532a2403a..b8f3c7821c 100644 --- a/docset/winserver2016-ps/directaccessclientcomponents/Set-DAEntryPointTableItem.md +++ b/docset/winserver2016-ps/directaccessclientcomponents/Set-DAEntryPointTableItem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DASiteTableEntry.cdxml-help.xml Module Name: DirectAccessClientComponents ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/directaccessclientcomponents/set-daentrypointtableitem?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/directaccessclientcomponents/set-daentrypointtableitem?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DAEntryPointTableItem --- diff --git a/docset/winserver2016-ps/dism/Add-AppxProvisionedPackage.md b/docset/winserver2016-ps/dism/Add-AppxProvisionedPackage.md index a0b8d75da1..38a298a5d7 100644 --- a/docset/winserver2016-ps/dism/Add-AppxProvisionedPackage.md +++ b/docset/winserver2016-ps/dism/Add-AppxProvisionedPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/add-appxprovisionedpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/add-appxprovisionedpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AppxProvisionedPackage --- diff --git a/docset/winserver2016-ps/dism/Add-WindowsCapability.md b/docset/winserver2016-ps/dism/Add-WindowsCapability.md index 4b947e9a75..58227a7493 100644 --- a/docset/winserver2016-ps/dism/Add-WindowsCapability.md +++ b/docset/winserver2016-ps/dism/Add-WindowsCapability.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/add-windowscapability?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/add-windowscapability?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WindowsCapability --- diff --git a/docset/winserver2016-ps/dism/Add-WindowsDriver.md b/docset/winserver2016-ps/dism/Add-WindowsDriver.md index f31831dbea..ffb1542774 100644 --- a/docset/winserver2016-ps/dism/Add-WindowsDriver.md +++ b/docset/winserver2016-ps/dism/Add-WindowsDriver.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/add-windowsdriver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/add-windowsdriver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WindowsDriver --- diff --git a/docset/winserver2016-ps/dism/Add-WindowsImage.md b/docset/winserver2016-ps/dism/Add-WindowsImage.md index e93028ffb3..ff5b052581 100644 --- a/docset/winserver2016-ps/dism/Add-WindowsImage.md +++ b/docset/winserver2016-ps/dism/Add-WindowsImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/add-windowsimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/add-windowsimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WindowsImage --- diff --git a/docset/winserver2016-ps/dism/Add-WindowsPackage.md b/docset/winserver2016-ps/dism/Add-WindowsPackage.md index c67b40fdf2..07de1a2988 100644 --- a/docset/winserver2016-ps/dism/Add-WindowsPackage.md +++ b/docset/winserver2016-ps/dism/Add-WindowsPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/add-windowspackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/add-windowspackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WindowsPackage --- diff --git a/docset/winserver2016-ps/dism/Clear-WindowsCorruptMountPoint.md b/docset/winserver2016-ps/dism/Clear-WindowsCorruptMountPoint.md index 449859603c..30110cf399 100644 --- a/docset/winserver2016-ps/dism/Clear-WindowsCorruptMountPoint.md +++ b/docset/winserver2016-ps/dism/Clear-WindowsCorruptMountPoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/clear-windowscorruptmountpoint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/clear-windowscorruptmountpoint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-WindowsCorruptMountPoint --- diff --git a/docset/winserver2016-ps/dism/Disable-WindowsOptionalFeature.md b/docset/winserver2016-ps/dism/Disable-WindowsOptionalFeature.md index bc69211bdb..4f358ba064 100644 --- a/docset/winserver2016-ps/dism/Disable-WindowsOptionalFeature.md +++ b/docset/winserver2016-ps/dism/Disable-WindowsOptionalFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/disable-windowsoptionalfeature?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/disable-windowsoptionalfeature?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WindowsOptionalFeature --- diff --git a/docset/winserver2016-ps/dism/Dismount-WindowsImage.md b/docset/winserver2016-ps/dism/Dismount-WindowsImage.md index ad2c184b6f..6b8b09bea9 100644 --- a/docset/winserver2016-ps/dism/Dismount-WindowsImage.md +++ b/docset/winserver2016-ps/dism/Dismount-WindowsImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/dismount-windowsimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/dismount-windowsimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Dismount-WindowsImage --- diff --git a/docset/winserver2016-ps/dism/Enable-WindowsOptionalFeature.md b/docset/winserver2016-ps/dism/Enable-WindowsOptionalFeature.md index 630d48d420..41e04e2839 100644 --- a/docset/winserver2016-ps/dism/Enable-WindowsOptionalFeature.md +++ b/docset/winserver2016-ps/dism/Enable-WindowsOptionalFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/enable-windowsoptionalfeature?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/enable-windowsoptionalfeature?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WindowsOptionalFeature --- diff --git a/docset/winserver2016-ps/dism/Expand-WindowsCustomDataImage.md b/docset/winserver2016-ps/dism/Expand-WindowsCustomDataImage.md index 3d13a6fc67..9af0516ed2 100644 --- a/docset/winserver2016-ps/dism/Expand-WindowsCustomDataImage.md +++ b/docset/winserver2016-ps/dism/Expand-WindowsCustomDataImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/expand-windowscustomdataimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/expand-windowscustomdataimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Expand-WindowsCustomDataImage --- diff --git a/docset/winserver2016-ps/dism/Expand-WindowsImage.md b/docset/winserver2016-ps/dism/Expand-WindowsImage.md index 890fb5306e..66080cb93e 100644 --- a/docset/winserver2016-ps/dism/Expand-WindowsImage.md +++ b/docset/winserver2016-ps/dism/Expand-WindowsImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/expand-windowsimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/expand-windowsimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Expand-WindowsImage --- diff --git a/docset/winserver2016-ps/dism/Export-WindowsDriver.md b/docset/winserver2016-ps/dism/Export-WindowsDriver.md index bbaa5ebb54..d59c10ac12 100644 --- a/docset/winserver2016-ps/dism/Export-WindowsDriver.md +++ b/docset/winserver2016-ps/dism/Export-WindowsDriver.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/export-windowsdriver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/export-windowsdriver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-WindowsDriver --- diff --git a/docset/winserver2016-ps/dism/Export-WindowsImage.md b/docset/winserver2016-ps/dism/Export-WindowsImage.md index ae245d8519..d8ac843faf 100644 --- a/docset/winserver2016-ps/dism/Export-WindowsImage.md +++ b/docset/winserver2016-ps/dism/Export-WindowsImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/export-windowsimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/export-windowsimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-WindowsImage --- diff --git a/docset/winserver2016-ps/dism/Get-AppxProvisionedPackage.md b/docset/winserver2016-ps/dism/Get-AppxProvisionedPackage.md index 8d2aef8326..8fcf302184 100644 --- a/docset/winserver2016-ps/dism/Get-AppxProvisionedPackage.md +++ b/docset/winserver2016-ps/dism/Get-AppxProvisionedPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/get-appxprovisionedpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/get-appxprovisionedpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppxProvisionedPackage --- diff --git a/docset/winserver2016-ps/dism/Get-WIMBootEntry.md b/docset/winserver2016-ps/dism/Get-WIMBootEntry.md index 2f634eb312..b5ca05f966 100644 --- a/docset/winserver2016-ps/dism/Get-WIMBootEntry.md +++ b/docset/winserver2016-ps/dism/Get-WIMBootEntry.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/get-wimbootentry?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/get-wimbootentry?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WIMBootEntry --- diff --git a/docset/winserver2016-ps/dism/Get-WindowsCapability.md b/docset/winserver2016-ps/dism/Get-WindowsCapability.md index d388f8d847..abfca3a152 100644 --- a/docset/winserver2016-ps/dism/Get-WindowsCapability.md +++ b/docset/winserver2016-ps/dism/Get-WindowsCapability.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/get-windowscapability?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/get-windowscapability?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WindowsCapability --- diff --git a/docset/winserver2016-ps/dism/Get-WindowsDriver.md b/docset/winserver2016-ps/dism/Get-WindowsDriver.md index 9fc73edc9c..2e6e63a3d9 100644 --- a/docset/winserver2016-ps/dism/Get-WindowsDriver.md +++ b/docset/winserver2016-ps/dism/Get-WindowsDriver.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/get-windowsdriver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/get-windowsdriver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WindowsDriver --- diff --git a/docset/winserver2016-ps/dism/Get-WindowsEdition.md b/docset/winserver2016-ps/dism/Get-WindowsEdition.md index f86847a305..5f6cc81feb 100644 --- a/docset/winserver2016-ps/dism/Get-WindowsEdition.md +++ b/docset/winserver2016-ps/dism/Get-WindowsEdition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/get-windowsedition?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/get-windowsedition?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WindowsEdition --- diff --git a/docset/winserver2016-ps/dism/Get-WindowsImage.md b/docset/winserver2016-ps/dism/Get-WindowsImage.md index e3fe6a44c7..2580851212 100644 --- a/docset/winserver2016-ps/dism/Get-WindowsImage.md +++ b/docset/winserver2016-ps/dism/Get-WindowsImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/get-windowsimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/get-windowsimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WindowsImage --- diff --git a/docset/winserver2016-ps/dism/Get-WindowsImageContent.md b/docset/winserver2016-ps/dism/Get-WindowsImageContent.md index 0a675bc890..4fe4463062 100644 --- a/docset/winserver2016-ps/dism/Get-WindowsImageContent.md +++ b/docset/winserver2016-ps/dism/Get-WindowsImageContent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/get-windowsimagecontent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/get-windowsimagecontent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WindowsImageContent --- diff --git a/docset/winserver2016-ps/dism/Get-WindowsOptionalFeature.md b/docset/winserver2016-ps/dism/Get-WindowsOptionalFeature.md index 3c82effaed..420c90fbf0 100644 --- a/docset/winserver2016-ps/dism/Get-WindowsOptionalFeature.md +++ b/docset/winserver2016-ps/dism/Get-WindowsOptionalFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/get-windowsoptionalfeature?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/get-windowsoptionalfeature?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WindowsOptionalFeature --- diff --git a/docset/winserver2016-ps/dism/Get-WindowsPackage.md b/docset/winserver2016-ps/dism/Get-WindowsPackage.md index 20b09ba572..15142c6dfc 100644 --- a/docset/winserver2016-ps/dism/Get-WindowsPackage.md +++ b/docset/winserver2016-ps/dism/Get-WindowsPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/get-windowspackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/get-windowspackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WindowsPackage --- diff --git a/docset/winserver2016-ps/dism/Get-WindowsReservedStorageState.md b/docset/winserver2016-ps/dism/Get-WindowsReservedStorageState.md index f4cab723c9..69c6eaf6a1 100644 --- a/docset/winserver2016-ps/dism/Get-WindowsReservedStorageState.md +++ b/docset/winserver2016-ps/dism/Get-WindowsReservedStorageState.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] -online version: https://docs.microsoft.com/powershell/module/dism/get-windowsreservedstoragestate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/get-windowsreservedstoragestate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2016-ps/dism/Mount-WindowsImage.md b/docset/winserver2016-ps/dism/Mount-WindowsImage.md index 417d38981a..e78bf872ce 100644 --- a/docset/winserver2016-ps/dism/Mount-WindowsImage.md +++ b/docset/winserver2016-ps/dism/Mount-WindowsImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/mount-windowsimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/mount-windowsimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Mount-WindowsImage --- diff --git a/docset/winserver2016-ps/dism/New-WindowsCustomImage.md b/docset/winserver2016-ps/dism/New-WindowsCustomImage.md index 4688bd33c8..69a658bc7a 100644 --- a/docset/winserver2016-ps/dism/New-WindowsCustomImage.md +++ b/docset/winserver2016-ps/dism/New-WindowsCustomImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/new-windowscustomimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/new-windowscustomimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WindowsCustomImage --- diff --git a/docset/winserver2016-ps/dism/New-WindowsImage.md b/docset/winserver2016-ps/dism/New-WindowsImage.md index 819fc2bd89..1f57b86fa2 100644 --- a/docset/winserver2016-ps/dism/New-WindowsImage.md +++ b/docset/winserver2016-ps/dism/New-WindowsImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/new-windowsimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/new-windowsimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WindowsImage --- diff --git a/docset/winserver2016-ps/dism/Optimize-WindowsImage.md b/docset/winserver2016-ps/dism/Optimize-WindowsImage.md index cefac38b85..777326a6b9 100644 --- a/docset/winserver2016-ps/dism/Optimize-WindowsImage.md +++ b/docset/winserver2016-ps/dism/Optimize-WindowsImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/optimize-windowsimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/optimize-windowsimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Optimize-WindowsImage --- diff --git a/docset/winserver2016-ps/dism/Remove-AppxProvisionedPackage.md b/docset/winserver2016-ps/dism/Remove-AppxProvisionedPackage.md index a3558aa0cc..8d9d5b76dd 100644 --- a/docset/winserver2016-ps/dism/Remove-AppxProvisionedPackage.md +++ b/docset/winserver2016-ps/dism/Remove-AppxProvisionedPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/remove-appxprovisionedpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/remove-appxprovisionedpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AppxProvisionedPackage --- diff --git a/docset/winserver2016-ps/dism/Remove-WindowsCapability.md b/docset/winserver2016-ps/dism/Remove-WindowsCapability.md index 3bd2a857c1..3ca2538e83 100644 --- a/docset/winserver2016-ps/dism/Remove-WindowsCapability.md +++ b/docset/winserver2016-ps/dism/Remove-WindowsCapability.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/remove-windowscapability?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/remove-windowscapability?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WindowsCapability --- diff --git a/docset/winserver2016-ps/dism/Remove-WindowsDriver.md b/docset/winserver2016-ps/dism/Remove-WindowsDriver.md index d9fd04fdd9..398b6a3387 100644 --- a/docset/winserver2016-ps/dism/Remove-WindowsDriver.md +++ b/docset/winserver2016-ps/dism/Remove-WindowsDriver.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/remove-windowsdriver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/remove-windowsdriver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WindowsDriver --- diff --git a/docset/winserver2016-ps/dism/Remove-WindowsImage.md b/docset/winserver2016-ps/dism/Remove-WindowsImage.md index de5c507544..03c2bceddd 100644 --- a/docset/winserver2016-ps/dism/Remove-WindowsImage.md +++ b/docset/winserver2016-ps/dism/Remove-WindowsImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/remove-windowsimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/remove-windowsimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WindowsImage --- diff --git a/docset/winserver2016-ps/dism/Remove-WindowsPackage.md b/docset/winserver2016-ps/dism/Remove-WindowsPackage.md index 04510aef6a..040ada9935 100644 --- a/docset/winserver2016-ps/dism/Remove-WindowsPackage.md +++ b/docset/winserver2016-ps/dism/Remove-WindowsPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/remove-windowspackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/remove-windowspackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WindowsPackage --- diff --git a/docset/winserver2016-ps/dism/Repair-WindowsImage.md b/docset/winserver2016-ps/dism/Repair-WindowsImage.md index 21b852a377..68a313ad15 100644 --- a/docset/winserver2016-ps/dism/Repair-WindowsImage.md +++ b/docset/winserver2016-ps/dism/Repair-WindowsImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/repair-windowsimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/repair-windowsimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Repair-WindowsImage --- diff --git a/docset/winserver2016-ps/dism/Save-WindowsImage.md b/docset/winserver2016-ps/dism/Save-WindowsImage.md index d4937700d5..27fd3687c8 100644 --- a/docset/winserver2016-ps/dism/Save-WindowsImage.md +++ b/docset/winserver2016-ps/dism/Save-WindowsImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/save-windowsimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/save-windowsimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Save-WindowsImage --- diff --git a/docset/winserver2016-ps/dism/Set-AppXProvisionedDataFile.md b/docset/winserver2016-ps/dism/Set-AppXProvisionedDataFile.md index d91ce4de87..9257c3ce48 100644 --- a/docset/winserver2016-ps/dism/Set-AppXProvisionedDataFile.md +++ b/docset/winserver2016-ps/dism/Set-AppXProvisionedDataFile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/set-appxprovisioneddatafile?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/set-appxprovisioneddatafile?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AppXProvisionedDataFile --- diff --git a/docset/winserver2016-ps/dism/Set-WindowsEdition.md b/docset/winserver2016-ps/dism/Set-WindowsEdition.md index abe16f0df0..bc66497f0e 100644 --- a/docset/winserver2016-ps/dism/Set-WindowsEdition.md +++ b/docset/winserver2016-ps/dism/Set-WindowsEdition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/set-windowsedition?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/set-windowsedition?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WindowsEdition --- diff --git a/docset/winserver2016-ps/dism/Set-WindowsProductKey.md b/docset/winserver2016-ps/dism/Set-WindowsProductKey.md index 306e9b01c0..65c2793be0 100644 --- a/docset/winserver2016-ps/dism/Set-WindowsProductKey.md +++ b/docset/winserver2016-ps/dism/Set-WindowsProductKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/set-windowsproductkey?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/set-windowsproductkey?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WindowsProductKey --- diff --git a/docset/winserver2016-ps/dism/Set-WindowsReservedStorageState.md b/docset/winserver2016-ps/dism/Set-WindowsReservedStorageState.md index b9bb92ca2f..4d5dd0b186 100644 --- a/docset/winserver2016-ps/dism/Set-WindowsReservedStorageState.md +++ b/docset/winserver2016-ps/dism/Set-WindowsReservedStorageState.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] -online version: https://docs.microsoft.com/powershell/module/dism/set-windowsreservedstoragestate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/set-windowsreservedstoragestate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2016-ps/dism/Split-WindowsImage.md b/docset/winserver2016-ps/dism/Split-WindowsImage.md index 79a8f057da..37dd2b789b 100644 --- a/docset/winserver2016-ps/dism/Split-WindowsImage.md +++ b/docset/winserver2016-ps/dism/Split-WindowsImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/split-windowsimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/split-windowsimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Split-WindowsImage --- diff --git a/docset/winserver2016-ps/dism/Update-WIMBootEntry.md b/docset/winserver2016-ps/dism/Update-WIMBootEntry.md index 22da236355..3ffdc3c096 100644 --- a/docset/winserver2016-ps/dism/Update-WIMBootEntry.md +++ b/docset/winserver2016-ps/dism/Update-WIMBootEntry.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/update-wimbootentry?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/update-wimbootentry?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-WIMBootEntry --- diff --git a/docset/winserver2016-ps/dism/Use-WindowsUnattend.md b/docset/winserver2016-ps/dism/Use-WindowsUnattend.md index 1a075aa40a..2553c10c36 100644 --- a/docset/winserver2016-ps/dism/Use-WindowsUnattend.md +++ b/docset/winserver2016-ps/dism/Use-WindowsUnattend.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/use-windowsunattend?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/use-windowsunattend?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Use-WindowsUnattend --- diff --git a/docset/winserver2016-ps/dnsclient/Add-DnsClientNrptRule.md b/docset/winserver2016-ps/dnsclient/Add-DnsClientNrptRule.md index 0aee32808a..937275ad8c 100644 --- a/docset/winserver2016-ps/dnsclient/Add-DnsClientNrptRule.md +++ b/docset/winserver2016-ps/dnsclient/Add-DnsClientNrptRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsClientNRPTRule_v1.0.0.cdxml-help.xml Module Name: DnsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsclient/add-dnsclientnrptrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/add-dnsclientnrptrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsClientNrptRule --- diff --git a/docset/winserver2016-ps/dnsclient/Clear-DnsClientCache.md b/docset/winserver2016-ps/dnsclient/Clear-DnsClientCache.md index 308dea9645..4fc07f7c2b 100644 --- a/docset/winserver2016-ps/dnsclient/Clear-DnsClientCache.md +++ b/docset/winserver2016-ps/dnsclient/Clear-DnsClientCache.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DnsClientCache.cdxml-help.xml Module Name: DnsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsclient/clear-dnsclientcache?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/clear-dnsclientcache?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-DnsClientCache --- diff --git a/docset/winserver2016-ps/dnsclient/Get-DnsClient.md b/docset/winserver2016-ps/dnsclient/Get-DnsClient.md index cfb77a1ec2..f098bab7e7 100644 --- a/docset/winserver2016-ps/dnsclient/Get-DnsClient.md +++ b/docset/winserver2016-ps/dnsclient/Get-DnsClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DnsClient.cdxml-help.xml Module Name: DnsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsclient/get-dnsclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/get-dnsclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsClient --- diff --git a/docset/winserver2016-ps/dnsclient/Get-DnsClientCache.md b/docset/winserver2016-ps/dnsclient/Get-DnsClientCache.md index 47844726f8..55a09c5286 100644 --- a/docset/winserver2016-ps/dnsclient/Get-DnsClientCache.md +++ b/docset/winserver2016-ps/dnsclient/Get-DnsClientCache.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DnsClientCache.cdxml-help.xml Module Name: DnsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsclient/get-dnsclientcache?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/get-dnsclientcache?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsClientCache --- diff --git a/docset/winserver2016-ps/dnsclient/Get-DnsClientGlobalSetting.md b/docset/winserver2016-ps/dnsclient/Get-DnsClientGlobalSetting.md index e54ca5f7bd..9cead82315 100644 --- a/docset/winserver2016-ps/dnsclient/Get-DnsClientGlobalSetting.md +++ b/docset/winserver2016-ps/dnsclient/Get-DnsClientGlobalSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DnsClientGlobalSetting.cdxml-help.xml Module Name: DnsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsclient/get-dnsclientglobalsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/get-dnsclientglobalsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsClientGlobalSetting --- diff --git a/docset/winserver2016-ps/dnsclient/Get-DnsClientNrptGlobal.md b/docset/winserver2016-ps/dnsclient/Get-DnsClientNrptGlobal.md index f828829078..e1d103c3da 100644 --- a/docset/winserver2016-ps/dnsclient/Get-DnsClientNrptGlobal.md +++ b/docset/winserver2016-ps/dnsclient/Get-DnsClientNrptGlobal.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsClientNRPTGlobal_v1.0.0.cdxml-help.xml Module Name: DnsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsclient/get-dnsclientnrptglobal?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/get-dnsclientnrptglobal?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsClientNrptGlobal --- diff --git a/docset/winserver2016-ps/dnsclient/Get-DnsClientNrptPolicy.md b/docset/winserver2016-ps/dnsclient/Get-DnsClientNrptPolicy.md index c5eb4a2fa6..a187fcb994 100644 --- a/docset/winserver2016-ps/dnsclient/Get-DnsClientNrptPolicy.md +++ b/docset/winserver2016-ps/dnsclient/Get-DnsClientNrptPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsClientNrptPolicy_v1.0.0.cdxml-help.xml Module Name: DnsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsclient/get-dnsclientnrptpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/get-dnsclientnrptpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsClientNrptPolicy --- diff --git a/docset/winserver2016-ps/dnsclient/Get-DnsClientNrptRule.md b/docset/winserver2016-ps/dnsclient/Get-DnsClientNrptRule.md index bf4b133a53..da490a34f2 100644 --- a/docset/winserver2016-ps/dnsclient/Get-DnsClientNrptRule.md +++ b/docset/winserver2016-ps/dnsclient/Get-DnsClientNrptRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsClientNRPTRule_v1.0.0.cdxml-help.xml Module Name: DnsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsclient/get-dnsclientnrptrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/get-dnsclientnrptrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsClientNrptRule --- diff --git a/docset/winserver2016-ps/dnsclient/Get-DnsClientServerAddress.md b/docset/winserver2016-ps/dnsclient/Get-DnsClientServerAddress.md index f48c59056e..99eefd102c 100644 --- a/docset/winserver2016-ps/dnsclient/Get-DnsClientServerAddress.md +++ b/docset/winserver2016-ps/dnsclient/Get-DnsClientServerAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DnsClientServerAddress.cdxml-help.xml Module Name: DnsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsclient/get-dnsclientserveraddress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/get-dnsclientserveraddress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsClientServerAddress --- diff --git a/docset/winserver2016-ps/dnsclient/Register-DnsClient.md b/docset/winserver2016-ps/dnsclient/Register-DnsClient.md index 900f82ba0c..86819b5b25 100644 --- a/docset/winserver2016-ps/dnsclient/Register-DnsClient.md +++ b/docset/winserver2016-ps/dnsclient/Register-DnsClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DnsClient.cdxml-help.xml Module Name: DnsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsclient/register-dnsclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/register-dnsclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Register-DnsClient --- diff --git a/docset/winserver2016-ps/dnsclient/Remove-DnsClientNrptRule.md b/docset/winserver2016-ps/dnsclient/Remove-DnsClientNrptRule.md index 515c3751c2..39c3578d8a 100644 --- a/docset/winserver2016-ps/dnsclient/Remove-DnsClientNrptRule.md +++ b/docset/winserver2016-ps/dnsclient/Remove-DnsClientNrptRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsClientNRPTRule_v1.0.0.cdxml-help.xml Module Name: DnsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsclient/remove-dnsclientnrptrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/remove-dnsclientnrptrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsClientNrptRule --- diff --git a/docset/winserver2016-ps/dnsclient/Resolve-DnsName.md b/docset/winserver2016-ps/dnsclient/Resolve-DnsName.md index 0022765f1a..5c22bab1f1 100644 --- a/docset/winserver2016-ps/dnsclient/Resolve-DnsName.md +++ b/docset/winserver2016-ps/dnsclient/Resolve-DnsName.md @@ -2,7 +2,7 @@ external help file: dnslookup.dll-Help.xml Module Name: DnsClient ms.date: 05/20/2019 -online version: https://docs.microsoft.com/powershell/module/dnsclient/resolve-dnsname?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/resolve-dnsname?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resolve-DnsName --- diff --git a/docset/winserver2016-ps/dnsclient/Set-DnsClient.md b/docset/winserver2016-ps/dnsclient/Set-DnsClient.md index c407091832..00a906fa48 100644 --- a/docset/winserver2016-ps/dnsclient/Set-DnsClient.md +++ b/docset/winserver2016-ps/dnsclient/Set-DnsClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DnsClient.cdxml-help.xml Module Name: DnsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsclient/set-dnsclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/set-dnsclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsClient --- diff --git a/docset/winserver2016-ps/dnsclient/Set-DnsClientGlobalSetting.md b/docset/winserver2016-ps/dnsclient/Set-DnsClientGlobalSetting.md index f8a0b6b568..2138ded364 100644 --- a/docset/winserver2016-ps/dnsclient/Set-DnsClientGlobalSetting.md +++ b/docset/winserver2016-ps/dnsclient/Set-DnsClientGlobalSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DnsClientGlobalSetting.cdxml-help.xml Module Name: DnsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsclient/set-dnsclientglobalsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/set-dnsclientglobalsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsClientGlobalSetting --- diff --git a/docset/winserver2016-ps/dnsclient/Set-DnsClientNrptGlobal.md b/docset/winserver2016-ps/dnsclient/Set-DnsClientNrptGlobal.md index 14291a7e01..c472aa2234 100644 --- a/docset/winserver2016-ps/dnsclient/Set-DnsClientNrptGlobal.md +++ b/docset/winserver2016-ps/dnsclient/Set-DnsClientNrptGlobal.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsClientNRPTGlobal_v1.0.0.cdxml-help.xml Module Name: DnsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsclient/set-dnsclientnrptglobal?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/set-dnsclientnrptglobal?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsClientNrptGlobal --- diff --git a/docset/winserver2016-ps/dnsclient/Set-DnsClientNrptRule.md b/docset/winserver2016-ps/dnsclient/Set-DnsClientNrptRule.md index 823cb7aa1a..55c76aec09 100644 --- a/docset/winserver2016-ps/dnsclient/Set-DnsClientNrptRule.md +++ b/docset/winserver2016-ps/dnsclient/Set-DnsClientNrptRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsClientNRPTRule_v1.0.0.cdxml-help.xml Module Name: DnsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsclient/set-dnsclientnrptrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/set-dnsclientnrptrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsClientNrptRule --- diff --git a/docset/winserver2016-ps/dnsclient/Set-DnsClientServerAddress.md b/docset/winserver2016-ps/dnsclient/Set-DnsClientServerAddress.md index a26f4834a5..49c7ab4e7a 100644 --- a/docset/winserver2016-ps/dnsclient/Set-DnsClientServerAddress.md +++ b/docset/winserver2016-ps/dnsclient/Set-DnsClientServerAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DnsClientServerAddress.cdxml-help.xml Module Name: DnsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsclient/set-dnsclientserveraddress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/set-dnsclientserveraddress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsClientServerAddress --- diff --git a/docset/winserver2016-ps/dnsserver/Add-DnsServerClientSubnet.md b/docset/winserver2016-ps/dnsserver/Add-DnsServerClientSubnet.md index f190f0aad8..0f3ead97ce 100644 --- a/docset/winserver2016-ps/dnsserver/Add-DnsServerClientSubnet.md +++ b/docset/winserver2016-ps/dnsserver/Add-DnsServerClientSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerClientSubnet_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverclientsubnet?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverclientsubnet?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerClientSubnet --- diff --git a/docset/winserver2016-ps/dnsserver/Add-DnsServerConditionalForwarderZone.md b/docset/winserver2016-ps/dnsserver/Add-DnsServerConditionalForwarderZone.md index 76db07d6ef..9d0c8e282c 100644 --- a/docset/winserver2016-ps/dnsserver/Add-DnsServerConditionalForwarderZone.md +++ b/docset/winserver2016-ps/dnsserver/Add-DnsServerConditionalForwarderZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerConditionalForwarder_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverconditionalforwarderzone?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverconditionalforwarderzone?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerConditionalForwarderZone --- diff --git a/docset/winserver2016-ps/dnsserver/Add-DnsServerDirectoryPartition.md b/docset/winserver2016-ps/dnsserver/Add-DnsServerDirectoryPartition.md index e331809496..947c4e9a29 100644 --- a/docset/winserver2016-ps/dnsserver/Add-DnsServerDirectoryPartition.md +++ b/docset/winserver2016-ps/dnsserver/Add-DnsServerDirectoryPartition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerDirectoryPartition_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverdirectorypartition?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverdirectorypartition?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerDirectoryPartition --- diff --git a/docset/winserver2016-ps/dnsserver/Add-DnsServerForwarder.md b/docset/winserver2016-ps/dnsserver/Add-DnsServerForwarder.md index 4041f9a658..c175893481 100644 --- a/docset/winserver2016-ps/dnsserver/Add-DnsServerForwarder.md +++ b/docset/winserver2016-ps/dnsserver/Add-DnsServerForwarder.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerForwarder_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverforwarder?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverforwarder?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerForwarder --- diff --git a/docset/winserver2016-ps/dnsserver/Add-DnsServerPrimaryZone.md b/docset/winserver2016-ps/dnsserver/Add-DnsServerPrimaryZone.md index ef925bcd2a..ebab614f4c 100644 --- a/docset/winserver2016-ps/dnsserver/Add-DnsServerPrimaryZone.md +++ b/docset/winserver2016-ps/dnsserver/Add-DnsServerPrimaryZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerPrimaryZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverprimaryzone?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverprimaryzone?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerPrimaryZone --- diff --git a/docset/winserver2016-ps/dnsserver/Add-DnsServerQueryResolutionPolicy.md b/docset/winserver2016-ps/dnsserver/Add-DnsServerQueryResolutionPolicy.md index 1d041cbbda..be2756ee4c 100644 --- a/docset/winserver2016-ps/dnsserver/Add-DnsServerQueryResolutionPolicy.md +++ b/docset/winserver2016-ps/dnsserver/Add-DnsServerQueryResolutionPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerQueryResolutionPolicy_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverqueryresolutionpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverqueryresolutionpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerQueryResolutionPolicy --- diff --git a/docset/winserver2016-ps/dnsserver/Add-DnsServerRecursionScope.md b/docset/winserver2016-ps/dnsserver/Add-DnsServerRecursionScope.md index 94b54a2a33..757284dc63 100644 --- a/docset/winserver2016-ps/dnsserver/Add-DnsServerRecursionScope.md +++ b/docset/winserver2016-ps/dnsserver/Add-DnsServerRecursionScope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerRecursionScope_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverrecursionscope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverrecursionscope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerRecursionScope --- diff --git a/docset/winserver2016-ps/dnsserver/Add-DnsServerResourceRecord.md b/docset/winserver2016-ps/dnsserver/Add-DnsServerResourceRecord.md index 9830e442f8..bdc446be1d 100644 --- a/docset/winserver2016-ps/dnsserver/Add-DnsServerResourceRecord.md +++ b/docset/winserver2016-ps/dnsserver/Add-DnsServerResourceRecord.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResourceRecord_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecord?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecord?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerResourceRecord --- diff --git a/docset/winserver2016-ps/dnsserver/Add-DnsServerResourceRecordA.md b/docset/winserver2016-ps/dnsserver/Add-DnsServerResourceRecordA.md index ab7fdda9d7..05452132f9 100644 --- a/docset/winserver2016-ps/dnsserver/Add-DnsServerResourceRecordA.md +++ b/docset/winserver2016-ps/dnsserver/Add-DnsServerResourceRecordA.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResourceRecordA_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecorda?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecorda?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerResourceRecordA --- diff --git a/docset/winserver2016-ps/dnsserver/Add-DnsServerResourceRecordAAAA.md b/docset/winserver2016-ps/dnsserver/Add-DnsServerResourceRecordAAAA.md index fb937d5949..759e1de1eb 100644 --- a/docset/winserver2016-ps/dnsserver/Add-DnsServerResourceRecordAAAA.md +++ b/docset/winserver2016-ps/dnsserver/Add-DnsServerResourceRecordAAAA.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResourceRecordAAAA_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecordaaaa?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecordaaaa?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerResourceRecordAAAA --- diff --git a/docset/winserver2016-ps/dnsserver/Add-DnsServerResourceRecordCName.md b/docset/winserver2016-ps/dnsserver/Add-DnsServerResourceRecordCName.md index 87c6ab8de7..d68c769b5d 100644 --- a/docset/winserver2016-ps/dnsserver/Add-DnsServerResourceRecordCName.md +++ b/docset/winserver2016-ps/dnsserver/Add-DnsServerResourceRecordCName.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResourceRecordCNAME_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecordcname?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecordcname?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerResourceRecordCName --- diff --git a/docset/winserver2016-ps/dnsserver/Add-DnsServerResourceRecordDS.md b/docset/winserver2016-ps/dnsserver/Add-DnsServerResourceRecordDS.md index 3ff4f95cba..75f6f8a5ad 100644 --- a/docset/winserver2016-ps/dnsserver/Add-DnsServerResourceRecordDS.md +++ b/docset/winserver2016-ps/dnsserver/Add-DnsServerResourceRecordDS.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResourceRecordDS_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecordds?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecordds?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerResourceRecordDS --- diff --git a/docset/winserver2016-ps/dnsserver/Add-DnsServerResourceRecordDnsKey.md b/docset/winserver2016-ps/dnsserver/Add-DnsServerResourceRecordDnsKey.md index 7b74ce1b8d..3b707ea21b 100644 --- a/docset/winserver2016-ps/dnsserver/Add-DnsServerResourceRecordDnsKey.md +++ b/docset/winserver2016-ps/dnsserver/Add-DnsServerResourceRecordDnsKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResourceRecordDnsKey_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecorddnskey?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecorddnskey?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerResourceRecordDnsKey --- diff --git a/docset/winserver2016-ps/dnsserver/Add-DnsServerResourceRecordMX.md b/docset/winserver2016-ps/dnsserver/Add-DnsServerResourceRecordMX.md index 8a77e102ff..49bc35be82 100644 --- a/docset/winserver2016-ps/dnsserver/Add-DnsServerResourceRecordMX.md +++ b/docset/winserver2016-ps/dnsserver/Add-DnsServerResourceRecordMX.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResourceRecordMX_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecordmx?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecordmx?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerResourceRecordMX --- diff --git a/docset/winserver2016-ps/dnsserver/Add-DnsServerResourceRecordPtr.md b/docset/winserver2016-ps/dnsserver/Add-DnsServerResourceRecordPtr.md index a38ae29e86..306b699f6a 100644 --- a/docset/winserver2016-ps/dnsserver/Add-DnsServerResourceRecordPtr.md +++ b/docset/winserver2016-ps/dnsserver/Add-DnsServerResourceRecordPtr.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResourceRecordPTR_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecordptr?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecordptr?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerResourceRecordPtr --- diff --git a/docset/winserver2016-ps/dnsserver/Add-DnsServerResponseRateLimitingExceptionlist.md b/docset/winserver2016-ps/dnsserver/Add-DnsServerResponseRateLimitingExceptionlist.md index 64bba2d2c0..fbab6360d5 100644 --- a/docset/winserver2016-ps/dnsserver/Add-DnsServerResponseRateLimitingExceptionlist.md +++ b/docset/winserver2016-ps/dnsserver/Add-DnsServerResponseRateLimitingExceptionlist.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResponseRateLimitingExceptionlist_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverresponseratelimitingexceptionlist?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverresponseratelimitingexceptionlist?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerResponseRateLimitingExceptionlist --- diff --git a/docset/winserver2016-ps/dnsserver/Add-DnsServerRootHint.md b/docset/winserver2016-ps/dnsserver/Add-DnsServerRootHint.md index 495babf2d6..5841245c44 100644 --- a/docset/winserver2016-ps/dnsserver/Add-DnsServerRootHint.md +++ b/docset/winserver2016-ps/dnsserver/Add-DnsServerRootHint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerRootHint_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverroothint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverroothint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerRootHint --- diff --git a/docset/winserver2016-ps/dnsserver/Add-DnsServerSecondaryZone.md b/docset/winserver2016-ps/dnsserver/Add-DnsServerSecondaryZone.md index 15464a6ef2..897f654578 100644 --- a/docset/winserver2016-ps/dnsserver/Add-DnsServerSecondaryZone.md +++ b/docset/winserver2016-ps/dnsserver/Add-DnsServerSecondaryZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerSecondaryZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserversecondaryzone?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserversecondaryzone?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerSecondaryZone --- diff --git a/docset/winserver2016-ps/dnsserver/Add-DnsServerSigningKey.md b/docset/winserver2016-ps/dnsserver/Add-DnsServerSigningKey.md index 87915206c2..15ad182c07 100644 --- a/docset/winserver2016-ps/dnsserver/Add-DnsServerSigningKey.md +++ b/docset/winserver2016-ps/dnsserver/Add-DnsServerSigningKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerSigningKey_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserversigningkey?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserversigningkey?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerSigningKey --- diff --git a/docset/winserver2016-ps/dnsserver/Add-DnsServerStubZone.md b/docset/winserver2016-ps/dnsserver/Add-DnsServerStubZone.md index bf1bff67fa..142f8d058c 100644 --- a/docset/winserver2016-ps/dnsserver/Add-DnsServerStubZone.md +++ b/docset/winserver2016-ps/dnsserver/Add-DnsServerStubZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerStubZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverstubzone?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverstubzone?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerStubZone --- diff --git a/docset/winserver2016-ps/dnsserver/Add-DnsServerTrustAnchor.md b/docset/winserver2016-ps/dnsserver/Add-DnsServerTrustAnchor.md index c2d7c9d2e0..3e7887d7ac 100644 --- a/docset/winserver2016-ps/dnsserver/Add-DnsServerTrustAnchor.md +++ b/docset/winserver2016-ps/dnsserver/Add-DnsServerTrustAnchor.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerTrustAnchor_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsservertrustanchor?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsservertrustanchor?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerTrustAnchor --- diff --git a/docset/winserver2016-ps/dnsserver/Add-DnsServerVirtualizationInstance.md b/docset/winserver2016-ps/dnsserver/Add-DnsServerVirtualizationInstance.md index 074153d7fd..8386f69272 100644 --- a/docset/winserver2016-ps/dnsserver/Add-DnsServerVirtualizationInstance.md +++ b/docset/winserver2016-ps/dnsserver/Add-DnsServerVirtualizationInstance.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerVirtualizationInstance_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsservervirtualizationinstance?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsservervirtualizationinstance?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerVirtualizationInstance --- diff --git a/docset/winserver2016-ps/dnsserver/Add-DnsServerZoneDelegation.md b/docset/winserver2016-ps/dnsserver/Add-DnsServerZoneDelegation.md index ee6e17ce88..132624f3f0 100644 --- a/docset/winserver2016-ps/dnsserver/Add-DnsServerZoneDelegation.md +++ b/docset/winserver2016-ps/dnsserver/Add-DnsServerZoneDelegation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZoneDelegation_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverzonedelegation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverzonedelegation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerZoneDelegation --- diff --git a/docset/winserver2016-ps/dnsserver/Add-DnsServerZoneScope.md b/docset/winserver2016-ps/dnsserver/Add-DnsServerZoneScope.md index 442bac9cde..56e5990815 100644 --- a/docset/winserver2016-ps/dnsserver/Add-DnsServerZoneScope.md +++ b/docset/winserver2016-ps/dnsserver/Add-DnsServerZoneScope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZoneScope_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverzonescope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverzonescope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerZoneScope --- diff --git a/docset/winserver2016-ps/dnsserver/Add-DnsServerZoneTransferPolicy.md b/docset/winserver2016-ps/dnsserver/Add-DnsServerZoneTransferPolicy.md index 0a1a507d8f..3b2b3c9b7d 100644 --- a/docset/winserver2016-ps/dnsserver/Add-DnsServerZoneTransferPolicy.md +++ b/docset/winserver2016-ps/dnsserver/Add-DnsServerZoneTransferPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZoneTransferPolicy_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverzonetransferpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverzonetransferpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerZoneTransferPolicy --- diff --git a/docset/winserver2016-ps/dnsserver/Clear-DnsServerCache.md b/docset/winserver2016-ps/dnsserver/Clear-DnsServerCache.md index 152c594a23..dbcfde3ef1 100644 --- a/docset/winserver2016-ps/dnsserver/Clear-DnsServerCache.md +++ b/docset/winserver2016-ps/dnsserver/Clear-DnsServerCache.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerCache_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/clear-dnsservercache?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/clear-dnsservercache?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-DnsServerCache --- diff --git a/docset/winserver2016-ps/dnsserver/Clear-DnsServerStatistics.md b/docset/winserver2016-ps/dnsserver/Clear-DnsServerStatistics.md index 36ded701b0..1c8da3d152 100644 --- a/docset/winserver2016-ps/dnsserver/Clear-DnsServerStatistics.md +++ b/docset/winserver2016-ps/dnsserver/Clear-DnsServerStatistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerStatistics_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/clear-dnsserverstatistics?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/clear-dnsserverstatistics?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-DnsServerStatistics --- diff --git a/docset/winserver2016-ps/dnsserver/ConvertTo-DnsServerPrimaryZone.md b/docset/winserver2016-ps/dnsserver/ConvertTo-DnsServerPrimaryZone.md index dc8a33537e..0d29361d65 100644 --- a/docset/winserver2016-ps/dnsserver/ConvertTo-DnsServerPrimaryZone.md +++ b/docset/winserver2016-ps/dnsserver/ConvertTo-DnsServerPrimaryZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerPrimaryZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/convertto-dnsserverprimaryzone?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/convertto-dnsserverprimaryzone?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: ConvertTo-DnsServerPrimaryZone --- diff --git a/docset/winserver2016-ps/dnsserver/ConvertTo-DnsServerSecondaryZone.md b/docset/winserver2016-ps/dnsserver/ConvertTo-DnsServerSecondaryZone.md index b324a7667e..1c86197701 100644 --- a/docset/winserver2016-ps/dnsserver/ConvertTo-DnsServerSecondaryZone.md +++ b/docset/winserver2016-ps/dnsserver/ConvertTo-DnsServerSecondaryZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerSecondaryZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/convertto-dnsserversecondaryzone?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/convertto-dnsserversecondaryzone?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: ConvertTo-DnsServerSecondaryZone --- diff --git a/docset/winserver2016-ps/dnsserver/Disable-DnsServerPolicy.md b/docset/winserver2016-ps/dnsserver/Disable-DnsServerPolicy.md index dde2d4a275..22f0f0181e 100644 --- a/docset/winserver2016-ps/dnsserver/Disable-DnsServerPolicy.md +++ b/docset/winserver2016-ps/dnsserver/Disable-DnsServerPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerPolicy_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/disable-dnsserverpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/disable-dnsserverpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-DnsServerPolicy --- diff --git a/docset/winserver2016-ps/dnsserver/Disable-DnsServerSigningKeyRollover.md b/docset/winserver2016-ps/dnsserver/Disable-DnsServerSigningKeyRollover.md index 1ec25aa73d..1e6aaddd75 100644 --- a/docset/winserver2016-ps/dnsserver/Disable-DnsServerSigningKeyRollover.md +++ b/docset/winserver2016-ps/dnsserver/Disable-DnsServerSigningKeyRollover.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerSigningKeyRollover_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/disable-dnsserversigningkeyrollover?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/disable-dnsserversigningkeyrollover?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-DnsServerSigningKeyRollover --- diff --git a/docset/winserver2016-ps/dnsserver/Enable-DnsServerPolicy.md b/docset/winserver2016-ps/dnsserver/Enable-DnsServerPolicy.md index b90ac3f493..b9d0656927 100644 --- a/docset/winserver2016-ps/dnsserver/Enable-DnsServerPolicy.md +++ b/docset/winserver2016-ps/dnsserver/Enable-DnsServerPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerPolicy_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/enable-dnsserverpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/enable-dnsserverpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-DnsServerPolicy --- diff --git a/docset/winserver2016-ps/dnsserver/Enable-DnsServerSigningKeyRollover.md b/docset/winserver2016-ps/dnsserver/Enable-DnsServerSigningKeyRollover.md index ea4b6d497a..79b4afcd31 100644 --- a/docset/winserver2016-ps/dnsserver/Enable-DnsServerSigningKeyRollover.md +++ b/docset/winserver2016-ps/dnsserver/Enable-DnsServerSigningKeyRollover.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerSigningKeyRollover_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/enable-dnsserversigningkeyrollover?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/enable-dnsserversigningkeyrollover?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-DnsServerSigningKeyRollover --- diff --git a/docset/winserver2016-ps/dnsserver/Export-DnsServerDnsSecPublicKey.md b/docset/winserver2016-ps/dnsserver/Export-DnsServerDnsSecPublicKey.md index 2a60157571..aa399ce520 100644 --- a/docset/winserver2016-ps/dnsserver/Export-DnsServerDnsSecPublicKey.md +++ b/docset/winserver2016-ps/dnsserver/Export-DnsServerDnsSecPublicKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerDnsSecPublicKey_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/export-dnsserverdnssecpublickey?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/export-dnsserverdnssecpublickey?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-DnsServerDnsSecPublicKey --- diff --git a/docset/winserver2016-ps/dnsserver/Export-DnsServerZone.md b/docset/winserver2016-ps/dnsserver/Export-DnsServerZone.md index e6b12a80b0..32e157ca8a 100644 --- a/docset/winserver2016-ps/dnsserver/Export-DnsServerZone.md +++ b/docset/winserver2016-ps/dnsserver/Export-DnsServerZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/export-dnsserverzone?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/export-dnsserverzone?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-DnsServerZone --- diff --git a/docset/winserver2016-ps/dnsserver/Get-DnsServer.md b/docset/winserver2016-ps/dnsserver/Get-DnsServer.md index 19f204a5aa..c400228c93 100644 --- a/docset/winserver2016-ps/dnsserver/Get-DnsServer.md +++ b/docset/winserver2016-ps/dnsserver/Get-DnsServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServer_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServer --- diff --git a/docset/winserver2016-ps/dnsserver/Get-DnsServerCache.md b/docset/winserver2016-ps/dnsserver/Get-DnsServerCache.md index 8909f567de..6cf033c8fc 100644 --- a/docset/winserver2016-ps/dnsserver/Get-DnsServerCache.md +++ b/docset/winserver2016-ps/dnsserver/Get-DnsServerCache.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerCache_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsservercache?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsservercache?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerCache --- diff --git a/docset/winserver2016-ps/dnsserver/Get-DnsServerClientSubnet.md b/docset/winserver2016-ps/dnsserver/Get-DnsServerClientSubnet.md index c46db7e9b8..e17f364e29 100644 --- a/docset/winserver2016-ps/dnsserver/Get-DnsServerClientSubnet.md +++ b/docset/winserver2016-ps/dnsserver/Get-DnsServerClientSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerClientSubnet_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverclientsubnet?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverclientsubnet?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerClientSubnet --- diff --git a/docset/winserver2016-ps/dnsserver/Get-DnsServerDiagnostics.md b/docset/winserver2016-ps/dnsserver/Get-DnsServerDiagnostics.md index 1d51086310..c8e862f790 100644 --- a/docset/winserver2016-ps/dnsserver/Get-DnsServerDiagnostics.md +++ b/docset/winserver2016-ps/dnsserver/Get-DnsServerDiagnostics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerDiagnostics_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverdiagnostics?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverdiagnostics?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerDiagnostics --- diff --git a/docset/winserver2016-ps/dnsserver/Get-DnsServerDirectoryPartition.md b/docset/winserver2016-ps/dnsserver/Get-DnsServerDirectoryPartition.md index abac004427..f39500addf 100644 --- a/docset/winserver2016-ps/dnsserver/Get-DnsServerDirectoryPartition.md +++ b/docset/winserver2016-ps/dnsserver/Get-DnsServerDirectoryPartition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerDirectoryPartition_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverdirectorypartition?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverdirectorypartition?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerDirectoryPartition --- diff --git a/docset/winserver2016-ps/dnsserver/Get-DnsServerDnsSecZoneSetting.md b/docset/winserver2016-ps/dnsserver/Get-DnsServerDnsSecZoneSetting.md index 8f5fa41727..25d22dbfd3 100644 --- a/docset/winserver2016-ps/dnsserver/Get-DnsServerDnsSecZoneSetting.md +++ b/docset/winserver2016-ps/dnsserver/Get-DnsServerDnsSecZoneSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerDnsSecZoneSetting_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverdnsseczonesetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverdnsseczonesetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerDnsSecZoneSetting --- diff --git a/docset/winserver2016-ps/dnsserver/Get-DnsServerDsSetting.md b/docset/winserver2016-ps/dnsserver/Get-DnsServerDsSetting.md index 54bf827921..6235b2c090 100644 --- a/docset/winserver2016-ps/dnsserver/Get-DnsServerDsSetting.md +++ b/docset/winserver2016-ps/dnsserver/Get-DnsServerDsSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerDsSetting_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverdssetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverdssetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerDsSetting --- diff --git a/docset/winserver2016-ps/dnsserver/Get-DnsServerEDns.md b/docset/winserver2016-ps/dnsserver/Get-DnsServerEDns.md index 25e305cb2d..401995323e 100644 --- a/docset/winserver2016-ps/dnsserver/Get-DnsServerEDns.md +++ b/docset/winserver2016-ps/dnsserver/Get-DnsServerEDns.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerEdns_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserveredns?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserveredns?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerEDns --- diff --git a/docset/winserver2016-ps/dnsserver/Get-DnsServerForwarder.md b/docset/winserver2016-ps/dnsserver/Get-DnsServerForwarder.md index 7beabb058c..d63802405c 100644 --- a/docset/winserver2016-ps/dnsserver/Get-DnsServerForwarder.md +++ b/docset/winserver2016-ps/dnsserver/Get-DnsServerForwarder.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerForwarder_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverforwarder?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverforwarder?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerForwarder --- diff --git a/docset/winserver2016-ps/dnsserver/Get-DnsServerGlobalNameZone.md b/docset/winserver2016-ps/dnsserver/Get-DnsServerGlobalNameZone.md index 5b8bf68e5a..1d038d7ca1 100644 --- a/docset/winserver2016-ps/dnsserver/Get-DnsServerGlobalNameZone.md +++ b/docset/winserver2016-ps/dnsserver/Get-DnsServerGlobalNameZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerGlobalNameZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverglobalnamezone?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverglobalnamezone?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerGlobalNameZone --- diff --git a/docset/winserver2016-ps/dnsserver/Get-DnsServerGlobalQueryBlockList.md b/docset/winserver2016-ps/dnsserver/Get-DnsServerGlobalQueryBlockList.md index 786919168e..c670d9e346 100644 --- a/docset/winserver2016-ps/dnsserver/Get-DnsServerGlobalQueryBlockList.md +++ b/docset/winserver2016-ps/dnsserver/Get-DnsServerGlobalQueryBlockList.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerGlobalQueryBlockList_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverglobalqueryblocklist?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverglobalqueryblocklist?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerGlobalQueryBlockList --- diff --git a/docset/winserver2016-ps/dnsserver/Get-DnsServerQueryResolutionPolicy.md b/docset/winserver2016-ps/dnsserver/Get-DnsServerQueryResolutionPolicy.md index a762c40216..45a691f8fe 100644 --- a/docset/winserver2016-ps/dnsserver/Get-DnsServerQueryResolutionPolicy.md +++ b/docset/winserver2016-ps/dnsserver/Get-DnsServerQueryResolutionPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerQueryResolutionPolicy_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverqueryresolutionpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverqueryresolutionpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerQueryResolutionPolicy --- diff --git a/docset/winserver2016-ps/dnsserver/Get-DnsServerRecursion.md b/docset/winserver2016-ps/dnsserver/Get-DnsServerRecursion.md index 689cc8b401..1a551d859c 100644 --- a/docset/winserver2016-ps/dnsserver/Get-DnsServerRecursion.md +++ b/docset/winserver2016-ps/dnsserver/Get-DnsServerRecursion.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerRecursion_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverrecursion?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverrecursion?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerRecursion --- diff --git a/docset/winserver2016-ps/dnsserver/Get-DnsServerRecursionScope.md b/docset/winserver2016-ps/dnsserver/Get-DnsServerRecursionScope.md index eb476b47f5..9aa966a719 100644 --- a/docset/winserver2016-ps/dnsserver/Get-DnsServerRecursionScope.md +++ b/docset/winserver2016-ps/dnsserver/Get-DnsServerRecursionScope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerRecursionScope_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverrecursionscope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverrecursionscope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerRecursionScope --- diff --git a/docset/winserver2016-ps/dnsserver/Get-DnsServerResourceRecord.md b/docset/winserver2016-ps/dnsserver/Get-DnsServerResourceRecord.md index da41a710a9..586e7ad774 100644 --- a/docset/winserver2016-ps/dnsserver/Get-DnsServerResourceRecord.md +++ b/docset/winserver2016-ps/dnsserver/Get-DnsServerResourceRecord.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResourceRecord_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverresourcerecord?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverresourcerecord?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerResourceRecord --- diff --git a/docset/winserver2016-ps/dnsserver/Get-DnsServerResponseRateLimiting.md b/docset/winserver2016-ps/dnsserver/Get-DnsServerResponseRateLimiting.md index b27d9893db..5a5a26d580 100644 --- a/docset/winserver2016-ps/dnsserver/Get-DnsServerResponseRateLimiting.md +++ b/docset/winserver2016-ps/dnsserver/Get-DnsServerResponseRateLimiting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResponseRateLimiting_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverresponseratelimiting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverresponseratelimiting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerResponseRateLimiting --- diff --git a/docset/winserver2016-ps/dnsserver/Get-DnsServerResponseRateLimitingExceptionlist.md b/docset/winserver2016-ps/dnsserver/Get-DnsServerResponseRateLimitingExceptionlist.md index fe9a9e7813..5a80bac817 100644 --- a/docset/winserver2016-ps/dnsserver/Get-DnsServerResponseRateLimitingExceptionlist.md +++ b/docset/winserver2016-ps/dnsserver/Get-DnsServerResponseRateLimitingExceptionlist.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResponseRateLimitingExceptionlist_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverresponseratelimitingexceptionlist?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverresponseratelimitingexceptionlist?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerResponseRateLimitingExceptionlist --- diff --git a/docset/winserver2016-ps/dnsserver/Get-DnsServerRootHint.md b/docset/winserver2016-ps/dnsserver/Get-DnsServerRootHint.md index 461ceaf4b9..f4b63c3790 100644 --- a/docset/winserver2016-ps/dnsserver/Get-DnsServerRootHint.md +++ b/docset/winserver2016-ps/dnsserver/Get-DnsServerRootHint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerRootHint_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverroothint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverroothint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerRootHint --- diff --git a/docset/winserver2016-ps/dnsserver/Get-DnsServerScavenging.md b/docset/winserver2016-ps/dnsserver/Get-DnsServerScavenging.md index 5496a7015a..b2efbac645 100644 --- a/docset/winserver2016-ps/dnsserver/Get-DnsServerScavenging.md +++ b/docset/winserver2016-ps/dnsserver/Get-DnsServerScavenging.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerScavenging_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverscavenging?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverscavenging?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerScavenging --- diff --git a/docset/winserver2016-ps/dnsserver/Get-DnsServerSetting.md b/docset/winserver2016-ps/dnsserver/Get-DnsServerSetting.md index 7e1f1cad38..0d1f47d664 100644 --- a/docset/winserver2016-ps/dnsserver/Get-DnsServerSetting.md +++ b/docset/winserver2016-ps/dnsserver/Get-DnsServerSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerSetting_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserversetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserversetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerSetting --- diff --git a/docset/winserver2016-ps/dnsserver/Get-DnsServerSigningKey.md b/docset/winserver2016-ps/dnsserver/Get-DnsServerSigningKey.md index 072ed11efa..b74badcccb 100644 --- a/docset/winserver2016-ps/dnsserver/Get-DnsServerSigningKey.md +++ b/docset/winserver2016-ps/dnsserver/Get-DnsServerSigningKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerSigningKey_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserversigningkey?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserversigningkey?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerSigningKey --- diff --git a/docset/winserver2016-ps/dnsserver/Get-DnsServerStatistics.md b/docset/winserver2016-ps/dnsserver/Get-DnsServerStatistics.md index 02b19077eb..63edb55981 100644 --- a/docset/winserver2016-ps/dnsserver/Get-DnsServerStatistics.md +++ b/docset/winserver2016-ps/dnsserver/Get-DnsServerStatistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerStatistics_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverstatistics?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverstatistics?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerStatistics --- diff --git a/docset/winserver2016-ps/dnsserver/Get-DnsServerTrustAnchor.md b/docset/winserver2016-ps/dnsserver/Get-DnsServerTrustAnchor.md index 363d854859..367ac99777 100644 --- a/docset/winserver2016-ps/dnsserver/Get-DnsServerTrustAnchor.md +++ b/docset/winserver2016-ps/dnsserver/Get-DnsServerTrustAnchor.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerTrustAnchor_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsservertrustanchor?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsservertrustanchor?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerTrustAnchor --- diff --git a/docset/winserver2016-ps/dnsserver/Get-DnsServerTrustPoint.md b/docset/winserver2016-ps/dnsserver/Get-DnsServerTrustPoint.md index edcd880375..d6e12917c2 100644 --- a/docset/winserver2016-ps/dnsserver/Get-DnsServerTrustPoint.md +++ b/docset/winserver2016-ps/dnsserver/Get-DnsServerTrustPoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerTrustPoint_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsservertrustpoint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsservertrustpoint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerTrustPoint --- diff --git a/docset/winserver2016-ps/dnsserver/Get-DnsServerVirtualizationInstance.md b/docset/winserver2016-ps/dnsserver/Get-DnsServerVirtualizationInstance.md index 28fd84420d..b22d5956db 100644 --- a/docset/winserver2016-ps/dnsserver/Get-DnsServerVirtualizationInstance.md +++ b/docset/winserver2016-ps/dnsserver/Get-DnsServerVirtualizationInstance.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerVirtualizationInstance_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsservervirtualizationinstance?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsservervirtualizationinstance?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerVirtualizationInstance --- diff --git a/docset/winserver2016-ps/dnsserver/Get-DnsServerZone.md b/docset/winserver2016-ps/dnsserver/Get-DnsServerZone.md index 4cd4246ce8..b4623b3c83 100644 --- a/docset/winserver2016-ps/dnsserver/Get-DnsServerZone.md +++ b/docset/winserver2016-ps/dnsserver/Get-DnsServerZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverzone?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverzone?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerZone --- diff --git a/docset/winserver2016-ps/dnsserver/Get-DnsServerZoneAging.md b/docset/winserver2016-ps/dnsserver/Get-DnsServerZoneAging.md index eb984ac05c..a65f6d938a 100644 --- a/docset/winserver2016-ps/dnsserver/Get-DnsServerZoneAging.md +++ b/docset/winserver2016-ps/dnsserver/Get-DnsServerZoneAging.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZoneAging_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverzoneaging?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverzoneaging?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerZoneAging --- diff --git a/docset/winserver2016-ps/dnsserver/Get-DnsServerZoneDelegation.md b/docset/winserver2016-ps/dnsserver/Get-DnsServerZoneDelegation.md index 5959ab7253..bcea93d880 100644 --- a/docset/winserver2016-ps/dnsserver/Get-DnsServerZoneDelegation.md +++ b/docset/winserver2016-ps/dnsserver/Get-DnsServerZoneDelegation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZoneDelegation_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverzonedelegation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverzonedelegation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerZoneDelegation --- diff --git a/docset/winserver2016-ps/dnsserver/Get-DnsServerZoneScope.md b/docset/winserver2016-ps/dnsserver/Get-DnsServerZoneScope.md index c75f428563..c374537fca 100644 --- a/docset/winserver2016-ps/dnsserver/Get-DnsServerZoneScope.md +++ b/docset/winserver2016-ps/dnsserver/Get-DnsServerZoneScope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZoneScope_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverzonescope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverzonescope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerZoneScope --- diff --git a/docset/winserver2016-ps/dnsserver/Get-DnsServerZoneTransferPolicy.md b/docset/winserver2016-ps/dnsserver/Get-DnsServerZoneTransferPolicy.md index 352a9bca06..8d8672530c 100644 --- a/docset/winserver2016-ps/dnsserver/Get-DnsServerZoneTransferPolicy.md +++ b/docset/winserver2016-ps/dnsserver/Get-DnsServerZoneTransferPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZoneTransferPolicy_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverzonetransferpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverzonetransferpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerZoneTransferPolicy --- diff --git a/docset/winserver2016-ps/dnsserver/Import-DnsServerResourceRecordDS.md b/docset/winserver2016-ps/dnsserver/Import-DnsServerResourceRecordDS.md index 6dbef7e2fc..14183a3c98 100644 --- a/docset/winserver2016-ps/dnsserver/Import-DnsServerResourceRecordDS.md +++ b/docset/winserver2016-ps/dnsserver/Import-DnsServerResourceRecordDS.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResourceRecordDS_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/import-dnsserverresourcerecordds?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/import-dnsserverresourcerecordds?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-DnsServerResourceRecordDS --- diff --git a/docset/winserver2016-ps/dnsserver/Import-DnsServerRootHint.md b/docset/winserver2016-ps/dnsserver/Import-DnsServerRootHint.md index f929fd6311..ac24ebb7aa 100644 --- a/docset/winserver2016-ps/dnsserver/Import-DnsServerRootHint.md +++ b/docset/winserver2016-ps/dnsserver/Import-DnsServerRootHint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerRootHint_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/import-dnsserverroothint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/import-dnsserverroothint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-DnsServerRootHint --- diff --git a/docset/winserver2016-ps/dnsserver/Import-DnsServerTrustAnchor.md b/docset/winserver2016-ps/dnsserver/Import-DnsServerTrustAnchor.md index 0cde63f6c1..3f8a43050f 100644 --- a/docset/winserver2016-ps/dnsserver/Import-DnsServerTrustAnchor.md +++ b/docset/winserver2016-ps/dnsserver/Import-DnsServerTrustAnchor.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerTrustAnchor_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/import-dnsservertrustanchor?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/import-dnsservertrustanchor?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-DnsServerTrustAnchor --- diff --git a/docset/winserver2016-ps/dnsserver/Invoke-DnsServerSigningKeyRollover.md b/docset/winserver2016-ps/dnsserver/Invoke-DnsServerSigningKeyRollover.md index 0ad413ea24..8c86d63a15 100644 --- a/docset/winserver2016-ps/dnsserver/Invoke-DnsServerSigningKeyRollover.md +++ b/docset/winserver2016-ps/dnsserver/Invoke-DnsServerSigningKeyRollover.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerSigningKeyRollover_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/invoke-dnsserversigningkeyrollover?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/invoke-dnsserversigningkeyrollover?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-DnsServerSigningKeyRollover --- diff --git a/docset/winserver2016-ps/dnsserver/Invoke-DnsServerZoneSign.md b/docset/winserver2016-ps/dnsserver/Invoke-DnsServerZoneSign.md index 7fa0d0c383..c1fff8f726 100644 --- a/docset/winserver2016-ps/dnsserver/Invoke-DnsServerZoneSign.md +++ b/docset/winserver2016-ps/dnsserver/Invoke-DnsServerZoneSign.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZoneSign_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/invoke-dnsserverzonesign?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/invoke-dnsserverzonesign?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-DnsServerZoneSign --- diff --git a/docset/winserver2016-ps/dnsserver/Invoke-DnsServerZoneUnsign.md b/docset/winserver2016-ps/dnsserver/Invoke-DnsServerZoneUnsign.md index bcb4dc55ef..a7d4ad83a8 100644 --- a/docset/winserver2016-ps/dnsserver/Invoke-DnsServerZoneUnsign.md +++ b/docset/winserver2016-ps/dnsserver/Invoke-DnsServerZoneUnsign.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZoneUnsign_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/invoke-dnsserverzoneunsign?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/invoke-dnsserverzoneunsign?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-DnsServerZoneUnsign --- diff --git a/docset/winserver2016-ps/dnsserver/Register-DnsServerDirectoryPartition.md b/docset/winserver2016-ps/dnsserver/Register-DnsServerDirectoryPartition.md index e06bd8ce88..e04d6c0af8 100644 --- a/docset/winserver2016-ps/dnsserver/Register-DnsServerDirectoryPartition.md +++ b/docset/winserver2016-ps/dnsserver/Register-DnsServerDirectoryPartition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerDirectoryPartition_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/register-dnsserverdirectorypartition?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/register-dnsserverdirectorypartition?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Register-DnsServerDirectoryPartition --- diff --git a/docset/winserver2016-ps/dnsserver/Remove-DnsServerClientSubnet.md b/docset/winserver2016-ps/dnsserver/Remove-DnsServerClientSubnet.md index 6eb6874294..a29c31ae3a 100644 --- a/docset/winserver2016-ps/dnsserver/Remove-DnsServerClientSubnet.md +++ b/docset/winserver2016-ps/dnsserver/Remove-DnsServerClientSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerClientSubnet_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsserverclientsubnet?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsserverclientsubnet?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsServerClientSubnet --- diff --git a/docset/winserver2016-ps/dnsserver/Remove-DnsServerDirectoryPartition.md b/docset/winserver2016-ps/dnsserver/Remove-DnsServerDirectoryPartition.md index 7c43c3c3de..37d42004d2 100644 --- a/docset/winserver2016-ps/dnsserver/Remove-DnsServerDirectoryPartition.md +++ b/docset/winserver2016-ps/dnsserver/Remove-DnsServerDirectoryPartition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerDirectoryPartition_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsserverdirectorypartition?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsserverdirectorypartition?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsServerDirectoryPartition --- diff --git a/docset/winserver2016-ps/dnsserver/Remove-DnsServerForwarder.md b/docset/winserver2016-ps/dnsserver/Remove-DnsServerForwarder.md index ca16d0ac0e..5632915bc1 100644 --- a/docset/winserver2016-ps/dnsserver/Remove-DnsServerForwarder.md +++ b/docset/winserver2016-ps/dnsserver/Remove-DnsServerForwarder.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerForwarder_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsserverforwarder?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsserverforwarder?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsServerForwarder --- diff --git a/docset/winserver2016-ps/dnsserver/Remove-DnsServerQueryResolutionPolicy.md b/docset/winserver2016-ps/dnsserver/Remove-DnsServerQueryResolutionPolicy.md index 381cca073b..8c5ea33124 100644 --- a/docset/winserver2016-ps/dnsserver/Remove-DnsServerQueryResolutionPolicy.md +++ b/docset/winserver2016-ps/dnsserver/Remove-DnsServerQueryResolutionPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerQueryResolutionPolicy_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsserverqueryresolutionpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsserverqueryresolutionpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsServerQueryResolutionPolicy --- diff --git a/docset/winserver2016-ps/dnsserver/Remove-DnsServerRecursionScope.md b/docset/winserver2016-ps/dnsserver/Remove-DnsServerRecursionScope.md index e125e5a81b..58ec15a2af 100644 --- a/docset/winserver2016-ps/dnsserver/Remove-DnsServerRecursionScope.md +++ b/docset/winserver2016-ps/dnsserver/Remove-DnsServerRecursionScope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerRecursionScope_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsserverrecursionscope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsserverrecursionscope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsServerRecursionScope --- diff --git a/docset/winserver2016-ps/dnsserver/Remove-DnsServerResourceRecord.md b/docset/winserver2016-ps/dnsserver/Remove-DnsServerResourceRecord.md index 49ce8e6cf5..a54746f3a8 100644 --- a/docset/winserver2016-ps/dnsserver/Remove-DnsServerResourceRecord.md +++ b/docset/winserver2016-ps/dnsserver/Remove-DnsServerResourceRecord.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResourceRecord_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsserverresourcerecord?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsserverresourcerecord?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsServerResourceRecord --- diff --git a/docset/winserver2016-ps/dnsserver/Remove-DnsServerResponseRateLimitingExceptionlist.md b/docset/winserver2016-ps/dnsserver/Remove-DnsServerResponseRateLimitingExceptionlist.md index 732c70242e..6535853312 100644 --- a/docset/winserver2016-ps/dnsserver/Remove-DnsServerResponseRateLimitingExceptionlist.md +++ b/docset/winserver2016-ps/dnsserver/Remove-DnsServerResponseRateLimitingExceptionlist.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResponseRateLimitingExceptionlist_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsserverresponseratelimitingexceptionlist?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsserverresponseratelimitingexceptionlist?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsServerResponseRateLimitingExceptionlist --- diff --git a/docset/winserver2016-ps/dnsserver/Remove-DnsServerRootHint.md b/docset/winserver2016-ps/dnsserver/Remove-DnsServerRootHint.md index d3e487be99..8e5c48a888 100644 --- a/docset/winserver2016-ps/dnsserver/Remove-DnsServerRootHint.md +++ b/docset/winserver2016-ps/dnsserver/Remove-DnsServerRootHint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerRootHint_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsserverroothint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsserverroothint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsServerRootHint --- diff --git a/docset/winserver2016-ps/dnsserver/Remove-DnsServerSigningKey.md b/docset/winserver2016-ps/dnsserver/Remove-DnsServerSigningKey.md index fc6436a12a..66f2085358 100644 --- a/docset/winserver2016-ps/dnsserver/Remove-DnsServerSigningKey.md +++ b/docset/winserver2016-ps/dnsserver/Remove-DnsServerSigningKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerSigningKey_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsserversigningkey?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsserversigningkey?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsServerSigningKey --- diff --git a/docset/winserver2016-ps/dnsserver/Remove-DnsServerTrustAnchor.md b/docset/winserver2016-ps/dnsserver/Remove-DnsServerTrustAnchor.md index ee3969c460..e309b23173 100644 --- a/docset/winserver2016-ps/dnsserver/Remove-DnsServerTrustAnchor.md +++ b/docset/winserver2016-ps/dnsserver/Remove-DnsServerTrustAnchor.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerTrustAnchor_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsservertrustanchor?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsservertrustanchor?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsServerTrustAnchor --- diff --git a/docset/winserver2016-ps/dnsserver/Remove-DnsServerVirtualizationInstance.md b/docset/winserver2016-ps/dnsserver/Remove-DnsServerVirtualizationInstance.md index 01fef85542..44f2d6e4e5 100644 --- a/docset/winserver2016-ps/dnsserver/Remove-DnsServerVirtualizationInstance.md +++ b/docset/winserver2016-ps/dnsserver/Remove-DnsServerVirtualizationInstance.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerVirtualizationInstance_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsservervirtualizationinstance?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsservervirtualizationinstance?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsServerVirtualizationInstance --- diff --git a/docset/winserver2016-ps/dnsserver/Remove-DnsServerZone.md b/docset/winserver2016-ps/dnsserver/Remove-DnsServerZone.md index dbb0125c15..76f85a6b0b 100644 --- a/docset/winserver2016-ps/dnsserver/Remove-DnsServerZone.md +++ b/docset/winserver2016-ps/dnsserver/Remove-DnsServerZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsserverzone?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsserverzone?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsServerZone --- diff --git a/docset/winserver2016-ps/dnsserver/Remove-DnsServerZoneDelegation.md b/docset/winserver2016-ps/dnsserver/Remove-DnsServerZoneDelegation.md index 7e4f9a1232..235c1d6be3 100644 --- a/docset/winserver2016-ps/dnsserver/Remove-DnsServerZoneDelegation.md +++ b/docset/winserver2016-ps/dnsserver/Remove-DnsServerZoneDelegation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZoneDelegation_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsserverzonedelegation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsserverzonedelegation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsServerZoneDelegation --- diff --git a/docset/winserver2016-ps/dnsserver/Remove-DnsServerZoneScope.md b/docset/winserver2016-ps/dnsserver/Remove-DnsServerZoneScope.md index a6f9905116..90dcc06d41 100644 --- a/docset/winserver2016-ps/dnsserver/Remove-DnsServerZoneScope.md +++ b/docset/winserver2016-ps/dnsserver/Remove-DnsServerZoneScope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZoneScope_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsserverzonescope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsserverzonescope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsServerZoneScope --- diff --git a/docset/winserver2016-ps/dnsserver/Remove-DnsServerZoneTransferPolicy.md b/docset/winserver2016-ps/dnsserver/Remove-DnsServerZoneTransferPolicy.md index 0680ce0957..4472f93802 100644 --- a/docset/winserver2016-ps/dnsserver/Remove-DnsServerZoneTransferPolicy.md +++ b/docset/winserver2016-ps/dnsserver/Remove-DnsServerZoneTransferPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZoneTransferPolicy_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsserverzonetransferpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsserverzonetransferpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsServerZoneTransferPolicy --- diff --git a/docset/winserver2016-ps/dnsserver/Reset-DnsServerZoneKeyMasterRole.md b/docset/winserver2016-ps/dnsserver/Reset-DnsServerZoneKeyMasterRole.md index 19fe0265dd..f7e5b0ce71 100644 --- a/docset/winserver2016-ps/dnsserver/Reset-DnsServerZoneKeyMasterRole.md +++ b/docset/winserver2016-ps/dnsserver/Reset-DnsServerZoneKeyMasterRole.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZoneKeyMasterRole_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/reset-dnsserverzonekeymasterrole?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/reset-dnsserverzonekeymasterrole?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-DnsServerZoneKeyMasterRole --- diff --git a/docset/winserver2016-ps/dnsserver/Restore-DnsServerPrimaryZone.md b/docset/winserver2016-ps/dnsserver/Restore-DnsServerPrimaryZone.md index 254d88953f..37b0b5cfa6 100644 --- a/docset/winserver2016-ps/dnsserver/Restore-DnsServerPrimaryZone.md +++ b/docset/winserver2016-ps/dnsserver/Restore-DnsServerPrimaryZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerPrimaryZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/restore-dnsserverprimaryzone?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/restore-dnsserverprimaryzone?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-DnsServerPrimaryZone --- diff --git a/docset/winserver2016-ps/dnsserver/Restore-DnsServerSecondaryZone.md b/docset/winserver2016-ps/dnsserver/Restore-DnsServerSecondaryZone.md index d2c8c55b5d..31af260626 100644 --- a/docset/winserver2016-ps/dnsserver/Restore-DnsServerSecondaryZone.md +++ b/docset/winserver2016-ps/dnsserver/Restore-DnsServerSecondaryZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerSecondaryZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/restore-dnsserversecondaryzone?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/restore-dnsserversecondaryzone?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-DnsServerSecondaryZone --- diff --git a/docset/winserver2016-ps/dnsserver/Resume-DnsServerZone.md b/docset/winserver2016-ps/dnsserver/Resume-DnsServerZone.md index 5f143229ad..0cdfda5043 100644 --- a/docset/winserver2016-ps/dnsserver/Resume-DnsServerZone.md +++ b/docset/winserver2016-ps/dnsserver/Resume-DnsServerZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/resume-dnsserverzone?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/resume-dnsserverzone?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-DnsServerZone --- diff --git a/docset/winserver2016-ps/dnsserver/Set-DnsServer.md b/docset/winserver2016-ps/dnsserver/Set-DnsServer.md index 9f538cb8ac..2d1acd18b7 100644 --- a/docset/winserver2016-ps/dnsserver/Set-DnsServer.md +++ b/docset/winserver2016-ps/dnsserver/Set-DnsServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServer_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServer --- diff --git a/docset/winserver2016-ps/dnsserver/Set-DnsServerCache.md b/docset/winserver2016-ps/dnsserver/Set-DnsServerCache.md index 828dda8cbf..c113a8bc54 100644 --- a/docset/winserver2016-ps/dnsserver/Set-DnsServerCache.md +++ b/docset/winserver2016-ps/dnsserver/Set-DnsServerCache.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerCache_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsservercache?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsservercache?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerCache --- diff --git a/docset/winserver2016-ps/dnsserver/Set-DnsServerClientSubnet.md b/docset/winserver2016-ps/dnsserver/Set-DnsServerClientSubnet.md index bab2c13d14..ca6a2d0dcd 100644 --- a/docset/winserver2016-ps/dnsserver/Set-DnsServerClientSubnet.md +++ b/docset/winserver2016-ps/dnsserver/Set-DnsServerClientSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerClientSubnet_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverclientsubnet?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverclientsubnet?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerClientSubnet --- diff --git a/docset/winserver2016-ps/dnsserver/Set-DnsServerConditionalForwarderZone.md b/docset/winserver2016-ps/dnsserver/Set-DnsServerConditionalForwarderZone.md index 1f991ba266..1febc60dfb 100644 --- a/docset/winserver2016-ps/dnsserver/Set-DnsServerConditionalForwarderZone.md +++ b/docset/winserver2016-ps/dnsserver/Set-DnsServerConditionalForwarderZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerConditionalForwarder_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverconditionalforwarderzone?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverconditionalforwarderzone?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerConditionalForwarderZone --- diff --git a/docset/winserver2016-ps/dnsserver/Set-DnsServerDiagnostics.md b/docset/winserver2016-ps/dnsserver/Set-DnsServerDiagnostics.md index 6543878441..1211fff171 100644 --- a/docset/winserver2016-ps/dnsserver/Set-DnsServerDiagnostics.md +++ b/docset/winserver2016-ps/dnsserver/Set-DnsServerDiagnostics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerDiagnostics_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverdiagnostics?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverdiagnostics?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerDiagnostics --- diff --git a/docset/winserver2016-ps/dnsserver/Set-DnsServerDnsSecZoneSetting.md b/docset/winserver2016-ps/dnsserver/Set-DnsServerDnsSecZoneSetting.md index 8a132f191c..d25f328db0 100644 --- a/docset/winserver2016-ps/dnsserver/Set-DnsServerDnsSecZoneSetting.md +++ b/docset/winserver2016-ps/dnsserver/Set-DnsServerDnsSecZoneSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerDnsSecZoneSetting_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverdnsseczonesetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverdnsseczonesetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerDnsSecZoneSetting --- diff --git a/docset/winserver2016-ps/dnsserver/Set-DnsServerDsSetting.md b/docset/winserver2016-ps/dnsserver/Set-DnsServerDsSetting.md index 63306052e7..7519455668 100644 --- a/docset/winserver2016-ps/dnsserver/Set-DnsServerDsSetting.md +++ b/docset/winserver2016-ps/dnsserver/Set-DnsServerDsSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerDsSetting_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverdssetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverdssetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerDsSetting --- diff --git a/docset/winserver2016-ps/dnsserver/Set-DnsServerEDns.md b/docset/winserver2016-ps/dnsserver/Set-DnsServerEDns.md index 2ac66ab477..c4056188aa 100644 --- a/docset/winserver2016-ps/dnsserver/Set-DnsServerEDns.md +++ b/docset/winserver2016-ps/dnsserver/Set-DnsServerEDns.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerEdns_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserveredns?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserveredns?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerEDns --- diff --git a/docset/winserver2016-ps/dnsserver/Set-DnsServerForwarder.md b/docset/winserver2016-ps/dnsserver/Set-DnsServerForwarder.md index e679d1fbbf..09672296ed 100644 --- a/docset/winserver2016-ps/dnsserver/Set-DnsServerForwarder.md +++ b/docset/winserver2016-ps/dnsserver/Set-DnsServerForwarder.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerForwarder_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverforwarder?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverforwarder?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerForwarder --- diff --git a/docset/winserver2016-ps/dnsserver/Set-DnsServerGlobalNameZone.md b/docset/winserver2016-ps/dnsserver/Set-DnsServerGlobalNameZone.md index 4ce7f479d4..27ccebd353 100644 --- a/docset/winserver2016-ps/dnsserver/Set-DnsServerGlobalNameZone.md +++ b/docset/winserver2016-ps/dnsserver/Set-DnsServerGlobalNameZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerGlobalNameZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverglobalnamezone?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverglobalnamezone?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerGlobalNameZone --- diff --git a/docset/winserver2016-ps/dnsserver/Set-DnsServerGlobalQueryBlockList.md b/docset/winserver2016-ps/dnsserver/Set-DnsServerGlobalQueryBlockList.md index 5190e84759..3af7ce0bca 100644 --- a/docset/winserver2016-ps/dnsserver/Set-DnsServerGlobalQueryBlockList.md +++ b/docset/winserver2016-ps/dnsserver/Set-DnsServerGlobalQueryBlockList.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerGlobalQueryBlockList_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverglobalqueryblocklist?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverglobalqueryblocklist?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerGlobalQueryBlockList --- diff --git a/docset/winserver2016-ps/dnsserver/Set-DnsServerPrimaryZone.md b/docset/winserver2016-ps/dnsserver/Set-DnsServerPrimaryZone.md index 768d218947..37e466ec40 100644 --- a/docset/winserver2016-ps/dnsserver/Set-DnsServerPrimaryZone.md +++ b/docset/winserver2016-ps/dnsserver/Set-DnsServerPrimaryZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerPrimaryZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverprimaryzone?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverprimaryzone?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerPrimaryZone --- diff --git a/docset/winserver2016-ps/dnsserver/Set-DnsServerQueryResolutionPolicy.md b/docset/winserver2016-ps/dnsserver/Set-DnsServerQueryResolutionPolicy.md index 717b35ea9d..6d6dffa192 100644 --- a/docset/winserver2016-ps/dnsserver/Set-DnsServerQueryResolutionPolicy.md +++ b/docset/winserver2016-ps/dnsserver/Set-DnsServerQueryResolutionPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerQueryResolutionPolicy_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverqueryresolutionpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverqueryresolutionpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerQueryResolutionPolicy --- diff --git a/docset/winserver2016-ps/dnsserver/Set-DnsServerRecursion.md b/docset/winserver2016-ps/dnsserver/Set-DnsServerRecursion.md index 9a7f12275e..ba4c702dd7 100644 --- a/docset/winserver2016-ps/dnsserver/Set-DnsServerRecursion.md +++ b/docset/winserver2016-ps/dnsserver/Set-DnsServerRecursion.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerRecursion_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverrecursion?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverrecursion?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerRecursion --- diff --git a/docset/winserver2016-ps/dnsserver/Set-DnsServerRecursionScope.md b/docset/winserver2016-ps/dnsserver/Set-DnsServerRecursionScope.md index 0459124f4c..9f3cdcb0b5 100644 --- a/docset/winserver2016-ps/dnsserver/Set-DnsServerRecursionScope.md +++ b/docset/winserver2016-ps/dnsserver/Set-DnsServerRecursionScope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerRecursionScope_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverrecursionscope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverrecursionscope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerRecursionScope --- diff --git a/docset/winserver2016-ps/dnsserver/Set-DnsServerResourceRecord.md b/docset/winserver2016-ps/dnsserver/Set-DnsServerResourceRecord.md index 5707c028fe..511107f8bf 100644 --- a/docset/winserver2016-ps/dnsserver/Set-DnsServerResourceRecord.md +++ b/docset/winserver2016-ps/dnsserver/Set-DnsServerResourceRecord.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResourceRecord_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverresourcerecord?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverresourcerecord?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerResourceRecord --- diff --git a/docset/winserver2016-ps/dnsserver/Set-DnsServerResourceRecordAging.md b/docset/winserver2016-ps/dnsserver/Set-DnsServerResourceRecordAging.md index 4ea520996b..3dc3b73a0b 100644 --- a/docset/winserver2016-ps/dnsserver/Set-DnsServerResourceRecordAging.md +++ b/docset/winserver2016-ps/dnsserver/Set-DnsServerResourceRecordAging.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResourceRecordAging_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverresourcerecordaging?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverresourcerecordaging?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerResourceRecordAging --- diff --git a/docset/winserver2016-ps/dnsserver/Set-DnsServerResponseRateLimiting.md b/docset/winserver2016-ps/dnsserver/Set-DnsServerResponseRateLimiting.md index 81dee4dfcb..37c258f244 100644 --- a/docset/winserver2016-ps/dnsserver/Set-DnsServerResponseRateLimiting.md +++ b/docset/winserver2016-ps/dnsserver/Set-DnsServerResponseRateLimiting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResponseRateLimiting_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverresponseratelimiting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverresponseratelimiting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerResponseRateLimiting --- diff --git a/docset/winserver2016-ps/dnsserver/Set-DnsServerResponseRateLimitingExceptionlist.md b/docset/winserver2016-ps/dnsserver/Set-DnsServerResponseRateLimitingExceptionlist.md index 75fc779d45..e34e6e07b5 100644 --- a/docset/winserver2016-ps/dnsserver/Set-DnsServerResponseRateLimitingExceptionlist.md +++ b/docset/winserver2016-ps/dnsserver/Set-DnsServerResponseRateLimitingExceptionlist.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResponseRateLimitingExceptionlist_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverresponseratelimitingexceptionlist?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverresponseratelimitingexceptionlist?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerResponseRateLimitingExceptionlist --- diff --git a/docset/winserver2016-ps/dnsserver/Set-DnsServerRootHint.md b/docset/winserver2016-ps/dnsserver/Set-DnsServerRootHint.md index fa41ba114b..5226159d5a 100644 --- a/docset/winserver2016-ps/dnsserver/Set-DnsServerRootHint.md +++ b/docset/winserver2016-ps/dnsserver/Set-DnsServerRootHint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerRootHint_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverroothint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverroothint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerRootHint --- diff --git a/docset/winserver2016-ps/dnsserver/Set-DnsServerScavenging.md b/docset/winserver2016-ps/dnsserver/Set-DnsServerScavenging.md index f00f929586..f7e29c842b 100644 --- a/docset/winserver2016-ps/dnsserver/Set-DnsServerScavenging.md +++ b/docset/winserver2016-ps/dnsserver/Set-DnsServerScavenging.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerScavenging_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverscavenging?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverscavenging?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerScavenging --- diff --git a/docset/winserver2016-ps/dnsserver/Set-DnsServerSecondaryZone.md b/docset/winserver2016-ps/dnsserver/Set-DnsServerSecondaryZone.md index 145d2ed419..b1270cbe78 100644 --- a/docset/winserver2016-ps/dnsserver/Set-DnsServerSecondaryZone.md +++ b/docset/winserver2016-ps/dnsserver/Set-DnsServerSecondaryZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerSecondaryZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserversecondaryzone?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserversecondaryzone?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerSecondaryZone --- diff --git a/docset/winserver2016-ps/dnsserver/Set-DnsServerSetting.md b/docset/winserver2016-ps/dnsserver/Set-DnsServerSetting.md index 7174a8799d..81d1eb7d86 100644 --- a/docset/winserver2016-ps/dnsserver/Set-DnsServerSetting.md +++ b/docset/winserver2016-ps/dnsserver/Set-DnsServerSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerSetting_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserversetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserversetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerSetting --- diff --git a/docset/winserver2016-ps/dnsserver/Set-DnsServerSigningKey.md b/docset/winserver2016-ps/dnsserver/Set-DnsServerSigningKey.md index 139906edc1..05a9830696 100644 --- a/docset/winserver2016-ps/dnsserver/Set-DnsServerSigningKey.md +++ b/docset/winserver2016-ps/dnsserver/Set-DnsServerSigningKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerSigningKey_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserversigningkey?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserversigningkey?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerSigningKey --- diff --git a/docset/winserver2016-ps/dnsserver/Set-DnsServerStubZone.md b/docset/winserver2016-ps/dnsserver/Set-DnsServerStubZone.md index 78aee1b876..93e9ff9b7d 100644 --- a/docset/winserver2016-ps/dnsserver/Set-DnsServerStubZone.md +++ b/docset/winserver2016-ps/dnsserver/Set-DnsServerStubZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerStubZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverstubzone?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverstubzone?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerStubZone --- diff --git a/docset/winserver2016-ps/dnsserver/Set-DnsServerVirtualizationInstance.md b/docset/winserver2016-ps/dnsserver/Set-DnsServerVirtualizationInstance.md index 03cba9c1b4..58efbce6dd 100644 --- a/docset/winserver2016-ps/dnsserver/Set-DnsServerVirtualizationInstance.md +++ b/docset/winserver2016-ps/dnsserver/Set-DnsServerVirtualizationInstance.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerVirtualizationInstance_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsservervirtualizationinstance?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsservervirtualizationinstance?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerVirtualizationInstance --- diff --git a/docset/winserver2016-ps/dnsserver/Set-DnsServerZoneAging.md b/docset/winserver2016-ps/dnsserver/Set-DnsServerZoneAging.md index e31eeea72e..96235d6109 100644 --- a/docset/winserver2016-ps/dnsserver/Set-DnsServerZoneAging.md +++ b/docset/winserver2016-ps/dnsserver/Set-DnsServerZoneAging.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZoneAging_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverzoneaging?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverzoneaging?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerZoneAging --- diff --git a/docset/winserver2016-ps/dnsserver/Set-DnsServerZoneDelegation.md b/docset/winserver2016-ps/dnsserver/Set-DnsServerZoneDelegation.md index 974f7bbe30..a07222e653 100644 --- a/docset/winserver2016-ps/dnsserver/Set-DnsServerZoneDelegation.md +++ b/docset/winserver2016-ps/dnsserver/Set-DnsServerZoneDelegation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZoneDelegation_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverzonedelegation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverzonedelegation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerZoneDelegation --- diff --git a/docset/winserver2016-ps/dnsserver/Set-DnsServerZoneTransferPolicy.md b/docset/winserver2016-ps/dnsserver/Set-DnsServerZoneTransferPolicy.md index 887245e401..41ffb89a83 100644 --- a/docset/winserver2016-ps/dnsserver/Set-DnsServerZoneTransferPolicy.md +++ b/docset/winserver2016-ps/dnsserver/Set-DnsServerZoneTransferPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZoneTransferPolicy_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverzonetransferpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverzonetransferpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerZoneTransferPolicy --- diff --git a/docset/winserver2016-ps/dnsserver/Show-DnsServerCache.md b/docset/winserver2016-ps/dnsserver/Show-DnsServerCache.md index ab05952f49..f8b7f2b4d0 100644 --- a/docset/winserver2016-ps/dnsserver/Show-DnsServerCache.md +++ b/docset/winserver2016-ps/dnsserver/Show-DnsServerCache.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerCache_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/show-dnsservercache?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/show-dnsservercache?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Show-DnsServerCache --- diff --git a/docset/winserver2016-ps/dnsserver/Show-DnsServerKeyStorageProvider.md b/docset/winserver2016-ps/dnsserver/Show-DnsServerKeyStorageProvider.md index 3d7cf8cf37..50ff8e4348 100644 --- a/docset/winserver2016-ps/dnsserver/Show-DnsServerKeyStorageProvider.md +++ b/docset/winserver2016-ps/dnsserver/Show-DnsServerKeyStorageProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerKeyStorageProvider_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/show-dnsserverkeystorageprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/show-dnsserverkeystorageprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Show-DnsServerKeyStorageProvider --- diff --git a/docset/winserver2016-ps/dnsserver/Start-DnsServerScavenging.md b/docset/winserver2016-ps/dnsserver/Start-DnsServerScavenging.md index 9a74c8ebdb..725861f240 100644 --- a/docset/winserver2016-ps/dnsserver/Start-DnsServerScavenging.md +++ b/docset/winserver2016-ps/dnsserver/Start-DnsServerScavenging.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerScavenging_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/start-dnsserverscavenging?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/start-dnsserverscavenging?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-DnsServerScavenging --- diff --git a/docset/winserver2016-ps/dnsserver/Start-DnsServerZoneTransfer.md b/docset/winserver2016-ps/dnsserver/Start-DnsServerZoneTransfer.md index 7503c27453..a5a25a43ca 100644 --- a/docset/winserver2016-ps/dnsserver/Start-DnsServerZoneTransfer.md +++ b/docset/winserver2016-ps/dnsserver/Start-DnsServerZoneTransfer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZoneTransfer_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/start-dnsserverzonetransfer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/start-dnsserverzonetransfer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-DnsServerZoneTransfer --- diff --git a/docset/winserver2016-ps/dnsserver/Step-DnsServerSigningKeyRollover.md b/docset/winserver2016-ps/dnsserver/Step-DnsServerSigningKeyRollover.md index 3ba67bd399..99c8251bc4 100644 --- a/docset/winserver2016-ps/dnsserver/Step-DnsServerSigningKeyRollover.md +++ b/docset/winserver2016-ps/dnsserver/Step-DnsServerSigningKeyRollover.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerSigningKeyRollover_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/step-dnsserversigningkeyrollover?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/step-dnsserversigningkeyrollover?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Step-DnsServerSigningKeyRollover --- diff --git a/docset/winserver2016-ps/dnsserver/Suspend-DnsServerZone.md b/docset/winserver2016-ps/dnsserver/Suspend-DnsServerZone.md index 3975912d29..12fc6112cf 100644 --- a/docset/winserver2016-ps/dnsserver/Suspend-DnsServerZone.md +++ b/docset/winserver2016-ps/dnsserver/Suspend-DnsServerZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/suspend-dnsserverzone?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/suspend-dnsserverzone?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-DnsServerZone --- diff --git a/docset/winserver2016-ps/dnsserver/Sync-DnsServerZone.md b/docset/winserver2016-ps/dnsserver/Sync-DnsServerZone.md index aeb51f23e0..ed045526dc 100644 --- a/docset/winserver2016-ps/dnsserver/Sync-DnsServerZone.md +++ b/docset/winserver2016-ps/dnsserver/Sync-DnsServerZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/sync-dnsserverzone?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/sync-dnsserverzone?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Sync-DnsServerZone --- diff --git a/docset/winserver2016-ps/dnsserver/Test-DnsServer.md b/docset/winserver2016-ps/dnsserver/Test-DnsServer.md index cc743a1da5..a41ecaeba5 100644 --- a/docset/winserver2016-ps/dnsserver/Test-DnsServer.md +++ b/docset/winserver2016-ps/dnsserver/Test-DnsServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServer_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/test-dnsserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/test-dnsserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-DnsServer --- diff --git a/docset/winserver2016-ps/dnsserver/Test-DnsServerDnsSecZoneSetting.md b/docset/winserver2016-ps/dnsserver/Test-DnsServerDnsSecZoneSetting.md index b3d647d651..24ebf6b2a5 100644 --- a/docset/winserver2016-ps/dnsserver/Test-DnsServerDnsSecZoneSetting.md +++ b/docset/winserver2016-ps/dnsserver/Test-DnsServerDnsSecZoneSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerDnsSecZoneSetting_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/test-dnsserverdnsseczonesetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/test-dnsserverdnsseczonesetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-DnsServerDnsSecZoneSetting --- diff --git a/docset/winserver2016-ps/dnsserver/Unregister-DnsServerDirectoryPartition.md b/docset/winserver2016-ps/dnsserver/Unregister-DnsServerDirectoryPartition.md index 9603a5b83d..7f32d8e79f 100644 --- a/docset/winserver2016-ps/dnsserver/Unregister-DnsServerDirectoryPartition.md +++ b/docset/winserver2016-ps/dnsserver/Unregister-DnsServerDirectoryPartition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerDirectoryPartition_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/unregister-dnsserverdirectorypartition?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/unregister-dnsserverdirectorypartition?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unregister-DnsServerDirectoryPartition --- diff --git a/docset/winserver2016-ps/dnsserver/Update-DnsServerTrustPoint.md b/docset/winserver2016-ps/dnsserver/Update-DnsServerTrustPoint.md index d717b5ab95..41d94de94d 100644 --- a/docset/winserver2016-ps/dnsserver/Update-DnsServerTrustPoint.md +++ b/docset/winserver2016-ps/dnsserver/Update-DnsServerTrustPoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerTrustPoint_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/update-dnsservertrustpoint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/update-dnsservertrustpoint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-DnsServerTrustPoint --- diff --git a/docset/winserver2016-ps/eventtracingmanagement/Add-EtwTraceProvider.md b/docset/winserver2016-ps/eventtracingmanagement/Add-EtwTraceProvider.md index 4bc0cde4e4..81b5b27690 100644 --- a/docset/winserver2016-ps/eventtracingmanagement/Add-EtwTraceProvider.md +++ b/docset/winserver2016-ps/eventtracingmanagement/Add-EtwTraceProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_EtwTraceProvider_v1.0.cdxml-help.xml Module Name: EventTracingManagement ms.date: 01/05/2017 -online version: https://docs.microsoft.com/powershell/module/eventtracingmanagement/add-etwtraceprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/eventtracingmanagement/add-etwtraceprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-EtwTraceProvider --- diff --git a/docset/winserver2016-ps/eventtracingmanagement/Get-AutologgerConfig.md b/docset/winserver2016-ps/eventtracingmanagement/Get-AutologgerConfig.md index 2226a12b67..4d7686b23e 100644 --- a/docset/winserver2016-ps/eventtracingmanagement/Get-AutologgerConfig.md +++ b/docset/winserver2016-ps/eventtracingmanagement/Get-AutologgerConfig.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_AutologgerConfig_v1.0.cdxml-help.xml Module Name: EventTracingManagement ms.date: 01/05/2017 -online version: https://docs.microsoft.com/powershell/module/eventtracingmanagement/get-autologgerconfig?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/eventtracingmanagement/get-autologgerconfig?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AutologgerConfig --- diff --git a/docset/winserver2016-ps/eventtracingmanagement/Get-EtwTraceProvider.md b/docset/winserver2016-ps/eventtracingmanagement/Get-EtwTraceProvider.md index 185bd8df65..30978de654 100644 --- a/docset/winserver2016-ps/eventtracingmanagement/Get-EtwTraceProvider.md +++ b/docset/winserver2016-ps/eventtracingmanagement/Get-EtwTraceProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_EtwTraceProvider_v1.0.cdxml-help.xml Module Name: EventTracingManagement ms.date: 01/05/2017 -online version: https://docs.microsoft.com/powershell/module/eventtracingmanagement/get-etwtraceprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/eventtracingmanagement/get-etwtraceprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-EtwTraceProvider --- diff --git a/docset/winserver2016-ps/eventtracingmanagement/Get-EtwTraceSession.md b/docset/winserver2016-ps/eventtracingmanagement/Get-EtwTraceSession.md index 550464416f..fb26d3b799 100644 --- a/docset/winserver2016-ps/eventtracingmanagement/Get-EtwTraceSession.md +++ b/docset/winserver2016-ps/eventtracingmanagement/Get-EtwTraceSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_EtwTraceSession_v1.0.cdxml-help.xml Module Name: EventTracingManagement ms.date: 01/05/2017 -online version: https://docs.microsoft.com/powershell/module/eventtracingmanagement/get-etwtracesession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/eventtracingmanagement/get-etwtracesession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-EtwTraceSession --- diff --git a/docset/winserver2016-ps/eventtracingmanagement/New-AutologgerConfig.md b/docset/winserver2016-ps/eventtracingmanagement/New-AutologgerConfig.md index ba7a98068c..2b5d04dd66 100644 --- a/docset/winserver2016-ps/eventtracingmanagement/New-AutologgerConfig.md +++ b/docset/winserver2016-ps/eventtracingmanagement/New-AutologgerConfig.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_AutologgerConfig_v1.0.cdxml-help.xml Module Name: EventTracingManagement ms.date: 01/05/2017 -online version: https://docs.microsoft.com/powershell/module/eventtracingmanagement/new-autologgerconfig?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/eventtracingmanagement/new-autologgerconfig?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-AutologgerConfig --- diff --git a/docset/winserver2016-ps/eventtracingmanagement/New-EtwTraceSession.md b/docset/winserver2016-ps/eventtracingmanagement/New-EtwTraceSession.md index ead24bffef..075188afc3 100644 --- a/docset/winserver2016-ps/eventtracingmanagement/New-EtwTraceSession.md +++ b/docset/winserver2016-ps/eventtracingmanagement/New-EtwTraceSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_EtwTraceSession_v1.0.cdxml-help.xml Module Name: EventTracingManagement ms.date: 01/05/2017 -online version: https://docs.microsoft.com/powershell/module/eventtracingmanagement/new-etwtracesession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/eventtracingmanagement/new-etwtracesession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-EtwTraceSession --- diff --git a/docset/winserver2016-ps/eventtracingmanagement/Remove-AutologgerConfig.md b/docset/winserver2016-ps/eventtracingmanagement/Remove-AutologgerConfig.md index ee3b879fc0..d5d49a9152 100644 --- a/docset/winserver2016-ps/eventtracingmanagement/Remove-AutologgerConfig.md +++ b/docset/winserver2016-ps/eventtracingmanagement/Remove-AutologgerConfig.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_AutologgerConfig_v1.0.cdxml-help.xml Module Name: EventTracingManagement ms.date: 01/05/2017 -online version: https://docs.microsoft.com/powershell/module/eventtracingmanagement/remove-autologgerconfig?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/eventtracingmanagement/remove-autologgerconfig?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AutologgerConfig --- diff --git a/docset/winserver2016-ps/eventtracingmanagement/Remove-EtwTraceProvider.md b/docset/winserver2016-ps/eventtracingmanagement/Remove-EtwTraceProvider.md index 890b2dc208..d2b1b6cc2e 100644 --- a/docset/winserver2016-ps/eventtracingmanagement/Remove-EtwTraceProvider.md +++ b/docset/winserver2016-ps/eventtracingmanagement/Remove-EtwTraceProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_EtwTraceProvider_v1.0.cdxml-help.xml Module Name: EventTracingManagement ms.date: 01/05/2017 -online version: https://docs.microsoft.com/powershell/module/eventtracingmanagement/remove-etwtraceprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/eventtracingmanagement/remove-etwtraceprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-EtwTraceProvider --- diff --git a/docset/winserver2016-ps/eventtracingmanagement/Save-EtwTraceSession.md b/docset/winserver2016-ps/eventtracingmanagement/Save-EtwTraceSession.md index f8b6cb84b3..663a549541 100644 --- a/docset/winserver2016-ps/eventtracingmanagement/Save-EtwTraceSession.md +++ b/docset/winserver2016-ps/eventtracingmanagement/Save-EtwTraceSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: EventTracingManagement-help.xml Module Name: EventTracingManagement ms.date: 01/05/2017 -online version: https://docs.microsoft.com/powershell/module/eventtracingmanagement/save-etwtracesession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/eventtracingmanagement/save-etwtracesession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Save-EtwTraceSession --- diff --git a/docset/winserver2016-ps/eventtracingmanagement/Send-EtwTraceSession.md b/docset/winserver2016-ps/eventtracingmanagement/Send-EtwTraceSession.md index 52b7e82e71..9602dedc33 100644 --- a/docset/winserver2016-ps/eventtracingmanagement/Send-EtwTraceSession.md +++ b/docset/winserver2016-ps/eventtracingmanagement/Send-EtwTraceSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_EtwTraceSession_v1.0.cdxml-help.xml Module Name: EventTracingManagement ms.date: 01/05/2017 -online version: https://docs.microsoft.com/powershell/module/eventtracingmanagement/send-etwtracesession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/eventtracingmanagement/send-etwtracesession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Send-EtwTraceSession --- diff --git a/docset/winserver2016-ps/eventtracingmanagement/Set-AutologgerConfig.md b/docset/winserver2016-ps/eventtracingmanagement/Set-AutologgerConfig.md index ac8036bfaa..23aaaf96cd 100644 --- a/docset/winserver2016-ps/eventtracingmanagement/Set-AutologgerConfig.md +++ b/docset/winserver2016-ps/eventtracingmanagement/Set-AutologgerConfig.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_AutologgerConfig_v1.0.cdxml-help.xml Module Name: EventTracingManagement ms.date: 01/05/2017 -online version: https://docs.microsoft.com/powershell/module/eventtracingmanagement/set-autologgerconfig?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/eventtracingmanagement/set-autologgerconfig?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AutologgerConfig --- diff --git a/docset/winserver2016-ps/eventtracingmanagement/Set-EtwTraceProvider.md b/docset/winserver2016-ps/eventtracingmanagement/Set-EtwTraceProvider.md index c5e9a11289..bd9374c5d6 100644 --- a/docset/winserver2016-ps/eventtracingmanagement/Set-EtwTraceProvider.md +++ b/docset/winserver2016-ps/eventtracingmanagement/Set-EtwTraceProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_EtwTraceProvider_v1.0.cdxml-help.xml Module Name: EventTracingManagement ms.date: 01/05/2017 -online version: https://docs.microsoft.com/powershell/module/eventtracingmanagement/set-etwtraceprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/eventtracingmanagement/set-etwtraceprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-EtwTraceProvider --- diff --git a/docset/winserver2016-ps/eventtracingmanagement/Start-EtwTraceSession.md b/docset/winserver2016-ps/eventtracingmanagement/Start-EtwTraceSession.md index 8abfd6c1c7..16a31affcd 100644 --- a/docset/winserver2016-ps/eventtracingmanagement/Start-EtwTraceSession.md +++ b/docset/winserver2016-ps/eventtracingmanagement/Start-EtwTraceSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: EventTracingManagement-help.xml Module Name: EventTracingManagement ms.date: 01/05/2017 -online version: https://docs.microsoft.com/powershell/module/eventtracingmanagement/start-etwtracesession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/eventtracingmanagement/start-etwtracesession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-EtwTraceSession --- diff --git a/docset/winserver2016-ps/eventtracingmanagement/Stop-EtwTraceSession.md b/docset/winserver2016-ps/eventtracingmanagement/Stop-EtwTraceSession.md index 4f6ff0c75a..9e42e8a4fd 100644 --- a/docset/winserver2016-ps/eventtracingmanagement/Stop-EtwTraceSession.md +++ b/docset/winserver2016-ps/eventtracingmanagement/Stop-EtwTraceSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_EtwTraceSession_v1.0.cdxml-help.xml Module Name: EventTracingManagement ms.date: 01/05/2017 -online version: https://docs.microsoft.com/powershell/module/eventtracingmanagement/stop-etwtracesession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/eventtracingmanagement/stop-etwtracesession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-EtwTraceSession --- diff --git a/docset/winserver2016-ps/eventtracingmanagement/Update-EtwTraceSession.md b/docset/winserver2016-ps/eventtracingmanagement/Update-EtwTraceSession.md index ad4f3a6116..1ee7806df9 100644 --- a/docset/winserver2016-ps/eventtracingmanagement/Update-EtwTraceSession.md +++ b/docset/winserver2016-ps/eventtracingmanagement/Update-EtwTraceSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_EtwTraceSession_v1.0.cdxml-help.xml Module Name: EventTracingManagement ms.date: 01/05/2017 -online version: https://docs.microsoft.com/powershell/module/eventtracingmanagement/update-etwtracesession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/eventtracingmanagement/update-etwtracesession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-EtwTraceSession --- diff --git a/docset/winserver2016-ps/failoverclusters/Add-ClusterCheckpoint.md b/docset/winserver2016-ps/failoverclusters/Add-ClusterCheckpoint.md index caf640ed28..c1207a9d85 100644 --- a/docset/winserver2016-ps/failoverclusters/Add-ClusterCheckpoint.md +++ b/docset/winserver2016-ps/failoverclusters/Add-ClusterCheckpoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clustercheckpoint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustercheckpoint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterCheckpoint --- diff --git a/docset/winserver2016-ps/failoverclusters/Add-ClusterDisk.md b/docset/winserver2016-ps/failoverclusters/Add-ClusterDisk.md index e3be7a498b..28aa91905e 100644 --- a/docset/winserver2016-ps/failoverclusters/Add-ClusterDisk.md +++ b/docset/winserver2016-ps/failoverclusters/Add-ClusterDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clusterdisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusterdisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterDisk --- diff --git a/docset/winserver2016-ps/failoverclusters/Add-ClusterFileServerRole.md b/docset/winserver2016-ps/failoverclusters/Add-ClusterFileServerRole.md index d338948b3e..ff232670aa 100644 --- a/docset/winserver2016-ps/failoverclusters/Add-ClusterFileServerRole.md +++ b/docset/winserver2016-ps/failoverclusters/Add-ClusterFileServerRole.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clusterfileserverrole?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusterfileserverrole?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterFileServerRole --- diff --git a/docset/winserver2016-ps/failoverclusters/Add-ClusterGenericApplicationRole.md b/docset/winserver2016-ps/failoverclusters/Add-ClusterGenericApplicationRole.md index 1650b8d4a0..c2452376df 100644 --- a/docset/winserver2016-ps/failoverclusters/Add-ClusterGenericApplicationRole.md +++ b/docset/winserver2016-ps/failoverclusters/Add-ClusterGenericApplicationRole.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clustergenericapplicationrole?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustergenericapplicationrole?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterGenericApplicationRole --- diff --git a/docset/winserver2016-ps/failoverclusters/Add-ClusterGenericScriptRole.md b/docset/winserver2016-ps/failoverclusters/Add-ClusterGenericScriptRole.md index b61f07e4e0..b48724db07 100644 --- a/docset/winserver2016-ps/failoverclusters/Add-ClusterGenericScriptRole.md +++ b/docset/winserver2016-ps/failoverclusters/Add-ClusterGenericScriptRole.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clustergenericscriptrole?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustergenericscriptrole?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterGenericScriptRole --- diff --git a/docset/winserver2016-ps/failoverclusters/Add-ClusterGenericServiceRole.md b/docset/winserver2016-ps/failoverclusters/Add-ClusterGenericServiceRole.md index afd3d25852..bc820d72ce 100644 --- a/docset/winserver2016-ps/failoverclusters/Add-ClusterGenericServiceRole.md +++ b/docset/winserver2016-ps/failoverclusters/Add-ClusterGenericServiceRole.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clustergenericservicerole?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustergenericservicerole?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterGenericServiceRole --- diff --git a/docset/winserver2016-ps/failoverclusters/Add-ClusterGroup.md b/docset/winserver2016-ps/failoverclusters/Add-ClusterGroup.md index 09e43173c3..9d91b23def 100644 --- a/docset/winserver2016-ps/failoverclusters/Add-ClusterGroup.md +++ b/docset/winserver2016-ps/failoverclusters/Add-ClusterGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clustergroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustergroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterGroup --- diff --git a/docset/winserver2016-ps/failoverclusters/Add-ClusterGroupSetDependency.md b/docset/winserver2016-ps/failoverclusters/Add-ClusterGroupSetDependency.md index e627936916..2da83e00e8 100644 --- a/docset/winserver2016-ps/failoverclusters/Add-ClusterGroupSetDependency.md +++ b/docset/winserver2016-ps/failoverclusters/Add-ClusterGroupSetDependency.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterCollection.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clustergroupsetdependency?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustergroupsetdependency?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterGroupSetDependency --- diff --git a/docset/winserver2016-ps/failoverclusters/Add-ClusterGroupToSet.md b/docset/winserver2016-ps/failoverclusters/Add-ClusterGroupToSet.md index 53a0d4763a..c50a8f1469 100644 --- a/docset/winserver2016-ps/failoverclusters/Add-ClusterGroupToSet.md +++ b/docset/winserver2016-ps/failoverclusters/Add-ClusterGroupToSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterCollection.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clustergrouptoset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustergrouptoset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterGroupToSet --- diff --git a/docset/winserver2016-ps/failoverclusters/Add-ClusterNode.md b/docset/winserver2016-ps/failoverclusters/Add-ClusterNode.md index 73c1288f7c..8bd803b513 100644 --- a/docset/winserver2016-ps/failoverclusters/Add-ClusterNode.md +++ b/docset/winserver2016-ps/failoverclusters/Add-ClusterNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clusternode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusternode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterNode --- diff --git a/docset/winserver2016-ps/failoverclusters/Add-ClusterResource.md b/docset/winserver2016-ps/failoverclusters/Add-ClusterResource.md index c3bcf719a3..962f8537b9 100644 --- a/docset/winserver2016-ps/failoverclusters/Add-ClusterResource.md +++ b/docset/winserver2016-ps/failoverclusters/Add-ClusterResource.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clusterresource?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusterresource?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterResource --- diff --git a/docset/winserver2016-ps/failoverclusters/Add-ClusterResourceDependency.md b/docset/winserver2016-ps/failoverclusters/Add-ClusterResourceDependency.md index c433196751..d70dec5ccb 100644 --- a/docset/winserver2016-ps/failoverclusters/Add-ClusterResourceDependency.md +++ b/docset/winserver2016-ps/failoverclusters/Add-ClusterResourceDependency.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clusterresourcedependency?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusterresourcedependency?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterResourceDependency --- diff --git a/docset/winserver2016-ps/failoverclusters/Add-ClusterResourceType.md b/docset/winserver2016-ps/failoverclusters/Add-ClusterResourceType.md index fac0b87a91..a987bbe13a 100644 --- a/docset/winserver2016-ps/failoverclusters/Add-ClusterResourceType.md +++ b/docset/winserver2016-ps/failoverclusters/Add-ClusterResourceType.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clusterresourcetype?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusterresourcetype?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterResourceType --- diff --git a/docset/winserver2016-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md b/docset/winserver2016-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md index 1e40e43eb3..ce02f04f7f 100644 --- a/docset/winserver2016-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md +++ b/docset/winserver2016-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clusterscaleoutfileserverrole?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusterscaleoutfileserverrole?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterScaleOutFileServerRole --- diff --git a/docset/winserver2016-ps/failoverclusters/Add-ClusterSharedVolume.md b/docset/winserver2016-ps/failoverclusters/Add-ClusterSharedVolume.md index e1da10aa92..19729dc277 100644 --- a/docset/winserver2016-ps/failoverclusters/Add-ClusterSharedVolume.md +++ b/docset/winserver2016-ps/failoverclusters/Add-ClusterSharedVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clustersharedvolume?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustersharedvolume?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterSharedVolume --- diff --git a/docset/winserver2016-ps/failoverclusters/Add-ClusterVMMonitoredItem.md b/docset/winserver2016-ps/failoverclusters/Add-ClusterVMMonitoredItem.md index 0e9f0251cc..7ef2866d08 100644 --- a/docset/winserver2016-ps/failoverclusters/Add-ClusterVMMonitoredItem.md +++ b/docset/winserver2016-ps/failoverclusters/Add-ClusterVMMonitoredItem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clustervmmonitoreditem?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustervmmonitoreditem?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterVMMonitoredItem --- diff --git a/docset/winserver2016-ps/failoverclusters/Add-ClusterVirtualMachineRole.md b/docset/winserver2016-ps/failoverclusters/Add-ClusterVirtualMachineRole.md index 69f1aa7129..f59eca944a 100644 --- a/docset/winserver2016-ps/failoverclusters/Add-ClusterVirtualMachineRole.md +++ b/docset/winserver2016-ps/failoverclusters/Add-ClusterVirtualMachineRole.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clustervirtualmachinerole?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustervirtualmachinerole?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterVirtualMachineRole --- diff --git a/docset/winserver2016-ps/failoverclusters/Add-ClusteriSCSITargetServerRole.md b/docset/winserver2016-ps/failoverclusters/Add-ClusteriSCSITargetServerRole.md index aa04b856b0..051cf254bc 100644 --- a/docset/winserver2016-ps/failoverclusters/Add-ClusteriSCSITargetServerRole.md +++ b/docset/winserver2016-ps/failoverclusters/Add-ClusteriSCSITargetServerRole.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clusteriscsitargetserverrole?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusteriscsitargetserverrole?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusteriSCSITargetServerRole --- diff --git a/docset/winserver2016-ps/failoverclusters/Block-ClusterAccess.md b/docset/winserver2016-ps/failoverclusters/Block-ClusterAccess.md index d47dcdb12c..f8833cc488 100644 --- a/docset/winserver2016-ps/failoverclusters/Block-ClusterAccess.md +++ b/docset/winserver2016-ps/failoverclusters/Block-ClusterAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/block-clusteraccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/block-clusteraccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Block-ClusterAccess --- diff --git a/docset/winserver2016-ps/failoverclusters/Clear-ClusterDiskReservation.md b/docset/winserver2016-ps/failoverclusters/Clear-ClusterDiskReservation.md index a004ae8a8b..ed9dc98937 100644 --- a/docset/winserver2016-ps/failoverclusters/Clear-ClusterDiskReservation.md +++ b/docset/winserver2016-ps/failoverclusters/Clear-ClusterDiskReservation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/clear-clusterdiskreservation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/clear-clusterdiskreservation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-ClusterDiskReservation --- diff --git a/docset/winserver2016-ps/failoverclusters/Clear-ClusterNode.md b/docset/winserver2016-ps/failoverclusters/Clear-ClusterNode.md index 6bb38c10b1..0606cca369 100644 --- a/docset/winserver2016-ps/failoverclusters/Clear-ClusterNode.md +++ b/docset/winserver2016-ps/failoverclusters/Clear-ClusterNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/clear-clusternode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/clear-clusternode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-ClusterNode --- diff --git a/docset/winserver2016-ps/failoverclusters/Disable-ClusterStorageSpacesDirect.md b/docset/winserver2016-ps/failoverclusters/Disable-ClusterStorageSpacesDirect.md index aac4e7f3c4..8379b249c2 100644 --- a/docset/winserver2016-ps/failoverclusters/Disable-ClusterStorageSpacesDirect.md +++ b/docset/winserver2016-ps/failoverclusters/Disable-ClusterStorageSpacesDirect.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterStorageSpacesDirect.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/disable-clusterstoragespacesdirect?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/disable-clusterstoragespacesdirect?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-ClusterStorageSpacesDirect --- diff --git a/docset/winserver2016-ps/failoverclusters/Enable-ClusterStorageSpacesDirect.md b/docset/winserver2016-ps/failoverclusters/Enable-ClusterStorageSpacesDirect.md index d349aba50d..c655ba6a3c 100644 --- a/docset/winserver2016-ps/failoverclusters/Enable-ClusterStorageSpacesDirect.md +++ b/docset/winserver2016-ps/failoverclusters/Enable-ClusterStorageSpacesDirect.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Storage Spaces Direct with Windows Po external help file: ClusterStorageSpacesDirect.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/enable-clusterstoragespacesdirect?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/enable-clusterstoragespacesdirect?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-ClusterStorageSpacesDirect --- diff --git a/docset/winserver2016-ps/failoverclusters/Get-Cluster.md b/docset/winserver2016-ps/failoverclusters/Get-Cluster.md index c977216bd8..cd1164e2c1 100644 --- a/docset/winserver2016-ps/failoverclusters/Get-Cluster.md +++ b/docset/winserver2016-ps/failoverclusters/Get-Cluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-cluster?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-cluster?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-Cluster --- diff --git a/docset/winserver2016-ps/failoverclusters/Get-ClusterAccess.md b/docset/winserver2016-ps/failoverclusters/Get-ClusterAccess.md index 95a6f4ed65..49019421e3 100644 --- a/docset/winserver2016-ps/failoverclusters/Get-ClusterAccess.md +++ b/docset/winserver2016-ps/failoverclusters/Get-ClusterAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusteraccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusteraccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterAccess --- diff --git a/docset/winserver2016-ps/failoverclusters/Get-ClusterAvailableDisk.md b/docset/winserver2016-ps/failoverclusters/Get-ClusterAvailableDisk.md index fafb6072b7..0e219f7d53 100644 --- a/docset/winserver2016-ps/failoverclusters/Get-ClusterAvailableDisk.md +++ b/docset/winserver2016-ps/failoverclusters/Get-ClusterAvailableDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusteravailabledisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusteravailabledisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterAvailableDisk --- diff --git a/docset/winserver2016-ps/failoverclusters/Get-ClusterCheckpoint.md b/docset/winserver2016-ps/failoverclusters/Get-ClusterCheckpoint.md index 64f53c5c7a..8a61867476 100644 --- a/docset/winserver2016-ps/failoverclusters/Get-ClusterCheckpoint.md +++ b/docset/winserver2016-ps/failoverclusters/Get-ClusterCheckpoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clustercheckpoint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clustercheckpoint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterCheckpoint --- diff --git a/docset/winserver2016-ps/failoverclusters/Get-ClusterDiagnosticInfo.md b/docset/winserver2016-ps/failoverclusters/Get-ClusterDiagnosticInfo.md index 94a4e3e2e7..47cf2709ef 100644 --- a/docset/winserver2016-ps/failoverclusters/Get-ClusterDiagnosticInfo.md +++ b/docset/winserver2016-ps/failoverclusters/Get-ClusterDiagnosticInfo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusterdiagnosticinfo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterdiagnosticinfo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterDiagnosticInfo --- diff --git a/docset/winserver2016-ps/failoverclusters/Get-ClusterFaultDomain.md b/docset/winserver2016-ps/failoverclusters/Get-ClusterFaultDomain.md index 5822fda4c0..60ec65949a 100644 --- a/docset/winserver2016-ps/failoverclusters/Get-ClusterFaultDomain.md +++ b/docset/winserver2016-ps/failoverclusters/Get-ClusterFaultDomain.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterFaultDomain.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusterfaultdomain?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterfaultdomain?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterFaultDomain --- diff --git a/docset/winserver2016-ps/failoverclusters/Get-ClusterFaultDomainXML.md b/docset/winserver2016-ps/failoverclusters/Get-ClusterFaultDomainXML.md index ff50e93927..97fc6d6d60 100644 --- a/docset/winserver2016-ps/failoverclusters/Get-ClusterFaultDomainXML.md +++ b/docset/winserver2016-ps/failoverclusters/Get-ClusterFaultDomainXML.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterFaultDomain.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusterfaultdomainxml?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterfaultdomainxml?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterFaultDomainXML --- diff --git a/docset/winserver2016-ps/failoverclusters/Get-ClusterGroup.md b/docset/winserver2016-ps/failoverclusters/Get-ClusterGroup.md index d4ca0d47f7..7ff090848c 100644 --- a/docset/winserver2016-ps/failoverclusters/Get-ClusterGroup.md +++ b/docset/winserver2016-ps/failoverclusters/Get-ClusterGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clustergroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clustergroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterGroup --- diff --git a/docset/winserver2016-ps/failoverclusters/Get-ClusterGroupSet.md b/docset/winserver2016-ps/failoverclusters/Get-ClusterGroupSet.md index e4a1fe716b..d8c7274cfd 100644 --- a/docset/winserver2016-ps/failoverclusters/Get-ClusterGroupSet.md +++ b/docset/winserver2016-ps/failoverclusters/Get-ClusterGroupSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterCollection.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clustergroupset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clustergroupset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterGroupSet --- diff --git a/docset/winserver2016-ps/failoverclusters/Get-ClusterGroupSetDependency.md b/docset/winserver2016-ps/failoverclusters/Get-ClusterGroupSetDependency.md index 72b8556b1e..8e34d5f712 100644 --- a/docset/winserver2016-ps/failoverclusters/Get-ClusterGroupSetDependency.md +++ b/docset/winserver2016-ps/failoverclusters/Get-ClusterGroupSetDependency.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterCollection.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clustergroupsetdependency?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clustergroupsetdependency?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterGroupSetDependency --- diff --git a/docset/winserver2016-ps/failoverclusters/Get-ClusterLog.md b/docset/winserver2016-ps/failoverclusters/Get-ClusterLog.md index d7428e1314..801bed3fa2 100644 --- a/docset/winserver2016-ps/failoverclusters/Get-ClusterLog.md +++ b/docset/winserver2016-ps/failoverclusters/Get-ClusterLog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusterlog?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterlog?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterLog --- diff --git a/docset/winserver2016-ps/failoverclusters/Get-ClusterNetwork.md b/docset/winserver2016-ps/failoverclusters/Get-ClusterNetwork.md index 5272e98b86..b405bc5440 100644 --- a/docset/winserver2016-ps/failoverclusters/Get-ClusterNetwork.md +++ b/docset/winserver2016-ps/failoverclusters/Get-ClusterNetwork.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusternetwork?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusternetwork?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterNetwork --- diff --git a/docset/winserver2016-ps/failoverclusters/Get-ClusterNetworkInterface.md b/docset/winserver2016-ps/failoverclusters/Get-ClusterNetworkInterface.md index 905c95c425..692af1a8c8 100644 --- a/docset/winserver2016-ps/failoverclusters/Get-ClusterNetworkInterface.md +++ b/docset/winserver2016-ps/failoverclusters/Get-ClusterNetworkInterface.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusternetworkinterface?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusternetworkinterface?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterNetworkInterface --- diff --git a/docset/winserver2016-ps/failoverclusters/Get-ClusterNode.md b/docset/winserver2016-ps/failoverclusters/Get-ClusterNode.md index c59e7f11c8..7c0914d20d 100644 --- a/docset/winserver2016-ps/failoverclusters/Get-ClusterNode.md +++ b/docset/winserver2016-ps/failoverclusters/Get-ClusterNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusternode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusternode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterNode --- diff --git a/docset/winserver2016-ps/failoverclusters/Get-ClusterOwnerNode.md b/docset/winserver2016-ps/failoverclusters/Get-ClusterOwnerNode.md index a3647e793e..6803364b73 100644 --- a/docset/winserver2016-ps/failoverclusters/Get-ClusterOwnerNode.md +++ b/docset/winserver2016-ps/failoverclusters/Get-ClusterOwnerNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusterownernode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterownernode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterOwnerNode --- diff --git a/docset/winserver2016-ps/failoverclusters/Get-ClusterParameter.md b/docset/winserver2016-ps/failoverclusters/Get-ClusterParameter.md index 84b0e2a6b7..f1fae00c5f 100644 --- a/docset/winserver2016-ps/failoverclusters/Get-ClusterParameter.md +++ b/docset/winserver2016-ps/failoverclusters/Get-ClusterParameter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusterparameter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterparameter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterParameter --- diff --git a/docset/winserver2016-ps/failoverclusters/Get-ClusterQuorum.md b/docset/winserver2016-ps/failoverclusters/Get-ClusterQuorum.md index 9949e42a47..86111ab2ca 100644 --- a/docset/winserver2016-ps/failoverclusters/Get-ClusterQuorum.md +++ b/docset/winserver2016-ps/failoverclusters/Get-ClusterQuorum.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusterquorum?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterquorum?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterQuorum --- diff --git a/docset/winserver2016-ps/failoverclusters/Get-ClusterResource.md b/docset/winserver2016-ps/failoverclusters/Get-ClusterResource.md index 3d2a494c7b..4bccdacf8b 100644 --- a/docset/winserver2016-ps/failoverclusters/Get-ClusterResource.md +++ b/docset/winserver2016-ps/failoverclusters/Get-ClusterResource.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusterresource?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterresource?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterResource --- diff --git a/docset/winserver2016-ps/failoverclusters/Get-ClusterResourceDependency.md b/docset/winserver2016-ps/failoverclusters/Get-ClusterResourceDependency.md index 29e3a9c6b6..af3c5e6646 100644 --- a/docset/winserver2016-ps/failoverclusters/Get-ClusterResourceDependency.md +++ b/docset/winserver2016-ps/failoverclusters/Get-ClusterResourceDependency.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusterresourcedependency?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterresourcedependency?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterResourceDependency --- diff --git a/docset/winserver2016-ps/failoverclusters/Get-ClusterResourceDependencyReport.md b/docset/winserver2016-ps/failoverclusters/Get-ClusterResourceDependencyReport.md index caf90b6c70..36ffb01cc2 100644 --- a/docset/winserver2016-ps/failoverclusters/Get-ClusterResourceDependencyReport.md +++ b/docset/winserver2016-ps/failoverclusters/Get-ClusterResourceDependencyReport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusterresourcedependencyreport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterresourcedependencyreport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterResourceDependencyReport --- diff --git a/docset/winserver2016-ps/failoverclusters/Get-ClusterResourceType.md b/docset/winserver2016-ps/failoverclusters/Get-ClusterResourceType.md index 38585e7323..f5846301b6 100644 --- a/docset/winserver2016-ps/failoverclusters/Get-ClusterResourceType.md +++ b/docset/winserver2016-ps/failoverclusters/Get-ClusterResourceType.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusterresourcetype?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterresourcetype?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterResourceType --- diff --git a/docset/winserver2016-ps/failoverclusters/Get-ClusterSharedVolume.md b/docset/winserver2016-ps/failoverclusters/Get-ClusterSharedVolume.md index a5c42a63c9..f49478e86d 100644 --- a/docset/winserver2016-ps/failoverclusters/Get-ClusterSharedVolume.md +++ b/docset/winserver2016-ps/failoverclusters/Get-ClusterSharedVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clustersharedvolume?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clustersharedvolume?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterSharedVolume --- diff --git a/docset/winserver2016-ps/failoverclusters/Get-ClusterSharedVolumeState.md b/docset/winserver2016-ps/failoverclusters/Get-ClusterSharedVolumeState.md index 8a0fccd00a..0f0a3d4d18 100644 --- a/docset/winserver2016-ps/failoverclusters/Get-ClusterSharedVolumeState.md +++ b/docset/winserver2016-ps/failoverclusters/Get-ClusterSharedVolumeState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clustersharedvolumestate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clustersharedvolumestate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterSharedVolumeState --- diff --git a/docset/winserver2016-ps/failoverclusters/Get-ClusterStorageSpacesDirect.md b/docset/winserver2016-ps/failoverclusters/Get-ClusterStorageSpacesDirect.md index fe2158dba2..0a0492e67d 100644 --- a/docset/winserver2016-ps/failoverclusters/Get-ClusterStorageSpacesDirect.md +++ b/docset/winserver2016-ps/failoverclusters/Get-ClusterStorageSpacesDirect.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterStorageSpacesDirect.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusterstoragespacesdirect?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterstoragespacesdirect?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterStorageSpacesDirect --- diff --git a/docset/winserver2016-ps/failoverclusters/Get-ClusterVMMonitoredItem.md b/docset/winserver2016-ps/failoverclusters/Get-ClusterVMMonitoredItem.md index c95916ae8f..ca31a72d17 100644 --- a/docset/winserver2016-ps/failoverclusters/Get-ClusterVMMonitoredItem.md +++ b/docset/winserver2016-ps/failoverclusters/Get-ClusterVMMonitoredItem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clustervmmonitoreditem?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clustervmmonitoreditem?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterVMMonitoredItem --- diff --git a/docset/winserver2016-ps/failoverclusters/Grant-ClusterAccess.md b/docset/winserver2016-ps/failoverclusters/Grant-ClusterAccess.md index 461bfec341..394f04b0b8 100644 --- a/docset/winserver2016-ps/failoverclusters/Grant-ClusterAccess.md +++ b/docset/winserver2016-ps/failoverclusters/Grant-ClusterAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/grant-clusteraccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/grant-clusteraccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Grant-ClusterAccess --- diff --git a/docset/winserver2016-ps/failoverclusters/Move-ClusterGroup.md b/docset/winserver2016-ps/failoverclusters/Move-ClusterGroup.md index 04e34830c7..cdfc3eba75 100644 --- a/docset/winserver2016-ps/failoverclusters/Move-ClusterGroup.md +++ b/docset/winserver2016-ps/failoverclusters/Move-ClusterGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/move-clustergroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/move-clustergroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-ClusterGroup --- diff --git a/docset/winserver2016-ps/failoverclusters/Move-ClusterResource.md b/docset/winserver2016-ps/failoverclusters/Move-ClusterResource.md index dcf227d985..8fbad5b33a 100644 --- a/docset/winserver2016-ps/failoverclusters/Move-ClusterResource.md +++ b/docset/winserver2016-ps/failoverclusters/Move-ClusterResource.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/move-clusterresource?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/move-clusterresource?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-ClusterResource --- diff --git a/docset/winserver2016-ps/failoverclusters/Move-ClusterSharedVolume.md b/docset/winserver2016-ps/failoverclusters/Move-ClusterSharedVolume.md index 7466f7eb21..dc42ce4ba3 100644 --- a/docset/winserver2016-ps/failoverclusters/Move-ClusterSharedVolume.md +++ b/docset/winserver2016-ps/failoverclusters/Move-ClusterSharedVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/move-clustersharedvolume?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/move-clustersharedvolume?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-ClusterSharedVolume --- diff --git a/docset/winserver2016-ps/failoverclusters/Move-ClusterVirtualMachineRole.md b/docset/winserver2016-ps/failoverclusters/Move-ClusterVirtualMachineRole.md index 73edb823b2..6215887abe 100644 --- a/docset/winserver2016-ps/failoverclusters/Move-ClusterVirtualMachineRole.md +++ b/docset/winserver2016-ps/failoverclusters/Move-ClusterVirtualMachineRole.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/move-clustervirtualmachinerole?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/move-clustervirtualmachinerole?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-ClusterVirtualMachineRole --- diff --git a/docset/winserver2016-ps/failoverclusters/New-Cluster.md b/docset/winserver2016-ps/failoverclusters/New-Cluster.md index 9abc67fb2f..e48d2579c4 100644 --- a/docset/winserver2016-ps/failoverclusters/New-Cluster.md +++ b/docset/winserver2016-ps/failoverclusters/New-Cluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/new-cluster?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/new-cluster?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-Cluster --- diff --git a/docset/winserver2016-ps/failoverclusters/New-ClusterFaultDomain.md b/docset/winserver2016-ps/failoverclusters/New-ClusterFaultDomain.md index 89dadce9ca..aa4fc4de76 100644 --- a/docset/winserver2016-ps/failoverclusters/New-ClusterFaultDomain.md +++ b/docset/winserver2016-ps/failoverclusters/New-ClusterFaultDomain.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterFaultDomain.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/new-clusterfaultdomain?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/new-clusterfaultdomain?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ClusterFaultDomain --- diff --git a/docset/winserver2016-ps/failoverclusters/New-ClusterGroupSet.md b/docset/winserver2016-ps/failoverclusters/New-ClusterGroupSet.md index 3293e5ab02..8ebade9069 100644 --- a/docset/winserver2016-ps/failoverclusters/New-ClusterGroupSet.md +++ b/docset/winserver2016-ps/failoverclusters/New-ClusterGroupSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterCollection.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/new-clustergroupset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/new-clustergroupset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ClusterGroupSet --- diff --git a/docset/winserver2016-ps/failoverclusters/New-ClusterNameAccount.md b/docset/winserver2016-ps/failoverclusters/New-ClusterNameAccount.md index 25e0092c0c..7784c469c0 100644 --- a/docset/winserver2016-ps/failoverclusters/New-ClusterNameAccount.md +++ b/docset/winserver2016-ps/failoverclusters/New-ClusterNameAccount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/new-clusternameaccount?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/new-clusternameaccount?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ClusterNameAccount --- diff --git a/docset/winserver2016-ps/failoverclusters/Remove-Cluster.md b/docset/winserver2016-ps/failoverclusters/Remove-Cluster.md index c0790c85e6..81a75c9ce6 100644 --- a/docset/winserver2016-ps/failoverclusters/Remove-Cluster.md +++ b/docset/winserver2016-ps/failoverclusters/Remove-Cluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-cluster?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-cluster?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-Cluster --- diff --git a/docset/winserver2016-ps/failoverclusters/Remove-ClusterAccess.md b/docset/winserver2016-ps/failoverclusters/Remove-ClusterAccess.md index 92f9950904..993eaebf3d 100644 --- a/docset/winserver2016-ps/failoverclusters/Remove-ClusterAccess.md +++ b/docset/winserver2016-ps/failoverclusters/Remove-ClusterAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clusteraccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clusteraccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterAccess --- diff --git a/docset/winserver2016-ps/failoverclusters/Remove-ClusterCheckpoint.md b/docset/winserver2016-ps/failoverclusters/Remove-ClusterCheckpoint.md index 066b8d5205..006e90e931 100644 --- a/docset/winserver2016-ps/failoverclusters/Remove-ClusterCheckpoint.md +++ b/docset/winserver2016-ps/failoverclusters/Remove-ClusterCheckpoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clustercheckpoint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clustercheckpoint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterCheckpoint --- diff --git a/docset/winserver2016-ps/failoverclusters/Remove-ClusterFaultDomain.md b/docset/winserver2016-ps/failoverclusters/Remove-ClusterFaultDomain.md index 0363ce3558..962adf592a 100644 --- a/docset/winserver2016-ps/failoverclusters/Remove-ClusterFaultDomain.md +++ b/docset/winserver2016-ps/failoverclusters/Remove-ClusterFaultDomain.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterFaultDomain.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clusterfaultdomain?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clusterfaultdomain?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterFaultDomain --- diff --git a/docset/winserver2016-ps/failoverclusters/Remove-ClusterGroup.md b/docset/winserver2016-ps/failoverclusters/Remove-ClusterGroup.md index bf510df56f..7ef4ba5700 100644 --- a/docset/winserver2016-ps/failoverclusters/Remove-ClusterGroup.md +++ b/docset/winserver2016-ps/failoverclusters/Remove-ClusterGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clustergroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clustergroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterGroup --- diff --git a/docset/winserver2016-ps/failoverclusters/Remove-ClusterGroupFromSet.md b/docset/winserver2016-ps/failoverclusters/Remove-ClusterGroupFromSet.md index fc8145a228..40115ce1c7 100644 --- a/docset/winserver2016-ps/failoverclusters/Remove-ClusterGroupFromSet.md +++ b/docset/winserver2016-ps/failoverclusters/Remove-ClusterGroupFromSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterCollection.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clustergroupfromset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clustergroupfromset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterGroupFromSet --- diff --git a/docset/winserver2016-ps/failoverclusters/Remove-ClusterGroupSet.md b/docset/winserver2016-ps/failoverclusters/Remove-ClusterGroupSet.md index b8c3d20dc9..3293691ce5 100644 --- a/docset/winserver2016-ps/failoverclusters/Remove-ClusterGroupSet.md +++ b/docset/winserver2016-ps/failoverclusters/Remove-ClusterGroupSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterCollection.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clustergroupset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clustergroupset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterGroupSet --- diff --git a/docset/winserver2016-ps/failoverclusters/Remove-ClusterGroupSetDependency.md b/docset/winserver2016-ps/failoverclusters/Remove-ClusterGroupSetDependency.md index 167fb12f14..1e8ce19571 100644 --- a/docset/winserver2016-ps/failoverclusters/Remove-ClusterGroupSetDependency.md +++ b/docset/winserver2016-ps/failoverclusters/Remove-ClusterGroupSetDependency.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterCollection.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clustergroupsetdependency?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clustergroupsetdependency?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterGroupSetDependency --- diff --git a/docset/winserver2016-ps/failoverclusters/Remove-ClusterNode.md b/docset/winserver2016-ps/failoverclusters/Remove-ClusterNode.md index 2aa5d15c0a..2ac2573b1a 100644 --- a/docset/winserver2016-ps/failoverclusters/Remove-ClusterNode.md +++ b/docset/winserver2016-ps/failoverclusters/Remove-ClusterNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clusternode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clusternode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterNode --- diff --git a/docset/winserver2016-ps/failoverclusters/Remove-ClusterResource.md b/docset/winserver2016-ps/failoverclusters/Remove-ClusterResource.md index efb2571f04..97f0d2451c 100644 --- a/docset/winserver2016-ps/failoverclusters/Remove-ClusterResource.md +++ b/docset/winserver2016-ps/failoverclusters/Remove-ClusterResource.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clusterresource?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clusterresource?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterResource --- diff --git a/docset/winserver2016-ps/failoverclusters/Remove-ClusterResourceDependency.md b/docset/winserver2016-ps/failoverclusters/Remove-ClusterResourceDependency.md index 399d97ac5c..3c9c21501d 100644 --- a/docset/winserver2016-ps/failoverclusters/Remove-ClusterResourceDependency.md +++ b/docset/winserver2016-ps/failoverclusters/Remove-ClusterResourceDependency.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clusterresourcedependency?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clusterresourcedependency?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterResourceDependency --- diff --git a/docset/winserver2016-ps/failoverclusters/Remove-ClusterResourceType.md b/docset/winserver2016-ps/failoverclusters/Remove-ClusterResourceType.md index d5fc02da31..9869a029ad 100644 --- a/docset/winserver2016-ps/failoverclusters/Remove-ClusterResourceType.md +++ b/docset/winserver2016-ps/failoverclusters/Remove-ClusterResourceType.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clusterresourcetype?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clusterresourcetype?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterResourceType --- diff --git a/docset/winserver2016-ps/failoverclusters/Remove-ClusterSharedVolume.md b/docset/winserver2016-ps/failoverclusters/Remove-ClusterSharedVolume.md index 0672e25ac6..2f73e52595 100644 --- a/docset/winserver2016-ps/failoverclusters/Remove-ClusterSharedVolume.md +++ b/docset/winserver2016-ps/failoverclusters/Remove-ClusterSharedVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clustersharedvolume?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clustersharedvolume?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterSharedVolume --- diff --git a/docset/winserver2016-ps/failoverclusters/Remove-ClusterVMMonitoredItem.md b/docset/winserver2016-ps/failoverclusters/Remove-ClusterVMMonitoredItem.md index 9a243fd292..01a3b9a007 100644 --- a/docset/winserver2016-ps/failoverclusters/Remove-ClusterVMMonitoredItem.md +++ b/docset/winserver2016-ps/failoverclusters/Remove-ClusterVMMonitoredItem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clustervmmonitoreditem?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clustervmmonitoreditem?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterVMMonitoredItem --- diff --git a/docset/winserver2016-ps/failoverclusters/Repair-ClusterStorageSpacesDirect.md b/docset/winserver2016-ps/failoverclusters/Repair-ClusterStorageSpacesDirect.md index a1f9e2e818..dd07048cc5 100644 --- a/docset/winserver2016-ps/failoverclusters/Repair-ClusterStorageSpacesDirect.md +++ b/docset/winserver2016-ps/failoverclusters/Repair-ClusterStorageSpacesDirect.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterStorageSpacesDirect.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/repair-clusterstoragespacesdirect?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/repair-clusterstoragespacesdirect?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Repair-ClusterStorageSpacesDirect --- diff --git a/docset/winserver2016-ps/failoverclusters/Reset-ClusterVMMonitoredState.md b/docset/winserver2016-ps/failoverclusters/Reset-ClusterVMMonitoredState.md index 5a647e91bd..39feca1044 100644 --- a/docset/winserver2016-ps/failoverclusters/Reset-ClusterVMMonitoredState.md +++ b/docset/winserver2016-ps/failoverclusters/Reset-ClusterVMMonitoredState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/reset-clustervmmonitoredstate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/reset-clustervmmonitoredstate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-ClusterVMMonitoredState --- diff --git a/docset/winserver2016-ps/failoverclusters/Resume-ClusterNode.md b/docset/winserver2016-ps/failoverclusters/Resume-ClusterNode.md index 2e35e9acd7..edb8a564dd 100644 --- a/docset/winserver2016-ps/failoverclusters/Resume-ClusterNode.md +++ b/docset/winserver2016-ps/failoverclusters/Resume-ClusterNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/resume-clusternode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/resume-clusternode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-ClusterNode --- diff --git a/docset/winserver2016-ps/failoverclusters/Resume-ClusterResource.md b/docset/winserver2016-ps/failoverclusters/Resume-ClusterResource.md index 5612896a97..70d0c2f897 100644 --- a/docset/winserver2016-ps/failoverclusters/Resume-ClusterResource.md +++ b/docset/winserver2016-ps/failoverclusters/Resume-ClusterResource.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/resume-clusterresource?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/resume-clusterresource?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-ClusterResource --- diff --git a/docset/winserver2016-ps/failoverclusters/Set-ClusterFaultDomain.md b/docset/winserver2016-ps/failoverclusters/Set-ClusterFaultDomain.md index 16242ed237..1e074cda97 100644 --- a/docset/winserver2016-ps/failoverclusters/Set-ClusterFaultDomain.md +++ b/docset/winserver2016-ps/failoverclusters/Set-ClusterFaultDomain.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterFaultDomain.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/set-clusterfaultdomain?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterfaultdomain?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterFaultDomain --- diff --git a/docset/winserver2016-ps/failoverclusters/Set-ClusterFaultDomainXML.md b/docset/winserver2016-ps/failoverclusters/Set-ClusterFaultDomainXML.md index 274ee12110..70884ea1df 100644 --- a/docset/winserver2016-ps/failoverclusters/Set-ClusterFaultDomainXML.md +++ b/docset/winserver2016-ps/failoverclusters/Set-ClusterFaultDomainXML.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterFaultDomain.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/set-clusterfaultdomainxml?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterfaultdomainxml?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterFaultDomainXML --- diff --git a/docset/winserver2016-ps/failoverclusters/Set-ClusterGroupSet.md b/docset/winserver2016-ps/failoverclusters/Set-ClusterGroupSet.md index c2deb921ec..4b8b9d3514 100644 --- a/docset/winserver2016-ps/failoverclusters/Set-ClusterGroupSet.md +++ b/docset/winserver2016-ps/failoverclusters/Set-ClusterGroupSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterCollection.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/set-clustergroupset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clustergroupset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterGroupSet --- diff --git a/docset/winserver2016-ps/failoverclusters/Set-ClusterLog.md b/docset/winserver2016-ps/failoverclusters/Set-ClusterLog.md index 3f5fa511a8..c3e4fab5d3 100644 --- a/docset/winserver2016-ps/failoverclusters/Set-ClusterLog.md +++ b/docset/winserver2016-ps/failoverclusters/Set-ClusterLog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/set-clusterlog?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterlog?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterLog --- diff --git a/docset/winserver2016-ps/failoverclusters/Set-ClusterOwnerNode.md b/docset/winserver2016-ps/failoverclusters/Set-ClusterOwnerNode.md index 577b772520..530e9b547c 100644 --- a/docset/winserver2016-ps/failoverclusters/Set-ClusterOwnerNode.md +++ b/docset/winserver2016-ps/failoverclusters/Set-ClusterOwnerNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/set-clusterownernode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterownernode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterOwnerNode --- diff --git a/docset/winserver2016-ps/failoverclusters/Set-ClusterParameter.md b/docset/winserver2016-ps/failoverclusters/Set-ClusterParameter.md index e1d7e68808..41a7afca0d 100644 --- a/docset/winserver2016-ps/failoverclusters/Set-ClusterParameter.md +++ b/docset/winserver2016-ps/failoverclusters/Set-ClusterParameter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/set-clusterparameter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterparameter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterParameter --- diff --git a/docset/winserver2016-ps/failoverclusters/Set-ClusterQuorum.md b/docset/winserver2016-ps/failoverclusters/Set-ClusterQuorum.md index 62ef927b58..07acd60bef 100644 --- a/docset/winserver2016-ps/failoverclusters/Set-ClusterQuorum.md +++ b/docset/winserver2016-ps/failoverclusters/Set-ClusterQuorum.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/set-clusterquorum?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterquorum?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterQuorum --- diff --git a/docset/winserver2016-ps/failoverclusters/Set-ClusterResourceDependency.md b/docset/winserver2016-ps/failoverclusters/Set-ClusterResourceDependency.md index 4b8c919094..003c648492 100644 --- a/docset/winserver2016-ps/failoverclusters/Set-ClusterResourceDependency.md +++ b/docset/winserver2016-ps/failoverclusters/Set-ClusterResourceDependency.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/set-clusterresourcedependency?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterresourcedependency?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterResourceDependency --- diff --git a/docset/winserver2016-ps/failoverclusters/Set-ClusterStorageSpacesDirect.md b/docset/winserver2016-ps/failoverclusters/Set-ClusterStorageSpacesDirect.md index 54d7fd3806..ef3f994a41 100644 --- a/docset/winserver2016-ps/failoverclusters/Set-ClusterStorageSpacesDirect.md +++ b/docset/winserver2016-ps/failoverclusters/Set-ClusterStorageSpacesDirect.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterStorageSpacesDirect.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/set-clusterstoragespacesdirect?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterstoragespacesdirect?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterStorageSpacesDirect --- diff --git a/docset/winserver2016-ps/failoverclusters/Set-ClusterStorageSpacesDirectDisk.md b/docset/winserver2016-ps/failoverclusters/Set-ClusterStorageSpacesDirectDisk.md index 5aaa57a454..a4069455f8 100644 --- a/docset/winserver2016-ps/failoverclusters/Set-ClusterStorageSpacesDirectDisk.md +++ b/docset/winserver2016-ps/failoverclusters/Set-ClusterStorageSpacesDirectDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterStorageSpacesDirect.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/set-clusterstoragespacesdirectdisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterstoragespacesdirectdisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterStorageSpacesDirectDisk --- diff --git a/docset/winserver2016-ps/failoverclusters/Start-Cluster.md b/docset/winserver2016-ps/failoverclusters/Start-Cluster.md index 3183557e5c..222ff6e4cb 100644 --- a/docset/winserver2016-ps/failoverclusters/Start-Cluster.md +++ b/docset/winserver2016-ps/failoverclusters/Start-Cluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/start-cluster?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/start-cluster?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-Cluster --- diff --git a/docset/winserver2016-ps/failoverclusters/Start-ClusterGroup.md b/docset/winserver2016-ps/failoverclusters/Start-ClusterGroup.md index d90df86348..1690e04461 100644 --- a/docset/winserver2016-ps/failoverclusters/Start-ClusterGroup.md +++ b/docset/winserver2016-ps/failoverclusters/Start-ClusterGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/start-clustergroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/start-clustergroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-ClusterGroup --- diff --git a/docset/winserver2016-ps/failoverclusters/Start-ClusterNode.md b/docset/winserver2016-ps/failoverclusters/Start-ClusterNode.md index cb8fbf46ce..8490609a1c 100644 --- a/docset/winserver2016-ps/failoverclusters/Start-ClusterNode.md +++ b/docset/winserver2016-ps/failoverclusters/Start-ClusterNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/start-clusternode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/start-clusternode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-ClusterNode --- diff --git a/docset/winserver2016-ps/failoverclusters/Start-ClusterResource.md b/docset/winserver2016-ps/failoverclusters/Start-ClusterResource.md index e075e0f7d9..7a0d98aa06 100644 --- a/docset/winserver2016-ps/failoverclusters/Start-ClusterResource.md +++ b/docset/winserver2016-ps/failoverclusters/Start-ClusterResource.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/start-clusterresource?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/start-clusterresource?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-ClusterResource --- diff --git a/docset/winserver2016-ps/failoverclusters/Stop-Cluster.md b/docset/winserver2016-ps/failoverclusters/Stop-Cluster.md index 7629704f77..2511327da0 100644 --- a/docset/winserver2016-ps/failoverclusters/Stop-Cluster.md +++ b/docset/winserver2016-ps/failoverclusters/Stop-Cluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/stop-cluster?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/stop-cluster?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-Cluster --- diff --git a/docset/winserver2016-ps/failoverclusters/Stop-ClusterGroup.md b/docset/winserver2016-ps/failoverclusters/Stop-ClusterGroup.md index f16c164b63..e48d22ff2a 100644 --- a/docset/winserver2016-ps/failoverclusters/Stop-ClusterGroup.md +++ b/docset/winserver2016-ps/failoverclusters/Stop-ClusterGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/stop-clustergroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/stop-clustergroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-ClusterGroup --- diff --git a/docset/winserver2016-ps/failoverclusters/Stop-ClusterNode.md b/docset/winserver2016-ps/failoverclusters/Stop-ClusterNode.md index a336b29103..709b1afb82 100644 --- a/docset/winserver2016-ps/failoverclusters/Stop-ClusterNode.md +++ b/docset/winserver2016-ps/failoverclusters/Stop-ClusterNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/stop-clusternode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/stop-clusternode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-ClusterNode --- diff --git a/docset/winserver2016-ps/failoverclusters/Stop-ClusterResource.md b/docset/winserver2016-ps/failoverclusters/Stop-ClusterResource.md index e0dc8c6585..2ebf473cc3 100644 --- a/docset/winserver2016-ps/failoverclusters/Stop-ClusterResource.md +++ b/docset/winserver2016-ps/failoverclusters/Stop-ClusterResource.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/stop-clusterresource?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/stop-clusterresource?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-ClusterResource --- diff --git a/docset/winserver2016-ps/failoverclusters/Suspend-ClusterNode.md b/docset/winserver2016-ps/failoverclusters/Suspend-ClusterNode.md index 9438263084..92ff3e197d 100644 --- a/docset/winserver2016-ps/failoverclusters/Suspend-ClusterNode.md +++ b/docset/winserver2016-ps/failoverclusters/Suspend-ClusterNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/suspend-clusternode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/suspend-clusternode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-ClusterNode --- diff --git a/docset/winserver2016-ps/failoverclusters/Suspend-ClusterResource.md b/docset/winserver2016-ps/failoverclusters/Suspend-ClusterResource.md index daf0aa7b2e..7ceee14dfc 100644 --- a/docset/winserver2016-ps/failoverclusters/Suspend-ClusterResource.md +++ b/docset/winserver2016-ps/failoverclusters/Suspend-ClusterResource.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/suspend-clusterresource?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/suspend-clusterresource?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-ClusterResource --- diff --git a/docset/winserver2016-ps/failoverclusters/Test-Cluster.md b/docset/winserver2016-ps/failoverclusters/Test-Cluster.md index 2850707f48..62994050cf 100644 --- a/docset/winserver2016-ps/failoverclusters/Test-Cluster.md +++ b/docset/winserver2016-ps/failoverclusters/Test-Cluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/test-cluster?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/test-cluster?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-Cluster --- diff --git a/docset/winserver2016-ps/failoverclusters/Test-ClusterResourceFailure.md b/docset/winserver2016-ps/failoverclusters/Test-ClusterResourceFailure.md index d71c5648ce..ac73d13238 100644 --- a/docset/winserver2016-ps/failoverclusters/Test-ClusterResourceFailure.md +++ b/docset/winserver2016-ps/failoverclusters/Test-ClusterResourceFailure.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/test-clusterresourcefailure?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/test-clusterresourcefailure?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-ClusterResourceFailure --- diff --git a/docset/winserver2016-ps/failoverclusters/Update-ClusterFunctionalLevel.md b/docset/winserver2016-ps/failoverclusters/Update-ClusterFunctionalLevel.md index 7c107d7a95..ccb662fbce 100644 --- a/docset/winserver2016-ps/failoverclusters/Update-ClusterFunctionalLevel.md +++ b/docset/winserver2016-ps/failoverclusters/Update-ClusterFunctionalLevel.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/update-clusterfunctionallevel?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/update-clusterfunctionallevel?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-ClusterFunctionalLevel --- diff --git a/docset/winserver2016-ps/failoverclusters/Update-ClusterIPResource.md b/docset/winserver2016-ps/failoverclusters/Update-ClusterIPResource.md index acc1b32bf3..81b4dec0be 100644 --- a/docset/winserver2016-ps/failoverclusters/Update-ClusterIPResource.md +++ b/docset/winserver2016-ps/failoverclusters/Update-ClusterIPResource.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/update-clusteripresource?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/update-clusteripresource?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-ClusterIPResource --- diff --git a/docset/winserver2016-ps/failoverclusters/Update-ClusterNetworkNameResource.md b/docset/winserver2016-ps/failoverclusters/Update-ClusterNetworkNameResource.md index f5501c1433..e0835cdaa6 100644 --- a/docset/winserver2016-ps/failoverclusters/Update-ClusterNetworkNameResource.md +++ b/docset/winserver2016-ps/failoverclusters/Update-ClusterNetworkNameResource.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/update-clusternetworknameresource?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/update-clusternetworknameresource?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-ClusterNetworkNameResource --- diff --git a/docset/winserver2016-ps/failoverclusters/Update-ClusterVirtualMachineConfiguration.md b/docset/winserver2016-ps/failoverclusters/Update-ClusterVirtualMachineConfiguration.md index 34fbd5d4d8..23c593620e 100644 --- a/docset/winserver2016-ps/failoverclusters/Update-ClusterVirtualMachineConfiguration.md +++ b/docset/winserver2016-ps/failoverclusters/Update-ClusterVirtualMachineConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/update-clustervirtualmachineconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/update-clustervirtualmachineconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-ClusterVirtualMachineConfiguration --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmAdrSetting.md b/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmAdrSetting.md index c4d2c8c7ee..72d5d9855a 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmAdrSetting.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmAdrSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmAdrSetting.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmadrsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmadrsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmAdrSetting --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmAutoQuota.md b/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmAutoQuota.md index eb1b2642dc..2e4da168ad 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmAutoQuota.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmAutoQuota.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMAutoQuota.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmautoquota?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmautoquota?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmAutoQuota --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmClassification.md b/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmClassification.md index 802f68ff45..adc89f2b54 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmClassification.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmClassification.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMClassification.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmclassification?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmclassification?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmClassification --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmClassificationPropertyDefinition.md b/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmClassificationPropertyDefinition.md index 51d2f0dad1..3b539c4954 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmClassificationPropertyDefinition.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmClassificationPropertyDefinition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMClassificationPropertyDefinition.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmclassificationpropertydefinition?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmclassificationpropertydefinition?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmClassificationPropertyDefinition --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmClassificationRule.md b/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmClassificationRule.md index 17e9d6a0b6..0e53179af8 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmClassificationRule.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmClassificationRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMClassificationRule.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmclassificationrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmclassificationrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmClassificationRule --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmEffectiveNamespace.md b/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmEffectiveNamespace.md index 1d104a96ea..490fb45145 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmEffectiveNamespace.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmEffectiveNamespace.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMEffectiveNamespace.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmeffectivenamespace?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmeffectivenamespace?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmEffectiveNamespace --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmFileGroup.md b/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmFileGroup.md index 4139ad177f..9b5ea4f680 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmFileGroup.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmFileGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFileGroup.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmfilegroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmfilegroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmFileGroup --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmFileManagementJob.md b/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmFileManagementJob.md index 57f8cdfa72..24fdc862b5 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmFileManagementJob.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmFileManagementJob.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMFileManagementJob.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmfilemanagementjob?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmfilemanagementjob?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmFileManagementJob --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmFileScreen.md b/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmFileScreen.md index d2abd38d41..fa63eef982 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmFileScreen.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmFileScreen.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFileScreen.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmfilescreen?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmfilescreen?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmFileScreen --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmFileScreenException.md b/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmFileScreenException.md index 1b103033fc..7746de53fe 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmFileScreenException.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmFileScreenException.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFileScreenException.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmfilescreenexception?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmfilescreenexception?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmFileScreenException --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmFileScreenTemplate.md b/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmFileScreenTemplate.md index 9154b3b0cd..9998b43632 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmFileScreenTemplate.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmFileScreenTemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFileScreenTemplate.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmfilescreentemplate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmfilescreentemplate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmFileScreenTemplate --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmMacro.md b/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmMacro.md index 2a3eb863cc..e8bc3d84df 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmMacro.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmMacro.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmMacro.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmmacro?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmmacro?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmMacro --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmMgmtProperty.md b/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmMgmtProperty.md index dffa4403f1..55a2b33715 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmMgmtProperty.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmMgmtProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmMgmtProperty.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmmgmtproperty?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmmgmtproperty?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmMgmtProperty --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmQuota.md b/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmQuota.md index 1dc75d5fb3..6f92c602a8 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmQuota.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmQuota.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmQuota.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmquota?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmquota?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmQuota --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmQuotaTemplate.md b/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmQuotaTemplate.md index 9f1d24432d..dbf78be48e 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmQuotaTemplate.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmQuotaTemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmQuotaTemplate.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmquotatemplate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmquotatemplate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmQuotaTemplate --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmRmsTemplate.md b/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmRmsTemplate.md index 9ad21a8106..ad9bfc773a 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmRmsTemplate.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmRmsTemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmRmsTemplate.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmrmstemplate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmrmstemplate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmRmsTemplate --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmSetting.md b/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmSetting.md index 4bd27fce17..aeac1c6bdd 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmSetting.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmSetting.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmSetting --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmStorageReport.md b/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmStorageReport.md index 9ed3edd363..9e45559b9d 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmStorageReport.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Get-FsrmStorageReport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmStorageReport.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmstoragereport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmstoragereport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmStorageReport --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmAction.md b/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmAction.md index bd7353a2a9..a952661eff 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmAction.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmAction.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmAction.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmaction?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmaction?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmAction --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmAutoQuota.md b/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmAutoQuota.md index 1c6e14bf6b..8e55232449 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmAutoQuota.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmAutoQuota.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMAutoQuota.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmautoquota?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmautoquota?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmAutoQuota --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmClassificationPropertyDefinition.md b/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmClassificationPropertyDefinition.md index e9a83cd2ad..9f7237c22b 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmClassificationPropertyDefinition.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmClassificationPropertyDefinition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMClassificationPropertyDefinition.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmclassificationpropertydefinition?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmclassificationpropertydefinition?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmClassificationPropertyDefinition --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmClassificationPropertyValue.md b/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmClassificationPropertyValue.md index db932cf3dc..a51b541797 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmClassificationPropertyValue.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmClassificationPropertyValue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmClassificationPropertyValue.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmclassificationpropertyvalue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmclassificationpropertyvalue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmClassificationPropertyValue --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmClassificationRule.md b/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmClassificationRule.md index db352c2b67..fc8d0d6a41 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmClassificationRule.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmClassificationRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMClassificationRule.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmclassificationrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmclassificationrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmClassificationRule --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmFMJNotification.md b/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmFMJNotification.md index f3eaa8dba7..458d24b8fb 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmFMJNotification.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmFMJNotification.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMFmjNotification.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfmjnotification?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfmjnotification?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmFMJNotification --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmFileGroup.md b/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmFileGroup.md index d83feb8c8d..d5e4862a88 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmFileGroup.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmFileGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFileGroup.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfilegroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfilegroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmFileGroup --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmFileManagementJob.md b/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmFileManagementJob.md index 11480c2cf0..ef3b47a643 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmFileManagementJob.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmFileManagementJob.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMFileManagementJob.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfilemanagementjob?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfilemanagementjob?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmFileManagementJob --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmFileScreen.md b/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmFileScreen.md index f14bd4a942..b307345963 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmFileScreen.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmFileScreen.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFileScreen.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfilescreen?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfilescreen?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmFileScreen --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmFileScreenException.md b/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmFileScreenException.md index de81bfd002..292cdfabed 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmFileScreenException.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmFileScreenException.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFileScreenException.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfilescreenexception?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfilescreenexception?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmFileScreenException --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmFileScreenTemplate.md b/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmFileScreenTemplate.md index 1533ddae6a..6ed1a87b07 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmFileScreenTemplate.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmFileScreenTemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFileScreenTemplate.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfilescreentemplate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfilescreentemplate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmFileScreenTemplate --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmFmjAction.md b/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmFmjAction.md index 060b9e924a..f920122c8b 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmFmjAction.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmFmjAction.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFmjAction.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfmjaction?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfmjaction?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmFmjAction --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmFmjCondition.md b/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmFmjCondition.md index 6feeb6684c..ce139093e3 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmFmjCondition.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmFmjCondition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMFmjCondition.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfmjcondition?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfmjcondition?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmFmjCondition --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmFmjNotificationAction.md b/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmFmjNotificationAction.md index 3dc24e2819..25bf8cb186 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmFmjNotificationAction.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmFmjNotificationAction.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFmjNotificationAction.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfmjnotificationaction?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfmjnotificationaction?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmFmjNotificationAction --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmQuota.md b/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmQuota.md index 59ea977874..671283f073 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmQuota.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmQuota.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmQuota.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmquota?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmquota?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmQuota --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmQuotaTemplate.md b/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmQuotaTemplate.md index 7ebe92e62f..346e47171f 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmQuotaTemplate.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmQuotaTemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmQuotaTemplate.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmquotatemplate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmquotatemplate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmQuotaTemplate --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmQuotaThreshold.md b/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmQuotaThreshold.md index 8f5509d238..d14681189f 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmQuotaThreshold.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmQuotaThreshold.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMQuotaThreshold.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmquotathreshold?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmquotathreshold?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmQuotaThreshold --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmScheduledTask.md b/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmScheduledTask.md index ba4dcc733d..1afcd64886 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmScheduledTask.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmScheduledTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmScheduledTask.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmscheduledtask?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmscheduledtask?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmScheduledTask --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmStorageReport.md b/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmStorageReport.md index 1bccb88027..0e717731c0 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmStorageReport.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/New-FsrmStorageReport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmStorageReport.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmstoragereport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmstoragereport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmStorageReport --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Remove-FsrmAutoQuota.md b/docset/winserver2016-ps/fileserverresourcemanager/Remove-FsrmAutoQuota.md index 1e3633f8c5..5bd362e30c 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Remove-FsrmAutoQuota.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Remove-FsrmAutoQuota.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMAutoQuota.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmautoquota?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmautoquota?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-FsrmAutoQuota --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Remove-FsrmClassificationPropertyDefinition.md b/docset/winserver2016-ps/fileserverresourcemanager/Remove-FsrmClassificationPropertyDefinition.md index d614944e21..6fa89716c0 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Remove-FsrmClassificationPropertyDefinition.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Remove-FsrmClassificationPropertyDefinition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMClassificationPropertyDefinition.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmclassificationpropertydefinition?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmclassificationpropertydefinition?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-FsrmClassificationPropertyDefinition --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Remove-FsrmClassificationRule.md b/docset/winserver2016-ps/fileserverresourcemanager/Remove-FsrmClassificationRule.md index cb8719d6e2..868897e744 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Remove-FsrmClassificationRule.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Remove-FsrmClassificationRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMClassificationRule.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmclassificationrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmclassificationrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-FsrmClassificationRule --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Remove-FsrmFileGroup.md b/docset/winserver2016-ps/fileserverresourcemanager/Remove-FsrmFileGroup.md index dcbdb4dc85..8bffc93fb4 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Remove-FsrmFileGroup.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Remove-FsrmFileGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFileGroup.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmfilegroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmfilegroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-FsrmFileGroup --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Remove-FsrmFileManagementJob.md b/docset/winserver2016-ps/fileserverresourcemanager/Remove-FsrmFileManagementJob.md index 6e5e94743b..b239468520 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Remove-FsrmFileManagementJob.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Remove-FsrmFileManagementJob.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMFileManagementJob.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmfilemanagementjob?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmfilemanagementjob?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-FsrmFileManagementJob --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Remove-FsrmFileScreen.md b/docset/winserver2016-ps/fileserverresourcemanager/Remove-FsrmFileScreen.md index 04685473f7..1775d3e2f1 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Remove-FsrmFileScreen.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Remove-FsrmFileScreen.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFileScreen.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmfilescreen?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmfilescreen?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-FsrmFileScreen --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Remove-FsrmFileScreenException.md b/docset/winserver2016-ps/fileserverresourcemanager/Remove-FsrmFileScreenException.md index fa323496d4..4c5d488162 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Remove-FsrmFileScreenException.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Remove-FsrmFileScreenException.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFileScreenException.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmfilescreenexception?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmfilescreenexception?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-FsrmFileScreenException --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Remove-FsrmFileScreenTemplate.md b/docset/winserver2016-ps/fileserverresourcemanager/Remove-FsrmFileScreenTemplate.md index a360b5271b..e2be18693d 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Remove-FsrmFileScreenTemplate.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Remove-FsrmFileScreenTemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFileScreenTemplate.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmfilescreentemplate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmfilescreentemplate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-FsrmFileScreenTemplate --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Remove-FsrmMgmtProperty.md b/docset/winserver2016-ps/fileserverresourcemanager/Remove-FsrmMgmtProperty.md index 131241e387..2f124f0980 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Remove-FsrmMgmtProperty.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Remove-FsrmMgmtProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmMgmtProperty.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmmgmtproperty?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmmgmtproperty?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-FsrmMgmtProperty --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Remove-FsrmQuota.md b/docset/winserver2016-ps/fileserverresourcemanager/Remove-FsrmQuota.md index 0e55a6f283..56b0cf84b7 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Remove-FsrmQuota.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Remove-FsrmQuota.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmQuota.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmquota?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmquota?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-FsrmQuota --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Remove-FsrmQuotaTemplate.md b/docset/winserver2016-ps/fileserverresourcemanager/Remove-FsrmQuotaTemplate.md index 9653163665..64d118769f 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Remove-FsrmQuotaTemplate.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Remove-FsrmQuotaTemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmQuotaTemplate.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmquotatemplate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmquotatemplate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-FsrmQuotaTemplate --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Remove-FsrmStorageReport.md b/docset/winserver2016-ps/fileserverresourcemanager/Remove-FsrmStorageReport.md index bebe619fcf..5fad84f9c9 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Remove-FsrmStorageReport.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Remove-FsrmStorageReport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmStorageReport.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmstoragereport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmstoragereport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-FsrmStorageReport --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Reset-FsrmFileScreen.md b/docset/winserver2016-ps/fileserverresourcemanager/Reset-FsrmFileScreen.md index 464537b02d..a1bbb74939 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Reset-FsrmFileScreen.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Reset-FsrmFileScreen.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFileScreen.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/reset-fsrmfilescreen?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/reset-fsrmfilescreen?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-FsrmFileScreen --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Reset-FsrmQuota.md b/docset/winserver2016-ps/fileserverresourcemanager/Reset-FsrmQuota.md index d6b7b31096..e49c4686ea 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Reset-FsrmQuota.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Reset-FsrmQuota.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmQuota.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/reset-fsrmquota?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/reset-fsrmquota?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-FsrmQuota --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Send-FsrmTestEmail.md b/docset/winserver2016-ps/fileserverresourcemanager/Send-FsrmTestEmail.md index 87a686549a..6fea75a210 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Send-FsrmTestEmail.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Send-FsrmTestEmail.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmTestEmail.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/send-fsrmtestemail?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/send-fsrmtestemail?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Send-FsrmTestEmail --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmAdrSetting.md b/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmAdrSetting.md index 8750ad6079..025a32ffa9 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmAdrSetting.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmAdrSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmAdrSetting.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmadrsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmadrsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmAdrSetting --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmAutoQuota.md b/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmAutoQuota.md index 7d76e1c0ae..0710cac7bf 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmAutoQuota.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmAutoQuota.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMAutoQuota.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmautoquota?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmautoquota?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmAutoQuota --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmClassification.md b/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmClassification.md index 5ed153f3dc..84b48a61d5 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmClassification.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmClassification.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMClassification.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmclassification?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmclassification?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmClassification --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmClassificationPropertyDefinition.md b/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmClassificationPropertyDefinition.md index ba2c91fcbf..431d9c3f01 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmClassificationPropertyDefinition.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmClassificationPropertyDefinition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMClassificationPropertyDefinition.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmclassificationpropertydefinition?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmclassificationpropertydefinition?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmClassificationPropertyDefinition --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmClassificationRule.md b/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmClassificationRule.md index 6416df9fcb..25492f8060 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmClassificationRule.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmClassificationRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMClassificationRule.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmclassificationrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmclassificationrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmClassificationRule --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmFileGroup.md b/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmFileGroup.md index fa9be6cf80..3ad3a55a15 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmFileGroup.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmFileGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFileGroup.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmfilegroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmfilegroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmFileGroup --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmFileManagementJob.md b/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmFileManagementJob.md index a74daf581f..b0def36dd5 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmFileManagementJob.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmFileManagementJob.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMFileManagementJob.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmfilemanagementjob?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmfilemanagementjob?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmFileManagementJob --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmFileScreen.md b/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmFileScreen.md index 4d3dbae18f..cde7717dc3 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmFileScreen.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmFileScreen.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFileScreen.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmfilescreen?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmfilescreen?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmFileScreen --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmFileScreenException.md b/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmFileScreenException.md index 97100d59dd..45cdc72661 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmFileScreenException.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmFileScreenException.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFileScreenException.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmfilescreenexception?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmfilescreenexception?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmFileScreenException --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmFileScreenTemplate.md b/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmFileScreenTemplate.md index 9200e46cf3..02792a0c97 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmFileScreenTemplate.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmFileScreenTemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFileScreenTemplate.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmfilescreentemplate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmfilescreentemplate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmFileScreenTemplate --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmMgmtProperty.md b/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmMgmtProperty.md index aed0f63435..4194c520d2 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmMgmtProperty.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmMgmtProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmMgmtProperty.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmmgmtproperty?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmmgmtproperty?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmMgmtProperty --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmQuota.md b/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmQuota.md index 181962deab..bd294994a2 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmQuota.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmQuota.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmQuota.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmquota?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmquota?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmQuota --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmQuotaTemplate.md b/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmQuotaTemplate.md index 66d6246153..54cad0bece 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmQuotaTemplate.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmQuotaTemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmQuotaTemplate.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmquotatemplate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmquotatemplate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmQuotaTemplate --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmSetting.md b/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmSetting.md index d0441e7bfd..15b0e15a88 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmSetting.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmSetting.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmSetting --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmStorageReport.md b/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmStorageReport.md index 4310b07aaa..c513c97116 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmStorageReport.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Set-FsrmStorageReport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmStorageReport.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmstoragereport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmstoragereport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmStorageReport --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Start-FsrmClassification.md b/docset/winserver2016-ps/fileserverresourcemanager/Start-FsrmClassification.md index f211504df0..ffb19023f0 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Start-FsrmClassification.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Start-FsrmClassification.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMClassification.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/start-fsrmclassification?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/start-fsrmclassification?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-FsrmClassification --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Start-FsrmFileManagementJob.md b/docset/winserver2016-ps/fileserverresourcemanager/Start-FsrmFileManagementJob.md index 1f5542d584..122aaa7122 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Start-FsrmFileManagementJob.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Start-FsrmFileManagementJob.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMFileManagementJob.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/start-fsrmfilemanagementjob?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/start-fsrmfilemanagementjob?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-FsrmFileManagementJob --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Start-FsrmStorageReport.md b/docset/winserver2016-ps/fileserverresourcemanager/Start-FsrmStorageReport.md index 83b58558a4..0a5859aaa4 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Start-FsrmStorageReport.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Start-FsrmStorageReport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmStorageReport.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/start-fsrmstoragereport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/start-fsrmstoragereport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-FsrmStorageReport --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Stop-FsrmClassification.md b/docset/winserver2016-ps/fileserverresourcemanager/Stop-FsrmClassification.md index 1e7d07d560..e2b088fa2d 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Stop-FsrmClassification.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Stop-FsrmClassification.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMClassification.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/stop-fsrmclassification?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/stop-fsrmclassification?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-FsrmClassification --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Stop-FsrmFileManagementJob.md b/docset/winserver2016-ps/fileserverresourcemanager/Stop-FsrmFileManagementJob.md index b71989cc74..a4d79cf999 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Stop-FsrmFileManagementJob.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Stop-FsrmFileManagementJob.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMFileManagementJob.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/stop-fsrmfilemanagementjob?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/stop-fsrmfilemanagementjob?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-FsrmFileManagementJob --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Stop-FsrmStorageReport.md b/docset/winserver2016-ps/fileserverresourcemanager/Stop-FsrmStorageReport.md index 314fa0094e..f1dd1e3cef 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Stop-FsrmStorageReport.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Stop-FsrmStorageReport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmStorageReport.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/stop-fsrmstoragereport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/stop-fsrmstoragereport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-FsrmStorageReport --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Update-FsrmAutoQuota.md b/docset/winserver2016-ps/fileserverresourcemanager/Update-FsrmAutoQuota.md index 816656ebef..4f563d92db 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Update-FsrmAutoQuota.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Update-FsrmAutoQuota.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMAutoQuota.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/update-fsrmautoquota?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/update-fsrmautoquota?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-FsrmAutoQuota --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Update-FsrmClassificationPropertyDefinition.md b/docset/winserver2016-ps/fileserverresourcemanager/Update-FsrmClassificationPropertyDefinition.md index eff06a477c..bbc57dbb33 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Update-FsrmClassificationPropertyDefinition.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Update-FsrmClassificationPropertyDefinition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMClassificationPropertyDefinition.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/update-fsrmclassificationpropertydefinition?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/update-fsrmclassificationpropertydefinition?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-FsrmClassificationPropertyDefinition --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Update-FsrmQuota.md b/docset/winserver2016-ps/fileserverresourcemanager/Update-FsrmQuota.md index 434daa2b75..50c4230804 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Update-FsrmQuota.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Update-FsrmQuota.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmQuota.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/update-fsrmquota?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/update-fsrmquota?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-FsrmQuota --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Wait-FsrmClassification.md b/docset/winserver2016-ps/fileserverresourcemanager/Wait-FsrmClassification.md index 5253be3bb6..59d87b61f2 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Wait-FsrmClassification.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Wait-FsrmClassification.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMClassification.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/wait-fsrmclassification?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/wait-fsrmclassification?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Wait-FsrmClassification --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Wait-FsrmFileManagementJob.md b/docset/winserver2016-ps/fileserverresourcemanager/Wait-FsrmFileManagementJob.md index bb4ecd1f78..b2c2e814aa 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Wait-FsrmFileManagementJob.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Wait-FsrmFileManagementJob.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMFileManagementJob.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/wait-fsrmfilemanagementjob?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/wait-fsrmfilemanagementjob?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Wait-FsrmFileManagementJob --- diff --git a/docset/winserver2016-ps/fileserverresourcemanager/Wait-FsrmStorageReport.md b/docset/winserver2016-ps/fileserverresourcemanager/Wait-FsrmStorageReport.md index 3855916198..84614657dd 100644 --- a/docset/winserver2016-ps/fileserverresourcemanager/Wait-FsrmStorageReport.md +++ b/docset/winserver2016-ps/fileserverresourcemanager/Wait-FsrmStorageReport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmStorageReport.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/wait-fsrmstoragereport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/wait-fsrmstoragereport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Wait-FsrmStorageReport --- diff --git a/docset/winserver2016-ps/grouppolicy/Backup-GPO.md b/docset/winserver2016-ps/grouppolicy/Backup-GPO.md index 83ad2a36dc..c811b81112 100644 --- a/docset/winserver2016-ps/grouppolicy/Backup-GPO.md +++ b/docset/winserver2016-ps/grouppolicy/Backup-GPO.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/backup-gpo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/backup-gpo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Backup-GPO --- diff --git a/docset/winserver2016-ps/grouppolicy/Copy-GPO.md b/docset/winserver2016-ps/grouppolicy/Copy-GPO.md index 13ab5ffa1e..9d5c911831 100644 --- a/docset/winserver2016-ps/grouppolicy/Copy-GPO.md +++ b/docset/winserver2016-ps/grouppolicy/Copy-GPO.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/copy-gpo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/copy-gpo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Copy-GPO --- diff --git a/docset/winserver2016-ps/grouppolicy/Get-GPInheritance.md b/docset/winserver2016-ps/grouppolicy/Get-GPInheritance.md index 6d06d30fb8..463d38a2f2 100644 --- a/docset/winserver2016-ps/grouppolicy/Get-GPInheritance.md +++ b/docset/winserver2016-ps/grouppolicy/Get-GPInheritance.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/get-gpinheritance?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/get-gpinheritance?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-GPInheritance --- diff --git a/docset/winserver2016-ps/grouppolicy/Get-GPO.md b/docset/winserver2016-ps/grouppolicy/Get-GPO.md index 02c65cc41c..d127f9c77d 100644 --- a/docset/winserver2016-ps/grouppolicy/Get-GPO.md +++ b/docset/winserver2016-ps/grouppolicy/Get-GPO.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/get-gpo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/get-gpo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-GPO --- diff --git a/docset/winserver2016-ps/grouppolicy/Get-GPOReport.md b/docset/winserver2016-ps/grouppolicy/Get-GPOReport.md index c49c6339c3..91db64e51a 100644 --- a/docset/winserver2016-ps/grouppolicy/Get-GPOReport.md +++ b/docset/winserver2016-ps/grouppolicy/Get-GPOReport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/get-gporeport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/get-gporeport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-GPOReport --- diff --git a/docset/winserver2016-ps/grouppolicy/Get-GPPermission.md b/docset/winserver2016-ps/grouppolicy/Get-GPPermission.md index 479e062c3a..5f7d1a7749 100644 --- a/docset/winserver2016-ps/grouppolicy/Get-GPPermission.md +++ b/docset/winserver2016-ps/grouppolicy/Get-GPPermission.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/get-gppermission?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/get-gppermission?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-GPPermission --- diff --git a/docset/winserver2016-ps/grouppolicy/Get-GPPrefRegistryValue.md b/docset/winserver2016-ps/grouppolicy/Get-GPPrefRegistryValue.md index 6322a31e7c..8d3d249090 100644 --- a/docset/winserver2016-ps/grouppolicy/Get-GPPrefRegistryValue.md +++ b/docset/winserver2016-ps/grouppolicy/Get-GPPrefRegistryValue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/get-gpprefregistryvalue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/get-gpprefregistryvalue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-GPPrefRegistryValue --- diff --git a/docset/winserver2016-ps/grouppolicy/Get-GPRegistryValue.md b/docset/winserver2016-ps/grouppolicy/Get-GPRegistryValue.md index 81fc191187..d5a86e5b74 100644 --- a/docset/winserver2016-ps/grouppolicy/Get-GPRegistryValue.md +++ b/docset/winserver2016-ps/grouppolicy/Get-GPRegistryValue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/get-gpregistryvalue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/get-gpregistryvalue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-GPRegistryValue --- diff --git a/docset/winserver2016-ps/grouppolicy/Get-GPResultantSetOfPolicy.md b/docset/winserver2016-ps/grouppolicy/Get-GPResultantSetOfPolicy.md index 81650a3e60..80ce19723e 100644 --- a/docset/winserver2016-ps/grouppolicy/Get-GPResultantSetOfPolicy.md +++ b/docset/winserver2016-ps/grouppolicy/Get-GPResultantSetOfPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/get-gpresultantsetofpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/get-gpresultantsetofpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-GPResultantSetOfPolicy --- diff --git a/docset/winserver2016-ps/grouppolicy/Get-GPStarterGPO.md b/docset/winserver2016-ps/grouppolicy/Get-GPStarterGPO.md index f3aa78f524..451eb63d78 100644 --- a/docset/winserver2016-ps/grouppolicy/Get-GPStarterGPO.md +++ b/docset/winserver2016-ps/grouppolicy/Get-GPStarterGPO.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/get-gpstartergpo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/get-gpstartergpo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-GPStarterGPO --- diff --git a/docset/winserver2016-ps/grouppolicy/Import-GPO.md b/docset/winserver2016-ps/grouppolicy/Import-GPO.md index d0dd80cea4..ebda1f95fd 100644 --- a/docset/winserver2016-ps/grouppolicy/Import-GPO.md +++ b/docset/winserver2016-ps/grouppolicy/Import-GPO.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/import-gpo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/import-gpo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-GPO --- diff --git a/docset/winserver2016-ps/grouppolicy/Invoke-GPUpdate.md b/docset/winserver2016-ps/grouppolicy/Invoke-GPUpdate.md index eab4dc57ac..4f09f81da6 100644 --- a/docset/winserver2016-ps/grouppolicy/Invoke-GPUpdate.md +++ b/docset/winserver2016-ps/grouppolicy/Invoke-GPUpdate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/invoke-gpupdate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/invoke-gpupdate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-GPUpdate --- diff --git a/docset/winserver2016-ps/grouppolicy/New-GPLink.md b/docset/winserver2016-ps/grouppolicy/New-GPLink.md index c5c8596f68..708239e41f 100644 --- a/docset/winserver2016-ps/grouppolicy/New-GPLink.md +++ b/docset/winserver2016-ps/grouppolicy/New-GPLink.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/new-gplink?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/new-gplink?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-GPLink --- diff --git a/docset/winserver2016-ps/grouppolicy/New-GPO.md b/docset/winserver2016-ps/grouppolicy/New-GPO.md index 634350a3e4..b3bbe42e6d 100644 --- a/docset/winserver2016-ps/grouppolicy/New-GPO.md +++ b/docset/winserver2016-ps/grouppolicy/New-GPO.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/new-gpo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/new-gpo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-GPO --- diff --git a/docset/winserver2016-ps/grouppolicy/New-GPStarterGPO.md b/docset/winserver2016-ps/grouppolicy/New-GPStarterGPO.md index 80d305a577..0991af41c9 100644 --- a/docset/winserver2016-ps/grouppolicy/New-GPStarterGPO.md +++ b/docset/winserver2016-ps/grouppolicy/New-GPStarterGPO.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/new-gpstartergpo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/new-gpstartergpo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-GPStarterGPO --- diff --git a/docset/winserver2016-ps/grouppolicy/Remove-GPLink.md b/docset/winserver2016-ps/grouppolicy/Remove-GPLink.md index 2defe87184..1976ad5be6 100644 --- a/docset/winserver2016-ps/grouppolicy/Remove-GPLink.md +++ b/docset/winserver2016-ps/grouppolicy/Remove-GPLink.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/remove-gplink?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/remove-gplink?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-GPLink --- diff --git a/docset/winserver2016-ps/grouppolicy/Remove-GPO.md b/docset/winserver2016-ps/grouppolicy/Remove-GPO.md index ab8f6bb4c7..40dfa4fa48 100644 --- a/docset/winserver2016-ps/grouppolicy/Remove-GPO.md +++ b/docset/winserver2016-ps/grouppolicy/Remove-GPO.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/remove-gpo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/remove-gpo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-GPO --- diff --git a/docset/winserver2016-ps/grouppolicy/Remove-GPPrefRegistryValue.md b/docset/winserver2016-ps/grouppolicy/Remove-GPPrefRegistryValue.md index 7ac3d4a358..96c70ebf85 100644 --- a/docset/winserver2016-ps/grouppolicy/Remove-GPPrefRegistryValue.md +++ b/docset/winserver2016-ps/grouppolicy/Remove-GPPrefRegistryValue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/remove-gpprefregistryvalue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/remove-gpprefregistryvalue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-GPPrefRegistryValue --- diff --git a/docset/winserver2016-ps/grouppolicy/Remove-GPRegistryValue.md b/docset/winserver2016-ps/grouppolicy/Remove-GPRegistryValue.md index d15489e68f..37cf2c67e9 100644 --- a/docset/winserver2016-ps/grouppolicy/Remove-GPRegistryValue.md +++ b/docset/winserver2016-ps/grouppolicy/Remove-GPRegistryValue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/remove-gpregistryvalue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/remove-gpregistryvalue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-GPRegistryValue --- diff --git a/docset/winserver2016-ps/grouppolicy/Rename-GPO.md b/docset/winserver2016-ps/grouppolicy/Rename-GPO.md index 497b1e75c9..021656314e 100644 --- a/docset/winserver2016-ps/grouppolicy/Rename-GPO.md +++ b/docset/winserver2016-ps/grouppolicy/Rename-GPO.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/rename-gpo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/rename-gpo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-GPO --- diff --git a/docset/winserver2016-ps/grouppolicy/Restore-GPO.md b/docset/winserver2016-ps/grouppolicy/Restore-GPO.md index 345c52ea07..8e3c59fdf3 100644 --- a/docset/winserver2016-ps/grouppolicy/Restore-GPO.md +++ b/docset/winserver2016-ps/grouppolicy/Restore-GPO.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/restore-gpo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/restore-gpo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-GPO --- diff --git a/docset/winserver2016-ps/grouppolicy/Set-GPInheritance.md b/docset/winserver2016-ps/grouppolicy/Set-GPInheritance.md index 15af119526..b8dd723397 100644 --- a/docset/winserver2016-ps/grouppolicy/Set-GPInheritance.md +++ b/docset/winserver2016-ps/grouppolicy/Set-GPInheritance.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/set-gpinheritance?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/set-gpinheritance?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-GPInheritance --- diff --git a/docset/winserver2016-ps/grouppolicy/Set-GPLink.md b/docset/winserver2016-ps/grouppolicy/Set-GPLink.md index 58fcdcb301..8bfccf81a7 100644 --- a/docset/winserver2016-ps/grouppolicy/Set-GPLink.md +++ b/docset/winserver2016-ps/grouppolicy/Set-GPLink.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/set-gplink?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/set-gplink?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-GPLink --- diff --git a/docset/winserver2016-ps/grouppolicy/Set-GPPermission.md b/docset/winserver2016-ps/grouppolicy/Set-GPPermission.md index c0ff78c2a1..177f85a32c 100644 --- a/docset/winserver2016-ps/grouppolicy/Set-GPPermission.md +++ b/docset/winserver2016-ps/grouppolicy/Set-GPPermission.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/set-gppermission?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/set-gppermission?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-GPPermission --- diff --git a/docset/winserver2016-ps/grouppolicy/Set-GPPrefRegistryValue.md b/docset/winserver2016-ps/grouppolicy/Set-GPPrefRegistryValue.md index db60c39de0..0121ce96c3 100644 --- a/docset/winserver2016-ps/grouppolicy/Set-GPPrefRegistryValue.md +++ b/docset/winserver2016-ps/grouppolicy/Set-GPPrefRegistryValue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/set-gpprefregistryvalue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/set-gpprefregistryvalue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-GPPrefRegistryValue --- diff --git a/docset/winserver2016-ps/grouppolicy/Set-GPRegistryValue.md b/docset/winserver2016-ps/grouppolicy/Set-GPRegistryValue.md index 6d84d87be6..b59cd4cddc 100644 --- a/docset/winserver2016-ps/grouppolicy/Set-GPRegistryValue.md +++ b/docset/winserver2016-ps/grouppolicy/Set-GPRegistryValue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/set-gpregistryvalue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/set-gpregistryvalue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-GPRegistryValue --- diff --git a/docset/winserver2016-ps/hardwarecertification/Export-HwCertTestCollectionToXml.md b/docset/winserver2016-ps/hardwarecertification/Export-HwCertTestCollectionToXml.md index e445a97ee0..26d4ad133a 100644 --- a/docset/winserver2016-ps/hardwarecertification/Export-HwCertTestCollectionToXml.md +++ b/docset/winserver2016-ps/hardwarecertification/Export-HwCertTestCollectionToXml.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: microsoft.windows.kits.hardware.certification.management.dll-Help.xml Module Name: HardwareCertification ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hardwarecertification/export-hwcerttestcollectiontoxml?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hardwarecertification/export-hwcerttestcollectiontoxml?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-HwCertTestCollectionToXml --- diff --git a/docset/winserver2016-ps/hardwarecertification/Import-HwCertTestCollectionFromXml.md b/docset/winserver2016-ps/hardwarecertification/Import-HwCertTestCollectionFromXml.md index 44837e1f09..7195991aa1 100644 --- a/docset/winserver2016-ps/hardwarecertification/Import-HwCertTestCollectionFromXml.md +++ b/docset/winserver2016-ps/hardwarecertification/Import-HwCertTestCollectionFromXml.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: microsoft.windows.kits.hardware.certification.management.dll-Help.xml Module Name: HardwareCertification ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hardwarecertification/import-hwcerttestcollectionfromxml?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hardwarecertification/import-hwcerttestcollectionfromxml?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-HwCertTestCollectionFromXml --- diff --git a/docset/winserver2016-ps/hardwarecertification/Merge-HwCertTestCollectionFromPackage.md b/docset/winserver2016-ps/hardwarecertification/Merge-HwCertTestCollectionFromPackage.md index 4ec9808a4e..973e921d61 100644 --- a/docset/winserver2016-ps/hardwarecertification/Merge-HwCertTestCollectionFromPackage.md +++ b/docset/winserver2016-ps/hardwarecertification/Merge-HwCertTestCollectionFromPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: microsoft.windows.kits.hardware.certification.management.dll-Help.xml Module Name: HardwareCertification ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hardwarecertification/merge-hwcerttestcollectionfrompackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hardwarecertification/merge-hwcerttestcollectionfrompackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Merge-HwCertTestCollectionFromPackage --- diff --git a/docset/winserver2016-ps/hardwarecertification/Merge-HwCertTestCollectionFromXml.md b/docset/winserver2016-ps/hardwarecertification/Merge-HwCertTestCollectionFromXml.md index 98f8805afa..bf345df05b 100644 --- a/docset/winserver2016-ps/hardwarecertification/Merge-HwCertTestCollectionFromXml.md +++ b/docset/winserver2016-ps/hardwarecertification/Merge-HwCertTestCollectionFromXml.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: microsoft.windows.kits.hardware.certification.management.dll-Help.xml Module Name: HardwareCertification ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hardwarecertification/merge-hwcerttestcollectionfromxml?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hardwarecertification/merge-hwcerttestcollectionfromxml?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Merge-HwCertTestCollectionFromXml --- diff --git a/docset/winserver2016-ps/hardwarecertification/New-HwCertProjectDefinitionFile.md b/docset/winserver2016-ps/hardwarecertification/New-HwCertProjectDefinitionFile.md index 2449cc5b50..b3e72768da 100644 --- a/docset/winserver2016-ps/hardwarecertification/New-HwCertProjectDefinitionFile.md +++ b/docset/winserver2016-ps/hardwarecertification/New-HwCertProjectDefinitionFile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: microsoft.windows.kits.hardware.certification.management.dll-Help.xml Module Name: HardwareCertification ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hardwarecertification/new-hwcertprojectdefinitionfile?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hardwarecertification/new-hwcertprojectdefinitionfile?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-HwCertProjectDefinitionFile --- diff --git a/docset/winserver2016-ps/hardwarecertification/New-HwCertTestCollection.md b/docset/winserver2016-ps/hardwarecertification/New-HwCertTestCollection.md index 8646e06ace..61c2d5893d 100644 --- a/docset/winserver2016-ps/hardwarecertification/New-HwCertTestCollection.md +++ b/docset/winserver2016-ps/hardwarecertification/New-HwCertTestCollection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: microsoft.windows.kits.hardware.certification.management.dll-Help.xml Module Name: HardwareCertification ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hardwarecertification/new-hwcerttestcollection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hardwarecertification/new-hwcerttestcollection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-HwCertTestCollection --- diff --git a/docset/winserver2016-ps/hardwarecertification/New-HwCertTestCollectionExcelReport.md b/docset/winserver2016-ps/hardwarecertification/New-HwCertTestCollectionExcelReport.md index d83fd92e23..dd73c68c69 100644 --- a/docset/winserver2016-ps/hardwarecertification/New-HwCertTestCollectionExcelReport.md +++ b/docset/winserver2016-ps/hardwarecertification/New-HwCertTestCollectionExcelReport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: microsoft.windows.kits.hardware.certification.management.dll-Help.xml Module Name: HardwareCertification ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hardwarecertification/new-hwcerttestcollectionexcelreport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hardwarecertification/new-hwcerttestcollectionexcelreport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-HwCertTestCollectionExcelReport --- diff --git a/docset/winserver2016-ps/hgsattestation/Add-HgsAttestationCIPolicy.md b/docset/winserver2016-ps/hgsattestation/Add-HgsAttestationCIPolicy.md index 7f681bb6c0..4c3adbb493 100644 --- a/docset/winserver2016-ps/hgsattestation/Add-HgsAttestationCIPolicy.md +++ b/docset/winserver2016-ps/hgsattestation/Add-HgsAttestationCIPolicy.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Windows.RemoteAttestation.Server.PowerShell.dll-Help.xml Module Name: HgsAttestation -online version: https://docs.microsoft.com/powershell/module/hgsattestation/add-hgsattestationcipolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsattestation/add-hgsattestationcipolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-HgsAttestationCIPolicy --- diff --git a/docset/winserver2016-ps/hgsattestation/Add-HgsAttestationDumpPolicy.md b/docset/winserver2016-ps/hgsattestation/Add-HgsAttestationDumpPolicy.md index 26258f83aa..ea3dcef965 100644 --- a/docset/winserver2016-ps/hgsattestation/Add-HgsAttestationDumpPolicy.md +++ b/docset/winserver2016-ps/hgsattestation/Add-HgsAttestationDumpPolicy.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Windows.RemoteAttestation.Server.PowerShell.dll-Help.xml Module Name: HgsAttestation -online version: https://docs.microsoft.com/powershell/module/hgsattestation/add-hgsattestationdumppolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsattestation/add-hgsattestationdumppolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-HgsAttestationDumpPolicy --- diff --git a/docset/winserver2016-ps/hgsattestation/Add-HgsAttestationHostGroup.md b/docset/winserver2016-ps/hgsattestation/Add-HgsAttestationHostGroup.md index 3146a76c93..c1f7e366d7 100644 --- a/docset/winserver2016-ps/hgsattestation/Add-HgsAttestationHostGroup.md +++ b/docset/winserver2016-ps/hgsattestation/Add-HgsAttestationHostGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.RemoteAttestation.Server.PowerShell.dll-Help.xml Module Name: HgsAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsattestation/add-hgsattestationhostgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsattestation/add-hgsattestationhostgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-HgsAttestationHostGroup --- diff --git a/docset/winserver2016-ps/hgsattestation/Add-HgsAttestationTpmHost.md b/docset/winserver2016-ps/hgsattestation/Add-HgsAttestationTpmHost.md index 45b3e0d7b3..178b8fa724 100644 --- a/docset/winserver2016-ps/hgsattestation/Add-HgsAttestationTpmHost.md +++ b/docset/winserver2016-ps/hgsattestation/Add-HgsAttestationTpmHost.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.RemoteAttestation.Server.PowerShell.dll-Help.xml Module Name: HgsAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsattestation/add-hgsattestationtpmhost?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsattestation/add-hgsattestationtpmhost?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-HgsAttestationTpmHost --- diff --git a/docset/winserver2016-ps/hgsattestation/Add-HgsAttestationTpmPolicy.md b/docset/winserver2016-ps/hgsattestation/Add-HgsAttestationTpmPolicy.md index d8a14552bf..d74f8293d4 100644 --- a/docset/winserver2016-ps/hgsattestation/Add-HgsAttestationTpmPolicy.md +++ b/docset/winserver2016-ps/hgsattestation/Add-HgsAttestationTpmPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.RemoteAttestation.Server.PowerShell.dll-Help.xml Module Name: HgsAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsattestation/add-hgsattestationtpmpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsattestation/add-hgsattestationtpmpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-HgsAttestationTpmPolicy --- diff --git a/docset/winserver2016-ps/hgsattestation/Disable-HgsAttestationPolicy.md b/docset/winserver2016-ps/hgsattestation/Disable-HgsAttestationPolicy.md index 52ba43ce3a..45491e7df4 100644 --- a/docset/winserver2016-ps/hgsattestation/Disable-HgsAttestationPolicy.md +++ b/docset/winserver2016-ps/hgsattestation/Disable-HgsAttestationPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.RemoteAttestation.Server.PowerShell.dll-Help.xml Module Name: HgsAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsattestation/disable-hgsattestationpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsattestation/disable-hgsattestationpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-HgsAttestationPolicy --- diff --git a/docset/winserver2016-ps/hgsattestation/Enable-HgsAttestationPolicy.md b/docset/winserver2016-ps/hgsattestation/Enable-HgsAttestationPolicy.md index ed28f5eafd..95cfbbf1d6 100644 --- a/docset/winserver2016-ps/hgsattestation/Enable-HgsAttestationPolicy.md +++ b/docset/winserver2016-ps/hgsattestation/Enable-HgsAttestationPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.RemoteAttestation.Server.PowerShell.dll-Help.xml Module Name: HgsAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsattestation/enable-hgsattestationpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsattestation/enable-hgsattestationpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-HgsAttestationPolicy --- diff --git a/docset/winserver2016-ps/hgsattestation/Get-HgsAttestationHostGroup.md b/docset/winserver2016-ps/hgsattestation/Get-HgsAttestationHostGroup.md index 031757d13f..5f3a153ca0 100644 --- a/docset/winserver2016-ps/hgsattestation/Get-HgsAttestationHostGroup.md +++ b/docset/winserver2016-ps/hgsattestation/Get-HgsAttestationHostGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.RemoteAttestation.Server.PowerShell.dll-Help.xml Module Name: HgsAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsattestation/get-hgsattestationhostgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsattestation/get-hgsattestationhostgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HgsAttestationHostGroup --- diff --git a/docset/winserver2016-ps/hgsattestation/Get-HgsAttestationPolicy.md b/docset/winserver2016-ps/hgsattestation/Get-HgsAttestationPolicy.md index 11929aeb61..6238f9456b 100644 --- a/docset/winserver2016-ps/hgsattestation/Get-HgsAttestationPolicy.md +++ b/docset/winserver2016-ps/hgsattestation/Get-HgsAttestationPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.RemoteAttestation.Server.PowerShell.dll-Help.xml Module Name: HgsAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsattestation/get-hgsattestationpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsattestation/get-hgsattestationpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HgsAttestationPolicy --- diff --git a/docset/winserver2016-ps/hgsattestation/Get-HgsAttestationSignerCertificate.md b/docset/winserver2016-ps/hgsattestation/Get-HgsAttestationSignerCertificate.md index 5e904f7309..b867cfcda3 100644 --- a/docset/winserver2016-ps/hgsattestation/Get-HgsAttestationSignerCertificate.md +++ b/docset/winserver2016-ps/hgsattestation/Get-HgsAttestationSignerCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.RemoteAttestation.Server.PowerShell.dll-Help.xml Module Name: HgsAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsattestation/get-hgsattestationsignercertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsattestation/get-hgsattestationsignercertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HgsAttestationSignerCertificate --- diff --git a/docset/winserver2016-ps/hgsattestation/Get-HgsAttestationTpmHost.md b/docset/winserver2016-ps/hgsattestation/Get-HgsAttestationTpmHost.md index 311cefc437..b7a6142469 100644 --- a/docset/winserver2016-ps/hgsattestation/Get-HgsAttestationTpmHost.md +++ b/docset/winserver2016-ps/hgsattestation/Get-HgsAttestationTpmHost.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.RemoteAttestation.Server.PowerShell.dll-Help.xml Module Name: HgsAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsattestation/get-hgsattestationtpmhost?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsattestation/get-hgsattestationtpmhost?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HgsAttestationTpmHost --- diff --git a/docset/winserver2016-ps/hgsattestation/Remove-HgsAttestationHostGroup.md b/docset/winserver2016-ps/hgsattestation/Remove-HgsAttestationHostGroup.md index e5d49e6fe4..02e52891f2 100644 --- a/docset/winserver2016-ps/hgsattestation/Remove-HgsAttestationHostGroup.md +++ b/docset/winserver2016-ps/hgsattestation/Remove-HgsAttestationHostGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.RemoteAttestation.Server.PowerShell.dll-Help.xml Module Name: HgsAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsattestation/remove-hgsattestationhostgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsattestation/remove-hgsattestationhostgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-HgsAttestationHostGroup --- diff --git a/docset/winserver2016-ps/hgsattestation/Remove-HgsAttestationPolicy.md b/docset/winserver2016-ps/hgsattestation/Remove-HgsAttestationPolicy.md index f83523a27b..f446f29fad 100644 --- a/docset/winserver2016-ps/hgsattestation/Remove-HgsAttestationPolicy.md +++ b/docset/winserver2016-ps/hgsattestation/Remove-HgsAttestationPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.RemoteAttestation.Server.PowerShell.dll-Help.xml Module Name: HgsAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsattestation/remove-hgsattestationpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsattestation/remove-hgsattestationpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-HgsAttestationPolicy --- diff --git a/docset/winserver2016-ps/hgsattestation/Remove-HgsAttestationTpmHost.md b/docset/winserver2016-ps/hgsattestation/Remove-HgsAttestationTpmHost.md index bddc4d3ddf..ba87497a97 100644 --- a/docset/winserver2016-ps/hgsattestation/Remove-HgsAttestationTpmHost.md +++ b/docset/winserver2016-ps/hgsattestation/Remove-HgsAttestationTpmHost.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.RemoteAttestation.Server.PowerShell.dll-Help.xml Module Name: HgsAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsattestation/remove-hgsattestationtpmhost?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsattestation/remove-hgsattestationtpmhost?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-HgsAttestationTpmHost --- diff --git a/docset/winserver2016-ps/hgsclient/ConvertTo-HgsKeyProtector.md b/docset/winserver2016-ps/hgsclient/ConvertTo-HgsKeyProtector.md index 1a7de2f877..db0abb7bf2 100644 --- a/docset/winserver2016-ps/hgsclient/ConvertTo-HgsKeyProtector.md +++ b/docset/winserver2016-ps/hgsclient/ConvertTo-HgsKeyProtector.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_HgsKeyProtector_v1.0.cdxml-help.xml Module Name: HgsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsclient/convertto-hgskeyprotector?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsclient/convertto-hgskeyprotector?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: ConvertTo-HgsKeyProtector --- diff --git a/docset/winserver2016-ps/hgsclient/Export-HgsGuardian.md b/docset/winserver2016-ps/hgsclient/Export-HgsGuardian.md index 6da0dbaa3a..dacc2fb63e 100644 --- a/docset/winserver2016-ps/hgsclient/Export-HgsGuardian.md +++ b/docset/winserver2016-ps/hgsclient/Export-HgsGuardian.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: HgsClient-help.xml Module Name: HgsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsclient/export-hgsguardian?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsclient/export-hgsguardian?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-HgsGuardian --- diff --git a/docset/winserver2016-ps/hgsclient/Get-HgsAttestationBaselinePolicy.md b/docset/winserver2016-ps/hgsclient/Get-HgsAttestationBaselinePolicy.md index b0d950c1a0..7433b26883 100644 --- a/docset/winserver2016-ps/hgsclient/Get-HgsAttestationBaselinePolicy.md +++ b/docset/winserver2016-ps/hgsclient/Get-HgsAttestationBaselinePolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.RemoteAttestation.Client.PowerShell.dll-Help.xml Module Name: HgsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsclient/get-hgsattestationbaselinepolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsclient/get-hgsattestationbaselinepolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HgsAttestationBaselinePolicy --- diff --git a/docset/winserver2016-ps/hgsclient/Get-HgsClientConfiguration.md b/docset/winserver2016-ps/hgsclient/Get-HgsClientConfiguration.md index bda490edc4..7e3503a1f3 100644 --- a/docset/winserver2016-ps/hgsclient/Get-HgsClientConfiguration.md +++ b/docset/winserver2016-ps/hgsclient/Get-HgsClientConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_HgsClientConfiguration_v1.0.cdxml-help.xml Module Name: HgsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsclient/get-hgsclientconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsclient/get-hgsclientconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HgsClientConfiguration --- diff --git a/docset/winserver2016-ps/hgsclient/Get-HgsGuardian.md b/docset/winserver2016-ps/hgsclient/Get-HgsGuardian.md index 9963b691ef..01744e2e53 100644 --- a/docset/winserver2016-ps/hgsclient/Get-HgsGuardian.md +++ b/docset/winserver2016-ps/hgsclient/Get-HgsGuardian.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_HgsGuardian_v1.0.cdxml-help.xml Module Name: HgsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsclient/get-hgsguardian?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsclient/get-hgsguardian?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HgsGuardian --- diff --git a/docset/winserver2016-ps/hgsclient/Grant-HgsKeyProtectorAccess.md b/docset/winserver2016-ps/hgsclient/Grant-HgsKeyProtectorAccess.md index 9e2735ba63..3d82ee4e0d 100644 --- a/docset/winserver2016-ps/hgsclient/Grant-HgsKeyProtectorAccess.md +++ b/docset/winserver2016-ps/hgsclient/Grant-HgsKeyProtectorAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: HgsClient-help.xml Module Name: HgsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsclient/grant-hgskeyprotectoraccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsclient/grant-hgskeyprotectoraccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Grant-HgsKeyProtectorAccess --- diff --git a/docset/winserver2016-ps/hgsclient/Import-HgsGuardian.md b/docset/winserver2016-ps/hgsclient/Import-HgsGuardian.md index b7e673221d..7715d06213 100644 --- a/docset/winserver2016-ps/hgsclient/Import-HgsGuardian.md +++ b/docset/winserver2016-ps/hgsclient/Import-HgsGuardian.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: HgsClient-help.xml Module Name: HgsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsclient/import-hgsguardian?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsclient/import-hgsguardian?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-HgsGuardian --- diff --git a/docset/winserver2016-ps/hgsclient/New-HgsGuardian.md b/docset/winserver2016-ps/hgsclient/New-HgsGuardian.md index 003249fd92..9faac5fb23 100644 --- a/docset/winserver2016-ps/hgsclient/New-HgsGuardian.md +++ b/docset/winserver2016-ps/hgsclient/New-HgsGuardian.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: HgsClient-help.xml Module Name: HgsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsclient/new-hgsguardian?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsclient/new-hgsguardian?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-HgsGuardian --- diff --git a/docset/winserver2016-ps/hgsclient/New-HgsKeyProtector.md b/docset/winserver2016-ps/hgsclient/New-HgsKeyProtector.md index 39ce383004..edded4be23 100644 --- a/docset/winserver2016-ps/hgsclient/New-HgsKeyProtector.md +++ b/docset/winserver2016-ps/hgsclient/New-HgsKeyProtector.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: HgsClient-help.xml Module Name: HgsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsclient/new-hgskeyprotector?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsclient/new-hgskeyprotector?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-HgsKeyProtector --- diff --git a/docset/winserver2016-ps/hgsclient/Remove-HgsGuardian.md b/docset/winserver2016-ps/hgsclient/Remove-HgsGuardian.md index 849aa87340..99232db202 100644 --- a/docset/winserver2016-ps/hgsclient/Remove-HgsGuardian.md +++ b/docset/winserver2016-ps/hgsclient/Remove-HgsGuardian.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: HgsClient-help.xml Module Name: HgsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsclient/remove-hgsguardian?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsclient/remove-hgsguardian?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-HgsGuardian --- diff --git a/docset/winserver2016-ps/hgsclient/Revoke-HgsKeyProtectorAccess.md b/docset/winserver2016-ps/hgsclient/Revoke-HgsKeyProtectorAccess.md index 46ed8e4d4f..4d2be04330 100644 --- a/docset/winserver2016-ps/hgsclient/Revoke-HgsKeyProtectorAccess.md +++ b/docset/winserver2016-ps/hgsclient/Revoke-HgsKeyProtectorAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: HgsClient-help.xml Module Name: HgsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsclient/revoke-hgskeyprotectoraccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsclient/revoke-hgskeyprotectoraccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Revoke-HgsKeyProtectorAccess --- diff --git a/docset/winserver2016-ps/hgsclient/Set-HgsClientConfiguration.md b/docset/winserver2016-ps/hgsclient/Set-HgsClientConfiguration.md index 3ddbb4ce80..5fd86e2719 100644 --- a/docset/winserver2016-ps/hgsclient/Set-HgsClientConfiguration.md +++ b/docset/winserver2016-ps/hgsclient/Set-HgsClientConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: HgsClient-help.xml Module Name: HgsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsclient/set-hgsclientconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsclient/set-hgsclientconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-HgsClientConfiguration --- diff --git a/docset/winserver2016-ps/hgsclient/Test-HgsClientConfiguration.md b/docset/winserver2016-ps/hgsclient/Test-HgsClientConfiguration.md index b716a6a93d..c7c33e21fc 100644 --- a/docset/winserver2016-ps/hgsclient/Test-HgsClientConfiguration.md +++ b/docset/winserver2016-ps/hgsclient/Test-HgsClientConfiguration.md @@ -1,7 +1,7 @@ --- external help file: HgsClient-help.xml Module Name: HgsClient -online version: https://docs.microsoft.com/powershell/module/hgsclient/test-hgsclientconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsclient/test-hgsclientconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-HgsClientConfiguration --- diff --git a/docset/winserver2016-ps/hgsdiagnostics/Get-HgsTrace.md b/docset/winserver2016-ps/hgsdiagnostics/Get-HgsTrace.md index ee71dd623b..ee83e823d8 100644 --- a/docset/winserver2016-ps/hgsdiagnostics/Get-HgsTrace.md +++ b/docset/winserver2016-ps/hgsdiagnostics/Get-HgsTrace.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.HostGuardianService.Diagnostics.Payload.dll-Help.xml Module Name: HgsDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsdiagnostics/get-hgstrace?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsdiagnostics/get-hgstrace?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HgsTrace --- diff --git a/docset/winserver2016-ps/hgsdiagnostics/Get-HgsTraceFileData.md b/docset/winserver2016-ps/hgsdiagnostics/Get-HgsTraceFileData.md index 750ef8f509..3e77f3f24c 100644 --- a/docset/winserver2016-ps/hgsdiagnostics/Get-HgsTraceFileData.md +++ b/docset/winserver2016-ps/hgsdiagnostics/Get-HgsTraceFileData.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.HostGuardianService.Diagnostics.Payload.dll-Help.xml Module Name: HgsDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsdiagnostics/get-hgstracefiledata?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsdiagnostics/get-hgstracefiledata?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HgsTraceFileData --- diff --git a/docset/winserver2016-ps/hgsdiagnostics/New-HgsTraceTarget.md b/docset/winserver2016-ps/hgsdiagnostics/New-HgsTraceTarget.md index d321afb860..233dc4bdc5 100644 --- a/docset/winserver2016-ps/hgsdiagnostics/New-HgsTraceTarget.md +++ b/docset/winserver2016-ps/hgsdiagnostics/New-HgsTraceTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.HostGuardianService.Diagnostics.Payload.dll-Help.xml Module Name: HgsDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsdiagnostics/new-hgstracetarget?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsdiagnostics/new-hgstracetarget?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-HgsTraceTarget --- diff --git a/docset/winserver2016-ps/hgsdiagnostics/Test-HgsTraceTarget.md b/docset/winserver2016-ps/hgsdiagnostics/Test-HgsTraceTarget.md index 643951bf23..19c7f8199c 100644 --- a/docset/winserver2016-ps/hgsdiagnostics/Test-HgsTraceTarget.md +++ b/docset/winserver2016-ps/hgsdiagnostics/Test-HgsTraceTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.HostGuardianService.Diagnostics.Payload.dll-Help.xml Module Name: HgsDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsdiagnostics/test-hgstracetarget?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsdiagnostics/test-hgstracetarget?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-HgsTraceTarget --- diff --git a/docset/winserver2016-ps/hgskeyprotection/Add-HgsKeyProtectionAttestationSignerCertificate.md b/docset/winserver2016-ps/hgskeyprotection/Add-HgsKeyProtectionAttestationSignerCertificate.md index 60b095ba36..9f1d845e3e 100644 --- a/docset/winserver2016-ps/hgskeyprotection/Add-HgsKeyProtectionAttestationSignerCertificate.md +++ b/docset/winserver2016-ps/hgskeyprotection/Add-HgsKeyProtectionAttestationSignerCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.KpsServer.Administration.dll-Help.xml Module Name: HgsKeyProtection ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgskeyprotection/add-hgskeyprotectionattestationsignercertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgskeyprotection/add-hgskeyprotectionattestationsignercertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-HgsKeyProtectionAttestationSignerCertificate --- diff --git a/docset/winserver2016-ps/hgskeyprotection/Add-HgsKeyProtectionCertificate.md b/docset/winserver2016-ps/hgskeyprotection/Add-HgsKeyProtectionCertificate.md index da2a60c4aa..7be00c402c 100644 --- a/docset/winserver2016-ps/hgskeyprotection/Add-HgsKeyProtectionCertificate.md +++ b/docset/winserver2016-ps/hgskeyprotection/Add-HgsKeyProtectionCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.KpsServer.Administration.dll-Help.xml Module Name: HgsKeyProtection ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgskeyprotection/add-hgskeyprotectioncertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgskeyprotection/add-hgskeyprotectioncertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-HgsKeyProtectionCertificate --- diff --git a/docset/winserver2016-ps/hgskeyprotection/Export-HgsKeyProtectionState.md b/docset/winserver2016-ps/hgskeyprotection/Export-HgsKeyProtectionState.md index ff5d4ac4f5..3e60e834f3 100644 --- a/docset/winserver2016-ps/hgskeyprotection/Export-HgsKeyProtectionState.md +++ b/docset/winserver2016-ps/hgskeyprotection/Export-HgsKeyProtectionState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.KpsServer.Administration.dll-Help.xml Module Name: HgsKeyProtection ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgskeyprotection/export-hgskeyprotectionstate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgskeyprotection/export-hgskeyprotectionstate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-HgsKeyProtectionState --- diff --git a/docset/winserver2016-ps/hgskeyprotection/Get-HgsKeyProtectionAttestationSignerCertificate.md b/docset/winserver2016-ps/hgskeyprotection/Get-HgsKeyProtectionAttestationSignerCertificate.md index 6be5793b20..99e6456e3f 100644 --- a/docset/winserver2016-ps/hgskeyprotection/Get-HgsKeyProtectionAttestationSignerCertificate.md +++ b/docset/winserver2016-ps/hgskeyprotection/Get-HgsKeyProtectionAttestationSignerCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.KpsServer.Administration.dll-Help.xml Module Name: HgsKeyProtection ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgskeyprotection/get-hgskeyprotectionattestationsignercertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgskeyprotection/get-hgskeyprotectionattestationsignercertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HgsKeyProtectionAttestationSignerCertificate --- diff --git a/docset/winserver2016-ps/hgskeyprotection/Get-HgsKeyProtectionCertificate.md b/docset/winserver2016-ps/hgskeyprotection/Get-HgsKeyProtectionCertificate.md index 8a6d70e165..66ef2e1531 100644 --- a/docset/winserver2016-ps/hgskeyprotection/Get-HgsKeyProtectionCertificate.md +++ b/docset/winserver2016-ps/hgskeyprotection/Get-HgsKeyProtectionCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.KpsServer.Administration.dll-Help.xml Module Name: HgsKeyProtection ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgskeyprotection/get-hgskeyprotectioncertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgskeyprotection/get-hgskeyprotectioncertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HgsKeyProtectionCertificate --- diff --git a/docset/winserver2016-ps/hgskeyprotection/Get-HgsKeyProtectionConfiguration.md b/docset/winserver2016-ps/hgskeyprotection/Get-HgsKeyProtectionConfiguration.md index 465b1ef295..1894b77345 100644 --- a/docset/winserver2016-ps/hgskeyprotection/Get-HgsKeyProtectionConfiguration.md +++ b/docset/winserver2016-ps/hgskeyprotection/Get-HgsKeyProtectionConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.KpsServer.Administration.dll-Help.xml Module Name: HgsKeyProtection ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgskeyprotection/get-hgskeyprotectionconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgskeyprotection/get-hgskeyprotectionconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HgsKeyProtectionConfiguration --- diff --git a/docset/winserver2016-ps/hgskeyprotection/Import-HgsKeyProtectionState.md b/docset/winserver2016-ps/hgskeyprotection/Import-HgsKeyProtectionState.md index 726fd78506..e087d9b551 100644 --- a/docset/winserver2016-ps/hgskeyprotection/Import-HgsKeyProtectionState.md +++ b/docset/winserver2016-ps/hgskeyprotection/Import-HgsKeyProtectionState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.KpsServer.Administration.dll-Help.xml Module Name: HgsKeyProtection ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgskeyprotection/import-hgskeyprotectionstate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgskeyprotection/import-hgskeyprotectionstate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-HgsKeyProtectionState --- diff --git a/docset/winserver2016-ps/hgskeyprotection/Remove-HgsKeyProtectionAttestationSignerCertificate.md b/docset/winserver2016-ps/hgskeyprotection/Remove-HgsKeyProtectionAttestationSignerCertificate.md index 0ba1d002f9..3ee158755b 100644 --- a/docset/winserver2016-ps/hgskeyprotection/Remove-HgsKeyProtectionAttestationSignerCertificate.md +++ b/docset/winserver2016-ps/hgskeyprotection/Remove-HgsKeyProtectionAttestationSignerCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.KpsServer.Administration.dll-Help.xml Module Name: HgsKeyProtection ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgskeyprotection/remove-hgskeyprotectionattestationsignercertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgskeyprotection/remove-hgskeyprotectionattestationsignercertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-HgsKeyProtectionAttestationSignerCertificate --- diff --git a/docset/winserver2016-ps/hgskeyprotection/Remove-HgsKeyProtectionCertificate.md b/docset/winserver2016-ps/hgskeyprotection/Remove-HgsKeyProtectionCertificate.md index 5ec9818e0b..8c54837ae3 100644 --- a/docset/winserver2016-ps/hgskeyprotection/Remove-HgsKeyProtectionCertificate.md +++ b/docset/winserver2016-ps/hgskeyprotection/Remove-HgsKeyProtectionCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.KpsServer.Administration.dll-Help.xml Module Name: HgsKeyProtection ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgskeyprotection/remove-hgskeyprotectioncertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgskeyprotection/remove-hgskeyprotectioncertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-HgsKeyProtectionCertificate --- diff --git a/docset/winserver2016-ps/hgskeyprotection/Set-HgsKeyProtectionAttestationSignerCertificatePolicy.md b/docset/winserver2016-ps/hgskeyprotection/Set-HgsKeyProtectionAttestationSignerCertificatePolicy.md index 3028e6138a..797ff15ef6 100644 --- a/docset/winserver2016-ps/hgskeyprotection/Set-HgsKeyProtectionAttestationSignerCertificatePolicy.md +++ b/docset/winserver2016-ps/hgskeyprotection/Set-HgsKeyProtectionAttestationSignerCertificatePolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.KpsServer.Administration.dll-Help.xml Module Name: HgsKeyProtection ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgskeyprotection/set-hgskeyprotectionattestationsignercertificatepolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgskeyprotection/set-hgskeyprotectionattestationsignercertificatepolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-HgsKeyProtectionAttestationSignerCertificatePolicy --- diff --git a/docset/winserver2016-ps/hgskeyprotection/Set-HgsKeyProtectionCertificate.md b/docset/winserver2016-ps/hgskeyprotection/Set-HgsKeyProtectionCertificate.md index fb7635971d..f75ca5b284 100644 --- a/docset/winserver2016-ps/hgskeyprotection/Set-HgsKeyProtectionCertificate.md +++ b/docset/winserver2016-ps/hgskeyprotection/Set-HgsKeyProtectionCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.KpsServer.Administration.dll-Help.xml Module Name: HgsKeyProtection ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgskeyprotection/set-hgskeyprotectioncertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgskeyprotection/set-hgskeyprotectioncertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-HgsKeyProtectionCertificate --- diff --git a/docset/winserver2016-ps/hgskeyprotection/Set-HgsKeyProtectionConfiguration.md b/docset/winserver2016-ps/hgskeyprotection/Set-HgsKeyProtectionConfiguration.md index 4ab6bc2996..22a0dccaa4 100644 --- a/docset/winserver2016-ps/hgskeyprotection/Set-HgsKeyProtectionConfiguration.md +++ b/docset/winserver2016-ps/hgskeyprotection/Set-HgsKeyProtectionConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.KpsServer.Administration.dll-Help.xml Module Name: HgsKeyProtection ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgskeyprotection/set-hgskeyprotectionconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgskeyprotection/set-hgskeyprotectionconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-HgsKeyProtectionConfiguration --- diff --git a/docset/winserver2016-ps/hgsserver/Clear-HgsServer.md b/docset/winserver2016-ps/hgsserver/Clear-HgsServer.md index 6ace1fb6c0..4343237e64 100644 --- a/docset/winserver2016-ps/hgsserver/Clear-HgsServer.md +++ b/docset/winserver2016-ps/hgsserver/Clear-HgsServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: HgsServer-help.xml Module Name: HgsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsserver/clear-hgsserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsserver/clear-hgsserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-HgsServer --- diff --git a/docset/winserver2016-ps/hgsserver/Export-HgsServerState.md b/docset/winserver2016-ps/hgsserver/Export-HgsServerState.md index 2e5d7ce914..f626bf6d56 100644 --- a/docset/winserver2016-ps/hgsserver/Export-HgsServerState.md +++ b/docset/winserver2016-ps/hgsserver/Export-HgsServerState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: HgsServer-help.xml Module Name: HgsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsserver/export-hgsserverstate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsserver/export-hgsserverstate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-HgsServerState --- diff --git a/docset/winserver2016-ps/hgsserver/Get-HgsServer.md b/docset/winserver2016-ps/hgsserver/Get-HgsServer.md index 95bc47b81b..1c89fb3d37 100644 --- a/docset/winserver2016-ps/hgsserver/Get-HgsServer.md +++ b/docset/winserver2016-ps/hgsserver/Get-HgsServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: HgsServer-help.xml Module Name: HgsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsserver/get-hgsserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsserver/get-hgsserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HgsServer --- diff --git a/docset/winserver2016-ps/hgsserver/Import-HgsServerState.md b/docset/winserver2016-ps/hgsserver/Import-HgsServerState.md index 1da0b13501..898f4ba415 100644 --- a/docset/winserver2016-ps/hgsserver/Import-HgsServerState.md +++ b/docset/winserver2016-ps/hgsserver/Import-HgsServerState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: HgsServer-help.xml Module Name: HgsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsserver/import-hgsserverstate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsserver/import-hgsserverstate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-HgsServerState --- diff --git a/docset/winserver2016-ps/hgsserver/Initialize-HgsServer.md b/docset/winserver2016-ps/hgsserver/Initialize-HgsServer.md index a5be2fbca3..ff64b91ba8 100644 --- a/docset/winserver2016-ps/hgsserver/Initialize-HgsServer.md +++ b/docset/winserver2016-ps/hgsserver/Initialize-HgsServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: HgsServer-help.xml Module Name: HgsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsserver/initialize-hgsserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsserver/initialize-hgsserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Initialize-HgsServer --- diff --git a/docset/winserver2016-ps/hgsserver/Install-HgsServer.md b/docset/winserver2016-ps/hgsserver/Install-HgsServer.md index 2399655a18..cfc9ce9fea 100644 --- a/docset/winserver2016-ps/hgsserver/Install-HgsServer.md +++ b/docset/winserver2016-ps/hgsserver/Install-HgsServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: HgsServer-help.xml Module Name: HgsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsserver/install-hgsserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsserver/install-hgsserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-HgsServer --- diff --git a/docset/winserver2016-ps/hgsserver/Set-HgsServer.md b/docset/winserver2016-ps/hgsserver/Set-HgsServer.md index b8e9840d1f..79ac70e6e1 100644 --- a/docset/winserver2016-ps/hgsserver/Set-HgsServer.md +++ b/docset/winserver2016-ps/hgsserver/Set-HgsServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: HgsServer-help.xml Module Name: HgsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsserver/set-hgsserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsserver/set-hgsserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-HgsServer --- diff --git a/docset/winserver2016-ps/hgsserver/Test-HgsServer.md b/docset/winserver2016-ps/hgsserver/Test-HgsServer.md index a1cfa6e962..1dca6042d7 100644 --- a/docset/winserver2016-ps/hgsserver/Test-HgsServer.md +++ b/docset/winserver2016-ps/hgsserver/Test-HgsServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: HgsServer-help.xml Module Name: HgsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsserver/test-hgsserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsserver/test-hgsserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-HgsServer --- diff --git a/docset/winserver2016-ps/hgsserver/Uninstall-HgsServer.md b/docset/winserver2016-ps/hgsserver/Uninstall-HgsServer.md index fbff832b4e..4e950872b9 100644 --- a/docset/winserver2016-ps/hgsserver/Uninstall-HgsServer.md +++ b/docset/winserver2016-ps/hgsserver/Uninstall-HgsServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: HgsServer-help.xml Module Name: HgsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsserver/uninstall-hgsserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsserver/uninstall-hgsserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-HgsServer --- diff --git a/docset/winserver2016-ps/hnvdiagnostics/Debug-SlbDatapath.md b/docset/winserver2016-ps/hnvdiagnostics/Debug-SlbDatapath.md index 73b118eff8..9a2224a66c 100644 --- a/docset/winserver2016-ps/hnvdiagnostics/Debug-SlbDatapath.md +++ b/docset/winserver2016-ps/hnvdiagnostics/Debug-SlbDatapath.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SlbDatapathTracing-help.xml Module Name: HNVDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hnvdiagnostics/debug-slbdatapath?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hnvdiagnostics/debug-slbdatapath?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Debug-SlbDatapath --- diff --git a/docset/winserver2016-ps/hnvdiagnostics/Debug-VirtualMachineQueueOperation.md b/docset/winserver2016-ps/hnvdiagnostics/Debug-VirtualMachineQueueOperation.md index eb49445f3e..dc39fe435d 100644 --- a/docset/winserver2016-ps/hnvdiagnostics/Debug-VirtualMachineQueueOperation.md +++ b/docset/winserver2016-ps/hnvdiagnostics/Debug-VirtualMachineQueueOperation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Debug-VirtualMachineQueueOperation-help.xml Module Name: HNVDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hnvdiagnostics/debug-virtualmachinequeueoperation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hnvdiagnostics/debug-virtualmachinequeueoperation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Debug-VirtualMachineQueueOperation --- diff --git a/docset/winserver2016-ps/hnvdiagnostics/Disable-MuxEchoResponder.md b/docset/winserver2016-ps/hnvdiagnostics/Disable-MuxEchoResponder.md index e43fc35825..3221f265bd 100644 --- a/docset/winserver2016-ps/hnvdiagnostics/Disable-MuxEchoResponder.md +++ b/docset/winserver2016-ps/hnvdiagnostics/Disable-MuxEchoResponder.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MuxEchoResponder-help.xml Module Name: HNVDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hnvdiagnostics/disable-muxechoresponder?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hnvdiagnostics/disable-muxechoresponder?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-MuxEchoResponder --- diff --git a/docset/winserver2016-ps/hnvdiagnostics/Enable-MuxEchoResponder.md b/docset/winserver2016-ps/hnvdiagnostics/Enable-MuxEchoResponder.md index 9dcffe06ab..22d3e3084f 100644 --- a/docset/winserver2016-ps/hnvdiagnostics/Enable-MuxEchoResponder.md +++ b/docset/winserver2016-ps/hnvdiagnostics/Enable-MuxEchoResponder.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MuxEchoResponder-help.xml Module Name: HNVDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hnvdiagnostics/enable-muxechoresponder?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hnvdiagnostics/enable-muxechoresponder?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-MuxEchoResponder --- diff --git a/docset/winserver2016-ps/hnvdiagnostics/Get-CustomerRoute.md b/docset/winserver2016-ps/hnvdiagnostics/Get-CustomerRoute.md index 7c283e7396..51d1577b85 100644 --- a/docset/winserver2016-ps/hnvdiagnostics/Get-CustomerRoute.md +++ b/docset/winserver2016-ps/hnvdiagnostics/Get-CustomerRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Get-CustomerRoute-help.xml Module Name: HNVDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hnvdiagnostics/get-customerroute?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hnvdiagnostics/get-customerroute?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CustomerRoute --- diff --git a/docset/winserver2016-ps/hnvdiagnostics/Get-NetworkControllerVipResource.md b/docset/winserver2016-ps/hnvdiagnostics/Get-NetworkControllerVipResource.md index bff93e3cb9..b9bb1fe28a 100644 --- a/docset/winserver2016-ps/hnvdiagnostics/Get-NetworkControllerVipResource.md +++ b/docset/winserver2016-ps/hnvdiagnostics/Get-NetworkControllerVipResource.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Get-VipConnectivityInfo-help.xml Module Name: HNVDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hnvdiagnostics/get-networkcontrollervipresource?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hnvdiagnostics/get-networkcontrollervipresource?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerVipResource --- diff --git a/docset/winserver2016-ps/hnvdiagnostics/Get-PACAMapping.md b/docset/winserver2016-ps/hnvdiagnostics/Get-PACAMapping.md index f507b17d28..ad5c3955c9 100644 --- a/docset/winserver2016-ps/hnvdiagnostics/Get-PACAMapping.md +++ b/docset/winserver2016-ps/hnvdiagnostics/Get-PACAMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Get-PACAMapping-help.xml Module Name: HNVDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hnvdiagnostics/get-pacamapping?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hnvdiagnostics/get-pacamapping?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PACAMapping --- diff --git a/docset/winserver2016-ps/hnvdiagnostics/Get-ProviderAddress.md b/docset/winserver2016-ps/hnvdiagnostics/Get-ProviderAddress.md index a66741b2cd..5f715033d4 100644 --- a/docset/winserver2016-ps/hnvdiagnostics/Get-ProviderAddress.md +++ b/docset/winserver2016-ps/hnvdiagnostics/Get-ProviderAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Get-ProviderAddress-help.xml Module Name: HNVDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hnvdiagnostics/get-provideraddress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hnvdiagnostics/get-provideraddress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ProviderAddress --- diff --git a/docset/winserver2016-ps/hnvdiagnostics/Get-VMNetworkAdapterPortId.md b/docset/winserver2016-ps/hnvdiagnostics/Get-VMNetworkAdapterPortId.md index 8d9a81e747..93a43bff89 100644 --- a/docset/winserver2016-ps/hnvdiagnostics/Get-VMNetworkAdapterPortId.md +++ b/docset/winserver2016-ps/hnvdiagnostics/Get-VMNetworkAdapterPortId.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Get-VMNetworkAdapterPortId-help.xml Module Name: HNVDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hnvdiagnostics/get-vmnetworkadapterportid?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hnvdiagnostics/get-vmnetworkadapterportid?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMNetworkAdapterPortId --- diff --git a/docset/winserver2016-ps/hnvdiagnostics/Get-VMSwitchExternalPortId.md b/docset/winserver2016-ps/hnvdiagnostics/Get-VMSwitchExternalPortId.md index 9958d5f810..f70286b811 100644 --- a/docset/winserver2016-ps/hnvdiagnostics/Get-VMSwitchExternalPortId.md +++ b/docset/winserver2016-ps/hnvdiagnostics/Get-VMSwitchExternalPortId.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Get-VMSwitchExternalPortId-help.xml Module Name: HNVDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hnvdiagnostics/get-vmswitchexternalportid?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hnvdiagnostics/get-vmswitchexternalportid?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMSwitchExternalPortId --- diff --git a/docset/winserver2016-ps/hnvdiagnostics/Get-VipHostMapping.md b/docset/winserver2016-ps/hnvdiagnostics/Get-VipHostMapping.md index 0ba17fd8e4..cde5fbab2b 100644 --- a/docset/winserver2016-ps/hnvdiagnostics/Get-VipHostMapping.md +++ b/docset/winserver2016-ps/hnvdiagnostics/Get-VipHostMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Get-VipConnectivityInfo-help.xml Module Name: HNVDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hnvdiagnostics/get-viphostmapping?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hnvdiagnostics/get-viphostmapping?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VipHostMapping --- diff --git a/docset/winserver2016-ps/hnvdiagnostics/Test-DipHostReachability.md b/docset/winserver2016-ps/hnvdiagnostics/Test-DipHostReachability.md index 7226ab2682..ff09df1ded 100644 --- a/docset/winserver2016-ps/hnvdiagnostics/Test-DipHostReachability.md +++ b/docset/winserver2016-ps/hnvdiagnostics/Test-DipHostReachability.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DipHostReachability-help.xml Module Name: HNVDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hnvdiagnostics/test-diphostreachability?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hnvdiagnostics/test-diphostreachability?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-DipHostReachability --- diff --git a/docset/winserver2016-ps/hnvdiagnostics/Test-EncapOverheadSettings.md b/docset/winserver2016-ps/hnvdiagnostics/Test-EncapOverheadSettings.md index e7288c9d97..50c5f8ebf3 100644 --- a/docset/winserver2016-ps/hnvdiagnostics/Test-EncapOverheadSettings.md +++ b/docset/winserver2016-ps/hnvdiagnostics/Test-EncapOverheadSettings.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Test-EncapOverheadValue-help.xml Module Name: HNVDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hnvdiagnostics/test-encapoverheadsettings?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hnvdiagnostics/test-encapoverheadsettings?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-EncapOverheadSettings --- diff --git a/docset/winserver2016-ps/hnvdiagnostics/Test-LogicalNetworkConnection.md b/docset/winserver2016-ps/hnvdiagnostics/Test-LogicalNetworkConnection.md index 2c2ba2fb89..a3b806286f 100644 --- a/docset/winserver2016-ps/hnvdiagnostics/Test-LogicalNetworkConnection.md +++ b/docset/winserver2016-ps/hnvdiagnostics/Test-LogicalNetworkConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PaPing-help.xml Module Name: HNVDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hnvdiagnostics/test-logicalnetworkconnection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hnvdiagnostics/test-logicalnetworkconnection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-LogicalNetworkConnection --- diff --git a/docset/winserver2016-ps/hnvdiagnostics/Test-LogicalNetworkSupportsJumboPacket.md b/docset/winserver2016-ps/hnvdiagnostics/Test-LogicalNetworkSupportsJumboPacket.md index 665d904dea..ed9339d2ae 100644 --- a/docset/winserver2016-ps/hnvdiagnostics/Test-LogicalNetworkSupportsJumboPacket.md +++ b/docset/winserver2016-ps/hnvdiagnostics/Test-LogicalNetworkSupportsJumboPacket.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Test-LogicalNetworkSupportsJumboPacket-help.xml Module Name: HNVDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hnvdiagnostics/test-logicalnetworksupportsjumbopacket?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hnvdiagnostics/test-logicalnetworksupportsjumbopacket?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-LogicalNetworkSupportsJumboPacket --- diff --git a/docset/winserver2016-ps/hnvdiagnostics/Test-VipReachability.md b/docset/winserver2016-ps/hnvdiagnostics/Test-VipReachability.md index 1a654bc64a..7e1daedf16 100644 --- a/docset/winserver2016-ps/hnvdiagnostics/Test-VipReachability.md +++ b/docset/winserver2016-ps/hnvdiagnostics/Test-VipReachability.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: VipReachability-help.xml Module Name: HNVDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hnvdiagnostics/test-vipreachability?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hnvdiagnostics/test-vipreachability?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-VipReachability --- diff --git a/docset/winserver2016-ps/hnvdiagnostics/Test-VirtualNetworkConnection.md b/docset/winserver2016-ps/hnvdiagnostics/Test-VirtualNetworkConnection.md index 408cbaa943..aa3ffbb3ce 100644 --- a/docset/winserver2016-ps/hnvdiagnostics/Test-VirtualNetworkConnection.md +++ b/docset/winserver2016-ps/hnvdiagnostics/Test-VirtualNetworkConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Test-VirtualNetworkConnection-help.xml Module Name: HNVDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hnvdiagnostics/test-virtualnetworkconnection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hnvdiagnostics/test-virtualnetworkconnection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-VirtualNetworkConnection --- diff --git a/docset/winserver2016-ps/hostcomputeservice/Get-ComputeProcess.md b/docset/winserver2016-ps/hostcomputeservice/Get-ComputeProcess.md index d8a0351b16..1a586d3f88 100644 --- a/docset/winserver2016-ps/hostcomputeservice/Get-ComputeProcess.md +++ b/docset/winserver2016-ps/hostcomputeservice/Get-ComputeProcess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HostCompute.PowerShell.Cmdlets.dll-Help.xml Module Name: HostComputeService ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/hostcomputeservice/get-computeprocess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hostcomputeservice/get-computeprocess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ComputeProcess --- diff --git a/docset/winserver2016-ps/hostcomputeservice/Stop-ComputeProcess.md b/docset/winserver2016-ps/hostcomputeservice/Stop-ComputeProcess.md index 6fcf21d0ba..2e65e001d3 100644 --- a/docset/winserver2016-ps/hostcomputeservice/Stop-ComputeProcess.md +++ b/docset/winserver2016-ps/hostcomputeservice/Stop-ComputeProcess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HostCompute.PowerShell.Cmdlets.dll-Help.xml Module Name: HostComputeService ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/hostcomputeservice/stop-computeprocess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hostcomputeservice/stop-computeprocess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-ComputeProcess --- diff --git a/docset/winserver2016-ps/hyper-v/Add-VMDvdDrive.md b/docset/winserver2016-ps/hyper-v/Add-VMDvdDrive.md index 5a8f17c7b1..8df64d6f81 100644 --- a/docset/winserver2016-ps/hyper-v/Add-VMDvdDrive.md +++ b/docset/winserver2016-ps/hyper-v/Add-VMDvdDrive.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmdvddrive?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmdvddrive?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMDvdDrive --- diff --git a/docset/winserver2016-ps/hyper-v/Add-VMFibreChannelHba.md b/docset/winserver2016-ps/hyper-v/Add-VMFibreChannelHba.md index 7d24205a82..ef89a12f60 100644 --- a/docset/winserver2016-ps/hyper-v/Add-VMFibreChannelHba.md +++ b/docset/winserver2016-ps/hyper-v/Add-VMFibreChannelHba.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmfibrechannelhba?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmfibrechannelhba?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMFibreChannelHba --- diff --git a/docset/winserver2016-ps/hyper-v/Add-VMGroupMember.md b/docset/winserver2016-ps/hyper-v/Add-VMGroupMember.md index 2c31017ccb..25439b7d12 100644 --- a/docset/winserver2016-ps/hyper-v/Add-VMGroupMember.md +++ b/docset/winserver2016-ps/hyper-v/Add-VMGroupMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmgroupmember?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmgroupmember?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMGroupMember --- diff --git a/docset/winserver2016-ps/hyper-v/Add-VMHardDiskDrive.md b/docset/winserver2016-ps/hyper-v/Add-VMHardDiskDrive.md index 4edefb214c..73d055f634 100644 --- a/docset/winserver2016-ps/hyper-v/Add-VMHardDiskDrive.md +++ b/docset/winserver2016-ps/hyper-v/Add-VMHardDiskDrive.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmharddiskdrive?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmharddiskdrive?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMHardDiskDrive --- diff --git a/docset/winserver2016-ps/hyper-v/Add-VMMigrationNetwork.md b/docset/winserver2016-ps/hyper-v/Add-VMMigrationNetwork.md index 217e13109e..91e68c2c85 100644 --- a/docset/winserver2016-ps/hyper-v/Add-VMMigrationNetwork.md +++ b/docset/winserver2016-ps/hyper-v/Add-VMMigrationNetwork.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmmigrationnetwork?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmmigrationnetwork?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMMigrationNetwork --- diff --git a/docset/winserver2016-ps/hyper-v/Add-VMNetworkAdapter.md b/docset/winserver2016-ps/hyper-v/Add-VMNetworkAdapter.md index 4370136641..832de1ea09 100644 --- a/docset/winserver2016-ps/hyper-v/Add-VMNetworkAdapter.md +++ b/docset/winserver2016-ps/hyper-v/Add-VMNetworkAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmnetworkadapter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmnetworkadapter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMNetworkAdapter --- diff --git a/docset/winserver2016-ps/hyper-v/Add-VMNetworkAdapterAcl.md b/docset/winserver2016-ps/hyper-v/Add-VMNetworkAdapterAcl.md index 0ed6da0070..6136c0e4d4 100644 --- a/docset/winserver2016-ps/hyper-v/Add-VMNetworkAdapterAcl.md +++ b/docset/winserver2016-ps/hyper-v/Add-VMNetworkAdapterAcl.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmnetworkadapteracl?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmnetworkadapteracl?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMNetworkAdapterAcl --- diff --git a/docset/winserver2016-ps/hyper-v/Add-VMNetworkAdapterExtendedAcl.md b/docset/winserver2016-ps/hyper-v/Add-VMNetworkAdapterExtendedAcl.md index 715408a64a..86b78af6dd 100644 --- a/docset/winserver2016-ps/hyper-v/Add-VMNetworkAdapterExtendedAcl.md +++ b/docset/winserver2016-ps/hyper-v/Add-VMNetworkAdapterExtendedAcl.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmnetworkadapterextendedacl?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmnetworkadapterextendedacl?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMNetworkAdapterExtendedAcl --- diff --git a/docset/winserver2016-ps/hyper-v/Add-VMRemoteFx3dVideoAdapter.md b/docset/winserver2016-ps/hyper-v/Add-VMRemoteFx3dVideoAdapter.md index ae9cac9863..bb00a93ee8 100644 --- a/docset/winserver2016-ps/hyper-v/Add-VMRemoteFx3dVideoAdapter.md +++ b/docset/winserver2016-ps/hyper-v/Add-VMRemoteFx3dVideoAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmremotefx3dvideoadapter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmremotefx3dvideoadapter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMRemoteFx3dVideoAdapter --- diff --git a/docset/winserver2016-ps/hyper-v/Add-VMScsiController.md b/docset/winserver2016-ps/hyper-v/Add-VMScsiController.md index 7cbacfbe12..706fc2f937 100644 --- a/docset/winserver2016-ps/hyper-v/Add-VMScsiController.md +++ b/docset/winserver2016-ps/hyper-v/Add-VMScsiController.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmscsicontroller?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmscsicontroller?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMScsiController --- diff --git a/docset/winserver2016-ps/hyper-v/Add-VMStoragePath.md b/docset/winserver2016-ps/hyper-v/Add-VMStoragePath.md index 2f8a7c2df6..5b030e50f4 100644 --- a/docset/winserver2016-ps/hyper-v/Add-VMStoragePath.md +++ b/docset/winserver2016-ps/hyper-v/Add-VMStoragePath.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmstoragepath?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmstoragepath?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMStoragePath --- diff --git a/docset/winserver2016-ps/hyper-v/Add-VMSwitch.md b/docset/winserver2016-ps/hyper-v/Add-VMSwitch.md index 57ee439bf6..b7e99455db 100644 --- a/docset/winserver2016-ps/hyper-v/Add-VMSwitch.md +++ b/docset/winserver2016-ps/hyper-v/Add-VMSwitch.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmswitch?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmswitch?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMSwitch --- diff --git a/docset/winserver2016-ps/hyper-v/Add-VMSwitchExtensionPortFeature.md b/docset/winserver2016-ps/hyper-v/Add-VMSwitchExtensionPortFeature.md index 6517f352e3..d287f74a0e 100644 --- a/docset/winserver2016-ps/hyper-v/Add-VMSwitchExtensionPortFeature.md +++ b/docset/winserver2016-ps/hyper-v/Add-VMSwitchExtensionPortFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmswitchextensionportfeature?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmswitchextensionportfeature?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMSwitchExtensionPortFeature --- diff --git a/docset/winserver2016-ps/hyper-v/Add-VMSwitchExtensionSwitchFeature.md b/docset/winserver2016-ps/hyper-v/Add-VMSwitchExtensionSwitchFeature.md index 2bade8c9cf..beaed214f1 100644 --- a/docset/winserver2016-ps/hyper-v/Add-VMSwitchExtensionSwitchFeature.md +++ b/docset/winserver2016-ps/hyper-v/Add-VMSwitchExtensionSwitchFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmswitchextensionswitchfeature?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmswitchextensionswitchfeature?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMSwitchExtensionSwitchFeature --- diff --git a/docset/winserver2016-ps/hyper-v/Add-VMSwitchTeamMember.md b/docset/winserver2016-ps/hyper-v/Add-VMSwitchTeamMember.md index 9584fd76d9..4b3173897e 100644 --- a/docset/winserver2016-ps/hyper-v/Add-VMSwitchTeamMember.md +++ b/docset/winserver2016-ps/hyper-v/Add-VMSwitchTeamMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmswitchteammember?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmswitchteammember?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMSwitchTeamMember --- diff --git a/docset/winserver2016-ps/hyper-v/Add-VmNetworkAdapterRoutingDomainMapping.md b/docset/winserver2016-ps/hyper-v/Add-VmNetworkAdapterRoutingDomainMapping.md index 345a6ddddf..c1c66f20f1 100644 --- a/docset/winserver2016-ps/hyper-v/Add-VmNetworkAdapterRoutingDomainMapping.md +++ b/docset/winserver2016-ps/hyper-v/Add-VmNetworkAdapterRoutingDomainMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmnetworkadapterroutingdomainmapping?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmnetworkadapterroutingdomainmapping?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VmNetworkAdapterRoutingDomainMapping --- diff --git a/docset/winserver2016-ps/hyper-v/Checkpoint-VM.md b/docset/winserver2016-ps/hyper-v/Checkpoint-VM.md index 57a22f8916..cbaa393dd9 100644 --- a/docset/winserver2016-ps/hyper-v/Checkpoint-VM.md +++ b/docset/winserver2016-ps/hyper-v/Checkpoint-VM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/checkpoint-vm?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/checkpoint-vm?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Checkpoint-VM --- diff --git a/docset/winserver2016-ps/hyper-v/Compare-VM.md b/docset/winserver2016-ps/hyper-v/Compare-VM.md index f487a0bdc7..f5e0a23281 100644 --- a/docset/winserver2016-ps/hyper-v/Compare-VM.md +++ b/docset/winserver2016-ps/hyper-v/Compare-VM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/compare-vm?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/compare-vm?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Compare-VM --- diff --git a/docset/winserver2016-ps/hyper-v/Complete-VMFailover.md b/docset/winserver2016-ps/hyper-v/Complete-VMFailover.md index 5a3a721f69..0d5fba8636 100644 --- a/docset/winserver2016-ps/hyper-v/Complete-VMFailover.md +++ b/docset/winserver2016-ps/hyper-v/Complete-VMFailover.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/complete-vmfailover?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/complete-vmfailover?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Complete-VMFailover --- diff --git a/docset/winserver2016-ps/hyper-v/Connect-VMNetworkAdapter.md b/docset/winserver2016-ps/hyper-v/Connect-VMNetworkAdapter.md index 9f72b9fb2b..73ec0057b8 100644 --- a/docset/winserver2016-ps/hyper-v/Connect-VMNetworkAdapter.md +++ b/docset/winserver2016-ps/hyper-v/Connect-VMNetworkAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/connect-vmnetworkadapter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/connect-vmnetworkadapter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Connect-VMNetworkAdapter --- diff --git a/docset/winserver2016-ps/hyper-v/Connect-VMSan.md b/docset/winserver2016-ps/hyper-v/Connect-VMSan.md index 1dca68e484..1ef9801b56 100644 --- a/docset/winserver2016-ps/hyper-v/Connect-VMSan.md +++ b/docset/winserver2016-ps/hyper-v/Connect-VMSan.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/connect-vmsan?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/connect-vmsan?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Connect-VMSan --- diff --git a/docset/winserver2016-ps/hyper-v/Convert-VHD.md b/docset/winserver2016-ps/hyper-v/Convert-VHD.md index eb1d0258cb..c5443bf14e 100644 --- a/docset/winserver2016-ps/hyper-v/Convert-VHD.md +++ b/docset/winserver2016-ps/hyper-v/Convert-VHD.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/convert-vhd?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/convert-vhd?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Convert-VHD --- diff --git a/docset/winserver2016-ps/hyper-v/Copy-VMFile.md b/docset/winserver2016-ps/hyper-v/Copy-VMFile.md index db11e6395f..16c374acec 100644 --- a/docset/winserver2016-ps/hyper-v/Copy-VMFile.md +++ b/docset/winserver2016-ps/hyper-v/Copy-VMFile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/copy-vmfile?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/copy-vmfile?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Copy-VMFile --- diff --git a/docset/winserver2016-ps/hyper-v/Debug-VM.md b/docset/winserver2016-ps/hyper-v/Debug-VM.md index c76943d538..e2a25b8d79 100644 --- a/docset/winserver2016-ps/hyper-v/Debug-VM.md +++ b/docset/winserver2016-ps/hyper-v/Debug-VM.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/debug-vm?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/debug-vm?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Debug-VM --- diff --git a/docset/winserver2016-ps/hyper-v/Disable-VMConsoleSupport.md b/docset/winserver2016-ps/hyper-v/Disable-VMConsoleSupport.md index d26e010f73..f83cb9f1d7 100644 --- a/docset/winserver2016-ps/hyper-v/Disable-VMConsoleSupport.md +++ b/docset/winserver2016-ps/hyper-v/Disable-VMConsoleSupport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/disable-vmconsolesupport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/disable-vmconsolesupport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-VMConsoleSupport --- diff --git a/docset/winserver2016-ps/hyper-v/Disable-VMEventing.md b/docset/winserver2016-ps/hyper-v/Disable-VMEventing.md index f9f1d7abf6..fb53fed500 100644 --- a/docset/winserver2016-ps/hyper-v/Disable-VMEventing.md +++ b/docset/winserver2016-ps/hyper-v/Disable-VMEventing.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/disable-vmeventing?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/disable-vmeventing?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-VMEventing --- diff --git a/docset/winserver2016-ps/hyper-v/Disable-VMIntegrationService.md b/docset/winserver2016-ps/hyper-v/Disable-VMIntegrationService.md index 8fa5bb9abd..05755947b9 100644 --- a/docset/winserver2016-ps/hyper-v/Disable-VMIntegrationService.md +++ b/docset/winserver2016-ps/hyper-v/Disable-VMIntegrationService.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/disable-vmintegrationservice?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/disable-vmintegrationservice?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-VMIntegrationService --- diff --git a/docset/winserver2016-ps/hyper-v/Disable-VMMigration.md b/docset/winserver2016-ps/hyper-v/Disable-VMMigration.md index f1ffaa7ba7..a15a50902e 100644 --- a/docset/winserver2016-ps/hyper-v/Disable-VMMigration.md +++ b/docset/winserver2016-ps/hyper-v/Disable-VMMigration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/disable-vmmigration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/disable-vmmigration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-VMMigration --- diff --git a/docset/winserver2016-ps/hyper-v/Disable-VMRemoteFXPhysicalVideoAdapter.md b/docset/winserver2016-ps/hyper-v/Disable-VMRemoteFXPhysicalVideoAdapter.md index dd6e3ee34f..6b7f6dcd25 100644 --- a/docset/winserver2016-ps/hyper-v/Disable-VMRemoteFXPhysicalVideoAdapter.md +++ b/docset/winserver2016-ps/hyper-v/Disable-VMRemoteFXPhysicalVideoAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/disable-vmremotefxphysicalvideoadapter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/disable-vmremotefxphysicalvideoadapter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-VMRemoteFXPhysicalVideoAdapter --- diff --git a/docset/winserver2016-ps/hyper-v/Disable-VMResourceMetering.md b/docset/winserver2016-ps/hyper-v/Disable-VMResourceMetering.md index 5181a95203..5919570fc8 100644 --- a/docset/winserver2016-ps/hyper-v/Disable-VMResourceMetering.md +++ b/docset/winserver2016-ps/hyper-v/Disable-VMResourceMetering.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/disable-vmresourcemetering?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/disable-vmresourcemetering?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-VMResourceMetering --- diff --git a/docset/winserver2016-ps/hyper-v/Disable-VMSwitchExtension.md b/docset/winserver2016-ps/hyper-v/Disable-VMSwitchExtension.md index e9f308a944..7f6567ff76 100644 --- a/docset/winserver2016-ps/hyper-v/Disable-VMSwitchExtension.md +++ b/docset/winserver2016-ps/hyper-v/Disable-VMSwitchExtension.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/disable-vmswitchextension?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/disable-vmswitchextension?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-VMSwitchExtension --- diff --git a/docset/winserver2016-ps/hyper-v/Disable-VMTPM.md b/docset/winserver2016-ps/hyper-v/Disable-VMTPM.md index a4d369fcac..944df91e45 100644 --- a/docset/winserver2016-ps/hyper-v/Disable-VMTPM.md +++ b/docset/winserver2016-ps/hyper-v/Disable-VMTPM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/disable-vmtpm?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/disable-vmtpm?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-VMTPM --- diff --git a/docset/winserver2016-ps/hyper-v/Disconnect-VMNetworkAdapter.md b/docset/winserver2016-ps/hyper-v/Disconnect-VMNetworkAdapter.md index b407ec9364..168740f4f2 100644 --- a/docset/winserver2016-ps/hyper-v/Disconnect-VMNetworkAdapter.md +++ b/docset/winserver2016-ps/hyper-v/Disconnect-VMNetworkAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/disconnect-vmnetworkadapter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/disconnect-vmnetworkadapter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disconnect-VMNetworkAdapter --- diff --git a/docset/winserver2016-ps/hyper-v/Disconnect-VMSan.md b/docset/winserver2016-ps/hyper-v/Disconnect-VMSan.md index 6e2b92cfa1..a6558bdd9d 100644 --- a/docset/winserver2016-ps/hyper-v/Disconnect-VMSan.md +++ b/docset/winserver2016-ps/hyper-v/Disconnect-VMSan.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/disconnect-vmsan?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/disconnect-vmsan?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disconnect-VMSan --- diff --git a/docset/winserver2016-ps/hyper-v/Dismount-VHD.md b/docset/winserver2016-ps/hyper-v/Dismount-VHD.md index bd8bd93161..7e2281965b 100644 --- a/docset/winserver2016-ps/hyper-v/Dismount-VHD.md +++ b/docset/winserver2016-ps/hyper-v/Dismount-VHD.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/dismount-vhd?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/dismount-vhd?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Dismount-VHD --- diff --git a/docset/winserver2016-ps/hyper-v/Enable-VMConsoleSupport.md b/docset/winserver2016-ps/hyper-v/Enable-VMConsoleSupport.md index 507e7d9824..b7bf07e6d6 100644 --- a/docset/winserver2016-ps/hyper-v/Enable-VMConsoleSupport.md +++ b/docset/winserver2016-ps/hyper-v/Enable-VMConsoleSupport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/enable-vmconsolesupport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/enable-vmconsolesupport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-VMConsoleSupport --- diff --git a/docset/winserver2016-ps/hyper-v/Enable-VMEventing.md b/docset/winserver2016-ps/hyper-v/Enable-VMEventing.md index 588d9ea148..e6fb9c61b5 100644 --- a/docset/winserver2016-ps/hyper-v/Enable-VMEventing.md +++ b/docset/winserver2016-ps/hyper-v/Enable-VMEventing.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/enable-vmeventing?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/enable-vmeventing?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-VMEventing --- diff --git a/docset/winserver2016-ps/hyper-v/Enable-VMIntegrationService.md b/docset/winserver2016-ps/hyper-v/Enable-VMIntegrationService.md index b0e7e4d59f..4f326ae41b 100644 --- a/docset/winserver2016-ps/hyper-v/Enable-VMIntegrationService.md +++ b/docset/winserver2016-ps/hyper-v/Enable-VMIntegrationService.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/enable-vmintegrationservice?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/enable-vmintegrationservice?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-VMIntegrationService --- diff --git a/docset/winserver2016-ps/hyper-v/Enable-VMMigration.md b/docset/winserver2016-ps/hyper-v/Enable-VMMigration.md index 0985bab111..3822444bfe 100644 --- a/docset/winserver2016-ps/hyper-v/Enable-VMMigration.md +++ b/docset/winserver2016-ps/hyper-v/Enable-VMMigration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/enable-vmmigration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/enable-vmmigration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-VMMigration --- diff --git a/docset/winserver2016-ps/hyper-v/Enable-VMRemoteFXPhysicalVideoAdapter.md b/docset/winserver2016-ps/hyper-v/Enable-VMRemoteFXPhysicalVideoAdapter.md index 1f16d07993..07e0b6be09 100644 --- a/docset/winserver2016-ps/hyper-v/Enable-VMRemoteFXPhysicalVideoAdapter.md +++ b/docset/winserver2016-ps/hyper-v/Enable-VMRemoteFXPhysicalVideoAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/enable-vmremotefxphysicalvideoadapter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/enable-vmremotefxphysicalvideoadapter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-VMRemoteFXPhysicalVideoAdapter --- diff --git a/docset/winserver2016-ps/hyper-v/Enable-VMReplication.md b/docset/winserver2016-ps/hyper-v/Enable-VMReplication.md index b94ed80979..d28e0caf1f 100644 --- a/docset/winserver2016-ps/hyper-v/Enable-VMReplication.md +++ b/docset/winserver2016-ps/hyper-v/Enable-VMReplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/enable-vmreplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/enable-vmreplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-VMReplication --- diff --git a/docset/winserver2016-ps/hyper-v/Enable-VMResourceMetering.md b/docset/winserver2016-ps/hyper-v/Enable-VMResourceMetering.md index bf9945ffa6..40238d9bfc 100644 --- a/docset/winserver2016-ps/hyper-v/Enable-VMResourceMetering.md +++ b/docset/winserver2016-ps/hyper-v/Enable-VMResourceMetering.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/enable-vmresourcemetering?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/enable-vmresourcemetering?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-VMResourceMetering --- diff --git a/docset/winserver2016-ps/hyper-v/Enable-VMSwitchExtension.md b/docset/winserver2016-ps/hyper-v/Enable-VMSwitchExtension.md index c49ade97e5..4f46a4bcfd 100644 --- a/docset/winserver2016-ps/hyper-v/Enable-VMSwitchExtension.md +++ b/docset/winserver2016-ps/hyper-v/Enable-VMSwitchExtension.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/enable-vmswitchextension?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/enable-vmswitchextension?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-VMSwitchExtension --- diff --git a/docset/winserver2016-ps/hyper-v/Enable-VMTPM.md b/docset/winserver2016-ps/hyper-v/Enable-VMTPM.md index 0260f3c07e..f7681d4220 100644 --- a/docset/winserver2016-ps/hyper-v/Enable-VMTPM.md +++ b/docset/winserver2016-ps/hyper-v/Enable-VMTPM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/enable-vmtpm?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/enable-vmtpm?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-VMTPM --- diff --git a/docset/winserver2016-ps/hyper-v/Export-VM.md b/docset/winserver2016-ps/hyper-v/Export-VM.md index 1cb37f280a..bf77cbfbd0 100644 --- a/docset/winserver2016-ps/hyper-v/Export-VM.md +++ b/docset/winserver2016-ps/hyper-v/Export-VM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/export-vm?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/export-vm?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-VM --- diff --git a/docset/winserver2016-ps/hyper-v/Export-VMSnapshot.md b/docset/winserver2016-ps/hyper-v/Export-VMSnapshot.md index 82b88879e1..5a68a24bee 100644 --- a/docset/winserver2016-ps/hyper-v/Export-VMSnapshot.md +++ b/docset/winserver2016-ps/hyper-v/Export-VMSnapshot.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/export-vmsnapshot?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/export-vmsnapshot?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-VMSnapshot --- diff --git a/docset/winserver2016-ps/hyper-v/Get-VHD.md b/docset/winserver2016-ps/hyper-v/Get-VHD.md index b4fe2ab4ad..9b8d6b223e 100644 --- a/docset/winserver2016-ps/hyper-v/Get-VHD.md +++ b/docset/winserver2016-ps/hyper-v/Get-VHD.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vhd?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vhd?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VHD --- diff --git a/docset/winserver2016-ps/hyper-v/Get-VHDSet.md b/docset/winserver2016-ps/hyper-v/Get-VHDSet.md index 45d2bb5ef5..4593d9a11c 100644 --- a/docset/winserver2016-ps/hyper-v/Get-VHDSet.md +++ b/docset/winserver2016-ps/hyper-v/Get-VHDSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vhdset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vhdset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VHDSet --- diff --git a/docset/winserver2016-ps/hyper-v/Get-VHDSnapshot.md b/docset/winserver2016-ps/hyper-v/Get-VHDSnapshot.md index 732f580a54..b6cb259d4e 100644 --- a/docset/winserver2016-ps/hyper-v/Get-VHDSnapshot.md +++ b/docset/winserver2016-ps/hyper-v/Get-VHDSnapshot.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vhdsnapshot?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vhdsnapshot?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VHDSnapshot --- diff --git a/docset/winserver2016-ps/hyper-v/Get-VM.md b/docset/winserver2016-ps/hyper-v/Get-VM.md index 8be03e29e3..d9422d53d1 100644 --- a/docset/winserver2016-ps/hyper-v/Get-VM.md +++ b/docset/winserver2016-ps/hyper-v/Get-VM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vm?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vm?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VM --- diff --git a/docset/winserver2016-ps/hyper-v/Get-VMBios.md b/docset/winserver2016-ps/hyper-v/Get-VMBios.md index 3db8df1d03..a31a59aa72 100644 --- a/docset/winserver2016-ps/hyper-v/Get-VMBios.md +++ b/docset/winserver2016-ps/hyper-v/Get-VMBios.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmbios?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmbios?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMBios --- diff --git a/docset/winserver2016-ps/hyper-v/Get-VMComPort.md b/docset/winserver2016-ps/hyper-v/Get-VMComPort.md index 332884f080..7c69066e68 100644 --- a/docset/winserver2016-ps/hyper-v/Get-VMComPort.md +++ b/docset/winserver2016-ps/hyper-v/Get-VMComPort.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmcomport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmcomport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMComPort --- diff --git a/docset/winserver2016-ps/hyper-v/Get-VMConnectAccess.md b/docset/winserver2016-ps/hyper-v/Get-VMConnectAccess.md index dd16a6fd44..adbeb46f1c 100644 --- a/docset/winserver2016-ps/hyper-v/Get-VMConnectAccess.md +++ b/docset/winserver2016-ps/hyper-v/Get-VMConnectAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmconnectaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmconnectaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMConnectAccess --- diff --git a/docset/winserver2016-ps/hyper-v/Get-VMDvdDrive.md b/docset/winserver2016-ps/hyper-v/Get-VMDvdDrive.md index 5d577a0552..781e4663b0 100644 --- a/docset/winserver2016-ps/hyper-v/Get-VMDvdDrive.md +++ b/docset/winserver2016-ps/hyper-v/Get-VMDvdDrive.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmdvddrive?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmdvddrive?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMDvdDrive --- diff --git a/docset/winserver2016-ps/hyper-v/Get-VMFibreChannelHba.md b/docset/winserver2016-ps/hyper-v/Get-VMFibreChannelHba.md index 40df674521..b1269e285f 100644 --- a/docset/winserver2016-ps/hyper-v/Get-VMFibreChannelHba.md +++ b/docset/winserver2016-ps/hyper-v/Get-VMFibreChannelHba.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmfibrechannelhba?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmfibrechannelhba?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMFibreChannelHba --- diff --git a/docset/winserver2016-ps/hyper-v/Get-VMFirmware.md b/docset/winserver2016-ps/hyper-v/Get-VMFirmware.md index ceab5444ea..840faf0216 100644 --- a/docset/winserver2016-ps/hyper-v/Get-VMFirmware.md +++ b/docset/winserver2016-ps/hyper-v/Get-VMFirmware.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmfirmware?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmfirmware?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMFirmware --- diff --git a/docset/winserver2016-ps/hyper-v/Get-VMFloppyDiskDrive.md b/docset/winserver2016-ps/hyper-v/Get-VMFloppyDiskDrive.md index af68e3e19b..20e52554af 100644 --- a/docset/winserver2016-ps/hyper-v/Get-VMFloppyDiskDrive.md +++ b/docset/winserver2016-ps/hyper-v/Get-VMFloppyDiskDrive.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmfloppydiskdrive?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmfloppydiskdrive?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMFloppyDiskDrive --- diff --git a/docset/winserver2016-ps/hyper-v/Get-VMGroup.md b/docset/winserver2016-ps/hyper-v/Get-VMGroup.md index 991143c4b5..b33db40670 100644 --- a/docset/winserver2016-ps/hyper-v/Get-VMGroup.md +++ b/docset/winserver2016-ps/hyper-v/Get-VMGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMGroup --- diff --git a/docset/winserver2016-ps/hyper-v/Get-VMHardDiskDrive.md b/docset/winserver2016-ps/hyper-v/Get-VMHardDiskDrive.md index 5fa63c8e19..7327c3e056 100644 --- a/docset/winserver2016-ps/hyper-v/Get-VMHardDiskDrive.md +++ b/docset/winserver2016-ps/hyper-v/Get-VMHardDiskDrive.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmharddiskdrive?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmharddiskdrive?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMHardDiskDrive --- diff --git a/docset/winserver2016-ps/hyper-v/Get-VMHost.md b/docset/winserver2016-ps/hyper-v/Get-VMHost.md index 815d0e6681..5d5b68995f 100644 --- a/docset/winserver2016-ps/hyper-v/Get-VMHost.md +++ b/docset/winserver2016-ps/hyper-v/Get-VMHost.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmhost?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmhost?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMHost --- diff --git a/docset/winserver2016-ps/hyper-v/Get-VMHostCluster.md b/docset/winserver2016-ps/hyper-v/Get-VMHostCluster.md index 0f304c9e74..7ff3689ea8 100644 --- a/docset/winserver2016-ps/hyper-v/Get-VMHostCluster.md +++ b/docset/winserver2016-ps/hyper-v/Get-VMHostCluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmhostcluster?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmhostcluster?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMHostCluster --- diff --git a/docset/winserver2016-ps/hyper-v/Get-VMHostNumaNode.md b/docset/winserver2016-ps/hyper-v/Get-VMHostNumaNode.md index 163e714129..4ba5283843 100644 --- a/docset/winserver2016-ps/hyper-v/Get-VMHostNumaNode.md +++ b/docset/winserver2016-ps/hyper-v/Get-VMHostNumaNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmhostnumanode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmhostnumanode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMHostNumaNode --- diff --git a/docset/winserver2016-ps/hyper-v/Get-VMHostNumaNodeStatus.md b/docset/winserver2016-ps/hyper-v/Get-VMHostNumaNodeStatus.md index f9fdcf4078..d3d6c0d828 100644 --- a/docset/winserver2016-ps/hyper-v/Get-VMHostNumaNodeStatus.md +++ b/docset/winserver2016-ps/hyper-v/Get-VMHostNumaNodeStatus.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmhostnumanodestatus?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmhostnumanodestatus?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMHostNumaNodeStatus --- diff --git a/docset/winserver2016-ps/hyper-v/Get-VMHostSupportedVersion.md b/docset/winserver2016-ps/hyper-v/Get-VMHostSupportedVersion.md index e82d8db7a2..ab1c8133c0 100644 --- a/docset/winserver2016-ps/hyper-v/Get-VMHostSupportedVersion.md +++ b/docset/winserver2016-ps/hyper-v/Get-VMHostSupportedVersion.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmhostsupportedversion?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmhostsupportedversion?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMHostSupportedVersion --- diff --git a/docset/winserver2016-ps/hyper-v/Get-VMIdeController.md b/docset/winserver2016-ps/hyper-v/Get-VMIdeController.md index c2c4f90961..845f0b43dd 100644 --- a/docset/winserver2016-ps/hyper-v/Get-VMIdeController.md +++ b/docset/winserver2016-ps/hyper-v/Get-VMIdeController.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmidecontroller?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmidecontroller?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMIdeController --- diff --git a/docset/winserver2016-ps/hyper-v/Get-VMIntegrationService.md b/docset/winserver2016-ps/hyper-v/Get-VMIntegrationService.md index 27b8848541..21d34a37e9 100644 --- a/docset/winserver2016-ps/hyper-v/Get-VMIntegrationService.md +++ b/docset/winserver2016-ps/hyper-v/Get-VMIntegrationService.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmintegrationservice?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmintegrationservice?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMIntegrationService --- diff --git a/docset/winserver2016-ps/hyper-v/Get-VMKeyProtector.md b/docset/winserver2016-ps/hyper-v/Get-VMKeyProtector.md index 1d377e7692..87a19f9341 100644 --- a/docset/winserver2016-ps/hyper-v/Get-VMKeyProtector.md +++ b/docset/winserver2016-ps/hyper-v/Get-VMKeyProtector.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmkeyprotector?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmkeyprotector?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMKeyProtector --- diff --git a/docset/winserver2016-ps/hyper-v/Get-VMMemory.md b/docset/winserver2016-ps/hyper-v/Get-VMMemory.md index b5ab8f488f..01609fe365 100644 --- a/docset/winserver2016-ps/hyper-v/Get-VMMemory.md +++ b/docset/winserver2016-ps/hyper-v/Get-VMMemory.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmmemory?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmmemory?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMMemory --- diff --git a/docset/winserver2016-ps/hyper-v/Get-VMMigrationNetwork.md b/docset/winserver2016-ps/hyper-v/Get-VMMigrationNetwork.md index 2fba485733..958354a18c 100644 --- a/docset/winserver2016-ps/hyper-v/Get-VMMigrationNetwork.md +++ b/docset/winserver2016-ps/hyper-v/Get-VMMigrationNetwork.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmmigrationnetwork?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmmigrationnetwork?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMMigrationNetwork --- diff --git a/docset/winserver2016-ps/hyper-v/Get-VMNetworkAdapter.md b/docset/winserver2016-ps/hyper-v/Get-VMNetworkAdapter.md index e473a7ae06..8c22b96d92 100644 --- a/docset/winserver2016-ps/hyper-v/Get-VMNetworkAdapter.md +++ b/docset/winserver2016-ps/hyper-v/Get-VMNetworkAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMNetworkAdapter --- diff --git a/docset/winserver2016-ps/hyper-v/Get-VMNetworkAdapterAcl.md b/docset/winserver2016-ps/hyper-v/Get-VMNetworkAdapterAcl.md index 27b82e2e3e..c03be9dd26 100644 --- a/docset/winserver2016-ps/hyper-v/Get-VMNetworkAdapterAcl.md +++ b/docset/winserver2016-ps/hyper-v/Get-VMNetworkAdapterAcl.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapteracl?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapteracl?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMNetworkAdapterAcl --- diff --git a/docset/winserver2016-ps/hyper-v/Get-VMNetworkAdapterExtendedAcl.md b/docset/winserver2016-ps/hyper-v/Get-VMNetworkAdapterExtendedAcl.md index 4d4ff9944c..a59d5f139d 100644 --- a/docset/winserver2016-ps/hyper-v/Get-VMNetworkAdapterExtendedAcl.md +++ b/docset/winserver2016-ps/hyper-v/Get-VMNetworkAdapterExtendedAcl.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapterextendedacl?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapterextendedacl?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMNetworkAdapterExtendedAcl --- diff --git a/docset/winserver2016-ps/hyper-v/Get-VMNetworkAdapterFailoverConfiguration.md b/docset/winserver2016-ps/hyper-v/Get-VMNetworkAdapterFailoverConfiguration.md index 1c7ec0a892..bd9bdb5bba 100644 --- a/docset/winserver2016-ps/hyper-v/Get-VMNetworkAdapterFailoverConfiguration.md +++ b/docset/winserver2016-ps/hyper-v/Get-VMNetworkAdapterFailoverConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapterfailoverconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapterfailoverconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMNetworkAdapterFailoverConfiguration --- diff --git a/docset/winserver2016-ps/hyper-v/Get-VMNetworkAdapterRoutingDomainMapping.md b/docset/winserver2016-ps/hyper-v/Get-VMNetworkAdapterRoutingDomainMapping.md index 47c8f21f40..2555cfb859 100644 --- a/docset/winserver2016-ps/hyper-v/Get-VMNetworkAdapterRoutingDomainMapping.md +++ b/docset/winserver2016-ps/hyper-v/Get-VMNetworkAdapterRoutingDomainMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapterroutingdomainmapping?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapterroutingdomainmapping?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMNetworkAdapterRoutingDomainMapping --- diff --git a/docset/winserver2016-ps/hyper-v/Get-VMNetworkAdapterTeamMapping.md b/docset/winserver2016-ps/hyper-v/Get-VMNetworkAdapterTeamMapping.md index e4ef77b057..71ce3ec1cb 100644 --- a/docset/winserver2016-ps/hyper-v/Get-VMNetworkAdapterTeamMapping.md +++ b/docset/winserver2016-ps/hyper-v/Get-VMNetworkAdapterTeamMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapterteammapping?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapterteammapping?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMNetworkAdapterTeamMapping --- diff --git a/docset/winserver2016-ps/hyper-v/Get-VMNetworkAdapterVlan.md b/docset/winserver2016-ps/hyper-v/Get-VMNetworkAdapterVlan.md index ccac95dda5..b4e55ff1da 100644 --- a/docset/winserver2016-ps/hyper-v/Get-VMNetworkAdapterVlan.md +++ b/docset/winserver2016-ps/hyper-v/Get-VMNetworkAdapterVlan.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmnetworkadaptervlan?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmnetworkadaptervlan?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMNetworkAdapterVlan --- diff --git a/docset/winserver2016-ps/hyper-v/Get-VMProcessor.md b/docset/winserver2016-ps/hyper-v/Get-VMProcessor.md index 8ab446ef36..123ff8c6c2 100644 --- a/docset/winserver2016-ps/hyper-v/Get-VMProcessor.md +++ b/docset/winserver2016-ps/hyper-v/Get-VMProcessor.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmprocessor?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmprocessor?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMProcessor --- diff --git a/docset/winserver2016-ps/hyper-v/Get-VMRemoteFXPhysicalVideoAdapter.md b/docset/winserver2016-ps/hyper-v/Get-VMRemoteFXPhysicalVideoAdapter.md index b2c5c77584..a84455fe5a 100644 --- a/docset/winserver2016-ps/hyper-v/Get-VMRemoteFXPhysicalVideoAdapter.md +++ b/docset/winserver2016-ps/hyper-v/Get-VMRemoteFXPhysicalVideoAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmremotefxphysicalvideoadapter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmremotefxphysicalvideoadapter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMRemoteFXPhysicalVideoAdapter --- diff --git a/docset/winserver2016-ps/hyper-v/Get-VMRemoteFx3dVideoAdapter.md b/docset/winserver2016-ps/hyper-v/Get-VMRemoteFx3dVideoAdapter.md index 75b4782e98..86feae670f 100644 --- a/docset/winserver2016-ps/hyper-v/Get-VMRemoteFx3dVideoAdapter.md +++ b/docset/winserver2016-ps/hyper-v/Get-VMRemoteFx3dVideoAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmremotefx3dvideoadapter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmremotefx3dvideoadapter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMRemoteFx3dVideoAdapter --- diff --git a/docset/winserver2016-ps/hyper-v/Get-VMReplication.md b/docset/winserver2016-ps/hyper-v/Get-VMReplication.md index 1c2f9ed383..4a305bcb76 100644 --- a/docset/winserver2016-ps/hyper-v/Get-VMReplication.md +++ b/docset/winserver2016-ps/hyper-v/Get-VMReplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmreplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmreplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMReplication --- diff --git a/docset/winserver2016-ps/hyper-v/Get-VMReplicationAuthorizationEntry.md b/docset/winserver2016-ps/hyper-v/Get-VMReplicationAuthorizationEntry.md index 4f2b4ab669..2d748b0d29 100644 --- a/docset/winserver2016-ps/hyper-v/Get-VMReplicationAuthorizationEntry.md +++ b/docset/winserver2016-ps/hyper-v/Get-VMReplicationAuthorizationEntry.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmreplicationauthorizationentry?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmreplicationauthorizationentry?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMReplicationAuthorizationEntry --- diff --git a/docset/winserver2016-ps/hyper-v/Get-VMReplicationServer.md b/docset/winserver2016-ps/hyper-v/Get-VMReplicationServer.md index 8dcac95843..0bb1dceadf 100644 --- a/docset/winserver2016-ps/hyper-v/Get-VMReplicationServer.md +++ b/docset/winserver2016-ps/hyper-v/Get-VMReplicationServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmreplicationserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmreplicationserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMReplicationServer --- diff --git a/docset/winserver2016-ps/hyper-v/Get-VMResourcePool.md b/docset/winserver2016-ps/hyper-v/Get-VMResourcePool.md index a112917f44..f6bfe913a6 100644 --- a/docset/winserver2016-ps/hyper-v/Get-VMResourcePool.md +++ b/docset/winserver2016-ps/hyper-v/Get-VMResourcePool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmresourcepool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmresourcepool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMResourcePool --- diff --git a/docset/winserver2016-ps/hyper-v/Get-VMSan.md b/docset/winserver2016-ps/hyper-v/Get-VMSan.md index 9aeeea5d60..3df1b2bdc4 100644 --- a/docset/winserver2016-ps/hyper-v/Get-VMSan.md +++ b/docset/winserver2016-ps/hyper-v/Get-VMSan.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmsan?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmsan?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMSan --- diff --git a/docset/winserver2016-ps/hyper-v/Get-VMScsiController.md b/docset/winserver2016-ps/hyper-v/Get-VMScsiController.md index 99cd035589..506045c391 100644 --- a/docset/winserver2016-ps/hyper-v/Get-VMScsiController.md +++ b/docset/winserver2016-ps/hyper-v/Get-VMScsiController.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmscsicontroller?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmscsicontroller?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMScsiController --- diff --git a/docset/winserver2016-ps/hyper-v/Get-VMSecurity.md b/docset/winserver2016-ps/hyper-v/Get-VMSecurity.md index a2efb7d1fa..cd3b7ee369 100644 --- a/docset/winserver2016-ps/hyper-v/Get-VMSecurity.md +++ b/docset/winserver2016-ps/hyper-v/Get-VMSecurity.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmsecurity?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmsecurity?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMSecurity --- diff --git a/docset/winserver2016-ps/hyper-v/Get-VMSnapshot.md b/docset/winserver2016-ps/hyper-v/Get-VMSnapshot.md index 790d6b94ef..d6bc909c95 100644 --- a/docset/winserver2016-ps/hyper-v/Get-VMSnapshot.md +++ b/docset/winserver2016-ps/hyper-v/Get-VMSnapshot.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmsnapshot?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmsnapshot?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMSnapshot --- diff --git a/docset/winserver2016-ps/hyper-v/Get-VMStoragePath.md b/docset/winserver2016-ps/hyper-v/Get-VMStoragePath.md index 1ecd023114..63a6ac4b40 100644 --- a/docset/winserver2016-ps/hyper-v/Get-VMStoragePath.md +++ b/docset/winserver2016-ps/hyper-v/Get-VMStoragePath.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmstoragepath?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmstoragepath?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMStoragePath --- diff --git a/docset/winserver2016-ps/hyper-v/Get-VMSwitch.md b/docset/winserver2016-ps/hyper-v/Get-VMSwitch.md index cfd834c031..3512e4662c 100644 --- a/docset/winserver2016-ps/hyper-v/Get-VMSwitch.md +++ b/docset/winserver2016-ps/hyper-v/Get-VMSwitch.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmswitch?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmswitch?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMSwitch --- diff --git a/docset/winserver2016-ps/hyper-v/Get-VMSwitchExtension.md b/docset/winserver2016-ps/hyper-v/Get-VMSwitchExtension.md index f6c4e4a307..a277b654e6 100644 --- a/docset/winserver2016-ps/hyper-v/Get-VMSwitchExtension.md +++ b/docset/winserver2016-ps/hyper-v/Get-VMSwitchExtension.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmswitchextension?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmswitchextension?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMSwitchExtension --- diff --git a/docset/winserver2016-ps/hyper-v/Get-VMSwitchExtensionPortData.md b/docset/winserver2016-ps/hyper-v/Get-VMSwitchExtensionPortData.md index 28ca0dbe8b..b4a67fff1e 100644 --- a/docset/winserver2016-ps/hyper-v/Get-VMSwitchExtensionPortData.md +++ b/docset/winserver2016-ps/hyper-v/Get-VMSwitchExtensionPortData.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmswitchextensionportdata?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmswitchextensionportdata?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMSwitchExtensionPortData --- diff --git a/docset/winserver2016-ps/hyper-v/Get-VMSwitchExtensionPortFeature.md b/docset/winserver2016-ps/hyper-v/Get-VMSwitchExtensionPortFeature.md index 2b6befe47f..044d5c6562 100644 --- a/docset/winserver2016-ps/hyper-v/Get-VMSwitchExtensionPortFeature.md +++ b/docset/winserver2016-ps/hyper-v/Get-VMSwitchExtensionPortFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmswitchextensionportfeature?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmswitchextensionportfeature?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMSwitchExtensionPortFeature --- diff --git a/docset/winserver2016-ps/hyper-v/Get-VMSwitchExtensionSwitchData.md b/docset/winserver2016-ps/hyper-v/Get-VMSwitchExtensionSwitchData.md index f0ff982e89..607d9a27bb 100644 --- a/docset/winserver2016-ps/hyper-v/Get-VMSwitchExtensionSwitchData.md +++ b/docset/winserver2016-ps/hyper-v/Get-VMSwitchExtensionSwitchData.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmswitchextensionswitchdata?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmswitchextensionswitchdata?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMSwitchExtensionSwitchData --- diff --git a/docset/winserver2016-ps/hyper-v/Get-VMSwitchExtensionSwitchFeature.md b/docset/winserver2016-ps/hyper-v/Get-VMSwitchExtensionSwitchFeature.md index de5147179d..5416837e0f 100644 --- a/docset/winserver2016-ps/hyper-v/Get-VMSwitchExtensionSwitchFeature.md +++ b/docset/winserver2016-ps/hyper-v/Get-VMSwitchExtensionSwitchFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmswitchextensionswitchfeature?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmswitchextensionswitchfeature?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMSwitchExtensionSwitchFeature --- diff --git a/docset/winserver2016-ps/hyper-v/Get-VMSwitchTeam.md b/docset/winserver2016-ps/hyper-v/Get-VMSwitchTeam.md index a6740f22e4..4ebbb5d985 100644 --- a/docset/winserver2016-ps/hyper-v/Get-VMSwitchTeam.md +++ b/docset/winserver2016-ps/hyper-v/Get-VMSwitchTeam.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmswitchteam?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmswitchteam?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMSwitchTeam --- diff --git a/docset/winserver2016-ps/hyper-v/Get-VMSystemSwitchExtension.md b/docset/winserver2016-ps/hyper-v/Get-VMSystemSwitchExtension.md index d3c540f309..a7bad156ec 100644 --- a/docset/winserver2016-ps/hyper-v/Get-VMSystemSwitchExtension.md +++ b/docset/winserver2016-ps/hyper-v/Get-VMSystemSwitchExtension.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmsystemswitchextension?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmsystemswitchextension?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMSystemSwitchExtension --- diff --git a/docset/winserver2016-ps/hyper-v/Get-VMSystemSwitchExtensionPortFeature.md b/docset/winserver2016-ps/hyper-v/Get-VMSystemSwitchExtensionPortFeature.md index a8ec3e0e9f..f3ebcf428f 100644 --- a/docset/winserver2016-ps/hyper-v/Get-VMSystemSwitchExtensionPortFeature.md +++ b/docset/winserver2016-ps/hyper-v/Get-VMSystemSwitchExtensionPortFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmsystemswitchextensionportfeature?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmsystemswitchextensionportfeature?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMSystemSwitchExtensionPortFeature --- diff --git a/docset/winserver2016-ps/hyper-v/Get-VMSystemSwitchExtensionSwitchFeature.md b/docset/winserver2016-ps/hyper-v/Get-VMSystemSwitchExtensionSwitchFeature.md index 2e0bd882ba..19ead28c9a 100644 --- a/docset/winserver2016-ps/hyper-v/Get-VMSystemSwitchExtensionSwitchFeature.md +++ b/docset/winserver2016-ps/hyper-v/Get-VMSystemSwitchExtensionSwitchFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmsystemswitchextensionswitchfeature?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmsystemswitchextensionswitchfeature?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMSystemSwitchExtensionSwitchFeature --- diff --git a/docset/winserver2016-ps/hyper-v/Get-VMVideo.md b/docset/winserver2016-ps/hyper-v/Get-VMVideo.md index b929f4fb56..1b3b1d3609 100644 --- a/docset/winserver2016-ps/hyper-v/Get-VMVideo.md +++ b/docset/winserver2016-ps/hyper-v/Get-VMVideo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmvideo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmvideo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMVideo --- diff --git a/docset/winserver2016-ps/hyper-v/Get-VmNetworkAdapterIsolation.md b/docset/winserver2016-ps/hyper-v/Get-VmNetworkAdapterIsolation.md index 2bd5582c22..e8f24b285c 100644 --- a/docset/winserver2016-ps/hyper-v/Get-VmNetworkAdapterIsolation.md +++ b/docset/winserver2016-ps/hyper-v/Get-VmNetworkAdapterIsolation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapterisolation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapterisolation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VmNetworkAdapterIsolation --- diff --git a/docset/winserver2016-ps/hyper-v/Grant-VMConnectAccess.md b/docset/winserver2016-ps/hyper-v/Grant-VMConnectAccess.md index 7a9b385e99..07188c2e94 100644 --- a/docset/winserver2016-ps/hyper-v/Grant-VMConnectAccess.md +++ b/docset/winserver2016-ps/hyper-v/Grant-VMConnectAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/grant-vmconnectaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/grant-vmconnectaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Grant-VMConnectAccess --- diff --git a/docset/winserver2016-ps/hyper-v/Import-VM.md b/docset/winserver2016-ps/hyper-v/Import-VM.md index c23dacbb24..4c0c4ddb15 100644 --- a/docset/winserver2016-ps/hyper-v/Import-VM.md +++ b/docset/winserver2016-ps/hyper-v/Import-VM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/import-vm?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/import-vm?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-VM --- diff --git a/docset/winserver2016-ps/hyper-v/Import-VMInitialReplication.md b/docset/winserver2016-ps/hyper-v/Import-VMInitialReplication.md index 976da397f6..53dc51a236 100644 --- a/docset/winserver2016-ps/hyper-v/Import-VMInitialReplication.md +++ b/docset/winserver2016-ps/hyper-v/Import-VMInitialReplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/import-vminitialreplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/import-vminitialreplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-VMInitialReplication --- diff --git a/docset/winserver2016-ps/hyper-v/Measure-VM.md b/docset/winserver2016-ps/hyper-v/Measure-VM.md index 6d71056d7a..7237c8f608 100644 --- a/docset/winserver2016-ps/hyper-v/Measure-VM.md +++ b/docset/winserver2016-ps/hyper-v/Measure-VM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/measure-vm?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/measure-vm?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Measure-VM --- diff --git a/docset/winserver2016-ps/hyper-v/Measure-VMReplication.md b/docset/winserver2016-ps/hyper-v/Measure-VMReplication.md index bee02a548e..0b4d5daeff 100644 --- a/docset/winserver2016-ps/hyper-v/Measure-VMReplication.md +++ b/docset/winserver2016-ps/hyper-v/Measure-VMReplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/measure-vmreplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/measure-vmreplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Measure-VMReplication --- diff --git a/docset/winserver2016-ps/hyper-v/Measure-VMResourcePool.md b/docset/winserver2016-ps/hyper-v/Measure-VMResourcePool.md index 0b23acb7a8..5358f3d23d 100644 --- a/docset/winserver2016-ps/hyper-v/Measure-VMResourcePool.md +++ b/docset/winserver2016-ps/hyper-v/Measure-VMResourcePool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/measure-vmresourcepool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/measure-vmresourcepool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Measure-VMResourcePool --- diff --git a/docset/winserver2016-ps/hyper-v/Merge-VHD.md b/docset/winserver2016-ps/hyper-v/Merge-VHD.md index 0ab8e6bbb9..fab07a7417 100644 --- a/docset/winserver2016-ps/hyper-v/Merge-VHD.md +++ b/docset/winserver2016-ps/hyper-v/Merge-VHD.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/merge-vhd?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/merge-vhd?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Merge-VHD --- diff --git a/docset/winserver2016-ps/hyper-v/Mount-VHD.md b/docset/winserver2016-ps/hyper-v/Mount-VHD.md index 0cd943865c..afb5cdd1fc 100644 --- a/docset/winserver2016-ps/hyper-v/Mount-VHD.md +++ b/docset/winserver2016-ps/hyper-v/Mount-VHD.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/mount-vhd?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/mount-vhd?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Mount-VHD --- diff --git a/docset/winserver2016-ps/hyper-v/Move-VM.md b/docset/winserver2016-ps/hyper-v/Move-VM.md index d54cd45dc6..052d55ffaa 100644 --- a/docset/winserver2016-ps/hyper-v/Move-VM.md +++ b/docset/winserver2016-ps/hyper-v/Move-VM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/move-vm?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/move-vm?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-VM --- diff --git a/docset/winserver2016-ps/hyper-v/Move-VMStorage.md b/docset/winserver2016-ps/hyper-v/Move-VMStorage.md index 1332f24159..9d674d9b43 100644 --- a/docset/winserver2016-ps/hyper-v/Move-VMStorage.md +++ b/docset/winserver2016-ps/hyper-v/Move-VMStorage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/move-vmstorage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/move-vmstorage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-VMStorage --- diff --git a/docset/winserver2016-ps/hyper-v/New-VFD.md b/docset/winserver2016-ps/hyper-v/New-VFD.md index 99d0c919ec..9f18d4aa21 100644 --- a/docset/winserver2016-ps/hyper-v/New-VFD.md +++ b/docset/winserver2016-ps/hyper-v/New-VFD.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/new-vfd?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/new-vfd?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VFD --- diff --git a/docset/winserver2016-ps/hyper-v/New-VHD.md b/docset/winserver2016-ps/hyper-v/New-VHD.md index 267a71d11b..da93edd42b 100644 --- a/docset/winserver2016-ps/hyper-v/New-VHD.md +++ b/docset/winserver2016-ps/hyper-v/New-VHD.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/new-vhd?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/new-vhd?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VHD --- diff --git a/docset/winserver2016-ps/hyper-v/New-VM.md b/docset/winserver2016-ps/hyper-v/New-VM.md index 1f192b9133..8438907136 100644 --- a/docset/winserver2016-ps/hyper-v/New-VM.md +++ b/docset/winserver2016-ps/hyper-v/New-VM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/new-vm?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/new-vm?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VM --- diff --git a/docset/winserver2016-ps/hyper-v/New-VMGroup.md b/docset/winserver2016-ps/hyper-v/New-VMGroup.md index f891b78da3..383f494d4e 100644 --- a/docset/winserver2016-ps/hyper-v/New-VMGroup.md +++ b/docset/winserver2016-ps/hyper-v/New-VMGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/new-vmgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/new-vmgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VMGroup --- diff --git a/docset/winserver2016-ps/hyper-v/New-VMReplicationAuthorizationEntry.md b/docset/winserver2016-ps/hyper-v/New-VMReplicationAuthorizationEntry.md index 5bb720f0e4..6e78078428 100644 --- a/docset/winserver2016-ps/hyper-v/New-VMReplicationAuthorizationEntry.md +++ b/docset/winserver2016-ps/hyper-v/New-VMReplicationAuthorizationEntry.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/new-vmreplicationauthorizationentry?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/new-vmreplicationauthorizationentry?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VMReplicationAuthorizationEntry --- diff --git a/docset/winserver2016-ps/hyper-v/New-VMResourcePool.md b/docset/winserver2016-ps/hyper-v/New-VMResourcePool.md index c685b94ded..aa5f44a3d3 100644 --- a/docset/winserver2016-ps/hyper-v/New-VMResourcePool.md +++ b/docset/winserver2016-ps/hyper-v/New-VMResourcePool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/new-vmresourcepool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/new-vmresourcepool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VMResourcePool --- diff --git a/docset/winserver2016-ps/hyper-v/New-VMSan.md b/docset/winserver2016-ps/hyper-v/New-VMSan.md index 85e89b47bf..205983aabe 100644 --- a/docset/winserver2016-ps/hyper-v/New-VMSan.md +++ b/docset/winserver2016-ps/hyper-v/New-VMSan.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/new-vmsan?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/new-vmsan?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VMSan --- diff --git a/docset/winserver2016-ps/hyper-v/New-VMSwitch.md b/docset/winserver2016-ps/hyper-v/New-VMSwitch.md index 4a4b4aab5c..64c4149b0c 100644 --- a/docset/winserver2016-ps/hyper-v/New-VMSwitch.md +++ b/docset/winserver2016-ps/hyper-v/New-VMSwitch.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/new-vmswitch?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/new-vmswitch?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VMSwitch --- diff --git a/docset/winserver2016-ps/hyper-v/Optimize-VHD.md b/docset/winserver2016-ps/hyper-v/Optimize-VHD.md index 9ae362d5f5..801cf28040 100644 --- a/docset/winserver2016-ps/hyper-v/Optimize-VHD.md +++ b/docset/winserver2016-ps/hyper-v/Optimize-VHD.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/optimize-vhd?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/optimize-vhd?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Optimize-VHD --- diff --git a/docset/winserver2016-ps/hyper-v/Optimize-VHDSet.md b/docset/winserver2016-ps/hyper-v/Optimize-VHDSet.md index 200e610c87..92eed3d054 100644 --- a/docset/winserver2016-ps/hyper-v/Optimize-VHDSet.md +++ b/docset/winserver2016-ps/hyper-v/Optimize-VHDSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/optimize-vhdset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/optimize-vhdset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Optimize-VHDSet --- diff --git a/docset/winserver2016-ps/hyper-v/Remove-VHDSnapshot.md b/docset/winserver2016-ps/hyper-v/Remove-VHDSnapshot.md index cbed2db7cd..a71b963c7e 100644 --- a/docset/winserver2016-ps/hyper-v/Remove-VHDSnapshot.md +++ b/docset/winserver2016-ps/hyper-v/Remove-VHDSnapshot.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vhdsnapshot?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vhdsnapshot?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VHDSnapshot --- diff --git a/docset/winserver2016-ps/hyper-v/Remove-VM.md b/docset/winserver2016-ps/hyper-v/Remove-VM.md index 0cdd4e48e1..ea05ebcee7 100644 --- a/docset/winserver2016-ps/hyper-v/Remove-VM.md +++ b/docset/winserver2016-ps/hyper-v/Remove-VM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vm?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vm?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VM --- diff --git a/docset/winserver2016-ps/hyper-v/Remove-VMDvdDrive.md b/docset/winserver2016-ps/hyper-v/Remove-VMDvdDrive.md index a341d88cb9..318b1a9888 100644 --- a/docset/winserver2016-ps/hyper-v/Remove-VMDvdDrive.md +++ b/docset/winserver2016-ps/hyper-v/Remove-VMDvdDrive.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmdvddrive?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmdvddrive?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMDvdDrive --- diff --git a/docset/winserver2016-ps/hyper-v/Remove-VMFibreChannelHba.md b/docset/winserver2016-ps/hyper-v/Remove-VMFibreChannelHba.md index 67846e3127..23a833500a 100644 --- a/docset/winserver2016-ps/hyper-v/Remove-VMFibreChannelHba.md +++ b/docset/winserver2016-ps/hyper-v/Remove-VMFibreChannelHba.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmfibrechannelhba?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmfibrechannelhba?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMFibreChannelHba --- diff --git a/docset/winserver2016-ps/hyper-v/Remove-VMGroup.md b/docset/winserver2016-ps/hyper-v/Remove-VMGroup.md index bfec0476c1..440b2ff77c 100644 --- a/docset/winserver2016-ps/hyper-v/Remove-VMGroup.md +++ b/docset/winserver2016-ps/hyper-v/Remove-VMGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMGroup --- diff --git a/docset/winserver2016-ps/hyper-v/Remove-VMGroupMember.md b/docset/winserver2016-ps/hyper-v/Remove-VMGroupMember.md index 325d9fd46f..c6024a579e 100644 --- a/docset/winserver2016-ps/hyper-v/Remove-VMGroupMember.md +++ b/docset/winserver2016-ps/hyper-v/Remove-VMGroupMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmgroupmember?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmgroupmember?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMGroupMember --- diff --git a/docset/winserver2016-ps/hyper-v/Remove-VMHardDiskDrive.md b/docset/winserver2016-ps/hyper-v/Remove-VMHardDiskDrive.md index 8b5c58f262..ad453b23b6 100644 --- a/docset/winserver2016-ps/hyper-v/Remove-VMHardDiskDrive.md +++ b/docset/winserver2016-ps/hyper-v/Remove-VMHardDiskDrive.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmharddiskdrive?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmharddiskdrive?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMHardDiskDrive --- diff --git a/docset/winserver2016-ps/hyper-v/Remove-VMMigrationNetwork.md b/docset/winserver2016-ps/hyper-v/Remove-VMMigrationNetwork.md index db7edcfdec..7f85e91621 100644 --- a/docset/winserver2016-ps/hyper-v/Remove-VMMigrationNetwork.md +++ b/docset/winserver2016-ps/hyper-v/Remove-VMMigrationNetwork.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmmigrationnetwork?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmmigrationnetwork?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMMigrationNetwork --- diff --git a/docset/winserver2016-ps/hyper-v/Remove-VMNetworkAdapter.md b/docset/winserver2016-ps/hyper-v/Remove-VMNetworkAdapter.md index 47a41522b1..03e8879c28 100644 --- a/docset/winserver2016-ps/hyper-v/Remove-VMNetworkAdapter.md +++ b/docset/winserver2016-ps/hyper-v/Remove-VMNetworkAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmnetworkadapter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmnetworkadapter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMNetworkAdapter --- diff --git a/docset/winserver2016-ps/hyper-v/Remove-VMNetworkAdapterAcl.md b/docset/winserver2016-ps/hyper-v/Remove-VMNetworkAdapterAcl.md index 89d1ec89d4..be552fc66d 100644 --- a/docset/winserver2016-ps/hyper-v/Remove-VMNetworkAdapterAcl.md +++ b/docset/winserver2016-ps/hyper-v/Remove-VMNetworkAdapterAcl.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmnetworkadapteracl?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmnetworkadapteracl?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMNetworkAdapterAcl --- diff --git a/docset/winserver2016-ps/hyper-v/Remove-VMNetworkAdapterExtendedAcl.md b/docset/winserver2016-ps/hyper-v/Remove-VMNetworkAdapterExtendedAcl.md index 8993ee1cd8..92b5d3ce04 100644 --- a/docset/winserver2016-ps/hyper-v/Remove-VMNetworkAdapterExtendedAcl.md +++ b/docset/winserver2016-ps/hyper-v/Remove-VMNetworkAdapterExtendedAcl.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmnetworkadapterextendedacl?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmnetworkadapterextendedacl?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMNetworkAdapterExtendedAcl --- diff --git a/docset/winserver2016-ps/hyper-v/Remove-VMNetworkAdapterRoutingDomainMapping.md b/docset/winserver2016-ps/hyper-v/Remove-VMNetworkAdapterRoutingDomainMapping.md index ebb9a64b38..81e0fa66a2 100644 --- a/docset/winserver2016-ps/hyper-v/Remove-VMNetworkAdapterRoutingDomainMapping.md +++ b/docset/winserver2016-ps/hyper-v/Remove-VMNetworkAdapterRoutingDomainMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmnetworkadapterroutingdomainmapping?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmnetworkadapterroutingdomainmapping?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMNetworkAdapterRoutingDomainMapping --- diff --git a/docset/winserver2016-ps/hyper-v/Remove-VMNetworkAdapterTeamMapping.md b/docset/winserver2016-ps/hyper-v/Remove-VMNetworkAdapterTeamMapping.md index 5dd38bfabe..0013b40035 100644 --- a/docset/winserver2016-ps/hyper-v/Remove-VMNetworkAdapterTeamMapping.md +++ b/docset/winserver2016-ps/hyper-v/Remove-VMNetworkAdapterTeamMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmnetworkadapterteammapping?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmnetworkadapterteammapping?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMNetworkAdapterTeamMapping --- diff --git a/docset/winserver2016-ps/hyper-v/Remove-VMRemoteFx3dVideoAdapter.md b/docset/winserver2016-ps/hyper-v/Remove-VMRemoteFx3dVideoAdapter.md index d20bcc721b..0d8151ced5 100644 --- a/docset/winserver2016-ps/hyper-v/Remove-VMRemoteFx3dVideoAdapter.md +++ b/docset/winserver2016-ps/hyper-v/Remove-VMRemoteFx3dVideoAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmremotefx3dvideoadapter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmremotefx3dvideoadapter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMRemoteFx3dVideoAdapter --- diff --git a/docset/winserver2016-ps/hyper-v/Remove-VMReplication.md b/docset/winserver2016-ps/hyper-v/Remove-VMReplication.md index db4f1d9f20..2829eba001 100644 --- a/docset/winserver2016-ps/hyper-v/Remove-VMReplication.md +++ b/docset/winserver2016-ps/hyper-v/Remove-VMReplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmreplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmreplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMReplication --- diff --git a/docset/winserver2016-ps/hyper-v/Remove-VMReplicationAuthorizationEntry.md b/docset/winserver2016-ps/hyper-v/Remove-VMReplicationAuthorizationEntry.md index 0359960a67..e7f3f8133e 100644 --- a/docset/winserver2016-ps/hyper-v/Remove-VMReplicationAuthorizationEntry.md +++ b/docset/winserver2016-ps/hyper-v/Remove-VMReplicationAuthorizationEntry.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmreplicationauthorizationentry?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmreplicationauthorizationentry?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMReplicationAuthorizationEntry --- diff --git a/docset/winserver2016-ps/hyper-v/Remove-VMResourcePool.md b/docset/winserver2016-ps/hyper-v/Remove-VMResourcePool.md index 36c3f28a26..c7cc63b518 100644 --- a/docset/winserver2016-ps/hyper-v/Remove-VMResourcePool.md +++ b/docset/winserver2016-ps/hyper-v/Remove-VMResourcePool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmresourcepool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmresourcepool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMResourcePool --- diff --git a/docset/winserver2016-ps/hyper-v/Remove-VMSan.md b/docset/winserver2016-ps/hyper-v/Remove-VMSan.md index 9ef8247dca..8f5c5bfa8a 100644 --- a/docset/winserver2016-ps/hyper-v/Remove-VMSan.md +++ b/docset/winserver2016-ps/hyper-v/Remove-VMSan.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmsan?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmsan?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMSan --- diff --git a/docset/winserver2016-ps/hyper-v/Remove-VMSavedState.md b/docset/winserver2016-ps/hyper-v/Remove-VMSavedState.md index 028bc2fe25..3b934dcc93 100644 --- a/docset/winserver2016-ps/hyper-v/Remove-VMSavedState.md +++ b/docset/winserver2016-ps/hyper-v/Remove-VMSavedState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmsavedstate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmsavedstate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMSavedState --- diff --git a/docset/winserver2016-ps/hyper-v/Remove-VMScsiController.md b/docset/winserver2016-ps/hyper-v/Remove-VMScsiController.md index a42117a6d9..91e6684099 100644 --- a/docset/winserver2016-ps/hyper-v/Remove-VMScsiController.md +++ b/docset/winserver2016-ps/hyper-v/Remove-VMScsiController.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmscsicontroller?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmscsicontroller?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMScsiController --- diff --git a/docset/winserver2016-ps/hyper-v/Remove-VMSnapshot.md b/docset/winserver2016-ps/hyper-v/Remove-VMSnapshot.md index d596e836ed..e2b250aeee 100644 --- a/docset/winserver2016-ps/hyper-v/Remove-VMSnapshot.md +++ b/docset/winserver2016-ps/hyper-v/Remove-VMSnapshot.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmsnapshot?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmsnapshot?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMSnapshot --- diff --git a/docset/winserver2016-ps/hyper-v/Remove-VMStoragePath.md b/docset/winserver2016-ps/hyper-v/Remove-VMStoragePath.md index 0960cc3588..51549f5483 100644 --- a/docset/winserver2016-ps/hyper-v/Remove-VMStoragePath.md +++ b/docset/winserver2016-ps/hyper-v/Remove-VMStoragePath.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmstoragepath?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmstoragepath?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMStoragePath --- diff --git a/docset/winserver2016-ps/hyper-v/Remove-VMSwitch.md b/docset/winserver2016-ps/hyper-v/Remove-VMSwitch.md index 042b4fc89b..e59b466955 100644 --- a/docset/winserver2016-ps/hyper-v/Remove-VMSwitch.md +++ b/docset/winserver2016-ps/hyper-v/Remove-VMSwitch.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmswitch?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmswitch?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMSwitch --- diff --git a/docset/winserver2016-ps/hyper-v/Remove-VMSwitchExtensionPortFeature.md b/docset/winserver2016-ps/hyper-v/Remove-VMSwitchExtensionPortFeature.md index 5e323a48cc..2f56526bf4 100644 --- a/docset/winserver2016-ps/hyper-v/Remove-VMSwitchExtensionPortFeature.md +++ b/docset/winserver2016-ps/hyper-v/Remove-VMSwitchExtensionPortFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmswitchextensionportfeature?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmswitchextensionportfeature?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMSwitchExtensionPortFeature --- diff --git a/docset/winserver2016-ps/hyper-v/Remove-VMSwitchExtensionSwitchFeature.md b/docset/winserver2016-ps/hyper-v/Remove-VMSwitchExtensionSwitchFeature.md index ad565e0fc5..739e63fa85 100644 --- a/docset/winserver2016-ps/hyper-v/Remove-VMSwitchExtensionSwitchFeature.md +++ b/docset/winserver2016-ps/hyper-v/Remove-VMSwitchExtensionSwitchFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmswitchextensionswitchfeature?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmswitchextensionswitchfeature?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMSwitchExtensionSwitchFeature --- diff --git a/docset/winserver2016-ps/hyper-v/Remove-VMSwitchTeamMember.md b/docset/winserver2016-ps/hyper-v/Remove-VMSwitchTeamMember.md index bd8cb2bdc8..a2cd3b1ef2 100644 --- a/docset/winserver2016-ps/hyper-v/Remove-VMSwitchTeamMember.md +++ b/docset/winserver2016-ps/hyper-v/Remove-VMSwitchTeamMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmswitchteammember?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmswitchteammember?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMSwitchTeamMember --- diff --git a/docset/winserver2016-ps/hyper-v/Rename-VM.md b/docset/winserver2016-ps/hyper-v/Rename-VM.md index 1874178ebd..409e69f070 100644 --- a/docset/winserver2016-ps/hyper-v/Rename-VM.md +++ b/docset/winserver2016-ps/hyper-v/Rename-VM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/rename-vm?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/rename-vm?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-VM --- diff --git a/docset/winserver2016-ps/hyper-v/Rename-VMGroup.md b/docset/winserver2016-ps/hyper-v/Rename-VMGroup.md index 90205f5998..0f45db9466 100644 --- a/docset/winserver2016-ps/hyper-v/Rename-VMGroup.md +++ b/docset/winserver2016-ps/hyper-v/Rename-VMGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/rename-vmgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/rename-vmgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-VMGroup --- diff --git a/docset/winserver2016-ps/hyper-v/Rename-VMNetworkAdapter.md b/docset/winserver2016-ps/hyper-v/Rename-VMNetworkAdapter.md index 49221f716c..4817460d7a 100644 --- a/docset/winserver2016-ps/hyper-v/Rename-VMNetworkAdapter.md +++ b/docset/winserver2016-ps/hyper-v/Rename-VMNetworkAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/rename-vmnetworkadapter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/rename-vmnetworkadapter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-VMNetworkAdapter --- diff --git a/docset/winserver2016-ps/hyper-v/Rename-VMResourcePool.md b/docset/winserver2016-ps/hyper-v/Rename-VMResourcePool.md index 0b51efd91a..1fc973d1e5 100644 --- a/docset/winserver2016-ps/hyper-v/Rename-VMResourcePool.md +++ b/docset/winserver2016-ps/hyper-v/Rename-VMResourcePool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/rename-vmresourcepool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/rename-vmresourcepool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-VMResourcePool --- diff --git a/docset/winserver2016-ps/hyper-v/Rename-VMSan.md b/docset/winserver2016-ps/hyper-v/Rename-VMSan.md index cd451b51ba..fef2c090df 100644 --- a/docset/winserver2016-ps/hyper-v/Rename-VMSan.md +++ b/docset/winserver2016-ps/hyper-v/Rename-VMSan.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/rename-vmsan?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/rename-vmsan?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-VMSan --- diff --git a/docset/winserver2016-ps/hyper-v/Rename-VMSnapshot.md b/docset/winserver2016-ps/hyper-v/Rename-VMSnapshot.md index 417a02906e..59c8d644fe 100644 --- a/docset/winserver2016-ps/hyper-v/Rename-VMSnapshot.md +++ b/docset/winserver2016-ps/hyper-v/Rename-VMSnapshot.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/rename-vmsnapshot?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/rename-vmsnapshot?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-VMSnapshot --- diff --git a/docset/winserver2016-ps/hyper-v/Rename-VMSwitch.md b/docset/winserver2016-ps/hyper-v/Rename-VMSwitch.md index 439a9bb5a0..503206f8ae 100644 --- a/docset/winserver2016-ps/hyper-v/Rename-VMSwitch.md +++ b/docset/winserver2016-ps/hyper-v/Rename-VMSwitch.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/rename-vmswitch?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/rename-vmswitch?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-VMSwitch --- diff --git a/docset/winserver2016-ps/hyper-v/Repair-VM.md b/docset/winserver2016-ps/hyper-v/Repair-VM.md index 23c63da5f3..c8e711b1a6 100644 --- a/docset/winserver2016-ps/hyper-v/Repair-VM.md +++ b/docset/winserver2016-ps/hyper-v/Repair-VM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/repair-vm?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/repair-vm?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Repair-VM --- diff --git a/docset/winserver2016-ps/hyper-v/Reset-VMReplicationStatistics.md b/docset/winserver2016-ps/hyper-v/Reset-VMReplicationStatistics.md index 0595314bd7..d39b58d0c9 100644 --- a/docset/winserver2016-ps/hyper-v/Reset-VMReplicationStatistics.md +++ b/docset/winserver2016-ps/hyper-v/Reset-VMReplicationStatistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/reset-vmreplicationstatistics?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/reset-vmreplicationstatistics?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-VMReplicationStatistics --- diff --git a/docset/winserver2016-ps/hyper-v/Reset-VMResourceMetering.md b/docset/winserver2016-ps/hyper-v/Reset-VMResourceMetering.md index 81502512f4..b1c2353ad6 100644 --- a/docset/winserver2016-ps/hyper-v/Reset-VMResourceMetering.md +++ b/docset/winserver2016-ps/hyper-v/Reset-VMResourceMetering.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/reset-vmresourcemetering?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/reset-vmresourcemetering?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-VMResourceMetering --- diff --git a/docset/winserver2016-ps/hyper-v/Resize-VHD.md b/docset/winserver2016-ps/hyper-v/Resize-VHD.md index 9749093904..125e4b8839 100644 --- a/docset/winserver2016-ps/hyper-v/Resize-VHD.md +++ b/docset/winserver2016-ps/hyper-v/Resize-VHD.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/resize-vhd?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/resize-vhd?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resize-VHD --- diff --git a/docset/winserver2016-ps/hyper-v/Restart-VM.md b/docset/winserver2016-ps/hyper-v/Restart-VM.md index 7fd65cc3e4..f278c645f9 100644 --- a/docset/winserver2016-ps/hyper-v/Restart-VM.md +++ b/docset/winserver2016-ps/hyper-v/Restart-VM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/restart-vm?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/restart-vm?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restart-VM --- diff --git a/docset/winserver2016-ps/hyper-v/Restore-VMSnapshot.md b/docset/winserver2016-ps/hyper-v/Restore-VMSnapshot.md index f45bcc8d35..5f0ba83f4d 100644 --- a/docset/winserver2016-ps/hyper-v/Restore-VMSnapshot.md +++ b/docset/winserver2016-ps/hyper-v/Restore-VMSnapshot.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/restore-vmsnapshot?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/restore-vmsnapshot?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-VMSnapshot --- diff --git a/docset/winserver2016-ps/hyper-v/Resume-VM.md b/docset/winserver2016-ps/hyper-v/Resume-VM.md index 66b6d49ef6..8e5ea575d6 100644 --- a/docset/winserver2016-ps/hyper-v/Resume-VM.md +++ b/docset/winserver2016-ps/hyper-v/Resume-VM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/resume-vm?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/resume-vm?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-VM --- diff --git a/docset/winserver2016-ps/hyper-v/Resume-VMReplication.md b/docset/winserver2016-ps/hyper-v/Resume-VMReplication.md index b2bb0dc6ca..5c68571682 100644 --- a/docset/winserver2016-ps/hyper-v/Resume-VMReplication.md +++ b/docset/winserver2016-ps/hyper-v/Resume-VMReplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/resume-vmreplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/resume-vmreplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-VMReplication --- diff --git a/docset/winserver2016-ps/hyper-v/Revoke-VMConnectAccess.md b/docset/winserver2016-ps/hyper-v/Revoke-VMConnectAccess.md index 00b77542eb..ed98b07bd5 100644 --- a/docset/winserver2016-ps/hyper-v/Revoke-VMConnectAccess.md +++ b/docset/winserver2016-ps/hyper-v/Revoke-VMConnectAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/revoke-vmconnectaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/revoke-vmconnectaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Revoke-VMConnectAccess --- diff --git a/docset/winserver2016-ps/hyper-v/Save-VM.md b/docset/winserver2016-ps/hyper-v/Save-VM.md index aefcd67532..ea4b3ed8b5 100644 --- a/docset/winserver2016-ps/hyper-v/Save-VM.md +++ b/docset/winserver2016-ps/hyper-v/Save-VM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/save-vm?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/save-vm?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Save-VM --- diff --git a/docset/winserver2016-ps/hyper-v/Set-VHD.md b/docset/winserver2016-ps/hyper-v/Set-VHD.md index 572646655a..9cd20e40da 100644 --- a/docset/winserver2016-ps/hyper-v/Set-VHD.md +++ b/docset/winserver2016-ps/hyper-v/Set-VHD.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vhd?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vhd?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VHD --- diff --git a/docset/winserver2016-ps/hyper-v/Set-VM.md b/docset/winserver2016-ps/hyper-v/Set-VM.md index 54bc5440c8..80bd760058 100644 --- a/docset/winserver2016-ps/hyper-v/Set-VM.md +++ b/docset/winserver2016-ps/hyper-v/Set-VM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vm?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vm?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VM --- diff --git a/docset/winserver2016-ps/hyper-v/Set-VMBios.md b/docset/winserver2016-ps/hyper-v/Set-VMBios.md index 609566ffef..ea3d12d819 100644 --- a/docset/winserver2016-ps/hyper-v/Set-VMBios.md +++ b/docset/winserver2016-ps/hyper-v/Set-VMBios.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmbios?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmbios?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMBios --- diff --git a/docset/winserver2016-ps/hyper-v/Set-VMComPort.md b/docset/winserver2016-ps/hyper-v/Set-VMComPort.md index 6047b2d310..b60206c73d 100644 --- a/docset/winserver2016-ps/hyper-v/Set-VMComPort.md +++ b/docset/winserver2016-ps/hyper-v/Set-VMComPort.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmcomport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmcomport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMComPort --- diff --git a/docset/winserver2016-ps/hyper-v/Set-VMDvdDrive.md b/docset/winserver2016-ps/hyper-v/Set-VMDvdDrive.md index 02b0b11591..dc94dc77eb 100644 --- a/docset/winserver2016-ps/hyper-v/Set-VMDvdDrive.md +++ b/docset/winserver2016-ps/hyper-v/Set-VMDvdDrive.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmdvddrive?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmdvddrive?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMDvdDrive --- diff --git a/docset/winserver2016-ps/hyper-v/Set-VMFibreChannelHba.md b/docset/winserver2016-ps/hyper-v/Set-VMFibreChannelHba.md index ffad73b7bd..aa1d6057a2 100644 --- a/docset/winserver2016-ps/hyper-v/Set-VMFibreChannelHba.md +++ b/docset/winserver2016-ps/hyper-v/Set-VMFibreChannelHba.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmfibrechannelhba?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmfibrechannelhba?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMFibreChannelHba --- diff --git a/docset/winserver2016-ps/hyper-v/Set-VMFirmware.md b/docset/winserver2016-ps/hyper-v/Set-VMFirmware.md index bb32af7008..c32888bde2 100644 --- a/docset/winserver2016-ps/hyper-v/Set-VMFirmware.md +++ b/docset/winserver2016-ps/hyper-v/Set-VMFirmware.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmfirmware?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmfirmware?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMFirmware --- diff --git a/docset/winserver2016-ps/hyper-v/Set-VMFloppyDiskDrive.md b/docset/winserver2016-ps/hyper-v/Set-VMFloppyDiskDrive.md index a124eef400..29629cbc81 100644 --- a/docset/winserver2016-ps/hyper-v/Set-VMFloppyDiskDrive.md +++ b/docset/winserver2016-ps/hyper-v/Set-VMFloppyDiskDrive.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmfloppydiskdrive?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmfloppydiskdrive?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMFloppyDiskDrive --- diff --git a/docset/winserver2016-ps/hyper-v/Set-VMHardDiskDrive.md b/docset/winserver2016-ps/hyper-v/Set-VMHardDiskDrive.md index 869ca50337..ef13e7c9d2 100644 --- a/docset/winserver2016-ps/hyper-v/Set-VMHardDiskDrive.md +++ b/docset/winserver2016-ps/hyper-v/Set-VMHardDiskDrive.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmharddiskdrive?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmharddiskdrive?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMHardDiskDrive --- diff --git a/docset/winserver2016-ps/hyper-v/Set-VMHost.md b/docset/winserver2016-ps/hyper-v/Set-VMHost.md index 09d03e8752..9aef6c72f8 100644 --- a/docset/winserver2016-ps/hyper-v/Set-VMHost.md +++ b/docset/winserver2016-ps/hyper-v/Set-VMHost.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmhost?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmhost?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMHost --- diff --git a/docset/winserver2016-ps/hyper-v/Set-VMHostCluster.md b/docset/winserver2016-ps/hyper-v/Set-VMHostCluster.md index 466f2fc5f6..00b8087f3b 100644 --- a/docset/winserver2016-ps/hyper-v/Set-VMHostCluster.md +++ b/docset/winserver2016-ps/hyper-v/Set-VMHostCluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmhostcluster?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmhostcluster?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMHostCluster --- diff --git a/docset/winserver2016-ps/hyper-v/Set-VMKeyProtector.md b/docset/winserver2016-ps/hyper-v/Set-VMKeyProtector.md index f3015bb826..428efe1883 100644 --- a/docset/winserver2016-ps/hyper-v/Set-VMKeyProtector.md +++ b/docset/winserver2016-ps/hyper-v/Set-VMKeyProtector.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmkeyprotector?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmkeyprotector?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMKeyProtector --- diff --git a/docset/winserver2016-ps/hyper-v/Set-VMMemory.md b/docset/winserver2016-ps/hyper-v/Set-VMMemory.md index f9ce11db39..82d2c3c003 100644 --- a/docset/winserver2016-ps/hyper-v/Set-VMMemory.md +++ b/docset/winserver2016-ps/hyper-v/Set-VMMemory.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmmemory?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmmemory?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMMemory --- diff --git a/docset/winserver2016-ps/hyper-v/Set-VMMigrationNetwork.md b/docset/winserver2016-ps/hyper-v/Set-VMMigrationNetwork.md index 3a4872dd73..a08e0d8d0d 100644 --- a/docset/winserver2016-ps/hyper-v/Set-VMMigrationNetwork.md +++ b/docset/winserver2016-ps/hyper-v/Set-VMMigrationNetwork.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmmigrationnetwork?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmmigrationnetwork?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMMigrationNetwork --- diff --git a/docset/winserver2016-ps/hyper-v/Set-VMNetworkAdapter.md b/docset/winserver2016-ps/hyper-v/Set-VMNetworkAdapter.md index eff9fa6831..4435a7ab31 100644 --- a/docset/winserver2016-ps/hyper-v/Set-VMNetworkAdapter.md +++ b/docset/winserver2016-ps/hyper-v/Set-VMNetworkAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmnetworkadapter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmnetworkadapter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMNetworkAdapter --- diff --git a/docset/winserver2016-ps/hyper-v/Set-VMNetworkAdapterFailoverConfiguration.md b/docset/winserver2016-ps/hyper-v/Set-VMNetworkAdapterFailoverConfiguration.md index 8fbdb78c8b..3285180625 100644 --- a/docset/winserver2016-ps/hyper-v/Set-VMNetworkAdapterFailoverConfiguration.md +++ b/docset/winserver2016-ps/hyper-v/Set-VMNetworkAdapterFailoverConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmnetworkadapterfailoverconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmnetworkadapterfailoverconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMNetworkAdapterFailoverConfiguration --- diff --git a/docset/winserver2016-ps/hyper-v/Set-VMNetworkAdapterTeamMapping.md b/docset/winserver2016-ps/hyper-v/Set-VMNetworkAdapterTeamMapping.md index e51194ab88..f6ea9f0cb2 100644 --- a/docset/winserver2016-ps/hyper-v/Set-VMNetworkAdapterTeamMapping.md +++ b/docset/winserver2016-ps/hyper-v/Set-VMNetworkAdapterTeamMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmnetworkadapterteammapping?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmnetworkadapterteammapping?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMNetworkAdapterTeamMapping --- diff --git a/docset/winserver2016-ps/hyper-v/Set-VMNetworkAdapterVlan.md b/docset/winserver2016-ps/hyper-v/Set-VMNetworkAdapterVlan.md index 22986a103c..e42a468474 100644 --- a/docset/winserver2016-ps/hyper-v/Set-VMNetworkAdapterVlan.md +++ b/docset/winserver2016-ps/hyper-v/Set-VMNetworkAdapterVlan.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmnetworkadaptervlan?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmnetworkadaptervlan?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMNetworkAdapterVlan --- diff --git a/docset/winserver2016-ps/hyper-v/Set-VMProcessor.md b/docset/winserver2016-ps/hyper-v/Set-VMProcessor.md index d4b26f1e90..bea9d69da6 100644 --- a/docset/winserver2016-ps/hyper-v/Set-VMProcessor.md +++ b/docset/winserver2016-ps/hyper-v/Set-VMProcessor.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmprocessor?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmprocessor?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMProcessor --- diff --git a/docset/winserver2016-ps/hyper-v/Set-VMRemoteFx3dVideoAdapter.md b/docset/winserver2016-ps/hyper-v/Set-VMRemoteFx3dVideoAdapter.md index e725ea2440..2b706f39e0 100644 --- a/docset/winserver2016-ps/hyper-v/Set-VMRemoteFx3dVideoAdapter.md +++ b/docset/winserver2016-ps/hyper-v/Set-VMRemoteFx3dVideoAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmremotefx3dvideoadapter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmremotefx3dvideoadapter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMRemoteFx3dVideoAdapter --- diff --git a/docset/winserver2016-ps/hyper-v/Set-VMReplication.md b/docset/winserver2016-ps/hyper-v/Set-VMReplication.md index e1ab13538c..3b9e62b6de 100644 --- a/docset/winserver2016-ps/hyper-v/Set-VMReplication.md +++ b/docset/winserver2016-ps/hyper-v/Set-VMReplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmreplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmreplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMReplication --- diff --git a/docset/winserver2016-ps/hyper-v/Set-VMReplicationAuthorizationEntry.md b/docset/winserver2016-ps/hyper-v/Set-VMReplicationAuthorizationEntry.md index fc73761c60..fd45315820 100644 --- a/docset/winserver2016-ps/hyper-v/Set-VMReplicationAuthorizationEntry.md +++ b/docset/winserver2016-ps/hyper-v/Set-VMReplicationAuthorizationEntry.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmreplicationauthorizationentry?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmreplicationauthorizationentry?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMReplicationAuthorizationEntry --- diff --git a/docset/winserver2016-ps/hyper-v/Set-VMReplicationServer.md b/docset/winserver2016-ps/hyper-v/Set-VMReplicationServer.md index d7e85744e9..e3e9d59dfc 100644 --- a/docset/winserver2016-ps/hyper-v/Set-VMReplicationServer.md +++ b/docset/winserver2016-ps/hyper-v/Set-VMReplicationServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmreplicationserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmreplicationserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMReplicationServer --- diff --git a/docset/winserver2016-ps/hyper-v/Set-VMResourcePool.md b/docset/winserver2016-ps/hyper-v/Set-VMResourcePool.md index 557e957de4..7576975328 100644 --- a/docset/winserver2016-ps/hyper-v/Set-VMResourcePool.md +++ b/docset/winserver2016-ps/hyper-v/Set-VMResourcePool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmresourcepool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmresourcepool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMResourcePool --- diff --git a/docset/winserver2016-ps/hyper-v/Set-VMSan.md b/docset/winserver2016-ps/hyper-v/Set-VMSan.md index 7f8f4eb58a..7d6e054d7d 100644 --- a/docset/winserver2016-ps/hyper-v/Set-VMSan.md +++ b/docset/winserver2016-ps/hyper-v/Set-VMSan.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmsan?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmsan?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMSan --- diff --git a/docset/winserver2016-ps/hyper-v/Set-VMSecurity.md b/docset/winserver2016-ps/hyper-v/Set-VMSecurity.md index 8ec05e508c..bb24af4834 100644 --- a/docset/winserver2016-ps/hyper-v/Set-VMSecurity.md +++ b/docset/winserver2016-ps/hyper-v/Set-VMSecurity.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmsecurity?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmsecurity?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMSecurity --- diff --git a/docset/winserver2016-ps/hyper-v/Set-VMSecurityPolicy.md b/docset/winserver2016-ps/hyper-v/Set-VMSecurityPolicy.md index c1553d8973..2582a6b017 100644 --- a/docset/winserver2016-ps/hyper-v/Set-VMSecurityPolicy.md +++ b/docset/winserver2016-ps/hyper-v/Set-VMSecurityPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmsecuritypolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmsecuritypolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMSecurityPolicy --- diff --git a/docset/winserver2016-ps/hyper-v/Set-VMSwitch.md b/docset/winserver2016-ps/hyper-v/Set-VMSwitch.md index 2a202b6648..e1765d0613 100644 --- a/docset/winserver2016-ps/hyper-v/Set-VMSwitch.md +++ b/docset/winserver2016-ps/hyper-v/Set-VMSwitch.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmswitch?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmswitch?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMSwitch --- diff --git a/docset/winserver2016-ps/hyper-v/Set-VMSwitchExtensionPortFeature.md b/docset/winserver2016-ps/hyper-v/Set-VMSwitchExtensionPortFeature.md index 87aef11364..a390833353 100644 --- a/docset/winserver2016-ps/hyper-v/Set-VMSwitchExtensionPortFeature.md +++ b/docset/winserver2016-ps/hyper-v/Set-VMSwitchExtensionPortFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmswitchextensionportfeature?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmswitchextensionportfeature?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMSwitchExtensionPortFeature --- diff --git a/docset/winserver2016-ps/hyper-v/Set-VMSwitchExtensionSwitchFeature.md b/docset/winserver2016-ps/hyper-v/Set-VMSwitchExtensionSwitchFeature.md index c4b736973a..88f0fbfe81 100644 --- a/docset/winserver2016-ps/hyper-v/Set-VMSwitchExtensionSwitchFeature.md +++ b/docset/winserver2016-ps/hyper-v/Set-VMSwitchExtensionSwitchFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmswitchextensionswitchfeature?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmswitchextensionswitchfeature?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMSwitchExtensionSwitchFeature --- diff --git a/docset/winserver2016-ps/hyper-v/Set-VMSwitchTeam.md b/docset/winserver2016-ps/hyper-v/Set-VMSwitchTeam.md index 0bf849018f..9e772570a1 100644 --- a/docset/winserver2016-ps/hyper-v/Set-VMSwitchTeam.md +++ b/docset/winserver2016-ps/hyper-v/Set-VMSwitchTeam.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmswitchteam?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmswitchteam?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMSwitchTeam --- diff --git a/docset/winserver2016-ps/hyper-v/Set-VMVideo.md b/docset/winserver2016-ps/hyper-v/Set-VMVideo.md index a62981166a..b23f2ee456 100644 --- a/docset/winserver2016-ps/hyper-v/Set-VMVideo.md +++ b/docset/winserver2016-ps/hyper-v/Set-VMVideo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmvideo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmvideo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMVideo --- diff --git a/docset/winserver2016-ps/hyper-v/Set-VmNetworkAdapterIsolation.md b/docset/winserver2016-ps/hyper-v/Set-VmNetworkAdapterIsolation.md index 86f023ace1..68604ddd5d 100644 --- a/docset/winserver2016-ps/hyper-v/Set-VmNetworkAdapterIsolation.md +++ b/docset/winserver2016-ps/hyper-v/Set-VmNetworkAdapterIsolation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmnetworkadapterisolation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmnetworkadapterisolation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VmNetworkAdapterIsolation --- diff --git a/docset/winserver2016-ps/hyper-v/Set-VmNetworkAdapterRoutingDomainMapping.md b/docset/winserver2016-ps/hyper-v/Set-VmNetworkAdapterRoutingDomainMapping.md index 16258aff0f..8a3ae3a280 100644 --- a/docset/winserver2016-ps/hyper-v/Set-VmNetworkAdapterRoutingDomainMapping.md +++ b/docset/winserver2016-ps/hyper-v/Set-VmNetworkAdapterRoutingDomainMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmnetworkadapterroutingdomainmapping?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmnetworkadapterroutingdomainmapping?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VmNetworkAdapterRoutingDomainMapping --- diff --git a/docset/winserver2016-ps/hyper-v/Start-VM.md b/docset/winserver2016-ps/hyper-v/Start-VM.md index 6e6dc78896..0012ccd7a0 100644 --- a/docset/winserver2016-ps/hyper-v/Start-VM.md +++ b/docset/winserver2016-ps/hyper-v/Start-VM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/start-vm?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/start-vm?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-VM --- diff --git a/docset/winserver2016-ps/hyper-v/Start-VMFailover.md b/docset/winserver2016-ps/hyper-v/Start-VMFailover.md index 77b21bcdbe..9d4be97799 100644 --- a/docset/winserver2016-ps/hyper-v/Start-VMFailover.md +++ b/docset/winserver2016-ps/hyper-v/Start-VMFailover.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/start-vmfailover?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/start-vmfailover?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-VMFailover --- diff --git a/docset/winserver2016-ps/hyper-v/Start-VMInitialReplication.md b/docset/winserver2016-ps/hyper-v/Start-VMInitialReplication.md index 51b88ce87f..6fe3d7ff20 100644 --- a/docset/winserver2016-ps/hyper-v/Start-VMInitialReplication.md +++ b/docset/winserver2016-ps/hyper-v/Start-VMInitialReplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/start-vminitialreplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/start-vminitialreplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-VMInitialReplication --- diff --git a/docset/winserver2016-ps/hyper-v/Start-VMTrace.md b/docset/winserver2016-ps/hyper-v/Start-VMTrace.md index 5cb042d273..fc173c20c6 100644 --- a/docset/winserver2016-ps/hyper-v/Start-VMTrace.md +++ b/docset/winserver2016-ps/hyper-v/Start-VMTrace.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/start-vmtrace?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/start-vmtrace?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-VMTrace --- diff --git a/docset/winserver2016-ps/hyper-v/Stop-VM.md b/docset/winserver2016-ps/hyper-v/Stop-VM.md index b815059701..5028bdde6e 100644 --- a/docset/winserver2016-ps/hyper-v/Stop-VM.md +++ b/docset/winserver2016-ps/hyper-v/Stop-VM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/stop-vm?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/stop-vm?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-VM --- diff --git a/docset/winserver2016-ps/hyper-v/Stop-VMFailover.md b/docset/winserver2016-ps/hyper-v/Stop-VMFailover.md index 6e1c369a4a..f4e86e0893 100644 --- a/docset/winserver2016-ps/hyper-v/Stop-VMFailover.md +++ b/docset/winserver2016-ps/hyper-v/Stop-VMFailover.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/stop-vmfailover?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/stop-vmfailover?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-VMFailover --- diff --git a/docset/winserver2016-ps/hyper-v/Stop-VMInitialReplication.md b/docset/winserver2016-ps/hyper-v/Stop-VMInitialReplication.md index 0dd025dad6..d29b62be7d 100644 --- a/docset/winserver2016-ps/hyper-v/Stop-VMInitialReplication.md +++ b/docset/winserver2016-ps/hyper-v/Stop-VMInitialReplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/stop-vminitialreplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/stop-vminitialreplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-VMInitialReplication --- diff --git a/docset/winserver2016-ps/hyper-v/Stop-VMReplication.md b/docset/winserver2016-ps/hyper-v/Stop-VMReplication.md index 8e990907d1..76c992fff6 100644 --- a/docset/winserver2016-ps/hyper-v/Stop-VMReplication.md +++ b/docset/winserver2016-ps/hyper-v/Stop-VMReplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/stop-vmreplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/stop-vmreplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-VMReplication --- diff --git a/docset/winserver2016-ps/hyper-v/Stop-VMTrace.md b/docset/winserver2016-ps/hyper-v/Stop-VMTrace.md index 00753aa57b..ca47cb1791 100644 --- a/docset/winserver2016-ps/hyper-v/Stop-VMTrace.md +++ b/docset/winserver2016-ps/hyper-v/Stop-VMTrace.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/stop-vmtrace?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/stop-vmtrace?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-VMTrace --- diff --git a/docset/winserver2016-ps/hyper-v/Suspend-VM.md b/docset/winserver2016-ps/hyper-v/Suspend-VM.md index 4056d8f84c..bee1741c6d 100644 --- a/docset/winserver2016-ps/hyper-v/Suspend-VM.md +++ b/docset/winserver2016-ps/hyper-v/Suspend-VM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/suspend-vm?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/suspend-vm?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-VM --- diff --git a/docset/winserver2016-ps/hyper-v/Suspend-VMReplication.md b/docset/winserver2016-ps/hyper-v/Suspend-VMReplication.md index c149b9bc62..2ea67fd766 100644 --- a/docset/winserver2016-ps/hyper-v/Suspend-VMReplication.md +++ b/docset/winserver2016-ps/hyper-v/Suspend-VMReplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/suspend-vmreplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/suspend-vmreplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-VMReplication --- diff --git a/docset/winserver2016-ps/hyper-v/Test-VHD.md b/docset/winserver2016-ps/hyper-v/Test-VHD.md index 7229f36ab3..1d2175540e 100644 --- a/docset/winserver2016-ps/hyper-v/Test-VHD.md +++ b/docset/winserver2016-ps/hyper-v/Test-VHD.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/test-vhd?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/test-vhd?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-VHD --- diff --git a/docset/winserver2016-ps/hyper-v/Test-VMNetworkAdapter.md b/docset/winserver2016-ps/hyper-v/Test-VMNetworkAdapter.md index b883636eee..3fa2d18841 100644 --- a/docset/winserver2016-ps/hyper-v/Test-VMNetworkAdapter.md +++ b/docset/winserver2016-ps/hyper-v/Test-VMNetworkAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/test-vmnetworkadapter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/test-vmnetworkadapter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-VMNetworkAdapter --- diff --git a/docset/winserver2016-ps/hyper-v/Test-VMReplicationConnection.md b/docset/winserver2016-ps/hyper-v/Test-VMReplicationConnection.md index 27c7d0eefa..a1cb6cf7bf 100644 --- a/docset/winserver2016-ps/hyper-v/Test-VMReplicationConnection.md +++ b/docset/winserver2016-ps/hyper-v/Test-VMReplicationConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/test-vmreplicationconnection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/test-vmreplicationconnection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-VMReplicationConnection --- diff --git a/docset/winserver2016-ps/hyper-v/Update-VMVersion.md b/docset/winserver2016-ps/hyper-v/Update-VMVersion.md index 71b0bf3cf5..82c87c8aac 100644 --- a/docset/winserver2016-ps/hyper-v/Update-VMVersion.md +++ b/docset/winserver2016-ps/hyper-v/Update-VMVersion.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/update-vmversion?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/update-vmversion?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-VMVersion --- diff --git a/docset/winserver2016-ps/iisadministration/Clear-IISCentralCertProvider.md b/docset/winserver2016-ps/iisadministration/Clear-IISCentralCertProvider.md index 64fd71c51e..ddc2d6d6a8 100644 --- a/docset/winserver2016-ps/iisadministration/Clear-IISCentralCertProvider.md +++ b/docset/winserver2016-ps/iisadministration/Clear-IISCentralCertProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/clear-iiscentralcertprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/clear-iiscentralcertprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-IISCentralCertProvider --- diff --git a/docset/winserver2016-ps/iisadministration/Clear-IISConfigCollection.md b/docset/winserver2016-ps/iisadministration/Clear-IISConfigCollection.md index 819fc83f4a..59be37da03 100644 --- a/docset/winserver2016-ps/iisadministration/Clear-IISConfigCollection.md +++ b/docset/winserver2016-ps/iisadministration/Clear-IISConfigCollection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/clear-iisconfigcollection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/clear-iisconfigcollection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-IISConfigCollection --- diff --git a/docset/winserver2016-ps/iisadministration/Disable-IISCentralCertProvider.md b/docset/winserver2016-ps/iisadministration/Disable-IISCentralCertProvider.md index 4dca8ad944..c2d75e2df6 100644 --- a/docset/winserver2016-ps/iisadministration/Disable-IISCentralCertProvider.md +++ b/docset/winserver2016-ps/iisadministration/Disable-IISCentralCertProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/disable-iiscentralcertprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/disable-iiscentralcertprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-IISCentralCertProvider --- diff --git a/docset/winserver2016-ps/iisadministration/Disable-IISSharedConfig.md b/docset/winserver2016-ps/iisadministration/Disable-IISSharedConfig.md index 433779ec6f..e5c543a782 100644 --- a/docset/winserver2016-ps/iisadministration/Disable-IISSharedConfig.md +++ b/docset/winserver2016-ps/iisadministration/Disable-IISSharedConfig.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/disable-iissharedconfig?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/disable-iissharedconfig?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-IISSharedConfig --- diff --git a/docset/winserver2016-ps/iisadministration/Enable-IISCentralCertProvider.md b/docset/winserver2016-ps/iisadministration/Enable-IISCentralCertProvider.md index d3bc3163e8..c68cf050cb 100644 --- a/docset/winserver2016-ps/iisadministration/Enable-IISCentralCertProvider.md +++ b/docset/winserver2016-ps/iisadministration/Enable-IISCentralCertProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/enable-iiscentralcertprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/enable-iiscentralcertprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-IISCentralCertProvider --- diff --git a/docset/winserver2016-ps/iisadministration/Enable-IISSharedConfig.md b/docset/winserver2016-ps/iisadministration/Enable-IISSharedConfig.md index 13ac8a9252..36dc98bc63 100644 --- a/docset/winserver2016-ps/iisadministration/Enable-IISSharedConfig.md +++ b/docset/winserver2016-ps/iisadministration/Enable-IISSharedConfig.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/enable-iissharedconfig?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/enable-iissharedconfig?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-IISSharedConfig --- diff --git a/docset/winserver2016-ps/iisadministration/Export-IISConfiguration.md b/docset/winserver2016-ps/iisadministration/Export-IISConfiguration.md index bc89b96086..df06e64547 100644 --- a/docset/winserver2016-ps/iisadministration/Export-IISConfiguration.md +++ b/docset/winserver2016-ps/iisadministration/Export-IISConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/export-iisconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/export-iisconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-IISConfiguration --- diff --git a/docset/winserver2016-ps/iisadministration/Get-IISAppPool.md b/docset/winserver2016-ps/iisadministration/Get-IISAppPool.md index 4f570c610b..67a61c6638 100644 --- a/docset/winserver2016-ps/iisadministration/Get-IISAppPool.md +++ b/docset/winserver2016-ps/iisadministration/Get-IISAppPool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/get-iisapppool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/get-iisapppool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IISAppPool --- diff --git a/docset/winserver2016-ps/iisadministration/Get-IISCentralCertProvider.md b/docset/winserver2016-ps/iisadministration/Get-IISCentralCertProvider.md index a0a6e069a8..0cfc4b5f03 100644 --- a/docset/winserver2016-ps/iisadministration/Get-IISCentralCertProvider.md +++ b/docset/winserver2016-ps/iisadministration/Get-IISCentralCertProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/get-iiscentralcertprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/get-iiscentralcertprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IISCentralCertProvider --- diff --git a/docset/winserver2016-ps/iisadministration/Get-IISConfigAttributeValue.md b/docset/winserver2016-ps/iisadministration/Get-IISConfigAttributeValue.md index bad866582b..ef6b537793 100644 --- a/docset/winserver2016-ps/iisadministration/Get-IISConfigAttributeValue.md +++ b/docset/winserver2016-ps/iisadministration/Get-IISConfigAttributeValue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/get-iisconfigattributevalue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/get-iisconfigattributevalue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IISConfigAttributeValue --- diff --git a/docset/winserver2016-ps/iisadministration/Get-IISConfigCollection.md b/docset/winserver2016-ps/iisadministration/Get-IISConfigCollection.md index 69e74c069e..6ceb31b809 100644 --- a/docset/winserver2016-ps/iisadministration/Get-IISConfigCollection.md +++ b/docset/winserver2016-ps/iisadministration/Get-IISConfigCollection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/get-iisconfigcollection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/get-iisconfigcollection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IISConfigCollection --- diff --git a/docset/winserver2016-ps/iisadministration/Get-IISConfigCollectionElement.md b/docset/winserver2016-ps/iisadministration/Get-IISConfigCollectionElement.md index ae8107393b..b2bba339b4 100644 --- a/docset/winserver2016-ps/iisadministration/Get-IISConfigCollectionElement.md +++ b/docset/winserver2016-ps/iisadministration/Get-IISConfigCollectionElement.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/get-iisconfigcollectionelement?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/get-iisconfigcollectionelement?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IISConfigCollectionElement --- diff --git a/docset/winserver2016-ps/iisadministration/Get-IISConfigElement.md b/docset/winserver2016-ps/iisadministration/Get-IISConfigElement.md index 465fbea163..c7d4804eec 100644 --- a/docset/winserver2016-ps/iisadministration/Get-IISConfigElement.md +++ b/docset/winserver2016-ps/iisadministration/Get-IISConfigElement.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/get-iisconfigelement?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/get-iisconfigelement?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IISConfigElement --- diff --git a/docset/winserver2016-ps/iisadministration/Get-IISConfigSection.md b/docset/winserver2016-ps/iisadministration/Get-IISConfigSection.md index 42dd59111f..a7ce2a98b1 100644 --- a/docset/winserver2016-ps/iisadministration/Get-IISConfigSection.md +++ b/docset/winserver2016-ps/iisadministration/Get-IISConfigSection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/get-iisconfigsection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/get-iisconfigsection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IISConfigSection --- diff --git a/docset/winserver2016-ps/iisadministration/Get-IISServerManager.md b/docset/winserver2016-ps/iisadministration/Get-IISServerManager.md index 49b997892c..1d97acd1f0 100644 --- a/docset/winserver2016-ps/iisadministration/Get-IISServerManager.md +++ b/docset/winserver2016-ps/iisadministration/Get-IISServerManager.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/get-iisservermanager?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/get-iisservermanager?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IISServerManager --- diff --git a/docset/winserver2016-ps/iisadministration/Get-IISSharedConfig.md b/docset/winserver2016-ps/iisadministration/Get-IISSharedConfig.md index f524419272..0c391aeae4 100644 --- a/docset/winserver2016-ps/iisadministration/Get-IISSharedConfig.md +++ b/docset/winserver2016-ps/iisadministration/Get-IISSharedConfig.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/get-iissharedconfig?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/get-iissharedconfig?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IISSharedConfig --- diff --git a/docset/winserver2016-ps/iisadministration/Get-IISSite.md b/docset/winserver2016-ps/iisadministration/Get-IISSite.md index 51d3e09466..58ed264343 100644 --- a/docset/winserver2016-ps/iisadministration/Get-IISSite.md +++ b/docset/winserver2016-ps/iisadministration/Get-IISSite.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/get-iissite?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/get-iissite?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IISSite --- diff --git a/docset/winserver2016-ps/iisadministration/Get-IISSiteBinding.md b/docset/winserver2016-ps/iisadministration/Get-IISSiteBinding.md index 891f60ce21..505a87fe57 100644 --- a/docset/winserver2016-ps/iisadministration/Get-IISSiteBinding.md +++ b/docset/winserver2016-ps/iisadministration/Get-IISSiteBinding.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration -online version: https://docs.microsoft.com/powershell/module/iisadministration/get-iissitebinding?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/get-iissitebinding?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IISSiteBinding --- diff --git a/docset/winserver2016-ps/iisadministration/New-IISConfigCollectionElement.md b/docset/winserver2016-ps/iisadministration/New-IISConfigCollectionElement.md index 2d59ee36db..50e12152c7 100644 --- a/docset/winserver2016-ps/iisadministration/New-IISConfigCollectionElement.md +++ b/docset/winserver2016-ps/iisadministration/New-IISConfigCollectionElement.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/new-iisconfigcollectionelement?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/new-iisconfigcollectionelement?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-IISConfigCollectionElement --- diff --git a/docset/winserver2016-ps/iisadministration/New-IISSite.md b/docset/winserver2016-ps/iisadministration/New-IISSite.md index c115bf0817..85d71de749 100644 --- a/docset/winserver2016-ps/iisadministration/New-IISSite.md +++ b/docset/winserver2016-ps/iisadministration/New-IISSite.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/new-iissite?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/new-iissite?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-IISSite --- diff --git a/docset/winserver2016-ps/iisadministration/New-IISSiteBinding.md b/docset/winserver2016-ps/iisadministration/New-IISSiteBinding.md index ff4bfd3337..ad77f73195 100644 --- a/docset/winserver2016-ps/iisadministration/New-IISSiteBinding.md +++ b/docset/winserver2016-ps/iisadministration/New-IISSiteBinding.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration -online version: https://docs.microsoft.com/powershell/module/iisadministration/new-iissitebinding?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/new-iissitebinding?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-IISSiteBinding --- diff --git a/docset/winserver2016-ps/iisadministration/Remove-IISConfigAttribute.md b/docset/winserver2016-ps/iisadministration/Remove-IISConfigAttribute.md index 30d73a27fb..718e76f2ef 100644 --- a/docset/winserver2016-ps/iisadministration/Remove-IISConfigAttribute.md +++ b/docset/winserver2016-ps/iisadministration/Remove-IISConfigAttribute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/remove-iisconfigattribute?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/remove-iisconfigattribute?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IISConfigAttribute --- diff --git a/docset/winserver2016-ps/iisadministration/Remove-IISConfigCollectionElement.md b/docset/winserver2016-ps/iisadministration/Remove-IISConfigCollectionElement.md index 9c1de74565..c6e57ffb2e 100644 --- a/docset/winserver2016-ps/iisadministration/Remove-IISConfigCollectionElement.md +++ b/docset/winserver2016-ps/iisadministration/Remove-IISConfigCollectionElement.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/remove-iisconfigcollectionelement?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/remove-iisconfigcollectionelement?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IISConfigCollectionElement --- diff --git a/docset/winserver2016-ps/iisadministration/Remove-IISConfigElement.md b/docset/winserver2016-ps/iisadministration/Remove-IISConfigElement.md index 6cc51fc92b..719ed93b41 100644 --- a/docset/winserver2016-ps/iisadministration/Remove-IISConfigElement.md +++ b/docset/winserver2016-ps/iisadministration/Remove-IISConfigElement.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/remove-iisconfigelement?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/remove-iisconfigelement?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IISConfigElement --- diff --git a/docset/winserver2016-ps/iisadministration/Remove-IISSite.md b/docset/winserver2016-ps/iisadministration/Remove-IISSite.md index dbe716207a..94eaa2db22 100644 --- a/docset/winserver2016-ps/iisadministration/Remove-IISSite.md +++ b/docset/winserver2016-ps/iisadministration/Remove-IISSite.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/remove-iissite?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/remove-iissite?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IISSite --- diff --git a/docset/winserver2016-ps/iisadministration/Remove-IISSiteBinding.md b/docset/winserver2016-ps/iisadministration/Remove-IISSiteBinding.md index 125d28ec43..101c3bdad5 100644 --- a/docset/winserver2016-ps/iisadministration/Remove-IISSiteBinding.md +++ b/docset/winserver2016-ps/iisadministration/Remove-IISSiteBinding.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration -online version: https://docs.microsoft.com/powershell/module/iisadministration/remove-iissitebinding?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/remove-iissitebinding?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IISSiteBinding --- diff --git a/docset/winserver2016-ps/iisadministration/Reset-IISServerManager.md b/docset/winserver2016-ps/iisadministration/Reset-IISServerManager.md index 74bdf56b06..60dc10f934 100644 --- a/docset/winserver2016-ps/iisadministration/Reset-IISServerManager.md +++ b/docset/winserver2016-ps/iisadministration/Reset-IISServerManager.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/reset-iisservermanager?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/reset-iisservermanager?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-IISServerManager --- diff --git a/docset/winserver2016-ps/iisadministration/Set-IISCentralCertProvider.md b/docset/winserver2016-ps/iisadministration/Set-IISCentralCertProvider.md index 7750472ec1..ba6c655ffc 100644 --- a/docset/winserver2016-ps/iisadministration/Set-IISCentralCertProvider.md +++ b/docset/winserver2016-ps/iisadministration/Set-IISCentralCertProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/set-iiscentralcertprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/set-iiscentralcertprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IISCentralCertProvider --- diff --git a/docset/winserver2016-ps/iisadministration/Set-IISCentralCertProviderCredential.md b/docset/winserver2016-ps/iisadministration/Set-IISCentralCertProviderCredential.md index 35cb489cfc..04f93c2a52 100644 --- a/docset/winserver2016-ps/iisadministration/Set-IISCentralCertProviderCredential.md +++ b/docset/winserver2016-ps/iisadministration/Set-IISCentralCertProviderCredential.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/set-iiscentralcertprovidercredential?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/set-iiscentralcertprovidercredential?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IISCentralCertProviderCredential --- diff --git a/docset/winserver2016-ps/iisadministration/Set-IISConfigAttributeValue.md b/docset/winserver2016-ps/iisadministration/Set-IISConfigAttributeValue.md index c80c75f396..b6650266b3 100644 --- a/docset/winserver2016-ps/iisadministration/Set-IISConfigAttributeValue.md +++ b/docset/winserver2016-ps/iisadministration/Set-IISConfigAttributeValue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/set-iisconfigattributevalue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/set-iisconfigattributevalue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IISConfigAttributeValue --- diff --git a/docset/winserver2016-ps/iisadministration/Start-IISCommitDelay.md b/docset/winserver2016-ps/iisadministration/Start-IISCommitDelay.md index cdeca7d544..5b1f4d6ec4 100644 --- a/docset/winserver2016-ps/iisadministration/Start-IISCommitDelay.md +++ b/docset/winserver2016-ps/iisadministration/Start-IISCommitDelay.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/start-iiscommitdelay?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/start-iiscommitdelay?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-IISCommitDelay --- diff --git a/docset/winserver2016-ps/iisadministration/Start-IISSite.md b/docset/winserver2016-ps/iisadministration/Start-IISSite.md index 7a52d78ee7..d0f07f04ee 100644 --- a/docset/winserver2016-ps/iisadministration/Start-IISSite.md +++ b/docset/winserver2016-ps/iisadministration/Start-IISSite.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/start-iissite?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/start-iissite?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-IISSite --- diff --git a/docset/winserver2016-ps/iisadministration/Stop-IISCommitDelay.md b/docset/winserver2016-ps/iisadministration/Stop-IISCommitDelay.md index ed0c338de0..f73f4ba55f 100644 --- a/docset/winserver2016-ps/iisadministration/Stop-IISCommitDelay.md +++ b/docset/winserver2016-ps/iisadministration/Stop-IISCommitDelay.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/stop-iiscommitdelay?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/stop-iiscommitdelay?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-IISCommitDelay --- diff --git a/docset/winserver2016-ps/iisadministration/Stop-IISSite.md b/docset/winserver2016-ps/iisadministration/Stop-IISSite.md index 3d459bc55c..19bd3826c2 100644 --- a/docset/winserver2016-ps/iisadministration/Stop-IISSite.md +++ b/docset/winserver2016-ps/iisadministration/Stop-IISSite.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/stop-iissite?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/stop-iissite?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-IISSite --- diff --git a/docset/winserver2016-ps/international/Get-WinAcceptLanguageFromLanguageListOptOut.md b/docset/winserver2016-ps/international/Get-WinAcceptLanguageFromLanguageListOptOut.md index e38e6f3b32..f5410c0a1f 100644 --- a/docset/winserver2016-ps/international/Get-WinAcceptLanguageFromLanguageListOptOut.md +++ b/docset/winserver2016-ps/international/Get-WinAcceptLanguageFromLanguageListOptOut.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/international/get-winacceptlanguagefromlanguagelistoptout?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/get-winacceptlanguagefromlanguagelistoptout?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WinAcceptLanguageFromLanguageListOptOut --- diff --git a/docset/winserver2016-ps/international/Get-WinCultureFromLanguageListOptOut.md b/docset/winserver2016-ps/international/Get-WinCultureFromLanguageListOptOut.md index 910ae6e30b..ad34a2e515 100644 --- a/docset/winserver2016-ps/international/Get-WinCultureFromLanguageListOptOut.md +++ b/docset/winserver2016-ps/international/Get-WinCultureFromLanguageListOptOut.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/international/get-winculturefromlanguagelistoptout?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/get-winculturefromlanguagelistoptout?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WinCultureFromLanguageListOptOut --- diff --git a/docset/winserver2016-ps/international/Get-WinDefaultInputMethodOverride.md b/docset/winserver2016-ps/international/Get-WinDefaultInputMethodOverride.md index 7ab900a3d6..8640a2f08e 100644 --- a/docset/winserver2016-ps/international/Get-WinDefaultInputMethodOverride.md +++ b/docset/winserver2016-ps/international/Get-WinDefaultInputMethodOverride.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/international/get-windefaultinputmethodoverride?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/get-windefaultinputmethodoverride?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WinDefaultInputMethodOverride --- diff --git a/docset/winserver2016-ps/international/Get-WinHomeLocation.md b/docset/winserver2016-ps/international/Get-WinHomeLocation.md index 873a19447f..c7f4922374 100644 --- a/docset/winserver2016-ps/international/Get-WinHomeLocation.md +++ b/docset/winserver2016-ps/international/Get-WinHomeLocation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/international/get-winhomelocation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/get-winhomelocation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WinHomeLocation --- diff --git a/docset/winserver2016-ps/international/Get-WinLanguageBarOption.md b/docset/winserver2016-ps/international/Get-WinLanguageBarOption.md index 9b34dee77c..f72e529e2c 100644 --- a/docset/winserver2016-ps/international/Get-WinLanguageBarOption.md +++ b/docset/winserver2016-ps/international/Get-WinLanguageBarOption.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/international/get-winlanguagebaroption?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/get-winlanguagebaroption?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WinLanguageBarOption --- diff --git a/docset/winserver2016-ps/international/Get-WinSystemLocale.md b/docset/winserver2016-ps/international/Get-WinSystemLocale.md index 4745044042..4367455185 100644 --- a/docset/winserver2016-ps/international/Get-WinSystemLocale.md +++ b/docset/winserver2016-ps/international/Get-WinSystemLocale.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/international/get-winsystemlocale?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/get-winsystemlocale?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WinSystemLocale --- diff --git a/docset/winserver2016-ps/international/Get-WinUILanguageOverride.md b/docset/winserver2016-ps/international/Get-WinUILanguageOverride.md index 5493a7abb4..3dc856b5e8 100644 --- a/docset/winserver2016-ps/international/Get-WinUILanguageOverride.md +++ b/docset/winserver2016-ps/international/Get-WinUILanguageOverride.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/international/get-winuilanguageoverride?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/get-winuilanguageoverride?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WinUILanguageOverride --- diff --git a/docset/winserver2016-ps/international/Get-WinUserLanguageList.md b/docset/winserver2016-ps/international/Get-WinUserLanguageList.md index 997940e2ca..5a105c4466 100644 --- a/docset/winserver2016-ps/international/Get-WinUserLanguageList.md +++ b/docset/winserver2016-ps/international/Get-WinUserLanguageList.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/international/get-winuserlanguagelist?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/get-winuserlanguagelist?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WinUserLanguageList --- diff --git a/docset/winserver2016-ps/international/New-WinUserLanguageList.md b/docset/winserver2016-ps/international/New-WinUserLanguageList.md index e2fa00306a..3cb6e4d9f8 100644 --- a/docset/winserver2016-ps/international/New-WinUserLanguageList.md +++ b/docset/winserver2016-ps/international/New-WinUserLanguageList.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/international/new-winuserlanguagelist?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/new-winuserlanguagelist?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WinUserLanguageList --- diff --git a/docset/winserver2016-ps/international/Set-Culture.md b/docset/winserver2016-ps/international/Set-Culture.md index 49306eb95a..e11caa1b18 100644 --- a/docset/winserver2016-ps/international/Set-Culture.md +++ b/docset/winserver2016-ps/international/Set-Culture.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/international/set-culture?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/set-culture?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-Culture --- diff --git a/docset/winserver2016-ps/international/Set-WinAcceptLanguageFromLanguageListOptOut.md b/docset/winserver2016-ps/international/Set-WinAcceptLanguageFromLanguageListOptOut.md index 0c9c0aafb0..64035678f8 100644 --- a/docset/winserver2016-ps/international/Set-WinAcceptLanguageFromLanguageListOptOut.md +++ b/docset/winserver2016-ps/international/Set-WinAcceptLanguageFromLanguageListOptOut.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/international/set-winacceptlanguagefromlanguagelistoptout?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/set-winacceptlanguagefromlanguagelistoptout?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WinAcceptLanguageFromLanguageListOptOut --- diff --git a/docset/winserver2016-ps/international/Set-WinCultureFromLanguageListOptOut.md b/docset/winserver2016-ps/international/Set-WinCultureFromLanguageListOptOut.md index a30c896520..e516976a0e 100644 --- a/docset/winserver2016-ps/international/Set-WinCultureFromLanguageListOptOut.md +++ b/docset/winserver2016-ps/international/Set-WinCultureFromLanguageListOptOut.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/international/set-winculturefromlanguagelistoptout?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/set-winculturefromlanguagelistoptout?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WinCultureFromLanguageListOptOut --- diff --git a/docset/winserver2016-ps/international/Set-WinDefaultInputMethodOverride.md b/docset/winserver2016-ps/international/Set-WinDefaultInputMethodOverride.md index 3a59d9bba7..3bc29f9475 100644 --- a/docset/winserver2016-ps/international/Set-WinDefaultInputMethodOverride.md +++ b/docset/winserver2016-ps/international/Set-WinDefaultInputMethodOverride.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/international/set-windefaultinputmethodoverride?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/set-windefaultinputmethodoverride?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WinDefaultInputMethodOverride --- diff --git a/docset/winserver2016-ps/international/Set-WinHomeLocation.md b/docset/winserver2016-ps/international/Set-WinHomeLocation.md index 4929ca2078..0614dae9af 100644 --- a/docset/winserver2016-ps/international/Set-WinHomeLocation.md +++ b/docset/winserver2016-ps/international/Set-WinHomeLocation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/international/set-winhomelocation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/set-winhomelocation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WinHomeLocation --- diff --git a/docset/winserver2016-ps/international/Set-WinLanguageBarOption.md b/docset/winserver2016-ps/international/Set-WinLanguageBarOption.md index 2d67453bd6..d7567dea5d 100644 --- a/docset/winserver2016-ps/international/Set-WinLanguageBarOption.md +++ b/docset/winserver2016-ps/international/Set-WinLanguageBarOption.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/international/set-winlanguagebaroption?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/set-winlanguagebaroption?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WinLanguageBarOption --- diff --git a/docset/winserver2016-ps/international/Set-WinSystemLocale.md b/docset/winserver2016-ps/international/Set-WinSystemLocale.md index f3e6a6d18e..cd0b924d87 100644 --- a/docset/winserver2016-ps/international/Set-WinSystemLocale.md +++ b/docset/winserver2016-ps/international/Set-WinSystemLocale.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/international/set-winsystemlocale?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/set-winsystemlocale?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WinSystemLocale --- diff --git a/docset/winserver2016-ps/international/Set-WinUILanguageOverride.md b/docset/winserver2016-ps/international/Set-WinUILanguageOverride.md index f2b0c48fe5..27938d26c4 100644 --- a/docset/winserver2016-ps/international/Set-WinUILanguageOverride.md +++ b/docset/winserver2016-ps/international/Set-WinUILanguageOverride.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/international/set-winuilanguageoverride?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/set-winuilanguageoverride?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WinUILanguageOverride --- diff --git a/docset/winserver2016-ps/international/Set-WinUserLanguageList.md b/docset/winserver2016-ps/international/Set-WinUserLanguageList.md index dcae8f0ded..900dc4cc26 100644 --- a/docset/winserver2016-ps/international/Set-WinUserLanguageList.md +++ b/docset/winserver2016-ps/international/Set-WinUserLanguageList.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/international/set-winuserlanguagelist?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/set-winuserlanguagelist?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WinUserLanguageList --- diff --git a/docset/winserver2016-ps/ipamserver/Add-IpamAddress.md b/docset/winserver2016-ps/ipamserver/Add-IpamAddress.md index 2394b1ea3a..4091f90497 100644 --- a/docset/winserver2016-ps/ipamserver/Add-IpamAddress.md +++ b/docset/winserver2016-ps/ipamserver/Add-IpamAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamAddress.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/add-ipamaddress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/add-ipamaddress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-IpamAddress --- diff --git a/docset/winserver2016-ps/ipamserver/Add-IpamAddressSpace.md b/docset/winserver2016-ps/ipamserver/Add-IpamAddressSpace.md index 7e0fb8a9b5..5e7c4b0be8 100644 --- a/docset/winserver2016-ps/ipamserver/Add-IpamAddressSpace.md +++ b/docset/winserver2016-ps/ipamserver/Add-IpamAddressSpace.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamAddressSpace.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/add-ipamaddressspace?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/add-ipamaddressspace?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-IpamAddressSpace --- diff --git a/docset/winserver2016-ps/ipamserver/Add-IpamBlock.md b/docset/winserver2016-ps/ipamserver/Add-IpamBlock.md index c061d4d73e..6fd81c19f3 100644 --- a/docset/winserver2016-ps/ipamserver/Add-IpamBlock.md +++ b/docset/winserver2016-ps/ipamserver/Add-IpamBlock.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamBlock.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/add-ipamblock?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/add-ipamblock?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-IpamBlock --- diff --git a/docset/winserver2016-ps/ipamserver/Add-IpamCustomField.md b/docset/winserver2016-ps/ipamserver/Add-IpamCustomField.md index df7a954340..f6ee2204c0 100644 --- a/docset/winserver2016-ps/ipamserver/Add-IpamCustomField.md +++ b/docset/winserver2016-ps/ipamserver/Add-IpamCustomField.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamCustomField.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/add-ipamcustomfield?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/add-ipamcustomfield?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-IpamCustomField --- diff --git a/docset/winserver2016-ps/ipamserver/Add-IpamCustomFieldAssociation.md b/docset/winserver2016-ps/ipamserver/Add-IpamCustomFieldAssociation.md index 770fc503cb..6c018b6087 100644 --- a/docset/winserver2016-ps/ipamserver/Add-IpamCustomFieldAssociation.md +++ b/docset/winserver2016-ps/ipamserver/Add-IpamCustomFieldAssociation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamCustomFieldAssociation.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/add-ipamcustomfieldassociation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/add-ipamcustomfieldassociation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-IpamCustomFieldAssociation --- diff --git a/docset/winserver2016-ps/ipamserver/Add-IpamCustomValue.md b/docset/winserver2016-ps/ipamserver/Add-IpamCustomValue.md index 43b6047bca..06c08a8bda 100644 --- a/docset/winserver2016-ps/ipamserver/Add-IpamCustomValue.md +++ b/docset/winserver2016-ps/ipamserver/Add-IpamCustomValue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamCustomValue.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/add-ipamcustomvalue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/add-ipamcustomvalue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-IpamCustomValue --- diff --git a/docset/winserver2016-ps/ipamserver/Add-IpamDiscoveryDomain.md b/docset/winserver2016-ps/ipamserver/Add-IpamDiscoveryDomain.md index 85628aa880..6128d8558f 100644 --- a/docset/winserver2016-ps/ipamserver/Add-IpamDiscoveryDomain.md +++ b/docset/winserver2016-ps/ipamserver/Add-IpamDiscoveryDomain.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamDiscoveryDomain.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/add-ipamdiscoverydomain?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/add-ipamdiscoverydomain?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-IpamDiscoveryDomain --- diff --git a/docset/winserver2016-ps/ipamserver/Add-IpamRange.md b/docset/winserver2016-ps/ipamserver/Add-IpamRange.md index 0c94fb13b0..d4b0194b69 100644 --- a/docset/winserver2016-ps/ipamserver/Add-IpamRange.md +++ b/docset/winserver2016-ps/ipamserver/Add-IpamRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamRange.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/add-ipamrange?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/add-ipamrange?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-IpamRange --- diff --git a/docset/winserver2016-ps/ipamserver/Add-IpamServerInventory.md b/docset/winserver2016-ps/ipamserver/Add-IpamServerInventory.md index 9dd2d3d800..0429571ddd 100644 --- a/docset/winserver2016-ps/ipamserver/Add-IpamServerInventory.md +++ b/docset/winserver2016-ps/ipamserver/Add-IpamServerInventory.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamServerInventory.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/add-ipamserverinventory?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/add-ipamserverinventory?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-IpamServerInventory --- diff --git a/docset/winserver2016-ps/ipamserver/Add-IpamSubnet.md b/docset/winserver2016-ps/ipamserver/Add-IpamSubnet.md index 0721ab5029..f433fc429d 100644 --- a/docset/winserver2016-ps/ipamserver/Add-IpamSubnet.md +++ b/docset/winserver2016-ps/ipamserver/Add-IpamSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamSubnet.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/add-ipamsubnet?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/add-ipamsubnet?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-IpamSubnet --- diff --git a/docset/winserver2016-ps/ipamserver/Disable-IpamCapability.md b/docset/winserver2016-ps/ipamserver/Disable-IpamCapability.md index 3d9bfbcfc9..e58f28f5c7 100644 --- a/docset/winserver2016-ps/ipamserver/Disable-IpamCapability.md +++ b/docset/winserver2016-ps/ipamserver/Disable-IpamCapability.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamCapabilities.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/disable-ipamcapability?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/disable-ipamcapability?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-IpamCapability --- diff --git a/docset/winserver2016-ps/ipamserver/Enable-IpamCapability.md b/docset/winserver2016-ps/ipamserver/Enable-IpamCapability.md index 7cfeb922fd..df02f2f26d 100644 --- a/docset/winserver2016-ps/ipamserver/Enable-IpamCapability.md +++ b/docset/winserver2016-ps/ipamserver/Enable-IpamCapability.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamCapabilities.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/enable-ipamcapability?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/enable-ipamcapability?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-IpamCapability --- diff --git a/docset/winserver2016-ps/ipamserver/Export-IpamAddress.md b/docset/winserver2016-ps/ipamserver/Export-IpamAddress.md index ed85b33d5f..f2104d4bd5 100644 --- a/docset/winserver2016-ps/ipamserver/Export-IpamAddress.md +++ b/docset/winserver2016-ps/ipamserver/Export-IpamAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamAddress.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/export-ipamaddress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/export-ipamaddress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-IpamAddress --- diff --git a/docset/winserver2016-ps/ipamserver/Export-IpamRange.md b/docset/winserver2016-ps/ipamserver/Export-IpamRange.md index 95188dbdc0..4f3e280d3f 100644 --- a/docset/winserver2016-ps/ipamserver/Export-IpamRange.md +++ b/docset/winserver2016-ps/ipamserver/Export-IpamRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamRange.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/export-ipamrange?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/export-ipamrange?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-IpamRange --- diff --git a/docset/winserver2016-ps/ipamserver/Export-IpamSubnet.md b/docset/winserver2016-ps/ipamserver/Export-IpamSubnet.md index cd8a50ee11..f67b98ffee 100644 --- a/docset/winserver2016-ps/ipamserver/Export-IpamSubnet.md +++ b/docset/winserver2016-ps/ipamserver/Export-IpamSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamSubnet.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/export-ipamsubnet?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/export-ipamsubnet?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-IpamSubnet --- diff --git a/docset/winserver2016-ps/ipamserver/Find-IpamFreeAddress.md b/docset/winserver2016-ps/ipamserver/Find-IpamFreeAddress.md index 253e7e75aa..e56cd7f683 100644 --- a/docset/winserver2016-ps/ipamserver/Find-IpamFreeAddress.md +++ b/docset/winserver2016-ps/ipamserver/Find-IpamFreeAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamAddress.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/find-ipamfreeaddress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/find-ipamfreeaddress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Find-IpamFreeAddress --- diff --git a/docset/winserver2016-ps/ipamserver/Find-IpamFreeRange.md b/docset/winserver2016-ps/ipamserver/Find-IpamFreeRange.md index 7bc4074d02..4132125f7f 100644 --- a/docset/winserver2016-ps/ipamserver/Find-IpamFreeRange.md +++ b/docset/winserver2016-ps/ipamserver/Find-IpamFreeRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamRange.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/find-ipamfreerange?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/find-ipamfreerange?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Find-IpamFreeRange --- diff --git a/docset/winserver2016-ps/ipamserver/Find-IpamFreeSubnet.md b/docset/winserver2016-ps/ipamserver/Find-IpamFreeSubnet.md index 00bef4f7cb..6eeab52673 100644 --- a/docset/winserver2016-ps/ipamserver/Find-IpamFreeSubnet.md +++ b/docset/winserver2016-ps/ipamserver/Find-IpamFreeSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamSubnet.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/find-ipamfreesubnet?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/find-ipamfreesubnet?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Find-IpamFreeSubnet --- diff --git a/docset/winserver2016-ps/ipamserver/Get-IpamAddress.md b/docset/winserver2016-ps/ipamserver/Get-IpamAddress.md index 7675a941d0..ce3f2e7c07 100644 --- a/docset/winserver2016-ps/ipamserver/Get-IpamAddress.md +++ b/docset/winserver2016-ps/ipamserver/Get-IpamAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamAddress.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamaddress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamaddress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamAddress --- diff --git a/docset/winserver2016-ps/ipamserver/Get-IpamAddressSpace.md b/docset/winserver2016-ps/ipamserver/Get-IpamAddressSpace.md index 1ab3ce2bc5..b234c11583 100644 --- a/docset/winserver2016-ps/ipamserver/Get-IpamAddressSpace.md +++ b/docset/winserver2016-ps/ipamserver/Get-IpamAddressSpace.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamAddressSpace.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamaddressspace?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamaddressspace?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamAddressSpace --- diff --git a/docset/winserver2016-ps/ipamserver/Get-IpamAddressUtilizationThreshold.md b/docset/winserver2016-ps/ipamserver/Get-IpamAddressUtilizationThreshold.md index 85908fe91d..a64d356ffb 100644 --- a/docset/winserver2016-ps/ipamserver/Get-IpamAddressUtilizationThreshold.md +++ b/docset/winserver2016-ps/ipamserver/Get-IpamAddressUtilizationThreshold.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamAddressUtilizationThreshold.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamaddressutilizationthreshold?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamaddressutilizationthreshold?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamAddressUtilizationThreshold --- diff --git a/docset/winserver2016-ps/ipamserver/Get-IpamBlock.md b/docset/winserver2016-ps/ipamserver/Get-IpamBlock.md index 7e5558d125..8f0e21613e 100644 --- a/docset/winserver2016-ps/ipamserver/Get-IpamBlock.md +++ b/docset/winserver2016-ps/ipamserver/Get-IpamBlock.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamBlock.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamblock?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamblock?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamBlock --- diff --git a/docset/winserver2016-ps/ipamserver/Get-IpamCapability.md b/docset/winserver2016-ps/ipamserver/Get-IpamCapability.md index 09f3fb763a..5dba0288a9 100644 --- a/docset/winserver2016-ps/ipamserver/Get-IpamCapability.md +++ b/docset/winserver2016-ps/ipamserver/Get-IpamCapability.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamCapabilities.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamcapability?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamcapability?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamCapability --- diff --git a/docset/winserver2016-ps/ipamserver/Get-IpamConfiguration.md b/docset/winserver2016-ps/ipamserver/Get-IpamConfiguration.md index 014d05de80..e845b1df56 100644 --- a/docset/winserver2016-ps/ipamserver/Get-IpamConfiguration.md +++ b/docset/winserver2016-ps/ipamserver/Get-IpamConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamConfiguration.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamConfiguration --- diff --git a/docset/winserver2016-ps/ipamserver/Get-IpamConfigurationEvent.md b/docset/winserver2016-ps/ipamserver/Get-IpamConfigurationEvent.md index 721b513736..0740b5a02a 100644 --- a/docset/winserver2016-ps/ipamserver/Get-IpamConfigurationEvent.md +++ b/docset/winserver2016-ps/ipamserver/Get-IpamConfigurationEvent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamConfigurationEvent.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamconfigurationevent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamconfigurationevent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamConfigurationEvent --- diff --git a/docset/winserver2016-ps/ipamserver/Get-IpamCustomField.md b/docset/winserver2016-ps/ipamserver/Get-IpamCustomField.md index d11651e60b..83532bc600 100644 --- a/docset/winserver2016-ps/ipamserver/Get-IpamCustomField.md +++ b/docset/winserver2016-ps/ipamserver/Get-IpamCustomField.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamCustomField.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamcustomfield?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamcustomfield?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamCustomField --- diff --git a/docset/winserver2016-ps/ipamserver/Get-IpamCustomFieldAssociation.md b/docset/winserver2016-ps/ipamserver/Get-IpamCustomFieldAssociation.md index 5b37dfa2d3..ca633d0d6c 100644 --- a/docset/winserver2016-ps/ipamserver/Get-IpamCustomFieldAssociation.md +++ b/docset/winserver2016-ps/ipamserver/Get-IpamCustomFieldAssociation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamCustomFieldAssociation.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamcustomfieldassociation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamcustomfieldassociation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamCustomFieldAssociation --- diff --git a/docset/winserver2016-ps/ipamserver/Get-IpamDatabase.md b/docset/winserver2016-ps/ipamserver/Get-IpamDatabase.md index b8580e0b59..908cb8a41f 100644 --- a/docset/winserver2016-ps/ipamserver/Get-IpamDatabase.md +++ b/docset/winserver2016-ps/ipamserver/Get-IpamDatabase.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamDatabase.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamdatabase?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamdatabase?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamDatabase --- diff --git a/docset/winserver2016-ps/ipamserver/Get-IpamDhcpConfigurationEvent.md b/docset/winserver2016-ps/ipamserver/Get-IpamDhcpConfigurationEvent.md index a089c02f57..931c27481c 100644 --- a/docset/winserver2016-ps/ipamserver/Get-IpamDhcpConfigurationEvent.md +++ b/docset/winserver2016-ps/ipamserver/Get-IpamDhcpConfigurationEvent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamDhcpConfigurationEvent.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamdhcpconfigurationevent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamdhcpconfigurationevent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamDhcpConfigurationEvent --- diff --git a/docset/winserver2016-ps/ipamserver/Get-IpamDhcpScope.md b/docset/winserver2016-ps/ipamserver/Get-IpamDhcpScope.md index 6115e714ec..4e12351058 100644 --- a/docset/winserver2016-ps/ipamserver/Get-IpamDhcpScope.md +++ b/docset/winserver2016-ps/ipamserver/Get-IpamDhcpScope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamDhcpScope.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamdhcpscope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamdhcpscope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamDhcpScope --- diff --git a/docset/winserver2016-ps/ipamserver/Get-IpamDhcpServer.md b/docset/winserver2016-ps/ipamserver/Get-IpamDhcpServer.md index 7fdc8cffd6..29ee8a9fae 100644 --- a/docset/winserver2016-ps/ipamserver/Get-IpamDhcpServer.md +++ b/docset/winserver2016-ps/ipamserver/Get-IpamDhcpServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamDhcpServer.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamdhcpserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamdhcpserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamDhcpServer --- diff --git a/docset/winserver2016-ps/ipamserver/Get-IpamDhcpSuperscope.md b/docset/winserver2016-ps/ipamserver/Get-IpamDhcpSuperscope.md index c388d32508..7a34aeef85 100644 --- a/docset/winserver2016-ps/ipamserver/Get-IpamDhcpSuperscope.md +++ b/docset/winserver2016-ps/ipamserver/Get-IpamDhcpSuperscope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamDhcpSuperscope.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamdhcpsuperscope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamdhcpsuperscope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamDhcpSuperscope --- diff --git a/docset/winserver2016-ps/ipamserver/Get-IpamDiscoveryDomain.md b/docset/winserver2016-ps/ipamserver/Get-IpamDiscoveryDomain.md index af7a68b43a..44eb71b064 100644 --- a/docset/winserver2016-ps/ipamserver/Get-IpamDiscoveryDomain.md +++ b/docset/winserver2016-ps/ipamserver/Get-IpamDiscoveryDomain.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamDiscoveryDomain.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamdiscoverydomain?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamdiscoverydomain?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamDiscoveryDomain --- diff --git a/docset/winserver2016-ps/ipamserver/Get-IpamDnsConditionalForwarder.md b/docset/winserver2016-ps/ipamserver/Get-IpamDnsConditionalForwarder.md index 7f0817ab5f..821db311ad 100644 --- a/docset/winserver2016-ps/ipamserver/Get-IpamDnsConditionalForwarder.md +++ b/docset/winserver2016-ps/ipamserver/Get-IpamDnsConditionalForwarder.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamDnsConditionalForwarder.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamdnsconditionalforwarder?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamdnsconditionalforwarder?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamDnsConditionalForwarder --- diff --git a/docset/winserver2016-ps/ipamserver/Get-IpamDnsResourceRecord.md b/docset/winserver2016-ps/ipamserver/Get-IpamDnsResourceRecord.md index c179a049a0..6286388b4b 100644 --- a/docset/winserver2016-ps/ipamserver/Get-IpamDnsResourceRecord.md +++ b/docset/winserver2016-ps/ipamserver/Get-IpamDnsResourceRecord.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamDnsResourceRecord.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamdnsresourcerecord?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamdnsresourcerecord?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamDnsResourceRecord --- diff --git a/docset/winserver2016-ps/ipamserver/Get-IpamDnsServer.md b/docset/winserver2016-ps/ipamserver/Get-IpamDnsServer.md index 8444ad6f5c..8ab00d99a6 100644 --- a/docset/winserver2016-ps/ipamserver/Get-IpamDnsServer.md +++ b/docset/winserver2016-ps/ipamserver/Get-IpamDnsServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamDnsServer.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamdnsserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamdnsserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamDnsServer --- diff --git a/docset/winserver2016-ps/ipamserver/Get-IpamDnsZone.md b/docset/winserver2016-ps/ipamserver/Get-IpamDnsZone.md index b27db7bc91..2e15218687 100644 --- a/docset/winserver2016-ps/ipamserver/Get-IpamDnsZone.md +++ b/docset/winserver2016-ps/ipamserver/Get-IpamDnsZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamDnsZone.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamdnszone?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamdnszone?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamDnsZone --- diff --git a/docset/winserver2016-ps/ipamserver/Get-IpamIpAddressAuditEvent.md b/docset/winserver2016-ps/ipamserver/Get-IpamIpAddressAuditEvent.md index 374df16ebc..4d2e71527f 100644 --- a/docset/winserver2016-ps/ipamserver/Get-IpamIpAddressAuditEvent.md +++ b/docset/winserver2016-ps/ipamserver/Get-IpamIpAddressAuditEvent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamIpAuditEvent.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamipaddressauditevent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamipaddressauditevent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamIpAddressAuditEvent --- diff --git a/docset/winserver2016-ps/ipamserver/Get-IpamRange.md b/docset/winserver2016-ps/ipamserver/Get-IpamRange.md index 1d3e4e07e5..71e5a8aca0 100644 --- a/docset/winserver2016-ps/ipamserver/Get-IpamRange.md +++ b/docset/winserver2016-ps/ipamserver/Get-IpamRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamRange.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamrange?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamrange?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamRange --- diff --git a/docset/winserver2016-ps/ipamserver/Get-IpamServerInventory.md b/docset/winserver2016-ps/ipamserver/Get-IpamServerInventory.md index ee8fdda976..9a90e22cc2 100644 --- a/docset/winserver2016-ps/ipamserver/Get-IpamServerInventory.md +++ b/docset/winserver2016-ps/ipamserver/Get-IpamServerInventory.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamServerInventory.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamserverinventory?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamserverinventory?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamServerInventory --- diff --git a/docset/winserver2016-ps/ipamserver/Get-IpamSubnet.md b/docset/winserver2016-ps/ipamserver/Get-IpamSubnet.md index 28f679d8f4..6029fc500d 100644 --- a/docset/winserver2016-ps/ipamserver/Get-IpamSubnet.md +++ b/docset/winserver2016-ps/ipamserver/Get-IpamSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamSubnet.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamsubnet?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamsubnet?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamSubnet --- diff --git a/docset/winserver2016-ps/ipamserver/Import-IpamAddress.md b/docset/winserver2016-ps/ipamserver/Import-IpamAddress.md index dfb317143e..603d78889f 100644 --- a/docset/winserver2016-ps/ipamserver/Import-IpamAddress.md +++ b/docset/winserver2016-ps/ipamserver/Import-IpamAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamAddress.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/import-ipamaddress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/import-ipamaddress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-IpamAddress --- diff --git a/docset/winserver2016-ps/ipamserver/Import-IpamRange.md b/docset/winserver2016-ps/ipamserver/Import-IpamRange.md index 6ea90f0025..a2415caba2 100644 --- a/docset/winserver2016-ps/ipamserver/Import-IpamRange.md +++ b/docset/winserver2016-ps/ipamserver/Import-IpamRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamRange.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/import-ipamrange?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/import-ipamrange?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-IpamRange --- diff --git a/docset/winserver2016-ps/ipamserver/Import-IpamSubnet.md b/docset/winserver2016-ps/ipamserver/Import-IpamSubnet.md index 56ce57754a..5bb266c473 100644 --- a/docset/winserver2016-ps/ipamserver/Import-IpamSubnet.md +++ b/docset/winserver2016-ps/ipamserver/Import-IpamSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamSubnet.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/import-ipamsubnet?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/import-ipamsubnet?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-IpamSubnet --- diff --git a/docset/winserver2016-ps/ipamserver/Invoke-IpamGpoProvisioning.md b/docset/winserver2016-ps/ipamserver/Invoke-IpamGpoProvisioning.md index 0dd3e9e151..e5fd267104 100644 --- a/docset/winserver2016-ps/ipamserver/Invoke-IpamGpoProvisioning.md +++ b/docset/winserver2016-ps/ipamserver/Invoke-IpamGpoProvisioning.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamGpo-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/invoke-ipamgpoprovisioning?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/invoke-ipamgpoprovisioning?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-IpamGpoProvisioning --- diff --git a/docset/winserver2016-ps/ipamserver/Invoke-IpamServerProvisioning.md b/docset/winserver2016-ps/ipamserver/Invoke-IpamServerProvisioning.md index a336e99baa..a46931ff6b 100644 --- a/docset/winserver2016-ps/ipamserver/Invoke-IpamServerProvisioning.md +++ b/docset/winserver2016-ps/ipamserver/Invoke-IpamServerProvisioning.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamServerProvisioning.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/invoke-ipamserverprovisioning?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/invoke-ipamserverprovisioning?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-IpamServerProvisioning --- diff --git a/docset/winserver2016-ps/ipamserver/Move-IpamDatabase.md b/docset/winserver2016-ps/ipamserver/Move-IpamDatabase.md index b6c530f93e..25505d9d48 100644 --- a/docset/winserver2016-ps/ipamserver/Move-IpamDatabase.md +++ b/docset/winserver2016-ps/ipamserver/Move-IpamDatabase.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamDatabase.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/move-ipamdatabase?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/move-ipamdatabase?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-IpamDatabase --- diff --git a/docset/winserver2016-ps/ipamserver/Remove-IpamAddress.md b/docset/winserver2016-ps/ipamserver/Remove-IpamAddress.md index 47b5d77802..abc5a7cc35 100644 --- a/docset/winserver2016-ps/ipamserver/Remove-IpamAddress.md +++ b/docset/winserver2016-ps/ipamserver/Remove-IpamAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamAddress.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/remove-ipamaddress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/remove-ipamaddress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IpamAddress --- diff --git a/docset/winserver2016-ps/ipamserver/Remove-IpamAddressSpace.md b/docset/winserver2016-ps/ipamserver/Remove-IpamAddressSpace.md index cedbb92b10..fc0f166155 100644 --- a/docset/winserver2016-ps/ipamserver/Remove-IpamAddressSpace.md +++ b/docset/winserver2016-ps/ipamserver/Remove-IpamAddressSpace.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamAddressSpace.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/remove-ipamaddressspace?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/remove-ipamaddressspace?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IpamAddressSpace --- diff --git a/docset/winserver2016-ps/ipamserver/Remove-IpamBlock.md b/docset/winserver2016-ps/ipamserver/Remove-IpamBlock.md index f3ce12908e..bf032ceecc 100644 --- a/docset/winserver2016-ps/ipamserver/Remove-IpamBlock.md +++ b/docset/winserver2016-ps/ipamserver/Remove-IpamBlock.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamBlock.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/remove-ipamblock?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/remove-ipamblock?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IpamBlock --- diff --git a/docset/winserver2016-ps/ipamserver/Remove-IpamConfigurationEvent.md b/docset/winserver2016-ps/ipamserver/Remove-IpamConfigurationEvent.md index a35f8cd841..5e64dff00d 100644 --- a/docset/winserver2016-ps/ipamserver/Remove-IpamConfigurationEvent.md +++ b/docset/winserver2016-ps/ipamserver/Remove-IpamConfigurationEvent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamConfigurationEvent.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/remove-ipamconfigurationevent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/remove-ipamconfigurationevent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IpamConfigurationEvent --- diff --git a/docset/winserver2016-ps/ipamserver/Remove-IpamCustomField.md b/docset/winserver2016-ps/ipamserver/Remove-IpamCustomField.md index 5c349854e4..8508ea5ecb 100644 --- a/docset/winserver2016-ps/ipamserver/Remove-IpamCustomField.md +++ b/docset/winserver2016-ps/ipamserver/Remove-IpamCustomField.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamCustomField.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/remove-ipamcustomfield?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/remove-ipamcustomfield?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IpamCustomField --- diff --git a/docset/winserver2016-ps/ipamserver/Remove-IpamCustomFieldAssociation.md b/docset/winserver2016-ps/ipamserver/Remove-IpamCustomFieldAssociation.md index fdb386cb70..5a61805897 100644 --- a/docset/winserver2016-ps/ipamserver/Remove-IpamCustomFieldAssociation.md +++ b/docset/winserver2016-ps/ipamserver/Remove-IpamCustomFieldAssociation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamCustomFieldAssociation.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/remove-ipamcustomfieldassociation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/remove-ipamcustomfieldassociation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IpamCustomFieldAssociation --- diff --git a/docset/winserver2016-ps/ipamserver/Remove-IpamCustomValue.md b/docset/winserver2016-ps/ipamserver/Remove-IpamCustomValue.md index ed5b09faf2..158504ce07 100644 --- a/docset/winserver2016-ps/ipamserver/Remove-IpamCustomValue.md +++ b/docset/winserver2016-ps/ipamserver/Remove-IpamCustomValue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamCustomValue.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/remove-ipamcustomvalue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/remove-ipamcustomvalue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IpamCustomValue --- diff --git a/docset/winserver2016-ps/ipamserver/Remove-IpamDhcpConfigurationEvent.md b/docset/winserver2016-ps/ipamserver/Remove-IpamDhcpConfigurationEvent.md index 59f9127462..a4af1541e6 100644 --- a/docset/winserver2016-ps/ipamserver/Remove-IpamDhcpConfigurationEvent.md +++ b/docset/winserver2016-ps/ipamserver/Remove-IpamDhcpConfigurationEvent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamDhcpConfigurationEvent.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/remove-ipamdhcpconfigurationevent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/remove-ipamdhcpconfigurationevent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IpamDhcpConfigurationEvent --- diff --git a/docset/winserver2016-ps/ipamserver/Remove-IpamDiscoveryDomain.md b/docset/winserver2016-ps/ipamserver/Remove-IpamDiscoveryDomain.md index a0cae4f4bb..8ad267084b 100644 --- a/docset/winserver2016-ps/ipamserver/Remove-IpamDiscoveryDomain.md +++ b/docset/winserver2016-ps/ipamserver/Remove-IpamDiscoveryDomain.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamDiscoveryDomain.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/remove-ipamdiscoverydomain?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/remove-ipamdiscoverydomain?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IpamDiscoveryDomain --- diff --git a/docset/winserver2016-ps/ipamserver/Remove-IpamIpAddressAuditEvent.md b/docset/winserver2016-ps/ipamserver/Remove-IpamIpAddressAuditEvent.md index 68936c77c2..d3b344fc04 100644 --- a/docset/winserver2016-ps/ipamserver/Remove-IpamIpAddressAuditEvent.md +++ b/docset/winserver2016-ps/ipamserver/Remove-IpamIpAddressAuditEvent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamIpAuditEvent.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/remove-ipamipaddressauditevent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/remove-ipamipaddressauditevent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IpamIpAddressAuditEvent --- diff --git a/docset/winserver2016-ps/ipamserver/Remove-IpamRange.md b/docset/winserver2016-ps/ipamserver/Remove-IpamRange.md index d2a41ba340..f9982a0f83 100644 --- a/docset/winserver2016-ps/ipamserver/Remove-IpamRange.md +++ b/docset/winserver2016-ps/ipamserver/Remove-IpamRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamRange.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/remove-ipamrange?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/remove-ipamrange?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IpamRange --- diff --git a/docset/winserver2016-ps/ipamserver/Remove-IpamServerInventory.md b/docset/winserver2016-ps/ipamserver/Remove-IpamServerInventory.md index 0fc3e37fb6..a6eda393e3 100644 --- a/docset/winserver2016-ps/ipamserver/Remove-IpamServerInventory.md +++ b/docset/winserver2016-ps/ipamserver/Remove-IpamServerInventory.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamServerInventory.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/remove-ipamserverinventory?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/remove-ipamserverinventory?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IpamServerInventory --- diff --git a/docset/winserver2016-ps/ipamserver/Remove-IpamSubnet.md b/docset/winserver2016-ps/ipamserver/Remove-IpamSubnet.md index 15c9ff89da..40fdf500a8 100644 --- a/docset/winserver2016-ps/ipamserver/Remove-IpamSubnet.md +++ b/docset/winserver2016-ps/ipamserver/Remove-IpamSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamSubnet.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/remove-ipamsubnet?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/remove-ipamsubnet?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IpamSubnet --- diff --git a/docset/winserver2016-ps/ipamserver/Remove-IpamUtilizationData.md b/docset/winserver2016-ps/ipamserver/Remove-IpamUtilizationData.md index 5c3f3f0a88..bcc04453e8 100644 --- a/docset/winserver2016-ps/ipamserver/Remove-IpamUtilizationData.md +++ b/docset/winserver2016-ps/ipamserver/Remove-IpamUtilizationData.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamUtilizationData.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/remove-ipamutilizationdata?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/remove-ipamutilizationdata?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IpamUtilizationData --- diff --git a/docset/winserver2016-ps/ipamserver/Rename-IpamCustomField.md b/docset/winserver2016-ps/ipamserver/Rename-IpamCustomField.md index c13589f02d..82517f6550 100644 --- a/docset/winserver2016-ps/ipamserver/Rename-IpamCustomField.md +++ b/docset/winserver2016-ps/ipamserver/Rename-IpamCustomField.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamCustomField.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/rename-ipamcustomfield?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/rename-ipamcustomfield?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-IpamCustomField --- diff --git a/docset/winserver2016-ps/ipamserver/Rename-IpamCustomValue.md b/docset/winserver2016-ps/ipamserver/Rename-IpamCustomValue.md index 24c51633a5..5416253b78 100644 --- a/docset/winserver2016-ps/ipamserver/Rename-IpamCustomValue.md +++ b/docset/winserver2016-ps/ipamserver/Rename-IpamCustomValue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamCustomValue.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/rename-ipamcustomvalue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/rename-ipamcustomvalue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-IpamCustomValue --- diff --git a/docset/winserver2016-ps/ipamserver/Set-IpamAccessScope.md b/docset/winserver2016-ps/ipamserver/Set-IpamAccessScope.md index 6723b1122d..63ee6bc64a 100644 --- a/docset/winserver2016-ps/ipamserver/Set-IpamAccessScope.md +++ b/docset/winserver2016-ps/ipamserver/Set-IpamAccessScope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamAccessScope.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/set-ipamaccessscope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/set-ipamaccessscope?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IpamAccessScope --- diff --git a/docset/winserver2016-ps/ipamserver/Set-IpamAddress.md b/docset/winserver2016-ps/ipamserver/Set-IpamAddress.md index bcf8cc88b1..71af613ea2 100644 --- a/docset/winserver2016-ps/ipamserver/Set-IpamAddress.md +++ b/docset/winserver2016-ps/ipamserver/Set-IpamAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamAddress.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/set-ipamaddress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/set-ipamaddress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IpamAddress --- diff --git a/docset/winserver2016-ps/ipamserver/Set-IpamAddressSpace.md b/docset/winserver2016-ps/ipamserver/Set-IpamAddressSpace.md index a386af3083..34ed38d4b0 100644 --- a/docset/winserver2016-ps/ipamserver/Set-IpamAddressSpace.md +++ b/docset/winserver2016-ps/ipamserver/Set-IpamAddressSpace.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamAddressSpace.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/set-ipamaddressspace?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/set-ipamaddressspace?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IpamAddressSpace --- diff --git a/docset/winserver2016-ps/ipamserver/Set-IpamAddressUtilizationThreshold.md b/docset/winserver2016-ps/ipamserver/Set-IpamAddressUtilizationThreshold.md index 7967681036..646cf11eaa 100644 --- a/docset/winserver2016-ps/ipamserver/Set-IpamAddressUtilizationThreshold.md +++ b/docset/winserver2016-ps/ipamserver/Set-IpamAddressUtilizationThreshold.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamAddressUtilizationThreshold.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/set-ipamaddressutilizationthreshold?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/set-ipamaddressutilizationthreshold?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IpamAddressUtilizationThreshold --- diff --git a/docset/winserver2016-ps/ipamserver/Set-IpamBlock.md b/docset/winserver2016-ps/ipamserver/Set-IpamBlock.md index b8675156a9..6fedfc1f8b 100644 --- a/docset/winserver2016-ps/ipamserver/Set-IpamBlock.md +++ b/docset/winserver2016-ps/ipamserver/Set-IpamBlock.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamBlock.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/set-ipamblock?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/set-ipamblock?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IpamBlock --- diff --git a/docset/winserver2016-ps/ipamserver/Set-IpamConfiguration.md b/docset/winserver2016-ps/ipamserver/Set-IpamConfiguration.md index a92515d63b..342158bf0f 100644 --- a/docset/winserver2016-ps/ipamserver/Set-IpamConfiguration.md +++ b/docset/winserver2016-ps/ipamserver/Set-IpamConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamConfiguration.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/set-ipamconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/set-ipamconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IpamConfiguration --- diff --git a/docset/winserver2016-ps/ipamserver/Set-IpamCustomFieldAssociation.md b/docset/winserver2016-ps/ipamserver/Set-IpamCustomFieldAssociation.md index 66350f04bb..7e952d1ffd 100644 --- a/docset/winserver2016-ps/ipamserver/Set-IpamCustomFieldAssociation.md +++ b/docset/winserver2016-ps/ipamserver/Set-IpamCustomFieldAssociation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamCustomFieldAssociation.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/set-ipamcustomfieldassociation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/set-ipamcustomfieldassociation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IpamCustomFieldAssociation --- diff --git a/docset/winserver2016-ps/ipamserver/Set-IpamDatabase.md b/docset/winserver2016-ps/ipamserver/Set-IpamDatabase.md index 52eb4d9b94..558181c0ee 100644 --- a/docset/winserver2016-ps/ipamserver/Set-IpamDatabase.md +++ b/docset/winserver2016-ps/ipamserver/Set-IpamDatabase.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamDatabase.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/set-ipamdatabase?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/set-ipamdatabase?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IpamDatabase --- diff --git a/docset/winserver2016-ps/ipamserver/Set-IpamDiscoveryDomain.md b/docset/winserver2016-ps/ipamserver/Set-IpamDiscoveryDomain.md index 3ac2ff2f86..1ee018095f 100644 --- a/docset/winserver2016-ps/ipamserver/Set-IpamDiscoveryDomain.md +++ b/docset/winserver2016-ps/ipamserver/Set-IpamDiscoveryDomain.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamDiscoveryDomain.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/set-ipamdiscoverydomain?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/set-ipamdiscoverydomain?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IpamDiscoveryDomain --- diff --git a/docset/winserver2016-ps/ipamserver/Set-IpamRange.md b/docset/winserver2016-ps/ipamserver/Set-IpamRange.md index 6191081122..41da979aca 100644 --- a/docset/winserver2016-ps/ipamserver/Set-IpamRange.md +++ b/docset/winserver2016-ps/ipamserver/Set-IpamRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamRange.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/set-ipamrange?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/set-ipamrange?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IpamRange --- diff --git a/docset/winserver2016-ps/ipamserver/Set-IpamServerInventory.md b/docset/winserver2016-ps/ipamserver/Set-IpamServerInventory.md index 838b02eb92..4b87e4b9c0 100644 --- a/docset/winserver2016-ps/ipamserver/Set-IpamServerInventory.md +++ b/docset/winserver2016-ps/ipamserver/Set-IpamServerInventory.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamServerInventory.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/set-ipamserverinventory?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/set-ipamserverinventory?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IpamServerInventory --- diff --git a/docset/winserver2016-ps/ipamserver/Set-IpamSubnet.md b/docset/winserver2016-ps/ipamserver/Set-IpamSubnet.md index 88550e265d..26eea856cd 100644 --- a/docset/winserver2016-ps/ipamserver/Set-IpamSubnet.md +++ b/docset/winserver2016-ps/ipamserver/Set-IpamSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamSubnet.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/set-ipamsubnet?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/set-ipamsubnet?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IpamSubnet --- diff --git a/docset/winserver2016-ps/ipamserver/Update-IpamServer.md b/docset/winserver2016-ps/ipamserver/Update-IpamServer.md index 54e724d98f..3f323dacd8 100644 --- a/docset/winserver2016-ps/ipamserver/Update-IpamServer.md +++ b/docset/winserver2016-ps/ipamserver/Update-IpamServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamServer.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/update-ipamserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/update-ipamserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-IpamServer --- diff --git a/docset/winserver2016-ps/iscsi/Connect-IscsiTarget.md b/docset/winserver2016-ps/iscsi/Connect-IscsiTarget.md index 65be51997c..992e2e8147 100644 --- a/docset/winserver2016-ps/iscsi/Connect-IscsiTarget.md +++ b/docset/winserver2016-ps/iscsi/Connect-IscsiTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: iSCSITarget.cdxml-help.xml Module Name: iSCSI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsi/connect-iscsitarget?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/connect-iscsitarget?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Connect-IscsiTarget --- diff --git a/docset/winserver2016-ps/iscsi/Disconnect-IscsiTarget.md b/docset/winserver2016-ps/iscsi/Disconnect-IscsiTarget.md index d0ddd78446..845fc5060a 100644 --- a/docset/winserver2016-ps/iscsi/Disconnect-IscsiTarget.md +++ b/docset/winserver2016-ps/iscsi/Disconnect-IscsiTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: iSCSITarget.cdxml-help.xml Module Name: iSCSI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsi/disconnect-iscsitarget?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/disconnect-iscsitarget?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disconnect-IscsiTarget --- diff --git a/docset/winserver2016-ps/iscsi/Get-IscsiConnection.md b/docset/winserver2016-ps/iscsi/Get-IscsiConnection.md index 8f711229f8..7879330144 100644 --- a/docset/winserver2016-ps/iscsi/Get-IscsiConnection.md +++ b/docset/winserver2016-ps/iscsi/Get-IscsiConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: iSCSIConnection.cdxml-help.xml Module Name: iSCSI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsi/get-iscsiconnection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/get-iscsiconnection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IscsiConnection --- diff --git a/docset/winserver2016-ps/iscsi/Get-IscsiSession.md b/docset/winserver2016-ps/iscsi/Get-IscsiSession.md index d013890b67..8de6f7297d 100644 --- a/docset/winserver2016-ps/iscsi/Get-IscsiSession.md +++ b/docset/winserver2016-ps/iscsi/Get-IscsiSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: iSCSISession.cdxml-help.xml Module Name: iSCSI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsi/get-iscsisession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/get-iscsisession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IscsiSession --- diff --git a/docset/winserver2016-ps/iscsi/Get-IscsiTarget.md b/docset/winserver2016-ps/iscsi/Get-IscsiTarget.md index 17742488b9..93a869df50 100644 --- a/docset/winserver2016-ps/iscsi/Get-IscsiTarget.md +++ b/docset/winserver2016-ps/iscsi/Get-IscsiTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: iSCSITarget.cdxml-help.xml Module Name: iSCSI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsi/get-iscsitarget?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/get-iscsitarget?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IscsiTarget --- diff --git a/docset/winserver2016-ps/iscsi/Get-IscsiTargetPortal.md b/docset/winserver2016-ps/iscsi/Get-IscsiTargetPortal.md index e02e6ca9ad..d2f349b70a 100644 --- a/docset/winserver2016-ps/iscsi/Get-IscsiTargetPortal.md +++ b/docset/winserver2016-ps/iscsi/Get-IscsiTargetPortal.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: iSCSITargetPortal.cdxml-help.xml Module Name: iSCSI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsi/get-iscsitargetportal?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/get-iscsitargetportal?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IscsiTargetPortal --- diff --git a/docset/winserver2016-ps/iscsi/New-IscsiTargetPortal.md b/docset/winserver2016-ps/iscsi/New-IscsiTargetPortal.md index 71ec88bc52..86d240fb7c 100644 --- a/docset/winserver2016-ps/iscsi/New-IscsiTargetPortal.md +++ b/docset/winserver2016-ps/iscsi/New-IscsiTargetPortal.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: iSCSITargetPortal.cdxml-help.xml Module Name: iSCSI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsi/new-iscsitargetportal?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/new-iscsitargetportal?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-IscsiTargetPortal --- diff --git a/docset/winserver2016-ps/iscsi/Register-IscsiSession.md b/docset/winserver2016-ps/iscsi/Register-IscsiSession.md index 9077f63232..786983ee52 100644 --- a/docset/winserver2016-ps/iscsi/Register-IscsiSession.md +++ b/docset/winserver2016-ps/iscsi/Register-IscsiSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: iSCSISession.cdxml-help.xml Module Name: iSCSI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsi/register-iscsisession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/register-iscsisession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Register-IscsiSession --- diff --git a/docset/winserver2016-ps/iscsi/Remove-IscsiTargetPortal.md b/docset/winserver2016-ps/iscsi/Remove-IscsiTargetPortal.md index 55848bbdee..2d29c13157 100644 --- a/docset/winserver2016-ps/iscsi/Remove-IscsiTargetPortal.md +++ b/docset/winserver2016-ps/iscsi/Remove-IscsiTargetPortal.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: iSCSITargetPortal.cdxml-help.xml Module Name: iSCSI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsi/remove-iscsitargetportal?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/remove-iscsitargetportal?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IscsiTargetPortal --- diff --git a/docset/winserver2016-ps/iscsi/Set-IscsiChapSecret.md b/docset/winserver2016-ps/iscsi/Set-IscsiChapSecret.md index 9c7158a858..03631e1869 100644 --- a/docset/winserver2016-ps/iscsi/Set-IscsiChapSecret.md +++ b/docset/winserver2016-ps/iscsi/Set-IscsiChapSecret.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: iSCSISession.cdxml-help.xml Module Name: iSCSI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsi/set-iscsichapsecret?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/set-iscsichapsecret?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IscsiChapSecret --- diff --git a/docset/winserver2016-ps/iscsi/Unregister-IscsiSession.md b/docset/winserver2016-ps/iscsi/Unregister-IscsiSession.md index 9f430e2b7b..f0b4363334 100644 --- a/docset/winserver2016-ps/iscsi/Unregister-IscsiSession.md +++ b/docset/winserver2016-ps/iscsi/Unregister-IscsiSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: iSCSISession.cdxml-help.xml Module Name: iSCSI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsi/unregister-iscsisession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/unregister-iscsisession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unregister-IscsiSession --- diff --git a/docset/winserver2016-ps/iscsi/Update-IscsiTarget.md b/docset/winserver2016-ps/iscsi/Update-IscsiTarget.md index 924e4091ba..a64c99baa4 100644 --- a/docset/winserver2016-ps/iscsi/Update-IscsiTarget.md +++ b/docset/winserver2016-ps/iscsi/Update-IscsiTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: iSCSITarget.cdxml-help.xml Module Name: iSCSI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsi/update-iscsitarget?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/update-iscsitarget?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-IscsiTarget --- diff --git a/docset/winserver2016-ps/iscsi/Update-IscsiTargetPortal.md b/docset/winserver2016-ps/iscsi/Update-IscsiTargetPortal.md index 6404d6a9df..edb7f955b8 100644 --- a/docset/winserver2016-ps/iscsi/Update-IscsiTargetPortal.md +++ b/docset/winserver2016-ps/iscsi/Update-IscsiTargetPortal.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: iSCSITargetPortal.cdxml-help.xml Module Name: iSCSI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsi/update-iscsitargetportal?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/update-iscsitargetportal?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-IscsiTargetPortal --- diff --git a/docset/winserver2016-ps/iscsitarget/Add-IscsiVirtualDiskTargetMapping.md b/docset/winserver2016-ps/iscsitarget/Add-IscsiVirtualDiskTargetMapping.md index bca6eb58d0..d0a324d7c8 100644 --- a/docset/winserver2016-ps/iscsitarget/Add-IscsiVirtualDiskTargetMapping.md +++ b/docset/winserver2016-ps/iscsitarget/Add-IscsiVirtualDiskTargetMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/add-iscsivirtualdisktargetmapping?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/add-iscsivirtualdisktargetmapping?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-IscsiVirtualDiskTargetMapping --- diff --git a/docset/winserver2016-ps/iscsitarget/Checkpoint-IscsiVirtualDisk.md b/docset/winserver2016-ps/iscsitarget/Checkpoint-IscsiVirtualDisk.md index 100156e522..a82760ede0 100644 --- a/docset/winserver2016-ps/iscsitarget/Checkpoint-IscsiVirtualDisk.md +++ b/docset/winserver2016-ps/iscsitarget/Checkpoint-IscsiVirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/checkpoint-iscsivirtualdisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/checkpoint-iscsivirtualdisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Checkpoint-IscsiVirtualDisk --- diff --git a/docset/winserver2016-ps/iscsitarget/Convert-IscsiVirtualDisk.md b/docset/winserver2016-ps/iscsitarget/Convert-IscsiVirtualDisk.md index 3788c40a49..aeb463e490 100644 --- a/docset/winserver2016-ps/iscsitarget/Convert-IscsiVirtualDisk.md +++ b/docset/winserver2016-ps/iscsitarget/Convert-IscsiVirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/convert-iscsivirtualdisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/convert-iscsivirtualdisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Convert-IscsiVirtualDisk --- diff --git a/docset/winserver2016-ps/iscsitarget/Dismount-IscsiVirtualDiskSnapshot.md b/docset/winserver2016-ps/iscsitarget/Dismount-IscsiVirtualDiskSnapshot.md index 53746186c8..aa43d0b5f6 100644 --- a/docset/winserver2016-ps/iscsitarget/Dismount-IscsiVirtualDiskSnapshot.md +++ b/docset/winserver2016-ps/iscsitarget/Dismount-IscsiVirtualDiskSnapshot.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/dismount-iscsivirtualdisksnapshot?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/dismount-iscsivirtualdisksnapshot?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Dismount-IscsiVirtualDiskSnapshot --- diff --git a/docset/winserver2016-ps/iscsitarget/Export-IscsiTargetServerConfiguration.md b/docset/winserver2016-ps/iscsitarget/Export-IscsiTargetServerConfiguration.md index 0e14ecfc13..1189fe64c8 100644 --- a/docset/winserver2016-ps/iscsitarget/Export-IscsiTargetServerConfiguration.md +++ b/docset/winserver2016-ps/iscsitarget/Export-IscsiTargetServerConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/export-iscsitargetserverconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/export-iscsitargetserverconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-IscsiTargetServerConfiguration --- diff --git a/docset/winserver2016-ps/iscsitarget/Export-IscsiVirtualDiskSnapshot.md b/docset/winserver2016-ps/iscsitarget/Export-IscsiVirtualDiskSnapshot.md index 585bb0d537..6d7fd8d968 100644 --- a/docset/winserver2016-ps/iscsitarget/Export-IscsiVirtualDiskSnapshot.md +++ b/docset/winserver2016-ps/iscsitarget/Export-IscsiVirtualDiskSnapshot.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/export-iscsivirtualdisksnapshot?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/export-iscsivirtualdisksnapshot?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-IscsiVirtualDiskSnapshot --- diff --git a/docset/winserver2016-ps/iscsitarget/Get-IscsiServerTarget.md b/docset/winserver2016-ps/iscsitarget/Get-IscsiServerTarget.md index 808fa2f2d4..99852e55ad 100644 --- a/docset/winserver2016-ps/iscsitarget/Get-IscsiServerTarget.md +++ b/docset/winserver2016-ps/iscsitarget/Get-IscsiServerTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/get-iscsiservertarget?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/get-iscsiservertarget?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IscsiServerTarget --- diff --git a/docset/winserver2016-ps/iscsitarget/Get-IscsiTargetServerSetting.md b/docset/winserver2016-ps/iscsitarget/Get-IscsiTargetServerSetting.md index fc3a8243df..1ec64fc514 100644 --- a/docset/winserver2016-ps/iscsitarget/Get-IscsiTargetServerSetting.md +++ b/docset/winserver2016-ps/iscsitarget/Get-IscsiTargetServerSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/get-iscsitargetserversetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/get-iscsitargetserversetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IscsiTargetServerSetting --- diff --git a/docset/winserver2016-ps/iscsitarget/Get-IscsiVirtualDisk.md b/docset/winserver2016-ps/iscsitarget/Get-IscsiVirtualDisk.md index 85bd49b8d8..e383274111 100644 --- a/docset/winserver2016-ps/iscsitarget/Get-IscsiVirtualDisk.md +++ b/docset/winserver2016-ps/iscsitarget/Get-IscsiVirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/get-iscsivirtualdisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/get-iscsivirtualdisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IscsiVirtualDisk --- diff --git a/docset/winserver2016-ps/iscsitarget/Get-IscsiVirtualDiskSnapshot.md b/docset/winserver2016-ps/iscsitarget/Get-IscsiVirtualDiskSnapshot.md index 5f7f30e8c9..0fbeaceedd 100644 --- a/docset/winserver2016-ps/iscsitarget/Get-IscsiVirtualDiskSnapshot.md +++ b/docset/winserver2016-ps/iscsitarget/Get-IscsiVirtualDiskSnapshot.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/get-iscsivirtualdisksnapshot?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/get-iscsivirtualdisksnapshot?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IscsiVirtualDiskSnapshot --- diff --git a/docset/winserver2016-ps/iscsitarget/Import-IscsiTargetServerConfiguration.md b/docset/winserver2016-ps/iscsitarget/Import-IscsiTargetServerConfiguration.md index 53f2d933bc..9aeab19dc6 100644 --- a/docset/winserver2016-ps/iscsitarget/Import-IscsiTargetServerConfiguration.md +++ b/docset/winserver2016-ps/iscsitarget/Import-IscsiTargetServerConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/import-iscsitargetserverconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/import-iscsitargetserverconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-IscsiTargetServerConfiguration --- diff --git a/docset/winserver2016-ps/iscsitarget/Import-IscsiVirtualDisk.md b/docset/winserver2016-ps/iscsitarget/Import-IscsiVirtualDisk.md index c8d5983495..2114198948 100644 --- a/docset/winserver2016-ps/iscsitarget/Import-IscsiVirtualDisk.md +++ b/docset/winserver2016-ps/iscsitarget/Import-IscsiVirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/import-iscsivirtualdisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/import-iscsivirtualdisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-IscsiVirtualDisk --- diff --git a/docset/winserver2016-ps/iscsitarget/Mount-IscsiVirtualDiskSnapshot.md b/docset/winserver2016-ps/iscsitarget/Mount-IscsiVirtualDiskSnapshot.md index 626431256c..fa316d0a3b 100644 --- a/docset/winserver2016-ps/iscsitarget/Mount-IscsiVirtualDiskSnapshot.md +++ b/docset/winserver2016-ps/iscsitarget/Mount-IscsiVirtualDiskSnapshot.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/mount-iscsivirtualdisksnapshot?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/mount-iscsivirtualdisksnapshot?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Mount-IscsiVirtualDiskSnapshot --- diff --git a/docset/winserver2016-ps/iscsitarget/New-IscsiServerTarget.md b/docset/winserver2016-ps/iscsitarget/New-IscsiServerTarget.md index c7a8ec756c..785ba5facb 100644 --- a/docset/winserver2016-ps/iscsitarget/New-IscsiServerTarget.md +++ b/docset/winserver2016-ps/iscsitarget/New-IscsiServerTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/new-iscsiservertarget?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/new-iscsiservertarget?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-IscsiServerTarget --- diff --git a/docset/winserver2016-ps/iscsitarget/New-IscsiVirtualDisk.md b/docset/winserver2016-ps/iscsitarget/New-IscsiVirtualDisk.md index a8a228f2e2..e87a1e743d 100644 --- a/docset/winserver2016-ps/iscsitarget/New-IscsiVirtualDisk.md +++ b/docset/winserver2016-ps/iscsitarget/New-IscsiVirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/new-iscsivirtualdisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/new-iscsivirtualdisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-IscsiVirtualDisk --- diff --git a/docset/winserver2016-ps/iscsitarget/Remove-IscsiServerTarget.md b/docset/winserver2016-ps/iscsitarget/Remove-IscsiServerTarget.md index de59adc38b..52f3e0ad0b 100644 --- a/docset/winserver2016-ps/iscsitarget/Remove-IscsiServerTarget.md +++ b/docset/winserver2016-ps/iscsitarget/Remove-IscsiServerTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/remove-iscsiservertarget?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/remove-iscsiservertarget?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IscsiServerTarget --- diff --git a/docset/winserver2016-ps/iscsitarget/Remove-IscsiVirtualDisk.md b/docset/winserver2016-ps/iscsitarget/Remove-IscsiVirtualDisk.md index 9d89c807f5..4932b86dfa 100644 --- a/docset/winserver2016-ps/iscsitarget/Remove-IscsiVirtualDisk.md +++ b/docset/winserver2016-ps/iscsitarget/Remove-IscsiVirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/remove-iscsivirtualdisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/remove-iscsivirtualdisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IscsiVirtualDisk --- diff --git a/docset/winserver2016-ps/iscsitarget/Remove-IscsiVirtualDiskSnapshot.md b/docset/winserver2016-ps/iscsitarget/Remove-IscsiVirtualDiskSnapshot.md index 6098ca5112..966b719348 100644 --- a/docset/winserver2016-ps/iscsitarget/Remove-IscsiVirtualDiskSnapshot.md +++ b/docset/winserver2016-ps/iscsitarget/Remove-IscsiVirtualDiskSnapshot.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/remove-iscsivirtualdisksnapshot?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/remove-iscsivirtualdisksnapshot?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IscsiVirtualDiskSnapshot --- diff --git a/docset/winserver2016-ps/iscsitarget/Remove-IscsiVirtualDiskTargetMapping.md b/docset/winserver2016-ps/iscsitarget/Remove-IscsiVirtualDiskTargetMapping.md index 220aeb98d7..50388d521b 100644 --- a/docset/winserver2016-ps/iscsitarget/Remove-IscsiVirtualDiskTargetMapping.md +++ b/docset/winserver2016-ps/iscsitarget/Remove-IscsiVirtualDiskTargetMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/remove-iscsivirtualdisktargetmapping?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/remove-iscsivirtualdisktargetmapping?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IscsiVirtualDiskTargetMapping --- diff --git a/docset/winserver2016-ps/iscsitarget/Resize-IscsiVirtualDisk.md b/docset/winserver2016-ps/iscsitarget/Resize-IscsiVirtualDisk.md index 4df9a1492c..b2b1629767 100644 --- a/docset/winserver2016-ps/iscsitarget/Resize-IscsiVirtualDisk.md +++ b/docset/winserver2016-ps/iscsitarget/Resize-IscsiVirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/resize-iscsivirtualdisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/resize-iscsivirtualdisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resize-IscsiVirtualDisk --- diff --git a/docset/winserver2016-ps/iscsitarget/Restore-IscsiVirtualDisk.md b/docset/winserver2016-ps/iscsitarget/Restore-IscsiVirtualDisk.md index d884835234..dbabf6899c 100644 --- a/docset/winserver2016-ps/iscsitarget/Restore-IscsiVirtualDisk.md +++ b/docset/winserver2016-ps/iscsitarget/Restore-IscsiVirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/restore-iscsivirtualdisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/restore-iscsivirtualdisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-IscsiVirtualDisk --- diff --git a/docset/winserver2016-ps/iscsitarget/Set-IscsiServerTarget.md b/docset/winserver2016-ps/iscsitarget/Set-IscsiServerTarget.md index e844fb80ee..b406a785d3 100644 --- a/docset/winserver2016-ps/iscsitarget/Set-IscsiServerTarget.md +++ b/docset/winserver2016-ps/iscsitarget/Set-IscsiServerTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/set-iscsiservertarget?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/set-iscsiservertarget?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IscsiServerTarget --- diff --git a/docset/winserver2016-ps/iscsitarget/Set-IscsiTargetServerSetting.md b/docset/winserver2016-ps/iscsitarget/Set-IscsiTargetServerSetting.md index 8a8905373e..51fff3f228 100644 --- a/docset/winserver2016-ps/iscsitarget/Set-IscsiTargetServerSetting.md +++ b/docset/winserver2016-ps/iscsitarget/Set-IscsiTargetServerSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/set-iscsitargetserversetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/set-iscsitargetserversetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IscsiTargetServerSetting --- diff --git a/docset/winserver2016-ps/iscsitarget/Set-IscsiVirtualDisk.md b/docset/winserver2016-ps/iscsitarget/Set-IscsiVirtualDisk.md index 896b83f536..53b4083a7e 100644 --- a/docset/winserver2016-ps/iscsitarget/Set-IscsiVirtualDisk.md +++ b/docset/winserver2016-ps/iscsitarget/Set-IscsiVirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/set-iscsivirtualdisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/set-iscsivirtualdisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IscsiVirtualDisk --- diff --git a/docset/winserver2016-ps/iscsitarget/Set-IscsiVirtualDiskSnapshot.md b/docset/winserver2016-ps/iscsitarget/Set-IscsiVirtualDiskSnapshot.md index 871f447ce2..d7165af559 100644 --- a/docset/winserver2016-ps/iscsitarget/Set-IscsiVirtualDiskSnapshot.md +++ b/docset/winserver2016-ps/iscsitarget/Set-IscsiVirtualDiskSnapshot.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/set-iscsivirtualdisksnapshot?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/set-iscsivirtualdisksnapshot?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IscsiVirtualDiskSnapshot --- diff --git a/docset/winserver2016-ps/iscsitarget/Stop-IscsiVirtualDiskOperation.md b/docset/winserver2016-ps/iscsitarget/Stop-IscsiVirtualDiskOperation.md index abb12155f5..82087c6168 100644 --- a/docset/winserver2016-ps/iscsitarget/Stop-IscsiVirtualDiskOperation.md +++ b/docset/winserver2016-ps/iscsitarget/Stop-IscsiVirtualDiskOperation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/stop-iscsivirtualdiskoperation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/stop-iscsivirtualdiskoperation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-IscsiVirtualDiskOperation --- diff --git a/docset/winserver2016-ps/kds/Add-KdsRootKey.md b/docset/winserver2016-ps/kds/Add-KdsRootKey.md index 5e15b324e8..f7707b2ecc 100644 --- a/docset/winserver2016-ps/kds/Add-KdsRootKey.md +++ b/docset/winserver2016-ps/kds/Add-KdsRootKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.KeyDistributionService.Cmdlets.dll-Help.xml Module Name: KDS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/kds/add-kdsrootkey?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/kds/add-kdsrootkey?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-KdsRootKey --- diff --git a/docset/winserver2016-ps/kds/Clear-KdsCache.md b/docset/winserver2016-ps/kds/Clear-KdsCache.md index d6aa2cc42e..568ba71514 100644 --- a/docset/winserver2016-ps/kds/Clear-KdsCache.md +++ b/docset/winserver2016-ps/kds/Clear-KdsCache.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.KeyDistributionService.Cmdlets.dll-Help.xml Module Name: KDS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/kds/clear-kdscache?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/kds/clear-kdscache?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-KdsCache --- diff --git a/docset/winserver2016-ps/kds/Get-KdsConfiguration.md b/docset/winserver2016-ps/kds/Get-KdsConfiguration.md index 49d06e1c0e..fb64b5fb67 100644 --- a/docset/winserver2016-ps/kds/Get-KdsConfiguration.md +++ b/docset/winserver2016-ps/kds/Get-KdsConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.KeyDistributionService.Cmdlets.dll-Help.xml Module Name: KDS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/kds/get-kdsconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/kds/get-kdsconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-KdsConfiguration --- diff --git a/docset/winserver2016-ps/kds/Get-KdsRootKey.md b/docset/winserver2016-ps/kds/Get-KdsRootKey.md index 9b075b509c..e35908e36a 100644 --- a/docset/winserver2016-ps/kds/Get-KdsRootKey.md +++ b/docset/winserver2016-ps/kds/Get-KdsRootKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.KeyDistributionService.Cmdlets.dll-Help.xml Module Name: KDS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/kds/get-kdsrootkey?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/kds/get-kdsrootkey?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-KdsRootKey --- diff --git a/docset/winserver2016-ps/kds/Set-KdsConfiguration.md b/docset/winserver2016-ps/kds/Set-KdsConfiguration.md index 0a29e84d30..97ec8d6fb0 100644 --- a/docset/winserver2016-ps/kds/Set-KdsConfiguration.md +++ b/docset/winserver2016-ps/kds/Set-KdsConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.KeyDistributionService.Cmdlets.dll-Help.xml Module Name: KDS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/kds/set-kdsconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/kds/set-kdsconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-KdsConfiguration --- diff --git a/docset/winserver2016-ps/kds/Test-KdsRootKey.md b/docset/winserver2016-ps/kds/Test-KdsRootKey.md index 2e722d0f66..a38812f614 100644 --- a/docset/winserver2016-ps/kds/Test-KdsRootKey.md +++ b/docset/winserver2016-ps/kds/Test-KdsRootKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.KeyDistributionService.Cmdlets.dll-Help.xml Module Name: KDS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/kds/test-kdsrootkey?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/kds/test-kdsrootkey?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-KdsRootKey --- diff --git a/docset/winserver2016-ps/mmagent/Debug-MMAppPrelaunch.md b/docset/winserver2016-ps/mmagent/Debug-MMAppPrelaunch.md index 41433593cc..ebd908ce6f 100644 --- a/docset/winserver2016-ps/mmagent/Debug-MMAppPrelaunch.md +++ b/docset/winserver2016-ps/mmagent/Debug-MMAppPrelaunch.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ps_mmagent_v1.0.cdxml-help.xml Module Name: MMAgent ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/mmagent/debug-mmappprelaunch?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mmagent/debug-mmappprelaunch?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Debug-MMAppPrelaunch --- diff --git a/docset/winserver2016-ps/mmagent/Disable-MMAgent.md b/docset/winserver2016-ps/mmagent/Disable-MMAgent.md index 3f5686dd00..5674969629 100644 --- a/docset/winserver2016-ps/mmagent/Disable-MMAgent.md +++ b/docset/winserver2016-ps/mmagent/Disable-MMAgent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ps_mmagent_v1.0.cdxml-help.xml Module Name: MMAgent ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/mmagent/disable-mmagent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mmagent/disable-mmagent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-MMAgent --- diff --git a/docset/winserver2016-ps/mmagent/Enable-MMAgent.md b/docset/winserver2016-ps/mmagent/Enable-MMAgent.md index bd22bf0cfa..909c014fe2 100644 --- a/docset/winserver2016-ps/mmagent/Enable-MMAgent.md +++ b/docset/winserver2016-ps/mmagent/Enable-MMAgent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ps_mmagent_v1.0.cdxml-help.xml Module Name: MMAgent ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/mmagent/enable-mmagent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mmagent/enable-mmagent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-MMAgent --- diff --git a/docset/winserver2016-ps/mmagent/Get-MMAgent.md b/docset/winserver2016-ps/mmagent/Get-MMAgent.md index 2ae1258636..b67266a8ff 100644 --- a/docset/winserver2016-ps/mmagent/Get-MMAgent.md +++ b/docset/winserver2016-ps/mmagent/Get-MMAgent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ps_mmagent_v1.0.cdxml-help.xml Module Name: MMAgent ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/mmagent/get-mmagent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mmagent/get-mmagent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MMAgent --- diff --git a/docset/winserver2016-ps/mmagent/Set-MMAgent.md b/docset/winserver2016-ps/mmagent/Set-MMAgent.md index 43376fdb72..88f16c2a5f 100644 --- a/docset/winserver2016-ps/mmagent/Set-MMAgent.md +++ b/docset/winserver2016-ps/mmagent/Set-MMAgent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ps_mmagent_v1.0.cdxml-help.xml Module Name: MMAgent ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/mmagent/set-mmagent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mmagent/set-mmagent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-MMAgent --- diff --git a/docset/winserver2016-ps/mpio/Clear-MSDSMSupportedHW.md b/docset/winserver2016-ps/mpio/Clear-MSDSMSupportedHW.md index 633095ec33..585b54207b 100644 --- a/docset/winserver2016-ps/mpio/Clear-MSDSMSupportedHW.md +++ b/docset/winserver2016-ps/mpio/Clear-MSDSMSupportedHW.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSDSMSupportedHW.cdxml-help.xml Module Name: MPIO ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/mpio/clear-msdsmsupportedhw?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/clear-msdsmsupportedhw?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-MSDSMSupportedHW --- diff --git a/docset/winserver2016-ps/mpio/Disable-MSDSMAutomaticClaim.md b/docset/winserver2016-ps/mpio/Disable-MSDSMAutomaticClaim.md index 41badf7418..9861e90586 100644 --- a/docset/winserver2016-ps/mpio/Disable-MSDSMAutomaticClaim.md +++ b/docset/winserver2016-ps/mpio/Disable-MSDSMAutomaticClaim.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Mpio-help.xml Module Name: MPIO ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/mpio/disable-msdsmautomaticclaim?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/disable-msdsmautomaticclaim?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-MSDSMAutomaticClaim --- diff --git a/docset/winserver2016-ps/mpio/Enable-MSDSMAutomaticClaim.md b/docset/winserver2016-ps/mpio/Enable-MSDSMAutomaticClaim.md index 6cf2caa14b..c9fa20b9ef 100644 --- a/docset/winserver2016-ps/mpio/Enable-MSDSMAutomaticClaim.md +++ b/docset/winserver2016-ps/mpio/Enable-MSDSMAutomaticClaim.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Mpio-help.xml Module Name: MPIO ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/mpio/enable-msdsmautomaticclaim?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/enable-msdsmautomaticclaim?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-MSDSMAutomaticClaim --- diff --git a/docset/winserver2016-ps/mpio/Get-MPIOAvailableHW.md b/docset/winserver2016-ps/mpio/Get-MPIOAvailableHW.md index f2341340e4..3fd7f379af 100644 --- a/docset/winserver2016-ps/mpio/Get-MPIOAvailableHW.md +++ b/docset/winserver2016-ps/mpio/Get-MPIOAvailableHW.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MPIOAvailableHW.cdxml-help.xml Module Name: MPIO ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/mpio/get-mpioavailablehw?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/get-mpioavailablehw?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MPIOAvailableHW --- diff --git a/docset/winserver2016-ps/mpio/Get-MPIOSetting.md b/docset/winserver2016-ps/mpio/Get-MPIOSetting.md index f67406fb72..cd06b149b5 100644 --- a/docset/winserver2016-ps/mpio/Get-MPIOSetting.md +++ b/docset/winserver2016-ps/mpio/Get-MPIOSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Mpio-help.xml Module Name: MPIO ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/mpio/get-mpiosetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/get-mpiosetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MPIOSetting --- diff --git a/docset/winserver2016-ps/mpio/Get-MSDSMAutomaticClaimSettings.md b/docset/winserver2016-ps/mpio/Get-MSDSMAutomaticClaimSettings.md index a742ee712e..8400edca83 100644 --- a/docset/winserver2016-ps/mpio/Get-MSDSMAutomaticClaimSettings.md +++ b/docset/winserver2016-ps/mpio/Get-MSDSMAutomaticClaimSettings.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Mpio-help.xml Module Name: MPIO ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/mpio/get-msdsmautomaticclaimsettings?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/get-msdsmautomaticclaimsettings?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MSDSMAutomaticClaimSettings --- diff --git a/docset/winserver2016-ps/mpio/Get-MSDSMGlobalDefaultLoadBalancePolicy.md b/docset/winserver2016-ps/mpio/Get-MSDSMGlobalDefaultLoadBalancePolicy.md index c27b357573..1888080576 100644 --- a/docset/winserver2016-ps/mpio/Get-MSDSMGlobalDefaultLoadBalancePolicy.md +++ b/docset/winserver2016-ps/mpio/Get-MSDSMGlobalDefaultLoadBalancePolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Mpio-help.xml Module Name: MPIO ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/mpio/get-msdsmglobaldefaultloadbalancepolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/get-msdsmglobaldefaultloadbalancepolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MSDSMGlobalDefaultLoadBalancePolicy --- diff --git a/docset/winserver2016-ps/mpio/Get-MSDSMSupportedHW.md b/docset/winserver2016-ps/mpio/Get-MSDSMSupportedHW.md index 274e86921b..5e9f1ce61e 100644 --- a/docset/winserver2016-ps/mpio/Get-MSDSMSupportedHW.md +++ b/docset/winserver2016-ps/mpio/Get-MSDSMSupportedHW.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSDSMSupportedHW.cdxml-help.xml Module Name: MPIO ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/mpio/get-msdsmsupportedhw?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/get-msdsmsupportedhw?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MSDSMSupportedHW --- diff --git a/docset/winserver2016-ps/mpio/New-MSDSMSupportedHW.md b/docset/winserver2016-ps/mpio/New-MSDSMSupportedHW.md index a5feff8a97..e4519c67e3 100644 --- a/docset/winserver2016-ps/mpio/New-MSDSMSupportedHW.md +++ b/docset/winserver2016-ps/mpio/New-MSDSMSupportedHW.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSDSMSupportedHW.cdxml-help.xml Module Name: MPIO ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/mpio/new-msdsmsupportedhw?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/new-msdsmsupportedhw?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-MSDSMSupportedHW --- diff --git a/docset/winserver2016-ps/mpio/Remove-MSDSMSupportedHW.md b/docset/winserver2016-ps/mpio/Remove-MSDSMSupportedHW.md index 62bf3a607c..17e5cd04f1 100644 --- a/docset/winserver2016-ps/mpio/Remove-MSDSMSupportedHW.md +++ b/docset/winserver2016-ps/mpio/Remove-MSDSMSupportedHW.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSDSMSupportedHW.cdxml-help.xml Module Name: MPIO ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/mpio/remove-msdsmsupportedhw?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/remove-msdsmsupportedhw?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-MSDSMSupportedHW --- diff --git a/docset/winserver2016-ps/mpio/Set-MPIOSetting.md b/docset/winserver2016-ps/mpio/Set-MPIOSetting.md index 924c0e1ffc..bbe353c951 100644 --- a/docset/winserver2016-ps/mpio/Set-MPIOSetting.md +++ b/docset/winserver2016-ps/mpio/Set-MPIOSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Mpio-help.xml Module Name: MPIO ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/mpio/set-mpiosetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/set-mpiosetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-MPIOSetting --- diff --git a/docset/winserver2016-ps/mpio/Set-MSDSMGlobalDefaultLoadBalancePolicy.md b/docset/winserver2016-ps/mpio/Set-MSDSMGlobalDefaultLoadBalancePolicy.md index 6e635e1eff..054c2c50a1 100644 --- a/docset/winserver2016-ps/mpio/Set-MSDSMGlobalDefaultLoadBalancePolicy.md +++ b/docset/winserver2016-ps/mpio/Set-MSDSMGlobalDefaultLoadBalancePolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Mpio-help.xml Module Name: MPIO ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/mpio/set-msdsmglobaldefaultloadbalancepolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/set-msdsmglobaldefaultloadbalancepolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-MSDSMGlobalDefaultLoadBalancePolicy --- diff --git a/docset/winserver2016-ps/mpio/Update-MPIOClaimedHW.md b/docset/winserver2016-ps/mpio/Update-MPIOClaimedHW.md index 15b189a0e9..879f0fb9d3 100644 --- a/docset/winserver2016-ps/mpio/Update-MPIOClaimedHW.md +++ b/docset/winserver2016-ps/mpio/Update-MPIOClaimedHW.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MPIOClaimedHW.cdxml-help.xml Module Name: MPIO ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/mpio/update-mpioclaimedhw?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/update-mpioclaimedhw?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-MPIOClaimedHW --- diff --git a/docset/winserver2016-ps/msdtc/Add-DtcClusterTMMapping.md b/docset/winserver2016-ps/msdtc/Add-DtcClusterTMMapping.md index 69c5ee0b60..ade8b49060 100644 --- a/docset/winserver2016-ps/msdtc/Add-DtcClusterTMMapping.md +++ b/docset/winserver2016-ps/msdtc/Add-DtcClusterTMMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcClusterTMMappingTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/add-dtcclustertmmapping?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/add-dtcclustertmmapping?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DtcClusterTMMapping --- diff --git a/docset/winserver2016-ps/msdtc/Complete-DtcDiagnosticTransaction.md b/docset/winserver2016-ps/msdtc/Complete-DtcDiagnosticTransaction.md index 6919279ac3..1e73014f46 100644 --- a/docset/winserver2016-ps/msdtc/Complete-DtcDiagnosticTransaction.md +++ b/docset/winserver2016-ps/msdtc/Complete-DtcDiagnosticTransaction.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dtc.PowerShell.dll-Help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/complete-dtcdiagnostictransaction?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/complete-dtcdiagnostictransaction?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Complete-DtcDiagnosticTransaction --- diff --git a/docset/winserver2016-ps/msdtc/Get-Dtc.md b/docset/winserver2016-ps/msdtc/Get-Dtc.md index e36109beb5..afe9f37ff6 100644 --- a/docset/winserver2016-ps/msdtc/Get-Dtc.md +++ b/docset/winserver2016-ps/msdtc/Get-Dtc.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtc?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtc?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-Dtc --- diff --git a/docset/winserver2016-ps/msdtc/Get-DtcAdvancedHostSetting.md b/docset/winserver2016-ps/msdtc/Get-DtcAdvancedHostSetting.md index ebbcfb7fe2..5085eb94c1 100644 --- a/docset/winserver2016-ps/msdtc/Get-DtcAdvancedHostSetting.md +++ b/docset/winserver2016-ps/msdtc/Get-DtcAdvancedHostSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcAdvancedHostSettingTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtcadvancedhostsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtcadvancedhostsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DtcAdvancedHostSetting --- diff --git a/docset/winserver2016-ps/msdtc/Get-DtcAdvancedSetting.md b/docset/winserver2016-ps/msdtc/Get-DtcAdvancedSetting.md index 918c08ce24..0614128092 100644 --- a/docset/winserver2016-ps/msdtc/Get-DtcAdvancedSetting.md +++ b/docset/winserver2016-ps/msdtc/Get-DtcAdvancedSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcAdvancedSettingTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtcadvancedsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtcadvancedsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DtcAdvancedSetting --- diff --git a/docset/winserver2016-ps/msdtc/Get-DtcClusterDefault.md b/docset/winserver2016-ps/msdtc/Get-DtcClusterDefault.md index e32f47b624..da9fa14aa7 100644 --- a/docset/winserver2016-ps/msdtc/Get-DtcClusterDefault.md +++ b/docset/winserver2016-ps/msdtc/Get-DtcClusterDefault.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcClusterDefaultTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtcclusterdefault?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtcclusterdefault?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DtcClusterDefault --- diff --git a/docset/winserver2016-ps/msdtc/Get-DtcClusterTMMapping.md b/docset/winserver2016-ps/msdtc/Get-DtcClusterTMMapping.md index c35d5329a6..0dbbab6aa8 100644 --- a/docset/winserver2016-ps/msdtc/Get-DtcClusterTMMapping.md +++ b/docset/winserver2016-ps/msdtc/Get-DtcClusterTMMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcClusterTMMappingTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtcclustertmmapping?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtcclustertmmapping?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DtcClusterTMMapping --- diff --git a/docset/winserver2016-ps/msdtc/Get-DtcDefault.md b/docset/winserver2016-ps/msdtc/Get-DtcDefault.md index 1a65d326a6..ac1e1fdbb1 100644 --- a/docset/winserver2016-ps/msdtc/Get-DtcDefault.md +++ b/docset/winserver2016-ps/msdtc/Get-DtcDefault.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcDefaultTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtcdefault?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtcdefault?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DtcDefault --- diff --git a/docset/winserver2016-ps/msdtc/Get-DtcLog.md b/docset/winserver2016-ps/msdtc/Get-DtcLog.md index 6cb3a04682..4736066363 100644 --- a/docset/winserver2016-ps/msdtc/Get-DtcLog.md +++ b/docset/winserver2016-ps/msdtc/Get-DtcLog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcLogTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtclog?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtclog?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DtcLog --- diff --git a/docset/winserver2016-ps/msdtc/Get-DtcNetworkSetting.md b/docset/winserver2016-ps/msdtc/Get-DtcNetworkSetting.md index cc3d90b48a..a9a5a71d64 100644 --- a/docset/winserver2016-ps/msdtc/Get-DtcNetworkSetting.md +++ b/docset/winserver2016-ps/msdtc/Get-DtcNetworkSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcNetworkSettingTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtcnetworksetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtcnetworksetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DtcNetworkSetting --- diff --git a/docset/winserver2016-ps/msdtc/Get-DtcTransaction.md b/docset/winserver2016-ps/msdtc/Get-DtcTransaction.md index 6df241eba7..bca75a4f5d 100644 --- a/docset/winserver2016-ps/msdtc/Get-DtcTransaction.md +++ b/docset/winserver2016-ps/msdtc/Get-DtcTransaction.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcTransactionTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtctransaction?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtctransaction?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DtcTransaction --- diff --git a/docset/winserver2016-ps/msdtc/Get-DtcTransactionsStatistics.md b/docset/winserver2016-ps/msdtc/Get-DtcTransactionsStatistics.md index bd751d8e3f..987d3f9fae 100644 --- a/docset/winserver2016-ps/msdtc/Get-DtcTransactionsStatistics.md +++ b/docset/winserver2016-ps/msdtc/Get-DtcTransactionsStatistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcTransactionsStatisticsTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtctransactionsstatistics?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtctransactionsstatistics?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DtcTransactionsStatistics --- diff --git a/docset/winserver2016-ps/msdtc/Get-DtcTransactionsTraceSession.md b/docset/winserver2016-ps/msdtc/Get-DtcTransactionsTraceSession.md index e9251a7cac..91f7a5023a 100644 --- a/docset/winserver2016-ps/msdtc/Get-DtcTransactionsTraceSession.md +++ b/docset/winserver2016-ps/msdtc/Get-DtcTransactionsTraceSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcTransactionsTraceSessionTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtctransactionstracesession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtctransactionstracesession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DtcTransactionsTraceSession --- diff --git a/docset/winserver2016-ps/msdtc/Get-DtcTransactionsTraceSetting.md b/docset/winserver2016-ps/msdtc/Get-DtcTransactionsTraceSetting.md index ca3fa49843..4ae8c3ddd4 100644 --- a/docset/winserver2016-ps/msdtc/Get-DtcTransactionsTraceSetting.md +++ b/docset/winserver2016-ps/msdtc/Get-DtcTransactionsTraceSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcTransactionsTraceSettingTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtctransactionstracesetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtctransactionstracesetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DtcTransactionsTraceSetting --- diff --git a/docset/winserver2016-ps/msdtc/Install-Dtc.md b/docset/winserver2016-ps/msdtc/Install-Dtc.md index fc61bc5427..faa4b2a9b9 100644 --- a/docset/winserver2016-ps/msdtc/Install-Dtc.md +++ b/docset/winserver2016-ps/msdtc/Install-Dtc.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/install-dtc?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/install-dtc?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-Dtc --- diff --git a/docset/winserver2016-ps/msdtc/Join-DtcDiagnosticResourceManager.md b/docset/winserver2016-ps/msdtc/Join-DtcDiagnosticResourceManager.md index 2cb6aeea1c..50aa70a6db 100644 --- a/docset/winserver2016-ps/msdtc/Join-DtcDiagnosticResourceManager.md +++ b/docset/winserver2016-ps/msdtc/Join-DtcDiagnosticResourceManager.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dtc.PowerShell.dll-Help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/join-dtcdiagnosticresourcemanager?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/join-dtcdiagnosticresourcemanager?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Join-DtcDiagnosticResourceManager --- diff --git a/docset/winserver2016-ps/msdtc/New-DtcDiagnosticTransaction.md b/docset/winserver2016-ps/msdtc/New-DtcDiagnosticTransaction.md index 5681cd3be1..d25522b271 100644 --- a/docset/winserver2016-ps/msdtc/New-DtcDiagnosticTransaction.md +++ b/docset/winserver2016-ps/msdtc/New-DtcDiagnosticTransaction.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dtc.PowerShell.dll-Help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/new-dtcdiagnostictransaction?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/new-dtcdiagnostictransaction?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-DtcDiagnosticTransaction --- diff --git a/docset/winserver2016-ps/msdtc/Receive-DtcDiagnosticTransaction.md b/docset/winserver2016-ps/msdtc/Receive-DtcDiagnosticTransaction.md index 837a263641..b0c82eb60e 100644 --- a/docset/winserver2016-ps/msdtc/Receive-DtcDiagnosticTransaction.md +++ b/docset/winserver2016-ps/msdtc/Receive-DtcDiagnosticTransaction.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dtc.PowerShell.dll-Help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/receive-dtcdiagnostictransaction?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/receive-dtcdiagnostictransaction?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Receive-DtcDiagnosticTransaction --- diff --git a/docset/winserver2016-ps/msdtc/Remove-DtcClusterTMMapping.md b/docset/winserver2016-ps/msdtc/Remove-DtcClusterTMMapping.md index cd511d1bb6..4549770cd1 100644 --- a/docset/winserver2016-ps/msdtc/Remove-DtcClusterTMMapping.md +++ b/docset/winserver2016-ps/msdtc/Remove-DtcClusterTMMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcClusterTMMappingTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/remove-dtcclustertmmapping?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/remove-dtcclustertmmapping?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DtcClusterTMMapping --- diff --git a/docset/winserver2016-ps/msdtc/Reset-DtcLog.md b/docset/winserver2016-ps/msdtc/Reset-DtcLog.md index b16e62fb06..48209ef04f 100644 --- a/docset/winserver2016-ps/msdtc/Reset-DtcLog.md +++ b/docset/winserver2016-ps/msdtc/Reset-DtcLog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcLogTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/reset-dtclog?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/reset-dtclog?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-DtcLog --- diff --git a/docset/winserver2016-ps/msdtc/Send-DtcDiagnosticTransaction.md b/docset/winserver2016-ps/msdtc/Send-DtcDiagnosticTransaction.md index d0dc77fc25..9871db044e 100644 --- a/docset/winserver2016-ps/msdtc/Send-DtcDiagnosticTransaction.md +++ b/docset/winserver2016-ps/msdtc/Send-DtcDiagnosticTransaction.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dtc.PowerShell.dll-Help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/send-dtcdiagnostictransaction?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/send-dtcdiagnostictransaction?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Send-DtcDiagnosticTransaction --- diff --git a/docset/winserver2016-ps/msdtc/Set-DtcAdvancedHostSetting.md b/docset/winserver2016-ps/msdtc/Set-DtcAdvancedHostSetting.md index 47580d8566..8c3672d759 100644 --- a/docset/winserver2016-ps/msdtc/Set-DtcAdvancedHostSetting.md +++ b/docset/winserver2016-ps/msdtc/Set-DtcAdvancedHostSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcAdvancedHostSettingTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/set-dtcadvancedhostsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/set-dtcadvancedhostsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DtcAdvancedHostSetting --- diff --git a/docset/winserver2016-ps/msdtc/Set-DtcAdvancedSetting.md b/docset/winserver2016-ps/msdtc/Set-DtcAdvancedSetting.md index 98d875d933..1f86bb235f 100644 --- a/docset/winserver2016-ps/msdtc/Set-DtcAdvancedSetting.md +++ b/docset/winserver2016-ps/msdtc/Set-DtcAdvancedSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcAdvancedSettingTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/set-dtcadvancedsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/set-dtcadvancedsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DtcAdvancedSetting --- diff --git a/docset/winserver2016-ps/msdtc/Set-DtcClusterDefault.md b/docset/winserver2016-ps/msdtc/Set-DtcClusterDefault.md index 725e7d429f..eee6ef85d3 100644 --- a/docset/winserver2016-ps/msdtc/Set-DtcClusterDefault.md +++ b/docset/winserver2016-ps/msdtc/Set-DtcClusterDefault.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcClusterDefaultTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/set-dtcclusterdefault?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/set-dtcclusterdefault?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DtcClusterDefault --- diff --git a/docset/winserver2016-ps/msdtc/Set-DtcClusterTMMapping.md b/docset/winserver2016-ps/msdtc/Set-DtcClusterTMMapping.md index ef0dca90c7..6901935ddf 100644 --- a/docset/winserver2016-ps/msdtc/Set-DtcClusterTMMapping.md +++ b/docset/winserver2016-ps/msdtc/Set-DtcClusterTMMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcClusterTMMappingTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/set-dtcclustertmmapping?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/set-dtcclustertmmapping?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DtcClusterTMMapping --- diff --git a/docset/winserver2016-ps/msdtc/Set-DtcDefault.md b/docset/winserver2016-ps/msdtc/Set-DtcDefault.md index 57cee6e4e5..5a5a05642c 100644 --- a/docset/winserver2016-ps/msdtc/Set-DtcDefault.md +++ b/docset/winserver2016-ps/msdtc/Set-DtcDefault.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcDefaultTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/set-dtcdefault?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/set-dtcdefault?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DtcDefault --- diff --git a/docset/winserver2016-ps/msdtc/Set-DtcLog.md b/docset/winserver2016-ps/msdtc/Set-DtcLog.md index d080227595..030899e712 100644 --- a/docset/winserver2016-ps/msdtc/Set-DtcLog.md +++ b/docset/winserver2016-ps/msdtc/Set-DtcLog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcLogTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/set-dtclog?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/set-dtclog?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DtcLog --- diff --git a/docset/winserver2016-ps/msdtc/Set-DtcNetworkSetting.md b/docset/winserver2016-ps/msdtc/Set-DtcNetworkSetting.md index fca6d8ccc2..d77e6dbca2 100644 --- a/docset/winserver2016-ps/msdtc/Set-DtcNetworkSetting.md +++ b/docset/winserver2016-ps/msdtc/Set-DtcNetworkSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcNetworkSettingTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/set-dtcnetworksetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/set-dtcnetworksetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DtcNetworkSetting --- diff --git a/docset/winserver2016-ps/msdtc/Set-DtcTransaction.md b/docset/winserver2016-ps/msdtc/Set-DtcTransaction.md index c64b82b890..ca936e8fc3 100644 --- a/docset/winserver2016-ps/msdtc/Set-DtcTransaction.md +++ b/docset/winserver2016-ps/msdtc/Set-DtcTransaction.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcTransactionTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/set-dtctransaction?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/set-dtctransaction?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DtcTransaction --- diff --git a/docset/winserver2016-ps/msdtc/Set-DtcTransactionsTraceSession.md b/docset/winserver2016-ps/msdtc/Set-DtcTransactionsTraceSession.md index fc015427a8..92e5608c96 100644 --- a/docset/winserver2016-ps/msdtc/Set-DtcTransactionsTraceSession.md +++ b/docset/winserver2016-ps/msdtc/Set-DtcTransactionsTraceSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcTransactionsTraceSessionTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/set-dtctransactionstracesession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/set-dtctransactionstracesession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DtcTransactionsTraceSession --- diff --git a/docset/winserver2016-ps/msdtc/Set-DtcTransactionsTraceSetting.md b/docset/winserver2016-ps/msdtc/Set-DtcTransactionsTraceSetting.md index 428d6e1c64..2b1ded588c 100644 --- a/docset/winserver2016-ps/msdtc/Set-DtcTransactionsTraceSetting.md +++ b/docset/winserver2016-ps/msdtc/Set-DtcTransactionsTraceSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcTransactionsTraceSettingTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/set-dtctransactionstracesetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/set-dtctransactionstracesetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DtcTransactionsTraceSetting --- diff --git a/docset/winserver2016-ps/msdtc/Start-Dtc.md b/docset/winserver2016-ps/msdtc/Start-Dtc.md index c12254ad61..5e766ee7b2 100644 --- a/docset/winserver2016-ps/msdtc/Start-Dtc.md +++ b/docset/winserver2016-ps/msdtc/Start-Dtc.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/start-dtc?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/start-dtc?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-Dtc --- diff --git a/docset/winserver2016-ps/msdtc/Start-DtcDiagnosticResourceManager.md b/docset/winserver2016-ps/msdtc/Start-DtcDiagnosticResourceManager.md index cdc731151f..1842cddcf3 100644 --- a/docset/winserver2016-ps/msdtc/Start-DtcDiagnosticResourceManager.md +++ b/docset/winserver2016-ps/msdtc/Start-DtcDiagnosticResourceManager.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dtc.PowerShell.dll-Help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/start-dtcdiagnosticresourcemanager?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/start-dtcdiagnosticresourcemanager?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-DtcDiagnosticResourceManager --- diff --git a/docset/winserver2016-ps/msdtc/Start-DtcTransactionsTraceSession.md b/docset/winserver2016-ps/msdtc/Start-DtcTransactionsTraceSession.md index 97c7d2071c..e6d99674ea 100644 --- a/docset/winserver2016-ps/msdtc/Start-DtcTransactionsTraceSession.md +++ b/docset/winserver2016-ps/msdtc/Start-DtcTransactionsTraceSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcTransactionsTraceSessionTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/start-dtctransactionstracesession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/start-dtctransactionstracesession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-DtcTransactionsTraceSession --- diff --git a/docset/winserver2016-ps/msdtc/Stop-Dtc.md b/docset/winserver2016-ps/msdtc/Stop-Dtc.md index dad4aa7b35..45f544870c 100644 --- a/docset/winserver2016-ps/msdtc/Stop-Dtc.md +++ b/docset/winserver2016-ps/msdtc/Stop-Dtc.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/stop-dtc?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/stop-dtc?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-Dtc --- diff --git a/docset/winserver2016-ps/msdtc/Stop-DtcDiagnosticResourceManager.md b/docset/winserver2016-ps/msdtc/Stop-DtcDiagnosticResourceManager.md index 4d1eaa5bab..cc193b3949 100644 --- a/docset/winserver2016-ps/msdtc/Stop-DtcDiagnosticResourceManager.md +++ b/docset/winserver2016-ps/msdtc/Stop-DtcDiagnosticResourceManager.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dtc.PowerShell.dll-Help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/stop-dtcdiagnosticresourcemanager?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/stop-dtcdiagnosticresourcemanager?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-DtcDiagnosticResourceManager --- diff --git a/docset/winserver2016-ps/msdtc/Stop-DtcTransactionsTraceSession.md b/docset/winserver2016-ps/msdtc/Stop-DtcTransactionsTraceSession.md index cbc6275648..acf199fb19 100644 --- a/docset/winserver2016-ps/msdtc/Stop-DtcTransactionsTraceSession.md +++ b/docset/winserver2016-ps/msdtc/Stop-DtcTransactionsTraceSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcTransactionsTraceSessionTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/stop-dtctransactionstracesession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/stop-dtctransactionstracesession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-DtcTransactionsTraceSession --- diff --git a/docset/winserver2016-ps/msdtc/Test-Dtc.md b/docset/winserver2016-ps/msdtc/Test-Dtc.md index 4ac3046866..bfd411d4a9 100644 --- a/docset/winserver2016-ps/msdtc/Test-Dtc.md +++ b/docset/winserver2016-ps/msdtc/Test-Dtc.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: TestDtc-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/test-dtc?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/test-dtc?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-Dtc --- diff --git a/docset/winserver2016-ps/msdtc/Undo-DtcDiagnosticTransaction.md b/docset/winserver2016-ps/msdtc/Undo-DtcDiagnosticTransaction.md index 4eafde96a3..a1c4721258 100644 --- a/docset/winserver2016-ps/msdtc/Undo-DtcDiagnosticTransaction.md +++ b/docset/winserver2016-ps/msdtc/Undo-DtcDiagnosticTransaction.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dtc.PowerShell.dll-Help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/undo-dtcdiagnostictransaction?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/undo-dtcdiagnostictransaction?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Undo-DtcDiagnosticTransaction --- diff --git a/docset/winserver2016-ps/msdtc/Uninstall-Dtc.md b/docset/winserver2016-ps/msdtc/Uninstall-Dtc.md index 6ac395cb21..a10c4f1bd8 100644 --- a/docset/winserver2016-ps/msdtc/Uninstall-Dtc.md +++ b/docset/winserver2016-ps/msdtc/Uninstall-Dtc.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/uninstall-dtc?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/uninstall-dtc?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-Dtc --- diff --git a/docset/winserver2016-ps/msdtc/Write-DtcTransactionsTraceSession.md b/docset/winserver2016-ps/msdtc/Write-DtcTransactionsTraceSession.md index 7f048c2b81..91a8d5401f 100644 --- a/docset/winserver2016-ps/msdtc/Write-DtcTransactionsTraceSession.md +++ b/docset/winserver2016-ps/msdtc/Write-DtcTransactionsTraceSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcTransactionsTraceSessionTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/write-dtctransactionstracesession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/write-dtctransactionstracesession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Write-DtcTransactionsTraceSession --- diff --git a/docset/winserver2016-ps/msmq/Clear-MSMQOutgoingQueue.md b/docset/winserver2016-ps/msmq/Clear-MSMQOutgoingQueue.md index e985d19bcc..0816656d26 100644 --- a/docset/winserver2016-ps/msmq/Clear-MSMQOutgoingQueue.md +++ b/docset/winserver2016-ps/msmq/Clear-MSMQOutgoingQueue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/clear-msmqoutgoingqueue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/clear-msmqoutgoingqueue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-MSMQOutgoingQueue --- diff --git a/docset/winserver2016-ps/msmq/Clear-MSMQQueue.md b/docset/winserver2016-ps/msmq/Clear-MSMQQueue.md index b7676ee3bb..05cd2ac6fe 100644 --- a/docset/winserver2016-ps/msmq/Clear-MSMQQueue.md +++ b/docset/winserver2016-ps/msmq/Clear-MSMQQueue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/clear-msmqqueue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/clear-msmqqueue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-MSMQQueue --- diff --git a/docset/winserver2016-ps/msmq/Enable-MSMQCertificate.md b/docset/winserver2016-ps/msmq/Enable-MSMQCertificate.md index 94983a9081..0949d6b171 100644 --- a/docset/winserver2016-ps/msmq/Enable-MSMQCertificate.md +++ b/docset/winserver2016-ps/msmq/Enable-MSMQCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/enable-msmqcertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/enable-msmqcertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-MSMQCertificate --- diff --git a/docset/winserver2016-ps/msmq/Get-MSMQCertificate.md b/docset/winserver2016-ps/msmq/Get-MSMQCertificate.md index 1f2b5a8df1..b730bf3af8 100644 --- a/docset/winserver2016-ps/msmq/Get-MSMQCertificate.md +++ b/docset/winserver2016-ps/msmq/Get-MSMQCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/get-msmqcertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/get-msmqcertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MSMQCertificate --- diff --git a/docset/winserver2016-ps/msmq/Get-MSMQOutgoingQueue.md b/docset/winserver2016-ps/msmq/Get-MSMQOutgoingQueue.md index b6b1979bd3..d13b1077a1 100644 --- a/docset/winserver2016-ps/msmq/Get-MSMQOutgoingQueue.md +++ b/docset/winserver2016-ps/msmq/Get-MSMQOutgoingQueue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/get-msmqoutgoingqueue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/get-msmqoutgoingqueue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MSMQOutgoingQueue --- diff --git a/docset/winserver2016-ps/msmq/Get-MsmqQueue.md b/docset/winserver2016-ps/msmq/Get-MsmqQueue.md index ea061e0649..613bb7dda3 100644 --- a/docset/winserver2016-ps/msmq/Get-MsmqQueue.md +++ b/docset/winserver2016-ps/msmq/Get-MsmqQueue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/get-msmqqueue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/get-msmqqueue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MsmqQueue --- diff --git a/docset/winserver2016-ps/msmq/Get-MsmqQueueACL.md b/docset/winserver2016-ps/msmq/Get-MsmqQueueACL.md index bf0ad0642f..0567a121ee 100644 --- a/docset/winserver2016-ps/msmq/Get-MsmqQueueACL.md +++ b/docset/winserver2016-ps/msmq/Get-MsmqQueueACL.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/get-msmqqueueacl?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/get-msmqqueueacl?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MsmqQueueACL --- diff --git a/docset/winserver2016-ps/msmq/Get-MsmqQueueManager.md b/docset/winserver2016-ps/msmq/Get-MsmqQueueManager.md index 7b9660db3f..0b7998573b 100644 --- a/docset/winserver2016-ps/msmq/Get-MsmqQueueManager.md +++ b/docset/winserver2016-ps/msmq/Get-MsmqQueueManager.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/get-msmqqueuemanager?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/get-msmqqueuemanager?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MsmqQueueManager --- diff --git a/docset/winserver2016-ps/msmq/Get-MsmqQueueManagerACL.md b/docset/winserver2016-ps/msmq/Get-MsmqQueueManagerACL.md index 6a51537e92..7346d43bec 100644 --- a/docset/winserver2016-ps/msmq/Get-MsmqQueueManagerACL.md +++ b/docset/winserver2016-ps/msmq/Get-MsmqQueueManagerACL.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/get-msmqqueuemanageracl?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/get-msmqqueuemanageracl?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MsmqQueueManagerACL --- diff --git a/docset/winserver2016-ps/msmq/Move-MsmqMessage.md b/docset/winserver2016-ps/msmq/Move-MsmqMessage.md index d95db70833..d895faf7b6 100644 --- a/docset/winserver2016-ps/msmq/Move-MsmqMessage.md +++ b/docset/winserver2016-ps/msmq/Move-MsmqMessage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/move-msmqmessage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/move-msmqmessage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-MsmqMessage --- diff --git a/docset/winserver2016-ps/msmq/New-MsmqMessage.md b/docset/winserver2016-ps/msmq/New-MsmqMessage.md index 8ad178064d..3874c38a3c 100644 --- a/docset/winserver2016-ps/msmq/New-MsmqMessage.md +++ b/docset/winserver2016-ps/msmq/New-MsmqMessage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/new-msmqmessage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/new-msmqmessage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-MsmqMessage --- diff --git a/docset/winserver2016-ps/msmq/New-MsmqQueue.md b/docset/winserver2016-ps/msmq/New-MsmqQueue.md index 9c9e68f8d0..ee1380e2d3 100644 --- a/docset/winserver2016-ps/msmq/New-MsmqQueue.md +++ b/docset/winserver2016-ps/msmq/New-MsmqQueue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/new-msmqqueue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/new-msmqqueue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-MsmqQueue --- diff --git a/docset/winserver2016-ps/msmq/Receive-MsmqQueue.md b/docset/winserver2016-ps/msmq/Receive-MsmqQueue.md index 2d33f2e7de..b13b188140 100644 --- a/docset/winserver2016-ps/msmq/Receive-MsmqQueue.md +++ b/docset/winserver2016-ps/msmq/Receive-MsmqQueue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/receive-msmqqueue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/receive-msmqqueue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Receive-MsmqQueue --- diff --git a/docset/winserver2016-ps/msmq/Remove-MsmqCertificate.md b/docset/winserver2016-ps/msmq/Remove-MsmqCertificate.md index cb9f7448f5..fce3638237 100644 --- a/docset/winserver2016-ps/msmq/Remove-MsmqCertificate.md +++ b/docset/winserver2016-ps/msmq/Remove-MsmqCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/remove-msmqcertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/remove-msmqcertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-MsmqCertificate --- diff --git a/docset/winserver2016-ps/msmq/Remove-MsmqQueue.md b/docset/winserver2016-ps/msmq/Remove-MsmqQueue.md index 27acc0e95f..367e2a0b2e 100644 --- a/docset/winserver2016-ps/msmq/Remove-MsmqQueue.md +++ b/docset/winserver2016-ps/msmq/Remove-MsmqQueue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/remove-msmqqueue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/remove-msmqqueue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-MsmqQueue --- diff --git a/docset/winserver2016-ps/msmq/Resume-MsmqOutgoingQueue.md b/docset/winserver2016-ps/msmq/Resume-MsmqOutgoingQueue.md index 5faa20cde9..4141317c03 100644 --- a/docset/winserver2016-ps/msmq/Resume-MsmqOutgoingQueue.md +++ b/docset/winserver2016-ps/msmq/Resume-MsmqOutgoingQueue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/resume-msmqoutgoingqueue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/resume-msmqoutgoingqueue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-MsmqOutgoingQueue --- diff --git a/docset/winserver2016-ps/msmq/Send-MsmqQueue.md b/docset/winserver2016-ps/msmq/Send-MsmqQueue.md index cf68240d0c..0dbd12edcf 100644 --- a/docset/winserver2016-ps/msmq/Send-MsmqQueue.md +++ b/docset/winserver2016-ps/msmq/Send-MsmqQueue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/send-msmqqueue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/send-msmqqueue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Send-MsmqQueue --- diff --git a/docset/winserver2016-ps/msmq/Set-MsmqQueue.md b/docset/winserver2016-ps/msmq/Set-MsmqQueue.md index 787968a2b7..3d629c020b 100644 --- a/docset/winserver2016-ps/msmq/Set-MsmqQueue.md +++ b/docset/winserver2016-ps/msmq/Set-MsmqQueue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/set-msmqqueue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/set-msmqqueue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-MsmqQueue --- diff --git a/docset/winserver2016-ps/msmq/Set-MsmqQueueACL.md b/docset/winserver2016-ps/msmq/Set-MsmqQueueACL.md index c78b568edf..26be595068 100644 --- a/docset/winserver2016-ps/msmq/Set-MsmqQueueACL.md +++ b/docset/winserver2016-ps/msmq/Set-MsmqQueueACL.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/set-msmqqueueacl?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/set-msmqqueueacl?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-MsmqQueueACL --- diff --git a/docset/winserver2016-ps/msmq/Set-MsmqQueueManager.md b/docset/winserver2016-ps/msmq/Set-MsmqQueueManager.md index 0024ded0e4..eec35f58f5 100644 --- a/docset/winserver2016-ps/msmq/Set-MsmqQueueManager.md +++ b/docset/winserver2016-ps/msmq/Set-MsmqQueueManager.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/set-msmqqueuemanager?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/set-msmqqueuemanager?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-MsmqQueueManager --- diff --git a/docset/winserver2016-ps/msmq/Set-MsmqQueueManagerACL.md b/docset/winserver2016-ps/msmq/Set-MsmqQueueManagerACL.md index a7ce2cebe8..285bb5d1a9 100644 --- a/docset/winserver2016-ps/msmq/Set-MsmqQueueManagerACL.md +++ b/docset/winserver2016-ps/msmq/Set-MsmqQueueManagerACL.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/set-msmqqueuemanageracl?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/set-msmqqueuemanageracl?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-MsmqQueueManagerACL --- diff --git a/docset/winserver2016-ps/msmq/Suspend-MsmqOutgoingQueue.md b/docset/winserver2016-ps/msmq/Suspend-MsmqOutgoingQueue.md index 77c0c55f64..5bde7081b4 100644 --- a/docset/winserver2016-ps/msmq/Suspend-MsmqOutgoingQueue.md +++ b/docset/winserver2016-ps/msmq/Suspend-MsmqOutgoingQueue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/suspend-msmqoutgoingqueue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/suspend-msmqoutgoingqueue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-MsmqOutgoingQueue --- diff --git a/docset/winserver2016-ps/multipoint/Add-WmsSystem.md b/docset/winserver2016-ps/multipoint/Add-WmsSystem.md index 1c757233be..f2c01df3f2 100644 --- a/docset/winserver2016-ps/multipoint/Add-WmsSystem.md +++ b/docset/winserver2016-ps/multipoint/Add-WmsSystem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/add-wmssystem?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/add-wmssystem?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WmsSystem --- diff --git a/docset/winserver2016-ps/multipoint/Clear-WmsStation.md b/docset/winserver2016-ps/multipoint/Clear-WmsStation.md index 480fa51898..d7af35b9e5 100644 --- a/docset/winserver2016-ps/multipoint/Clear-WmsStation.md +++ b/docset/winserver2016-ps/multipoint/Clear-WmsStation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/clear-wmsstation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/clear-wmsstation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-WmsStation --- diff --git a/docset/winserver2016-ps/multipoint/Close-WmsApp.md b/docset/winserver2016-ps/multipoint/Close-WmsApp.md index 885f7d14d0..69fbf282c1 100644 --- a/docset/winserver2016-ps/multipoint/Close-WmsApp.md +++ b/docset/winserver2016-ps/multipoint/Close-WmsApp.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/close-wmsapp?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/close-wmsapp?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Close-WmsApp --- diff --git a/docset/winserver2016-ps/multipoint/Close-WmsSession.md b/docset/winserver2016-ps/multipoint/Close-WmsSession.md index ebb9a74eaf..eafa00680a 100644 --- a/docset/winserver2016-ps/multipoint/Close-WmsSession.md +++ b/docset/winserver2016-ps/multipoint/Close-WmsSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/close-wmssession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/close-wmssession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Close-WmsSession --- diff --git a/docset/winserver2016-ps/multipoint/Disable-WmsDiskProtection.md b/docset/winserver2016-ps/multipoint/Disable-WmsDiskProtection.md index 2e66731b74..e98541a931 100644 --- a/docset/winserver2016-ps/multipoint/Disable-WmsDiskProtection.md +++ b/docset/winserver2016-ps/multipoint/Disable-WmsDiskProtection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/disable-wmsdiskprotection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/disable-wmsdiskprotection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WmsDiskProtection --- diff --git a/docset/winserver2016-ps/multipoint/Disable-WmsScheduledUpdate.md b/docset/winserver2016-ps/multipoint/Disable-WmsScheduledUpdate.md index 1031142265..7970c4452e 100644 --- a/docset/winserver2016-ps/multipoint/Disable-WmsScheduledUpdate.md +++ b/docset/winserver2016-ps/multipoint/Disable-WmsScheduledUpdate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/disable-wmsscheduledupdate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/disable-wmsscheduledupdate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WmsScheduledUpdate --- diff --git a/docset/winserver2016-ps/multipoint/Disable-WmsWebLimiting.md b/docset/winserver2016-ps/multipoint/Disable-WmsWebLimiting.md index 14efc43fcb..3f79dbbe6e 100644 --- a/docset/winserver2016-ps/multipoint/Disable-WmsWebLimiting.md +++ b/docset/winserver2016-ps/multipoint/Disable-WmsWebLimiting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/disable-wmsweblimiting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/disable-wmsweblimiting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WmsWebLimiting --- diff --git a/docset/winserver2016-ps/multipoint/Disconnect-WmsSession.md b/docset/winserver2016-ps/multipoint/Disconnect-WmsSession.md index b7cb0d0633..ea32c6817c 100644 --- a/docset/winserver2016-ps/multipoint/Disconnect-WmsSession.md +++ b/docset/winserver2016-ps/multipoint/Disconnect-WmsSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/disconnect-wmssession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/disconnect-wmssession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disconnect-WmsSession --- diff --git a/docset/winserver2016-ps/multipoint/Enable-WmsDiskProtection.md b/docset/winserver2016-ps/multipoint/Enable-WmsDiskProtection.md index 86946c290b..86f1dcc0ca 100644 --- a/docset/winserver2016-ps/multipoint/Enable-WmsDiskProtection.md +++ b/docset/winserver2016-ps/multipoint/Enable-WmsDiskProtection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/enable-wmsdiskprotection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/enable-wmsdiskprotection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WmsDiskProtection --- diff --git a/docset/winserver2016-ps/multipoint/Enable-WmsScheduledUpdate.md b/docset/winserver2016-ps/multipoint/Enable-WmsScheduledUpdate.md index e7bab69f31..a9088efdab 100644 --- a/docset/winserver2016-ps/multipoint/Enable-WmsScheduledUpdate.md +++ b/docset/winserver2016-ps/multipoint/Enable-WmsScheduledUpdate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/enable-wmsscheduledupdate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/enable-wmsscheduledupdate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WmsScheduledUpdate --- diff --git a/docset/winserver2016-ps/multipoint/Enable-WmsWebLimiting.md b/docset/winserver2016-ps/multipoint/Enable-WmsWebLimiting.md index 4701b70051..dcbaa61262 100644 --- a/docset/winserver2016-ps/multipoint/Enable-WmsWebLimiting.md +++ b/docset/winserver2016-ps/multipoint/Enable-WmsWebLimiting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/enable-wmsweblimiting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/enable-wmsweblimiting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WmsWebLimiting --- diff --git a/docset/winserver2016-ps/multipoint/Get-WmsAlert.md b/docset/winserver2016-ps/multipoint/Get-WmsAlert.md index 7696e64a47..3141d8cb11 100644 --- a/docset/winserver2016-ps/multipoint/Get-WmsAlert.md +++ b/docset/winserver2016-ps/multipoint/Get-WmsAlert.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/get-wmsalert?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/get-wmsalert?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WmsAlert --- diff --git a/docset/winserver2016-ps/multipoint/Get-WmsApp.md b/docset/winserver2016-ps/multipoint/Get-WmsApp.md index a61d68d500..f8bfa547b1 100644 --- a/docset/winserver2016-ps/multipoint/Get-WmsApp.md +++ b/docset/winserver2016-ps/multipoint/Get-WmsApp.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/get-wmsapp?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/get-wmsapp?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WmsApp --- diff --git a/docset/winserver2016-ps/multipoint/Get-WmsDiskProtection.md b/docset/winserver2016-ps/multipoint/Get-WmsDiskProtection.md index a6050f4481..7f87bf16ad 100644 --- a/docset/winserver2016-ps/multipoint/Get-WmsDiskProtection.md +++ b/docset/winserver2016-ps/multipoint/Get-WmsDiskProtection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/get-wmsdiskprotection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/get-wmsdiskprotection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WmsDiskProtection --- diff --git a/docset/winserver2016-ps/multipoint/Get-WmsScheduledUpdate.md b/docset/winserver2016-ps/multipoint/Get-WmsScheduledUpdate.md index 135c6461da..66128c9de5 100644 --- a/docset/winserver2016-ps/multipoint/Get-WmsScheduledUpdate.md +++ b/docset/winserver2016-ps/multipoint/Get-WmsScheduledUpdate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/get-wmsscheduledupdate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/get-wmsscheduledupdate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WmsScheduledUpdate --- diff --git a/docset/winserver2016-ps/multipoint/Get-WmsSession.md b/docset/winserver2016-ps/multipoint/Get-WmsSession.md index e402cb2c70..7cf960c58e 100644 --- a/docset/winserver2016-ps/multipoint/Get-WmsSession.md +++ b/docset/winserver2016-ps/multipoint/Get-WmsSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/get-wmssession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/get-wmssession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WmsSession --- diff --git a/docset/winserver2016-ps/multipoint/Get-WmsStation.md b/docset/winserver2016-ps/multipoint/Get-WmsStation.md index f1ab380d5c..4f1642c374 100644 --- a/docset/winserver2016-ps/multipoint/Get-WmsStation.md +++ b/docset/winserver2016-ps/multipoint/Get-WmsStation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/get-wmsstation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/get-wmsstation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WmsStation --- diff --git a/docset/winserver2016-ps/multipoint/Get-WmsSystem.md b/docset/winserver2016-ps/multipoint/Get-WmsSystem.md index c6d70936dc..ad7eb8d30b 100644 --- a/docset/winserver2016-ps/multipoint/Get-WmsSystem.md +++ b/docset/winserver2016-ps/multipoint/Get-WmsSystem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/get-wmssystem?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/get-wmssystem?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WmsSystem --- diff --git a/docset/winserver2016-ps/multipoint/Get-WmsUser.md b/docset/winserver2016-ps/multipoint/Get-WmsUser.md index a6b53046ac..5aa55adf78 100644 --- a/docset/winserver2016-ps/multipoint/Get-WmsUser.md +++ b/docset/winserver2016-ps/multipoint/Get-WmsUser.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/get-wmsuser?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/get-wmsuser?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WmsUser --- diff --git a/docset/winserver2016-ps/multipoint/Get-WmsVersion.md b/docset/winserver2016-ps/multipoint/Get-WmsVersion.md index 5f37d4e6c8..7c889b47ac 100644 --- a/docset/winserver2016-ps/multipoint/Get-WmsVersion.md +++ b/docset/winserver2016-ps/multipoint/Get-WmsVersion.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/get-wmsversion?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/get-wmsversion?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WmsVersion --- diff --git a/docset/winserver2016-ps/multipoint/Get-WmsWebLimiting.md b/docset/winserver2016-ps/multipoint/Get-WmsWebLimiting.md index 92a8ff4cfb..664bc5b529 100644 --- a/docset/winserver2016-ps/multipoint/Get-WmsWebLimiting.md +++ b/docset/winserver2016-ps/multipoint/Get-WmsWebLimiting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/get-wmsweblimiting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/get-wmsweblimiting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WmsWebLimiting --- diff --git a/docset/winserver2016-ps/multipoint/Hide-WmsIdentifier.md b/docset/winserver2016-ps/multipoint/Hide-WmsIdentifier.md index b2008b8c0f..10aee48893 100644 --- a/docset/winserver2016-ps/multipoint/Hide-WmsIdentifier.md +++ b/docset/winserver2016-ps/multipoint/Hide-WmsIdentifier.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/hide-wmsidentifier?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/hide-wmsidentifier?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Hide-WmsIdentifier --- diff --git a/docset/winserver2016-ps/multipoint/Join-WmsStation.md b/docset/winserver2016-ps/multipoint/Join-WmsStation.md index eeea2536f9..cb87e438ea 100644 --- a/docset/winserver2016-ps/multipoint/Join-WmsStation.md +++ b/docset/winserver2016-ps/multipoint/Join-WmsStation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/join-wmsstation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/join-wmsstation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Join-WmsStation --- diff --git a/docset/winserver2016-ps/multipoint/Lock-WmsSession.md b/docset/winserver2016-ps/multipoint/Lock-WmsSession.md index 0df8d9dcbb..8e05966610 100644 --- a/docset/winserver2016-ps/multipoint/Lock-WmsSession.md +++ b/docset/winserver2016-ps/multipoint/Lock-WmsSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/lock-wmssession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/lock-wmssession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Lock-WmsSession --- diff --git a/docset/winserver2016-ps/multipoint/Lock-WmsUsbStorage.md b/docset/winserver2016-ps/multipoint/Lock-WmsUsbStorage.md index e8f944b07c..b1ba5e5763 100644 --- a/docset/winserver2016-ps/multipoint/Lock-WmsUsbStorage.md +++ b/docset/winserver2016-ps/multipoint/Lock-WmsUsbStorage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/lock-wmsusbstorage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/lock-wmsusbstorage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Lock-WmsUsbStorage --- diff --git a/docset/winserver2016-ps/multipoint/New-WmsUser.md b/docset/winserver2016-ps/multipoint/New-WmsUser.md index efa0248515..a5098c8c91 100644 --- a/docset/winserver2016-ps/multipoint/New-WmsUser.md +++ b/docset/winserver2016-ps/multipoint/New-WmsUser.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/new-wmsuser?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/new-wmsuser?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WmsUser --- diff --git a/docset/winserver2016-ps/multipoint/Open-WmsApp.md b/docset/winserver2016-ps/multipoint/Open-WmsApp.md index 84e7203492..ab5753dc83 100644 --- a/docset/winserver2016-ps/multipoint/Open-WmsApp.md +++ b/docset/winserver2016-ps/multipoint/Open-WmsApp.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/open-wmsapp?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/open-wmsapp?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Open-WmsApp --- diff --git a/docset/winserver2016-ps/multipoint/Publish-WmsDesktop.md b/docset/winserver2016-ps/multipoint/Publish-WmsDesktop.md index 72bf3be6a5..56238e15bd 100644 --- a/docset/winserver2016-ps/multipoint/Publish-WmsDesktop.md +++ b/docset/winserver2016-ps/multipoint/Publish-WmsDesktop.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/publish-wmsdesktop?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/publish-wmsdesktop?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Publish-WmsDesktop --- diff --git a/docset/winserver2016-ps/multipoint/Remove-WmsSystem.md b/docset/winserver2016-ps/multipoint/Remove-WmsSystem.md index fa2538e7bd..7059137cc6 100644 --- a/docset/winserver2016-ps/multipoint/Remove-WmsSystem.md +++ b/docset/winserver2016-ps/multipoint/Remove-WmsSystem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/remove-wmssystem?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/remove-wmssystem?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WmsSystem --- diff --git a/docset/winserver2016-ps/multipoint/Remove-WmsUser.md b/docset/winserver2016-ps/multipoint/Remove-WmsUser.md index 6a3cf4d614..b135a82f66 100644 --- a/docset/winserver2016-ps/multipoint/Remove-WmsUser.md +++ b/docset/winserver2016-ps/multipoint/Remove-WmsUser.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/remove-wmsuser?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/remove-wmsuser?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WmsUser --- diff --git a/docset/winserver2016-ps/multipoint/Restart-WmsSystem.md b/docset/winserver2016-ps/multipoint/Restart-WmsSystem.md index cb2002cb36..2f89b7e8cb 100644 --- a/docset/winserver2016-ps/multipoint/Restart-WmsSystem.md +++ b/docset/winserver2016-ps/multipoint/Restart-WmsSystem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/restart-wmssystem?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/restart-wmssystem?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restart-WmsSystem --- diff --git a/docset/winserver2016-ps/multipoint/Resume-WmsDiskProtection.md b/docset/winserver2016-ps/multipoint/Resume-WmsDiskProtection.md index cf547bd772..28580e0e5f 100644 --- a/docset/winserver2016-ps/multipoint/Resume-WmsDiskProtection.md +++ b/docset/winserver2016-ps/multipoint/Resume-WmsDiskProtection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/resume-wmsdiskprotection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/resume-wmsdiskprotection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-WmsDiskProtection --- diff --git a/docset/winserver2016-ps/multipoint/Search-WmsSystem.md b/docset/winserver2016-ps/multipoint/Search-WmsSystem.md index 34e9deed2f..20ad87855e 100644 --- a/docset/winserver2016-ps/multipoint/Search-WmsSystem.md +++ b/docset/winserver2016-ps/multipoint/Search-WmsSystem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/search-wmssystem?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/search-wmssystem?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Search-WmsSystem --- diff --git a/docset/winserver2016-ps/multipoint/Set-WmsScheduledUpdate.md b/docset/winserver2016-ps/multipoint/Set-WmsScheduledUpdate.md index 151515aa19..ce61433555 100644 --- a/docset/winserver2016-ps/multipoint/Set-WmsScheduledUpdate.md +++ b/docset/winserver2016-ps/multipoint/Set-WmsScheduledUpdate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/set-wmsscheduledupdate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/set-wmsscheduledupdate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WmsScheduledUpdate --- diff --git a/docset/winserver2016-ps/multipoint/Set-WmsStation.md b/docset/winserver2016-ps/multipoint/Set-WmsStation.md index 6eab88d02f..e93dbdb4fe 100644 --- a/docset/winserver2016-ps/multipoint/Set-WmsStation.md +++ b/docset/winserver2016-ps/multipoint/Set-WmsStation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/set-wmsstation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/set-wmsstation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WmsStation --- diff --git a/docset/winserver2016-ps/multipoint/Set-WmsSystem.md b/docset/winserver2016-ps/multipoint/Set-WmsSystem.md index 95a561c63c..e83413f007 100644 --- a/docset/winserver2016-ps/multipoint/Set-WmsSystem.md +++ b/docset/winserver2016-ps/multipoint/Set-WmsSystem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/set-wmssystem?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/set-wmssystem?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WmsSystem --- diff --git a/docset/winserver2016-ps/multipoint/Set-WmsUser.md b/docset/winserver2016-ps/multipoint/Set-WmsUser.md index ecfbcad5a8..2b41a7cb5a 100644 --- a/docset/winserver2016-ps/multipoint/Set-WmsUser.md +++ b/docset/winserver2016-ps/multipoint/Set-WmsUser.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/set-wmsuser?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/set-wmsuser?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WmsUser --- diff --git a/docset/winserver2016-ps/multipoint/Set-WmsWebLimiting.md b/docset/winserver2016-ps/multipoint/Set-WmsWebLimiting.md index 4380100d26..16e4130b79 100644 --- a/docset/winserver2016-ps/multipoint/Set-WmsWebLimiting.md +++ b/docset/winserver2016-ps/multipoint/Set-WmsWebLimiting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/set-wmsweblimiting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/set-wmsweblimiting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WmsWebLimiting --- diff --git a/docset/winserver2016-ps/multipoint/Show-WmsDesktop.md b/docset/winserver2016-ps/multipoint/Show-WmsDesktop.md index 65871bcb66..7ffa34169f 100644 --- a/docset/winserver2016-ps/multipoint/Show-WmsDesktop.md +++ b/docset/winserver2016-ps/multipoint/Show-WmsDesktop.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/show-wmsdesktop?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/show-wmsdesktop?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Show-WmsDesktop --- diff --git a/docset/winserver2016-ps/multipoint/Show-WmsIdentifier.md b/docset/winserver2016-ps/multipoint/Show-WmsIdentifier.md index 22d8daa67c..d68cd20f68 100644 --- a/docset/winserver2016-ps/multipoint/Show-WmsIdentifier.md +++ b/docset/winserver2016-ps/multipoint/Show-WmsIdentifier.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/show-wmsidentifier?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/show-wmsidentifier?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Show-WmsIdentifier --- diff --git a/docset/winserver2016-ps/multipoint/Split-WmsStation.md b/docset/winserver2016-ps/multipoint/Split-WmsStation.md index 0c197dc75b..f34684c401 100644 --- a/docset/winserver2016-ps/multipoint/Split-WmsStation.md +++ b/docset/winserver2016-ps/multipoint/Split-WmsStation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/split-wmsstation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/split-wmsstation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Split-WmsStation --- diff --git a/docset/winserver2016-ps/multipoint/Stop-WmsSystem.md b/docset/winserver2016-ps/multipoint/Stop-WmsSystem.md index e42e030d4a..5997aa4d9a 100644 --- a/docset/winserver2016-ps/multipoint/Stop-WmsSystem.md +++ b/docset/winserver2016-ps/multipoint/Stop-WmsSystem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/stop-wmssystem?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/stop-wmssystem?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-WmsSystem --- diff --git a/docset/winserver2016-ps/multipoint/Suspend-WmsDiskProtection.md b/docset/winserver2016-ps/multipoint/Suspend-WmsDiskProtection.md index 601f2ebe14..cb3e714bb6 100644 --- a/docset/winserver2016-ps/multipoint/Suspend-WmsDiskProtection.md +++ b/docset/winserver2016-ps/multipoint/Suspend-WmsDiskProtection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/suspend-wmsdiskprotection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/suspend-wmsdiskprotection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-WmsDiskProtection --- diff --git a/docset/winserver2016-ps/multipoint/Unlock-WmsSession.md b/docset/winserver2016-ps/multipoint/Unlock-WmsSession.md index c00677f09e..81ffd0b40f 100644 --- a/docset/winserver2016-ps/multipoint/Unlock-WmsSession.md +++ b/docset/winserver2016-ps/multipoint/Unlock-WmsSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/unlock-wmssession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/unlock-wmssession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unlock-WmsSession --- diff --git a/docset/winserver2016-ps/multipoint/Unlock-WmsUsbStorage.md b/docset/winserver2016-ps/multipoint/Unlock-WmsUsbStorage.md index ea54203463..4b70e2896b 100644 --- a/docset/winserver2016-ps/multipoint/Unlock-WmsUsbStorage.md +++ b/docset/winserver2016-ps/multipoint/Unlock-WmsUsbStorage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/unlock-wmsusbstorage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/unlock-wmsusbstorage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unlock-WmsUsbStorage --- diff --git a/docset/winserver2016-ps/multipoint/Unpublish-WmsDesktop.md b/docset/winserver2016-ps/multipoint/Unpublish-WmsDesktop.md index 5090e1d9ee..9d67fd24f4 100644 --- a/docset/winserver2016-ps/multipoint/Unpublish-WmsDesktop.md +++ b/docset/winserver2016-ps/multipoint/Unpublish-WmsDesktop.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/unpublish-wmsdesktop?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/unpublish-wmsdesktop?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unpublish-WmsDesktop --- diff --git a/docset/winserver2016-ps/multipoint/Update-WmsStation.md b/docset/winserver2016-ps/multipoint/Update-WmsStation.md index 780d79c70c..c69b939c91 100644 --- a/docset/winserver2016-ps/multipoint/Update-WmsStation.md +++ b/docset/winserver2016-ps/multipoint/Update-WmsStation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/update-wmsstation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/update-wmsstation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-WmsStation --- diff --git a/docset/winserver2016-ps/multipointvdi/Disable-WmsVirtualDesktopRole.md b/docset/winserver2016-ps/multipointvdi/Disable-WmsVirtualDesktopRole.md index baea348953..426e9a03fc 100644 --- a/docset/winserver2016-ps/multipointvdi/Disable-WmsVirtualDesktopRole.md +++ b/docset/winserver2016-ps/multipointvdi/Disable-WmsVirtualDesktopRole.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPointVdi.dll-Help.xml Module Name: MultipointVdi ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipointvdi/disable-wmsvirtualdesktoprole?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipointvdi/disable-wmsvirtualdesktoprole?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WmsVirtualDesktopRole --- diff --git a/docset/winserver2016-ps/multipointvdi/Enable-WmsVirtualDesktopRole.md b/docset/winserver2016-ps/multipointvdi/Enable-WmsVirtualDesktopRole.md index b6072ff35d..512754846a 100644 --- a/docset/winserver2016-ps/multipointvdi/Enable-WmsVirtualDesktopRole.md +++ b/docset/winserver2016-ps/multipointvdi/Enable-WmsVirtualDesktopRole.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPointVdi.dll-Help.xml Module Name: MultipointVdi ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipointvdi/enable-wmsvirtualdesktoprole?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipointvdi/enable-wmsvirtualdesktoprole?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WmsVirtualDesktopRole --- diff --git a/docset/winserver2016-ps/multipointvdi/Get-WmsVirtualDesktop.md b/docset/winserver2016-ps/multipointvdi/Get-WmsVirtualDesktop.md index c401541f99..395d86b9e3 100644 --- a/docset/winserver2016-ps/multipointvdi/Get-WmsVirtualDesktop.md +++ b/docset/winserver2016-ps/multipointvdi/Get-WmsVirtualDesktop.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPointVdi.dll-Help.xml Module Name: MultipointVdi ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipointvdi/get-wmsvirtualdesktop?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipointvdi/get-wmsvirtualdesktop?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WmsVirtualDesktop --- diff --git a/docset/winserver2016-ps/multipointvdi/Import-WmsVirtualDesktop.md b/docset/winserver2016-ps/multipointvdi/Import-WmsVirtualDesktop.md index 4df42e3997..7635cfe5df 100644 --- a/docset/winserver2016-ps/multipointvdi/Import-WmsVirtualDesktop.md +++ b/docset/winserver2016-ps/multipointvdi/Import-WmsVirtualDesktop.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPointVdi.dll-Help.xml Module Name: MultipointVdi ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipointvdi/import-wmsvirtualdesktop?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipointvdi/import-wmsvirtualdesktop?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-WmsVirtualDesktop --- diff --git a/docset/winserver2016-ps/multipointvdi/New-WmsVirtualDesktop.md b/docset/winserver2016-ps/multipointvdi/New-WmsVirtualDesktop.md index 43e584a8cb..58234001b0 100644 --- a/docset/winserver2016-ps/multipointvdi/New-WmsVirtualDesktop.md +++ b/docset/winserver2016-ps/multipointvdi/New-WmsVirtualDesktop.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPointVdi.dll-Help.xml Module Name: MultipointVdi ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipointvdi/new-wmsvirtualdesktop?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipointvdi/new-wmsvirtualdesktop?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WmsVirtualDesktop --- diff --git a/docset/winserver2016-ps/multipointvdi/New-WmsVirtualDesktopTemplate.md b/docset/winserver2016-ps/multipointvdi/New-WmsVirtualDesktopTemplate.md index 2cbccb0c2d..7bf1ac74b8 100644 --- a/docset/winserver2016-ps/multipointvdi/New-WmsVirtualDesktopTemplate.md +++ b/docset/winserver2016-ps/multipointvdi/New-WmsVirtualDesktopTemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPointVdi.dll-Help.xml Module Name: MultipointVdi ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipointvdi/new-wmsvirtualdesktoptemplate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipointvdi/new-wmsvirtualdesktoptemplate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WmsVirtualDesktopTemplate --- diff --git a/docset/winserver2016-ps/multipointvdi/Open-WmsVirtualDesktop.md b/docset/winserver2016-ps/multipointvdi/Open-WmsVirtualDesktop.md index 7130b44715..6853e9e243 100644 --- a/docset/winserver2016-ps/multipointvdi/Open-WmsVirtualDesktop.md +++ b/docset/winserver2016-ps/multipointvdi/Open-WmsVirtualDesktop.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPointVdi.dll-Help.xml Module Name: MultipointVdi ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipointvdi/open-wmsvirtualdesktop?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipointvdi/open-wmsvirtualdesktop?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Open-WmsVirtualDesktop --- diff --git a/docset/winserver2016-ps/nanoserverimagegenerator/Edit-NanoServerImage.md b/docset/winserver2016-ps/nanoserverimagegenerator/Edit-NanoServerImage.md index 5dffa64266..d3ec8f76fc 100644 --- a/docset/winserver2016-ps/nanoserverimagegenerator/Edit-NanoServerImage.md +++ b/docset/winserver2016-ps/nanoserverimagegenerator/Edit-NanoServerImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NanoServerImageGenerator-help.xml Module Name: NanoServerImageGenerator ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nanoserverimagegenerator/edit-nanoserverimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nanoserverimagegenerator/edit-nanoserverimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Edit-NanoServerImage --- diff --git a/docset/winserver2016-ps/nanoserverimagegenerator/Get-NanoServerPackage.md b/docset/winserver2016-ps/nanoserverimagegenerator/Get-NanoServerPackage.md index e81a0660c8..65aca86aa1 100644 --- a/docset/winserver2016-ps/nanoserverimagegenerator/Get-NanoServerPackage.md +++ b/docset/winserver2016-ps/nanoserverimagegenerator/Get-NanoServerPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NanoServerImageGenerator-help.xml Module Name: NanoServerImageGenerator ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nanoserverimagegenerator/get-nanoserverpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nanoserverimagegenerator/get-nanoserverpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NanoServerPackage --- diff --git a/docset/winserver2016-ps/nanoserverimagegenerator/New-NanoServerImage.md b/docset/winserver2016-ps/nanoserverimagegenerator/New-NanoServerImage.md index 7c7cb11260..a18e714867 100644 --- a/docset/winserver2016-ps/nanoserverimagegenerator/New-NanoServerImage.md +++ b/docset/winserver2016-ps/nanoserverimagegenerator/New-NanoServerImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NanoServerImageGenerator-help.xml Module Name: NanoServerImageGenerator ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nanoserverimagegenerator/new-nanoserverimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nanoserverimagegenerator/new-nanoserverimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NanoServerImage --- diff --git a/docset/winserver2016-ps/netadapter/Disable-NetAdapter.md b/docset/winserver2016-ps/netadapter/Disable-NetAdapter.md index 488fa098d2..41998d04dc 100644 --- a/docset/winserver2016-ps/netadapter/Disable-NetAdapter.md +++ b/docset/winserver2016-ps/netadapter/Disable-NetAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapter.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetAdapter --- diff --git a/docset/winserver2016-ps/netadapter/Disable-NetAdapterBinding.md b/docset/winserver2016-ps/netadapter/Disable-NetAdapterBinding.md index 4c4e470b00..84064d8e49 100644 --- a/docset/winserver2016-ps/netadapter/Disable-NetAdapterBinding.md +++ b/docset/winserver2016-ps/netadapter/Disable-NetAdapterBinding.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterBinding.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapterbinding?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapterbinding?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetAdapterBinding --- diff --git a/docset/winserver2016-ps/netadapter/Disable-NetAdapterChecksumOffload.md b/docset/winserver2016-ps/netadapter/Disable-NetAdapterChecksumOffload.md index 9eb2e119fc..2bd686c2be 100644 --- a/docset/winserver2016-ps/netadapter/Disable-NetAdapterChecksumOffload.md +++ b/docset/winserver2016-ps/netadapter/Disable-NetAdapterChecksumOffload.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterChecksumOffload.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapterchecksumoffload?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapterchecksumoffload?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetAdapterChecksumOffload --- diff --git a/docset/winserver2016-ps/netadapter/Disable-NetAdapterEncapsulatedPacketTaskOffload.md b/docset/winserver2016-ps/netadapter/Disable-NetAdapterEncapsulatedPacketTaskOffload.md index d177466e5f..2a3655c148 100644 --- a/docset/winserver2016-ps/netadapter/Disable-NetAdapterEncapsulatedPacketTaskOffload.md +++ b/docset/winserver2016-ps/netadapter/Disable-NetAdapterEncapsulatedPacketTaskOffload.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterEncapsulatedPacketTaskOffload.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapterencapsulatedpackettaskoffload?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapterencapsulatedpackettaskoffload?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetAdapterEncapsulatedPacketTaskOffload --- diff --git a/docset/winserver2016-ps/netadapter/Disable-NetAdapterIPsecOffload.md b/docset/winserver2016-ps/netadapter/Disable-NetAdapterIPsecOffload.md index 6829399b1c..9fa3946181 100644 --- a/docset/winserver2016-ps/netadapter/Disable-NetAdapterIPsecOffload.md +++ b/docset/winserver2016-ps/netadapter/Disable-NetAdapterIPsecOffload.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterIPsecOffload.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapteripsecoffload?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapteripsecoffload?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetAdapterIPsecOffload --- diff --git a/docset/winserver2016-ps/netadapter/Disable-NetAdapterLso.md b/docset/winserver2016-ps/netadapter/Disable-NetAdapterLso.md index 41d82fa362..597893fcdd 100644 --- a/docset/winserver2016-ps/netadapter/Disable-NetAdapterLso.md +++ b/docset/winserver2016-ps/netadapter/Disable-NetAdapterLso.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterLso.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapterlso?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapterlso?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetAdapterLso --- diff --git a/docset/winserver2016-ps/netadapter/Disable-NetAdapterPowerManagement.md b/docset/winserver2016-ps/netadapter/Disable-NetAdapterPowerManagement.md index 5d55bb48cc..7659c14bad 100644 --- a/docset/winserver2016-ps/netadapter/Disable-NetAdapterPowerManagement.md +++ b/docset/winserver2016-ps/netadapter/Disable-NetAdapterPowerManagement.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterPowerManagement.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 02/14/2018 -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapterpowermanagement?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapterpowermanagement?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetAdapterPowerManagement --- diff --git a/docset/winserver2016-ps/netadapter/Disable-NetAdapterQos.md b/docset/winserver2016-ps/netadapter/Disable-NetAdapterQos.md index 4a97926d75..051200436f 100644 --- a/docset/winserver2016-ps/netadapter/Disable-NetAdapterQos.md +++ b/docset/winserver2016-ps/netadapter/Disable-NetAdapterQos.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterQos.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapterqos?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapterqos?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetAdapterQos --- diff --git a/docset/winserver2016-ps/netadapter/Disable-NetAdapterRdma.md b/docset/winserver2016-ps/netadapter/Disable-NetAdapterRdma.md index f5605cbc0d..bf577c974c 100644 --- a/docset/winserver2016-ps/netadapter/Disable-NetAdapterRdma.md +++ b/docset/winserver2016-ps/netadapter/Disable-NetAdapterRdma.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterRdma.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapterrdma?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapterrdma?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetAdapterRdma --- diff --git a/docset/winserver2016-ps/netadapter/Disable-NetAdapterRsc.md b/docset/winserver2016-ps/netadapter/Disable-NetAdapterRsc.md index 62ca406bf1..243e7ef13e 100644 --- a/docset/winserver2016-ps/netadapter/Disable-NetAdapterRsc.md +++ b/docset/winserver2016-ps/netadapter/Disable-NetAdapterRsc.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterRsc.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapterrsc?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapterrsc?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetAdapterRsc --- diff --git a/docset/winserver2016-ps/netadapter/Disable-NetAdapterRss.md b/docset/winserver2016-ps/netadapter/Disable-NetAdapterRss.md index b0dd7cef74..59bc283053 100644 --- a/docset/winserver2016-ps/netadapter/Disable-NetAdapterRss.md +++ b/docset/winserver2016-ps/netadapter/Disable-NetAdapterRss.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterRss.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapterrss?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapterrss?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetAdapterRss --- diff --git a/docset/winserver2016-ps/netadapter/Disable-NetAdapterSriov.md b/docset/winserver2016-ps/netadapter/Disable-NetAdapterSriov.md index 0da6517c80..c19c9a8131 100644 --- a/docset/winserver2016-ps/netadapter/Disable-NetAdapterSriov.md +++ b/docset/winserver2016-ps/netadapter/Disable-NetAdapterSriov.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterSriov.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadaptersriov?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadaptersriov?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetAdapterSriov --- diff --git a/docset/winserver2016-ps/netadapter/Disable-NetAdapterVmq.md b/docset/winserver2016-ps/netadapter/Disable-NetAdapterVmq.md index 1205a9f0af..2deb1b818f 100644 --- a/docset/winserver2016-ps/netadapter/Disable-NetAdapterVmq.md +++ b/docset/winserver2016-ps/netadapter/Disable-NetAdapterVmq.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterVmq.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadaptervmq?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadaptervmq?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetAdapterVmq --- diff --git a/docset/winserver2016-ps/netadapter/Enable-NetAdapter.md b/docset/winserver2016-ps/netadapter/Enable-NetAdapter.md index a2fd42fce8..a21fbf75fa 100644 --- a/docset/winserver2016-ps/netadapter/Enable-NetAdapter.md +++ b/docset/winserver2016-ps/netadapter/Enable-NetAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapter.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetAdapter --- diff --git a/docset/winserver2016-ps/netadapter/Enable-NetAdapterBinding.md b/docset/winserver2016-ps/netadapter/Enable-NetAdapterBinding.md index 99442ac7d4..25af34ae06 100644 --- a/docset/winserver2016-ps/netadapter/Enable-NetAdapterBinding.md +++ b/docset/winserver2016-ps/netadapter/Enable-NetAdapterBinding.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterBinding.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapterbinding?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapterbinding?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetAdapterBinding --- diff --git a/docset/winserver2016-ps/netadapter/Enable-NetAdapterChecksumOffload.md b/docset/winserver2016-ps/netadapter/Enable-NetAdapterChecksumOffload.md index 2754936005..13940371c8 100644 --- a/docset/winserver2016-ps/netadapter/Enable-NetAdapterChecksumOffload.md +++ b/docset/winserver2016-ps/netadapter/Enable-NetAdapterChecksumOffload.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterChecksumOffload.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapterchecksumoffload?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapterchecksumoffload?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetAdapterChecksumOffload --- diff --git a/docset/winserver2016-ps/netadapter/Enable-NetAdapterEncapsulatedPacketTaskOffload.md b/docset/winserver2016-ps/netadapter/Enable-NetAdapterEncapsulatedPacketTaskOffload.md index e1307e3970..69bf1e811b 100644 --- a/docset/winserver2016-ps/netadapter/Enable-NetAdapterEncapsulatedPacketTaskOffload.md +++ b/docset/winserver2016-ps/netadapter/Enable-NetAdapterEncapsulatedPacketTaskOffload.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterEncapsulatedPacketTaskOffload.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapterencapsulatedpackettaskoffload?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapterencapsulatedpackettaskoffload?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetAdapterEncapsulatedPacketTaskOffload --- diff --git a/docset/winserver2016-ps/netadapter/Enable-NetAdapterIPsecOffload.md b/docset/winserver2016-ps/netadapter/Enable-NetAdapterIPsecOffload.md index 3b1fa54094..0da59e13c7 100644 --- a/docset/winserver2016-ps/netadapter/Enable-NetAdapterIPsecOffload.md +++ b/docset/winserver2016-ps/netadapter/Enable-NetAdapterIPsecOffload.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterIPsecOffload.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapteripsecoffload?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapteripsecoffload?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetAdapterIPsecOffload --- diff --git a/docset/winserver2016-ps/netadapter/Enable-NetAdapterLso.md b/docset/winserver2016-ps/netadapter/Enable-NetAdapterLso.md index 072ddba974..4ee63dadda 100644 --- a/docset/winserver2016-ps/netadapter/Enable-NetAdapterLso.md +++ b/docset/winserver2016-ps/netadapter/Enable-NetAdapterLso.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterLso.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapterlso?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapterlso?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetAdapterLso --- diff --git a/docset/winserver2016-ps/netadapter/Enable-NetAdapterPowerManagement.md b/docset/winserver2016-ps/netadapter/Enable-NetAdapterPowerManagement.md index b226a55061..0ec70c40e3 100644 --- a/docset/winserver2016-ps/netadapter/Enable-NetAdapterPowerManagement.md +++ b/docset/winserver2016-ps/netadapter/Enable-NetAdapterPowerManagement.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterPowerManagement.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapterpowermanagement?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapterpowermanagement?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetAdapterPowerManagement --- diff --git a/docset/winserver2016-ps/netadapter/Enable-NetAdapterQos.md b/docset/winserver2016-ps/netadapter/Enable-NetAdapterQos.md index ad873b476c..1a40a7f1b9 100644 --- a/docset/winserver2016-ps/netadapter/Enable-NetAdapterQos.md +++ b/docset/winserver2016-ps/netadapter/Enable-NetAdapterQos.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterQos.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapterqos?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapterqos?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetAdapterQos --- diff --git a/docset/winserver2016-ps/netadapter/Enable-NetAdapterRdma.md b/docset/winserver2016-ps/netadapter/Enable-NetAdapterRdma.md index 47714292f5..844f79e32e 100644 --- a/docset/winserver2016-ps/netadapter/Enable-NetAdapterRdma.md +++ b/docset/winserver2016-ps/netadapter/Enable-NetAdapterRdma.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterRdma.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapterrdma?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapterrdma?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetAdapterRdma --- diff --git a/docset/winserver2016-ps/netadapter/Enable-NetAdapterRsc.md b/docset/winserver2016-ps/netadapter/Enable-NetAdapterRsc.md index 545a7cd2aa..eab35e85d1 100644 --- a/docset/winserver2016-ps/netadapter/Enable-NetAdapterRsc.md +++ b/docset/winserver2016-ps/netadapter/Enable-NetAdapterRsc.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterRsc.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapterrsc?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapterrsc?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetAdapterRsc --- diff --git a/docset/winserver2016-ps/netadapter/Enable-NetAdapterRss.md b/docset/winserver2016-ps/netadapter/Enable-NetAdapterRss.md index 5034261f47..05a948adbf 100644 --- a/docset/winserver2016-ps/netadapter/Enable-NetAdapterRss.md +++ b/docset/winserver2016-ps/netadapter/Enable-NetAdapterRss.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterRss.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapterrss?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapterrss?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetAdapterRss --- diff --git a/docset/winserver2016-ps/netadapter/Enable-NetAdapterSriov.md b/docset/winserver2016-ps/netadapter/Enable-NetAdapterSriov.md index 5180280e9a..dd57cd2846 100644 --- a/docset/winserver2016-ps/netadapter/Enable-NetAdapterSriov.md +++ b/docset/winserver2016-ps/netadapter/Enable-NetAdapterSriov.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterSriov.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadaptersriov?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadaptersriov?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetAdapterSriov --- diff --git a/docset/winserver2016-ps/netadapter/Enable-NetAdapterVmq.md b/docset/winserver2016-ps/netadapter/Enable-NetAdapterVmq.md index 75ebdfa991..9b6b066de6 100644 --- a/docset/winserver2016-ps/netadapter/Enable-NetAdapterVmq.md +++ b/docset/winserver2016-ps/netadapter/Enable-NetAdapterVmq.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterVmq.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadaptervmq?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadaptervmq?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetAdapterVmq --- diff --git a/docset/winserver2016-ps/netadapter/Get-NetAdapter.md b/docset/winserver2016-ps/netadapter/Get-NetAdapter.md index 8954e30aae..69fc89e5cd 100644 --- a/docset/winserver2016-ps/netadapter/Get-NetAdapter.md +++ b/docset/winserver2016-ps/netadapter/Get-NetAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapter.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapter --- diff --git a/docset/winserver2016-ps/netadapter/Get-NetAdapterAdvancedProperty.md b/docset/winserver2016-ps/netadapter/Get-NetAdapterAdvancedProperty.md index 4506b34b27..58be26af58 100644 --- a/docset/winserver2016-ps/netadapter/Get-NetAdapterAdvancedProperty.md +++ b/docset/winserver2016-ps/netadapter/Get-NetAdapterAdvancedProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterAdvancedProperty.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapteradvancedproperty?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapteradvancedproperty?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterAdvancedProperty --- diff --git a/docset/winserver2016-ps/netadapter/Get-NetAdapterBinding.md b/docset/winserver2016-ps/netadapter/Get-NetAdapterBinding.md index f3f6140e90..b2b466cb71 100644 --- a/docset/winserver2016-ps/netadapter/Get-NetAdapterBinding.md +++ b/docset/winserver2016-ps/netadapter/Get-NetAdapterBinding.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterBinding.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterbinding?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterbinding?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterBinding --- diff --git a/docset/winserver2016-ps/netadapter/Get-NetAdapterChecksumOffload.md b/docset/winserver2016-ps/netadapter/Get-NetAdapterChecksumOffload.md index 082466dbab..31248f28a8 100644 --- a/docset/winserver2016-ps/netadapter/Get-NetAdapterChecksumOffload.md +++ b/docset/winserver2016-ps/netadapter/Get-NetAdapterChecksumOffload.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterChecksumOffload.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterchecksumoffload?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterchecksumoffload?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterChecksumOffload --- diff --git a/docset/winserver2016-ps/netadapter/Get-NetAdapterEncapsulatedPacketTaskOffload.md b/docset/winserver2016-ps/netadapter/Get-NetAdapterEncapsulatedPacketTaskOffload.md index e4ac962277..508736f1a4 100644 --- a/docset/winserver2016-ps/netadapter/Get-NetAdapterEncapsulatedPacketTaskOffload.md +++ b/docset/winserver2016-ps/netadapter/Get-NetAdapterEncapsulatedPacketTaskOffload.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterEncapsulatedPacketTaskOffload.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterencapsulatedpackettaskoffload?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterencapsulatedpackettaskoffload?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterEncapsulatedPacketTaskOffload --- diff --git a/docset/winserver2016-ps/netadapter/Get-NetAdapterHardwareInfo.md b/docset/winserver2016-ps/netadapter/Get-NetAdapterHardwareInfo.md index f41d700d9a..ad12c75abd 100644 --- a/docset/winserver2016-ps/netadapter/Get-NetAdapterHardwareInfo.md +++ b/docset/winserver2016-ps/netadapter/Get-NetAdapterHardwareInfo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterHardwareInfo.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterhardwareinfo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterhardwareinfo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterHardwareInfo --- diff --git a/docset/winserver2016-ps/netadapter/Get-NetAdapterIPsecOffload.md b/docset/winserver2016-ps/netadapter/Get-NetAdapterIPsecOffload.md index 7b74a6913a..b59dd9d40c 100644 --- a/docset/winserver2016-ps/netadapter/Get-NetAdapterIPsecOffload.md +++ b/docset/winserver2016-ps/netadapter/Get-NetAdapterIPsecOffload.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterIPsecOffload.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapteripsecoffload?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapteripsecoffload?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterIPsecOffload --- diff --git a/docset/winserver2016-ps/netadapter/Get-NetAdapterLso.md b/docset/winserver2016-ps/netadapter/Get-NetAdapterLso.md index 7aa5b85d35..42c2ced4ef 100644 --- a/docset/winserver2016-ps/netadapter/Get-NetAdapterLso.md +++ b/docset/winserver2016-ps/netadapter/Get-NetAdapterLso.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterLso.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterlso?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterlso?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterLso --- diff --git a/docset/winserver2016-ps/netadapter/Get-NetAdapterPowerManagement.md b/docset/winserver2016-ps/netadapter/Get-NetAdapterPowerManagement.md index 60f04ffa4d..3325296dd1 100644 --- a/docset/winserver2016-ps/netadapter/Get-NetAdapterPowerManagement.md +++ b/docset/winserver2016-ps/netadapter/Get-NetAdapterPowerManagement.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterPowerManagement.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterpowermanagement?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterpowermanagement?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterPowerManagement --- diff --git a/docset/winserver2016-ps/netadapter/Get-NetAdapterQos.md b/docset/winserver2016-ps/netadapter/Get-NetAdapterQos.md index 18f5a81bcb..e5a328ebb7 100644 --- a/docset/winserver2016-ps/netadapter/Get-NetAdapterQos.md +++ b/docset/winserver2016-ps/netadapter/Get-NetAdapterQos.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterQos.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterqos?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterqos?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterQos --- diff --git a/docset/winserver2016-ps/netadapter/Get-NetAdapterRdma.md b/docset/winserver2016-ps/netadapter/Get-NetAdapterRdma.md index f0ba2763d2..525d24cc60 100644 --- a/docset/winserver2016-ps/netadapter/Get-NetAdapterRdma.md +++ b/docset/winserver2016-ps/netadapter/Get-NetAdapterRdma.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterRdma.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterrdma?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterrdma?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterRdma --- diff --git a/docset/winserver2016-ps/netadapter/Get-NetAdapterRsc.md b/docset/winserver2016-ps/netadapter/Get-NetAdapterRsc.md index 9f425955a3..97e2c847d6 100644 --- a/docset/winserver2016-ps/netadapter/Get-NetAdapterRsc.md +++ b/docset/winserver2016-ps/netadapter/Get-NetAdapterRsc.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterRsc.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterrsc?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterrsc?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterRsc --- diff --git a/docset/winserver2016-ps/netadapter/Get-NetAdapterRss.md b/docset/winserver2016-ps/netadapter/Get-NetAdapterRss.md index 1212593c00..092b1ecc79 100644 --- a/docset/winserver2016-ps/netadapter/Get-NetAdapterRss.md +++ b/docset/winserver2016-ps/netadapter/Get-NetAdapterRss.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterRss.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterrss?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterrss?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterRss --- diff --git a/docset/winserver2016-ps/netadapter/Get-NetAdapterSriov.md b/docset/winserver2016-ps/netadapter/Get-NetAdapterSriov.md index 529ece2dbd..ae8a194058 100644 --- a/docset/winserver2016-ps/netadapter/Get-NetAdapterSriov.md +++ b/docset/winserver2016-ps/netadapter/Get-NetAdapterSriov.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterSriov.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadaptersriov?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadaptersriov?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterSriov --- diff --git a/docset/winserver2016-ps/netadapter/Get-NetAdapterSriovVf.md b/docset/winserver2016-ps/netadapter/Get-NetAdapterSriovVf.md index 3069caebab..71a2b319ce 100644 --- a/docset/winserver2016-ps/netadapter/Get-NetAdapterSriovVf.md +++ b/docset/winserver2016-ps/netadapter/Get-NetAdapterSriovVf.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterSriovVf.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadaptersriovvf?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadaptersriovvf?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterSriovVf --- diff --git a/docset/winserver2016-ps/netadapter/Get-NetAdapterStatistics.md b/docset/winserver2016-ps/netadapter/Get-NetAdapterStatistics.md index d0b1d8f9d3..750f942b9c 100644 --- a/docset/winserver2016-ps/netadapter/Get-NetAdapterStatistics.md +++ b/docset/winserver2016-ps/netadapter/Get-NetAdapterStatistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterStatistics.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterstatistics?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterstatistics?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterStatistics --- diff --git a/docset/winserver2016-ps/netadapter/Get-NetAdapterVPort.md b/docset/winserver2016-ps/netadapter/Get-NetAdapterVPort.md index caacc01b98..8da5a6f459 100644 --- a/docset/winserver2016-ps/netadapter/Get-NetAdapterVPort.md +++ b/docset/winserver2016-ps/netadapter/Get-NetAdapterVPort.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterVPort.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadaptervport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadaptervport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterVPort --- diff --git a/docset/winserver2016-ps/netadapter/Get-NetAdapterVmq.md b/docset/winserver2016-ps/netadapter/Get-NetAdapterVmq.md index 31d7d1cf1f..d9264f571f 100644 --- a/docset/winserver2016-ps/netadapter/Get-NetAdapterVmq.md +++ b/docset/winserver2016-ps/netadapter/Get-NetAdapterVmq.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterVmq.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadaptervmq?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadaptervmq?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterVmq --- diff --git a/docset/winserver2016-ps/netadapter/Get-NetAdapterVmqQueue.md b/docset/winserver2016-ps/netadapter/Get-NetAdapterVmqQueue.md index 54847d0224..659b0b4c6f 100644 --- a/docset/winserver2016-ps/netadapter/Get-NetAdapterVmqQueue.md +++ b/docset/winserver2016-ps/netadapter/Get-NetAdapterVmqQueue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterVmqQueue.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadaptervmqqueue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadaptervmqqueue?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterVmqQueue --- diff --git a/docset/winserver2016-ps/netadapter/New-NetAdapterAdvancedProperty.md b/docset/winserver2016-ps/netadapter/New-NetAdapterAdvancedProperty.md index 6cec16ad40..b57c6869e3 100644 --- a/docset/winserver2016-ps/netadapter/New-NetAdapterAdvancedProperty.md +++ b/docset/winserver2016-ps/netadapter/New-NetAdapterAdvancedProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterAdvancedProperty.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/new-netadapteradvancedproperty?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/new-netadapteradvancedproperty?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetAdapterAdvancedProperty --- diff --git a/docset/winserver2016-ps/netadapter/Remove-NetAdapterAdvancedProperty.md b/docset/winserver2016-ps/netadapter/Remove-NetAdapterAdvancedProperty.md index 67dfda8600..1dbb0fe636 100644 --- a/docset/winserver2016-ps/netadapter/Remove-NetAdapterAdvancedProperty.md +++ b/docset/winserver2016-ps/netadapter/Remove-NetAdapterAdvancedProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterAdvancedProperty.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/remove-netadapteradvancedproperty?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/remove-netadapteradvancedproperty?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetAdapterAdvancedProperty --- diff --git a/docset/winserver2016-ps/netadapter/Rename-NetAdapter.md b/docset/winserver2016-ps/netadapter/Rename-NetAdapter.md index 5a3c5398fa..62169ada7e 100644 --- a/docset/winserver2016-ps/netadapter/Rename-NetAdapter.md +++ b/docset/winserver2016-ps/netadapter/Rename-NetAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapter.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/rename-netadapter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/rename-netadapter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-NetAdapter --- diff --git a/docset/winserver2016-ps/netadapter/Reset-NetAdapterAdvancedProperty.md b/docset/winserver2016-ps/netadapter/Reset-NetAdapterAdvancedProperty.md index 0c564ee698..b5b533abda 100644 --- a/docset/winserver2016-ps/netadapter/Reset-NetAdapterAdvancedProperty.md +++ b/docset/winserver2016-ps/netadapter/Reset-NetAdapterAdvancedProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterAdvancedProperty.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/reset-netadapteradvancedproperty?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/reset-netadapteradvancedproperty?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-NetAdapterAdvancedProperty --- diff --git a/docset/winserver2016-ps/netadapter/Restart-NetAdapter.md b/docset/winserver2016-ps/netadapter/Restart-NetAdapter.md index 6a16de9828..c04da8e94b 100644 --- a/docset/winserver2016-ps/netadapter/Restart-NetAdapter.md +++ b/docset/winserver2016-ps/netadapter/Restart-NetAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapter.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/restart-netadapter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/restart-netadapter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restart-NetAdapter --- diff --git a/docset/winserver2016-ps/netadapter/Set-NetAdapter.md b/docset/winserver2016-ps/netadapter/Set-NetAdapter.md index 4ef17db8a6..15ca54aea3 100644 --- a/docset/winserver2016-ps/netadapter/Set-NetAdapter.md +++ b/docset/winserver2016-ps/netadapter/Set-NetAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapter.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapter --- diff --git a/docset/winserver2016-ps/netadapter/Set-NetAdapterAdvancedProperty.md b/docset/winserver2016-ps/netadapter/Set-NetAdapterAdvancedProperty.md index d2e31bc64d..64ccf02c29 100644 --- a/docset/winserver2016-ps/netadapter/Set-NetAdapterAdvancedProperty.md +++ b/docset/winserver2016-ps/netadapter/Set-NetAdapterAdvancedProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterAdvancedProperty.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapteradvancedproperty?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapteradvancedproperty?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapterAdvancedProperty --- diff --git a/docset/winserver2016-ps/netadapter/Set-NetAdapterBinding.md b/docset/winserver2016-ps/netadapter/Set-NetAdapterBinding.md index ee640549fc..c3b66eb179 100644 --- a/docset/winserver2016-ps/netadapter/Set-NetAdapterBinding.md +++ b/docset/winserver2016-ps/netadapter/Set-NetAdapterBinding.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterBinding.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapterbinding?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapterbinding?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapterBinding --- diff --git a/docset/winserver2016-ps/netadapter/Set-NetAdapterChecksumOffload.md b/docset/winserver2016-ps/netadapter/Set-NetAdapterChecksumOffload.md index c79fddc8cf..79ec2040ea 100644 --- a/docset/winserver2016-ps/netadapter/Set-NetAdapterChecksumOffload.md +++ b/docset/winserver2016-ps/netadapter/Set-NetAdapterChecksumOffload.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterChecksumOffload.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapterchecksumoffload?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapterchecksumoffload?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapterChecksumOffload --- diff --git a/docset/winserver2016-ps/netadapter/Set-NetAdapterEncapsulatedPacketTaskOffload.md b/docset/winserver2016-ps/netadapter/Set-NetAdapterEncapsulatedPacketTaskOffload.md index 95da01404a..ebb594b21d 100644 --- a/docset/winserver2016-ps/netadapter/Set-NetAdapterEncapsulatedPacketTaskOffload.md +++ b/docset/winserver2016-ps/netadapter/Set-NetAdapterEncapsulatedPacketTaskOffload.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterEncapsulatedPacketTaskOffload.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapterencapsulatedpackettaskoffload?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapterencapsulatedpackettaskoffload?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapterEncapsulatedPacketTaskOffload --- diff --git a/docset/winserver2016-ps/netadapter/Set-NetAdapterIPsecOffload.md b/docset/winserver2016-ps/netadapter/Set-NetAdapterIPsecOffload.md index ae6e33c99f..ac56064b77 100644 --- a/docset/winserver2016-ps/netadapter/Set-NetAdapterIPsecOffload.md +++ b/docset/winserver2016-ps/netadapter/Set-NetAdapterIPsecOffload.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterIPsecOffload.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapteripsecoffload?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapteripsecoffload?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapterIPsecOffload --- diff --git a/docset/winserver2016-ps/netadapter/Set-NetAdapterLso.md b/docset/winserver2016-ps/netadapter/Set-NetAdapterLso.md index 590279b201..1b248376a2 100644 --- a/docset/winserver2016-ps/netadapter/Set-NetAdapterLso.md +++ b/docset/winserver2016-ps/netadapter/Set-NetAdapterLso.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterLso.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapterlso?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapterlso?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapterLso --- diff --git a/docset/winserver2016-ps/netadapter/Set-NetAdapterPowerManagement.md b/docset/winserver2016-ps/netadapter/Set-NetAdapterPowerManagement.md index 4972ada944..279dd54496 100644 --- a/docset/winserver2016-ps/netadapter/Set-NetAdapterPowerManagement.md +++ b/docset/winserver2016-ps/netadapter/Set-NetAdapterPowerManagement.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterPowerManagement.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapterpowermanagement?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapterpowermanagement?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapterPowerManagement --- diff --git a/docset/winserver2016-ps/netadapter/Set-NetAdapterQos.md b/docset/winserver2016-ps/netadapter/Set-NetAdapterQos.md index fe2d518fd3..ceaf90b11b 100644 --- a/docset/winserver2016-ps/netadapter/Set-NetAdapterQos.md +++ b/docset/winserver2016-ps/netadapter/Set-NetAdapterQos.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterQos.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapterqos?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapterqos?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapterQos --- diff --git a/docset/winserver2016-ps/netadapter/Set-NetAdapterRdma.md b/docset/winserver2016-ps/netadapter/Set-NetAdapterRdma.md index 9516ac47ab..cc824aa995 100644 --- a/docset/winserver2016-ps/netadapter/Set-NetAdapterRdma.md +++ b/docset/winserver2016-ps/netadapter/Set-NetAdapterRdma.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterRdma.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapterrdma?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapterrdma?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapterRdma --- diff --git a/docset/winserver2016-ps/netadapter/Set-NetAdapterRsc.md b/docset/winserver2016-ps/netadapter/Set-NetAdapterRsc.md index 0c97146084..25c584f256 100644 --- a/docset/winserver2016-ps/netadapter/Set-NetAdapterRsc.md +++ b/docset/winserver2016-ps/netadapter/Set-NetAdapterRsc.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterRsc.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapterrsc?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapterrsc?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapterRsc --- diff --git a/docset/winserver2016-ps/netadapter/Set-NetAdapterRss.md b/docset/winserver2016-ps/netadapter/Set-NetAdapterRss.md index af7328daa8..1aa8a75a6c 100644 --- a/docset/winserver2016-ps/netadapter/Set-NetAdapterRss.md +++ b/docset/winserver2016-ps/netadapter/Set-NetAdapterRss.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterRss.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapterrss?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapterrss?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapterRss --- diff --git a/docset/winserver2016-ps/netadapter/Set-NetAdapterSriov.md b/docset/winserver2016-ps/netadapter/Set-NetAdapterSriov.md index de53cc8023..1eed29d4e5 100644 --- a/docset/winserver2016-ps/netadapter/Set-NetAdapterSriov.md +++ b/docset/winserver2016-ps/netadapter/Set-NetAdapterSriov.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterSriov.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadaptersriov?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadaptersriov?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapterSriov --- diff --git a/docset/winserver2016-ps/netadapter/Set-NetAdapterVmq.md b/docset/winserver2016-ps/netadapter/Set-NetAdapterVmq.md index 1260c74fc4..ec86f5d236 100644 --- a/docset/winserver2016-ps/netadapter/Set-NetAdapterVmq.md +++ b/docset/winserver2016-ps/netadapter/Set-NetAdapterVmq.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterVmq.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadaptervmq?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadaptervmq?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapterVmq --- diff --git a/docset/winserver2016-ps/netconnection/Get-NetConnectionProfile.md b/docset/winserver2016-ps/netconnection/Get-NetConnectionProfile.md index 9bc47362d6..c67f0e3c26 100644 --- a/docset/winserver2016-ps/netconnection/Get-NetConnectionProfile.md +++ b/docset/winserver2016-ps/netconnection/Get-NetConnectionProfile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetConnectionProfile.cdxml-help.xml Module Name: NetConnection ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netconnectionprofile/get-netconnectionprofile?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netconnectionprofile/get-netconnectionprofile?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetConnectionProfile --- diff --git a/docset/winserver2016-ps/netconnection/Set-NetConnectionProfile.md b/docset/winserver2016-ps/netconnection/Set-NetConnectionProfile.md index 4666f81b08..276285bd05 100644 --- a/docset/winserver2016-ps/netconnection/Set-NetConnectionProfile.md +++ b/docset/winserver2016-ps/netconnection/Set-NetConnectionProfile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetConnectionProfile.cdxml-help.xml Module Name: NetConnection ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netconnectionprofile/set-netconnectionprofile?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netconnectionprofile/set-netconnectionprofile?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetConnectionProfile --- diff --git a/docset/winserver2016-ps/neteventpacketcapture/Add-NetEventNetworkAdapter.md b/docset/winserver2016-ps/neteventpacketcapture/Add-NetEventNetworkAdapter.md index 48c9f9dc64..58df14c153 100644 --- a/docset/winserver2016-ps/neteventpacketcapture/Add-NetEventNetworkAdapter.md +++ b/docset/winserver2016-ps/neteventpacketcapture/Add-NetEventNetworkAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventNetworkAdapter.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/add-neteventnetworkadapter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/add-neteventnetworkadapter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NetEventNetworkAdapter --- diff --git a/docset/winserver2016-ps/neteventpacketcapture/Add-NetEventPacketCaptureProvider.md b/docset/winserver2016-ps/neteventpacketcapture/Add-NetEventPacketCaptureProvider.md index 7efe9a71a3..31c568668a 100644 --- a/docset/winserver2016-ps/neteventpacketcapture/Add-NetEventPacketCaptureProvider.md +++ b/docset/winserver2016-ps/neteventpacketcapture/Add-NetEventPacketCaptureProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventPacketCaptureProvider.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/add-neteventpacketcaptureprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/add-neteventpacketcaptureprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NetEventPacketCaptureProvider --- diff --git a/docset/winserver2016-ps/neteventpacketcapture/Add-NetEventProvider.md b/docset/winserver2016-ps/neteventpacketcapture/Add-NetEventProvider.md index 732c8ceb91..c69e6da590 100644 --- a/docset/winserver2016-ps/neteventpacketcapture/Add-NetEventProvider.md +++ b/docset/winserver2016-ps/neteventpacketcapture/Add-NetEventProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventProvider.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/add-neteventprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/add-neteventprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NetEventProvider --- diff --git a/docset/winserver2016-ps/neteventpacketcapture/Add-NetEventVmNetworkAdapter.md b/docset/winserver2016-ps/neteventpacketcapture/Add-NetEventVmNetworkAdapter.md index d0f6ad1dac..54724b1127 100644 --- a/docset/winserver2016-ps/neteventpacketcapture/Add-NetEventVmNetworkAdapter.md +++ b/docset/winserver2016-ps/neteventpacketcapture/Add-NetEventVmNetworkAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventVmNetworkAdatper.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/add-neteventvmnetworkadapter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/add-neteventvmnetworkadapter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NetEventVmNetworkAdapter --- diff --git a/docset/winserver2016-ps/neteventpacketcapture/Add-NetEventVmSwitch.md b/docset/winserver2016-ps/neteventpacketcapture/Add-NetEventVmSwitch.md index 3e33fb99f4..3f722707d2 100644 --- a/docset/winserver2016-ps/neteventpacketcapture/Add-NetEventVmSwitch.md +++ b/docset/winserver2016-ps/neteventpacketcapture/Add-NetEventVmSwitch.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventVmSwitch.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/add-neteventvmswitch?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/add-neteventvmswitch?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NetEventVmSwitch --- diff --git a/docset/winserver2016-ps/neteventpacketcapture/Add-NetEventWFPCaptureProvider.md b/docset/winserver2016-ps/neteventpacketcapture/Add-NetEventWFPCaptureProvider.md index 5596ced3bf..3b8f2849d5 100644 --- a/docset/winserver2016-ps/neteventpacketcapture/Add-NetEventWFPCaptureProvider.md +++ b/docset/winserver2016-ps/neteventpacketcapture/Add-NetEventWFPCaptureProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventWFPCaptureProvider.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/add-neteventwfpcaptureprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/add-neteventwfpcaptureprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NetEventWFPCaptureProvider --- diff --git a/docset/winserver2016-ps/neteventpacketcapture/Get-NetEventNetworkAdapter.md b/docset/winserver2016-ps/neteventpacketcapture/Get-NetEventNetworkAdapter.md index 783b2d592e..9f0de0c660 100644 --- a/docset/winserver2016-ps/neteventpacketcapture/Get-NetEventNetworkAdapter.md +++ b/docset/winserver2016-ps/neteventpacketcapture/Get-NetEventNetworkAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventNetworkAdapter.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/get-neteventnetworkadapter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/get-neteventnetworkadapter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetEventNetworkAdapter --- diff --git a/docset/winserver2016-ps/neteventpacketcapture/Get-NetEventPacketCaptureProvider.md b/docset/winserver2016-ps/neteventpacketcapture/Get-NetEventPacketCaptureProvider.md index 9e0abf525b..e6d1bcde3b 100644 --- a/docset/winserver2016-ps/neteventpacketcapture/Get-NetEventPacketCaptureProvider.md +++ b/docset/winserver2016-ps/neteventpacketcapture/Get-NetEventPacketCaptureProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventPacketCaptureProvider.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/get-neteventpacketcaptureprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/get-neteventpacketcaptureprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetEventPacketCaptureProvider --- diff --git a/docset/winserver2016-ps/neteventpacketcapture/Get-NetEventProvider.md b/docset/winserver2016-ps/neteventpacketcapture/Get-NetEventProvider.md index 55875311e6..bd74078ab7 100644 --- a/docset/winserver2016-ps/neteventpacketcapture/Get-NetEventProvider.md +++ b/docset/winserver2016-ps/neteventpacketcapture/Get-NetEventProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventProvider.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/get-neteventprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/get-neteventprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetEventProvider --- diff --git a/docset/winserver2016-ps/neteventpacketcapture/Get-NetEventSession.md b/docset/winserver2016-ps/neteventpacketcapture/Get-NetEventSession.md index 9c6420930f..6b0244124a 100644 --- a/docset/winserver2016-ps/neteventpacketcapture/Get-NetEventSession.md +++ b/docset/winserver2016-ps/neteventpacketcapture/Get-NetEventSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventSession.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/get-neteventsession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/get-neteventsession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetEventSession --- diff --git a/docset/winserver2016-ps/neteventpacketcapture/Get-NetEventVmNetworkAdapter.md b/docset/winserver2016-ps/neteventpacketcapture/Get-NetEventVmNetworkAdapter.md index 72367c8678..6e3182a6c1 100644 --- a/docset/winserver2016-ps/neteventpacketcapture/Get-NetEventVmNetworkAdapter.md +++ b/docset/winserver2016-ps/neteventpacketcapture/Get-NetEventVmNetworkAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventVmNetworkAdatper.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/get-neteventvmnetworkadapter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/get-neteventvmnetworkadapter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetEventVmNetworkAdapter --- diff --git a/docset/winserver2016-ps/neteventpacketcapture/Get-NetEventVmSwitch.md b/docset/winserver2016-ps/neteventpacketcapture/Get-NetEventVmSwitch.md index 7ea653d96f..ea75a90a2a 100644 --- a/docset/winserver2016-ps/neteventpacketcapture/Get-NetEventVmSwitch.md +++ b/docset/winserver2016-ps/neteventpacketcapture/Get-NetEventVmSwitch.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventVmSwitch.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/get-neteventvmswitch?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/get-neteventvmswitch?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetEventVmSwitch --- diff --git a/docset/winserver2016-ps/neteventpacketcapture/Get-NetEventWFPCaptureProvider.md b/docset/winserver2016-ps/neteventpacketcapture/Get-NetEventWFPCaptureProvider.md index 5ee7d9b8fe..dd7d6efb1e 100644 --- a/docset/winserver2016-ps/neteventpacketcapture/Get-NetEventWFPCaptureProvider.md +++ b/docset/winserver2016-ps/neteventpacketcapture/Get-NetEventWFPCaptureProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventWFPCaptureProvider.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/get-neteventwfpcaptureprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/get-neteventwfpcaptureprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetEventWFPCaptureProvider --- diff --git a/docset/winserver2016-ps/neteventpacketcapture/New-NetEventSession.md b/docset/winserver2016-ps/neteventpacketcapture/New-NetEventSession.md index 74f44aafc3..321e7f254d 100644 --- a/docset/winserver2016-ps/neteventpacketcapture/New-NetEventSession.md +++ b/docset/winserver2016-ps/neteventpacketcapture/New-NetEventSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventSession.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/new-neteventsession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/new-neteventsession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetEventSession --- diff --git a/docset/winserver2016-ps/neteventpacketcapture/Remove-NetEventNetworkAdapter.md b/docset/winserver2016-ps/neteventpacketcapture/Remove-NetEventNetworkAdapter.md index 9d419ae1d5..8870242414 100644 --- a/docset/winserver2016-ps/neteventpacketcapture/Remove-NetEventNetworkAdapter.md +++ b/docset/winserver2016-ps/neteventpacketcapture/Remove-NetEventNetworkAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventNetworkAdapter.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventnetworkadapter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventnetworkadapter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetEventNetworkAdapter --- diff --git a/docset/winserver2016-ps/neteventpacketcapture/Remove-NetEventPacketCaptureProvider.md b/docset/winserver2016-ps/neteventpacketcapture/Remove-NetEventPacketCaptureProvider.md index 49581df932..c4fae0a9df 100644 --- a/docset/winserver2016-ps/neteventpacketcapture/Remove-NetEventPacketCaptureProvider.md +++ b/docset/winserver2016-ps/neteventpacketcapture/Remove-NetEventPacketCaptureProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventPacketCaptureProvider.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventpacketcaptureprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventpacketcaptureprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetEventPacketCaptureProvider --- diff --git a/docset/winserver2016-ps/neteventpacketcapture/Remove-NetEventProvider.md b/docset/winserver2016-ps/neteventpacketcapture/Remove-NetEventProvider.md index aacd068a48..ba546c4209 100644 --- a/docset/winserver2016-ps/neteventpacketcapture/Remove-NetEventProvider.md +++ b/docset/winserver2016-ps/neteventpacketcapture/Remove-NetEventProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventProvider.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetEventProvider --- diff --git a/docset/winserver2016-ps/neteventpacketcapture/Remove-NetEventSession.md b/docset/winserver2016-ps/neteventpacketcapture/Remove-NetEventSession.md index 244643954c..aec6906b92 100644 --- a/docset/winserver2016-ps/neteventpacketcapture/Remove-NetEventSession.md +++ b/docset/winserver2016-ps/neteventpacketcapture/Remove-NetEventSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventSession.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventsession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventsession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetEventSession --- diff --git a/docset/winserver2016-ps/neteventpacketcapture/Remove-NetEventVmNetworkAdapter.md b/docset/winserver2016-ps/neteventpacketcapture/Remove-NetEventVmNetworkAdapter.md index 7287be0480..adc57c5327 100644 --- a/docset/winserver2016-ps/neteventpacketcapture/Remove-NetEventVmNetworkAdapter.md +++ b/docset/winserver2016-ps/neteventpacketcapture/Remove-NetEventVmNetworkAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventVmNetworkAdatper.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventvmnetworkadapter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventvmnetworkadapter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetEventVmNetworkAdapter --- diff --git a/docset/winserver2016-ps/neteventpacketcapture/Remove-NetEventVmSwitch.md b/docset/winserver2016-ps/neteventpacketcapture/Remove-NetEventVmSwitch.md index 08fc0787f5..55225e99a7 100644 --- a/docset/winserver2016-ps/neteventpacketcapture/Remove-NetEventVmSwitch.md +++ b/docset/winserver2016-ps/neteventpacketcapture/Remove-NetEventVmSwitch.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventVmSwitch.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventvmswitch?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventvmswitch?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetEventVmSwitch --- diff --git a/docset/winserver2016-ps/neteventpacketcapture/Remove-NetEventWFPCaptureProvider.md b/docset/winserver2016-ps/neteventpacketcapture/Remove-NetEventWFPCaptureProvider.md index e670fc0838..05f61a8891 100644 --- a/docset/winserver2016-ps/neteventpacketcapture/Remove-NetEventWFPCaptureProvider.md +++ b/docset/winserver2016-ps/neteventpacketcapture/Remove-NetEventWFPCaptureProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventWFPCaptureProvider.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventwfpcaptureprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventwfpcaptureprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetEventWFPCaptureProvider --- diff --git a/docset/winserver2016-ps/neteventpacketcapture/Set-NetEventPacketCaptureProvider.md b/docset/winserver2016-ps/neteventpacketcapture/Set-NetEventPacketCaptureProvider.md index c0587da9ef..7786f0d4ca 100644 --- a/docset/winserver2016-ps/neteventpacketcapture/Set-NetEventPacketCaptureProvider.md +++ b/docset/winserver2016-ps/neteventpacketcapture/Set-NetEventPacketCaptureProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventPacketCaptureProvider.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/set-neteventpacketcaptureprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/set-neteventpacketcaptureprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetEventPacketCaptureProvider --- diff --git a/docset/winserver2016-ps/neteventpacketcapture/Set-NetEventProvider.md b/docset/winserver2016-ps/neteventpacketcapture/Set-NetEventProvider.md index 71681aee62..f7c7eb6276 100644 --- a/docset/winserver2016-ps/neteventpacketcapture/Set-NetEventProvider.md +++ b/docset/winserver2016-ps/neteventpacketcapture/Set-NetEventProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventProvider.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/set-neteventprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/set-neteventprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetEventProvider --- diff --git a/docset/winserver2016-ps/neteventpacketcapture/Set-NetEventSession.md b/docset/winserver2016-ps/neteventpacketcapture/Set-NetEventSession.md index 2e3ae5fb29..5fa1e824f1 100644 --- a/docset/winserver2016-ps/neteventpacketcapture/Set-NetEventSession.md +++ b/docset/winserver2016-ps/neteventpacketcapture/Set-NetEventSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventSession.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/set-neteventsession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/set-neteventsession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetEventSession --- diff --git a/docset/winserver2016-ps/neteventpacketcapture/Set-NetEventWFPCaptureProvider.md b/docset/winserver2016-ps/neteventpacketcapture/Set-NetEventWFPCaptureProvider.md index fa5f4fb22a..25448f4e06 100644 --- a/docset/winserver2016-ps/neteventpacketcapture/Set-NetEventWFPCaptureProvider.md +++ b/docset/winserver2016-ps/neteventpacketcapture/Set-NetEventWFPCaptureProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventWFPCaptureProvider.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/set-neteventwfpcaptureprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/set-neteventwfpcaptureprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetEventWFPCaptureProvider --- diff --git a/docset/winserver2016-ps/neteventpacketcapture/Start-NetEventSession.md b/docset/winserver2016-ps/neteventpacketcapture/Start-NetEventSession.md index 3ff56ac05f..4b77c94458 100644 --- a/docset/winserver2016-ps/neteventpacketcapture/Start-NetEventSession.md +++ b/docset/winserver2016-ps/neteventpacketcapture/Start-NetEventSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventSession.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/start-neteventsession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/start-neteventsession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-NetEventSession --- diff --git a/docset/winserver2016-ps/neteventpacketcapture/Stop-NetEventSession.md b/docset/winserver2016-ps/neteventpacketcapture/Stop-NetEventSession.md index c7300d48ae..406e1ae889 100644 --- a/docset/winserver2016-ps/neteventpacketcapture/Stop-NetEventSession.md +++ b/docset/winserver2016-ps/neteventpacketcapture/Stop-NetEventSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventSession.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/stop-neteventsession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/stop-neteventsession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-NetEventSession --- diff --git a/docset/winserver2016-ps/netlbfo/Add-NetLbfoTeamMember.md b/docset/winserver2016-ps/netlbfo/Add-NetLbfoTeamMember.md index 2cf20cd447..cf3561261a 100644 --- a/docset/winserver2016-ps/netlbfo/Add-NetLbfoTeamMember.md +++ b/docset/winserver2016-ps/netlbfo/Add-NetLbfoTeamMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetLbfoTeamMember.cdxml-help.xml Module Name: NetLbfo ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netlbfo/add-netlbfoteammember?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/add-netlbfoteammember?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NetLbfoTeamMember --- diff --git a/docset/winserver2016-ps/netlbfo/Add-NetLbfoTeamNic.md b/docset/winserver2016-ps/netlbfo/Add-NetLbfoTeamNic.md index 4f7b925d29..020823290c 100644 --- a/docset/winserver2016-ps/netlbfo/Add-NetLbfoTeamNic.md +++ b/docset/winserver2016-ps/netlbfo/Add-NetLbfoTeamNic.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetLbfoTeamNic.cdxml-help.xml Module Name: NetLbfo ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netlbfo/add-netlbfoteamnic?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/add-netlbfoteamnic?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NetLbfoTeamNic --- diff --git a/docset/winserver2016-ps/netlbfo/Get-NetLbfoTeam.md b/docset/winserver2016-ps/netlbfo/Get-NetLbfoTeam.md index 616e933773..b13df49e61 100644 --- a/docset/winserver2016-ps/netlbfo/Get-NetLbfoTeam.md +++ b/docset/winserver2016-ps/netlbfo/Get-NetLbfoTeam.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetLbfoTeam.cdxml-help.xml Module Name: NetLbfo ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netlbfo/get-netlbfoteam?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/get-netlbfoteam?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetLbfoTeam --- diff --git a/docset/winserver2016-ps/netlbfo/Get-NetLbfoTeamMember.md b/docset/winserver2016-ps/netlbfo/Get-NetLbfoTeamMember.md index 9ea7bbc6ac..825fd8fd6b 100644 --- a/docset/winserver2016-ps/netlbfo/Get-NetLbfoTeamMember.md +++ b/docset/winserver2016-ps/netlbfo/Get-NetLbfoTeamMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetLbfoTeamMember.cdxml-help.xml Module Name: NetLbfo ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netlbfo/get-netlbfoteammember?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/get-netlbfoteammember?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetLbfoTeamMember --- diff --git a/docset/winserver2016-ps/netlbfo/Get-NetLbfoTeamNic.md b/docset/winserver2016-ps/netlbfo/Get-NetLbfoTeamNic.md index 3b8c87af36..8bc7af96f2 100644 --- a/docset/winserver2016-ps/netlbfo/Get-NetLbfoTeamNic.md +++ b/docset/winserver2016-ps/netlbfo/Get-NetLbfoTeamNic.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetLbfoTeamNic.cdxml-help.xml Module Name: NetLbfo ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netlbfo/get-netlbfoteamnic?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/get-netlbfoteamnic?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetLbfoTeamNic --- diff --git a/docset/winserver2016-ps/netlbfo/New-NetLbfoTeam.md b/docset/winserver2016-ps/netlbfo/New-NetLbfoTeam.md index ba62e9c4fb..8b881714c8 100644 --- a/docset/winserver2016-ps/netlbfo/New-NetLbfoTeam.md +++ b/docset/winserver2016-ps/netlbfo/New-NetLbfoTeam.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetLbfoTeam.cdxml-help.xml Module Name: NetLbfo ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netlbfo/new-netlbfoteam?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/new-netlbfoteam?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetLbfoTeam --- diff --git a/docset/winserver2016-ps/netlbfo/Remove-NetLbfoTeam.md b/docset/winserver2016-ps/netlbfo/Remove-NetLbfoTeam.md index 689a1624fb..74d0a4a51e 100644 --- a/docset/winserver2016-ps/netlbfo/Remove-NetLbfoTeam.md +++ b/docset/winserver2016-ps/netlbfo/Remove-NetLbfoTeam.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetLbfoTeam.cdxml-help.xml Module Name: NetLbfo ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netlbfo/remove-netlbfoteam?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/remove-netlbfoteam?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetLbfoTeam --- diff --git a/docset/winserver2016-ps/netlbfo/Remove-NetLbfoTeamMember.md b/docset/winserver2016-ps/netlbfo/Remove-NetLbfoTeamMember.md index 02325879a0..012fb4d0ab 100644 --- a/docset/winserver2016-ps/netlbfo/Remove-NetLbfoTeamMember.md +++ b/docset/winserver2016-ps/netlbfo/Remove-NetLbfoTeamMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetLbfoTeamMember.cdxml-help.xml Module Name: NetLbfo ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netlbfo/remove-netlbfoteammember?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/remove-netlbfoteammember?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetLbfoTeamMember --- diff --git a/docset/winserver2016-ps/netlbfo/Remove-NetLbfoTeamNic.md b/docset/winserver2016-ps/netlbfo/Remove-NetLbfoTeamNic.md index 47d8361689..42bcb94732 100644 --- a/docset/winserver2016-ps/netlbfo/Remove-NetLbfoTeamNic.md +++ b/docset/winserver2016-ps/netlbfo/Remove-NetLbfoTeamNic.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetLbfoTeamNic.cdxml-help.xml Module Name: NetLbfo ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netlbfo/remove-netlbfoteamnic?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/remove-netlbfoteamnic?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetLbfoTeamNic --- diff --git a/docset/winserver2016-ps/netlbfo/Rename-NetLbfoTeam.md b/docset/winserver2016-ps/netlbfo/Rename-NetLbfoTeam.md index 7b38842b80..656d075854 100644 --- a/docset/winserver2016-ps/netlbfo/Rename-NetLbfoTeam.md +++ b/docset/winserver2016-ps/netlbfo/Rename-NetLbfoTeam.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetLbfoTeam.cdxml-help.xml Module Name: NetLbfo ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netlbfo/rename-netlbfoteam?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/rename-netlbfoteam?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-NetLbfoTeam --- diff --git a/docset/winserver2016-ps/netlbfo/Set-NetLbfoTeam.md b/docset/winserver2016-ps/netlbfo/Set-NetLbfoTeam.md index 97d4fd6930..271d00f5fa 100644 --- a/docset/winserver2016-ps/netlbfo/Set-NetLbfoTeam.md +++ b/docset/winserver2016-ps/netlbfo/Set-NetLbfoTeam.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetLbfoTeam.cdxml-help.xml Module Name: NetLbfo ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netlbfo/set-netlbfoteam?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/set-netlbfoteam?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetLbfoTeam --- diff --git a/docset/winserver2016-ps/netlbfo/Set-NetLbfoTeamMember.md b/docset/winserver2016-ps/netlbfo/Set-NetLbfoTeamMember.md index fc409b42ba..0867058840 100644 --- a/docset/winserver2016-ps/netlbfo/Set-NetLbfoTeamMember.md +++ b/docset/winserver2016-ps/netlbfo/Set-NetLbfoTeamMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetLbfoTeamMember.cdxml-help.xml Module Name: NetLbfo ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netlbfo/set-netlbfoteammember?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/set-netlbfoteammember?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetLbfoTeamMember --- diff --git a/docset/winserver2016-ps/netlbfo/Set-NetLbfoTeamNic.md b/docset/winserver2016-ps/netlbfo/Set-NetLbfoTeamNic.md index 975b46a9bc..5c1f1c7ef9 100644 --- a/docset/winserver2016-ps/netlbfo/Set-NetLbfoTeamNic.md +++ b/docset/winserver2016-ps/netlbfo/Set-NetLbfoTeamNic.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetLbfoTeamNic.cdxml-help.xml Module Name: NetLbfo ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netlbfo/set-netlbfoteamnic?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/set-netlbfoteamnic?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetLbfoTeamNic --- diff --git a/docset/winserver2016-ps/netlldpagent/Disable-NetLldpAgent.md b/docset/winserver2016-ps/netlldpagent/Disable-NetLldpAgent.md index fb0146ddb0..6d2d4dd845 100644 --- a/docset/winserver2016-ps/netlldpagent/Disable-NetLldpAgent.md +++ b/docset/winserver2016-ps/netlldpagent/Disable-NetLldpAgent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetLldpAgent.cdxml-help.xml Module Name: NetLldpAgent ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netlldpagent/disable-netlldpagent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlldpagent/disable-netlldpagent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetLldpAgent --- diff --git a/docset/winserver2016-ps/netlldpagent/Enable-NetLldpAgent.md b/docset/winserver2016-ps/netlldpagent/Enable-NetLldpAgent.md index de6d05c2ff..9f0df393e7 100644 --- a/docset/winserver2016-ps/netlldpagent/Enable-NetLldpAgent.md +++ b/docset/winserver2016-ps/netlldpagent/Enable-NetLldpAgent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetLldpAgent.cdxml-help.xml Module Name: NetLldpAgent ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netlldpagent/enable-netlldpagent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlldpagent/enable-netlldpagent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetLldpAgent --- diff --git a/docset/winserver2016-ps/netlldpagent/Get-NetLldpAgent.md b/docset/winserver2016-ps/netlldpagent/Get-NetLldpAgent.md index 3744e9d08b..1f3280c6d8 100644 --- a/docset/winserver2016-ps/netlldpagent/Get-NetLldpAgent.md +++ b/docset/winserver2016-ps/netlldpagent/Get-NetLldpAgent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetLldpAgent.cdxml-help.xml Module Name: NetLldpAgent ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netlldpagent/get-netlldpagent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlldpagent/get-netlldpagent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetLldpAgent --- diff --git a/docset/winserver2016-ps/netnat/Add-NetNatExternalAddress.md b/docset/winserver2016-ps/netnat/Add-NetNatExternalAddress.md index ffdcc26f6d..65a43db02a 100644 --- a/docset/winserver2016-ps/netnat/Add-NetNatExternalAddress.md +++ b/docset/winserver2016-ps/netnat/Add-NetNatExternalAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNatExternalAddress.cdxml-help.xml Module Name: NetNat ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netnat/add-netnatexternaladdress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netnat/add-netnatexternaladdress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NetNatExternalAddress --- diff --git a/docset/winserver2016-ps/netnat/Add-NetNatStaticMapping.md b/docset/winserver2016-ps/netnat/Add-NetNatStaticMapping.md index 745060a567..2b72751392 100644 --- a/docset/winserver2016-ps/netnat/Add-NetNatStaticMapping.md +++ b/docset/winserver2016-ps/netnat/Add-NetNatStaticMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNatStaticMapping.cdxml-help.xml Module Name: NetNat ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netnat/add-netnatstaticmapping?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netnat/add-netnatstaticmapping?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NetNatStaticMapping --- diff --git a/docset/winserver2016-ps/netnat/Get-NetNat.md b/docset/winserver2016-ps/netnat/Get-NetNat.md index e91823bbde..519e814626 100644 --- a/docset/winserver2016-ps/netnat/Get-NetNat.md +++ b/docset/winserver2016-ps/netnat/Get-NetNat.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNat.cdxml-help.xml Module Name: NetNat ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netnat/get-netnat?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netnat/get-netnat?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetNat --- diff --git a/docset/winserver2016-ps/netnat/Get-NetNatExternalAddress.md b/docset/winserver2016-ps/netnat/Get-NetNatExternalAddress.md index 3d977fce56..8217637edd 100644 --- a/docset/winserver2016-ps/netnat/Get-NetNatExternalAddress.md +++ b/docset/winserver2016-ps/netnat/Get-NetNatExternalAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNatExternalAddress.cdxml-help.xml Module Name: NetNat ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netnat/get-netnatexternaladdress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netnat/get-netnatexternaladdress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetNatExternalAddress --- diff --git a/docset/winserver2016-ps/netnat/Get-NetNatGlobal.md b/docset/winserver2016-ps/netnat/Get-NetNatGlobal.md index 8156c885d9..887b956f3c 100644 --- a/docset/winserver2016-ps/netnat/Get-NetNatGlobal.md +++ b/docset/winserver2016-ps/netnat/Get-NetNatGlobal.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNatGlobal.cdxml-help.xml Module Name: NetNat ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netnat/get-netnatglobal?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netnat/get-netnatglobal?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetNatGlobal --- diff --git a/docset/winserver2016-ps/netnat/Get-NetNatSession.md b/docset/winserver2016-ps/netnat/Get-NetNatSession.md index eadee53c69..89bc1f07a0 100644 --- a/docset/winserver2016-ps/netnat/Get-NetNatSession.md +++ b/docset/winserver2016-ps/netnat/Get-NetNatSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNatSession.cdxml-help.xml Module Name: NetNat ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netnat/get-netnatsession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netnat/get-netnatsession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetNatSession --- diff --git a/docset/winserver2016-ps/netnat/Get-NetNatStaticMapping.md b/docset/winserver2016-ps/netnat/Get-NetNatStaticMapping.md index b767816604..60640583e5 100644 --- a/docset/winserver2016-ps/netnat/Get-NetNatStaticMapping.md +++ b/docset/winserver2016-ps/netnat/Get-NetNatStaticMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNatStaticMapping.cdxml-help.xml Module Name: NetNat ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netnat/get-netnatstaticmapping?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netnat/get-netnatstaticmapping?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetNatStaticMapping --- diff --git a/docset/winserver2016-ps/netnat/New-NetNat.md b/docset/winserver2016-ps/netnat/New-NetNat.md index fc372f9768..dc5d1c19ee 100644 --- a/docset/winserver2016-ps/netnat/New-NetNat.md +++ b/docset/winserver2016-ps/netnat/New-NetNat.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNat.cdxml-help.xml Module Name: NetNat ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netnat/new-netnat?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netnat/new-netnat?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetNat --- diff --git a/docset/winserver2016-ps/netnat/Remove-NetNat.md b/docset/winserver2016-ps/netnat/Remove-NetNat.md index 5b60b03abc..43a6f09d60 100644 --- a/docset/winserver2016-ps/netnat/Remove-NetNat.md +++ b/docset/winserver2016-ps/netnat/Remove-NetNat.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNat.cdxml-help.xml Module Name: NetNat ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netnat/remove-netnat?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netnat/remove-netnat?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetNat --- diff --git a/docset/winserver2016-ps/netnat/Remove-NetNatExternalAddress.md b/docset/winserver2016-ps/netnat/Remove-NetNatExternalAddress.md index ee456f8822..f9ac46d25a 100644 --- a/docset/winserver2016-ps/netnat/Remove-NetNatExternalAddress.md +++ b/docset/winserver2016-ps/netnat/Remove-NetNatExternalAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNatExternalAddress.cdxml-help.xml Module Name: NetNat ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netnat/remove-netnatexternaladdress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netnat/remove-netnatexternaladdress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetNatExternalAddress --- diff --git a/docset/winserver2016-ps/netnat/Remove-NetNatStaticMapping.md b/docset/winserver2016-ps/netnat/Remove-NetNatStaticMapping.md index 97626e9a53..663d71136c 100644 --- a/docset/winserver2016-ps/netnat/Remove-NetNatStaticMapping.md +++ b/docset/winserver2016-ps/netnat/Remove-NetNatStaticMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNatStaticMapping.cdxml-help.xml Module Name: NetNat ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netnat/remove-netnatstaticmapping?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netnat/remove-netnatstaticmapping?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetNatStaticMapping --- diff --git a/docset/winserver2016-ps/netnat/Set-NetNat.md b/docset/winserver2016-ps/netnat/Set-NetNat.md index bd9dc3bb21..5595717561 100644 --- a/docset/winserver2016-ps/netnat/Set-NetNat.md +++ b/docset/winserver2016-ps/netnat/Set-NetNat.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNat.cdxml-help.xml Module Name: NetNat ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netnat/set-netnat?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netnat/set-netnat?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetNat --- diff --git a/docset/winserver2016-ps/netnat/Set-NetNatGlobal.md b/docset/winserver2016-ps/netnat/Set-NetNatGlobal.md index 4248ab04d4..27271943a8 100644 --- a/docset/winserver2016-ps/netnat/Set-NetNatGlobal.md +++ b/docset/winserver2016-ps/netnat/Set-NetNatGlobal.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNatGlobal.cdxml-help.xml Module Name: NetNat ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netnat/set-netnatglobal?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netnat/set-netnatglobal?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetNatGlobal --- diff --git a/docset/winserver2016-ps/netqos/Get-NetQosPolicy.md b/docset/winserver2016-ps/netqos/Get-NetQosPolicy.md index 4e469ca07f..ec67bc49ff 100644 --- a/docset/winserver2016-ps/netqos/Get-NetQosPolicy.md +++ b/docset/winserver2016-ps/netqos/Get-NetQosPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetQosPolicy.cdxml-help.xml Module Name: NetQoS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netqos/get-netqospolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netqos/get-netqospolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetQosPolicy --- diff --git a/docset/winserver2016-ps/netqos/New-NetQosPolicy.md b/docset/winserver2016-ps/netqos/New-NetQosPolicy.md index cff5442e0d..4eff11bb0c 100644 --- a/docset/winserver2016-ps/netqos/New-NetQosPolicy.md +++ b/docset/winserver2016-ps/netqos/New-NetQosPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetQosPolicy.cdxml-help.xml Module Name: NetQoS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netqos/new-netqospolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netqos/new-netqospolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetQosPolicy --- diff --git a/docset/winserver2016-ps/netqos/Remove-NetQosPolicy.md b/docset/winserver2016-ps/netqos/Remove-NetQosPolicy.md index 1dc00f2439..371c9cf688 100644 --- a/docset/winserver2016-ps/netqos/Remove-NetQosPolicy.md +++ b/docset/winserver2016-ps/netqos/Remove-NetQosPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetQosPolicy.cdxml-help.xml Module Name: NetQoS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netqos/remove-netqospolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netqos/remove-netqospolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetQosPolicy --- diff --git a/docset/winserver2016-ps/netqos/Set-NetQosPolicy.md b/docset/winserver2016-ps/netqos/Set-NetQosPolicy.md index ee669f4347..ee02c51354 100644 --- a/docset/winserver2016-ps/netqos/Set-NetQosPolicy.md +++ b/docset/winserver2016-ps/netqos/Set-NetQosPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetQosPolicy.cdxml-help.xml Module Name: NetQoS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netqos/set-netqospolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netqos/set-netqospolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetQosPolicy --- diff --git a/docset/winserver2016-ps/netsecurity/Copy-NetFirewallRule.md b/docset/winserver2016-ps/netsecurity/Copy-NetFirewallRule.md index e6aa598cc0..95c4965398 100644 --- a/docset/winserver2016-ps/netsecurity/Copy-NetFirewallRule.md +++ b/docset/winserver2016-ps/netsecurity/Copy-NetFirewallRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/copy-netfirewallrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/copy-netfirewallrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Copy-NetFirewallRule --- diff --git a/docset/winserver2016-ps/netsecurity/Copy-NetIPsecMainModeCryptoSet.md b/docset/winserver2016-ps/netsecurity/Copy-NetIPsecMainModeCryptoSet.md index 8b3a1a5839..5bcbe98cb3 100644 --- a/docset/winserver2016-ps/netsecurity/Copy-NetIPsecMainModeCryptoSet.md +++ b/docset/winserver2016-ps/netsecurity/Copy-NetIPsecMainModeCryptoSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecMainModeCryptoSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/copy-netipsecmainmodecryptoset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/copy-netipsecmainmodecryptoset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Copy-NetIPsecMainModeCryptoSet --- diff --git a/docset/winserver2016-ps/netsecurity/Copy-NetIPsecMainModeRule.md b/docset/winserver2016-ps/netsecurity/Copy-NetIPsecMainModeRule.md index 115201fe28..8421daed0a 100644 --- a/docset/winserver2016-ps/netsecurity/Copy-NetIPsecMainModeRule.md +++ b/docset/winserver2016-ps/netsecurity/Copy-NetIPsecMainModeRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecMainModeRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/copy-netipsecmainmoderule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/copy-netipsecmainmoderule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Copy-NetIPsecMainModeRule --- diff --git a/docset/winserver2016-ps/netsecurity/Copy-NetIPsecPhase1AuthSet.md b/docset/winserver2016-ps/netsecurity/Copy-NetIPsecPhase1AuthSet.md index 9519cd73a8..a377c41a74 100644 --- a/docset/winserver2016-ps/netsecurity/Copy-NetIPsecPhase1AuthSet.md +++ b/docset/winserver2016-ps/netsecurity/Copy-NetIPsecPhase1AuthSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecPhase1AuthSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/copy-netipsecphase1authset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/copy-netipsecphase1authset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Copy-NetIPsecPhase1AuthSet --- diff --git a/docset/winserver2016-ps/netsecurity/Copy-NetIPsecPhase2AuthSet.md b/docset/winserver2016-ps/netsecurity/Copy-NetIPsecPhase2AuthSet.md index ef39200571..57ad73a8a3 100644 --- a/docset/winserver2016-ps/netsecurity/Copy-NetIPsecPhase2AuthSet.md +++ b/docset/winserver2016-ps/netsecurity/Copy-NetIPsecPhase2AuthSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecPhase2AuthSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/copy-netipsecphase2authset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/copy-netipsecphase2authset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Copy-NetIPsecPhase2AuthSet --- diff --git a/docset/winserver2016-ps/netsecurity/Copy-NetIPsecQuickModeCryptoSet.md b/docset/winserver2016-ps/netsecurity/Copy-NetIPsecQuickModeCryptoSet.md index 63136a6f1a..734928364d 100644 --- a/docset/winserver2016-ps/netsecurity/Copy-NetIPsecQuickModeCryptoSet.md +++ b/docset/winserver2016-ps/netsecurity/Copy-NetIPsecQuickModeCryptoSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecQuickModeCryptoSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/copy-netipsecquickmodecryptoset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/copy-netipsecquickmodecryptoset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Copy-NetIPsecQuickModeCryptoSet --- diff --git a/docset/winserver2016-ps/netsecurity/Copy-NetIPsecRule.md b/docset/winserver2016-ps/netsecurity/Copy-NetIPsecRule.md index 80b8eb7d43..6c5d9523d5 100644 --- a/docset/winserver2016-ps/netsecurity/Copy-NetIPsecRule.md +++ b/docset/winserver2016-ps/netsecurity/Copy-NetIPsecRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/copy-netipsecrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/copy-netipsecrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Copy-NetIPsecRule --- diff --git a/docset/winserver2016-ps/netsecurity/Disable-NetFirewallRule.md b/docset/winserver2016-ps/netsecurity/Disable-NetFirewallRule.md index af86538094..a7479d9ed5 100644 --- a/docset/winserver2016-ps/netsecurity/Disable-NetFirewallRule.md +++ b/docset/winserver2016-ps/netsecurity/Disable-NetFirewallRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/disable-netfirewallrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/disable-netfirewallrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetFirewallRule --- diff --git a/docset/winserver2016-ps/netsecurity/Disable-NetIPsecMainModeRule.md b/docset/winserver2016-ps/netsecurity/Disable-NetIPsecMainModeRule.md index 8316946926..564a103180 100644 --- a/docset/winserver2016-ps/netsecurity/Disable-NetIPsecMainModeRule.md +++ b/docset/winserver2016-ps/netsecurity/Disable-NetIPsecMainModeRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecMainModeRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/disable-netipsecmainmoderule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/disable-netipsecmainmoderule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetIPsecMainModeRule --- diff --git a/docset/winserver2016-ps/netsecurity/Disable-NetIPsecRule.md b/docset/winserver2016-ps/netsecurity/Disable-NetIPsecRule.md index 2a7695b5d3..0c431817d2 100644 --- a/docset/winserver2016-ps/netsecurity/Disable-NetIPsecRule.md +++ b/docset/winserver2016-ps/netsecurity/Disable-NetIPsecRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/disable-netipsecrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/disable-netipsecrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetIPsecRule --- diff --git a/docset/winserver2016-ps/netsecurity/Enable-NetFirewallRule.md b/docset/winserver2016-ps/netsecurity/Enable-NetFirewallRule.md index 4362cb1312..54cd2f9a2b 100644 --- a/docset/winserver2016-ps/netsecurity/Enable-NetFirewallRule.md +++ b/docset/winserver2016-ps/netsecurity/Enable-NetFirewallRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/enable-netfirewallrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/enable-netfirewallrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetFirewallRule --- diff --git a/docset/winserver2016-ps/netsecurity/Enable-NetIPsecMainModeRule.md b/docset/winserver2016-ps/netsecurity/Enable-NetIPsecMainModeRule.md index 1fe36d6e7a..89c9ff3f12 100644 --- a/docset/winserver2016-ps/netsecurity/Enable-NetIPsecMainModeRule.md +++ b/docset/winserver2016-ps/netsecurity/Enable-NetIPsecMainModeRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecMainModeRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/enable-netipsecmainmoderule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/enable-netipsecmainmoderule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetIPsecMainModeRule --- diff --git a/docset/winserver2016-ps/netsecurity/Enable-NetIPsecRule.md b/docset/winserver2016-ps/netsecurity/Enable-NetIPsecRule.md index 142beb7922..2e9368bcc5 100644 --- a/docset/winserver2016-ps/netsecurity/Enable-NetIPsecRule.md +++ b/docset/winserver2016-ps/netsecurity/Enable-NetIPsecRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/enable-netipsecrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/enable-netipsecrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetIPsecRule --- diff --git a/docset/winserver2016-ps/netsecurity/Find-NetIPsecRule.md b/docset/winserver2016-ps/netsecurity/Find-NetIPsecRule.md index 54f72824b7..226e090f82 100644 --- a/docset/winserver2016-ps/netsecurity/Find-NetIPsecRule.md +++ b/docset/winserver2016-ps/netsecurity/Find-NetIPsecRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/find-netipsecrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/find-netipsecrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Find-NetIPsecRule --- diff --git a/docset/winserver2016-ps/netsecurity/Get-DAPolicyChange.md b/docset/winserver2016-ps/netsecurity/Get-DAPolicyChange.md index 63aea4a52f..a1f56c57e9 100644 --- a/docset/winserver2016-ps/netsecurity/Get-DAPolicyChange.md +++ b/docset/winserver2016-ps/netsecurity/Get-DAPolicyChange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Firewall.Commands.dll-Help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-dapolicychange?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-dapolicychange?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DAPolicyChange --- diff --git a/docset/winserver2016-ps/netsecurity/Get-NetFirewallAddressFilter.md b/docset/winserver2016-ps/netsecurity/Get-NetFirewallAddressFilter.md index 139995376a..c38537f5b6 100644 --- a/docset/winserver2016-ps/netsecurity/Get-NetFirewallAddressFilter.md +++ b/docset/winserver2016-ps/netsecurity/Get-NetFirewallAddressFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallAddressFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewalladdressfilter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netfirewalladdressfilter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetFirewallAddressFilter --- diff --git a/docset/winserver2016-ps/netsecurity/Get-NetFirewallApplicationFilter.md b/docset/winserver2016-ps/netsecurity/Get-NetFirewallApplicationFilter.md index bc3680783d..6fd69a3844 100644 --- a/docset/winserver2016-ps/netsecurity/Get-NetFirewallApplicationFilter.md +++ b/docset/winserver2016-ps/netsecurity/Get-NetFirewallApplicationFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallApplicationFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewallapplicationfilter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netfirewallapplicationfilter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetFirewallApplicationFilter --- diff --git a/docset/winserver2016-ps/netsecurity/Get-NetFirewallInterfaceFilter.md b/docset/winserver2016-ps/netsecurity/Get-NetFirewallInterfaceFilter.md index b1b18a36c5..8ac9fa053a 100644 --- a/docset/winserver2016-ps/netsecurity/Get-NetFirewallInterfaceFilter.md +++ b/docset/winserver2016-ps/netsecurity/Get-NetFirewallInterfaceFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallInterfaceFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewallinterfacefilter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netfirewallinterfacefilter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetFirewallInterfaceFilter --- diff --git a/docset/winserver2016-ps/netsecurity/Get-NetFirewallInterfaceTypeFilter.md b/docset/winserver2016-ps/netsecurity/Get-NetFirewallInterfaceTypeFilter.md index 909db66317..25f1fec118 100644 --- a/docset/winserver2016-ps/netsecurity/Get-NetFirewallInterfaceTypeFilter.md +++ b/docset/winserver2016-ps/netsecurity/Get-NetFirewallInterfaceTypeFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallInterfaceTypeFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewallinterfacetypefilter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netfirewallinterfacetypefilter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetFirewallInterfaceTypeFilter --- diff --git a/docset/winserver2016-ps/netsecurity/Get-NetFirewallPortFilter.md b/docset/winserver2016-ps/netsecurity/Get-NetFirewallPortFilter.md index 01131cf8d3..1eaecbc4f9 100644 --- a/docset/winserver2016-ps/netsecurity/Get-NetFirewallPortFilter.md +++ b/docset/winserver2016-ps/netsecurity/Get-NetFirewallPortFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallPortFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewallportfilter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netfirewallportfilter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetFirewallPortFilter --- diff --git a/docset/winserver2016-ps/netsecurity/Get-NetFirewallProfile.md b/docset/winserver2016-ps/netsecurity/Get-NetFirewallProfile.md index 5518aa805f..595e95e7ed 100644 --- a/docset/winserver2016-ps/netsecurity/Get-NetFirewallProfile.md +++ b/docset/winserver2016-ps/netsecurity/Get-NetFirewallProfile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallProfile.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewallprofile?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netfirewallprofile?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetFirewallProfile --- diff --git a/docset/winserver2016-ps/netsecurity/Get-NetFirewallRule.md b/docset/winserver2016-ps/netsecurity/Get-NetFirewallRule.md index 78948c6a25..589e93bf75 100644 --- a/docset/winserver2016-ps/netsecurity/Get-NetFirewallRule.md +++ b/docset/winserver2016-ps/netsecurity/Get-NetFirewallRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewallrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netfirewallrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetFirewallRule --- diff --git a/docset/winserver2016-ps/netsecurity/Get-NetFirewallSecurityFilter.md b/docset/winserver2016-ps/netsecurity/Get-NetFirewallSecurityFilter.md index 28ccdcc2f0..317f5133dc 100644 --- a/docset/winserver2016-ps/netsecurity/Get-NetFirewallSecurityFilter.md +++ b/docset/winserver2016-ps/netsecurity/Get-NetFirewallSecurityFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallSecurityFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewallsecurityfilter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netfirewallsecurityfilter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetFirewallSecurityFilter --- diff --git a/docset/winserver2016-ps/netsecurity/Get-NetFirewallServiceFilter.md b/docset/winserver2016-ps/netsecurity/Get-NetFirewallServiceFilter.md index 57f8802f84..24070d86bd 100644 --- a/docset/winserver2016-ps/netsecurity/Get-NetFirewallServiceFilter.md +++ b/docset/winserver2016-ps/netsecurity/Get-NetFirewallServiceFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallServiceFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewallservicefilter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netfirewallservicefilter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetFirewallServiceFilter --- diff --git a/docset/winserver2016-ps/netsecurity/Get-NetFirewallSetting.md b/docset/winserver2016-ps/netsecurity/Get-NetFirewallSetting.md index f3e30f2ca4..d40cda9f82 100644 --- a/docset/winserver2016-ps/netsecurity/Get-NetFirewallSetting.md +++ b/docset/winserver2016-ps/netsecurity/Get-NetFirewallSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallSetting.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewallsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netfirewallsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetFirewallSetting --- diff --git a/docset/winserver2016-ps/netsecurity/Get-NetIPsecDospSetting.md b/docset/winserver2016-ps/netsecurity/Get-NetIPsecDospSetting.md index d2f73235bd..40c6621e96 100644 --- a/docset/winserver2016-ps/netsecurity/Get-NetIPsecDospSetting.md +++ b/docset/winserver2016-ps/netsecurity/Get-NetIPsecDospSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecDospSetting.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netipsecdospsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netipsecdospsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPsecDospSetting --- diff --git a/docset/winserver2016-ps/netsecurity/Get-NetIPsecMainModeCryptoSet.md b/docset/winserver2016-ps/netsecurity/Get-NetIPsecMainModeCryptoSet.md index fc55dd6945..788abe4fc4 100644 --- a/docset/winserver2016-ps/netsecurity/Get-NetIPsecMainModeCryptoSet.md +++ b/docset/winserver2016-ps/netsecurity/Get-NetIPsecMainModeCryptoSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecMainModeCryptoSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netipsecmainmodecryptoset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netipsecmainmodecryptoset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPsecMainModeCryptoSet --- diff --git a/docset/winserver2016-ps/netsecurity/Get-NetIPsecMainModeRule.md b/docset/winserver2016-ps/netsecurity/Get-NetIPsecMainModeRule.md index 2fbf5ff331..e729728a97 100644 --- a/docset/winserver2016-ps/netsecurity/Get-NetIPsecMainModeRule.md +++ b/docset/winserver2016-ps/netsecurity/Get-NetIPsecMainModeRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecMainModeRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netipsecmainmoderule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netipsecmainmoderule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPsecMainModeRule --- diff --git a/docset/winserver2016-ps/netsecurity/Get-NetIPsecMainModeSA.md b/docset/winserver2016-ps/netsecurity/Get-NetIPsecMainModeSA.md index 4be6195c8a..8cb86687d2 100644 --- a/docset/winserver2016-ps/netsecurity/Get-NetIPsecMainModeSA.md +++ b/docset/winserver2016-ps/netsecurity/Get-NetIPsecMainModeSA.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecMainModeSA.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netipsecmainmodesa?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netipsecmainmodesa?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPsecMainModeSA --- diff --git a/docset/winserver2016-ps/netsecurity/Get-NetIPsecPhase1AuthSet.md b/docset/winserver2016-ps/netsecurity/Get-NetIPsecPhase1AuthSet.md index 1e0dc7ffcf..cabbc0a4ea 100644 --- a/docset/winserver2016-ps/netsecurity/Get-NetIPsecPhase1AuthSet.md +++ b/docset/winserver2016-ps/netsecurity/Get-NetIPsecPhase1AuthSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecPhase1AuthSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netipsecphase1authset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netipsecphase1authset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPsecPhase1AuthSet --- diff --git a/docset/winserver2016-ps/netsecurity/Get-NetIPsecPhase2AuthSet.md b/docset/winserver2016-ps/netsecurity/Get-NetIPsecPhase2AuthSet.md index 42501c6be4..86a076c9db 100644 --- a/docset/winserver2016-ps/netsecurity/Get-NetIPsecPhase2AuthSet.md +++ b/docset/winserver2016-ps/netsecurity/Get-NetIPsecPhase2AuthSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecPhase2AuthSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netipsecphase2authset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netipsecphase2authset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPsecPhase2AuthSet --- diff --git a/docset/winserver2016-ps/netsecurity/Get-NetIPsecQuickModeCryptoSet.md b/docset/winserver2016-ps/netsecurity/Get-NetIPsecQuickModeCryptoSet.md index 78bbf9c156..a3de01ff34 100644 --- a/docset/winserver2016-ps/netsecurity/Get-NetIPsecQuickModeCryptoSet.md +++ b/docset/winserver2016-ps/netsecurity/Get-NetIPsecQuickModeCryptoSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecQuickModeCryptoSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netipsecquickmodecryptoset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netipsecquickmodecryptoset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPsecQuickModeCryptoSet --- diff --git a/docset/winserver2016-ps/netsecurity/Get-NetIPsecQuickModeSA.md b/docset/winserver2016-ps/netsecurity/Get-NetIPsecQuickModeSA.md index 528e2dc48f..3c315d1226 100644 --- a/docset/winserver2016-ps/netsecurity/Get-NetIPsecQuickModeSA.md +++ b/docset/winserver2016-ps/netsecurity/Get-NetIPsecQuickModeSA.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecQuickModeSA.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netipsecquickmodesa?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netipsecquickmodesa?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPsecQuickModeSA --- diff --git a/docset/winserver2016-ps/netsecurity/Get-NetIPsecRule.md b/docset/winserver2016-ps/netsecurity/Get-NetIPsecRule.md index 467193d825..657e6368d9 100644 --- a/docset/winserver2016-ps/netsecurity/Get-NetIPsecRule.md +++ b/docset/winserver2016-ps/netsecurity/Get-NetIPsecRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netipsecrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netipsecrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPsecRule --- diff --git a/docset/winserver2016-ps/netsecurity/New-NetFirewallRule.md b/docset/winserver2016-ps/netsecurity/New-NetFirewallRule.md index dd1a7fed2c..2097f0697e 100644 --- a/docset/winserver2016-ps/netsecurity/New-NetFirewallRule.md +++ b/docset/winserver2016-ps/netsecurity/New-NetFirewallRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netfirewallrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netfirewallrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetFirewallRule --- diff --git a/docset/winserver2016-ps/netsecurity/New-NetIPsecAuthProposal.md b/docset/winserver2016-ps/netsecurity/New-NetIPsecAuthProposal.md index e7d51f7d29..82cbd125e0 100644 --- a/docset/winserver2016-ps/netsecurity/New-NetIPsecAuthProposal.md +++ b/docset/winserver2016-ps/netsecurity/New-NetIPsecAuthProposal.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Firewall.Commands.dll-Help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netipsecauthproposal?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netipsecauthproposal?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetIPsecAuthProposal --- diff --git a/docset/winserver2016-ps/netsecurity/New-NetIPsecDospSetting.md b/docset/winserver2016-ps/netsecurity/New-NetIPsecDospSetting.md index 3239329223..ecf5a9e122 100644 --- a/docset/winserver2016-ps/netsecurity/New-NetIPsecDospSetting.md +++ b/docset/winserver2016-ps/netsecurity/New-NetIPsecDospSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecDospSetting.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netipsecdospsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netipsecdospsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetIPsecDospSetting --- diff --git a/docset/winserver2016-ps/netsecurity/New-NetIPsecMainModeCryptoProposal.md b/docset/winserver2016-ps/netsecurity/New-NetIPsecMainModeCryptoProposal.md index 1018cd95a2..d449f2364f 100644 --- a/docset/winserver2016-ps/netsecurity/New-NetIPsecMainModeCryptoProposal.md +++ b/docset/winserver2016-ps/netsecurity/New-NetIPsecMainModeCryptoProposal.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Firewall.Commands.dll-Help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netipsecmainmodecryptoproposal?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netipsecmainmodecryptoproposal?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetIPsecMainModeCryptoProposal --- diff --git a/docset/winserver2016-ps/netsecurity/New-NetIPsecMainModeCryptoSet.md b/docset/winserver2016-ps/netsecurity/New-NetIPsecMainModeCryptoSet.md index 4d5fc57434..65e2fca5fe 100644 --- a/docset/winserver2016-ps/netsecurity/New-NetIPsecMainModeCryptoSet.md +++ b/docset/winserver2016-ps/netsecurity/New-NetIPsecMainModeCryptoSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecMainModeCryptoSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netipsecmainmodecryptoset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netipsecmainmodecryptoset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetIPsecMainModeCryptoSet --- diff --git a/docset/winserver2016-ps/netsecurity/New-NetIPsecMainModeRule.md b/docset/winserver2016-ps/netsecurity/New-NetIPsecMainModeRule.md index caed7f848c..664e5690a7 100644 --- a/docset/winserver2016-ps/netsecurity/New-NetIPsecMainModeRule.md +++ b/docset/winserver2016-ps/netsecurity/New-NetIPsecMainModeRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecMainModeRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netipsecmainmoderule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netipsecmainmoderule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetIPsecMainModeRule --- diff --git a/docset/winserver2016-ps/netsecurity/New-NetIPsecPhase1AuthSet.md b/docset/winserver2016-ps/netsecurity/New-NetIPsecPhase1AuthSet.md index 27555175bb..08b43af70f 100644 --- a/docset/winserver2016-ps/netsecurity/New-NetIPsecPhase1AuthSet.md +++ b/docset/winserver2016-ps/netsecurity/New-NetIPsecPhase1AuthSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecPhase1AuthSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netipsecphase1authset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netipsecphase1authset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetIPsecPhase1AuthSet --- diff --git a/docset/winserver2016-ps/netsecurity/New-NetIPsecPhase2AuthSet.md b/docset/winserver2016-ps/netsecurity/New-NetIPsecPhase2AuthSet.md index 5811b68953..d0f5f654c9 100644 --- a/docset/winserver2016-ps/netsecurity/New-NetIPsecPhase2AuthSet.md +++ b/docset/winserver2016-ps/netsecurity/New-NetIPsecPhase2AuthSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecPhase2AuthSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netipsecphase2authset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netipsecphase2authset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetIPsecPhase2AuthSet --- diff --git a/docset/winserver2016-ps/netsecurity/New-NetIPsecQuickModeCryptoProposal.md b/docset/winserver2016-ps/netsecurity/New-NetIPsecQuickModeCryptoProposal.md index 78af022287..db3498210d 100644 --- a/docset/winserver2016-ps/netsecurity/New-NetIPsecQuickModeCryptoProposal.md +++ b/docset/winserver2016-ps/netsecurity/New-NetIPsecQuickModeCryptoProposal.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Firewall.Commands.dll-Help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netipsecquickmodecryptoproposal?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netipsecquickmodecryptoproposal?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetIPsecQuickModeCryptoProposal --- diff --git a/docset/winserver2016-ps/netsecurity/New-NetIPsecQuickModeCryptoSet.md b/docset/winserver2016-ps/netsecurity/New-NetIPsecQuickModeCryptoSet.md index dffc41b359..075284d962 100644 --- a/docset/winserver2016-ps/netsecurity/New-NetIPsecQuickModeCryptoSet.md +++ b/docset/winserver2016-ps/netsecurity/New-NetIPsecQuickModeCryptoSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecQuickModeCryptoSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netipsecquickmodecryptoset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netipsecquickmodecryptoset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetIPsecQuickModeCryptoSet --- diff --git a/docset/winserver2016-ps/netsecurity/New-NetIPsecRule.md b/docset/winserver2016-ps/netsecurity/New-NetIPsecRule.md index 999688c338..1ab70effe3 100644 --- a/docset/winserver2016-ps/netsecurity/New-NetIPsecRule.md +++ b/docset/winserver2016-ps/netsecurity/New-NetIPsecRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netipsecrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netipsecrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetIPsecRule --- diff --git a/docset/winserver2016-ps/netsecurity/Open-NetGPO.md b/docset/winserver2016-ps/netsecurity/Open-NetGPO.md index d30742c920..c3e1795aa2 100644 --- a/docset/winserver2016-ps/netsecurity/Open-NetGPO.md +++ b/docset/winserver2016-ps/netsecurity/Open-NetGPO.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetGPO.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/open-netgpo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/open-netgpo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Open-NetGPO --- diff --git a/docset/winserver2016-ps/netsecurity/Remove-NetFirewallRule.md b/docset/winserver2016-ps/netsecurity/Remove-NetFirewallRule.md index 2d32572ef7..f77578362e 100644 --- a/docset/winserver2016-ps/netsecurity/Remove-NetFirewallRule.md +++ b/docset/winserver2016-ps/netsecurity/Remove-NetFirewallRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/remove-netfirewallrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/remove-netfirewallrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetFirewallRule --- diff --git a/docset/winserver2016-ps/netsecurity/Remove-NetIPsecDospSetting.md b/docset/winserver2016-ps/netsecurity/Remove-NetIPsecDospSetting.md index e214a993ed..121f2dd066 100644 --- a/docset/winserver2016-ps/netsecurity/Remove-NetIPsecDospSetting.md +++ b/docset/winserver2016-ps/netsecurity/Remove-NetIPsecDospSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecDospSetting.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/remove-netipsecdospsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/remove-netipsecdospsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetIPsecDospSetting --- diff --git a/docset/winserver2016-ps/netsecurity/Remove-NetIPsecMainModeCryptoSet.md b/docset/winserver2016-ps/netsecurity/Remove-NetIPsecMainModeCryptoSet.md index 95206e44a9..5ef5183567 100644 --- a/docset/winserver2016-ps/netsecurity/Remove-NetIPsecMainModeCryptoSet.md +++ b/docset/winserver2016-ps/netsecurity/Remove-NetIPsecMainModeCryptoSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecMainModeCryptoSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/remove-netipsecmainmodecryptoset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/remove-netipsecmainmodecryptoset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetIPsecMainModeCryptoSet --- diff --git a/docset/winserver2016-ps/netsecurity/Remove-NetIPsecMainModeRule.md b/docset/winserver2016-ps/netsecurity/Remove-NetIPsecMainModeRule.md index e3cc5c25e8..20f28a0772 100644 --- a/docset/winserver2016-ps/netsecurity/Remove-NetIPsecMainModeRule.md +++ b/docset/winserver2016-ps/netsecurity/Remove-NetIPsecMainModeRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecMainModeRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/remove-netipsecmainmoderule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/remove-netipsecmainmoderule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetIPsecMainModeRule --- diff --git a/docset/winserver2016-ps/netsecurity/Remove-NetIPsecMainModeSA.md b/docset/winserver2016-ps/netsecurity/Remove-NetIPsecMainModeSA.md index aa2ebabf57..ac5b7e2e64 100644 --- a/docset/winserver2016-ps/netsecurity/Remove-NetIPsecMainModeSA.md +++ b/docset/winserver2016-ps/netsecurity/Remove-NetIPsecMainModeSA.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecMainModeSA.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/remove-netipsecmainmodesa?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/remove-netipsecmainmodesa?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetIPsecMainModeSA --- diff --git a/docset/winserver2016-ps/netsecurity/Remove-NetIPsecPhase1AuthSet.md b/docset/winserver2016-ps/netsecurity/Remove-NetIPsecPhase1AuthSet.md index 38744fef07..bec8f5ac67 100644 --- a/docset/winserver2016-ps/netsecurity/Remove-NetIPsecPhase1AuthSet.md +++ b/docset/winserver2016-ps/netsecurity/Remove-NetIPsecPhase1AuthSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecPhase1AuthSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/remove-netipsecphase1authset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/remove-netipsecphase1authset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetIPsecPhase1AuthSet --- diff --git a/docset/winserver2016-ps/netsecurity/Remove-NetIPsecPhase2AuthSet.md b/docset/winserver2016-ps/netsecurity/Remove-NetIPsecPhase2AuthSet.md index a9906d73be..32708a4fcd 100644 --- a/docset/winserver2016-ps/netsecurity/Remove-NetIPsecPhase2AuthSet.md +++ b/docset/winserver2016-ps/netsecurity/Remove-NetIPsecPhase2AuthSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecPhase2AuthSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/remove-netipsecphase2authset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/remove-netipsecphase2authset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetIPsecPhase2AuthSet --- diff --git a/docset/winserver2016-ps/netsecurity/Remove-NetIPsecQuickModeCryptoSet.md b/docset/winserver2016-ps/netsecurity/Remove-NetIPsecQuickModeCryptoSet.md index 4908a40182..41af410466 100644 --- a/docset/winserver2016-ps/netsecurity/Remove-NetIPsecQuickModeCryptoSet.md +++ b/docset/winserver2016-ps/netsecurity/Remove-NetIPsecQuickModeCryptoSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecQuickModeCryptoSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/remove-netipsecquickmodecryptoset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/remove-netipsecquickmodecryptoset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetIPsecQuickModeCryptoSet --- diff --git a/docset/winserver2016-ps/netsecurity/Remove-NetIPsecQuickModeSA.md b/docset/winserver2016-ps/netsecurity/Remove-NetIPsecQuickModeSA.md index 88e5f3d7b8..2d88721846 100644 --- a/docset/winserver2016-ps/netsecurity/Remove-NetIPsecQuickModeSA.md +++ b/docset/winserver2016-ps/netsecurity/Remove-NetIPsecQuickModeSA.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecQuickModeSA.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/remove-netipsecquickmodesa?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/remove-netipsecquickmodesa?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetIPsecQuickModeSA --- diff --git a/docset/winserver2016-ps/netsecurity/Remove-NetIPsecRule.md b/docset/winserver2016-ps/netsecurity/Remove-NetIPsecRule.md index 5fb5c4b81e..9a6abe2d9f 100644 --- a/docset/winserver2016-ps/netsecurity/Remove-NetIPsecRule.md +++ b/docset/winserver2016-ps/netsecurity/Remove-NetIPsecRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/remove-netipsecrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/remove-netipsecrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetIPsecRule --- diff --git a/docset/winserver2016-ps/netsecurity/Rename-NetFirewallRule.md b/docset/winserver2016-ps/netsecurity/Rename-NetFirewallRule.md index 2d4e2241b7..2d0147c3ee 100644 --- a/docset/winserver2016-ps/netsecurity/Rename-NetFirewallRule.md +++ b/docset/winserver2016-ps/netsecurity/Rename-NetFirewallRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/rename-netfirewallrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/rename-netfirewallrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-NetFirewallRule --- diff --git a/docset/winserver2016-ps/netsecurity/Rename-NetIPsecMainModeCryptoSet.md b/docset/winserver2016-ps/netsecurity/Rename-NetIPsecMainModeCryptoSet.md index 2517384291..f2e8bd78cf 100644 --- a/docset/winserver2016-ps/netsecurity/Rename-NetIPsecMainModeCryptoSet.md +++ b/docset/winserver2016-ps/netsecurity/Rename-NetIPsecMainModeCryptoSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecMainModeCryptoSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/rename-netipsecmainmodecryptoset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/rename-netipsecmainmodecryptoset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-NetIPsecMainModeCryptoSet --- diff --git a/docset/winserver2016-ps/netsecurity/Rename-NetIPsecMainModeRule.md b/docset/winserver2016-ps/netsecurity/Rename-NetIPsecMainModeRule.md index 633d7b750a..20e6f09f29 100644 --- a/docset/winserver2016-ps/netsecurity/Rename-NetIPsecMainModeRule.md +++ b/docset/winserver2016-ps/netsecurity/Rename-NetIPsecMainModeRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecMainModeRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/rename-netipsecmainmoderule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/rename-netipsecmainmoderule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-NetIPsecMainModeRule --- diff --git a/docset/winserver2016-ps/netsecurity/Rename-NetIPsecPhase1AuthSet.md b/docset/winserver2016-ps/netsecurity/Rename-NetIPsecPhase1AuthSet.md index 875ce06140..af440dc282 100644 --- a/docset/winserver2016-ps/netsecurity/Rename-NetIPsecPhase1AuthSet.md +++ b/docset/winserver2016-ps/netsecurity/Rename-NetIPsecPhase1AuthSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecPhase1AuthSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/rename-netipsecphase1authset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/rename-netipsecphase1authset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-NetIPsecPhase1AuthSet --- diff --git a/docset/winserver2016-ps/netsecurity/Rename-NetIPsecPhase2AuthSet.md b/docset/winserver2016-ps/netsecurity/Rename-NetIPsecPhase2AuthSet.md index a8021d4080..33f6199b73 100644 --- a/docset/winserver2016-ps/netsecurity/Rename-NetIPsecPhase2AuthSet.md +++ b/docset/winserver2016-ps/netsecurity/Rename-NetIPsecPhase2AuthSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecPhase2AuthSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/rename-netipsecphase2authset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/rename-netipsecphase2authset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-NetIPsecPhase2AuthSet --- diff --git a/docset/winserver2016-ps/netsecurity/Rename-NetIPsecQuickModeCryptoSet.md b/docset/winserver2016-ps/netsecurity/Rename-NetIPsecQuickModeCryptoSet.md index 00f4c015ce..158c7198d7 100644 --- a/docset/winserver2016-ps/netsecurity/Rename-NetIPsecQuickModeCryptoSet.md +++ b/docset/winserver2016-ps/netsecurity/Rename-NetIPsecQuickModeCryptoSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecQuickModeCryptoSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/rename-netipsecquickmodecryptoset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/rename-netipsecquickmodecryptoset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-NetIPsecQuickModeCryptoSet --- diff --git a/docset/winserver2016-ps/netsecurity/Rename-NetIPsecRule.md b/docset/winserver2016-ps/netsecurity/Rename-NetIPsecRule.md index 210884376b..30d4962735 100644 --- a/docset/winserver2016-ps/netsecurity/Rename-NetIPsecRule.md +++ b/docset/winserver2016-ps/netsecurity/Rename-NetIPsecRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/rename-netipsecrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/rename-netipsecrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-NetIPsecRule --- diff --git a/docset/winserver2016-ps/netsecurity/Save-NetGPO.md b/docset/winserver2016-ps/netsecurity/Save-NetGPO.md index 4da38f2236..3efe61e9f9 100644 --- a/docset/winserver2016-ps/netsecurity/Save-NetGPO.md +++ b/docset/winserver2016-ps/netsecurity/Save-NetGPO.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetGPO.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/save-netgpo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/save-netgpo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Save-NetGPO --- diff --git a/docset/winserver2016-ps/netsecurity/Set-NetFirewallAddressFilter.md b/docset/winserver2016-ps/netsecurity/Set-NetFirewallAddressFilter.md index e71b4d94be..4b8527b6af 100644 --- a/docset/winserver2016-ps/netsecurity/Set-NetFirewallAddressFilter.md +++ b/docset/winserver2016-ps/netsecurity/Set-NetFirewallAddressFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallAddressFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewalladdressfilter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netfirewalladdressfilter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetFirewallAddressFilter --- diff --git a/docset/winserver2016-ps/netsecurity/Set-NetFirewallApplicationFilter.md b/docset/winserver2016-ps/netsecurity/Set-NetFirewallApplicationFilter.md index e3402f4f96..db80da3d65 100644 --- a/docset/winserver2016-ps/netsecurity/Set-NetFirewallApplicationFilter.md +++ b/docset/winserver2016-ps/netsecurity/Set-NetFirewallApplicationFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallApplicationFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewallapplicationfilter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netfirewallapplicationfilter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetFirewallApplicationFilter --- diff --git a/docset/winserver2016-ps/netsecurity/Set-NetFirewallInterfaceFilter.md b/docset/winserver2016-ps/netsecurity/Set-NetFirewallInterfaceFilter.md index 329e7edd40..65cd2dc434 100644 --- a/docset/winserver2016-ps/netsecurity/Set-NetFirewallInterfaceFilter.md +++ b/docset/winserver2016-ps/netsecurity/Set-NetFirewallInterfaceFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallInterfaceFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewallinterfacefilter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netfirewallinterfacefilter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetFirewallInterfaceFilter --- diff --git a/docset/winserver2016-ps/netsecurity/Set-NetFirewallInterfaceTypeFilter.md b/docset/winserver2016-ps/netsecurity/Set-NetFirewallInterfaceTypeFilter.md index 207f8772bb..3fe41872cd 100644 --- a/docset/winserver2016-ps/netsecurity/Set-NetFirewallInterfaceTypeFilter.md +++ b/docset/winserver2016-ps/netsecurity/Set-NetFirewallInterfaceTypeFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallInterfaceTypeFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewallinterfacetypefilter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netfirewallinterfacetypefilter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetFirewallInterfaceTypeFilter --- diff --git a/docset/winserver2016-ps/netsecurity/Set-NetFirewallPortFilter.md b/docset/winserver2016-ps/netsecurity/Set-NetFirewallPortFilter.md index 1d5e81199b..61221aa6a2 100644 --- a/docset/winserver2016-ps/netsecurity/Set-NetFirewallPortFilter.md +++ b/docset/winserver2016-ps/netsecurity/Set-NetFirewallPortFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallPortFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewallportfilter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netfirewallportfilter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetFirewallPortFilter --- diff --git a/docset/winserver2016-ps/netsecurity/Set-NetFirewallProfile.md b/docset/winserver2016-ps/netsecurity/Set-NetFirewallProfile.md index 4b989e2094..51667a1592 100644 --- a/docset/winserver2016-ps/netsecurity/Set-NetFirewallProfile.md +++ b/docset/winserver2016-ps/netsecurity/Set-NetFirewallProfile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallProfile.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewallprofile?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netfirewallprofile?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetFirewallProfile --- diff --git a/docset/winserver2016-ps/netsecurity/Set-NetFirewallRule.md b/docset/winserver2016-ps/netsecurity/Set-NetFirewallRule.md index 04a52c2653..fb9c5c663f 100644 --- a/docset/winserver2016-ps/netsecurity/Set-NetFirewallRule.md +++ b/docset/winserver2016-ps/netsecurity/Set-NetFirewallRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewallrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netfirewallrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetFirewallRule --- diff --git a/docset/winserver2016-ps/netsecurity/Set-NetFirewallSecurityFilter.md b/docset/winserver2016-ps/netsecurity/Set-NetFirewallSecurityFilter.md index 426f7d96fa..c3a7b61584 100644 --- a/docset/winserver2016-ps/netsecurity/Set-NetFirewallSecurityFilter.md +++ b/docset/winserver2016-ps/netsecurity/Set-NetFirewallSecurityFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallSecurityFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewallsecurityfilter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netfirewallsecurityfilter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetFirewallSecurityFilter --- diff --git a/docset/winserver2016-ps/netsecurity/Set-NetFirewallServiceFilter.md b/docset/winserver2016-ps/netsecurity/Set-NetFirewallServiceFilter.md index eda4e9042a..2d257eae60 100644 --- a/docset/winserver2016-ps/netsecurity/Set-NetFirewallServiceFilter.md +++ b/docset/winserver2016-ps/netsecurity/Set-NetFirewallServiceFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallServiceFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewallservicefilter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netfirewallservicefilter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetFirewallServiceFilter --- diff --git a/docset/winserver2016-ps/netsecurity/Set-NetFirewallSetting.md b/docset/winserver2016-ps/netsecurity/Set-NetFirewallSetting.md index 11fe0fced2..dae1318316 100644 --- a/docset/winserver2016-ps/netsecurity/Set-NetFirewallSetting.md +++ b/docset/winserver2016-ps/netsecurity/Set-NetFirewallSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallSetting.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewallsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netfirewallsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetFirewallSetting --- diff --git a/docset/winserver2016-ps/netsecurity/Set-NetIPsecDospSetting.md b/docset/winserver2016-ps/netsecurity/Set-NetIPsecDospSetting.md index 21db8a8fb8..6cfdb8a75b 100644 --- a/docset/winserver2016-ps/netsecurity/Set-NetIPsecDospSetting.md +++ b/docset/winserver2016-ps/netsecurity/Set-NetIPsecDospSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecDospSetting.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netipsecdospsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netipsecdospsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetIPsecDospSetting --- diff --git a/docset/winserver2016-ps/netsecurity/Set-NetIPsecMainModeCryptoSet.md b/docset/winserver2016-ps/netsecurity/Set-NetIPsecMainModeCryptoSet.md index d6dfdf0d62..4427613af3 100644 --- a/docset/winserver2016-ps/netsecurity/Set-NetIPsecMainModeCryptoSet.md +++ b/docset/winserver2016-ps/netsecurity/Set-NetIPsecMainModeCryptoSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecMainModeCryptoSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netipsecmainmodecryptoset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netipsecmainmodecryptoset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetIPsecMainModeCryptoSet --- diff --git a/docset/winserver2016-ps/netsecurity/Set-NetIPsecMainModeRule.md b/docset/winserver2016-ps/netsecurity/Set-NetIPsecMainModeRule.md index 56cde02572..112f2e712b 100644 --- a/docset/winserver2016-ps/netsecurity/Set-NetIPsecMainModeRule.md +++ b/docset/winserver2016-ps/netsecurity/Set-NetIPsecMainModeRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecMainModeRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netipsecmainmoderule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netipsecmainmoderule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetIPsecMainModeRule --- diff --git a/docset/winserver2016-ps/netsecurity/Set-NetIPsecPhase1AuthSet.md b/docset/winserver2016-ps/netsecurity/Set-NetIPsecPhase1AuthSet.md index 4af233bc60..ec2bdcf65b 100644 --- a/docset/winserver2016-ps/netsecurity/Set-NetIPsecPhase1AuthSet.md +++ b/docset/winserver2016-ps/netsecurity/Set-NetIPsecPhase1AuthSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecPhase1AuthSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netipsecphase1authset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netipsecphase1authset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetIPsecPhase1AuthSet --- diff --git a/docset/winserver2016-ps/netsecurity/Set-NetIPsecPhase2AuthSet.md b/docset/winserver2016-ps/netsecurity/Set-NetIPsecPhase2AuthSet.md index f81647ecfc..143976d834 100644 --- a/docset/winserver2016-ps/netsecurity/Set-NetIPsecPhase2AuthSet.md +++ b/docset/winserver2016-ps/netsecurity/Set-NetIPsecPhase2AuthSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecPhase2AuthSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netipsecphase2authset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netipsecphase2authset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetIPsecPhase2AuthSet --- diff --git a/docset/winserver2016-ps/netsecurity/Set-NetIPsecQuickModeCryptoSet.md b/docset/winserver2016-ps/netsecurity/Set-NetIPsecQuickModeCryptoSet.md index 26c979ac9b..f4724ec6b8 100644 --- a/docset/winserver2016-ps/netsecurity/Set-NetIPsecQuickModeCryptoSet.md +++ b/docset/winserver2016-ps/netsecurity/Set-NetIPsecQuickModeCryptoSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecQuickModeCryptoSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netipsecquickmodecryptoset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netipsecquickmodecryptoset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetIPsecQuickModeCryptoSet --- diff --git a/docset/winserver2016-ps/netsecurity/Set-NetIPsecRule.md b/docset/winserver2016-ps/netsecurity/Set-NetIPsecRule.md index a54a163165..4ecb30ca70 100644 --- a/docset/winserver2016-ps/netsecurity/Set-NetIPsecRule.md +++ b/docset/winserver2016-ps/netsecurity/Set-NetIPsecRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netipsecrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netipsecrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetIPsecRule --- diff --git a/docset/winserver2016-ps/netsecurity/Show-NetFirewallRule.md b/docset/winserver2016-ps/netsecurity/Show-NetFirewallRule.md index 927ec6ddc0..b89cf7dea3 100644 --- a/docset/winserver2016-ps/netsecurity/Show-NetFirewallRule.md +++ b/docset/winserver2016-ps/netsecurity/Show-NetFirewallRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/show-netfirewallrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/show-netfirewallrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Show-NetFirewallRule --- diff --git a/docset/winserver2016-ps/netsecurity/Show-NetIPsecRule.md b/docset/winserver2016-ps/netsecurity/Show-NetIPsecRule.md index 7cd63ab81a..ff52020fe7 100644 --- a/docset/winserver2016-ps/netsecurity/Show-NetIPsecRule.md +++ b/docset/winserver2016-ps/netsecurity/Show-NetIPsecRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/show-netipsecrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/show-netipsecrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Show-NetIPsecRule --- diff --git a/docset/winserver2016-ps/netsecurity/Sync-NetIPsecRule.md b/docset/winserver2016-ps/netsecurity/Sync-NetIPsecRule.md index 3fe1fc825b..97256085f6 100644 --- a/docset/winserver2016-ps/netsecurity/Sync-NetIPsecRule.md +++ b/docset/winserver2016-ps/netsecurity/Sync-NetIPsecRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/sync-netipsecrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/sync-netipsecrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Sync-NetIPsecRule --- diff --git a/docset/winserver2016-ps/netsecurity/Update-NetIPsecRule.md b/docset/winserver2016-ps/netsecurity/Update-NetIPsecRule.md index a74934a98b..34b86387e0 100644 --- a/docset/winserver2016-ps/netsecurity/Update-NetIPsecRule.md +++ b/docset/winserver2016-ps/netsecurity/Update-NetIPsecRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/update-netipsecrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/update-netipsecrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-NetIPsecRule --- diff --git a/docset/winserver2016-ps/netswitchteam/Add-NetSwitchTeamMember.md b/docset/winserver2016-ps/netswitchteam/Add-NetSwitchTeamMember.md index d7b6f7723a..8a674b3e5c 100644 --- a/docset/winserver2016-ps/netswitchteam/Add-NetSwitchTeamMember.md +++ b/docset/winserver2016-ps/netswitchteam/Add-NetSwitchTeamMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetSwitchTeam.cdxml-help.xml Module Name: NetSwitchTeam ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netswitchteam/add-netswitchteammember?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netswitchteam/add-netswitchteammember?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NetSwitchTeamMember --- diff --git a/docset/winserver2016-ps/netswitchteam/Get-NetSwitchTeam.md b/docset/winserver2016-ps/netswitchteam/Get-NetSwitchTeam.md index 8b56558dde..983443e182 100644 --- a/docset/winserver2016-ps/netswitchteam/Get-NetSwitchTeam.md +++ b/docset/winserver2016-ps/netswitchteam/Get-NetSwitchTeam.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetSwitchTeam.cdxml-help.xml Module Name: NetSwitchTeam ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netswitchteam/get-netswitchteam?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netswitchteam/get-netswitchteam?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetSwitchTeam --- diff --git a/docset/winserver2016-ps/netswitchteam/Get-NetSwitchTeamMember.md b/docset/winserver2016-ps/netswitchteam/Get-NetSwitchTeamMember.md index d4a770f033..caedba4ef1 100644 --- a/docset/winserver2016-ps/netswitchteam/Get-NetSwitchTeamMember.md +++ b/docset/winserver2016-ps/netswitchteam/Get-NetSwitchTeamMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetSwitchTeamMember.cdxml-help.xml Module Name: NetSwitchTeam ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netswitchteam/get-netswitchteammember?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netswitchteam/get-netswitchteammember?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetSwitchTeamMember --- diff --git a/docset/winserver2016-ps/netswitchteam/New-NetSwitchTeam.md b/docset/winserver2016-ps/netswitchteam/New-NetSwitchTeam.md index 7ccfffa423..05ccbdfee6 100644 --- a/docset/winserver2016-ps/netswitchteam/New-NetSwitchTeam.md +++ b/docset/winserver2016-ps/netswitchteam/New-NetSwitchTeam.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetSwitchTeam.cdxml-help.xml Module Name: NetSwitchTeam ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netswitchteam/new-netswitchteam?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netswitchteam/new-netswitchteam?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetSwitchTeam --- diff --git a/docset/winserver2016-ps/netswitchteam/Remove-NetSwitchTeam.md b/docset/winserver2016-ps/netswitchteam/Remove-NetSwitchTeam.md index b83f673844..6b79d77e56 100644 --- a/docset/winserver2016-ps/netswitchteam/Remove-NetSwitchTeam.md +++ b/docset/winserver2016-ps/netswitchteam/Remove-NetSwitchTeam.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetSwitchTeam.cdxml-help.xml Module Name: NetSwitchTeam ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netswitchteam/remove-netswitchteam?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netswitchteam/remove-netswitchteam?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetSwitchTeam --- diff --git a/docset/winserver2016-ps/netswitchteam/Remove-NetSwitchTeamMember.md b/docset/winserver2016-ps/netswitchteam/Remove-NetSwitchTeamMember.md index 7277f67f86..f6fb4f5fec 100644 --- a/docset/winserver2016-ps/netswitchteam/Remove-NetSwitchTeamMember.md +++ b/docset/winserver2016-ps/netswitchteam/Remove-NetSwitchTeamMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetSwitchTeam.cdxml-help.xml Module Name: NetSwitchTeam ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netswitchteam/remove-netswitchteammember?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netswitchteam/remove-netswitchteammember?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetSwitchTeamMember --- diff --git a/docset/winserver2016-ps/netswitchteam/Rename-NetSwitchTeam.md b/docset/winserver2016-ps/netswitchteam/Rename-NetSwitchTeam.md index ab7c7011eb..2da6995fd9 100644 --- a/docset/winserver2016-ps/netswitchteam/Rename-NetSwitchTeam.md +++ b/docset/winserver2016-ps/netswitchteam/Rename-NetSwitchTeam.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetSwitchTeam.cdxml-help.xml Module Name: NetSwitchTeam ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netswitchteam/rename-netswitchteam?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netswitchteam/rename-netswitchteam?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-NetSwitchTeam --- diff --git a/docset/winserver2016-ps/nettcpip/Find-NetRoute.md b/docset/winserver2016-ps/nettcpip/Find-NetRoute.md index 945dd90536..38b70d406f 100644 --- a/docset/winserver2016-ps/nettcpip/Find-NetRoute.md +++ b/docset/winserver2016-ps/nettcpip/Find-NetRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetRoute.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/find-netroute?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/find-netroute?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Find-NetRoute --- diff --git a/docset/winserver2016-ps/nettcpip/Get-NetCompartment.md b/docset/winserver2016-ps/nettcpip/Get-NetCompartment.md index 152b2d7076..83e94dc76a 100644 --- a/docset/winserver2016-ps/nettcpip/Get-NetCompartment.md +++ b/docset/winserver2016-ps/nettcpip/Get-NetCompartment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetCompartment.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netcompartment?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netcompartment?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetCompartment --- diff --git a/docset/winserver2016-ps/nettcpip/Get-NetIPAddress.md b/docset/winserver2016-ps/nettcpip/Get-NetIPAddress.md index 4729670c0b..06e089ff0a 100644 --- a/docset/winserver2016-ps/nettcpip/Get-NetIPAddress.md +++ b/docset/winserver2016-ps/nettcpip/Get-NetIPAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIPAddress.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netipaddress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netipaddress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPAddress --- diff --git a/docset/winserver2016-ps/nettcpip/Get-NetIPConfiguration.md b/docset/winserver2016-ps/nettcpip/Get-NetIPConfiguration.md index 28c9b8bc95..949bb1467c 100644 --- a/docset/winserver2016-ps/nettcpip/Get-NetIPConfiguration.md +++ b/docset/winserver2016-ps/nettcpip/Get-NetIPConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPConfiguration-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netipconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netipconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPConfiguration --- diff --git a/docset/winserver2016-ps/nettcpip/Get-NetIPInterface.md b/docset/winserver2016-ps/nettcpip/Get-NetIPInterface.md index ebc77d3014..6ca0bb1d5a 100644 --- a/docset/winserver2016-ps/nettcpip/Get-NetIPInterface.md +++ b/docset/winserver2016-ps/nettcpip/Get-NetIPInterface.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIPInterface.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netipinterface?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netipinterface?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPInterface --- diff --git a/docset/winserver2016-ps/nettcpip/Get-NetIPv4Protocol.md b/docset/winserver2016-ps/nettcpip/Get-NetIPv4Protocol.md index 7627f00259..c6c828c089 100644 --- a/docset/winserver2016-ps/nettcpip/Get-NetIPv4Protocol.md +++ b/docset/winserver2016-ps/nettcpip/Get-NetIPv4Protocol.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIPv4Protocol.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netipv4protocol?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netipv4protocol?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPv4Protocol --- diff --git a/docset/winserver2016-ps/nettcpip/Get-NetIPv6Protocol.md b/docset/winserver2016-ps/nettcpip/Get-NetIPv6Protocol.md index f0b57f9daa..b4c731cce1 100644 --- a/docset/winserver2016-ps/nettcpip/Get-NetIPv6Protocol.md +++ b/docset/winserver2016-ps/nettcpip/Get-NetIPv6Protocol.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIPv6Protocol.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netipv6protocol?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netipv6protocol?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPv6Protocol --- diff --git a/docset/winserver2016-ps/nettcpip/Get-NetNeighbor.md b/docset/winserver2016-ps/nettcpip/Get-NetNeighbor.md index 32808f3837..c4d2c3f424 100644 --- a/docset/winserver2016-ps/nettcpip/Get-NetNeighbor.md +++ b/docset/winserver2016-ps/nettcpip/Get-NetNeighbor.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNeighbor.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netneighbor?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netneighbor?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetNeighbor --- diff --git a/docset/winserver2016-ps/nettcpip/Get-NetOffloadGlobalSetting.md b/docset/winserver2016-ps/nettcpip/Get-NetOffloadGlobalSetting.md index 3cd1b4746d..45b5c42a49 100644 --- a/docset/winserver2016-ps/nettcpip/Get-NetOffloadGlobalSetting.md +++ b/docset/winserver2016-ps/nettcpip/Get-NetOffloadGlobalSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetOffloadGlobalSetting.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netoffloadglobalsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netoffloadglobalsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetOffloadGlobalSetting --- diff --git a/docset/winserver2016-ps/nettcpip/Get-NetPrefixPolicy.md b/docset/winserver2016-ps/nettcpip/Get-NetPrefixPolicy.md index a14c3167cd..6e31e264d2 100644 --- a/docset/winserver2016-ps/nettcpip/Get-NetPrefixPolicy.md +++ b/docset/winserver2016-ps/nettcpip/Get-NetPrefixPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetPrefixPolicy.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netprefixpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netprefixpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetPrefixPolicy --- diff --git a/docset/winserver2016-ps/nettcpip/Get-NetRoute.md b/docset/winserver2016-ps/nettcpip/Get-NetRoute.md index c17841a02a..e6282f061f 100644 --- a/docset/winserver2016-ps/nettcpip/Get-NetRoute.md +++ b/docset/winserver2016-ps/nettcpip/Get-NetRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetRoute.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netroute?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netroute?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetRoute --- diff --git a/docset/winserver2016-ps/nettcpip/Get-NetTCPConnection.md b/docset/winserver2016-ps/nettcpip/Get-NetTCPConnection.md index bb4af5d7b5..aca83cfad0 100644 --- a/docset/winserver2016-ps/nettcpip/Get-NetTCPConnection.md +++ b/docset/winserver2016-ps/nettcpip/Get-NetTCPConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetTCPConnection.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-nettcpconnection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-nettcpconnection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetTCPConnection --- diff --git a/docset/winserver2016-ps/nettcpip/Get-NetTCPSetting.md b/docset/winserver2016-ps/nettcpip/Get-NetTCPSetting.md index 0deb779e22..3270463efd 100644 --- a/docset/winserver2016-ps/nettcpip/Get-NetTCPSetting.md +++ b/docset/winserver2016-ps/nettcpip/Get-NetTCPSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetTCPSetting.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-nettcpsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-nettcpsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetTCPSetting --- diff --git a/docset/winserver2016-ps/nettcpip/Get-NetTransportFilter.md b/docset/winserver2016-ps/nettcpip/Get-NetTransportFilter.md index a7d2843f0e..304236b8aa 100644 --- a/docset/winserver2016-ps/nettcpip/Get-NetTransportFilter.md +++ b/docset/winserver2016-ps/nettcpip/Get-NetTransportFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetTransportFilter.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-nettransportfilter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-nettransportfilter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetTransportFilter --- diff --git a/docset/winserver2016-ps/nettcpip/Get-NetUDPEndpoint.md b/docset/winserver2016-ps/nettcpip/Get-NetUDPEndpoint.md index e0faafdb2e..ae334b79b9 100644 --- a/docset/winserver2016-ps/nettcpip/Get-NetUDPEndpoint.md +++ b/docset/winserver2016-ps/nettcpip/Get-NetUDPEndpoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetUDPEndpoint.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netudpendpoint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netudpendpoint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetUDPEndpoint --- diff --git a/docset/winserver2016-ps/nettcpip/Get-NetUDPSetting.md b/docset/winserver2016-ps/nettcpip/Get-NetUDPSetting.md index 3958d377e0..66be9365ef 100644 --- a/docset/winserver2016-ps/nettcpip/Get-NetUDPSetting.md +++ b/docset/winserver2016-ps/nettcpip/Get-NetUDPSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetUDPSetting.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netudpsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netudpsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetUDPSetting --- diff --git a/docset/winserver2016-ps/nettcpip/New-NetIPAddress.md b/docset/winserver2016-ps/nettcpip/New-NetIPAddress.md index e0be837544..c361625aec 100644 --- a/docset/winserver2016-ps/nettcpip/New-NetIPAddress.md +++ b/docset/winserver2016-ps/nettcpip/New-NetIPAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIPAddress.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/new-netipaddress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/new-netipaddress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetIPAddress --- diff --git a/docset/winserver2016-ps/nettcpip/New-NetNeighbor.md b/docset/winserver2016-ps/nettcpip/New-NetNeighbor.md index cf63b082b3..571898fc8a 100644 --- a/docset/winserver2016-ps/nettcpip/New-NetNeighbor.md +++ b/docset/winserver2016-ps/nettcpip/New-NetNeighbor.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNeighbor.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/new-netneighbor?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/new-netneighbor?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetNeighbor --- diff --git a/docset/winserver2016-ps/nettcpip/New-NetRoute.md b/docset/winserver2016-ps/nettcpip/New-NetRoute.md index f64f69d9c3..4318b5dd25 100644 --- a/docset/winserver2016-ps/nettcpip/New-NetRoute.md +++ b/docset/winserver2016-ps/nettcpip/New-NetRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetRoute.cdxml-help.xml Module Name: NetTCPIP ms.date: 05/30/2018 -online version: https://docs.microsoft.com/powershell/module/nettcpip/new-netroute?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/new-netroute?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetRoute --- diff --git a/docset/winserver2016-ps/nettcpip/New-NetTransportFilter.md b/docset/winserver2016-ps/nettcpip/New-NetTransportFilter.md index ea0bce521a..ce9ede0072 100644 --- a/docset/winserver2016-ps/nettcpip/New-NetTransportFilter.md +++ b/docset/winserver2016-ps/nettcpip/New-NetTransportFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetTransportFilter.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/new-nettransportfilter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/new-nettransportfilter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetTransportFilter --- diff --git a/docset/winserver2016-ps/nettcpip/Remove-NetIPAddress.md b/docset/winserver2016-ps/nettcpip/Remove-NetIPAddress.md index b575b64f39..76c488d101 100644 --- a/docset/winserver2016-ps/nettcpip/Remove-NetIPAddress.md +++ b/docset/winserver2016-ps/nettcpip/Remove-NetIPAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIPAddress.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/remove-netipaddress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/remove-netipaddress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetIPAddress --- diff --git a/docset/winserver2016-ps/nettcpip/Remove-NetNeighbor.md b/docset/winserver2016-ps/nettcpip/Remove-NetNeighbor.md index da0ccc7fe9..6dc8c676ea 100644 --- a/docset/winserver2016-ps/nettcpip/Remove-NetNeighbor.md +++ b/docset/winserver2016-ps/nettcpip/Remove-NetNeighbor.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNeighbor.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/remove-netneighbor?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/remove-netneighbor?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetNeighbor --- diff --git a/docset/winserver2016-ps/nettcpip/Remove-NetRoute.md b/docset/winserver2016-ps/nettcpip/Remove-NetRoute.md index 322ffa8b89..645b3ff310 100644 --- a/docset/winserver2016-ps/nettcpip/Remove-NetRoute.md +++ b/docset/winserver2016-ps/nettcpip/Remove-NetRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetRoute.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/remove-netroute?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/remove-netroute?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetRoute --- diff --git a/docset/winserver2016-ps/nettcpip/Remove-NetTransportFilter.md b/docset/winserver2016-ps/nettcpip/Remove-NetTransportFilter.md index 7a874bdbf1..ec394d7503 100644 --- a/docset/winserver2016-ps/nettcpip/Remove-NetTransportFilter.md +++ b/docset/winserver2016-ps/nettcpip/Remove-NetTransportFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetTransportFilter.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/remove-nettransportfilter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/remove-nettransportfilter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetTransportFilter --- diff --git a/docset/winserver2016-ps/nettcpip/Set-NetIPAddress.md b/docset/winserver2016-ps/nettcpip/Set-NetIPAddress.md index 2d24e48bcc..34a43876e0 100644 --- a/docset/winserver2016-ps/nettcpip/Set-NetIPAddress.md +++ b/docset/winserver2016-ps/nettcpip/Set-NetIPAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIPAddress.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/set-netipaddress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/set-netipaddress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetIPAddress --- diff --git a/docset/winserver2016-ps/nettcpip/Set-NetIPInterface.md b/docset/winserver2016-ps/nettcpip/Set-NetIPInterface.md index f5ef7b208c..84cd60fc38 100644 --- a/docset/winserver2016-ps/nettcpip/Set-NetIPInterface.md +++ b/docset/winserver2016-ps/nettcpip/Set-NetIPInterface.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIPInterface.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/set-netipinterface?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/set-netipinterface?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetIPInterface --- diff --git a/docset/winserver2016-ps/nettcpip/Set-NetIPv4Protocol.md b/docset/winserver2016-ps/nettcpip/Set-NetIPv4Protocol.md index f4fca8d6f7..9ce51cf015 100644 --- a/docset/winserver2016-ps/nettcpip/Set-NetIPv4Protocol.md +++ b/docset/winserver2016-ps/nettcpip/Set-NetIPv4Protocol.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIPv4Protocol.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/set-netipv4protocol?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/set-netipv4protocol?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetIPv4Protocol --- diff --git a/docset/winserver2016-ps/nettcpip/Set-NetIPv6Protocol.md b/docset/winserver2016-ps/nettcpip/Set-NetIPv6Protocol.md index 95fdbca983..006f0105ec 100644 --- a/docset/winserver2016-ps/nettcpip/Set-NetIPv6Protocol.md +++ b/docset/winserver2016-ps/nettcpip/Set-NetIPv6Protocol.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIPv6Protocol.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/set-netipv6protocol?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/set-netipv6protocol?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetIPv6Protocol --- diff --git a/docset/winserver2016-ps/nettcpip/Set-NetNeighbor.md b/docset/winserver2016-ps/nettcpip/Set-NetNeighbor.md index 08cf98623c..a92773638d 100644 --- a/docset/winserver2016-ps/nettcpip/Set-NetNeighbor.md +++ b/docset/winserver2016-ps/nettcpip/Set-NetNeighbor.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNeighbor.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/set-netneighbor?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/set-netneighbor?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetNeighbor --- diff --git a/docset/winserver2016-ps/nettcpip/Set-NetOffloadGlobalSetting.md b/docset/winserver2016-ps/nettcpip/Set-NetOffloadGlobalSetting.md index 7bfb4cd105..d92afef14d 100644 --- a/docset/winserver2016-ps/nettcpip/Set-NetOffloadGlobalSetting.md +++ b/docset/winserver2016-ps/nettcpip/Set-NetOffloadGlobalSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetOffloadGlobalSetting.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/set-netoffloadglobalsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/set-netoffloadglobalsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetOffloadGlobalSetting --- diff --git a/docset/winserver2016-ps/nettcpip/Set-NetRoute.md b/docset/winserver2016-ps/nettcpip/Set-NetRoute.md index fcad9c893a..6b02bf9303 100644 --- a/docset/winserver2016-ps/nettcpip/Set-NetRoute.md +++ b/docset/winserver2016-ps/nettcpip/Set-NetRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetRoute.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/set-netroute?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/set-netroute?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetRoute --- diff --git a/docset/winserver2016-ps/nettcpip/Set-NetTCPSetting.md b/docset/winserver2016-ps/nettcpip/Set-NetTCPSetting.md index 7b0962bf36..1859d01566 100644 --- a/docset/winserver2016-ps/nettcpip/Set-NetTCPSetting.md +++ b/docset/winserver2016-ps/nettcpip/Set-NetTCPSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetTCPSetting.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/set-nettcpsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/set-nettcpsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetTCPSetting --- diff --git a/docset/winserver2016-ps/nettcpip/Set-NetUDPSetting.md b/docset/winserver2016-ps/nettcpip/Set-NetUDPSetting.md index d8b3ea4fce..013559ac3b 100644 --- a/docset/winserver2016-ps/nettcpip/Set-NetUDPSetting.md +++ b/docset/winserver2016-ps/nettcpip/Set-NetUDPSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetUDPSetting.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/set-netudpsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/set-netudpsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetUDPSetting --- diff --git a/docset/winserver2016-ps/nettcpip/Test-NetConnection.md b/docset/winserver2016-ps/nettcpip/Test-NetConnection.md index 892dcd80dd..4fa5873a91 100644 --- a/docset/winserver2016-ps/nettcpip/Test-NetConnection.md +++ b/docset/winserver2016-ps/nettcpip/Test-NetConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Test-NetConnection-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/test-netconnection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/test-netconnection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-NetConnection --- diff --git a/docset/winserver2016-ps/netwnv/Get-NetVirtualizationCustomerRoute.md b/docset/winserver2016-ps/netwnv/Get-NetVirtualizationCustomerRoute.md index 2ce0b26e19..e56c4d86eb 100644 --- a/docset/winserver2016-ps/netwnv/Get-NetVirtualizationCustomerRoute.md +++ b/docset/winserver2016-ps/netwnv/Get-NetVirtualizationCustomerRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationCustomerRouteSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/get-netvirtualizationcustomerroute?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/get-netvirtualizationcustomerroute?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetVirtualizationCustomerRoute --- diff --git a/docset/winserver2016-ps/netwnv/Get-NetVirtualizationGlobal.md b/docset/winserver2016-ps/netwnv/Get-NetVirtualizationGlobal.md index 999a099756..444a91c969 100644 --- a/docset/winserver2016-ps/netwnv/Get-NetVirtualizationGlobal.md +++ b/docset/winserver2016-ps/netwnv/Get-NetVirtualizationGlobal.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationGlobalSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/get-netvirtualizationglobal?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/get-netvirtualizationglobal?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetVirtualizationGlobal --- diff --git a/docset/winserver2016-ps/netwnv/Get-NetVirtualizationLookupRecord.md b/docset/winserver2016-ps/netwnv/Get-NetVirtualizationLookupRecord.md index 8776bd762b..5bf92f9ce4 100644 --- a/docset/winserver2016-ps/netwnv/Get-NetVirtualizationLookupRecord.md +++ b/docset/winserver2016-ps/netwnv/Get-NetVirtualizationLookupRecord.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationLookupRecordSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/get-netvirtualizationlookuprecord?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/get-netvirtualizationlookuprecord?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetVirtualizationLookupRecord --- diff --git a/docset/winserver2016-ps/netwnv/Get-NetVirtualizationProviderAddress.md b/docset/winserver2016-ps/netwnv/Get-NetVirtualizationProviderAddress.md index 6516402d66..7050de765e 100644 --- a/docset/winserver2016-ps/netwnv/Get-NetVirtualizationProviderAddress.md +++ b/docset/winserver2016-ps/netwnv/Get-NetVirtualizationProviderAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationProviderAddressSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/get-netvirtualizationprovideraddress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/get-netvirtualizationprovideraddress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetVirtualizationProviderAddress --- diff --git a/docset/winserver2016-ps/netwnv/Get-NetVirtualizationProviderRoute.md b/docset/winserver2016-ps/netwnv/Get-NetVirtualizationProviderRoute.md index a0fed981aa..21eb08e96b 100644 --- a/docset/winserver2016-ps/netwnv/Get-NetVirtualizationProviderRoute.md +++ b/docset/winserver2016-ps/netwnv/Get-NetVirtualizationProviderRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationProviderRouteSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/get-netvirtualizationproviderroute?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/get-netvirtualizationproviderroute?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetVirtualizationProviderRoute --- diff --git a/docset/winserver2016-ps/netwnv/New-NetVirtualizationCustomerRoute.md b/docset/winserver2016-ps/netwnv/New-NetVirtualizationCustomerRoute.md index 717abb0865..a1b09fade8 100644 --- a/docset/winserver2016-ps/netwnv/New-NetVirtualizationCustomerRoute.md +++ b/docset/winserver2016-ps/netwnv/New-NetVirtualizationCustomerRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationCustomerRouteSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/new-netvirtualizationcustomerroute?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/new-netvirtualizationcustomerroute?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetVirtualizationCustomerRoute --- diff --git a/docset/winserver2016-ps/netwnv/New-NetVirtualizationLookupRecord.md b/docset/winserver2016-ps/netwnv/New-NetVirtualizationLookupRecord.md index 044570bfe7..c665b5619a 100644 --- a/docset/winserver2016-ps/netwnv/New-NetVirtualizationLookupRecord.md +++ b/docset/winserver2016-ps/netwnv/New-NetVirtualizationLookupRecord.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationLookupRecordSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/new-netvirtualizationlookuprecord?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/new-netvirtualizationlookuprecord?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetVirtualizationLookupRecord --- diff --git a/docset/winserver2016-ps/netwnv/New-NetVirtualizationProviderAddress.md b/docset/winserver2016-ps/netwnv/New-NetVirtualizationProviderAddress.md index 775e47d54a..34f0f4a5d2 100644 --- a/docset/winserver2016-ps/netwnv/New-NetVirtualizationProviderAddress.md +++ b/docset/winserver2016-ps/netwnv/New-NetVirtualizationProviderAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationProviderAddressSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/new-netvirtualizationprovideraddress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/new-netvirtualizationprovideraddress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetVirtualizationProviderAddress --- diff --git a/docset/winserver2016-ps/netwnv/New-NetVirtualizationProviderRoute.md b/docset/winserver2016-ps/netwnv/New-NetVirtualizationProviderRoute.md index a4a7504875..af5bb674df 100644 --- a/docset/winserver2016-ps/netwnv/New-NetVirtualizationProviderRoute.md +++ b/docset/winserver2016-ps/netwnv/New-NetVirtualizationProviderRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationProviderRouteSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/new-netvirtualizationproviderroute?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/new-netvirtualizationproviderroute?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetVirtualizationProviderRoute --- diff --git a/docset/winserver2016-ps/netwnv/Remove-NetVirtualizationCustomerRoute.md b/docset/winserver2016-ps/netwnv/Remove-NetVirtualizationCustomerRoute.md index 2f32f5b838..13ce3e99fb 100644 --- a/docset/winserver2016-ps/netwnv/Remove-NetVirtualizationCustomerRoute.md +++ b/docset/winserver2016-ps/netwnv/Remove-NetVirtualizationCustomerRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationCustomerRouteSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/remove-netvirtualizationcustomerroute?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/remove-netvirtualizationcustomerroute?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetVirtualizationCustomerRoute --- diff --git a/docset/winserver2016-ps/netwnv/Remove-NetVirtualizationLookupRecord.md b/docset/winserver2016-ps/netwnv/Remove-NetVirtualizationLookupRecord.md index a90928dbdc..1f0c5ce75b 100644 --- a/docset/winserver2016-ps/netwnv/Remove-NetVirtualizationLookupRecord.md +++ b/docset/winserver2016-ps/netwnv/Remove-NetVirtualizationLookupRecord.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationLookupRecordSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/remove-netvirtualizationlookuprecord?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/remove-netvirtualizationlookuprecord?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetVirtualizationLookupRecord --- diff --git a/docset/winserver2016-ps/netwnv/Remove-NetVirtualizationProviderAddress.md b/docset/winserver2016-ps/netwnv/Remove-NetVirtualizationProviderAddress.md index 9c8e2a010a..4288b365ae 100644 --- a/docset/winserver2016-ps/netwnv/Remove-NetVirtualizationProviderAddress.md +++ b/docset/winserver2016-ps/netwnv/Remove-NetVirtualizationProviderAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationProviderAddressSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/remove-netvirtualizationprovideraddress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/remove-netvirtualizationprovideraddress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetVirtualizationProviderAddress --- diff --git a/docset/winserver2016-ps/netwnv/Remove-NetVirtualizationProviderRoute.md b/docset/winserver2016-ps/netwnv/Remove-NetVirtualizationProviderRoute.md index c9442e82e8..ecf7eb6f6e 100644 --- a/docset/winserver2016-ps/netwnv/Remove-NetVirtualizationProviderRoute.md +++ b/docset/winserver2016-ps/netwnv/Remove-NetVirtualizationProviderRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationProviderRouteSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/remove-netvirtualizationproviderroute?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/remove-netvirtualizationproviderroute?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetVirtualizationProviderRoute --- diff --git a/docset/winserver2016-ps/netwnv/Select-NetVirtualizationNextHop.md b/docset/winserver2016-ps/netwnv/Select-NetVirtualizationNextHop.md index 6c072c0600..0a4fd6082f 100644 --- a/docset/winserver2016-ps/netwnv/Select-NetVirtualizationNextHop.md +++ b/docset/winserver2016-ps/netwnv/Select-NetVirtualizationNextHop.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationNextHopLookup.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/select-netvirtualizationnexthop?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/select-netvirtualizationnexthop?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Select-NetVirtualizationNextHop --- diff --git a/docset/winserver2016-ps/netwnv/Set-NetVirtualizationCustomerRoute.md b/docset/winserver2016-ps/netwnv/Set-NetVirtualizationCustomerRoute.md index 4203dc1423..1b47e94709 100644 --- a/docset/winserver2016-ps/netwnv/Set-NetVirtualizationCustomerRoute.md +++ b/docset/winserver2016-ps/netwnv/Set-NetVirtualizationCustomerRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationCustomerRouteSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/set-netvirtualizationcustomerroute?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/set-netvirtualizationcustomerroute?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetVirtualizationCustomerRoute --- diff --git a/docset/winserver2016-ps/netwnv/Set-NetVirtualizationGlobal.md b/docset/winserver2016-ps/netwnv/Set-NetVirtualizationGlobal.md index 033fac1b17..0ceb07b7d7 100644 --- a/docset/winserver2016-ps/netwnv/Set-NetVirtualizationGlobal.md +++ b/docset/winserver2016-ps/netwnv/Set-NetVirtualizationGlobal.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationGlobalSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/set-netvirtualizationglobal?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/set-netvirtualizationglobal?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetVirtualizationGlobal --- diff --git a/docset/winserver2016-ps/netwnv/Set-NetVirtualizationLookupRecord.md b/docset/winserver2016-ps/netwnv/Set-NetVirtualizationLookupRecord.md index b9f9d60e8f..329038d18d 100644 --- a/docset/winserver2016-ps/netwnv/Set-NetVirtualizationLookupRecord.md +++ b/docset/winserver2016-ps/netwnv/Set-NetVirtualizationLookupRecord.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationLookupRecordSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/set-netvirtualizationlookuprecord?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/set-netvirtualizationlookuprecord?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetVirtualizationLookupRecord --- diff --git a/docset/winserver2016-ps/netwnv/Set-NetVirtualizationProviderAddress.md b/docset/winserver2016-ps/netwnv/Set-NetVirtualizationProviderAddress.md index 9df22266b4..a6ad69eda0 100644 --- a/docset/winserver2016-ps/netwnv/Set-NetVirtualizationProviderAddress.md +++ b/docset/winserver2016-ps/netwnv/Set-NetVirtualizationProviderAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationProviderAddressSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/set-netvirtualizationprovideraddress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/set-netvirtualizationprovideraddress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetVirtualizationProviderAddress --- diff --git a/docset/winserver2016-ps/netwnv/Set-NetVirtualizationProviderRoute.md b/docset/winserver2016-ps/netwnv/Set-NetVirtualizationProviderRoute.md index 4d34a4a350..81f511cd3c 100644 --- a/docset/winserver2016-ps/netwnv/Set-NetVirtualizationProviderRoute.md +++ b/docset/winserver2016-ps/netwnv/Set-NetVirtualizationProviderRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationProviderRouteSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/set-netvirtualizationproviderroute?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/set-netvirtualizationproviderroute?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetVirtualizationProviderRoute --- diff --git a/docset/winserver2016-ps/networkconnectivitystatus/Get-DAConnectionStatus.md b/docset/winserver2016-ps/networkconnectivitystatus/Get-DAConnectionStatus.md index 3e3342efd7..467dcb8bce 100644 --- a/docset/winserver2016-ps/networkconnectivitystatus/Get-DAConnectionStatus.md +++ b/docset/winserver2016-ps/networkconnectivitystatus/Get-DAConnectionStatus.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DAConnectionStatus.cdxml-help.xml Module Name: NetworkConnectivityStatus ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkconnectivitystatus/get-daconnectionstatus?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkconnectivitystatus/get-daconnectionstatus?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DAConnectionStatus --- diff --git a/docset/winserver2016-ps/networkconnectivitystatus/Get-NCSIPolicyConfiguration.md b/docset/winserver2016-ps/networkconnectivitystatus/Get-NCSIPolicyConfiguration.md index 8117b95041..9c3f790eac 100644 --- a/docset/winserver2016-ps/networkconnectivitystatus/Get-NCSIPolicyConfiguration.md +++ b/docset/winserver2016-ps/networkconnectivitystatus/Get-NCSIPolicyConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NCSIPolicyConfiguration.cdxml-help.xml Module Name: NetworkConnectivityStatus ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkconnectivitystatus/get-ncsipolicyconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkconnectivitystatus/get-ncsipolicyconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NCSIPolicyConfiguration --- diff --git a/docset/winserver2016-ps/networkconnectivitystatus/Reset-NCSIPolicyConfiguration.md b/docset/winserver2016-ps/networkconnectivitystatus/Reset-NCSIPolicyConfiguration.md index ffb7b977a7..fad1f164a6 100644 --- a/docset/winserver2016-ps/networkconnectivitystatus/Reset-NCSIPolicyConfiguration.md +++ b/docset/winserver2016-ps/networkconnectivitystatus/Reset-NCSIPolicyConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NCSIPolicyConfiguration.cdxml-help.xml Module Name: NetworkConnectivityStatus ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkconnectivitystatus/reset-ncsipolicyconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkconnectivitystatus/reset-ncsipolicyconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-NCSIPolicyConfiguration --- diff --git a/docset/winserver2016-ps/networkconnectivitystatus/Set-NCSIPolicyConfiguration.md b/docset/winserver2016-ps/networkconnectivitystatus/Set-NCSIPolicyConfiguration.md index b567428631..09d069c3b3 100644 --- a/docset/winserver2016-ps/networkconnectivitystatus/Set-NCSIPolicyConfiguration.md +++ b/docset/winserver2016-ps/networkconnectivitystatus/Set-NCSIPolicyConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NCSIPolicyConfiguration.cdxml-help.xml Module Name: NetworkConnectivityStatus ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkconnectivitystatus/set-ncsipolicyconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkconnectivitystatus/set-ncsipolicyconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NCSIPolicyConfiguration --- diff --git a/docset/winserver2016-ps/networkcontroller/Add-NetworkControllerNode.md b/docset/winserver2016-ps/networkcontroller/Add-NetworkControllerNode.md index c695e59ad5..40b73559c5 100644 --- a/docset/winserver2016-ps/networkcontroller/Add-NetworkControllerNode.md +++ b/docset/winserver2016-ps/networkcontroller/Add-NetworkControllerNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/add-networkcontrollernode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/add-networkcontrollernode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NetworkControllerNode --- diff --git a/docset/winserver2016-ps/networkcontroller/Clear-NetworkControllerNodeContent.md b/docset/winserver2016-ps/networkcontroller/Clear-NetworkControllerNodeContent.md index f8395d907d..6797137de1 100644 --- a/docset/winserver2016-ps/networkcontroller/Clear-NetworkControllerNodeContent.md +++ b/docset/winserver2016-ps/networkcontroller/Clear-NetworkControllerNodeContent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/clear-networkcontrollernodecontent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/clear-networkcontrollernodecontent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-NetworkControllerNodeContent --- diff --git a/docset/winserver2016-ps/networkcontroller/Disable-NetworkControllerNode.md b/docset/winserver2016-ps/networkcontroller/Disable-NetworkControllerNode.md index 4e7b69391f..186d728d40 100644 --- a/docset/winserver2016-ps/networkcontroller/Disable-NetworkControllerNode.md +++ b/docset/winserver2016-ps/networkcontroller/Disable-NetworkControllerNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/disable-networkcontrollernode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/disable-networkcontrollernode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetworkControllerNode --- diff --git a/docset/winserver2016-ps/networkcontroller/Enable-NetworkControllerNode.md b/docset/winserver2016-ps/networkcontroller/Enable-NetworkControllerNode.md index 91ed768a4f..ced8fca809 100644 --- a/docset/winserver2016-ps/networkcontroller/Enable-NetworkControllerNode.md +++ b/docset/winserver2016-ps/networkcontroller/Enable-NetworkControllerNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/enable-networkcontrollernode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/enable-networkcontrollernode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetworkControllerNode --- diff --git a/docset/winserver2016-ps/networkcontroller/Get-NetworkController.md b/docset/winserver2016-ps/networkcontroller/Get-NetworkController.md index a0abf2272e..36c170341b 100644 --- a/docset/winserver2016-ps/networkcontroller/Get-NetworkController.md +++ b/docset/winserver2016-ps/networkcontroller/Get-NetworkController.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontroller?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontroller?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkController --- diff --git a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerAccessControlList.md b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerAccessControlList.md index 3eeca2f1a1..e8bfc2a20c 100644 --- a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerAccessControlList.md +++ b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerAccessControlList.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrolleraccesscontrollist?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrolleraccesscontrollist?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerAccessControlList --- diff --git a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerAccessControlListRule.md b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerAccessControlListRule.md index 623fcd39bb..25fc8690be 100644 --- a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerAccessControlListRule.md +++ b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerAccessControlListRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrolleraccesscontrollistrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrolleraccesscontrollistrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerAccessControlListRule --- diff --git a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerCluster.md b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerCluster.md index f29dda89ef..30bc7309e0 100644 --- a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerCluster.md +++ b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerCluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollercluster?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollercluster?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerCluster --- diff --git a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerConnectivityCheck.md b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerConnectivityCheck.md index cbb67f6f3d..eddad51e8a 100644 --- a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerConnectivityCheck.md +++ b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerConnectivityCheck.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerconnectivitycheck?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerconnectivitycheck?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerConnectivityCheck --- diff --git a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerConnectivityCheckResult.md b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerConnectivityCheckResult.md index 6d1d4a1145..494dadf982 100644 --- a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerConnectivityCheckResult.md +++ b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerConnectivityCheckResult.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerconnectivitycheckresult?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerconnectivitycheckresult?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerConnectivityCheckResult --- diff --git a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerCredential.md b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerCredential.md index aea786e972..5eb556509e 100644 --- a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerCredential.md +++ b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerCredential.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollercredential?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollercredential?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerCredential --- diff --git a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerDiagnostic.md b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerDiagnostic.md index 2f8c63da29..97960b60cb 100644 --- a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerDiagnostic.md +++ b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerDiagnostic.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerdiagnostic?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerdiagnostic?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerDiagnostic --- diff --git a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerFabricRoute.md b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerFabricRoute.md index 580172dcc0..11050b8d71 100644 --- a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerFabricRoute.md +++ b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerFabricRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerfabricroute?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerfabricroute?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerFabricRoute --- diff --git a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerGateway.md b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerGateway.md index 4e13906092..7a78311b01 100644 --- a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerGateway.md +++ b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerGateway.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollergateway?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollergateway?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerGateway --- diff --git a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerGatewayPool.md b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerGatewayPool.md index b7fa8eb11a..0416c822f3 100644 --- a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerGatewayPool.md +++ b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerGatewayPool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollergatewaypool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollergatewaypool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerGatewayPool --- diff --git a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerInternalResourceInstances.md b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerInternalResourceInstances.md index 697528a328..2465aed0fb 100644 --- a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerInternalResourceInstances.md +++ b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerInternalResourceInstances.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerinternalresourceinstances?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerinternalresourceinstances?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerInternalResourceInstances --- diff --git a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerIpPool.md b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerIpPool.md index a105b247e6..e9744e3fe2 100644 --- a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerIpPool.md +++ b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerIpPool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerippool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerippool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerIpPool --- diff --git a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerLoadBalancer.md b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerLoadBalancer.md index 77002db1de..d529d5fb99 100644 --- a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerLoadBalancer.md +++ b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerLoadBalancer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerloadbalancer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerloadbalancer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerLoadBalancer --- diff --git a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerLoadBalancerBackendAddressPool.md b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerLoadBalancerBackendAddressPool.md index 5aa7c3c454..80a59ccdb0 100644 --- a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerLoadBalancerBackendAddressPool.md +++ b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerLoadBalancerBackendAddressPool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerloadbalancerbackendaddresspool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerloadbalancerbackendaddresspool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerLoadBalancerBackendAddressPool --- diff --git a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerLoadBalancerConfiguration.md b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerLoadBalancerConfiguration.md index 01f48a5b21..39189baadc 100644 --- a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerLoadBalancerConfiguration.md +++ b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerLoadBalancerConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerloadbalancerconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerloadbalancerconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerLoadBalancerConfiguration --- diff --git a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerLoadBalancerFrontendIpConfiguration.md b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerLoadBalancerFrontendIpConfiguration.md index 838b97f08f..32cd673e7d 100644 --- a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerLoadBalancerFrontendIpConfiguration.md +++ b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerLoadBalancerFrontendIpConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerloadbalancerfrontendipconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerloadbalancerfrontendipconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerLoadBalancerFrontendIpConfiguration --- diff --git a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerLoadBalancerInboundNatRule.md b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerLoadBalancerInboundNatRule.md index 394e61b311..e8129fd10c 100644 --- a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerLoadBalancerInboundNatRule.md +++ b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerLoadBalancerInboundNatRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerloadbalancerinboundnatrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerloadbalancerinboundnatrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerLoadBalancerInboundNatRule --- diff --git a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerLoadBalancerMux.md b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerLoadBalancerMux.md index 47ad77452b..0e46e10549 100644 --- a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerLoadBalancerMux.md +++ b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerLoadBalancerMux.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerloadbalancermux?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerloadbalancermux?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerLoadBalancerMux --- diff --git a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerLoadBalancerOutboundNatRule.md b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerLoadBalancerOutboundNatRule.md index 189f7c6fb5..3597c5f150 100644 --- a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerLoadBalancerOutboundNatRule.md +++ b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerLoadBalancerOutboundNatRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerloadbalanceroutboundnatrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerloadbalanceroutboundnatrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerLoadBalancerOutboundNatRule --- diff --git a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerLoadBalancerProbe.md b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerLoadBalancerProbe.md index 6efa6c749c..5857ad0b5a 100644 --- a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerLoadBalancerProbe.md +++ b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerLoadBalancerProbe.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerloadbalancerprobe?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerloadbalancerprobe?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerLoadBalancerProbe --- diff --git a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerLoadBalancingRule.md b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerLoadBalancingRule.md index 91bef02e53..e04f0fd2f1 100644 --- a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerLoadBalancingRule.md +++ b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerLoadBalancingRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerloadbalancingrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerloadbalancingrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerLoadBalancingRule --- diff --git a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerLogicalNetwork.md b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerLogicalNetwork.md index 91fdf73c44..2a9600d586 100644 --- a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerLogicalNetwork.md +++ b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerLogicalNetwork.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerlogicalnetwork?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerlogicalnetwork?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerLogicalNetwork --- diff --git a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerLogicalSubnet.md b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerLogicalSubnet.md index 920acea408..041bb82b13 100644 --- a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerLogicalSubnet.md +++ b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerLogicalSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerlogicalsubnet?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerlogicalsubnet?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerLogicalSubnet --- diff --git a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerMacPool.md b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerMacPool.md index e3d0b90020..207ec68c61 100644 --- a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerMacPool.md +++ b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerMacPool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollermacpool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollermacpool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerMacPool --- diff --git a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerNetworkInterface.md b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerNetworkInterface.md index 20235618c2..c54f94c1d1 100644 --- a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerNetworkInterface.md +++ b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerNetworkInterface.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollernetworkinterface?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollernetworkinterface?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerNetworkInterface --- diff --git a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerNetworkInterfaceIpConfiguration.md b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerNetworkInterfaceIpConfiguration.md index 408b654357..932dad7acc 100644 --- a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerNetworkInterfaceIpConfiguration.md +++ b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerNetworkInterfaceIpConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollernetworkinterfaceipconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollernetworkinterfaceipconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerNetworkInterfaceIpConfiguration --- diff --git a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerNode.md b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerNode.md index a29c6ea1b9..0095187b79 100644 --- a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerNode.md +++ b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollernode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollernode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerNode --- diff --git a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerPublicIpAddress.md b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerPublicIpAddress.md index 9dcb94ad3c..56746ea2b2 100644 --- a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerPublicIpAddress.md +++ b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerPublicIpAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerpublicipaddress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerpublicipaddress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerPublicIpAddress --- diff --git a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerRoute.md b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerRoute.md index 85e4ead7d3..011ae737d8 100644 --- a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerRoute.md +++ b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerroute?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerroute?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerRoute --- diff --git a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerRouteTable.md b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerRouteTable.md index 041cd69590..e60a723704 100644 --- a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerRouteTable.md +++ b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerRouteTable.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerroutetable?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerroutetable?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerRouteTable --- diff --git a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerServer.md b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerServer.md index cd904cd6cf..f50375c415 100644 --- a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerServer.md +++ b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerServer --- diff --git a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerServerInterface.md b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerServerInterface.md index a2ab72c08e..8dcd7eb6ad 100644 --- a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerServerInterface.md +++ b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerServerInterface.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerserverinterface?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerserverinterface?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerServerInterface --- diff --git a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerServiceInsertion.md b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerServiceInsertion.md index 289a795c2f..8410b3e4b7 100644 --- a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerServiceInsertion.md +++ b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerServiceInsertion.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerserviceinsertion?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerserviceinsertion?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerServiceInsertion --- diff --git a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerState.md b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerState.md index 92baf9761b..79b0f5d8e2 100644 --- a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerState.md +++ b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerstate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerstate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerState --- diff --git a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerStatistics.md b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerStatistics.md index 03eafa0d5f..4df9a0a841 100644 --- a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerStatistics.md +++ b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerStatistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerstatistics?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerstatistics?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerStatistics --- diff --git a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerVirtualGateway.md b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerVirtualGateway.md index ec4e0fed34..edabd15c44 100644 --- a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerVirtualGateway.md +++ b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerVirtualGateway.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualgateway?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualgateway?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerVirtualGateway --- diff --git a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerVirtualGatewayBgpPeer.md b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerVirtualGatewayBgpPeer.md index efe6dc1f6c..327008ecb2 100644 --- a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerVirtualGatewayBgpPeer.md +++ b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerVirtualGatewayBgpPeer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualgatewaybgppeer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualgatewaybgppeer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerVirtualGatewayBgpPeer --- diff --git a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerVirtualGatewayBgpRouter.md b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerVirtualGatewayBgpRouter.md index 2bcdd66d0f..e095ba9ab6 100644 --- a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerVirtualGatewayBgpRouter.md +++ b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerVirtualGatewayBgpRouter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualgatewaybgprouter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualgatewaybgprouter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerVirtualGatewayBgpRouter --- diff --git a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerVirtualGatewayNetworkConnection.md b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerVirtualGatewayNetworkConnection.md index 774c89c226..2c2159ba79 100644 --- a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerVirtualGatewayNetworkConnection.md +++ b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerVirtualGatewayNetworkConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualgatewaynetworkconnection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualgatewaynetworkconnection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerVirtualGatewayNetworkConnection --- diff --git a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerVirtualGatewayPolicyMap.md b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerVirtualGatewayPolicyMap.md index 493723853c..1d494869ad 100644 --- a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerVirtualGatewayPolicyMap.md +++ b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerVirtualGatewayPolicyMap.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualgatewaypolicymap?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualgatewaypolicymap?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerVirtualGatewayPolicyMap --- diff --git a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerVirtualNetwork.md b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerVirtualNetwork.md index d8351b7fab..411929b167 100644 --- a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerVirtualNetwork.md +++ b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerVirtualNetwork.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualnetwork?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualnetwork?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerVirtualNetwork --- diff --git a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerVirtualNetworkConfiguration.md b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerVirtualNetworkConfiguration.md index 024f651b31..d06ad58adc 100644 --- a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerVirtualNetworkConfiguration.md +++ b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerVirtualNetworkConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualnetworkconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualnetworkconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerVirtualNetworkConfiguration --- diff --git a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerVirtualServer.md b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerVirtualServer.md index fcbfb61b8f..24e9e9aa2e 100644 --- a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerVirtualServer.md +++ b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerVirtualServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerVirtualServer --- diff --git a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerVirtualSubnet.md b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerVirtualSubnet.md index dd83f6f067..f97aea88dc 100644 --- a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerVirtualSubnet.md +++ b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerVirtualSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualsubnet?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualsubnet?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerVirtualSubnet --- diff --git a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerVirtualSwitchConfiguration.md b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerVirtualSwitchConfiguration.md index 00d40d0f07..4e6801633d 100644 --- a/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerVirtualSwitchConfiguration.md +++ b/docset/winserver2016-ps/networkcontroller/Get-NetworkControllerVirtualSwitchConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualswitchconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualswitchconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerVirtualSwitchConfiguration --- diff --git a/docset/winserver2016-ps/networkcontroller/Install-NetworkController.md b/docset/winserver2016-ps/networkcontroller/Install-NetworkController.md index ae75b9e7b1..a4a79a07f6 100644 --- a/docset/winserver2016-ps/networkcontroller/Install-NetworkController.md +++ b/docset/winserver2016-ps/networkcontroller/Install-NetworkController.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/install-networkcontroller?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/install-networkcontroller?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-NetworkController --- diff --git a/docset/winserver2016-ps/networkcontroller/Install-NetworkControllerCluster.md b/docset/winserver2016-ps/networkcontroller/Install-NetworkControllerCluster.md index a5807c8184..b6e37fcd0c 100644 --- a/docset/winserver2016-ps/networkcontroller/Install-NetworkControllerCluster.md +++ b/docset/winserver2016-ps/networkcontroller/Install-NetworkControllerCluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/install-networkcontrollercluster?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/install-networkcontrollercluster?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-NetworkControllerCluster --- diff --git a/docset/winserver2016-ps/networkcontroller/Invoke-NetworkControllerConnectivityCheck.md b/docset/winserver2016-ps/networkcontroller/Invoke-NetworkControllerConnectivityCheck.md index bf7db7c6db..b418bccd91 100644 --- a/docset/winserver2016-ps/networkcontroller/Invoke-NetworkControllerConnectivityCheck.md +++ b/docset/winserver2016-ps/networkcontroller/Invoke-NetworkControllerConnectivityCheck.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/invoke-networkcontrollerconnectivitycheck?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/invoke-networkcontrollerconnectivitycheck?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-NetworkControllerConnectivityCheck --- diff --git a/docset/winserver2016-ps/networkcontroller/Invoke-NetworkControllerState.md b/docset/winserver2016-ps/networkcontroller/Invoke-NetworkControllerState.md index 105c5fcd56..29451fb644 100644 --- a/docset/winserver2016-ps/networkcontroller/Invoke-NetworkControllerState.md +++ b/docset/winserver2016-ps/networkcontroller/Invoke-NetworkControllerState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/invoke-networkcontrollerstate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/invoke-networkcontrollerstate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-NetworkControllerState --- diff --git a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerAccessControlList.md b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerAccessControlList.md index 8498736e3a..77d7795945 100644 --- a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerAccessControlList.md +++ b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerAccessControlList.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrolleraccesscontrollist?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrolleraccesscontrollist?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerAccessControlList --- diff --git a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerAccessControlListRule.md b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerAccessControlListRule.md index 1cf2339ae8..03b955b874 100644 --- a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerAccessControlListRule.md +++ b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerAccessControlListRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrolleraccesscontrollistrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrolleraccesscontrollistrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerAccessControlListRule --- diff --git a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerCredential.md b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerCredential.md index e6b1c1e533..2010763595 100644 --- a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerCredential.md +++ b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerCredential.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollercredential?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollercredential?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerCredential --- diff --git a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerFabricRoute.md b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerFabricRoute.md index c4f958100f..17faa8247f 100644 --- a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerFabricRoute.md +++ b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerFabricRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerfabricroute?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerfabricroute?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerFabricRoute --- diff --git a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerGateway.md b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerGateway.md index 9981f3edb6..544ac173c7 100644 --- a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerGateway.md +++ b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerGateway.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollergateway?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollergateway?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerGateway --- diff --git a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerGatewayPool.md b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerGatewayPool.md index 143342d88b..2167cd4ec2 100644 --- a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerGatewayPool.md +++ b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerGatewayPool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollergatewaypool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollergatewaypool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerGatewayPool --- diff --git a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerIpPool.md b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerIpPool.md index d89c767d1c..6586d917fe 100644 --- a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerIpPool.md +++ b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerIpPool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerippool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerippool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerIpPool --- diff --git a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerLoadBalancer.md b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerLoadBalancer.md index 164e96a2be..e01a8e5282 100644 --- a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerLoadBalancer.md +++ b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerLoadBalancer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerloadbalancer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerloadbalancer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerLoadBalancer --- diff --git a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerLoadBalancerBackendAddressPool.md b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerLoadBalancerBackendAddressPool.md index 07e192a6ea..081d148f5d 100644 --- a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerLoadBalancerBackendAddressPool.md +++ b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerLoadBalancerBackendAddressPool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerloadbalancerbackendaddresspool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerloadbalancerbackendaddresspool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerLoadBalancerBackendAddressPool --- diff --git a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerLoadBalancerConfiguration.md b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerLoadBalancerConfiguration.md index cdde6c3f6f..04bf956e6b 100644 --- a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerLoadBalancerConfiguration.md +++ b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerLoadBalancerConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerloadbalancerconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerloadbalancerconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerLoadBalancerConfiguration --- diff --git a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerLoadBalancerFrontendIpConfiguration.md b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerLoadBalancerFrontendIpConfiguration.md index 1cb026a37c..ed4abc48bd 100644 --- a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerLoadBalancerFrontendIpConfiguration.md +++ b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerLoadBalancerFrontendIpConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerloadbalancerfrontendipconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerloadbalancerfrontendipconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerLoadBalancerFrontendIpConfiguration --- diff --git a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerLoadBalancerInboundNatRule.md b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerLoadBalancerInboundNatRule.md index f2c48d383a..b15b885638 100644 --- a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerLoadBalancerInboundNatRule.md +++ b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerLoadBalancerInboundNatRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerloadbalancerinboundnatrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerloadbalancerinboundnatrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerLoadBalancerInboundNatRule --- diff --git a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerLoadBalancerMux.md b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerLoadBalancerMux.md index f4ef42febb..1a3712343d 100644 --- a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerLoadBalancerMux.md +++ b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerLoadBalancerMux.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerloadbalancermux?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerloadbalancermux?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerLoadBalancerMux --- diff --git a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerLoadBalancerOutboundNatRule.md b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerLoadBalancerOutboundNatRule.md index 64b6ba8bee..9093525c8e 100644 --- a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerLoadBalancerOutboundNatRule.md +++ b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerLoadBalancerOutboundNatRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerloadbalanceroutboundnatrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerloadbalanceroutboundnatrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerLoadBalancerOutboundNatRule --- diff --git a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerLoadBalancerProbe.md b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerLoadBalancerProbe.md index ed0c9d2663..b9dd3998d4 100644 --- a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerLoadBalancerProbe.md +++ b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerLoadBalancerProbe.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerloadbalancerprobe?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerloadbalancerprobe?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerLoadBalancerProbe --- diff --git a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerLoadBalancingRule.md b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerLoadBalancingRule.md index 82017d0f2b..da8aeb3b41 100644 --- a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerLoadBalancingRule.md +++ b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerLoadBalancingRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerloadbalancingrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerloadbalancingrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerLoadBalancingRule --- diff --git a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerLogicalNetwork.md b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerLogicalNetwork.md index 9f1179c943..399be37574 100644 --- a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerLogicalNetwork.md +++ b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerLogicalNetwork.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerlogicalnetwork?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerlogicalnetwork?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerLogicalNetwork --- diff --git a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerLogicalSubnet.md b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerLogicalSubnet.md index 2f2463c5dc..69f99cf92e 100644 --- a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerLogicalSubnet.md +++ b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerLogicalSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerlogicalsubnet?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerlogicalsubnet?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerLogicalSubnet --- diff --git a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerMacPool.md b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerMacPool.md index 662762fd4d..a1fc9b07fb 100644 --- a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerMacPool.md +++ b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerMacPool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollermacpool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollermacpool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerMacPool --- diff --git a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerNetworkInterface.md b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerNetworkInterface.md index 6e0f9b8740..5c0a1f6c83 100644 --- a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerNetworkInterface.md +++ b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerNetworkInterface.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollernetworkinterface?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollernetworkinterface?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerNetworkInterface --- diff --git a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerNetworkInterfaceIpConfiguration.md b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerNetworkInterfaceIpConfiguration.md index e07b111c95..13b14b548a 100644 --- a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerNetworkInterfaceIpConfiguration.md +++ b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerNetworkInterfaceIpConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollernetworkinterfaceipconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollernetworkinterfaceipconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerNetworkInterfaceIpConfiguration --- diff --git a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerNodeObject.md b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerNodeObject.md index e4dac1b779..73c92004fd 100644 --- a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerNodeObject.md +++ b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerNodeObject.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollernodeobject?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollernodeobject?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerNodeObject --- diff --git a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerPublicIpAddress.md b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerPublicIpAddress.md index dd4609cd07..fa6a04fda9 100644 --- a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerPublicIpAddress.md +++ b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerPublicIpAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerpublicipaddress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerpublicipaddress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerPublicIpAddress --- diff --git a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerRoute.md b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerRoute.md index 6b21a43741..bea0b692ab 100644 --- a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerRoute.md +++ b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerroute?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerroute?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerRoute --- diff --git a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerRouteTable.md b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerRouteTable.md index 29fe34095a..a0e8aa04bc 100644 --- a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerRouteTable.md +++ b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerRouteTable.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerroutetable?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerroutetable?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerRouteTable --- diff --git a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerServer.md b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerServer.md index da3be43fae..03a0035321 100644 --- a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerServer.md +++ b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerServer --- diff --git a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerServerInterface.md b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerServerInterface.md index bd1570b3be..02c5d38a63 100644 --- a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerServerInterface.md +++ b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerServerInterface.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerserverinterface?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerserverinterface?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerServerInterface --- diff --git a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerServiceInsertion.md b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerServiceInsertion.md index d349d20e5d..76c947510b 100644 --- a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerServiceInsertion.md +++ b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerServiceInsertion.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerserviceinsertion?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerserviceinsertion?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerServiceInsertion --- diff --git a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerVirtualGateway.md b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerVirtualGateway.md index 56ef41eb77..47780ec9e5 100644 --- a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerVirtualGateway.md +++ b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerVirtualGateway.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollervirtualgateway?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollervirtualgateway?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerVirtualGateway --- diff --git a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerVirtualGatewayBgpPeer.md b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerVirtualGatewayBgpPeer.md index 4c9f420f18..2c6be78258 100644 --- a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerVirtualGatewayBgpPeer.md +++ b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerVirtualGatewayBgpPeer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollervirtualgatewaybgppeer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollervirtualgatewaybgppeer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerVirtualGatewayBgpPeer --- diff --git a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerVirtualGatewayBgpRouter.md b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerVirtualGatewayBgpRouter.md index e8d3e0abe5..3169d292d1 100644 --- a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerVirtualGatewayBgpRouter.md +++ b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerVirtualGatewayBgpRouter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollervirtualgatewaybgprouter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollervirtualgatewaybgprouter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerVirtualGatewayBgpRouter --- diff --git a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerVirtualGatewayNetworkConnection.md b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerVirtualGatewayNetworkConnection.md index e598c54be6..ffed23f791 100644 --- a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerVirtualGatewayNetworkConnection.md +++ b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerVirtualGatewayNetworkConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollervirtualgatewaynetworkconnection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollervirtualgatewaynetworkconnection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerVirtualGatewayNetworkConnection --- diff --git a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerVirtualGatewayPolicyMap.md b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerVirtualGatewayPolicyMap.md index edffa5977b..73396b4c96 100644 --- a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerVirtualGatewayPolicyMap.md +++ b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerVirtualGatewayPolicyMap.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollervirtualgatewaypolicymap?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollervirtualgatewaypolicymap?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerVirtualGatewayPolicyMap --- diff --git a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerVirtualNetwork.md b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerVirtualNetwork.md index 43fa064e86..1ba0b9c8cf 100644 --- a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerVirtualNetwork.md +++ b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerVirtualNetwork.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollervirtualnetwork?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollervirtualnetwork?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerVirtualNetwork --- diff --git a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerVirtualServer.md b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerVirtualServer.md index d2a989686c..c6bf0f4442 100644 --- a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerVirtualServer.md +++ b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerVirtualServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollervirtualserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollervirtualserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerVirtualServer --- diff --git a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerVirtualSubnet.md b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerVirtualSubnet.md index d12945d24a..77d6cc7855 100644 --- a/docset/winserver2016-ps/networkcontroller/New-NetworkControllerVirtualSubnet.md +++ b/docset/winserver2016-ps/networkcontroller/New-NetworkControllerVirtualSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollervirtualsubnet?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollervirtualsubnet?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerVirtualSubnet --- diff --git a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerAccessControlList.md b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerAccessControlList.md index 0a4906b09c..463db4e148 100644 --- a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerAccessControlList.md +++ b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerAccessControlList.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrolleraccesscontrollist?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrolleraccesscontrollist?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerAccessControlList --- diff --git a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerAccessControlListRule.md b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerAccessControlListRule.md index 1b3aa2a6a5..96d5415cb7 100644 --- a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerAccessControlListRule.md +++ b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerAccessControlListRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrolleraccesscontrollistrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrolleraccesscontrollistrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerAccessControlListRule --- diff --git a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerCredential.md b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerCredential.md index 66fc9ced51..633ce3335d 100644 --- a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerCredential.md +++ b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerCredential.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollercredential?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollercredential?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerCredential --- diff --git a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerFabricRoute.md b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerFabricRoute.md index 061f4f8298..1493b9203d 100644 --- a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerFabricRoute.md +++ b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerFabricRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerfabricroute?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerfabricroute?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerFabricRoute --- diff --git a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerGateway.md b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerGateway.md index 94d5af43d0..58a59eb761 100644 --- a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerGateway.md +++ b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerGateway.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollergateway?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollergateway?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerGateway --- diff --git a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerGatewayPool.md b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerGatewayPool.md index 73b4c57911..cb15d2868a 100644 --- a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerGatewayPool.md +++ b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerGatewayPool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollergatewaypool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollergatewaypool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerGatewayPool --- diff --git a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerIpPool.md b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerIpPool.md index faf66732a6..947ff1d3e6 100644 --- a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerIpPool.md +++ b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerIpPool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerippool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerippool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerIpPool --- diff --git a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerLoadBalancer.md b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerLoadBalancer.md index c72c160da5..c991afe3cd 100644 --- a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerLoadBalancer.md +++ b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerLoadBalancer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerloadbalancer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerloadbalancer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerLoadBalancer --- diff --git a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerLoadBalancerBackendAddressPool.md b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerLoadBalancerBackendAddressPool.md index 99ae0f58dc..a633273a38 100644 --- a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerLoadBalancerBackendAddressPool.md +++ b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerLoadBalancerBackendAddressPool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerloadbalancerbackendaddresspool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerloadbalancerbackendaddresspool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerLoadBalancerBackendAddressPool --- diff --git a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerLoadBalancerConfiguration.md b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerLoadBalancerConfiguration.md index af79a20d24..49631f7983 100644 --- a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerLoadBalancerConfiguration.md +++ b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerLoadBalancerConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerloadbalancerconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerloadbalancerconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerLoadBalancerConfiguration --- diff --git a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerLoadBalancerFrontendIpConfiguration.md b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerLoadBalancerFrontendIpConfiguration.md index e0717ddb38..dd3e613c36 100644 --- a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerLoadBalancerFrontendIpConfiguration.md +++ b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerLoadBalancerFrontendIpConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerloadbalancerfrontendipconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerloadbalancerfrontendipconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerLoadBalancerFrontendIpConfiguration --- diff --git a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerLoadBalancerInboundNatRule.md b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerLoadBalancerInboundNatRule.md index acdfd07800..bf2bcba33f 100644 --- a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerLoadBalancerInboundNatRule.md +++ b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerLoadBalancerInboundNatRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerloadbalancerinboundnatrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerloadbalancerinboundnatrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerLoadBalancerInboundNatRule --- diff --git a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerLoadBalancerMux.md b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerLoadBalancerMux.md index 933f9d2868..b65e5c3868 100644 --- a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerLoadBalancerMux.md +++ b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerLoadBalancerMux.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerloadbalancermux?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerloadbalancermux?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerLoadBalancerMux --- diff --git a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerLoadBalancerOutboundNatRule.md b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerLoadBalancerOutboundNatRule.md index 255e8eb8d7..036d7bcff7 100644 --- a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerLoadBalancerOutboundNatRule.md +++ b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerLoadBalancerOutboundNatRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerloadbalanceroutboundnatrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerloadbalanceroutboundnatrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerLoadBalancerOutboundNatRule --- diff --git a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerLoadBalancerProbe.md b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerLoadBalancerProbe.md index 625af3df80..cfdcb60823 100644 --- a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerLoadBalancerProbe.md +++ b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerLoadBalancerProbe.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerloadbalancerprobe?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerloadbalancerprobe?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerLoadBalancerProbe --- diff --git a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerLoadBalancingRule.md b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerLoadBalancingRule.md index 0898de5c80..8d5396c575 100644 --- a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerLoadBalancingRule.md +++ b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerLoadBalancingRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerloadbalancingrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerloadbalancingrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerLoadBalancingRule --- diff --git a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerLogicalNetwork.md b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerLogicalNetwork.md index 25d1c9b678..ab2fff627c 100644 --- a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerLogicalNetwork.md +++ b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerLogicalNetwork.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerlogicalnetwork?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerlogicalnetwork?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerLogicalNetwork --- diff --git a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerLogicalSubnet.md b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerLogicalSubnet.md index 2437a18751..9e6be55c58 100644 --- a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerLogicalSubnet.md +++ b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerLogicalSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerlogicalsubnet?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerlogicalsubnet?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerLogicalSubnet --- diff --git a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerMacPool.md b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerMacPool.md index 185c3e6944..bb2f63a65b 100644 --- a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerMacPool.md +++ b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerMacPool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollermacpool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollermacpool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerMacPool --- diff --git a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerNetworkInterface.md b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerNetworkInterface.md index 0659eded4f..2dd82b77ae 100644 --- a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerNetworkInterface.md +++ b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerNetworkInterface.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollernetworkinterface?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollernetworkinterface?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerNetworkInterface --- diff --git a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerNetworkInterfaceIpConfiguration.md b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerNetworkInterfaceIpConfiguration.md index 5ca1873449..0d1b416e59 100644 --- a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerNetworkInterfaceIpConfiguration.md +++ b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerNetworkInterfaceIpConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollernetworkinterfaceipconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollernetworkinterfaceipconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerNetworkInterfaceIpConfiguration --- diff --git a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerNode.md b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerNode.md index b59934b0d2..99f5c83489 100644 --- a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerNode.md +++ b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollernode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollernode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerNode --- diff --git a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerPublicIpAddress.md b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerPublicIpAddress.md index 715f638151..29776ad88a 100644 --- a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerPublicIpAddress.md +++ b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerPublicIpAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerpublicipaddress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerpublicipaddress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerPublicIpAddress --- diff --git a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerRoute.md b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerRoute.md index 73d8e98ce9..160e2e82d8 100644 --- a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerRoute.md +++ b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerroute?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerroute?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerRoute --- diff --git a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerRouteTable.md b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerRouteTable.md index ca16b8fa37..c98ad6b8b0 100644 --- a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerRouteTable.md +++ b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerRouteTable.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerroutetable?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerroutetable?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerRouteTable --- diff --git a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerServer.md b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerServer.md index 757093af62..525806789e 100644 --- a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerServer.md +++ b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerServer --- diff --git a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerServerInterface.md b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerServerInterface.md index bcf80f9ea8..0175e683b3 100644 --- a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerServerInterface.md +++ b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerServerInterface.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerserverinterface?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerserverinterface?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerServerInterface --- diff --git a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerServiceInsertion.md b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerServiceInsertion.md index 74b8593d7d..5bd535349d 100644 --- a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerServiceInsertion.md +++ b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerServiceInsertion.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerserviceinsertion?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerserviceinsertion?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerServiceInsertion --- diff --git a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerVirtualGateway.md b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerVirtualGateway.md index 6fc01fe656..77e1c93742 100644 --- a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerVirtualGateway.md +++ b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerVirtualGateway.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollervirtualgateway?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollervirtualgateway?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerVirtualGateway --- diff --git a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerVirtualGatewayBgpPeer.md b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerVirtualGatewayBgpPeer.md index e3a01fa550..44550d6bf4 100644 --- a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerVirtualGatewayBgpPeer.md +++ b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerVirtualGatewayBgpPeer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollervirtualgatewaybgppeer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollervirtualgatewaybgppeer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerVirtualGatewayBgpPeer --- diff --git a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerVirtualGatewayBgpRouter.md b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerVirtualGatewayBgpRouter.md index becb73e7d0..31514dc2f0 100644 --- a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerVirtualGatewayBgpRouter.md +++ b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerVirtualGatewayBgpRouter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollervirtualgatewaybgprouter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollervirtualgatewaybgprouter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerVirtualGatewayBgpRouter --- diff --git a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerVirtualGatewayNetworkConnection.md b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerVirtualGatewayNetworkConnection.md index c486a66416..a77869f730 100644 --- a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerVirtualGatewayNetworkConnection.md +++ b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerVirtualGatewayNetworkConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollervirtualgatewaynetworkconnection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollervirtualgatewaynetworkconnection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerVirtualGatewayNetworkConnection --- diff --git a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerVirtualGatewayPolicyMap.md b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerVirtualGatewayPolicyMap.md index aaab9ade66..b0352a08b9 100644 --- a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerVirtualGatewayPolicyMap.md +++ b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerVirtualGatewayPolicyMap.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollervirtualgatewaypolicymap?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollervirtualgatewaypolicymap?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerVirtualGatewayPolicyMap --- diff --git a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerVirtualNetwork.md b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerVirtualNetwork.md index 493ff8dcb3..b136fb9ea0 100644 --- a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerVirtualNetwork.md +++ b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerVirtualNetwork.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollervirtualnetwork?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollervirtualnetwork?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerVirtualNetwork --- diff --git a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerVirtualServer.md b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerVirtualServer.md index 233255ea79..917b045a72 100644 --- a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerVirtualServer.md +++ b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerVirtualServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollervirtualserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollervirtualserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerVirtualServer --- diff --git a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerVirtualSubnet.md b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerVirtualSubnet.md index 278201d5c6..be8ce963e4 100644 --- a/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerVirtualSubnet.md +++ b/docset/winserver2016-ps/networkcontroller/Remove-NetworkControllerVirtualSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollervirtualsubnet?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollervirtualsubnet?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerVirtualSubnet --- diff --git a/docset/winserver2016-ps/networkcontroller/Repair-NetworkControllerCluster.md b/docset/winserver2016-ps/networkcontroller/Repair-NetworkControllerCluster.md index 308ace0a36..bb9f91e5ce 100644 --- a/docset/winserver2016-ps/networkcontroller/Repair-NetworkControllerCluster.md +++ b/docset/winserver2016-ps/networkcontroller/Repair-NetworkControllerCluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/repair-networkcontrollercluster?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/repair-networkcontrollercluster?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Repair-NetworkControllerCluster --- diff --git a/docset/winserver2016-ps/networkcontroller/Set-NetworkController.md b/docset/winserver2016-ps/networkcontroller/Set-NetworkController.md index 3d4f1435db..bfd54d1838 100644 --- a/docset/winserver2016-ps/networkcontroller/Set-NetworkController.md +++ b/docset/winserver2016-ps/networkcontroller/Set-NetworkController.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/set-networkcontroller?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/set-networkcontroller?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetworkController --- diff --git a/docset/winserver2016-ps/networkcontroller/Set-NetworkControllerCluster.md b/docset/winserver2016-ps/networkcontroller/Set-NetworkControllerCluster.md index 90e17b68be..9c0fc9553d 100644 --- a/docset/winserver2016-ps/networkcontroller/Set-NetworkControllerCluster.md +++ b/docset/winserver2016-ps/networkcontroller/Set-NetworkControllerCluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/set-networkcontrollercluster?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/set-networkcontrollercluster?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetworkControllerCluster --- diff --git a/docset/winserver2016-ps/networkcontroller/Set-NetworkControllerDiagnostic.md b/docset/winserver2016-ps/networkcontroller/Set-NetworkControllerDiagnostic.md index 3fac064c0d..2f69265ecd 100644 --- a/docset/winserver2016-ps/networkcontroller/Set-NetworkControllerDiagnostic.md +++ b/docset/winserver2016-ps/networkcontroller/Set-NetworkControllerDiagnostic.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/set-networkcontrollerdiagnostic?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/set-networkcontrollerdiagnostic?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetworkControllerDiagnostic --- diff --git a/docset/winserver2016-ps/networkcontroller/Set-NetworkControllerNode.md b/docset/winserver2016-ps/networkcontroller/Set-NetworkControllerNode.md index b0352f6f2b..455a439b45 100644 --- a/docset/winserver2016-ps/networkcontroller/Set-NetworkControllerNode.md +++ b/docset/winserver2016-ps/networkcontroller/Set-NetworkControllerNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/set-networkcontrollernode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/set-networkcontrollernode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetworkControllerNode --- diff --git a/docset/winserver2016-ps/networkcontroller/Set-NetworkControllerVirtualNetworkConfiguration.md b/docset/winserver2016-ps/networkcontroller/Set-NetworkControllerVirtualNetworkConfiguration.md index 4b23ad27de..db0daf7ba4 100644 --- a/docset/winserver2016-ps/networkcontroller/Set-NetworkControllerVirtualNetworkConfiguration.md +++ b/docset/winserver2016-ps/networkcontroller/Set-NetworkControllerVirtualNetworkConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/set-networkcontrollervirtualnetworkconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/set-networkcontrollervirtualnetworkconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetworkControllerVirtualNetworkConfiguration --- diff --git a/docset/winserver2016-ps/networkcontroller/Set-NetworkControllerVirtualSwitchConfiguration.md b/docset/winserver2016-ps/networkcontroller/Set-NetworkControllerVirtualSwitchConfiguration.md index aded892cc7..148d6e107d 100644 --- a/docset/winserver2016-ps/networkcontroller/Set-NetworkControllerVirtualSwitchConfiguration.md +++ b/docset/winserver2016-ps/networkcontroller/Set-NetworkControllerVirtualSwitchConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/set-networkcontrollervirtualswitchconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/set-networkcontrollervirtualswitchconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetworkControllerVirtualSwitchConfiguration --- diff --git a/docset/winserver2016-ps/networkcontroller/Uninstall-NetworkController.md b/docset/winserver2016-ps/networkcontroller/Uninstall-NetworkController.md index c14ff5f8ea..0370f23516 100644 --- a/docset/winserver2016-ps/networkcontroller/Uninstall-NetworkController.md +++ b/docset/winserver2016-ps/networkcontroller/Uninstall-NetworkController.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/uninstall-networkcontroller?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/uninstall-networkcontroller?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-NetworkController --- diff --git a/docset/winserver2016-ps/networkcontroller/Uninstall-NetworkControllerCluster.md b/docset/winserver2016-ps/networkcontroller/Uninstall-NetworkControllerCluster.md index 5c12979729..0905ff5cc3 100644 --- a/docset/winserver2016-ps/networkcontroller/Uninstall-NetworkControllerCluster.md +++ b/docset/winserver2016-ps/networkcontroller/Uninstall-NetworkControllerCluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/uninstall-networkcontrollercluster?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/uninstall-networkcontrollercluster?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-NetworkControllerCluster --- diff --git a/docset/winserver2016-ps/networkcontroller/Update-NetworkController.md b/docset/winserver2016-ps/networkcontroller/Update-NetworkController.md index bd35b2167f..ff1aabec9a 100644 --- a/docset/winserver2016-ps/networkcontroller/Update-NetworkController.md +++ b/docset/winserver2016-ps/networkcontroller/Update-NetworkController.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/update-networkcontroller?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/update-networkcontroller?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-NetworkController --- diff --git a/docset/winserver2016-ps/networkcontrollerdiagnostics/Debug-NetworkController.md b/docset/winserver2016-ps/networkcontrollerdiagnostics/Debug-NetworkController.md index 8b8cdd9d3e..8cfd58a9bd 100644 --- a/docset/winserver2016-ps/networkcontrollerdiagnostics/Debug-NetworkController.md +++ b/docset/winserver2016-ps/networkcontrollerdiagnostics/Debug-NetworkController.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Debug-NetworkController-help.xml Module Name: NetworkControllerDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontrollerdiagnostics/debug-networkcontroller?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontrollerdiagnostics/debug-networkcontroller?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Debug-NetworkController --- diff --git a/docset/winserver2016-ps/networkcontrollerdiagnostics/Debug-NetworkControllerConfigurationState.md b/docset/winserver2016-ps/networkcontrollerdiagnostics/Debug-NetworkControllerConfigurationState.md index cd68035099..af3233c39e 100644 --- a/docset/winserver2016-ps/networkcontrollerdiagnostics/Debug-NetworkControllerConfigurationState.md +++ b/docset/winserver2016-ps/networkcontrollerdiagnostics/Debug-NetworkControllerConfigurationState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Debug-NetworkControllerConfigurationState-help.xml Module Name: NetworkControllerDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontrollerdiagnostics/debug-networkcontrollerconfigurationstate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontrollerdiagnostics/debug-networkcontrollerconfigurationstate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Debug-NetworkControllerConfigurationState --- diff --git a/docset/winserver2016-ps/networkcontrollerdiagnostics/Debug-ServiceFabricNodeStatus.md b/docset/winserver2016-ps/networkcontrollerdiagnostics/Debug-ServiceFabricNodeStatus.md index 8a5e251279..6021b10679 100644 --- a/docset/winserver2016-ps/networkcontrollerdiagnostics/Debug-ServiceFabricNodeStatus.md +++ b/docset/winserver2016-ps/networkcontrollerdiagnostics/Debug-ServiceFabricNodeStatus.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Debug-ServiceFabricNodeStatus-help.xml Module Name: NetworkControllerDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontrollerdiagnostics/debug-servicefabricnodestatus?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontrollerdiagnostics/debug-servicefabricnodestatus?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Debug-ServiceFabricNodeStatus --- diff --git a/docset/winserver2016-ps/networkcontrollerdiagnostics/Get-NetworkControllerDeploymentInfo.md b/docset/winserver2016-ps/networkcontrollerdiagnostics/Get-NetworkControllerDeploymentInfo.md index 553eac8477..8c03240e27 100644 --- a/docset/winserver2016-ps/networkcontrollerdiagnostics/Get-NetworkControllerDeploymentInfo.md +++ b/docset/winserver2016-ps/networkcontrollerdiagnostics/Get-NetworkControllerDeploymentInfo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Debug-NetworkController-help.xml Module Name: NetworkControllerDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontrollerdiagnostics/get-networkcontrollerdeploymentinfo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontrollerdiagnostics/get-networkcontrollerdeploymentinfo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerDeploymentInfo --- diff --git a/docset/winserver2016-ps/networkcontrollerdiagnostics/Get-NetworkControllerReplica.md b/docset/winserver2016-ps/networkcontrollerdiagnostics/Get-NetworkControllerReplica.md index 8e26bb1cf9..e03cb9742f 100644 --- a/docset/winserver2016-ps/networkcontrollerdiagnostics/Get-NetworkControllerReplica.md +++ b/docset/winserver2016-ps/networkcontrollerdiagnostics/Get-NetworkControllerReplica.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Get-NetworkControllerReplica-help.xml Module Name: NetworkControllerDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontrollerdiagnostics/get-networkcontrollerreplica?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontrollerdiagnostics/get-networkcontrollerreplica?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerReplica --- diff --git a/docset/winserver2016-ps/networkloadbalancingclusters/Add-NlbClusterNode.md b/docset/winserver2016-ps/networkloadbalancingclusters/Add-NlbClusterNode.md index 7255bcc05e..906ca67fad 100644 --- a/docset/winserver2016-ps/networkloadbalancingclusters/Add-NlbClusterNode.md +++ b/docset/winserver2016-ps/networkloadbalancingclusters/Add-NlbClusterNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/add-nlbclusternode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/add-nlbclusternode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NlbClusterNode --- diff --git a/docset/winserver2016-ps/networkloadbalancingclusters/Add-NlbClusterNodeDip.md b/docset/winserver2016-ps/networkloadbalancingclusters/Add-NlbClusterNodeDip.md index 8879b1f99e..ebb0b09e34 100644 --- a/docset/winserver2016-ps/networkloadbalancingclusters/Add-NlbClusterNodeDip.md +++ b/docset/winserver2016-ps/networkloadbalancingclusters/Add-NlbClusterNodeDip.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/add-nlbclusternodedip?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/add-nlbclusternodedip?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NlbClusterNodeDip --- diff --git a/docset/winserver2016-ps/networkloadbalancingclusters/Add-NlbClusterPortRule.md b/docset/winserver2016-ps/networkloadbalancingclusters/Add-NlbClusterPortRule.md index 9cab8d353e..bb72175e25 100644 --- a/docset/winserver2016-ps/networkloadbalancingclusters/Add-NlbClusterPortRule.md +++ b/docset/winserver2016-ps/networkloadbalancingclusters/Add-NlbClusterPortRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/add-nlbclusterportrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/add-nlbclusterportrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NlbClusterPortRule --- diff --git a/docset/winserver2016-ps/networkloadbalancingclusters/Add-NlbClusterVip.md b/docset/winserver2016-ps/networkloadbalancingclusters/Add-NlbClusterVip.md index b067121702..8eb2726f9a 100644 --- a/docset/winserver2016-ps/networkloadbalancingclusters/Add-NlbClusterVip.md +++ b/docset/winserver2016-ps/networkloadbalancingclusters/Add-NlbClusterVip.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/add-nlbclustervip?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/add-nlbclustervip?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NlbClusterVip --- diff --git a/docset/winserver2016-ps/networkloadbalancingclusters/Disable-NlbClusterPortRule.md b/docset/winserver2016-ps/networkloadbalancingclusters/Disable-NlbClusterPortRule.md index cf689e9bcd..690ca7ea56 100644 --- a/docset/winserver2016-ps/networkloadbalancingclusters/Disable-NlbClusterPortRule.md +++ b/docset/winserver2016-ps/networkloadbalancingclusters/Disable-NlbClusterPortRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/disable-nlbclusterportrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/disable-nlbclusterportrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NlbClusterPortRule --- diff --git a/docset/winserver2016-ps/networkloadbalancingclusters/Enable-NlbClusterPortRule.md b/docset/winserver2016-ps/networkloadbalancingclusters/Enable-NlbClusterPortRule.md index 44d3f98c17..bd02339129 100644 --- a/docset/winserver2016-ps/networkloadbalancingclusters/Enable-NlbClusterPortRule.md +++ b/docset/winserver2016-ps/networkloadbalancingclusters/Enable-NlbClusterPortRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/enable-nlbclusterportrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/enable-nlbclusterportrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NlbClusterPortRule --- diff --git a/docset/winserver2016-ps/networkloadbalancingclusters/Get-NlbCluster.md b/docset/winserver2016-ps/networkloadbalancingclusters/Get-NlbCluster.md index 68af39b3fd..6e1956532c 100644 --- a/docset/winserver2016-ps/networkloadbalancingclusters/Get-NlbCluster.md +++ b/docset/winserver2016-ps/networkloadbalancingclusters/Get-NlbCluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbcluster?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbcluster?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NlbCluster --- diff --git a/docset/winserver2016-ps/networkloadbalancingclusters/Get-NlbClusterDriverInfo.md b/docset/winserver2016-ps/networkloadbalancingclusters/Get-NlbClusterDriverInfo.md index 86d5e5afd4..8b38ffb146 100644 --- a/docset/winserver2016-ps/networkloadbalancingclusters/Get-NlbClusterDriverInfo.md +++ b/docset/winserver2016-ps/networkloadbalancingclusters/Get-NlbClusterDriverInfo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclusterdriverinfo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclusterdriverinfo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NlbClusterDriverInfo --- diff --git a/docset/winserver2016-ps/networkloadbalancingclusters/Get-NlbClusterNode.md b/docset/winserver2016-ps/networkloadbalancingclusters/Get-NlbClusterNode.md index c5495539b4..840c5d50bc 100644 --- a/docset/winserver2016-ps/networkloadbalancingclusters/Get-NlbClusterNode.md +++ b/docset/winserver2016-ps/networkloadbalancingclusters/Get-NlbClusterNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclusternode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclusternode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NlbClusterNode --- diff --git a/docset/winserver2016-ps/networkloadbalancingclusters/Get-NlbClusterNodeDip.md b/docset/winserver2016-ps/networkloadbalancingclusters/Get-NlbClusterNodeDip.md index a070083e19..e242a515f4 100644 --- a/docset/winserver2016-ps/networkloadbalancingclusters/Get-NlbClusterNodeDip.md +++ b/docset/winserver2016-ps/networkloadbalancingclusters/Get-NlbClusterNodeDip.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclusternodedip?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclusternodedip?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NlbClusterNodeDip --- diff --git a/docset/winserver2016-ps/networkloadbalancingclusters/Get-NlbClusterNodeNetworkInterface.md b/docset/winserver2016-ps/networkloadbalancingclusters/Get-NlbClusterNodeNetworkInterface.md index 1105a5b641..8e8f595f49 100644 --- a/docset/winserver2016-ps/networkloadbalancingclusters/Get-NlbClusterNodeNetworkInterface.md +++ b/docset/winserver2016-ps/networkloadbalancingclusters/Get-NlbClusterNodeNetworkInterface.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclusternodenetworkinterface?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclusternodenetworkinterface?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NlbClusterNodeNetworkInterface --- diff --git a/docset/winserver2016-ps/networkloadbalancingclusters/Get-NlbClusterPortRule.md b/docset/winserver2016-ps/networkloadbalancingclusters/Get-NlbClusterPortRule.md index ef28e405a1..90742da1ad 100644 --- a/docset/winserver2016-ps/networkloadbalancingclusters/Get-NlbClusterPortRule.md +++ b/docset/winserver2016-ps/networkloadbalancingclusters/Get-NlbClusterPortRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclusterportrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclusterportrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NlbClusterPortRule --- diff --git a/docset/winserver2016-ps/networkloadbalancingclusters/Get-NlbClusterVip.md b/docset/winserver2016-ps/networkloadbalancingclusters/Get-NlbClusterVip.md index ffb45fc477..8e1574dcef 100644 --- a/docset/winserver2016-ps/networkloadbalancingclusters/Get-NlbClusterVip.md +++ b/docset/winserver2016-ps/networkloadbalancingclusters/Get-NlbClusterVip.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclustervip?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclustervip?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NlbClusterVip --- diff --git a/docset/winserver2016-ps/networkloadbalancingclusters/New-NlbCluster.md b/docset/winserver2016-ps/networkloadbalancingclusters/New-NlbCluster.md index 12e847c678..35c6d34afc 100644 --- a/docset/winserver2016-ps/networkloadbalancingclusters/New-NlbCluster.md +++ b/docset/winserver2016-ps/networkloadbalancingclusters/New-NlbCluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/new-nlbcluster?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/new-nlbcluster?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NlbCluster --- diff --git a/docset/winserver2016-ps/networkloadbalancingclusters/New-NlbClusterIpv6Address.md b/docset/winserver2016-ps/networkloadbalancingclusters/New-NlbClusterIpv6Address.md index 1496be7c2b..083ea5644d 100644 --- a/docset/winserver2016-ps/networkloadbalancingclusters/New-NlbClusterIpv6Address.md +++ b/docset/winserver2016-ps/networkloadbalancingclusters/New-NlbClusterIpv6Address.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/new-nlbclusteripv6address?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/new-nlbclusteripv6address?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NlbClusterIpv6Address --- diff --git a/docset/winserver2016-ps/networkloadbalancingclusters/Remove-NlbCluster.md b/docset/winserver2016-ps/networkloadbalancingclusters/Remove-NlbCluster.md index daafed6bbb..b89b732d3b 100644 --- a/docset/winserver2016-ps/networkloadbalancingclusters/Remove-NlbCluster.md +++ b/docset/winserver2016-ps/networkloadbalancingclusters/Remove-NlbCluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/remove-nlbcluster?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/remove-nlbcluster?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NlbCluster --- diff --git a/docset/winserver2016-ps/networkloadbalancingclusters/Remove-NlbClusterNode.md b/docset/winserver2016-ps/networkloadbalancingclusters/Remove-NlbClusterNode.md index c139aa8874..872b8a89a3 100644 --- a/docset/winserver2016-ps/networkloadbalancingclusters/Remove-NlbClusterNode.md +++ b/docset/winserver2016-ps/networkloadbalancingclusters/Remove-NlbClusterNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/remove-nlbclusternode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/remove-nlbclusternode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NlbClusterNode --- diff --git a/docset/winserver2016-ps/networkloadbalancingclusters/Remove-NlbClusterNodeDip.md b/docset/winserver2016-ps/networkloadbalancingclusters/Remove-NlbClusterNodeDip.md index 2a9fa256ce..cd12c422c2 100644 --- a/docset/winserver2016-ps/networkloadbalancingclusters/Remove-NlbClusterNodeDip.md +++ b/docset/winserver2016-ps/networkloadbalancingclusters/Remove-NlbClusterNodeDip.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/remove-nlbclusternodedip?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/remove-nlbclusternodedip?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NlbClusterNodeDip --- diff --git a/docset/winserver2016-ps/networkloadbalancingclusters/Remove-NlbClusterPortRule.md b/docset/winserver2016-ps/networkloadbalancingclusters/Remove-NlbClusterPortRule.md index 632d77e67e..21896ca499 100644 --- a/docset/winserver2016-ps/networkloadbalancingclusters/Remove-NlbClusterPortRule.md +++ b/docset/winserver2016-ps/networkloadbalancingclusters/Remove-NlbClusterPortRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/remove-nlbclusterportrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/remove-nlbclusterportrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NlbClusterPortRule --- diff --git a/docset/winserver2016-ps/networkloadbalancingclusters/Remove-NlbClusterVip.md b/docset/winserver2016-ps/networkloadbalancingclusters/Remove-NlbClusterVip.md index 5fd216c883..dc3133aed4 100644 --- a/docset/winserver2016-ps/networkloadbalancingclusters/Remove-NlbClusterVip.md +++ b/docset/winserver2016-ps/networkloadbalancingclusters/Remove-NlbClusterVip.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/remove-nlbclustervip?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/remove-nlbclustervip?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NlbClusterVip --- diff --git a/docset/winserver2016-ps/networkloadbalancingclusters/Resume-NlbCluster.md b/docset/winserver2016-ps/networkloadbalancingclusters/Resume-NlbCluster.md index f3d4f71ab3..cf49aebbac 100644 --- a/docset/winserver2016-ps/networkloadbalancingclusters/Resume-NlbCluster.md +++ b/docset/winserver2016-ps/networkloadbalancingclusters/Resume-NlbCluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/resume-nlbcluster?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/resume-nlbcluster?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-NlbCluster --- diff --git a/docset/winserver2016-ps/networkloadbalancingclusters/Resume-NlbClusterNode.md b/docset/winserver2016-ps/networkloadbalancingclusters/Resume-NlbClusterNode.md index 8a058ea5b8..c8b63641f4 100644 --- a/docset/winserver2016-ps/networkloadbalancingclusters/Resume-NlbClusterNode.md +++ b/docset/winserver2016-ps/networkloadbalancingclusters/Resume-NlbClusterNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/resume-nlbclusternode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/resume-nlbclusternode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-NlbClusterNode --- diff --git a/docset/winserver2016-ps/networkloadbalancingclusters/Set-NlbCluster.md b/docset/winserver2016-ps/networkloadbalancingclusters/Set-NlbCluster.md index d3a0ccad24..6dd123ccf0 100644 --- a/docset/winserver2016-ps/networkloadbalancingclusters/Set-NlbCluster.md +++ b/docset/winserver2016-ps/networkloadbalancingclusters/Set-NlbCluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbcluster?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbcluster?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NlbCluster --- diff --git a/docset/winserver2016-ps/networkloadbalancingclusters/Set-NlbClusterNode.md b/docset/winserver2016-ps/networkloadbalancingclusters/Set-NlbClusterNode.md index 6f81a69c4e..ec96a4ff29 100644 --- a/docset/winserver2016-ps/networkloadbalancingclusters/Set-NlbClusterNode.md +++ b/docset/winserver2016-ps/networkloadbalancingclusters/Set-NlbClusterNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclusternode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclusternode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NlbClusterNode --- diff --git a/docset/winserver2016-ps/networkloadbalancingclusters/Set-NlbClusterNodeDip.md b/docset/winserver2016-ps/networkloadbalancingclusters/Set-NlbClusterNodeDip.md index c5c26343fa..5c3e9f928a 100644 --- a/docset/winserver2016-ps/networkloadbalancingclusters/Set-NlbClusterNodeDip.md +++ b/docset/winserver2016-ps/networkloadbalancingclusters/Set-NlbClusterNodeDip.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclusternodedip?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclusternodedip?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NlbClusterNodeDip --- diff --git a/docset/winserver2016-ps/networkloadbalancingclusters/Set-NlbClusterPortRule.md b/docset/winserver2016-ps/networkloadbalancingclusters/Set-NlbClusterPortRule.md index 7f7d8c30a4..f0d75aa33c 100644 --- a/docset/winserver2016-ps/networkloadbalancingclusters/Set-NlbClusterPortRule.md +++ b/docset/winserver2016-ps/networkloadbalancingclusters/Set-NlbClusterPortRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclusterportrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclusterportrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NlbClusterPortRule --- diff --git a/docset/winserver2016-ps/networkloadbalancingclusters/Set-NlbClusterPortRuleNodeHandlingPriority.md b/docset/winserver2016-ps/networkloadbalancingclusters/Set-NlbClusterPortRuleNodeHandlingPriority.md index ff447a7065..541cccc544 100644 --- a/docset/winserver2016-ps/networkloadbalancingclusters/Set-NlbClusterPortRuleNodeHandlingPriority.md +++ b/docset/winserver2016-ps/networkloadbalancingclusters/Set-NlbClusterPortRuleNodeHandlingPriority.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclusterportrulenodehandlingpriority?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclusterportrulenodehandlingpriority?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NlbClusterPortRuleNodeHandlingPriority --- diff --git a/docset/winserver2016-ps/networkloadbalancingclusters/Set-NlbClusterPortRuleNodeWeight.md b/docset/winserver2016-ps/networkloadbalancingclusters/Set-NlbClusterPortRuleNodeWeight.md index 60dc407b9d..efe0f7197e 100644 --- a/docset/winserver2016-ps/networkloadbalancingclusters/Set-NlbClusterPortRuleNodeWeight.md +++ b/docset/winserver2016-ps/networkloadbalancingclusters/Set-NlbClusterPortRuleNodeWeight.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclusterportrulenodeweight?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclusterportrulenodeweight?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NlbClusterPortRuleNodeWeight --- diff --git a/docset/winserver2016-ps/networkloadbalancingclusters/Set-NlbClusterVip.md b/docset/winserver2016-ps/networkloadbalancingclusters/Set-NlbClusterVip.md index a965052a32..e510f8f758 100644 --- a/docset/winserver2016-ps/networkloadbalancingclusters/Set-NlbClusterVip.md +++ b/docset/winserver2016-ps/networkloadbalancingclusters/Set-NlbClusterVip.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclustervip?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclustervip?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NlbClusterVip --- diff --git a/docset/winserver2016-ps/networkloadbalancingclusters/Start-NlbCluster.md b/docset/winserver2016-ps/networkloadbalancingclusters/Start-NlbCluster.md index ad8c29f9c1..192005bdbe 100644 --- a/docset/winserver2016-ps/networkloadbalancingclusters/Start-NlbCluster.md +++ b/docset/winserver2016-ps/networkloadbalancingclusters/Start-NlbCluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/start-nlbcluster?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/start-nlbcluster?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-NlbCluster --- diff --git a/docset/winserver2016-ps/networkloadbalancingclusters/Start-NlbClusterNode.md b/docset/winserver2016-ps/networkloadbalancingclusters/Start-NlbClusterNode.md index f86fee3c88..5ca72e3064 100644 --- a/docset/winserver2016-ps/networkloadbalancingclusters/Start-NlbClusterNode.md +++ b/docset/winserver2016-ps/networkloadbalancingclusters/Start-NlbClusterNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/start-nlbclusternode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/start-nlbclusternode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-NlbClusterNode --- diff --git a/docset/winserver2016-ps/networkloadbalancingclusters/Stop-NlbCluster.md b/docset/winserver2016-ps/networkloadbalancingclusters/Stop-NlbCluster.md index 28ca21d0f4..f16154560c 100644 --- a/docset/winserver2016-ps/networkloadbalancingclusters/Stop-NlbCluster.md +++ b/docset/winserver2016-ps/networkloadbalancingclusters/Stop-NlbCluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/stop-nlbcluster?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/stop-nlbcluster?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-NlbCluster --- diff --git a/docset/winserver2016-ps/networkloadbalancingclusters/Stop-NlbClusterNode.md b/docset/winserver2016-ps/networkloadbalancingclusters/Stop-NlbClusterNode.md index 159add426b..0bb37d2ee1 100644 --- a/docset/winserver2016-ps/networkloadbalancingclusters/Stop-NlbClusterNode.md +++ b/docset/winserver2016-ps/networkloadbalancingclusters/Stop-NlbClusterNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/stop-nlbclusternode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/stop-nlbclusternode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-NlbClusterNode --- diff --git a/docset/winserver2016-ps/networkloadbalancingclusters/Suspend-NlbCluster.md b/docset/winserver2016-ps/networkloadbalancingclusters/Suspend-NlbCluster.md index 2af0548981..ba1863c023 100644 --- a/docset/winserver2016-ps/networkloadbalancingclusters/Suspend-NlbCluster.md +++ b/docset/winserver2016-ps/networkloadbalancingclusters/Suspend-NlbCluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/suspend-nlbcluster?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/suspend-nlbcluster?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-NlbCluster --- diff --git a/docset/winserver2016-ps/networkloadbalancingclusters/Suspend-NlbClusterNode.md b/docset/winserver2016-ps/networkloadbalancingclusters/Suspend-NlbClusterNode.md index c240074390..94c96442cc 100644 --- a/docset/winserver2016-ps/networkloadbalancingclusters/Suspend-NlbClusterNode.md +++ b/docset/winserver2016-ps/networkloadbalancingclusters/Suspend-NlbClusterNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/suspend-nlbclusternode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/suspend-nlbclusternode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-NlbClusterNode --- diff --git a/docset/winserver2016-ps/networkswitchmanager/Disable-NetworkSwitchEthernetPort.md b/docset/winserver2016-ps/networkswitchmanager/Disable-NetworkSwitchEthernetPort.md index 9a63da380b..ff450564d4 100644 --- a/docset/winserver2016-ps/networkswitchmanager/Disable-NetworkSwitchEthernetPort.md +++ b/docset/winserver2016-ps/networkswitchmanager/Disable-NetworkSwitchEthernetPort.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchEthernetPort-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/disable-networkswitchethernetport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/disable-networkswitchethernetport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetworkSwitchEthernetPort --- diff --git a/docset/winserver2016-ps/networkswitchmanager/Disable-NetworkSwitchFeature.md b/docset/winserver2016-ps/networkswitchmanager/Disable-NetworkSwitchFeature.md index 8aa29d24f7..69c7c74041 100644 --- a/docset/winserver2016-ps/networkswitchmanager/Disable-NetworkSwitchFeature.md +++ b/docset/winserver2016-ps/networkswitchmanager/Disable-NetworkSwitchFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchFeature-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/disable-networkswitchfeature?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/disable-networkswitchfeature?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetworkSwitchFeature --- diff --git a/docset/winserver2016-ps/networkswitchmanager/Disable-NetworkSwitchVlan.md b/docset/winserver2016-ps/networkswitchmanager/Disable-NetworkSwitchVlan.md index cac65c761e..efc852c13a 100644 --- a/docset/winserver2016-ps/networkswitchmanager/Disable-NetworkSwitchVlan.md +++ b/docset/winserver2016-ps/networkswitchmanager/Disable-NetworkSwitchVlan.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchVlan-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/disable-networkswitchvlan?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/disable-networkswitchvlan?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetworkSwitchVlan --- diff --git a/docset/winserver2016-ps/networkswitchmanager/Enable-NetworkSwitchEthernetPort.md b/docset/winserver2016-ps/networkswitchmanager/Enable-NetworkSwitchEthernetPort.md index 1eff730789..2e178e8069 100644 --- a/docset/winserver2016-ps/networkswitchmanager/Enable-NetworkSwitchEthernetPort.md +++ b/docset/winserver2016-ps/networkswitchmanager/Enable-NetworkSwitchEthernetPort.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchEthernetPort-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/enable-networkswitchethernetport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/enable-networkswitchethernetport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetworkSwitchEthernetPort --- diff --git a/docset/winserver2016-ps/networkswitchmanager/Enable-NetworkSwitchFeature.md b/docset/winserver2016-ps/networkswitchmanager/Enable-NetworkSwitchFeature.md index c1a25cbb46..6c36182176 100644 --- a/docset/winserver2016-ps/networkswitchmanager/Enable-NetworkSwitchFeature.md +++ b/docset/winserver2016-ps/networkswitchmanager/Enable-NetworkSwitchFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchFeature-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/enable-networkswitchfeature?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/enable-networkswitchfeature?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetworkSwitchFeature --- diff --git a/docset/winserver2016-ps/networkswitchmanager/Enable-NetworkSwitchVlan.md b/docset/winserver2016-ps/networkswitchmanager/Enable-NetworkSwitchVlan.md index b9eeb34a41..3ad6459034 100644 --- a/docset/winserver2016-ps/networkswitchmanager/Enable-NetworkSwitchVlan.md +++ b/docset/winserver2016-ps/networkswitchmanager/Enable-NetworkSwitchVlan.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchVlan-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/enable-networkswitchvlan?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/enable-networkswitchvlan?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetworkSwitchVlan --- diff --git a/docset/winserver2016-ps/networkswitchmanager/Get-NetworkSwitchEthernetPort.md b/docset/winserver2016-ps/networkswitchmanager/Get-NetworkSwitchEthernetPort.md index 6a54bd987b..dc04b1aac1 100644 --- a/docset/winserver2016-ps/networkswitchmanager/Get-NetworkSwitchEthernetPort.md +++ b/docset/winserver2016-ps/networkswitchmanager/Get-NetworkSwitchEthernetPort.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchEthernetPort-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/get-networkswitchethernetport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/get-networkswitchethernetport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkSwitchEthernetPort --- diff --git a/docset/winserver2016-ps/networkswitchmanager/Get-NetworkSwitchFeature.md b/docset/winserver2016-ps/networkswitchmanager/Get-NetworkSwitchFeature.md index 3c09b61168..dcd3bc8b53 100644 --- a/docset/winserver2016-ps/networkswitchmanager/Get-NetworkSwitchFeature.md +++ b/docset/winserver2016-ps/networkswitchmanager/Get-NetworkSwitchFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchFeature-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/get-networkswitchfeature?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/get-networkswitchfeature?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkSwitchFeature --- diff --git a/docset/winserver2016-ps/networkswitchmanager/Get-NetworkSwitchGlobalData.md b/docset/winserver2016-ps/networkswitchmanager/Get-NetworkSwitchGlobalData.md index 6cca4c9778..ad2c22f557 100644 --- a/docset/winserver2016-ps/networkswitchmanager/Get-NetworkSwitchGlobalData.md +++ b/docset/winserver2016-ps/networkswitchmanager/Get-NetworkSwitchGlobalData.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchGlobalSettingData-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/get-networkswitchglobaldata?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/get-networkswitchglobaldata?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkSwitchGlobalData --- diff --git a/docset/winserver2016-ps/networkswitchmanager/Get-NetworkSwitchVlan.md b/docset/winserver2016-ps/networkswitchmanager/Get-NetworkSwitchVlan.md index 9bc4cd78de..1711124bbc 100644 --- a/docset/winserver2016-ps/networkswitchmanager/Get-NetworkSwitchVlan.md +++ b/docset/winserver2016-ps/networkswitchmanager/Get-NetworkSwitchVlan.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchVlan-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/get-networkswitchvlan?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/get-networkswitchvlan?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkSwitchVlan --- diff --git a/docset/winserver2016-ps/networkswitchmanager/New-NetworkSwitchVlan.md b/docset/winserver2016-ps/networkswitchmanager/New-NetworkSwitchVlan.md index f9974df1ae..281d88cdd6 100644 --- a/docset/winserver2016-ps/networkswitchmanager/New-NetworkSwitchVlan.md +++ b/docset/winserver2016-ps/networkswitchmanager/New-NetworkSwitchVlan.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchVlan-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/new-networkswitchvlan?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/new-networkswitchvlan?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkSwitchVlan --- diff --git a/docset/winserver2016-ps/networkswitchmanager/Remove-NetworkSwitchEthernetPortIPAddress.md b/docset/winserver2016-ps/networkswitchmanager/Remove-NetworkSwitchEthernetPortIPAddress.md index c45a30a0fe..151e655e26 100644 --- a/docset/winserver2016-ps/networkswitchmanager/Remove-NetworkSwitchEthernetPortIPAddress.md +++ b/docset/winserver2016-ps/networkswitchmanager/Remove-NetworkSwitchEthernetPortIPAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchEthernetPort-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/remove-networkswitchethernetportipaddress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/remove-networkswitchethernetportipaddress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkSwitchEthernetPortIPAddress --- diff --git a/docset/winserver2016-ps/networkswitchmanager/Remove-NetworkSwitchVlan.md b/docset/winserver2016-ps/networkswitchmanager/Remove-NetworkSwitchVlan.md index 864e557401..7b7dcedc85 100644 --- a/docset/winserver2016-ps/networkswitchmanager/Remove-NetworkSwitchVlan.md +++ b/docset/winserver2016-ps/networkswitchmanager/Remove-NetworkSwitchVlan.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchVlan-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/remove-networkswitchvlan?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/remove-networkswitchvlan?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkSwitchVlan --- diff --git a/docset/winserver2016-ps/networkswitchmanager/Restore-NetworkSwitchConfiguration.md b/docset/winserver2016-ps/networkswitchmanager/Restore-NetworkSwitchConfiguration.md index cc53150341..eab1eadddb 100644 --- a/docset/winserver2016-ps/networkswitchmanager/Restore-NetworkSwitchConfiguration.md +++ b/docset/winserver2016-ps/networkswitchmanager/Restore-NetworkSwitchConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchConfiguration-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/restore-networkswitchconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/restore-networkswitchconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-NetworkSwitchConfiguration --- diff --git a/docset/winserver2016-ps/networkswitchmanager/Save-NetworkSwitchConfiguration.md b/docset/winserver2016-ps/networkswitchmanager/Save-NetworkSwitchConfiguration.md index 8bb3f811e9..a91a9b34f7 100644 --- a/docset/winserver2016-ps/networkswitchmanager/Save-NetworkSwitchConfiguration.md +++ b/docset/winserver2016-ps/networkswitchmanager/Save-NetworkSwitchConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchConfiguration-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/save-networkswitchconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/save-networkswitchconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Save-NetworkSwitchConfiguration --- diff --git a/docset/winserver2016-ps/networkswitchmanager/Set-NetworkSwitchEthernetPortIPAddress.md b/docset/winserver2016-ps/networkswitchmanager/Set-NetworkSwitchEthernetPortIPAddress.md index fcacff2e9a..d4b428e604 100644 --- a/docset/winserver2016-ps/networkswitchmanager/Set-NetworkSwitchEthernetPortIPAddress.md +++ b/docset/winserver2016-ps/networkswitchmanager/Set-NetworkSwitchEthernetPortIPAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchEthernetPort-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/set-networkswitchethernetportipaddress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/set-networkswitchethernetportipaddress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetworkSwitchEthernetPortIPAddress --- diff --git a/docset/winserver2016-ps/networkswitchmanager/Set-NetworkSwitchPortMode.md b/docset/winserver2016-ps/networkswitchmanager/Set-NetworkSwitchPortMode.md index 6384bc8968..8487f7fd9f 100644 --- a/docset/winserver2016-ps/networkswitchmanager/Set-NetworkSwitchPortMode.md +++ b/docset/winserver2016-ps/networkswitchmanager/Set-NetworkSwitchPortMode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchEthernetPort-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/set-networkswitchportmode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/set-networkswitchportmode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetworkSwitchPortMode --- diff --git a/docset/winserver2016-ps/networkswitchmanager/Set-NetworkSwitchPortProperty.md b/docset/winserver2016-ps/networkswitchmanager/Set-NetworkSwitchPortProperty.md index cd8051fac4..4dc12d95f7 100644 --- a/docset/winserver2016-ps/networkswitchmanager/Set-NetworkSwitchPortProperty.md +++ b/docset/winserver2016-ps/networkswitchmanager/Set-NetworkSwitchPortProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchEthernetPort-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/set-networkswitchportproperty?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/set-networkswitchportproperty?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetworkSwitchPortProperty --- diff --git a/docset/winserver2016-ps/networkswitchmanager/Set-NetworkSwitchVlanProperty.md b/docset/winserver2016-ps/networkswitchmanager/Set-NetworkSwitchVlanProperty.md index aa63fa9551..278547717a 100644 --- a/docset/winserver2016-ps/networkswitchmanager/Set-NetworkSwitchVlanProperty.md +++ b/docset/winserver2016-ps/networkswitchmanager/Set-NetworkSwitchVlanProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchVlan-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/set-networkswitchvlanproperty?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/set-networkswitchvlanproperty?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetworkSwitchVlanProperty --- diff --git a/docset/winserver2016-ps/networktransition/Add-NetIPHttpsCertBinding.md b/docset/winserver2016-ps/networktransition/Add-NetIPHttpsCertBinding.md index 463c99cfc0..0ba42ed244 100644 --- a/docset/winserver2016-ps/networktransition/Add-NetIPHttpsCertBinding.md +++ b/docset/winserver2016-ps/networktransition/Add-NetIPHttpsCertBinding.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIpHTTPsConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/add-netiphttpscertbinding?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/add-netiphttpscertbinding?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NetIPHttpsCertBinding --- diff --git a/docset/winserver2016-ps/networktransition/Disable-NetDnsTransitionConfiguration.md b/docset/winserver2016-ps/networktransition/Disable-NetDnsTransitionConfiguration.md index f4affa1764..633daafa2f 100644 --- a/docset/winserver2016-ps/networktransition/Disable-NetDnsTransitionConfiguration.md +++ b/docset/winserver2016-ps/networktransition/Disable-NetDnsTransitionConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetDnsTransitionConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/disable-netdnstransitionconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/disable-netdnstransitionconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetDnsTransitionConfiguration --- diff --git a/docset/winserver2016-ps/networktransition/Disable-NetIPHttpsProfile.md b/docset/winserver2016-ps/networktransition/Disable-NetIPHttpsProfile.md index c83c26b329..536a22f8e6 100644 --- a/docset/winserver2016-ps/networktransition/Disable-NetIPHttpsProfile.md +++ b/docset/winserver2016-ps/networktransition/Disable-NetIPHttpsProfile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIpHTTPsConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/disable-netiphttpsprofile?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/disable-netiphttpsprofile?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetIPHttpsProfile --- diff --git a/docset/winserver2016-ps/networktransition/Disable-NetNatTransitionConfiguration.md b/docset/winserver2016-ps/networktransition/Disable-NetNatTransitionConfiguration.md index 53e95b5885..47137a45c9 100644 --- a/docset/winserver2016-ps/networktransition/Disable-NetNatTransitionConfiguration.md +++ b/docset/winserver2016-ps/networktransition/Disable-NetNatTransitionConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNatTransitionConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/disable-netnattransitionconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/disable-netnattransitionconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetNatTransitionConfiguration --- diff --git a/docset/winserver2016-ps/networktransition/Enable-NetDnsTransitionConfiguration.md b/docset/winserver2016-ps/networktransition/Enable-NetDnsTransitionConfiguration.md index c8f2229e21..9bb1b2f6dc 100644 --- a/docset/winserver2016-ps/networktransition/Enable-NetDnsTransitionConfiguration.md +++ b/docset/winserver2016-ps/networktransition/Enable-NetDnsTransitionConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetDnsTransitionConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/enable-netdnstransitionconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/enable-netdnstransitionconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetDnsTransitionConfiguration --- diff --git a/docset/winserver2016-ps/networktransition/Enable-NetIPHttpsProfile.md b/docset/winserver2016-ps/networktransition/Enable-NetIPHttpsProfile.md index da49be62ef..c26277a842 100644 --- a/docset/winserver2016-ps/networktransition/Enable-NetIPHttpsProfile.md +++ b/docset/winserver2016-ps/networktransition/Enable-NetIPHttpsProfile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIpHTTPsConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/enable-netiphttpsprofile?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/enable-netiphttpsprofile?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetIPHttpsProfile --- diff --git a/docset/winserver2016-ps/networktransition/Enable-NetNatTransitionConfiguration.md b/docset/winserver2016-ps/networktransition/Enable-NetNatTransitionConfiguration.md index 933daeb88d..efdf855aba 100644 --- a/docset/winserver2016-ps/networktransition/Enable-NetNatTransitionConfiguration.md +++ b/docset/winserver2016-ps/networktransition/Enable-NetNatTransitionConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNatTransitionConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/enable-netnattransitionconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/enable-netnattransitionconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetNatTransitionConfiguration --- diff --git a/docset/winserver2016-ps/networktransition/Get-Net6to4Configuration.md b/docset/winserver2016-ps/networktransition/Get-Net6to4Configuration.md index 864b4e7634..55a456450e 100644 --- a/docset/winserver2016-ps/networktransition/Get-Net6to4Configuration.md +++ b/docset/winserver2016-ps/networktransition/Get-Net6to4Configuration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_Net6to4Configuration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/get-net6to4configuration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/get-net6to4configuration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-Net6to4Configuration --- diff --git a/docset/winserver2016-ps/networktransition/Get-NetDnsTransitionConfiguration.md b/docset/winserver2016-ps/networktransition/Get-NetDnsTransitionConfiguration.md index bac6aa74fa..ce5c510736 100644 --- a/docset/winserver2016-ps/networktransition/Get-NetDnsTransitionConfiguration.md +++ b/docset/winserver2016-ps/networktransition/Get-NetDnsTransitionConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetDnsTransitionConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/get-netdnstransitionconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/get-netdnstransitionconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetDnsTransitionConfiguration --- diff --git a/docset/winserver2016-ps/networktransition/Get-NetDnsTransitionMonitoring.md b/docset/winserver2016-ps/networktransition/Get-NetDnsTransitionMonitoring.md index 484465a5d8..11e85cb5e7 100644 --- a/docset/winserver2016-ps/networktransition/Get-NetDnsTransitionMonitoring.md +++ b/docset/winserver2016-ps/networktransition/Get-NetDnsTransitionMonitoring.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetDnsTransitionMonitoring.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/get-netdnstransitionmonitoring?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/get-netdnstransitionmonitoring?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetDnsTransitionMonitoring --- diff --git a/docset/winserver2016-ps/networktransition/Get-NetIPHttpsConfiguration.md b/docset/winserver2016-ps/networktransition/Get-NetIPHttpsConfiguration.md index ec59776ea3..eeb459b586 100644 --- a/docset/winserver2016-ps/networktransition/Get-NetIPHttpsConfiguration.md +++ b/docset/winserver2016-ps/networktransition/Get-NetIPHttpsConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIpHTTPsConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/get-netiphttpsconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/get-netiphttpsconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPHttpsConfiguration --- diff --git a/docset/winserver2016-ps/networktransition/Get-NetIPHttpsState.md b/docset/winserver2016-ps/networktransition/Get-NetIPHttpsState.md index 7fbe041b6b..4c5db7e8b9 100644 --- a/docset/winserver2016-ps/networktransition/Get-NetIPHttpsState.md +++ b/docset/winserver2016-ps/networktransition/Get-NetIPHttpsState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIpHTTPsState.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/get-netiphttpsstate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/get-netiphttpsstate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPHttpsState --- diff --git a/docset/winserver2016-ps/networktransition/Get-NetIsatapConfiguration.md b/docset/winserver2016-ps/networktransition/Get-NetIsatapConfiguration.md index 9a4f8283b4..59d4f3e747 100644 --- a/docset/winserver2016-ps/networktransition/Get-NetIsatapConfiguration.md +++ b/docset/winserver2016-ps/networktransition/Get-NetIsatapConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetISATAPConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/get-netisatapconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/get-netisatapconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIsatapConfiguration --- diff --git a/docset/winserver2016-ps/networktransition/Get-NetNatTransitionConfiguration.md b/docset/winserver2016-ps/networktransition/Get-NetNatTransitionConfiguration.md index 7fda635317..f671b15c2b 100644 --- a/docset/winserver2016-ps/networktransition/Get-NetNatTransitionConfiguration.md +++ b/docset/winserver2016-ps/networktransition/Get-NetNatTransitionConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNatTransitionConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/get-netnattransitionconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/get-netnattransitionconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetNatTransitionConfiguration --- diff --git a/docset/winserver2016-ps/networktransition/Get-NetNatTransitionMonitoring.md b/docset/winserver2016-ps/networktransition/Get-NetNatTransitionMonitoring.md index 9715841bb9..98cefb2246 100644 --- a/docset/winserver2016-ps/networktransition/Get-NetNatTransitionMonitoring.md +++ b/docset/winserver2016-ps/networktransition/Get-NetNatTransitionMonitoring.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNatTransitionMonitoring.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/get-netnattransitionmonitoring?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/get-netnattransitionmonitoring?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetNatTransitionMonitoring --- diff --git a/docset/winserver2016-ps/networktransition/Get-NetTeredoConfiguration.md b/docset/winserver2016-ps/networktransition/Get-NetTeredoConfiguration.md index 3188fbb64f..4f53e0cbe6 100644 --- a/docset/winserver2016-ps/networktransition/Get-NetTeredoConfiguration.md +++ b/docset/winserver2016-ps/networktransition/Get-NetTeredoConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetTeredoConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/get-netteredoconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/get-netteredoconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetTeredoConfiguration --- diff --git a/docset/winserver2016-ps/networktransition/Get-NetTeredoState.md b/docset/winserver2016-ps/networktransition/Get-NetTeredoState.md index 8bbc15b597..07f03068c0 100644 --- a/docset/winserver2016-ps/networktransition/Get-NetTeredoState.md +++ b/docset/winserver2016-ps/networktransition/Get-NetTeredoState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetTeredoState.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/get-netteredostate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/get-netteredostate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetTeredoState --- diff --git a/docset/winserver2016-ps/networktransition/New-NetIPHttpsConfiguration.md b/docset/winserver2016-ps/networktransition/New-NetIPHttpsConfiguration.md index e7f4f43e48..10a3d2eb2c 100644 --- a/docset/winserver2016-ps/networktransition/New-NetIPHttpsConfiguration.md +++ b/docset/winserver2016-ps/networktransition/New-NetIPHttpsConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIpHTTPsConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/new-netiphttpsconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/new-netiphttpsconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetIPHttpsConfiguration --- diff --git a/docset/winserver2016-ps/networktransition/New-NetNatTransitionConfiguration.md b/docset/winserver2016-ps/networktransition/New-NetNatTransitionConfiguration.md index bbae4cab84..d5e6302fce 100644 --- a/docset/winserver2016-ps/networktransition/New-NetNatTransitionConfiguration.md +++ b/docset/winserver2016-ps/networktransition/New-NetNatTransitionConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNatTransitionConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/new-netnattransitionconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/new-netnattransitionconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetNatTransitionConfiguration --- diff --git a/docset/winserver2016-ps/networktransition/Remove-NetIPHttpsCertBinding.md b/docset/winserver2016-ps/networktransition/Remove-NetIPHttpsCertBinding.md index 85aa31c020..3883a23d72 100644 --- a/docset/winserver2016-ps/networktransition/Remove-NetIPHttpsCertBinding.md +++ b/docset/winserver2016-ps/networktransition/Remove-NetIPHttpsCertBinding.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIpHTTPsConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/remove-netiphttpscertbinding?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/remove-netiphttpscertbinding?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetIPHttpsCertBinding --- diff --git a/docset/winserver2016-ps/networktransition/Remove-NetIPHttpsConfiguration.md b/docset/winserver2016-ps/networktransition/Remove-NetIPHttpsConfiguration.md index d396f966b8..0cca471118 100644 --- a/docset/winserver2016-ps/networktransition/Remove-NetIPHttpsConfiguration.md +++ b/docset/winserver2016-ps/networktransition/Remove-NetIPHttpsConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIpHTTPsConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/remove-netiphttpsconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/remove-netiphttpsconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetIPHttpsConfiguration --- diff --git a/docset/winserver2016-ps/networktransition/Remove-NetNatTransitionConfiguration.md b/docset/winserver2016-ps/networktransition/Remove-NetNatTransitionConfiguration.md index cd1d1186c8..c58a7c939c 100644 --- a/docset/winserver2016-ps/networktransition/Remove-NetNatTransitionConfiguration.md +++ b/docset/winserver2016-ps/networktransition/Remove-NetNatTransitionConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNatTransitionConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/remove-netnattransitionconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/remove-netnattransitionconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetNatTransitionConfiguration --- diff --git a/docset/winserver2016-ps/networktransition/Rename-NetIPHttpsConfiguration.md b/docset/winserver2016-ps/networktransition/Rename-NetIPHttpsConfiguration.md index f5bc9066bd..40388933b3 100644 --- a/docset/winserver2016-ps/networktransition/Rename-NetIPHttpsConfiguration.md +++ b/docset/winserver2016-ps/networktransition/Rename-NetIPHttpsConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIpHTTPsConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/rename-netiphttpsconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/rename-netiphttpsconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-NetIPHttpsConfiguration --- diff --git a/docset/winserver2016-ps/networktransition/Reset-Net6to4Configuration.md b/docset/winserver2016-ps/networktransition/Reset-Net6to4Configuration.md index 653962974a..1959183547 100644 --- a/docset/winserver2016-ps/networktransition/Reset-Net6to4Configuration.md +++ b/docset/winserver2016-ps/networktransition/Reset-Net6to4Configuration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_Net6to4Configuration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/reset-net6to4configuration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/reset-net6to4configuration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-Net6to4Configuration --- diff --git a/docset/winserver2016-ps/networktransition/Reset-NetDnsTransitionConfiguration.md b/docset/winserver2016-ps/networktransition/Reset-NetDnsTransitionConfiguration.md index 032097bdf5..526f3b189c 100644 --- a/docset/winserver2016-ps/networktransition/Reset-NetDnsTransitionConfiguration.md +++ b/docset/winserver2016-ps/networktransition/Reset-NetDnsTransitionConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetDnsTransitionConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/reset-netdnstransitionconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/reset-netdnstransitionconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-NetDnsTransitionConfiguration --- diff --git a/docset/winserver2016-ps/networktransition/Reset-NetIPHttpsConfiguration.md b/docset/winserver2016-ps/networktransition/Reset-NetIPHttpsConfiguration.md index 2a47602268..d2569c98d2 100644 --- a/docset/winserver2016-ps/networktransition/Reset-NetIPHttpsConfiguration.md +++ b/docset/winserver2016-ps/networktransition/Reset-NetIPHttpsConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIpHTTPsConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/reset-netiphttpsconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/reset-netiphttpsconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-NetIPHttpsConfiguration --- diff --git a/docset/winserver2016-ps/networktransition/Reset-NetIsatapConfiguration.md b/docset/winserver2016-ps/networktransition/Reset-NetIsatapConfiguration.md index 4dc307fd8d..7dee541c5a 100644 --- a/docset/winserver2016-ps/networktransition/Reset-NetIsatapConfiguration.md +++ b/docset/winserver2016-ps/networktransition/Reset-NetIsatapConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetISATAPConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/reset-netisatapconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/reset-netisatapconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-NetIsatapConfiguration --- diff --git a/docset/winserver2016-ps/networktransition/Reset-NetTeredoConfiguration.md b/docset/winserver2016-ps/networktransition/Reset-NetTeredoConfiguration.md index 9a726c8654..f889a2003b 100644 --- a/docset/winserver2016-ps/networktransition/Reset-NetTeredoConfiguration.md +++ b/docset/winserver2016-ps/networktransition/Reset-NetTeredoConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetTeredoConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/reset-netteredoconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/reset-netteredoconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-NetTeredoConfiguration --- diff --git a/docset/winserver2016-ps/networktransition/Set-Net6to4Configuration.md b/docset/winserver2016-ps/networktransition/Set-Net6to4Configuration.md index 8f522a1912..37c3cba28f 100644 --- a/docset/winserver2016-ps/networktransition/Set-Net6to4Configuration.md +++ b/docset/winserver2016-ps/networktransition/Set-Net6to4Configuration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_Net6to4Configuration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/set-net6to4configuration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/set-net6to4configuration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-Net6to4Configuration --- diff --git a/docset/winserver2016-ps/networktransition/Set-NetDnsTransitionConfiguration.md b/docset/winserver2016-ps/networktransition/Set-NetDnsTransitionConfiguration.md index b84d3e93d5..d7f1d93ae1 100644 --- a/docset/winserver2016-ps/networktransition/Set-NetDnsTransitionConfiguration.md +++ b/docset/winserver2016-ps/networktransition/Set-NetDnsTransitionConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetDnsTransitionConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/set-netdnstransitionconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/set-netdnstransitionconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetDnsTransitionConfiguration --- diff --git a/docset/winserver2016-ps/networktransition/Set-NetIPHttpsConfiguration.md b/docset/winserver2016-ps/networktransition/Set-NetIPHttpsConfiguration.md index 4f16f4a543..9571a835f5 100644 --- a/docset/winserver2016-ps/networktransition/Set-NetIPHttpsConfiguration.md +++ b/docset/winserver2016-ps/networktransition/Set-NetIPHttpsConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIpHTTPsConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/set-netiphttpsconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/set-netiphttpsconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetIPHttpsConfiguration --- diff --git a/docset/winserver2016-ps/networktransition/Set-NetIsatapConfiguration.md b/docset/winserver2016-ps/networktransition/Set-NetIsatapConfiguration.md index 50dfc1141a..a16853de19 100644 --- a/docset/winserver2016-ps/networktransition/Set-NetIsatapConfiguration.md +++ b/docset/winserver2016-ps/networktransition/Set-NetIsatapConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetISATAPConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/set-netisatapconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/set-netisatapconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetIsatapConfiguration --- diff --git a/docset/winserver2016-ps/networktransition/Set-NetNatTransitionConfiguration.md b/docset/winserver2016-ps/networktransition/Set-NetNatTransitionConfiguration.md index 6262b20c68..d707ce5362 100644 --- a/docset/winserver2016-ps/networktransition/Set-NetNatTransitionConfiguration.md +++ b/docset/winserver2016-ps/networktransition/Set-NetNatTransitionConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNatTransitionConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/set-netnattransitionconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/set-netnattransitionconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetNatTransitionConfiguration --- diff --git a/docset/winserver2016-ps/networktransition/Set-NetTeredoConfiguration.md b/docset/winserver2016-ps/networktransition/Set-NetTeredoConfiguration.md index 109efc59f1..afe09cbb6a 100644 --- a/docset/winserver2016-ps/networktransition/Set-NetTeredoConfiguration.md +++ b/docset/winserver2016-ps/networktransition/Set-NetTeredoConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetTeredoConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/set-netteredoconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/set-netteredoconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetTeredoConfiguration --- diff --git a/docset/winserver2016-ps/nfs/Disconnect-NfsSession.md b/docset/winserver2016-ps/nfs/Disconnect-NfsSession.md index 53d87666a7..0b1a718ddd 100644 --- a/docset/winserver2016-ps/nfs/Disconnect-NfsSession.md +++ b/docset/winserver2016-ps/nfs/Disconnect-NfsSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsSession.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/disconnect-nfssession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/disconnect-nfssession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disconnect-NfsSession --- diff --git a/docset/winserver2016-ps/nfs/Get-NfsClientConfiguration.md b/docset/winserver2016-ps/nfs/Get-NfsClientConfiguration.md index 2022f76d8c..16d2c347d7 100644 --- a/docset/winserver2016-ps/nfs/Get-NfsClientConfiguration.md +++ b/docset/winserver2016-ps/nfs/Get-NfsClientConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsClientConfig.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsclientconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsclientconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsClientConfiguration --- diff --git a/docset/winserver2016-ps/nfs/Get-NfsClientLock.md b/docset/winserver2016-ps/nfs/Get-NfsClientLock.md index 9c4f8f241b..56bce1ce2a 100644 --- a/docset/winserver2016-ps/nfs/Get-NfsClientLock.md +++ b/docset/winserver2016-ps/nfs/Get-NfsClientLock.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsClientLock.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsclientlock?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsclientlock?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsClientLock --- diff --git a/docset/winserver2016-ps/nfs/Get-NfsClientgroup.md b/docset/winserver2016-ps/nfs/Get-NfsClientgroup.md index 94ce900284..205d547224 100644 --- a/docset/winserver2016-ps/nfs/Get-NfsClientgroup.md +++ b/docset/winserver2016-ps/nfs/Get-NfsClientgroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsClientGroup.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsclientgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsclientgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsClientgroup --- diff --git a/docset/winserver2016-ps/nfs/Get-NfsMappedIdentity.md b/docset/winserver2016-ps/nfs/Get-NfsMappedIdentity.md index 913b4a8be4..b8807d0d02 100644 --- a/docset/winserver2016-ps/nfs/Get-NfsMappedIdentity.md +++ b/docset/winserver2016-ps/nfs/Get-NfsMappedIdentity.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FileServices.Powershell.NFS.dll-Help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsmappedidentity?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsmappedidentity?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsMappedIdentity --- diff --git a/docset/winserver2016-ps/nfs/Get-NfsMappingStore.md b/docset/winserver2016-ps/nfs/Get-NfsMappingStore.md index 6b1deba736..09358037b8 100644 --- a/docset/winserver2016-ps/nfs/Get-NfsMappingStore.md +++ b/docset/winserver2016-ps/nfs/Get-NfsMappingStore.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsMappingStore.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsmappingstore?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsmappingstore?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsMappingStore --- diff --git a/docset/winserver2016-ps/nfs/Get-NfsMountedClient.md b/docset/winserver2016-ps/nfs/Get-NfsMountedClient.md index 450373f912..494380e820 100644 --- a/docset/winserver2016-ps/nfs/Get-NfsMountedClient.md +++ b/docset/winserver2016-ps/nfs/Get-NfsMountedClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsMountedClient.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsmountedclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsmountedclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsMountedClient --- diff --git a/docset/winserver2016-ps/nfs/Get-NfsNetgroup.md b/docset/winserver2016-ps/nfs/Get-NfsNetgroup.md index ba7a423d0b..03d725072f 100644 --- a/docset/winserver2016-ps/nfs/Get-NfsNetgroup.md +++ b/docset/winserver2016-ps/nfs/Get-NfsNetgroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FileServices.Powershell.NFS.dll-Help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsnetgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsnetgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsNetgroup --- diff --git a/docset/winserver2016-ps/nfs/Get-NfsNetgroupStore.md b/docset/winserver2016-ps/nfs/Get-NfsNetgroupStore.md index 865d22d7a7..2f470c64ab 100644 --- a/docset/winserver2016-ps/nfs/Get-NfsNetgroupStore.md +++ b/docset/winserver2016-ps/nfs/Get-NfsNetgroupStore.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsNetgroupStore.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsnetgroupstore?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsnetgroupstore?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsNetgroupStore --- diff --git a/docset/winserver2016-ps/nfs/Get-NfsOpenFile.md b/docset/winserver2016-ps/nfs/Get-NfsOpenFile.md index a0a4244134..f2ad49cb98 100644 --- a/docset/winserver2016-ps/nfs/Get-NfsOpenFile.md +++ b/docset/winserver2016-ps/nfs/Get-NfsOpenFile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsOpenFile.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsopenfile?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsopenfile?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsOpenFile --- diff --git a/docset/winserver2016-ps/nfs/Get-NfsServerConfiguration.md b/docset/winserver2016-ps/nfs/Get-NfsServerConfiguration.md index 146c19599b..de1de7c8e0 100644 --- a/docset/winserver2016-ps/nfs/Get-NfsServerConfiguration.md +++ b/docset/winserver2016-ps/nfs/Get-NfsServerConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsServerConfig.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsserverconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsserverconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsServerConfiguration --- diff --git a/docset/winserver2016-ps/nfs/Get-NfsSession.md b/docset/winserver2016-ps/nfs/Get-NfsSession.md index 13d020f9f1..88f61d96f4 100644 --- a/docset/winserver2016-ps/nfs/Get-NfsSession.md +++ b/docset/winserver2016-ps/nfs/Get-NfsSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsSession.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfssession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfssession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsSession --- diff --git a/docset/winserver2016-ps/nfs/Get-NfsShare.md b/docset/winserver2016-ps/nfs/Get-NfsShare.md index 23163ffca0..0d1535784b 100644 --- a/docset/winserver2016-ps/nfs/Get-NfsShare.md +++ b/docset/winserver2016-ps/nfs/Get-NfsShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsShare.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsshare?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsshare?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsShare --- diff --git a/docset/winserver2016-ps/nfs/Get-NfsSharePermission.md b/docset/winserver2016-ps/nfs/Get-NfsSharePermission.md index 430d1c26ff..77ac45b401 100644 --- a/docset/winserver2016-ps/nfs/Get-NfsSharePermission.md +++ b/docset/winserver2016-ps/nfs/Get-NfsSharePermission.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsServerTasks.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfssharepermission?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfssharepermission?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsSharePermission --- diff --git a/docset/winserver2016-ps/nfs/Get-NfsStatistics.md b/docset/winserver2016-ps/nfs/Get-NfsStatistics.md index d69310d6c7..d0426e3976 100644 --- a/docset/winserver2016-ps/nfs/Get-NfsStatistics.md +++ b/docset/winserver2016-ps/nfs/Get-NfsStatistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsStatistics.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsstatistics?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsstatistics?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsStatistics --- diff --git a/docset/winserver2016-ps/nfs/Grant-NfsSharePermission.md b/docset/winserver2016-ps/nfs/Grant-NfsSharePermission.md index 845cca95e6..3c240eb3f1 100644 --- a/docset/winserver2016-ps/nfs/Grant-NfsSharePermission.md +++ b/docset/winserver2016-ps/nfs/Grant-NfsSharePermission.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsServerTasks.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/grant-nfssharepermission?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/grant-nfssharepermission?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Grant-NfsSharePermission --- diff --git a/docset/winserver2016-ps/nfs/Install-NfsMappingStore.md b/docset/winserver2016-ps/nfs/Install-NfsMappingStore.md index c5a9622497..c708231205 100644 --- a/docset/winserver2016-ps/nfs/Install-NfsMappingStore.md +++ b/docset/winserver2016-ps/nfs/Install-NfsMappingStore.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FileServices.Powershell.NFS.dll-Help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/install-nfsmappingstore?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/install-nfsmappingstore?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-NfsMappingStore --- diff --git a/docset/winserver2016-ps/nfs/New-NfsClientgroup.md b/docset/winserver2016-ps/nfs/New-NfsClientgroup.md index 21f10a6cae..ac7104462a 100644 --- a/docset/winserver2016-ps/nfs/New-NfsClientgroup.md +++ b/docset/winserver2016-ps/nfs/New-NfsClientgroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsServerTasks.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/new-nfsclientgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/new-nfsclientgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NfsClientgroup --- diff --git a/docset/winserver2016-ps/nfs/New-NfsMappedIdentity.md b/docset/winserver2016-ps/nfs/New-NfsMappedIdentity.md index 2a7f5a8d1f..7ccc109c47 100644 --- a/docset/winserver2016-ps/nfs/New-NfsMappedIdentity.md +++ b/docset/winserver2016-ps/nfs/New-NfsMappedIdentity.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FileServices.Powershell.NFS.dll-Help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/new-nfsmappedidentity?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/new-nfsmappedidentity?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NfsMappedIdentity --- diff --git a/docset/winserver2016-ps/nfs/New-NfsNetgroup.md b/docset/winserver2016-ps/nfs/New-NfsNetgroup.md index ba1161e38b..0a7b3c97e1 100644 --- a/docset/winserver2016-ps/nfs/New-NfsNetgroup.md +++ b/docset/winserver2016-ps/nfs/New-NfsNetgroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FileServices.Powershell.NFS.dll-Help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/new-nfsnetgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/new-nfsnetgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NfsNetgroup --- diff --git a/docset/winserver2016-ps/nfs/New-NfsShare.md b/docset/winserver2016-ps/nfs/New-NfsShare.md index 139a34f2b0..06b06b563d 100644 --- a/docset/winserver2016-ps/nfs/New-NfsShare.md +++ b/docset/winserver2016-ps/nfs/New-NfsShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsServerTasks.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/new-nfsshare?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/new-nfsshare?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NfsShare --- diff --git a/docset/winserver2016-ps/nfs/Remove-NfsClientgroup.md b/docset/winserver2016-ps/nfs/Remove-NfsClientgroup.md index 63ef374ac6..a3e10e260f 100644 --- a/docset/winserver2016-ps/nfs/Remove-NfsClientgroup.md +++ b/docset/winserver2016-ps/nfs/Remove-NfsClientgroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsClientGroup.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/remove-nfsclientgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/remove-nfsclientgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NfsClientgroup --- diff --git a/docset/winserver2016-ps/nfs/Remove-NfsMappedIdentity.md b/docset/winserver2016-ps/nfs/Remove-NfsMappedIdentity.md index 34721c27cc..f31429125e 100644 --- a/docset/winserver2016-ps/nfs/Remove-NfsMappedIdentity.md +++ b/docset/winserver2016-ps/nfs/Remove-NfsMappedIdentity.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FileServices.Powershell.NFS.dll-Help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/remove-nfsmappedidentity?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/remove-nfsmappedidentity?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NfsMappedIdentity --- diff --git a/docset/winserver2016-ps/nfs/Remove-NfsNetgroup.md b/docset/winserver2016-ps/nfs/Remove-NfsNetgroup.md index 30adc9769d..9573eedc07 100644 --- a/docset/winserver2016-ps/nfs/Remove-NfsNetgroup.md +++ b/docset/winserver2016-ps/nfs/Remove-NfsNetgroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FileServices.Powershell.NFS.dll-Help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/remove-nfsnetgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/remove-nfsnetgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NfsNetgroup --- diff --git a/docset/winserver2016-ps/nfs/Remove-NfsShare.md b/docset/winserver2016-ps/nfs/Remove-NfsShare.md index bae2c13638..ab0f3019f2 100644 --- a/docset/winserver2016-ps/nfs/Remove-NfsShare.md +++ b/docset/winserver2016-ps/nfs/Remove-NfsShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsShare.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/remove-nfsshare?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/remove-nfsshare?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NfsShare --- diff --git a/docset/winserver2016-ps/nfs/Rename-NfsClientgroup.md b/docset/winserver2016-ps/nfs/Rename-NfsClientgroup.md index 0a98695abf..360d331e5c 100644 --- a/docset/winserver2016-ps/nfs/Rename-NfsClientgroup.md +++ b/docset/winserver2016-ps/nfs/Rename-NfsClientgroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsServerTasks.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/rename-nfsclientgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/rename-nfsclientgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-NfsClientgroup --- diff --git a/docset/winserver2016-ps/nfs/Reset-NfsStatistics.md b/docset/winserver2016-ps/nfs/Reset-NfsStatistics.md index 740fefbb0e..132d2f3c8e 100644 --- a/docset/winserver2016-ps/nfs/Reset-NfsStatistics.md +++ b/docset/winserver2016-ps/nfs/Reset-NfsStatistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsStatistics.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/reset-nfsstatistics?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/reset-nfsstatistics?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-NfsStatistics --- diff --git a/docset/winserver2016-ps/nfs/Resolve-NfsMappedIdentity.md b/docset/winserver2016-ps/nfs/Resolve-NfsMappedIdentity.md index 72dfbf6254..26fa2d7569 100644 --- a/docset/winserver2016-ps/nfs/Resolve-NfsMappedIdentity.md +++ b/docset/winserver2016-ps/nfs/Resolve-NfsMappedIdentity.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsServerTasks.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/resolve-nfsmappedidentity?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/resolve-nfsmappedidentity?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resolve-NfsMappedIdentity --- diff --git a/docset/winserver2016-ps/nfs/Revoke-NfsClientLock.md b/docset/winserver2016-ps/nfs/Revoke-NfsClientLock.md index 8fa5f41d12..95b271f22f 100644 --- a/docset/winserver2016-ps/nfs/Revoke-NfsClientLock.md +++ b/docset/winserver2016-ps/nfs/Revoke-NfsClientLock.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsClientLock.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/revoke-nfsclientlock?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/revoke-nfsclientlock?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Revoke-NfsClientLock --- diff --git a/docset/winserver2016-ps/nfs/Revoke-NfsMountedClient.md b/docset/winserver2016-ps/nfs/Revoke-NfsMountedClient.md index 991effb6ef..8eb8628af4 100644 --- a/docset/winserver2016-ps/nfs/Revoke-NfsMountedClient.md +++ b/docset/winserver2016-ps/nfs/Revoke-NfsMountedClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsMountedClient.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/revoke-nfsmountedclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/revoke-nfsmountedclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Revoke-NfsMountedClient --- diff --git a/docset/winserver2016-ps/nfs/Revoke-NfsOpenFile.md b/docset/winserver2016-ps/nfs/Revoke-NfsOpenFile.md index e28a71c3ab..7a3cdd26ac 100644 --- a/docset/winserver2016-ps/nfs/Revoke-NfsOpenFile.md +++ b/docset/winserver2016-ps/nfs/Revoke-NfsOpenFile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsOpenFile.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/revoke-nfsopenfile?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/revoke-nfsopenfile?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Revoke-NfsOpenFile --- diff --git a/docset/winserver2016-ps/nfs/Revoke-NfsSharePermission.md b/docset/winserver2016-ps/nfs/Revoke-NfsSharePermission.md index 96e773ad2c..ddcd9f473a 100644 --- a/docset/winserver2016-ps/nfs/Revoke-NfsSharePermission.md +++ b/docset/winserver2016-ps/nfs/Revoke-NfsSharePermission.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsServerTasks.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/revoke-nfssharepermission?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/revoke-nfssharepermission?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Revoke-NfsSharePermission --- diff --git a/docset/winserver2016-ps/nfs/Set-NfsClientConfiguration.md b/docset/winserver2016-ps/nfs/Set-NfsClientConfiguration.md index 7f52e8ee0a..3d5f9b91ca 100644 --- a/docset/winserver2016-ps/nfs/Set-NfsClientConfiguration.md +++ b/docset/winserver2016-ps/nfs/Set-NfsClientConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsClientConfig.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/set-nfsclientconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/set-nfsclientconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NfsClientConfiguration --- diff --git a/docset/winserver2016-ps/nfs/Set-NfsClientgroup.md b/docset/winserver2016-ps/nfs/Set-NfsClientgroup.md index dd03f0699d..9af9aabbdb 100644 --- a/docset/winserver2016-ps/nfs/Set-NfsClientgroup.md +++ b/docset/winserver2016-ps/nfs/Set-NfsClientgroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsServerTasks.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/set-nfsclientgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/set-nfsclientgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NfsClientgroup --- diff --git a/docset/winserver2016-ps/nfs/Set-NfsMappedIdentity.md b/docset/winserver2016-ps/nfs/Set-NfsMappedIdentity.md index 1166b8e880..a8ae345840 100644 --- a/docset/winserver2016-ps/nfs/Set-NfsMappedIdentity.md +++ b/docset/winserver2016-ps/nfs/Set-NfsMappedIdentity.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FileServices.Powershell.NFS.dll-Help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/set-nfsmappedidentity?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/set-nfsmappedidentity?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NfsMappedIdentity --- diff --git a/docset/winserver2016-ps/nfs/Set-NfsMappingStore.md b/docset/winserver2016-ps/nfs/Set-NfsMappingStore.md index 039a9704e8..7441a1bad7 100644 --- a/docset/winserver2016-ps/nfs/Set-NfsMappingStore.md +++ b/docset/winserver2016-ps/nfs/Set-NfsMappingStore.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsMappingStore.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/set-nfsmappingstore?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/set-nfsmappingstore?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NfsMappingStore --- diff --git a/docset/winserver2016-ps/nfs/Set-NfsNetgroup.md b/docset/winserver2016-ps/nfs/Set-NfsNetgroup.md index 62b2a0b58a..c416b7c995 100644 --- a/docset/winserver2016-ps/nfs/Set-NfsNetgroup.md +++ b/docset/winserver2016-ps/nfs/Set-NfsNetgroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FileServices.Powershell.NFS.dll-Help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/set-nfsnetgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/set-nfsnetgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NfsNetgroup --- diff --git a/docset/winserver2016-ps/nfs/Set-NfsNetgroupStore.md b/docset/winserver2016-ps/nfs/Set-NfsNetgroupStore.md index 077f616595..f40d8188c8 100644 --- a/docset/winserver2016-ps/nfs/Set-NfsNetgroupStore.md +++ b/docset/winserver2016-ps/nfs/Set-NfsNetgroupStore.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsNetgroupStore.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/set-nfsnetgroupstore?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/set-nfsnetgroupstore?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NfsNetgroupStore --- diff --git a/docset/winserver2016-ps/nfs/Set-NfsServerConfiguration.md b/docset/winserver2016-ps/nfs/Set-NfsServerConfiguration.md index 5a48fa34aa..09aee02997 100644 --- a/docset/winserver2016-ps/nfs/Set-NfsServerConfiguration.md +++ b/docset/winserver2016-ps/nfs/Set-NfsServerConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsServerConfig.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/set-nfsserverconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/set-nfsserverconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NfsServerConfiguration --- diff --git a/docset/winserver2016-ps/nfs/Set-NfsShare.md b/docset/winserver2016-ps/nfs/Set-NfsShare.md index 16d1b91da7..0365439a08 100644 --- a/docset/winserver2016-ps/nfs/Set-NfsShare.md +++ b/docset/winserver2016-ps/nfs/Set-NfsShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsServerTasks.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/set-nfsshare?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/set-nfsshare?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NfsShare --- diff --git a/docset/winserver2016-ps/nfs/Test-NfsMappedIdentity.md b/docset/winserver2016-ps/nfs/Test-NfsMappedIdentity.md index 0d308329a0..742e97a98e 100644 --- a/docset/winserver2016-ps/nfs/Test-NfsMappedIdentity.md +++ b/docset/winserver2016-ps/nfs/Test-NfsMappedIdentity.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FileServices.Powershell.NFS.dll-Help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/test-nfsmappedidentity?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/test-nfsmappedidentity?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-NfsMappedIdentity --- diff --git a/docset/winserver2016-ps/nfs/Test-NfsMappingStore.md b/docset/winserver2016-ps/nfs/Test-NfsMappingStore.md index e649c3ecff..fcc42ecaa0 100644 --- a/docset/winserver2016-ps/nfs/Test-NfsMappingStore.md +++ b/docset/winserver2016-ps/nfs/Test-NfsMappingStore.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsServerTasks.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/test-nfsmappingstore?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/test-nfsmappingstore?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-NfsMappingStore --- diff --git a/docset/winserver2016-ps/nps/Export-NpsConfiguration.md b/docset/winserver2016-ps/nps/Export-NpsConfiguration.md index 03a16078eb..2313c1a32a 100644 --- a/docset/winserver2016-ps/nps/Export-NpsConfiguration.md +++ b/docset/winserver2016-ps/nps/Export-NpsConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NPS.Commands.dll-Help.xml Module Name: NPS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nps/export-npsconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nps/export-npsconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-NpsConfiguration --- diff --git a/docset/winserver2016-ps/nps/Get-NpsRadiusClient.md b/docset/winserver2016-ps/nps/Get-NpsRadiusClient.md index 7c8b7a0c0f..7255aa1beb 100644 --- a/docset/winserver2016-ps/nps/Get-NpsRadiusClient.md +++ b/docset/winserver2016-ps/nps/Get-NpsRadiusClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NPS.Commands.dll-Help.xml Module Name: NPS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nps/get-npsradiusclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nps/get-npsradiusclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NpsRadiusClient --- diff --git a/docset/winserver2016-ps/nps/Get-NpsSharedSecretTemplate.md b/docset/winserver2016-ps/nps/Get-NpsSharedSecretTemplate.md index 73036558c9..7346d42dd1 100644 --- a/docset/winserver2016-ps/nps/Get-NpsSharedSecretTemplate.md +++ b/docset/winserver2016-ps/nps/Get-NpsSharedSecretTemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NPS.Commands.dll-Help.xml Module Name: NPS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nps/get-npssharedsecrettemplate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nps/get-npssharedsecrettemplate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NpsSharedSecretTemplate --- diff --git a/docset/winserver2016-ps/nps/Import-NpsConfiguration.md b/docset/winserver2016-ps/nps/Import-NpsConfiguration.md index 9e75580425..7f4bcac3fc 100644 --- a/docset/winserver2016-ps/nps/Import-NpsConfiguration.md +++ b/docset/winserver2016-ps/nps/Import-NpsConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NPS.Commands.dll-Help.xml Module Name: NPS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nps/import-npsconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nps/import-npsconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-NpsConfiguration --- diff --git a/docset/winserver2016-ps/nps/New-NpsRadiusClient.md b/docset/winserver2016-ps/nps/New-NpsRadiusClient.md index 2c990cc941..be81db5015 100644 --- a/docset/winserver2016-ps/nps/New-NpsRadiusClient.md +++ b/docset/winserver2016-ps/nps/New-NpsRadiusClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NPS.Commands.dll-Help.xml Module Name: NPS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nps/new-npsradiusclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nps/new-npsradiusclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NpsRadiusClient --- diff --git a/docset/winserver2016-ps/nps/Remove-NpsRadiusClient.md b/docset/winserver2016-ps/nps/Remove-NpsRadiusClient.md index a0fb52f4b4..9d8574337a 100644 --- a/docset/winserver2016-ps/nps/Remove-NpsRadiusClient.md +++ b/docset/winserver2016-ps/nps/Remove-NpsRadiusClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NPS.Commands.dll-Help.xml Module Name: NPS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nps/remove-npsradiusclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nps/remove-npsradiusclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NpsRadiusClient --- diff --git a/docset/winserver2016-ps/nps/Set-NpsRadiusClient.md b/docset/winserver2016-ps/nps/Set-NpsRadiusClient.md index 526072ee0b..28bb0bc871 100644 --- a/docset/winserver2016-ps/nps/Set-NpsRadiusClient.md +++ b/docset/winserver2016-ps/nps/Set-NpsRadiusClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NPS.Commands.dll-Help.xml Module Name: NPS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nps/set-npsradiusclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nps/set-npsradiusclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NpsRadiusClient --- diff --git a/docset/winserver2016-ps/pcsvdevice/Clear-PcsvDeviceLog.md b/docset/winserver2016-ps/pcsvdevice/Clear-PcsvDeviceLog.md index 55938bbf32..6c4e64b517 100644 --- a/docset/winserver2016-ps/pcsvdevice/Clear-PcsvDeviceLog.md +++ b/docset/winserver2016-ps/pcsvdevice/Clear-PcsvDeviceLog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: CIM_PhysicalComputerSystemView.cdxml-help.xml Module Name: PCSVDevice ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pcsvdevice/clear-pcsvdevicelog?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pcsvdevice/clear-pcsvdevicelog?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-PcsvDeviceLog --- diff --git a/docset/winserver2016-ps/pcsvdevice/Get-PcsvDevice.md b/docset/winserver2016-ps/pcsvdevice/Get-PcsvDevice.md index eda25edfd6..e21f4968cb 100644 --- a/docset/winserver2016-ps/pcsvdevice/Get-PcsvDevice.md +++ b/docset/winserver2016-ps/pcsvdevice/Get-PcsvDevice.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: CIM_PhysicalComputerSystemView.cdxml-help.xml Module Name: PCSVDevice ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pcsvdevice/get-pcsvdevice?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pcsvdevice/get-pcsvdevice?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PcsvDevice --- diff --git a/docset/winserver2016-ps/pcsvdevice/Get-PcsvDeviceLog.md b/docset/winserver2016-ps/pcsvdevice/Get-PcsvDeviceLog.md index b41bbb99dc..61e0226ff0 100644 --- a/docset/winserver2016-ps/pcsvdevice/Get-PcsvDeviceLog.md +++ b/docset/winserver2016-ps/pcsvdevice/Get-PcsvDeviceLog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: CIM_PhysicalComputerSystemView.cdxml-help.xml Module Name: PCSVDevice ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pcsvdevice/get-pcsvdevicelog?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pcsvdevice/get-pcsvdevicelog?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PcsvDeviceLog --- diff --git a/docset/winserver2016-ps/pcsvdevice/Restart-PcsvDevice.md b/docset/winserver2016-ps/pcsvdevice/Restart-PcsvDevice.md index cf715d129a..e77f34b93a 100644 --- a/docset/winserver2016-ps/pcsvdevice/Restart-PcsvDevice.md +++ b/docset/winserver2016-ps/pcsvdevice/Restart-PcsvDevice.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: CIM_PhysicalComputerSystemView.cdxml-help.xml Module Name: PCSVDevice ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pcsvdevice/restart-pcsvdevice?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pcsvdevice/restart-pcsvdevice?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restart-PcsvDevice --- diff --git a/docset/winserver2016-ps/pcsvdevice/Set-PcsvDeviceBootConfiguration.md b/docset/winserver2016-ps/pcsvdevice/Set-PcsvDeviceBootConfiguration.md index 154026fefa..8a91e97398 100644 --- a/docset/winserver2016-ps/pcsvdevice/Set-PcsvDeviceBootConfiguration.md +++ b/docset/winserver2016-ps/pcsvdevice/Set-PcsvDeviceBootConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: CIM_PhysicalComputerSystemView.cdxml-help.xml Module Name: PCSVDevice ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pcsvdevice/set-pcsvdevicebootconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pcsvdevice/set-pcsvdevicebootconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-PcsvDeviceBootConfiguration --- diff --git a/docset/winserver2016-ps/pcsvdevice/Set-PcsvDeviceNetworkConfiguration.md b/docset/winserver2016-ps/pcsvdevice/Set-PcsvDeviceNetworkConfiguration.md index 808eaf7bbc..73f46b3918 100644 --- a/docset/winserver2016-ps/pcsvdevice/Set-PcsvDeviceNetworkConfiguration.md +++ b/docset/winserver2016-ps/pcsvdevice/Set-PcsvDeviceNetworkConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: CIM_PhysicalComputerSystemView.cdxml-help.xml Module Name: PCSVDevice ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pcsvdevice/set-pcsvdevicenetworkconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pcsvdevice/set-pcsvdevicenetworkconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-PcsvDeviceNetworkConfiguration --- diff --git a/docset/winserver2016-ps/pcsvdevice/Set-PcsvDeviceUserPassword.md b/docset/winserver2016-ps/pcsvdevice/Set-PcsvDeviceUserPassword.md index 8202088306..848966aa04 100644 --- a/docset/winserver2016-ps/pcsvdevice/Set-PcsvDeviceUserPassword.md +++ b/docset/winserver2016-ps/pcsvdevice/Set-PcsvDeviceUserPassword.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: CIM_PhysicalComputerSystemView.cdxml-help.xml Module Name: PCSVDevice ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pcsvdevice/set-pcsvdeviceuserpassword?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pcsvdevice/set-pcsvdeviceuserpassword?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-PcsvDeviceUserPassword --- diff --git a/docset/winserver2016-ps/pcsvdevice/Start-PcsvDevice.md b/docset/winserver2016-ps/pcsvdevice/Start-PcsvDevice.md index ac181f1ba3..69733b8201 100644 --- a/docset/winserver2016-ps/pcsvdevice/Start-PcsvDevice.md +++ b/docset/winserver2016-ps/pcsvdevice/Start-PcsvDevice.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: CIM_PhysicalComputerSystemView.cdxml-help.xml Module Name: PCSVDevice ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pcsvdevice/start-pcsvdevice?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pcsvdevice/start-pcsvdevice?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-PcsvDevice --- diff --git a/docset/winserver2016-ps/pcsvdevice/Stop-PcsvDevice.md b/docset/winserver2016-ps/pcsvdevice/Stop-PcsvDevice.md index 1b367fe6b2..a115a3072b 100644 --- a/docset/winserver2016-ps/pcsvdevice/Stop-PcsvDevice.md +++ b/docset/winserver2016-ps/pcsvdevice/Stop-PcsvDevice.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: CIM_PhysicalComputerSystemView.cdxml-help.xml Module Name: PCSVDevice ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pcsvdevice/stop-pcsvdevice?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pcsvdevice/stop-pcsvdevice?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-PcsvDevice --- diff --git a/docset/winserver2016-ps/pki/Add-CertificateEnrollmentPolicyServer.md b/docset/winserver2016-ps/pki/Add-CertificateEnrollmentPolicyServer.md index a9bd9343a5..a81f119b1a 100644 --- a/docset/winserver2016-ps/pki/Add-CertificateEnrollmentPolicyServer.md +++ b/docset/winserver2016-ps/pki/Add-CertificateEnrollmentPolicyServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pki/add-certificateenrollmentpolicyserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/add-certificateenrollmentpolicyserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-CertificateEnrollmentPolicyServer --- diff --git a/docset/winserver2016-ps/pki/Export-Certificate.md b/docset/winserver2016-ps/pki/Export-Certificate.md index 679c694a5c..e9ca4664a4 100644 --- a/docset/winserver2016-ps/pki/Export-Certificate.md +++ b/docset/winserver2016-ps/pki/Export-Certificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pki/export-certificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/export-certificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-Certificate --- diff --git a/docset/winserver2016-ps/pki/Export-PfxCertificate.md b/docset/winserver2016-ps/pki/Export-PfxCertificate.md index 2e5a1ca201..d82f6ac4a0 100644 --- a/docset/winserver2016-ps/pki/Export-PfxCertificate.md +++ b/docset/winserver2016-ps/pki/Export-PfxCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pki/export-pfxcertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/export-pfxcertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-PfxCertificate --- diff --git a/docset/winserver2016-ps/pki/Get-Certificate.md b/docset/winserver2016-ps/pki/Get-Certificate.md index 8545bc8e95..9634f32a6c 100644 --- a/docset/winserver2016-ps/pki/Get-Certificate.md +++ b/docset/winserver2016-ps/pki/Get-Certificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pki/get-certificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/get-certificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-Certificate --- diff --git a/docset/winserver2016-ps/pki/Get-CertificateAutoEnrollmentPolicy.md b/docset/winserver2016-ps/pki/Get-CertificateAutoEnrollmentPolicy.md index 26ee763d16..021a24d438 100644 --- a/docset/winserver2016-ps/pki/Get-CertificateAutoEnrollmentPolicy.md +++ b/docset/winserver2016-ps/pki/Get-CertificateAutoEnrollmentPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pki/get-certificateautoenrollmentpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/get-certificateautoenrollmentpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CertificateAutoEnrollmentPolicy --- diff --git a/docset/winserver2016-ps/pki/Get-CertificateEnrollmentPolicyServer.md b/docset/winserver2016-ps/pki/Get-CertificateEnrollmentPolicyServer.md index 9adb38453a..d413b94195 100644 --- a/docset/winserver2016-ps/pki/Get-CertificateEnrollmentPolicyServer.md +++ b/docset/winserver2016-ps/pki/Get-CertificateEnrollmentPolicyServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pki/get-certificateenrollmentpolicyserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/get-certificateenrollmentpolicyserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CertificateEnrollmentPolicyServer --- diff --git a/docset/winserver2016-ps/pki/Get-CertificateNotificationTask.md b/docset/winserver2016-ps/pki/Get-CertificateNotificationTask.md index d694ec1ad4..5447b2a313 100644 --- a/docset/winserver2016-ps/pki/Get-CertificateNotificationTask.md +++ b/docset/winserver2016-ps/pki/Get-CertificateNotificationTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pki/get-certificatenotificationtask?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/get-certificatenotificationtask?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CertificateNotificationTask --- diff --git a/docset/winserver2016-ps/pki/Get-PfxData.md b/docset/winserver2016-ps/pki/Get-PfxData.md index b56b15fd10..981d78a5dc 100644 --- a/docset/winserver2016-ps/pki/Get-PfxData.md +++ b/docset/winserver2016-ps/pki/Get-PfxData.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pki/get-pfxdata?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/get-pfxdata?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PfxData --- diff --git a/docset/winserver2016-ps/pki/Import-Certificate.md b/docset/winserver2016-ps/pki/Import-Certificate.md index fe1b7d0a75..ea78965e77 100644 --- a/docset/winserver2016-ps/pki/Import-Certificate.md +++ b/docset/winserver2016-ps/pki/Import-Certificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pki/import-certificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/import-certificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-Certificate --- diff --git a/docset/winserver2016-ps/pki/Import-PfxCertificate.md b/docset/winserver2016-ps/pki/Import-PfxCertificate.md index 9b44b76cea..063076ebcc 100644 --- a/docset/winserver2016-ps/pki/Import-PfxCertificate.md +++ b/docset/winserver2016-ps/pki/Import-PfxCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pki/import-pfxcertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/import-pfxcertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-PfxCertificate --- diff --git a/docset/winserver2016-ps/pki/New-CertificateNotificationTask.md b/docset/winserver2016-ps/pki/New-CertificateNotificationTask.md index e77058532c..cf1ba44891 100644 --- a/docset/winserver2016-ps/pki/New-CertificateNotificationTask.md +++ b/docset/winserver2016-ps/pki/New-CertificateNotificationTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pki/new-certificatenotificationtask?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/new-certificatenotificationtask?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-CertificateNotificationTask --- diff --git a/docset/winserver2016-ps/pki/New-SelfSignedCertificate.md b/docset/winserver2016-ps/pki/New-SelfSignedCertificate.md index fc294ad970..0bfd24be6d 100644 --- a/docset/winserver2016-ps/pki/New-SelfSignedCertificate.md +++ b/docset/winserver2016-ps/pki/New-SelfSignedCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 10/06/2019 -online version: https://docs.microsoft.com/powershell/module/pki/new-selfsignedcertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/new-selfsignedcertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-SelfSignedCertificate --- diff --git a/docset/winserver2016-ps/pki/Remove-CertificateEnrollmentPolicyServer.md b/docset/winserver2016-ps/pki/Remove-CertificateEnrollmentPolicyServer.md index ecd914cc71..789f6e0b81 100644 --- a/docset/winserver2016-ps/pki/Remove-CertificateEnrollmentPolicyServer.md +++ b/docset/winserver2016-ps/pki/Remove-CertificateEnrollmentPolicyServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pki/remove-certificateenrollmentpolicyserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/remove-certificateenrollmentpolicyserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-CertificateEnrollmentPolicyServer --- diff --git a/docset/winserver2016-ps/pki/Remove-CertificateNotificationTask.md b/docset/winserver2016-ps/pki/Remove-CertificateNotificationTask.md index 0a393ae82a..6bf0e1f23f 100644 --- a/docset/winserver2016-ps/pki/Remove-CertificateNotificationTask.md +++ b/docset/winserver2016-ps/pki/Remove-CertificateNotificationTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pki/remove-certificatenotificationtask?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/remove-certificatenotificationtask?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-CertificateNotificationTask --- diff --git a/docset/winserver2016-ps/pki/Set-CertificateAutoEnrollmentPolicy.md b/docset/winserver2016-ps/pki/Set-CertificateAutoEnrollmentPolicy.md index b2e624ce91..ad8d8e5705 100644 --- a/docset/winserver2016-ps/pki/Set-CertificateAutoEnrollmentPolicy.md +++ b/docset/winserver2016-ps/pki/Set-CertificateAutoEnrollmentPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pki/set-certificateautoenrollmentpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/set-certificateautoenrollmentpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-CertificateAutoEnrollmentPolicy --- diff --git a/docset/winserver2016-ps/pki/Switch-Certificate.md b/docset/winserver2016-ps/pki/Switch-Certificate.md index 7f4376166b..fc4a042f47 100644 --- a/docset/winserver2016-ps/pki/Switch-Certificate.md +++ b/docset/winserver2016-ps/pki/Switch-Certificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pki/switch-certificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/switch-certificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Switch-Certificate --- diff --git a/docset/winserver2016-ps/pki/Test-Certificate.md b/docset/winserver2016-ps/pki/Test-Certificate.md index 7fbba25ffc..2b408d960e 100644 --- a/docset/winserver2016-ps/pki/Test-Certificate.md +++ b/docset/winserver2016-ps/pki/Test-Certificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pki/test-certificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/test-certificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-Certificate --- diff --git a/docset/winserver2016-ps/platformidentifier/Get-PlatformIdentifier.md b/docset/winserver2016-ps/platformidentifier/Get-PlatformIdentifier.md index f83a0e9f15..2638362a01 100644 --- a/docset/winserver2016-ps/platformidentifier/Get-PlatformIdentifier.md +++ b/docset/winserver2016-ps/platformidentifier/Get-PlatformIdentifier.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_PlatformIdentifier.cdxml-help.xml Module Name: PlatformIdentifier ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/platformidentifier/get-platformidentifier?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/platformidentifier/get-platformidentifier?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PlatformIdentifier --- diff --git a/docset/winserver2016-ps/pnpdevice/Disable-PnpDevice.md b/docset/winserver2016-ps/pnpdevice/Disable-PnpDevice.md index 1d62b17a1e..8862355842 100644 --- a/docset/winserver2016-ps/pnpdevice/Disable-PnpDevice.md +++ b/docset/winserver2016-ps/pnpdevice/Disable-PnpDevice.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PnpDevice.cdxml-help.xml Module Name: PnpDevice ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pnpdevice/disable-pnpdevice?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pnpdevice/disable-pnpdevice?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-PnpDevice --- diff --git a/docset/winserver2016-ps/pnpdevice/Enable-PnpDevice.md b/docset/winserver2016-ps/pnpdevice/Enable-PnpDevice.md index 99610e13d9..70dad8c728 100644 --- a/docset/winserver2016-ps/pnpdevice/Enable-PnpDevice.md +++ b/docset/winserver2016-ps/pnpdevice/Enable-PnpDevice.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PnpDevice.cdxml-help.xml Module Name: PnpDevice ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pnpdevice/enable-pnpdevice?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pnpdevice/enable-pnpdevice?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-PnpDevice --- diff --git a/docset/winserver2016-ps/pnpdevice/Get-PnpDevice.md b/docset/winserver2016-ps/pnpdevice/Get-PnpDevice.md index bdf1e10450..ef9ca08ec8 100644 --- a/docset/winserver2016-ps/pnpdevice/Get-PnpDevice.md +++ b/docset/winserver2016-ps/pnpdevice/Get-PnpDevice.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PnpDevice.cdxml-help.xml Module Name: PnpDevice ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pnpdevice/get-pnpdevice?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pnpdevice/get-pnpdevice?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PnpDevice --- diff --git a/docset/winserver2016-ps/pnpdevice/Get-PnpDeviceProperty.md b/docset/winserver2016-ps/pnpdevice/Get-PnpDeviceProperty.md index befdd07121..74b44cb2b2 100644 --- a/docset/winserver2016-ps/pnpdevice/Get-PnpDeviceProperty.md +++ b/docset/winserver2016-ps/pnpdevice/Get-PnpDeviceProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PnpDevice.cdxml-help.xml Module Name: PnpDevice ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pnpdevice/get-pnpdeviceproperty?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pnpdevice/get-pnpdeviceproperty?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PnpDeviceProperty --- diff --git a/docset/winserver2016-ps/printmanagement/Add-Printer.md b/docset/winserver2016-ps/printmanagement/Add-Printer.md index eec8bb2f5d..c90cf8d7d2 100644 --- a/docset/winserver2016-ps/printmanagement/Add-Printer.md +++ b/docset/winserver2016-ps/printmanagement/Add-Printer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_Printer_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/printmanagement/add-printer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/add-printer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-Printer --- diff --git a/docset/winserver2016-ps/printmanagement/Add-PrinterDriver.md b/docset/winserver2016-ps/printmanagement/Add-PrinterDriver.md index 3f1e7e0a58..bc5509ee02 100644 --- a/docset/winserver2016-ps/printmanagement/Add-PrinterDriver.md +++ b/docset/winserver2016-ps/printmanagement/Add-PrinterDriver.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_PrinterDriver_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/printmanagement/add-printerdriver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/add-printerdriver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-PrinterDriver --- diff --git a/docset/winserver2016-ps/printmanagement/Add-PrinterPort.md b/docset/winserver2016-ps/printmanagement/Add-PrinterPort.md index 26ff209f9f..c7fb7a0fda 100644 --- a/docset/winserver2016-ps/printmanagement/Add-PrinterPort.md +++ b/docset/winserver2016-ps/printmanagement/Add-PrinterPort.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_PrinterPortTasks_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/printmanagement/add-printerport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/add-printerport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-PrinterPort --- diff --git a/docset/winserver2016-ps/printmanagement/Get-PrintConfiguration.md b/docset/winserver2016-ps/printmanagement/Get-PrintConfiguration.md index 236821088a..1a72bb4da6 100644 --- a/docset/winserver2016-ps/printmanagement/Get-PrintConfiguration.md +++ b/docset/winserver2016-ps/printmanagement/Get-PrintConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_PrinterConfiguration_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/printmanagement/get-printconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/get-printconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PrintConfiguration --- diff --git a/docset/winserver2016-ps/printmanagement/Get-PrintJob.md b/docset/winserver2016-ps/printmanagement/Get-PrintJob.md index b84eca0880..bc5119cf1a 100644 --- a/docset/winserver2016-ps/printmanagement/Get-PrintJob.md +++ b/docset/winserver2016-ps/printmanagement/Get-PrintJob.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_PrintJob_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/printmanagement/get-printjob?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/get-printjob?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PrintJob --- diff --git a/docset/winserver2016-ps/printmanagement/Get-Printer.md b/docset/winserver2016-ps/printmanagement/Get-Printer.md index ce82dfba92..6030b2c25e 100644 --- a/docset/winserver2016-ps/printmanagement/Get-Printer.md +++ b/docset/winserver2016-ps/printmanagement/Get-Printer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_Printer_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/printmanagement/get-printer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/get-printer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-Printer --- diff --git a/docset/winserver2016-ps/printmanagement/Get-PrinterDriver.md b/docset/winserver2016-ps/printmanagement/Get-PrinterDriver.md index 5edb1f8ca6..2ff2cea212 100644 --- a/docset/winserver2016-ps/printmanagement/Get-PrinterDriver.md +++ b/docset/winserver2016-ps/printmanagement/Get-PrinterDriver.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_PrinterDriver_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/printmanagement/get-printerdriver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/get-printerdriver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PrinterDriver --- diff --git a/docset/winserver2016-ps/printmanagement/Get-PrinterPort.md b/docset/winserver2016-ps/printmanagement/Get-PrinterPort.md index fb2f0c1fd0..e7e1b3e307 100644 --- a/docset/winserver2016-ps/printmanagement/Get-PrinterPort.md +++ b/docset/winserver2016-ps/printmanagement/Get-PrinterPort.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_PrinterPort_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/printmanagement/get-printerport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/get-printerport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PrinterPort --- diff --git a/docset/winserver2016-ps/printmanagement/Get-PrinterProperty.md b/docset/winserver2016-ps/printmanagement/Get-PrinterProperty.md index 4398f03363..1847cf1583 100644 --- a/docset/winserver2016-ps/printmanagement/Get-PrinterProperty.md +++ b/docset/winserver2016-ps/printmanagement/Get-PrinterProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_PrinterProperty_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/printmanagement/get-printerproperty?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/get-printerproperty?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PrinterProperty --- diff --git a/docset/winserver2016-ps/printmanagement/Read-PrinterNfcTag.md b/docset/winserver2016-ps/printmanagement/Read-PrinterNfcTag.md index eec3b2c824..10a6cab7d1 100644 --- a/docset/winserver2016-ps/printmanagement/Read-PrinterNfcTag.md +++ b/docset/winserver2016-ps/printmanagement/Read-PrinterNfcTag.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_PrinterNfcTagTasks_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/printmanagement/read-printernfctag?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/read-printernfctag?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Read-PrinterNfcTag --- diff --git a/docset/winserver2016-ps/printmanagement/Remove-PrintJob.md b/docset/winserver2016-ps/printmanagement/Remove-PrintJob.md index 92f2803855..87fa16f5f7 100644 --- a/docset/winserver2016-ps/printmanagement/Remove-PrintJob.md +++ b/docset/winserver2016-ps/printmanagement/Remove-PrintJob.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_PrintJob_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/printmanagement/remove-printjob?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/remove-printjob?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-PrintJob --- diff --git a/docset/winserver2016-ps/printmanagement/Remove-Printer.md b/docset/winserver2016-ps/printmanagement/Remove-Printer.md index 8382f390f2..e2b2426a4c 100644 --- a/docset/winserver2016-ps/printmanagement/Remove-Printer.md +++ b/docset/winserver2016-ps/printmanagement/Remove-Printer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_Printer_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/printmanagement/remove-printer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/remove-printer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-Printer --- diff --git a/docset/winserver2016-ps/printmanagement/Remove-PrinterDriver.md b/docset/winserver2016-ps/printmanagement/Remove-PrinterDriver.md index d67ac621a7..74c48073a2 100644 --- a/docset/winserver2016-ps/printmanagement/Remove-PrinterDriver.md +++ b/docset/winserver2016-ps/printmanagement/Remove-PrinterDriver.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_PrinterDriver_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/printmanagement/remove-printerdriver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/remove-printerdriver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-PrinterDriver --- diff --git a/docset/winserver2016-ps/printmanagement/Remove-PrinterPort.md b/docset/winserver2016-ps/printmanagement/Remove-PrinterPort.md index 66174580b6..e97eebeb65 100644 --- a/docset/winserver2016-ps/printmanagement/Remove-PrinterPort.md +++ b/docset/winserver2016-ps/printmanagement/Remove-PrinterPort.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_PrinterPort_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/printmanagement/remove-printerport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/remove-printerport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-PrinterPort --- diff --git a/docset/winserver2016-ps/printmanagement/Rename-Printer.md b/docset/winserver2016-ps/printmanagement/Rename-Printer.md index 10afeaaf70..927dd76731 100644 --- a/docset/winserver2016-ps/printmanagement/Rename-Printer.md +++ b/docset/winserver2016-ps/printmanagement/Rename-Printer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_Printer_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/printmanagement/rename-printer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/rename-printer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-Printer --- diff --git a/docset/winserver2016-ps/printmanagement/Restart-PrintJob.md b/docset/winserver2016-ps/printmanagement/Restart-PrintJob.md index f8e53288a3..b2d9290669 100644 --- a/docset/winserver2016-ps/printmanagement/Restart-PrintJob.md +++ b/docset/winserver2016-ps/printmanagement/Restart-PrintJob.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_PrintJob_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/printmanagement/restart-printjob?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/restart-printjob?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restart-PrintJob --- diff --git a/docset/winserver2016-ps/printmanagement/Resume-PrintJob.md b/docset/winserver2016-ps/printmanagement/Resume-PrintJob.md index acfd1da959..c4b8eaf617 100644 --- a/docset/winserver2016-ps/printmanagement/Resume-PrintJob.md +++ b/docset/winserver2016-ps/printmanagement/Resume-PrintJob.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_PrintJob_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/printmanagement/resume-printjob?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/resume-printjob?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-PrintJob --- diff --git a/docset/winserver2016-ps/printmanagement/Set-PrintConfiguration.md b/docset/winserver2016-ps/printmanagement/Set-PrintConfiguration.md index b203946f1f..36e1802d32 100644 --- a/docset/winserver2016-ps/printmanagement/Set-PrintConfiguration.md +++ b/docset/winserver2016-ps/printmanagement/Set-PrintConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_PrinterConfiguration_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/printmanagement/set-printconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/set-printconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-PrintConfiguration --- diff --git a/docset/winserver2016-ps/printmanagement/Set-Printer.md b/docset/winserver2016-ps/printmanagement/Set-Printer.md index 4c92b98da3..2e3c36f87a 100644 --- a/docset/winserver2016-ps/printmanagement/Set-Printer.md +++ b/docset/winserver2016-ps/printmanagement/Set-Printer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_Printer_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/printmanagement/set-printer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/set-printer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-Printer --- diff --git a/docset/winserver2016-ps/printmanagement/Set-PrinterProperty.md b/docset/winserver2016-ps/printmanagement/Set-PrinterProperty.md index 84f24ace4d..7d160e6b1f 100644 --- a/docset/winserver2016-ps/printmanagement/Set-PrinterProperty.md +++ b/docset/winserver2016-ps/printmanagement/Set-PrinterProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_PrinterProperty_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/printmanagement/set-printerproperty?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/set-printerproperty?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-PrinterProperty --- diff --git a/docset/winserver2016-ps/printmanagement/Suspend-PrintJob.md b/docset/winserver2016-ps/printmanagement/Suspend-PrintJob.md index 24f87e957b..8b6bf9a8f9 100644 --- a/docset/winserver2016-ps/printmanagement/Suspend-PrintJob.md +++ b/docset/winserver2016-ps/printmanagement/Suspend-PrintJob.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_PrintJob_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/printmanagement/suspend-printjob?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/suspend-printjob?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-PrintJob --- diff --git a/docset/winserver2016-ps/printmanagement/Write-PrinterNfcTag.md b/docset/winserver2016-ps/printmanagement/Write-PrinterNfcTag.md index 65f81d8923..709c2b9848 100644 --- a/docset/winserver2016-ps/printmanagement/Write-PrinterNfcTag.md +++ b/docset/winserver2016-ps/printmanagement/Write-PrinterNfcTag.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_PrinterNfcTagTasks_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/printmanagement/write-printernfctag?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/write-printernfctag?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Write-PrinterNfcTag --- diff --git a/docset/winserver2016-ps/processmitigations/ConvertTo-ProcessMitigationPolicy.md b/docset/winserver2016-ps/processmitigations/ConvertTo-ProcessMitigationPolicy.md index e32e308b67..1b01354cb0 100644 --- a/docset/winserver2016-ps/processmitigations/ConvertTo-ProcessMitigationPolicy.md +++ b/docset/winserver2016-ps/processmitigations/ConvertTo-ProcessMitigationPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ProcessMitigations.dll-Help.xml Module Name: ProcessMitigations ms.date: 03/29/2017 -online version: https://docs.microsoft.com/powershell/module/processmitigations/convertto-processmitigationpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/processmitigations/convertto-processmitigationpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: ConvertTo-ProcessMitigationPolicy --- diff --git a/docset/winserver2016-ps/processmitigations/Get-ProcessMitigation.md b/docset/winserver2016-ps/processmitigations/Get-ProcessMitigation.md index 619cfb9e66..ee19988c52 100644 --- a/docset/winserver2016-ps/processmitigations/Get-ProcessMitigation.md +++ b/docset/winserver2016-ps/processmitigations/Get-ProcessMitigation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ProcessMitigations.dll-Help.xml Module Name: ProcessMitigations ms.date: 03/29/2017 -online version: https://docs.microsoft.com/powershell/module/processmitigations/get-processmitigation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/processmitigations/get-processmitigation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ProcessMitigation --- diff --git a/docset/winserver2016-ps/processmitigations/Set-ProcessMitigation.md b/docset/winserver2016-ps/processmitigations/Set-ProcessMitigation.md index c154fb9e81..32857c0b17 100644 --- a/docset/winserver2016-ps/processmitigations/Set-ProcessMitigation.md +++ b/docset/winserver2016-ps/processmitigations/Set-ProcessMitigation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ProcessMitigations.dll-Help.xml Module Name: ProcessMitigations ms.date: 03/29/2017 -online version: https://docs.microsoft.com/powershell/module/processmitigations/set-processmitigation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/processmitigations/set-processmitigation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ProcessMitigation --- diff --git a/docset/winserver2016-ps/provisioning/Export-Trace.md b/docset/winserver2016-ps/provisioning/Export-Trace.md index 9de281393d..050b340186 100644 --- a/docset/winserver2016-ps/provisioning/Export-Trace.md +++ b/docset/winserver2016-ps/provisioning/Export-Trace.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: provcmdlets.dll-Help.xml Module Name: Provisioning ms.date: 05/09/2017 -online version: https://docs.microsoft.com/powershell/module/provisioning/export-trace?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/provisioning/export-trace?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-Trace --- diff --git a/docset/winserver2016-ps/remoteaccess/Add-BgpCustomRoute.md b/docset/winserver2016-ps/remoteaccess/Add-BgpCustomRoute.md index 3356a70c75..fdc281288d 100644 --- a/docset/winserver2016-ps/remoteaccess/Add-BgpCustomRoute.md +++ b/docset/winserver2016-ps/remoteaccess/Add-BgpCustomRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpCustomRoute_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-bgpcustomroute?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-bgpcustomroute?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-BgpCustomRoute --- diff --git a/docset/winserver2016-ps/remoteaccess/Add-BgpPeer.md b/docset/winserver2016-ps/remoteaccess/Add-BgpPeer.md index 50b814b2f3..28220a53c3 100644 --- a/docset/winserver2016-ps/remoteaccess/Add-BgpPeer.md +++ b/docset/winserver2016-ps/remoteaccess/Add-BgpPeer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpPeer_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-bgppeer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-bgppeer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-BgpPeer --- diff --git a/docset/winserver2016-ps/remoteaccess/Add-BgpRouteAggregate.md b/docset/winserver2016-ps/remoteaccess/Add-BgpRouteAggregate.md index d049fc5544..c7e6b9fd85 100644 --- a/docset/winserver2016-ps/remoteaccess/Add-BgpRouteAggregate.md +++ b/docset/winserver2016-ps/remoteaccess/Add-BgpRouteAggregate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRouteAggregate_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-bgprouteaggregate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-bgprouteaggregate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-BgpRouteAggregate --- diff --git a/docset/winserver2016-ps/remoteaccess/Add-BgpRouter.md b/docset/winserver2016-ps/remoteaccess/Add-BgpRouter.md index 62484c50ca..f733795a53 100644 --- a/docset/winserver2016-ps/remoteaccess/Add-BgpRouter.md +++ b/docset/winserver2016-ps/remoteaccess/Add-BgpRouter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRouter_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-bgprouter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-bgprouter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-BgpRouter --- diff --git a/docset/winserver2016-ps/remoteaccess/Add-BgpRoutingPolicy.md b/docset/winserver2016-ps/remoteaccess/Add-BgpRoutingPolicy.md index 3965505297..5c61a302c1 100644 --- a/docset/winserver2016-ps/remoteaccess/Add-BgpRoutingPolicy.md +++ b/docset/winserver2016-ps/remoteaccess/Add-BgpRoutingPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRoutingPolicy_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-bgproutingpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-bgproutingpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-BgpRoutingPolicy --- diff --git a/docset/winserver2016-ps/remoteaccess/Add-BgpRoutingPolicyForPeer.md b/docset/winserver2016-ps/remoteaccess/Add-BgpRoutingPolicyForPeer.md index 4fe1e494f3..2aaa1613b2 100644 --- a/docset/winserver2016-ps/remoteaccess/Add-BgpRoutingPolicyForPeer.md +++ b/docset/winserver2016-ps/remoteaccess/Add-BgpRoutingPolicyForPeer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRoutingPolicyForPeer_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-bgproutingpolicyforpeer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-bgproutingpolicyforpeer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-BgpRoutingPolicyForPeer --- diff --git a/docset/winserver2016-ps/remoteaccess/Add-DAAppServer.md b/docset/winserver2016-ps/remoteaccess/Add-DAAppServer.md index 836474b655..105340464a 100644 --- a/docset/winserver2016-ps/remoteaccess/Add-DAAppServer.md +++ b/docset/winserver2016-ps/remoteaccess/Add-DAAppServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAAppServer_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-daappserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-daappserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DAAppServer --- diff --git a/docset/winserver2016-ps/remoteaccess/Add-DAClient.md b/docset/winserver2016-ps/remoteaccess/Add-DAClient.md index ababfd6c61..985c5570a2 100644 --- a/docset/winserver2016-ps/remoteaccess/Add-DAClient.md +++ b/docset/winserver2016-ps/remoteaccess/Add-DAClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAClient_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-daclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-daclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DAClient --- diff --git a/docset/winserver2016-ps/remoteaccess/Add-DAClientDnsConfiguration.md b/docset/winserver2016-ps/remoteaccess/Add-DAClientDnsConfiguration.md index f276f769e5..9d4862aa7b 100644 --- a/docset/winserver2016-ps/remoteaccess/Add-DAClientDnsConfiguration.md +++ b/docset/winserver2016-ps/remoteaccess/Add-DAClientDnsConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAClientDNSConfiguration_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-daclientdnsconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-daclientdnsconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DAClientDnsConfiguration --- diff --git a/docset/winserver2016-ps/remoteaccess/Add-DAEntryPoint.md b/docset/winserver2016-ps/remoteaccess/Add-DAEntryPoint.md index 901a6664a0..7f4cc831e1 100644 --- a/docset/winserver2016-ps/remoteaccess/Add-DAEntryPoint.md +++ b/docset/winserver2016-ps/remoteaccess/Add-DAEntryPoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAEntryPoint_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-daentrypoint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-daentrypoint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DAEntryPoint --- diff --git a/docset/winserver2016-ps/remoteaccess/Add-DAMgmtServer.md b/docset/winserver2016-ps/remoteaccess/Add-DAMgmtServer.md index 73cf8bb0b9..32c8484b18 100644 --- a/docset/winserver2016-ps/remoteaccess/Add-DAMgmtServer.md +++ b/docset/winserver2016-ps/remoteaccess/Add-DAMgmtServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAMgmtServer_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-damgmtserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-damgmtserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DAMgmtServer --- diff --git a/docset/winserver2016-ps/remoteaccess/Add-RemoteAccessIpFilter.md b/docset/winserver2016-ps/remoteaccess/Add-RemoteAccessIpFilter.md index f5ebea1e58..c13058806f 100644 --- a/docset/winserver2016-ps/remoteaccess/Add-RemoteAccessIpFilter.md +++ b/docset/winserver2016-ps/remoteaccess/Add-RemoteAccessIpFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_IPFilter_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-remoteaccessipfilter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-remoteaccessipfilter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-RemoteAccessIpFilter --- diff --git a/docset/winserver2016-ps/remoteaccess/Add-RemoteAccessLoadBalancerNode.md b/docset/winserver2016-ps/remoteaccess/Add-RemoteAccessLoadBalancerNode.md index 8ff8c43e89..c7210fd5b1 100644 --- a/docset/winserver2016-ps/remoteaccess/Add-RemoteAccessLoadBalancerNode.md +++ b/docset/winserver2016-ps/remoteaccess/Add-RemoteAccessLoadBalancerNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessLoadBalancerNode_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-remoteaccessloadbalancernode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-remoteaccessloadbalancernode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-RemoteAccessLoadBalancerNode --- diff --git a/docset/winserver2016-ps/remoteaccess/Add-RemoteAccessRadius.md b/docset/winserver2016-ps/remoteaccess/Add-RemoteAccessRadius.md index 2d1bae4ea8..adb1a90c97 100644 --- a/docset/winserver2016-ps/remoteaccess/Add-RemoteAccessRadius.md +++ b/docset/winserver2016-ps/remoteaccess/Add-RemoteAccessRadius.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessRADIUS_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-remoteaccessradius?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-remoteaccessradius?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-RemoteAccessRadius --- diff --git a/docset/winserver2016-ps/remoteaccess/Add-VpnIPAddressRange.md b/docset/winserver2016-ps/remoteaccess/Add-VpnIPAddressRange.md index e9e6e2efae..21fe4eceeb 100644 --- a/docset/winserver2016-ps/remoteaccess/Add-VpnIPAddressRange.md +++ b/docset/winserver2016-ps/remoteaccess/Add-VpnIPAddressRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VPNIPAddressRange_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-vpnipaddressrange?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-vpnipaddressrange?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VpnIPAddressRange --- diff --git a/docset/winserver2016-ps/remoteaccess/Add-VpnS2SInterface.md b/docset/winserver2016-ps/remoteaccess/Add-VpnS2SInterface.md index 3c35624ac1..b26001f2be 100644 --- a/docset/winserver2016-ps/remoteaccess/Add-VpnS2SInterface.md +++ b/docset/winserver2016-ps/remoteaccess/Add-VpnS2SInterface.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnS2SInterface_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-vpns2sinterface?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-vpns2sinterface?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VpnS2SInterface --- diff --git a/docset/winserver2016-ps/remoteaccess/Add-VpnSstpProxyRule.md b/docset/winserver2016-ps/remoteaccess/Add-VpnSstpProxyRule.md index ee01615cfa..43296fe4fc 100644 --- a/docset/winserver2016-ps/remoteaccess/Add-VpnSstpProxyRule.md +++ b/docset/winserver2016-ps/remoteaccess/Add-VpnSstpProxyRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnSstpProxyRule_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-vpnsstpproxyrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-vpnsstpproxyrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VpnSstpProxyRule --- diff --git a/docset/winserver2016-ps/remoteaccess/Clear-BgpRouteFlapDampening.md b/docset/winserver2016-ps/remoteaccess/Clear-BgpRouteFlapDampening.md index 5959390b39..fac3340b72 100644 --- a/docset/winserver2016-ps/remoteaccess/Clear-BgpRouteFlapDampening.md +++ b/docset/winserver2016-ps/remoteaccess/Clear-BgpRouteFlapDampening.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRouteFlapDampening_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/clear-bgprouteflapdampening?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/clear-bgprouteflapdampening?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-BgpRouteFlapDampening --- diff --git a/docset/winserver2016-ps/remoteaccess/Clear-RemoteAccessInboxAccountingStore.md b/docset/winserver2016-ps/remoteaccess/Clear-RemoteAccessInboxAccountingStore.md index 282a8a3cc0..affd97df10 100644 --- a/docset/winserver2016-ps/remoteaccess/Clear-RemoteAccessInboxAccountingStore.md +++ b/docset/winserver2016-ps/remoteaccess/Clear-RemoteAccessInboxAccountingStore.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessInboxAccountingStore_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/clear-remoteaccessinboxaccountingstore?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/clear-remoteaccessinboxaccountingstore?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-RemoteAccessInboxAccountingStore --- diff --git a/docset/winserver2016-ps/remoteaccess/Clear-VpnS2SInterfaceStatistics.md b/docset/winserver2016-ps/remoteaccess/Clear-VpnS2SInterfaceStatistics.md index d0ce1ff0eb..9e61822da1 100644 --- a/docset/winserver2016-ps/remoteaccess/Clear-VpnS2SInterfaceStatistics.md +++ b/docset/winserver2016-ps/remoteaccess/Clear-VpnS2SInterfaceStatistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnS2SInterfaceStatistics_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/clear-vpns2sinterfacestatistics?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/clear-vpns2sinterfacestatistics?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-VpnS2SInterfaceStatistics --- diff --git a/docset/winserver2016-ps/remoteaccess/Connect-VpnS2SInterface.md b/docset/winserver2016-ps/remoteaccess/Connect-VpnS2SInterface.md index a17a364e14..59b95ae9e1 100644 --- a/docset/winserver2016-ps/remoteaccess/Connect-VpnS2SInterface.md +++ b/docset/winserver2016-ps/remoteaccess/Connect-VpnS2SInterface.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnS2SInterface_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/connect-vpns2sinterface?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/connect-vpns2sinterface?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Connect-VpnS2SInterface --- diff --git a/docset/winserver2016-ps/remoteaccess/Disable-BgpRouteFlapDampening.md b/docset/winserver2016-ps/remoteaccess/Disable-BgpRouteFlapDampening.md index 56961c1797..989b7a4c12 100644 --- a/docset/winserver2016-ps/remoteaccess/Disable-BgpRouteFlapDampening.md +++ b/docset/winserver2016-ps/remoteaccess/Disable-BgpRouteFlapDampening.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRouteFlapDampening_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/disable-bgprouteflapdampening?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/disable-bgprouteflapdampening?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-BgpRouteFlapDampening --- diff --git a/docset/winserver2016-ps/remoteaccess/Disable-DAMultiSite.md b/docset/winserver2016-ps/remoteaccess/Disable-DAMultiSite.md index 7e2e1cc40f..2a4262eb85 100644 --- a/docset/winserver2016-ps/remoteaccess/Disable-DAMultiSite.md +++ b/docset/winserver2016-ps/remoteaccess/Disable-DAMultiSite.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAMultiSite_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/disable-damultisite?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/disable-damultisite?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-DAMultiSite --- diff --git a/docset/winserver2016-ps/remoteaccess/Disable-DAOtpAuthentication.md b/docset/winserver2016-ps/remoteaccess/Disable-DAOtpAuthentication.md index a99b4d5e07..b9aae53dc3 100644 --- a/docset/winserver2016-ps/remoteaccess/Disable-DAOtpAuthentication.md +++ b/docset/winserver2016-ps/remoteaccess/Disable-DAOtpAuthentication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAOtpAuthentication_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/disable-daotpauthentication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/disable-daotpauthentication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-DAOtpAuthentication --- diff --git a/docset/winserver2016-ps/remoteaccess/Disable-RemoteAccessRoutingDomain.md b/docset/winserver2016-ps/remoteaccess/Disable-RemoteAccessRoutingDomain.md index 895d94b85c..15c4b5f554 100644 --- a/docset/winserver2016-ps/remoteaccess/Disable-RemoteAccessRoutingDomain.md +++ b/docset/winserver2016-ps/remoteaccess/Disable-RemoteAccessRoutingDomain.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessRoutingDomain_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/disable-remoteaccessroutingdomain?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/disable-remoteaccessroutingdomain?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-RemoteAccessRoutingDomain --- diff --git a/docset/winserver2016-ps/remoteaccess/Disconnect-VpnS2SInterface.md b/docset/winserver2016-ps/remoteaccess/Disconnect-VpnS2SInterface.md index a60d5e08af..47a66a7d12 100644 --- a/docset/winserver2016-ps/remoteaccess/Disconnect-VpnS2SInterface.md +++ b/docset/winserver2016-ps/remoteaccess/Disconnect-VpnS2SInterface.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnS2SInterface_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/disconnect-vpns2sinterface?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/disconnect-vpns2sinterface?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disconnect-VpnS2SInterface --- diff --git a/docset/winserver2016-ps/remoteaccess/Disconnect-VpnUser.md b/docset/winserver2016-ps/remoteaccess/Disconnect-VpnUser.md index cce8466cab..4e3c458c8d 100644 --- a/docset/winserver2016-ps/remoteaccess/Disconnect-VpnUser.md +++ b/docset/winserver2016-ps/remoteaccess/Disconnect-VpnUser.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VPNUser_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/disconnect-vpnuser?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/disconnect-vpnuser?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disconnect-VpnUser --- diff --git a/docset/winserver2016-ps/remoteaccess/Enable-BgpRouteFlapDampening.md b/docset/winserver2016-ps/remoteaccess/Enable-BgpRouteFlapDampening.md index b02ca8f824..0af29fb637 100644 --- a/docset/winserver2016-ps/remoteaccess/Enable-BgpRouteFlapDampening.md +++ b/docset/winserver2016-ps/remoteaccess/Enable-BgpRouteFlapDampening.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRouteFlapDampening_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/enable-bgprouteflapdampening?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/enable-bgprouteflapdampening?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-BgpRouteFlapDampening --- diff --git a/docset/winserver2016-ps/remoteaccess/Enable-DAMultiSite.md b/docset/winserver2016-ps/remoteaccess/Enable-DAMultiSite.md index e3407382f8..75c68a2ab9 100644 --- a/docset/winserver2016-ps/remoteaccess/Enable-DAMultiSite.md +++ b/docset/winserver2016-ps/remoteaccess/Enable-DAMultiSite.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAMultiSite_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/enable-damultisite?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/enable-damultisite?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-DAMultiSite --- diff --git a/docset/winserver2016-ps/remoteaccess/Enable-DAOtpAuthentication.md b/docset/winserver2016-ps/remoteaccess/Enable-DAOtpAuthentication.md index 6755027f3f..61e359e364 100644 --- a/docset/winserver2016-ps/remoteaccess/Enable-DAOtpAuthentication.md +++ b/docset/winserver2016-ps/remoteaccess/Enable-DAOtpAuthentication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAOtpAuthentication_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/enable-daotpauthentication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/enable-daotpauthentication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-DAOtpAuthentication --- diff --git a/docset/winserver2016-ps/remoteaccess/Enable-RemoteAccessRoutingDomain.md b/docset/winserver2016-ps/remoteaccess/Enable-RemoteAccessRoutingDomain.md index 8daf9b84df..2d3fca4a25 100644 --- a/docset/winserver2016-ps/remoteaccess/Enable-RemoteAccessRoutingDomain.md +++ b/docset/winserver2016-ps/remoteaccess/Enable-RemoteAccessRoutingDomain.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessRoutingDomain_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/enable-remoteaccessroutingdomain?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/enable-remoteaccessroutingdomain?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-RemoteAccessRoutingDomain --- diff --git a/docset/winserver2016-ps/remoteaccess/Get-BgpCustomRoute.md b/docset/winserver2016-ps/remoteaccess/Get-BgpCustomRoute.md index 4cf988914e..0d26b11b59 100644 --- a/docset/winserver2016-ps/remoteaccess/Get-BgpCustomRoute.md +++ b/docset/winserver2016-ps/remoteaccess/Get-BgpCustomRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpCustomRoute_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-bgpcustomroute?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-bgpcustomroute?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BgpCustomRoute --- diff --git a/docset/winserver2016-ps/remoteaccess/Get-BgpPeer.md b/docset/winserver2016-ps/remoteaccess/Get-BgpPeer.md index 125e33963f..90d9db4580 100644 --- a/docset/winserver2016-ps/remoteaccess/Get-BgpPeer.md +++ b/docset/winserver2016-ps/remoteaccess/Get-BgpPeer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpPeer_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-bgppeer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-bgppeer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BgpPeer --- diff --git a/docset/winserver2016-ps/remoteaccess/Get-BgpRouteAggregate.md b/docset/winserver2016-ps/remoteaccess/Get-BgpRouteAggregate.md index 1ff5fd96e7..a2df48021f 100644 --- a/docset/winserver2016-ps/remoteaccess/Get-BgpRouteAggregate.md +++ b/docset/winserver2016-ps/remoteaccess/Get-BgpRouteAggregate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRouteAggregate_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-bgprouteaggregate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-bgprouteaggregate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BgpRouteAggregate --- diff --git a/docset/winserver2016-ps/remoteaccess/Get-BgpRouteFlapDampening.md b/docset/winserver2016-ps/remoteaccess/Get-BgpRouteFlapDampening.md index de06987239..dd19554bb9 100644 --- a/docset/winserver2016-ps/remoteaccess/Get-BgpRouteFlapDampening.md +++ b/docset/winserver2016-ps/remoteaccess/Get-BgpRouteFlapDampening.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRouteFlapDampening_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-bgprouteflapdampening?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-bgprouteflapdampening?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BgpRouteFlapDampening --- diff --git a/docset/winserver2016-ps/remoteaccess/Get-BgpRouteInformation.md b/docset/winserver2016-ps/remoteaccess/Get-BgpRouteInformation.md index 2a1a932653..52f147ee99 100644 --- a/docset/winserver2016-ps/remoteaccess/Get-BgpRouteInformation.md +++ b/docset/winserver2016-ps/remoteaccess/Get-BgpRouteInformation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRoute_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-bgprouteinformation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-bgprouteinformation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BgpRouteInformation --- diff --git a/docset/winserver2016-ps/remoteaccess/Get-BgpRouter.md b/docset/winserver2016-ps/remoteaccess/Get-BgpRouter.md index ffc4babbf1..bb07a96c4b 100644 --- a/docset/winserver2016-ps/remoteaccess/Get-BgpRouter.md +++ b/docset/winserver2016-ps/remoteaccess/Get-BgpRouter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRouter_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-bgprouter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-bgprouter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BgpRouter --- diff --git a/docset/winserver2016-ps/remoteaccess/Get-BgpRoutingPolicy.md b/docset/winserver2016-ps/remoteaccess/Get-BgpRoutingPolicy.md index 9bc139467f..a6213ced14 100644 --- a/docset/winserver2016-ps/remoteaccess/Get-BgpRoutingPolicy.md +++ b/docset/winserver2016-ps/remoteaccess/Get-BgpRoutingPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRoutingPolicy_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-bgproutingpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-bgproutingpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BgpRoutingPolicy --- diff --git a/docset/winserver2016-ps/remoteaccess/Get-BgpStatistics.md b/docset/winserver2016-ps/remoteaccess/Get-BgpStatistics.md index f8c34391d5..7dc17cb990 100644 --- a/docset/winserver2016-ps/remoteaccess/Get-BgpStatistics.md +++ b/docset/winserver2016-ps/remoteaccess/Get-BgpStatistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpStatistics_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-bgpstatistics?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-bgpstatistics?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BgpStatistics --- diff --git a/docset/winserver2016-ps/remoteaccess/Get-DAAppServer.md b/docset/winserver2016-ps/remoteaccess/Get-DAAppServer.md index b44aeefa29..c4094a9f08 100644 --- a/docset/winserver2016-ps/remoteaccess/Get-DAAppServer.md +++ b/docset/winserver2016-ps/remoteaccess/Get-DAAppServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAAppServer_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-daappserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-daappserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DAAppServer --- diff --git a/docset/winserver2016-ps/remoteaccess/Get-DAClient.md b/docset/winserver2016-ps/remoteaccess/Get-DAClient.md index 419e2981ce..d4583910c7 100644 --- a/docset/winserver2016-ps/remoteaccess/Get-DAClient.md +++ b/docset/winserver2016-ps/remoteaccess/Get-DAClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAClient_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-daclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-daclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DAClient --- diff --git a/docset/winserver2016-ps/remoteaccess/Get-DAClientDnsConfiguration.md b/docset/winserver2016-ps/remoteaccess/Get-DAClientDnsConfiguration.md index cd3acc9537..ff9d53b838 100644 --- a/docset/winserver2016-ps/remoteaccess/Get-DAClientDnsConfiguration.md +++ b/docset/winserver2016-ps/remoteaccess/Get-DAClientDnsConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAClientDNSConfiguration_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-daclientdnsconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-daclientdnsconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DAClientDnsConfiguration --- diff --git a/docset/winserver2016-ps/remoteaccess/Get-DAEntryPoint.md b/docset/winserver2016-ps/remoteaccess/Get-DAEntryPoint.md index 56510efb89..3430ad190b 100644 --- a/docset/winserver2016-ps/remoteaccess/Get-DAEntryPoint.md +++ b/docset/winserver2016-ps/remoteaccess/Get-DAEntryPoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAEntryPoint_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-daentrypoint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-daentrypoint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DAEntryPoint --- diff --git a/docset/winserver2016-ps/remoteaccess/Get-DAEntryPointDC.md b/docset/winserver2016-ps/remoteaccess/Get-DAEntryPointDC.md index e304431142..7d891f511f 100644 --- a/docset/winserver2016-ps/remoteaccess/Get-DAEntryPointDC.md +++ b/docset/winserver2016-ps/remoteaccess/Get-DAEntryPointDC.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAEntryPointDC_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-daentrypointdc?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-daentrypointdc?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DAEntryPointDC --- diff --git a/docset/winserver2016-ps/remoteaccess/Get-DAMgmtServer.md b/docset/winserver2016-ps/remoteaccess/Get-DAMgmtServer.md index ef68b0e6e3..491f0160e9 100644 --- a/docset/winserver2016-ps/remoteaccess/Get-DAMgmtServer.md +++ b/docset/winserver2016-ps/remoteaccess/Get-DAMgmtServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAMgmtServer_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-damgmtserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-damgmtserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DAMgmtServer --- diff --git a/docset/winserver2016-ps/remoteaccess/Get-DAMultiSite.md b/docset/winserver2016-ps/remoteaccess/Get-DAMultiSite.md index 62e62575a2..d12723d0af 100644 --- a/docset/winserver2016-ps/remoteaccess/Get-DAMultiSite.md +++ b/docset/winserver2016-ps/remoteaccess/Get-DAMultiSite.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAMultiSite_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-damultisite?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-damultisite?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DAMultiSite --- diff --git a/docset/winserver2016-ps/remoteaccess/Get-DANetworkLocationServer.md b/docset/winserver2016-ps/remoteaccess/Get-DANetworkLocationServer.md index 99740e8c01..0c72776c43 100644 --- a/docset/winserver2016-ps/remoteaccess/Get-DANetworkLocationServer.md +++ b/docset/winserver2016-ps/remoteaccess/Get-DANetworkLocationServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DANetworkLocationServer_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-danetworklocationserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-danetworklocationserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DANetworkLocationServer --- diff --git a/docset/winserver2016-ps/remoteaccess/Get-DAOtpAuthentication.md b/docset/winserver2016-ps/remoteaccess/Get-DAOtpAuthentication.md index 215cb12956..fe623dcb81 100644 --- a/docset/winserver2016-ps/remoteaccess/Get-DAOtpAuthentication.md +++ b/docset/winserver2016-ps/remoteaccess/Get-DAOtpAuthentication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAOtpAuthentication_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-daotpauthentication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-daotpauthentication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DAOtpAuthentication --- diff --git a/docset/winserver2016-ps/remoteaccess/Get-DAServer.md b/docset/winserver2016-ps/remoteaccess/Get-DAServer.md index ea5bace5c1..508685331f 100644 --- a/docset/winserver2016-ps/remoteaccess/Get-DAServer.md +++ b/docset/winserver2016-ps/remoteaccess/Get-DAServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAServer_v2.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-daserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-daserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DAServer --- diff --git a/docset/winserver2016-ps/remoteaccess/Get-RemoteAccess.md b/docset/winserver2016-ps/remoteaccess/Get-RemoteAccess.md index dc99f2a7d7..276016b14c 100644 --- a/docset/winserver2016-ps/remoteaccess/Get-RemoteAccess.md +++ b/docset/winserver2016-ps/remoteaccess/Get-RemoteAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccess_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-remoteaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-remoteaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RemoteAccess --- diff --git a/docset/winserver2016-ps/remoteaccess/Get-RemoteAccessAccounting.md b/docset/winserver2016-ps/remoteaccess/Get-RemoteAccessAccounting.md index 58867c19c8..d34fbeee7d 100644 --- a/docset/winserver2016-ps/remoteaccess/Get-RemoteAccessAccounting.md +++ b/docset/winserver2016-ps/remoteaccess/Get-RemoteAccessAccounting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessAccounting_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-remoteaccessaccounting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-remoteaccessaccounting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RemoteAccessAccounting --- diff --git a/docset/winserver2016-ps/remoteaccess/Get-RemoteAccessConfiguration.md b/docset/winserver2016-ps/remoteaccess/Get-RemoteAccessConfiguration.md index f908cb35a2..9d8856fc11 100644 --- a/docset/winserver2016-ps/remoteaccess/Get-RemoteAccessConfiguration.md +++ b/docset/winserver2016-ps/remoteaccess/Get-RemoteAccessConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessConfiguration_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-remoteaccessconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-remoteaccessconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RemoteAccessConfiguration --- diff --git a/docset/winserver2016-ps/remoteaccess/Get-RemoteAccessConnectionStatistics.md b/docset/winserver2016-ps/remoteaccess/Get-RemoteAccessConnectionStatistics.md index 4f6558802d..e8541f2564 100644 --- a/docset/winserver2016-ps/remoteaccess/Get-RemoteAccessConnectionStatistics.md +++ b/docset/winserver2016-ps/remoteaccess/Get-RemoteAccessConnectionStatistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessConnectionStatistics_v2.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-remoteaccessconnectionstatistics?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-remoteaccessconnectionstatistics?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RemoteAccessConnectionStatistics --- diff --git a/docset/winserver2016-ps/remoteaccess/Get-RemoteAccessConnectionStatisticsSummary.md b/docset/winserver2016-ps/remoteaccess/Get-RemoteAccessConnectionStatisticsSummary.md index a2092f0c21..ddfe14d85d 100644 --- a/docset/winserver2016-ps/remoteaccess/Get-RemoteAccessConnectionStatisticsSummary.md +++ b/docset/winserver2016-ps/remoteaccess/Get-RemoteAccessConnectionStatisticsSummary.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessConnectionStatisticsSummary_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-remoteaccessconnectionstatisticssummary?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-remoteaccessconnectionstatisticssummary?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RemoteAccessConnectionStatisticsSummary --- diff --git a/docset/winserver2016-ps/remoteaccess/Get-RemoteAccessHealth.md b/docset/winserver2016-ps/remoteaccess/Get-RemoteAccessHealth.md index e6f394af86..ce642a6544 100644 --- a/docset/winserver2016-ps/remoteaccess/Get-RemoteAccessHealth.md +++ b/docset/winserver2016-ps/remoteaccess/Get-RemoteAccessHealth.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessHealth_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-remoteaccesshealth?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-remoteaccesshealth?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RemoteAccessHealth --- diff --git a/docset/winserver2016-ps/remoteaccess/Get-RemoteAccessIpFilter.md b/docset/winserver2016-ps/remoteaccess/Get-RemoteAccessIpFilter.md index 2bd045ca82..c29bf33d7a 100644 --- a/docset/winserver2016-ps/remoteaccess/Get-RemoteAccessIpFilter.md +++ b/docset/winserver2016-ps/remoteaccess/Get-RemoteAccessIpFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_IPFilter_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-remoteaccessipfilter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-remoteaccessipfilter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RemoteAccessIpFilter --- diff --git a/docset/winserver2016-ps/remoteaccess/Get-RemoteAccessLoadBalancer.md b/docset/winserver2016-ps/remoteaccess/Get-RemoteAccessLoadBalancer.md index f8d79d0f87..3a2d74ee16 100644 --- a/docset/winserver2016-ps/remoteaccess/Get-RemoteAccessLoadBalancer.md +++ b/docset/winserver2016-ps/remoteaccess/Get-RemoteAccessLoadBalancer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessLoadBalancer_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-remoteaccessloadbalancer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-remoteaccessloadbalancer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RemoteAccessLoadBalancer --- diff --git a/docset/winserver2016-ps/remoteaccess/Get-RemoteAccessRadius.md b/docset/winserver2016-ps/remoteaccess/Get-RemoteAccessRadius.md index 3a0621b517..5d0958d88f 100644 --- a/docset/winserver2016-ps/remoteaccess/Get-RemoteAccessRadius.md +++ b/docset/winserver2016-ps/remoteaccess/Get-RemoteAccessRadius.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessRADIUS_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-remoteaccessradius?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-remoteaccessradius?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RemoteAccessRadius --- diff --git a/docset/winserver2016-ps/remoteaccess/Get-RemoteAccessRoutingDomain.md b/docset/winserver2016-ps/remoteaccess/Get-RemoteAccessRoutingDomain.md index 52d1913b0c..2e85f5c1b4 100644 --- a/docset/winserver2016-ps/remoteaccess/Get-RemoteAccessRoutingDomain.md +++ b/docset/winserver2016-ps/remoteaccess/Get-RemoteAccessRoutingDomain.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessRoutingDomain_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-remoteaccessroutingdomain?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-remoteaccessroutingdomain?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RemoteAccessRoutingDomain --- diff --git a/docset/winserver2016-ps/remoteaccess/Get-RemoteAccessUserActivity.md b/docset/winserver2016-ps/remoteaccess/Get-RemoteAccessUserActivity.md index 85aa703f64..cc99cdd33b 100644 --- a/docset/winserver2016-ps/remoteaccess/Get-RemoteAccessUserActivity.md +++ b/docset/winserver2016-ps/remoteaccess/Get-RemoteAccessUserActivity.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessUserActivity_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-remoteaccessuseractivity?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-remoteaccessuseractivity?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RemoteAccessUserActivity --- diff --git a/docset/winserver2016-ps/remoteaccess/Get-RoutingProtocolPreference.md b/docset/winserver2016-ps/remoteaccess/Get-RoutingProtocolPreference.md index 5d098152df..c456a32f32 100644 --- a/docset/winserver2016-ps/remoteaccess/Get-RoutingProtocolPreference.md +++ b/docset/winserver2016-ps/remoteaccess/Get-RoutingProtocolPreference.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RoutingProtocolPreference_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-routingprotocolpreference?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-routingprotocolpreference?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RoutingProtocolPreference --- diff --git a/docset/winserver2016-ps/remoteaccess/Get-VpnAuthProtocol.md b/docset/winserver2016-ps/remoteaccess/Get-VpnAuthProtocol.md index 285fea9f24..3f546368d0 100644 --- a/docset/winserver2016-ps/remoteaccess/Get-VpnAuthProtocol.md +++ b/docset/winserver2016-ps/remoteaccess/Get-VpnAuthProtocol.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnAuthProtocol_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-vpnauthprotocol?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-vpnauthprotocol?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VpnAuthProtocol --- diff --git a/docset/winserver2016-ps/remoteaccess/Get-VpnS2SInterface.md b/docset/winserver2016-ps/remoteaccess/Get-VpnS2SInterface.md index 316d0d0add..e803f1864b 100644 --- a/docset/winserver2016-ps/remoteaccess/Get-VpnS2SInterface.md +++ b/docset/winserver2016-ps/remoteaccess/Get-VpnS2SInterface.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnS2SInterface_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-vpns2sinterface?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-vpns2sinterface?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VpnS2SInterface --- diff --git a/docset/winserver2016-ps/remoteaccess/Get-VpnS2SInterfaceStatistics.md b/docset/winserver2016-ps/remoteaccess/Get-VpnS2SInterfaceStatistics.md index a9473c1bfd..8c0b87c02b 100644 --- a/docset/winserver2016-ps/remoteaccess/Get-VpnS2SInterfaceStatistics.md +++ b/docset/winserver2016-ps/remoteaccess/Get-VpnS2SInterfaceStatistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnS2SInterfaceStatistics_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-vpns2sinterfacestatistics?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-vpns2sinterfacestatistics?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VpnS2SInterfaceStatistics --- diff --git a/docset/winserver2016-ps/remoteaccess/Get-VpnServerConfiguration.md b/docset/winserver2016-ps/remoteaccess/Get-VpnServerConfiguration.md index 0e8b56fdf6..b7b37d0001 100644 --- a/docset/winserver2016-ps/remoteaccess/Get-VpnServerConfiguration.md +++ b/docset/winserver2016-ps/remoteaccess/Get-VpnServerConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnServerIPsecConfiguration_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-vpnserverconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-vpnserverconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VpnServerConfiguration --- diff --git a/docset/winserver2016-ps/remoteaccess/Get-VpnSstpProxyRule.md b/docset/winserver2016-ps/remoteaccess/Get-VpnSstpProxyRule.md index 4028c6eaf7..f48cfce8e8 100644 --- a/docset/winserver2016-ps/remoteaccess/Get-VpnSstpProxyRule.md +++ b/docset/winserver2016-ps/remoteaccess/Get-VpnSstpProxyRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnSstpProxyRule_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-vpnsstpproxyrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-vpnsstpproxyrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VpnSstpProxyRule --- diff --git a/docset/winserver2016-ps/remoteaccess/Install-RemoteAccess.md b/docset/winserver2016-ps/remoteaccess/Install-RemoteAccess.md index d83aaae03b..757b7b4b6a 100644 --- a/docset/winserver2016-ps/remoteaccess/Install-RemoteAccess.md +++ b/docset/winserver2016-ps/remoteaccess/Install-RemoteAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccess_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/install-remoteaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/install-remoteaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-RemoteAccess --- diff --git a/docset/winserver2016-ps/remoteaccess/New-VpnSstpProxyRule.md b/docset/winserver2016-ps/remoteaccess/New-VpnSstpProxyRule.md index 1b0084d118..6757ba7475 100644 --- a/docset/winserver2016-ps/remoteaccess/New-VpnSstpProxyRule.md +++ b/docset/winserver2016-ps/remoteaccess/New-VpnSstpProxyRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnSstpProxyRule_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/new-vpnsstpproxyrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/new-vpnsstpproxyrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VpnSstpProxyRule --- diff --git a/docset/winserver2016-ps/remoteaccess/New-VpnTrafficSelector.md b/docset/winserver2016-ps/remoteaccess/New-VpnTrafficSelector.md index 48247256f1..a4ee53201f 100644 --- a/docset/winserver2016-ps/remoteaccess/New-VpnTrafficSelector.md +++ b/docset/winserver2016-ps/remoteaccess/New-VpnTrafficSelector.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnTrafficselector_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/new-vpntrafficselector?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/new-vpntrafficselector?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VpnTrafficSelector --- diff --git a/docset/winserver2016-ps/remoteaccess/Remove-BgpCustomRoute.md b/docset/winserver2016-ps/remoteaccess/Remove-BgpCustomRoute.md index 5bd0f6db33..7bd9366d52 100644 --- a/docset/winserver2016-ps/remoteaccess/Remove-BgpCustomRoute.md +++ b/docset/winserver2016-ps/remoteaccess/Remove-BgpCustomRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpCustomRoute_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-bgpcustomroute?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-bgpcustomroute?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-BgpCustomRoute --- diff --git a/docset/winserver2016-ps/remoteaccess/Remove-BgpPeer.md b/docset/winserver2016-ps/remoteaccess/Remove-BgpPeer.md index 6cde5db176..e6d78926d3 100644 --- a/docset/winserver2016-ps/remoteaccess/Remove-BgpPeer.md +++ b/docset/winserver2016-ps/remoteaccess/Remove-BgpPeer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpPeer_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-bgppeer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-bgppeer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-BgpPeer --- diff --git a/docset/winserver2016-ps/remoteaccess/Remove-BgpRouteAggregate.md b/docset/winserver2016-ps/remoteaccess/Remove-BgpRouteAggregate.md index 53dcb2cbbf..01b3fe0fc1 100644 --- a/docset/winserver2016-ps/remoteaccess/Remove-BgpRouteAggregate.md +++ b/docset/winserver2016-ps/remoteaccess/Remove-BgpRouteAggregate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRouteAggregate_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-bgprouteaggregate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-bgprouteaggregate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-BgpRouteAggregate --- diff --git a/docset/winserver2016-ps/remoteaccess/Remove-BgpRouter.md b/docset/winserver2016-ps/remoteaccess/Remove-BgpRouter.md index a874ba695d..bcca8120cd 100644 --- a/docset/winserver2016-ps/remoteaccess/Remove-BgpRouter.md +++ b/docset/winserver2016-ps/remoteaccess/Remove-BgpRouter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRouter_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-bgprouter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-bgprouter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-BgpRouter --- diff --git a/docset/winserver2016-ps/remoteaccess/Remove-BgpRoutingPolicy.md b/docset/winserver2016-ps/remoteaccess/Remove-BgpRoutingPolicy.md index ed3cfc134f..a6977f62ab 100644 --- a/docset/winserver2016-ps/remoteaccess/Remove-BgpRoutingPolicy.md +++ b/docset/winserver2016-ps/remoteaccess/Remove-BgpRoutingPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRoutingPolicy_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-bgproutingpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-bgproutingpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-BgpRoutingPolicy --- diff --git a/docset/winserver2016-ps/remoteaccess/Remove-BgpRoutingPolicyForPeer.md b/docset/winserver2016-ps/remoteaccess/Remove-BgpRoutingPolicyForPeer.md index 8cfc1d4dbb..6fa18d6412 100644 --- a/docset/winserver2016-ps/remoteaccess/Remove-BgpRoutingPolicyForPeer.md +++ b/docset/winserver2016-ps/remoteaccess/Remove-BgpRoutingPolicyForPeer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRoutingPolicyForPeer_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-bgproutingpolicyforpeer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-bgproutingpolicyforpeer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-BgpRoutingPolicyForPeer --- diff --git a/docset/winserver2016-ps/remoteaccess/Remove-DAAppServer.md b/docset/winserver2016-ps/remoteaccess/Remove-DAAppServer.md index d24ff2d2bc..f49d9d6be0 100644 --- a/docset/winserver2016-ps/remoteaccess/Remove-DAAppServer.md +++ b/docset/winserver2016-ps/remoteaccess/Remove-DAAppServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAAppServer_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-daappserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-daappserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DAAppServer --- diff --git a/docset/winserver2016-ps/remoteaccess/Remove-DAClient.md b/docset/winserver2016-ps/remoteaccess/Remove-DAClient.md index 128618d6f6..c707f7b1c9 100644 --- a/docset/winserver2016-ps/remoteaccess/Remove-DAClient.md +++ b/docset/winserver2016-ps/remoteaccess/Remove-DAClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAClient_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-daclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-daclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DAClient --- diff --git a/docset/winserver2016-ps/remoteaccess/Remove-DAClientDnsConfiguration.md b/docset/winserver2016-ps/remoteaccess/Remove-DAClientDnsConfiguration.md index 851fb29b7c..69b806e551 100644 --- a/docset/winserver2016-ps/remoteaccess/Remove-DAClientDnsConfiguration.md +++ b/docset/winserver2016-ps/remoteaccess/Remove-DAClientDnsConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAClientDNSConfiguration_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-daclientdnsconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-daclientdnsconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DAClientDnsConfiguration --- diff --git a/docset/winserver2016-ps/remoteaccess/Remove-DAEntryPoint.md b/docset/winserver2016-ps/remoteaccess/Remove-DAEntryPoint.md index ba5d3e0962..a489c90d27 100644 --- a/docset/winserver2016-ps/remoteaccess/Remove-DAEntryPoint.md +++ b/docset/winserver2016-ps/remoteaccess/Remove-DAEntryPoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAEntryPoint_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-daentrypoint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-daentrypoint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DAEntryPoint --- diff --git a/docset/winserver2016-ps/remoteaccess/Remove-DAMgmtServer.md b/docset/winserver2016-ps/remoteaccess/Remove-DAMgmtServer.md index 30d1088b1a..623fae5d75 100644 --- a/docset/winserver2016-ps/remoteaccess/Remove-DAMgmtServer.md +++ b/docset/winserver2016-ps/remoteaccess/Remove-DAMgmtServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAMgmtServer_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-damgmtserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-damgmtserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DAMgmtServer --- diff --git a/docset/winserver2016-ps/remoteaccess/Remove-RemoteAccessIpFilter.md b/docset/winserver2016-ps/remoteaccess/Remove-RemoteAccessIpFilter.md index cae5ee6863..84eea774f3 100644 --- a/docset/winserver2016-ps/remoteaccess/Remove-RemoteAccessIpFilter.md +++ b/docset/winserver2016-ps/remoteaccess/Remove-RemoteAccessIpFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_IPFilter_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-remoteaccessipfilter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-remoteaccessipfilter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-RemoteAccessIpFilter --- diff --git a/docset/winserver2016-ps/remoteaccess/Remove-RemoteAccessLoadBalancerNode.md b/docset/winserver2016-ps/remoteaccess/Remove-RemoteAccessLoadBalancerNode.md index 1fad50797a..8509485bcd 100644 --- a/docset/winserver2016-ps/remoteaccess/Remove-RemoteAccessLoadBalancerNode.md +++ b/docset/winserver2016-ps/remoteaccess/Remove-RemoteAccessLoadBalancerNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessLoadBalancerNode_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-remoteaccessloadbalancernode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-remoteaccessloadbalancernode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-RemoteAccessLoadBalancerNode --- diff --git a/docset/winserver2016-ps/remoteaccess/Remove-RemoteAccessRadius.md b/docset/winserver2016-ps/remoteaccess/Remove-RemoteAccessRadius.md index ea3881dd00..2be0027301 100644 --- a/docset/winserver2016-ps/remoteaccess/Remove-RemoteAccessRadius.md +++ b/docset/winserver2016-ps/remoteaccess/Remove-RemoteAccessRadius.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessRADIUS_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-remoteaccessradius?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-remoteaccessradius?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-RemoteAccessRadius --- diff --git a/docset/winserver2016-ps/remoteaccess/Remove-VpnIPAddressRange.md b/docset/winserver2016-ps/remoteaccess/Remove-VpnIPAddressRange.md index b2bf50dc36..2c2bdfb253 100644 --- a/docset/winserver2016-ps/remoteaccess/Remove-VpnIPAddressRange.md +++ b/docset/winserver2016-ps/remoteaccess/Remove-VpnIPAddressRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VPNIPAddressRange_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-vpnipaddressrange?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-vpnipaddressrange?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VpnIPAddressRange --- diff --git a/docset/winserver2016-ps/remoteaccess/Remove-VpnS2SInterface.md b/docset/winserver2016-ps/remoteaccess/Remove-VpnS2SInterface.md index 8cc812834f..8b50245b71 100644 --- a/docset/winserver2016-ps/remoteaccess/Remove-VpnS2SInterface.md +++ b/docset/winserver2016-ps/remoteaccess/Remove-VpnS2SInterface.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnS2SInterface_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-vpns2sinterface?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-vpns2sinterface?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VpnS2SInterface --- diff --git a/docset/winserver2016-ps/remoteaccess/Remove-VpnSstpProxyRule.md b/docset/winserver2016-ps/remoteaccess/Remove-VpnSstpProxyRule.md index 2f6c57d26d..23131b9b51 100644 --- a/docset/winserver2016-ps/remoteaccess/Remove-VpnSstpProxyRule.md +++ b/docset/winserver2016-ps/remoteaccess/Remove-VpnSstpProxyRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnSstpProxyRule_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-vpnsstpproxyrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-vpnsstpproxyrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VpnSstpProxyRule --- diff --git a/docset/winserver2016-ps/remoteaccess/Set-BgpPeer.md b/docset/winserver2016-ps/remoteaccess/Set-BgpPeer.md index 254154a2d4..3356690f67 100644 --- a/docset/winserver2016-ps/remoteaccess/Set-BgpPeer.md +++ b/docset/winserver2016-ps/remoteaccess/Set-BgpPeer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpPeer_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-bgppeer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-bgppeer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-BgpPeer --- diff --git a/docset/winserver2016-ps/remoteaccess/Set-BgpRouteAggregate.md b/docset/winserver2016-ps/remoteaccess/Set-BgpRouteAggregate.md index 8319d13c28..8728968ecc 100644 --- a/docset/winserver2016-ps/remoteaccess/Set-BgpRouteAggregate.md +++ b/docset/winserver2016-ps/remoteaccess/Set-BgpRouteAggregate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRouteAggregate_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-bgprouteaggregate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-bgprouteaggregate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-BgpRouteAggregate --- diff --git a/docset/winserver2016-ps/remoteaccess/Set-BgpRouteFlapDampening.md b/docset/winserver2016-ps/remoteaccess/Set-BgpRouteFlapDampening.md index 768c0d38c5..91bd73f93d 100644 --- a/docset/winserver2016-ps/remoteaccess/Set-BgpRouteFlapDampening.md +++ b/docset/winserver2016-ps/remoteaccess/Set-BgpRouteFlapDampening.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRouteFlapDampening_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-bgprouteflapdampening?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-bgprouteflapdampening?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-BgpRouteFlapDampening --- diff --git a/docset/winserver2016-ps/remoteaccess/Set-BgpRouter.md b/docset/winserver2016-ps/remoteaccess/Set-BgpRouter.md index 2d524e520e..b7258d0f09 100644 --- a/docset/winserver2016-ps/remoteaccess/Set-BgpRouter.md +++ b/docset/winserver2016-ps/remoteaccess/Set-BgpRouter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRouter_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-bgprouter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-bgprouter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-BgpRouter --- diff --git a/docset/winserver2016-ps/remoteaccess/Set-BgpRoutingPolicy.md b/docset/winserver2016-ps/remoteaccess/Set-BgpRoutingPolicy.md index 2032753c41..4a7186f763 100644 --- a/docset/winserver2016-ps/remoteaccess/Set-BgpRoutingPolicy.md +++ b/docset/winserver2016-ps/remoteaccess/Set-BgpRoutingPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRoutingPolicy_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-bgproutingpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-bgproutingpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-BgpRoutingPolicy --- diff --git a/docset/winserver2016-ps/remoteaccess/Set-BgpRoutingPolicyForPeer.md b/docset/winserver2016-ps/remoteaccess/Set-BgpRoutingPolicyForPeer.md index 4c783f6902..a58ae1499c 100644 --- a/docset/winserver2016-ps/remoteaccess/Set-BgpRoutingPolicyForPeer.md +++ b/docset/winserver2016-ps/remoteaccess/Set-BgpRoutingPolicyForPeer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRoutingPolicyForPeer_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-bgproutingpolicyforpeer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-bgproutingpolicyforpeer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-BgpRoutingPolicyForPeer --- diff --git a/docset/winserver2016-ps/remoteaccess/Set-DAAppServerConnection.md b/docset/winserver2016-ps/remoteaccess/Set-DAAppServerConnection.md index 99ef8ae350..d21494cdff 100644 --- a/docset/winserver2016-ps/remoteaccess/Set-DAAppServerConnection.md +++ b/docset/winserver2016-ps/remoteaccess/Set-DAAppServerConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAAppServerConnection_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-daappserverconnection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-daappserverconnection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DAAppServerConnection --- diff --git a/docset/winserver2016-ps/remoteaccess/Set-DAClient.md b/docset/winserver2016-ps/remoteaccess/Set-DAClient.md index 4de5664d9b..68203dafc5 100644 --- a/docset/winserver2016-ps/remoteaccess/Set-DAClient.md +++ b/docset/winserver2016-ps/remoteaccess/Set-DAClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAClient_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-daclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-daclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DAClient --- diff --git a/docset/winserver2016-ps/remoteaccess/Set-DAClientDnsConfiguration.md b/docset/winserver2016-ps/remoteaccess/Set-DAClientDnsConfiguration.md index 749425d083..705731a6de 100644 --- a/docset/winserver2016-ps/remoteaccess/Set-DAClientDnsConfiguration.md +++ b/docset/winserver2016-ps/remoteaccess/Set-DAClientDnsConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAClientDNSConfiguration_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-daclientdnsconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-daclientdnsconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DAClientDnsConfiguration --- diff --git a/docset/winserver2016-ps/remoteaccess/Set-DAEntryPoint.md b/docset/winserver2016-ps/remoteaccess/Set-DAEntryPoint.md index d0c1c987fd..24ed253c95 100644 --- a/docset/winserver2016-ps/remoteaccess/Set-DAEntryPoint.md +++ b/docset/winserver2016-ps/remoteaccess/Set-DAEntryPoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAEntryPoint_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-daentrypoint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-daentrypoint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DAEntryPoint --- diff --git a/docset/winserver2016-ps/remoteaccess/Set-DAEntryPointDC.md b/docset/winserver2016-ps/remoteaccess/Set-DAEntryPointDC.md index a6ed2ad974..dca43a9051 100644 --- a/docset/winserver2016-ps/remoteaccess/Set-DAEntryPointDC.md +++ b/docset/winserver2016-ps/remoteaccess/Set-DAEntryPointDC.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAEntryPointDC_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-daentrypointdc?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-daentrypointdc?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DAEntryPointDC --- diff --git a/docset/winserver2016-ps/remoteaccess/Set-DAMultiSite.md b/docset/winserver2016-ps/remoteaccess/Set-DAMultiSite.md index 65d4f3008c..eba3c9e154 100644 --- a/docset/winserver2016-ps/remoteaccess/Set-DAMultiSite.md +++ b/docset/winserver2016-ps/remoteaccess/Set-DAMultiSite.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAMultiSite_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-damultisite?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-damultisite?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DAMultiSite --- diff --git a/docset/winserver2016-ps/remoteaccess/Set-DANetworkLocationServer.md b/docset/winserver2016-ps/remoteaccess/Set-DANetworkLocationServer.md index 48adc8b101..d733ad530a 100644 --- a/docset/winserver2016-ps/remoteaccess/Set-DANetworkLocationServer.md +++ b/docset/winserver2016-ps/remoteaccess/Set-DANetworkLocationServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DANetworkLocationServer_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-danetworklocationserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-danetworklocationserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DANetworkLocationServer --- diff --git a/docset/winserver2016-ps/remoteaccess/Set-DAOtpAuthentication.md b/docset/winserver2016-ps/remoteaccess/Set-DAOtpAuthentication.md index f816f152dc..cb4b4fbfd7 100644 --- a/docset/winserver2016-ps/remoteaccess/Set-DAOtpAuthentication.md +++ b/docset/winserver2016-ps/remoteaccess/Set-DAOtpAuthentication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAOtpAuthentication_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-daotpauthentication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-daotpauthentication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DAOtpAuthentication --- diff --git a/docset/winserver2016-ps/remoteaccess/Set-DAServer.md b/docset/winserver2016-ps/remoteaccess/Set-DAServer.md index b700b522bc..7632a6d050 100644 --- a/docset/winserver2016-ps/remoteaccess/Set-DAServer.md +++ b/docset/winserver2016-ps/remoteaccess/Set-DAServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAServer_v2.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-daserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-daserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DAServer --- diff --git a/docset/winserver2016-ps/remoteaccess/Set-RemoteAccess.md b/docset/winserver2016-ps/remoteaccess/Set-RemoteAccess.md index 010938c1cf..40d5e27229 100644 --- a/docset/winserver2016-ps/remoteaccess/Set-RemoteAccess.md +++ b/docset/winserver2016-ps/remoteaccess/Set-RemoteAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccess_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-remoteaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-remoteaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RemoteAccess --- diff --git a/docset/winserver2016-ps/remoteaccess/Set-RemoteAccessAccounting.md b/docset/winserver2016-ps/remoteaccess/Set-RemoteAccessAccounting.md index 9615f6d5a7..9d000e69bd 100644 --- a/docset/winserver2016-ps/remoteaccess/Set-RemoteAccessAccounting.md +++ b/docset/winserver2016-ps/remoteaccess/Set-RemoteAccessAccounting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessAccounting_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-remoteaccessaccounting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-remoteaccessaccounting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RemoteAccessAccounting --- diff --git a/docset/winserver2016-ps/remoteaccess/Set-RemoteAccessConfiguration.md b/docset/winserver2016-ps/remoteaccess/Set-RemoteAccessConfiguration.md index 20fe7ab617..ff334f20cb 100644 --- a/docset/winserver2016-ps/remoteaccess/Set-RemoteAccessConfiguration.md +++ b/docset/winserver2016-ps/remoteaccess/Set-RemoteAccessConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessConfiguration_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-remoteaccessconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-remoteaccessconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RemoteAccessConfiguration --- diff --git a/docset/winserver2016-ps/remoteaccess/Set-RemoteAccessInboxAccountingStore.md b/docset/winserver2016-ps/remoteaccess/Set-RemoteAccessInboxAccountingStore.md index 3baea62ef7..6af902f30a 100644 --- a/docset/winserver2016-ps/remoteaccess/Set-RemoteAccessInboxAccountingStore.md +++ b/docset/winserver2016-ps/remoteaccess/Set-RemoteAccessInboxAccountingStore.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessInboxAccountingStore_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-remoteaccessinboxaccountingstore?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-remoteaccessinboxaccountingstore?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RemoteAccessInboxAccountingStore --- diff --git a/docset/winserver2016-ps/remoteaccess/Set-RemoteAccessIpFilter.md b/docset/winserver2016-ps/remoteaccess/Set-RemoteAccessIpFilter.md index 17575ec95b..327c1258de 100644 --- a/docset/winserver2016-ps/remoteaccess/Set-RemoteAccessIpFilter.md +++ b/docset/winserver2016-ps/remoteaccess/Set-RemoteAccessIpFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_IPFilter_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-remoteaccessipfilter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-remoteaccessipfilter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RemoteAccessIpFilter --- diff --git a/docset/winserver2016-ps/remoteaccess/Set-RemoteAccessLoadBalancer.md b/docset/winserver2016-ps/remoteaccess/Set-RemoteAccessLoadBalancer.md index 2255eabeff..6c7e10f408 100644 --- a/docset/winserver2016-ps/remoteaccess/Set-RemoteAccessLoadBalancer.md +++ b/docset/winserver2016-ps/remoteaccess/Set-RemoteAccessLoadBalancer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessLoadBalancer_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-remoteaccessloadbalancer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-remoteaccessloadbalancer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RemoteAccessLoadBalancer --- diff --git a/docset/winserver2016-ps/remoteaccess/Set-RemoteAccessRadius.md b/docset/winserver2016-ps/remoteaccess/Set-RemoteAccessRadius.md index a12c009ffa..a4d5f84f3d 100644 --- a/docset/winserver2016-ps/remoteaccess/Set-RemoteAccessRadius.md +++ b/docset/winserver2016-ps/remoteaccess/Set-RemoteAccessRadius.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessRADIUS_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-remoteaccessradius?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-remoteaccessradius?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RemoteAccessRadius --- diff --git a/docset/winserver2016-ps/remoteaccess/Set-RemoteAccessRoutingDomain.md b/docset/winserver2016-ps/remoteaccess/Set-RemoteAccessRoutingDomain.md index 9eca3f29c9..7bba98c197 100644 --- a/docset/winserver2016-ps/remoteaccess/Set-RemoteAccessRoutingDomain.md +++ b/docset/winserver2016-ps/remoteaccess/Set-RemoteAccessRoutingDomain.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessRoutingDomain_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-remoteaccessroutingdomain?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-remoteaccessroutingdomain?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RemoteAccessRoutingDomain --- diff --git a/docset/winserver2016-ps/remoteaccess/Set-RoutingProtocolPreference.md b/docset/winserver2016-ps/remoteaccess/Set-RoutingProtocolPreference.md index 085ab88755..b8e54fb962 100644 --- a/docset/winserver2016-ps/remoteaccess/Set-RoutingProtocolPreference.md +++ b/docset/winserver2016-ps/remoteaccess/Set-RoutingProtocolPreference.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RoutingProtocolPreference_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-routingprotocolpreference?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-routingprotocolpreference?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RoutingProtocolPreference --- diff --git a/docset/winserver2016-ps/remoteaccess/Set-VpnAuthProtocol.md b/docset/winserver2016-ps/remoteaccess/Set-VpnAuthProtocol.md index 25bbafc2ba..182b53efff 100644 --- a/docset/winserver2016-ps/remoteaccess/Set-VpnAuthProtocol.md +++ b/docset/winserver2016-ps/remoteaccess/Set-VpnAuthProtocol.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnAuthProtocol_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-vpnauthprotocol?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-vpnauthprotocol?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VpnAuthProtocol --- diff --git a/docset/winserver2016-ps/remoteaccess/Set-VpnAuthType.md b/docset/winserver2016-ps/remoteaccess/Set-VpnAuthType.md index b3dc4b294f..c20bcd2a2f 100644 --- a/docset/winserver2016-ps/remoteaccess/Set-VpnAuthType.md +++ b/docset/winserver2016-ps/remoteaccess/Set-VpnAuthType.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VPNAuthType_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-vpnauthtype?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-vpnauthtype?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VpnAuthType --- diff --git a/docset/winserver2016-ps/remoteaccess/Set-VpnIPAddressAssignment.md b/docset/winserver2016-ps/remoteaccess/Set-VpnIPAddressAssignment.md index c8cf8c78bc..1ca4d60605 100644 --- a/docset/winserver2016-ps/remoteaccess/Set-VpnIPAddressAssignment.md +++ b/docset/winserver2016-ps/remoteaccess/Set-VpnIPAddressAssignment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VPNIPAddressAssignment_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-vpnipaddressassignment?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-vpnipaddressassignment?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VpnIPAddressAssignment --- diff --git a/docset/winserver2016-ps/remoteaccess/Set-VpnS2SInterface.md b/docset/winserver2016-ps/remoteaccess/Set-VpnS2SInterface.md index 19243c1a39..c983be9be7 100644 --- a/docset/winserver2016-ps/remoteaccess/Set-VpnS2SInterface.md +++ b/docset/winserver2016-ps/remoteaccess/Set-VpnS2SInterface.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnS2SInterface_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-vpns2sinterface?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-vpns2sinterface?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VpnS2SInterface --- diff --git a/docset/winserver2016-ps/remoteaccess/Set-VpnServerConfiguration.md b/docset/winserver2016-ps/remoteaccess/Set-VpnServerConfiguration.md index f68019ecb0..0cc3af6b9e 100644 --- a/docset/winserver2016-ps/remoteaccess/Set-VpnServerConfiguration.md +++ b/docset/winserver2016-ps/remoteaccess/Set-VpnServerConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnServerIPsecConfiguration_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-vpnserverconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-vpnserverconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VpnServerConfiguration --- diff --git a/docset/winserver2016-ps/remoteaccess/Set-VpnSstpProxyRule.md b/docset/winserver2016-ps/remoteaccess/Set-VpnSstpProxyRule.md index 67ceea6bc6..f837d80dc6 100644 --- a/docset/winserver2016-ps/remoteaccess/Set-VpnSstpProxyRule.md +++ b/docset/winserver2016-ps/remoteaccess/Set-VpnSstpProxyRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnSstpProxyRule_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-vpnsstpproxyrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-vpnsstpproxyrule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VpnSstpProxyRule --- diff --git a/docset/winserver2016-ps/remoteaccess/Start-BgpPeer.md b/docset/winserver2016-ps/remoteaccess/Start-BgpPeer.md index 4c4471cf78..ebc7029997 100644 --- a/docset/winserver2016-ps/remoteaccess/Start-BgpPeer.md +++ b/docset/winserver2016-ps/remoteaccess/Start-BgpPeer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpPeer_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/start-bgppeer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/start-bgppeer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-BgpPeer --- diff --git a/docset/winserver2016-ps/remoteaccess/Stop-BgpPeer.md b/docset/winserver2016-ps/remoteaccess/Stop-BgpPeer.md index 173ef4435c..eef7372ca2 100644 --- a/docset/winserver2016-ps/remoteaccess/Stop-BgpPeer.md +++ b/docset/winserver2016-ps/remoteaccess/Stop-BgpPeer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpPeer_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/stop-bgppeer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/stop-bgppeer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-BgpPeer --- diff --git a/docset/winserver2016-ps/remoteaccess/Uninstall-RemoteAccess.md b/docset/winserver2016-ps/remoteaccess/Uninstall-RemoteAccess.md index df85e3de22..760765e91e 100644 --- a/docset/winserver2016-ps/remoteaccess/Uninstall-RemoteAccess.md +++ b/docset/winserver2016-ps/remoteaccess/Uninstall-RemoteAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccess_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/uninstall-remoteaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/uninstall-remoteaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-RemoteAccess --- diff --git a/docset/winserver2016-ps/remoteaccess/Update-DAMgmtServer.md b/docset/winserver2016-ps/remoteaccess/Update-DAMgmtServer.md index 21e418021a..a9f31beba0 100644 --- a/docset/winserver2016-ps/remoteaccess/Update-DAMgmtServer.md +++ b/docset/winserver2016-ps/remoteaccess/Update-DAMgmtServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAMgmtServer_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/update-damgmtserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/update-damgmtserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-DAMgmtServer --- diff --git a/docset/winserver2016-ps/remotedesktop/Add-RDServer.md b/docset/winserver2016-ps/remotedesktop/Add-RDServer.md index 8e36a5da68..28aaa1a858 100644 --- a/docset/winserver2016-ps/remotedesktop/Add-RDServer.md +++ b/docset/winserver2016-ps/remotedesktop/Add-RDServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/add-rdserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/add-rdserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-RDServer --- diff --git a/docset/winserver2016-ps/remotedesktop/Add-RDSessionHost.md b/docset/winserver2016-ps/remotedesktop/Add-RDSessionHost.md index aa71c55688..70fc1bdc70 100644 --- a/docset/winserver2016-ps/remotedesktop/Add-RDSessionHost.md +++ b/docset/winserver2016-ps/remotedesktop/Add-RDSessionHost.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/add-rdsessionhost?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/add-rdsessionhost?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-RDSessionHost --- diff --git a/docset/winserver2016-ps/remotedesktop/Add-RDVirtualDesktopToCollection.md b/docset/winserver2016-ps/remotedesktop/Add-RDVirtualDesktopToCollection.md index 4ad6ea939a..2707d80ad2 100644 --- a/docset/winserver2016-ps/remotedesktop/Add-RDVirtualDesktopToCollection.md +++ b/docset/winserver2016-ps/remotedesktop/Add-RDVirtualDesktopToCollection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/add-rdvirtualdesktoptocollection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/add-rdvirtualdesktoptocollection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-RDVirtualDesktopToCollection --- diff --git a/docset/winserver2016-ps/remotedesktop/Disable-RDVirtualDesktopADMachineAccountReuse.md b/docset/winserver2016-ps/remotedesktop/Disable-RDVirtualDesktopADMachineAccountReuse.md index dbf4b1a29a..9ae7c5123c 100644 --- a/docset/winserver2016-ps/remotedesktop/Disable-RDVirtualDesktopADMachineAccountReuse.md +++ b/docset/winserver2016-ps/remotedesktop/Disable-RDVirtualDesktopADMachineAccountReuse.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/disable-rdvirtualdesktopadmachineaccountreuse?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/disable-rdvirtualdesktopadmachineaccountreuse?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-RDVirtualDesktopADMachineAccountReuse --- diff --git a/docset/winserver2016-ps/remotedesktop/Disconnect-RDUser.md b/docset/winserver2016-ps/remotedesktop/Disconnect-RDUser.md index 9eed03bfd8..704ec001b7 100644 --- a/docset/winserver2016-ps/remotedesktop/Disconnect-RDUser.md +++ b/docset/winserver2016-ps/remotedesktop/Disconnect-RDUser.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/disconnect-rduser?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/disconnect-rduser?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disconnect-RDUser --- diff --git a/docset/winserver2016-ps/remotedesktop/Enable-RDVirtualDesktopADMachineAccountReuse.md b/docset/winserver2016-ps/remotedesktop/Enable-RDVirtualDesktopADMachineAccountReuse.md index 8562cf6621..810ee11c6d 100644 --- a/docset/winserver2016-ps/remotedesktop/Enable-RDVirtualDesktopADMachineAccountReuse.md +++ b/docset/winserver2016-ps/remotedesktop/Enable-RDVirtualDesktopADMachineAccountReuse.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/enable-rdvirtualdesktopadmachineaccountreuse?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/enable-rdvirtualdesktopadmachineaccountreuse?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-RDVirtualDesktopADMachineAccountReuse --- diff --git a/docset/winserver2016-ps/remotedesktop/Export-RDPersonalSessionDesktopAssignment.md b/docset/winserver2016-ps/remotedesktop/Export-RDPersonalSessionDesktopAssignment.md index cea2457e88..b1abfbf00f 100644 --- a/docset/winserver2016-ps/remotedesktop/Export-RDPersonalSessionDesktopAssignment.md +++ b/docset/winserver2016-ps/remotedesktop/Export-RDPersonalSessionDesktopAssignment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/export-rdpersonalsessiondesktopassignment?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/export-rdpersonalsessiondesktopassignment?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-RDPersonalSessionDesktopAssignment --- diff --git a/docset/winserver2016-ps/remotedesktop/Export-RDPersonalVirtualDesktopAssignment.md b/docset/winserver2016-ps/remotedesktop/Export-RDPersonalVirtualDesktopAssignment.md index 4febf916df..e21f91d357 100644 --- a/docset/winserver2016-ps/remotedesktop/Export-RDPersonalVirtualDesktopAssignment.md +++ b/docset/winserver2016-ps/remotedesktop/Export-RDPersonalVirtualDesktopAssignment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/export-rdpersonalvirtualdesktopassignment?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/export-rdpersonalvirtualdesktopassignment?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-RDPersonalVirtualDesktopAssignment --- diff --git a/docset/winserver2016-ps/remotedesktop/Get-RDAvailableApp.md b/docset/winserver2016-ps/remotedesktop/Get-RDAvailableApp.md index ed89b244d6..44fa94b2f2 100644 --- a/docset/winserver2016-ps/remotedesktop/Get-RDAvailableApp.md +++ b/docset/winserver2016-ps/remotedesktop/Get-RDAvailableApp.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdavailableapp?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdavailableapp?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDAvailableApp --- diff --git a/docset/winserver2016-ps/remotedesktop/Get-RDCertificate.md b/docset/winserver2016-ps/remotedesktop/Get-RDCertificate.md index d001df697c..0735de1de8 100644 --- a/docset/winserver2016-ps/remotedesktop/Get-RDCertificate.md +++ b/docset/winserver2016-ps/remotedesktop/Get-RDCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdcertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdcertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDCertificate --- diff --git a/docset/winserver2016-ps/remotedesktop/Get-RDConnectionBrokerHighAvailability.md b/docset/winserver2016-ps/remotedesktop/Get-RDConnectionBrokerHighAvailability.md index 835b251e3e..c1b6cf4d9e 100644 --- a/docset/winserver2016-ps/remotedesktop/Get-RDConnectionBrokerHighAvailability.md +++ b/docset/winserver2016-ps/remotedesktop/Get-RDConnectionBrokerHighAvailability.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdconnectionbrokerhighavailability?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdconnectionbrokerhighavailability?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDConnectionBrokerHighAvailability --- diff --git a/docset/winserver2016-ps/remotedesktop/Get-RDDeploymentGatewayConfiguration.md b/docset/winserver2016-ps/remotedesktop/Get-RDDeploymentGatewayConfiguration.md index f7083699db..602883891d 100644 --- a/docset/winserver2016-ps/remotedesktop/Get-RDDeploymentGatewayConfiguration.md +++ b/docset/winserver2016-ps/remotedesktop/Get-RDDeploymentGatewayConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rddeploymentgatewayconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rddeploymentgatewayconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDDeploymentGatewayConfiguration --- diff --git a/docset/winserver2016-ps/remotedesktop/Get-RDFileTypeAssociation.md b/docset/winserver2016-ps/remotedesktop/Get-RDFileTypeAssociation.md index 2241540ce1..9f64350a5b 100644 --- a/docset/winserver2016-ps/remotedesktop/Get-RDFileTypeAssociation.md +++ b/docset/winserver2016-ps/remotedesktop/Get-RDFileTypeAssociation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdfiletypeassociation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdfiletypeassociation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDFileTypeAssociation --- diff --git a/docset/winserver2016-ps/remotedesktop/Get-RDLicenseConfiguration.md b/docset/winserver2016-ps/remotedesktop/Get-RDLicenseConfiguration.md index 784a287d09..f31c27d507 100644 --- a/docset/winserver2016-ps/remotedesktop/Get-RDLicenseConfiguration.md +++ b/docset/winserver2016-ps/remotedesktop/Get-RDLicenseConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdlicenseconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdlicenseconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDLicenseConfiguration --- diff --git a/docset/winserver2016-ps/remotedesktop/Get-RDPersonalSessionDesktopAssignment.md b/docset/winserver2016-ps/remotedesktop/Get-RDPersonalSessionDesktopAssignment.md index e737635f76..4254cf5ffa 100644 --- a/docset/winserver2016-ps/remotedesktop/Get-RDPersonalSessionDesktopAssignment.md +++ b/docset/winserver2016-ps/remotedesktop/Get-RDPersonalSessionDesktopAssignment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdpersonalsessiondesktopassignment?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdpersonalsessiondesktopassignment?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDPersonalSessionDesktopAssignment --- diff --git a/docset/winserver2016-ps/remotedesktop/Get-RDPersonalVirtualDesktopAssignment.md b/docset/winserver2016-ps/remotedesktop/Get-RDPersonalVirtualDesktopAssignment.md index de851f577b..7b906118df 100644 --- a/docset/winserver2016-ps/remotedesktop/Get-RDPersonalVirtualDesktopAssignment.md +++ b/docset/winserver2016-ps/remotedesktop/Get-RDPersonalVirtualDesktopAssignment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdpersonalvirtualdesktopassignment?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdpersonalvirtualdesktopassignment?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDPersonalVirtualDesktopAssignment --- diff --git a/docset/winserver2016-ps/remotedesktop/Get-RDPersonalVirtualDesktopPatchSchedule.md b/docset/winserver2016-ps/remotedesktop/Get-RDPersonalVirtualDesktopPatchSchedule.md index dd0bd48d18..3c39c2ba17 100644 --- a/docset/winserver2016-ps/remotedesktop/Get-RDPersonalVirtualDesktopPatchSchedule.md +++ b/docset/winserver2016-ps/remotedesktop/Get-RDPersonalVirtualDesktopPatchSchedule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdpersonalvirtualdesktoppatchschedule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdpersonalvirtualdesktoppatchschedule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDPersonalVirtualDesktopPatchSchedule --- diff --git a/docset/winserver2016-ps/remotedesktop/Get-RDRemoteApp.md b/docset/winserver2016-ps/remotedesktop/Get-RDRemoteApp.md index a1e97ae8c9..7ae6bc4dc3 100644 --- a/docset/winserver2016-ps/remotedesktop/Get-RDRemoteApp.md +++ b/docset/winserver2016-ps/remotedesktop/Get-RDRemoteApp.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdremoteapp?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdremoteapp?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDRemoteApp --- diff --git a/docset/winserver2016-ps/remotedesktop/Get-RDRemoteDesktop.md b/docset/winserver2016-ps/remotedesktop/Get-RDRemoteDesktop.md index 7e34515783..0f4a7d8d30 100644 --- a/docset/winserver2016-ps/remotedesktop/Get-RDRemoteDesktop.md +++ b/docset/winserver2016-ps/remotedesktop/Get-RDRemoteDesktop.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdremotedesktop?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdremotedesktop?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDRemoteDesktop --- diff --git a/docset/winserver2016-ps/remotedesktop/Get-RDServer.md b/docset/winserver2016-ps/remotedesktop/Get-RDServer.md index 10346d6988..65a0c7acbc 100644 --- a/docset/winserver2016-ps/remotedesktop/Get-RDServer.md +++ b/docset/winserver2016-ps/remotedesktop/Get-RDServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDServer --- diff --git a/docset/winserver2016-ps/remotedesktop/Get-RDSessionCollection.md b/docset/winserver2016-ps/remotedesktop/Get-RDSessionCollection.md index 541e695e30..a04c82399d 100644 --- a/docset/winserver2016-ps/remotedesktop/Get-RDSessionCollection.md +++ b/docset/winserver2016-ps/remotedesktop/Get-RDSessionCollection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdsessioncollection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdsessioncollection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDSessionCollection --- diff --git a/docset/winserver2016-ps/remotedesktop/Get-RDSessionCollectionConfiguration.md b/docset/winserver2016-ps/remotedesktop/Get-RDSessionCollectionConfiguration.md index 9940db580a..558320e1d5 100644 --- a/docset/winserver2016-ps/remotedesktop/Get-RDSessionCollectionConfiguration.md +++ b/docset/winserver2016-ps/remotedesktop/Get-RDSessionCollectionConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdsessioncollectionconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdsessioncollectionconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDSessionCollectionConfiguration --- diff --git a/docset/winserver2016-ps/remotedesktop/Get-RDSessionHost.md b/docset/winserver2016-ps/remotedesktop/Get-RDSessionHost.md index a11c605b0f..8d877b0c54 100644 --- a/docset/winserver2016-ps/remotedesktop/Get-RDSessionHost.md +++ b/docset/winserver2016-ps/remotedesktop/Get-RDSessionHost.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdsessionhost?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdsessionhost?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDSessionHost --- diff --git a/docset/winserver2016-ps/remotedesktop/Get-RDUserSession.md b/docset/winserver2016-ps/remotedesktop/Get-RDUserSession.md index 04e4bca64f..72be9cc19e 100644 --- a/docset/winserver2016-ps/remotedesktop/Get-RDUserSession.md +++ b/docset/winserver2016-ps/remotedesktop/Get-RDUserSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdusersession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdusersession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDUserSession --- diff --git a/docset/winserver2016-ps/remotedesktop/Get-RDVirtualDesktop.md b/docset/winserver2016-ps/remotedesktop/Get-RDVirtualDesktop.md index 4630f46993..1c4ea0fe9b 100644 --- a/docset/winserver2016-ps/remotedesktop/Get-RDVirtualDesktop.md +++ b/docset/winserver2016-ps/remotedesktop/Get-RDVirtualDesktop.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktop?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktop?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDVirtualDesktop --- diff --git a/docset/winserver2016-ps/remotedesktop/Get-RDVirtualDesktopCollection.md b/docset/winserver2016-ps/remotedesktop/Get-RDVirtualDesktopCollection.md index aab2ed00f9..1acd439c97 100644 --- a/docset/winserver2016-ps/remotedesktop/Get-RDVirtualDesktopCollection.md +++ b/docset/winserver2016-ps/remotedesktop/Get-RDVirtualDesktopCollection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktopcollection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktopcollection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDVirtualDesktopCollection --- diff --git a/docset/winserver2016-ps/remotedesktop/Get-RDVirtualDesktopCollectionConfiguration.md b/docset/winserver2016-ps/remotedesktop/Get-RDVirtualDesktopCollectionConfiguration.md index 7f3ddfb2a6..36bbba03c7 100644 --- a/docset/winserver2016-ps/remotedesktop/Get-RDVirtualDesktopCollectionConfiguration.md +++ b/docset/winserver2016-ps/remotedesktop/Get-RDVirtualDesktopCollectionConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktopcollectionconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktopcollectionconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDVirtualDesktopCollectionConfiguration --- diff --git a/docset/winserver2016-ps/remotedesktop/Get-RDVirtualDesktopCollectionJobStatus.md b/docset/winserver2016-ps/remotedesktop/Get-RDVirtualDesktopCollectionJobStatus.md index 36c5417332..ceaff16e79 100644 --- a/docset/winserver2016-ps/remotedesktop/Get-RDVirtualDesktopCollectionJobStatus.md +++ b/docset/winserver2016-ps/remotedesktop/Get-RDVirtualDesktopCollectionJobStatus.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktopcollectionjobstatus?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktopcollectionjobstatus?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDVirtualDesktopCollectionJobStatus --- diff --git a/docset/winserver2016-ps/remotedesktop/Get-RDVirtualDesktopConcurrency.md b/docset/winserver2016-ps/remotedesktop/Get-RDVirtualDesktopConcurrency.md index 75387ef0cc..1c225d6100 100644 --- a/docset/winserver2016-ps/remotedesktop/Get-RDVirtualDesktopConcurrency.md +++ b/docset/winserver2016-ps/remotedesktop/Get-RDVirtualDesktopConcurrency.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktopconcurrency?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktopconcurrency?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDVirtualDesktopConcurrency --- diff --git a/docset/winserver2016-ps/remotedesktop/Get-RDVirtualDesktopIdleCount.md b/docset/winserver2016-ps/remotedesktop/Get-RDVirtualDesktopIdleCount.md index 02d612dcb1..3b27edeb0e 100644 --- a/docset/winserver2016-ps/remotedesktop/Get-RDVirtualDesktopIdleCount.md +++ b/docset/winserver2016-ps/remotedesktop/Get-RDVirtualDesktopIdleCount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktopidlecount?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktopidlecount?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDVirtualDesktopIdleCount --- diff --git a/docset/winserver2016-ps/remotedesktop/Get-RDVirtualDesktopTemplateExportPath.md b/docset/winserver2016-ps/remotedesktop/Get-RDVirtualDesktopTemplateExportPath.md index 01e09ae408..83e6222d03 100644 --- a/docset/winserver2016-ps/remotedesktop/Get-RDVirtualDesktopTemplateExportPath.md +++ b/docset/winserver2016-ps/remotedesktop/Get-RDVirtualDesktopTemplateExportPath.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktoptemplateexportpath?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktoptemplateexportpath?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDVirtualDesktopTemplateExportPath --- diff --git a/docset/winserver2016-ps/remotedesktop/Get-RDWorkspace.md b/docset/winserver2016-ps/remotedesktop/Get-RDWorkspace.md index e4e74476f4..21e2ef3ec6 100644 --- a/docset/winserver2016-ps/remotedesktop/Get-RDWorkspace.md +++ b/docset/winserver2016-ps/remotedesktop/Get-RDWorkspace.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdworkspace?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdworkspace?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDWorkspace --- diff --git a/docset/winserver2016-ps/remotedesktop/Grant-RDOUAccess.md b/docset/winserver2016-ps/remotedesktop/Grant-RDOUAccess.md index 144d41876c..2a2dc8389f 100644 --- a/docset/winserver2016-ps/remotedesktop/Grant-RDOUAccess.md +++ b/docset/winserver2016-ps/remotedesktop/Grant-RDOUAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/grant-rdouaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/grant-rdouaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Grant-RDOUAccess --- diff --git a/docset/winserver2016-ps/remotedesktop/Import-RDPersonalSessionDesktopAssignment.md b/docset/winserver2016-ps/remotedesktop/Import-RDPersonalSessionDesktopAssignment.md index 3e61f6a3dc..efafb3dd08 100644 --- a/docset/winserver2016-ps/remotedesktop/Import-RDPersonalSessionDesktopAssignment.md +++ b/docset/winserver2016-ps/remotedesktop/Import-RDPersonalSessionDesktopAssignment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/import-rdpersonalsessiondesktopassignment?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/import-rdpersonalsessiondesktopassignment?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-RDPersonalSessionDesktopAssignment --- diff --git a/docset/winserver2016-ps/remotedesktop/Import-RDPersonalVirtualDesktopAssignment.md b/docset/winserver2016-ps/remotedesktop/Import-RDPersonalVirtualDesktopAssignment.md index 2dc2dbede0..efcfd14f53 100644 --- a/docset/winserver2016-ps/remotedesktop/Import-RDPersonalVirtualDesktopAssignment.md +++ b/docset/winserver2016-ps/remotedesktop/Import-RDPersonalVirtualDesktopAssignment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/import-rdpersonalvirtualdesktopassignment?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/import-rdpersonalvirtualdesktopassignment?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-RDPersonalVirtualDesktopAssignment --- diff --git a/docset/winserver2016-ps/remotedesktop/Invoke-RDUserLogoff.md b/docset/winserver2016-ps/remotedesktop/Invoke-RDUserLogoff.md index 5d63dafa97..face978934 100644 --- a/docset/winserver2016-ps/remotedesktop/Invoke-RDUserLogoff.md +++ b/docset/winserver2016-ps/remotedesktop/Invoke-RDUserLogoff.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/invoke-rduserlogoff?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/invoke-rduserlogoff?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-RDUserLogoff --- diff --git a/docset/winserver2016-ps/remotedesktop/Move-RDVirtualDesktop.md b/docset/winserver2016-ps/remotedesktop/Move-RDVirtualDesktop.md index 80a5ed4075..5e4bbd0d1b 100644 --- a/docset/winserver2016-ps/remotedesktop/Move-RDVirtualDesktop.md +++ b/docset/winserver2016-ps/remotedesktop/Move-RDVirtualDesktop.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/move-rdvirtualdesktop?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/move-rdvirtualdesktop?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-RDVirtualDesktop --- diff --git a/docset/winserver2016-ps/remotedesktop/New-RDCertificate.md b/docset/winserver2016-ps/remotedesktop/New-RDCertificate.md index e3ad534e2f..c75e3e7b0d 100644 --- a/docset/winserver2016-ps/remotedesktop/New-RDCertificate.md +++ b/docset/winserver2016-ps/remotedesktop/New-RDCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/new-rdcertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/new-rdcertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-RDCertificate --- diff --git a/docset/winserver2016-ps/remotedesktop/New-RDPersonalVirtualDesktopPatchSchedule.md b/docset/winserver2016-ps/remotedesktop/New-RDPersonalVirtualDesktopPatchSchedule.md index dbded27e76..9cf9c01a5f 100644 --- a/docset/winserver2016-ps/remotedesktop/New-RDPersonalVirtualDesktopPatchSchedule.md +++ b/docset/winserver2016-ps/remotedesktop/New-RDPersonalVirtualDesktopPatchSchedule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/new-rdpersonalvirtualdesktoppatchschedule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/new-rdpersonalvirtualdesktoppatchschedule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-RDPersonalVirtualDesktopPatchSchedule --- diff --git a/docset/winserver2016-ps/remotedesktop/New-RDRemoteApp.md b/docset/winserver2016-ps/remotedesktop/New-RDRemoteApp.md index 20a285ddba..e93ffe8fa6 100644 --- a/docset/winserver2016-ps/remotedesktop/New-RDRemoteApp.md +++ b/docset/winserver2016-ps/remotedesktop/New-RDRemoteApp.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/new-rdremoteapp?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/new-rdremoteapp?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-RDRemoteApp --- diff --git a/docset/winserver2016-ps/remotedesktop/New-RDSessionCollection.md b/docset/winserver2016-ps/remotedesktop/New-RDSessionCollection.md index ce9d2598ca..527831a660 100644 --- a/docset/winserver2016-ps/remotedesktop/New-RDSessionCollection.md +++ b/docset/winserver2016-ps/remotedesktop/New-RDSessionCollection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/new-rdsessioncollection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/new-rdsessioncollection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-RDSessionCollection --- diff --git a/docset/winserver2016-ps/remotedesktop/New-RDSessionDeployment.md b/docset/winserver2016-ps/remotedesktop/New-RDSessionDeployment.md index 60ecb4acb6..a5c0e50711 100644 --- a/docset/winserver2016-ps/remotedesktop/New-RDSessionDeployment.md +++ b/docset/winserver2016-ps/remotedesktop/New-RDSessionDeployment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/new-rdsessiondeployment?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/new-rdsessiondeployment?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-RDSessionDeployment --- diff --git a/docset/winserver2016-ps/remotedesktop/New-RDVirtualDesktopCollection.md b/docset/winserver2016-ps/remotedesktop/New-RDVirtualDesktopCollection.md index 9534421c52..1837d96bf3 100644 --- a/docset/winserver2016-ps/remotedesktop/New-RDVirtualDesktopCollection.md +++ b/docset/winserver2016-ps/remotedesktop/New-RDVirtualDesktopCollection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/new-rdvirtualdesktopcollection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/new-rdvirtualdesktopcollection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-RDVirtualDesktopCollection --- diff --git a/docset/winserver2016-ps/remotedesktop/New-RDVirtualDesktopDeployment.md b/docset/winserver2016-ps/remotedesktop/New-RDVirtualDesktopDeployment.md index ce043a3f6a..734efa47ee 100644 --- a/docset/winserver2016-ps/remotedesktop/New-RDVirtualDesktopDeployment.md +++ b/docset/winserver2016-ps/remotedesktop/New-RDVirtualDesktopDeployment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/new-rdvirtualdesktopdeployment?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/new-rdvirtualdesktopdeployment?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-RDVirtualDesktopDeployment --- diff --git a/docset/winserver2016-ps/remotedesktop/Remove-RDDatabaseConnectionString.md b/docset/winserver2016-ps/remotedesktop/Remove-RDDatabaseConnectionString.md index 89427c72de..df1e43d7ea 100644 --- a/docset/winserver2016-ps/remotedesktop/Remove-RDDatabaseConnectionString.md +++ b/docset/winserver2016-ps/remotedesktop/Remove-RDDatabaseConnectionString.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/remove-rddatabaseconnectionstring?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/remove-rddatabaseconnectionstring?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-RDDatabaseConnectionString --- diff --git a/docset/winserver2016-ps/remotedesktop/Remove-RDPersonalSessionDesktopAssignment.md b/docset/winserver2016-ps/remotedesktop/Remove-RDPersonalSessionDesktopAssignment.md index 65b55bd690..fc207e9963 100644 --- a/docset/winserver2016-ps/remotedesktop/Remove-RDPersonalSessionDesktopAssignment.md +++ b/docset/winserver2016-ps/remotedesktop/Remove-RDPersonalSessionDesktopAssignment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/remove-rdpersonalsessiondesktopassignment?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/remove-rdpersonalsessiondesktopassignment?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-RDPersonalSessionDesktopAssignment --- diff --git a/docset/winserver2016-ps/remotedesktop/Remove-RDPersonalVirtualDesktopAssignment.md b/docset/winserver2016-ps/remotedesktop/Remove-RDPersonalVirtualDesktopAssignment.md index 46fe11c69a..4b55bbd56e 100644 --- a/docset/winserver2016-ps/remotedesktop/Remove-RDPersonalVirtualDesktopAssignment.md +++ b/docset/winserver2016-ps/remotedesktop/Remove-RDPersonalVirtualDesktopAssignment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/remove-rdpersonalvirtualdesktopassignment?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/remove-rdpersonalvirtualdesktopassignment?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-RDPersonalVirtualDesktopAssignment --- diff --git a/docset/winserver2016-ps/remotedesktop/Remove-RDPersonalVirtualDesktopPatchSchedule.md b/docset/winserver2016-ps/remotedesktop/Remove-RDPersonalVirtualDesktopPatchSchedule.md index a0cab3e3be..23d8cdfc55 100644 --- a/docset/winserver2016-ps/remotedesktop/Remove-RDPersonalVirtualDesktopPatchSchedule.md +++ b/docset/winserver2016-ps/remotedesktop/Remove-RDPersonalVirtualDesktopPatchSchedule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/remove-rdpersonalvirtualdesktoppatchschedule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/remove-rdpersonalvirtualdesktoppatchschedule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-RDPersonalVirtualDesktopPatchSchedule --- diff --git a/docset/winserver2016-ps/remotedesktop/Remove-RDRemoteApp.md b/docset/winserver2016-ps/remotedesktop/Remove-RDRemoteApp.md index 55aa3e0aa3..0e8e04c08d 100644 --- a/docset/winserver2016-ps/remotedesktop/Remove-RDRemoteApp.md +++ b/docset/winserver2016-ps/remotedesktop/Remove-RDRemoteApp.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/remove-rdremoteapp?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/remove-rdremoteapp?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-RDRemoteApp --- diff --git a/docset/winserver2016-ps/remotedesktop/Remove-RDServer.md b/docset/winserver2016-ps/remotedesktop/Remove-RDServer.md index ef5ee27770..2662bb7169 100644 --- a/docset/winserver2016-ps/remotedesktop/Remove-RDServer.md +++ b/docset/winserver2016-ps/remotedesktop/Remove-RDServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/remove-rdserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/remove-rdserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-RDServer --- diff --git a/docset/winserver2016-ps/remotedesktop/Remove-RDSessionCollection.md b/docset/winserver2016-ps/remotedesktop/Remove-RDSessionCollection.md index 15fedadce5..3b654ed754 100644 --- a/docset/winserver2016-ps/remotedesktop/Remove-RDSessionCollection.md +++ b/docset/winserver2016-ps/remotedesktop/Remove-RDSessionCollection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/remove-rdsessioncollection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/remove-rdsessioncollection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-RDSessionCollection --- diff --git a/docset/winserver2016-ps/remotedesktop/Remove-RDSessionHost.md b/docset/winserver2016-ps/remotedesktop/Remove-RDSessionHost.md index 781977a8c7..8bb2443ceb 100644 --- a/docset/winserver2016-ps/remotedesktop/Remove-RDSessionHost.md +++ b/docset/winserver2016-ps/remotedesktop/Remove-RDSessionHost.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/remove-rdsessionhost?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/remove-rdsessionhost?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-RDSessionHost --- diff --git a/docset/winserver2016-ps/remotedesktop/Remove-RDVirtualDesktopCollection.md b/docset/winserver2016-ps/remotedesktop/Remove-RDVirtualDesktopCollection.md index 8342c7580a..be6f38b3f6 100644 --- a/docset/winserver2016-ps/remotedesktop/Remove-RDVirtualDesktopCollection.md +++ b/docset/winserver2016-ps/remotedesktop/Remove-RDVirtualDesktopCollection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/remove-rdvirtualdesktopcollection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/remove-rdvirtualdesktopcollection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-RDVirtualDesktopCollection --- diff --git a/docset/winserver2016-ps/remotedesktop/Remove-RDVirtualDesktopFromCollection.md b/docset/winserver2016-ps/remotedesktop/Remove-RDVirtualDesktopFromCollection.md index 3712ed4a26..9078d206dc 100644 --- a/docset/winserver2016-ps/remotedesktop/Remove-RDVirtualDesktopFromCollection.md +++ b/docset/winserver2016-ps/remotedesktop/Remove-RDVirtualDesktopFromCollection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/remove-rdvirtualdesktopfromcollection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/remove-rdvirtualdesktopfromcollection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-RDVirtualDesktopFromCollection --- diff --git a/docset/winserver2016-ps/remotedesktop/Send-RDUserMessage.md b/docset/winserver2016-ps/remotedesktop/Send-RDUserMessage.md index 1a1a1b37e8..dbf24a14a9 100644 --- a/docset/winserver2016-ps/remotedesktop/Send-RDUserMessage.md +++ b/docset/winserver2016-ps/remotedesktop/Send-RDUserMessage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/send-rdusermessage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/send-rdusermessage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Send-RDUserMessage --- diff --git a/docset/winserver2016-ps/remotedesktop/Set-RDActiveManagementServer.md b/docset/winserver2016-ps/remotedesktop/Set-RDActiveManagementServer.md index 307c0e4b2f..b32af7da05 100644 --- a/docset/winserver2016-ps/remotedesktop/Set-RDActiveManagementServer.md +++ b/docset/winserver2016-ps/remotedesktop/Set-RDActiveManagementServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdactivemanagementserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdactivemanagementserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDActiveManagementServer --- diff --git a/docset/winserver2016-ps/remotedesktop/Set-RDCertificate.md b/docset/winserver2016-ps/remotedesktop/Set-RDCertificate.md index bbb9088b11..8a7150dff0 100644 --- a/docset/winserver2016-ps/remotedesktop/Set-RDCertificate.md +++ b/docset/winserver2016-ps/remotedesktop/Set-RDCertificate.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdcertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdcertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDCertificate --- diff --git a/docset/winserver2016-ps/remotedesktop/Set-RDClientAccessName.md b/docset/winserver2016-ps/remotedesktop/Set-RDClientAccessName.md index 0dd40e9917..e52148bb5c 100644 --- a/docset/winserver2016-ps/remotedesktop/Set-RDClientAccessName.md +++ b/docset/winserver2016-ps/remotedesktop/Set-RDClientAccessName.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdclientaccessname?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdclientaccessname?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDClientAccessName --- diff --git a/docset/winserver2016-ps/remotedesktop/Set-RDConnectionBrokerHighAvailability.md b/docset/winserver2016-ps/remotedesktop/Set-RDConnectionBrokerHighAvailability.md index c164f04387..d82b2c5c2a 100644 --- a/docset/winserver2016-ps/remotedesktop/Set-RDConnectionBrokerHighAvailability.md +++ b/docset/winserver2016-ps/remotedesktop/Set-RDConnectionBrokerHighAvailability.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdconnectionbrokerhighavailability?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdconnectionbrokerhighavailability?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDConnectionBrokerHighAvailability --- diff --git a/docset/winserver2016-ps/remotedesktop/Set-RDDatabaseConnectionString.md b/docset/winserver2016-ps/remotedesktop/Set-RDDatabaseConnectionString.md index d34f997176..aac18f114e 100644 --- a/docset/winserver2016-ps/remotedesktop/Set-RDDatabaseConnectionString.md +++ b/docset/winserver2016-ps/remotedesktop/Set-RDDatabaseConnectionString.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rddatabaseconnectionstring?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rddatabaseconnectionstring?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDDatabaseConnectionString --- diff --git a/docset/winserver2016-ps/remotedesktop/Set-RDDeploymentGatewayConfiguration.md b/docset/winserver2016-ps/remotedesktop/Set-RDDeploymentGatewayConfiguration.md index 265a2e76ca..bfeb3fd174 100644 --- a/docset/winserver2016-ps/remotedesktop/Set-RDDeploymentGatewayConfiguration.md +++ b/docset/winserver2016-ps/remotedesktop/Set-RDDeploymentGatewayConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rddeploymentgatewayconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rddeploymentgatewayconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDDeploymentGatewayConfiguration --- diff --git a/docset/winserver2016-ps/remotedesktop/Set-RDFileTypeAssociation.md b/docset/winserver2016-ps/remotedesktop/Set-RDFileTypeAssociation.md index 51701ebee5..f022995350 100644 --- a/docset/winserver2016-ps/remotedesktop/Set-RDFileTypeAssociation.md +++ b/docset/winserver2016-ps/remotedesktop/Set-RDFileTypeAssociation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdfiletypeassociation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdfiletypeassociation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDFileTypeAssociation --- diff --git a/docset/winserver2016-ps/remotedesktop/Set-RDLicenseConfiguration.md b/docset/winserver2016-ps/remotedesktop/Set-RDLicenseConfiguration.md index aace79839e..d4c020bd87 100644 --- a/docset/winserver2016-ps/remotedesktop/Set-RDLicenseConfiguration.md +++ b/docset/winserver2016-ps/remotedesktop/Set-RDLicenseConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdlicenseconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdlicenseconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDLicenseConfiguration --- diff --git a/docset/winserver2016-ps/remotedesktop/Set-RDPersonalSessionDesktopAssignment.md b/docset/winserver2016-ps/remotedesktop/Set-RDPersonalSessionDesktopAssignment.md index 724fdd8b99..4454032803 100644 --- a/docset/winserver2016-ps/remotedesktop/Set-RDPersonalSessionDesktopAssignment.md +++ b/docset/winserver2016-ps/remotedesktop/Set-RDPersonalSessionDesktopAssignment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdpersonalsessiondesktopassignment?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdpersonalsessiondesktopassignment?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDPersonalSessionDesktopAssignment --- diff --git a/docset/winserver2016-ps/remotedesktop/Set-RDPersonalVirtualDesktopAssignment.md b/docset/winserver2016-ps/remotedesktop/Set-RDPersonalVirtualDesktopAssignment.md index 28826e3532..8d85c54d34 100644 --- a/docset/winserver2016-ps/remotedesktop/Set-RDPersonalVirtualDesktopAssignment.md +++ b/docset/winserver2016-ps/remotedesktop/Set-RDPersonalVirtualDesktopAssignment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdpersonalvirtualdesktopassignment?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdpersonalvirtualdesktopassignment?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDPersonalVirtualDesktopAssignment --- diff --git a/docset/winserver2016-ps/remotedesktop/Set-RDPersonalVirtualDesktopPatchSchedule.md b/docset/winserver2016-ps/remotedesktop/Set-RDPersonalVirtualDesktopPatchSchedule.md index 3836a3ace1..0635f0ea4d 100644 --- a/docset/winserver2016-ps/remotedesktop/Set-RDPersonalVirtualDesktopPatchSchedule.md +++ b/docset/winserver2016-ps/remotedesktop/Set-RDPersonalVirtualDesktopPatchSchedule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdpersonalvirtualdesktoppatchschedule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdpersonalvirtualdesktoppatchschedule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDPersonalVirtualDesktopPatchSchedule --- diff --git a/docset/winserver2016-ps/remotedesktop/Set-RDRemoteApp.md b/docset/winserver2016-ps/remotedesktop/Set-RDRemoteApp.md index 55e6e0c9ca..6198e99623 100644 --- a/docset/winserver2016-ps/remotedesktop/Set-RDRemoteApp.md +++ b/docset/winserver2016-ps/remotedesktop/Set-RDRemoteApp.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdremoteapp?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdremoteapp?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDRemoteApp --- diff --git a/docset/winserver2016-ps/remotedesktop/Set-RDRemoteDesktop.md b/docset/winserver2016-ps/remotedesktop/Set-RDRemoteDesktop.md index 6b67e26a84..5d762694f1 100644 --- a/docset/winserver2016-ps/remotedesktop/Set-RDRemoteDesktop.md +++ b/docset/winserver2016-ps/remotedesktop/Set-RDRemoteDesktop.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdremotedesktop?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdremotedesktop?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDRemoteDesktop --- diff --git a/docset/winserver2016-ps/remotedesktop/Set-RDSessionCollectionConfiguration.md b/docset/winserver2016-ps/remotedesktop/Set-RDSessionCollectionConfiguration.md index 2b9f0c4460..3e9b678932 100644 --- a/docset/winserver2016-ps/remotedesktop/Set-RDSessionCollectionConfiguration.md +++ b/docset/winserver2016-ps/remotedesktop/Set-RDSessionCollectionConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdsessioncollectionconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdsessioncollectionconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDSessionCollectionConfiguration --- diff --git a/docset/winserver2016-ps/remotedesktop/Set-RDSessionHost.md b/docset/winserver2016-ps/remotedesktop/Set-RDSessionHost.md index f55e0538d5..9aa714f5d7 100644 --- a/docset/winserver2016-ps/remotedesktop/Set-RDSessionHost.md +++ b/docset/winserver2016-ps/remotedesktop/Set-RDSessionHost.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdsessionhost?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdsessionhost?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDSessionHost --- diff --git a/docset/winserver2016-ps/remotedesktop/Set-RDVirtualDesktopCollectionConfiguration.md b/docset/winserver2016-ps/remotedesktop/Set-RDVirtualDesktopCollectionConfiguration.md index 4a588db5a1..6c6d106996 100644 --- a/docset/winserver2016-ps/remotedesktop/Set-RDVirtualDesktopCollectionConfiguration.md +++ b/docset/winserver2016-ps/remotedesktop/Set-RDVirtualDesktopCollectionConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdvirtualdesktopcollectionconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdvirtualdesktopcollectionconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDVirtualDesktopCollectionConfiguration --- diff --git a/docset/winserver2016-ps/remotedesktop/Set-RDVirtualDesktopConcurrency.md b/docset/winserver2016-ps/remotedesktop/Set-RDVirtualDesktopConcurrency.md index 5d371d136f..aa888108a7 100644 --- a/docset/winserver2016-ps/remotedesktop/Set-RDVirtualDesktopConcurrency.md +++ b/docset/winserver2016-ps/remotedesktop/Set-RDVirtualDesktopConcurrency.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdvirtualdesktopconcurrency?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdvirtualdesktopconcurrency?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDVirtualDesktopConcurrency --- diff --git a/docset/winserver2016-ps/remotedesktop/Set-RDVirtualDesktopIdleCount.md b/docset/winserver2016-ps/remotedesktop/Set-RDVirtualDesktopIdleCount.md index 69e2a79547..1c044552de 100644 --- a/docset/winserver2016-ps/remotedesktop/Set-RDVirtualDesktopIdleCount.md +++ b/docset/winserver2016-ps/remotedesktop/Set-RDVirtualDesktopIdleCount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdvirtualdesktopidlecount?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdvirtualdesktopidlecount?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDVirtualDesktopIdleCount --- diff --git a/docset/winserver2016-ps/remotedesktop/Set-RDVirtualDesktopTemplateExportPath.md b/docset/winserver2016-ps/remotedesktop/Set-RDVirtualDesktopTemplateExportPath.md index 833bfe9138..90e52224b1 100644 --- a/docset/winserver2016-ps/remotedesktop/Set-RDVirtualDesktopTemplateExportPath.md +++ b/docset/winserver2016-ps/remotedesktop/Set-RDVirtualDesktopTemplateExportPath.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdvirtualdesktoptemplateexportpath?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdvirtualdesktoptemplateexportpath?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDVirtualDesktopTemplateExportPath --- diff --git a/docset/winserver2016-ps/remotedesktop/Set-RDWorkspace.md b/docset/winserver2016-ps/remotedesktop/Set-RDWorkspace.md index 04e9b2fda9..54e76c608f 100644 --- a/docset/winserver2016-ps/remotedesktop/Set-RDWorkspace.md +++ b/docset/winserver2016-ps/remotedesktop/Set-RDWorkspace.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdworkspace?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdworkspace?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDWorkspace --- diff --git a/docset/winserver2016-ps/remotedesktop/Stop-RDVirtualDesktopCollectionJob.md b/docset/winserver2016-ps/remotedesktop/Stop-RDVirtualDesktopCollectionJob.md index 6bc89f2c9e..224ba2a90a 100644 --- a/docset/winserver2016-ps/remotedesktop/Stop-RDVirtualDesktopCollectionJob.md +++ b/docset/winserver2016-ps/remotedesktop/Stop-RDVirtualDesktopCollectionJob.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/stop-rdvirtualdesktopcollectionjob?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/stop-rdvirtualdesktopcollectionjob?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-RDVirtualDesktopCollectionJob --- diff --git a/docset/winserver2016-ps/remotedesktop/Test-RDOUAccess.md b/docset/winserver2016-ps/remotedesktop/Test-RDOUAccess.md index 0acce7229e..59cb0e28b1 100644 --- a/docset/winserver2016-ps/remotedesktop/Test-RDOUAccess.md +++ b/docset/winserver2016-ps/remotedesktop/Test-RDOUAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/test-rdouaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/test-rdouaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-RDOUAccess --- diff --git a/docset/winserver2016-ps/remotedesktop/Test-RDVirtualDesktopADMachineAccountReuse.md b/docset/winserver2016-ps/remotedesktop/Test-RDVirtualDesktopADMachineAccountReuse.md index 3fbd25ad91..8f39e56739 100644 --- a/docset/winserver2016-ps/remotedesktop/Test-RDVirtualDesktopADMachineAccountReuse.md +++ b/docset/winserver2016-ps/remotedesktop/Test-RDVirtualDesktopADMachineAccountReuse.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/test-rdvirtualdesktopadmachineaccountreuse?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/test-rdvirtualdesktopadmachineaccountreuse?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-RDVirtualDesktopADMachineAccountReuse --- diff --git a/docset/winserver2016-ps/remotedesktop/Update-RDVirtualDesktopCollection.md b/docset/winserver2016-ps/remotedesktop/Update-RDVirtualDesktopCollection.md index c60490098e..f7fca1fc29 100644 --- a/docset/winserver2016-ps/remotedesktop/Update-RDVirtualDesktopCollection.md +++ b/docset/winserver2016-ps/remotedesktop/Update-RDVirtualDesktopCollection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/update-rdvirtualdesktopcollection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/update-rdvirtualdesktopcollection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-RDVirtualDesktopCollection --- diff --git a/docset/winserver2016-ps/remotedesktopservices/Convert-License.md b/docset/winserver2016-ps/remotedesktopservices/Convert-License.md index 204a559607..25cbabefad 100644 --- a/docset/winserver2016-ps/remotedesktopservices/Convert-License.md +++ b/docset/winserver2016-ps/remotedesktopservices/Convert-License.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: TSPSCmdlets.dll-Help.xml Module Name: RemoteDesktopServices ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/remotedesktopservices/convert-license?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remotedesktopservices/convert-license?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Convert-License --- diff --git a/docset/winserver2016-ps/scheduledtasks/Disable-ScheduledTask.md b/docset/winserver2016-ps/scheduledtasks/Disable-ScheduledTask.md index 4e79e68c4f..c7d7df02cb 100644 --- a/docset/winserver2016-ps/scheduledtasks/Disable-ScheduledTask.md +++ b/docset/winserver2016-ps/scheduledtasks/Disable-ScheduledTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/disable-scheduledtask?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/disable-scheduledtask?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-ScheduledTask --- diff --git a/docset/winserver2016-ps/scheduledtasks/Enable-ScheduledTask.md b/docset/winserver2016-ps/scheduledtasks/Enable-ScheduledTask.md index c41da44c2f..bba13f309e 100644 --- a/docset/winserver2016-ps/scheduledtasks/Enable-ScheduledTask.md +++ b/docset/winserver2016-ps/scheduledtasks/Enable-ScheduledTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/enable-scheduledtask?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/enable-scheduledtask?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-ScheduledTask --- diff --git a/docset/winserver2016-ps/scheduledtasks/Export-ScheduledTask.md b/docset/winserver2016-ps/scheduledtasks/Export-ScheduledTask.md index 343678ee42..7c4356c06b 100644 --- a/docset/winserver2016-ps/scheduledtasks/Export-ScheduledTask.md +++ b/docset/winserver2016-ps/scheduledtasks/Export-ScheduledTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/export-scheduledtask?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/export-scheduledtask?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-ScheduledTask --- diff --git a/docset/winserver2016-ps/scheduledtasks/Get-ClusteredScheduledTask.md b/docset/winserver2016-ps/scheduledtasks/Get-ClusteredScheduledTask.md index 8da6ca92ef..c527223fad 100644 --- a/docset/winserver2016-ps/scheduledtasks/Get-ClusteredScheduledTask.md +++ b/docset/winserver2016-ps/scheduledtasks/Get-ClusteredScheduledTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_ClusteredScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/get-clusteredscheduledtask?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/get-clusteredscheduledtask?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusteredScheduledTask --- diff --git a/docset/winserver2016-ps/scheduledtasks/Get-ScheduledTask.md b/docset/winserver2016-ps/scheduledtasks/Get-ScheduledTask.md index fb01dd4223..385f274d1a 100644 --- a/docset/winserver2016-ps/scheduledtasks/Get-ScheduledTask.md +++ b/docset/winserver2016-ps/scheduledtasks/Get-ScheduledTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/get-scheduledtask?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/get-scheduledtask?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ScheduledTask --- diff --git a/docset/winserver2016-ps/scheduledtasks/Get-ScheduledTaskInfo.md b/docset/winserver2016-ps/scheduledtasks/Get-ScheduledTaskInfo.md index f61b78a980..3a7775dc69 100644 --- a/docset/winserver2016-ps/scheduledtasks/Get-ScheduledTaskInfo.md +++ b/docset/winserver2016-ps/scheduledtasks/Get-ScheduledTaskInfo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/get-scheduledtaskinfo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/get-scheduledtaskinfo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ScheduledTaskInfo --- diff --git a/docset/winserver2016-ps/scheduledtasks/New-ScheduledTask.md b/docset/winserver2016-ps/scheduledtasks/New-ScheduledTask.md index 90f67561ff..1a666fb450 100644 --- a/docset/winserver2016-ps/scheduledtasks/New-ScheduledTask.md +++ b/docset/winserver2016-ps/scheduledtasks/New-ScheduledTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/new-scheduledtask?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/new-scheduledtask?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ScheduledTask --- diff --git a/docset/winserver2016-ps/scheduledtasks/New-ScheduledTaskAction.md b/docset/winserver2016-ps/scheduledtasks/New-ScheduledTaskAction.md index 83b783caff..b59f768f53 100644 --- a/docset/winserver2016-ps/scheduledtasks/New-ScheduledTaskAction.md +++ b/docset/winserver2016-ps/scheduledtasks/New-ScheduledTaskAction.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/new-scheduledtaskaction?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/new-scheduledtaskaction?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ScheduledTaskAction --- diff --git a/docset/winserver2016-ps/scheduledtasks/New-ScheduledTaskPrincipal.md b/docset/winserver2016-ps/scheduledtasks/New-ScheduledTaskPrincipal.md index cc2023fc4e..fb01b6f302 100644 --- a/docset/winserver2016-ps/scheduledtasks/New-ScheduledTaskPrincipal.md +++ b/docset/winserver2016-ps/scheduledtasks/New-ScheduledTaskPrincipal.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/new-scheduledtaskprincipal?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/new-scheduledtaskprincipal?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ScheduledTaskPrincipal --- diff --git a/docset/winserver2016-ps/scheduledtasks/New-ScheduledTaskSettingsSet.md b/docset/winserver2016-ps/scheduledtasks/New-ScheduledTaskSettingsSet.md index 397071cb2f..5430abc825 100644 --- a/docset/winserver2016-ps/scheduledtasks/New-ScheduledTaskSettingsSet.md +++ b/docset/winserver2016-ps/scheduledtasks/New-ScheduledTaskSettingsSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/new-scheduledtasksettingsset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/new-scheduledtasksettingsset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ScheduledTaskSettingsSet --- diff --git a/docset/winserver2016-ps/scheduledtasks/New-ScheduledTaskTrigger.md b/docset/winserver2016-ps/scheduledtasks/New-ScheduledTaskTrigger.md index 6aca7535eb..3a6ce9a6a9 100644 --- a/docset/winserver2016-ps/scheduledtasks/New-ScheduledTaskTrigger.md +++ b/docset/winserver2016-ps/scheduledtasks/New-ScheduledTaskTrigger.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/new-scheduledtasktrigger?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/new-scheduledtasktrigger?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ScheduledTaskTrigger --- diff --git a/docset/winserver2016-ps/scheduledtasks/Register-ClusteredScheduledTask.md b/docset/winserver2016-ps/scheduledtasks/Register-ClusteredScheduledTask.md index 18f5b643fc..71f29759e7 100644 --- a/docset/winserver2016-ps/scheduledtasks/Register-ClusteredScheduledTask.md +++ b/docset/winserver2016-ps/scheduledtasks/Register-ClusteredScheduledTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_ClusteredScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/register-clusteredscheduledtask?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/register-clusteredscheduledtask?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Register-ClusteredScheduledTask --- diff --git a/docset/winserver2016-ps/scheduledtasks/Register-ScheduledTask.md b/docset/winserver2016-ps/scheduledtasks/Register-ScheduledTask.md index 9627430784..6e1e100381 100644 --- a/docset/winserver2016-ps/scheduledtasks/Register-ScheduledTask.md +++ b/docset/winserver2016-ps/scheduledtasks/Register-ScheduledTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/register-scheduledtask?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/register-scheduledtask?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Register-ScheduledTask --- diff --git a/docset/winserver2016-ps/scheduledtasks/Set-ClusteredScheduledTask.md b/docset/winserver2016-ps/scheduledtasks/Set-ClusteredScheduledTask.md index 781f94b85f..4e5601c1b9 100644 --- a/docset/winserver2016-ps/scheduledtasks/Set-ClusteredScheduledTask.md +++ b/docset/winserver2016-ps/scheduledtasks/Set-ClusteredScheduledTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_ClusteredScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/set-clusteredscheduledtask?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/set-clusteredscheduledtask?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusteredScheduledTask --- diff --git a/docset/winserver2016-ps/scheduledtasks/Set-ScheduledTask.md b/docset/winserver2016-ps/scheduledtasks/Set-ScheduledTask.md index 7c470d96e9..b6ec832607 100644 --- a/docset/winserver2016-ps/scheduledtasks/Set-ScheduledTask.md +++ b/docset/winserver2016-ps/scheduledtasks/Set-ScheduledTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/set-scheduledtask?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/set-scheduledtask?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ScheduledTask --- diff --git a/docset/winserver2016-ps/scheduledtasks/Start-ScheduledTask.md b/docset/winserver2016-ps/scheduledtasks/Start-ScheduledTask.md index 147ce78ecc..1fa92a43e6 100644 --- a/docset/winserver2016-ps/scheduledtasks/Start-ScheduledTask.md +++ b/docset/winserver2016-ps/scheduledtasks/Start-ScheduledTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/start-scheduledtask?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/start-scheduledtask?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-ScheduledTask --- diff --git a/docset/winserver2016-ps/scheduledtasks/Stop-ScheduledTask.md b/docset/winserver2016-ps/scheduledtasks/Stop-ScheduledTask.md index 08cd3dfe90..68bd3be0e3 100644 --- a/docset/winserver2016-ps/scheduledtasks/Stop-ScheduledTask.md +++ b/docset/winserver2016-ps/scheduledtasks/Stop-ScheduledTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/stop-scheduledtask?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/stop-scheduledtask?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-ScheduledTask --- diff --git a/docset/winserver2016-ps/scheduledtasks/Unregister-ClusteredScheduledTask.md b/docset/winserver2016-ps/scheduledtasks/Unregister-ClusteredScheduledTask.md index 7d01574c8d..6a0b2cebfe 100644 --- a/docset/winserver2016-ps/scheduledtasks/Unregister-ClusteredScheduledTask.md +++ b/docset/winserver2016-ps/scheduledtasks/Unregister-ClusteredScheduledTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_ClusteredScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/unregister-clusteredscheduledtask?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/unregister-clusteredscheduledtask?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unregister-ClusteredScheduledTask --- diff --git a/docset/winserver2016-ps/scheduledtasks/Unregister-ScheduledTask.md b/docset/winserver2016-ps/scheduledtasks/Unregister-ScheduledTask.md index 13f944996b..beb8267223 100644 --- a/docset/winserver2016-ps/scheduledtasks/Unregister-ScheduledTask.md +++ b/docset/winserver2016-ps/scheduledtasks/Unregister-ScheduledTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/unregister-scheduledtask?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/unregister-scheduledtask?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unregister-ScheduledTask --- diff --git a/docset/winserver2016-ps/secureboot/Confirm-SecureBootUEFI.md b/docset/winserver2016-ps/secureboot/Confirm-SecureBootUEFI.md index 9043ad4209..f55d694906 100644 --- a/docset/winserver2016-ps/secureboot/Confirm-SecureBootUEFI.md +++ b/docset/winserver2016-ps/secureboot/Confirm-SecureBootUEFI.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.SecureBoot.Commands.dll-Help.xml Module Name: SecureBoot ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/secureboot/confirm-securebootuefi?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/secureboot/confirm-securebootuefi?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Confirm-SecureBootUEFI --- diff --git a/docset/winserver2016-ps/secureboot/Format-SecureBootUEFI.md b/docset/winserver2016-ps/secureboot/Format-SecureBootUEFI.md index 874a10ae11..ba163f05f9 100644 --- a/docset/winserver2016-ps/secureboot/Format-SecureBootUEFI.md +++ b/docset/winserver2016-ps/secureboot/Format-SecureBootUEFI.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.SecureBoot.Commands.dll-Help.xml Module Name: SecureBoot ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/secureboot/format-securebootuefi?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/secureboot/format-securebootuefi?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Format-SecureBootUEFI --- diff --git a/docset/winserver2016-ps/secureboot/Get-SecureBootPolicy.md b/docset/winserver2016-ps/secureboot/Get-SecureBootPolicy.md index 6716e32672..600f4d71d2 100644 --- a/docset/winserver2016-ps/secureboot/Get-SecureBootPolicy.md +++ b/docset/winserver2016-ps/secureboot/Get-SecureBootPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.SecureBoot.Commands.dll-Help.xml Module Name: SecureBoot ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/secureboot/get-securebootpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/secureboot/get-securebootpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SecureBootPolicy --- diff --git a/docset/winserver2016-ps/secureboot/Get-SecureBootUEFI.md b/docset/winserver2016-ps/secureboot/Get-SecureBootUEFI.md index 87648f4f9b..75bd841719 100644 --- a/docset/winserver2016-ps/secureboot/Get-SecureBootUEFI.md +++ b/docset/winserver2016-ps/secureboot/Get-SecureBootUEFI.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.SecureBoot.Commands.dll-Help.xml Module Name: SecureBoot ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/secureboot/get-securebootuefi?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/secureboot/get-securebootuefi?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SecureBootUEFI --- diff --git a/docset/winserver2016-ps/secureboot/Set-SecureBootUEFI.md b/docset/winserver2016-ps/secureboot/Set-SecureBootUEFI.md index 4ccf84e20c..412fe58e78 100644 --- a/docset/winserver2016-ps/secureboot/Set-SecureBootUEFI.md +++ b/docset/winserver2016-ps/secureboot/Set-SecureBootUEFI.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.SecureBoot.Commands.dll-Help.xml Module Name: SecureBoot ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/secureboot/set-securebootuefi?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/secureboot/set-securebootuefi?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SecureBootUEFI --- diff --git a/docset/winserver2016-ps/servercore/Get-DisplayResolution.md b/docset/winserver2016-ps/servercore/Get-DisplayResolution.md index 46d1b6610e..ded4c8a6a4 100644 --- a/docset/winserver2016-ps/servercore/Get-DisplayResolution.md +++ b/docset/winserver2016-ps/servercore/Get-DisplayResolution.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ServerCore-help.xml Module Name: ServerCore ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/servercore/get-displayresolution?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servercore/get-displayresolution?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DisplayResolution --- diff --git a/docset/winserver2016-ps/servercore/Set-DisplayResolution.md b/docset/winserver2016-ps/servercore/Set-DisplayResolution.md index 3f56f88deb..7124567d33 100644 --- a/docset/winserver2016-ps/servercore/Set-DisplayResolution.md +++ b/docset/winserver2016-ps/servercore/Set-DisplayResolution.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ServerCore-help.xml Module Name: ServerCore ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/servercore/set-displayresolution?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servercore/set-displayresolution?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DisplayResolution --- diff --git a/docset/winserver2016-ps/servermanagertasks/Get-SMCounterSample.md b/docset/winserver2016-ps/servermanagertasks/Get-SMCounterSample.md index a4a3409629..1e04a23973 100644 --- a/docset/winserver2016-ps/servermanagertasks/Get-SMCounterSample.md +++ b/docset/winserver2016-ps/servermanagertasks/Get-SMCounterSample.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ServerManagerTasks.cdxml-help.xml Module Name: ServerManagerTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/servermanagertasks/get-smcountersample?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanagertasks/get-smcountersample?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SMCounterSample --- diff --git a/docset/winserver2016-ps/servermanagertasks/Get-SMPerformanceCollector.md b/docset/winserver2016-ps/servermanagertasks/Get-SMPerformanceCollector.md index 699fcedf0d..bc03501c21 100644 --- a/docset/winserver2016-ps/servermanagertasks/Get-SMPerformanceCollector.md +++ b/docset/winserver2016-ps/servermanagertasks/Get-SMPerformanceCollector.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ServerManagerTasks.cdxml-help.xml Module Name: ServerManagerTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/servermanagertasks/get-smperformancecollector?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanagertasks/get-smperformancecollector?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SMPerformanceCollector --- diff --git a/docset/winserver2016-ps/servermanagertasks/Get-SMServerBpaResult.md b/docset/winserver2016-ps/servermanagertasks/Get-SMServerBpaResult.md index acf82009f9..472d111635 100644 --- a/docset/winserver2016-ps/servermanagertasks/Get-SMServerBpaResult.md +++ b/docset/winserver2016-ps/servermanagertasks/Get-SMServerBpaResult.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ServerManagerTasks.cdxml-help.xml Module Name: ServerManagerTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/servermanagertasks/get-smserverbparesult?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanagertasks/get-smserverbparesult?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SMServerBpaResult --- diff --git a/docset/winserver2016-ps/servermanagertasks/Get-SMServerClusterName.md b/docset/winserver2016-ps/servermanagertasks/Get-SMServerClusterName.md index 38d46844ee..318b612a0d 100644 --- a/docset/winserver2016-ps/servermanagertasks/Get-SMServerClusterName.md +++ b/docset/winserver2016-ps/servermanagertasks/Get-SMServerClusterName.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ServerManagerTasks.cdxml-help.xml Module Name: ServerManagerTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/servermanagertasks/get-smserverclustername?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanagertasks/get-smserverclustername?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SMServerClusterName --- diff --git a/docset/winserver2016-ps/servermanagertasks/Get-SMServerEvent.md b/docset/winserver2016-ps/servermanagertasks/Get-SMServerEvent.md index 9cf8f20ff4..82d4a44702 100644 --- a/docset/winserver2016-ps/servermanagertasks/Get-SMServerEvent.md +++ b/docset/winserver2016-ps/servermanagertasks/Get-SMServerEvent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ServerManagerTasks.cdxml-help.xml Module Name: ServerManagerTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/servermanagertasks/get-smserverevent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanagertasks/get-smserverevent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SMServerEvent --- diff --git a/docset/winserver2016-ps/servermanagertasks/Get-SMServerFeature.md b/docset/winserver2016-ps/servermanagertasks/Get-SMServerFeature.md index b05e0efad1..9f61810835 100644 --- a/docset/winserver2016-ps/servermanagertasks/Get-SMServerFeature.md +++ b/docset/winserver2016-ps/servermanagertasks/Get-SMServerFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ServerManagerTasks.cdxml-help.xml Module Name: ServerManagerTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/servermanagertasks/get-smserverfeature?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanagertasks/get-smserverfeature?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SMServerFeature --- diff --git a/docset/winserver2016-ps/servermanagertasks/Get-SMServerInventory.md b/docset/winserver2016-ps/servermanagertasks/Get-SMServerInventory.md index 24668b106a..11b735b8eb 100644 --- a/docset/winserver2016-ps/servermanagertasks/Get-SMServerInventory.md +++ b/docset/winserver2016-ps/servermanagertasks/Get-SMServerInventory.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ServerManagerTasks.cdxml-help.xml Module Name: ServerManagerTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/servermanagertasks/get-smserverinventory?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanagertasks/get-smserverinventory?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SMServerInventory --- diff --git a/docset/winserver2016-ps/servermanagertasks/Get-SMServerService.md b/docset/winserver2016-ps/servermanagertasks/Get-SMServerService.md index 0edd0c100f..79393044cf 100644 --- a/docset/winserver2016-ps/servermanagertasks/Get-SMServerService.md +++ b/docset/winserver2016-ps/servermanagertasks/Get-SMServerService.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ServerManagerTasks.cdxml-help.xml Module Name: ServerManagerTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/servermanagertasks/get-smserverservice?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanagertasks/get-smserverservice?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SMServerService --- diff --git a/docset/winserver2016-ps/servermanagertasks/Remove-SMServerPerformanceLog.md b/docset/winserver2016-ps/servermanagertasks/Remove-SMServerPerformanceLog.md index 983729bc14..c454a0e2d8 100644 --- a/docset/winserver2016-ps/servermanagertasks/Remove-SMServerPerformanceLog.md +++ b/docset/winserver2016-ps/servermanagertasks/Remove-SMServerPerformanceLog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ServerManagerTasks.cdxml-help.xml Module Name: ServerManagerTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/servermanagertasks/remove-smserverperformancelog?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanagertasks/remove-smserverperformancelog?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-SMServerPerformanceLog --- diff --git a/docset/winserver2016-ps/servermanagertasks/Start-SMPerformanceCollector.md b/docset/winserver2016-ps/servermanagertasks/Start-SMPerformanceCollector.md index c961521407..34a69edef8 100644 --- a/docset/winserver2016-ps/servermanagertasks/Start-SMPerformanceCollector.md +++ b/docset/winserver2016-ps/servermanagertasks/Start-SMPerformanceCollector.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ServerManagerTasks.cdxml-help.xml Module Name: ServerManagerTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/servermanagertasks/start-smperformancecollector?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanagertasks/start-smperformancecollector?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-SMPerformanceCollector --- diff --git a/docset/winserver2016-ps/servermanagertasks/Stop-SMPerformanceCollector.md b/docset/winserver2016-ps/servermanagertasks/Stop-SMPerformanceCollector.md index 88ff0d5144..ff4ee95f14 100644 --- a/docset/winserver2016-ps/servermanagertasks/Stop-SMPerformanceCollector.md +++ b/docset/winserver2016-ps/servermanagertasks/Stop-SMPerformanceCollector.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ServerManagerTasks.cdxml-help.xml Module Name: ServerManagerTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/servermanagertasks/stop-smperformancecollector?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanagertasks/stop-smperformancecollector?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-SMPerformanceCollector --- diff --git a/docset/winserver2016-ps/shieldedvmcmdlets/Get-KeyProtectorFromShieldingDataFile.md b/docset/winserver2016-ps/shieldedvmcmdlets/Get-KeyProtectorFromShieldingDataFile.md index b60d9eccee..560eb1eb65 100644 --- a/docset/winserver2016-ps/shieldedvmcmdlets/Get-KeyProtectorFromShieldingDataFile.md +++ b/docset/winserver2016-ps/shieldedvmcmdlets/Get-KeyProtectorFromShieldingDataFile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ShieldedVmCmdlets-help.xml Module Name: ShieldedVmCmdlets ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/shieldedvmcmdlets/get-keyprotectorfromshieldingdatafile?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/shieldedvmcmdlets/get-keyprotectorfromshieldingdatafile?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-KeyProtectorFromShieldingDataFile --- diff --git a/docset/winserver2016-ps/shieldedvmcmdlets/Get-ShieldedVMProvisioningStatus.md b/docset/winserver2016-ps/shieldedvmcmdlets/Get-ShieldedVMProvisioningStatus.md index 320667f039..456adbae5e 100644 --- a/docset/winserver2016-ps/shieldedvmcmdlets/Get-ShieldedVMProvisioningStatus.md +++ b/docset/winserver2016-ps/shieldedvmcmdlets/Get-ShieldedVMProvisioningStatus.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ShieldedVmCmdlets-help.xml Module Name: ShieldedVmCmdlets ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/shieldedvmcmdlets/get-shieldedvmprovisioningstatus?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/shieldedvmcmdlets/get-shieldedvmprovisioningstatus?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ShieldedVMProvisioningStatus --- diff --git a/docset/winserver2016-ps/shieldedvmcmdlets/Initialize-ShieldedVM.md b/docset/winserver2016-ps/shieldedvmcmdlets/Initialize-ShieldedVM.md index e20ce881c1..cb2c629c1d 100644 --- a/docset/winserver2016-ps/shieldedvmcmdlets/Initialize-ShieldedVM.md +++ b/docset/winserver2016-ps/shieldedvmcmdlets/Initialize-ShieldedVM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ShieldedVmCmdlets-help.xml Module Name: ShieldedVmCmdlets ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/shieldedvmcmdlets/initialize-shieldedvm?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/shieldedvmcmdlets/initialize-shieldedvm?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Initialize-ShieldedVM --- diff --git a/docset/winserver2016-ps/shieldedvmcmdlets/New-ShieldedVMSpecializationDataFile.md b/docset/winserver2016-ps/shieldedvmcmdlets/New-ShieldedVMSpecializationDataFile.md index 8fafd5509d..35ccf92266 100644 --- a/docset/winserver2016-ps/shieldedvmcmdlets/New-ShieldedVMSpecializationDataFile.md +++ b/docset/winserver2016-ps/shieldedvmcmdlets/New-ShieldedVMSpecializationDataFile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ShieldedVmCmdlets-help.xml Module Name: ShieldedVmCmdlets ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/shieldedvmcmdlets/new-shieldedvmspecializationdatafile?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/shieldedvmcmdlets/new-shieldedvmspecializationdatafile?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ShieldedVMSpecializationDataFile --- diff --git a/docset/winserver2016-ps/shieldedvmcmdlets/Test-ShieldingDataApplicability.md b/docset/winserver2016-ps/shieldedvmcmdlets/Test-ShieldingDataApplicability.md index ec5915b030..d4b0ad47fb 100644 --- a/docset/winserver2016-ps/shieldedvmcmdlets/Test-ShieldingDataApplicability.md +++ b/docset/winserver2016-ps/shieldedvmcmdlets/Test-ShieldingDataApplicability.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ShieldedVmCmdlets-help.xml Module Name: ShieldedVmCmdlets ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/shieldedvmcmdlets/test-shieldingdataapplicability?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/shieldedvmcmdlets/test-shieldingdataapplicability?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-ShieldingDataApplicability --- diff --git a/docset/winserver2016-ps/shieldedvmdatafile/Import-ShieldingDataFile.md b/docset/winserver2016-ps/shieldedvmdatafile/Import-ShieldingDataFile.md index 1085465acf..3b8a6aa6a6 100644 --- a/docset/winserver2016-ps/shieldedvmdatafile/Import-ShieldingDataFile.md +++ b/docset/winserver2016-ps/shieldedvmdatafile/Import-ShieldingDataFile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.HardenedFabric.Cmdlets.dll-Help.xml Module Name: ShieldedVMDataFile ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/shieldedvmdatafile/import-shieldingdatafile?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/shieldedvmdatafile/import-shieldingdatafile?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-ShieldingDataFile --- diff --git a/docset/winserver2016-ps/shieldedvmdatafile/New-ShieldingDataFile.md b/docset/winserver2016-ps/shieldedvmdatafile/New-ShieldingDataFile.md index fe8f42788d..ba6faea445 100644 --- a/docset/winserver2016-ps/shieldedvmdatafile/New-ShieldingDataFile.md +++ b/docset/winserver2016-ps/shieldedvmdatafile/New-ShieldingDataFile.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Windows.HardenedFabric.Cmdlets.dll-Help.xml Module Name: ShieldedVMDataFile -online version: https://docs.microsoft.com/powershell/module/shieldedvmdatafile/new-shieldingdatafile?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/shieldedvmdatafile/new-shieldingdatafile?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ShieldingDataFile --- diff --git a/docset/winserver2016-ps/shieldedvmdatafile/New-VolumeIDQualifier.md b/docset/winserver2016-ps/shieldedvmdatafile/New-VolumeIDQualifier.md index 88c6a19feb..91081a2465 100644 --- a/docset/winserver2016-ps/shieldedvmdatafile/New-VolumeIDQualifier.md +++ b/docset/winserver2016-ps/shieldedvmdatafile/New-VolumeIDQualifier.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.HardenedFabric.Cmdlets.dll-Help.xml Module Name: ShieldedVMDataFile ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/shieldedvmdatafile/new-volumeidqualifier?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/shieldedvmdatafile/new-volumeidqualifier?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VolumeIDQualifier --- diff --git a/docset/winserver2016-ps/shieldedvmdatafile/Save-ShieldedVMRecoveryKey.md b/docset/winserver2016-ps/shieldedvmdatafile/Save-ShieldedVMRecoveryKey.md index 0f838586ac..ee52486ba7 100644 --- a/docset/winserver2016-ps/shieldedvmdatafile/Save-ShieldedVMRecoveryKey.md +++ b/docset/winserver2016-ps/shieldedvmdatafile/Save-ShieldedVMRecoveryKey.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Windows.HardenedFabric.Cmdlets.dll-Help.xml Module Name: ShieldedVMDataFile -online version: https://docs.microsoft.com/powershell/module/shieldedvmdatafile/save-shieldedvmrecoverykey?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/shieldedvmdatafile/save-shieldedvmrecoverykey?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Save-ShieldedVMRecoveryKey --- diff --git a/docset/winserver2016-ps/shieldedvmdatafile/Save-VolumeSignatureCatalog.md b/docset/winserver2016-ps/shieldedvmdatafile/Save-VolumeSignatureCatalog.md index d6570b5ece..65b8ea12d7 100644 --- a/docset/winserver2016-ps/shieldedvmdatafile/Save-VolumeSignatureCatalog.md +++ b/docset/winserver2016-ps/shieldedvmdatafile/Save-VolumeSignatureCatalog.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Windows.HardenedFabric.Cmdlets.dll-Help.xml Module Name: ShieldedVMDataFile -online version: https://docs.microsoft.com/powershell/module/shieldedvmdatafile/save-volumesignaturecatalog?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/shieldedvmdatafile/save-volumesignaturecatalog?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Save-VolumeSignatureCatalog --- diff --git a/docset/winserver2016-ps/shieldedvmdatafile/Unprotect-ShieldedVMRecoveryKey.md b/docset/winserver2016-ps/shieldedvmdatafile/Unprotect-ShieldedVMRecoveryKey.md index efa316b01d..6ff6c243ab 100644 --- a/docset/winserver2016-ps/shieldedvmdatafile/Unprotect-ShieldedVMRecoveryKey.md +++ b/docset/winserver2016-ps/shieldedvmdatafile/Unprotect-ShieldedVMRecoveryKey.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Windows.HardenedFabric.Cmdlets.dll-Help.xml Module Name: ShieldedVMDataFile -online version: https://docs.microsoft.com/powershell/module/shieldedvmdatafile/unprotect-shieldedvmrecoverykey?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/shieldedvmdatafile/unprotect-shieldedvmrecoverykey?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unprotect-ShieldedVMRecoveryKey --- diff --git a/docset/winserver2016-ps/shieldedvmtemplate/Initialize-VMShieldingHelperVHD.md b/docset/winserver2016-ps/shieldedvmtemplate/Initialize-VMShieldingHelperVHD.md index d063e2a7df..322c2a8eb5 100644 --- a/docset/winserver2016-ps/shieldedvmtemplate/Initialize-VMShieldingHelperVHD.md +++ b/docset/winserver2016-ps/shieldedvmtemplate/Initialize-VMShieldingHelperVHD.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.HardenedFabric.Cmdlets.dll-Help.xml Module Name: ShieldedVMTemplate ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/shieldedvmtemplate/initialize-vmshieldinghelpervhd?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/shieldedvmtemplate/initialize-vmshieldinghelpervhd?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Initialize-VMShieldingHelperVHD --- diff --git a/docset/winserver2016-ps/shieldedvmtemplate/Protect-TemplateDisk.md b/docset/winserver2016-ps/shieldedvmtemplate/Protect-TemplateDisk.md index d191080f35..0f37ac523e 100644 --- a/docset/winserver2016-ps/shieldedvmtemplate/Protect-TemplateDisk.md +++ b/docset/winserver2016-ps/shieldedvmtemplate/Protect-TemplateDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.HardenedFabric.Cmdlets.dll-Help.xml Module Name: ShieldedVMTemplate ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/shieldedvmtemplate/protect-templatedisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/shieldedvmtemplate/protect-templatedisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Protect-TemplateDisk --- diff --git a/docset/winserver2016-ps/smbshare/Block-SmbShareAccess.md b/docset/winserver2016-ps/smbshare/Block-SmbShareAccess.md index 0217e44585..abe320511c 100644 --- a/docset/winserver2016-ps/smbshare/Block-SmbShareAccess.md +++ b/docset/winserver2016-ps/smbshare/Block-SmbShareAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbShare.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/block-smbshareaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/block-smbshareaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Block-SmbShareAccess --- diff --git a/docset/winserver2016-ps/smbshare/Close-SmbOpenFile.md b/docset/winserver2016-ps/smbshare/Close-SmbOpenFile.md index 5d9b01329a..8e2e87e0a5 100644 --- a/docset/winserver2016-ps/smbshare/Close-SmbOpenFile.md +++ b/docset/winserver2016-ps/smbshare/Close-SmbOpenFile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbOpenFile.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/close-smbopenfile?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/close-smbopenfile?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Close-SmbOpenFile --- diff --git a/docset/winserver2016-ps/smbshare/Close-SmbSession.md b/docset/winserver2016-ps/smbshare/Close-SmbSession.md index ada9134518..238e4d643b 100644 --- a/docset/winserver2016-ps/smbshare/Close-SmbSession.md +++ b/docset/winserver2016-ps/smbshare/Close-SmbSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbSession.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/close-smbsession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/close-smbsession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Close-SmbSession --- diff --git a/docset/winserver2016-ps/smbshare/Disable-SmbDelegation.md b/docset/winserver2016-ps/smbshare/Disable-SmbDelegation.md index 26b3056853..5578e052f7 100644 --- a/docset/winserver2016-ps/smbshare/Disable-SmbDelegation.md +++ b/docset/winserver2016-ps/smbshare/Disable-SmbDelegation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbScriptModule-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/disable-smbdelegation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/disable-smbdelegation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-SmbDelegation --- diff --git a/docset/winserver2016-ps/smbshare/Enable-SmbDelegation.md b/docset/winserver2016-ps/smbshare/Enable-SmbDelegation.md index d5ed804d40..7f341f7cf4 100644 --- a/docset/winserver2016-ps/smbshare/Enable-SmbDelegation.md +++ b/docset/winserver2016-ps/smbshare/Enable-SmbDelegation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbScriptModule-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/enable-smbdelegation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/enable-smbdelegation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-SmbDelegation --- diff --git a/docset/winserver2016-ps/smbshare/Get-SmbBandwidthLimit.md b/docset/winserver2016-ps/smbshare/Get-SmbBandwidthLimit.md index 30c675462f..bb1b4ed2bb 100644 --- a/docset/winserver2016-ps/smbshare/Get-SmbBandwidthLimit.md +++ b/docset/winserver2016-ps/smbshare/Get-SmbBandwidthLimit.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbBandwidthLimit.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbbandwidthlimit?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbbandwidthlimit?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbBandwidthLimit --- diff --git a/docset/winserver2016-ps/smbshare/Get-SmbClientConfiguration.md b/docset/winserver2016-ps/smbshare/Get-SmbClientConfiguration.md index bca0f0959d..263ffa946b 100644 --- a/docset/winserver2016-ps/smbshare/Get-SmbClientConfiguration.md +++ b/docset/winserver2016-ps/smbshare/Get-SmbClientConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbClientConfiguration.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbclientconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbclientconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbClientConfiguration --- diff --git a/docset/winserver2016-ps/smbshare/Get-SmbClientNetworkInterface.md b/docset/winserver2016-ps/smbshare/Get-SmbClientNetworkInterface.md index 8948ad0aea..37b75cacbe 100644 --- a/docset/winserver2016-ps/smbshare/Get-SmbClientNetworkInterface.md +++ b/docset/winserver2016-ps/smbshare/Get-SmbClientNetworkInterface.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbClientNetworkInterface.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbclientnetworkinterface?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbclientnetworkinterface?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbClientNetworkInterface --- diff --git a/docset/winserver2016-ps/smbshare/Get-SmbConnection.md b/docset/winserver2016-ps/smbshare/Get-SmbConnection.md index 1c8a845b08..4ad423c812 100644 --- a/docset/winserver2016-ps/smbshare/Get-SmbConnection.md +++ b/docset/winserver2016-ps/smbshare/Get-SmbConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbConnection.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbconnection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbconnection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbConnection --- diff --git a/docset/winserver2016-ps/smbshare/Get-SmbDelegation.md b/docset/winserver2016-ps/smbshare/Get-SmbDelegation.md index 2431eceedb..68353c7d65 100644 --- a/docset/winserver2016-ps/smbshare/Get-SmbDelegation.md +++ b/docset/winserver2016-ps/smbshare/Get-SmbDelegation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbScriptModule-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbdelegation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbdelegation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbDelegation --- diff --git a/docset/winserver2016-ps/smbshare/Get-SmbMapping.md b/docset/winserver2016-ps/smbshare/Get-SmbMapping.md index d17497e5e8..856eb0e68f 100644 --- a/docset/winserver2016-ps/smbshare/Get-SmbMapping.md +++ b/docset/winserver2016-ps/smbshare/Get-SmbMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbMapping.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbmapping?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbmapping?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbMapping --- diff --git a/docset/winserver2016-ps/smbshare/Get-SmbMultichannelConnection.md b/docset/winserver2016-ps/smbshare/Get-SmbMultichannelConnection.md index 29bf592249..ac029dba31 100644 --- a/docset/winserver2016-ps/smbshare/Get-SmbMultichannelConnection.md +++ b/docset/winserver2016-ps/smbshare/Get-SmbMultichannelConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbMultichannelConnection.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbmultichannelconnection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbmultichannelconnection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbMultichannelConnection --- diff --git a/docset/winserver2016-ps/smbshare/Get-SmbMultichannelConstraint.md b/docset/winserver2016-ps/smbshare/Get-SmbMultichannelConstraint.md index 9f2ee70e28..f750e44820 100644 --- a/docset/winserver2016-ps/smbshare/Get-SmbMultichannelConstraint.md +++ b/docset/winserver2016-ps/smbshare/Get-SmbMultichannelConstraint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbMultichannelConstraint.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbmultichannelconstraint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbmultichannelconstraint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbMultichannelConstraint --- diff --git a/docset/winserver2016-ps/smbshare/Get-SmbOpenFile.md b/docset/winserver2016-ps/smbshare/Get-SmbOpenFile.md index 8505788809..58d6f614b2 100644 --- a/docset/winserver2016-ps/smbshare/Get-SmbOpenFile.md +++ b/docset/winserver2016-ps/smbshare/Get-SmbOpenFile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbOpenFile.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbopenfile?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbopenfile?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbOpenFile --- diff --git a/docset/winserver2016-ps/smbshare/Get-SmbServerConfiguration.md b/docset/winserver2016-ps/smbshare/Get-SmbServerConfiguration.md index a918c0f142..5bbe0c2485 100644 --- a/docset/winserver2016-ps/smbshare/Get-SmbServerConfiguration.md +++ b/docset/winserver2016-ps/smbshare/Get-SmbServerConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbServerConfiguration.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbserverconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbserverconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbServerConfiguration --- diff --git a/docset/winserver2016-ps/smbshare/Get-SmbServerNetworkInterface.md b/docset/winserver2016-ps/smbshare/Get-SmbServerNetworkInterface.md index b01accd001..2d3df080ef 100644 --- a/docset/winserver2016-ps/smbshare/Get-SmbServerNetworkInterface.md +++ b/docset/winserver2016-ps/smbshare/Get-SmbServerNetworkInterface.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbServerNetworkInterface.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbservernetworkinterface?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbservernetworkinterface?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbServerNetworkInterface --- diff --git a/docset/winserver2016-ps/smbshare/Get-SmbSession.md b/docset/winserver2016-ps/smbshare/Get-SmbSession.md index 5873af571a..43e7af9d47 100644 --- a/docset/winserver2016-ps/smbshare/Get-SmbSession.md +++ b/docset/winserver2016-ps/smbshare/Get-SmbSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbSession.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbsession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbsession?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbSession --- diff --git a/docset/winserver2016-ps/smbshare/Get-SmbShare.md b/docset/winserver2016-ps/smbshare/Get-SmbShare.md index 23a34af26d..2c789f4718 100644 --- a/docset/winserver2016-ps/smbshare/Get-SmbShare.md +++ b/docset/winserver2016-ps/smbshare/Get-SmbShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbShare.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbshare?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbshare?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbShare --- diff --git a/docset/winserver2016-ps/smbshare/Get-SmbShareAccess.md b/docset/winserver2016-ps/smbshare/Get-SmbShareAccess.md index d49ae26db2..128e06a5fb 100644 --- a/docset/winserver2016-ps/smbshare/Get-SmbShareAccess.md +++ b/docset/winserver2016-ps/smbshare/Get-SmbShareAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbShare.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbshareaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbshareaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbShareAccess --- diff --git a/docset/winserver2016-ps/smbshare/Grant-SmbShareAccess.md b/docset/winserver2016-ps/smbshare/Grant-SmbShareAccess.md index 885782d361..4a8de24e58 100644 --- a/docset/winserver2016-ps/smbshare/Grant-SmbShareAccess.md +++ b/docset/winserver2016-ps/smbshare/Grant-SmbShareAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbShare.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/grant-smbshareaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/grant-smbshareaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Grant-SmbShareAccess --- diff --git a/docset/winserver2016-ps/smbshare/New-SmbMapping.md b/docset/winserver2016-ps/smbshare/New-SmbMapping.md index 268426dbf1..a2a7e0d0b9 100644 --- a/docset/winserver2016-ps/smbshare/New-SmbMapping.md +++ b/docset/winserver2016-ps/smbshare/New-SmbMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbMapping.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/new-smbmapping?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/new-smbmapping?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-SmbMapping --- diff --git a/docset/winserver2016-ps/smbshare/New-SmbMultichannelConstraint.md b/docset/winserver2016-ps/smbshare/New-SmbMultichannelConstraint.md index ee261430ec..591ffd46cd 100644 --- a/docset/winserver2016-ps/smbshare/New-SmbMultichannelConstraint.md +++ b/docset/winserver2016-ps/smbshare/New-SmbMultichannelConstraint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbMultichannelConstraint.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/new-smbmultichannelconstraint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/new-smbmultichannelconstraint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-SmbMultichannelConstraint --- diff --git a/docset/winserver2016-ps/smbshare/New-SmbShare.md b/docset/winserver2016-ps/smbshare/New-SmbShare.md index 23713f56bb..19e86771cd 100644 --- a/docset/winserver2016-ps/smbshare/New-SmbShare.md +++ b/docset/winserver2016-ps/smbshare/New-SmbShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbShare.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/new-smbshare?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/new-smbshare?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-SmbShare --- diff --git a/docset/winserver2016-ps/smbshare/Remove-SmbBandwidthLimit.md b/docset/winserver2016-ps/smbshare/Remove-SmbBandwidthLimit.md index 8b938c4224..49a2f4f0f1 100644 --- a/docset/winserver2016-ps/smbshare/Remove-SmbBandwidthLimit.md +++ b/docset/winserver2016-ps/smbshare/Remove-SmbBandwidthLimit.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbBandwidthLimit.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/remove-smbbandwidthlimit?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/remove-smbbandwidthlimit?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-SmbBandwidthLimit --- diff --git a/docset/winserver2016-ps/smbshare/Remove-SmbMapping.md b/docset/winserver2016-ps/smbshare/Remove-SmbMapping.md index 9c48350016..5e8e6ab29f 100644 --- a/docset/winserver2016-ps/smbshare/Remove-SmbMapping.md +++ b/docset/winserver2016-ps/smbshare/Remove-SmbMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbMapping.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/remove-smbmapping?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/remove-smbmapping?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-SmbMapping --- diff --git a/docset/winserver2016-ps/smbshare/Remove-SmbMultichannelConstraint.md b/docset/winserver2016-ps/smbshare/Remove-SmbMultichannelConstraint.md index 252bc99202..c181445001 100644 --- a/docset/winserver2016-ps/smbshare/Remove-SmbMultichannelConstraint.md +++ b/docset/winserver2016-ps/smbshare/Remove-SmbMultichannelConstraint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbMultichannelConstraint.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/remove-smbmultichannelconstraint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/remove-smbmultichannelconstraint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-SmbMultichannelConstraint --- diff --git a/docset/winserver2016-ps/smbshare/Remove-SmbShare.md b/docset/winserver2016-ps/smbshare/Remove-SmbShare.md index 01ea63098f..49ea962b57 100644 --- a/docset/winserver2016-ps/smbshare/Remove-SmbShare.md +++ b/docset/winserver2016-ps/smbshare/Remove-SmbShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbShare.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/remove-smbshare?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/remove-smbshare?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-SmbShare --- diff --git a/docset/winserver2016-ps/smbshare/Revoke-SmbShareAccess.md b/docset/winserver2016-ps/smbshare/Revoke-SmbShareAccess.md index ec6e703236..e804e170be 100644 --- a/docset/winserver2016-ps/smbshare/Revoke-SmbShareAccess.md +++ b/docset/winserver2016-ps/smbshare/Revoke-SmbShareAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbShare.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/revoke-smbshareaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/revoke-smbshareaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Revoke-SmbShareAccess --- diff --git a/docset/winserver2016-ps/smbshare/Set-SmbBandwidthLimit.md b/docset/winserver2016-ps/smbshare/Set-SmbBandwidthLimit.md index edcac6e48b..072e4b7684 100644 --- a/docset/winserver2016-ps/smbshare/Set-SmbBandwidthLimit.md +++ b/docset/winserver2016-ps/smbshare/Set-SmbBandwidthLimit.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbBandwidthLimit.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/set-smbbandwidthlimit?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/set-smbbandwidthlimit?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SmbBandwidthLimit --- diff --git a/docset/winserver2016-ps/smbshare/Set-SmbClientConfiguration.md b/docset/winserver2016-ps/smbshare/Set-SmbClientConfiguration.md index 43794f14a5..a338a0eac6 100644 --- a/docset/winserver2016-ps/smbshare/Set-SmbClientConfiguration.md +++ b/docset/winserver2016-ps/smbshare/Set-SmbClientConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbClientConfiguration.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/set-smbclientconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/set-smbclientconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SmbClientConfiguration --- diff --git a/docset/winserver2016-ps/smbshare/Set-SmbPathAcl.md b/docset/winserver2016-ps/smbshare/Set-SmbPathAcl.md index 318c74649c..c70d23d5a5 100644 --- a/docset/winserver2016-ps/smbshare/Set-SmbPathAcl.md +++ b/docset/winserver2016-ps/smbshare/Set-SmbPathAcl.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbScriptModule-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/set-smbpathacl?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/set-smbpathacl?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SmbPathAcl --- diff --git a/docset/winserver2016-ps/smbshare/Set-SmbServerConfiguration.md b/docset/winserver2016-ps/smbshare/Set-SmbServerConfiguration.md index 711c942980..5f9a54f1e7 100644 --- a/docset/winserver2016-ps/smbshare/Set-SmbServerConfiguration.md +++ b/docset/winserver2016-ps/smbshare/Set-SmbServerConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbServerConfiguration.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/set-smbserverconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/set-smbserverconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SmbServerConfiguration --- diff --git a/docset/winserver2016-ps/smbshare/Set-SmbShare.md b/docset/winserver2016-ps/smbshare/Set-SmbShare.md index f48f5a24ae..958013d78e 100644 --- a/docset/winserver2016-ps/smbshare/Set-SmbShare.md +++ b/docset/winserver2016-ps/smbshare/Set-SmbShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbShare.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/set-smbshare?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/set-smbshare?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SmbShare --- diff --git a/docset/winserver2016-ps/smbshare/Unblock-SmbShareAccess.md b/docset/winserver2016-ps/smbshare/Unblock-SmbShareAccess.md index 52f568f4a5..5f26c2adbb 100644 --- a/docset/winserver2016-ps/smbshare/Unblock-SmbShareAccess.md +++ b/docset/winserver2016-ps/smbshare/Unblock-SmbShareAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbShare.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/unblock-smbshareaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/unblock-smbshareaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unblock-SmbShareAccess --- diff --git a/docset/winserver2016-ps/smbshare/Update-SmbMultichannelConnection.md b/docset/winserver2016-ps/smbshare/Update-SmbMultichannelConnection.md index bf7fe802f7..fc6ef258f9 100644 --- a/docset/winserver2016-ps/smbshare/Update-SmbMultichannelConnection.md +++ b/docset/winserver2016-ps/smbshare/Update-SmbMultichannelConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbMultichannelConnection.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/update-smbmultichannelconnection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/update-smbmultichannelconnection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-SmbMultichannelConnection --- diff --git a/docset/winserver2016-ps/smbwitness/Get-SmbWitnessClient.md b/docset/winserver2016-ps/smbwitness/Get-SmbWitnessClient.md index 39b459df13..66dd1e09d3 100644 --- a/docset/winserver2016-ps/smbwitness/Get-SmbWitnessClient.md +++ b/docset/winserver2016-ps/smbwitness/Get-SmbWitnessClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbWitnessWmiClient.cdxml-help.xml Module Name: SmbWitness ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbwitness/get-smbwitnessclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbwitness/get-smbwitnessclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbWitnessClient --- diff --git a/docset/winserver2016-ps/smbwitness/Move-SmbWitnessClient.md b/docset/winserver2016-ps/smbwitness/Move-SmbWitnessClient.md index 77af59e1f7..578c8042cf 100644 --- a/docset/winserver2016-ps/smbwitness/Move-SmbWitnessClient.md +++ b/docset/winserver2016-ps/smbwitness/Move-SmbWitnessClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbWitnessWmiClient.cdxml-help.xml Module Name: SmbWitness ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbwitness/move-smbwitnessclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbwitness/move-smbwitnessclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-SmbWitnessClient --- diff --git a/docset/winserver2016-ps/smisconfig/Register-SmisProvider.md b/docset/winserver2016-ps/smisconfig/Register-SmisProvider.md index f22a34583e..75823d5e71 100644 --- a/docset/winserver2016-ps/smisconfig/Register-SmisProvider.md +++ b/docset/winserver2016-ps/smisconfig/Register-SmisProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.StorageManagementService.Configuration.Cmdlets.dll-Help.xml Module Name: SMISConfig ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/smisconfig/register-smisprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smisconfig/register-smisprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Register-SmisProvider --- diff --git a/docset/winserver2016-ps/smisconfig/Search-SmisProvider.md b/docset/winserver2016-ps/smisconfig/Search-SmisProvider.md index c330c96078..0f0f14bbc9 100644 --- a/docset/winserver2016-ps/smisconfig/Search-SmisProvider.md +++ b/docset/winserver2016-ps/smisconfig/Search-SmisProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_SmisProvider_v1.0.cdxml-help.xml Module Name: SMISConfig ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/smisconfig/search-smisprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smisconfig/search-smisprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Search-SmisProvider --- diff --git a/docset/winserver2016-ps/smisconfig/Unregister-SmisProvider.md b/docset/winserver2016-ps/smisconfig/Unregister-SmisProvider.md index 7caa978ac7..a30b837435 100644 --- a/docset/winserver2016-ps/smisconfig/Unregister-SmisProvider.md +++ b/docset/winserver2016-ps/smisconfig/Unregister-SmisProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_SmisProvider_v1.0.cdxml-help.xml Module Name: SMISConfig ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/smisconfig/unregister-smisprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smisconfig/unregister-smisprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unregister-SmisProvider --- diff --git a/docset/winserver2016-ps/softwareinventorylogging/Get-SilComputer.md b/docset/winserver2016-ps/softwareinventorylogging/Get-SilComputer.md index 610410912c..7ee2afe95e 100644 --- a/docset/winserver2016-ps/softwareinventorylogging/Get-SilComputer.md +++ b/docset/winserver2016-ps/softwareinventorylogging/Get-SilComputer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftSil_Computer.cdxml-help.xml Module Name: SoftwareInventoryLogging ms.date: 01/24/2017 -online version: https://docs.microsoft.com/powershell/module/softwareinventorylogging/get-silcomputer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/softwareinventorylogging/get-silcomputer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SilComputer --- diff --git a/docset/winserver2016-ps/softwareinventorylogging/Get-SilData.md b/docset/winserver2016-ps/softwareinventorylogging/Get-SilData.md index ef75953e21..51d2221e0b 100644 --- a/docset/winserver2016-ps/softwareinventorylogging/Get-SilData.md +++ b/docset/winserver2016-ps/softwareinventorylogging/Get-SilData.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Msft_MiStreamTasks.cdxml-help.xml Module Name: SoftwareInventoryLogging ms.date: 01/24/2017 -online version: https://docs.microsoft.com/powershell/module/softwareinventorylogging/get-sildata?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/softwareinventorylogging/get-sildata?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SilData --- diff --git a/docset/winserver2016-ps/softwareinventorylogging/Get-SilLogging.md b/docset/winserver2016-ps/softwareinventorylogging/Get-SilLogging.md index 6ce32db4bc..148c5e03d2 100644 --- a/docset/winserver2016-ps/softwareinventorylogging/Get-SilLogging.md +++ b/docset/winserver2016-ps/softwareinventorylogging/Get-SilLogging.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftSil_ManagementTasks-help.xml Module Name: SoftwareInventoryLogging ms.date: 01/24/2017 -online version: https://docs.microsoft.com/powershell/module/softwareinventorylogging/get-sillogging?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/softwareinventorylogging/get-sillogging?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SilLogging --- diff --git a/docset/winserver2016-ps/softwareinventorylogging/Get-SilSoftware.md b/docset/winserver2016-ps/softwareinventorylogging/Get-SilSoftware.md index 4a3ba84a0f..16a88f6474 100644 --- a/docset/winserver2016-ps/softwareinventorylogging/Get-SilSoftware.md +++ b/docset/winserver2016-ps/softwareinventorylogging/Get-SilSoftware.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftSil_Software.cdxml-help.xml Module Name: SoftwareInventoryLogging ms.date: 01/24/2017 -online version: https://docs.microsoft.com/powershell/module/softwareinventorylogging/get-silsoftware?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/softwareinventorylogging/get-silsoftware?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SilSoftware --- diff --git a/docset/winserver2016-ps/softwareinventorylogging/Get-SilUalAccess.md b/docset/winserver2016-ps/softwareinventorylogging/Get-SilUalAccess.md index 503de0437a..d9f7dfcee0 100644 --- a/docset/winserver2016-ps/softwareinventorylogging/Get-SilUalAccess.md +++ b/docset/winserver2016-ps/softwareinventorylogging/Get-SilUalAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftSil_UalAccess.cdxml-help.xml Module Name: SoftwareInventoryLogging ms.date: 01/24/2017 -online version: https://docs.microsoft.com/powershell/module/softwareinventorylogging/get-silualaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/softwareinventorylogging/get-silualaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SilUalAccess --- diff --git a/docset/winserver2016-ps/softwareinventorylogging/Get-SilWindowsUpdate.md b/docset/winserver2016-ps/softwareinventorylogging/Get-SilWindowsUpdate.md index 66df075767..da07fe34ba 100644 --- a/docset/winserver2016-ps/softwareinventorylogging/Get-SilWindowsUpdate.md +++ b/docset/winserver2016-ps/softwareinventorylogging/Get-SilWindowsUpdate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftSil_WindowsUpdate.cdxml-help.xml Module Name: SoftwareInventoryLogging ms.date: 01/24/2017 -online version: https://docs.microsoft.com/powershell/module/softwareinventorylogging/get-silwindowsupdate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/softwareinventorylogging/get-silwindowsupdate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SilWindowsUpdate --- diff --git a/docset/winserver2016-ps/softwareinventorylogging/Publish-SilData.md b/docset/winserver2016-ps/softwareinventorylogging/Publish-SilData.md index 65dc473b66..7a38b92c00 100644 --- a/docset/winserver2016-ps/softwareinventorylogging/Publish-SilData.md +++ b/docset/winserver2016-ps/softwareinventorylogging/Publish-SilData.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Msft_MiStreamTasks.cdxml-help.xml Module Name: SoftwareInventoryLogging ms.date: 01/24/2017 -online version: https://docs.microsoft.com/powershell/module/softwareinventorylogging/publish-sildata?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/softwareinventorylogging/publish-sildata?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Publish-SilData --- diff --git a/docset/winserver2016-ps/softwareinventorylogging/Set-SilLogging.md b/docset/winserver2016-ps/softwareinventorylogging/Set-SilLogging.md index 5983099898..99dd5a4296 100644 --- a/docset/winserver2016-ps/softwareinventorylogging/Set-SilLogging.md +++ b/docset/winserver2016-ps/softwareinventorylogging/Set-SilLogging.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftSil_ManagementTasks-help.xml Module Name: SoftwareInventoryLogging ms.date: 01/24/2017 -online version: https://docs.microsoft.com/powershell/module/softwareinventorylogging/set-sillogging?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/softwareinventorylogging/set-sillogging?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SilLogging --- diff --git a/docset/winserver2016-ps/softwareinventorylogging/Start-SilLogging.md b/docset/winserver2016-ps/softwareinventorylogging/Start-SilLogging.md index dc8fc96805..1f89c289bc 100644 --- a/docset/winserver2016-ps/softwareinventorylogging/Start-SilLogging.md +++ b/docset/winserver2016-ps/softwareinventorylogging/Start-SilLogging.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftSil_ManagementTasks-help.xml Module Name: SoftwareInventoryLogging ms.date: 01/24/2017 -online version: https://docs.microsoft.com/powershell/module/softwareinventorylogging/start-sillogging?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/softwareinventorylogging/start-sillogging?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-SilLogging --- diff --git a/docset/winserver2016-ps/softwareinventorylogging/Stop-SilLogging.md b/docset/winserver2016-ps/softwareinventorylogging/Stop-SilLogging.md index 1b2c32e659..d620fab3be 100644 --- a/docset/winserver2016-ps/softwareinventorylogging/Stop-SilLogging.md +++ b/docset/winserver2016-ps/softwareinventorylogging/Stop-SilLogging.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftSil_ManagementTasks-help.xml Module Name: SoftwareInventoryLogging ms.date: 01/24/2017 -online version: https://docs.microsoft.com/powershell/module/softwareinventorylogging/stop-sillogging?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/softwareinventorylogging/stop-sillogging?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-SilLogging --- diff --git a/docset/winserver2016-ps/startlayout/Export-StartLayout.md b/docset/winserver2016-ps/startlayout/Export-StartLayout.md index dd5209f558..1ed813ed8f 100644 --- a/docset/winserver2016-ps/startlayout/Export-StartLayout.md +++ b/docset/winserver2016-ps/startlayout/Export-StartLayout.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.StartLayout.Commands.dll-Help.xml Module Name: StartLayout ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/startlayout/export-startlayout?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/startlayout/export-startlayout?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-StartLayout --- diff --git a/docset/winserver2016-ps/startlayout/Get-StartApps.md b/docset/winserver2016-ps/startlayout/Get-StartApps.md index 03c29ac34e..020102cc3b 100644 --- a/docset/winserver2016-ps/startlayout/Get-StartApps.md +++ b/docset/winserver2016-ps/startlayout/Get-StartApps.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.StartLayout.Commands.dll-help.xml Module Name: StartLayout ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/startlayout/get-startapps?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/startlayout/get-startapps?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StartApps --- diff --git a/docset/winserver2016-ps/startlayout/Import-StartLayout.md b/docset/winserver2016-ps/startlayout/Import-StartLayout.md index 89c65f517a..16e7e2989a 100644 --- a/docset/winserver2016-ps/startlayout/Import-StartLayout.md +++ b/docset/winserver2016-ps/startlayout/Import-StartLayout.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.StartLayout.Commands.dll-Help.xml Module Name: StartLayout ms.date: 09/13/2018 -online version: https://docs.microsoft.com/powershell/module/startlayout/import-startlayout?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/startlayout/import-startlayout?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-StartLayout --- diff --git a/docset/winserver2016-ps/storage/Add-InitiatorIdToMaskingSet.md b/docset/winserver2016-ps/storage/Add-InitiatorIdToMaskingSet.md index 50d4e0d135..dcec48b868 100644 --- a/docset/winserver2016-ps/storage/Add-InitiatorIdToMaskingSet.md +++ b/docset/winserver2016-ps/storage/Add-InitiatorIdToMaskingSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MaskingSet.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/add-initiatoridtomaskingset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/add-initiatoridtomaskingset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-InitiatorIdToMaskingSet --- diff --git a/docset/winserver2016-ps/storage/Add-PartitionAccessPath.md b/docset/winserver2016-ps/storage/Add-PartitionAccessPath.md index c96943fa76..4c5919aabb 100644 --- a/docset/winserver2016-ps/storage/Add-PartitionAccessPath.md +++ b/docset/winserver2016-ps/storage/Add-PartitionAccessPath.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Partition.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/add-partitionaccesspath?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/add-partitionaccesspath?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-PartitionAccessPath --- diff --git a/docset/winserver2016-ps/storage/Add-PhysicalDisk.md b/docset/winserver2016-ps/storage/Add-PhysicalDisk.md index e895f35f62..821b5936a5 100644 --- a/docset/winserver2016-ps/storage/Add-PhysicalDisk.md +++ b/docset/winserver2016-ps/storage/Add-PhysicalDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageCmdlets.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/add-physicaldisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/add-physicaldisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-PhysicalDisk --- diff --git a/docset/winserver2016-ps/storage/Add-TargetPortToMaskingSet.md b/docset/winserver2016-ps/storage/Add-TargetPortToMaskingSet.md index 09025467f0..0a09166bce 100644 --- a/docset/winserver2016-ps/storage/Add-TargetPortToMaskingSet.md +++ b/docset/winserver2016-ps/storage/Add-TargetPortToMaskingSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MaskingSet.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/add-targetporttomaskingset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/add-targetporttomaskingset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-TargetPortToMaskingSet --- diff --git a/docset/winserver2016-ps/storage/Add-VirtualDiskToMaskingSet.md b/docset/winserver2016-ps/storage/Add-VirtualDiskToMaskingSet.md index af725faea3..593acd5069 100644 --- a/docset/winserver2016-ps/storage/Add-VirtualDiskToMaskingSet.md +++ b/docset/winserver2016-ps/storage/Add-VirtualDiskToMaskingSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MaskingSet.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/add-virtualdisktomaskingset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/add-virtualdisktomaskingset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VirtualDiskToMaskingSet --- diff --git a/docset/winserver2016-ps/storage/Block-FileShareAccess.md b/docset/winserver2016-ps/storage/Block-FileShareAccess.md index 06b29c9d03..57a9632d62 100644 --- a/docset/winserver2016-ps/storage/Block-FileShareAccess.md +++ b/docset/winserver2016-ps/storage/Block-FileShareAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FileShare.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/block-fileshareaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/block-fileshareaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Block-FileShareAccess --- diff --git a/docset/winserver2016-ps/storage/Clear-Disk.md b/docset/winserver2016-ps/storage/Clear-Disk.md index 7af7b7e046..b2ba4aec40 100644 --- a/docset/winserver2016-ps/storage/Clear-Disk.md +++ b/docset/winserver2016-ps/storage/Clear-Disk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Disk.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/clear-disk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/clear-disk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-Disk --- diff --git a/docset/winserver2016-ps/storage/Clear-FileStorageTier.md b/docset/winserver2016-ps/storage/Clear-FileStorageTier.md index 472479efb6..cd5f28863a 100644 --- a/docset/winserver2016-ps/storage/Clear-FileStorageTier.md +++ b/docset/winserver2016-ps/storage/Clear-FileStorageTier.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FileStorageTier.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/clear-filestoragetier?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/clear-filestoragetier?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-FileStorageTier --- diff --git a/docset/winserver2016-ps/storage/Connect-VirtualDisk.md b/docset/winserver2016-ps/storage/Connect-VirtualDisk.md index ffe9aa78c4..18eff8f491 100644 --- a/docset/winserver2016-ps/storage/Connect-VirtualDisk.md +++ b/docset/winserver2016-ps/storage/Connect-VirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: VirtualDisk.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/connect-virtualdisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/connect-virtualdisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Connect-VirtualDisk --- diff --git a/docset/winserver2016-ps/storage/Debug-FileShare.md b/docset/winserver2016-ps/storage/Debug-FileShare.md index a658b5e345..20c6ae1634 100644 --- a/docset/winserver2016-ps/storage/Debug-FileShare.md +++ b/docset/winserver2016-ps/storage/Debug-FileShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/debug-fileshare?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/debug-fileshare?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Debug-FileShare --- diff --git a/docset/winserver2016-ps/storage/Debug-StorageSubSystem.md b/docset/winserver2016-ps/storage/Debug-StorageSubSystem.md index eab222d83b..27c9c29617 100644 --- a/docset/winserver2016-ps/storage/Debug-StorageSubSystem.md +++ b/docset/winserver2016-ps/storage/Debug-StorageSubSystem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/debug-storagesubsystem?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/debug-storagesubsystem?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Debug-StorageSubSystem --- diff --git a/docset/winserver2016-ps/storage/Debug-Volume.md b/docset/winserver2016-ps/storage/Debug-Volume.md index 56536a41fe..e6842089e8 100644 --- a/docset/winserver2016-ps/storage/Debug-Volume.md +++ b/docset/winserver2016-ps/storage/Debug-Volume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/debug-volume?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/debug-volume?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Debug-Volume --- diff --git a/docset/winserver2016-ps/storage/Disable-PhysicalDiskIdentification.md b/docset/winserver2016-ps/storage/Disable-PhysicalDiskIdentification.md index b0efe7d605..e7ac41f142 100644 --- a/docset/winserver2016-ps/storage/Disable-PhysicalDiskIdentification.md +++ b/docset/winserver2016-ps/storage/Disable-PhysicalDiskIdentification.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/disable-physicaldiskidentification?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/disable-physicaldiskidentification?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-PhysicalDiskIdentification --- diff --git a/docset/winserver2016-ps/storage/Disable-StorageEnclosureIdentification.md b/docset/winserver2016-ps/storage/Disable-StorageEnclosureIdentification.md index 0a24db171a..2b21613b4d 100644 --- a/docset/winserver2016-ps/storage/Disable-StorageEnclosureIdentification.md +++ b/docset/winserver2016-ps/storage/Disable-StorageEnclosureIdentification.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageEnclosure.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/disable-storageenclosureidentification?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/disable-storageenclosureidentification?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-StorageEnclosureIdentification --- diff --git a/docset/winserver2016-ps/storage/Disable-StorageHighAvailability.md b/docset/winserver2016-ps/storage/Disable-StorageHighAvailability.md index 633f6fedd9..9ca7d0f53b 100644 --- a/docset/winserver2016-ps/storage/Disable-StorageHighAvailability.md +++ b/docset/winserver2016-ps/storage/Disable-StorageHighAvailability.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Disk.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/disable-storagehighavailability?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/disable-storagehighavailability?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-StorageHighAvailability --- diff --git a/docset/winserver2016-ps/storage/Disable-StorageMaintenanceMode.md b/docset/winserver2016-ps/storage/Disable-StorageMaintenanceMode.md index 980086a805..003ce7c299 100644 --- a/docset/winserver2016-ps/storage/Disable-StorageMaintenanceMode.md +++ b/docset/winserver2016-ps/storage/Disable-StorageMaintenanceMode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/disable-storagemaintenancemode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/disable-storagemaintenancemode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-StorageMaintenanceMode --- diff --git a/docset/winserver2016-ps/storage/Disconnect-VirtualDisk.md b/docset/winserver2016-ps/storage/Disconnect-VirtualDisk.md index 950424a3ad..de0d195479 100644 --- a/docset/winserver2016-ps/storage/Disconnect-VirtualDisk.md +++ b/docset/winserver2016-ps/storage/Disconnect-VirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: VirtualDisk.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/disconnect-virtualdisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/disconnect-virtualdisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disconnect-VirtualDisk --- diff --git a/docset/winserver2016-ps/storage/Dismount-DiskImage.md b/docset/winserver2016-ps/storage/Dismount-DiskImage.md index 2c9d423944..97e6e5da50 100644 --- a/docset/winserver2016-ps/storage/Dismount-DiskImage.md +++ b/docset/winserver2016-ps/storage/Dismount-DiskImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DiskImage.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/dismount-diskimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/dismount-diskimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Dismount-DiskImage --- diff --git a/docset/winserver2016-ps/storage/Enable-PhysicalDiskIdentification.md b/docset/winserver2016-ps/storage/Enable-PhysicalDiskIdentification.md index 3bd685a0f9..62939047a7 100644 --- a/docset/winserver2016-ps/storage/Enable-PhysicalDiskIdentification.md +++ b/docset/winserver2016-ps/storage/Enable-PhysicalDiskIdentification.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/enable-physicaldiskidentification?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/enable-physicaldiskidentification?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-PhysicalDiskIdentification --- diff --git a/docset/winserver2016-ps/storage/Enable-StorageEnclosureIdentification.md b/docset/winserver2016-ps/storage/Enable-StorageEnclosureIdentification.md index 5b10b8153f..c444270aec 100644 --- a/docset/winserver2016-ps/storage/Enable-StorageEnclosureIdentification.md +++ b/docset/winserver2016-ps/storage/Enable-StorageEnclosureIdentification.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageEnclosure.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/enable-storageenclosureidentification?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/enable-storageenclosureidentification?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-StorageEnclosureIdentification --- diff --git a/docset/winserver2016-ps/storage/Enable-StorageHighAvailability.md b/docset/winserver2016-ps/storage/Enable-StorageHighAvailability.md index 2377ba4af9..796b07e488 100644 --- a/docset/winserver2016-ps/storage/Enable-StorageHighAvailability.md +++ b/docset/winserver2016-ps/storage/Enable-StorageHighAvailability.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Disk.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/enable-storagehighavailability?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/enable-storagehighavailability?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-StorageHighAvailability --- diff --git a/docset/winserver2016-ps/storage/Enable-StorageMaintenanceMode.md b/docset/winserver2016-ps/storage/Enable-StorageMaintenanceMode.md index 3029636662..1b254e638a 100644 --- a/docset/winserver2016-ps/storage/Enable-StorageMaintenanceMode.md +++ b/docset/winserver2016-ps/storage/Enable-StorageMaintenanceMode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/enable-storagemaintenancemode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/enable-storagemaintenancemode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-StorageMaintenanceMode --- diff --git a/docset/winserver2016-ps/storage/Format-Volume.md b/docset/winserver2016-ps/storage/Format-Volume.md index a23334c1f1..0caecb8511 100644 --- a/docset/winserver2016-ps/storage/Format-Volume.md +++ b/docset/winserver2016-ps/storage/Format-Volume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Volume.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/format-volume?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/format-volume?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Format-Volume --- diff --git a/docset/winserver2016-ps/storage/Get-DedupProperties.md b/docset/winserver2016-ps/storage/Get-DedupProperties.md index abe3cebc7f..f62d352683 100644 --- a/docset/winserver2016-ps/storage/Get-DedupProperties.md +++ b/docset/winserver2016-ps/storage/Get-DedupProperties.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Volume.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-dedupproperties?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-dedupproperties?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DedupProperties --- diff --git a/docset/winserver2016-ps/storage/Get-Disk.md b/docset/winserver2016-ps/storage/Get-Disk.md index 10ef1c99a4..88ff52d6a9 100644 --- a/docset/winserver2016-ps/storage/Get-Disk.md +++ b/docset/winserver2016-ps/storage/Get-Disk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Disk.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-disk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-disk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-Disk --- diff --git a/docset/winserver2016-ps/storage/Get-DiskImage.md b/docset/winserver2016-ps/storage/Get-DiskImage.md index 482483aed6..2878b3b406 100644 --- a/docset/winserver2016-ps/storage/Get-DiskImage.md +++ b/docset/winserver2016-ps/storage/Get-DiskImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DiskImage.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-diskimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-diskimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DiskImage --- diff --git a/docset/winserver2016-ps/storage/Get-DiskStorageNodeView.md b/docset/winserver2016-ps/storage/Get-DiskStorageNodeView.md index aaea663a1c..560f52c41e 100644 --- a/docset/winserver2016-ps/storage/Get-DiskStorageNodeView.md +++ b/docset/winserver2016-ps/storage/Get-DiskStorageNodeView.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-diskstoragenodeview?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-diskstoragenodeview?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DiskStorageNodeView --- diff --git a/docset/winserver2016-ps/storage/Get-FileIntegrity.md b/docset/winserver2016-ps/storage/Get-FileIntegrity.md index 3be19bb60c..90f588eee7 100644 --- a/docset/winserver2016-ps/storage/Get-FileIntegrity.md +++ b/docset/winserver2016-ps/storage/Get-FileIntegrity.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FileIntegrity.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-fileintegrity?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-fileintegrity?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FileIntegrity --- diff --git a/docset/winserver2016-ps/storage/Get-FileShare.md b/docset/winserver2016-ps/storage/Get-FileShare.md index fedd24b950..e0d6958d2c 100644 --- a/docset/winserver2016-ps/storage/Get-FileShare.md +++ b/docset/winserver2016-ps/storage/Get-FileShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FileShare.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-fileshare?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-fileshare?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FileShare --- diff --git a/docset/winserver2016-ps/storage/Get-FileShareAccessControlEntry.md b/docset/winserver2016-ps/storage/Get-FileShareAccessControlEntry.md index 8146c1752c..9cd32b5154 100644 --- a/docset/winserver2016-ps/storage/Get-FileShareAccessControlEntry.md +++ b/docset/winserver2016-ps/storage/Get-FileShareAccessControlEntry.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FileShare.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-fileshareaccesscontrolentry?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-fileshareaccesscontrolentry?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FileShareAccessControlEntry --- diff --git a/docset/winserver2016-ps/storage/Get-FileStorageTier.md b/docset/winserver2016-ps/storage/Get-FileStorageTier.md index 4409bf50e1..8d478fa9f0 100644 --- a/docset/winserver2016-ps/storage/Get-FileStorageTier.md +++ b/docset/winserver2016-ps/storage/Get-FileStorageTier.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FileStorageTier.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-filestoragetier?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-filestoragetier?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FileStorageTier --- diff --git a/docset/winserver2016-ps/storage/Get-InitiatorId.md b/docset/winserver2016-ps/storage/Get-InitiatorId.md index c5bc89f6d0..4cb59d52b7 100644 --- a/docset/winserver2016-ps/storage/Get-InitiatorId.md +++ b/docset/winserver2016-ps/storage/Get-InitiatorId.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: InitiatorId.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-initiatorid?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-initiatorid?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-InitiatorId --- diff --git a/docset/winserver2016-ps/storage/Get-InitiatorPort.md b/docset/winserver2016-ps/storage/Get-InitiatorPort.md index 5c19c9ea6c..3c4ad4cb75 100644 --- a/docset/winserver2016-ps/storage/Get-InitiatorPort.md +++ b/docset/winserver2016-ps/storage/Get-InitiatorPort.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: InitiatorPort.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-initiatorport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-initiatorport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-InitiatorPort --- diff --git a/docset/winserver2016-ps/storage/Get-MaskingSet.md b/docset/winserver2016-ps/storage/Get-MaskingSet.md index b05f401941..6604c9a2c7 100644 --- a/docset/winserver2016-ps/storage/Get-MaskingSet.md +++ b/docset/winserver2016-ps/storage/Get-MaskingSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MaskingSet.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-maskingset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-maskingset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MaskingSet --- diff --git a/docset/winserver2016-ps/storage/Get-OffloadDataTransferSetting.md b/docset/winserver2016-ps/storage/Get-OffloadDataTransferSetting.md index bded324eb1..b3008a53b8 100644 --- a/docset/winserver2016-ps/storage/Get-OffloadDataTransferSetting.md +++ b/docset/winserver2016-ps/storage/Get-OffloadDataTransferSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: OffloadDataTransferSetting.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-offloaddatatransfersetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-offloaddatatransfersetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-OffloadDataTransferSetting --- diff --git a/docset/winserver2016-ps/storage/Get-Partition.md b/docset/winserver2016-ps/storage/Get-Partition.md index 21bdcaec43..29f8a51398 100644 --- a/docset/winserver2016-ps/storage/Get-Partition.md +++ b/docset/winserver2016-ps/storage/Get-Partition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Partition.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-partition?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-partition?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-Partition --- diff --git a/docset/winserver2016-ps/storage/Get-PartitionSupportedSize.md b/docset/winserver2016-ps/storage/Get-PartitionSupportedSize.md index aaa02b8a36..08db3222f2 100644 --- a/docset/winserver2016-ps/storage/Get-PartitionSupportedSize.md +++ b/docset/winserver2016-ps/storage/Get-PartitionSupportedSize.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Partition.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-partitionsupportedsize?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-partitionsupportedsize?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PartitionSupportedSize --- diff --git a/docset/winserver2016-ps/storage/Get-PhysicalDisk.md b/docset/winserver2016-ps/storage/Get-PhysicalDisk.md index 7b5f992819..9666a8fb9e 100644 --- a/docset/winserver2016-ps/storage/Get-PhysicalDisk.md +++ b/docset/winserver2016-ps/storage/Get-PhysicalDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-physicaldisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-physicaldisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PhysicalDisk --- diff --git a/docset/winserver2016-ps/storage/Get-PhysicalDiskStorageNodeView.md b/docset/winserver2016-ps/storage/Get-PhysicalDiskStorageNodeView.md index 1fb20f95eb..578379ad7b 100644 --- a/docset/winserver2016-ps/storage/Get-PhysicalDiskStorageNodeView.md +++ b/docset/winserver2016-ps/storage/Get-PhysicalDiskStorageNodeView.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-physicaldiskstoragenodeview?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-physicaldiskstoragenodeview?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PhysicalDiskStorageNodeView --- diff --git a/docset/winserver2016-ps/storage/Get-PhysicalExtent.md b/docset/winserver2016-ps/storage/Get-PhysicalExtent.md index 748db58c1c..16f58256dc 100644 --- a/docset/winserver2016-ps/storage/Get-PhysicalExtent.md +++ b/docset/winserver2016-ps/storage/Get-PhysicalExtent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-physicalextent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-physicalextent?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PhysicalExtent --- diff --git a/docset/winserver2016-ps/storage/Get-PhysicalExtentAssociation.md b/docset/winserver2016-ps/storage/Get-PhysicalExtentAssociation.md index b0b3b49c3a..cd8cc8d53a 100644 --- a/docset/winserver2016-ps/storage/Get-PhysicalExtentAssociation.md +++ b/docset/winserver2016-ps/storage/Get-PhysicalExtentAssociation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-physicalextentassociation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-physicalextentassociation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PhysicalExtentAssociation --- diff --git a/docset/winserver2016-ps/storage/Get-ResiliencySetting.md b/docset/winserver2016-ps/storage/Get-ResiliencySetting.md index 79b8c57ec1..fe67508263 100644 --- a/docset/winserver2016-ps/storage/Get-ResiliencySetting.md +++ b/docset/winserver2016-ps/storage/Get-ResiliencySetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ResiliencySetting.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-resiliencysetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-resiliencysetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ResiliencySetting --- diff --git a/docset/winserver2016-ps/storage/Get-StorageAdvancedProperty.md b/docset/winserver2016-ps/storage/Get-StorageAdvancedProperty.md index 87afbbca17..8de8b2506b 100644 --- a/docset/winserver2016-ps/storage/Get-StorageAdvancedProperty.md +++ b/docset/winserver2016-ps/storage/Get-StorageAdvancedProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storageadvancedproperty?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storageadvancedproperty?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageAdvancedProperty --- diff --git a/docset/winserver2016-ps/storage/Get-StorageDiagnosticInfo.md b/docset/winserver2016-ps/storage/Get-StorageDiagnosticInfo.md index ead45655d8..454c169d9d 100644 --- a/docset/winserver2016-ps/storage/Get-StorageDiagnosticInfo.md +++ b/docset/winserver2016-ps/storage/Get-StorageDiagnosticInfo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storagediagnosticinfo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagediagnosticinfo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageDiagnosticInfo --- diff --git a/docset/winserver2016-ps/storage/Get-StorageEnclosure.md b/docset/winserver2016-ps/storage/Get-StorageEnclosure.md index 765d6eb526..4c64ab8ee5 100644 --- a/docset/winserver2016-ps/storage/Get-StorageEnclosure.md +++ b/docset/winserver2016-ps/storage/Get-StorageEnclosure.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageEnclosure.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storageenclosure?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storageenclosure?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageEnclosure --- diff --git a/docset/winserver2016-ps/storage/Get-StorageEnclosureStorageNodeView.md b/docset/winserver2016-ps/storage/Get-StorageEnclosureStorageNodeView.md index 9fefec83d2..67aa775a71 100644 --- a/docset/winserver2016-ps/storage/Get-StorageEnclosureStorageNodeView.md +++ b/docset/winserver2016-ps/storage/Get-StorageEnclosureStorageNodeView.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storageenclosurestoragenodeview?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storageenclosurestoragenodeview?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageEnclosureStorageNodeView --- diff --git a/docset/winserver2016-ps/storage/Get-StorageEnclosureVendorData.md b/docset/winserver2016-ps/storage/Get-StorageEnclosureVendorData.md index 9d1fbe6d07..ceb12d00a2 100644 --- a/docset/winserver2016-ps/storage/Get-StorageEnclosureVendorData.md +++ b/docset/winserver2016-ps/storage/Get-StorageEnclosureVendorData.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageEnclosure.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storageenclosurevendordata?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storageenclosurevendordata?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageEnclosureVendorData --- diff --git a/docset/winserver2016-ps/storage/Get-StorageFaultDomain.md b/docset/winserver2016-ps/storage/Get-StorageFaultDomain.md index c8fe6019fc..9c1759444f 100644 --- a/docset/winserver2016-ps/storage/Get-StorageFaultDomain.md +++ b/docset/winserver2016-ps/storage/Get-StorageFaultDomain.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storagefaultdomain?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagefaultdomain?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageFaultDomain --- diff --git a/docset/winserver2016-ps/storage/Get-StorageFileServer.md b/docset/winserver2016-ps/storage/Get-StorageFileServer.md index 67f311cd15..becc7490db 100644 --- a/docset/winserver2016-ps/storage/Get-StorageFileServer.md +++ b/docset/winserver2016-ps/storage/Get-StorageFileServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FileServer.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storagefileserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagefileserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageFileServer --- diff --git a/docset/winserver2016-ps/storage/Get-StorageFirmwareInformation.md b/docset/winserver2016-ps/storage/Get-StorageFirmwareInformation.md index 7aaa51a5d3..ff18e667a4 100644 --- a/docset/winserver2016-ps/storage/Get-StorageFirmwareInformation.md +++ b/docset/winserver2016-ps/storage/Get-StorageFirmwareInformation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storagefirmwareinformation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagefirmwareinformation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageFirmwareInformation --- diff --git a/docset/winserver2016-ps/storage/Get-StorageHealthAction.md b/docset/winserver2016-ps/storage/Get-StorageHealthAction.md index 46dc6f4102..e251dbae06 100644 --- a/docset/winserver2016-ps/storage/Get-StorageHealthAction.md +++ b/docset/winserver2016-ps/storage/Get-StorageHealthAction.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storagehealthaction?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagehealthaction?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageHealthAction --- diff --git a/docset/winserver2016-ps/storage/Get-StorageHealthReport.md b/docset/winserver2016-ps/storage/Get-StorageHealthReport.md index fcbf1cb4db..ce67958483 100644 --- a/docset/winserver2016-ps/storage/Get-StorageHealthReport.md +++ b/docset/winserver2016-ps/storage/Get-StorageHealthReport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storagehealthreport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagehealthreport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageHealthReport --- diff --git a/docset/winserver2016-ps/storage/Get-StorageHealthSetting.md b/docset/winserver2016-ps/storage/Get-StorageHealthSetting.md index 5a283e0e19..e3c8c9f879 100644 --- a/docset/winserver2016-ps/storage/Get-StorageHealthSetting.md +++ b/docset/winserver2016-ps/storage/Get-StorageHealthSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storagehealthsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagehealthsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageHealthSetting --- diff --git a/docset/winserver2016-ps/storage/Get-StorageJob.md b/docset/winserver2016-ps/storage/Get-StorageJob.md index 37033a8f54..ab5185d649 100644 --- a/docset/winserver2016-ps/storage/Get-StorageJob.md +++ b/docset/winserver2016-ps/storage/Get-StorageJob.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageJob.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storagejob?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagejob?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageJob --- diff --git a/docset/winserver2016-ps/storage/Get-StorageNode.md b/docset/winserver2016-ps/storage/Get-StorageNode.md index 6ae482f9ad..d49919ded0 100644 --- a/docset/winserver2016-ps/storage/Get-StorageNode.md +++ b/docset/winserver2016-ps/storage/Get-StorageNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageNode.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storagenode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagenode?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageNode --- diff --git a/docset/winserver2016-ps/storage/Get-StoragePool.md b/docset/winserver2016-ps/storage/Get-StoragePool.md index 1eb0a9630a..e9c92e806c 100644 --- a/docset/winserver2016-ps/storage/Get-StoragePool.md +++ b/docset/winserver2016-ps/storage/Get-StoragePool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StoragePool.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storagepool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagepool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StoragePool --- diff --git a/docset/winserver2016-ps/storage/Get-StorageProvider.md b/docset/winserver2016-ps/storage/Get-StorageProvider.md index 9fd5d86109..74191aa71f 100644 --- a/docset/winserver2016-ps/storage/Get-StorageProvider.md +++ b/docset/winserver2016-ps/storage/Get-StorageProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageProvider.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storageprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storageprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageProvider --- diff --git a/docset/winserver2016-ps/storage/Get-StorageReliabilityCounter.md b/docset/winserver2016-ps/storage/Get-StorageReliabilityCounter.md index bd5ff80faf..de7f4138cf 100644 --- a/docset/winserver2016-ps/storage/Get-StorageReliabilityCounter.md +++ b/docset/winserver2016-ps/storage/Get-StorageReliabilityCounter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageCmdlets.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storagereliabilitycounter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagereliabilitycounter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageReliabilityCounter --- diff --git a/docset/winserver2016-ps/storage/Get-StorageSetting.md b/docset/winserver2016-ps/storage/Get-StorageSetting.md index a7dc1f616b..69f7aa98b5 100644 --- a/docset/winserver2016-ps/storage/Get-StorageSetting.md +++ b/docset/winserver2016-ps/storage/Get-StorageSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageSetting.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storagesetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagesetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageSetting --- diff --git a/docset/winserver2016-ps/storage/Get-StorageSubSystem.md b/docset/winserver2016-ps/storage/Get-StorageSubSystem.md index 4bcae7ea62..8771eeda69 100644 --- a/docset/winserver2016-ps/storage/Get-StorageSubSystem.md +++ b/docset/winserver2016-ps/storage/Get-StorageSubSystem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageSubSystem.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storagesubsystem?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagesubsystem?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageSubSystem --- diff --git a/docset/winserver2016-ps/storage/Get-StorageTier.md b/docset/winserver2016-ps/storage/Get-StorageTier.md index 647f233c79..77fca499c6 100644 --- a/docset/winserver2016-ps/storage/Get-StorageTier.md +++ b/docset/winserver2016-ps/storage/Get-StorageTier.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageTier.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storagetier?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagetier?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageTier --- diff --git a/docset/winserver2016-ps/storage/Get-StorageTierSupportedSize.md b/docset/winserver2016-ps/storage/Get-StorageTierSupportedSize.md index 0acc0632a5..b06d1350c3 100644 --- a/docset/winserver2016-ps/storage/Get-StorageTierSupportedSize.md +++ b/docset/winserver2016-ps/storage/Get-StorageTierSupportedSize.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageTier.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storagetiersupportedsize?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagetiersupportedsize?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageTierSupportedSize --- diff --git a/docset/winserver2016-ps/storage/Get-SupportedClusterSizes.md b/docset/winserver2016-ps/storage/Get-SupportedClusterSizes.md index 4e24fecc95..359e234ae1 100644 --- a/docset/winserver2016-ps/storage/Get-SupportedClusterSizes.md +++ b/docset/winserver2016-ps/storage/Get-SupportedClusterSizes.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Volume.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-supportedclustersizes?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-supportedclustersizes?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SupportedClusterSizes --- diff --git a/docset/winserver2016-ps/storage/Get-SupportedFileSystems.md b/docset/winserver2016-ps/storage/Get-SupportedFileSystems.md index 48e25f3b3a..e21982e072 100644 --- a/docset/winserver2016-ps/storage/Get-SupportedFileSystems.md +++ b/docset/winserver2016-ps/storage/Get-SupportedFileSystems.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Volume.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-supportedfilesystems?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-supportedfilesystems?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SupportedFileSystems --- diff --git a/docset/winserver2016-ps/storage/Get-TargetPort.md b/docset/winserver2016-ps/storage/Get-TargetPort.md index 72224848b4..95e91fda82 100644 --- a/docset/winserver2016-ps/storage/Get-TargetPort.md +++ b/docset/winserver2016-ps/storage/Get-TargetPort.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: TargetPort.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-targetport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-targetport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-TargetPort --- diff --git a/docset/winserver2016-ps/storage/Get-TargetPortal.md b/docset/winserver2016-ps/storage/Get-TargetPortal.md index 8c78589c7d..35eab75221 100644 --- a/docset/winserver2016-ps/storage/Get-TargetPortal.md +++ b/docset/winserver2016-ps/storage/Get-TargetPortal.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: TargetPortal.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-targetportal?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-targetportal?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-TargetPortal --- diff --git a/docset/winserver2016-ps/storage/Get-VirtualDisk.md b/docset/winserver2016-ps/storage/Get-VirtualDisk.md index 94a81e4f42..39545534f2 100644 --- a/docset/winserver2016-ps/storage/Get-VirtualDisk.md +++ b/docset/winserver2016-ps/storage/Get-VirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: VirtualDisk.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-virtualdisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-virtualdisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VirtualDisk --- diff --git a/docset/winserver2016-ps/storage/Get-VirtualDiskSupportedSize.md b/docset/winserver2016-ps/storage/Get-VirtualDiskSupportedSize.md index 255c261f64..c82593466b 100644 --- a/docset/winserver2016-ps/storage/Get-VirtualDiskSupportedSize.md +++ b/docset/winserver2016-ps/storage/Get-VirtualDiskSupportedSize.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StoragePool.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-virtualdisksupportedsize?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-virtualdisksupportedsize?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VirtualDiskSupportedSize --- diff --git a/docset/winserver2016-ps/storage/Get-Volume.md b/docset/winserver2016-ps/storage/Get-Volume.md index 9bad4685f1..7735b894d3 100644 --- a/docset/winserver2016-ps/storage/Get-Volume.md +++ b/docset/winserver2016-ps/storage/Get-Volume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Volume.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-volume?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-volume?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-Volume --- diff --git a/docset/winserver2016-ps/storage/Get-VolumeCorruptionCount.md b/docset/winserver2016-ps/storage/Get-VolumeCorruptionCount.md index a63834cf9a..0b3e20e027 100644 --- a/docset/winserver2016-ps/storage/Get-VolumeCorruptionCount.md +++ b/docset/winserver2016-ps/storage/Get-VolumeCorruptionCount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Volume.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-volumecorruptioncount?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-volumecorruptioncount?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VolumeCorruptionCount --- diff --git a/docset/winserver2016-ps/storage/Get-VolumeScrubPolicy.md b/docset/winserver2016-ps/storage/Get-VolumeScrubPolicy.md index c71bfae7ff..475533e412 100644 --- a/docset/winserver2016-ps/storage/Get-VolumeScrubPolicy.md +++ b/docset/winserver2016-ps/storage/Get-VolumeScrubPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Volume.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-volumescrubpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-volumescrubpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VolumeScrubPolicy --- diff --git a/docset/winserver2016-ps/storage/Grant-FileShareAccess.md b/docset/winserver2016-ps/storage/Grant-FileShareAccess.md index ce1614b80a..caf4eaf295 100644 --- a/docset/winserver2016-ps/storage/Grant-FileShareAccess.md +++ b/docset/winserver2016-ps/storage/Grant-FileShareAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FileShare.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/grant-fileshareaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/grant-fileshareaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Grant-FileShareAccess --- diff --git a/docset/winserver2016-ps/storage/Hide-VirtualDisk.md b/docset/winserver2016-ps/storage/Hide-VirtualDisk.md index 8639a58057..deb6b51ef5 100644 --- a/docset/winserver2016-ps/storage/Hide-VirtualDisk.md +++ b/docset/winserver2016-ps/storage/Hide-VirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: VirtualDisk.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/hide-virtualdisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/hide-virtualdisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Hide-VirtualDisk --- diff --git a/docset/winserver2016-ps/storage/Initialize-Disk.md b/docset/winserver2016-ps/storage/Initialize-Disk.md index a7a19a848e..55b138b99c 100644 --- a/docset/winserver2016-ps/storage/Initialize-Disk.md +++ b/docset/winserver2016-ps/storage/Initialize-Disk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Disk.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/initialize-disk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/initialize-disk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Initialize-Disk --- diff --git a/docset/winserver2016-ps/storage/Mount-DiskImage.md b/docset/winserver2016-ps/storage/Mount-DiskImage.md index fab9d7f0ce..2f74cc1c14 100644 --- a/docset/winserver2016-ps/storage/Mount-DiskImage.md +++ b/docset/winserver2016-ps/storage/Mount-DiskImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DiskImage.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/mount-diskimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/mount-diskimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Mount-DiskImage --- diff --git a/docset/winserver2016-ps/storage/New-FileShare.md b/docset/winserver2016-ps/storage/New-FileShare.md index b01166c9a4..b118381e27 100644 --- a/docset/winserver2016-ps/storage/New-FileShare.md +++ b/docset/winserver2016-ps/storage/New-FileShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FileServer.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/new-fileshare?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/new-fileshare?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FileShare --- diff --git a/docset/winserver2016-ps/storage/New-MaskingSet.md b/docset/winserver2016-ps/storage/New-MaskingSet.md index 67e57dbae2..752911ca15 100644 --- a/docset/winserver2016-ps/storage/New-MaskingSet.md +++ b/docset/winserver2016-ps/storage/New-MaskingSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageSubSystem.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/new-maskingset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/new-maskingset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-MaskingSet --- diff --git a/docset/winserver2016-ps/storage/New-Partition.md b/docset/winserver2016-ps/storage/New-Partition.md index 2727c2ebde..861ddbda47 100644 --- a/docset/winserver2016-ps/storage/New-Partition.md +++ b/docset/winserver2016-ps/storage/New-Partition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Disk.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/new-partition?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/new-partition?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-Partition --- diff --git a/docset/winserver2016-ps/storage/New-StorageFileServer.md b/docset/winserver2016-ps/storage/New-StorageFileServer.md index 8eb05be76f..27c4812d72 100644 --- a/docset/winserver2016-ps/storage/New-StorageFileServer.md +++ b/docset/winserver2016-ps/storage/New-StorageFileServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageSubSystem.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/new-storagefileserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/new-storagefileserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-StorageFileServer --- diff --git a/docset/winserver2016-ps/storage/New-StoragePool.md b/docset/winserver2016-ps/storage/New-StoragePool.md index 523f3d82b4..f99a4f0275 100644 --- a/docset/winserver2016-ps/storage/New-StoragePool.md +++ b/docset/winserver2016-ps/storage/New-StoragePool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageSubSystem.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/new-storagepool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/new-storagepool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-StoragePool --- diff --git a/docset/winserver2016-ps/storage/New-StorageSubsystemVirtualDisk.md b/docset/winserver2016-ps/storage/New-StorageSubsystemVirtualDisk.md index ed22f0e460..c2f89f8212 100644 --- a/docset/winserver2016-ps/storage/New-StorageSubsystemVirtualDisk.md +++ b/docset/winserver2016-ps/storage/New-StorageSubsystemVirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageSubSystem.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/new-storagesubsystemvirtualdisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/new-storagesubsystemvirtualdisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-StorageSubsystemVirtualDisk --- diff --git a/docset/winserver2016-ps/storage/New-StorageTier.md b/docset/winserver2016-ps/storage/New-StorageTier.md index d172ea5461..4ad21973bc 100644 --- a/docset/winserver2016-ps/storage/New-StorageTier.md +++ b/docset/winserver2016-ps/storage/New-StorageTier.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StoragePool.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/new-storagetier?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/new-storagetier?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-StorageTier --- diff --git a/docset/winserver2016-ps/storage/New-VirtualDisk.md b/docset/winserver2016-ps/storage/New-VirtualDisk.md index b700b70c8a..d78c7bc708 100644 --- a/docset/winserver2016-ps/storage/New-VirtualDisk.md +++ b/docset/winserver2016-ps/storage/New-VirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StoragePool.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/new-virtualdisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/new-virtualdisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VirtualDisk --- diff --git a/docset/winserver2016-ps/storage/New-VirtualDiskClone.md b/docset/winserver2016-ps/storage/New-VirtualDiskClone.md index 9a719edc41..fce60b999d 100644 --- a/docset/winserver2016-ps/storage/New-VirtualDiskClone.md +++ b/docset/winserver2016-ps/storage/New-VirtualDiskClone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: VirtualDisk.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/new-virtualdiskclone?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/new-virtualdiskclone?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VirtualDiskClone --- diff --git a/docset/winserver2016-ps/storage/New-VirtualDiskSnapshot.md b/docset/winserver2016-ps/storage/New-VirtualDiskSnapshot.md index 1ebab58a55..efbf96a432 100644 --- a/docset/winserver2016-ps/storage/New-VirtualDiskSnapshot.md +++ b/docset/winserver2016-ps/storage/New-VirtualDiskSnapshot.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: VirtualDisk.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/new-virtualdisksnapshot?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/new-virtualdisksnapshot?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VirtualDiskSnapshot --- diff --git a/docset/winserver2016-ps/storage/New-Volume.md b/docset/winserver2016-ps/storage/New-Volume.md index 5bf81bb432..a2e6c510ca 100644 --- a/docset/winserver2016-ps/storage/New-Volume.md +++ b/docset/winserver2016-ps/storage/New-Volume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/new-volume?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/new-volume?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-Volume --- diff --git a/docset/winserver2016-ps/storage/Optimize-StoragePool.md b/docset/winserver2016-ps/storage/Optimize-StoragePool.md index c0461fafd6..09e9f46eb1 100644 --- a/docset/winserver2016-ps/storage/Optimize-StoragePool.md +++ b/docset/winserver2016-ps/storage/Optimize-StoragePool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StoragePool.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/optimize-storagepool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/optimize-storagepool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Optimize-StoragePool --- diff --git a/docset/winserver2016-ps/storage/Optimize-Volume.md b/docset/winserver2016-ps/storage/Optimize-Volume.md index 7692d090e1..4423aeb95d 100644 --- a/docset/winserver2016-ps/storage/Optimize-Volume.md +++ b/docset/winserver2016-ps/storage/Optimize-Volume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Volume.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/optimize-volume?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/optimize-volume?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Optimize-Volume --- diff --git a/docset/winserver2016-ps/storage/Register-StorageSubsystem.md b/docset/winserver2016-ps/storage/Register-StorageSubsystem.md index 774fefdc0e..4d21a46ad3 100644 --- a/docset/winserver2016-ps/storage/Register-StorageSubsystem.md +++ b/docset/winserver2016-ps/storage/Register-StorageSubsystem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageProvider.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/register-storagesubsystem?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/register-storagesubsystem?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Register-StorageSubsystem --- diff --git a/docset/winserver2016-ps/storage/Remove-FileShare.md b/docset/winserver2016-ps/storage/Remove-FileShare.md index 4e9d697406..797908fd28 100644 --- a/docset/winserver2016-ps/storage/Remove-FileShare.md +++ b/docset/winserver2016-ps/storage/Remove-FileShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FileShare.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/remove-fileshare?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-fileshare?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-FileShare --- diff --git a/docset/winserver2016-ps/storage/Remove-InitiatorId.md b/docset/winserver2016-ps/storage/Remove-InitiatorId.md index c364092ef7..1748ba917b 100644 --- a/docset/winserver2016-ps/storage/Remove-InitiatorId.md +++ b/docset/winserver2016-ps/storage/Remove-InitiatorId.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: InitiatorId.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/remove-initiatorid?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-initiatorid?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-InitiatorId --- diff --git a/docset/winserver2016-ps/storage/Remove-InitiatorIdFromMaskingSet.md b/docset/winserver2016-ps/storage/Remove-InitiatorIdFromMaskingSet.md index b17a35e06d..26aa1064ac 100644 --- a/docset/winserver2016-ps/storage/Remove-InitiatorIdFromMaskingSet.md +++ b/docset/winserver2016-ps/storage/Remove-InitiatorIdFromMaskingSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MaskingSet.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/remove-initiatoridfrommaskingset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-initiatoridfrommaskingset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-InitiatorIdFromMaskingSet --- diff --git a/docset/winserver2016-ps/storage/Remove-MaskingSet.md b/docset/winserver2016-ps/storage/Remove-MaskingSet.md index b617eb96d5..b26c12b431 100644 --- a/docset/winserver2016-ps/storage/Remove-MaskingSet.md +++ b/docset/winserver2016-ps/storage/Remove-MaskingSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MaskingSet.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/remove-maskingset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-maskingset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-MaskingSet --- diff --git a/docset/winserver2016-ps/storage/Remove-Partition.md b/docset/winserver2016-ps/storage/Remove-Partition.md index 42ac552bd0..5260d64820 100644 --- a/docset/winserver2016-ps/storage/Remove-Partition.md +++ b/docset/winserver2016-ps/storage/Remove-Partition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Partition.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/remove-partition?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-partition?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-Partition --- diff --git a/docset/winserver2016-ps/storage/Remove-PartitionAccessPath.md b/docset/winserver2016-ps/storage/Remove-PartitionAccessPath.md index 9597485973..e752a00bb4 100644 --- a/docset/winserver2016-ps/storage/Remove-PartitionAccessPath.md +++ b/docset/winserver2016-ps/storage/Remove-PartitionAccessPath.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Partition.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/remove-partitionaccesspath?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-partitionaccesspath?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-PartitionAccessPath --- diff --git a/docset/winserver2016-ps/storage/Remove-PhysicalDisk.md b/docset/winserver2016-ps/storage/Remove-PhysicalDisk.md index b9915bdf2a..1a35298aa0 100644 --- a/docset/winserver2016-ps/storage/Remove-PhysicalDisk.md +++ b/docset/winserver2016-ps/storage/Remove-PhysicalDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageCmdlets.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/remove-physicaldisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-physicaldisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-PhysicalDisk --- diff --git a/docset/winserver2016-ps/storage/Remove-StorageFileServer.md b/docset/winserver2016-ps/storage/Remove-StorageFileServer.md index a31fbc5bbd..376b9dcef0 100644 --- a/docset/winserver2016-ps/storage/Remove-StorageFileServer.md +++ b/docset/winserver2016-ps/storage/Remove-StorageFileServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FileServer.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/remove-storagefileserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-storagefileserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-StorageFileServer --- diff --git a/docset/winserver2016-ps/storage/Remove-StorageHealthSetting.md b/docset/winserver2016-ps/storage/Remove-StorageHealthSetting.md index 2cf56217ce..882ef5e4ac 100644 --- a/docset/winserver2016-ps/storage/Remove-StorageHealthSetting.md +++ b/docset/winserver2016-ps/storage/Remove-StorageHealthSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/remove-storagehealthsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-storagehealthsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-StorageHealthSetting --- diff --git a/docset/winserver2016-ps/storage/Remove-StoragePool.md b/docset/winserver2016-ps/storage/Remove-StoragePool.md index beb3cd60db..8e0d643c06 100644 --- a/docset/winserver2016-ps/storage/Remove-StoragePool.md +++ b/docset/winserver2016-ps/storage/Remove-StoragePool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StoragePool.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/remove-storagepool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-storagepool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-StoragePool --- diff --git a/docset/winserver2016-ps/storage/Remove-StorageTier.md b/docset/winserver2016-ps/storage/Remove-StorageTier.md index 14641f4dd4..232ae3c249 100644 --- a/docset/winserver2016-ps/storage/Remove-StorageTier.md +++ b/docset/winserver2016-ps/storage/Remove-StorageTier.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageTier.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/remove-storagetier?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-storagetier?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-StorageTier --- diff --git a/docset/winserver2016-ps/storage/Remove-TargetPortFromMaskingSet.md b/docset/winserver2016-ps/storage/Remove-TargetPortFromMaskingSet.md index 39d7df8518..2a7ce51d20 100644 --- a/docset/winserver2016-ps/storage/Remove-TargetPortFromMaskingSet.md +++ b/docset/winserver2016-ps/storage/Remove-TargetPortFromMaskingSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MaskingSet.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/remove-targetportfrommaskingset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-targetportfrommaskingset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-TargetPortFromMaskingSet --- diff --git a/docset/winserver2016-ps/storage/Remove-VirtualDisk.md b/docset/winserver2016-ps/storage/Remove-VirtualDisk.md index bf0ad42539..cbe3100819 100644 --- a/docset/winserver2016-ps/storage/Remove-VirtualDisk.md +++ b/docset/winserver2016-ps/storage/Remove-VirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: VirtualDisk.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/remove-virtualdisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-virtualdisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VirtualDisk --- diff --git a/docset/winserver2016-ps/storage/Remove-VirtualDiskFromMaskingSet.md b/docset/winserver2016-ps/storage/Remove-VirtualDiskFromMaskingSet.md index 0c6cf20b18..f70dc73d16 100644 --- a/docset/winserver2016-ps/storage/Remove-VirtualDiskFromMaskingSet.md +++ b/docset/winserver2016-ps/storage/Remove-VirtualDiskFromMaskingSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MaskingSet.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/remove-virtualdiskfrommaskingset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-virtualdiskfrommaskingset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VirtualDiskFromMaskingSet --- diff --git a/docset/winserver2016-ps/storage/Rename-MaskingSet.md b/docset/winserver2016-ps/storage/Rename-MaskingSet.md index b70e6ab23a..86443245b1 100644 --- a/docset/winserver2016-ps/storage/Rename-MaskingSet.md +++ b/docset/winserver2016-ps/storage/Rename-MaskingSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MaskingSet.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/rename-maskingset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/rename-maskingset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-MaskingSet --- diff --git a/docset/winserver2016-ps/storage/Repair-FileIntegrity.md b/docset/winserver2016-ps/storage/Repair-FileIntegrity.md index 13c1eda553..8e028967db 100644 --- a/docset/winserver2016-ps/storage/Repair-FileIntegrity.md +++ b/docset/winserver2016-ps/storage/Repair-FileIntegrity.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FileIntegrity.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/repair-fileintegrity?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/repair-fileintegrity?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Repair-FileIntegrity --- diff --git a/docset/winserver2016-ps/storage/Repair-VirtualDisk.md b/docset/winserver2016-ps/storage/Repair-VirtualDisk.md index 8fa89f3c1a..519a365824 100644 --- a/docset/winserver2016-ps/storage/Repair-VirtualDisk.md +++ b/docset/winserver2016-ps/storage/Repair-VirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: VirtualDisk.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/repair-virtualdisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/repair-virtualdisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Repair-VirtualDisk --- diff --git a/docset/winserver2016-ps/storage/Repair-Volume.md b/docset/winserver2016-ps/storage/Repair-Volume.md index 705bdca279..b5f3dcb82e 100644 --- a/docset/winserver2016-ps/storage/Repair-Volume.md +++ b/docset/winserver2016-ps/storage/Repair-Volume.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Volume.cdxml-help.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/repair-volume?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/repair-volume?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Repair-Volume --- diff --git a/docset/winserver2016-ps/storage/Reset-PhysicalDisk.md b/docset/winserver2016-ps/storage/Reset-PhysicalDisk.md index 28d7f414bf..6f439fe9b3 100644 --- a/docset/winserver2016-ps/storage/Reset-PhysicalDisk.md +++ b/docset/winserver2016-ps/storage/Reset-PhysicalDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/reset-physicaldisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/reset-physicaldisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-PhysicalDisk --- diff --git a/docset/winserver2016-ps/storage/Reset-StorageReliabilityCounter.md b/docset/winserver2016-ps/storage/Reset-StorageReliabilityCounter.md index c1c50fcff0..465eeb8264 100644 --- a/docset/winserver2016-ps/storage/Reset-StorageReliabilityCounter.md +++ b/docset/winserver2016-ps/storage/Reset-StorageReliabilityCounter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageReliabilityCounter.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/reset-storagereliabilitycounter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/reset-storagereliabilitycounter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-StorageReliabilityCounter --- diff --git a/docset/winserver2016-ps/storage/Resize-Partition.md b/docset/winserver2016-ps/storage/Resize-Partition.md index 3fcebf3d06..7144ca31fe 100644 --- a/docset/winserver2016-ps/storage/Resize-Partition.md +++ b/docset/winserver2016-ps/storage/Resize-Partition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Partition.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/resize-partition?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/resize-partition?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resize-Partition --- diff --git a/docset/winserver2016-ps/storage/Resize-StorageTier.md b/docset/winserver2016-ps/storage/Resize-StorageTier.md index 8597af16e3..50b04994b7 100644 --- a/docset/winserver2016-ps/storage/Resize-StorageTier.md +++ b/docset/winserver2016-ps/storage/Resize-StorageTier.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageTier.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/resize-storagetier?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/resize-storagetier?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resize-StorageTier --- diff --git a/docset/winserver2016-ps/storage/Resize-VirtualDisk.md b/docset/winserver2016-ps/storage/Resize-VirtualDisk.md index c1d9227f6b..80b6253281 100644 --- a/docset/winserver2016-ps/storage/Resize-VirtualDisk.md +++ b/docset/winserver2016-ps/storage/Resize-VirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: VirtualDisk.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/resize-virtualdisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/resize-virtualdisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resize-VirtualDisk --- diff --git a/docset/winserver2016-ps/storage/Revoke-FileShareAccess.md b/docset/winserver2016-ps/storage/Revoke-FileShareAccess.md index 7afddef77b..d02eb30f9e 100644 --- a/docset/winserver2016-ps/storage/Revoke-FileShareAccess.md +++ b/docset/winserver2016-ps/storage/Revoke-FileShareAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FileShare.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/revoke-fileshareaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/revoke-fileshareaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Revoke-FileShareAccess --- diff --git a/docset/winserver2016-ps/storage/Set-Disk.md b/docset/winserver2016-ps/storage/Set-Disk.md index d3f4ac30f1..98be656954 100644 --- a/docset/winserver2016-ps/storage/Set-Disk.md +++ b/docset/winserver2016-ps/storage/Set-Disk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageCmdlets.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/set-disk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-disk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-Disk --- diff --git a/docset/winserver2016-ps/storage/Set-FileIntegrity.md b/docset/winserver2016-ps/storage/Set-FileIntegrity.md index 9e1334f399..4760987b48 100644 --- a/docset/winserver2016-ps/storage/Set-FileIntegrity.md +++ b/docset/winserver2016-ps/storage/Set-FileIntegrity.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FileIntegrity.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/set-fileintegrity?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-fileintegrity?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FileIntegrity --- diff --git a/docset/winserver2016-ps/storage/Set-FileShare.md b/docset/winserver2016-ps/storage/Set-FileShare.md index a010e4c408..d2ab7e9fb3 100644 --- a/docset/winserver2016-ps/storage/Set-FileShare.md +++ b/docset/winserver2016-ps/storage/Set-FileShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageCmdlets.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/set-fileshare?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-fileshare?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FileShare --- diff --git a/docset/winserver2016-ps/storage/Set-FileStorageTier.md b/docset/winserver2016-ps/storage/Set-FileStorageTier.md index 9df6c2527d..8cd00a645c 100644 --- a/docset/winserver2016-ps/storage/Set-FileStorageTier.md +++ b/docset/winserver2016-ps/storage/Set-FileStorageTier.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FileStorageTier.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/set-filestoragetier?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-filestoragetier?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FileStorageTier --- diff --git a/docset/winserver2016-ps/storage/Set-InitiatorPort.md b/docset/winserver2016-ps/storage/Set-InitiatorPort.md index bb2cdabc1d..2e9cbc00a4 100644 --- a/docset/winserver2016-ps/storage/Set-InitiatorPort.md +++ b/docset/winserver2016-ps/storage/Set-InitiatorPort.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: InitiatorPort.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/set-initiatorport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-initiatorport?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-InitiatorPort --- diff --git a/docset/winserver2016-ps/storage/Set-Partition.md b/docset/winserver2016-ps/storage/Set-Partition.md index 25af535b99..e469136be1 100644 --- a/docset/winserver2016-ps/storage/Set-Partition.md +++ b/docset/winserver2016-ps/storage/Set-Partition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageCmdlets.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/set-partition?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-partition?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-Partition --- diff --git a/docset/winserver2016-ps/storage/Set-PhysicalDisk.md b/docset/winserver2016-ps/storage/Set-PhysicalDisk.md index b04fe3caf2..3951708558 100644 --- a/docset/winserver2016-ps/storage/Set-PhysicalDisk.md +++ b/docset/winserver2016-ps/storage/Set-PhysicalDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageCmdlets.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/set-physicaldisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-physicaldisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-PhysicalDisk --- diff --git a/docset/winserver2016-ps/storage/Set-ResiliencySetting.md b/docset/winserver2016-ps/storage/Set-ResiliencySetting.md index 0909557772..8cde2c7bc2 100644 --- a/docset/winserver2016-ps/storage/Set-ResiliencySetting.md +++ b/docset/winserver2016-ps/storage/Set-ResiliencySetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ResiliencySetting.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/set-resiliencysetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-resiliencysetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ResiliencySetting --- diff --git a/docset/winserver2016-ps/storage/Set-StorageFileServer.md b/docset/winserver2016-ps/storage/Set-StorageFileServer.md index be45f8fc29..c667273a14 100644 --- a/docset/winserver2016-ps/storage/Set-StorageFileServer.md +++ b/docset/winserver2016-ps/storage/Set-StorageFileServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FileServer.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/set-storagefileserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-storagefileserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-StorageFileServer --- diff --git a/docset/winserver2016-ps/storage/Set-StorageHealthSetting.md b/docset/winserver2016-ps/storage/Set-StorageHealthSetting.md index 801a097408..b8a751be3a 100644 --- a/docset/winserver2016-ps/storage/Set-StorageHealthSetting.md +++ b/docset/winserver2016-ps/storage/Set-StorageHealthSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/set-storagehealthsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-storagehealthsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-StorageHealthSetting --- diff --git a/docset/winserver2016-ps/storage/Set-StoragePool.md b/docset/winserver2016-ps/storage/Set-StoragePool.md index c4182fe559..ea1a4f26b9 100644 --- a/docset/winserver2016-ps/storage/Set-StoragePool.md +++ b/docset/winserver2016-ps/storage/Set-StoragePool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageCmdlets.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/set-storagepool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-storagepool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-StoragePool --- diff --git a/docset/winserver2016-ps/storage/Set-StorageProvider.md b/docset/winserver2016-ps/storage/Set-StorageProvider.md index 3920cfe43d..784f9d6ed3 100644 --- a/docset/winserver2016-ps/storage/Set-StorageProvider.md +++ b/docset/winserver2016-ps/storage/Set-StorageProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageProvider.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/set-storageprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-storageprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-StorageProvider --- diff --git a/docset/winserver2016-ps/storage/Set-StorageSetting.md b/docset/winserver2016-ps/storage/Set-StorageSetting.md index 1a29117609..f7ad207bcf 100644 --- a/docset/winserver2016-ps/storage/Set-StorageSetting.md +++ b/docset/winserver2016-ps/storage/Set-StorageSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageSetting.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/set-storagesetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-storagesetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-StorageSetting --- diff --git a/docset/winserver2016-ps/storage/Set-StorageSubSystem.md b/docset/winserver2016-ps/storage/Set-StorageSubSystem.md index db8917a56b..1d38be071b 100644 --- a/docset/winserver2016-ps/storage/Set-StorageSubSystem.md +++ b/docset/winserver2016-ps/storage/Set-StorageSubSystem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageCmdlets.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/set-storagesubsystem?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-storagesubsystem?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-StorageSubSystem --- diff --git a/docset/winserver2016-ps/storage/Set-StorageTier.md b/docset/winserver2016-ps/storage/Set-StorageTier.md index 0c0ee29102..33af9a1c5e 100644 --- a/docset/winserver2016-ps/storage/Set-StorageTier.md +++ b/docset/winserver2016-ps/storage/Set-StorageTier.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageCmdlets.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/set-storagetier?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-storagetier?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-StorageTier --- diff --git a/docset/winserver2016-ps/storage/Set-VirtualDisk.md b/docset/winserver2016-ps/storage/Set-VirtualDisk.md index a1d9eee9de..1d4326780a 100644 --- a/docset/winserver2016-ps/storage/Set-VirtualDisk.md +++ b/docset/winserver2016-ps/storage/Set-VirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageCmdlets.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/set-virtualdisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-virtualdisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VirtualDisk --- diff --git a/docset/winserver2016-ps/storage/Set-Volume.md b/docset/winserver2016-ps/storage/Set-Volume.md index 17848dfef9..18b85cc916 100644 --- a/docset/winserver2016-ps/storage/Set-Volume.md +++ b/docset/winserver2016-ps/storage/Set-Volume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageCmdlets.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/set-volume?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-volume?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-Volume --- diff --git a/docset/winserver2016-ps/storage/Set-VolumeScrubPolicy.md b/docset/winserver2016-ps/storage/Set-VolumeScrubPolicy.md index 757e88f90d..bb5030b82a 100644 --- a/docset/winserver2016-ps/storage/Set-VolumeScrubPolicy.md +++ b/docset/winserver2016-ps/storage/Set-VolumeScrubPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Volume.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/set-volumescrubpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-volumescrubpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VolumeScrubPolicy --- diff --git a/docset/winserver2016-ps/storage/Show-VirtualDisk.md b/docset/winserver2016-ps/storage/Show-VirtualDisk.md index 1ad686259d..d278bc99c4 100644 --- a/docset/winserver2016-ps/storage/Show-VirtualDisk.md +++ b/docset/winserver2016-ps/storage/Show-VirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: VirtualDisk.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/show-virtualdisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/show-virtualdisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Show-VirtualDisk --- diff --git a/docset/winserver2016-ps/storage/Start-StorageDiagnosticLog.md b/docset/winserver2016-ps/storage/Start-StorageDiagnosticLog.md index c1d209c1e5..f9872ca9f1 100644 --- a/docset/winserver2016-ps/storage/Start-StorageDiagnosticLog.md +++ b/docset/winserver2016-ps/storage/Start-StorageDiagnosticLog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageSubSystem.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/start-storagediagnosticlog?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/start-storagediagnosticlog?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-StorageDiagnosticLog --- diff --git a/docset/winserver2016-ps/storage/Stop-StorageDiagnosticLog.md b/docset/winserver2016-ps/storage/Stop-StorageDiagnosticLog.md index 34b94ebd1d..a97eef0dc7 100644 --- a/docset/winserver2016-ps/storage/Stop-StorageDiagnosticLog.md +++ b/docset/winserver2016-ps/storage/Stop-StorageDiagnosticLog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageSubSystem.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/stop-storagediagnosticlog?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/stop-storagediagnosticlog?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-StorageDiagnosticLog --- diff --git a/docset/winserver2016-ps/storage/Stop-StorageJob.md b/docset/winserver2016-ps/storage/Stop-StorageJob.md index a8d7f02a65..bea83cc13d 100644 --- a/docset/winserver2016-ps/storage/Stop-StorageJob.md +++ b/docset/winserver2016-ps/storage/Stop-StorageJob.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageJob.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/stop-storagejob?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/stop-storagejob?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-StorageJob --- diff --git a/docset/winserver2016-ps/storage/Unblock-FileShareAccess.md b/docset/winserver2016-ps/storage/Unblock-FileShareAccess.md index 9648d73cf5..29c28d3cbc 100644 --- a/docset/winserver2016-ps/storage/Unblock-FileShareAccess.md +++ b/docset/winserver2016-ps/storage/Unblock-FileShareAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FileShare.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/unblock-fileshareaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/unblock-fileshareaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unblock-FileShareAccess --- diff --git a/docset/winserver2016-ps/storage/Unregister-StorageSubsystem.md b/docset/winserver2016-ps/storage/Unregister-StorageSubsystem.md index ce1b4ead2b..7bbcd7611e 100644 --- a/docset/winserver2016-ps/storage/Unregister-StorageSubsystem.md +++ b/docset/winserver2016-ps/storage/Unregister-StorageSubsystem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageProvider.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/unregister-storagesubsystem?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/unregister-storagesubsystem?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unregister-StorageSubsystem --- diff --git a/docset/winserver2016-ps/storage/Update-Disk.md b/docset/winserver2016-ps/storage/Update-Disk.md index 848c36cb0f..c99bb4fc60 100644 --- a/docset/winserver2016-ps/storage/Update-Disk.md +++ b/docset/winserver2016-ps/storage/Update-Disk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Disk.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/update-disk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/update-disk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-Disk --- diff --git a/docset/winserver2016-ps/storage/Update-HostStorageCache.md b/docset/winserver2016-ps/storage/Update-HostStorageCache.md index b9c70768dc..b81ec34b24 100644 --- a/docset/winserver2016-ps/storage/Update-HostStorageCache.md +++ b/docset/winserver2016-ps/storage/Update-HostStorageCache.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageSetting.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/update-hoststoragecache?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/update-hoststoragecache?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-HostStorageCache --- diff --git a/docset/winserver2016-ps/storage/Update-StorageFirmware.md b/docset/winserver2016-ps/storage/Update-StorageFirmware.md index 5e0d97e1d7..cd966848c8 100644 --- a/docset/winserver2016-ps/storage/Update-StorageFirmware.md +++ b/docset/winserver2016-ps/storage/Update-StorageFirmware.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/update-storagefirmware?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/update-storagefirmware?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-StorageFirmware --- diff --git a/docset/winserver2016-ps/storage/Update-StoragePool.md b/docset/winserver2016-ps/storage/Update-StoragePool.md index e0aa159339..3e38d0af2b 100644 --- a/docset/winserver2016-ps/storage/Update-StoragePool.md +++ b/docset/winserver2016-ps/storage/Update-StoragePool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StoragePool.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/update-storagepool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/update-storagepool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-StoragePool --- diff --git a/docset/winserver2016-ps/storage/Update-StorageProviderCache.md b/docset/winserver2016-ps/storage/Update-StorageProviderCache.md index 6458c91f81..e5965d8f38 100644 --- a/docset/winserver2016-ps/storage/Update-StorageProviderCache.md +++ b/docset/winserver2016-ps/storage/Update-StorageProviderCache.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageProvider.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/update-storageprovidercache?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/update-storageprovidercache?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-StorageProviderCache --- diff --git a/docset/winserver2016-ps/storage/Write-VolumeCache.md b/docset/winserver2016-ps/storage/Write-VolumeCache.md index 635b5d72c1..f5251e4e3d 100644 --- a/docset/winserver2016-ps/storage/Write-VolumeCache.md +++ b/docset/winserver2016-ps/storage/Write-VolumeCache.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Volume.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/write-volumecache?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/write-volumecache?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Write-VolumeCache --- diff --git a/docset/winserver2016-ps/storageqos/Get-StorageQoSFlow.md b/docset/winserver2016-ps/storageqos/Get-StorageQoSFlow.md index 496b0a06f8..db1bc6e71f 100644 --- a/docset/winserver2016-ps/storageqos/Get-StorageQoSFlow.md +++ b/docset/winserver2016-ps/storageqos/Get-StorageQoSFlow.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Policy-help.xml Module Name: StorageQoS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storageqos/get-storageqosflow?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storageqos/get-storageqosflow?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageQoSFlow --- diff --git a/docset/winserver2016-ps/storageqos/Get-StorageQosPolicy.md b/docset/winserver2016-ps/storageqos/Get-StorageQosPolicy.md index c06fd6187e..fa2bc36a43 100644 --- a/docset/winserver2016-ps/storageqos/Get-StorageQosPolicy.md +++ b/docset/winserver2016-ps/storageqos/Get-StorageQosPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Policy.cdxml-help.xml Module Name: StorageQoS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storageqos/get-storageqospolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storageqos/get-storageqospolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageQosPolicy --- diff --git a/docset/winserver2016-ps/storageqos/Get-StorageQosPolicyStore.md b/docset/winserver2016-ps/storageqos/Get-StorageQosPolicyStore.md index 1386b15176..986a8eabfb 100644 --- a/docset/winserver2016-ps/storageqos/Get-StorageQosPolicyStore.md +++ b/docset/winserver2016-ps/storageqos/Get-StorageQosPolicyStore.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PolicyStore.cdxml-help.xml Module Name: StorageQoS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storageqos/get-storageqospolicystore?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storageqos/get-storageqospolicystore?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageQosPolicyStore --- diff --git a/docset/winserver2016-ps/storageqos/Get-StorageQosVolume.md b/docset/winserver2016-ps/storageqos/Get-StorageQosVolume.md index ec418db0bb..a9baefd2be 100644 --- a/docset/winserver2016-ps/storageqos/Get-StorageQosVolume.md +++ b/docset/winserver2016-ps/storageqos/Get-StorageQosVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: QosVolume.cdxml-help.xml Module Name: StorageQoS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storageqos/get-storageqosvolume?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storageqos/get-storageqosvolume?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageQosVolume --- diff --git a/docset/winserver2016-ps/storageqos/New-StorageQosPolicy.md b/docset/winserver2016-ps/storageqos/New-StorageQosPolicy.md index 166196abfe..035b9fb832 100644 --- a/docset/winserver2016-ps/storageqos/New-StorageQosPolicy.md +++ b/docset/winserver2016-ps/storageqos/New-StorageQosPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Policy-help.xml Module Name: StorageQoS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storageqos/new-storageqospolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storageqos/new-storageqospolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-StorageQosPolicy --- diff --git a/docset/winserver2016-ps/storageqos/Remove-StorageQosPolicy.md b/docset/winserver2016-ps/storageqos/Remove-StorageQosPolicy.md index 6cc81f9c27..98504bfc21 100644 --- a/docset/winserver2016-ps/storageqos/Remove-StorageQosPolicy.md +++ b/docset/winserver2016-ps/storageqos/Remove-StorageQosPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Policy.cdxml-help.xml Module Name: StorageQoS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storageqos/remove-storageqospolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storageqos/remove-storageqospolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-StorageQosPolicy --- diff --git a/docset/winserver2016-ps/storageqos/Set-StorageQosPolicy.md b/docset/winserver2016-ps/storageqos/Set-StorageQosPolicy.md index 9fa1640e32..f11c8bce2b 100644 --- a/docset/winserver2016-ps/storageqos/Set-StorageQosPolicy.md +++ b/docset/winserver2016-ps/storageqos/Set-StorageQosPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Policy.cdxml-help.xml Module Name: StorageQoS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storageqos/set-storageqospolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storageqos/set-storageqospolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-StorageQosPolicy --- diff --git a/docset/winserver2016-ps/storageqos/Set-StorageQosPolicyStore.md b/docset/winserver2016-ps/storageqos/Set-StorageQosPolicyStore.md index 246eeaeee0..3ebfb575c9 100644 --- a/docset/winserver2016-ps/storageqos/Set-StorageQosPolicyStore.md +++ b/docset/winserver2016-ps/storageqos/Set-StorageQosPolicyStore.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PolicyStore.cdxml-help.xml Module Name: StorageQoS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storageqos/set-storageqospolicystore?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storageqos/set-storageqospolicystore?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-StorageQosPolicyStore --- diff --git a/docset/winserver2016-ps/storagereplica/Clear-SRMetadata.md b/docset/winserver2016-ps/storagereplica/Clear-SRMetadata.md index 4bd9b19e17..25e65429f1 100644 --- a/docset/winserver2016-ps/storagereplica/Clear-SRMetadata.md +++ b/docset/winserver2016-ps/storagereplica/Clear-SRMetadata.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/clear-srmetadata?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/clear-srmetadata?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-SRMetadata --- diff --git a/docset/winserver2016-ps/storagereplica/Export-SRConfiguration.md b/docset/winserver2016-ps/storagereplica/Export-SRConfiguration.md index 8714fc7d17..6a74cc3061 100644 --- a/docset/winserver2016-ps/storagereplica/Export-SRConfiguration.md +++ b/docset/winserver2016-ps/storagereplica/Export-SRConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageReplica-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/export-srconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/export-srconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-SRConfiguration --- diff --git a/docset/winserver2016-ps/storagereplica/Get-SRAccess.md b/docset/winserver2016-ps/storagereplica/Get-SRAccess.md index fb04518b5c..690963ee5a 100644 --- a/docset/winserver2016-ps/storagereplica/Get-SRAccess.md +++ b/docset/winserver2016-ps/storagereplica/Get-SRAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/get-sraccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/get-sraccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SRAccess --- diff --git a/docset/winserver2016-ps/storagereplica/Get-SRDelegation.md b/docset/winserver2016-ps/storagereplica/Get-SRDelegation.md index 20b84ed05b..010fbce904 100644 --- a/docset/winserver2016-ps/storagereplica/Get-SRDelegation.md +++ b/docset/winserver2016-ps/storagereplica/Get-SRDelegation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/get-srdelegation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/get-srdelegation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SRDelegation --- diff --git a/docset/winserver2016-ps/storagereplica/Get-SRGroup.md b/docset/winserver2016-ps/storagereplica/Get-SRGroup.md index 4325996a6f..09313f21d3 100644 --- a/docset/winserver2016-ps/storagereplica/Get-SRGroup.md +++ b/docset/winserver2016-ps/storagereplica/Get-SRGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/get-srgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/get-srgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SRGroup --- diff --git a/docset/winserver2016-ps/storagereplica/Get-SRNetworkConstraint.md b/docset/winserver2016-ps/storagereplica/Get-SRNetworkConstraint.md index 91a2b0e530..81e22ed030 100644 --- a/docset/winserver2016-ps/storagereplica/Get-SRNetworkConstraint.md +++ b/docset/winserver2016-ps/storagereplica/Get-SRNetworkConstraint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/get-srnetworkconstraint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/get-srnetworkconstraint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SRNetworkConstraint --- diff --git a/docset/winserver2016-ps/storagereplica/Get-SRPartnership.md b/docset/winserver2016-ps/storagereplica/Get-SRPartnership.md index de0171ce2a..17974796bb 100644 --- a/docset/winserver2016-ps/storagereplica/Get-SRPartnership.md +++ b/docset/winserver2016-ps/storagereplica/Get-SRPartnership.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/get-srpartnership?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/get-srpartnership?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SRPartnership --- diff --git a/docset/winserver2016-ps/storagereplica/Grant-SRAccess.md b/docset/winserver2016-ps/storagereplica/Grant-SRAccess.md index e52d0846b5..55cd71a812 100644 --- a/docset/winserver2016-ps/storagereplica/Grant-SRAccess.md +++ b/docset/winserver2016-ps/storagereplica/Grant-SRAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/grant-sraccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/grant-sraccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Grant-SRAccess --- diff --git a/docset/winserver2016-ps/storagereplica/Grant-SRDelegation.md b/docset/winserver2016-ps/storagereplica/Grant-SRDelegation.md index b98ff16991..fad3fded3c 100644 --- a/docset/winserver2016-ps/storagereplica/Grant-SRDelegation.md +++ b/docset/winserver2016-ps/storagereplica/Grant-SRDelegation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/grant-srdelegation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/grant-srdelegation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Grant-SRDelegation --- diff --git a/docset/winserver2016-ps/storagereplica/New-SRGroup.md b/docset/winserver2016-ps/storagereplica/New-SRGroup.md index 17188169d4..115cab7972 100644 --- a/docset/winserver2016-ps/storagereplica/New-SRGroup.md +++ b/docset/winserver2016-ps/storagereplica/New-SRGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/new-srgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/new-srgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-SRGroup --- diff --git a/docset/winserver2016-ps/storagereplica/New-SRPartnership.md b/docset/winserver2016-ps/storagereplica/New-SRPartnership.md index dbb323561c..2f548bc4bd 100644 --- a/docset/winserver2016-ps/storagereplica/New-SRPartnership.md +++ b/docset/winserver2016-ps/storagereplica/New-SRPartnership.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/new-srpartnership?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/new-srpartnership?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-SRPartnership --- diff --git a/docset/winserver2016-ps/storagereplica/Remove-SRGroup.md b/docset/winserver2016-ps/storagereplica/Remove-SRGroup.md index c073279986..93fc12ad40 100644 --- a/docset/winserver2016-ps/storagereplica/Remove-SRGroup.md +++ b/docset/winserver2016-ps/storagereplica/Remove-SRGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/remove-srgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/remove-srgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-SRGroup --- diff --git a/docset/winserver2016-ps/storagereplica/Remove-SRNetworkConstraint.md b/docset/winserver2016-ps/storagereplica/Remove-SRNetworkConstraint.md index 9141d09e26..0954bdbf62 100644 --- a/docset/winserver2016-ps/storagereplica/Remove-SRNetworkConstraint.md +++ b/docset/winserver2016-ps/storagereplica/Remove-SRNetworkConstraint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/remove-srnetworkconstraint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/remove-srnetworkconstraint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-SRNetworkConstraint --- diff --git a/docset/winserver2016-ps/storagereplica/Remove-SRPartnership.md b/docset/winserver2016-ps/storagereplica/Remove-SRPartnership.md index e2a51a8acb..0cd9e56d19 100644 --- a/docset/winserver2016-ps/storagereplica/Remove-SRPartnership.md +++ b/docset/winserver2016-ps/storagereplica/Remove-SRPartnership.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/remove-srpartnership?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/remove-srpartnership?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-SRPartnership --- diff --git a/docset/winserver2016-ps/storagereplica/Revoke-SRAccess.md b/docset/winserver2016-ps/storagereplica/Revoke-SRAccess.md index 1af9d91532..f7208dd69a 100644 --- a/docset/winserver2016-ps/storagereplica/Revoke-SRAccess.md +++ b/docset/winserver2016-ps/storagereplica/Revoke-SRAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/revoke-sraccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/revoke-sraccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Revoke-SRAccess --- diff --git a/docset/winserver2016-ps/storagereplica/Revoke-SRDelegation.md b/docset/winserver2016-ps/storagereplica/Revoke-SRDelegation.md index 12326be970..717f3592e9 100644 --- a/docset/winserver2016-ps/storagereplica/Revoke-SRDelegation.md +++ b/docset/winserver2016-ps/storagereplica/Revoke-SRDelegation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/revoke-srdelegation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/revoke-srdelegation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Revoke-SRDelegation --- diff --git a/docset/winserver2016-ps/storagereplica/Set-SRGroup.md b/docset/winserver2016-ps/storagereplica/Set-SRGroup.md index ffb46a92e0..40c93a8b15 100644 --- a/docset/winserver2016-ps/storagereplica/Set-SRGroup.md +++ b/docset/winserver2016-ps/storagereplica/Set-SRGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/set-srgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/set-srgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SRGroup --- diff --git a/docset/winserver2016-ps/storagereplica/Set-SRNetworkConstraint.md b/docset/winserver2016-ps/storagereplica/Set-SRNetworkConstraint.md index c803ebf0bc..5fd65efec2 100644 --- a/docset/winserver2016-ps/storagereplica/Set-SRNetworkConstraint.md +++ b/docset/winserver2016-ps/storagereplica/Set-SRNetworkConstraint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/set-srnetworkconstraint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/set-srnetworkconstraint?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SRNetworkConstraint --- diff --git a/docset/winserver2016-ps/storagereplica/Set-SRPartnership.md b/docset/winserver2016-ps/storagereplica/Set-SRPartnership.md index 17c7636eeb..74a01d31c0 100644 --- a/docset/winserver2016-ps/storagereplica/Set-SRPartnership.md +++ b/docset/winserver2016-ps/storagereplica/Set-SRPartnership.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/set-srpartnership?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/set-srpartnership?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SRPartnership --- diff --git a/docset/winserver2016-ps/storagereplica/Suspend-SRGroup.md b/docset/winserver2016-ps/storagereplica/Suspend-SRGroup.md index aa56c6caa5..3611a9bcbe 100644 --- a/docset/winserver2016-ps/storagereplica/Suspend-SRGroup.md +++ b/docset/winserver2016-ps/storagereplica/Suspend-SRGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/suspend-srgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/suspend-srgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-SRGroup --- diff --git a/docset/winserver2016-ps/storagereplica/Sync-SRGroup.md b/docset/winserver2016-ps/storagereplica/Sync-SRGroup.md index 33ad209e37..6556879599 100644 --- a/docset/winserver2016-ps/storagereplica/Sync-SRGroup.md +++ b/docset/winserver2016-ps/storagereplica/Sync-SRGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/sync-srgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/sync-srgroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Sync-SRGroup --- diff --git a/docset/winserver2016-ps/storagereplica/Test-SRTopology.md b/docset/winserver2016-ps/storagereplica/Test-SRTopology.md index 8bda5ec701..252256a1d8 100644 --- a/docset/winserver2016-ps/storagereplica/Test-SRTopology.md +++ b/docset/winserver2016-ps/storagereplica/Test-SRTopology.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FileServices.SR.Powershell.dll-Help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/test-srtopology?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/test-srtopology?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-SRTopology --- diff --git a/docset/winserver2016-ps/syncshare/Disable-SyncShare.md b/docset/winserver2016-ps/syncshare/Disable-SyncShare.md index 72c94394a3..70a772f869 100644 --- a/docset/winserver2016-ps/syncshare/Disable-SyncShare.md +++ b/docset/winserver2016-ps/syncshare/Disable-SyncShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SyncShare.cdxml-help.xml Module Name: SyncShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/syncshare/disable-syncshare?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/syncshare/disable-syncshare?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-SyncShare --- diff --git a/docset/winserver2016-ps/syncshare/Enable-SyncShare.md b/docset/winserver2016-ps/syncshare/Enable-SyncShare.md index 5fd22e38c4..27e2cde2aa 100644 --- a/docset/winserver2016-ps/syncshare/Enable-SyncShare.md +++ b/docset/winserver2016-ps/syncshare/Enable-SyncShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SyncShare.cdxml-help.xml Module Name: SyncShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/syncshare/enable-syncshare?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/syncshare/enable-syncshare?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-SyncShare --- diff --git a/docset/winserver2016-ps/syncshare/Get-SyncServerSetting.md b/docset/winserver2016-ps/syncshare/Get-SyncServerSetting.md index 6de944c9fb..690dfb968d 100644 --- a/docset/winserver2016-ps/syncshare/Get-SyncServerSetting.md +++ b/docset/winserver2016-ps/syncshare/Get-SyncServerSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SyncServerSetting.cdxml-help.xml Module Name: SyncShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/syncshare/get-syncserversetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/syncshare/get-syncserversetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SyncServerSetting --- diff --git a/docset/winserver2016-ps/syncshare/Get-SyncShare.md b/docset/winserver2016-ps/syncshare/Get-SyncShare.md index 7f5f26b542..462d73a3bf 100644 --- a/docset/winserver2016-ps/syncshare/Get-SyncShare.md +++ b/docset/winserver2016-ps/syncshare/Get-SyncShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SyncShare.cdxml-help.xml Module Name: SyncShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/syncshare/get-syncshare?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/syncshare/get-syncshare?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SyncShare --- diff --git a/docset/winserver2016-ps/syncshare/Get-SyncUserStatus.md b/docset/winserver2016-ps/syncshare/Get-SyncUserStatus.md index 909371dcda..adf8ca84f6 100644 --- a/docset/winserver2016-ps/syncshare/Get-SyncUserStatus.md +++ b/docset/winserver2016-ps/syncshare/Get-SyncUserStatus.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SyncUserStatus.cdxml-help.xml Module Name: SyncShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/syncshare/get-syncuserstatus?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/syncshare/get-syncuserstatus?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SyncUserStatus --- diff --git a/docset/winserver2016-ps/syncshare/New-SyncShare.md b/docset/winserver2016-ps/syncshare/New-SyncShare.md index e228d80007..924518a05d 100644 --- a/docset/winserver2016-ps/syncshare/New-SyncShare.md +++ b/docset/winserver2016-ps/syncshare/New-SyncShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SyncShare.cdxml-help.xml Module Name: SyncShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/syncshare/new-syncshare?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/syncshare/new-syncshare?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-SyncShare --- diff --git a/docset/winserver2016-ps/syncshare/Remove-SyncShare.md b/docset/winserver2016-ps/syncshare/Remove-SyncShare.md index 36f5b9af3d..1a2724fb68 100644 --- a/docset/winserver2016-ps/syncshare/Remove-SyncShare.md +++ b/docset/winserver2016-ps/syncshare/Remove-SyncShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SyncShare.cdxml-help.xml Module Name: SyncShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/syncshare/remove-syncshare?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/syncshare/remove-syncshare?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-SyncShare --- diff --git a/docset/winserver2016-ps/syncshare/Repair-SyncShare.md b/docset/winserver2016-ps/syncshare/Repair-SyncShare.md index ac9e44978c..7643d590bb 100644 --- a/docset/winserver2016-ps/syncshare/Repair-SyncShare.md +++ b/docset/winserver2016-ps/syncshare/Repair-SyncShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SyncShare.cdxml-help.xml Module Name: SyncShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/syncshare/repair-syncshare?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/syncshare/repair-syncshare?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Repair-SyncShare --- diff --git a/docset/winserver2016-ps/syncshare/Set-SyncServerSetting.md b/docset/winserver2016-ps/syncshare/Set-SyncServerSetting.md index 2cb4e836ab..03b071ba77 100644 --- a/docset/winserver2016-ps/syncshare/Set-SyncServerSetting.md +++ b/docset/winserver2016-ps/syncshare/Set-SyncServerSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SyncServerSetting.cdxml-help.xml Module Name: SyncShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/syncshare/set-syncserversetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/syncshare/set-syncserversetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SyncServerSetting --- diff --git a/docset/winserver2016-ps/syncshare/Set-SyncShare.md b/docset/winserver2016-ps/syncshare/Set-SyncShare.md index 51978627d6..14641ff682 100644 --- a/docset/winserver2016-ps/syncshare/Set-SyncShare.md +++ b/docset/winserver2016-ps/syncshare/Set-SyncShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SyncShare.cdxml-help.xml Module Name: SyncShare ms.date: 09/03/2017 -online version: https://docs.microsoft.com/powershell/module/syncshare/set-syncshare?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/syncshare/set-syncshare?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SyncShare --- diff --git a/docset/winserver2016-ps/systeminsights/Add-InsightsCapability.md b/docset/winserver2016-ps/systeminsights/Add-InsightsCapability.md index e69d90460b..69a81a1513 100644 --- a/docset/winserver2016-ps/systeminsights/Add-InsightsCapability.md +++ b/docset/winserver2016-ps/systeminsights/Add-InsightsCapability.md @@ -5,7 +5,7 @@ external help file: Microsoft.SystemInsights.Management.PowerShell.dll-help.xml Locale: en-US Module Name: SystemInsights ms.date: 06/18/2018 -online version: https://docs.microsoft.com/powershell/module/systeminsights/add-insightscapability?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/systeminsights/add-insightscapability?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-InsightsCapability --- diff --git a/docset/winserver2016-ps/systeminsights/Disable-InsightsCapability.md b/docset/winserver2016-ps/systeminsights/Disable-InsightsCapability.md index 4ae95e436f..cc88fbfdc0 100644 --- a/docset/winserver2016-ps/systeminsights/Disable-InsightsCapability.md +++ b/docset/winserver2016-ps/systeminsights/Disable-InsightsCapability.md @@ -5,7 +5,7 @@ external help file: Microsoft.SystemInsights.Management.PowerShell.dll-help.xml Locale: en-US Module Name: SystemInsights ms.date: 06/18/2018 -online version: https://docs.microsoft.com/powershell/module/systeminsights/disable-insightscapability?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/systeminsights/disable-insightscapability?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-InsightsCapability --- diff --git a/docset/winserver2016-ps/systeminsights/Disable-InsightsCapabilitySchedule.md b/docset/winserver2016-ps/systeminsights/Disable-InsightsCapabilitySchedule.md index 18cbef7add..8d061c992d 100644 --- a/docset/winserver2016-ps/systeminsights/Disable-InsightsCapabilitySchedule.md +++ b/docset/winserver2016-ps/systeminsights/Disable-InsightsCapabilitySchedule.md @@ -5,7 +5,7 @@ external help file: Microsoft.SystemInsights.Management.PowerShell.dll-help.xml Locale: en-US Module Name: SystemInsights ms.date: 06/18/2018 -online version: https://docs.microsoft.com/powershell/module/systeminsights/disable-insightscapabilityschedule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/systeminsights/disable-insightscapabilityschedule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-InsightsCapabilitySchedule --- diff --git a/docset/winserver2016-ps/systeminsights/Enable-InsightsCapability.md b/docset/winserver2016-ps/systeminsights/Enable-InsightsCapability.md index 95cf76dea1..98a58113a1 100644 --- a/docset/winserver2016-ps/systeminsights/Enable-InsightsCapability.md +++ b/docset/winserver2016-ps/systeminsights/Enable-InsightsCapability.md @@ -5,7 +5,7 @@ external help file: Microsoft.SystemInsights.Management.PowerShell.dll-help.xml Locale: en-US Module Name: SystemInsights ms.date: 06/18/2018 -online version: https://docs.microsoft.com/powershell/module/systeminsights/enable-insightscapability?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/systeminsights/enable-insightscapability?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-InsightsCapability --- diff --git a/docset/winserver2016-ps/systeminsights/Enable-InsightsCapabilitySchedule.md b/docset/winserver2016-ps/systeminsights/Enable-InsightsCapabilitySchedule.md index 9a83fb1a8a..8729c3459a 100644 --- a/docset/winserver2016-ps/systeminsights/Enable-InsightsCapabilitySchedule.md +++ b/docset/winserver2016-ps/systeminsights/Enable-InsightsCapabilitySchedule.md @@ -5,7 +5,7 @@ external help file: Microsoft.SystemInsights.Management.PowerShell.dll-help.xml Locale: en-US Module Name: SystemInsights ms.date: 06/18/2018 -online version: https://docs.microsoft.com/powershell/module/systeminsights/enable-insightscapabilityschedule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/systeminsights/enable-insightscapabilityschedule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-InsightsCapabilitySchedule --- diff --git a/docset/winserver2016-ps/systeminsights/Get-InsightsCapability.md b/docset/winserver2016-ps/systeminsights/Get-InsightsCapability.md index 7953e50327..ffa80ffbb0 100644 --- a/docset/winserver2016-ps/systeminsights/Get-InsightsCapability.md +++ b/docset/winserver2016-ps/systeminsights/Get-InsightsCapability.md @@ -5,7 +5,7 @@ external help file: Microsoft.SystemInsights.Management.PowerShell.dll-help.xml Locale: en-US Module Name: SystemInsights ms.date: 06/18/2018 -online version: https://docs.microsoft.com/powershell/module/systeminsights/get-insightscapability?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/systeminsights/get-insightscapability?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-InsightsCapability --- diff --git a/docset/winserver2016-ps/systeminsights/Get-InsightsCapabilityAction.md b/docset/winserver2016-ps/systeminsights/Get-InsightsCapabilityAction.md index fc95c79261..cc947d8ede 100644 --- a/docset/winserver2016-ps/systeminsights/Get-InsightsCapabilityAction.md +++ b/docset/winserver2016-ps/systeminsights/Get-InsightsCapabilityAction.md @@ -5,7 +5,7 @@ external help file: Microsoft.SystemInsights.Management.PowerShell.dll-help.xml Locale: en-US Module Name: SystemInsights ms.date: 06/18/2018 -online version: https://docs.microsoft.com/powershell/module/systeminsights/get-insightscapabilityaction?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/systeminsights/get-insightscapabilityaction?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-InsightsCapabilityAction --- diff --git a/docset/winserver2016-ps/systeminsights/Get-InsightsCapabilityResult.md b/docset/winserver2016-ps/systeminsights/Get-InsightsCapabilityResult.md index b763a9b87a..0dc8450ee0 100644 --- a/docset/winserver2016-ps/systeminsights/Get-InsightsCapabilityResult.md +++ b/docset/winserver2016-ps/systeminsights/Get-InsightsCapabilityResult.md @@ -5,7 +5,7 @@ external help file: Microsoft.SystemInsights.Management.PowerShell.dll-help.xml Locale: en-US Module Name: SystemInsights ms.date: 06/18/2018 -online version: https://docs.microsoft.com/powershell/module/systeminsights/get-insightscapabilityresult?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/systeminsights/get-insightscapabilityresult?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-InsightsCapabilityResult --- diff --git a/docset/winserver2016-ps/systeminsights/Get-InsightsCapabilitySchedule.md b/docset/winserver2016-ps/systeminsights/Get-InsightsCapabilitySchedule.md index 067853b8a3..d643edaef0 100644 --- a/docset/winserver2016-ps/systeminsights/Get-InsightsCapabilitySchedule.md +++ b/docset/winserver2016-ps/systeminsights/Get-InsightsCapabilitySchedule.md @@ -5,7 +5,7 @@ external help file: Microsoft.SystemInsights.Management.PowerShell.dll-help.xml Locale: en-US Module Name: SystemInsights ms.date: 06/18/2018 -online version: https://docs.microsoft.com/powershell/module/systeminsights/get-insightscapabilityschedule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/systeminsights/get-insightscapabilityschedule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-InsightsCapabilitySchedule --- diff --git a/docset/winserver2016-ps/systeminsights/Invoke-InsightsCapability.md b/docset/winserver2016-ps/systeminsights/Invoke-InsightsCapability.md index acbb6a9061..cf25d4a030 100644 --- a/docset/winserver2016-ps/systeminsights/Invoke-InsightsCapability.md +++ b/docset/winserver2016-ps/systeminsights/Invoke-InsightsCapability.md @@ -5,7 +5,7 @@ external help file: Microsoft.SystemInsights.Management.PowerShell.dll-help.xml Locale: en-US Module Name: SystemInsights ms.date: 06/18/2018 -online version: https://docs.microsoft.com/powershell/module/systeminsights/invoke-insightscapability?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/systeminsights/invoke-insightscapability?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-InsightsCapability --- diff --git a/docset/winserver2016-ps/systeminsights/Remove-InsightsCapability.md b/docset/winserver2016-ps/systeminsights/Remove-InsightsCapability.md index 6ceafc4bdd..46886f4b65 100644 --- a/docset/winserver2016-ps/systeminsights/Remove-InsightsCapability.md +++ b/docset/winserver2016-ps/systeminsights/Remove-InsightsCapability.md @@ -5,7 +5,7 @@ external help file: Microsoft.SystemInsights.Management.PowerShell.dll-help.xml Locale: en-US Module Name: SystemInsights ms.date: 06/18/2018 -online version: https://docs.microsoft.com/powershell/module/systeminsights/remove-insightscapability?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/systeminsights/remove-insightscapability?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-InsightsCapability --- diff --git a/docset/winserver2016-ps/systeminsights/Remove-InsightsCapabilityAction.md b/docset/winserver2016-ps/systeminsights/Remove-InsightsCapabilityAction.md index e62246b7ee..80eacf1fe8 100644 --- a/docset/winserver2016-ps/systeminsights/Remove-InsightsCapabilityAction.md +++ b/docset/winserver2016-ps/systeminsights/Remove-InsightsCapabilityAction.md @@ -5,7 +5,7 @@ external help file: Microsoft.SystemInsights.Management.PowerShell.dll-help.xml Locale: en-US Module Name: SystemInsights ms.date: 06/18/2018 -online version: https://docs.microsoft.com/powershell/module/systeminsights/remove-insightscapabilityaction?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/systeminsights/remove-insightscapabilityaction?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-InsightsCapabilityAction --- diff --git a/docset/winserver2016-ps/systeminsights/Set-InsightsCapabilityAction.md b/docset/winserver2016-ps/systeminsights/Set-InsightsCapabilityAction.md index 38d2c7b2c6..58a8a91027 100644 --- a/docset/winserver2016-ps/systeminsights/Set-InsightsCapabilityAction.md +++ b/docset/winserver2016-ps/systeminsights/Set-InsightsCapabilityAction.md @@ -5,7 +5,7 @@ external help file: Microsoft.SystemInsights.Management.PowerShell.dll-help.xml Locale: en-US Module Name: SystemInsights ms.date: 06/18/2018 -online version: https://docs.microsoft.com/powershell/module/systeminsights/set-insightscapabilityaction?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/systeminsights/set-insightscapabilityaction?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-InsightsCapabilityAction --- diff --git a/docset/winserver2016-ps/systeminsights/Set-InsightsCapabilitySchedule.md b/docset/winserver2016-ps/systeminsights/Set-InsightsCapabilitySchedule.md index 7ce4167ee1..0f2df9f797 100644 --- a/docset/winserver2016-ps/systeminsights/Set-InsightsCapabilitySchedule.md +++ b/docset/winserver2016-ps/systeminsights/Set-InsightsCapabilitySchedule.md @@ -5,7 +5,7 @@ external help file: Microsoft.SystemInsights.Management.PowerShell.dll-help.xml Locale: en-US Module Name: SystemInsights ms.date: 06/18/2018 -online version: https://docs.microsoft.com/powershell/module/systeminsights/set-insightscapabilityschedule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/systeminsights/set-insightscapabilityschedule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-InsightsCapabilitySchedule --- diff --git a/docset/winserver2016-ps/systeminsights/Update-InsightsCapability.md b/docset/winserver2016-ps/systeminsights/Update-InsightsCapability.md index 1287f7b213..ec2ca9371c 100644 --- a/docset/winserver2016-ps/systeminsights/Update-InsightsCapability.md +++ b/docset/winserver2016-ps/systeminsights/Update-InsightsCapability.md @@ -5,7 +5,7 @@ external help file: Microsoft.SystemInsights.Management.PowerShell.dll-help.xml Locale: en-US Module Name: SystemInsights ms.date: 06/18/2018 -online version: https://docs.microsoft.com/powershell/module/systeminsights/update-insightscapability?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/systeminsights/update-insightscapability?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-InsightsCapability --- diff --git a/docset/winserver2016-ps/tls/Disable-TlsCipherSuite.md b/docset/winserver2016-ps/tls/Disable-TlsCipherSuite.md index f1a8b523e9..2df637d981 100644 --- a/docset/winserver2016-ps/tls/Disable-TlsCipherSuite.md +++ b/docset/winserver2016-ps/tls/Disable-TlsCipherSuite.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.WindowsAuthenticationProtocols.Commands.dll-Help.xml Module Name: TLS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/tls/disable-tlsciphersuite?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/tls/disable-tlsciphersuite?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-TlsCipherSuite --- diff --git a/docset/winserver2016-ps/tls/Disable-TlsEccCurve.md b/docset/winserver2016-ps/tls/Disable-TlsEccCurve.md index 81f84e4996..b8ba84159e 100644 --- a/docset/winserver2016-ps/tls/Disable-TlsEccCurve.md +++ b/docset/winserver2016-ps/tls/Disable-TlsEccCurve.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.WindowsAuthenticationProtocols.Commands.dll-Help.xml Module Name: TLS ms.date: 05/09/2017 -online version: https://docs.microsoft.com/powershell/module/tls/disable-tlsecccurve?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/tls/disable-tlsecccurve?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-TlsEccCurve --- diff --git a/docset/winserver2016-ps/tls/Disable-TlsSessionTicketKey.md b/docset/winserver2016-ps/tls/Disable-TlsSessionTicketKey.md index 2856762991..96c0fbbf5e 100644 --- a/docset/winserver2016-ps/tls/Disable-TlsSessionTicketKey.md +++ b/docset/winserver2016-ps/tls/Disable-TlsSessionTicketKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.WindowsAuthenticationProtocols.Commands.dll-Help.xml Module Name: TLS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/tls/disable-tlssessionticketkey?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/tls/disable-tlssessionticketkey?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-TlsSessionTicketKey --- diff --git a/docset/winserver2016-ps/tls/Enable-TlsCipherSuite.md b/docset/winserver2016-ps/tls/Enable-TlsCipherSuite.md index e7c05c20ea..3242eaf54f 100644 --- a/docset/winserver2016-ps/tls/Enable-TlsCipherSuite.md +++ b/docset/winserver2016-ps/tls/Enable-TlsCipherSuite.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.WindowsAuthenticationProtocols.Commands.dll-Help.xml Module Name: TLS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/tls/enable-tlsciphersuite?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/tls/enable-tlsciphersuite?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-TlsCipherSuite --- diff --git a/docset/winserver2016-ps/tls/Enable-TlsEccCurve.md b/docset/winserver2016-ps/tls/Enable-TlsEccCurve.md index 67b5952158..fee64b9264 100644 --- a/docset/winserver2016-ps/tls/Enable-TlsEccCurve.md +++ b/docset/winserver2016-ps/tls/Enable-TlsEccCurve.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.WindowsAuthenticationProtocols.Commands.dll-Help.xml Module Name: TLS ms.date: 05/09/2017 -online version: https://docs.microsoft.com/powershell/module/tls/enable-tlsecccurve?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/tls/enable-tlsecccurve?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-TlsEccCurve --- diff --git a/docset/winserver2016-ps/tls/Enable-TlsSessionTicketKey.md b/docset/winserver2016-ps/tls/Enable-TlsSessionTicketKey.md index bb5a9ff69d..fb27e3a3a0 100644 --- a/docset/winserver2016-ps/tls/Enable-TlsSessionTicketKey.md +++ b/docset/winserver2016-ps/tls/Enable-TlsSessionTicketKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.WindowsAuthenticationProtocols.Commands.dll-Help.xml Module Name: TLS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/tls/enable-tlssessionticketkey?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/tls/enable-tlssessionticketkey?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-TlsSessionTicketKey --- diff --git a/docset/winserver2016-ps/tls/Export-TlsSessionTicketKey.md b/docset/winserver2016-ps/tls/Export-TlsSessionTicketKey.md index 47d01f5902..b1b72e2b6f 100644 --- a/docset/winserver2016-ps/tls/Export-TlsSessionTicketKey.md +++ b/docset/winserver2016-ps/tls/Export-TlsSessionTicketKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.WindowsAuthenticationProtocols.Commands.dll-Help.xml Module Name: TLS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/tls/export-tlssessionticketkey?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/tls/export-tlssessionticketkey?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-TlsSessionTicketKey --- diff --git a/docset/winserver2016-ps/tls/Get-TlsCipherSuite.md b/docset/winserver2016-ps/tls/Get-TlsCipherSuite.md index 7adf156e8a..3e5eec78cb 100644 --- a/docset/winserver2016-ps/tls/Get-TlsCipherSuite.md +++ b/docset/winserver2016-ps/tls/Get-TlsCipherSuite.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.WindowsAuthenticationProtocols.Commands.dll-Help.xml Module Name: TLS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/tls/get-tlsciphersuite?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/tls/get-tlsciphersuite?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-TlsCipherSuite --- diff --git a/docset/winserver2016-ps/tls/Get-TlsEccCurve.md b/docset/winserver2016-ps/tls/Get-TlsEccCurve.md index c9414b14e2..7803ebb93f 100644 --- a/docset/winserver2016-ps/tls/Get-TlsEccCurve.md +++ b/docset/winserver2016-ps/tls/Get-TlsEccCurve.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.WindowsAuthenticationProtocols.Commands.dll-Help.xml Module Name: TLS ms.date: 05/09/2017 -online version: https://docs.microsoft.com/powershell/module/tls/get-tlsecccurve?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/tls/get-tlsecccurve?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-TlsEccCurve --- diff --git a/docset/winserver2016-ps/tls/New-TlsSessionTicketKey.md b/docset/winserver2016-ps/tls/New-TlsSessionTicketKey.md index 943446dd34..8d70fbf266 100644 --- a/docset/winserver2016-ps/tls/New-TlsSessionTicketKey.md +++ b/docset/winserver2016-ps/tls/New-TlsSessionTicketKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.WindowsAuthenticationProtocols.Commands.dll-Help.xml Module Name: TLS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/tls/new-tlssessionticketkey?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/tls/new-tlssessionticketkey?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-TlsSessionTicketKey --- diff --git a/docset/winserver2016-ps/troubleshootingpack/Get-TroubleshootingPack.md b/docset/winserver2016-ps/troubleshootingpack/Get-TroubleshootingPack.md index 305011ae6b..ad8922876a 100644 --- a/docset/winserver2016-ps/troubleshootingpack/Get-TroubleshootingPack.md +++ b/docset/winserver2016-ps/troubleshootingpack/Get-TroubleshootingPack.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Diagnosis.TroubleshootingPack.dll-Help.xml Module Name: TroubleshootingPack ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/troubleshootingpack/get-troubleshootingpack?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/troubleshootingpack/get-troubleshootingpack?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-TroubleshootingPack --- diff --git a/docset/winserver2016-ps/troubleshootingpack/Invoke-TroubleshootingPack.md b/docset/winserver2016-ps/troubleshootingpack/Invoke-TroubleshootingPack.md index 4f6f150825..ce9b0d6320 100644 --- a/docset/winserver2016-ps/troubleshootingpack/Invoke-TroubleshootingPack.md +++ b/docset/winserver2016-ps/troubleshootingpack/Invoke-TroubleshootingPack.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Diagnosis.TroubleshootingPack.dll-Help.xml Module Name: TroubleshootingPack ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/troubleshootingpack/invoke-troubleshootingpack?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/troubleshootingpack/invoke-troubleshootingpack?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-TroubleshootingPack --- diff --git a/docset/winserver2016-ps/trustedplatformmodule/Clear-Tpm.md b/docset/winserver2016-ps/trustedplatformmodule/Clear-Tpm.md index 64079ed4af..a968fa25a4 100644 --- a/docset/winserver2016-ps/trustedplatformmodule/Clear-Tpm.md +++ b/docset/winserver2016-ps/trustedplatformmodule/Clear-Tpm.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Tpm.Commands.dll-Help.xml Module Name: TrustedPlatformModule ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/trustedplatformmodule/clear-tpm?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/trustedplatformmodule/clear-tpm?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-Tpm --- diff --git a/docset/winserver2016-ps/trustedplatformmodule/ConvertTo-TpmOwnerAuth.md b/docset/winserver2016-ps/trustedplatformmodule/ConvertTo-TpmOwnerAuth.md index 447dc2da3c..3f579fe7dd 100644 --- a/docset/winserver2016-ps/trustedplatformmodule/ConvertTo-TpmOwnerAuth.md +++ b/docset/winserver2016-ps/trustedplatformmodule/ConvertTo-TpmOwnerAuth.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Tpm.Commands.dll-Help.xml Module Name: TrustedPlatformModule ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/trustedplatformmodule/convertto-tpmownerauth?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/trustedplatformmodule/convertto-tpmownerauth?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: ConvertTo-TpmOwnerAuth --- diff --git a/docset/winserver2016-ps/trustedplatformmodule/Disable-TpmAutoProvisioning.md b/docset/winserver2016-ps/trustedplatformmodule/Disable-TpmAutoProvisioning.md index b2feedd5f9..384d52e60a 100644 --- a/docset/winserver2016-ps/trustedplatformmodule/Disable-TpmAutoProvisioning.md +++ b/docset/winserver2016-ps/trustedplatformmodule/Disable-TpmAutoProvisioning.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Tpm.Commands.dll-Help.xml Module Name: TrustedPlatformModule ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/trustedplatformmodule/disable-tpmautoprovisioning?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/trustedplatformmodule/disable-tpmautoprovisioning?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-TpmAutoProvisioning --- diff --git a/docset/winserver2016-ps/trustedplatformmodule/Enable-TpmAutoProvisioning.md b/docset/winserver2016-ps/trustedplatformmodule/Enable-TpmAutoProvisioning.md index a8fd622b2c..668d9fecba 100644 --- a/docset/winserver2016-ps/trustedplatformmodule/Enable-TpmAutoProvisioning.md +++ b/docset/winserver2016-ps/trustedplatformmodule/Enable-TpmAutoProvisioning.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Tpm.Commands.dll-Help.xml Module Name: TrustedPlatformModule ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/trustedplatformmodule/enable-tpmautoprovisioning?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/trustedplatformmodule/enable-tpmautoprovisioning?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-TpmAutoProvisioning --- diff --git a/docset/winserver2016-ps/trustedplatformmodule/Get-Tpm.md b/docset/winserver2016-ps/trustedplatformmodule/Get-Tpm.md index 890a323468..75818b8e9b 100644 --- a/docset/winserver2016-ps/trustedplatformmodule/Get-Tpm.md +++ b/docset/winserver2016-ps/trustedplatformmodule/Get-Tpm.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Tpm.Commands.dll-Help.xml Module Name: TrustedPlatformModule ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/trustedplatformmodule/get-tpm?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/trustedplatformmodule/get-tpm?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-Tpm --- diff --git a/docset/winserver2016-ps/trustedplatformmodule/Get-TpmEndorsementKeyInfo.md b/docset/winserver2016-ps/trustedplatformmodule/Get-TpmEndorsementKeyInfo.md index 91291c634d..41c126eccf 100644 --- a/docset/winserver2016-ps/trustedplatformmodule/Get-TpmEndorsementKeyInfo.md +++ b/docset/winserver2016-ps/trustedplatformmodule/Get-TpmEndorsementKeyInfo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Tpm.Commands.dll-Help.xml Module Name: TrustedPlatformModule ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/trustedplatformmodule/get-tpmendorsementkeyinfo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/trustedplatformmodule/get-tpmendorsementkeyinfo?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-TpmEndorsementKeyInfo --- diff --git a/docset/winserver2016-ps/trustedplatformmodule/Get-TpmSupportedFeature.md b/docset/winserver2016-ps/trustedplatformmodule/Get-TpmSupportedFeature.md index 58bfbed080..16a06f11a3 100644 --- a/docset/winserver2016-ps/trustedplatformmodule/Get-TpmSupportedFeature.md +++ b/docset/winserver2016-ps/trustedplatformmodule/Get-TpmSupportedFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Tpm.Commands.dll-Help.xml Module Name: TrustedPlatformModule ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/trustedplatformmodule/get-tpmsupportedfeature?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/trustedplatformmodule/get-tpmsupportedfeature?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-TpmSupportedFeature --- diff --git a/docset/winserver2016-ps/trustedplatformmodule/Import-TpmOwnerAuth.md b/docset/winserver2016-ps/trustedplatformmodule/Import-TpmOwnerAuth.md index af77db05f2..5393f03a8a 100644 --- a/docset/winserver2016-ps/trustedplatformmodule/Import-TpmOwnerAuth.md +++ b/docset/winserver2016-ps/trustedplatformmodule/Import-TpmOwnerAuth.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Tpm.Commands.dll-Help.xml Module Name: TrustedPlatformModule ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/trustedplatformmodule/import-tpmownerauth?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/trustedplatformmodule/import-tpmownerauth?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-TpmOwnerAuth --- diff --git a/docset/winserver2016-ps/trustedplatformmodule/Initialize-Tpm.md b/docset/winserver2016-ps/trustedplatformmodule/Initialize-Tpm.md index 09befa4992..6b6c637e15 100644 --- a/docset/winserver2016-ps/trustedplatformmodule/Initialize-Tpm.md +++ b/docset/winserver2016-ps/trustedplatformmodule/Initialize-Tpm.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Tpm.Commands.dll-Help.xml Module Name: TrustedPlatformModule ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/trustedplatformmodule/initialize-tpm?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/trustedplatformmodule/initialize-tpm?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Initialize-Tpm --- diff --git a/docset/winserver2016-ps/trustedplatformmodule/Set-TpmOwnerAuth.md b/docset/winserver2016-ps/trustedplatformmodule/Set-TpmOwnerAuth.md index d3e929f48d..3177c8a3c7 100644 --- a/docset/winserver2016-ps/trustedplatformmodule/Set-TpmOwnerAuth.md +++ b/docset/winserver2016-ps/trustedplatformmodule/Set-TpmOwnerAuth.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Tpm.Commands.dll-Help.xml Module Name: TrustedPlatformModule ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/trustedplatformmodule/set-tpmownerauth?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/trustedplatformmodule/set-tpmownerauth?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-TpmOwnerAuth --- diff --git a/docset/winserver2016-ps/trustedplatformmodule/Unblock-Tpm.md b/docset/winserver2016-ps/trustedplatformmodule/Unblock-Tpm.md index b9923c03d0..5e46ea59bc 100644 --- a/docset/winserver2016-ps/trustedplatformmodule/Unblock-Tpm.md +++ b/docset/winserver2016-ps/trustedplatformmodule/Unblock-Tpm.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Tpm.Commands.dll-Help.xml Module Name: TrustedPlatformModule ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/trustedplatformmodule/unblock-tpm?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/trustedplatformmodule/unblock-tpm?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unblock-Tpm --- diff --git a/docset/winserver2016-ps/uev/Clear-UevAppxPackage.md b/docset/winserver2016-ps/uev/Clear-UevAppxPackage.md index f0c2566ac5..859a3e89fd 100644 --- a/docset/winserver2016-ps/uev/Clear-UevAppxPackage.md +++ b/docset/winserver2016-ps/uev/Clear-UevAppxPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/clear-uevappxpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/clear-uevappxpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-UevAppxPackage --- diff --git a/docset/winserver2016-ps/uev/Clear-UevConfiguration.md b/docset/winserver2016-ps/uev/Clear-UevConfiguration.md index fa6aea890e..564406b37a 100644 --- a/docset/winserver2016-ps/uev/Clear-UevConfiguration.md +++ b/docset/winserver2016-ps/uev/Clear-UevConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/clear-uevconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/clear-uevconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-UevConfiguration --- diff --git a/docset/winserver2016-ps/uev/Disable-Uev.md b/docset/winserver2016-ps/uev/Disable-Uev.md index aaa3fca382..48c62f07d1 100644 --- a/docset/winserver2016-ps/uev/Disable-Uev.md +++ b/docset/winserver2016-ps/uev/Disable-Uev.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/disable-uev?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/disable-uev?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-Uev --- diff --git a/docset/winserver2016-ps/uev/Disable-UevAppxPackage.md b/docset/winserver2016-ps/uev/Disable-UevAppxPackage.md index f1ffde84a4..495e02b55d 100644 --- a/docset/winserver2016-ps/uev/Disable-UevAppxPackage.md +++ b/docset/winserver2016-ps/uev/Disable-UevAppxPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/disable-uevappxpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/disable-uevappxpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-UevAppxPackage --- diff --git a/docset/winserver2016-ps/uev/Disable-UevTemplate.md b/docset/winserver2016-ps/uev/Disable-UevTemplate.md index 582152b53a..4de0618bca 100644 --- a/docset/winserver2016-ps/uev/Disable-UevTemplate.md +++ b/docset/winserver2016-ps/uev/Disable-UevTemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/disable-uevtemplate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/disable-uevtemplate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-UevTemplate --- diff --git a/docset/winserver2016-ps/uev/Enable-Uev.md b/docset/winserver2016-ps/uev/Enable-Uev.md index 142dafcbf0..ffdb5230f0 100644 --- a/docset/winserver2016-ps/uev/Enable-Uev.md +++ b/docset/winserver2016-ps/uev/Enable-Uev.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/enable-uev?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/enable-uev?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-Uev --- diff --git a/docset/winserver2016-ps/uev/Enable-UevAppxPackage.md b/docset/winserver2016-ps/uev/Enable-UevAppxPackage.md index b40fce770b..117d155c3b 100644 --- a/docset/winserver2016-ps/uev/Enable-UevAppxPackage.md +++ b/docset/winserver2016-ps/uev/Enable-UevAppxPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/enable-uevappxpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/enable-uevappxpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-UevAppxPackage --- diff --git a/docset/winserver2016-ps/uev/Enable-UevTemplate.md b/docset/winserver2016-ps/uev/Enable-UevTemplate.md index 5186cff03d..cfa8258b9a 100644 --- a/docset/winserver2016-ps/uev/Enable-UevTemplate.md +++ b/docset/winserver2016-ps/uev/Enable-UevTemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/enable-uevtemplate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/enable-uevtemplate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-UevTemplate --- diff --git a/docset/winserver2016-ps/uev/Export-UevConfiguration.md b/docset/winserver2016-ps/uev/Export-UevConfiguration.md index a4f1133ad9..ee32c0bac1 100644 --- a/docset/winserver2016-ps/uev/Export-UevConfiguration.md +++ b/docset/winserver2016-ps/uev/Export-UevConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/export-uevconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/export-uevconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-UevConfiguration --- diff --git a/docset/winserver2016-ps/uev/Export-UevPackage.md b/docset/winserver2016-ps/uev/Export-UevPackage.md index ff0186a07a..d416c367fa 100644 --- a/docset/winserver2016-ps/uev/Export-UevPackage.md +++ b/docset/winserver2016-ps/uev/Export-UevPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/export-uevpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/export-uevpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-UevPackage --- diff --git a/docset/winserver2016-ps/uev/Get-UevAppxPackage.md b/docset/winserver2016-ps/uev/Get-UevAppxPackage.md index 11123cd458..ab25a7a8b4 100644 --- a/docset/winserver2016-ps/uev/Get-UevAppxPackage.md +++ b/docset/winserver2016-ps/uev/Get-UevAppxPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/get-uevappxpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/get-uevappxpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UevAppxPackage --- diff --git a/docset/winserver2016-ps/uev/Get-UevConfiguration.md b/docset/winserver2016-ps/uev/Get-UevConfiguration.md index e3e6581e0f..7e655de9b0 100644 --- a/docset/winserver2016-ps/uev/Get-UevConfiguration.md +++ b/docset/winserver2016-ps/uev/Get-UevConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/get-uevconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/get-uevconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UevConfiguration --- diff --git a/docset/winserver2016-ps/uev/Get-UevStatus.md b/docset/winserver2016-ps/uev/Get-UevStatus.md index d7e34110d0..962027d0aa 100644 --- a/docset/winserver2016-ps/uev/Get-UevStatus.md +++ b/docset/winserver2016-ps/uev/Get-UevStatus.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/get-uevstatus?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/get-uevstatus?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UevStatus --- diff --git a/docset/winserver2016-ps/uev/Get-UevTemplate.md b/docset/winserver2016-ps/uev/Get-UevTemplate.md index 86abfffa42..e05f4521d2 100644 --- a/docset/winserver2016-ps/uev/Get-UevTemplate.md +++ b/docset/winserver2016-ps/uev/Get-UevTemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/get-uevtemplate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/get-uevtemplate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UevTemplate --- diff --git a/docset/winserver2016-ps/uev/Get-UevTemplateProgram.md b/docset/winserver2016-ps/uev/Get-UevTemplateProgram.md index 8fcecb57bc..aa97f1427f 100644 --- a/docset/winserver2016-ps/uev/Get-UevTemplateProgram.md +++ b/docset/winserver2016-ps/uev/Get-UevTemplateProgram.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/get-uevtemplateprogram?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/get-uevtemplateprogram?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UevTemplateProgram --- diff --git a/docset/winserver2016-ps/uev/Import-UevConfiguration.md b/docset/winserver2016-ps/uev/Import-UevConfiguration.md index 42803e3f7a..1ae3c3077b 100644 --- a/docset/winserver2016-ps/uev/Import-UevConfiguration.md +++ b/docset/winserver2016-ps/uev/Import-UevConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/import-uevconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/import-uevconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-UevConfiguration --- diff --git a/docset/winserver2016-ps/uev/Register-UevTemplate.md b/docset/winserver2016-ps/uev/Register-UevTemplate.md index ad4d147f1b..cb4b70bc65 100644 --- a/docset/winserver2016-ps/uev/Register-UevTemplate.md +++ b/docset/winserver2016-ps/uev/Register-UevTemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/register-uevtemplate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/register-uevtemplate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Register-UevTemplate --- diff --git a/docset/winserver2016-ps/uev/Repair-UevTemplateIndex.md b/docset/winserver2016-ps/uev/Repair-UevTemplateIndex.md index 5c3d970021..c7036e416b 100644 --- a/docset/winserver2016-ps/uev/Repair-UevTemplateIndex.md +++ b/docset/winserver2016-ps/uev/Repair-UevTemplateIndex.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/repair-uevtemplateindex?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/repair-uevtemplateindex?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Repair-UevTemplateIndex --- diff --git a/docset/winserver2016-ps/uev/Restore-UevBackup.md b/docset/winserver2016-ps/uev/Restore-UevBackup.md index 6d57fa246e..a69119a3b9 100644 --- a/docset/winserver2016-ps/uev/Restore-UevBackup.md +++ b/docset/winserver2016-ps/uev/Restore-UevBackup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/restore-uevbackup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/restore-uevbackup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-UevBackup --- diff --git a/docset/winserver2016-ps/uev/Restore-UevUserSetting.md b/docset/winserver2016-ps/uev/Restore-UevUserSetting.md index 6e4d8b4add..ee2c8b072c 100644 --- a/docset/winserver2016-ps/uev/Restore-UevUserSetting.md +++ b/docset/winserver2016-ps/uev/Restore-UevUserSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/restore-uevusersetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/restore-uevusersetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-UevUserSetting --- diff --git a/docset/winserver2016-ps/uev/Set-UevConfiguration.md b/docset/winserver2016-ps/uev/Set-UevConfiguration.md index af168452af..030202f2f5 100644 --- a/docset/winserver2016-ps/uev/Set-UevConfiguration.md +++ b/docset/winserver2016-ps/uev/Set-UevConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/set-uevconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/set-uevconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-UevConfiguration --- diff --git a/docset/winserver2016-ps/uev/Set-UevTemplateProfile.md b/docset/winserver2016-ps/uev/Set-UevTemplateProfile.md index 105eff1832..266a7b9168 100644 --- a/docset/winserver2016-ps/uev/Set-UevTemplateProfile.md +++ b/docset/winserver2016-ps/uev/Set-UevTemplateProfile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/set-uevtemplateprofile?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/set-uevtemplateprofile?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-UevTemplateProfile --- diff --git a/docset/winserver2016-ps/uev/Test-UevTemplate.md b/docset/winserver2016-ps/uev/Test-UevTemplate.md index ee6b99f759..80e86bb16e 100644 --- a/docset/winserver2016-ps/uev/Test-UevTemplate.md +++ b/docset/winserver2016-ps/uev/Test-UevTemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/test-uevtemplate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/test-uevtemplate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-UevTemplate --- diff --git a/docset/winserver2016-ps/uev/Unregister-UevTemplate.md b/docset/winserver2016-ps/uev/Unregister-UevTemplate.md index d2cd18f43b..349632a4d9 100644 --- a/docset/winserver2016-ps/uev/Unregister-UevTemplate.md +++ b/docset/winserver2016-ps/uev/Unregister-UevTemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/unregister-uevtemplate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/unregister-uevtemplate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unregister-UevTemplate --- diff --git a/docset/winserver2016-ps/uev/Update-UevTemplate.md b/docset/winserver2016-ps/uev/Update-UevTemplate.md index e3f0c623e4..6d64cde7e8 100644 --- a/docset/winserver2016-ps/uev/Update-UevTemplate.md +++ b/docset/winserver2016-ps/uev/Update-UevTemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/update-uevtemplate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/update-uevtemplate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-UevTemplate --- diff --git a/docset/winserver2016-ps/updateservices/Add-WsusComputer.md b/docset/winserver2016-ps/updateservices/Add-WsusComputer.md index f4b1079d86..4eb637c709 100644 --- a/docset/winserver2016-ps/updateservices/Add-WsusComputer.md +++ b/docset/winserver2016-ps/updateservices/Add-WsusComputer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/updateservices/add-wsuscomputer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/add-wsuscomputer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WsusComputer --- diff --git a/docset/winserver2016-ps/updateservices/Add-WsusDynamicCategory.md b/docset/winserver2016-ps/updateservices/Add-WsusDynamicCategory.md index 3513974f98..cde62804d9 100644 --- a/docset/winserver2016-ps/updateservices/Add-WsusDynamicCategory.md +++ b/docset/winserver2016-ps/updateservices/Add-WsusDynamicCategory.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/updateservices/add-wsusdynamiccategory?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/add-wsusdynamiccategory?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WsusDynamicCategory --- diff --git a/docset/winserver2016-ps/updateservices/Approve-WsusUpdate.md b/docset/winserver2016-ps/updateservices/Approve-WsusUpdate.md index 9f9feb9cc3..387c0b5192 100644 --- a/docset/winserver2016-ps/updateservices/Approve-WsusUpdate.md +++ b/docset/winserver2016-ps/updateservices/Approve-WsusUpdate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/updateservices/approve-wsusupdate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/approve-wsusupdate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Approve-WsusUpdate --- diff --git a/docset/winserver2016-ps/updateservices/Deny-WsusUpdate.md b/docset/winserver2016-ps/updateservices/Deny-WsusUpdate.md index 951fb8a76a..1ddf730700 100644 --- a/docset/winserver2016-ps/updateservices/Deny-WsusUpdate.md +++ b/docset/winserver2016-ps/updateservices/Deny-WsusUpdate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/updateservices/deny-wsusupdate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/deny-wsusupdate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Deny-WsusUpdate --- diff --git a/docset/winserver2016-ps/updateservices/Get-WsusClassification.md b/docset/winserver2016-ps/updateservices/Get-WsusClassification.md index c49fb91493..d464692da5 100644 --- a/docset/winserver2016-ps/updateservices/Get-WsusClassification.md +++ b/docset/winserver2016-ps/updateservices/Get-WsusClassification.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/updateservices/get-wsusclassification?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/get-wsusclassification?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WsusClassification --- diff --git a/docset/winserver2016-ps/updateservices/Get-WsusComputer.md b/docset/winserver2016-ps/updateservices/Get-WsusComputer.md index a00e1ce28c..5b995aaae0 100644 --- a/docset/winserver2016-ps/updateservices/Get-WsusComputer.md +++ b/docset/winserver2016-ps/updateservices/Get-WsusComputer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/updateservices/get-wsuscomputer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/get-wsuscomputer?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WsusComputer --- diff --git a/docset/winserver2016-ps/updateservices/Get-WsusDynamicCategory.md b/docset/winserver2016-ps/updateservices/Get-WsusDynamicCategory.md index a1bcbb6640..ad1afdcfee 100644 --- a/docset/winserver2016-ps/updateservices/Get-WsusDynamicCategory.md +++ b/docset/winserver2016-ps/updateservices/Get-WsusDynamicCategory.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/updateservices/get-wsusdynamiccategory?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/get-wsusdynamiccategory?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WsusDynamicCategory --- diff --git a/docset/winserver2016-ps/updateservices/Get-WsusProduct.md b/docset/winserver2016-ps/updateservices/Get-WsusProduct.md index 75e1e12370..670c0f17d9 100644 --- a/docset/winserver2016-ps/updateservices/Get-WsusProduct.md +++ b/docset/winserver2016-ps/updateservices/Get-WsusProduct.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/updateservices/get-wsusproduct?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/get-wsusproduct?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WsusProduct --- diff --git a/docset/winserver2016-ps/updateservices/Get-WsusServer.md b/docset/winserver2016-ps/updateservices/Get-WsusServer.md index a12c2c0312..1d49aea58e 100644 --- a/docset/winserver2016-ps/updateservices/Get-WsusServer.md +++ b/docset/winserver2016-ps/updateservices/Get-WsusServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/updateservices/get-wsusserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/get-wsusserver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WsusServer --- diff --git a/docset/winserver2016-ps/updateservices/Get-WsusUpdate.md b/docset/winserver2016-ps/updateservices/Get-WsusUpdate.md index 4d63875b22..27d92c4baa 100644 --- a/docset/winserver2016-ps/updateservices/Get-WsusUpdate.md +++ b/docset/winserver2016-ps/updateservices/Get-WsusUpdate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/updateservices/get-wsusupdate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/get-wsusupdate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WsusUpdate --- diff --git a/docset/winserver2016-ps/updateservices/Invoke-WsusServerCleanup.md b/docset/winserver2016-ps/updateservices/Invoke-WsusServerCleanup.md index 1158da8088..4a97d052e5 100644 --- a/docset/winserver2016-ps/updateservices/Invoke-WsusServerCleanup.md +++ b/docset/winserver2016-ps/updateservices/Invoke-WsusServerCleanup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/updateservices/invoke-wsusservercleanup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/invoke-wsusservercleanup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-WsusServerCleanup --- diff --git a/docset/winserver2016-ps/updateservices/Remove-WsusDynamicCategory.md b/docset/winserver2016-ps/updateservices/Remove-WsusDynamicCategory.md index 7096bd9424..b274e3b1b2 100644 --- a/docset/winserver2016-ps/updateservices/Remove-WsusDynamicCategory.md +++ b/docset/winserver2016-ps/updateservices/Remove-WsusDynamicCategory.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/updateservices/remove-wsusdynamiccategory?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/remove-wsusdynamiccategory?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WsusDynamicCategory --- diff --git a/docset/winserver2016-ps/updateservices/Set-WsusClassification.md b/docset/winserver2016-ps/updateservices/Set-WsusClassification.md index f17894ee7c..d435717a35 100644 --- a/docset/winserver2016-ps/updateservices/Set-WsusClassification.md +++ b/docset/winserver2016-ps/updateservices/Set-WsusClassification.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/updateservices/set-wsusclassification?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/set-wsusclassification?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WsusClassification --- diff --git a/docset/winserver2016-ps/updateservices/Set-WsusDynamicCategory.md b/docset/winserver2016-ps/updateservices/Set-WsusDynamicCategory.md index beaf73245b..a5293fb602 100644 --- a/docset/winserver2016-ps/updateservices/Set-WsusDynamicCategory.md +++ b/docset/winserver2016-ps/updateservices/Set-WsusDynamicCategory.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/updateservices/set-wsusdynamiccategory?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/set-wsusdynamiccategory?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WsusDynamicCategory --- diff --git a/docset/winserver2016-ps/updateservices/Set-WsusProduct.md b/docset/winserver2016-ps/updateservices/Set-WsusProduct.md index 5d571b7431..0594f2759c 100644 --- a/docset/winserver2016-ps/updateservices/Set-WsusProduct.md +++ b/docset/winserver2016-ps/updateservices/Set-WsusProduct.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/updateservices/set-wsusproduct?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/set-wsusproduct?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WsusProduct --- diff --git a/docset/winserver2016-ps/updateservices/Set-WsusServerSynchronization.md b/docset/winserver2016-ps/updateservices/Set-WsusServerSynchronization.md index ec0bc633dd..7d6a49c00d 100644 --- a/docset/winserver2016-ps/updateservices/Set-WsusServerSynchronization.md +++ b/docset/winserver2016-ps/updateservices/Set-WsusServerSynchronization.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/updateservices/set-wsusserversynchronization?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/set-wsusserversynchronization?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WsusServerSynchronization --- diff --git a/docset/winserver2016-ps/useraccesslogging/Disable-Ual.md b/docset/winserver2016-ps/useraccesslogging/Disable-Ual.md index bb7f720680..46ee234641 100644 --- a/docset/winserver2016-ps/useraccesslogging/Disable-Ual.md +++ b/docset/winserver2016-ps/useraccesslogging/Disable-Ual.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftUal_Admin.cdxml-help.xml Module Name: UserAccessLogging ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/disable-ual?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/disable-ual?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-Ual --- diff --git a/docset/winserver2016-ps/useraccesslogging/Enable-Ual.md b/docset/winserver2016-ps/useraccesslogging/Enable-Ual.md index eaa722de73..6829bcf6ec 100644 --- a/docset/winserver2016-ps/useraccesslogging/Enable-Ual.md +++ b/docset/winserver2016-ps/useraccesslogging/Enable-Ual.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftUal_Admin.cdxml-help.xml Module Name: UserAccessLogging ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/enable-ual?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/enable-ual?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-Ual --- diff --git a/docset/winserver2016-ps/useraccesslogging/Get-Ual.md b/docset/winserver2016-ps/useraccesslogging/Get-Ual.md index 54a45c29a9..9c29aaccf2 100644 --- a/docset/winserver2016-ps/useraccesslogging/Get-Ual.md +++ b/docset/winserver2016-ps/useraccesslogging/Get-Ual.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftUal_Admin.cdxml-help.xml Module Name: UserAccessLogging ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ual?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ual?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-Ual --- diff --git a/docset/winserver2016-ps/useraccesslogging/Get-UalDailyAccess.md b/docset/winserver2016-ps/useraccesslogging/Get-UalDailyAccess.md index ab79f0a83c..427490bb0e 100644 --- a/docset/winserver2016-ps/useraccesslogging/Get-UalDailyAccess.md +++ b/docset/winserver2016-ps/useraccesslogging/Get-UalDailyAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftUal_DailyAccess.cdxml-help.xml Module Name: UserAccessLogging ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ualdailyaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ualdailyaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UalDailyAccess --- diff --git a/docset/winserver2016-ps/useraccesslogging/Get-UalDailyDeviceAccess.md b/docset/winserver2016-ps/useraccesslogging/Get-UalDailyDeviceAccess.md index d11d5c5d0a..fd5abd97fc 100644 --- a/docset/winserver2016-ps/useraccesslogging/Get-UalDailyDeviceAccess.md +++ b/docset/winserver2016-ps/useraccesslogging/Get-UalDailyDeviceAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftUal_DailyDeviceAccess.cdxml-help.xml Module Name: UserAccessLogging ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ualdailydeviceaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ualdailydeviceaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UalDailyDeviceAccess --- diff --git a/docset/winserver2016-ps/useraccesslogging/Get-UalDailyUserAccess.md b/docset/winserver2016-ps/useraccesslogging/Get-UalDailyUserAccess.md index 79d4b024ba..ebac2d104d 100644 --- a/docset/winserver2016-ps/useraccesslogging/Get-UalDailyUserAccess.md +++ b/docset/winserver2016-ps/useraccesslogging/Get-UalDailyUserAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftUal_DailyUserAccess.cdxml-help.xml Module Name: UserAccessLogging ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ualdailyuseraccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ualdailyuseraccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UalDailyUserAccess --- diff --git a/docset/winserver2016-ps/useraccesslogging/Get-UalDeviceAccess.md b/docset/winserver2016-ps/useraccesslogging/Get-UalDeviceAccess.md index ff2d5771b7..4faeb7cce8 100644 --- a/docset/winserver2016-ps/useraccesslogging/Get-UalDeviceAccess.md +++ b/docset/winserver2016-ps/useraccesslogging/Get-UalDeviceAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftUal_DeviceAccess.cdxml-help.xml Module Name: UserAccessLogging ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ualdeviceaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ualdeviceaccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UalDeviceAccess --- diff --git a/docset/winserver2016-ps/useraccesslogging/Get-UalDns.md b/docset/winserver2016-ps/useraccesslogging/Get-UalDns.md index e22d3ebb51..3ae2f95dc8 100644 --- a/docset/winserver2016-ps/useraccesslogging/Get-UalDns.md +++ b/docset/winserver2016-ps/useraccesslogging/Get-UalDns.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftUal_Dns.cdxml-help.xml Module Name: UserAccessLogging ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ualdns?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ualdns?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UalDns --- diff --git a/docset/winserver2016-ps/useraccesslogging/Get-UalHyperV.md b/docset/winserver2016-ps/useraccesslogging/Get-UalHyperV.md index 938ff4a156..9fdc7ae39a 100644 --- a/docset/winserver2016-ps/useraccesslogging/Get-UalHyperV.md +++ b/docset/winserver2016-ps/useraccesslogging/Get-UalHyperV.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftUal_HyperV.cdxml-help.xml Module Name: UserAccessLogging ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ualhyperv?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ualhyperv?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UalHyperV --- diff --git a/docset/winserver2016-ps/useraccesslogging/Get-UalOverview.md b/docset/winserver2016-ps/useraccesslogging/Get-UalOverview.md index 4685decf0b..1ce0f429e5 100644 --- a/docset/winserver2016-ps/useraccesslogging/Get-UalOverview.md +++ b/docset/winserver2016-ps/useraccesslogging/Get-UalOverview.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftUal_Overview.cdxml-help.xml Module Name: UserAccessLogging ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ualoverview?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ualoverview?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UalOverview --- diff --git a/docset/winserver2016-ps/useraccesslogging/Get-UalServerDevice.md b/docset/winserver2016-ps/useraccesslogging/Get-UalServerDevice.md index 860f50dc73..869c954460 100644 --- a/docset/winserver2016-ps/useraccesslogging/Get-UalServerDevice.md +++ b/docset/winserver2016-ps/useraccesslogging/Get-UalServerDevice.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftUal_ServerDevice.cdxml-help.xml Module Name: UserAccessLogging ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ualserverdevice?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ualserverdevice?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UalServerDevice --- diff --git a/docset/winserver2016-ps/useraccesslogging/Get-UalServerUser.md b/docset/winserver2016-ps/useraccesslogging/Get-UalServerUser.md index 2adf2c876a..3aad702846 100644 --- a/docset/winserver2016-ps/useraccesslogging/Get-UalServerUser.md +++ b/docset/winserver2016-ps/useraccesslogging/Get-UalServerUser.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftUal_ServerUser.cdxml-help.xml Module Name: UserAccessLogging ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ualserveruser?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ualserveruser?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UalServerUser --- diff --git a/docset/winserver2016-ps/useraccesslogging/Get-UalSystemId.md b/docset/winserver2016-ps/useraccesslogging/Get-UalSystemId.md index b6f43a61c6..4265df5e34 100644 --- a/docset/winserver2016-ps/useraccesslogging/Get-UalSystemId.md +++ b/docset/winserver2016-ps/useraccesslogging/Get-UalSystemId.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftUal_SystemId.cdxml-help.xml Module Name: UserAccessLogging ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ualsystemid?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ualsystemid?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UalSystemId --- diff --git a/docset/winserver2016-ps/useraccesslogging/Get-UalUserAccess.md b/docset/winserver2016-ps/useraccesslogging/Get-UalUserAccess.md index 2280141c9c..2d81476ee8 100644 --- a/docset/winserver2016-ps/useraccesslogging/Get-UalUserAccess.md +++ b/docset/winserver2016-ps/useraccesslogging/Get-UalUserAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftUal_UserAccess.cdxml-help.xml Module Name: UserAccessLogging ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ualuseraccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ualuseraccess?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UalUserAccess --- diff --git a/docset/winserver2016-ps/vamt/Add-VamtProductKey.md b/docset/winserver2016-ps/vamt/Add-VamtProductKey.md index c96fd2e030..ec5e52233f 100644 --- a/docset/winserver2016-ps/vamt/Add-VamtProductKey.md +++ b/docset/winserver2016-ps/vamt/Add-VamtProductKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Licensing.VolumeActivation.Powershell.dll-Help.xml Module Name: VAMT ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vamt/add-vamtproductkey?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vamt/add-vamtproductkey?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VamtProductKey --- diff --git a/docset/winserver2016-ps/vamt/Export-VamtData.md b/docset/winserver2016-ps/vamt/Export-VamtData.md index c7340fe09c..7307335a42 100644 --- a/docset/winserver2016-ps/vamt/Export-VamtData.md +++ b/docset/winserver2016-ps/vamt/Export-VamtData.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Licensing.VolumeActivation.Powershell.dll-Help.xml Module Name: VAMT ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vamt/export-vamtdata?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vamt/export-vamtdata?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-VamtData --- diff --git a/docset/winserver2016-ps/vamt/Find-VamtManagedMachine.md b/docset/winserver2016-ps/vamt/Find-VamtManagedMachine.md index 31003c55b8..4bc3f6bbc1 100644 --- a/docset/winserver2016-ps/vamt/Find-VamtManagedMachine.md +++ b/docset/winserver2016-ps/vamt/Find-VamtManagedMachine.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Licensing.VolumeActivation.Powershell.dll-Help.xml Module Name: VAMT ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vamt/find-vamtmanagedmachine?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vamt/find-vamtmanagedmachine?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Find-VamtManagedMachine --- diff --git a/docset/winserver2016-ps/vamt/Get-VamtConfirmationId.md b/docset/winserver2016-ps/vamt/Get-VamtConfirmationId.md index 678cb68173..16ae841ac7 100644 --- a/docset/winserver2016-ps/vamt/Get-VamtConfirmationId.md +++ b/docset/winserver2016-ps/vamt/Get-VamtConfirmationId.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Licensing.VolumeActivation.Powershell.dll-Help.xml Module Name: VAMT ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vamt/get-vamtconfirmationid?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vamt/get-vamtconfirmationid?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VamtConfirmationId --- diff --git a/docset/winserver2016-ps/vamt/Get-VamtProduct.md b/docset/winserver2016-ps/vamt/Get-VamtProduct.md index ccf2ab5db5..67a727f20f 100644 --- a/docset/winserver2016-ps/vamt/Get-VamtProduct.md +++ b/docset/winserver2016-ps/vamt/Get-VamtProduct.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Licensing.VolumeActivation.Powershell.dll-Help.xml Module Name: VAMT ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vamt/get-vamtproduct?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vamt/get-vamtproduct?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VamtProduct --- diff --git a/docset/winserver2016-ps/vamt/Get-VamtProductKey.md b/docset/winserver2016-ps/vamt/Get-VamtProductKey.md index 9df4825dba..986dc6490e 100644 --- a/docset/winserver2016-ps/vamt/Get-VamtProductKey.md +++ b/docset/winserver2016-ps/vamt/Get-VamtProductKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Licensing.VolumeActivation.Powershell.dll-Help.xml Module Name: VAMT ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vamt/get-vamtproductkey?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vamt/get-vamtproductkey?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VamtProductKey --- diff --git a/docset/winserver2016-ps/vamt/Import-VamtData.md b/docset/winserver2016-ps/vamt/Import-VamtData.md index 19c3dece29..24c6c1876a 100644 --- a/docset/winserver2016-ps/vamt/Import-VamtData.md +++ b/docset/winserver2016-ps/vamt/Import-VamtData.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Licensing.VolumeActivation.Powershell.dll-Help.xml Module Name: VAMT ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vamt/import-vamtdata?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vamt/import-vamtdata?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-VamtData --- diff --git a/docset/winserver2016-ps/vamt/Initialize-VamtData.md b/docset/winserver2016-ps/vamt/Initialize-VamtData.md index b2955f5cd9..2e9816f803 100644 --- a/docset/winserver2016-ps/vamt/Initialize-VamtData.md +++ b/docset/winserver2016-ps/vamt/Initialize-VamtData.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Licensing.VolumeActivation.Powershell.dll-Help.xml Module Name: VAMT ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vamt/initialize-vamtdata?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vamt/initialize-vamtdata?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Initialize-VamtData --- diff --git a/docset/winserver2016-ps/vamt/Install-VamtConfirmationId.md b/docset/winserver2016-ps/vamt/Install-VamtConfirmationId.md index 89bfbf9566..8db7976e14 100644 --- a/docset/winserver2016-ps/vamt/Install-VamtConfirmationId.md +++ b/docset/winserver2016-ps/vamt/Install-VamtConfirmationId.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Licensing.VolumeActivation.Powershell.dll-Help.xml Module Name: VAMT ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vamt/install-vamtconfirmationid?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vamt/install-vamtconfirmationid?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-VamtConfirmationId --- diff --git a/docset/winserver2016-ps/vamt/Install-VamtProductActivation.md b/docset/winserver2016-ps/vamt/Install-VamtProductActivation.md index 0e75eb4266..c4a5ff7761 100644 --- a/docset/winserver2016-ps/vamt/Install-VamtProductActivation.md +++ b/docset/winserver2016-ps/vamt/Install-VamtProductActivation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Licensing.VolumeActivation.Powershell.dll-Help.xml Module Name: VAMT ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vamt/install-vamtproductactivation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vamt/install-vamtproductactivation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-VamtProductActivation --- diff --git a/docset/winserver2016-ps/vamt/Install-VamtProductKey.md b/docset/winserver2016-ps/vamt/Install-VamtProductKey.md index ab8f06dc5e..c9da809928 100644 --- a/docset/winserver2016-ps/vamt/Install-VamtProductKey.md +++ b/docset/winserver2016-ps/vamt/Install-VamtProductKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Licensing.VolumeActivation.Powershell.dll-Help.xml Module Name: VAMT ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vamt/install-vamtproductkey?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vamt/install-vamtproductkey?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-VamtProductKey --- diff --git a/docset/winserver2016-ps/vamt/Update-VamtProduct.md b/docset/winserver2016-ps/vamt/Update-VamtProduct.md index 4a6017b399..ea193b43b7 100644 --- a/docset/winserver2016-ps/vamt/Update-VamtProduct.md +++ b/docset/winserver2016-ps/vamt/Update-VamtProduct.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Licensing.VolumeActivation.Powershell.dll-Help.xml Module Name: VAMT ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vamt/update-vamtproduct?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vamt/update-vamtproduct?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-VamtProduct --- diff --git a/docset/winserver2016-ps/vpnclient/Add-VpnConnection.md b/docset/winserver2016-ps/vpnclient/Add-VpnConnection.md index 7a06c97401..53d7f76d5e 100644 --- a/docset/winserver2016-ps/vpnclient/Add-VpnConnection.md +++ b/docset/winserver2016-ps/vpnclient/Add-VpnConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnConnection_v1.0.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/add-vpnconnection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/add-vpnconnection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VpnConnection --- diff --git a/docset/winserver2016-ps/vpnclient/Add-VpnConnectionRoute.md b/docset/winserver2016-ps/vpnclient/Add-VpnConnectionRoute.md index 8b59a7ee45..fa30a9348c 100644 --- a/docset/winserver2016-ps/vpnclient/Add-VpnConnectionRoute.md +++ b/docset/winserver2016-ps/vpnclient/Add-VpnConnectionRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnConnectionRoute_v1.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/add-vpnconnectionroute?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/add-vpnconnectionroute?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VpnConnectionRoute --- diff --git a/docset/winserver2016-ps/vpnclient/Add-VpnConnectionTriggerApplication.md b/docset/winserver2016-ps/vpnclient/Add-VpnConnectionTriggerApplication.md index 7913a9987b..1132829495 100644 --- a/docset/winserver2016-ps/vpnclient/Add-VpnConnectionTriggerApplication.md +++ b/docset/winserver2016-ps/vpnclient/Add-VpnConnectionTriggerApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnConnectionTriggerApplication_v1.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/add-vpnconnectiontriggerapplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/add-vpnconnectiontriggerapplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VpnConnectionTriggerApplication --- diff --git a/docset/winserver2016-ps/vpnclient/Add-VpnConnectionTriggerDnsConfiguration.md b/docset/winserver2016-ps/vpnclient/Add-VpnConnectionTriggerDnsConfiguration.md index 75116b9286..085827649c 100644 --- a/docset/winserver2016-ps/vpnclient/Add-VpnConnectionTriggerDnsConfiguration.md +++ b/docset/winserver2016-ps/vpnclient/Add-VpnConnectionTriggerDnsConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnConnectionTriggerDnsConfiguration_v1.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/add-vpnconnectiontriggerdnsconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/add-vpnconnectiontriggerdnsconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VpnConnectionTriggerDnsConfiguration --- diff --git a/docset/winserver2016-ps/vpnclient/Add-VpnConnectionTriggerTrustedNetwork.md b/docset/winserver2016-ps/vpnclient/Add-VpnConnectionTriggerTrustedNetwork.md index c0bdfe391d..ad6baaaedc 100644 --- a/docset/winserver2016-ps/vpnclient/Add-VpnConnectionTriggerTrustedNetwork.md +++ b/docset/winserver2016-ps/vpnclient/Add-VpnConnectionTriggerTrustedNetwork.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnConnectionTriggerTrustedNetwork_v1.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/add-vpnconnectiontriggertrustednetwork?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/add-vpnconnectiontriggertrustednetwork?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VpnConnectionTriggerTrustedNetwork --- diff --git a/docset/winserver2016-ps/vpnclient/Get-VpnConnection.md b/docset/winserver2016-ps/vpnclient/Get-VpnConnection.md index 5da08d5481..1358880f4e 100644 --- a/docset/winserver2016-ps/vpnclient/Get-VpnConnection.md +++ b/docset/winserver2016-ps/vpnclient/Get-VpnConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnConnection_v1.0.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/get-vpnconnection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/get-vpnconnection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VpnConnection --- diff --git a/docset/winserver2016-ps/vpnclient/Get-VpnConnectionTrigger.md b/docset/winserver2016-ps/vpnclient/Get-VpnConnectionTrigger.md index 8cf1ac2bb6..cb60f39b23 100644 --- a/docset/winserver2016-ps/vpnclient/Get-VpnConnectionTrigger.md +++ b/docset/winserver2016-ps/vpnclient/Get-VpnConnectionTrigger.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnConnectionTrigger_v1.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/get-vpnconnectiontrigger?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/get-vpnconnectiontrigger?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VpnConnectionTrigger --- diff --git a/docset/winserver2016-ps/vpnclient/New-EapConfiguration.md b/docset/winserver2016-ps/vpnclient/New-EapConfiguration.md index 136f33138e..ba83eff832 100644 --- a/docset/winserver2016-ps/vpnclient/New-EapConfiguration.md +++ b/docset/winserver2016-ps/vpnclient/New-EapConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_EapConfiguration_v1.0.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/new-eapconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/new-eapconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-EapConfiguration --- diff --git a/docset/winserver2016-ps/vpnclient/New-VpnServerAddress.md b/docset/winserver2016-ps/vpnclient/New-VpnServerAddress.md index 8c53678ab4..fc07c55db8 100644 --- a/docset/winserver2016-ps/vpnclient/New-VpnServerAddress.md +++ b/docset/winserver2016-ps/vpnclient/New-VpnServerAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnServerAddress_v1.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/new-vpnserveraddress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/new-vpnserveraddress?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VpnServerAddress --- diff --git a/docset/winserver2016-ps/vpnclient/Remove-VpnConnection.md b/docset/winserver2016-ps/vpnclient/Remove-VpnConnection.md index 421a95bb01..85d2fae330 100644 --- a/docset/winserver2016-ps/vpnclient/Remove-VpnConnection.md +++ b/docset/winserver2016-ps/vpnclient/Remove-VpnConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnConnection_v1.0.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/remove-vpnconnection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/remove-vpnconnection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VpnConnection --- diff --git a/docset/winserver2016-ps/vpnclient/Remove-VpnConnectionRoute.md b/docset/winserver2016-ps/vpnclient/Remove-VpnConnectionRoute.md index 188166617f..5da607d669 100644 --- a/docset/winserver2016-ps/vpnclient/Remove-VpnConnectionRoute.md +++ b/docset/winserver2016-ps/vpnclient/Remove-VpnConnectionRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnConnectionRoute_v1.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/remove-vpnconnectionroute?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/remove-vpnconnectionroute?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VpnConnectionRoute --- diff --git a/docset/winserver2016-ps/vpnclient/Remove-VpnConnectionTriggerApplication.md b/docset/winserver2016-ps/vpnclient/Remove-VpnConnectionTriggerApplication.md index c67bc04a4e..8a8293429d 100644 --- a/docset/winserver2016-ps/vpnclient/Remove-VpnConnectionTriggerApplication.md +++ b/docset/winserver2016-ps/vpnclient/Remove-VpnConnectionTriggerApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnConnectionTriggerApplication_v1.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/remove-vpnconnectiontriggerapplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/remove-vpnconnectiontriggerapplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VpnConnectionTriggerApplication --- diff --git a/docset/winserver2016-ps/vpnclient/Remove-VpnConnectionTriggerDnsConfiguration.md b/docset/winserver2016-ps/vpnclient/Remove-VpnConnectionTriggerDnsConfiguration.md index a815a5b914..230d56d1fc 100644 --- a/docset/winserver2016-ps/vpnclient/Remove-VpnConnectionTriggerDnsConfiguration.md +++ b/docset/winserver2016-ps/vpnclient/Remove-VpnConnectionTriggerDnsConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnConnectionTriggerDnsConfiguration_v1.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/remove-vpnconnectiontriggerdnsconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/remove-vpnconnectiontriggerdnsconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VpnConnectionTriggerDnsConfiguration --- diff --git a/docset/winserver2016-ps/vpnclient/Remove-VpnConnectionTriggerTrustedNetwork.md b/docset/winserver2016-ps/vpnclient/Remove-VpnConnectionTriggerTrustedNetwork.md index 829b8dba99..f66e51f51d 100644 --- a/docset/winserver2016-ps/vpnclient/Remove-VpnConnectionTriggerTrustedNetwork.md +++ b/docset/winserver2016-ps/vpnclient/Remove-VpnConnectionTriggerTrustedNetwork.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnConnectionTriggerTrustedNetwork_v1.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/remove-vpnconnectiontriggertrustednetwork?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/remove-vpnconnectiontriggertrustednetwork?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VpnConnectionTriggerTrustedNetwork --- diff --git a/docset/winserver2016-ps/vpnclient/Set-VpnConnection.md b/docset/winserver2016-ps/vpnclient/Set-VpnConnection.md index 661bb79915..5433aa2f94 100644 --- a/docset/winserver2016-ps/vpnclient/Set-VpnConnection.md +++ b/docset/winserver2016-ps/vpnclient/Set-VpnConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnConnection_v1.0.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/set-vpnconnection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/set-vpnconnection?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VpnConnection --- diff --git a/docset/winserver2016-ps/vpnclient/Set-VpnConnectionIPsecConfiguration.md b/docset/winserver2016-ps/vpnclient/Set-VpnConnectionIPsecConfiguration.md index 8732bd0f44..57c5b8d6de 100644 --- a/docset/winserver2016-ps/vpnclient/Set-VpnConnectionIPsecConfiguration.md +++ b/docset/winserver2016-ps/vpnclient/Set-VpnConnectionIPsecConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnConnectionIPsecConfiguration_v1.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/set-vpnconnectionipsecconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/set-vpnconnectionipsecconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VpnConnectionIPsecConfiguration --- diff --git a/docset/winserver2016-ps/vpnclient/Set-VpnConnectionProxy.md b/docset/winserver2016-ps/vpnclient/Set-VpnConnectionProxy.md index 2bf2701abf..c9bcba4a84 100644 --- a/docset/winserver2016-ps/vpnclient/Set-VpnConnectionProxy.md +++ b/docset/winserver2016-ps/vpnclient/Set-VpnConnectionProxy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnConnectionProxy_v1.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/set-vpnconnectionproxy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/set-vpnconnectionproxy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VpnConnectionProxy --- diff --git a/docset/winserver2016-ps/vpnclient/Set-VpnConnectionTriggerDnsConfiguration.md b/docset/winserver2016-ps/vpnclient/Set-VpnConnectionTriggerDnsConfiguration.md index 26a7bbf52a..a66aba92ef 100644 --- a/docset/winserver2016-ps/vpnclient/Set-VpnConnectionTriggerDnsConfiguration.md +++ b/docset/winserver2016-ps/vpnclient/Set-VpnConnectionTriggerDnsConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnConnectionTriggerDnsConfiguration_v1.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/set-vpnconnectiontriggerdnsconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/set-vpnconnectiontriggerdnsconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VpnConnectionTriggerDnsConfiguration --- diff --git a/docset/winserver2016-ps/vpnclient/Set-VpnConnectionTriggerTrustedNetwork.md b/docset/winserver2016-ps/vpnclient/Set-VpnConnectionTriggerTrustedNetwork.md index 746a90cab7..2324dc4cc1 100644 --- a/docset/winserver2016-ps/vpnclient/Set-VpnConnectionTriggerTrustedNetwork.md +++ b/docset/winserver2016-ps/vpnclient/Set-VpnConnectionTriggerTrustedNetwork.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnConnectionTriggerTrustedNetwork_v1.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/set-vpnconnectiontriggertrustednetwork?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/set-vpnconnectiontriggertrustednetwork?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VpnConnectionTriggerTrustedNetwork --- diff --git a/docset/winserver2016-ps/wdac/Add-OdbcDsn.md b/docset/winserver2016-ps/wdac/Add-OdbcDsn.md index 55384be20a..4e644cf79a 100644 --- a/docset/winserver2016-ps/wdac/Add-OdbcDsn.md +++ b/docset/winserver2016-ps/wdac/Add-OdbcDsn.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_OdbcDsnTask_v1.0.cdxml-help.xml Module Name: Wdac ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/wdac/add-odbcdsn?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/add-odbcdsn?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-OdbcDsn --- diff --git a/docset/winserver2016-ps/wdac/Disable-OdbcPerfCounter.md b/docset/winserver2016-ps/wdac/Disable-OdbcPerfCounter.md index df4b7cacf4..210c5058bf 100644 --- a/docset/winserver2016-ps/wdac/Disable-OdbcPerfCounter.md +++ b/docset/winserver2016-ps/wdac/Disable-OdbcPerfCounter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_OdbcPerfCounterTask_v1.0.cdxml-help.xml Module Name: Wdac ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/wdac/disable-odbcperfcounter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/disable-odbcperfcounter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-OdbcPerfCounter --- diff --git a/docset/winserver2016-ps/wdac/Disable-WdacBidTrace.md b/docset/winserver2016-ps/wdac/Disable-WdacBidTrace.md index 91e8dc1208..170200123f 100644 --- a/docset/winserver2016-ps/wdac/Disable-WdacBidTrace.md +++ b/docset/winserver2016-ps/wdac/Disable-WdacBidTrace.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdacBidTraceTask_v1.0.cdxml-help.xml Module Name: Wdac ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/wdac/disable-wdacbidtrace?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/disable-wdacbidtrace?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WdacBidTrace --- diff --git a/docset/winserver2016-ps/wdac/Enable-OdbcPerfCounter.md b/docset/winserver2016-ps/wdac/Enable-OdbcPerfCounter.md index ba0890a74c..cf374b055d 100644 --- a/docset/winserver2016-ps/wdac/Enable-OdbcPerfCounter.md +++ b/docset/winserver2016-ps/wdac/Enable-OdbcPerfCounter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_OdbcPerfCounterTask_v1.0.cdxml-help.xml Module Name: Wdac ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/wdac/enable-odbcperfcounter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/enable-odbcperfcounter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-OdbcPerfCounter --- diff --git a/docset/winserver2016-ps/wdac/Enable-WdacBidTrace.md b/docset/winserver2016-ps/wdac/Enable-WdacBidTrace.md index 004059d87e..44594fa47b 100644 --- a/docset/winserver2016-ps/wdac/Enable-WdacBidTrace.md +++ b/docset/winserver2016-ps/wdac/Enable-WdacBidTrace.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdacBidTraceTask_v1.0.cdxml-help.xml Module Name: Wdac ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/wdac/enable-wdacbidtrace?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/enable-wdacbidtrace?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WdacBidTrace --- diff --git a/docset/winserver2016-ps/wdac/Get-OdbcDriver.md b/docset/winserver2016-ps/wdac/Get-OdbcDriver.md index 79881a2ca3..e1335fbc68 100644 --- a/docset/winserver2016-ps/wdac/Get-OdbcDriver.md +++ b/docset/winserver2016-ps/wdac/Get-OdbcDriver.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_OdbcDriverTask_v1.0.cdxml-help.xml Module Name: Wdac ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/wdac/get-odbcdriver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/get-odbcdriver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-OdbcDriver --- diff --git a/docset/winserver2016-ps/wdac/Get-OdbcDsn.md b/docset/winserver2016-ps/wdac/Get-OdbcDsn.md index 7d698657b5..f331070fdf 100644 --- a/docset/winserver2016-ps/wdac/Get-OdbcDsn.md +++ b/docset/winserver2016-ps/wdac/Get-OdbcDsn.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_OdbcDsnTask_v1.0.cdxml-help.xml Module Name: Wdac ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/wdac/get-odbcdsn?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/get-odbcdsn?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-OdbcDsn --- diff --git a/docset/winserver2016-ps/wdac/Get-OdbcPerfCounter.md b/docset/winserver2016-ps/wdac/Get-OdbcPerfCounter.md index 21b7271e8c..d6d0c13dba 100644 --- a/docset/winserver2016-ps/wdac/Get-OdbcPerfCounter.md +++ b/docset/winserver2016-ps/wdac/Get-OdbcPerfCounter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_OdbcPerfCounterTask_v1.0.cdxml-help.xml Module Name: Wdac ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/wdac/get-odbcperfcounter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/get-odbcperfcounter?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-OdbcPerfCounter --- diff --git a/docset/winserver2016-ps/wdac/Get-WdacBidTrace.md b/docset/winserver2016-ps/wdac/Get-WdacBidTrace.md index 221b62686f..50e63c4bda 100644 --- a/docset/winserver2016-ps/wdac/Get-WdacBidTrace.md +++ b/docset/winserver2016-ps/wdac/Get-WdacBidTrace.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdacBidTraceTask_v1.0.cdxml-help.xml Module Name: Wdac ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/wdac/get-wdacbidtrace?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/get-wdacbidtrace?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WdacBidTrace --- diff --git a/docset/winserver2016-ps/wdac/Remove-OdbcDsn.md b/docset/winserver2016-ps/wdac/Remove-OdbcDsn.md index f717de83d7..431745e743 100644 --- a/docset/winserver2016-ps/wdac/Remove-OdbcDsn.md +++ b/docset/winserver2016-ps/wdac/Remove-OdbcDsn.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_OdbcDsnTask_v1.0.cdxml-help.xml Module Name: Wdac ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/wdac/remove-odbcdsn?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/remove-odbcdsn?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-OdbcDsn --- diff --git a/docset/winserver2016-ps/wdac/Set-OdbcDriver.md b/docset/winserver2016-ps/wdac/Set-OdbcDriver.md index fe43e45a6f..d5b4bce2b3 100644 --- a/docset/winserver2016-ps/wdac/Set-OdbcDriver.md +++ b/docset/winserver2016-ps/wdac/Set-OdbcDriver.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_OdbcDriverTask_v1.0.cdxml-help.xml Module Name: Wdac ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/wdac/set-odbcdriver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/set-odbcdriver?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-OdbcDriver --- diff --git a/docset/winserver2016-ps/wdac/Set-OdbcDsn.md b/docset/winserver2016-ps/wdac/Set-OdbcDsn.md index 5788fd3c68..3ba11cb55e 100644 --- a/docset/winserver2016-ps/wdac/Set-OdbcDsn.md +++ b/docset/winserver2016-ps/wdac/Set-OdbcDsn.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_OdbcDsnTask_v1.0.cdxml-help.xml Module Name: Wdac ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/wdac/set-odbcdsn?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/set-odbcdsn?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-OdbcDsn --- diff --git a/docset/winserver2016-ps/wds/Add-WdsDriverPackage.md b/docset/winserver2016-ps/wds/Add-WdsDriverPackage.md index 509929d067..6929b5f458 100644 --- a/docset/winserver2016-ps/wds/Add-WdsDriverPackage.md +++ b/docset/winserver2016-ps/wds/Add-WdsDriverPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsDriverPackage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/add-wdsdriverpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/add-wdsdriverpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WdsDriverPackage --- diff --git a/docset/winserver2016-ps/wds/Approve-WdsClient.md b/docset/winserver2016-ps/wds/Approve-WdsClient.md index f394b669a2..633faec70a 100644 --- a/docset/winserver2016-ps/wds/Approve-WdsClient.md +++ b/docset/winserver2016-ps/wds/Approve-WdsClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsClient_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/approve-wdsclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/approve-wdsclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Approve-WdsClient --- diff --git a/docset/winserver2016-ps/wds/Copy-WdsInstallImage.md b/docset/winserver2016-ps/wds/Copy-WdsInstallImage.md index 2c8988a86f..fc43b5ca92 100644 --- a/docset/winserver2016-ps/wds/Copy-WdsInstallImage.md +++ b/docset/winserver2016-ps/wds/Copy-WdsInstallImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsInstallImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/copy-wdsinstallimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/copy-wdsinstallimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Copy-WdsInstallImage --- diff --git a/docset/winserver2016-ps/wds/Deny-WdsClient.md b/docset/winserver2016-ps/wds/Deny-WdsClient.md index 759ec24bcd..08b313f778 100644 --- a/docset/winserver2016-ps/wds/Deny-WdsClient.md +++ b/docset/winserver2016-ps/wds/Deny-WdsClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsClient_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/deny-wdsclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/deny-wdsclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Deny-WdsClient --- diff --git a/docset/winserver2016-ps/wds/Disable-WdsBootImage.md b/docset/winserver2016-ps/wds/Disable-WdsBootImage.md index 162debfb41..3ab2947dee 100644 --- a/docset/winserver2016-ps/wds/Disable-WdsBootImage.md +++ b/docset/winserver2016-ps/wds/Disable-WdsBootImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsBootImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/disable-wdsbootimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/disable-wdsbootimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WdsBootImage --- diff --git a/docset/winserver2016-ps/wds/Disable-WdsDriverPackage.md b/docset/winserver2016-ps/wds/Disable-WdsDriverPackage.md index 9b9fd45793..1d0fefbed3 100644 --- a/docset/winserver2016-ps/wds/Disable-WdsDriverPackage.md +++ b/docset/winserver2016-ps/wds/Disable-WdsDriverPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsDriverPackage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/disable-wdsdriverpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/disable-wdsdriverpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WdsDriverPackage --- diff --git a/docset/winserver2016-ps/wds/Disable-WdsInstallImage.md b/docset/winserver2016-ps/wds/Disable-WdsInstallImage.md index 5bb75ae1fc..5baddcdd1f 100644 --- a/docset/winserver2016-ps/wds/Disable-WdsInstallImage.md +++ b/docset/winserver2016-ps/wds/Disable-WdsInstallImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsInstallImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/disable-wdsinstallimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/disable-wdsinstallimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WdsInstallImage --- diff --git a/docset/winserver2016-ps/wds/Disconnect-WdsMulticastClient.md b/docset/winserver2016-ps/wds/Disconnect-WdsMulticastClient.md index 16e859279c..1f478078bc 100644 --- a/docset/winserver2016-ps/wds/Disconnect-WdsMulticastClient.md +++ b/docset/winserver2016-ps/wds/Disconnect-WdsMulticastClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsMulticastClient_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/disconnect-wdsmulticastclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/disconnect-wdsmulticastclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disconnect-WdsMulticastClient --- diff --git a/docset/winserver2016-ps/wds/Enable-WdsBootImage.md b/docset/winserver2016-ps/wds/Enable-WdsBootImage.md index 4ad7d7e585..eabb994d26 100644 --- a/docset/winserver2016-ps/wds/Enable-WdsBootImage.md +++ b/docset/winserver2016-ps/wds/Enable-WdsBootImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsBootImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/enable-wdsbootimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/enable-wdsbootimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WdsBootImage --- diff --git a/docset/winserver2016-ps/wds/Enable-WdsDriverPackage.md b/docset/winserver2016-ps/wds/Enable-WdsDriverPackage.md index c1ff087be5..c4f1426109 100644 --- a/docset/winserver2016-ps/wds/Enable-WdsDriverPackage.md +++ b/docset/winserver2016-ps/wds/Enable-WdsDriverPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsDriverPackage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/enable-wdsdriverpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/enable-wdsdriverpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WdsDriverPackage --- diff --git a/docset/winserver2016-ps/wds/Enable-WdsInstallImage.md b/docset/winserver2016-ps/wds/Enable-WdsInstallImage.md index 55bc232c56..e8770d90b5 100644 --- a/docset/winserver2016-ps/wds/Enable-WdsInstallImage.md +++ b/docset/winserver2016-ps/wds/Enable-WdsInstallImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsInstallImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/enable-wdsinstallimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/enable-wdsinstallimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WdsInstallImage --- diff --git a/docset/winserver2016-ps/wds/Export-WdsBootImage.md b/docset/winserver2016-ps/wds/Export-WdsBootImage.md index 99b8c8f7d3..b41863eae1 100644 --- a/docset/winserver2016-ps/wds/Export-WdsBootImage.md +++ b/docset/winserver2016-ps/wds/Export-WdsBootImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsBootImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/export-wdsbootimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/export-wdsbootimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-WdsBootImage --- diff --git a/docset/winserver2016-ps/wds/Export-WdsInstallImage.md b/docset/winserver2016-ps/wds/Export-WdsInstallImage.md index 3129aa8a26..495708c0d5 100644 --- a/docset/winserver2016-ps/wds/Export-WdsInstallImage.md +++ b/docset/winserver2016-ps/wds/Export-WdsInstallImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsInstallImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/export-wdsinstallimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/export-wdsinstallimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-WdsInstallImage --- diff --git a/docset/winserver2016-ps/wds/Get-WdsBootImage.md b/docset/winserver2016-ps/wds/Get-WdsBootImage.md index 4e18dee8d1..287b5c7fa4 100644 --- a/docset/winserver2016-ps/wds/Get-WdsBootImage.md +++ b/docset/winserver2016-ps/wds/Get-WdsBootImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsBootImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/get-wdsbootimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/get-wdsbootimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WdsBootImage --- diff --git a/docset/winserver2016-ps/wds/Get-WdsClient.md b/docset/winserver2016-ps/wds/Get-WdsClient.md index c995278476..79df54bb50 100644 --- a/docset/winserver2016-ps/wds/Get-WdsClient.md +++ b/docset/winserver2016-ps/wds/Get-WdsClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsClient_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/get-wdsclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/get-wdsclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WdsClient --- diff --git a/docset/winserver2016-ps/wds/Get-WdsDriverPackage.md b/docset/winserver2016-ps/wds/Get-WdsDriverPackage.md index 5f893ccbbb..c13f2d3797 100644 --- a/docset/winserver2016-ps/wds/Get-WdsDriverPackage.md +++ b/docset/winserver2016-ps/wds/Get-WdsDriverPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsDriverPackage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/get-wdsdriverpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/get-wdsdriverpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WdsDriverPackage --- diff --git a/docset/winserver2016-ps/wds/Get-WdsInstallImage.md b/docset/winserver2016-ps/wds/Get-WdsInstallImage.md index 702189e9fe..1af09837c0 100644 --- a/docset/winserver2016-ps/wds/Get-WdsInstallImage.md +++ b/docset/winserver2016-ps/wds/Get-WdsInstallImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsInstallImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/get-wdsinstallimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/get-wdsinstallimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WdsInstallImage --- diff --git a/docset/winserver2016-ps/wds/Get-WdsInstallImageGroup.md b/docset/winserver2016-ps/wds/Get-WdsInstallImageGroup.md index 2818435a1e..0ccd61499a 100644 --- a/docset/winserver2016-ps/wds/Get-WdsInstallImageGroup.md +++ b/docset/winserver2016-ps/wds/Get-WdsInstallImageGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsInstallImageGroup_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/get-wdsinstallimagegroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/get-wdsinstallimagegroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WdsInstallImageGroup --- diff --git a/docset/winserver2016-ps/wds/Get-WdsMulticastClient.md b/docset/winserver2016-ps/wds/Get-WdsMulticastClient.md index 6e9da3db23..53a324ed2c 100644 --- a/docset/winserver2016-ps/wds/Get-WdsMulticastClient.md +++ b/docset/winserver2016-ps/wds/Get-WdsMulticastClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsMulticastClient_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/get-wdsmulticastclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/get-wdsmulticastclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WdsMulticastClient --- diff --git a/docset/winserver2016-ps/wds/Import-WdsBootImage.md b/docset/winserver2016-ps/wds/Import-WdsBootImage.md index 9d61759311..422e7176b6 100644 --- a/docset/winserver2016-ps/wds/Import-WdsBootImage.md +++ b/docset/winserver2016-ps/wds/Import-WdsBootImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsBootImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/import-wdsbootimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/import-wdsbootimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-WdsBootImage --- diff --git a/docset/winserver2016-ps/wds/Import-WdsDriverPackage.md b/docset/winserver2016-ps/wds/Import-WdsDriverPackage.md index 3d930808e5..18f1112c1e 100644 --- a/docset/winserver2016-ps/wds/Import-WdsDriverPackage.md +++ b/docset/winserver2016-ps/wds/Import-WdsDriverPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsDriverPackage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/import-wdsdriverpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/import-wdsdriverpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-WdsDriverPackage --- diff --git a/docset/winserver2016-ps/wds/Import-WdsInstallImage.md b/docset/winserver2016-ps/wds/Import-WdsInstallImage.md index b0f3f5fa9d..605e5a6b25 100644 --- a/docset/winserver2016-ps/wds/Import-WdsInstallImage.md +++ b/docset/winserver2016-ps/wds/Import-WdsInstallImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsInstallImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/import-wdsinstallimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/import-wdsinstallimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-WdsInstallImage --- diff --git a/docset/winserver2016-ps/wds/New-WdsClient.md b/docset/winserver2016-ps/wds/New-WdsClient.md index e919c67ff5..e34d682329 100644 --- a/docset/winserver2016-ps/wds/New-WdsClient.md +++ b/docset/winserver2016-ps/wds/New-WdsClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsClient_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/new-wdsclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/new-wdsclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WdsClient --- diff --git a/docset/winserver2016-ps/wds/New-WdsInstallImageGroup.md b/docset/winserver2016-ps/wds/New-WdsInstallImageGroup.md index 5edc08a953..505d576b06 100644 --- a/docset/winserver2016-ps/wds/New-WdsInstallImageGroup.md +++ b/docset/winserver2016-ps/wds/New-WdsInstallImageGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsInstallImageGroup_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/new-wdsinstallimagegroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/new-wdsinstallimagegroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WdsInstallImageGroup --- diff --git a/docset/winserver2016-ps/wds/Remove-WdsBootImage.md b/docset/winserver2016-ps/wds/Remove-WdsBootImage.md index 6875a12e15..fcaf6f5f24 100644 --- a/docset/winserver2016-ps/wds/Remove-WdsBootImage.md +++ b/docset/winserver2016-ps/wds/Remove-WdsBootImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsBootImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/remove-wdsbootimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/remove-wdsbootimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WdsBootImage --- diff --git a/docset/winserver2016-ps/wds/Remove-WdsClient.md b/docset/winserver2016-ps/wds/Remove-WdsClient.md index 252a7f1d80..7eae273a1c 100644 --- a/docset/winserver2016-ps/wds/Remove-WdsClient.md +++ b/docset/winserver2016-ps/wds/Remove-WdsClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsClient_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/remove-wdsclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/remove-wdsclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WdsClient --- diff --git a/docset/winserver2016-ps/wds/Remove-WdsDriverPackage.md b/docset/winserver2016-ps/wds/Remove-WdsDriverPackage.md index 7430a4293a..9a28149d3a 100644 --- a/docset/winserver2016-ps/wds/Remove-WdsDriverPackage.md +++ b/docset/winserver2016-ps/wds/Remove-WdsDriverPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsDriverPackage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/remove-wdsdriverpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/remove-wdsdriverpackage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WdsDriverPackage --- diff --git a/docset/winserver2016-ps/wds/Remove-WdsInstallImage.md b/docset/winserver2016-ps/wds/Remove-WdsInstallImage.md index 136728c700..57b0261825 100644 --- a/docset/winserver2016-ps/wds/Remove-WdsInstallImage.md +++ b/docset/winserver2016-ps/wds/Remove-WdsInstallImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsInstallImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/remove-wdsinstallimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/remove-wdsinstallimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WdsInstallImage --- diff --git a/docset/winserver2016-ps/wds/Remove-WdsInstallImageGroup.md b/docset/winserver2016-ps/wds/Remove-WdsInstallImageGroup.md index 06d2328875..3eb0f2b4fc 100644 --- a/docset/winserver2016-ps/wds/Remove-WdsInstallImageGroup.md +++ b/docset/winserver2016-ps/wds/Remove-WdsInstallImageGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsInstallImageGroup_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/remove-wdsinstallimagegroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/remove-wdsinstallimagegroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WdsInstallImageGroup --- diff --git a/docset/winserver2016-ps/wds/Set-WdsBootImage.md b/docset/winserver2016-ps/wds/Set-WdsBootImage.md index cd7f07ad40..074a6b0e61 100644 --- a/docset/winserver2016-ps/wds/Set-WdsBootImage.md +++ b/docset/winserver2016-ps/wds/Set-WdsBootImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsBootImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/set-wdsbootimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/set-wdsbootimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WdsBootImage --- diff --git a/docset/winserver2016-ps/wds/Set-WdsClient.md b/docset/winserver2016-ps/wds/Set-WdsClient.md index 0b4ba7625a..fa010337b5 100644 --- a/docset/winserver2016-ps/wds/Set-WdsClient.md +++ b/docset/winserver2016-ps/wds/Set-WdsClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsClient_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/set-wdsclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/set-wdsclient?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WdsClient --- diff --git a/docset/winserver2016-ps/wds/Set-WdsInstallImage.md b/docset/winserver2016-ps/wds/Set-WdsInstallImage.md index 3744af076e..fd10e7500d 100644 --- a/docset/winserver2016-ps/wds/Set-WdsInstallImage.md +++ b/docset/winserver2016-ps/wds/Set-WdsInstallImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsInstallImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/set-wdsinstallimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/set-wdsinstallimage?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WdsInstallImage --- diff --git a/docset/winserver2016-ps/wds/Set-WdsInstallImageGroup.md b/docset/winserver2016-ps/wds/Set-WdsInstallImageGroup.md index fc9d85863e..6c8043c9ad 100644 --- a/docset/winserver2016-ps/wds/Set-WdsInstallImageGroup.md +++ b/docset/winserver2016-ps/wds/Set-WdsInstallImageGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsInstallImageGroup_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/set-wdsinstallimagegroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/set-wdsinstallimagegroup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WdsInstallImageGroup --- diff --git a/docset/winserver2016-ps/webadministration/Add-WebConfiguration.md b/docset/winserver2016-ps/webadministration/Add-WebConfiguration.md index ab9950aa03..2218d453d2 100644 --- a/docset/winserver2016-ps/webadministration/Add-WebConfiguration.md +++ b/docset/winserver2016-ps/webadministration/Add-WebConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/add-webconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/add-webconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WebConfiguration --- diff --git a/docset/winserver2016-ps/webadministration/Add-WebConfigurationLock.md b/docset/winserver2016-ps/webadministration/Add-WebConfigurationLock.md index 6004fba184..89bd28bba7 100644 --- a/docset/winserver2016-ps/webadministration/Add-WebConfigurationLock.md +++ b/docset/winserver2016-ps/webadministration/Add-WebConfigurationLock.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/add-webconfigurationlock?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/add-webconfigurationlock?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WebConfigurationLock --- diff --git a/docset/winserver2016-ps/webadministration/Add-WebConfigurationProperty.md b/docset/winserver2016-ps/webadministration/Add-WebConfigurationProperty.md index d56ecf741d..05314e1080 100644 --- a/docset/winserver2016-ps/webadministration/Add-WebConfigurationProperty.md +++ b/docset/winserver2016-ps/webadministration/Add-WebConfigurationProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/add-webconfigurationproperty?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/add-webconfigurationproperty?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WebConfigurationProperty --- diff --git a/docset/winserver2016-ps/webadministration/Backup-WebConfiguration.md b/docset/winserver2016-ps/webadministration/Backup-WebConfiguration.md index e44df066c0..82078b2966 100644 --- a/docset/winserver2016-ps/webadministration/Backup-WebConfiguration.md +++ b/docset/winserver2016-ps/webadministration/Backup-WebConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/backup-webconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/backup-webconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Backup-WebConfiguration --- diff --git a/docset/winserver2016-ps/webadministration/Clear-WebCentralCertProvider.md b/docset/winserver2016-ps/webadministration/Clear-WebCentralCertProvider.md index 560f0dc432..63f4e3d3af 100644 --- a/docset/winserver2016-ps/webadministration/Clear-WebCentralCertProvider.md +++ b/docset/winserver2016-ps/webadministration/Clear-WebCentralCertProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/clear-webcentralcertprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/clear-webcentralcertprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-WebCentralCertProvider --- diff --git a/docset/winserver2016-ps/webadministration/Clear-WebConfiguration.md b/docset/winserver2016-ps/webadministration/Clear-WebConfiguration.md index 517d9a29d0..e22a5b3f35 100644 --- a/docset/winserver2016-ps/webadministration/Clear-WebConfiguration.md +++ b/docset/winserver2016-ps/webadministration/Clear-WebConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/clear-webconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/clear-webconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-WebConfiguration --- diff --git a/docset/winserver2016-ps/webadministration/Clear-WebRequestTracingSetting.md b/docset/winserver2016-ps/webadministration/Clear-WebRequestTracingSetting.md index 5ad8890e25..7c7835e87e 100644 --- a/docset/winserver2016-ps/webadministration/Clear-WebRequestTracingSetting.md +++ b/docset/winserver2016-ps/webadministration/Clear-WebRequestTracingSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/clear-webrequesttracingsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/clear-webrequesttracingsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-WebRequestTracingSetting --- diff --git a/docset/winserver2016-ps/webadministration/Clear-WebRequestTracingSettings.md b/docset/winserver2016-ps/webadministration/Clear-WebRequestTracingSettings.md index 28e66b4377..c23ad44e6a 100644 --- a/docset/winserver2016-ps/webadministration/Clear-WebRequestTracingSettings.md +++ b/docset/winserver2016-ps/webadministration/Clear-WebRequestTracingSettings.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/clear-webrequesttracingsettings?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/clear-webrequesttracingsettings?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-WebRequestTracingSettings --- diff --git a/docset/winserver2016-ps/webadministration/ConvertTo-WebApplication.md b/docset/winserver2016-ps/webadministration/ConvertTo-WebApplication.md index d773b8a906..cbeea050d5 100644 --- a/docset/winserver2016-ps/webadministration/ConvertTo-WebApplication.md +++ b/docset/winserver2016-ps/webadministration/ConvertTo-WebApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/convertto-webapplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/convertto-webapplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: ConvertTo-WebApplication --- diff --git a/docset/winserver2016-ps/webadministration/Disable-WebCentralCertProvider.md b/docset/winserver2016-ps/webadministration/Disable-WebCentralCertProvider.md index aa6fdee48c..749a6e50c2 100644 --- a/docset/winserver2016-ps/webadministration/Disable-WebCentralCertProvider.md +++ b/docset/winserver2016-ps/webadministration/Disable-WebCentralCertProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/disable-webcentralcertprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/disable-webcentralcertprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WebCentralCertProvider --- diff --git a/docset/winserver2016-ps/webadministration/Disable-WebGlobalModule.md b/docset/winserver2016-ps/webadministration/Disable-WebGlobalModule.md index 190f42e630..b5e7013c8a 100644 --- a/docset/winserver2016-ps/webadministration/Disable-WebGlobalModule.md +++ b/docset/winserver2016-ps/webadministration/Disable-WebGlobalModule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/disable-webglobalmodule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/disable-webglobalmodule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WebGlobalModule --- diff --git a/docset/winserver2016-ps/webadministration/Disable-WebRequestTracing.md b/docset/winserver2016-ps/webadministration/Disable-WebRequestTracing.md index 0ee838d8d2..9aa93639ae 100644 --- a/docset/winserver2016-ps/webadministration/Disable-WebRequestTracing.md +++ b/docset/winserver2016-ps/webadministration/Disable-WebRequestTracing.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/disable-webrequesttracing?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/disable-webrequesttracing?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WebRequestTracing --- diff --git a/docset/winserver2016-ps/webadministration/Enable-WebCentralCertProvider.md b/docset/winserver2016-ps/webadministration/Enable-WebCentralCertProvider.md index df823442a9..4785645ad1 100644 --- a/docset/winserver2016-ps/webadministration/Enable-WebCentralCertProvider.md +++ b/docset/winserver2016-ps/webadministration/Enable-WebCentralCertProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/enable-webcentralcertprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/enable-webcentralcertprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WebCentralCertProvider --- diff --git a/docset/winserver2016-ps/webadministration/Enable-WebGlobalModule.md b/docset/winserver2016-ps/webadministration/Enable-WebGlobalModule.md index 72c95c3cdd..b458272dbb 100644 --- a/docset/winserver2016-ps/webadministration/Enable-WebGlobalModule.md +++ b/docset/winserver2016-ps/webadministration/Enable-WebGlobalModule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/enable-webglobalmodule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/enable-webglobalmodule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WebGlobalModule --- diff --git a/docset/winserver2016-ps/webadministration/Enable-WebRequestTracing.md b/docset/winserver2016-ps/webadministration/Enable-WebRequestTracing.md index fa52079b92..65c4486d7e 100644 --- a/docset/winserver2016-ps/webadministration/Enable-WebRequestTracing.md +++ b/docset/winserver2016-ps/webadministration/Enable-WebRequestTracing.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/enable-webrequesttracing?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/enable-webrequesttracing?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WebRequestTracing --- diff --git a/docset/winserver2016-ps/webadministration/Get-WebAppDomain.md b/docset/winserver2016-ps/webadministration/Get-WebAppDomain.md index 0c84ae664d..91131b80c6 100644 --- a/docset/winserver2016-ps/webadministration/Get-WebAppDomain.md +++ b/docset/winserver2016-ps/webadministration/Get-WebAppDomain.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webappdomain?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webappdomain?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebAppDomain --- diff --git a/docset/winserver2016-ps/webadministration/Get-WebAppPoolState.md b/docset/winserver2016-ps/webadministration/Get-WebAppPoolState.md index 271b1a2202..6158c8828f 100644 --- a/docset/winserver2016-ps/webadministration/Get-WebAppPoolState.md +++ b/docset/winserver2016-ps/webadministration/Get-WebAppPoolState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webapppoolstate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webapppoolstate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebAppPoolState --- diff --git a/docset/winserver2016-ps/webadministration/Get-WebApplication.md b/docset/winserver2016-ps/webadministration/Get-WebApplication.md index dd820c23ac..e583cf8073 100644 --- a/docset/winserver2016-ps/webadministration/Get-WebApplication.md +++ b/docset/winserver2016-ps/webadministration/Get-WebApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webapplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webapplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebApplication --- diff --git a/docset/winserver2016-ps/webadministration/Get-WebBinding.md b/docset/winserver2016-ps/webadministration/Get-WebBinding.md index 62b0b64a22..51640cdcda 100644 --- a/docset/winserver2016-ps/webadministration/Get-WebBinding.md +++ b/docset/winserver2016-ps/webadministration/Get-WebBinding.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webbinding?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webbinding?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebBinding --- diff --git a/docset/winserver2016-ps/webadministration/Get-WebCentralCertProvider.md b/docset/winserver2016-ps/webadministration/Get-WebCentralCertProvider.md index 7a75bd82ee..edd4d35882 100644 --- a/docset/winserver2016-ps/webadministration/Get-WebCentralCertProvider.md +++ b/docset/winserver2016-ps/webadministration/Get-WebCentralCertProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webcentralcertprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webcentralcertprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebCentralCertProvider --- diff --git a/docset/winserver2016-ps/webadministration/Get-WebConfigFile.md b/docset/winserver2016-ps/webadministration/Get-WebConfigFile.md index 236ffb6fd4..e9ac428854 100644 --- a/docset/winserver2016-ps/webadministration/Get-WebConfigFile.md +++ b/docset/winserver2016-ps/webadministration/Get-WebConfigFile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webconfigfile?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webconfigfile?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebConfigFile --- diff --git a/docset/winserver2016-ps/webadministration/Get-WebConfiguration.md b/docset/winserver2016-ps/webadministration/Get-WebConfiguration.md index eb7eb4da65..3fdaf350dc 100644 --- a/docset/winserver2016-ps/webadministration/Get-WebConfiguration.md +++ b/docset/winserver2016-ps/webadministration/Get-WebConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebConfiguration --- diff --git a/docset/winserver2016-ps/webadministration/Get-WebConfigurationBackup.md b/docset/winserver2016-ps/webadministration/Get-WebConfigurationBackup.md index 4484eb3852..4b9e42e190 100644 --- a/docset/winserver2016-ps/webadministration/Get-WebConfigurationBackup.md +++ b/docset/winserver2016-ps/webadministration/Get-WebConfigurationBackup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webconfigurationbackup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webconfigurationbackup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebConfigurationBackup --- diff --git a/docset/winserver2016-ps/webadministration/Get-WebConfigurationLocation.md b/docset/winserver2016-ps/webadministration/Get-WebConfigurationLocation.md index 31b5ac0c7e..cad48d0aa1 100644 --- a/docset/winserver2016-ps/webadministration/Get-WebConfigurationLocation.md +++ b/docset/winserver2016-ps/webadministration/Get-WebConfigurationLocation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webconfigurationlocation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webconfigurationlocation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebConfigurationLocation --- diff --git a/docset/winserver2016-ps/webadministration/Get-WebConfigurationLock.md b/docset/winserver2016-ps/webadministration/Get-WebConfigurationLock.md index 45665ef95e..dc4300bebf 100644 --- a/docset/winserver2016-ps/webadministration/Get-WebConfigurationLock.md +++ b/docset/winserver2016-ps/webadministration/Get-WebConfigurationLock.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webconfigurationlock?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webconfigurationlock?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebConfigurationLock --- diff --git a/docset/winserver2016-ps/webadministration/Get-WebConfigurationProperty.md b/docset/winserver2016-ps/webadministration/Get-WebConfigurationProperty.md index 213b09d015..7291cc7790 100644 --- a/docset/winserver2016-ps/webadministration/Get-WebConfigurationProperty.md +++ b/docset/winserver2016-ps/webadministration/Get-WebConfigurationProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webconfigurationproperty?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webconfigurationproperty?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebConfigurationProperty --- diff --git a/docset/winserver2016-ps/webadministration/Get-WebFilePath.md b/docset/winserver2016-ps/webadministration/Get-WebFilePath.md index 29b4cbff27..243a3aa4dd 100644 --- a/docset/winserver2016-ps/webadministration/Get-WebFilePath.md +++ b/docset/winserver2016-ps/webadministration/Get-WebFilePath.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webfilepath?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webfilepath?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebFilePath --- diff --git a/docset/winserver2016-ps/webadministration/Get-WebGlobalModule.md b/docset/winserver2016-ps/webadministration/Get-WebGlobalModule.md index 75ec22ca3b..a6e00d42bc 100644 --- a/docset/winserver2016-ps/webadministration/Get-WebGlobalModule.md +++ b/docset/winserver2016-ps/webadministration/Get-WebGlobalModule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webglobalmodule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webglobalmodule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebGlobalModule --- diff --git a/docset/winserver2016-ps/webadministration/Get-WebHandler.md b/docset/winserver2016-ps/webadministration/Get-WebHandler.md index 9f0df00788..e5017f5121 100644 --- a/docset/winserver2016-ps/webadministration/Get-WebHandler.md +++ b/docset/winserver2016-ps/webadministration/Get-WebHandler.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webhandler?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webhandler?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebHandler --- diff --git a/docset/winserver2016-ps/webadministration/Get-WebItemState.md b/docset/winserver2016-ps/webadministration/Get-WebItemState.md index 799622b1dc..ed7be2a544 100644 --- a/docset/winserver2016-ps/webadministration/Get-WebItemState.md +++ b/docset/winserver2016-ps/webadministration/Get-WebItemState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webitemstate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webitemstate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebItemState --- diff --git a/docset/winserver2016-ps/webadministration/Get-WebManagedModule.md b/docset/winserver2016-ps/webadministration/Get-WebManagedModule.md index 13ec4f66cc..012f57eed2 100644 --- a/docset/winserver2016-ps/webadministration/Get-WebManagedModule.md +++ b/docset/winserver2016-ps/webadministration/Get-WebManagedModule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webmanagedmodule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webmanagedmodule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebManagedModule --- diff --git a/docset/winserver2016-ps/webadministration/Get-WebRequest.md b/docset/winserver2016-ps/webadministration/Get-WebRequest.md index 452ed470af..260712a455 100644 --- a/docset/winserver2016-ps/webadministration/Get-WebRequest.md +++ b/docset/winserver2016-ps/webadministration/Get-WebRequest.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webrequest?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webrequest?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebRequest --- diff --git a/docset/winserver2016-ps/webadministration/Get-WebURL.md b/docset/winserver2016-ps/webadministration/Get-WebURL.md index 96459833a4..74b6169c10 100644 --- a/docset/winserver2016-ps/webadministration/Get-WebURL.md +++ b/docset/winserver2016-ps/webadministration/Get-WebURL.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-weburl?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-weburl?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebURL --- diff --git a/docset/winserver2016-ps/webadministration/Get-WebVirtualDirectory.md b/docset/winserver2016-ps/webadministration/Get-WebVirtualDirectory.md index b5215e11d8..79093a7b96 100644 --- a/docset/winserver2016-ps/webadministration/Get-WebVirtualDirectory.md +++ b/docset/winserver2016-ps/webadministration/Get-WebVirtualDirectory.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webvirtualdirectory?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webvirtualdirectory?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebVirtualDirectory --- diff --git a/docset/winserver2016-ps/webadministration/Get-Website.md b/docset/winserver2016-ps/webadministration/Get-Website.md index e250fabec9..4e2733c4e8 100644 --- a/docset/winserver2016-ps/webadministration/Get-Website.md +++ b/docset/winserver2016-ps/webadministration/Get-Website.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-website?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-website?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-Website --- diff --git a/docset/winserver2016-ps/webadministration/Get-WebsiteState.md b/docset/winserver2016-ps/webadministration/Get-WebsiteState.md index 0ff5667d2e..cecd0e6305 100644 --- a/docset/winserver2016-ps/webadministration/Get-WebsiteState.md +++ b/docset/winserver2016-ps/webadministration/Get-WebsiteState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-websitestate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-websitestate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebsiteState --- diff --git a/docset/winserver2016-ps/webadministration/New-WebAppPool.md b/docset/winserver2016-ps/webadministration/New-WebAppPool.md index 399f42bc94..820969b883 100644 --- a/docset/winserver2016-ps/webadministration/New-WebAppPool.md +++ b/docset/winserver2016-ps/webadministration/New-WebAppPool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/new-webapppool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/new-webapppool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WebAppPool --- diff --git a/docset/winserver2016-ps/webadministration/New-WebApplication.md b/docset/winserver2016-ps/webadministration/New-WebApplication.md index b773d68a17..c4f241d43c 100644 --- a/docset/winserver2016-ps/webadministration/New-WebApplication.md +++ b/docset/winserver2016-ps/webadministration/New-WebApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/new-webapplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/new-webapplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WebApplication --- diff --git a/docset/winserver2016-ps/webadministration/New-WebBinding.md b/docset/winserver2016-ps/webadministration/New-WebBinding.md index 57ef5e7a9c..32662768f3 100644 --- a/docset/winserver2016-ps/webadministration/New-WebBinding.md +++ b/docset/winserver2016-ps/webadministration/New-WebBinding.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/new-webbinding?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/new-webbinding?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WebBinding --- diff --git a/docset/winserver2016-ps/webadministration/New-WebFtpSite.md b/docset/winserver2016-ps/webadministration/New-WebFtpSite.md index 56a0e06b54..3e8e1f2fcb 100644 --- a/docset/winserver2016-ps/webadministration/New-WebFtpSite.md +++ b/docset/winserver2016-ps/webadministration/New-WebFtpSite.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/new-webftpsite?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/new-webftpsite?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WebFtpSite --- diff --git a/docset/winserver2016-ps/webadministration/New-WebGlobalModule.md b/docset/winserver2016-ps/webadministration/New-WebGlobalModule.md index 8bcaa91a58..80c6b4a11e 100644 --- a/docset/winserver2016-ps/webadministration/New-WebGlobalModule.md +++ b/docset/winserver2016-ps/webadministration/New-WebGlobalModule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/new-webglobalmodule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/new-webglobalmodule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WebGlobalModule --- diff --git a/docset/winserver2016-ps/webadministration/New-WebHandler.md b/docset/winserver2016-ps/webadministration/New-WebHandler.md index a72d234b83..39c76704aa 100644 --- a/docset/winserver2016-ps/webadministration/New-WebHandler.md +++ b/docset/winserver2016-ps/webadministration/New-WebHandler.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/new-webhandler?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/new-webhandler?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WebHandler --- diff --git a/docset/winserver2016-ps/webadministration/New-WebManagedModule.md b/docset/winserver2016-ps/webadministration/New-WebManagedModule.md index 8c76e4401a..8e61a51aec 100644 --- a/docset/winserver2016-ps/webadministration/New-WebManagedModule.md +++ b/docset/winserver2016-ps/webadministration/New-WebManagedModule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/new-webmanagedmodule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/new-webmanagedmodule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WebManagedModule --- diff --git a/docset/winserver2016-ps/webadministration/New-WebVirtualDirectory.md b/docset/winserver2016-ps/webadministration/New-WebVirtualDirectory.md index a8226eb0f3..590729d73a 100644 --- a/docset/winserver2016-ps/webadministration/New-WebVirtualDirectory.md +++ b/docset/winserver2016-ps/webadministration/New-WebVirtualDirectory.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/new-webvirtualdirectory?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/new-webvirtualdirectory?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WebVirtualDirectory --- diff --git a/docset/winserver2016-ps/webadministration/New-Website.md b/docset/winserver2016-ps/webadministration/New-Website.md index e507f21072..1ee17c1e64 100644 --- a/docset/winserver2016-ps/webadministration/New-Website.md +++ b/docset/winserver2016-ps/webadministration/New-Website.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/new-website?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/new-website?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-Website --- diff --git a/docset/winserver2016-ps/webadministration/Remove-WebAppPool.md b/docset/winserver2016-ps/webadministration/Remove-WebAppPool.md index 9eeb65e77e..0de594502c 100644 --- a/docset/winserver2016-ps/webadministration/Remove-WebAppPool.md +++ b/docset/winserver2016-ps/webadministration/Remove-WebAppPool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-webapppool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-webapppool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WebAppPool --- diff --git a/docset/winserver2016-ps/webadministration/Remove-WebApplication.md b/docset/winserver2016-ps/webadministration/Remove-WebApplication.md index 171201ec8d..183afbf02f 100644 --- a/docset/winserver2016-ps/webadministration/Remove-WebApplication.md +++ b/docset/winserver2016-ps/webadministration/Remove-WebApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-webapplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-webapplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WebApplication --- diff --git a/docset/winserver2016-ps/webadministration/Remove-WebBinding.md b/docset/winserver2016-ps/webadministration/Remove-WebBinding.md index d86e3d9d73..9c06eb5786 100644 --- a/docset/winserver2016-ps/webadministration/Remove-WebBinding.md +++ b/docset/winserver2016-ps/webadministration/Remove-WebBinding.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-webbinding?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-webbinding?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WebBinding --- diff --git a/docset/winserver2016-ps/webadministration/Remove-WebConfigurationBackup.md b/docset/winserver2016-ps/webadministration/Remove-WebConfigurationBackup.md index 48616f2de8..9469a86963 100644 --- a/docset/winserver2016-ps/webadministration/Remove-WebConfigurationBackup.md +++ b/docset/winserver2016-ps/webadministration/Remove-WebConfigurationBackup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-webconfigurationbackup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-webconfigurationbackup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WebConfigurationBackup --- diff --git a/docset/winserver2016-ps/webadministration/Remove-WebConfigurationLocation.md b/docset/winserver2016-ps/webadministration/Remove-WebConfigurationLocation.md index f7b61f345e..065db2e989 100644 --- a/docset/winserver2016-ps/webadministration/Remove-WebConfigurationLocation.md +++ b/docset/winserver2016-ps/webadministration/Remove-WebConfigurationLocation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-webconfigurationlocation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-webconfigurationlocation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WebConfigurationLocation --- diff --git a/docset/winserver2016-ps/webadministration/Remove-WebConfigurationLock.md b/docset/winserver2016-ps/webadministration/Remove-WebConfigurationLock.md index 42000286cf..d99f6b45c1 100644 --- a/docset/winserver2016-ps/webadministration/Remove-WebConfigurationLock.md +++ b/docset/winserver2016-ps/webadministration/Remove-WebConfigurationLock.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-webconfigurationlock?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-webconfigurationlock?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WebConfigurationLock --- diff --git a/docset/winserver2016-ps/webadministration/Remove-WebConfigurationProperty.md b/docset/winserver2016-ps/webadministration/Remove-WebConfigurationProperty.md index 3050f4a746..65ccfdfe51 100644 --- a/docset/winserver2016-ps/webadministration/Remove-WebConfigurationProperty.md +++ b/docset/winserver2016-ps/webadministration/Remove-WebConfigurationProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-webconfigurationproperty?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-webconfigurationproperty?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WebConfigurationProperty --- diff --git a/docset/winserver2016-ps/webadministration/Remove-WebGlobalModule.md b/docset/winserver2016-ps/webadministration/Remove-WebGlobalModule.md index 7254b8f538..d1dc2b035c 100644 --- a/docset/winserver2016-ps/webadministration/Remove-WebGlobalModule.md +++ b/docset/winserver2016-ps/webadministration/Remove-WebGlobalModule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-webglobalmodule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-webglobalmodule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WebGlobalModule --- diff --git a/docset/winserver2016-ps/webadministration/Remove-WebHandler.md b/docset/winserver2016-ps/webadministration/Remove-WebHandler.md index 97fbf05a35..be3d452e93 100644 --- a/docset/winserver2016-ps/webadministration/Remove-WebHandler.md +++ b/docset/winserver2016-ps/webadministration/Remove-WebHandler.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-webhandler?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-webhandler?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WebHandler --- diff --git a/docset/winserver2016-ps/webadministration/Remove-WebManagedModule.md b/docset/winserver2016-ps/webadministration/Remove-WebManagedModule.md index f72b72a1df..c674dcbddb 100644 --- a/docset/winserver2016-ps/webadministration/Remove-WebManagedModule.md +++ b/docset/winserver2016-ps/webadministration/Remove-WebManagedModule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-webmanagedmodule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-webmanagedmodule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WebManagedModule --- diff --git a/docset/winserver2016-ps/webadministration/Remove-WebVirtualDirectory.md b/docset/winserver2016-ps/webadministration/Remove-WebVirtualDirectory.md index a54b91bfc8..47cea9c489 100644 --- a/docset/winserver2016-ps/webadministration/Remove-WebVirtualDirectory.md +++ b/docset/winserver2016-ps/webadministration/Remove-WebVirtualDirectory.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-webvirtualdirectory?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-webvirtualdirectory?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WebVirtualDirectory --- diff --git a/docset/winserver2016-ps/webadministration/Remove-Website.md b/docset/winserver2016-ps/webadministration/Remove-Website.md index e4de6cfc6b..03a42e2083 100644 --- a/docset/winserver2016-ps/webadministration/Remove-Website.md +++ b/docset/winserver2016-ps/webadministration/Remove-Website.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-website?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-website?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-Website --- diff --git a/docset/winserver2016-ps/webadministration/Rename-WebConfigurationLocation.md b/docset/winserver2016-ps/webadministration/Rename-WebConfigurationLocation.md index 611264d5f2..96cc88d552 100644 --- a/docset/winserver2016-ps/webadministration/Rename-WebConfigurationLocation.md +++ b/docset/winserver2016-ps/webadministration/Rename-WebConfigurationLocation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/rename-webconfigurationlocation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/rename-webconfigurationlocation?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-WebConfigurationLocation --- diff --git a/docset/winserver2016-ps/webadministration/Restart-WebAppPool.md b/docset/winserver2016-ps/webadministration/Restart-WebAppPool.md index 3ca542f9ad..084a832f9e 100644 --- a/docset/winserver2016-ps/webadministration/Restart-WebAppPool.md +++ b/docset/winserver2016-ps/webadministration/Restart-WebAppPool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/restart-webapppool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/restart-webapppool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restart-WebAppPool --- diff --git a/docset/winserver2016-ps/webadministration/Restart-WebItem.md b/docset/winserver2016-ps/webadministration/Restart-WebItem.md index f0d3b5d257..d6bf7e0a25 100644 --- a/docset/winserver2016-ps/webadministration/Restart-WebItem.md +++ b/docset/winserver2016-ps/webadministration/Restart-WebItem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/restart-webitem?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/restart-webitem?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restart-WebItem --- diff --git a/docset/winserver2016-ps/webadministration/Restore-WebConfiguration.md b/docset/winserver2016-ps/webadministration/Restore-WebConfiguration.md index 45c815efd1..5b89032b39 100644 --- a/docset/winserver2016-ps/webadministration/Restore-WebConfiguration.md +++ b/docset/winserver2016-ps/webadministration/Restore-WebConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/restore-webconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/restore-webconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-WebConfiguration --- diff --git a/docset/winserver2016-ps/webadministration/Select-WebConfiguration.md b/docset/winserver2016-ps/webadministration/Select-WebConfiguration.md index a506293d68..2e60cf3cfd 100644 --- a/docset/winserver2016-ps/webadministration/Select-WebConfiguration.md +++ b/docset/winserver2016-ps/webadministration/Select-WebConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/select-webconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/select-webconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Select-WebConfiguration --- diff --git a/docset/winserver2016-ps/webadministration/Set-WebBinding.md b/docset/winserver2016-ps/webadministration/Set-WebBinding.md index 115d9617ba..8d0ea58811 100644 --- a/docset/winserver2016-ps/webadministration/Set-WebBinding.md +++ b/docset/winserver2016-ps/webadministration/Set-WebBinding.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/set-webbinding?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/set-webbinding?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WebBinding --- diff --git a/docset/winserver2016-ps/webadministration/Set-WebCentralCertProvider.md b/docset/winserver2016-ps/webadministration/Set-WebCentralCertProvider.md index c5c92be492..f3cd83a8df 100644 --- a/docset/winserver2016-ps/webadministration/Set-WebCentralCertProvider.md +++ b/docset/winserver2016-ps/webadministration/Set-WebCentralCertProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/set-webcentralcertprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/set-webcentralcertprovider?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WebCentralCertProvider --- diff --git a/docset/winserver2016-ps/webadministration/Set-WebCentralCertProviderCredential.md b/docset/winserver2016-ps/webadministration/Set-WebCentralCertProviderCredential.md index c1946e63b1..f0970d6c4d 100644 --- a/docset/winserver2016-ps/webadministration/Set-WebCentralCertProviderCredential.md +++ b/docset/winserver2016-ps/webadministration/Set-WebCentralCertProviderCredential.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/set-webcentralcertprovidercredential?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/set-webcentralcertprovidercredential?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WebCentralCertProviderCredential --- diff --git a/docset/winserver2016-ps/webadministration/Set-WebConfiguration.md b/docset/winserver2016-ps/webadministration/Set-WebConfiguration.md index b8fcabca3a..a3d2c04c0d 100644 --- a/docset/winserver2016-ps/webadministration/Set-WebConfiguration.md +++ b/docset/winserver2016-ps/webadministration/Set-WebConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/set-webconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/set-webconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WebConfiguration --- diff --git a/docset/winserver2016-ps/webadministration/Set-WebConfigurationProperty.md b/docset/winserver2016-ps/webadministration/Set-WebConfigurationProperty.md index 4ab371521a..e97c3bf5fa 100644 --- a/docset/winserver2016-ps/webadministration/Set-WebConfigurationProperty.md +++ b/docset/winserver2016-ps/webadministration/Set-WebConfigurationProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/set-webconfigurationproperty?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/set-webconfigurationproperty?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WebConfigurationProperty --- diff --git a/docset/winserver2016-ps/webadministration/Set-WebGlobalModule.md b/docset/winserver2016-ps/webadministration/Set-WebGlobalModule.md index eb5950f295..58e191d3ba 100644 --- a/docset/winserver2016-ps/webadministration/Set-WebGlobalModule.md +++ b/docset/winserver2016-ps/webadministration/Set-WebGlobalModule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/set-webglobalmodule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/set-webglobalmodule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WebGlobalModule --- diff --git a/docset/winserver2016-ps/webadministration/Set-WebHandler.md b/docset/winserver2016-ps/webadministration/Set-WebHandler.md index efe9fb97b5..72a613a9ea 100644 --- a/docset/winserver2016-ps/webadministration/Set-WebHandler.md +++ b/docset/winserver2016-ps/webadministration/Set-WebHandler.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/set-webhandler?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/set-webhandler?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WebHandler --- diff --git a/docset/winserver2016-ps/webadministration/Set-WebManagedModule.md b/docset/winserver2016-ps/webadministration/Set-WebManagedModule.md index 02941fedf9..a29b9f592a 100644 --- a/docset/winserver2016-ps/webadministration/Set-WebManagedModule.md +++ b/docset/winserver2016-ps/webadministration/Set-WebManagedModule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/set-webmanagedmodule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/set-webmanagedmodule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WebManagedModule --- diff --git a/docset/winserver2016-ps/webadministration/Start-WebAppPool.md b/docset/winserver2016-ps/webadministration/Start-WebAppPool.md index 34b938895b..a68c3f26db 100644 --- a/docset/winserver2016-ps/webadministration/Start-WebAppPool.md +++ b/docset/winserver2016-ps/webadministration/Start-WebAppPool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/start-webapppool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/start-webapppool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-WebAppPool --- diff --git a/docset/winserver2016-ps/webadministration/Start-WebCommitDelay.md b/docset/winserver2016-ps/webadministration/Start-WebCommitDelay.md index b7ca7fa5f4..b20e358eed 100644 --- a/docset/winserver2016-ps/webadministration/Start-WebCommitDelay.md +++ b/docset/winserver2016-ps/webadministration/Start-WebCommitDelay.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/start-webcommitdelay?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/start-webcommitdelay?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-WebCommitDelay --- diff --git a/docset/winserver2016-ps/webadministration/Start-WebItem.md b/docset/winserver2016-ps/webadministration/Start-WebItem.md index b3ee311a08..697ebc4182 100644 --- a/docset/winserver2016-ps/webadministration/Start-WebItem.md +++ b/docset/winserver2016-ps/webadministration/Start-WebItem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/start-webitem?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/start-webitem?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-WebItem --- diff --git a/docset/winserver2016-ps/webadministration/Start-Website.md b/docset/winserver2016-ps/webadministration/Start-Website.md index 6ec6c606e7..a1f2231955 100644 --- a/docset/winserver2016-ps/webadministration/Start-Website.md +++ b/docset/winserver2016-ps/webadministration/Start-Website.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/start-website?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/start-website?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-Website --- diff --git a/docset/winserver2016-ps/webadministration/Stop-WebAppPool.md b/docset/winserver2016-ps/webadministration/Stop-WebAppPool.md index ae53fa488e..971832f720 100644 --- a/docset/winserver2016-ps/webadministration/Stop-WebAppPool.md +++ b/docset/winserver2016-ps/webadministration/Stop-WebAppPool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/stop-webapppool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/stop-webapppool?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-WebAppPool --- diff --git a/docset/winserver2016-ps/webadministration/Stop-WebCommitDelay.md b/docset/winserver2016-ps/webadministration/Stop-WebCommitDelay.md index 864f162611..fa4bd73b32 100644 --- a/docset/winserver2016-ps/webadministration/Stop-WebCommitDelay.md +++ b/docset/winserver2016-ps/webadministration/Stop-WebCommitDelay.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/stop-webcommitdelay?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/stop-webcommitdelay?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-WebCommitDelay --- diff --git a/docset/winserver2016-ps/webadministration/Stop-WebItem.md b/docset/winserver2016-ps/webadministration/Stop-WebItem.md index 3d89125f93..f264a614b5 100644 --- a/docset/winserver2016-ps/webadministration/Stop-WebItem.md +++ b/docset/winserver2016-ps/webadministration/Stop-WebItem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/stop-webitem?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/stop-webitem?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-WebItem --- diff --git a/docset/winserver2016-ps/webadministration/Stop-Website.md b/docset/winserver2016-ps/webadministration/Stop-Website.md index 7a034a008b..be8f0db96c 100644 --- a/docset/winserver2016-ps/webadministration/Stop-Website.md +++ b/docset/winserver2016-ps/webadministration/Stop-Website.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/stop-website?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/stop-website?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-Website --- diff --git a/docset/winserver2016-ps/webapplicationproxy/Add-WebApplicationProxyApplication.md b/docset/winserver2016-ps/webapplicationproxy/Add-WebApplicationProxyApplication.md index 97735d4c17..a1ecf5c343 100644 --- a/docset/winserver2016-ps/webapplicationproxy/Add-WebApplicationProxyApplication.md +++ b/docset/winserver2016-ps/webapplicationproxy/Add-WebApplicationProxyApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: WebApplicationProxy-help.xml Module Name: WebApplicationProxy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/webapplicationproxy/add-webapplicationproxyapplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webapplicationproxy/add-webapplicationproxyapplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WebApplicationProxyApplication --- diff --git a/docset/winserver2016-ps/webapplicationproxy/Get-WebApplicationProxyApplication.md b/docset/winserver2016-ps/webapplicationproxy/Get-WebApplicationProxyApplication.md index fb3aa8b917..36d2ac61ef 100644 --- a/docset/winserver2016-ps/webapplicationproxy/Get-WebApplicationProxyApplication.md +++ b/docset/winserver2016-ps/webapplicationproxy/Get-WebApplicationProxyApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: WebApplicationProxy-help.xml Module Name: WebApplicationProxy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/webapplicationproxy/get-webapplicationproxyapplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webapplicationproxy/get-webapplicationproxyapplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebApplicationProxyApplication --- diff --git a/docset/winserver2016-ps/webapplicationproxy/Get-WebApplicationProxyAvailableADFSRelyingParty.md b/docset/winserver2016-ps/webapplicationproxy/Get-WebApplicationProxyAvailableADFSRelyingParty.md index f83dbcdb61..84618b4d95 100644 --- a/docset/winserver2016-ps/webapplicationproxy/Get-WebApplicationProxyAvailableADFSRelyingParty.md +++ b/docset/winserver2016-ps/webapplicationproxy/Get-WebApplicationProxyAvailableADFSRelyingParty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: WebApplicationProxy-help.xml Module Name: WebApplicationProxy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/webapplicationproxy/get-webapplicationproxyavailableadfsrelyingparty?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webapplicationproxy/get-webapplicationproxyavailableadfsrelyingparty?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebApplicationProxyAvailableADFSRelyingParty --- diff --git a/docset/winserver2016-ps/webapplicationproxy/Get-WebApplicationProxyConfiguration.md b/docset/winserver2016-ps/webapplicationproxy/Get-WebApplicationProxyConfiguration.md index 23ff8a48fd..eaf329bf37 100644 --- a/docset/winserver2016-ps/webapplicationproxy/Get-WebApplicationProxyConfiguration.md +++ b/docset/winserver2016-ps/webapplicationproxy/Get-WebApplicationProxyConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: WebApplicationProxy-help.xml Module Name: WebApplicationProxy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/webapplicationproxy/get-webapplicationproxyconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webapplicationproxy/get-webapplicationproxyconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebApplicationProxyConfiguration --- diff --git a/docset/winserver2016-ps/webapplicationproxy/Get-WebApplicationProxyHealth.md b/docset/winserver2016-ps/webapplicationproxy/Get-WebApplicationProxyHealth.md index d96fb975f5..a58a803855 100644 --- a/docset/winserver2016-ps/webapplicationproxy/Get-WebApplicationProxyHealth.md +++ b/docset/winserver2016-ps/webapplicationproxy/Get-WebApplicationProxyHealth.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.ApplicationProxy.Management.PowerShell.dll-Help.xml Module Name: WebApplicationProxy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/webapplicationproxy/get-webapplicationproxyhealth?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webapplicationproxy/get-webapplicationproxyhealth?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebApplicationProxyHealth --- diff --git a/docset/winserver2016-ps/webapplicationproxy/Get-WebApplicationProxySslCertificate.md b/docset/winserver2016-ps/webapplicationproxy/Get-WebApplicationProxySslCertificate.md index 4e56eba932..32d8c278b6 100644 --- a/docset/winserver2016-ps/webapplicationproxy/Get-WebApplicationProxySslCertificate.md +++ b/docset/winserver2016-ps/webapplicationproxy/Get-WebApplicationProxySslCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.Proxy.dll-Help.xml Module Name: WebApplicationProxy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/webapplicationproxy/get-webapplicationproxysslcertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webapplicationproxy/get-webapplicationproxysslcertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebApplicationProxySslCertificate --- diff --git a/docset/winserver2016-ps/webapplicationproxy/Install-WebApplicationProxy.md b/docset/winserver2016-ps/webapplicationproxy/Install-WebApplicationProxy.md index 26f79a086b..9608a79054 100644 --- a/docset/winserver2016-ps/webapplicationproxy/Install-WebApplicationProxy.md +++ b/docset/winserver2016-ps/webapplicationproxy/Install-WebApplicationProxy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.Proxy.dll-Help.xml Module Name: WebApplicationProxy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/webapplicationproxy/install-webapplicationproxy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webapplicationproxy/install-webapplicationproxy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-WebApplicationProxy --- diff --git a/docset/winserver2016-ps/webapplicationproxy/Remove-WebApplicationProxyApplication.md b/docset/winserver2016-ps/webapplicationproxy/Remove-WebApplicationProxyApplication.md index 5e5740ac1c..6d75b10a43 100644 --- a/docset/winserver2016-ps/webapplicationproxy/Remove-WebApplicationProxyApplication.md +++ b/docset/winserver2016-ps/webapplicationproxy/Remove-WebApplicationProxyApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: WebApplicationProxy-help.xml Module Name: WebApplicationProxy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/webapplicationproxy/remove-webapplicationproxyapplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webapplicationproxy/remove-webapplicationproxyapplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WebApplicationProxyApplication --- diff --git a/docset/winserver2016-ps/webapplicationproxy/Set-WebApplicationProxyApplication.md b/docset/winserver2016-ps/webapplicationproxy/Set-WebApplicationProxyApplication.md index da4287298c..1ce4a0cde7 100644 --- a/docset/winserver2016-ps/webapplicationproxy/Set-WebApplicationProxyApplication.md +++ b/docset/winserver2016-ps/webapplicationproxy/Set-WebApplicationProxyApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: WebApplicationProxy-help.xml Module Name: WebApplicationProxy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/webapplicationproxy/set-webapplicationproxyapplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webapplicationproxy/set-webapplicationproxyapplication?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WebApplicationProxyApplication --- diff --git a/docset/winserver2016-ps/webapplicationproxy/Set-WebApplicationProxyConfiguration.md b/docset/winserver2016-ps/webapplicationproxy/Set-WebApplicationProxyConfiguration.md index 098eeaf217..5687b17975 100644 --- a/docset/winserver2016-ps/webapplicationproxy/Set-WebApplicationProxyConfiguration.md +++ b/docset/winserver2016-ps/webapplicationproxy/Set-WebApplicationProxyConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: WebApplicationProxy-help.xml Module Name: WebApplicationProxy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/webapplicationproxy/set-webapplicationproxyconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webapplicationproxy/set-webapplicationproxyconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WebApplicationProxyConfiguration --- diff --git a/docset/winserver2016-ps/webapplicationproxy/Set-WebApplicationProxySslCertificate.md b/docset/winserver2016-ps/webapplicationproxy/Set-WebApplicationProxySslCertificate.md index 61d6847598..ff0b957c2a 100644 --- a/docset/winserver2016-ps/webapplicationproxy/Set-WebApplicationProxySslCertificate.md +++ b/docset/winserver2016-ps/webapplicationproxy/Set-WebApplicationProxySslCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.Proxy.dll-Help.xml Module Name: WebApplicationProxy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/webapplicationproxy/set-webapplicationproxysslcertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webapplicationproxy/set-webapplicationproxysslcertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WebApplicationProxySslCertificate --- diff --git a/docset/winserver2016-ps/webapplicationproxy/Update-WebApplicationProxyDeviceRegistration.md b/docset/winserver2016-ps/webapplicationproxy/Update-WebApplicationProxyDeviceRegistration.md index 0109648bc7..1db0e4dcc5 100644 --- a/docset/winserver2016-ps/webapplicationproxy/Update-WebApplicationProxyDeviceRegistration.md +++ b/docset/winserver2016-ps/webapplicationproxy/Update-WebApplicationProxyDeviceRegistration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.Proxy.dll-Help.xml Module Name: WebApplicationProxy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/webapplicationproxy/update-webapplicationproxydeviceregistration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webapplicationproxy/update-webapplicationproxydeviceregistration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-WebApplicationProxyDeviceRegistration --- diff --git a/docset/winserver2016-ps/whea/Get-WheaMemoryPolicy.md b/docset/winserver2016-ps/whea/Get-WheaMemoryPolicy.md index 0a6a8864dc..bb8493f9b5 100644 --- a/docset/winserver2016-ps/whea/Get-WheaMemoryPolicy.md +++ b/docset/winserver2016-ps/whea/Get-WheaMemoryPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Whea.WheaMemoryPolicy.dll-Help.xml Module Name: WHEA ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/whea/get-wheamemorypolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/whea/get-wheamemorypolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WheaMemoryPolicy --- diff --git a/docset/winserver2016-ps/whea/Set-WheaMemoryPolicy.md b/docset/winserver2016-ps/whea/Set-WheaMemoryPolicy.md index 04695ed68a..79436e1796 100644 --- a/docset/winserver2016-ps/whea/Set-WheaMemoryPolicy.md +++ b/docset/winserver2016-ps/whea/Set-WheaMemoryPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Whea.WheaMemoryPolicy.dll-Help.xml Module Name: WHEA ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/whea/set-wheamemorypolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/whea/set-wheamemorypolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WheaMemoryPolicy --- diff --git a/docset/winserver2016-ps/windowsdeveloperlicense/Get-WindowsDeveloperLicense.md b/docset/winserver2016-ps/windowsdeveloperlicense/Get-WindowsDeveloperLicense.md index bd189da721..e0a4e9ba10 100644 --- a/docset/winserver2016-ps/windowsdeveloperlicense/Get-WindowsDeveloperLicense.md +++ b/docset/winserver2016-ps/windowsdeveloperlicense/Get-WindowsDeveloperLicense.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.DeveloperLicense.Commands.dll-Help.xml Module Name: WindowsDeveloperLicense ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/windowsdeveloperlicense/get-windowsdeveloperlicense?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsdeveloperlicense/get-windowsdeveloperlicense?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WindowsDeveloperLicense --- diff --git a/docset/winserver2016-ps/windowsdeveloperlicense/Show-WindowsDeveloperLicenseRegistration.md b/docset/winserver2016-ps/windowsdeveloperlicense/Show-WindowsDeveloperLicenseRegistration.md index bf4fb151f3..192de79e95 100644 --- a/docset/winserver2016-ps/windowsdeveloperlicense/Show-WindowsDeveloperLicenseRegistration.md +++ b/docset/winserver2016-ps/windowsdeveloperlicense/Show-WindowsDeveloperLicenseRegistration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.DeveloperLicense.Commands.dll-Help.xml Module Name: WindowsDeveloperLicense ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/windowsdeveloperlicense/show-windowsdeveloperlicenseregistration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsdeveloperlicense/show-windowsdeveloperlicenseregistration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Show-WindowsDeveloperLicenseRegistration --- diff --git a/docset/winserver2016-ps/windowsdeveloperlicense/Unregister-WindowsDeveloperLicense.md b/docset/winserver2016-ps/windowsdeveloperlicense/Unregister-WindowsDeveloperLicense.md index e90225da6d..713530bd49 100644 --- a/docset/winserver2016-ps/windowsdeveloperlicense/Unregister-WindowsDeveloperLicense.md +++ b/docset/winserver2016-ps/windowsdeveloperlicense/Unregister-WindowsDeveloperLicense.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.DeveloperLicense.Commands.dll-Help.xml Module Name: WindowsDeveloperLicense ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/windowsdeveloperlicense/unregister-windowsdeveloperlicense?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsdeveloperlicense/unregister-windowsdeveloperlicense?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unregister-WindowsDeveloperLicense --- diff --git a/docset/winserver2016-ps/windowsdiagnosticdata/Clear-WindowsDiagnosticData.md b/docset/winserver2016-ps/windowsdiagnosticdata/Clear-WindowsDiagnosticData.md index 65052c0faf..42deb81f43 100644 --- a/docset/winserver2016-ps/windowsdiagnosticdata/Clear-WindowsDiagnosticData.md +++ b/docset/winserver2016-ps/windowsdiagnosticdata/Clear-WindowsDiagnosticData.md @@ -1,7 +1,7 @@ --- external help file: ClearWindowsDiagnosticData.psm1-help.xml Module Name: WindowsDiagnosticData -online version: https://docs.microsoft.com/powershell/module/windowsdiagnosticdata/clear-windowsdiagnosticdata?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsdiagnosticdata/clear-windowsdiagnosticdata?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-WindowsDiagnosticData --- diff --git a/docset/winserver2016-ps/windowserrorreporting/Disable-WindowsErrorReporting.md b/docset/winserver2016-ps/windowserrorreporting/Disable-WindowsErrorReporting.md index 40223b6e1e..766f6fdd70 100644 --- a/docset/winserver2016-ps/windowserrorreporting/Disable-WindowsErrorReporting.md +++ b/docset/winserver2016-ps/windowserrorreporting/Disable-WindowsErrorReporting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.WindowsErrorReporting.PowerShell.dll-Help.xml Module Name: WindowsErrorReporting ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/windowserrorreporting/disable-windowserrorreporting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowserrorreporting/disable-windowserrorreporting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WindowsErrorReporting --- diff --git a/docset/winserver2016-ps/windowserrorreporting/Enable-WindowsErrorReporting.md b/docset/winserver2016-ps/windowserrorreporting/Enable-WindowsErrorReporting.md index ec31c7d5c9..9c2c4cb162 100644 --- a/docset/winserver2016-ps/windowserrorreporting/Enable-WindowsErrorReporting.md +++ b/docset/winserver2016-ps/windowserrorreporting/Enable-WindowsErrorReporting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.WindowsErrorReporting.PowerShell.dll-Help.xml Module Name: WindowsErrorReporting ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/windowserrorreporting/enable-windowserrorreporting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowserrorreporting/enable-windowserrorreporting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WindowsErrorReporting --- diff --git a/docset/winserver2016-ps/windowserrorreporting/Get-WindowsErrorReporting.md b/docset/winserver2016-ps/windowserrorreporting/Get-WindowsErrorReporting.md index 5482847b76..bc7f7726e7 100644 --- a/docset/winserver2016-ps/windowserrorreporting/Get-WindowsErrorReporting.md +++ b/docset/winserver2016-ps/windowserrorreporting/Get-WindowsErrorReporting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.WindowsErrorReporting.PowerShell.dll-Help.xml Module Name: WindowsErrorReporting ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/windowserrorreporting/get-windowserrorreporting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowserrorreporting/get-windowserrorreporting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WindowsErrorReporting --- diff --git a/docset/winserver2016-ps/windowssearch/Get-WindowsSearchSetting.md b/docset/winserver2016-ps/windowssearch/Get-WindowsSearchSetting.md index eac9775804..ca3a9e6786 100644 --- a/docset/winserver2016-ps/windowssearch/Get-WindowsSearchSetting.md +++ b/docset/winserver2016-ps/windowssearch/Get-WindowsSearchSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.WindowsSearch.Commands.dll-Help.xml Module Name: WindowsSearch ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/windowssearch/get-windowssearchsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowssearch/get-windowssearchsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WindowsSearchSetting --- diff --git a/docset/winserver2016-ps/windowssearch/Set-WindowsSearchSetting.md b/docset/winserver2016-ps/windowssearch/Set-WindowsSearchSetting.md index fed2005d96..36de0d70df 100644 --- a/docset/winserver2016-ps/windowssearch/Set-WindowsSearchSetting.md +++ b/docset/winserver2016-ps/windowssearch/Set-WindowsSearchSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.WindowsSearch.Commands.dll-Help.xml Module Name: WindowsSearch ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/windowssearch/set-windowssearchsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowssearch/set-windowssearchsetting?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WindowsSearchSetting --- diff --git a/docset/winserver2016-ps/windowsserverbackup/Add-WBBackupTarget.md b/docset/winserver2016-ps/windowsserverbackup/Add-WBBackupTarget.md index 09177126da..0bcdad0448 100644 --- a/docset/winserver2016-ps/windowsserverbackup/Add-WBBackupTarget.md +++ b/docset/winserver2016-ps/windowsserverbackup/Add-WBBackupTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/add-wbbackuptarget?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/add-wbbackuptarget?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WBBackupTarget --- diff --git a/docset/winserver2016-ps/windowsserverbackup/Add-WBBareMetalRecovery.md b/docset/winserver2016-ps/windowsserverbackup/Add-WBBareMetalRecovery.md index 951fc1027f..e46d1918f9 100644 --- a/docset/winserver2016-ps/windowsserverbackup/Add-WBBareMetalRecovery.md +++ b/docset/winserver2016-ps/windowsserverbackup/Add-WBBareMetalRecovery.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/add-wbbaremetalrecovery?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/add-wbbaremetalrecovery?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WBBareMetalRecovery --- diff --git a/docset/winserver2016-ps/windowsserverbackup/Add-WBFileSpec.md b/docset/winserver2016-ps/windowsserverbackup/Add-WBFileSpec.md index 62fac490a6..d93645950f 100644 --- a/docset/winserver2016-ps/windowsserverbackup/Add-WBFileSpec.md +++ b/docset/winserver2016-ps/windowsserverbackup/Add-WBFileSpec.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/add-wbfilespec?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/add-wbfilespec?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WBFileSpec --- diff --git a/docset/winserver2016-ps/windowsserverbackup/Add-WBSystemState.md b/docset/winserver2016-ps/windowsserverbackup/Add-WBSystemState.md index 3d374d306b..b41bd7ca27 100644 --- a/docset/winserver2016-ps/windowsserverbackup/Add-WBSystemState.md +++ b/docset/winserver2016-ps/windowsserverbackup/Add-WBSystemState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/add-wbsystemstate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/add-wbsystemstate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WBSystemState --- diff --git a/docset/winserver2016-ps/windowsserverbackup/Add-WBVirtualMachine.md b/docset/winserver2016-ps/windowsserverbackup/Add-WBVirtualMachine.md index 9331c6fa8a..69f4d3a714 100644 --- a/docset/winserver2016-ps/windowsserverbackup/Add-WBVirtualMachine.md +++ b/docset/winserver2016-ps/windowsserverbackup/Add-WBVirtualMachine.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/add-wbvirtualmachine?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/add-wbvirtualmachine?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WBVirtualMachine --- diff --git a/docset/winserver2016-ps/windowsserverbackup/Add-WBVolume.md b/docset/winserver2016-ps/windowsserverbackup/Add-WBVolume.md index a9578b6479..90a0939e5b 100644 --- a/docset/winserver2016-ps/windowsserverbackup/Add-WBVolume.md +++ b/docset/winserver2016-ps/windowsserverbackup/Add-WBVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/add-wbvolume?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/add-wbvolume?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WBVolume --- diff --git a/docset/winserver2016-ps/windowsserverbackup/Get-WBBackupSet.md b/docset/winserver2016-ps/windowsserverbackup/Get-WBBackupSet.md index f56bc30a09..c540dd44a8 100644 --- a/docset/winserver2016-ps/windowsserverbackup/Get-WBBackupSet.md +++ b/docset/winserver2016-ps/windowsserverbackup/Get-WBBackupSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbbackupset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbbackupset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBBackupSet --- diff --git a/docset/winserver2016-ps/windowsserverbackup/Get-WBBackupTarget.md b/docset/winserver2016-ps/windowsserverbackup/Get-WBBackupTarget.md index 3b575e2054..8d1e2d8f5b 100644 --- a/docset/winserver2016-ps/windowsserverbackup/Get-WBBackupTarget.md +++ b/docset/winserver2016-ps/windowsserverbackup/Get-WBBackupTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbbackuptarget?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbbackuptarget?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBBackupTarget --- diff --git a/docset/winserver2016-ps/windowsserverbackup/Get-WBBackupVolumeBrowsePath.md b/docset/winserver2016-ps/windowsserverbackup/Get-WBBackupVolumeBrowsePath.md index 2005f8f7ee..06aa7652c5 100644 --- a/docset/winserver2016-ps/windowsserverbackup/Get-WBBackupVolumeBrowsePath.md +++ b/docset/winserver2016-ps/windowsserverbackup/Get-WBBackupVolumeBrowsePath.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbbackupvolumebrowsepath?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbbackupvolumebrowsepath?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBBackupVolumeBrowsePath --- diff --git a/docset/winserver2016-ps/windowsserverbackup/Get-WBBareMetalRecovery.md b/docset/winserver2016-ps/windowsserverbackup/Get-WBBareMetalRecovery.md index a8cb31deb4..ff83e49707 100644 --- a/docset/winserver2016-ps/windowsserverbackup/Get-WBBareMetalRecovery.md +++ b/docset/winserver2016-ps/windowsserverbackup/Get-WBBareMetalRecovery.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbbaremetalrecovery?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbbaremetalrecovery?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBBareMetalRecovery --- diff --git a/docset/winserver2016-ps/windowsserverbackup/Get-WBDisk.md b/docset/winserver2016-ps/windowsserverbackup/Get-WBDisk.md index 3921be55a8..1435975352 100644 --- a/docset/winserver2016-ps/windowsserverbackup/Get-WBDisk.md +++ b/docset/winserver2016-ps/windowsserverbackup/Get-WBDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbdisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbdisk?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBDisk --- diff --git a/docset/winserver2016-ps/windowsserverbackup/Get-WBFileSpec.md b/docset/winserver2016-ps/windowsserverbackup/Get-WBFileSpec.md index 201080aa2b..a8f84e51b9 100644 --- a/docset/winserver2016-ps/windowsserverbackup/Get-WBFileSpec.md +++ b/docset/winserver2016-ps/windowsserverbackup/Get-WBFileSpec.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbfilespec?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbfilespec?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBFileSpec --- diff --git a/docset/winserver2016-ps/windowsserverbackup/Get-WBJob.md b/docset/winserver2016-ps/windowsserverbackup/Get-WBJob.md index 5701344922..668db42cc4 100644 --- a/docset/winserver2016-ps/windowsserverbackup/Get-WBJob.md +++ b/docset/winserver2016-ps/windowsserverbackup/Get-WBJob.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbjob?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbjob?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBJob --- diff --git a/docset/winserver2016-ps/windowsserverbackup/Get-WBPerformanceConfiguration.md b/docset/winserver2016-ps/windowsserverbackup/Get-WBPerformanceConfiguration.md index 668890c6da..af0b411213 100644 --- a/docset/winserver2016-ps/windowsserverbackup/Get-WBPerformanceConfiguration.md +++ b/docset/winserver2016-ps/windowsserverbackup/Get-WBPerformanceConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbperformanceconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbperformanceconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBPerformanceConfiguration --- diff --git a/docset/winserver2016-ps/windowsserverbackup/Get-WBPolicy.md b/docset/winserver2016-ps/windowsserverbackup/Get-WBPolicy.md index 39129cfc28..b09869b8fe 100644 --- a/docset/winserver2016-ps/windowsserverbackup/Get-WBPolicy.md +++ b/docset/winserver2016-ps/windowsserverbackup/Get-WBPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBPolicy --- diff --git a/docset/winserver2016-ps/windowsserverbackup/Get-WBSchedule.md b/docset/winserver2016-ps/windowsserverbackup/Get-WBSchedule.md index 415b301c56..9b5113649c 100644 --- a/docset/winserver2016-ps/windowsserverbackup/Get-WBSchedule.md +++ b/docset/winserver2016-ps/windowsserverbackup/Get-WBSchedule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbschedule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbschedule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBSchedule --- diff --git a/docset/winserver2016-ps/windowsserverbackup/Get-WBSummary.md b/docset/winserver2016-ps/windowsserverbackup/Get-WBSummary.md index fa03a1ac20..fd3533a705 100644 --- a/docset/winserver2016-ps/windowsserverbackup/Get-WBSummary.md +++ b/docset/winserver2016-ps/windowsserverbackup/Get-WBSummary.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbsummary?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbsummary?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBSummary --- diff --git a/docset/winserver2016-ps/windowsserverbackup/Get-WBSystemState.md b/docset/winserver2016-ps/windowsserverbackup/Get-WBSystemState.md index 7982431014..9532444a56 100644 --- a/docset/winserver2016-ps/windowsserverbackup/Get-WBSystemState.md +++ b/docset/winserver2016-ps/windowsserverbackup/Get-WBSystemState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbsystemstate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbsystemstate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBSystemState --- diff --git a/docset/winserver2016-ps/windowsserverbackup/Get-WBVirtualMachine.md b/docset/winserver2016-ps/windowsserverbackup/Get-WBVirtualMachine.md index 44bae2b646..e8eeaa3708 100644 --- a/docset/winserver2016-ps/windowsserverbackup/Get-WBVirtualMachine.md +++ b/docset/winserver2016-ps/windowsserverbackup/Get-WBVirtualMachine.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbvirtualmachine?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbvirtualmachine?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBVirtualMachine --- diff --git a/docset/winserver2016-ps/windowsserverbackup/Get-WBVolume.md b/docset/winserver2016-ps/windowsserverbackup/Get-WBVolume.md index dd8eaea8a5..1d48fc04e4 100644 --- a/docset/winserver2016-ps/windowsserverbackup/Get-WBVolume.md +++ b/docset/winserver2016-ps/windowsserverbackup/Get-WBVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbvolume?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbvolume?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBVolume --- diff --git a/docset/winserver2016-ps/windowsserverbackup/Get-WBVssBackupOption.md b/docset/winserver2016-ps/windowsserverbackup/Get-WBVssBackupOption.md index 8d5ccf6ba5..1acb1d14f7 100644 --- a/docset/winserver2016-ps/windowsserverbackup/Get-WBVssBackupOption.md +++ b/docset/winserver2016-ps/windowsserverbackup/Get-WBVssBackupOption.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbvssbackupoption?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbvssbackupoption?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBVssBackupOption --- diff --git a/docset/winserver2016-ps/windowsserverbackup/New-WBBackupTarget.md b/docset/winserver2016-ps/windowsserverbackup/New-WBBackupTarget.md index ba3a2d02e1..52c2fad942 100644 --- a/docset/winserver2016-ps/windowsserverbackup/New-WBBackupTarget.md +++ b/docset/winserver2016-ps/windowsserverbackup/New-WBBackupTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/new-wbbackuptarget?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/new-wbbackuptarget?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WBBackupTarget --- diff --git a/docset/winserver2016-ps/windowsserverbackup/New-WBFileSpec.md b/docset/winserver2016-ps/windowsserverbackup/New-WBFileSpec.md index 4c4d45bf3e..17ab6bad89 100644 --- a/docset/winserver2016-ps/windowsserverbackup/New-WBFileSpec.md +++ b/docset/winserver2016-ps/windowsserverbackup/New-WBFileSpec.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/new-wbfilespec?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/new-wbfilespec?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WBFileSpec --- diff --git a/docset/winserver2016-ps/windowsserverbackup/New-WBPolicy.md b/docset/winserver2016-ps/windowsserverbackup/New-WBPolicy.md index 58cff6aea1..2b4952974f 100644 --- a/docset/winserver2016-ps/windowsserverbackup/New-WBPolicy.md +++ b/docset/winserver2016-ps/windowsserverbackup/New-WBPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/new-wbpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/new-wbpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WBPolicy --- diff --git a/docset/winserver2016-ps/windowsserverbackup/Remove-WBBackupSet.md b/docset/winserver2016-ps/windowsserverbackup/Remove-WBBackupSet.md index 34d4031a8a..65fc887ad5 100644 --- a/docset/winserver2016-ps/windowsserverbackup/Remove-WBBackupSet.md +++ b/docset/winserver2016-ps/windowsserverbackup/Remove-WBBackupSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/remove-wbbackupset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/remove-wbbackupset?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WBBackupSet --- diff --git a/docset/winserver2016-ps/windowsserverbackup/Remove-WBBackupTarget.md b/docset/winserver2016-ps/windowsserverbackup/Remove-WBBackupTarget.md index bad7d61d10..36599731da 100644 --- a/docset/winserver2016-ps/windowsserverbackup/Remove-WBBackupTarget.md +++ b/docset/winserver2016-ps/windowsserverbackup/Remove-WBBackupTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/remove-wbbackuptarget?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/remove-wbbackuptarget?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WBBackupTarget --- diff --git a/docset/winserver2016-ps/windowsserverbackup/Remove-WBBareMetalRecovery.md b/docset/winserver2016-ps/windowsserverbackup/Remove-WBBareMetalRecovery.md index 442577889b..5cb18e958d 100644 --- a/docset/winserver2016-ps/windowsserverbackup/Remove-WBBareMetalRecovery.md +++ b/docset/winserver2016-ps/windowsserverbackup/Remove-WBBareMetalRecovery.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/remove-wbbaremetalrecovery?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/remove-wbbaremetalrecovery?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WBBareMetalRecovery --- diff --git a/docset/winserver2016-ps/windowsserverbackup/Remove-WBCatalog.md b/docset/winserver2016-ps/windowsserverbackup/Remove-WBCatalog.md index 32b9708e5a..d0da991604 100644 --- a/docset/winserver2016-ps/windowsserverbackup/Remove-WBCatalog.md +++ b/docset/winserver2016-ps/windowsserverbackup/Remove-WBCatalog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/remove-wbcatalog?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/remove-wbcatalog?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WBCatalog --- diff --git a/docset/winserver2016-ps/windowsserverbackup/Remove-WBFileSpec.md b/docset/winserver2016-ps/windowsserverbackup/Remove-WBFileSpec.md index 1065f63fde..54149e3831 100644 --- a/docset/winserver2016-ps/windowsserverbackup/Remove-WBFileSpec.md +++ b/docset/winserver2016-ps/windowsserverbackup/Remove-WBFileSpec.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/remove-wbfilespec?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/remove-wbfilespec?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WBFileSpec --- diff --git a/docset/winserver2016-ps/windowsserverbackup/Remove-WBPolicy.md b/docset/winserver2016-ps/windowsserverbackup/Remove-WBPolicy.md index a7288a3b78..4b2a050808 100644 --- a/docset/winserver2016-ps/windowsserverbackup/Remove-WBPolicy.md +++ b/docset/winserver2016-ps/windowsserverbackup/Remove-WBPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/remove-wbpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/remove-wbpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WBPolicy --- diff --git a/docset/winserver2016-ps/windowsserverbackup/Remove-WBSystemState.md b/docset/winserver2016-ps/windowsserverbackup/Remove-WBSystemState.md index 60b1accdf2..35ca2de551 100644 --- a/docset/winserver2016-ps/windowsserverbackup/Remove-WBSystemState.md +++ b/docset/winserver2016-ps/windowsserverbackup/Remove-WBSystemState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/remove-wbsystemstate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/remove-wbsystemstate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WBSystemState --- diff --git a/docset/winserver2016-ps/windowsserverbackup/Remove-WBVirtualMachine.md b/docset/winserver2016-ps/windowsserverbackup/Remove-WBVirtualMachine.md index 91fca3907d..0d7a7c5ab4 100644 --- a/docset/winserver2016-ps/windowsserverbackup/Remove-WBVirtualMachine.md +++ b/docset/winserver2016-ps/windowsserverbackup/Remove-WBVirtualMachine.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/remove-wbvirtualmachine?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/remove-wbvirtualmachine?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WBVirtualMachine --- diff --git a/docset/winserver2016-ps/windowsserverbackup/Remove-WBVolume.md b/docset/winserver2016-ps/windowsserverbackup/Remove-WBVolume.md index 0da62adfcd..93a86d99e3 100644 --- a/docset/winserver2016-ps/windowsserverbackup/Remove-WBVolume.md +++ b/docset/winserver2016-ps/windowsserverbackup/Remove-WBVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/remove-wbvolume?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/remove-wbvolume?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WBVolume --- diff --git a/docset/winserver2016-ps/windowsserverbackup/Restore-WBCatalog.md b/docset/winserver2016-ps/windowsserverbackup/Restore-WBCatalog.md index 784e21722c..53097dd18f 100644 --- a/docset/winserver2016-ps/windowsserverbackup/Restore-WBCatalog.md +++ b/docset/winserver2016-ps/windowsserverbackup/Restore-WBCatalog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/restore-wbcatalog?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/restore-wbcatalog?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-WBCatalog --- diff --git a/docset/winserver2016-ps/windowsserverbackup/Resume-WBBackup.md b/docset/winserver2016-ps/windowsserverbackup/Resume-WBBackup.md index 29a1acf394..6f672db34c 100644 --- a/docset/winserver2016-ps/windowsserverbackup/Resume-WBBackup.md +++ b/docset/winserver2016-ps/windowsserverbackup/Resume-WBBackup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/resume-wbbackup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/resume-wbbackup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-WBBackup --- diff --git a/docset/winserver2016-ps/windowsserverbackup/Resume-WBVolumeRecovery.md b/docset/winserver2016-ps/windowsserverbackup/Resume-WBVolumeRecovery.md index 644d2a3cc9..f9656d82d5 100644 --- a/docset/winserver2016-ps/windowsserverbackup/Resume-WBVolumeRecovery.md +++ b/docset/winserver2016-ps/windowsserverbackup/Resume-WBVolumeRecovery.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/resume-wbvolumerecovery?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/resume-wbvolumerecovery?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-WBVolumeRecovery --- diff --git a/docset/winserver2016-ps/windowsserverbackup/Set-WBPerformanceConfiguration.md b/docset/winserver2016-ps/windowsserverbackup/Set-WBPerformanceConfiguration.md index 180ff85400..3255c35482 100644 --- a/docset/winserver2016-ps/windowsserverbackup/Set-WBPerformanceConfiguration.md +++ b/docset/winserver2016-ps/windowsserverbackup/Set-WBPerformanceConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/set-wbperformanceconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/set-wbperformanceconfiguration?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WBPerformanceConfiguration --- diff --git a/docset/winserver2016-ps/windowsserverbackup/Set-WBPolicy.md b/docset/winserver2016-ps/windowsserverbackup/Set-WBPolicy.md index a770fe0081..ee352e1723 100644 --- a/docset/winserver2016-ps/windowsserverbackup/Set-WBPolicy.md +++ b/docset/winserver2016-ps/windowsserverbackup/Set-WBPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/set-wbpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/set-wbpolicy?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WBPolicy --- diff --git a/docset/winserver2016-ps/windowsserverbackup/Set-WBSchedule.md b/docset/winserver2016-ps/windowsserverbackup/Set-WBSchedule.md index 5ac884a3bb..0f9ece7239 100644 --- a/docset/winserver2016-ps/windowsserverbackup/Set-WBSchedule.md +++ b/docset/winserver2016-ps/windowsserverbackup/Set-WBSchedule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/set-wbschedule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/set-wbschedule?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WBSchedule --- diff --git a/docset/winserver2016-ps/windowsserverbackup/Set-WBVssBackupOption.md b/docset/winserver2016-ps/windowsserverbackup/Set-WBVssBackupOption.md index fc4868c990..353058f85a 100644 --- a/docset/winserver2016-ps/windowsserverbackup/Set-WBVssBackupOption.md +++ b/docset/winserver2016-ps/windowsserverbackup/Set-WBVssBackupOption.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/set-wbvssbackupoption?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/set-wbvssbackupoption?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WBVssBackupOption --- diff --git a/docset/winserver2016-ps/windowsserverbackup/Start-WBApplicationRecovery.md b/docset/winserver2016-ps/windowsserverbackup/Start-WBApplicationRecovery.md index 4d39ce0144..2c48943c81 100644 --- a/docset/winserver2016-ps/windowsserverbackup/Start-WBApplicationRecovery.md +++ b/docset/winserver2016-ps/windowsserverbackup/Start-WBApplicationRecovery.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/start-wbapplicationrecovery?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/start-wbapplicationrecovery?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-WBApplicationRecovery --- diff --git a/docset/winserver2016-ps/windowsserverbackup/Start-WBBackup.md b/docset/winserver2016-ps/windowsserverbackup/Start-WBBackup.md index 631a488955..9281bbb23d 100644 --- a/docset/winserver2016-ps/windowsserverbackup/Start-WBBackup.md +++ b/docset/winserver2016-ps/windowsserverbackup/Start-WBBackup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/start-wbbackup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/start-wbbackup?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-WBBackup --- diff --git a/docset/winserver2016-ps/windowsserverbackup/Start-WBFileRecovery.md b/docset/winserver2016-ps/windowsserverbackup/Start-WBFileRecovery.md index c9b374925d..1daa9445e9 100644 --- a/docset/winserver2016-ps/windowsserverbackup/Start-WBFileRecovery.md +++ b/docset/winserver2016-ps/windowsserverbackup/Start-WBFileRecovery.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/start-wbfilerecovery?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/start-wbfilerecovery?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-WBFileRecovery --- diff --git a/docset/winserver2016-ps/windowsserverbackup/Start-WBHyperVRecovery.md b/docset/winserver2016-ps/windowsserverbackup/Start-WBHyperVRecovery.md index e6908f8a01..6fd756c93e 100644 --- a/docset/winserver2016-ps/windowsserverbackup/Start-WBHyperVRecovery.md +++ b/docset/winserver2016-ps/windowsserverbackup/Start-WBHyperVRecovery.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/start-wbhypervrecovery?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/start-wbhypervrecovery?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-WBHyperVRecovery --- diff --git a/docset/winserver2016-ps/windowsserverbackup/Start-WBSystemStateRecovery.md b/docset/winserver2016-ps/windowsserverbackup/Start-WBSystemStateRecovery.md index 6bb5b7f4b8..60f01b3237 100644 --- a/docset/winserver2016-ps/windowsserverbackup/Start-WBSystemStateRecovery.md +++ b/docset/winserver2016-ps/windowsserverbackup/Start-WBSystemStateRecovery.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/start-wbsystemstaterecovery?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/start-wbsystemstaterecovery?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-WBSystemStateRecovery --- diff --git a/docset/winserver2016-ps/windowsserverbackup/Start-WBVolumeRecovery.md b/docset/winserver2016-ps/windowsserverbackup/Start-WBVolumeRecovery.md index 8762bc7749..77ac749583 100644 --- a/docset/winserver2016-ps/windowsserverbackup/Start-WBVolumeRecovery.md +++ b/docset/winserver2016-ps/windowsserverbackup/Start-WBVolumeRecovery.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/start-wbvolumerecovery?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/start-wbvolumerecovery?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-WBVolumeRecovery --- diff --git a/docset/winserver2016-ps/windowsserverbackup/Stop-WBJob.md b/docset/winserver2016-ps/windowsserverbackup/Stop-WBJob.md index de05662906..86ed7409e3 100644 --- a/docset/winserver2016-ps/windowsserverbackup/Stop-WBJob.md +++ b/docset/winserver2016-ps/windowsserverbackup/Stop-WBJob.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/stop-wbjob?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/stop-wbjob?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-WBJob --- diff --git a/docset/winserver2016-ps/windowsupdate/Get-WindowsUpdateLog.md b/docset/winserver2016-ps/windowsupdate/Get-WindowsUpdateLog.md index 158208a692..5f97bb34b9 100644 --- a/docset/winserver2016-ps/windowsupdate/Get-WindowsUpdateLog.md +++ b/docset/winserver2016-ps/windowsupdate/Get-WindowsUpdateLog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: WindowsUpdateLog-help.xml Module Name: WindowsUpdate ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/windowsupdate/get-windowsupdatelog?view=windowsserver2016-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsupdate/get-windowsupdatelog?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WindowsUpdateLog --- From f25e77fcda2c5a8fbf3eefaecc77361343cb466f Mon Sep 17 00:00:00 2001 From: Sean Wheeler Date: Tue, 20 Sep 2022 13:08:13 -0500 Subject: [PATCH 247/965] Update URLs for site rebrand --- .../Disable-DiagnosticDataViewing.md | 2 +- .../Enable-DiagnosticDataViewing.md | 2 +- .../Microsoft.DiagnosticDataViewer/Get-DiagnosticData.md | 2 +- .../Get-DiagnosticDataTypes.md | 2 +- .../Get-DiagnosticDataViewingSetting.md | 2 +- .../Get-DiagnosticStoreCapacity.md | 2 +- .../Set-DiagnosticStoreCapacity.md | 2 +- .../Disable-ServerManagerStandardUserRemoting.md | 2 +- .../Enable-ServerManagerStandardUserRemoting.md | 2 +- .../Export-SmigServerSetting.md | 2 +- .../Get-SmigServerFeature.md | 2 +- .../Get-WindowsFeature.md | 2 +- .../Import-SmigServerSetting.md | 2 +- .../Install-WindowsFeature.md | 2 +- .../Receive-SmigServerData.md | 2 +- .../Send-SmigServerData.md | 2 +- .../ServerManager.md | 2 +- .../Uninstall-WindowsFeature.md | 2 +- .../activedirectory/Add-ADCentralAccessPolicyMember.md | 2 +- .../activedirectory/Add-ADComputerServiceAccount.md | 2 +- .../Add-ADDomainControllerPasswordReplicationPolicy.md | 2 +- .../Add-ADFineGrainedPasswordPolicySubject.md | 2 +- .../winserver2019-ps/activedirectory/Add-ADGroupMember.md | 2 +- .../activedirectory/Add-ADPrincipalGroupMembership.md | 2 +- .../activedirectory/Add-ADResourcePropertyListMember.md | 2 +- .../activedirectory/Clear-ADAccountExpiration.md | 2 +- .../activedirectory/Clear-ADClaimTransformLink.md | 2 +- .../winserver2019-ps/activedirectory/Disable-ADAccount.md | 2 +- .../activedirectory/Disable-ADOptionalFeature.md | 2 +- docset/winserver2019-ps/activedirectory/Enable-ADAccount.md | 2 +- .../activedirectory/Enable-ADOptionalFeature.md | 2 +- .../activedirectory/Get-ADAccountAuthorizationGroup.md | 2 +- .../Get-ADAccountResultantPasswordReplicationPolicy.md | 2 +- .../activedirectory/Get-ADAuthenticationPolicy.md | 2 +- .../activedirectory/Get-ADAuthenticationPolicySilo.md | 2 +- .../activedirectory/Get-ADCentralAccessPolicy.md | 2 +- .../activedirectory/Get-ADCentralAccessRule.md | 2 +- .../activedirectory/Get-ADClaimTransformPolicy.md | 2 +- docset/winserver2019-ps/activedirectory/Get-ADClaimType.md | 2 +- docset/winserver2019-ps/activedirectory/Get-ADComputer.md | 2 +- .../activedirectory/Get-ADComputerServiceAccount.md | 2 +- .../Get-ADDCCloningExcludedApplicationList.md | 2 +- .../activedirectory/Get-ADDefaultDomainPasswordPolicy.md | 2 +- docset/winserver2019-ps/activedirectory/Get-ADDomain.md | 2 +- .../activedirectory/Get-ADDomainController.md | 2 +- .../Get-ADDomainControllerPasswordReplicationPolicy.md | 2 +- .../Get-ADDomainControllerPasswordReplicationPolicyUsage.md | 2 +- .../activedirectory/Get-ADFineGrainedPasswordPolicy.md | 2 +- .../Get-ADFineGrainedPasswordPolicySubject.md | 2 +- docset/winserver2019-ps/activedirectory/Get-ADForest.md | 2 +- docset/winserver2019-ps/activedirectory/Get-ADGroup.md | 2 +- .../winserver2019-ps/activedirectory/Get-ADGroupMember.md | 2 +- docset/winserver2019-ps/activedirectory/Get-ADObject.md | 2 +- .../activedirectory/Get-ADOptionalFeature.md | 2 +- .../activedirectory/Get-ADOrganizationalUnit.md | 2 +- .../activedirectory/Get-ADPrincipalGroupMembership.md | 2 +- .../activedirectory/Get-ADReplicationAttributeMetadata.md | 2 +- .../activedirectory/Get-ADReplicationConnection.md | 2 +- .../activedirectory/Get-ADReplicationFailure.md | 2 +- .../activedirectory/Get-ADReplicationPartnerMetadata.md | 2 +- .../activedirectory/Get-ADReplicationQueueOperation.md | 2 +- .../activedirectory/Get-ADReplicationSite.md | 2 +- .../activedirectory/Get-ADReplicationSiteLink.md | 2 +- .../activedirectory/Get-ADReplicationSiteLinkBridge.md | 2 +- .../activedirectory/Get-ADReplicationSubnet.md | 2 +- .../Get-ADReplicationUpToDatenessVectorTable.md | 2 +- .../activedirectory/Get-ADResourceProperty.md | 2 +- .../activedirectory/Get-ADResourcePropertyList.md | 2 +- .../activedirectory/Get-ADResourcePropertyValueType.md | 2 +- docset/winserver2019-ps/activedirectory/Get-ADRootDSE.md | 2 +- .../activedirectory/Get-ADServiceAccount.md | 2 +- docset/winserver2019-ps/activedirectory/Get-ADTrust.md | 2 +- docset/winserver2019-ps/activedirectory/Get-ADUser.md | 2 +- .../activedirectory/Get-ADUserResultantPasswordPolicy.md | 2 +- .../Grant-ADAuthenticationPolicySiloAccess.md | 2 +- .../activedirectory/Install-ADServiceAccount.md | 2 +- .../activedirectory/Move-ADDirectoryServer.md | 2 +- .../Move-ADDirectoryServerOperationMasterRole.md | 2 +- docset/winserver2019-ps/activedirectory/Move-ADObject.md | 2 +- .../activedirectory/New-ADAuthenticationPolicy.md | 2 +- .../activedirectory/New-ADAuthenticationPolicySilo.md | 2 +- .../activedirectory/New-ADCentralAccessPolicy.md | 2 +- .../activedirectory/New-ADCentralAccessRule.md | 2 +- .../activedirectory/New-ADClaimTransformPolicy.md | 2 +- docset/winserver2019-ps/activedirectory/New-ADClaimType.md | 2 +- docset/winserver2019-ps/activedirectory/New-ADComputer.md | 2 +- .../activedirectory/New-ADDCCloneConfigFile.md | 2 +- .../activedirectory/New-ADFineGrainedPasswordPolicy.md | 2 +- docset/winserver2019-ps/activedirectory/New-ADGroup.md | 2 +- docset/winserver2019-ps/activedirectory/New-ADObject.md | 2 +- .../activedirectory/New-ADOrganizationalUnit.md | 2 +- .../activedirectory/New-ADReplicationSite.md | 2 +- .../activedirectory/New-ADReplicationSiteLink.md | 2 +- .../activedirectory/New-ADReplicationSiteLinkBridge.md | 2 +- .../activedirectory/New-ADReplicationSubnet.md | 2 +- .../activedirectory/New-ADResourceProperty.md | 2 +- .../activedirectory/New-ADResourcePropertyList.md | 2 +- .../activedirectory/New-ADServiceAccount.md | 2 +- docset/winserver2019-ps/activedirectory/New-ADUser.md | 2 +- .../activedirectory/Remove-ADAuthenticationPolicy.md | 2 +- .../activedirectory/Remove-ADAuthenticationPolicySilo.md | 2 +- .../activedirectory/Remove-ADCentralAccessPolicy.md | 2 +- .../activedirectory/Remove-ADCentralAccessPolicyMember.md | 2 +- .../activedirectory/Remove-ADCentralAccessRule.md | 2 +- .../activedirectory/Remove-ADClaimTransformPolicy.md | 2 +- .../winserver2019-ps/activedirectory/Remove-ADClaimType.md | 2 +- .../winserver2019-ps/activedirectory/Remove-ADComputer.md | 2 +- .../activedirectory/Remove-ADComputerServiceAccount.md | 2 +- .../Remove-ADDomainControllerPasswordReplicationPolicy.md | 2 +- .../activedirectory/Remove-ADFineGrainedPasswordPolicy.md | 2 +- .../Remove-ADFineGrainedPasswordPolicySubject.md | 2 +- docset/winserver2019-ps/activedirectory/Remove-ADGroup.md | 2 +- .../activedirectory/Remove-ADGroupMember.md | 2 +- docset/winserver2019-ps/activedirectory/Remove-ADObject.md | 2 +- .../activedirectory/Remove-ADOrganizationalUnit.md | 2 +- .../activedirectory/Remove-ADPrincipalGroupMembership.md | 2 +- .../activedirectory/Remove-ADReplicationSite.md | 2 +- .../activedirectory/Remove-ADReplicationSiteLink.md | 2 +- .../activedirectory/Remove-ADReplicationSiteLinkBridge.md | 2 +- .../activedirectory/Remove-ADReplicationSubnet.md | 2 +- .../activedirectory/Remove-ADResourceProperty.md | 2 +- .../activedirectory/Remove-ADResourcePropertyList.md | 2 +- .../activedirectory/Remove-ADResourcePropertyListMember.md | 2 +- .../activedirectory/Remove-ADServiceAccount.md | 2 +- docset/winserver2019-ps/activedirectory/Remove-ADUser.md | 2 +- docset/winserver2019-ps/activedirectory/Rename-ADObject.md | 2 +- .../activedirectory/Reset-ADServiceAccountPassword.md | 2 +- docset/winserver2019-ps/activedirectory/Restore-ADObject.md | 2 +- .../Revoke-ADAuthenticationPolicySiloAccess.md | 2 +- docset/winserver2019-ps/activedirectory/Search-ADAccount.md | 2 +- .../Set-ADAccountAuthenticationPolicySilo.md | 2 +- .../activedirectory/Set-ADAccountControl.md | 2 +- .../activedirectory/Set-ADAccountExpiration.md | 2 +- .../activedirectory/Set-ADAccountPassword.md | 2 +- .../activedirectory/Set-ADAuthenticationPolicy.md | 2 +- .../activedirectory/Set-ADAuthenticationPolicySilo.md | 2 +- .../activedirectory/Set-ADCentralAccessPolicy.md | 2 +- .../activedirectory/Set-ADCentralAccessRule.md | 2 +- .../activedirectory/Set-ADClaimTransformLink.md | 2 +- .../activedirectory/Set-ADClaimTransformPolicy.md | 2 +- docset/winserver2019-ps/activedirectory/Set-ADClaimType.md | 2 +- docset/winserver2019-ps/activedirectory/Set-ADComputer.md | 2 +- .../activedirectory/Set-ADDefaultDomainPasswordPolicy.md | 2 +- docset/winserver2019-ps/activedirectory/Set-ADDomain.md | 2 +- docset/winserver2019-ps/activedirectory/Set-ADDomainMode.md | 2 +- .../activedirectory/Set-ADFineGrainedPasswordPolicy.md | 2 +- docset/winserver2019-ps/activedirectory/Set-ADForest.md | 2 +- docset/winserver2019-ps/activedirectory/Set-ADForestMode.md | 2 +- docset/winserver2019-ps/activedirectory/Set-ADGroup.md | 2 +- docset/winserver2019-ps/activedirectory/Set-ADObject.md | 2 +- .../activedirectory/Set-ADOrganizationalUnit.md | 2 +- .../activedirectory/Set-ADReplicationConnection.md | 2 +- .../activedirectory/Set-ADReplicationSite.md | 2 +- .../activedirectory/Set-ADReplicationSiteLink.md | 2 +- .../activedirectory/Set-ADReplicationSiteLinkBridge.md | 2 +- .../activedirectory/Set-ADReplicationSubnet.md | 2 +- .../activedirectory/Set-ADResourceProperty.md | 2 +- .../activedirectory/Set-ADResourcePropertyList.md | 2 +- .../activedirectory/Set-ADServiceAccount.md | 2 +- docset/winserver2019-ps/activedirectory/Set-ADUser.md | 2 +- .../Show-ADAuthenticationPolicyExpression.md | 2 +- docset/winserver2019-ps/activedirectory/Sync-ADObject.md | 2 +- .../activedirectory/Test-ADServiceAccount.md | 2 +- .../activedirectory/Uninstall-ADServiceAccount.md | 2 +- docset/winserver2019-ps/activedirectory/Unlock-ADAccount.md | 2 +- .../adcsadministration/Add-CAAuthorityInformationAccess.md | 2 +- .../adcsadministration/Add-CACrlDistributionPoint.md | 2 +- .../winserver2019-ps/adcsadministration/Add-CATemplate.md | 2 +- .../adcsadministration/Backup-CARoleService.md | 2 +- .../adcsadministration/Confirm-CAEndorsementKeyInfo.md | 2 +- .../adcsadministration/Get-CAAuthorityInformationAccess.md | 2 +- .../adcsadministration/Get-CACrlDistributionPoint.md | 2 +- .../winserver2019-ps/adcsadministration/Get-CATemplate.md | 2 +- .../Remove-CAAuthorityInformationAccess.md | 2 +- .../adcsadministration/Remove-CACrlDistributionPoint.md | 2 +- .../adcsadministration/Remove-CATemplate.md | 2 +- .../adcsadministration/Restore-CARoleService.md | 2 +- .../adcsdeployment/Install-AdcsCertificationAuthority.md | 2 +- .../Install-AdcsEnrollmentPolicyWebService.md | 2 +- .../adcsdeployment/Install-AdcsEnrollmentWebService.md | 2 +- .../Install-AdcsNetworkDeviceEnrollmentService.md | 2 +- .../adcsdeployment/Install-AdcsOnlineResponder.md | 2 +- .../adcsdeployment/Install-AdcsWebEnrollment.md | 2 +- .../adcsdeployment/Uninstall-AdcsCertificationAuthority.md | 2 +- .../Uninstall-AdcsEnrollmentPolicyWebService.md | 2 +- .../adcsdeployment/Uninstall-AdcsEnrollmentWebService.md | 2 +- .../Uninstall-AdcsNetworkDeviceEnrollmentService.md | 2 +- .../adcsdeployment/Uninstall-AdcsOnlineResponder.md | 2 +- .../adcsdeployment/Uninstall-AdcsWebEnrollment.md | 2 +- .../Add-ADDSReadOnlyDomainControllerAccount.md | 2 +- .../winserver2019-ps/addsdeployment/Install-ADDSDomain.md | 2 +- .../addsdeployment/Install-ADDSDomainController.md | 2 +- .../winserver2019-ps/addsdeployment/Install-ADDSForest.md | 2 +- .../addsdeployment/Test-ADDSDomainControllerInstallation.md | 2 +- .../Test-ADDSDomainControllerUninstallation.md | 2 +- .../addsdeployment/Test-ADDSDomainInstallation.md | 2 +- .../addsdeployment/Test-ADDSForestInstallation.md | 2 +- .../Test-ADDSReadOnlyDomainControllerAccountCreation.md | 2 +- .../addsdeployment/Uninstall-ADDSDomainController.md | 2 +- docset/winserver2019-ps/adfs/Add-AdfsAttributeStore.md | 2 +- docset/winserver2019-ps/adfs/Add-AdfsCertificate.md | 2 +- docset/winserver2019-ps/adfs/Add-AdfsClaimDescription.md | 2 +- docset/winserver2019-ps/adfs/Add-AdfsClaimsProviderTrust.md | 2 +- .../adfs/Add-AdfsClaimsProviderTrustsGroup.md | 2 +- docset/winserver2019-ps/adfs/Add-AdfsClient.md | 2 +- .../adfs/Add-AdfsDeviceRegistrationUpnSuffix.md | 2 +- docset/winserver2019-ps/adfs/Add-AdfsFarmNode.md | 2 +- .../adfs/Add-AdfsLocalClaimsProviderTrust.md | 2 +- .../adfs/Add-AdfsNativeClientApplication.md | 2 +- .../adfs/Add-AdfsNonClaimsAwareRelyingPartyTrust.md | 2 +- docset/winserver2019-ps/adfs/Add-AdfsRelyingPartyTrust.md | 2 +- .../adfs/Add-AdfsRelyingPartyTrustsGroup.md | 2 +- docset/winserver2019-ps/adfs/Add-AdfsScopeDescription.md | 2 +- docset/winserver2019-ps/adfs/Add-AdfsServerApplication.md | 2 +- .../adfs/Add-AdfsTrustedFederationPartner.md | 2 +- docset/winserver2019-ps/adfs/Add-AdfsWebApiApplication.md | 2 +- .../adfs/Add-AdfsWebApplicationProxyRelyingPartyTrust.md | 2 +- .../winserver2019-ps/adfs/Disable-AdfsApplicationGroup.md | 2 +- .../adfs/Disable-AdfsCertificateAuthority.md | 2 +- .../adfs/Disable-AdfsClaimsProviderTrust.md | 2 +- docset/winserver2019-ps/adfs/Disable-AdfsClient.md | 2 +- .../winserver2019-ps/adfs/Disable-AdfsDeviceRegistration.md | 2 +- docset/winserver2019-ps/adfs/Disable-AdfsEndpoint.md | 2 +- .../adfs/Disable-AdfsLocalClaimsProviderTrust.md | 2 +- .../adfs/Disable-AdfsNonClaimsAwareRelyingPartyTrust.md | 2 +- .../winserver2019-ps/adfs/Disable-AdfsRelyingPartyTrust.md | 2 +- .../Disable-AdfsWebApplicationProxyRelyingPartyTrust.md | 2 +- docset/winserver2019-ps/adfs/Enable-AdfsApplicationGroup.md | 2 +- .../winserver2019-ps/adfs/Enable-AdfsClaimsProviderTrust.md | 2 +- docset/winserver2019-ps/adfs/Enable-AdfsClient.md | 2 +- .../winserver2019-ps/adfs/Enable-AdfsDeviceRegistration.md | 2 +- docset/winserver2019-ps/adfs/Enable-AdfsEndpoint.md | 2 +- .../adfs/Enable-AdfsLocalClaimsProviderTrust.md | 2 +- .../adfs/Enable-AdfsNonClaimsAwareRelyingPartyTrust.md | 2 +- .../winserver2019-ps/adfs/Enable-AdfsRelyingPartyTrust.md | 2 +- .../adfs/Enable-AdfsWebApplicationProxyRelyingPartyTrust.md | 2 +- .../Export-AdfsAuthenticationProviderConfigurationData.md | 2 +- .../winserver2019-ps/adfs/Export-AdfsDeploymentSQLScript.md | 2 +- docset/winserver2019-ps/adfs/Export-AdfsWebContent.md | 2 +- docset/winserver2019-ps/adfs/Export-AdfsWebTheme.md | 2 +- docset/winserver2019-ps/adfs/Get-AdfsAccessControlPolicy.md | 2 +- .../adfs/Get-AdfsAdditionalAuthenticationRule.md | 2 +- docset/winserver2019-ps/adfs/Get-AdfsApplicationGroup.md | 2 +- .../winserver2019-ps/adfs/Get-AdfsApplicationPermission.md | 2 +- docset/winserver2019-ps/adfs/Get-AdfsAttributeStore.md | 2 +- .../winserver2019-ps/adfs/Get-AdfsAuthenticationProvider.md | 2 +- .../adfs/Get-AdfsAuthenticationProviderWebContent.md | 2 +- docset/winserver2019-ps/adfs/Get-AdfsAzureMfaConfigured.md | 2 +- docset/winserver2019-ps/adfs/Get-AdfsCertificate.md | 2 +- .../winserver2019-ps/adfs/Get-AdfsCertificateAuthority.md | 2 +- docset/winserver2019-ps/adfs/Get-AdfsClaimDescription.md | 2 +- docset/winserver2019-ps/adfs/Get-AdfsClaimsProviderTrust.md | 2 +- .../adfs/Get-AdfsClaimsProviderTrustsGroup.md | 2 +- docset/winserver2019-ps/adfs/Get-AdfsClient.md | 2 +- docset/winserver2019-ps/adfs/Get-AdfsDeviceRegistration.md | 2 +- .../adfs/Get-AdfsDeviceRegistrationUpnSuffix.md | 2 +- docset/winserver2019-ps/adfs/Get-AdfsEndpoint.md | 2 +- docset/winserver2019-ps/adfs/Get-AdfsFarmInformation.md | 2 +- .../adfs/Get-AdfsGlobalAuthenticationPolicy.md | 2 +- docset/winserver2019-ps/adfs/Get-AdfsGlobalWebContent.md | 2 +- .../adfs/Get-AdfsLocalClaimsProviderTrust.md | 2 +- .../adfs/Get-AdfsNativeClientApplication.md | 2 +- .../adfs/Get-AdfsNonClaimsAwareRelyingPartyTrust.md | 2 +- docset/winserver2019-ps/adfs/Get-AdfsProperties.md | 2 +- docset/winserver2019-ps/adfs/Get-AdfsRegistrationHosts.md | 2 +- docset/winserver2019-ps/adfs/Get-AdfsRelyingPartyTrust.md | 2 +- .../adfs/Get-AdfsRelyingPartyTrustsGroup.md | 2 +- .../winserver2019-ps/adfs/Get-AdfsRelyingPartyWebContent.md | 2 +- .../winserver2019-ps/adfs/Get-AdfsRelyingPartyWebTheme.md | 2 +- docset/winserver2019-ps/adfs/Get-AdfsScopeDescription.md | 2 +- docset/winserver2019-ps/adfs/Get-AdfsServerApplication.md | 2 +- docset/winserver2019-ps/adfs/Get-AdfsSslCertificate.md | 2 +- docset/winserver2019-ps/adfs/Get-AdfsSyncProperties.md | 2 +- .../adfs/Get-AdfsTrustedFederationPartner.md | 2 +- docset/winserver2019-ps/adfs/Get-AdfsWebApiApplication.md | 2 +- .../adfs/Get-AdfsWebApplicationProxyRelyingPartyTrust.md | 2 +- docset/winserver2019-ps/adfs/Get-AdfsWebConfig.md | 2 +- docset/winserver2019-ps/adfs/Get-AdfsWebTheme.md | 2 +- .../adfs/Grant-AdfsApplicationPermission.md | 2 +- .../Import-AdfsAuthenticationProviderConfigurationData.md | 2 +- docset/winserver2019-ps/adfs/Import-AdfsWebContent.md | 2 +- .../adfs/Initialize-ADDeviceRegistration.md | 2 +- docset/winserver2019-ps/adfs/Install-AdfsFarm.md | 2 +- .../adfs/Invoke-AdfsFarmBehaviorLevelRaise.md | 2 +- docset/winserver2019-ps/adfs/New-AdfsAccessControlPolicy.md | 2 +- docset/winserver2019-ps/adfs/New-AdfsApplicationGroup.md | 2 +- .../adfs/New-AdfsAzureMfaTenantCertificate.md | 2 +- docset/winserver2019-ps/adfs/New-AdfsClaimRuleSet.md | 2 +- docset/winserver2019-ps/adfs/New-AdfsContactPerson.md | 2 +- .../adfs/New-AdfsLdapAttributeToClaimMapping.md | 2 +- .../winserver2019-ps/adfs/New-AdfsLdapServerConnection.md | 2 +- docset/winserver2019-ps/adfs/New-AdfsOrganization.md | 2 +- docset/winserver2019-ps/adfs/New-AdfsSamlEndpoint.md | 2 +- docset/winserver2019-ps/adfs/New-AdfsWebTheme.md | 2 +- docset/winserver2019-ps/adfs/Publish-SslCertificate.md | 2 +- .../adfs/Register-AdfsAuthenticationProvider.md | 2 +- .../winserver2019-ps/adfs/Remove-AdfsAccessControlPolicy.md | 2 +- docset/winserver2019-ps/adfs/Remove-AdfsApplicationGroup.md | 2 +- docset/winserver2019-ps/adfs/Remove-AdfsAttributeStore.md | 2 +- .../adfs/Remove-AdfsAuthenticationProviderWebContent.md | 2 +- docset/winserver2019-ps/adfs/Remove-AdfsCertificate.md | 2 +- docset/winserver2019-ps/adfs/Remove-AdfsClaimDescription.md | 2 +- .../winserver2019-ps/adfs/Remove-AdfsClaimsProviderTrust.md | 2 +- .../adfs/Remove-AdfsClaimsProviderTrustsGroup.md | 2 +- docset/winserver2019-ps/adfs/Remove-AdfsClient.md | 2 +- .../adfs/Remove-AdfsDeviceRegistrationUpnSuffix.md | 2 +- docset/winserver2019-ps/adfs/Remove-AdfsFarmNode.md | 2 +- docset/winserver2019-ps/adfs/Remove-AdfsGlobalWebContent.md | 2 +- .../adfs/Remove-AdfsLocalClaimsProviderTrust.md | 2 +- .../adfs/Remove-AdfsNativeClientApplication.md | 2 +- .../adfs/Remove-AdfsNonClaimsAwareRelyingPartyTrust.md | 2 +- .../winserver2019-ps/adfs/Remove-AdfsRelyingPartyTrust.md | 2 +- .../adfs/Remove-AdfsRelyingPartyTrustsGroup.md | 2 +- .../adfs/Remove-AdfsRelyingPartyWebContent.md | 2 +- .../adfs/Remove-AdfsRelyingPartyWebTheme.md | 2 +- docset/winserver2019-ps/adfs/Remove-AdfsScopeDescription.md | 2 +- .../winserver2019-ps/adfs/Remove-AdfsServerApplication.md | 2 +- .../adfs/Remove-AdfsTrustedFederationPartner.md | 2 +- .../winserver2019-ps/adfs/Remove-AdfsWebApiApplication.md | 2 +- .../adfs/Remove-AdfsWebApplicationProxyRelyingPartyTrust.md | 2 +- docset/winserver2019-ps/adfs/Remove-AdfsWebTheme.md | 2 +- .../winserver2019-ps/adfs/Restore-AdfsFarmBehaviorLevel.md | 2 +- .../adfs/Revoke-AdfsApplicationPermission.md | 2 +- docset/winserver2019-ps/adfs/Revoke-AdfsProxyTrust.md | 2 +- docset/winserver2019-ps/adfs/Set-AdfsAccessControlPolicy.md | 2 +- .../adfs/Set-AdfsAdditionalAuthenticationRule.md | 2 +- .../adfs/Set-AdfsAlternateTlsClientBinding.md | 2 +- docset/winserver2019-ps/adfs/Set-AdfsApplicationGroup.md | 2 +- .../winserver2019-ps/adfs/Set-AdfsApplicationPermission.md | 2 +- docset/winserver2019-ps/adfs/Set-AdfsAttributeStore.md | 2 +- .../adfs/Set-AdfsAuthenticationProviderWebContent.md | 2 +- docset/winserver2019-ps/adfs/Set-AdfsAzureMfaTenant.md | 2 +- .../winserver2019-ps/adfs/Set-AdfsCertSharingContainer.md | 2 +- docset/winserver2019-ps/adfs/Set-AdfsCertificate.md | 2 +- .../winserver2019-ps/adfs/Set-AdfsCertificateAuthority.md | 2 +- docset/winserver2019-ps/adfs/Set-AdfsClaimDescription.md | 2 +- docset/winserver2019-ps/adfs/Set-AdfsClaimsProviderTrust.md | 2 +- docset/winserver2019-ps/adfs/Set-AdfsClient.md | 2 +- docset/winserver2019-ps/adfs/Set-AdfsDeviceRegistration.md | 2 +- .../adfs/Set-AdfsDeviceRegistrationUpnSuffix.md | 2 +- docset/winserver2019-ps/adfs/Set-AdfsEndpoint.md | 2 +- docset/winserver2019-ps/adfs/Set-AdfsFarmInformation.md | 2 +- .../adfs/Set-AdfsGlobalAuthenticationPolicy.md | 2 +- docset/winserver2019-ps/adfs/Set-AdfsGlobalWebContent.md | 2 +- .../adfs/Set-AdfsLocalClaimsProviderTrust.md | 2 +- .../adfs/Set-AdfsNativeClientApplication.md | 2 +- .../adfs/Set-AdfsNonClaimsAwareRelyingPartyTrust.md | 2 +- docset/winserver2019-ps/adfs/Set-AdfsProperties.md | 2 +- docset/winserver2019-ps/adfs/Set-AdfsRegistrationHosts.md | 2 +- docset/winserver2019-ps/adfs/Set-AdfsRelyingPartyTrust.md | 2 +- .../winserver2019-ps/adfs/Set-AdfsRelyingPartyWebContent.md | 2 +- .../winserver2019-ps/adfs/Set-AdfsRelyingPartyWebTheme.md | 2 +- docset/winserver2019-ps/adfs/Set-AdfsScopeDescription.md | 2 +- docset/winserver2019-ps/adfs/Set-AdfsServerApplication.md | 2 +- docset/winserver2019-ps/adfs/Set-AdfsSslCertificate.md | 2 +- docset/winserver2019-ps/adfs/Set-AdfsSyncProperties.md | 2 +- .../adfs/Set-AdfsTrustedFederationPartner.md | 2 +- docset/winserver2019-ps/adfs/Set-AdfsWebApiApplication.md | 2 +- .../adfs/Set-AdfsWebApplicationProxyRelyingPartyTrust.md | 2 +- docset/winserver2019-ps/adfs/Set-AdfsWebConfig.md | 2 +- docset/winserver2019-ps/adfs/Set-AdfsWebTheme.md | 2 +- .../adfs/Test-AdfsFarmBehaviorLevelRaise.md | 2 +- .../adfs/Test-AdfsFarmBehaviorLevelRestore.md | 2 +- docset/winserver2019-ps/adfs/Test-AdfsFarmInstallation.md | 2 +- docset/winserver2019-ps/adfs/Test-AdfsFarmJoin.md | 2 +- .../adfs/Unregister-AdfsAuthenticationProvider.md | 2 +- docset/winserver2019-ps/adfs/Update-AdfsCertificate.md | 2 +- .../winserver2019-ps/adfs/Update-AdfsClaimsProviderTrust.md | 2 +- .../winserver2019-ps/adfs/Update-AdfsRelyingPartyTrust.md | 2 +- docset/winserver2019-ps/adrms/Install-ADRMS.md | 2 +- docset/winserver2019-ps/adrms/Uninstall-ADRMS.md | 2 +- docset/winserver2019-ps/adrms/Update-ADRMS.md | 2 +- .../adrmsadmin/Export-RmsReportDefinitionLanguage.md | 2 +- docset/winserver2019-ps/adrmsadmin/Export-RmsTPD.md | 2 +- docset/winserver2019-ps/adrmsadmin/Export-RmsTUD.md | 2 +- docset/winserver2019-ps/adrmsadmin/Get-RmsCertChain.md | 2 +- docset/winserver2019-ps/adrmsadmin/Get-RmsCertInfo.md | 2 +- docset/winserver2019-ps/adrmsadmin/Get-RmsChildCert.md | 2 +- docset/winserver2019-ps/adrmsadmin/Get-RmsEncryptedIL.md | 2 +- docset/winserver2019-ps/adrmsadmin/Get-RmsRequestInfo.md | 2 +- docset/winserver2019-ps/adrmsadmin/Get-RmsSvcAccount.md | 2 +- .../adrmsadmin/Get-RmsSystemHealthReport.md | 2 +- .../winserver2019-ps/adrmsadmin/Get-RmsUserRequestReport.md | 2 +- docset/winserver2019-ps/adrmsadmin/Import-RmsTPD.md | 2 +- docset/winserver2019-ps/adrmsadmin/Import-RmsTUD.md | 2 +- .../adrmsadmin/Initialize-RmsCryptoMode2.md | 2 +- .../winserver2019-ps/adrmsadmin/Install-RmsMfgEnrollment.md | 2 +- docset/winserver2019-ps/adrmsadmin/Install-RmsMfgSupport.md | 2 +- docset/winserver2019-ps/adrmsadmin/Set-RmsSvcAccount.md | 2 +- .../adrmsadmin/Uninstall-RmsMfgEnrollment.md | 2 +- .../winserver2019-ps/adrmsadmin/Uninstall-RmsMfgSupport.md | 2 +- docset/winserver2019-ps/adrmsadmin/Update-RmsCluster.md | 2 +- .../winserver2019-ps/adrmsadmin/Update-RmsMfgEnrollment.md | 2 +- .../Disable-AppBackgroundTaskDiagnosticLog.md | 2 +- .../Enable-AppBackgroundTaskDiagnosticLog.md | 2 +- .../appbackgroundtask/Get-AppBackgroundTask.md | 2 +- .../Set-AppBackgroundTaskResourcePolicy.md | 2 +- .../appbackgroundtask/Start-AppBackgroundTask.md | 2 +- .../appbackgroundtask/Unregister-AppBackgroundTask.md | 2 +- .../applocker/Get-AppLockerFileInformation.md | 2 +- docset/winserver2019-ps/applocker/Get-AppLockerPolicy.md | 2 +- docset/winserver2019-ps/applocker/New-AppLockerPolicy.md | 2 +- docset/winserver2019-ps/applocker/Set-AppLockerPolicy.md | 2 +- docset/winserver2019-ps/applocker/Test-AppLockerPolicy.md | 2 +- .../appvclient/Add-AppvClientConnectionGroup.md | 2 +- docset/winserver2019-ps/appvclient/Add-AppvClientPackage.md | 2 +- .../winserver2019-ps/appvclient/Add-AppvPublishingServer.md | 2 +- docset/winserver2019-ps/appvclient/Disable-Appv.md | 2 +- .../appvclient/Disable-AppvClientConnectionGroup.md | 2 +- docset/winserver2019-ps/appvclient/Enable-Appv.md | 2 +- .../appvclient/Enable-AppvClientConnectionGroup.md | 2 +- .../appvclient/Get-AppvClientApplication.md | 2 +- .../appvclient/Get-AppvClientConfiguration.md | 2 +- .../appvclient/Get-AppvClientConnectionGroup.md | 2 +- docset/winserver2019-ps/appvclient/Get-AppvClientMode.md | 2 +- docset/winserver2019-ps/appvclient/Get-AppvClientPackage.md | 2 +- .../winserver2019-ps/appvclient/Get-AppvPublishingServer.md | 2 +- docset/winserver2019-ps/appvclient/Get-AppvStatus.md | 2 +- .../winserver2019-ps/appvclient/Get-AppvVirtualProcess.md | 2 +- .../appvclient/Mount-AppvClientConnectionGroup.md | 2 +- .../winserver2019-ps/appvclient/Mount-AppvClientPackage.md | 2 +- .../appvclient/Publish-AppvClientPackage.md | 2 +- .../appvclient/Remove-AppvClientConnectionGroup.md | 2 +- .../winserver2019-ps/appvclient/Remove-AppvClientPackage.md | 2 +- .../appvclient/Remove-AppvPublishingServer.md | 2 +- .../appvclient/Repair-AppvClientConnectionGroup.md | 2 +- .../winserver2019-ps/appvclient/Repair-AppvClientPackage.md | 2 +- docset/winserver2019-ps/appvclient/Send-AppvClientReport.md | 2 +- .../appvclient/Set-AppvClientConfiguration.md | 2 +- docset/winserver2019-ps/appvclient/Set-AppvClientMode.md | 2 +- docset/winserver2019-ps/appvclient/Set-AppvClientPackage.md | 2 +- .../winserver2019-ps/appvclient/Set-AppvPublishingServer.md | 2 +- .../winserver2019-ps/appvclient/Start-AppvVirtualProcess.md | 2 +- .../appvclient/Stop-AppvClientConnectionGroup.md | 2 +- .../winserver2019-ps/appvclient/Stop-AppvClientPackage.md | 2 +- .../appvclient/Sync-AppvPublishingServer.md | 2 +- .../appvclient/Unpublish-AppvClientPackage.md | 2 +- .../appvsequencer/Expand-AppvSequencerPackage.md | 2 +- .../appvsequencer/New-AppvPackageAccelerator.md | 2 +- .../appvsequencer/New-AppvSequencerPackage.md | 2 +- .../appvsequencer/Update-AppvSequencerPackage.md | 2 +- docset/winserver2019-ps/appx/Add-AppxPackage.md | 2 +- docset/winserver2019-ps/appx/Add-AppxVolume.md | 2 +- docset/winserver2019-ps/appx/Dismount-AppxVolume.md | 2 +- docset/winserver2019-ps/appx/Get-AppxDefaultVolume.md | 2 +- docset/winserver2019-ps/appx/Get-AppxLastError.md | 2 +- docset/winserver2019-ps/appx/Get-AppxLog.md | 2 +- docset/winserver2019-ps/appx/Get-AppxPackage.md | 2 +- docset/winserver2019-ps/appx/Get-AppxPackageManifest.md | 2 +- docset/winserver2019-ps/appx/Get-AppxVolume.md | 2 +- docset/winserver2019-ps/appx/Get-NonRemovableAppsPolicy.md | 2 +- .../winserver2019-ps/appx/Invoke-CommandInDesktopPackage.md | 2 +- docset/winserver2019-ps/appx/Mount-AppxVolume.md | 2 +- docset/winserver2019-ps/appx/Move-AppxPackage.md | 2 +- docset/winserver2019-ps/appx/Remove-AppxPackage.md | 2 +- docset/winserver2019-ps/appx/Remove-AppxVolume.md | 2 +- docset/winserver2019-ps/appx/Reset-AppxPackage.md | 2 +- docset/winserver2019-ps/appx/Set-AppxDefaultVolume.md | 2 +- docset/winserver2019-ps/appx/Set-NonRemovableAppsPolicy.md | 2 +- .../winserver2019-ps/assignedaccess/Clear-AssignedAccess.md | 2 +- .../winserver2019-ps/assignedaccess/Get-AssignedAccess.md | 2 +- .../winserver2019-ps/assignedaccess/Set-AssignedAccess.md | 2 +- docset/winserver2019-ps/bestpractices/Get-BpaModel.md | 2 +- docset/winserver2019-ps/bestpractices/Get-BpaResult.md | 2 +- docset/winserver2019-ps/bestpractices/Invoke-BpaModel.md | 2 +- docset/winserver2019-ps/bestpractices/Set-BpaResult.md | 2 +- .../winserver2019-ps/bitlocker/Add-BitLockerKeyProtector.md | 2 +- .../bitlocker/Backup-BitLockerKeyProtector.md | 2 +- .../winserver2019-ps/bitlocker/Clear-BitLockerAutoUnlock.md | 2 +- docset/winserver2019-ps/bitlocker/Disable-BitLocker.md | 2 +- .../bitlocker/Disable-BitLockerAutoUnlock.md | 2 +- docset/winserver2019-ps/bitlocker/Enable-BitLocker.md | 2 +- .../bitlocker/Enable-BitLockerAutoUnlock.md | 2 +- docset/winserver2019-ps/bitlocker/Get-BitLockerVolume.md | 2 +- docset/winserver2019-ps/bitlocker/Lock-BitLocker.md | 2 +- .../bitlocker/Remove-BitLockerKeyProtector.md | 2 +- docset/winserver2019-ps/bitlocker/Resume-BitLocker.md | 2 +- docset/winserver2019-ps/bitlocker/Suspend-BitLocker.md | 2 +- docset/winserver2019-ps/bitlocker/Unlock-BitLocker.md | 2 +- docset/winserver2019-ps/bitstransfer/Add-BitsFile.md | 2 +- .../winserver2019-ps/bitstransfer/Complete-BitsTransfer.md | 2 +- docset/winserver2019-ps/bitstransfer/Get-BitsTransfer.md | 2 +- docset/winserver2019-ps/bitstransfer/Remove-BitsTransfer.md | 2 +- docset/winserver2019-ps/bitstransfer/Resume-BitsTransfer.md | 2 +- docset/winserver2019-ps/bitstransfer/Set-BitsTransfer.md | 2 +- docset/winserver2019-ps/bitstransfer/Start-BitsTransfer.md | 2 +- .../winserver2019-ps/bitstransfer/Suspend-BitsTransfer.md | 2 +- .../booteventcollector/Checkpoint-SbecActiveConfig.md | 2 +- .../booteventcollector/Clear-SbecProviderCache.md | 2 +- .../booteventcollector/Disable-SbecAutologger.md | 2 +- .../winserver2019-ps/booteventcollector/Disable-SbecBcd.md | 2 +- .../booteventcollector/Enable-SbecAutologger.md | 2 +- .../winserver2019-ps/booteventcollector/Enable-SbecBcd.md | 2 +- .../booteventcollector/Enable-SbecBootImage.md | 2 +- .../booteventcollector/Enable-SbecWdsBcd.md | 2 +- .../booteventcollector/Get-SbecActiveConfig.md | 2 +- .../booteventcollector/Get-SbecBackupConfig.md | 2 +- .../booteventcollector/Get-SbecDestination.md | 2 +- .../booteventcollector/Get-SbecForwarding.md | 2 +- .../winserver2019-ps/booteventcollector/Get-SbecHistory.md | 2 +- .../booteventcollector/Get-SbecLocalizedMessage.md | 2 +- .../booteventcollector/Get-SbecLogSession.md | 2 +- .../booteventcollector/Get-SbecTraceProviders.md | 2 +- .../booteventcollector/New-SbecUnattendFragment.md | 2 +- .../booteventcollector/Redo-SbecActiveConfig.md | 2 +- .../booteventcollector/Restore-SbecBackupConfig.md | 2 +- .../booteventcollector/Save-SbecInstance.md | 2 +- .../booteventcollector/Save-SbecLogSession.md | 2 +- .../booteventcollector/Set-SbecActiveConfig.md | 2 +- .../booteventcollector/Set-SbecLogSession.md | 2 +- .../booteventcollector/Start-SbecInstance.md | 2 +- .../booteventcollector/Start-SbecLogSession.md | 2 +- .../booteventcollector/Start-SbecNtKernelLogSession.md | 2 +- .../booteventcollector/Start-SbecSimpleLogSession.md | 2 +- .../booteventcollector/Stop-SbecInstance.md | 2 +- .../booteventcollector/Stop-SbecLogSession.md | 2 +- .../booteventcollector/Test-SbecActiveConfig.md | 2 +- .../winserver2019-ps/booteventcollector/Test-SbecConfig.md | 2 +- .../booteventcollector/Undo-SbecActiveConfig.md | 2 +- .../branchcache/Add-BCDataCacheExtension.md | 2 +- docset/winserver2019-ps/branchcache/Clear-BCCache.md | 2 +- docset/winserver2019-ps/branchcache/Disable-BC.md | 2 +- .../winserver2019-ps/branchcache/Disable-BCDowngrading.md | 2 +- .../branchcache/Disable-BCServeOnBattery.md | 2 +- docset/winserver2019-ps/branchcache/Enable-BCDistributed.md | 2 +- docset/winserver2019-ps/branchcache/Enable-BCDowngrading.md | 2 +- .../winserver2019-ps/branchcache/Enable-BCHostedClient.md | 2 +- .../winserver2019-ps/branchcache/Enable-BCHostedServer.md | 2 +- docset/winserver2019-ps/branchcache/Enable-BCLocal.md | 2 +- .../winserver2019-ps/branchcache/Enable-BCServeOnBattery.md | 2 +- .../winserver2019-ps/branchcache/Export-BCCachePackage.md | 2 +- docset/winserver2019-ps/branchcache/Export-BCSecretKey.md | 2 +- .../branchcache/Get-BCClientConfiguration.md | 2 +- .../branchcache/Get-BCContentServerConfiguration.md | 2 +- docset/winserver2019-ps/branchcache/Get-BCDataCache.md | 2 +- .../branchcache/Get-BCDataCacheExtension.md | 2 +- docset/winserver2019-ps/branchcache/Get-BCHashCache.md | 2 +- .../branchcache/Get-BCHostedCacheServerConfiguration.md | 2 +- .../branchcache/Get-BCNetworkConfiguration.md | 2 +- docset/winserver2019-ps/branchcache/Get-BCStatus.md | 2 +- .../winserver2019-ps/branchcache/Import-BCCachePackage.md | 2 +- docset/winserver2019-ps/branchcache/Import-BCSecretKey.md | 2 +- .../winserver2019-ps/branchcache/Publish-BCFileContent.md | 2 +- docset/winserver2019-ps/branchcache/Publish-BCWebContent.md | 2 +- .../branchcache/Remove-BCDataCacheExtension.md | 2 +- docset/winserver2019-ps/branchcache/Reset-BC.md | 2 +- docset/winserver2019-ps/branchcache/Set-BCAuthentication.md | 2 +- docset/winserver2019-ps/branchcache/Set-BCCache.md | 2 +- .../branchcache/Set-BCDataCacheEntryMaxAge.md | 2 +- docset/winserver2019-ps/branchcache/Set-BCMinSMBLatency.md | 2 +- docset/winserver2019-ps/branchcache/Set-BCSecretKey.md | 2 +- .../clusterawareupdating/Add-CauClusterRole.md | 2 +- .../clusterawareupdating/Disable-CauClusterRole.md | 2 +- .../clusterawareupdating/Enable-CauClusterRole.md | 2 +- .../clusterawareupdating/Export-CauReport.md | 2 +- .../clusterawareupdating/Get-CauClusterRole.md | 2 +- .../winserver2019-ps/clusterawareupdating/Get-CauPlugin.md | 2 +- .../winserver2019-ps/clusterawareupdating/Get-CauReport.md | 2 +- docset/winserver2019-ps/clusterawareupdating/Get-CauRun.md | 2 +- .../winserver2019-ps/clusterawareupdating/Invoke-CauRun.md | 2 +- .../winserver2019-ps/clusterawareupdating/Invoke-CauScan.md | 2 +- .../clusterawareupdating/Register-CauPlugin.md | 2 +- .../clusterawareupdating/Remove-CauClusterRole.md | 2 +- .../clusterawareupdating/Save-CauDebugTrace.md | 2 +- .../clusterawareupdating/Set-CauClusterRole.md | 2 +- docset/winserver2019-ps/clusterawareupdating/Stop-CauRun.md | 2 +- .../winserver2019-ps/clusterawareupdating/Test-CauSetup.md | 2 +- .../clusterawareupdating/Unregister-CauPlugin.md | 2 +- docset/winserver2019-ps/configci/Add-SignerRule.md | 2 +- docset/winserver2019-ps/configci/ConvertFrom-CIPolicy.md | 2 +- docset/winserver2019-ps/configci/Edit-CIPolicyRule.md | 2 +- docset/winserver2019-ps/configci/Get-CIPolicy.md | 2 +- docset/winserver2019-ps/configci/Get-CIPolicyIdInfo.md | 2 +- docset/winserver2019-ps/configci/Get-CIPolicyInfo.md | 2 +- docset/winserver2019-ps/configci/Get-SystemDriver.md | 2 +- docset/winserver2019-ps/configci/Merge-CIPolicy.md | 2 +- docset/winserver2019-ps/configci/New-CIPolicy.md | 2 +- docset/winserver2019-ps/configci/New-CIPolicyRule.md | 2 +- docset/winserver2019-ps/configci/Remove-CIPolicyRule.md | 2 +- docset/winserver2019-ps/configci/Set-CIPolicyIdInfo.md | 2 +- docset/winserver2019-ps/configci/Set-CIPolicyVersion.md | 2 +- docset/winserver2019-ps/configci/Set-HVCIOptions.md | 2 +- docset/winserver2019-ps/configci/Set-RuleOption.md | 2 +- docset/winserver2019-ps/dcbqos/Disable-NetQosFlowControl.md | 2 +- docset/winserver2019-ps/dcbqos/Enable-NetQosFlowControl.md | 2 +- docset/winserver2019-ps/dcbqos/Get-NetQosDcbxSetting.md | 2 +- docset/winserver2019-ps/dcbqos/Get-NetQosFlowControl.md | 2 +- docset/winserver2019-ps/dcbqos/Get-NetQosTrafficClass.md | 2 +- docset/winserver2019-ps/dcbqos/New-NetQosTrafficClass.md | 2 +- docset/winserver2019-ps/dcbqos/Remove-NetQosTrafficClass.md | 2 +- docset/winserver2019-ps/dcbqos/Set-NetQosDcbxSetting.md | 2 +- docset/winserver2019-ps/dcbqos/Set-NetQosFlowControl.md | 2 +- docset/winserver2019-ps/dcbqos/Set-NetQosTrafficClass.md | 2 +- docset/winserver2019-ps/dcbqos/Switch-NetQosDcbxSetting.md | 2 +- docset/winserver2019-ps/dcbqos/Switch-NetQosFlowControl.md | 2 +- docset/winserver2019-ps/dcbqos/Switch-NetQosTrafficClass.md | 2 +- .../winserver2019-ps/deduplication/Disable-DedupVolume.md | 2 +- docset/winserver2019-ps/deduplication/Enable-DedupVolume.md | 2 +- docset/winserver2019-ps/deduplication/Expand-DedupFile.md | 2 +- docset/winserver2019-ps/deduplication/Get-DedupJob.md | 2 +- docset/winserver2019-ps/deduplication/Get-DedupMetadata.md | 2 +- docset/winserver2019-ps/deduplication/Get-DedupSchedule.md | 2 +- docset/winserver2019-ps/deduplication/Get-DedupStatus.md | 2 +- docset/winserver2019-ps/deduplication/Get-DedupVolume.md | 2 +- .../deduplication/Measure-DedupFileMetadata.md | 2 +- docset/winserver2019-ps/deduplication/New-DedupSchedule.md | 2 +- .../winserver2019-ps/deduplication/Remove-DedupSchedule.md | 2 +- docset/winserver2019-ps/deduplication/Set-DedupSchedule.md | 2 +- docset/winserver2019-ps/deduplication/Set-DedupVolume.md | 2 +- docset/winserver2019-ps/deduplication/Start-DedupJob.md | 2 +- docset/winserver2019-ps/deduplication/Stop-DedupJob.md | 2 +- docset/winserver2019-ps/deduplication/Update-DedupStatus.md | 2 +- docset/winserver2019-ps/defender/Add-MpPreference.md | 2 +- docset/winserver2019-ps/defender/Get-MpComputerStatus.md | 2 +- docset/winserver2019-ps/defender/Get-MpPreference.md | 2 +- docset/winserver2019-ps/defender/Get-MpThreat.md | 2 +- docset/winserver2019-ps/defender/Get-MpThreatCatalog.md | 2 +- docset/winserver2019-ps/defender/Get-MpThreatDetection.md | 2 +- docset/winserver2019-ps/defender/Remove-MpPreference.md | 2 +- docset/winserver2019-ps/defender/Remove-MpThreat.md | 2 +- docset/winserver2019-ps/defender/Set-MpPreference.md | 2 +- docset/winserver2019-ps/defender/Start-MpScan.md | 2 +- docset/winserver2019-ps/defender/Start-MpWDOScan.md | 2 +- docset/winserver2019-ps/defender/Update-MpSignature.md | 2 +- .../devicehealthattestation/Backup-DHASConfiguration.md | 2 +- .../Get-DHASActiveEncryptionCertificate.md | 2 +- .../Get-DHASActiveSigningCertificate.md | 2 +- .../Get-DHASCertificateChainPolicy.md | 2 +- .../Get-DHASInactiveEncryptionCertificate.md | 2 +- .../Get-DHASInactiveSigningCertificate.md | 2 +- .../Install-DeviceHealthAttestation.md | 2 +- .../Remove-DHASInactiveEncryptionCertificate.md | 2 +- .../Remove-DHASInactiveSigningCertificate.md | 2 +- .../devicehealthattestation/Restore-DHASConfiguration.md | 2 +- .../Set-DHASActiveEncryptionCertificate.md | 2 +- .../Set-DHASActiveSigningCertificate.md | 2 +- .../Set-DHASCertificateChainPolicy.md | 2 +- .../Set-DHASSupportedAuthenticationSchema.md | 2 +- .../Uninstall-DeviceHealthAttestation.md | 2 +- docset/winserver2019-ps/dfsn/Get-DfsnAccess.md | 2 +- docset/winserver2019-ps/dfsn/Get-DfsnFolder.md | 2 +- docset/winserver2019-ps/dfsn/Get-DfsnFolderTarget.md | 2 +- docset/winserver2019-ps/dfsn/Get-DfsnRoot.md | 2 +- docset/winserver2019-ps/dfsn/Get-DfsnRootTarget.md | 2 +- docset/winserver2019-ps/dfsn/Get-DfsnServerConfiguration.md | 2 +- docset/winserver2019-ps/dfsn/Grant-DfsnAccess.md | 2 +- docset/winserver2019-ps/dfsn/Move-DfsnFolder.md | 2 +- docset/winserver2019-ps/dfsn/New-DfsnFolder.md | 2 +- docset/winserver2019-ps/dfsn/New-DfsnFolderTarget.md | 2 +- docset/winserver2019-ps/dfsn/New-DfsnRoot.md | 2 +- docset/winserver2019-ps/dfsn/New-DfsnRootTarget.md | 2 +- docset/winserver2019-ps/dfsn/Remove-DfsnAccess.md | 2 +- docset/winserver2019-ps/dfsn/Remove-DfsnFolder.md | 2 +- docset/winserver2019-ps/dfsn/Remove-DfsnFolderTarget.md | 2 +- docset/winserver2019-ps/dfsn/Remove-DfsnRoot.md | 2 +- docset/winserver2019-ps/dfsn/Remove-DfsnRootTarget.md | 2 +- docset/winserver2019-ps/dfsn/Revoke-DfsnAccess.md | 2 +- docset/winserver2019-ps/dfsn/Set-DfsnFolder.md | 2 +- docset/winserver2019-ps/dfsn/Set-DfsnFolderTarget.md | 2 +- docset/winserver2019-ps/dfsn/Set-DfsnRoot.md | 2 +- docset/winserver2019-ps/dfsn/Set-DfsnRootTarget.md | 2 +- docset/winserver2019-ps/dfsn/Set-DfsnServerConfiguration.md | 2 +- docset/winserver2019-ps/dfsr/Add-DfsrConnection.md | 2 +- docset/winserver2019-ps/dfsr/Add-DfsrMember.md | 2 +- docset/winserver2019-ps/dfsr/ConvertFrom-DfsrGuid.md | 2 +- docset/winserver2019-ps/dfsr/Export-DfsrClone.md | 2 +- docset/winserver2019-ps/dfsr/Get-DfsReplicatedFolder.md | 2 +- docset/winserver2019-ps/dfsr/Get-DfsReplicationGroup.md | 2 +- docset/winserver2019-ps/dfsr/Get-DfsrBacklog.md | 2 +- docset/winserver2019-ps/dfsr/Get-DfsrCloneState.md | 2 +- docset/winserver2019-ps/dfsr/Get-DfsrConnection.md | 2 +- docset/winserver2019-ps/dfsr/Get-DfsrConnectionSchedule.md | 2 +- docset/winserver2019-ps/dfsr/Get-DfsrDelegation.md | 2 +- docset/winserver2019-ps/dfsr/Get-DfsrFileHash.md | 2 +- docset/winserver2019-ps/dfsr/Get-DfsrGroupSchedule.md | 2 +- docset/winserver2019-ps/dfsr/Get-DfsrIdRecord.md | 2 +- docset/winserver2019-ps/dfsr/Get-DfsrMember.md | 2 +- docset/winserver2019-ps/dfsr/Get-DfsrMembership.md | 2 +- docset/winserver2019-ps/dfsr/Get-DfsrPreservedFiles.md | 2 +- .../winserver2019-ps/dfsr/Get-DfsrServiceConfiguration.md | 2 +- docset/winserver2019-ps/dfsr/Get-DfsrState.md | 2 +- docset/winserver2019-ps/dfsr/Grant-DfsrDelegation.md | 2 +- docset/winserver2019-ps/dfsr/Import-DfsrClone.md | 2 +- docset/winserver2019-ps/dfsr/New-DfsReplicatedFolder.md | 2 +- docset/winserver2019-ps/dfsr/New-DfsReplicationGroup.md | 2 +- docset/winserver2019-ps/dfsr/Remove-DfsReplicatedFolder.md | 2 +- docset/winserver2019-ps/dfsr/Remove-DfsReplicationGroup.md | 2 +- docset/winserver2019-ps/dfsr/Remove-DfsrConnection.md | 2 +- docset/winserver2019-ps/dfsr/Remove-DfsrMember.md | 2 +- .../winserver2019-ps/dfsr/Remove-DfsrPropagationTestFile.md | 2 +- docset/winserver2019-ps/dfsr/Reset-DfsrCloneState.md | 2 +- docset/winserver2019-ps/dfsr/Restore-DfsrPreservedFiles.md | 2 +- docset/winserver2019-ps/dfsr/Revoke-DfsrDelegation.md | 2 +- docset/winserver2019-ps/dfsr/Set-DfsReplicatedFolder.md | 2 +- docset/winserver2019-ps/dfsr/Set-DfsReplicationGroup.md | 2 +- docset/winserver2019-ps/dfsr/Set-DfsrConnection.md | 2 +- docset/winserver2019-ps/dfsr/Set-DfsrConnectionSchedule.md | 2 +- docset/winserver2019-ps/dfsr/Set-DfsrGroupSchedule.md | 2 +- docset/winserver2019-ps/dfsr/Set-DfsrMember.md | 2 +- docset/winserver2019-ps/dfsr/Set-DfsrMembership.md | 2 +- .../winserver2019-ps/dfsr/Set-DfsrServiceConfiguration.md | 2 +- docset/winserver2019-ps/dfsr/Start-DfsrPropagationTest.md | 2 +- docset/winserver2019-ps/dfsr/Suspend-DfsReplicationGroup.md | 2 +- docset/winserver2019-ps/dfsr/Sync-DfsReplicationGroup.md | 2 +- .../winserver2019-ps/dfsr/Update-DfsrConfigurationFromAD.md | 2 +- docset/winserver2019-ps/dfsr/Write-DfsrHealthReport.md | 2 +- docset/winserver2019-ps/dfsr/Write-DfsrPropagationReport.md | 2 +- docset/winserver2019-ps/dhcpserver/Add-DhcpServerInDC.md | 2 +- .../dhcpserver/Add-DhcpServerSecurityGroup.md | 2 +- docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4Class.md | 2 +- .../dhcpserver/Add-DhcpServerv4ExclusionRange.md | 2 +- .../winserver2019-ps/dhcpserver/Add-DhcpServerv4Failover.md | 2 +- .../dhcpserver/Add-DhcpServerv4FailoverScope.md | 2 +- .../winserver2019-ps/dhcpserver/Add-DhcpServerv4Filter.md | 2 +- docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4Lease.md | 2 +- .../dhcpserver/Add-DhcpServerv4MulticastExclusionRange.md | 2 +- .../dhcpserver/Add-DhcpServerv4MulticastScope.md | 2 +- .../dhcpserver/Add-DhcpServerv4OptionDefinition.md | 2 +- .../winserver2019-ps/dhcpserver/Add-DhcpServerv4Policy.md | 2 +- .../dhcpserver/Add-DhcpServerv4PolicyIPRange.md | 2 +- .../dhcpserver/Add-DhcpServerv4Reservation.md | 2 +- docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4Scope.md | 2 +- .../dhcpserver/Add-DhcpServerv4Superscope.md | 2 +- docset/winserver2019-ps/dhcpserver/Add-DhcpServerv6Class.md | 2 +- .../dhcpserver/Add-DhcpServerv6ExclusionRange.md | 2 +- docset/winserver2019-ps/dhcpserver/Add-DhcpServerv6Lease.md | 2 +- .../dhcpserver/Add-DhcpServerv6OptionDefinition.md | 2 +- .../dhcpserver/Add-DhcpServerv6Reservation.md | 2 +- docset/winserver2019-ps/dhcpserver/Add-DhcpServerv6Scope.md | 2 +- docset/winserver2019-ps/dhcpserver/Backup-DhcpServer.md | 2 +- docset/winserver2019-ps/dhcpserver/Export-DhcpServer.md | 2 +- .../winserver2019-ps/dhcpserver/Get-DhcpServerAuditLog.md | 2 +- .../winserver2019-ps/dhcpserver/Get-DhcpServerDatabase.md | 2 +- .../dhcpserver/Get-DhcpServerDnsCredential.md | 2 +- docset/winserver2019-ps/dhcpserver/Get-DhcpServerInDC.md | 2 +- docset/winserver2019-ps/dhcpserver/Get-DhcpServerSetting.md | 2 +- docset/winserver2019-ps/dhcpserver/Get-DhcpServerVersion.md | 2 +- .../winserver2019-ps/dhcpserver/Get-DhcpServerv4Binding.md | 2 +- docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4Class.md | 2 +- .../dhcpserver/Get-DhcpServerv4DnsSetting.md | 2 +- .../dhcpserver/Get-DhcpServerv4ExclusionRange.md | 2 +- .../winserver2019-ps/dhcpserver/Get-DhcpServerv4Failover.md | 2 +- .../winserver2019-ps/dhcpserver/Get-DhcpServerv4Filter.md | 2 +- .../dhcpserver/Get-DhcpServerv4FilterList.md | 2 +- .../dhcpserver/Get-DhcpServerv4FreeIPAddress.md | 2 +- docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4Lease.md | 2 +- .../dhcpserver/Get-DhcpServerv4MulticastExclusionRange.md | 2 +- .../dhcpserver/Get-DhcpServerv4MulticastLease.md | 2 +- .../dhcpserver/Get-DhcpServerv4MulticastScope.md | 2 +- .../dhcpserver/Get-DhcpServerv4MulticastScopeStatistics.md | 2 +- .../dhcpserver/Get-DhcpServerv4OptionDefinition.md | 2 +- .../dhcpserver/Get-DhcpServerv4OptionValue.md | 2 +- .../winserver2019-ps/dhcpserver/Get-DhcpServerv4Policy.md | 2 +- .../dhcpserver/Get-DhcpServerv4PolicyIPRange.md | 2 +- .../dhcpserver/Get-DhcpServerv4Reservation.md | 2 +- docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4Scope.md | 2 +- .../dhcpserver/Get-DhcpServerv4ScopeStatistics.md | 2 +- .../dhcpserver/Get-DhcpServerv4Statistics.md | 2 +- .../dhcpserver/Get-DhcpServerv4Superscope.md | 2 +- .../dhcpserver/Get-DhcpServerv4SuperscopeStatistics.md | 2 +- .../winserver2019-ps/dhcpserver/Get-DhcpServerv6Binding.md | 2 +- docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6Class.md | 2 +- .../dhcpserver/Get-DhcpServerv6DnsSetting.md | 2 +- .../dhcpserver/Get-DhcpServerv6ExclusionRange.md | 2 +- .../dhcpserver/Get-DhcpServerv6FreeIPAddress.md | 2 +- docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6Lease.md | 2 +- .../dhcpserver/Get-DhcpServerv6OptionDefinition.md | 2 +- .../dhcpserver/Get-DhcpServerv6OptionValue.md | 2 +- .../dhcpserver/Get-DhcpServerv6Reservation.md | 2 +- docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6Scope.md | 2 +- .../dhcpserver/Get-DhcpServerv6ScopeStatistics.md | 2 +- .../dhcpserver/Get-DhcpServerv6StatelessStatistics.md | 2 +- .../dhcpserver/Get-DhcpServerv6StatelessStore.md | 2 +- .../dhcpserver/Get-DhcpServerv6Statistics.md | 2 +- docset/winserver2019-ps/dhcpserver/Import-DhcpServer.md | 2 +- .../dhcpserver/Invoke-DhcpServerv4FailoverReplication.md | 2 +- .../dhcpserver/Remove-DhcpServerDnsCredential.md | 2 +- docset/winserver2019-ps/dhcpserver/Remove-DhcpServerInDC.md | 2 +- .../winserver2019-ps/dhcpserver/Remove-DhcpServerv4Class.md | 2 +- .../dhcpserver/Remove-DhcpServerv4ExclusionRange.md | 2 +- .../dhcpserver/Remove-DhcpServerv4Failover.md | 2 +- .../dhcpserver/Remove-DhcpServerv4FailoverScope.md | 2 +- .../dhcpserver/Remove-DhcpServerv4Filter.md | 2 +- .../winserver2019-ps/dhcpserver/Remove-DhcpServerv4Lease.md | 2 +- .../Remove-DhcpServerv4MulticastExclusionRange.md | 2 +- .../dhcpserver/Remove-DhcpServerv4MulticastLease.md | 2 +- .../dhcpserver/Remove-DhcpServerv4MulticastScope.md | 2 +- .../dhcpserver/Remove-DhcpServerv4OptionDefinition.md | 2 +- .../dhcpserver/Remove-DhcpServerv4OptionValue.md | 2 +- .../dhcpserver/Remove-DhcpServerv4Policy.md | 2 +- .../dhcpserver/Remove-DhcpServerv4PolicyIPRange.md | 2 +- .../dhcpserver/Remove-DhcpServerv4Reservation.md | 2 +- .../winserver2019-ps/dhcpserver/Remove-DhcpServerv4Scope.md | 2 +- .../dhcpserver/Remove-DhcpServerv4Superscope.md | 2 +- .../winserver2019-ps/dhcpserver/Remove-DhcpServerv6Class.md | 2 +- .../dhcpserver/Remove-DhcpServerv6ExclusionRange.md | 2 +- .../winserver2019-ps/dhcpserver/Remove-DhcpServerv6Lease.md | 2 +- .../dhcpserver/Remove-DhcpServerv6OptionDefinition.md | 2 +- .../dhcpserver/Remove-DhcpServerv6OptionValue.md | 2 +- .../dhcpserver/Remove-DhcpServerv6Reservation.md | 2 +- .../winserver2019-ps/dhcpserver/Remove-DhcpServerv6Scope.md | 2 +- .../dhcpserver/Rename-DhcpServerv4Superscope.md | 2 +- .../dhcpserver/Repair-DhcpServerv4IPRecord.md | 2 +- docset/winserver2019-ps/dhcpserver/Restore-DhcpServer.md | 2 +- .../winserver2019-ps/dhcpserver/Set-DhcpServerAuditLog.md | 2 +- .../winserver2019-ps/dhcpserver/Set-DhcpServerDatabase.md | 2 +- .../dhcpserver/Set-DhcpServerDnsCredential.md | 2 +- docset/winserver2019-ps/dhcpserver/Set-DhcpServerSetting.md | 2 +- .../winserver2019-ps/dhcpserver/Set-DhcpServerv4Binding.md | 2 +- docset/winserver2019-ps/dhcpserver/Set-DhcpServerv4Class.md | 2 +- .../dhcpserver/Set-DhcpServerv4DnsSetting.md | 2 +- .../winserver2019-ps/dhcpserver/Set-DhcpServerv4Failover.md | 2 +- .../dhcpserver/Set-DhcpServerv4FilterList.md | 2 +- .../dhcpserver/Set-DhcpServerv4MulticastScope.md | 2 +- .../dhcpserver/Set-DhcpServerv4OptionDefinition.md | 2 +- .../dhcpserver/Set-DhcpServerv4OptionValue.md | 2 +- .../winserver2019-ps/dhcpserver/Set-DhcpServerv4Policy.md | 2 +- .../dhcpserver/Set-DhcpServerv4Reservation.md | 2 +- docset/winserver2019-ps/dhcpserver/Set-DhcpServerv4Scope.md | 2 +- .../winserver2019-ps/dhcpserver/Set-DhcpServerv6Binding.md | 2 +- docset/winserver2019-ps/dhcpserver/Set-DhcpServerv6Class.md | 2 +- .../dhcpserver/Set-DhcpServerv6DnsSetting.md | 2 +- .../dhcpserver/Set-DhcpServerv6OptionDefinition.md | 2 +- .../dhcpserver/Set-DhcpServerv6OptionValue.md | 2 +- .../dhcpserver/Set-DhcpServerv6Reservation.md | 2 +- docset/winserver2019-ps/dhcpserver/Set-DhcpServerv6Scope.md | 2 +- .../dhcpserver/Set-DhcpServerv6StatelessStore.md | 2 +- .../Disable-DAManualEntryPointSelection.md | 2 +- .../Enable-DAManualEntryPointSelection.md | 2 +- .../Get-DAClientExperienceConfiguration.md | 2 +- .../Get-DAEntryPointTableItem.md | 2 +- .../New-DAEntryPointTableItem.md | 2 +- .../Remove-DAEntryPointTableItem.md | 2 +- .../Rename-DAEntryPointTableItem.md | 2 +- .../Reset-DAClientExperienceConfiguration.md | 2 +- .../Reset-DAEntryPointTableItem.md | 2 +- .../Set-DAClientExperienceConfiguration.md | 2 +- .../Set-DAEntryPointTableItem.md | 2 +- docset/winserver2019-ps/dism/Add-AppxProvisionedPackage.md | 2 +- docset/winserver2019-ps/dism/Add-WindowsCapability.md | 2 +- docset/winserver2019-ps/dism/Add-WindowsDriver.md | 2 +- docset/winserver2019-ps/dism/Add-WindowsImage.md | 2 +- docset/winserver2019-ps/dism/Add-WindowsPackage.md | 2 +- .../winserver2019-ps/dism/Clear-WindowsCorruptMountPoint.md | 2 +- .../winserver2019-ps/dism/Disable-WindowsOptionalFeature.md | 2 +- docset/winserver2019-ps/dism/Dismount-WindowsImage.md | 2 +- .../winserver2019-ps/dism/Enable-WindowsOptionalFeature.md | 2 +- .../winserver2019-ps/dism/Expand-WindowsCustomDataImage.md | 2 +- docset/winserver2019-ps/dism/Expand-WindowsImage.md | 2 +- docset/winserver2019-ps/dism/Export-WindowsDriver.md | 2 +- docset/winserver2019-ps/dism/Export-WindowsImage.md | 2 +- docset/winserver2019-ps/dism/Get-AppxProvisionedPackage.md | 2 +- docset/winserver2019-ps/dism/Get-WIMBootEntry.md | 2 +- docset/winserver2019-ps/dism/Get-WindowsCapability.md | 2 +- docset/winserver2019-ps/dism/Get-WindowsDriver.md | 2 +- docset/winserver2019-ps/dism/Get-WindowsEdition.md | 2 +- docset/winserver2019-ps/dism/Get-WindowsImage.md | 2 +- docset/winserver2019-ps/dism/Get-WindowsImageContent.md | 2 +- docset/winserver2019-ps/dism/Get-WindowsOptionalFeature.md | 2 +- docset/winserver2019-ps/dism/Get-WindowsPackage.md | 2 +- .../dism/Get-WindowsReservedStorageState.md | 2 +- docset/winserver2019-ps/dism/Mount-WindowsImage.md | 2 +- docset/winserver2019-ps/dism/New-WindowsCustomImage.md | 2 +- docset/winserver2019-ps/dism/New-WindowsImage.md | 2 +- docset/winserver2019-ps/dism/Optimize-WindowsImage.md | 2 +- .../winserver2019-ps/dism/Remove-AppxProvisionedPackage.md | 2 +- docset/winserver2019-ps/dism/Remove-WindowsCapability.md | 2 +- docset/winserver2019-ps/dism/Remove-WindowsDriver.md | 2 +- docset/winserver2019-ps/dism/Remove-WindowsImage.md | 2 +- docset/winserver2019-ps/dism/Remove-WindowsPackage.md | 2 +- docset/winserver2019-ps/dism/Repair-WindowsImage.md | 2 +- docset/winserver2019-ps/dism/Save-WindowsImage.md | 2 +- docset/winserver2019-ps/dism/Set-AppXProvisionedDataFile.md | 2 +- docset/winserver2019-ps/dism/Set-WindowsEdition.md | 2 +- docset/winserver2019-ps/dism/Set-WindowsProductKey.md | 2 +- .../dism/Set-WindowsReservedStorageState.md | 2 +- docset/winserver2019-ps/dism/Split-WindowsImage.md | 2 +- docset/winserver2019-ps/dism/Update-WIMBootEntry.md | 2 +- docset/winserver2019-ps/dism/Use-WindowsUnattend.md | 2 +- docset/winserver2019-ps/dnsclient/Add-DnsClientNrptRule.md | 2 +- docset/winserver2019-ps/dnsclient/Clear-DnsClientCache.md | 2 +- docset/winserver2019-ps/dnsclient/Get-DnsClient.md | 2 +- docset/winserver2019-ps/dnsclient/Get-DnsClientCache.md | 2 +- .../dnsclient/Get-DnsClientGlobalSetting.md | 2 +- .../winserver2019-ps/dnsclient/Get-DnsClientNrptGlobal.md | 2 +- .../winserver2019-ps/dnsclient/Get-DnsClientNrptPolicy.md | 2 +- docset/winserver2019-ps/dnsclient/Get-DnsClientNrptRule.md | 2 +- .../dnsclient/Get-DnsClientServerAddress.md | 2 +- docset/winserver2019-ps/dnsclient/Register-DnsClient.md | 2 +- .../winserver2019-ps/dnsclient/Remove-DnsClientNrptRule.md | 2 +- docset/winserver2019-ps/dnsclient/Resolve-DnsName.md | 2 +- docset/winserver2019-ps/dnsclient/Set-DnsClient.md | 2 +- .../dnsclient/Set-DnsClientGlobalSetting.md | 2 +- .../winserver2019-ps/dnsclient/Set-DnsClientNrptGlobal.md | 2 +- docset/winserver2019-ps/dnsclient/Set-DnsClientNrptRule.md | 2 +- .../dnsclient/Set-DnsClientServerAddress.md | 2 +- .../winserver2019-ps/dnsserver/Add-DnsServerClientSubnet.md | 2 +- .../dnsserver/Add-DnsServerConditionalForwarderZone.md | 2 +- .../dnsserver/Add-DnsServerDirectoryPartition.md | 2 +- docset/winserver2019-ps/dnsserver/Add-DnsServerForwarder.md | 2 +- .../winserver2019-ps/dnsserver/Add-DnsServerPrimaryZone.md | 2 +- .../dnsserver/Add-DnsServerQueryResolutionPolicy.md | 2 +- .../dnsserver/Add-DnsServerRecursionScope.md | 2 +- .../dnsserver/Add-DnsServerResourceRecord.md | 2 +- .../dnsserver/Add-DnsServerResourceRecordA.md | 2 +- .../dnsserver/Add-DnsServerResourceRecordAAAA.md | 2 +- .../dnsserver/Add-DnsServerResourceRecordCName.md | 2 +- .../dnsserver/Add-DnsServerResourceRecordDS.md | 2 +- .../dnsserver/Add-DnsServerResourceRecordDnsKey.md | 2 +- .../dnsserver/Add-DnsServerResourceRecordMX.md | 2 +- .../dnsserver/Add-DnsServerResourceRecordPtr.md | 2 +- .../Add-DnsServerResponseRateLimitingExceptionlist.md | 2 +- docset/winserver2019-ps/dnsserver/Add-DnsServerRootHint.md | 2 +- .../dnsserver/Add-DnsServerSecondaryZone.md | 2 +- .../winserver2019-ps/dnsserver/Add-DnsServerSigningKey.md | 2 +- docset/winserver2019-ps/dnsserver/Add-DnsServerStubZone.md | 2 +- .../winserver2019-ps/dnsserver/Add-DnsServerTrustAnchor.md | 2 +- .../dnsserver/Add-DnsServerVirtualizationInstance.md | 2 +- .../dnsserver/Add-DnsServerZoneDelegation.md | 2 +- docset/winserver2019-ps/dnsserver/Add-DnsServerZoneScope.md | 2 +- .../dnsserver/Add-DnsServerZoneTransferPolicy.md | 2 +- docset/winserver2019-ps/dnsserver/Clear-DnsServerCache.md | 2 +- .../winserver2019-ps/dnsserver/Clear-DnsServerStatistics.md | 2 +- .../dnsserver/ConvertTo-DnsServerPrimaryZone.md | 2 +- .../dnsserver/ConvertTo-DnsServerSecondaryZone.md | 2 +- .../winserver2019-ps/dnsserver/Disable-DnsServerPolicy.md | 2 +- .../dnsserver/Disable-DnsServerSigningKeyRollover.md | 2 +- docset/winserver2019-ps/dnsserver/Enable-DnsServerPolicy.md | 2 +- .../dnsserver/Enable-DnsServerSigningKeyRollover.md | 2 +- .../dnsserver/Export-DnsServerDnsSecPublicKey.md | 2 +- docset/winserver2019-ps/dnsserver/Export-DnsServerZone.md | 2 +- docset/winserver2019-ps/dnsserver/Get-DnsServer.md | 2 +- docset/winserver2019-ps/dnsserver/Get-DnsServerCache.md | 2 +- .../winserver2019-ps/dnsserver/Get-DnsServerClientSubnet.md | 2 +- .../winserver2019-ps/dnsserver/Get-DnsServerDiagnostics.md | 2 +- .../dnsserver/Get-DnsServerDirectoryPartition.md | 2 +- .../dnsserver/Get-DnsServerDnsSecZoneSetting.md | 2 +- docset/winserver2019-ps/dnsserver/Get-DnsServerDsSetting.md | 2 +- docset/winserver2019-ps/dnsserver/Get-DnsServerEDns.md | 2 +- docset/winserver2019-ps/dnsserver/Get-DnsServerForwarder.md | 2 +- .../dnsserver/Get-DnsServerGlobalNameZone.md | 2 +- .../dnsserver/Get-DnsServerGlobalQueryBlockList.md | 2 +- .../dnsserver/Get-DnsServerQueryResolutionPolicy.md | 2 +- docset/winserver2019-ps/dnsserver/Get-DnsServerRecursion.md | 2 +- .../dnsserver/Get-DnsServerRecursionScope.md | 2 +- .../dnsserver/Get-DnsServerResourceRecord.md | 2 +- .../dnsserver/Get-DnsServerResponseRateLimiting.md | 2 +- .../Get-DnsServerResponseRateLimitingExceptionlist.md | 2 +- docset/winserver2019-ps/dnsserver/Get-DnsServerRootHint.md | 2 +- .../winserver2019-ps/dnsserver/Get-DnsServerScavenging.md | 2 +- docset/winserver2019-ps/dnsserver/Get-DnsServerSetting.md | 2 +- .../winserver2019-ps/dnsserver/Get-DnsServerSigningKey.md | 2 +- .../winserver2019-ps/dnsserver/Get-DnsServerStatistics.md | 2 +- .../winserver2019-ps/dnsserver/Get-DnsServerTrustAnchor.md | 2 +- .../winserver2019-ps/dnsserver/Get-DnsServerTrustPoint.md | 2 +- .../dnsserver/Get-DnsServerVirtualizationInstance.md | 2 +- docset/winserver2019-ps/dnsserver/Get-DnsServerZone.md | 2 +- docset/winserver2019-ps/dnsserver/Get-DnsServerZoneAging.md | 2 +- .../dnsserver/Get-DnsServerZoneDelegation.md | 2 +- docset/winserver2019-ps/dnsserver/Get-DnsServerZoneScope.md | 2 +- .../dnsserver/Get-DnsServerZoneTransferPolicy.md | 2 +- .../dnsserver/Import-DnsServerResourceRecordDS.md | 2 +- .../winserver2019-ps/dnsserver/Import-DnsServerRootHint.md | 2 +- .../dnsserver/Import-DnsServerTrustAnchor.md | 2 +- .../dnsserver/Invoke-DnsServerSigningKeyRollover.md | 2 +- .../winserver2019-ps/dnsserver/Invoke-DnsServerZoneSign.md | 2 +- .../dnsserver/Invoke-DnsServerZoneUnsign.md | 2 +- .../dnsserver/Register-DnsServerDirectoryPartition.md | 2 +- .../dnsserver/Remove-DnsServerClientSubnet.md | 2 +- .../dnsserver/Remove-DnsServerDirectoryPartition.md | 2 +- .../winserver2019-ps/dnsserver/Remove-DnsServerForwarder.md | 2 +- .../dnsserver/Remove-DnsServerQueryResolutionPolicy.md | 2 +- .../dnsserver/Remove-DnsServerRecursionScope.md | 2 +- .../dnsserver/Remove-DnsServerResourceRecord.md | 2 +- .../Remove-DnsServerResponseRateLimitingExceptionlist.md | 2 +- .../winserver2019-ps/dnsserver/Remove-DnsServerRootHint.md | 2 +- .../dnsserver/Remove-DnsServerSigningKey.md | 2 +- .../dnsserver/Remove-DnsServerTrustAnchor.md | 2 +- .../dnsserver/Remove-DnsServerVirtualizationInstance.md | 2 +- docset/winserver2019-ps/dnsserver/Remove-DnsServerZone.md | 2 +- .../dnsserver/Remove-DnsServerZoneDelegation.md | 2 +- .../winserver2019-ps/dnsserver/Remove-DnsServerZoneScope.md | 2 +- .../dnsserver/Remove-DnsServerZoneTransferPolicy.md | 2 +- .../dnsserver/Reset-DnsServerZoneKeyMasterRole.md | 2 +- .../dnsserver/Restore-DnsServerPrimaryZone.md | 2 +- .../dnsserver/Restore-DnsServerSecondaryZone.md | 2 +- docset/winserver2019-ps/dnsserver/Resume-DnsServerZone.md | 2 +- docset/winserver2019-ps/dnsserver/Set-DnsServer.md | 2 +- docset/winserver2019-ps/dnsserver/Set-DnsServerCache.md | 2 +- .../winserver2019-ps/dnsserver/Set-DnsServerClientSubnet.md | 2 +- .../dnsserver/Set-DnsServerConditionalForwarderZone.md | 2 +- .../winserver2019-ps/dnsserver/Set-DnsServerDiagnostics.md | 2 +- .../dnsserver/Set-DnsServerDnsSecZoneSetting.md | 2 +- docset/winserver2019-ps/dnsserver/Set-DnsServerDsSetting.md | 2 +- docset/winserver2019-ps/dnsserver/Set-DnsServerEDns.md | 2 +- docset/winserver2019-ps/dnsserver/Set-DnsServerForwarder.md | 2 +- .../dnsserver/Set-DnsServerGlobalNameZone.md | 2 +- .../dnsserver/Set-DnsServerGlobalQueryBlockList.md | 2 +- .../winserver2019-ps/dnsserver/Set-DnsServerPrimaryZone.md | 2 +- .../dnsserver/Set-DnsServerQueryResolutionPolicy.md | 2 +- docset/winserver2019-ps/dnsserver/Set-DnsServerRecursion.md | 2 +- .../dnsserver/Set-DnsServerRecursionScope.md | 2 +- .../dnsserver/Set-DnsServerResourceRecord.md | 2 +- .../dnsserver/Set-DnsServerResourceRecordAging.md | 2 +- .../dnsserver/Set-DnsServerResponseRateLimiting.md | 2 +- .../Set-DnsServerResponseRateLimitingExceptionlist.md | 2 +- docset/winserver2019-ps/dnsserver/Set-DnsServerRootHint.md | 2 +- .../winserver2019-ps/dnsserver/Set-DnsServerScavenging.md | 2 +- .../dnsserver/Set-DnsServerSecondaryZone.md | 2 +- docset/winserver2019-ps/dnsserver/Set-DnsServerSetting.md | 2 +- .../winserver2019-ps/dnsserver/Set-DnsServerSigningKey.md | 2 +- docset/winserver2019-ps/dnsserver/Set-DnsServerStubZone.md | 2 +- .../dnsserver/Set-DnsServerVirtualizationInstance.md | 2 +- docset/winserver2019-ps/dnsserver/Set-DnsServerZoneAging.md | 2 +- .../dnsserver/Set-DnsServerZoneDelegation.md | 2 +- .../dnsserver/Set-DnsServerZoneTransferPolicy.md | 2 +- docset/winserver2019-ps/dnsserver/Show-DnsServerCache.md | 2 +- .../dnsserver/Show-DnsServerKeyStorageProvider.md | 2 +- .../winserver2019-ps/dnsserver/Start-DnsServerScavenging.md | 2 +- .../dnsserver/Start-DnsServerZoneTransfer.md | 2 +- .../dnsserver/Step-DnsServerSigningKeyRollover.md | 2 +- docset/winserver2019-ps/dnsserver/Suspend-DnsServerZone.md | 2 +- docset/winserver2019-ps/dnsserver/Sync-DnsServerZone.md | 2 +- docset/winserver2019-ps/dnsserver/Test-DnsServer.md | 2 +- .../dnsserver/Test-DnsServerDnsSecZoneSetting.md | 2 +- .../dnsserver/Unregister-DnsServerDirectoryPartition.md | 2 +- .../dnsserver/Update-DnsServerTrustPoint.md | 2 +- .../eventtracingmanagement/Add-EtwTraceProvider.md | 2 +- .../eventtracingmanagement/Get-AutologgerConfig.md | 2 +- .../eventtracingmanagement/Get-EtwTraceProvider.md | 2 +- .../eventtracingmanagement/Get-EtwTraceSession.md | 2 +- .../eventtracingmanagement/New-AutologgerConfig.md | 2 +- .../eventtracingmanagement/New-EtwTraceSession.md | 2 +- .../eventtracingmanagement/Remove-AutologgerConfig.md | 2 +- .../eventtracingmanagement/Remove-EtwTraceProvider.md | 2 +- .../eventtracingmanagement/Save-EtwTraceSession.md | 2 +- .../eventtracingmanagement/Send-EtwTraceSession.md | 2 +- .../eventtracingmanagement/Set-AutologgerConfig.md | 2 +- .../eventtracingmanagement/Set-EtwTraceProvider.md | 2 +- .../eventtracingmanagement/Start-EtwTraceSession.md | 2 +- .../eventtracingmanagement/Stop-EtwTraceSession.md | 2 +- .../eventtracingmanagement/Update-EtwTraceSession.md | 2 +- .../failoverclusters/Add-ClusterCheckpoint.md | 2 +- docset/winserver2019-ps/failoverclusters/Add-ClusterDisk.md | 2 +- .../failoverclusters/Add-ClusterFileServerRole.md | 2 +- .../failoverclusters/Add-ClusterGenericApplicationRole.md | 2 +- .../failoverclusters/Add-ClusterGenericScriptRole.md | 2 +- .../failoverclusters/Add-ClusterGenericServiceRole.md | 2 +- .../winserver2019-ps/failoverclusters/Add-ClusterGroup.md | 2 +- .../failoverclusters/Add-ClusterGroupSetDependency.md | 2 +- .../failoverclusters/Add-ClusterGroupToSet.md | 2 +- docset/winserver2019-ps/failoverclusters/Add-ClusterNode.md | 2 +- .../failoverclusters/Add-ClusterResource.md | 2 +- .../failoverclusters/Add-ClusterResourceDependency.md | 2 +- .../failoverclusters/Add-ClusterResourceType.md | 2 +- .../failoverclusters/Add-ClusterScaleOutFileServerRole.md | 2 +- .../failoverclusters/Add-ClusterSharedVolume.md | 2 +- .../failoverclusters/Add-ClusterVMMonitoredItem.md | 2 +- .../failoverclusters/Add-ClusterVirtualMachineRole.md | 2 +- .../failoverclusters/Add-ClusteriSCSITargetServerRole.md | 2 +- .../failoverclusters/Block-ClusterAccess.md | 2 +- .../failoverclusters/Clear-ClusterDiskReservation.md | 2 +- .../winserver2019-ps/failoverclusters/Clear-ClusterNode.md | 2 +- .../failoverclusters/Disable-ClusterStorageSpacesDirect.md | 2 +- .../failoverclusters/Enable-ClusterStorageSpacesDirect.md | 2 +- docset/winserver2019-ps/failoverclusters/Get-Cluster.md | 2 +- .../winserver2019-ps/failoverclusters/Get-ClusterAccess.md | 2 +- .../failoverclusters/Get-ClusterAvailableDisk.md | 2 +- .../failoverclusters/Get-ClusterCheckpoint.md | 2 +- .../failoverclusters/Get-ClusterDiagnosticInfo.md | 2 +- .../failoverclusters/Get-ClusterFaultDomain.md | 2 +- .../failoverclusters/Get-ClusterFaultDomainXML.md | 2 +- .../winserver2019-ps/failoverclusters/Get-ClusterGroup.md | 2 +- .../failoverclusters/Get-ClusterGroupSet.md | 2 +- .../failoverclusters/Get-ClusterGroupSetDependency.md | 2 +- docset/winserver2019-ps/failoverclusters/Get-ClusterLog.md | 2 +- .../winserver2019-ps/failoverclusters/Get-ClusterNetwork.md | 2 +- .../failoverclusters/Get-ClusterNetworkInterface.md | 2 +- docset/winserver2019-ps/failoverclusters/Get-ClusterNode.md | 2 +- .../failoverclusters/Get-ClusterOwnerNode.md | 2 +- .../failoverclusters/Get-ClusterParameter.md | 2 +- .../winserver2019-ps/failoverclusters/Get-ClusterQuorum.md | 2 +- .../failoverclusters/Get-ClusterResource.md | 2 +- .../failoverclusters/Get-ClusterResourceDependency.md | 2 +- .../failoverclusters/Get-ClusterResourceDependencyReport.md | 2 +- .../failoverclusters/Get-ClusterResourceType.md | 2 +- .../failoverclusters/Get-ClusterSharedVolume.md | 2 +- .../failoverclusters/Get-ClusterSharedVolumeState.md | 2 +- .../failoverclusters/Get-ClusterStorageSpacesDirect.md | 2 +- .../failoverclusters/Get-ClusterVMMonitoredItem.md | 2 +- .../failoverclusters/Grant-ClusterAccess.md | 2 +- .../winserver2019-ps/failoverclusters/Move-ClusterGroup.md | 2 +- .../failoverclusters/Move-ClusterResource.md | 2 +- .../failoverclusters/Move-ClusterSharedVolume.md | 2 +- .../failoverclusters/Move-ClusterVirtualMachineRole.md | 2 +- docset/winserver2019-ps/failoverclusters/New-Cluster.md | 2 +- .../failoverclusters/New-ClusterFaultDomain.md | 2 +- .../failoverclusters/New-ClusterGroupSet.md | 2 +- .../failoverclusters/New-ClusterNameAccount.md | 2 +- docset/winserver2019-ps/failoverclusters/Remove-Cluster.md | 2 +- .../failoverclusters/Remove-ClusterAccess.md | 2 +- .../failoverclusters/Remove-ClusterCheckpoint.md | 2 +- .../failoverclusters/Remove-ClusterFaultDomain.md | 2 +- .../failoverclusters/Remove-ClusterGroup.md | 2 +- .../failoverclusters/Remove-ClusterGroupFromSet.md | 2 +- .../failoverclusters/Remove-ClusterGroupSet.md | 2 +- .../failoverclusters/Remove-ClusterGroupSetDependency.md | 2 +- .../winserver2019-ps/failoverclusters/Remove-ClusterNode.md | 2 +- .../failoverclusters/Remove-ClusterResource.md | 2 +- .../failoverclusters/Remove-ClusterResourceDependency.md | 2 +- .../failoverclusters/Remove-ClusterResourceType.md | 2 +- .../failoverclusters/Remove-ClusterSharedVolume.md | 2 +- .../failoverclusters/Remove-ClusterVMMonitoredItem.md | 2 +- .../failoverclusters/Repair-ClusterStorageSpacesDirect.md | 2 +- .../failoverclusters/Reset-ClusterVMMonitoredState.md | 2 +- .../winserver2019-ps/failoverclusters/Resume-ClusterNode.md | 2 +- .../failoverclusters/Resume-ClusterResource.md | 2 +- .../failoverclusters/Set-ClusterFaultDomain.md | 2 +- .../failoverclusters/Set-ClusterFaultDomainXML.md | 2 +- .../failoverclusters/Set-ClusterGroupSet.md | 2 +- docset/winserver2019-ps/failoverclusters/Set-ClusterLog.md | 2 +- .../failoverclusters/Set-ClusterOwnerNode.md | 2 +- .../failoverclusters/Set-ClusterParameter.md | 2 +- .../winserver2019-ps/failoverclusters/Set-ClusterQuorum.md | 2 +- .../failoverclusters/Set-ClusterResourceDependency.md | 2 +- .../failoverclusters/Set-ClusterStorageSpacesDirect.md | 2 +- .../failoverclusters/Set-ClusterStorageSpacesDirectDisk.md | 2 +- docset/winserver2019-ps/failoverclusters/Start-Cluster.md | 2 +- .../winserver2019-ps/failoverclusters/Start-ClusterGroup.md | 2 +- .../winserver2019-ps/failoverclusters/Start-ClusterNode.md | 2 +- .../failoverclusters/Start-ClusterResource.md | 2 +- docset/winserver2019-ps/failoverclusters/Stop-Cluster.md | 2 +- .../winserver2019-ps/failoverclusters/Stop-ClusterGroup.md | 2 +- .../winserver2019-ps/failoverclusters/Stop-ClusterNode.md | 2 +- .../failoverclusters/Stop-ClusterResource.md | 2 +- .../failoverclusters/Suspend-ClusterNode.md | 2 +- .../failoverclusters/Suspend-ClusterResource.md | 2 +- docset/winserver2019-ps/failoverclusters/Test-Cluster.md | 2 +- .../failoverclusters/Test-ClusterResourceFailure.md | 2 +- .../failoverclusters/Update-ClusterFunctionalLevel.md | 2 +- .../failoverclusters/Update-ClusterIPResource.md | 2 +- .../failoverclusters/Update-ClusterNetworkNameResource.md | 2 +- .../Update-ClusterVirtualMachineConfiguration.md | 2 +- .../fileserverresourcemanager/Get-FsrmAdrSetting.md | 2 +- .../fileserverresourcemanager/Get-FsrmAutoQuota.md | 2 +- .../fileserverresourcemanager/Get-FsrmClassification.md | 2 +- .../Get-FsrmClassificationPropertyDefinition.md | 2 +- .../fileserverresourcemanager/Get-FsrmClassificationRule.md | 2 +- .../fileserverresourcemanager/Get-FsrmEffectiveNamespace.md | 2 +- .../fileserverresourcemanager/Get-FsrmFileGroup.md | 2 +- .../fileserverresourcemanager/Get-FsrmFileManagementJob.md | 2 +- .../fileserverresourcemanager/Get-FsrmFileScreen.md | 2 +- .../Get-FsrmFileScreenException.md | 2 +- .../fileserverresourcemanager/Get-FsrmFileScreenTemplate.md | 2 +- .../fileserverresourcemanager/Get-FsrmMacro.md | 2 +- .../fileserverresourcemanager/Get-FsrmMgmtProperty.md | 2 +- .../fileserverresourcemanager/Get-FsrmQuota.md | 2 +- .../fileserverresourcemanager/Get-FsrmQuotaTemplate.md | 2 +- .../fileserverresourcemanager/Get-FsrmRmsTemplate.md | 2 +- .../fileserverresourcemanager/Get-FsrmSetting.md | 2 +- .../fileserverresourcemanager/Get-FsrmStorageReport.md | 2 +- .../fileserverresourcemanager/New-FsrmAction.md | 2 +- .../fileserverresourcemanager/New-FsrmAutoQuota.md | 2 +- .../New-FsrmClassificationPropertyDefinition.md | 2 +- .../New-FsrmClassificationPropertyValue.md | 2 +- .../fileserverresourcemanager/New-FsrmClassificationRule.md | 2 +- .../fileserverresourcemanager/New-FsrmFMJNotification.md | 2 +- .../fileserverresourcemanager/New-FsrmFileGroup.md | 2 +- .../fileserverresourcemanager/New-FsrmFileManagementJob.md | 2 +- .../fileserverresourcemanager/New-FsrmFileScreen.md | 2 +- .../New-FsrmFileScreenException.md | 2 +- .../fileserverresourcemanager/New-FsrmFileScreenTemplate.md | 2 +- .../fileserverresourcemanager/New-FsrmFmjAction.md | 2 +- .../fileserverresourcemanager/New-FsrmFmjCondition.md | 2 +- .../New-FsrmFmjNotificationAction.md | 2 +- .../fileserverresourcemanager/New-FsrmQuota.md | 2 +- .../fileserverresourcemanager/New-FsrmQuotaTemplate.md | 2 +- .../fileserverresourcemanager/New-FsrmQuotaThreshold.md | 2 +- .../fileserverresourcemanager/New-FsrmScheduledTask.md | 2 +- .../fileserverresourcemanager/New-FsrmStorageReport.md | 2 +- .../fileserverresourcemanager/Remove-FsrmAutoQuota.md | 2 +- .../Remove-FsrmClassificationPropertyDefinition.md | 2 +- .../Remove-FsrmClassificationRule.md | 2 +- .../fileserverresourcemanager/Remove-FsrmFileGroup.md | 2 +- .../Remove-FsrmFileManagementJob.md | 2 +- .../fileserverresourcemanager/Remove-FsrmFileScreen.md | 2 +- .../Remove-FsrmFileScreenException.md | 2 +- .../Remove-FsrmFileScreenTemplate.md | 2 +- .../fileserverresourcemanager/Remove-FsrmMgmtProperty.md | 2 +- .../fileserverresourcemanager/Remove-FsrmQuota.md | 2 +- .../fileserverresourcemanager/Remove-FsrmQuotaTemplate.md | 2 +- .../fileserverresourcemanager/Remove-FsrmStorageReport.md | 2 +- .../fileserverresourcemanager/Reset-FsrmFileScreen.md | 2 +- .../fileserverresourcemanager/Reset-FsrmQuota.md | 2 +- .../fileserverresourcemanager/Send-FsrmTestEmail.md | 2 +- .../fileserverresourcemanager/Set-FsrmAdrSetting.md | 2 +- .../fileserverresourcemanager/Set-FsrmAutoQuota.md | 2 +- .../fileserverresourcemanager/Set-FsrmClassification.md | 2 +- .../Set-FsrmClassificationPropertyDefinition.md | 2 +- .../fileserverresourcemanager/Set-FsrmClassificationRule.md | 2 +- .../fileserverresourcemanager/Set-FsrmFileGroup.md | 2 +- .../fileserverresourcemanager/Set-FsrmFileManagementJob.md | 2 +- .../fileserverresourcemanager/Set-FsrmFileScreen.md | 2 +- .../Set-FsrmFileScreenException.md | 2 +- .../fileserverresourcemanager/Set-FsrmFileScreenTemplate.md | 2 +- .../fileserverresourcemanager/Set-FsrmMgmtProperty.md | 2 +- .../fileserverresourcemanager/Set-FsrmQuota.md | 2 +- .../fileserverresourcemanager/Set-FsrmQuotaTemplate.md | 2 +- .../fileserverresourcemanager/Set-FsrmSetting.md | 2 +- .../fileserverresourcemanager/Set-FsrmStorageReport.md | 2 +- .../fileserverresourcemanager/Start-FsrmClassification.md | 2 +- .../Start-FsrmFileManagementJob.md | 2 +- .../fileserverresourcemanager/Start-FsrmStorageReport.md | 2 +- .../fileserverresourcemanager/Stop-FsrmClassification.md | 2 +- .../fileserverresourcemanager/Stop-FsrmFileManagementJob.md | 2 +- .../fileserverresourcemanager/Stop-FsrmStorageReport.md | 2 +- .../fileserverresourcemanager/Update-FsrmAutoQuota.md | 2 +- .../Update-FsrmClassificationPropertyDefinition.md | 2 +- .../fileserverresourcemanager/Update-FsrmQuota.md | 2 +- .../fileserverresourcemanager/Wait-FsrmClassification.md | 2 +- .../fileserverresourcemanager/Wait-FsrmFileManagementJob.md | 2 +- .../fileserverresourcemanager/Wait-FsrmStorageReport.md | 2 +- docset/winserver2019-ps/grouppolicy/Backup-GPO.md | 2 +- docset/winserver2019-ps/grouppolicy/Copy-GPO.md | 2 +- docset/winserver2019-ps/grouppolicy/Get-GPInheritance.md | 2 +- docset/winserver2019-ps/grouppolicy/Get-GPO.md | 2 +- docset/winserver2019-ps/grouppolicy/Get-GPOReport.md | 2 +- docset/winserver2019-ps/grouppolicy/Get-GPPermission.md | 2 +- .../winserver2019-ps/grouppolicy/Get-GPPrefRegistryValue.md | 2 +- docset/winserver2019-ps/grouppolicy/Get-GPRegistryValue.md | 2 +- .../grouppolicy/Get-GPResultantSetOfPolicy.md | 2 +- docset/winserver2019-ps/grouppolicy/Get-GPStarterGPO.md | 2 +- docset/winserver2019-ps/grouppolicy/Import-GPO.md | 2 +- docset/winserver2019-ps/grouppolicy/Invoke-GPUpdate.md | 2 +- docset/winserver2019-ps/grouppolicy/New-GPLink.md | 2 +- docset/winserver2019-ps/grouppolicy/New-GPO.md | 2 +- docset/winserver2019-ps/grouppolicy/New-GPStarterGPO.md | 2 +- docset/winserver2019-ps/grouppolicy/Remove-GPLink.md | 2 +- docset/winserver2019-ps/grouppolicy/Remove-GPO.md | 2 +- .../grouppolicy/Remove-GPPrefRegistryValue.md | 2 +- .../winserver2019-ps/grouppolicy/Remove-GPRegistryValue.md | 2 +- docset/winserver2019-ps/grouppolicy/Rename-GPO.md | 2 +- docset/winserver2019-ps/grouppolicy/Restore-GPO.md | 2 +- docset/winserver2019-ps/grouppolicy/Set-GPInheritance.md | 2 +- docset/winserver2019-ps/grouppolicy/Set-GPLink.md | 2 +- docset/winserver2019-ps/grouppolicy/Set-GPPermission.md | 2 +- .../winserver2019-ps/grouppolicy/Set-GPPrefRegistryValue.md | 2 +- docset/winserver2019-ps/grouppolicy/Set-GPRegistryValue.md | 2 +- .../Export-HwCertTestCollectionToXml.md | 2 +- .../Import-HwCertTestCollectionFromXml.md | 2 +- .../Merge-HwCertTestCollectionFromPackage.md | 2 +- .../Merge-HwCertTestCollectionFromXml.md | 2 +- .../New-HwCertProjectDefinitionFile.md | 2 +- .../hardwarecertification/New-HwCertTestCollection.md | 2 +- .../New-HwCertTestCollectionExcelReport.md | 2 +- .../hgsattestation/Add-HgsAttestationCIPolicy.md | 2 +- .../hgsattestation/Add-HgsAttestationDumpPolicy.md | 2 +- .../hgsattestation/Add-HgsAttestationHostGroup.md | 2 +- .../hgsattestation/Add-HgsAttestationTpmHost.md | 2 +- .../hgsattestation/Add-HgsAttestationTpmPolicy.md | 2 +- .../hgsattestation/Disable-HgsAttestationPolicy.md | 2 +- .../hgsattestation/Enable-HgsAttestationPolicy.md | 2 +- .../hgsattestation/Get-HgsAttestationHostGroup.md | 2 +- .../hgsattestation/Get-HgsAttestationPolicy.md | 2 +- .../hgsattestation/Get-HgsAttestationSignerCertificate.md | 2 +- .../hgsattestation/Get-HgsAttestationTpmHost.md | 2 +- .../hgsattestation/Remove-HgsAttestationHostGroup.md | 2 +- .../hgsattestation/Remove-HgsAttestationPolicy.md | 2 +- .../hgsattestation/Remove-HgsAttestationTpmHost.md | 2 +- .../winserver2019-ps/hgsclient/ConvertTo-HgsKeyProtector.md | 2 +- docset/winserver2019-ps/hgsclient/Export-HgsGuardian.md | 2 +- .../hgsclient/Get-HgsAttestationBaselinePolicy.md | 2 +- .../hgsclient/Get-HgsClientConfiguration.md | 2 +- docset/winserver2019-ps/hgsclient/Get-HgsGuardian.md | 2 +- .../hgsclient/Grant-HgsKeyProtectorAccess.md | 2 +- docset/winserver2019-ps/hgsclient/Import-HgsGuardian.md | 2 +- docset/winserver2019-ps/hgsclient/New-HgsGuardian.md | 2 +- docset/winserver2019-ps/hgsclient/New-HgsKeyProtector.md | 2 +- docset/winserver2019-ps/hgsclient/Remove-HgsGuardian.md | 2 +- .../hgsclient/Revoke-HgsKeyProtectorAccess.md | 2 +- .../hgsclient/Set-HgsClientConfiguration.md | 2 +- .../hgsclient/Test-HgsClientConfiguration.md | 2 +- docset/winserver2019-ps/hgsdiagnostics/Get-HgsTrace.md | 2 +- .../winserver2019-ps/hgsdiagnostics/Get-HgsTraceFileData.md | 2 +- .../winserver2019-ps/hgsdiagnostics/New-HgsTraceTarget.md | 2 +- .../winserver2019-ps/hgsdiagnostics/Test-HgsTraceTarget.md | 2 +- .../Add-HgsKeyProtectionAttestationSignerCertificate.md | 2 +- .../hgskeyprotection/Add-HgsKeyProtectionCertificate.md | 2 +- .../hgskeyprotection/Export-HgsKeyProtectionState.md | 2 +- .../Get-HgsKeyProtectionAttestationSignerCertificate.md | 2 +- .../hgskeyprotection/Get-HgsKeyProtectionCertificate.md | 2 +- .../hgskeyprotection/Get-HgsKeyProtectionConfiguration.md | 2 +- .../hgskeyprotection/Import-HgsKeyProtectionState.md | 2 +- .../Remove-HgsKeyProtectionAttestationSignerCertificate.md | 2 +- .../hgskeyprotection/Remove-HgsKeyProtectionCertificate.md | 2 +- ...et-HgsKeyProtectionAttestationSignerCertificatePolicy.md | 2 +- .../hgskeyprotection/Set-HgsKeyProtectionCertificate.md | 2 +- .../hgskeyprotection/Set-HgsKeyProtectionConfiguration.md | 2 +- docset/winserver2019-ps/hgsserver/Clear-HgsServer.md | 2 +- docset/winserver2019-ps/hgsserver/Export-HgsServerState.md | 2 +- docset/winserver2019-ps/hgsserver/Get-HgsServer.md | 2 +- docset/winserver2019-ps/hgsserver/Import-HgsServerState.md | 2 +- docset/winserver2019-ps/hgsserver/Initialize-HgsServer.md | 2 +- docset/winserver2019-ps/hgsserver/Install-HgsServer.md | 2 +- docset/winserver2019-ps/hgsserver/Set-HgsServer.md | 2 +- docset/winserver2019-ps/hgsserver/Test-HgsServer.md | 2 +- docset/winserver2019-ps/hgsserver/Uninstall-HgsServer.md | 2 +- docset/winserver2019-ps/hnvdiagnostics/Debug-SlbDatapath.md | 2 +- .../hnvdiagnostics/Debug-VirtualMachineQueueOperation.md | 2 +- .../hnvdiagnostics/Disable-MuxEchoResponder.md | 2 +- .../hnvdiagnostics/Enable-MuxEchoResponder.md | 2 +- docset/winserver2019-ps/hnvdiagnostics/Get-CustomerRoute.md | 2 +- .../hnvdiagnostics/Get-NetworkControllerVipResource.md | 2 +- docset/winserver2019-ps/hnvdiagnostics/Get-PACAMapping.md | 2 +- .../winserver2019-ps/hnvdiagnostics/Get-ProviderAddress.md | 2 +- .../hnvdiagnostics/Get-VMNetworkAdapterPortId.md | 2 +- .../hnvdiagnostics/Get-VMSwitchExternalPortId.md | 2 +- .../winserver2019-ps/hnvdiagnostics/Get-VipHostMapping.md | 2 +- .../hnvdiagnostics/Test-DipHostReachability.md | 2 +- .../hnvdiagnostics/Test-EncapOverheadSettings.md | 2 +- .../hnvdiagnostics/Test-LogicalNetworkConnection.md | 2 +- .../Test-LogicalNetworkSupportsJumboPacket.md | 2 +- .../winserver2019-ps/hnvdiagnostics/Test-VipReachability.md | 2 +- .../hnvdiagnostics/Test-VirtualNetworkConnection.md | 2 +- .../hostcomputeservice/Get-ComputeProcess.md | 2 +- .../hostcomputeservice/Stop-ComputeProcess.md | 2 +- docset/winserver2019-ps/hyper-v/Add-VMDvdDrive.md | 2 +- docset/winserver2019-ps/hyper-v/Add-VMFibreChannelHba.md | 2 +- docset/winserver2019-ps/hyper-v/Add-VMGroupMember.md | 2 +- docset/winserver2019-ps/hyper-v/Add-VMHardDiskDrive.md | 2 +- docset/winserver2019-ps/hyper-v/Add-VMMigrationNetwork.md | 2 +- docset/winserver2019-ps/hyper-v/Add-VMNetworkAdapter.md | 2 +- docset/winserver2019-ps/hyper-v/Add-VMNetworkAdapterAcl.md | 2 +- .../hyper-v/Add-VMNetworkAdapterExtendedAcl.md | 2 +- .../hyper-v/Add-VMRemoteFx3dVideoAdapter.md | 2 +- docset/winserver2019-ps/hyper-v/Add-VMScsiController.md | 2 +- docset/winserver2019-ps/hyper-v/Add-VMStoragePath.md | 2 +- docset/winserver2019-ps/hyper-v/Add-VMSwitch.md | 2 +- .../hyper-v/Add-VMSwitchExtensionPortFeature.md | 2 +- .../hyper-v/Add-VMSwitchExtensionSwitchFeature.md | 2 +- docset/winserver2019-ps/hyper-v/Add-VMSwitchTeamMember.md | 2 +- .../hyper-v/Add-VmNetworkAdapterRoutingDomainMapping.md | 2 +- docset/winserver2019-ps/hyper-v/Checkpoint-VM.md | 2 +- docset/winserver2019-ps/hyper-v/Compare-VM.md | 2 +- docset/winserver2019-ps/hyper-v/Complete-VMFailover.md | 2 +- docset/winserver2019-ps/hyper-v/Connect-VMNetworkAdapter.md | 2 +- docset/winserver2019-ps/hyper-v/Connect-VMSan.md | 2 +- docset/winserver2019-ps/hyper-v/Convert-VHD.md | 2 +- docset/winserver2019-ps/hyper-v/Copy-VMFile.md | 2 +- docset/winserver2019-ps/hyper-v/Debug-VM.md | 2 +- docset/winserver2019-ps/hyper-v/Disable-VMConsoleSupport.md | 2 +- docset/winserver2019-ps/hyper-v/Disable-VMEventing.md | 2 +- .../hyper-v/Disable-VMIntegrationService.md | 2 +- docset/winserver2019-ps/hyper-v/Disable-VMMigration.md | 2 +- .../hyper-v/Disable-VMRemoteFXPhysicalVideoAdapter.md | 2 +- .../winserver2019-ps/hyper-v/Disable-VMResourceMetering.md | 2 +- .../winserver2019-ps/hyper-v/Disable-VMSwitchExtension.md | 2 +- docset/winserver2019-ps/hyper-v/Disable-VMTPM.md | 2 +- .../winserver2019-ps/hyper-v/Disconnect-VMNetworkAdapter.md | 2 +- docset/winserver2019-ps/hyper-v/Disconnect-VMSan.md | 2 +- docset/winserver2019-ps/hyper-v/Dismount-VHD.md | 2 +- docset/winserver2019-ps/hyper-v/Enable-VMConsoleSupport.md | 2 +- docset/winserver2019-ps/hyper-v/Enable-VMEventing.md | 2 +- .../winserver2019-ps/hyper-v/Enable-VMIntegrationService.md | 2 +- docset/winserver2019-ps/hyper-v/Enable-VMMigration.md | 2 +- .../hyper-v/Enable-VMRemoteFXPhysicalVideoAdapter.md | 2 +- docset/winserver2019-ps/hyper-v/Enable-VMReplication.md | 2 +- .../winserver2019-ps/hyper-v/Enable-VMResourceMetering.md | 2 +- docset/winserver2019-ps/hyper-v/Enable-VMSwitchExtension.md | 2 +- docset/winserver2019-ps/hyper-v/Enable-VMTPM.md | 2 +- docset/winserver2019-ps/hyper-v/Export-VM.md | 2 +- docset/winserver2019-ps/hyper-v/Export-VMSnapshot.md | 2 +- docset/winserver2019-ps/hyper-v/Get-VHD.md | 2 +- docset/winserver2019-ps/hyper-v/Get-VHDSet.md | 2 +- docset/winserver2019-ps/hyper-v/Get-VHDSnapshot.md | 2 +- docset/winserver2019-ps/hyper-v/Get-VM.md | 2 +- docset/winserver2019-ps/hyper-v/Get-VMBios.md | 2 +- docset/winserver2019-ps/hyper-v/Get-VMComPort.md | 2 +- docset/winserver2019-ps/hyper-v/Get-VMConnectAccess.md | 2 +- docset/winserver2019-ps/hyper-v/Get-VMDvdDrive.md | 2 +- docset/winserver2019-ps/hyper-v/Get-VMFibreChannelHba.md | 2 +- docset/winserver2019-ps/hyper-v/Get-VMFirmware.md | 2 +- docset/winserver2019-ps/hyper-v/Get-VMFloppyDiskDrive.md | 2 +- docset/winserver2019-ps/hyper-v/Get-VMGroup.md | 2 +- docset/winserver2019-ps/hyper-v/Get-VMHardDiskDrive.md | 2 +- docset/winserver2019-ps/hyper-v/Get-VMHost.md | 2 +- docset/winserver2019-ps/hyper-v/Get-VMHostCluster.md | 2 +- docset/winserver2019-ps/hyper-v/Get-VMHostNumaNode.md | 2 +- docset/winserver2019-ps/hyper-v/Get-VMHostNumaNodeStatus.md | 2 +- .../winserver2019-ps/hyper-v/Get-VMHostSupportedVersion.md | 2 +- docset/winserver2019-ps/hyper-v/Get-VMIdeController.md | 2 +- docset/winserver2019-ps/hyper-v/Get-VMIntegrationService.md | 2 +- docset/winserver2019-ps/hyper-v/Get-VMKeyProtector.md | 2 +- docset/winserver2019-ps/hyper-v/Get-VMMemory.md | 2 +- docset/winserver2019-ps/hyper-v/Get-VMMigrationNetwork.md | 2 +- docset/winserver2019-ps/hyper-v/Get-VMNetworkAdapter.md | 2 +- docset/winserver2019-ps/hyper-v/Get-VMNetworkAdapterAcl.md | 2 +- .../hyper-v/Get-VMNetworkAdapterExtendedAcl.md | 2 +- .../hyper-v/Get-VMNetworkAdapterFailoverConfiguration.md | 2 +- .../hyper-v/Get-VMNetworkAdapterRoutingDomainMapping.md | 2 +- .../hyper-v/Get-VMNetworkAdapterTeamMapping.md | 2 +- docset/winserver2019-ps/hyper-v/Get-VMNetworkAdapterVlan.md | 2 +- docset/winserver2019-ps/hyper-v/Get-VMProcessor.md | 2 +- .../hyper-v/Get-VMRemoteFXPhysicalVideoAdapter.md | 2 +- .../hyper-v/Get-VMRemoteFx3dVideoAdapter.md | 2 +- docset/winserver2019-ps/hyper-v/Get-VMReplication.md | 2 +- .../hyper-v/Get-VMReplicationAuthorizationEntry.md | 2 +- docset/winserver2019-ps/hyper-v/Get-VMReplicationServer.md | 2 +- docset/winserver2019-ps/hyper-v/Get-VMResourcePool.md | 2 +- docset/winserver2019-ps/hyper-v/Get-VMSan.md | 2 +- docset/winserver2019-ps/hyper-v/Get-VMScsiController.md | 2 +- docset/winserver2019-ps/hyper-v/Get-VMSecurity.md | 2 +- docset/winserver2019-ps/hyper-v/Get-VMSnapshot.md | 2 +- docset/winserver2019-ps/hyper-v/Get-VMStoragePath.md | 2 +- docset/winserver2019-ps/hyper-v/Get-VMSwitch.md | 2 +- docset/winserver2019-ps/hyper-v/Get-VMSwitchExtension.md | 2 +- .../hyper-v/Get-VMSwitchExtensionPortData.md | 2 +- .../hyper-v/Get-VMSwitchExtensionPortFeature.md | 2 +- .../hyper-v/Get-VMSwitchExtensionSwitchData.md | 2 +- .../hyper-v/Get-VMSwitchExtensionSwitchFeature.md | 2 +- docset/winserver2019-ps/hyper-v/Get-VMSwitchTeam.md | 2 +- .../winserver2019-ps/hyper-v/Get-VMSystemSwitchExtension.md | 2 +- .../hyper-v/Get-VMSystemSwitchExtensionPortFeature.md | 2 +- .../hyper-v/Get-VMSystemSwitchExtensionSwitchFeature.md | 2 +- docset/winserver2019-ps/hyper-v/Get-VMVideo.md | 2 +- .../hyper-v/Get-VmNetworkAdapterIsolation.md | 2 +- docset/winserver2019-ps/hyper-v/Grant-VMConnectAccess.md | 2 +- docset/winserver2019-ps/hyper-v/Import-VM.md | 2 +- .../winserver2019-ps/hyper-v/Import-VMInitialReplication.md | 2 +- docset/winserver2019-ps/hyper-v/Measure-VM.md | 2 +- docset/winserver2019-ps/hyper-v/Measure-VMReplication.md | 2 +- docset/winserver2019-ps/hyper-v/Measure-VMResourcePool.md | 2 +- docset/winserver2019-ps/hyper-v/Merge-VHD.md | 2 +- docset/winserver2019-ps/hyper-v/Mount-VHD.md | 2 +- docset/winserver2019-ps/hyper-v/Move-VM.md | 2 +- docset/winserver2019-ps/hyper-v/Move-VMStorage.md | 2 +- docset/winserver2019-ps/hyper-v/New-VFD.md | 2 +- docset/winserver2019-ps/hyper-v/New-VHD.md | 2 +- docset/winserver2019-ps/hyper-v/New-VM.md | 2 +- docset/winserver2019-ps/hyper-v/New-VMGroup.md | 2 +- .../hyper-v/New-VMReplicationAuthorizationEntry.md | 2 +- docset/winserver2019-ps/hyper-v/New-VMResourcePool.md | 2 +- docset/winserver2019-ps/hyper-v/New-VMSan.md | 2 +- docset/winserver2019-ps/hyper-v/New-VMSwitch.md | 2 +- docset/winserver2019-ps/hyper-v/Optimize-VHD.md | 2 +- docset/winserver2019-ps/hyper-v/Optimize-VHDSet.md | 2 +- docset/winserver2019-ps/hyper-v/Remove-VHDSnapshot.md | 2 +- docset/winserver2019-ps/hyper-v/Remove-VM.md | 2 +- docset/winserver2019-ps/hyper-v/Remove-VMDvdDrive.md | 2 +- docset/winserver2019-ps/hyper-v/Remove-VMFibreChannelHba.md | 2 +- docset/winserver2019-ps/hyper-v/Remove-VMGroup.md | 2 +- docset/winserver2019-ps/hyper-v/Remove-VMGroupMember.md | 2 +- docset/winserver2019-ps/hyper-v/Remove-VMHardDiskDrive.md | 2 +- .../winserver2019-ps/hyper-v/Remove-VMMigrationNetwork.md | 2 +- docset/winserver2019-ps/hyper-v/Remove-VMNetworkAdapter.md | 2 +- .../winserver2019-ps/hyper-v/Remove-VMNetworkAdapterAcl.md | 2 +- .../hyper-v/Remove-VMNetworkAdapterExtendedAcl.md | 2 +- .../hyper-v/Remove-VMNetworkAdapterRoutingDomainMapping.md | 2 +- .../hyper-v/Remove-VMNetworkAdapterTeamMapping.md | 2 +- .../hyper-v/Remove-VMRemoteFx3dVideoAdapter.md | 2 +- docset/winserver2019-ps/hyper-v/Remove-VMReplication.md | 2 +- .../hyper-v/Remove-VMReplicationAuthorizationEntry.md | 2 +- docset/winserver2019-ps/hyper-v/Remove-VMResourcePool.md | 2 +- docset/winserver2019-ps/hyper-v/Remove-VMSan.md | 2 +- docset/winserver2019-ps/hyper-v/Remove-VMSavedState.md | 2 +- docset/winserver2019-ps/hyper-v/Remove-VMScsiController.md | 2 +- docset/winserver2019-ps/hyper-v/Remove-VMSnapshot.md | 2 +- docset/winserver2019-ps/hyper-v/Remove-VMStoragePath.md | 2 +- docset/winserver2019-ps/hyper-v/Remove-VMSwitch.md | 2 +- .../hyper-v/Remove-VMSwitchExtensionPortFeature.md | 2 +- .../hyper-v/Remove-VMSwitchExtensionSwitchFeature.md | 2 +- .../winserver2019-ps/hyper-v/Remove-VMSwitchTeamMember.md | 2 +- docset/winserver2019-ps/hyper-v/Rename-VM.md | 2 +- docset/winserver2019-ps/hyper-v/Rename-VMGroup.md | 2 +- docset/winserver2019-ps/hyper-v/Rename-VMNetworkAdapter.md | 2 +- docset/winserver2019-ps/hyper-v/Rename-VMResourcePool.md | 2 +- docset/winserver2019-ps/hyper-v/Rename-VMSan.md | 2 +- docset/winserver2019-ps/hyper-v/Rename-VMSnapshot.md | 2 +- docset/winserver2019-ps/hyper-v/Rename-VMSwitch.md | 2 +- docset/winserver2019-ps/hyper-v/Repair-VM.md | 2 +- .../hyper-v/Reset-VMReplicationStatistics.md | 2 +- docset/winserver2019-ps/hyper-v/Reset-VMResourceMetering.md | 2 +- docset/winserver2019-ps/hyper-v/Resize-VHD.md | 2 +- docset/winserver2019-ps/hyper-v/Restart-VM.md | 2 +- docset/winserver2019-ps/hyper-v/Restore-VMSnapshot.md | 2 +- docset/winserver2019-ps/hyper-v/Resume-VM.md | 2 +- docset/winserver2019-ps/hyper-v/Resume-VMReplication.md | 2 +- docset/winserver2019-ps/hyper-v/Revoke-VMConnectAccess.md | 2 +- docset/winserver2019-ps/hyper-v/Save-VM.md | 2 +- docset/winserver2019-ps/hyper-v/Set-VHD.md | 2 +- docset/winserver2019-ps/hyper-v/Set-VM.md | 2 +- docset/winserver2019-ps/hyper-v/Set-VMBios.md | 2 +- docset/winserver2019-ps/hyper-v/Set-VMComPort.md | 2 +- docset/winserver2019-ps/hyper-v/Set-VMDvdDrive.md | 2 +- docset/winserver2019-ps/hyper-v/Set-VMFibreChannelHba.md | 2 +- docset/winserver2019-ps/hyper-v/Set-VMFirmware.md | 2 +- docset/winserver2019-ps/hyper-v/Set-VMFloppyDiskDrive.md | 2 +- docset/winserver2019-ps/hyper-v/Set-VMHardDiskDrive.md | 2 +- docset/winserver2019-ps/hyper-v/Set-VMHost.md | 2 +- docset/winserver2019-ps/hyper-v/Set-VMHostCluster.md | 2 +- docset/winserver2019-ps/hyper-v/Set-VMKeyProtector.md | 2 +- docset/winserver2019-ps/hyper-v/Set-VMMemory.md | 2 +- docset/winserver2019-ps/hyper-v/Set-VMMigrationNetwork.md | 2 +- docset/winserver2019-ps/hyper-v/Set-VMNetworkAdapter.md | 2 +- .../hyper-v/Set-VMNetworkAdapterFailoverConfiguration.md | 2 +- .../hyper-v/Set-VMNetworkAdapterTeamMapping.md | 2 +- docset/winserver2019-ps/hyper-v/Set-VMNetworkAdapterVlan.md | 2 +- docset/winserver2019-ps/hyper-v/Set-VMProcessor.md | 2 +- .../hyper-v/Set-VMRemoteFx3dVideoAdapter.md | 2 +- docset/winserver2019-ps/hyper-v/Set-VMReplication.md | 2 +- .../hyper-v/Set-VMReplicationAuthorizationEntry.md | 2 +- docset/winserver2019-ps/hyper-v/Set-VMReplicationServer.md | 2 +- docset/winserver2019-ps/hyper-v/Set-VMResourcePool.md | 2 +- docset/winserver2019-ps/hyper-v/Set-VMSan.md | 2 +- docset/winserver2019-ps/hyper-v/Set-VMSecurity.md | 2 +- docset/winserver2019-ps/hyper-v/Set-VMSecurityPolicy.md | 2 +- docset/winserver2019-ps/hyper-v/Set-VMSwitch.md | 2 +- .../hyper-v/Set-VMSwitchExtensionPortFeature.md | 2 +- .../hyper-v/Set-VMSwitchExtensionSwitchFeature.md | 2 +- docset/winserver2019-ps/hyper-v/Set-VMSwitchTeam.md | 2 +- docset/winserver2019-ps/hyper-v/Set-VMVideo.md | 2 +- .../hyper-v/Set-VmNetworkAdapterIsolation.md | 2 +- .../hyper-v/Set-VmNetworkAdapterRoutingDomainMapping.md | 2 +- docset/winserver2019-ps/hyper-v/Start-VM.md | 2 +- docset/winserver2019-ps/hyper-v/Start-VMFailover.md | 2 +- .../winserver2019-ps/hyper-v/Start-VMInitialReplication.md | 2 +- docset/winserver2019-ps/hyper-v/Start-VMTrace.md | 2 +- docset/winserver2019-ps/hyper-v/Stop-VM.md | 2 +- docset/winserver2019-ps/hyper-v/Stop-VMFailover.md | 2 +- .../winserver2019-ps/hyper-v/Stop-VMInitialReplication.md | 2 +- docset/winserver2019-ps/hyper-v/Stop-VMReplication.md | 2 +- docset/winserver2019-ps/hyper-v/Stop-VMTrace.md | 2 +- docset/winserver2019-ps/hyper-v/Suspend-VM.md | 2 +- docset/winserver2019-ps/hyper-v/Suspend-VMReplication.md | 2 +- docset/winserver2019-ps/hyper-v/Test-VHD.md | 2 +- docset/winserver2019-ps/hyper-v/Test-VMNetworkAdapter.md | 2 +- .../hyper-v/Test-VMReplicationConnection.md | 2 +- docset/winserver2019-ps/hyper-v/Update-VMVersion.md | 2 +- .../iisadministration/Clear-IISCentralCertProvider.md | 2 +- .../iisadministration/Clear-IISConfigCollection.md | 2 +- .../iisadministration/Disable-IISCentralCertProvider.md | 2 +- .../iisadministration/Disable-IISSharedConfig.md | 2 +- .../iisadministration/Enable-IISCentralCertProvider.md | 2 +- .../iisadministration/Enable-IISSharedConfig.md | 2 +- .../iisadministration/Export-IISConfiguration.md | 2 +- docset/winserver2019-ps/iisadministration/Get-IISAppPool.md | 2 +- .../iisadministration/Get-IISCentralCertProvider.md | 2 +- .../iisadministration/Get-IISConfigAttributeValue.md | 2 +- .../iisadministration/Get-IISConfigCollection.md | 2 +- .../iisadministration/Get-IISConfigCollectionElement.md | 2 +- .../iisadministration/Get-IISConfigElement.md | 2 +- .../iisadministration/Get-IISConfigSection.md | 2 +- .../iisadministration/Get-IISServerManager.md | 2 +- .../iisadministration/Get-IISSharedConfig.md | 2 +- docset/winserver2019-ps/iisadministration/Get-IISSite.md | 2 +- .../iisadministration/Get-IISSiteBinding.md | 2 +- .../iisadministration/New-IISConfigCollectionElement.md | 2 +- docset/winserver2019-ps/iisadministration/New-IISSite.md | 2 +- .../iisadministration/New-IISSiteBinding.md | 2 +- .../iisadministration/Remove-IISConfigAttribute.md | 2 +- .../iisadministration/Remove-IISConfigCollectionElement.md | 2 +- .../iisadministration/Remove-IISConfigElement.md | 2 +- docset/winserver2019-ps/iisadministration/Remove-IISSite.md | 2 +- .../iisadministration/Remove-IISSiteBinding.md | 2 +- .../iisadministration/Reset-IISServerManager.md | 2 +- .../iisadministration/Set-IISCentralCertProvider.md | 2 +- .../Set-IISCentralCertProviderCredential.md | 2 +- .../iisadministration/Set-IISConfigAttributeValue.md | 2 +- .../iisadministration/Start-IISCommitDelay.md | 2 +- docset/winserver2019-ps/iisadministration/Start-IISSite.md | 2 +- .../iisadministration/Stop-IISCommitDelay.md | 2 +- docset/winserver2019-ps/iisadministration/Stop-IISSite.md | 2 +- .../Get-WinAcceptLanguageFromLanguageListOptOut.md | 2 +- .../international/Get-WinCultureFromLanguageListOptOut.md | 2 +- .../international/Get-WinDefaultInputMethodOverride.md | 2 +- .../winserver2019-ps/international/Get-WinHomeLocation.md | 2 +- .../international/Get-WinLanguageBarOption.md | 2 +- .../winserver2019-ps/international/Get-WinSystemLocale.md | 2 +- .../international/Get-WinUILanguageOverride.md | 2 +- .../international/Get-WinUserLanguageList.md | 2 +- .../international/New-WinUserLanguageList.md | 2 +- docset/winserver2019-ps/international/Set-Culture.md | 2 +- .../Set-WinAcceptLanguageFromLanguageListOptOut.md | 2 +- .../international/Set-WinCultureFromLanguageListOptOut.md | 2 +- .../international/Set-WinDefaultInputMethodOverride.md | 2 +- .../winserver2019-ps/international/Set-WinHomeLocation.md | 2 +- .../international/Set-WinLanguageBarOption.md | 2 +- .../winserver2019-ps/international/Set-WinSystemLocale.md | 2 +- .../international/Set-WinUILanguageOverride.md | 2 +- .../international/Set-WinUserLanguageList.md | 2 +- docset/winserver2019-ps/ipamserver/Add-IpamAddress.md | 2 +- docset/winserver2019-ps/ipamserver/Add-IpamAddressSpace.md | 2 +- docset/winserver2019-ps/ipamserver/Add-IpamBlock.md | 2 +- docset/winserver2019-ps/ipamserver/Add-IpamCustomField.md | 2 +- .../ipamserver/Add-IpamCustomFieldAssociation.md | 2 +- docset/winserver2019-ps/ipamserver/Add-IpamCustomValue.md | 2 +- .../winserver2019-ps/ipamserver/Add-IpamDiscoveryDomain.md | 2 +- docset/winserver2019-ps/ipamserver/Add-IpamRange.md | 2 +- .../winserver2019-ps/ipamserver/Add-IpamServerInventory.md | 2 +- docset/winserver2019-ps/ipamserver/Add-IpamSubnet.md | 2 +- .../winserver2019-ps/ipamserver/Disable-IpamCapability.md | 2 +- docset/winserver2019-ps/ipamserver/Enable-IpamCapability.md | 2 +- docset/winserver2019-ps/ipamserver/Export-IpamAddress.md | 2 +- docset/winserver2019-ps/ipamserver/Export-IpamRange.md | 2 +- docset/winserver2019-ps/ipamserver/Export-IpamSubnet.md | 2 +- docset/winserver2019-ps/ipamserver/Find-IpamFreeAddress.md | 2 +- docset/winserver2019-ps/ipamserver/Find-IpamFreeRange.md | 2 +- docset/winserver2019-ps/ipamserver/Find-IpamFreeSubnet.md | 2 +- docset/winserver2019-ps/ipamserver/Get-IpamAddress.md | 2 +- docset/winserver2019-ps/ipamserver/Get-IpamAddressSpace.md | 2 +- .../ipamserver/Get-IpamAddressUtilizationThreshold.md | 2 +- docset/winserver2019-ps/ipamserver/Get-IpamBlock.md | 2 +- docset/winserver2019-ps/ipamserver/Get-IpamCapability.md | 2 +- docset/winserver2019-ps/ipamserver/Get-IpamConfiguration.md | 2 +- .../ipamserver/Get-IpamConfigurationEvent.md | 2 +- docset/winserver2019-ps/ipamserver/Get-IpamCustomField.md | 2 +- .../ipamserver/Get-IpamCustomFieldAssociation.md | 2 +- docset/winserver2019-ps/ipamserver/Get-IpamDatabase.md | 2 +- .../ipamserver/Get-IpamDhcpConfigurationEvent.md | 2 +- docset/winserver2019-ps/ipamserver/Get-IpamDhcpScope.md | 2 +- docset/winserver2019-ps/ipamserver/Get-IpamDhcpServer.md | 2 +- .../winserver2019-ps/ipamserver/Get-IpamDhcpSuperscope.md | 2 +- .../winserver2019-ps/ipamserver/Get-IpamDiscoveryDomain.md | 2 +- .../ipamserver/Get-IpamDnsConditionalForwarder.md | 2 +- .../ipamserver/Get-IpamDnsResourceRecord.md | 2 +- docset/winserver2019-ps/ipamserver/Get-IpamDnsServer.md | 2 +- docset/winserver2019-ps/ipamserver/Get-IpamDnsZone.md | 2 +- .../ipamserver/Get-IpamIpAddressAuditEvent.md | 2 +- docset/winserver2019-ps/ipamserver/Get-IpamRange.md | 2 +- .../winserver2019-ps/ipamserver/Get-IpamServerInventory.md | 2 +- docset/winserver2019-ps/ipamserver/Get-IpamSubnet.md | 2 +- docset/winserver2019-ps/ipamserver/Import-IpamAddress.md | 2 +- docset/winserver2019-ps/ipamserver/Import-IpamRange.md | 2 +- docset/winserver2019-ps/ipamserver/Import-IpamSubnet.md | 2 +- .../ipamserver/Invoke-IpamGpoProvisioning.md | 2 +- .../ipamserver/Invoke-IpamServerProvisioning.md | 2 +- docset/winserver2019-ps/ipamserver/Move-IpamDatabase.md | 2 +- docset/winserver2019-ps/ipamserver/Remove-IpamAddress.md | 2 +- .../winserver2019-ps/ipamserver/Remove-IpamAddressSpace.md | 2 +- docset/winserver2019-ps/ipamserver/Remove-IpamBlock.md | 2 +- .../ipamserver/Remove-IpamConfigurationEvent.md | 2 +- .../winserver2019-ps/ipamserver/Remove-IpamCustomField.md | 2 +- .../ipamserver/Remove-IpamCustomFieldAssociation.md | 2 +- .../winserver2019-ps/ipamserver/Remove-IpamCustomValue.md | 2 +- .../ipamserver/Remove-IpamDhcpConfigurationEvent.md | 2 +- .../ipamserver/Remove-IpamDiscoveryDomain.md | 2 +- .../ipamserver/Remove-IpamIpAddressAuditEvent.md | 2 +- docset/winserver2019-ps/ipamserver/Remove-IpamRange.md | 2 +- .../ipamserver/Remove-IpamServerInventory.md | 2 +- docset/winserver2019-ps/ipamserver/Remove-IpamSubnet.md | 2 +- .../ipamserver/Remove-IpamUtilizationData.md | 2 +- .../winserver2019-ps/ipamserver/Rename-IpamCustomField.md | 2 +- .../winserver2019-ps/ipamserver/Rename-IpamCustomValue.md | 2 +- docset/winserver2019-ps/ipamserver/Set-IpamAccessScope.md | 2 +- docset/winserver2019-ps/ipamserver/Set-IpamAddress.md | 2 +- docset/winserver2019-ps/ipamserver/Set-IpamAddressSpace.md | 2 +- .../ipamserver/Set-IpamAddressUtilizationThreshold.md | 2 +- docset/winserver2019-ps/ipamserver/Set-IpamBlock.md | 2 +- docset/winserver2019-ps/ipamserver/Set-IpamConfiguration.md | 2 +- .../ipamserver/Set-IpamCustomFieldAssociation.md | 2 +- docset/winserver2019-ps/ipamserver/Set-IpamDatabase.md | 2 +- .../winserver2019-ps/ipamserver/Set-IpamDiscoveryDomain.md | 2 +- docset/winserver2019-ps/ipamserver/Set-IpamRange.md | 2 +- .../winserver2019-ps/ipamserver/Set-IpamServerInventory.md | 2 +- docset/winserver2019-ps/ipamserver/Set-IpamSubnet.md | 2 +- docset/winserver2019-ps/ipamserver/Update-IpamServer.md | 2 +- docset/winserver2019-ps/iscsi/Connect-IscsiTarget.md | 2 +- docset/winserver2019-ps/iscsi/Disconnect-IscsiTarget.md | 2 +- docset/winserver2019-ps/iscsi/Get-IscsiConnection.md | 2 +- docset/winserver2019-ps/iscsi/Get-IscsiSession.md | 2 +- docset/winserver2019-ps/iscsi/Get-IscsiTarget.md | 2 +- docset/winserver2019-ps/iscsi/Get-IscsiTargetPortal.md | 2 +- docset/winserver2019-ps/iscsi/New-IscsiTargetPortal.md | 2 +- docset/winserver2019-ps/iscsi/Register-IscsiSession.md | 2 +- docset/winserver2019-ps/iscsi/Remove-IscsiTargetPortal.md | 2 +- docset/winserver2019-ps/iscsi/Set-IscsiChapSecret.md | 2 +- docset/winserver2019-ps/iscsi/Unregister-IscsiSession.md | 2 +- docset/winserver2019-ps/iscsi/Update-IscsiTarget.md | 2 +- docset/winserver2019-ps/iscsi/Update-IscsiTargetPortal.md | 2 +- .../iscsitarget/Add-IscsiVirtualDiskTargetMapping.md | 2 +- .../iscsitarget/Checkpoint-IscsiVirtualDisk.md | 2 +- .../iscsitarget/Convert-IscsiVirtualDisk.md | 2 +- .../iscsitarget/Dismount-IscsiVirtualDiskSnapshot.md | 2 +- .../iscsitarget/Export-IscsiTargetServerConfiguration.md | 2 +- .../iscsitarget/Export-IscsiVirtualDiskSnapshot.md | 2 +- .../winserver2019-ps/iscsitarget/Get-IscsiServerTarget.md | 2 +- .../iscsitarget/Get-IscsiTargetServerSetting.md | 2 +- docset/winserver2019-ps/iscsitarget/Get-IscsiVirtualDisk.md | 2 +- .../iscsitarget/Get-IscsiVirtualDiskSnapshot.md | 2 +- .../iscsitarget/Import-IscsiTargetServerConfiguration.md | 2 +- .../winserver2019-ps/iscsitarget/Import-IscsiVirtualDisk.md | 2 +- .../iscsitarget/Mount-IscsiVirtualDiskSnapshot.md | 2 +- .../winserver2019-ps/iscsitarget/New-IscsiServerTarget.md | 2 +- docset/winserver2019-ps/iscsitarget/New-IscsiVirtualDisk.md | 2 +- .../iscsitarget/Remove-IscsiServerTarget.md | 2 +- .../winserver2019-ps/iscsitarget/Remove-IscsiVirtualDisk.md | 2 +- .../iscsitarget/Remove-IscsiVirtualDiskSnapshot.md | 2 +- .../iscsitarget/Remove-IscsiVirtualDiskTargetMapping.md | 2 +- .../winserver2019-ps/iscsitarget/Resize-IscsiVirtualDisk.md | 2 +- .../iscsitarget/Restore-IscsiVirtualDisk.md | 2 +- .../winserver2019-ps/iscsitarget/Set-IscsiServerTarget.md | 2 +- .../iscsitarget/Set-IscsiTargetServerSetting.md | 2 +- docset/winserver2019-ps/iscsitarget/Set-IscsiVirtualDisk.md | 2 +- .../iscsitarget/Set-IscsiVirtualDiskSnapshot.md | 2 +- .../iscsitarget/Stop-IscsiVirtualDiskOperation.md | 2 +- docset/winserver2019-ps/kds/Add-KdsRootKey.md | 2 +- docset/winserver2019-ps/kds/Clear-KdsCache.md | 2 +- docset/winserver2019-ps/kds/Get-KdsConfiguration.md | 2 +- docset/winserver2019-ps/kds/Get-KdsRootKey.md | 2 +- docset/winserver2019-ps/kds/Set-KdsConfiguration.md | 2 +- docset/winserver2019-ps/kds/Test-KdsRootKey.md | 2 +- .../languagepackmanagement/Get-InstalledLanguage.md | 6 +++--- .../languagepackmanagement/Get-SystemPreferredUILanguage.md | 6 +++--- .../languagepackmanagement/Install-Language.md | 6 +++--- .../languagepackmanagement/LanguagePackManagement.md | 6 +++--- .../languagepackmanagement/Set-SystemPreferredUILanguage.md | 6 +++--- .../languagepackmanagement/Uninstall-Language.md | 6 +++--- docset/winserver2019-ps/mmagent/Debug-MMAppPrelaunch.md | 2 +- docset/winserver2019-ps/mmagent/Disable-MMAgent.md | 2 +- docset/winserver2019-ps/mmagent/Enable-MMAgent.md | 2 +- docset/winserver2019-ps/mmagent/Get-MMAgent.md | 2 +- docset/winserver2019-ps/mmagent/Set-MMAgent.md | 2 +- docset/winserver2019-ps/mpio/Clear-MSDSMSupportedHW.md | 2 +- docset/winserver2019-ps/mpio/Disable-MSDSMAutomaticClaim.md | 2 +- docset/winserver2019-ps/mpio/Enable-MSDSMAutomaticClaim.md | 2 +- docset/winserver2019-ps/mpio/Get-MPIOAvailableHW.md | 2 +- docset/winserver2019-ps/mpio/Get-MPIOSetting.md | 2 +- .../mpio/Get-MSDSMAutomaticClaimSettings.md | 2 +- .../mpio/Get-MSDSMGlobalDefaultLoadBalancePolicy.md | 2 +- docset/winserver2019-ps/mpio/Get-MSDSMSupportedHW.md | 2 +- docset/winserver2019-ps/mpio/New-MSDSMSupportedHW.md | 2 +- docset/winserver2019-ps/mpio/Remove-MSDSMSupportedHW.md | 2 +- docset/winserver2019-ps/mpio/Set-MPIOSetting.md | 2 +- .../mpio/Set-MSDSMGlobalDefaultLoadBalancePolicy.md | 2 +- docset/winserver2019-ps/mpio/Update-MPIOClaimedHW.md | 2 +- docset/winserver2019-ps/msdtc/Add-DtcClusterTMMapping.md | 2 +- .../msdtc/Complete-DtcDiagnosticTransaction.md | 2 +- docset/winserver2019-ps/msdtc/Get-Dtc.md | 2 +- docset/winserver2019-ps/msdtc/Get-DtcAdvancedHostSetting.md | 2 +- docset/winserver2019-ps/msdtc/Get-DtcAdvancedSetting.md | 2 +- docset/winserver2019-ps/msdtc/Get-DtcClusterDefault.md | 2 +- docset/winserver2019-ps/msdtc/Get-DtcClusterTMMapping.md | 2 +- docset/winserver2019-ps/msdtc/Get-DtcDefault.md | 2 +- docset/winserver2019-ps/msdtc/Get-DtcLog.md | 2 +- docset/winserver2019-ps/msdtc/Get-DtcNetworkSetting.md | 2 +- docset/winserver2019-ps/msdtc/Get-DtcTransaction.md | 2 +- .../winserver2019-ps/msdtc/Get-DtcTransactionsStatistics.md | 2 +- .../msdtc/Get-DtcTransactionsTraceSession.md | 2 +- .../msdtc/Get-DtcTransactionsTraceSetting.md | 2 +- docset/winserver2019-ps/msdtc/Install-Dtc.md | 2 +- .../msdtc/Join-DtcDiagnosticResourceManager.md | 2 +- .../winserver2019-ps/msdtc/New-DtcDiagnosticTransaction.md | 2 +- .../msdtc/Receive-DtcDiagnosticTransaction.md | 2 +- docset/winserver2019-ps/msdtc/Remove-DtcClusterTMMapping.md | 2 +- docset/winserver2019-ps/msdtc/Reset-DtcLog.md | 2 +- .../winserver2019-ps/msdtc/Send-DtcDiagnosticTransaction.md | 2 +- docset/winserver2019-ps/msdtc/Set-DtcAdvancedHostSetting.md | 2 +- docset/winserver2019-ps/msdtc/Set-DtcAdvancedSetting.md | 2 +- docset/winserver2019-ps/msdtc/Set-DtcClusterDefault.md | 2 +- docset/winserver2019-ps/msdtc/Set-DtcClusterTMMapping.md | 2 +- docset/winserver2019-ps/msdtc/Set-DtcDefault.md | 2 +- docset/winserver2019-ps/msdtc/Set-DtcLog.md | 2 +- docset/winserver2019-ps/msdtc/Set-DtcNetworkSetting.md | 2 +- docset/winserver2019-ps/msdtc/Set-DtcTransaction.md | 2 +- .../msdtc/Set-DtcTransactionsTraceSession.md | 2 +- .../msdtc/Set-DtcTransactionsTraceSetting.md | 2 +- docset/winserver2019-ps/msdtc/Start-Dtc.md | 2 +- .../msdtc/Start-DtcDiagnosticResourceManager.md | 2 +- .../msdtc/Start-DtcTransactionsTraceSession.md | 2 +- docset/winserver2019-ps/msdtc/Stop-Dtc.md | 2 +- .../msdtc/Stop-DtcDiagnosticResourceManager.md | 2 +- .../msdtc/Stop-DtcTransactionsTraceSession.md | 2 +- docset/winserver2019-ps/msdtc/Test-Dtc.md | 2 +- .../winserver2019-ps/msdtc/Undo-DtcDiagnosticTransaction.md | 2 +- docset/winserver2019-ps/msdtc/Uninstall-Dtc.md | 2 +- .../msdtc/Write-DtcTransactionsTraceSession.md | 2 +- docset/winserver2019-ps/msmq/Clear-MSMQOutgoingQueue.md | 2 +- docset/winserver2019-ps/msmq/Clear-MSMQQueue.md | 2 +- docset/winserver2019-ps/msmq/Enable-MSMQCertificate.md | 2 +- docset/winserver2019-ps/msmq/Get-MSMQCertificate.md | 2 +- docset/winserver2019-ps/msmq/Get-MSMQOutgoingQueue.md | 2 +- docset/winserver2019-ps/msmq/Get-MsmqQueue.md | 2 +- docset/winserver2019-ps/msmq/Get-MsmqQueueACL.md | 2 +- docset/winserver2019-ps/msmq/Get-MsmqQueueManager.md | 2 +- docset/winserver2019-ps/msmq/Get-MsmqQueueManagerACL.md | 2 +- docset/winserver2019-ps/msmq/Move-MsmqMessage.md | 2 +- docset/winserver2019-ps/msmq/New-MsmqMessage.md | 2 +- docset/winserver2019-ps/msmq/New-MsmqQueue.md | 2 +- docset/winserver2019-ps/msmq/Receive-MsmqQueue.md | 2 +- docset/winserver2019-ps/msmq/Remove-MsmqCertificate.md | 2 +- docset/winserver2019-ps/msmq/Remove-MsmqQueue.md | 2 +- docset/winserver2019-ps/msmq/Resume-MsmqOutgoingQueue.md | 2 +- docset/winserver2019-ps/msmq/Send-MsmqQueue.md | 2 +- docset/winserver2019-ps/msmq/Set-MsmqQueue.md | 2 +- docset/winserver2019-ps/msmq/Set-MsmqQueueACL.md | 2 +- docset/winserver2019-ps/msmq/Set-MsmqQueueManager.md | 2 +- docset/winserver2019-ps/msmq/Set-MsmqQueueManagerACL.md | 2 +- docset/winserver2019-ps/msmq/Suspend-MsmqOutgoingQueue.md | 2 +- docset/winserver2019-ps/multipoint/Add-WmsSystem.md | 2 +- docset/winserver2019-ps/multipoint/Clear-WmsStation.md | 2 +- docset/winserver2019-ps/multipoint/Close-WmsApp.md | 2 +- docset/winserver2019-ps/multipoint/Close-WmsSession.md | 2 +- .../multipoint/Disable-WmsDiskProtection.md | 2 +- .../multipoint/Disable-WmsScheduledUpdate.md | 2 +- .../winserver2019-ps/multipoint/Disable-WmsWebLimiting.md | 2 +- docset/winserver2019-ps/multipoint/Disconnect-WmsSession.md | 2 +- .../winserver2019-ps/multipoint/Enable-WmsDiskProtection.md | 2 +- .../multipoint/Enable-WmsScheduledUpdate.md | 2 +- docset/winserver2019-ps/multipoint/Enable-WmsWebLimiting.md | 2 +- docset/winserver2019-ps/multipoint/Get-WmsAlert.md | 2 +- docset/winserver2019-ps/multipoint/Get-WmsApp.md | 2 +- docset/winserver2019-ps/multipoint/Get-WmsDiskProtection.md | 2 +- .../winserver2019-ps/multipoint/Get-WmsScheduledUpdate.md | 2 +- docset/winserver2019-ps/multipoint/Get-WmsSession.md | 2 +- docset/winserver2019-ps/multipoint/Get-WmsStation.md | 2 +- docset/winserver2019-ps/multipoint/Get-WmsSystem.md | 2 +- docset/winserver2019-ps/multipoint/Get-WmsUser.md | 2 +- docset/winserver2019-ps/multipoint/Get-WmsVersion.md | 2 +- docset/winserver2019-ps/multipoint/Get-WmsWebLimiting.md | 2 +- docset/winserver2019-ps/multipoint/Hide-WmsIdentifier.md | 2 +- docset/winserver2019-ps/multipoint/Join-WmsStation.md | 2 +- docset/winserver2019-ps/multipoint/Lock-WmsSession.md | 2 +- docset/winserver2019-ps/multipoint/Lock-WmsUsbStorage.md | 2 +- docset/winserver2019-ps/multipoint/New-WmsUser.md | 2 +- docset/winserver2019-ps/multipoint/Open-WmsApp.md | 2 +- docset/winserver2019-ps/multipoint/Publish-WmsDesktop.md | 2 +- docset/winserver2019-ps/multipoint/Remove-WmsSystem.md | 2 +- docset/winserver2019-ps/multipoint/Remove-WmsUser.md | 2 +- docset/winserver2019-ps/multipoint/Restart-WmsSystem.md | 2 +- .../winserver2019-ps/multipoint/Resume-WmsDiskProtection.md | 2 +- docset/winserver2019-ps/multipoint/Search-WmsSystem.md | 2 +- .../winserver2019-ps/multipoint/Set-WmsScheduledUpdate.md | 2 +- docset/winserver2019-ps/multipoint/Set-WmsStation.md | 2 +- docset/winserver2019-ps/multipoint/Set-WmsSystem.md | 2 +- docset/winserver2019-ps/multipoint/Set-WmsUser.md | 2 +- docset/winserver2019-ps/multipoint/Set-WmsWebLimiting.md | 2 +- docset/winserver2019-ps/multipoint/Show-WmsDesktop.md | 2 +- docset/winserver2019-ps/multipoint/Show-WmsIdentifier.md | 2 +- docset/winserver2019-ps/multipoint/Split-WmsStation.md | 2 +- docset/winserver2019-ps/multipoint/Stop-WmsSystem.md | 2 +- .../multipoint/Suspend-WmsDiskProtection.md | 2 +- docset/winserver2019-ps/multipoint/Unlock-WmsSession.md | 2 +- docset/winserver2019-ps/multipoint/Unlock-WmsUsbStorage.md | 2 +- docset/winserver2019-ps/multipoint/Unpublish-WmsDesktop.md | 2 +- docset/winserver2019-ps/multipoint/Update-WmsStation.md | 2 +- .../multipointvdi/Disable-WmsVirtualDesktopRole.md | 2 +- .../multipointvdi/Enable-WmsVirtualDesktopRole.md | 2 +- .../winserver2019-ps/multipointvdi/Get-WmsVirtualDesktop.md | 2 +- .../multipointvdi/Import-WmsVirtualDesktop.md | 2 +- .../winserver2019-ps/multipointvdi/New-WmsVirtualDesktop.md | 2 +- .../multipointvdi/New-WmsVirtualDesktopTemplate.md | 2 +- .../multipointvdi/Open-WmsVirtualDesktop.md | 2 +- .../nanoserverimagegenerator/Edit-NanoServerImage.md | 2 +- .../nanoserverimagegenerator/Get-NanoServerPackage.md | 2 +- .../nanoserverimagegenerator/New-NanoServerImage.md | 2 +- docset/winserver2019-ps/netadapter/Disable-NetAdapter.md | 2 +- .../netadapter/Disable-NetAdapterBinding.md | 2 +- .../netadapter/Disable-NetAdapterChecksumOffload.md | 2 +- .../Disable-NetAdapterEncapsulatedPacketTaskOffload.md | 2 +- .../netadapter/Disable-NetAdapterIPsecOffload.md | 2 +- docset/winserver2019-ps/netadapter/Disable-NetAdapterLso.md | 2 +- .../netadapter/Disable-NetAdapterPowerManagement.md | 2 +- docset/winserver2019-ps/netadapter/Disable-NetAdapterQos.md | 2 +- .../winserver2019-ps/netadapter/Disable-NetAdapterRdma.md | 2 +- docset/winserver2019-ps/netadapter/Disable-NetAdapterRsc.md | 2 +- docset/winserver2019-ps/netadapter/Disable-NetAdapterRss.md | 2 +- .../winserver2019-ps/netadapter/Disable-NetAdapterSriov.md | 2 +- docset/winserver2019-ps/netadapter/Disable-NetAdapterVmq.md | 2 +- docset/winserver2019-ps/netadapter/Enable-NetAdapter.md | 2 +- .../winserver2019-ps/netadapter/Enable-NetAdapterBinding.md | 2 +- .../netadapter/Enable-NetAdapterChecksumOffload.md | 2 +- .../Enable-NetAdapterEncapsulatedPacketTaskOffload.md | 2 +- .../netadapter/Enable-NetAdapterIPsecOffload.md | 2 +- docset/winserver2019-ps/netadapter/Enable-NetAdapterLso.md | 2 +- .../netadapter/Enable-NetAdapterPowerManagement.md | 2 +- docset/winserver2019-ps/netadapter/Enable-NetAdapterQos.md | 2 +- docset/winserver2019-ps/netadapter/Enable-NetAdapterRdma.md | 2 +- docset/winserver2019-ps/netadapter/Enable-NetAdapterRsc.md | 2 +- docset/winserver2019-ps/netadapter/Enable-NetAdapterRss.md | 2 +- .../winserver2019-ps/netadapter/Enable-NetAdapterSriov.md | 2 +- docset/winserver2019-ps/netadapter/Enable-NetAdapterVmq.md | 2 +- docset/winserver2019-ps/netadapter/Get-NetAdapter.md | 2 +- .../netadapter/Get-NetAdapterAdvancedProperty.md | 2 +- docset/winserver2019-ps/netadapter/Get-NetAdapterBinding.md | 2 +- .../netadapter/Get-NetAdapterChecksumOffload.md | 2 +- .../Get-NetAdapterEncapsulatedPacketTaskOffload.md | 2 +- .../netadapter/Get-NetAdapterHardwareInfo.md | 2 +- .../netadapter/Get-NetAdapterIPsecOffload.md | 2 +- docset/winserver2019-ps/netadapter/Get-NetAdapterLso.md | 2 +- .../netadapter/Get-NetAdapterPowerManagement.md | 2 +- docset/winserver2019-ps/netadapter/Get-NetAdapterQos.md | 2 +- docset/winserver2019-ps/netadapter/Get-NetAdapterRdma.md | 2 +- docset/winserver2019-ps/netadapter/Get-NetAdapterRsc.md | 2 +- docset/winserver2019-ps/netadapter/Get-NetAdapterRss.md | 2 +- docset/winserver2019-ps/netadapter/Get-NetAdapterSriov.md | 2 +- docset/winserver2019-ps/netadapter/Get-NetAdapterSriovVf.md | 2 +- .../winserver2019-ps/netadapter/Get-NetAdapterStatistics.md | 2 +- docset/winserver2019-ps/netadapter/Get-NetAdapterVPort.md | 2 +- docset/winserver2019-ps/netadapter/Get-NetAdapterVmq.md | 2 +- .../winserver2019-ps/netadapter/Get-NetAdapterVmqQueue.md | 2 +- .../netadapter/New-NetAdapterAdvancedProperty.md | 2 +- .../netadapter/Remove-NetAdapterAdvancedProperty.md | 2 +- docset/winserver2019-ps/netadapter/Rename-NetAdapter.md | 2 +- .../netadapter/Reset-NetAdapterAdvancedProperty.md | 2 +- docset/winserver2019-ps/netadapter/Restart-NetAdapter.md | 2 +- docset/winserver2019-ps/netadapter/Set-NetAdapter.md | 2 +- .../netadapter/Set-NetAdapterAdvancedProperty.md | 2 +- docset/winserver2019-ps/netadapter/Set-NetAdapterBinding.md | 2 +- .../netadapter/Set-NetAdapterChecksumOffload.md | 2 +- .../Set-NetAdapterEncapsulatedPacketTaskOffload.md | 2 +- .../netadapter/Set-NetAdapterIPsecOffload.md | 2 +- docset/winserver2019-ps/netadapter/Set-NetAdapterLso.md | 2 +- .../netadapter/Set-NetAdapterPowerManagement.md | 2 +- docset/winserver2019-ps/netadapter/Set-NetAdapterQos.md | 2 +- docset/winserver2019-ps/netadapter/Set-NetAdapterRdma.md | 2 +- docset/winserver2019-ps/netadapter/Set-NetAdapterRsc.md | 2 +- docset/winserver2019-ps/netadapter/Set-NetAdapterRss.md | 2 +- docset/winserver2019-ps/netadapter/Set-NetAdapterSriov.md | 2 +- docset/winserver2019-ps/netadapter/Set-NetAdapterVmq.md | 2 +- .../netconnection/Get-NetConnectionProfile.md | 2 +- .../netconnection/Set-NetConnectionProfile.md | 2 +- .../neteventpacketcapture/Add-NetEventNetworkAdapter.md | 2 +- .../Add-NetEventPacketCaptureProvider.md | 2 +- .../neteventpacketcapture/Add-NetEventProvider.md | 2 +- .../neteventpacketcapture/Add-NetEventVmNetworkAdapter.md | 2 +- .../neteventpacketcapture/Add-NetEventVmSwitch.md | 2 +- .../neteventpacketcapture/Add-NetEventWFPCaptureProvider.md | 2 +- .../neteventpacketcapture/Get-NetEventNetworkAdapter.md | 2 +- .../Get-NetEventPacketCaptureProvider.md | 2 +- .../neteventpacketcapture/Get-NetEventProvider.md | 2 +- .../neteventpacketcapture/Get-NetEventSession.md | 2 +- .../neteventpacketcapture/Get-NetEventVmNetworkAdapter.md | 2 +- .../neteventpacketcapture/Get-NetEventVmSwitch.md | 2 +- .../neteventpacketcapture/Get-NetEventWFPCaptureProvider.md | 2 +- .../neteventpacketcapture/New-NetEventSession.md | 2 +- .../neteventpacketcapture/Remove-NetEventNetworkAdapter.md | 2 +- .../Remove-NetEventPacketCaptureProvider.md | 2 +- .../neteventpacketcapture/Remove-NetEventProvider.md | 2 +- .../neteventpacketcapture/Remove-NetEventSession.md | 2 +- .../Remove-NetEventVmNetworkAdapter.md | 2 +- .../neteventpacketcapture/Remove-NetEventVmSwitch.md | 2 +- .../Remove-NetEventWFPCaptureProvider.md | 2 +- .../Set-NetEventPacketCaptureProvider.md | 2 +- .../neteventpacketcapture/Set-NetEventProvider.md | 2 +- .../neteventpacketcapture/Set-NetEventSession.md | 2 +- .../neteventpacketcapture/Set-NetEventWFPCaptureProvider.md | 2 +- .../neteventpacketcapture/Start-NetEventSession.md | 2 +- .../neteventpacketcapture/Stop-NetEventSession.md | 2 +- docset/winserver2019-ps/netlbfo/Add-NetLbfoTeamMember.md | 2 +- docset/winserver2019-ps/netlbfo/Add-NetLbfoTeamNic.md | 2 +- docset/winserver2019-ps/netlbfo/Get-NetLbfoTeam.md | 2 +- docset/winserver2019-ps/netlbfo/Get-NetLbfoTeamMember.md | 2 +- docset/winserver2019-ps/netlbfo/Get-NetLbfoTeamNic.md | 2 +- docset/winserver2019-ps/netlbfo/New-NetLbfoTeam.md | 2 +- docset/winserver2019-ps/netlbfo/Remove-NetLbfoTeam.md | 2 +- docset/winserver2019-ps/netlbfo/Remove-NetLbfoTeamMember.md | 2 +- docset/winserver2019-ps/netlbfo/Remove-NetLbfoTeamNic.md | 2 +- docset/winserver2019-ps/netlbfo/Rename-NetLbfoTeam.md | 2 +- docset/winserver2019-ps/netlbfo/Set-NetLbfoTeam.md | 2 +- docset/winserver2019-ps/netlbfo/Set-NetLbfoTeamMember.md | 2 +- docset/winserver2019-ps/netlbfo/Set-NetLbfoTeamNic.md | 2 +- .../winserver2019-ps/netlldpagent/Disable-NetLldpAgent.md | 2 +- docset/winserver2019-ps/netlldpagent/Enable-NetLldpAgent.md | 2 +- docset/winserver2019-ps/netlldpagent/Get-NetLldpAgent.md | 2 +- docset/winserver2019-ps/netnat/Add-NetNatExternalAddress.md | 2 +- docset/winserver2019-ps/netnat/Add-NetNatStaticMapping.md | 2 +- docset/winserver2019-ps/netnat/Get-NetNat.md | 2 +- docset/winserver2019-ps/netnat/Get-NetNatExternalAddress.md | 2 +- docset/winserver2019-ps/netnat/Get-NetNatGlobal.md | 2 +- docset/winserver2019-ps/netnat/Get-NetNatSession.md | 2 +- docset/winserver2019-ps/netnat/Get-NetNatStaticMapping.md | 2 +- docset/winserver2019-ps/netnat/New-NetNat.md | 2 +- docset/winserver2019-ps/netnat/Remove-NetNat.md | 2 +- .../winserver2019-ps/netnat/Remove-NetNatExternalAddress.md | 2 +- .../winserver2019-ps/netnat/Remove-NetNatStaticMapping.md | 2 +- docset/winserver2019-ps/netnat/Set-NetNat.md | 2 +- docset/winserver2019-ps/netnat/Set-NetNatGlobal.md | 2 +- docset/winserver2019-ps/netqos/Get-NetQosPolicy.md | 2 +- docset/winserver2019-ps/netqos/New-NetQosPolicy.md | 2 +- docset/winserver2019-ps/netqos/Remove-NetQosPolicy.md | 2 +- docset/winserver2019-ps/netqos/Set-NetQosPolicy.md | 2 +- docset/winserver2019-ps/netsecurity/Copy-NetFirewallRule.md | 2 +- .../netsecurity/Copy-NetIPsecMainModeCryptoSet.md | 2 +- .../netsecurity/Copy-NetIPsecMainModeRule.md | 2 +- .../netsecurity/Copy-NetIPsecPhase1AuthSet.md | 2 +- .../netsecurity/Copy-NetIPsecPhase2AuthSet.md | 2 +- .../netsecurity/Copy-NetIPsecQuickModeCryptoSet.md | 2 +- docset/winserver2019-ps/netsecurity/Copy-NetIPsecRule.md | 2 +- .../winserver2019-ps/netsecurity/Disable-NetFirewallRule.md | 2 +- .../netsecurity/Disable-NetIPsecMainModeRule.md | 2 +- docset/winserver2019-ps/netsecurity/Disable-NetIPsecRule.md | 2 +- .../winserver2019-ps/netsecurity/Enable-NetFirewallRule.md | 2 +- .../netsecurity/Enable-NetIPsecMainModeRule.md | 2 +- docset/winserver2019-ps/netsecurity/Enable-NetIPsecRule.md | 2 +- docset/winserver2019-ps/netsecurity/Find-NetIPsecRule.md | 2 +- docset/winserver2019-ps/netsecurity/Get-DAPolicyChange.md | 2 +- .../netsecurity/Get-NetFirewallAddressFilter.md | 2 +- .../netsecurity/Get-NetFirewallApplicationFilter.md | 2 +- .../netsecurity/Get-NetFirewallInterfaceFilter.md | 2 +- .../netsecurity/Get-NetFirewallInterfaceTypeFilter.md | 2 +- .../netsecurity/Get-NetFirewallPortFilter.md | 2 +- .../winserver2019-ps/netsecurity/Get-NetFirewallProfile.md | 2 +- docset/winserver2019-ps/netsecurity/Get-NetFirewallRule.md | 2 +- .../netsecurity/Get-NetFirewallSecurityFilter.md | 2 +- .../netsecurity/Get-NetFirewallServiceFilter.md | 2 +- .../winserver2019-ps/netsecurity/Get-NetFirewallSetting.md | 2 +- .../winserver2019-ps/netsecurity/Get-NetIPsecDospSetting.md | 2 +- .../netsecurity/Get-NetIPsecMainModeCryptoSet.md | 2 +- .../netsecurity/Get-NetIPsecMainModeRule.md | 2 +- .../winserver2019-ps/netsecurity/Get-NetIPsecMainModeSA.md | 2 +- .../netsecurity/Get-NetIPsecPhase1AuthSet.md | 2 +- .../netsecurity/Get-NetIPsecPhase2AuthSet.md | 2 +- .../netsecurity/Get-NetIPsecQuickModeCryptoSet.md | 2 +- .../winserver2019-ps/netsecurity/Get-NetIPsecQuickModeSA.md | 2 +- docset/winserver2019-ps/netsecurity/Get-NetIPsecRule.md | 2 +- docset/winserver2019-ps/netsecurity/New-NetFirewallRule.md | 2 +- .../netsecurity/New-NetIPsecAuthProposal.md | 2 +- .../winserver2019-ps/netsecurity/New-NetIPsecDospSetting.md | 2 +- .../netsecurity/New-NetIPsecMainModeCryptoProposal.md | 2 +- .../netsecurity/New-NetIPsecMainModeCryptoSet.md | 2 +- .../netsecurity/New-NetIPsecMainModeRule.md | 2 +- .../netsecurity/New-NetIPsecPhase1AuthSet.md | 2 +- .../netsecurity/New-NetIPsecPhase2AuthSet.md | 2 +- .../netsecurity/New-NetIPsecQuickModeCryptoProposal.md | 2 +- .../netsecurity/New-NetIPsecQuickModeCryptoSet.md | 2 +- docset/winserver2019-ps/netsecurity/New-NetIPsecRule.md | 2 +- docset/winserver2019-ps/netsecurity/Open-NetGPO.md | 2 +- .../winserver2019-ps/netsecurity/Remove-NetFirewallRule.md | 2 +- .../netsecurity/Remove-NetIPsecDospSetting.md | 2 +- .../netsecurity/Remove-NetIPsecMainModeCryptoSet.md | 2 +- .../netsecurity/Remove-NetIPsecMainModeRule.md | 2 +- .../netsecurity/Remove-NetIPsecMainModeSA.md | 2 +- .../netsecurity/Remove-NetIPsecPhase1AuthSet.md | 2 +- .../netsecurity/Remove-NetIPsecPhase2AuthSet.md | 2 +- .../netsecurity/Remove-NetIPsecQuickModeCryptoSet.md | 2 +- .../netsecurity/Remove-NetIPsecQuickModeSA.md | 2 +- docset/winserver2019-ps/netsecurity/Remove-NetIPsecRule.md | 2 +- .../winserver2019-ps/netsecurity/Rename-NetFirewallRule.md | 2 +- .../netsecurity/Rename-NetIPsecMainModeCryptoSet.md | 2 +- .../netsecurity/Rename-NetIPsecMainModeRule.md | 2 +- .../netsecurity/Rename-NetIPsecPhase1AuthSet.md | 2 +- .../netsecurity/Rename-NetIPsecPhase2AuthSet.md | 2 +- .../netsecurity/Rename-NetIPsecQuickModeCryptoSet.md | 2 +- docset/winserver2019-ps/netsecurity/Rename-NetIPsecRule.md | 2 +- docset/winserver2019-ps/netsecurity/Save-NetGPO.md | 2 +- .../netsecurity/Set-NetFirewallAddressFilter.md | 2 +- .../netsecurity/Set-NetFirewallApplicationFilter.md | 2 +- .../netsecurity/Set-NetFirewallInterfaceFilter.md | 2 +- .../netsecurity/Set-NetFirewallInterfaceTypeFilter.md | 2 +- .../netsecurity/Set-NetFirewallPortFilter.md | 2 +- .../winserver2019-ps/netsecurity/Set-NetFirewallProfile.md | 2 +- docset/winserver2019-ps/netsecurity/Set-NetFirewallRule.md | 2 +- .../netsecurity/Set-NetFirewallSecurityFilter.md | 2 +- .../netsecurity/Set-NetFirewallServiceFilter.md | 2 +- .../winserver2019-ps/netsecurity/Set-NetFirewallSetting.md | 2 +- .../winserver2019-ps/netsecurity/Set-NetIPsecDospSetting.md | 2 +- .../netsecurity/Set-NetIPsecMainModeCryptoSet.md | 2 +- .../netsecurity/Set-NetIPsecMainModeRule.md | 2 +- .../netsecurity/Set-NetIPsecPhase1AuthSet.md | 2 +- .../netsecurity/Set-NetIPsecPhase2AuthSet.md | 2 +- .../netsecurity/Set-NetIPsecQuickModeCryptoSet.md | 2 +- docset/winserver2019-ps/netsecurity/Set-NetIPsecRule.md | 2 +- docset/winserver2019-ps/netsecurity/Show-NetFirewallRule.md | 2 +- docset/winserver2019-ps/netsecurity/Show-NetIPsecRule.md | 2 +- docset/winserver2019-ps/netsecurity/Sync-NetIPsecRule.md | 2 +- docset/winserver2019-ps/netsecurity/Update-NetIPsecRule.md | 2 +- .../netswitchteam/Add-NetSwitchTeamMember.md | 2 +- docset/winserver2019-ps/netswitchteam/Get-NetSwitchTeam.md | 2 +- .../netswitchteam/Get-NetSwitchTeamMember.md | 2 +- docset/winserver2019-ps/netswitchteam/New-NetSwitchTeam.md | 2 +- .../winserver2019-ps/netswitchteam/Remove-NetSwitchTeam.md | 2 +- .../netswitchteam/Remove-NetSwitchTeamMember.md | 2 +- .../winserver2019-ps/netswitchteam/Rename-NetSwitchTeam.md | 2 +- docset/winserver2019-ps/nettcpip/Find-NetRoute.md | 2 +- docset/winserver2019-ps/nettcpip/Get-NetCompartment.md | 2 +- docset/winserver2019-ps/nettcpip/Get-NetIPAddress.md | 2 +- docset/winserver2019-ps/nettcpip/Get-NetIPConfiguration.md | 2 +- docset/winserver2019-ps/nettcpip/Get-NetIPInterface.md | 2 +- docset/winserver2019-ps/nettcpip/Get-NetIPv4Protocol.md | 2 +- docset/winserver2019-ps/nettcpip/Get-NetIPv6Protocol.md | 2 +- docset/winserver2019-ps/nettcpip/Get-NetNeighbor.md | 2 +- .../nettcpip/Get-NetOffloadGlobalSetting.md | 2 +- docset/winserver2019-ps/nettcpip/Get-NetPrefixPolicy.md | 2 +- docset/winserver2019-ps/nettcpip/Get-NetRoute.md | 2 +- docset/winserver2019-ps/nettcpip/Get-NetTCPConnection.md | 2 +- docset/winserver2019-ps/nettcpip/Get-NetTCPSetting.md | 2 +- docset/winserver2019-ps/nettcpip/Get-NetTransportFilter.md | 2 +- docset/winserver2019-ps/nettcpip/Get-NetUDPEndpoint.md | 2 +- docset/winserver2019-ps/nettcpip/Get-NetUDPSetting.md | 2 +- docset/winserver2019-ps/nettcpip/New-NetIPAddress.md | 2 +- docset/winserver2019-ps/nettcpip/New-NetNeighbor.md | 2 +- docset/winserver2019-ps/nettcpip/New-NetRoute.md | 2 +- docset/winserver2019-ps/nettcpip/New-NetTransportFilter.md | 2 +- docset/winserver2019-ps/nettcpip/Remove-NetIPAddress.md | 2 +- docset/winserver2019-ps/nettcpip/Remove-NetNeighbor.md | 2 +- docset/winserver2019-ps/nettcpip/Remove-NetRoute.md | 2 +- .../winserver2019-ps/nettcpip/Remove-NetTransportFilter.md | 2 +- docset/winserver2019-ps/nettcpip/Set-NetIPAddress.md | 2 +- docset/winserver2019-ps/nettcpip/Set-NetIPInterface.md | 2 +- docset/winserver2019-ps/nettcpip/Set-NetIPv4Protocol.md | 2 +- docset/winserver2019-ps/nettcpip/Set-NetIPv6Protocol.md | 2 +- docset/winserver2019-ps/nettcpip/Set-NetNeighbor.md | 2 +- .../nettcpip/Set-NetOffloadGlobalSetting.md | 2 +- docset/winserver2019-ps/nettcpip/Set-NetRoute.md | 2 +- docset/winserver2019-ps/nettcpip/Set-NetTCPSetting.md | 2 +- docset/winserver2019-ps/nettcpip/Set-NetUDPSetting.md | 2 +- docset/winserver2019-ps/nettcpip/Test-NetConnection.md | 2 +- .../netwnv/Get-NetVirtualizationCustomerRoute.md | 2 +- .../winserver2019-ps/netwnv/Get-NetVirtualizationGlobal.md | 2 +- .../netwnv/Get-NetVirtualizationLookupRecord.md | 2 +- .../netwnv/Get-NetVirtualizationProviderAddress.md | 2 +- .../netwnv/Get-NetVirtualizationProviderRoute.md | 2 +- .../netwnv/New-NetVirtualizationCustomerRoute.md | 2 +- .../netwnv/New-NetVirtualizationLookupRecord.md | 2 +- .../netwnv/New-NetVirtualizationProviderAddress.md | 2 +- .../netwnv/New-NetVirtualizationProviderRoute.md | 2 +- .../netwnv/Remove-NetVirtualizationCustomerRoute.md | 2 +- .../netwnv/Remove-NetVirtualizationLookupRecord.md | 2 +- .../netwnv/Remove-NetVirtualizationProviderAddress.md | 2 +- .../netwnv/Remove-NetVirtualizationProviderRoute.md | 2 +- .../netwnv/Select-NetVirtualizationNextHop.md | 2 +- .../netwnv/Set-NetVirtualizationCustomerRoute.md | 2 +- .../winserver2019-ps/netwnv/Set-NetVirtualizationGlobal.md | 2 +- .../netwnv/Set-NetVirtualizationLookupRecord.md | 2 +- .../netwnv/Set-NetVirtualizationProviderAddress.md | 2 +- .../netwnv/Set-NetVirtualizationProviderRoute.md | 2 +- .../networkconnectivitystatus/Get-DAConnectionStatus.md | 2 +- .../Get-NCSIPolicyConfiguration.md | 2 +- .../Reset-NCSIPolicyConfiguration.md | 2 +- .../Set-NCSIPolicyConfiguration.md | 2 +- .../networkcontroller/Add-NetworkControllerNode.md | 2 +- .../networkcontroller/Clear-NetworkControllerNodeContent.md | 2 +- .../networkcontroller/Disable-NetworkControllerNode.md | 2 +- .../networkcontroller/Enable-NetworkControllerNode.md | 2 +- .../networkcontroller/Get-NetworkController.md | 2 +- .../Get-NetworkControllerAccessControlList.md | 2 +- .../Get-NetworkControllerAccessControlListRule.md | 2 +- .../networkcontroller/Get-NetworkControllerCluster.md | 2 +- .../Get-NetworkControllerConnectivityCheck.md | 2 +- .../Get-NetworkControllerConnectivityCheckResult.md | 2 +- .../networkcontroller/Get-NetworkControllerCredential.md | 2 +- .../networkcontroller/Get-NetworkControllerDiagnostic.md | 2 +- .../networkcontroller/Get-NetworkControllerFabricRoute.md | 2 +- .../networkcontroller/Get-NetworkControllerGateway.md | 2 +- .../networkcontroller/Get-NetworkControllerGatewayPool.md | 2 +- .../Get-NetworkControllerInternalResourceInstances.md | 2 +- .../networkcontroller/Get-NetworkControllerIpPool.md | 2 +- .../networkcontroller/Get-NetworkControllerLoadBalancer.md | 2 +- .../Get-NetworkControllerLoadBalancerBackendAddressPool.md | 2 +- .../Get-NetworkControllerLoadBalancerConfiguration.md | 2 +- ...-NetworkControllerLoadBalancerFrontendIpConfiguration.md | 2 +- .../Get-NetworkControllerLoadBalancerInboundNatRule.md | 2 +- .../Get-NetworkControllerLoadBalancerMux.md | 2 +- .../Get-NetworkControllerLoadBalancerOutboundNatRule.md | 2 +- .../Get-NetworkControllerLoadBalancerProbe.md | 2 +- .../Get-NetworkControllerLoadBalancingRule.md | 2 +- .../Get-NetworkControllerLogicalNetwork.md | 2 +- .../networkcontroller/Get-NetworkControllerLogicalSubnet.md | 2 +- .../networkcontroller/Get-NetworkControllerMacPool.md | 2 +- .../Get-NetworkControllerNetworkInterface.md | 2 +- .../Get-NetworkControllerNetworkInterfaceIpConfiguration.md | 2 +- .../networkcontroller/Get-NetworkControllerNode.md | 2 +- .../Get-NetworkControllerPublicIpAddress.md | 2 +- .../networkcontroller/Get-NetworkControllerRoute.md | 2 +- .../networkcontroller/Get-NetworkControllerRouteTable.md | 2 +- .../networkcontroller/Get-NetworkControllerServer.md | 2 +- .../Get-NetworkControllerServerInterface.md | 2 +- .../Get-NetworkControllerServiceInsertion.md | 2 +- .../networkcontroller/Get-NetworkControllerState.md | 2 +- .../networkcontroller/Get-NetworkControllerStatistics.md | 2 +- .../Get-NetworkControllerVirtualGateway.md | 2 +- .../Get-NetworkControllerVirtualGatewayBgpPeer.md | 2 +- .../Get-NetworkControllerVirtualGatewayBgpRouter.md | 2 +- .../Get-NetworkControllerVirtualGatewayNetworkConnection.md | 2 +- .../Get-NetworkControllerVirtualGatewayPolicyMap.md | 2 +- .../Get-NetworkControllerVirtualNetwork.md | 2 +- .../Get-NetworkControllerVirtualNetworkConfiguration.md | 2 +- .../networkcontroller/Get-NetworkControllerVirtualServer.md | 2 +- .../networkcontroller/Get-NetworkControllerVirtualSubnet.md | 2 +- .../Get-NetworkControllerVirtualSwitchConfiguration.md | 2 +- .../networkcontroller/Install-NetworkController.md | 2 +- .../networkcontroller/Install-NetworkControllerCluster.md | 2 +- .../Invoke-NetworkControllerConnectivityCheck.md | 2 +- .../networkcontroller/Invoke-NetworkControllerState.md | 2 +- .../New-NetworkControllerAccessControlList.md | 2 +- .../New-NetworkControllerAccessControlListRule.md | 2 +- .../networkcontroller/New-NetworkControllerCredential.md | 2 +- .../networkcontroller/New-NetworkControllerFabricRoute.md | 2 +- .../networkcontroller/New-NetworkControllerGateway.md | 2 +- .../networkcontroller/New-NetworkControllerGatewayPool.md | 2 +- .../networkcontroller/New-NetworkControllerIpPool.md | 2 +- .../networkcontroller/New-NetworkControllerLoadBalancer.md | 2 +- .../New-NetworkControllerLoadBalancerBackendAddressPool.md | 2 +- .../New-NetworkControllerLoadBalancerConfiguration.md | 2 +- ...-NetworkControllerLoadBalancerFrontendIpConfiguration.md | 2 +- .../New-NetworkControllerLoadBalancerInboundNatRule.md | 2 +- .../New-NetworkControllerLoadBalancerMux.md | 2 +- .../New-NetworkControllerLoadBalancerOutboundNatRule.md | 2 +- .../New-NetworkControllerLoadBalancerProbe.md | 2 +- .../New-NetworkControllerLoadBalancingRule.md | 2 +- .../New-NetworkControllerLogicalNetwork.md | 2 +- .../networkcontroller/New-NetworkControllerLogicalSubnet.md | 2 +- .../networkcontroller/New-NetworkControllerMacPool.md | 2 +- .../New-NetworkControllerNetworkInterface.md | 2 +- .../New-NetworkControllerNetworkInterfaceIpConfiguration.md | 2 +- .../networkcontroller/New-NetworkControllerNodeObject.md | 2 +- .../New-NetworkControllerPublicIpAddress.md | 2 +- .../networkcontroller/New-NetworkControllerRoute.md | 2 +- .../networkcontroller/New-NetworkControllerRouteTable.md | 2 +- .../networkcontroller/New-NetworkControllerServer.md | 2 +- .../New-NetworkControllerServerInterface.md | 2 +- .../New-NetworkControllerServiceInsertion.md | 2 +- .../New-NetworkControllerVirtualGateway.md | 2 +- .../New-NetworkControllerVirtualGatewayBgpPeer.md | 2 +- .../New-NetworkControllerVirtualGatewayBgpRouter.md | 2 +- .../New-NetworkControllerVirtualGatewayNetworkConnection.md | 2 +- .../New-NetworkControllerVirtualGatewayPolicyMap.md | 2 +- .../New-NetworkControllerVirtualNetwork.md | 2 +- .../networkcontroller/New-NetworkControllerVirtualServer.md | 2 +- .../networkcontroller/New-NetworkControllerVirtualSubnet.md | 2 +- .../Remove-NetworkControllerAccessControlList.md | 2 +- .../Remove-NetworkControllerAccessControlListRule.md | 2 +- .../networkcontroller/Remove-NetworkControllerCredential.md | 2 +- .../Remove-NetworkControllerFabricRoute.md | 2 +- .../networkcontroller/Remove-NetworkControllerGateway.md | 2 +- .../Remove-NetworkControllerGatewayPool.md | 2 +- .../networkcontroller/Remove-NetworkControllerIpPool.md | 2 +- .../Remove-NetworkControllerLoadBalancer.md | 2 +- ...emove-NetworkControllerLoadBalancerBackendAddressPool.md | 2 +- .../Remove-NetworkControllerLoadBalancerConfiguration.md | 2 +- ...-NetworkControllerLoadBalancerFrontendIpConfiguration.md | 2 +- .../Remove-NetworkControllerLoadBalancerInboundNatRule.md | 2 +- .../Remove-NetworkControllerLoadBalancerMux.md | 2 +- .../Remove-NetworkControllerLoadBalancerOutboundNatRule.md | 2 +- .../Remove-NetworkControllerLoadBalancerProbe.md | 2 +- .../Remove-NetworkControllerLoadBalancingRule.md | 2 +- .../Remove-NetworkControllerLogicalNetwork.md | 2 +- .../Remove-NetworkControllerLogicalSubnet.md | 2 +- .../networkcontroller/Remove-NetworkControllerMacPool.md | 2 +- .../Remove-NetworkControllerNetworkInterface.md | 2 +- ...move-NetworkControllerNetworkInterfaceIpConfiguration.md | 2 +- .../networkcontroller/Remove-NetworkControllerNode.md | 2 +- .../Remove-NetworkControllerPublicIpAddress.md | 2 +- .../networkcontroller/Remove-NetworkControllerRoute.md | 2 +- .../networkcontroller/Remove-NetworkControllerRouteTable.md | 2 +- .../networkcontroller/Remove-NetworkControllerServer.md | 2 +- .../Remove-NetworkControllerServerInterface.md | 2 +- .../Remove-NetworkControllerServiceInsertion.md | 2 +- .../Remove-NetworkControllerVirtualGateway.md | 2 +- .../Remove-NetworkControllerVirtualGatewayBgpPeer.md | 2 +- .../Remove-NetworkControllerVirtualGatewayBgpRouter.md | 2 +- ...move-NetworkControllerVirtualGatewayNetworkConnection.md | 2 +- .../Remove-NetworkControllerVirtualGatewayPolicyMap.md | 2 +- .../Remove-NetworkControllerVirtualNetwork.md | 2 +- .../Remove-NetworkControllerVirtualServer.md | 2 +- .../Remove-NetworkControllerVirtualSubnet.md | 2 +- .../networkcontroller/Repair-NetworkControllerCluster.md | 2 +- .../networkcontroller/Set-NetworkController.md | 2 +- .../networkcontroller/Set-NetworkControllerCluster.md | 2 +- .../networkcontroller/Set-NetworkControllerDiagnostic.md | 2 +- .../networkcontroller/Set-NetworkControllerNode.md | 2 +- .../Set-NetworkControllerVirtualNetworkConfiguration.md | 2 +- .../Set-NetworkControllerVirtualSwitchConfiguration.md | 2 +- .../networkcontroller/Uninstall-NetworkController.md | 2 +- .../networkcontroller/Uninstall-NetworkControllerCluster.md | 2 +- .../networkcontroller/Update-NetworkController.md | 2 +- .../networkcontrollerdiagnostics/Debug-NetworkController.md | 2 +- .../Debug-NetworkControllerConfigurationState.md | 2 +- .../Debug-ServiceFabricNodeStatus.md | 2 +- .../Get-NetworkControllerDeploymentInfo.md | 2 +- .../Get-NetworkControllerReplica.md | 2 +- .../networkloadbalancingclusters/Add-NlbClusterNode.md | 2 +- .../networkloadbalancingclusters/Add-NlbClusterNodeDip.md | 2 +- .../networkloadbalancingclusters/Add-NlbClusterPortRule.md | 2 +- .../networkloadbalancingclusters/Add-NlbClusterVip.md | 2 +- .../Disable-NlbClusterPortRule.md | 2 +- .../Enable-NlbClusterPortRule.md | 2 +- .../networkloadbalancingclusters/Get-NlbCluster.md | 2 +- .../Get-NlbClusterDriverInfo.md | 2 +- .../networkloadbalancingclusters/Get-NlbClusterNode.md | 2 +- .../networkloadbalancingclusters/Get-NlbClusterNodeDip.md | 2 +- .../Get-NlbClusterNodeNetworkInterface.md | 2 +- .../networkloadbalancingclusters/Get-NlbClusterPortRule.md | 2 +- .../networkloadbalancingclusters/Get-NlbClusterVip.md | 2 +- .../networkloadbalancingclusters/New-NlbCluster.md | 2 +- .../New-NlbClusterIpv6Address.md | 2 +- .../networkloadbalancingclusters/Remove-NlbCluster.md | 2 +- .../networkloadbalancingclusters/Remove-NlbClusterNode.md | 2 +- .../Remove-NlbClusterNodeDip.md | 2 +- .../Remove-NlbClusterPortRule.md | 2 +- .../networkloadbalancingclusters/Remove-NlbClusterVip.md | 2 +- .../networkloadbalancingclusters/Resume-NlbCluster.md | 2 +- .../networkloadbalancingclusters/Resume-NlbClusterNode.md | 2 +- .../networkloadbalancingclusters/Set-NlbCluster.md | 2 +- .../networkloadbalancingclusters/Set-NlbClusterNode.md | 2 +- .../networkloadbalancingclusters/Set-NlbClusterNodeDip.md | 2 +- .../networkloadbalancingclusters/Set-NlbClusterPortRule.md | 2 +- .../Set-NlbClusterPortRuleNodeHandlingPriority.md | 2 +- .../Set-NlbClusterPortRuleNodeWeight.md | 2 +- .../networkloadbalancingclusters/Set-NlbClusterVip.md | 2 +- .../networkloadbalancingclusters/Start-NlbCluster.md | 2 +- .../networkloadbalancingclusters/Start-NlbClusterNode.md | 2 +- .../networkloadbalancingclusters/Stop-NlbCluster.md | 2 +- .../networkloadbalancingclusters/Stop-NlbClusterNode.md | 2 +- .../networkloadbalancingclusters/Suspend-NlbCluster.md | 2 +- .../networkloadbalancingclusters/Suspend-NlbClusterNode.md | 2 +- .../Disable-NetworkSwitchEthernetPort.md | 2 +- .../networkswitchmanager/Disable-NetworkSwitchFeature.md | 2 +- .../networkswitchmanager/Disable-NetworkSwitchVlan.md | 2 +- .../Enable-NetworkSwitchEthernetPort.md | 2 +- .../networkswitchmanager/Enable-NetworkSwitchFeature.md | 2 +- .../networkswitchmanager/Enable-NetworkSwitchVlan.md | 2 +- .../networkswitchmanager/Get-NetworkSwitchEthernetPort.md | 2 +- .../networkswitchmanager/Get-NetworkSwitchFeature.md | 2 +- .../networkswitchmanager/Get-NetworkSwitchGlobalData.md | 2 +- .../networkswitchmanager/Get-NetworkSwitchVlan.md | 2 +- .../networkswitchmanager/New-NetworkSwitchVlan.md | 2 +- .../Remove-NetworkSwitchEthernetPortIPAddress.md | 2 +- .../networkswitchmanager/Remove-NetworkSwitchVlan.md | 2 +- .../Restore-NetworkSwitchConfiguration.md | 2 +- .../networkswitchmanager/Save-NetworkSwitchConfiguration.md | 2 +- .../Set-NetworkSwitchEthernetPortIPAddress.md | 2 +- .../networkswitchmanager/Set-NetworkSwitchPortMode.md | 2 +- .../networkswitchmanager/Set-NetworkSwitchPortProperty.md | 2 +- .../networkswitchmanager/Set-NetworkSwitchVlanProperty.md | 2 +- .../networktransition/Add-NetIPHttpsCertBinding.md | 2 +- .../Disable-NetDnsTransitionConfiguration.md | 2 +- .../networktransition/Disable-NetIPHttpsProfile.md | 2 +- .../Disable-NetNatTransitionConfiguration.md | 2 +- .../Enable-NetDnsTransitionConfiguration.md | 2 +- .../networktransition/Enable-NetIPHttpsProfile.md | 2 +- .../Enable-NetNatTransitionConfiguration.md | 2 +- .../networktransition/Get-Net6to4Configuration.md | 2 +- .../networktransition/Get-NetDnsTransitionConfiguration.md | 2 +- .../networktransition/Get-NetDnsTransitionMonitoring.md | 2 +- .../networktransition/Get-NetIPHttpsConfiguration.md | 2 +- .../networktransition/Get-NetIPHttpsState.md | 2 +- .../networktransition/Get-NetIsatapConfiguration.md | 2 +- .../networktransition/Get-NetNatTransitionConfiguration.md | 2 +- .../networktransition/Get-NetNatTransitionMonitoring.md | 2 +- .../networktransition/Get-NetTeredoConfiguration.md | 2 +- .../networktransition/Get-NetTeredoState.md | 2 +- .../networktransition/New-NetIPHttpsConfiguration.md | 2 +- .../networktransition/New-NetNatTransitionConfiguration.md | 2 +- .../networktransition/Remove-NetIPHttpsCertBinding.md | 2 +- .../networktransition/Remove-NetIPHttpsConfiguration.md | 2 +- .../Remove-NetNatTransitionConfiguration.md | 2 +- .../networktransition/Rename-NetIPHttpsConfiguration.md | 2 +- .../networktransition/Reset-Net6to4Configuration.md | 2 +- .../Reset-NetDnsTransitionConfiguration.md | 2 +- .../networktransition/Reset-NetIPHttpsConfiguration.md | 2 +- .../networktransition/Reset-NetIsatapConfiguration.md | 2 +- .../networktransition/Reset-NetTeredoConfiguration.md | 2 +- .../networktransition/Set-Net6to4Configuration.md | 2 +- .../networktransition/Set-NetDnsTransitionConfiguration.md | 2 +- .../networktransition/Set-NetIPHttpsConfiguration.md | 2 +- .../networktransition/Set-NetIsatapConfiguration.md | 2 +- .../networktransition/Set-NetNatTransitionConfiguration.md | 2 +- .../networktransition/Set-NetTeredoConfiguration.md | 2 +- docset/winserver2019-ps/nfs/Disconnect-NfsSession.md | 2 +- docset/winserver2019-ps/nfs/Get-NfsClientConfiguration.md | 2 +- docset/winserver2019-ps/nfs/Get-NfsClientLock.md | 2 +- docset/winserver2019-ps/nfs/Get-NfsClientgroup.md | 2 +- docset/winserver2019-ps/nfs/Get-NfsMappedIdentity.md | 2 +- docset/winserver2019-ps/nfs/Get-NfsMappingStore.md | 2 +- docset/winserver2019-ps/nfs/Get-NfsMountedClient.md | 2 +- docset/winserver2019-ps/nfs/Get-NfsNetgroup.md | 2 +- docset/winserver2019-ps/nfs/Get-NfsNetgroupStore.md | 2 +- docset/winserver2019-ps/nfs/Get-NfsOpenFile.md | 2 +- docset/winserver2019-ps/nfs/Get-NfsServerConfiguration.md | 2 +- docset/winserver2019-ps/nfs/Get-NfsSession.md | 2 +- docset/winserver2019-ps/nfs/Get-NfsShare.md | 2 +- docset/winserver2019-ps/nfs/Get-NfsSharePermission.md | 2 +- docset/winserver2019-ps/nfs/Get-NfsStatistics.md | 2 +- docset/winserver2019-ps/nfs/Grant-NfsSharePermission.md | 2 +- docset/winserver2019-ps/nfs/Install-NfsMappingStore.md | 2 +- docset/winserver2019-ps/nfs/New-NfsClientgroup.md | 2 +- docset/winserver2019-ps/nfs/New-NfsMappedIdentity.md | 2 +- docset/winserver2019-ps/nfs/New-NfsNetgroup.md | 2 +- docset/winserver2019-ps/nfs/New-NfsShare.md | 2 +- docset/winserver2019-ps/nfs/Remove-NfsClientgroup.md | 2 +- docset/winserver2019-ps/nfs/Remove-NfsMappedIdentity.md | 2 +- docset/winserver2019-ps/nfs/Remove-NfsNetgroup.md | 2 +- docset/winserver2019-ps/nfs/Remove-NfsShare.md | 2 +- docset/winserver2019-ps/nfs/Rename-NfsClientgroup.md | 2 +- docset/winserver2019-ps/nfs/Reset-NfsStatistics.md | 2 +- docset/winserver2019-ps/nfs/Resolve-NfsMappedIdentity.md | 2 +- docset/winserver2019-ps/nfs/Revoke-NfsClientLock.md | 2 +- docset/winserver2019-ps/nfs/Revoke-NfsMountedClient.md | 2 +- docset/winserver2019-ps/nfs/Revoke-NfsOpenFile.md | 2 +- docset/winserver2019-ps/nfs/Revoke-NfsSharePermission.md | 2 +- docset/winserver2019-ps/nfs/Set-NfsClientConfiguration.md | 2 +- docset/winserver2019-ps/nfs/Set-NfsClientgroup.md | 2 +- docset/winserver2019-ps/nfs/Set-NfsMappedIdentity.md | 2 +- docset/winserver2019-ps/nfs/Set-NfsMappingStore.md | 2 +- docset/winserver2019-ps/nfs/Set-NfsNetgroup.md | 2 +- docset/winserver2019-ps/nfs/Set-NfsNetgroupStore.md | 2 +- docset/winserver2019-ps/nfs/Set-NfsServerConfiguration.md | 2 +- docset/winserver2019-ps/nfs/Set-NfsShare.md | 2 +- docset/winserver2019-ps/nfs/Test-NfsMappedIdentity.md | 2 +- docset/winserver2019-ps/nfs/Test-NfsMappingStore.md | 2 +- docset/winserver2019-ps/nps/Export-NpsConfiguration.md | 2 +- docset/winserver2019-ps/nps/Get-NpsRadiusClient.md | 2 +- docset/winserver2019-ps/nps/Get-NpsSharedSecretTemplate.md | 2 +- docset/winserver2019-ps/nps/Import-NpsConfiguration.md | 2 +- docset/winserver2019-ps/nps/New-NpsRadiusClient.md | 2 +- docset/winserver2019-ps/nps/Remove-NpsRadiusClient.md | 2 +- docset/winserver2019-ps/nps/Set-NpsRadiusClient.md | 2 +- docset/winserver2019-ps/pcsvdevice/Clear-PcsvDeviceLog.md | 2 +- docset/winserver2019-ps/pcsvdevice/Get-PcsvDevice.md | 2 +- docset/winserver2019-ps/pcsvdevice/Get-PcsvDeviceLog.md | 2 +- docset/winserver2019-ps/pcsvdevice/Restart-PcsvDevice.md | 2 +- .../pcsvdevice/Set-PcsvDeviceBootConfiguration.md | 2 +- .../pcsvdevice/Set-PcsvDeviceNetworkConfiguration.md | 2 +- .../pcsvdevice/Set-PcsvDeviceUserPassword.md | 2 +- docset/winserver2019-ps/pcsvdevice/Start-PcsvDevice.md | 2 +- docset/winserver2019-ps/pcsvdevice/Stop-PcsvDevice.md | 2 +- .../pki/Add-CertificateEnrollmentPolicyServer.md | 2 +- docset/winserver2019-ps/pki/Export-Certificate.md | 2 +- docset/winserver2019-ps/pki/Export-PfxCertificate.md | 2 +- docset/winserver2019-ps/pki/Get-Certificate.md | 2 +- .../pki/Get-CertificateAutoEnrollmentPolicy.md | 2 +- .../pki/Get-CertificateEnrollmentPolicyServer.md | 2 +- .../winserver2019-ps/pki/Get-CertificateNotificationTask.md | 2 +- docset/winserver2019-ps/pki/Get-PfxData.md | 2 +- docset/winserver2019-ps/pki/Import-Certificate.md | 2 +- docset/winserver2019-ps/pki/Import-PfxCertificate.md | 2 +- .../winserver2019-ps/pki/New-CertificateNotificationTask.md | 2 +- docset/winserver2019-ps/pki/New-SelfSignedCertificate.md | 2 +- .../pki/Remove-CertificateEnrollmentPolicyServer.md | 2 +- .../pki/Remove-CertificateNotificationTask.md | 2 +- .../pki/Set-CertificateAutoEnrollmentPolicy.md | 2 +- docset/winserver2019-ps/pki/Switch-Certificate.md | 2 +- docset/winserver2019-ps/pki/Test-Certificate.md | 2 +- .../platformidentifier/Get-PlatformIdentifier.md | 2 +- docset/winserver2019-ps/pnpdevice/Disable-PnpDevice.md | 2 +- docset/winserver2019-ps/pnpdevice/Enable-PnpDevice.md | 2 +- docset/winserver2019-ps/pnpdevice/Get-PnpDevice.md | 2 +- docset/winserver2019-ps/pnpdevice/Get-PnpDeviceProperty.md | 2 +- docset/winserver2019-ps/printmanagement/Add-Printer.md | 2 +- .../winserver2019-ps/printmanagement/Add-PrinterDriver.md | 2 +- docset/winserver2019-ps/printmanagement/Add-PrinterPort.md | 2 +- .../printmanagement/Get-PrintConfiguration.md | 2 +- docset/winserver2019-ps/printmanagement/Get-PrintJob.md | 2 +- docset/winserver2019-ps/printmanagement/Get-Printer.md | 2 +- .../winserver2019-ps/printmanagement/Get-PrinterDriver.md | 2 +- docset/winserver2019-ps/printmanagement/Get-PrinterPort.md | 2 +- .../winserver2019-ps/printmanagement/Get-PrinterProperty.md | 2 +- .../winserver2019-ps/printmanagement/Read-PrinterNfcTag.md | 2 +- docset/winserver2019-ps/printmanagement/Remove-PrintJob.md | 2 +- docset/winserver2019-ps/printmanagement/Remove-Printer.md | 2 +- .../printmanagement/Remove-PrinterDriver.md | 2 +- .../winserver2019-ps/printmanagement/Remove-PrinterPort.md | 2 +- docset/winserver2019-ps/printmanagement/Rename-Printer.md | 2 +- docset/winserver2019-ps/printmanagement/Restart-PrintJob.md | 2 +- docset/winserver2019-ps/printmanagement/Resume-PrintJob.md | 2 +- .../printmanagement/Set-PrintConfiguration.md | 2 +- docset/winserver2019-ps/printmanagement/Set-Printer.md | 2 +- .../winserver2019-ps/printmanagement/Set-PrinterProperty.md | 2 +- docset/winserver2019-ps/printmanagement/Suspend-PrintJob.md | 2 +- .../winserver2019-ps/printmanagement/Write-PrinterNfcTag.md | 2 +- .../processmitigations/ConvertTo-ProcessMitigationPolicy.md | 2 +- .../processmitigations/Get-ProcessMitigation.md | 2 +- .../processmitigations/Set-ProcessMitigation.md | 2 +- .../provisioning/Export-ProvisioningPackage.md | 2 +- docset/winserver2019-ps/provisioning/Export-Trace.md | 2 +- .../provisioning/Get-ProvisioningPackage.md | 2 +- .../provisioning/Get-TrustedProvisioningCertificate.md | 2 +- .../provisioning/Install-ProvisioningPackage.md | 2 +- .../provisioning/Install-TrustedProvisioningCertificate.md | 2 +- .../provisioning/Uninstall-ProvisioningPackage.md | 2 +- .../Uninstall-TrustedProvisioningCertificate.md | 2 +- docset/winserver2019-ps/rdmgmt/Add-RDServer.md | 2 +- docset/winserver2019-ps/rdmgmt/Add-RDSessionHost.md | 2 +- .../rdmgmt/Add-RDVirtualDesktopToCollection.md | 2 +- .../rdmgmt/Disable-RDVirtualDesktopADMachineAccountReuse.md | 2 +- docset/winserver2019-ps/rdmgmt/Disconnect-RDUser.md | 2 +- .../rdmgmt/Enable-RDVirtualDesktopADMachineAccountReuse.md | 2 +- .../rdmgmt/Export-RDPersonalSessionDesktopAssignment.md | 2 +- .../rdmgmt/Export-RDPersonalVirtualDesktopAssignment.md | 2 +- docset/winserver2019-ps/rdmgmt/Get-RDAvailableApp.md | 2 +- docset/winserver2019-ps/rdmgmt/Get-RDCertificate.md | 2 +- .../rdmgmt/Get-RDConnectionBrokerHighAvailability.md | 2 +- .../rdmgmt/Get-RDDeploymentGatewayConfiguration.md | 2 +- docset/winserver2019-ps/rdmgmt/Get-RDFileTypeAssociation.md | 2 +- .../winserver2019-ps/rdmgmt/Get-RDLicenseConfiguration.md | 2 +- .../rdmgmt/Get-RDPersonalSessionDesktopAssignment.md | 2 +- .../rdmgmt/Get-RDPersonalVirtualDesktopAssignment.md | 2 +- .../rdmgmt/Get-RDPersonalVirtualDesktopPatchSchedule.md | 2 +- docset/winserver2019-ps/rdmgmt/Get-RDRemoteApp.md | 2 +- docset/winserver2019-ps/rdmgmt/Get-RDRemoteDesktop.md | 2 +- docset/winserver2019-ps/rdmgmt/Get-RDServer.md | 2 +- docset/winserver2019-ps/rdmgmt/Get-RDSessionCollection.md | 2 +- .../rdmgmt/Get-RDSessionCollectionConfiguration.md | 2 +- docset/winserver2019-ps/rdmgmt/Get-RDSessionHost.md | 2 +- docset/winserver2019-ps/rdmgmt/Get-RDUserSession.md | 2 +- docset/winserver2019-ps/rdmgmt/Get-RDVirtualDesktop.md | 2 +- .../rdmgmt/Get-RDVirtualDesktopCollection.md | 2 +- .../rdmgmt/Get-RDVirtualDesktopCollectionConfiguration.md | 2 +- .../rdmgmt/Get-RDVirtualDesktopCollectionJobStatus.md | 2 +- .../rdmgmt/Get-RDVirtualDesktopConcurrency.md | 2 +- .../rdmgmt/Get-RDVirtualDesktopIdleCount.md | 2 +- .../rdmgmt/Get-RDVirtualDesktopTemplateExportPath.md | 2 +- docset/winserver2019-ps/rdmgmt/Get-RDWorkspace.md | 2 +- docset/winserver2019-ps/rdmgmt/Grant-RDOUAccess.md | 2 +- .../rdmgmt/Import-RDPersonalSessionDesktopAssignment.md | 2 +- .../rdmgmt/Import-RDPersonalVirtualDesktopAssignment.md | 2 +- docset/winserver2019-ps/rdmgmt/Invoke-RDUserLogoff.md | 2 +- docset/winserver2019-ps/rdmgmt/Move-RDVirtualDesktop.md | 2 +- docset/winserver2019-ps/rdmgmt/New-RDCertificate.md | 2 +- .../rdmgmt/New-RDPersonalVirtualDesktopPatchSchedule.md | 2 +- docset/winserver2019-ps/rdmgmt/New-RDRemoteApp.md | 2 +- docset/winserver2019-ps/rdmgmt/New-RDSessionCollection.md | 2 +- docset/winserver2019-ps/rdmgmt/New-RDSessionDeployment.md | 2 +- .../rdmgmt/New-RDVirtualDesktopCollection.md | 2 +- .../rdmgmt/New-RDVirtualDesktopDeployment.md | 2 +- .../rdmgmt/Remove-RDDatabaseConnectionString.md | 2 +- .../rdmgmt/Remove-RDPersonalSessionDesktopAssignment.md | 2 +- .../rdmgmt/Remove-RDPersonalVirtualDesktopAssignment.md | 2 +- .../rdmgmt/Remove-RDPersonalVirtualDesktopPatchSchedule.md | 2 +- docset/winserver2019-ps/rdmgmt/Remove-RDRemoteApp.md | 2 +- docset/winserver2019-ps/rdmgmt/Remove-RDServer.md | 2 +- .../winserver2019-ps/rdmgmt/Remove-RDSessionCollection.md | 2 +- docset/winserver2019-ps/rdmgmt/Remove-RDSessionHost.md | 2 +- .../rdmgmt/Remove-RDVirtualDesktopCollection.md | 2 +- .../rdmgmt/Remove-RDVirtualDesktopFromCollection.md | 2 +- docset/winserver2019-ps/rdmgmt/Send-RDUserMessage.md | 2 +- .../winserver2019-ps/rdmgmt/Set-RDActiveManagementServer.md | 2 +- docset/winserver2019-ps/rdmgmt/Set-RDCertificate.md | 2 +- docset/winserver2019-ps/rdmgmt/Set-RDClientAccessName.md | 2 +- .../rdmgmt/Set-RDConnectionBrokerHighAvailability.md | 2 +- .../rdmgmt/Set-RDDatabaseConnectionString.md | 2 +- .../rdmgmt/Set-RDDeploymentGatewayConfiguration.md | 2 +- docset/winserver2019-ps/rdmgmt/Set-RDFileTypeAssociation.md | 2 +- .../winserver2019-ps/rdmgmt/Set-RDLicenseConfiguration.md | 2 +- .../rdmgmt/Set-RDPersonalSessionDesktopAssignment.md | 2 +- .../rdmgmt/Set-RDPersonalVirtualDesktopAssignment.md | 2 +- .../rdmgmt/Set-RDPersonalVirtualDesktopPatchSchedule.md | 2 +- docset/winserver2019-ps/rdmgmt/Set-RDRemoteApp.md | 2 +- docset/winserver2019-ps/rdmgmt/Set-RDRemoteDesktop.md | 2 +- .../rdmgmt/Set-RDSessionCollectionConfiguration.md | 2 +- docset/winserver2019-ps/rdmgmt/Set-RDSessionHost.md | 2 +- .../rdmgmt/Set-RDVirtualDesktopCollectionConfiguration.md | 2 +- .../rdmgmt/Set-RDVirtualDesktopConcurrency.md | 2 +- .../rdmgmt/Set-RDVirtualDesktopIdleCount.md | 2 +- .../rdmgmt/Set-RDVirtualDesktopTemplateExportPath.md | 2 +- docset/winserver2019-ps/rdmgmt/Set-RDWorkspace.md | 2 +- .../rdmgmt/Stop-RDVirtualDesktopCollectionJob.md | 2 +- docset/winserver2019-ps/rdmgmt/Test-RDOUAccess.md | 2 +- .../rdmgmt/Test-RDVirtualDesktopADMachineAccountReuse.md | 2 +- .../rdmgmt/Update-RDVirtualDesktopCollection.md | 2 +- docset/winserver2019-ps/remoteaccess/Add-BgpCustomRoute.md | 2 +- docset/winserver2019-ps/remoteaccess/Add-BgpPeer.md | 2 +- .../winserver2019-ps/remoteaccess/Add-BgpRouteAggregate.md | 2 +- docset/winserver2019-ps/remoteaccess/Add-BgpRouter.md | 2 +- .../winserver2019-ps/remoteaccess/Add-BgpRoutingPolicy.md | 2 +- .../remoteaccess/Add-BgpRoutingPolicyForPeer.md | 2 +- docset/winserver2019-ps/remoteaccess/Add-DAAppServer.md | 2 +- docset/winserver2019-ps/remoteaccess/Add-DAClient.md | 2 +- .../remoteaccess/Add-DAClientDnsConfiguration.md | 2 +- docset/winserver2019-ps/remoteaccess/Add-DAEntryPoint.md | 2 +- docset/winserver2019-ps/remoteaccess/Add-DAMgmtServer.md | 2 +- .../remoteaccess/Add-RemoteAccessIpFilter.md | 2 +- .../remoteaccess/Add-RemoteAccessLoadBalancerNode.md | 2 +- .../winserver2019-ps/remoteaccess/Add-RemoteAccessRadius.md | 2 +- .../winserver2019-ps/remoteaccess/Add-VpnIPAddressRange.md | 2 +- docset/winserver2019-ps/remoteaccess/Add-VpnS2SInterface.md | 2 +- .../winserver2019-ps/remoteaccess/Add-VpnSstpProxyRule.md | 2 +- .../remoteaccess/Clear-BgpRouteFlapDampening.md | 2 +- .../remoteaccess/Clear-RemoteAccessInboxAccountingStore.md | 2 +- .../remoteaccess/Clear-VpnS2SInterfaceStatistics.md | 2 +- .../remoteaccess/Connect-VpnS2SInterface.md | 2 +- .../remoteaccess/Disable-BgpRouteFlapDampening.md | 2 +- docset/winserver2019-ps/remoteaccess/Disable-DAMultiSite.md | 2 +- .../remoteaccess/Disable-DAOtpAuthentication.md | 2 +- .../remoteaccess/Disable-RemoteAccessRoutingDomain.md | 2 +- .../remoteaccess/Disconnect-VpnS2SInterface.md | 2 +- docset/winserver2019-ps/remoteaccess/Disconnect-VpnUser.md | 2 +- .../remoteaccess/Enable-BgpRouteFlapDampening.md | 2 +- docset/winserver2019-ps/remoteaccess/Enable-DAMultiSite.md | 2 +- .../remoteaccess/Enable-DAOtpAuthentication.md | 2 +- .../remoteaccess/Enable-RemoteAccessRoutingDomain.md | 2 +- docset/winserver2019-ps/remoteaccess/Get-BgpCustomRoute.md | 2 +- docset/winserver2019-ps/remoteaccess/Get-BgpPeer.md | 2 +- .../winserver2019-ps/remoteaccess/Get-BgpRouteAggregate.md | 2 +- .../remoteaccess/Get-BgpRouteFlapDampening.md | 2 +- .../remoteaccess/Get-BgpRouteInformation.md | 2 +- docset/winserver2019-ps/remoteaccess/Get-BgpRouter.md | 2 +- .../winserver2019-ps/remoteaccess/Get-BgpRoutingPolicy.md | 2 +- docset/winserver2019-ps/remoteaccess/Get-BgpStatistics.md | 2 +- docset/winserver2019-ps/remoteaccess/Get-DAAppServer.md | 2 +- docset/winserver2019-ps/remoteaccess/Get-DAClient.md | 2 +- .../remoteaccess/Get-DAClientDnsConfiguration.md | 2 +- docset/winserver2019-ps/remoteaccess/Get-DAEntryPoint.md | 2 +- docset/winserver2019-ps/remoteaccess/Get-DAEntryPointDC.md | 2 +- docset/winserver2019-ps/remoteaccess/Get-DAMgmtServer.md | 2 +- docset/winserver2019-ps/remoteaccess/Get-DAMultiSite.md | 2 +- .../remoteaccess/Get-DANetworkLocationServer.md | 2 +- .../remoteaccess/Get-DAOtpAuthentication.md | 2 +- docset/winserver2019-ps/remoteaccess/Get-DAServer.md | 2 +- docset/winserver2019-ps/remoteaccess/Get-RemoteAccess.md | 2 +- .../remoteaccess/Get-RemoteAccessAccounting.md | 2 +- .../remoteaccess/Get-RemoteAccessConfiguration.md | 2 +- .../remoteaccess/Get-RemoteAccessConnectionStatistics.md | 2 +- .../Get-RemoteAccessConnectionStatisticsSummary.md | 2 +- .../winserver2019-ps/remoteaccess/Get-RemoteAccessHealth.md | 2 +- .../remoteaccess/Get-RemoteAccessIpFilter.md | 2 +- .../remoteaccess/Get-RemoteAccessLoadBalancer.md | 2 +- .../winserver2019-ps/remoteaccess/Get-RemoteAccessRadius.md | 2 +- .../remoteaccess/Get-RemoteAccessRoutingDomain.md | 2 +- .../remoteaccess/Get-RemoteAccessUserActivity.md | 2 +- .../remoteaccess/Get-RoutingProtocolPreference.md | 2 +- docset/winserver2019-ps/remoteaccess/Get-VpnAuthProtocol.md | 2 +- docset/winserver2019-ps/remoteaccess/Get-VpnS2SInterface.md | 2 +- .../remoteaccess/Get-VpnS2SInterfaceStatistics.md | 2 +- .../remoteaccess/Get-VpnServerConfiguration.md | 2 +- .../winserver2019-ps/remoteaccess/Get-VpnSstpProxyRule.md | 2 +- .../winserver2019-ps/remoteaccess/Install-RemoteAccess.md | 2 +- .../winserver2019-ps/remoteaccess/New-VpnSstpProxyRule.md | 2 +- .../winserver2019-ps/remoteaccess/New-VpnTrafficSelector.md | 2 +- .../winserver2019-ps/remoteaccess/Remove-BgpCustomRoute.md | 2 +- docset/winserver2019-ps/remoteaccess/Remove-BgpPeer.md | 2 +- .../remoteaccess/Remove-BgpRouteAggregate.md | 2 +- docset/winserver2019-ps/remoteaccess/Remove-BgpRouter.md | 2 +- .../remoteaccess/Remove-BgpRoutingPolicy.md | 2 +- .../remoteaccess/Remove-BgpRoutingPolicyForPeer.md | 2 +- docset/winserver2019-ps/remoteaccess/Remove-DAAppServer.md | 2 +- docset/winserver2019-ps/remoteaccess/Remove-DAClient.md | 2 +- .../remoteaccess/Remove-DAClientDnsConfiguration.md | 2 +- docset/winserver2019-ps/remoteaccess/Remove-DAEntryPoint.md | 2 +- docset/winserver2019-ps/remoteaccess/Remove-DAMgmtServer.md | 2 +- .../remoteaccess/Remove-RemoteAccessIpFilter.md | 2 +- .../remoteaccess/Remove-RemoteAccessLoadBalancerNode.md | 2 +- .../remoteaccess/Remove-RemoteAccessRadius.md | 2 +- .../remoteaccess/Remove-VpnIPAddressRange.md | 2 +- .../winserver2019-ps/remoteaccess/Remove-VpnS2SInterface.md | 2 +- .../remoteaccess/Remove-VpnSstpProxyRule.md | 2 +- docset/winserver2019-ps/remoteaccess/Set-BgpPeer.md | 2 +- .../winserver2019-ps/remoteaccess/Set-BgpRouteAggregate.md | 2 +- .../remoteaccess/Set-BgpRouteFlapDampening.md | 2 +- docset/winserver2019-ps/remoteaccess/Set-BgpRouter.md | 2 +- .../winserver2019-ps/remoteaccess/Set-BgpRoutingPolicy.md | 2 +- .../remoteaccess/Set-BgpRoutingPolicyForPeer.md | 2 +- .../remoteaccess/Set-DAAppServerConnection.md | 2 +- docset/winserver2019-ps/remoteaccess/Set-DAClient.md | 2 +- .../remoteaccess/Set-DAClientDnsConfiguration.md | 2 +- docset/winserver2019-ps/remoteaccess/Set-DAEntryPoint.md | 2 +- docset/winserver2019-ps/remoteaccess/Set-DAEntryPointDC.md | 2 +- docset/winserver2019-ps/remoteaccess/Set-DAMultiSite.md | 2 +- .../remoteaccess/Set-DANetworkLocationServer.md | 2 +- .../remoteaccess/Set-DAOtpAuthentication.md | 2 +- docset/winserver2019-ps/remoteaccess/Set-DAServer.md | 2 +- docset/winserver2019-ps/remoteaccess/Set-RemoteAccess.md | 2 +- .../remoteaccess/Set-RemoteAccessAccounting.md | 2 +- .../remoteaccess/Set-RemoteAccessConfiguration.md | 2 +- .../remoteaccess/Set-RemoteAccessInboxAccountingStore.md | 2 +- .../remoteaccess/Set-RemoteAccessIpFilter.md | 2 +- .../remoteaccess/Set-RemoteAccessLoadBalancer.md | 2 +- .../winserver2019-ps/remoteaccess/Set-RemoteAccessRadius.md | 2 +- .../remoteaccess/Set-RemoteAccessRoutingDomain.md | 2 +- .../remoteaccess/Set-RoutingProtocolPreference.md | 2 +- docset/winserver2019-ps/remoteaccess/Set-VpnAuthProtocol.md | 2 +- docset/winserver2019-ps/remoteaccess/Set-VpnAuthType.md | 2 +- .../remoteaccess/Set-VpnIPAddressAssignment.md | 2 +- docset/winserver2019-ps/remoteaccess/Set-VpnS2SInterface.md | 2 +- .../remoteaccess/Set-VpnServerConfiguration.md | 2 +- .../winserver2019-ps/remoteaccess/Set-VpnSstpProxyRule.md | 2 +- docset/winserver2019-ps/remoteaccess/Start-BgpPeer.md | 2 +- docset/winserver2019-ps/remoteaccess/Stop-BgpPeer.md | 2 +- .../winserver2019-ps/remoteaccess/Uninstall-RemoteAccess.md | 2 +- docset/winserver2019-ps/remoteaccess/Update-DAMgmtServer.md | 2 +- .../remotedesktopservices/Convert-License.md | 2 +- .../scheduledtasks/Disable-ScheduledTask.md | 2 +- .../winserver2019-ps/scheduledtasks/Enable-ScheduledTask.md | 2 +- .../winserver2019-ps/scheduledtasks/Export-ScheduledTask.md | 2 +- .../scheduledtasks/Get-ClusteredScheduledTask.md | 2 +- docset/winserver2019-ps/scheduledtasks/Get-ScheduledTask.md | 2 +- .../scheduledtasks/Get-ScheduledTaskInfo.md | 2 +- docset/winserver2019-ps/scheduledtasks/New-ScheduledTask.md | 2 +- .../scheduledtasks/New-ScheduledTaskAction.md | 2 +- .../scheduledtasks/New-ScheduledTaskPrincipal.md | 2 +- .../scheduledtasks/New-ScheduledTaskSettingsSet.md | 2 +- .../scheduledtasks/New-ScheduledTaskTrigger.md | 2 +- .../scheduledtasks/Register-ClusteredScheduledTask.md | 2 +- .../scheduledtasks/Register-ScheduledTask.md | 2 +- .../scheduledtasks/Set-ClusteredScheduledTask.md | 2 +- docset/winserver2019-ps/scheduledtasks/Set-ScheduledTask.md | 2 +- .../winserver2019-ps/scheduledtasks/Start-ScheduledTask.md | 2 +- .../winserver2019-ps/scheduledtasks/Stop-ScheduledTask.md | 2 +- .../scheduledtasks/Unregister-ClusteredScheduledTask.md | 2 +- .../scheduledtasks/Unregister-ScheduledTask.md | 2 +- .../winserver2019-ps/secureboot/Confirm-SecureBootUEFI.md | 2 +- docset/winserver2019-ps/secureboot/Format-SecureBootUEFI.md | 2 +- docset/winserver2019-ps/secureboot/Get-SecureBootPolicy.md | 2 +- docset/winserver2019-ps/secureboot/Get-SecureBootUEFI.md | 2 +- docset/winserver2019-ps/secureboot/Set-SecureBootUEFI.md | 2 +- docset/winserver2019-ps/servercore/Get-DisplayResolution.md | 2 +- docset/winserver2019-ps/servercore/Set-DisplayResolution.md | 2 +- .../servermanagertasks/Get-SMCounterSample.md | 2 +- .../servermanagertasks/Get-SMPerformanceCollector.md | 2 +- .../servermanagertasks/Get-SMServerBpaResult.md | 2 +- .../servermanagertasks/Get-SMServerClusterName.md | 2 +- .../servermanagertasks/Get-SMServerEvent.md | 2 +- .../servermanagertasks/Get-SMServerFeature.md | 2 +- .../servermanagertasks/Get-SMServerInventory.md | 2 +- .../servermanagertasks/Get-SMServerService.md | 2 +- .../servermanagertasks/Remove-SMServerPerformanceLog.md | 2 +- .../servermanagertasks/Start-SMPerformanceCollector.md | 2 +- .../servermanagertasks/Stop-SMPerformanceCollector.md | 2 +- .../Get-KeyProtectorFromShieldingDataFile.md | 2 +- .../shieldedvmcmdlets/Get-ShieldedVMProvisioningStatus.md | 2 +- .../shieldedvmcmdlets/Initialize-ShieldedVM.md | 2 +- .../New-ShieldedVMSpecializationDataFile.md | 2 +- .../shieldedvmcmdlets/Test-ShieldingDataApplicability.md | 2 +- .../shieldedvmdatafile/Import-ShieldingDataFile.md | 2 +- .../shieldedvmdatafile/New-ShieldingDataFile.md | 2 +- .../shieldedvmdatafile/New-VolumeIDQualifier.md | 2 +- .../shieldedvmdatafile/Save-ShieldedVMRecoveryKey.md | 2 +- .../shieldedvmdatafile/Save-VolumeSignatureCatalog.md | 2 +- .../shieldedvmdatafile/Unprotect-ShieldedVMRecoveryKey.md | 2 +- .../shieldedvmtemplate/Initialize-VMShieldingHelperVHD.md | 2 +- .../shieldedvmtemplate/Protect-TemplateDisk.md | 2 +- docset/winserver2019-ps/smbshare/Block-SmbShareAccess.md | 2 +- docset/winserver2019-ps/smbshare/Close-SmbOpenFile.md | 2 +- docset/winserver2019-ps/smbshare/Close-SmbSession.md | 2 +- docset/winserver2019-ps/smbshare/Disable-SmbDelegation.md | 2 +- docset/winserver2019-ps/smbshare/Enable-SmbDelegation.md | 2 +- docset/winserver2019-ps/smbshare/Get-SmbBandwidthLimit.md | 2 +- .../winserver2019-ps/smbshare/Get-SmbClientConfiguration.md | 2 +- .../smbshare/Get-SmbClientNetworkInterface.md | 2 +- docset/winserver2019-ps/smbshare/Get-SmbConnection.md | 2 +- docset/winserver2019-ps/smbshare/Get-SmbDelegation.md | 2 +- docset/winserver2019-ps/smbshare/Get-SmbMapping.md | 2 +- .../smbshare/Get-SmbMultichannelConnection.md | 2 +- .../smbshare/Get-SmbMultichannelConstraint.md | 2 +- docset/winserver2019-ps/smbshare/Get-SmbOpenFile.md | 2 +- .../winserver2019-ps/smbshare/Get-SmbServerConfiguration.md | 2 +- .../smbshare/Get-SmbServerNetworkInterface.md | 2 +- docset/winserver2019-ps/smbshare/Get-SmbSession.md | 2 +- docset/winserver2019-ps/smbshare/Get-SmbShare.md | 2 +- docset/winserver2019-ps/smbshare/Get-SmbShareAccess.md | 2 +- docset/winserver2019-ps/smbshare/Grant-SmbShareAccess.md | 2 +- docset/winserver2019-ps/smbshare/New-SmbMapping.md | 2 +- .../smbshare/New-SmbMultichannelConstraint.md | 2 +- docset/winserver2019-ps/smbshare/New-SmbShare.md | 2 +- .../winserver2019-ps/smbshare/Remove-SmbBandwidthLimit.md | 2 +- docset/winserver2019-ps/smbshare/Remove-SmbMapping.md | 2 +- .../smbshare/Remove-SmbMultichannelConstraint.md | 2 +- docset/winserver2019-ps/smbshare/Remove-SmbShare.md | 2 +- docset/winserver2019-ps/smbshare/Revoke-SmbShareAccess.md | 2 +- docset/winserver2019-ps/smbshare/Set-SmbBandwidthLimit.md | 2 +- .../winserver2019-ps/smbshare/Set-SmbClientConfiguration.md | 2 +- docset/winserver2019-ps/smbshare/Set-SmbPathAcl.md | 2 +- .../winserver2019-ps/smbshare/Set-SmbServerConfiguration.md | 2 +- docset/winserver2019-ps/smbshare/Set-SmbShare.md | 2 +- docset/winserver2019-ps/smbshare/Unblock-SmbShareAccess.md | 2 +- .../smbshare/Update-SmbMultichannelConnection.md | 2 +- docset/winserver2019-ps/smbwitness/Get-SmbWitnessClient.md | 2 +- docset/winserver2019-ps/smbwitness/Move-SmbWitnessClient.md | 2 +- docset/winserver2019-ps/smisconfig/Register-SmisProvider.md | 2 +- docset/winserver2019-ps/smisconfig/Search-SmisProvider.md | 2 +- .../winserver2019-ps/smisconfig/Unregister-SmisProvider.md | 2 +- .../softwareinventorylogging/Get-SilComputer.md | 2 +- .../softwareinventorylogging/Get-SilData.md | 2 +- .../softwareinventorylogging/Get-SilLogging.md | 2 +- .../softwareinventorylogging/Get-SilSoftware.md | 2 +- .../softwareinventorylogging/Get-SilUalAccess.md | 2 +- .../softwareinventorylogging/Get-SilWindowsUpdate.md | 2 +- .../softwareinventorylogging/Publish-SilData.md | 2 +- .../softwareinventorylogging/Set-SilLogging.md | 2 +- .../softwareinventorylogging/Start-SilLogging.md | 2 +- .../softwareinventorylogging/Stop-SilLogging.md | 2 +- docset/winserver2019-ps/startlayout/Export-StartLayout.md | 2 +- docset/winserver2019-ps/startlayout/Get-StartApps.md | 2 +- docset/winserver2019-ps/startlayout/Import-StartLayout.md | 2 +- .../winserver2019-ps/storage/Add-InitiatorIdToMaskingSet.md | 2 +- docset/winserver2019-ps/storage/Add-PartitionAccessPath.md | 2 +- docset/winserver2019-ps/storage/Add-PhysicalDisk.md | 2 +- .../winserver2019-ps/storage/Add-TargetPortToMaskingSet.md | 2 +- .../winserver2019-ps/storage/Add-VirtualDiskToMaskingSet.md | 2 +- docset/winserver2019-ps/storage/Block-FileShareAccess.md | 2 +- docset/winserver2019-ps/storage/Clear-Disk.md | 2 +- docset/winserver2019-ps/storage/Clear-FileStorageTier.md | 2 +- docset/winserver2019-ps/storage/Connect-VirtualDisk.md | 2 +- docset/winserver2019-ps/storage/Debug-FileShare.md | 2 +- docset/winserver2019-ps/storage/Debug-StorageSubSystem.md | 2 +- docset/winserver2019-ps/storage/Debug-Volume.md | 2 +- .../storage/Disable-PhysicalDiskIdentification.md | 2 +- .../storage/Disable-StorageEnclosureIdentification.md | 2 +- .../storage/Disable-StorageHighAvailability.md | 2 +- .../storage/Disable-StorageMaintenanceMode.md | 2 +- docset/winserver2019-ps/storage/Disconnect-VirtualDisk.md | 2 +- docset/winserver2019-ps/storage/Dismount-DiskImage.md | 2 +- .../storage/Enable-PhysicalDiskIdentification.md | 2 +- .../storage/Enable-StorageEnclosureIdentification.md | 2 +- .../storage/Enable-StorageHighAvailability.md | 2 +- .../storage/Enable-StorageMaintenanceMode.md | 2 +- docset/winserver2019-ps/storage/Format-Volume.md | 2 +- docset/winserver2019-ps/storage/Get-DedupProperties.md | 2 +- docset/winserver2019-ps/storage/Get-Disk.md | 2 +- docset/winserver2019-ps/storage/Get-DiskImage.md | 2 +- docset/winserver2019-ps/storage/Get-DiskStorageNodeView.md | 2 +- docset/winserver2019-ps/storage/Get-FileIntegrity.md | 2 +- docset/winserver2019-ps/storage/Get-FileShare.md | 2 +- .../storage/Get-FileShareAccessControlEntry.md | 2 +- docset/winserver2019-ps/storage/Get-FileStorageTier.md | 2 +- docset/winserver2019-ps/storage/Get-InitiatorId.md | 2 +- docset/winserver2019-ps/storage/Get-InitiatorPort.md | 2 +- docset/winserver2019-ps/storage/Get-MaskingSet.md | 2 +- .../storage/Get-OffloadDataTransferSetting.md | 2 +- docset/winserver2019-ps/storage/Get-Partition.md | 2 +- .../winserver2019-ps/storage/Get-PartitionSupportedSize.md | 2 +- docset/winserver2019-ps/storage/Get-PhysicalDisk.md | 2 +- .../storage/Get-PhysicalDiskStorageNodeView.md | 2 +- docset/winserver2019-ps/storage/Get-PhysicalExtent.md | 2 +- .../storage/Get-PhysicalExtentAssociation.md | 2 +- docset/winserver2019-ps/storage/Get-ResiliencySetting.md | 2 +- .../winserver2019-ps/storage/Get-StorageAdvancedProperty.md | 2 +- .../winserver2019-ps/storage/Get-StorageDiagnosticInfo.md | 2 +- docset/winserver2019-ps/storage/Get-StorageEnclosure.md | 2 +- .../storage/Get-StorageEnclosureStorageNodeView.md | 2 +- .../storage/Get-StorageEnclosureVendorData.md | 2 +- docset/winserver2019-ps/storage/Get-StorageFaultDomain.md | 2 +- docset/winserver2019-ps/storage/Get-StorageFileServer.md | 2 +- .../storage/Get-StorageFirmwareInformation.md | 2 +- docset/winserver2019-ps/storage/Get-StorageHealthAction.md | 2 +- docset/winserver2019-ps/storage/Get-StorageHealthReport.md | 2 +- docset/winserver2019-ps/storage/Get-StorageHealthSetting.md | 2 +- docset/winserver2019-ps/storage/Get-StorageJob.md | 2 +- docset/winserver2019-ps/storage/Get-StorageNode.md | 2 +- docset/winserver2019-ps/storage/Get-StoragePool.md | 2 +- docset/winserver2019-ps/storage/Get-StorageProvider.md | 2 +- .../storage/Get-StorageReliabilityCounter.md | 2 +- docset/winserver2019-ps/storage/Get-StorageSetting.md | 2 +- docset/winserver2019-ps/storage/Get-StorageSubSystem.md | 2 +- docset/winserver2019-ps/storage/Get-StorageTier.md | 2 +- .../storage/Get-StorageTierSupportedSize.md | 2 +- .../winserver2019-ps/storage/Get-SupportedClusterSizes.md | 2 +- docset/winserver2019-ps/storage/Get-SupportedFileSystems.md | 2 +- docset/winserver2019-ps/storage/Get-TargetPort.md | 2 +- docset/winserver2019-ps/storage/Get-TargetPortal.md | 2 +- docset/winserver2019-ps/storage/Get-VirtualDisk.md | 2 +- .../storage/Get-VirtualDiskSupportedSize.md | 2 +- docset/winserver2019-ps/storage/Get-Volume.md | 2 +- .../winserver2019-ps/storage/Get-VolumeCorruptionCount.md | 2 +- docset/winserver2019-ps/storage/Get-VolumeScrubPolicy.md | 2 +- docset/winserver2019-ps/storage/Grant-FileShareAccess.md | 2 +- docset/winserver2019-ps/storage/Hide-VirtualDisk.md | 2 +- docset/winserver2019-ps/storage/Initialize-Disk.md | 2 +- docset/winserver2019-ps/storage/Mount-DiskImage.md | 2 +- docset/winserver2019-ps/storage/New-FileShare.md | 2 +- docset/winserver2019-ps/storage/New-MaskingSet.md | 2 +- docset/winserver2019-ps/storage/New-Partition.md | 2 +- docset/winserver2019-ps/storage/New-StorageFileServer.md | 2 +- docset/winserver2019-ps/storage/New-StoragePool.md | 2 +- .../storage/New-StorageSubsystemVirtualDisk.md | 2 +- docset/winserver2019-ps/storage/New-StorageTier.md | 2 +- docset/winserver2019-ps/storage/New-VirtualDisk.md | 2 +- docset/winserver2019-ps/storage/New-VirtualDiskClone.md | 2 +- docset/winserver2019-ps/storage/New-VirtualDiskSnapshot.md | 2 +- docset/winserver2019-ps/storage/New-Volume.md | 2 +- docset/winserver2019-ps/storage/Optimize-StoragePool.md | 2 +- docset/winserver2019-ps/storage/Optimize-Volume.md | 2 +- .../winserver2019-ps/storage/Register-StorageSubsystem.md | 2 +- docset/winserver2019-ps/storage/Remove-FileShare.md | 2 +- docset/winserver2019-ps/storage/Remove-InitiatorId.md | 2 +- .../storage/Remove-InitiatorIdFromMaskingSet.md | 2 +- docset/winserver2019-ps/storage/Remove-MaskingSet.md | 2 +- docset/winserver2019-ps/storage/Remove-Partition.md | 2 +- .../winserver2019-ps/storage/Remove-PartitionAccessPath.md | 2 +- docset/winserver2019-ps/storage/Remove-PhysicalDisk.md | 2 +- docset/winserver2019-ps/storage/Remove-StorageFileServer.md | 2 +- .../winserver2019-ps/storage/Remove-StorageHealthSetting.md | 2 +- docset/winserver2019-ps/storage/Remove-StoragePool.md | 2 +- docset/winserver2019-ps/storage/Remove-StorageTier.md | 2 +- .../storage/Remove-TargetPortFromMaskingSet.md | 2 +- docset/winserver2019-ps/storage/Remove-VirtualDisk.md | 2 +- .../storage/Remove-VirtualDiskFromMaskingSet.md | 2 +- docset/winserver2019-ps/storage/Rename-MaskingSet.md | 2 +- docset/winserver2019-ps/storage/Repair-FileIntegrity.md | 2 +- docset/winserver2019-ps/storage/Repair-VirtualDisk.md | 2 +- docset/winserver2019-ps/storage/Repair-Volume.md | 2 +- docset/winserver2019-ps/storage/Reset-PhysicalDisk.md | 2 +- .../storage/Reset-StorageReliabilityCounter.md | 2 +- docset/winserver2019-ps/storage/Resize-Partition.md | 2 +- docset/winserver2019-ps/storage/Resize-StorageTier.md | 2 +- docset/winserver2019-ps/storage/Resize-VirtualDisk.md | 2 +- docset/winserver2019-ps/storage/Revoke-FileShareAccess.md | 2 +- docset/winserver2019-ps/storage/Set-Disk.md | 2 +- docset/winserver2019-ps/storage/Set-FileIntegrity.md | 2 +- docset/winserver2019-ps/storage/Set-FileShare.md | 2 +- docset/winserver2019-ps/storage/Set-FileStorageTier.md | 2 +- docset/winserver2019-ps/storage/Set-InitiatorPort.md | 2 +- docset/winserver2019-ps/storage/Set-Partition.md | 2 +- docset/winserver2019-ps/storage/Set-PhysicalDisk.md | 2 +- docset/winserver2019-ps/storage/Set-ResiliencySetting.md | 2 +- docset/winserver2019-ps/storage/Set-StorageFileServer.md | 2 +- docset/winserver2019-ps/storage/Set-StorageHealthSetting.md | 2 +- docset/winserver2019-ps/storage/Set-StoragePool.md | 2 +- docset/winserver2019-ps/storage/Set-StorageProvider.md | 2 +- docset/winserver2019-ps/storage/Set-StorageSetting.md | 2 +- docset/winserver2019-ps/storage/Set-StorageSubSystem.md | 2 +- docset/winserver2019-ps/storage/Set-StorageTier.md | 2 +- docset/winserver2019-ps/storage/Set-VirtualDisk.md | 2 +- docset/winserver2019-ps/storage/Set-Volume.md | 2 +- docset/winserver2019-ps/storage/Set-VolumeScrubPolicy.md | 2 +- docset/winserver2019-ps/storage/Show-VirtualDisk.md | 2 +- .../winserver2019-ps/storage/Start-StorageDiagnosticLog.md | 2 +- .../winserver2019-ps/storage/Stop-StorageDiagnosticLog.md | 2 +- docset/winserver2019-ps/storage/Stop-StorageJob.md | 2 +- docset/winserver2019-ps/storage/Unblock-FileShareAccess.md | 2 +- .../winserver2019-ps/storage/Unregister-StorageSubsystem.md | 2 +- docset/winserver2019-ps/storage/Update-Disk.md | 2 +- docset/winserver2019-ps/storage/Update-HostStorageCache.md | 2 +- docset/winserver2019-ps/storage/Update-StorageFirmware.md | 2 +- docset/winserver2019-ps/storage/Update-StoragePool.md | 2 +- .../winserver2019-ps/storage/Update-StorageProviderCache.md | 2 +- docset/winserver2019-ps/storage/Write-VolumeCache.md | 2 +- docset/winserver2019-ps/storageqos/Get-StorageQoSFlow.md | 2 +- docset/winserver2019-ps/storageqos/Get-StorageQosPolicy.md | 2 +- .../storageqos/Get-StorageQosPolicyStore.md | 2 +- docset/winserver2019-ps/storageqos/Get-StorageQosVolume.md | 2 +- docset/winserver2019-ps/storageqos/New-StorageQosPolicy.md | 2 +- .../winserver2019-ps/storageqos/Remove-StorageQosPolicy.md | 2 +- docset/winserver2019-ps/storageqos/Set-StorageQosPolicy.md | 2 +- .../storageqos/Set-StorageQosPolicyStore.md | 2 +- docset/winserver2019-ps/storagereplica/Clear-SRMetadata.md | 2 +- .../storagereplica/Export-SRConfiguration.md | 2 +- docset/winserver2019-ps/storagereplica/Get-SRAccess.md | 2 +- docset/winserver2019-ps/storagereplica/Get-SRDelegation.md | 2 +- docset/winserver2019-ps/storagereplica/Get-SRGroup.md | 2 +- .../storagereplica/Get-SRNetworkConstraint.md | 2 +- docset/winserver2019-ps/storagereplica/Get-SRPartnership.md | 2 +- docset/winserver2019-ps/storagereplica/Grant-SRAccess.md | 2 +- .../winserver2019-ps/storagereplica/Grant-SRDelegation.md | 2 +- docset/winserver2019-ps/storagereplica/New-SRGroup.md | 2 +- docset/winserver2019-ps/storagereplica/New-SRPartnership.md | 2 +- docset/winserver2019-ps/storagereplica/Remove-SRGroup.md | 2 +- .../storagereplica/Remove-SRNetworkConstraint.md | 2 +- .../winserver2019-ps/storagereplica/Remove-SRPartnership.md | 2 +- docset/winserver2019-ps/storagereplica/Revoke-SRAccess.md | 2 +- .../winserver2019-ps/storagereplica/Revoke-SRDelegation.md | 2 +- docset/winserver2019-ps/storagereplica/Set-SRGroup.md | 2 +- .../storagereplica/Set-SRNetworkConstraint.md | 2 +- docset/winserver2019-ps/storagereplica/Set-SRPartnership.md | 2 +- docset/winserver2019-ps/storagereplica/Suspend-SRGroup.md | 2 +- docset/winserver2019-ps/storagereplica/Sync-SRGroup.md | 2 +- docset/winserver2019-ps/storagereplica/Test-SRTopology.md | 2 +- docset/winserver2019-ps/syncshare/Disable-SyncShare.md | 2 +- docset/winserver2019-ps/syncshare/Enable-SyncShare.md | 2 +- docset/winserver2019-ps/syncshare/Get-SyncServerSetting.md | 2 +- docset/winserver2019-ps/syncshare/Get-SyncShare.md | 2 +- docset/winserver2019-ps/syncshare/Get-SyncUserStatus.md | 2 +- docset/winserver2019-ps/syncshare/New-SyncShare.md | 2 +- docset/winserver2019-ps/syncshare/Remove-SyncShare.md | 2 +- docset/winserver2019-ps/syncshare/Repair-SyncShare.md | 2 +- docset/winserver2019-ps/syncshare/Set-SyncServerSetting.md | 2 +- docset/winserver2019-ps/syncshare/Set-SyncShare.md | 2 +- .../systeminsights/Add-InsightsCapability.md | 2 +- .../systeminsights/Disable-InsightsCapability.md | 2 +- .../systeminsights/Disable-InsightsCapabilitySchedule.md | 2 +- .../systeminsights/Enable-InsightsCapability.md | 2 +- .../systeminsights/Enable-InsightsCapabilitySchedule.md | 2 +- .../systeminsights/Get-InsightsCapability.md | 2 +- .../systeminsights/Get-InsightsCapabilityAction.md | 2 +- .../systeminsights/Get-InsightsCapabilityResult.md | 2 +- .../systeminsights/Get-InsightsCapabilitySchedule.md | 2 +- .../systeminsights/Invoke-InsightsCapability.md | 2 +- .../systeminsights/Remove-InsightsCapability.md | 2 +- .../systeminsights/Remove-InsightsCapabilityAction.md | 2 +- .../systeminsights/Set-InsightsCapabilityAction.md | 2 +- .../systeminsights/Set-InsightsCapabilitySchedule.md | 2 +- .../systeminsights/Update-InsightsCapability.md | 2 +- docset/winserver2019-ps/tls/Disable-TlsCipherSuite.md | 2 +- docset/winserver2019-ps/tls/Disable-TlsEccCurve.md | 2 +- docset/winserver2019-ps/tls/Disable-TlsSessionTicketKey.md | 2 +- docset/winserver2019-ps/tls/Enable-TlsCipherSuite.md | 2 +- docset/winserver2019-ps/tls/Enable-TlsEccCurve.md | 2 +- docset/winserver2019-ps/tls/Enable-TlsSessionTicketKey.md | 2 +- docset/winserver2019-ps/tls/Export-TlsSessionTicketKey.md | 2 +- docset/winserver2019-ps/tls/Get-TlsCipherSuite.md | 2 +- docset/winserver2019-ps/tls/Get-TlsEccCurve.md | 2 +- docset/winserver2019-ps/tls/New-TlsSessionTicketKey.md | 2 +- .../troubleshootingpack/Get-TroubleshootingPack.md | 2 +- .../troubleshootingpack/Invoke-TroubleshootingPack.md | 2 +- docset/winserver2019-ps/trustedplatformmodule/Clear-Tpm.md | 2 +- .../trustedplatformmodule/ConvertTo-TpmOwnerAuth.md | 2 +- .../trustedplatformmodule/Disable-TpmAutoProvisioning.md | 2 +- .../trustedplatformmodule/Enable-TpmAutoProvisioning.md | 2 +- docset/winserver2019-ps/trustedplatformmodule/Get-Tpm.md | 2 +- .../trustedplatformmodule/Get-TpmEndorsementKeyInfo.md | 2 +- .../trustedplatformmodule/Get-TpmSupportedFeature.md | 2 +- .../trustedplatformmodule/Import-TpmOwnerAuth.md | 2 +- .../trustedplatformmodule/Initialize-Tpm.md | 2 +- .../trustedplatformmodule/Set-TpmOwnerAuth.md | 2 +- .../winserver2019-ps/trustedplatformmodule/Unblock-Tpm.md | 2 +- docset/winserver2019-ps/uev/Clear-UevAppxPackage.md | 2 +- docset/winserver2019-ps/uev/Clear-UevConfiguration.md | 2 +- docset/winserver2019-ps/uev/Disable-Uev.md | 2 +- docset/winserver2019-ps/uev/Disable-UevAppxPackage.md | 2 +- docset/winserver2019-ps/uev/Disable-UevTemplate.md | 2 +- docset/winserver2019-ps/uev/Enable-Uev.md | 2 +- docset/winserver2019-ps/uev/Enable-UevAppxPackage.md | 2 +- docset/winserver2019-ps/uev/Enable-UevTemplate.md | 2 +- docset/winserver2019-ps/uev/Export-UevConfiguration.md | 2 +- docset/winserver2019-ps/uev/Export-UevPackage.md | 2 +- docset/winserver2019-ps/uev/Get-UevAppxPackage.md | 2 +- docset/winserver2019-ps/uev/Get-UevConfiguration.md | 2 +- docset/winserver2019-ps/uev/Get-UevStatus.md | 2 +- docset/winserver2019-ps/uev/Get-UevTemplate.md | 2 +- docset/winserver2019-ps/uev/Get-UevTemplateProgram.md | 2 +- docset/winserver2019-ps/uev/Import-UevConfiguration.md | 2 +- docset/winserver2019-ps/uev/Register-UevTemplate.md | 2 +- docset/winserver2019-ps/uev/Repair-UevTemplateIndex.md | 2 +- docset/winserver2019-ps/uev/Restore-UevBackup.md | 2 +- docset/winserver2019-ps/uev/Restore-UevUserSetting.md | 2 +- docset/winserver2019-ps/uev/Set-UevConfiguration.md | 2 +- docset/winserver2019-ps/uev/Set-UevTemplateProfile.md | 2 +- docset/winserver2019-ps/uev/Test-UevTemplate.md | 2 +- docset/winserver2019-ps/uev/Unregister-UevTemplate.md | 2 +- docset/winserver2019-ps/uev/Update-UevTemplate.md | 2 +- docset/winserver2019-ps/updateservices/Add-WsusComputer.md | 2 +- .../updateservices/Add-WsusDynamicCategory.md | 2 +- .../winserver2019-ps/updateservices/Approve-WsusUpdate.md | 2 +- docset/winserver2019-ps/updateservices/Deny-WsusUpdate.md | 2 +- .../updateservices/Get-WsusClassification.md | 2 +- docset/winserver2019-ps/updateservices/Get-WsusComputer.md | 2 +- .../updateservices/Get-WsusDynamicCategory.md | 2 +- docset/winserver2019-ps/updateservices/Get-WsusProduct.md | 2 +- docset/winserver2019-ps/updateservices/Get-WsusServer.md | 2 +- docset/winserver2019-ps/updateservices/Get-WsusUpdate.md | 2 +- .../updateservices/Invoke-WsusServerCleanup.md | 2 +- .../updateservices/Remove-WsusDynamicCategory.md | 2 +- .../updateservices/Set-WsusClassification.md | 2 +- .../updateservices/Set-WsusDynamicCategory.md | 2 +- docset/winserver2019-ps/updateservices/Set-WsusProduct.md | 2 +- .../updateservices/Set-WsusServerSynchronization.md | 2 +- docset/winserver2019-ps/useraccesslogging/Disable-Ual.md | 2 +- docset/winserver2019-ps/useraccesslogging/Enable-Ual.md | 2 +- docset/winserver2019-ps/useraccesslogging/Get-Ual.md | 2 +- .../useraccesslogging/Get-UalDailyAccess.md | 2 +- .../useraccesslogging/Get-UalDailyDeviceAccess.md | 2 +- .../useraccesslogging/Get-UalDailyUserAccess.md | 2 +- .../useraccesslogging/Get-UalDeviceAccess.md | 2 +- docset/winserver2019-ps/useraccesslogging/Get-UalDns.md | 2 +- docset/winserver2019-ps/useraccesslogging/Get-UalHyperV.md | 2 +- .../winserver2019-ps/useraccesslogging/Get-UalOverview.md | 2 +- .../useraccesslogging/Get-UalServerDevice.md | 2 +- .../winserver2019-ps/useraccesslogging/Get-UalServerUser.md | 2 +- .../winserver2019-ps/useraccesslogging/Get-UalSystemId.md | 2 +- .../winserver2019-ps/useraccesslogging/Get-UalUserAccess.md | 2 +- docset/winserver2019-ps/vamt/Add-VamtProductKey.md | 2 +- docset/winserver2019-ps/vamt/Export-VamtData.md | 2 +- docset/winserver2019-ps/vamt/Find-VamtManagedMachine.md | 2 +- docset/winserver2019-ps/vamt/Get-VamtConfirmationId.md | 2 +- docset/winserver2019-ps/vamt/Get-VamtProduct.md | 2 +- docset/winserver2019-ps/vamt/Get-VamtProductKey.md | 2 +- docset/winserver2019-ps/vamt/Import-VamtData.md | 2 +- docset/winserver2019-ps/vamt/Initialize-VamtData.md | 2 +- docset/winserver2019-ps/vamt/Install-VamtConfirmationId.md | 2 +- .../winserver2019-ps/vamt/Install-VamtProductActivation.md | 2 +- docset/winserver2019-ps/vamt/Install-VamtProductKey.md | 2 +- docset/winserver2019-ps/vamt/Update-VamtProduct.md | 2 +- docset/winserver2019-ps/vpnclient/Add-VpnConnection.md | 2 +- docset/winserver2019-ps/vpnclient/Add-VpnConnectionRoute.md | 2 +- .../vpnclient/Add-VpnConnectionTriggerApplication.md | 2 +- .../vpnclient/Add-VpnConnectionTriggerDnsConfiguration.md | 2 +- .../vpnclient/Add-VpnConnectionTriggerTrustedNetwork.md | 2 +- docset/winserver2019-ps/vpnclient/Get-VpnConnection.md | 2 +- .../winserver2019-ps/vpnclient/Get-VpnConnectionTrigger.md | 2 +- docset/winserver2019-ps/vpnclient/New-EapConfiguration.md | 2 +- docset/winserver2019-ps/vpnclient/New-VpnServerAddress.md | 2 +- docset/winserver2019-ps/vpnclient/Remove-VpnConnection.md | 2 +- .../winserver2019-ps/vpnclient/Remove-VpnConnectionRoute.md | 2 +- .../vpnclient/Remove-VpnConnectionTriggerApplication.md | 2 +- .../Remove-VpnConnectionTriggerDnsConfiguration.md | 2 +- .../vpnclient/Remove-VpnConnectionTriggerTrustedNetwork.md | 2 +- docset/winserver2019-ps/vpnclient/Set-VpnConnection.md | 2 +- .../vpnclient/Set-VpnConnectionIPsecConfiguration.md | 2 +- docset/winserver2019-ps/vpnclient/Set-VpnConnectionProxy.md | 2 +- .../vpnclient/Set-VpnConnectionTriggerDnsConfiguration.md | 2 +- .../vpnclient/Set-VpnConnectionTriggerTrustedNetwork.md | 2 +- docset/winserver2019-ps/wdac/Add-OdbcDsn.md | 2 +- docset/winserver2019-ps/wdac/Disable-OdbcPerfCounter.md | 2 +- docset/winserver2019-ps/wdac/Disable-WdacBidTrace.md | 2 +- docset/winserver2019-ps/wdac/Enable-OdbcPerfCounter.md | 2 +- docset/winserver2019-ps/wdac/Enable-WdacBidTrace.md | 2 +- docset/winserver2019-ps/wdac/Get-OdbcDriver.md | 2 +- docset/winserver2019-ps/wdac/Get-OdbcDsn.md | 2 +- docset/winserver2019-ps/wdac/Get-OdbcPerfCounter.md | 2 +- docset/winserver2019-ps/wdac/Get-WdacBidTrace.md | 2 +- docset/winserver2019-ps/wdac/Remove-OdbcDsn.md | 2 +- docset/winserver2019-ps/wdac/Set-OdbcDriver.md | 2 +- docset/winserver2019-ps/wdac/Set-OdbcDsn.md | 2 +- docset/winserver2019-ps/wds/Add-WdsDriverPackage.md | 2 +- docset/winserver2019-ps/wds/Approve-WdsClient.md | 2 +- docset/winserver2019-ps/wds/Copy-WdsInstallImage.md | 2 +- docset/winserver2019-ps/wds/Deny-WdsClient.md | 2 +- docset/winserver2019-ps/wds/Disable-WdsBootImage.md | 2 +- docset/winserver2019-ps/wds/Disable-WdsDriverPackage.md | 2 +- docset/winserver2019-ps/wds/Disable-WdsInstallImage.md | 2 +- .../winserver2019-ps/wds/Disconnect-WdsMulticastClient.md | 2 +- docset/winserver2019-ps/wds/Enable-WdsBootImage.md | 2 +- docset/winserver2019-ps/wds/Enable-WdsDriverPackage.md | 2 +- docset/winserver2019-ps/wds/Enable-WdsInstallImage.md | 2 +- docset/winserver2019-ps/wds/Export-WdsBootImage.md | 2 +- docset/winserver2019-ps/wds/Export-WdsInstallImage.md | 2 +- docset/winserver2019-ps/wds/Get-WdsBootImage.md | 2 +- docset/winserver2019-ps/wds/Get-WdsClient.md | 2 +- docset/winserver2019-ps/wds/Get-WdsDriverPackage.md | 2 +- docset/winserver2019-ps/wds/Get-WdsInstallImage.md | 2 +- docset/winserver2019-ps/wds/Get-WdsInstallImageGroup.md | 2 +- docset/winserver2019-ps/wds/Get-WdsMulticastClient.md | 2 +- docset/winserver2019-ps/wds/Import-WdsBootImage.md | 2 +- docset/winserver2019-ps/wds/Import-WdsDriverPackage.md | 2 +- docset/winserver2019-ps/wds/Import-WdsInstallImage.md | 2 +- docset/winserver2019-ps/wds/New-WdsClient.md | 2 +- docset/winserver2019-ps/wds/New-WdsInstallImageGroup.md | 2 +- docset/winserver2019-ps/wds/Remove-WdsBootImage.md | 2 +- docset/winserver2019-ps/wds/Remove-WdsClient.md | 2 +- docset/winserver2019-ps/wds/Remove-WdsDriverPackage.md | 2 +- docset/winserver2019-ps/wds/Remove-WdsInstallImage.md | 2 +- docset/winserver2019-ps/wds/Remove-WdsInstallImageGroup.md | 2 +- docset/winserver2019-ps/wds/Set-WdsBootImage.md | 2 +- docset/winserver2019-ps/wds/Set-WdsClient.md | 2 +- docset/winserver2019-ps/wds/Set-WdsInstallImage.md | 2 +- docset/winserver2019-ps/wds/Set-WdsInstallImageGroup.md | 2 +- .../webadministration/Add-WebConfiguration.md | 2 +- .../webadministration/Add-WebConfigurationLock.md | 2 +- .../webadministration/Add-WebConfigurationProperty.md | 2 +- .../webadministration/Backup-WebConfiguration.md | 2 +- .../webadministration/Clear-WebCentralCertProvider.md | 2 +- .../webadministration/Clear-WebConfiguration.md | 2 +- .../webadministration/Clear-WebRequestTracingSetting.md | 2 +- .../webadministration/Clear-WebRequestTracingSettings.md | 2 +- .../webadministration/ConvertTo-WebApplication.md | 2 +- .../webadministration/Disable-WebCentralCertProvider.md | 2 +- .../webadministration/Disable-WebGlobalModule.md | 2 +- .../webadministration/Disable-WebRequestTracing.md | 2 +- .../webadministration/Enable-WebCentralCertProvider.md | 2 +- .../webadministration/Enable-WebGlobalModule.md | 2 +- .../webadministration/Enable-WebRequestTracing.md | 2 +- .../winserver2019-ps/webadministration/Get-WebAppDomain.md | 2 +- .../webadministration/Get-WebAppPoolState.md | 2 +- .../webadministration/Get-WebApplication.md | 2 +- docset/winserver2019-ps/webadministration/Get-WebBinding.md | 2 +- .../webadministration/Get-WebCentralCertProvider.md | 2 +- .../winserver2019-ps/webadministration/Get-WebConfigFile.md | 2 +- .../webadministration/Get-WebConfiguration.md | 2 +- .../webadministration/Get-WebConfigurationBackup.md | 2 +- .../webadministration/Get-WebConfigurationLocation.md | 2 +- .../webadministration/Get-WebConfigurationLock.md | 2 +- .../webadministration/Get-WebConfigurationProperty.md | 2 +- .../winserver2019-ps/webadministration/Get-WebFilePath.md | 2 +- .../webadministration/Get-WebGlobalModule.md | 2 +- docset/winserver2019-ps/webadministration/Get-WebHandler.md | 2 +- .../winserver2019-ps/webadministration/Get-WebItemState.md | 2 +- .../webadministration/Get-WebManagedModule.md | 2 +- docset/winserver2019-ps/webadministration/Get-WebRequest.md | 2 +- docset/winserver2019-ps/webadministration/Get-WebURL.md | 2 +- .../webadministration/Get-WebVirtualDirectory.md | 2 +- docset/winserver2019-ps/webadministration/Get-Website.md | 2 +- .../winserver2019-ps/webadministration/Get-WebsiteState.md | 2 +- docset/winserver2019-ps/webadministration/New-WebAppPool.md | 2 +- .../webadministration/New-WebApplication.md | 2 +- docset/winserver2019-ps/webadministration/New-WebBinding.md | 2 +- docset/winserver2019-ps/webadministration/New-WebFtpSite.md | 2 +- .../webadministration/New-WebGlobalModule.md | 2 +- docset/winserver2019-ps/webadministration/New-WebHandler.md | 2 +- .../webadministration/New-WebManagedModule.md | 2 +- .../webadministration/New-WebVirtualDirectory.md | 2 +- docset/winserver2019-ps/webadministration/New-Website.md | 2 +- .../winserver2019-ps/webadministration/Remove-WebAppPool.md | 2 +- .../webadministration/Remove-WebApplication.md | 2 +- .../winserver2019-ps/webadministration/Remove-WebBinding.md | 2 +- .../webadministration/Remove-WebConfigurationBackup.md | 2 +- .../webadministration/Remove-WebConfigurationLocation.md | 2 +- .../webadministration/Remove-WebConfigurationLock.md | 2 +- .../webadministration/Remove-WebConfigurationProperty.md | 2 +- .../webadministration/Remove-WebGlobalModule.md | 2 +- .../winserver2019-ps/webadministration/Remove-WebHandler.md | 2 +- .../webadministration/Remove-WebManagedModule.md | 2 +- .../webadministration/Remove-WebVirtualDirectory.md | 2 +- docset/winserver2019-ps/webadministration/Remove-Website.md | 2 +- .../webadministration/Rename-WebConfigurationLocation.md | 2 +- .../webadministration/Restart-WebAppPool.md | 2 +- .../winserver2019-ps/webadministration/Restart-WebItem.md | 2 +- .../webadministration/Restore-WebConfiguration.md | 2 +- .../webadministration/Select-WebConfiguration.md | 2 +- docset/winserver2019-ps/webadministration/Set-WebBinding.md | 2 +- .../webadministration/Set-WebCentralCertProvider.md | 2 +- .../Set-WebCentralCertProviderCredential.md | 2 +- .../webadministration/Set-WebConfiguration.md | 2 +- .../webadministration/Set-WebConfigurationProperty.md | 2 +- .../webadministration/Set-WebGlobalModule.md | 2 +- docset/winserver2019-ps/webadministration/Set-WebHandler.md | 2 +- .../webadministration/Set-WebManagedModule.md | 2 +- .../winserver2019-ps/webadministration/Start-WebAppPool.md | 2 +- .../webadministration/Start-WebCommitDelay.md | 2 +- docset/winserver2019-ps/webadministration/Start-WebItem.md | 2 +- docset/winserver2019-ps/webadministration/Start-Website.md | 2 +- .../winserver2019-ps/webadministration/Stop-WebAppPool.md | 2 +- .../webadministration/Stop-WebCommitDelay.md | 2 +- docset/winserver2019-ps/webadministration/Stop-WebItem.md | 2 +- docset/winserver2019-ps/webadministration/Stop-Website.md | 2 +- .../Add-WebApplicationProxyApplication.md | 2 +- .../Get-WebApplicationProxyApplication.md | 2 +- .../Get-WebApplicationProxyAvailableADFSRelyingParty.md | 2 +- .../Get-WebApplicationProxyConfiguration.md | 2 +- .../webapplicationproxy/Get-WebApplicationProxyHealth.md | 2 +- .../Get-WebApplicationProxySslCertificate.md | 2 +- .../webapplicationproxy/Install-WebApplicationProxy.md | 2 +- .../Remove-WebApplicationProxyApplication.md | 2 +- .../Set-WebApplicationProxyApplication.md | 2 +- .../Set-WebApplicationProxyConfiguration.md | 2 +- .../Set-WebApplicationProxySslCertificate.md | 2 +- .../Update-WebApplicationProxyDeviceRegistration.md | 2 +- docset/winserver2019-ps/whea/Get-WheaMemoryPolicy.md | 2 +- docset/winserver2019-ps/whea/Set-WheaMemoryPolicy.md | 2 +- .../windowsdeveloperlicense/Get-WindowsDeveloperLicense.md | 2 +- .../Show-WindowsDeveloperLicenseRegistration.md | 2 +- .../Unregister-WindowsDeveloperLicense.md | 2 +- .../windowsdiagnosticdata/Clear-WindowsDiagnosticData.md | 2 +- .../windowserrorreporting/Disable-WindowsErrorReporting.md | 2 +- .../windowserrorreporting/Enable-WindowsErrorReporting.md | 2 +- .../windowserrorreporting/Get-WindowsErrorReporting.md | 2 +- .../windowssearch/Get-WindowsSearchSetting.md | 2 +- .../windowssearch/Set-WindowsSearchSetting.md | 2 +- .../windowsserverbackup/Add-WBBackupTarget.md | 2 +- .../windowsserverbackup/Add-WBBareMetalRecovery.md | 2 +- .../winserver2019-ps/windowsserverbackup/Add-WBFileSpec.md | 2 +- .../windowsserverbackup/Add-WBSystemState.md | 2 +- .../windowsserverbackup/Add-WBVirtualMachine.md | 2 +- docset/winserver2019-ps/windowsserverbackup/Add-WBVolume.md | 2 +- .../winserver2019-ps/windowsserverbackup/Get-WBBackupSet.md | 2 +- .../windowsserverbackup/Get-WBBackupTarget.md | 2 +- .../windowsserverbackup/Get-WBBackupVolumeBrowsePath.md | 2 +- .../windowsserverbackup/Get-WBBareMetalRecovery.md | 2 +- docset/winserver2019-ps/windowsserverbackup/Get-WBDisk.md | 2 +- .../winserver2019-ps/windowsserverbackup/Get-WBFileSpec.md | 2 +- docset/winserver2019-ps/windowsserverbackup/Get-WBJob.md | 2 +- .../windowsserverbackup/Get-WBPerformanceConfiguration.md | 2 +- docset/winserver2019-ps/windowsserverbackup/Get-WBPolicy.md | 2 +- .../winserver2019-ps/windowsserverbackup/Get-WBSchedule.md | 2 +- .../winserver2019-ps/windowsserverbackup/Get-WBSummary.md | 2 +- .../windowsserverbackup/Get-WBSystemState.md | 2 +- .../windowsserverbackup/Get-WBVirtualMachine.md | 2 +- docset/winserver2019-ps/windowsserverbackup/Get-WBVolume.md | 2 +- .../windowsserverbackup/Get-WBVssBackupOption.md | 2 +- .../windowsserverbackup/New-WBBackupTarget.md | 2 +- .../winserver2019-ps/windowsserverbackup/New-WBFileSpec.md | 2 +- docset/winserver2019-ps/windowsserverbackup/New-WBPolicy.md | 2 +- .../windowsserverbackup/Remove-WBBackupSet.md | 2 +- .../windowsserverbackup/Remove-WBBackupTarget.md | 2 +- .../windowsserverbackup/Remove-WBBareMetalRecovery.md | 2 +- .../windowsserverbackup/Remove-WBCatalog.md | 2 +- .../windowsserverbackup/Remove-WBFileSpec.md | 2 +- .../winserver2019-ps/windowsserverbackup/Remove-WBPolicy.md | 2 +- .../windowsserverbackup/Remove-WBSystemState.md | 2 +- .../windowsserverbackup/Remove-WBVirtualMachine.md | 2 +- .../winserver2019-ps/windowsserverbackup/Remove-WBVolume.md | 2 +- .../windowsserverbackup/Restore-WBCatalog.md | 2 +- .../winserver2019-ps/windowsserverbackup/Resume-WBBackup.md | 2 +- .../windowsserverbackup/Resume-WBVolumeRecovery.md | 2 +- .../windowsserverbackup/Set-WBPerformanceConfiguration.md | 2 +- docset/winserver2019-ps/windowsserverbackup/Set-WBPolicy.md | 2 +- .../winserver2019-ps/windowsserverbackup/Set-WBSchedule.md | 2 +- .../windowsserverbackup/Set-WBVssBackupOption.md | 2 +- .../windowsserverbackup/Start-WBApplicationRecovery.md | 2 +- .../winserver2019-ps/windowsserverbackup/Start-WBBackup.md | 2 +- .../windowsserverbackup/Start-WBFileRecovery.md | 2 +- .../windowsserverbackup/Start-WBHyperVRecovery.md | 2 +- .../windowsserverbackup/Start-WBSystemStateRecovery.md | 2 +- .../windowsserverbackup/Start-WBVolumeRecovery.md | 2 +- docset/winserver2019-ps/windowsserverbackup/Stop-WBJob.md | 2 +- .../winserver2019-ps/windowsupdate/Get-WindowsUpdateLog.md | 2 +- 3276 files changed, 3288 insertions(+), 3288 deletions(-) diff --git a/docset/winserver2019-ps/Microsoft.DiagnosticDataViewer/Disable-DiagnosticDataViewing.md b/docset/winserver2019-ps/Microsoft.DiagnosticDataViewer/Disable-DiagnosticDataViewing.md index c12969a5c1..58537d8fba 100644 --- a/docset/winserver2019-ps/Microsoft.DiagnosticDataViewer/Disable-DiagnosticDataViewing.md +++ b/docset/winserver2019-ps/Microsoft.DiagnosticDataViewer/Disable-DiagnosticDataViewing.md @@ -1,7 +1,7 @@ --- external help file: DDVCmdlets.dll-Help.xml Module Name: Microsoft.DiagnosticDataViewer -online version: https://docs.microsoft.com/powershell/module/microsoft.diagnosticdataviewer/disable-diagnosticdataviewing?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/microsoft.diagnosticdataviewer/disable-diagnosticdataviewing?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-DiagnosticDataViewing --- diff --git a/docset/winserver2019-ps/Microsoft.DiagnosticDataViewer/Enable-DiagnosticDataViewing.md b/docset/winserver2019-ps/Microsoft.DiagnosticDataViewer/Enable-DiagnosticDataViewing.md index bc16d53c8e..7015ad3dd4 100644 --- a/docset/winserver2019-ps/Microsoft.DiagnosticDataViewer/Enable-DiagnosticDataViewing.md +++ b/docset/winserver2019-ps/Microsoft.DiagnosticDataViewer/Enable-DiagnosticDataViewing.md @@ -1,7 +1,7 @@ --- external help file: DDVCmdlets.dll-Help.xml Module Name: Microsoft.DiagnosticDataViewer -online version: https://docs.microsoft.com/powershell/module/microsoft.diagnosticdataviewer/enable-diagnosticdataviewing?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/microsoft.diagnosticdataviewer/enable-diagnosticdataviewing?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-DiagnosticDataViewing --- diff --git a/docset/winserver2019-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticData.md b/docset/winserver2019-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticData.md index 1e0a67f10e..8518a90251 100644 --- a/docset/winserver2019-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticData.md +++ b/docset/winserver2019-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticData.md @@ -1,7 +1,7 @@ --- external help file: DDVCmdlets.dll-Help.xml Module Name: Microsoft.DiagnosticDataViewer -online version: https://docs.microsoft.com/powershell/module/microsoft.diagnosticdataviewer/get-diagnosticdata?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/microsoft.diagnosticdataviewer/get-diagnosticdata?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DiagnosticData --- diff --git a/docset/winserver2019-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticDataTypes.md b/docset/winserver2019-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticDataTypes.md index c91e65c7fa..6678241155 100644 --- a/docset/winserver2019-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticDataTypes.md +++ b/docset/winserver2019-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticDataTypes.md @@ -1,7 +1,7 @@ --- external help file: DDVCmdlets.dll-Help.xml Module Name: Microsoft.DiagnosticDataViewer -online version: https://docs.microsoft.com/powershell/module/microsoft.diagnosticdataviewer/get-diagnosticdatatypes?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/microsoft.diagnosticdataviewer/get-diagnosticdatatypes?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DiagnosticDataTypes --- diff --git a/docset/winserver2019-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticDataViewingSetting.md b/docset/winserver2019-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticDataViewingSetting.md index c718c2febb..396eb1e183 100644 --- a/docset/winserver2019-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticDataViewingSetting.md +++ b/docset/winserver2019-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticDataViewingSetting.md @@ -1,7 +1,7 @@ --- external help file: DDVCmdlets.dll-Help.xml Module Name: Microsoft.DiagnosticDataViewer -online version: https://docs.microsoft.com/powershell/module/microsoft.diagnosticdataviewer/get-diagnosticdataviewingsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/microsoft.diagnosticdataviewer/get-diagnosticdataviewingsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DiagnosticDataViewingSetting --- diff --git a/docset/winserver2019-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticStoreCapacity.md b/docset/winserver2019-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticStoreCapacity.md index 6d08fc4c74..04bb0d9fe5 100644 --- a/docset/winserver2019-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticStoreCapacity.md +++ b/docset/winserver2019-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticStoreCapacity.md @@ -1,7 +1,7 @@ --- external help file: DDVCmdlets.dll-Help.xml Module Name: Microsoft.DiagnosticDataViewer -online version: https://docs.microsoft.com/powershell/module/microsoft.diagnosticdataviewer/get-diagnosticstorecapacity?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/microsoft.diagnosticdataviewer/get-diagnosticstorecapacity?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DiagnosticStoreCapacity --- diff --git a/docset/winserver2019-ps/Microsoft.DiagnosticDataViewer/Set-DiagnosticStoreCapacity.md b/docset/winserver2019-ps/Microsoft.DiagnosticDataViewer/Set-DiagnosticStoreCapacity.md index e189c818f9..d489bb7c46 100644 --- a/docset/winserver2019-ps/Microsoft.DiagnosticDataViewer/Set-DiagnosticStoreCapacity.md +++ b/docset/winserver2019-ps/Microsoft.DiagnosticDataViewer/Set-DiagnosticStoreCapacity.md @@ -1,7 +1,7 @@ --- external help file: DDVCmdlets.dll-Help.xml Module Name: Microsoft.DiagnosticDataViewer -online version: https://docs.microsoft.com/powershell/module/microsoft.diagnosticdataviewer/set-diagnosticstorecapacity?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/microsoft.diagnosticdataviewer/set-diagnosticstorecapacity?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DiagnosticStoreCapacity --- diff --git a/docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration/Disable-ServerManagerStandardUserRemoting.md b/docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration/Disable-ServerManagerStandardUserRemoting.md index fe1e4bc98e..a89326095b 100644 --- a/docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration/Disable-ServerManagerStandardUserRemoting.md +++ b/docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration/Disable-ServerManagerStandardUserRemoting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ServerManager-help.xml Module Name: Microsoft.Windows.ServerManager.Migration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/disable-servermanagerstandarduserremoting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/disable-servermanagerstandarduserremoting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-ServerManagerStandardUserRemoting --- diff --git a/docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration/Enable-ServerManagerStandardUserRemoting.md b/docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration/Enable-ServerManagerStandardUserRemoting.md index d281042d75..66229ce51a 100644 --- a/docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration/Enable-ServerManagerStandardUserRemoting.md +++ b/docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration/Enable-ServerManagerStandardUserRemoting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ServerManager-help.xml Module Name: Microsoft.Windows.ServerManager.Migration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/enable-servermanagerstandarduserremoting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/enable-servermanagerstandarduserremoting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-ServerManagerStandardUserRemoting --- diff --git a/docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration/Export-SmigServerSetting.md b/docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration/Export-SmigServerSetting.md index 78cb2e3e6f..3a7d77245c 100644 --- a/docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration/Export-SmigServerSetting.md +++ b/docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration/Export-SmigServerSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.ServerManager.PowerShell.dll-Help.xml Module Name: Microsoft.Windows.ServerManager.Migration ms.date: 01/03/2017 -online version: https://docs.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/export-smigserversetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/export-smigserversetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-SmigServerSetting --- diff --git a/docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration/Get-SmigServerFeature.md b/docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration/Get-SmigServerFeature.md index fd25b4cddc..b574c065b6 100644 --- a/docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration/Get-SmigServerFeature.md +++ b/docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration/Get-SmigServerFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.ServerManager.PowerShell.dll-Help.xml Module Name: Microsoft.Windows.ServerManager.Migration ms.date: 01/03/2017 -online version: https://docs.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/get-smigserverfeature?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/get-smigserverfeature?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmigServerFeature --- diff --git a/docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration/Get-WindowsFeature.md b/docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration/Get-WindowsFeature.md index b8665c2368..75e7af3dd4 100644 --- a/docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration/Get-WindowsFeature.md +++ b/docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration/Get-WindowsFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.ServerManager.PowerShell.dll-Help.xml Module Name: Microsoft.Windows.ServerManager.Migration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/get-windowsfeature?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/get-windowsfeature?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WindowsFeature --- diff --git a/docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration/Import-SmigServerSetting.md b/docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration/Import-SmigServerSetting.md index a79ba3b5ac..239cd87dd0 100644 --- a/docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration/Import-SmigServerSetting.md +++ b/docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration/Import-SmigServerSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.ServerManager.PowerShell.dll-Help.xml Module Name: Microsoft.Windows.ServerManager.Migration ms.date: 01/03/2017 -online version: https://docs.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/import-smigserversetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/import-smigserversetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-SmigServerSetting --- diff --git a/docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration/Install-WindowsFeature.md b/docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration/Install-WindowsFeature.md index 34a046cb49..fb7bf98a3a 100644 --- a/docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration/Install-WindowsFeature.md +++ b/docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration/Install-WindowsFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.ServerManager.PowerShell.dll-Help.xml Module Name: Microsoft.Windows.ServerManager.Migration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/install-windowsfeature?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/install-windowsfeature?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-WindowsFeature --- diff --git a/docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration/Receive-SmigServerData.md b/docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration/Receive-SmigServerData.md index 786a25537f..91f527cd7b 100644 --- a/docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration/Receive-SmigServerData.md +++ b/docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration/Receive-SmigServerData.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.ServerManager.PowerShell.dll-Help.xml Module Name: Microsoft.Windows.ServerManager.Migration ms.date: 01/03/2017 -online version: https://docs.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/receive-smigserverdata?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/receive-smigserverdata?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Receive-SmigServerData --- diff --git a/docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration/Send-SmigServerData.md b/docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration/Send-SmigServerData.md index 7bcec56f42..8ea2c8c199 100644 --- a/docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration/Send-SmigServerData.md +++ b/docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration/Send-SmigServerData.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.ServerManager.PowerShell.dll-Help.xml Module Name: Microsoft.Windows.ServerManager.Migration ms.date: 01/03/2017 -online version: https://docs.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/send-smigserverdata?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/send-smigserverdata?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Send-SmigServerData --- diff --git a/docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration/ServerManager.md b/docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration/ServerManager.md index 32374db5bd..49afbf536d 100644 --- a/docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration/ServerManager.md +++ b/docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration/ServerManager.md @@ -5,7 +5,7 @@ Help Version: 5.0.0.1 Locale: en-US Module Name: Microsoft.Windows.ServerManager.Migration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/servermanager?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/servermanager?view=windowsserver2019-ps&wt.mc_id=ps-gethelp title: ServerManager --- diff --git a/docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration/Uninstall-WindowsFeature.md b/docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration/Uninstall-WindowsFeature.md index c148b10061..67f4b36c17 100644 --- a/docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration/Uninstall-WindowsFeature.md +++ b/docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration/Uninstall-WindowsFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.ServerManager.PowerShell.dll-Help.xml Module Name: Microsoft.Windows.ServerManager.Migration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/uninstall-windowsfeature?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/uninstall-windowsfeature?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-WindowsFeature --- diff --git a/docset/winserver2019-ps/activedirectory/Add-ADCentralAccessPolicyMember.md b/docset/winserver2019-ps/activedirectory/Add-ADCentralAccessPolicyMember.md index d01fe53a7f..ace9c8224f 100644 --- a/docset/winserver2019-ps/activedirectory/Add-ADCentralAccessPolicyMember.md +++ b/docset/winserver2019-ps/activedirectory/Add-ADCentralAccessPolicyMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/add-adcentralaccesspolicymember?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/add-adcentralaccesspolicymember?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ADCentralAccessPolicyMember --- diff --git a/docset/winserver2019-ps/activedirectory/Add-ADComputerServiceAccount.md b/docset/winserver2019-ps/activedirectory/Add-ADComputerServiceAccount.md index d767439579..ebb2b896d6 100644 --- a/docset/winserver2019-ps/activedirectory/Add-ADComputerServiceAccount.md +++ b/docset/winserver2019-ps/activedirectory/Add-ADComputerServiceAccount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/add-adcomputerserviceaccount?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/add-adcomputerserviceaccount?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ADComputerServiceAccount --- diff --git a/docset/winserver2019-ps/activedirectory/Add-ADDomainControllerPasswordReplicationPolicy.md b/docset/winserver2019-ps/activedirectory/Add-ADDomainControllerPasswordReplicationPolicy.md index 31e5f48690..ef1c94d03f 100644 --- a/docset/winserver2019-ps/activedirectory/Add-ADDomainControllerPasswordReplicationPolicy.md +++ b/docset/winserver2019-ps/activedirectory/Add-ADDomainControllerPasswordReplicationPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/add-addomaincontrollerpasswordreplicationpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/add-addomaincontrollerpasswordreplicationpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ADDomainControllerPasswordReplicationPolicy --- diff --git a/docset/winserver2019-ps/activedirectory/Add-ADFineGrainedPasswordPolicySubject.md b/docset/winserver2019-ps/activedirectory/Add-ADFineGrainedPasswordPolicySubject.md index 743df873ba..8f7b8c66b5 100644 --- a/docset/winserver2019-ps/activedirectory/Add-ADFineGrainedPasswordPolicySubject.md +++ b/docset/winserver2019-ps/activedirectory/Add-ADFineGrainedPasswordPolicySubject.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/add-adfinegrainedpasswordpolicysubject?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/add-adfinegrainedpasswordpolicysubject?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ADFineGrainedPasswordPolicySubject --- diff --git a/docset/winserver2019-ps/activedirectory/Add-ADGroupMember.md b/docset/winserver2019-ps/activedirectory/Add-ADGroupMember.md index b42d75c812..c7d6723a37 100644 --- a/docset/winserver2019-ps/activedirectory/Add-ADGroupMember.md +++ b/docset/winserver2019-ps/activedirectory/Add-ADGroupMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/add-adgroupmember?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/add-adgroupmember?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ADGroupMember --- diff --git a/docset/winserver2019-ps/activedirectory/Add-ADPrincipalGroupMembership.md b/docset/winserver2019-ps/activedirectory/Add-ADPrincipalGroupMembership.md index da92cc1081..b1885a1b5f 100644 --- a/docset/winserver2019-ps/activedirectory/Add-ADPrincipalGroupMembership.md +++ b/docset/winserver2019-ps/activedirectory/Add-ADPrincipalGroupMembership.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/add-adprincipalgroupmembership?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/add-adprincipalgroupmembership?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ADPrincipalGroupMembership --- diff --git a/docset/winserver2019-ps/activedirectory/Add-ADResourcePropertyListMember.md b/docset/winserver2019-ps/activedirectory/Add-ADResourcePropertyListMember.md index fab3c92887..b5335da5eb 100644 --- a/docset/winserver2019-ps/activedirectory/Add-ADResourcePropertyListMember.md +++ b/docset/winserver2019-ps/activedirectory/Add-ADResourcePropertyListMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/add-adresourcepropertylistmember?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/add-adresourcepropertylistmember?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ADResourcePropertyListMember --- diff --git a/docset/winserver2019-ps/activedirectory/Clear-ADAccountExpiration.md b/docset/winserver2019-ps/activedirectory/Clear-ADAccountExpiration.md index cfb6f8a0b1..7492be48df 100644 --- a/docset/winserver2019-ps/activedirectory/Clear-ADAccountExpiration.md +++ b/docset/winserver2019-ps/activedirectory/Clear-ADAccountExpiration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/clear-adaccountexpiration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/clear-adaccountexpiration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-ADAccountExpiration --- diff --git a/docset/winserver2019-ps/activedirectory/Clear-ADClaimTransformLink.md b/docset/winserver2019-ps/activedirectory/Clear-ADClaimTransformLink.md index 152678e84b..80c4e2926c 100644 --- a/docset/winserver2019-ps/activedirectory/Clear-ADClaimTransformLink.md +++ b/docset/winserver2019-ps/activedirectory/Clear-ADClaimTransformLink.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/clear-adclaimtransformlink?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/clear-adclaimtransformlink?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-ADClaimTransformLink --- diff --git a/docset/winserver2019-ps/activedirectory/Disable-ADAccount.md b/docset/winserver2019-ps/activedirectory/Disable-ADAccount.md index 5c207100fb..881af34cdd 100644 --- a/docset/winserver2019-ps/activedirectory/Disable-ADAccount.md +++ b/docset/winserver2019-ps/activedirectory/Disable-ADAccount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/disable-adaccount?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/disable-adaccount?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-ADAccount --- diff --git a/docset/winserver2019-ps/activedirectory/Disable-ADOptionalFeature.md b/docset/winserver2019-ps/activedirectory/Disable-ADOptionalFeature.md index 025a54bde5..6375c9a014 100644 --- a/docset/winserver2019-ps/activedirectory/Disable-ADOptionalFeature.md +++ b/docset/winserver2019-ps/activedirectory/Disable-ADOptionalFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/disable-adoptionalfeature?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/disable-adoptionalfeature?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-ADOptionalFeature --- diff --git a/docset/winserver2019-ps/activedirectory/Enable-ADAccount.md b/docset/winserver2019-ps/activedirectory/Enable-ADAccount.md index 449795437f..0811a472d0 100644 --- a/docset/winserver2019-ps/activedirectory/Enable-ADAccount.md +++ b/docset/winserver2019-ps/activedirectory/Enable-ADAccount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/enable-adaccount?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/enable-adaccount?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-ADAccount --- diff --git a/docset/winserver2019-ps/activedirectory/Enable-ADOptionalFeature.md b/docset/winserver2019-ps/activedirectory/Enable-ADOptionalFeature.md index d2400697dc..d13c34c633 100644 --- a/docset/winserver2019-ps/activedirectory/Enable-ADOptionalFeature.md +++ b/docset/winserver2019-ps/activedirectory/Enable-ADOptionalFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/enable-adoptionalfeature?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/enable-adoptionalfeature?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-ADOptionalFeature --- diff --git a/docset/winserver2019-ps/activedirectory/Get-ADAccountAuthorizationGroup.md b/docset/winserver2019-ps/activedirectory/Get-ADAccountAuthorizationGroup.md index b9c9b8c308..caf3503087 100644 --- a/docset/winserver2019-ps/activedirectory/Get-ADAccountAuthorizationGroup.md +++ b/docset/winserver2019-ps/activedirectory/Get-ADAccountAuthorizationGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adaccountauthorizationgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adaccountauthorizationgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADAccountAuthorizationGroup --- diff --git a/docset/winserver2019-ps/activedirectory/Get-ADAccountResultantPasswordReplicationPolicy.md b/docset/winserver2019-ps/activedirectory/Get-ADAccountResultantPasswordReplicationPolicy.md index 67ac9ee345..7ead7df698 100644 --- a/docset/winserver2019-ps/activedirectory/Get-ADAccountResultantPasswordReplicationPolicy.md +++ b/docset/winserver2019-ps/activedirectory/Get-ADAccountResultantPasswordReplicationPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adaccountresultantpasswordreplicationpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adaccountresultantpasswordreplicationpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADAccountResultantPasswordReplicationPolicy --- diff --git a/docset/winserver2019-ps/activedirectory/Get-ADAuthenticationPolicy.md b/docset/winserver2019-ps/activedirectory/Get-ADAuthenticationPolicy.md index 2419ee42cf..09510a01e6 100644 --- a/docset/winserver2019-ps/activedirectory/Get-ADAuthenticationPolicy.md +++ b/docset/winserver2019-ps/activedirectory/Get-ADAuthenticationPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adauthenticationpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adauthenticationpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADAuthenticationPolicy --- diff --git a/docset/winserver2019-ps/activedirectory/Get-ADAuthenticationPolicySilo.md b/docset/winserver2019-ps/activedirectory/Get-ADAuthenticationPolicySilo.md index 42a5a26199..22da12c1a3 100644 --- a/docset/winserver2019-ps/activedirectory/Get-ADAuthenticationPolicySilo.md +++ b/docset/winserver2019-ps/activedirectory/Get-ADAuthenticationPolicySilo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adauthenticationpolicysilo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adauthenticationpolicysilo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADAuthenticationPolicySilo --- diff --git a/docset/winserver2019-ps/activedirectory/Get-ADCentralAccessPolicy.md b/docset/winserver2019-ps/activedirectory/Get-ADCentralAccessPolicy.md index 98247c0026..c25f1e245f 100644 --- a/docset/winserver2019-ps/activedirectory/Get-ADCentralAccessPolicy.md +++ b/docset/winserver2019-ps/activedirectory/Get-ADCentralAccessPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adcentralaccesspolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adcentralaccesspolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADCentralAccessPolicy --- diff --git a/docset/winserver2019-ps/activedirectory/Get-ADCentralAccessRule.md b/docset/winserver2019-ps/activedirectory/Get-ADCentralAccessRule.md index a06cdab109..089b58df01 100644 --- a/docset/winserver2019-ps/activedirectory/Get-ADCentralAccessRule.md +++ b/docset/winserver2019-ps/activedirectory/Get-ADCentralAccessRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adcentralaccessrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adcentralaccessrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADCentralAccessRule --- diff --git a/docset/winserver2019-ps/activedirectory/Get-ADClaimTransformPolicy.md b/docset/winserver2019-ps/activedirectory/Get-ADClaimTransformPolicy.md index 9be2ebe2ae..8284fa84d7 100644 --- a/docset/winserver2019-ps/activedirectory/Get-ADClaimTransformPolicy.md +++ b/docset/winserver2019-ps/activedirectory/Get-ADClaimTransformPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adclaimtransformpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adclaimtransformpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADClaimTransformPolicy --- diff --git a/docset/winserver2019-ps/activedirectory/Get-ADClaimType.md b/docset/winserver2019-ps/activedirectory/Get-ADClaimType.md index 69fef4dded..5265fe7195 100644 --- a/docset/winserver2019-ps/activedirectory/Get-ADClaimType.md +++ b/docset/winserver2019-ps/activedirectory/Get-ADClaimType.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adclaimtype?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adclaimtype?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADClaimType --- diff --git a/docset/winserver2019-ps/activedirectory/Get-ADComputer.md b/docset/winserver2019-ps/activedirectory/Get-ADComputer.md index 66905c4570..12c4228617 100644 --- a/docset/winserver2019-ps/activedirectory/Get-ADComputer.md +++ b/docset/winserver2019-ps/activedirectory/Get-ADComputer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adcomputer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adcomputer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADComputer --- diff --git a/docset/winserver2019-ps/activedirectory/Get-ADComputerServiceAccount.md b/docset/winserver2019-ps/activedirectory/Get-ADComputerServiceAccount.md index 424489ef65..a2ab079b8b 100644 --- a/docset/winserver2019-ps/activedirectory/Get-ADComputerServiceAccount.md +++ b/docset/winserver2019-ps/activedirectory/Get-ADComputerServiceAccount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adcomputerserviceaccount?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adcomputerserviceaccount?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADComputerServiceAccount --- diff --git a/docset/winserver2019-ps/activedirectory/Get-ADDCCloningExcludedApplicationList.md b/docset/winserver2019-ps/activedirectory/Get-ADDCCloningExcludedApplicationList.md index 8beff5e32f..d602dfd233 100644 --- a/docset/winserver2019-ps/activedirectory/Get-ADDCCloningExcludedApplicationList.md +++ b/docset/winserver2019-ps/activedirectory/Get-ADDCCloningExcludedApplicationList.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-addccloningexcludedapplicationlist?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-addccloningexcludedapplicationlist?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADDCCloningExcludedApplicationList --- diff --git a/docset/winserver2019-ps/activedirectory/Get-ADDefaultDomainPasswordPolicy.md b/docset/winserver2019-ps/activedirectory/Get-ADDefaultDomainPasswordPolicy.md index 8d63f3fbfc..975db35fe2 100644 --- a/docset/winserver2019-ps/activedirectory/Get-ADDefaultDomainPasswordPolicy.md +++ b/docset/winserver2019-ps/activedirectory/Get-ADDefaultDomainPasswordPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-addefaultdomainpasswordpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-addefaultdomainpasswordpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADDefaultDomainPasswordPolicy --- diff --git a/docset/winserver2019-ps/activedirectory/Get-ADDomain.md b/docset/winserver2019-ps/activedirectory/Get-ADDomain.md index 2c8209b64d..2a1adc4dbe 100644 --- a/docset/winserver2019-ps/activedirectory/Get-ADDomain.md +++ b/docset/winserver2019-ps/activedirectory/Get-ADDomain.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-addomain?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-addomain?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADDomain --- diff --git a/docset/winserver2019-ps/activedirectory/Get-ADDomainController.md b/docset/winserver2019-ps/activedirectory/Get-ADDomainController.md index a8c9cb9e82..b7142d633a 100644 --- a/docset/winserver2019-ps/activedirectory/Get-ADDomainController.md +++ b/docset/winserver2019-ps/activedirectory/Get-ADDomainController.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-addomaincontroller?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-addomaincontroller?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADDomainController --- diff --git a/docset/winserver2019-ps/activedirectory/Get-ADDomainControllerPasswordReplicationPolicy.md b/docset/winserver2019-ps/activedirectory/Get-ADDomainControllerPasswordReplicationPolicy.md index 3eb6c6c767..933f7df35f 100644 --- a/docset/winserver2019-ps/activedirectory/Get-ADDomainControllerPasswordReplicationPolicy.md +++ b/docset/winserver2019-ps/activedirectory/Get-ADDomainControllerPasswordReplicationPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-addomaincontrollerpasswordreplicationpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-addomaincontrollerpasswordreplicationpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADDomainControllerPasswordReplicationPolicy --- diff --git a/docset/winserver2019-ps/activedirectory/Get-ADDomainControllerPasswordReplicationPolicyUsage.md b/docset/winserver2019-ps/activedirectory/Get-ADDomainControllerPasswordReplicationPolicyUsage.md index 237835805b..64a69f6289 100644 --- a/docset/winserver2019-ps/activedirectory/Get-ADDomainControllerPasswordReplicationPolicyUsage.md +++ b/docset/winserver2019-ps/activedirectory/Get-ADDomainControllerPasswordReplicationPolicyUsage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-addomaincontrollerpasswordreplicationpolicyusage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-addomaincontrollerpasswordreplicationpolicyusage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADDomainControllerPasswordReplicationPolicyUsage --- diff --git a/docset/winserver2019-ps/activedirectory/Get-ADFineGrainedPasswordPolicy.md b/docset/winserver2019-ps/activedirectory/Get-ADFineGrainedPasswordPolicy.md index 741752c866..8f7c22f441 100644 --- a/docset/winserver2019-ps/activedirectory/Get-ADFineGrainedPasswordPolicy.md +++ b/docset/winserver2019-ps/activedirectory/Get-ADFineGrainedPasswordPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adfinegrainedpasswordpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adfinegrainedpasswordpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADFineGrainedPasswordPolicy --- diff --git a/docset/winserver2019-ps/activedirectory/Get-ADFineGrainedPasswordPolicySubject.md b/docset/winserver2019-ps/activedirectory/Get-ADFineGrainedPasswordPolicySubject.md index 4ccd532057..14f2a6f30f 100644 --- a/docset/winserver2019-ps/activedirectory/Get-ADFineGrainedPasswordPolicySubject.md +++ b/docset/winserver2019-ps/activedirectory/Get-ADFineGrainedPasswordPolicySubject.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adfinegrainedpasswordpolicysubject?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adfinegrainedpasswordpolicysubject?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADFineGrainedPasswordPolicySubject --- diff --git a/docset/winserver2019-ps/activedirectory/Get-ADForest.md b/docset/winserver2019-ps/activedirectory/Get-ADForest.md index 0600dc44d2..a739173c02 100644 --- a/docset/winserver2019-ps/activedirectory/Get-ADForest.md +++ b/docset/winserver2019-ps/activedirectory/Get-ADForest.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adforest?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adforest?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADForest --- diff --git a/docset/winserver2019-ps/activedirectory/Get-ADGroup.md b/docset/winserver2019-ps/activedirectory/Get-ADGroup.md index b79111f12d..e90afad0a2 100644 --- a/docset/winserver2019-ps/activedirectory/Get-ADGroup.md +++ b/docset/winserver2019-ps/activedirectory/Get-ADGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADGroup --- diff --git a/docset/winserver2019-ps/activedirectory/Get-ADGroupMember.md b/docset/winserver2019-ps/activedirectory/Get-ADGroupMember.md index 3c3c674562..4666e03354 100644 --- a/docset/winserver2019-ps/activedirectory/Get-ADGroupMember.md +++ b/docset/winserver2019-ps/activedirectory/Get-ADGroupMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adgroupmember?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adgroupmember?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADGroupMember --- diff --git a/docset/winserver2019-ps/activedirectory/Get-ADObject.md b/docset/winserver2019-ps/activedirectory/Get-ADObject.md index a3a8f0c8a8..38ffc024f8 100644 --- a/docset/winserver2019-ps/activedirectory/Get-ADObject.md +++ b/docset/winserver2019-ps/activedirectory/Get-ADObject.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adobject?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adobject?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADObject --- diff --git a/docset/winserver2019-ps/activedirectory/Get-ADOptionalFeature.md b/docset/winserver2019-ps/activedirectory/Get-ADOptionalFeature.md index ae28a28ebc..6061cf1d72 100644 --- a/docset/winserver2019-ps/activedirectory/Get-ADOptionalFeature.md +++ b/docset/winserver2019-ps/activedirectory/Get-ADOptionalFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adoptionalfeature?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adoptionalfeature?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADOptionalFeature --- diff --git a/docset/winserver2019-ps/activedirectory/Get-ADOrganizationalUnit.md b/docset/winserver2019-ps/activedirectory/Get-ADOrganizationalUnit.md index c8c030482d..c0648a4374 100644 --- a/docset/winserver2019-ps/activedirectory/Get-ADOrganizationalUnit.md +++ b/docset/winserver2019-ps/activedirectory/Get-ADOrganizationalUnit.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adorganizationalunit?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adorganizationalunit?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADOrganizationalUnit --- diff --git a/docset/winserver2019-ps/activedirectory/Get-ADPrincipalGroupMembership.md b/docset/winserver2019-ps/activedirectory/Get-ADPrincipalGroupMembership.md index 0543c11c18..11fe58e3b8 100644 --- a/docset/winserver2019-ps/activedirectory/Get-ADPrincipalGroupMembership.md +++ b/docset/winserver2019-ps/activedirectory/Get-ADPrincipalGroupMembership.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adprincipalgroupmembership?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adprincipalgroupmembership?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADPrincipalGroupMembership --- diff --git a/docset/winserver2019-ps/activedirectory/Get-ADReplicationAttributeMetadata.md b/docset/winserver2019-ps/activedirectory/Get-ADReplicationAttributeMetadata.md index 49986abb6f..2344f97238 100644 --- a/docset/winserver2019-ps/activedirectory/Get-ADReplicationAttributeMetadata.md +++ b/docset/winserver2019-ps/activedirectory/Get-ADReplicationAttributeMetadata.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adreplicationattributemetadata?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adreplicationattributemetadata?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADReplicationAttributeMetadata --- diff --git a/docset/winserver2019-ps/activedirectory/Get-ADReplicationConnection.md b/docset/winserver2019-ps/activedirectory/Get-ADReplicationConnection.md index 730e30a0d3..a8e0516c45 100644 --- a/docset/winserver2019-ps/activedirectory/Get-ADReplicationConnection.md +++ b/docset/winserver2019-ps/activedirectory/Get-ADReplicationConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adreplicationconnection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adreplicationconnection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADReplicationConnection --- diff --git a/docset/winserver2019-ps/activedirectory/Get-ADReplicationFailure.md b/docset/winserver2019-ps/activedirectory/Get-ADReplicationFailure.md index 5ff4725b5b..fc99f83eca 100644 --- a/docset/winserver2019-ps/activedirectory/Get-ADReplicationFailure.md +++ b/docset/winserver2019-ps/activedirectory/Get-ADReplicationFailure.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adreplicationfailure?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adreplicationfailure?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADReplicationFailure --- diff --git a/docset/winserver2019-ps/activedirectory/Get-ADReplicationPartnerMetadata.md b/docset/winserver2019-ps/activedirectory/Get-ADReplicationPartnerMetadata.md index 2e3f705cbe..b951c54dab 100644 --- a/docset/winserver2019-ps/activedirectory/Get-ADReplicationPartnerMetadata.md +++ b/docset/winserver2019-ps/activedirectory/Get-ADReplicationPartnerMetadata.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adreplicationpartnermetadata?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adreplicationpartnermetadata?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADReplicationPartnerMetadata --- diff --git a/docset/winserver2019-ps/activedirectory/Get-ADReplicationQueueOperation.md b/docset/winserver2019-ps/activedirectory/Get-ADReplicationQueueOperation.md index bc32ebdf1a..cfdb665bd7 100644 --- a/docset/winserver2019-ps/activedirectory/Get-ADReplicationQueueOperation.md +++ b/docset/winserver2019-ps/activedirectory/Get-ADReplicationQueueOperation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adreplicationqueueoperation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adreplicationqueueoperation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADReplicationQueueOperation --- diff --git a/docset/winserver2019-ps/activedirectory/Get-ADReplicationSite.md b/docset/winserver2019-ps/activedirectory/Get-ADReplicationSite.md index fccc966574..0c18fea952 100644 --- a/docset/winserver2019-ps/activedirectory/Get-ADReplicationSite.md +++ b/docset/winserver2019-ps/activedirectory/Get-ADReplicationSite.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adreplicationsite?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adreplicationsite?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADReplicationSite --- diff --git a/docset/winserver2019-ps/activedirectory/Get-ADReplicationSiteLink.md b/docset/winserver2019-ps/activedirectory/Get-ADReplicationSiteLink.md index a97ae4bdff..cc2f69e963 100644 --- a/docset/winserver2019-ps/activedirectory/Get-ADReplicationSiteLink.md +++ b/docset/winserver2019-ps/activedirectory/Get-ADReplicationSiteLink.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adreplicationsitelink?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adreplicationsitelink?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADReplicationSiteLink --- diff --git a/docset/winserver2019-ps/activedirectory/Get-ADReplicationSiteLinkBridge.md b/docset/winserver2019-ps/activedirectory/Get-ADReplicationSiteLinkBridge.md index 825c9483ba..7cacac9903 100644 --- a/docset/winserver2019-ps/activedirectory/Get-ADReplicationSiteLinkBridge.md +++ b/docset/winserver2019-ps/activedirectory/Get-ADReplicationSiteLinkBridge.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adreplicationsitelinkbridge?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adreplicationsitelinkbridge?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADReplicationSiteLinkBridge --- diff --git a/docset/winserver2019-ps/activedirectory/Get-ADReplicationSubnet.md b/docset/winserver2019-ps/activedirectory/Get-ADReplicationSubnet.md index e186a3c090..f929a76922 100644 --- a/docset/winserver2019-ps/activedirectory/Get-ADReplicationSubnet.md +++ b/docset/winserver2019-ps/activedirectory/Get-ADReplicationSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adreplicationsubnet?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adreplicationsubnet?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADReplicationSubnet --- diff --git a/docset/winserver2019-ps/activedirectory/Get-ADReplicationUpToDatenessVectorTable.md b/docset/winserver2019-ps/activedirectory/Get-ADReplicationUpToDatenessVectorTable.md index e28ed01721..3283f44016 100644 --- a/docset/winserver2019-ps/activedirectory/Get-ADReplicationUpToDatenessVectorTable.md +++ b/docset/winserver2019-ps/activedirectory/Get-ADReplicationUpToDatenessVectorTable.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adreplicationuptodatenessvectortable?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adreplicationuptodatenessvectortable?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADReplicationUpToDatenessVectorTable --- diff --git a/docset/winserver2019-ps/activedirectory/Get-ADResourceProperty.md b/docset/winserver2019-ps/activedirectory/Get-ADResourceProperty.md index 810aeefd5a..d2aaefbad1 100644 --- a/docset/winserver2019-ps/activedirectory/Get-ADResourceProperty.md +++ b/docset/winserver2019-ps/activedirectory/Get-ADResourceProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adresourceproperty?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adresourceproperty?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADResourceProperty --- diff --git a/docset/winserver2019-ps/activedirectory/Get-ADResourcePropertyList.md b/docset/winserver2019-ps/activedirectory/Get-ADResourcePropertyList.md index 5a27be7bd0..b6cd92fcf4 100644 --- a/docset/winserver2019-ps/activedirectory/Get-ADResourcePropertyList.md +++ b/docset/winserver2019-ps/activedirectory/Get-ADResourcePropertyList.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adresourcepropertylist?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adresourcepropertylist?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADResourcePropertyList --- diff --git a/docset/winserver2019-ps/activedirectory/Get-ADResourcePropertyValueType.md b/docset/winserver2019-ps/activedirectory/Get-ADResourcePropertyValueType.md index 551b1380f8..6fd128e835 100644 --- a/docset/winserver2019-ps/activedirectory/Get-ADResourcePropertyValueType.md +++ b/docset/winserver2019-ps/activedirectory/Get-ADResourcePropertyValueType.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adresourcepropertyvaluetype?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adresourcepropertyvaluetype?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADResourcePropertyValueType --- diff --git a/docset/winserver2019-ps/activedirectory/Get-ADRootDSE.md b/docset/winserver2019-ps/activedirectory/Get-ADRootDSE.md index c3050a8856..cffcd67d34 100644 --- a/docset/winserver2019-ps/activedirectory/Get-ADRootDSE.md +++ b/docset/winserver2019-ps/activedirectory/Get-ADRootDSE.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adrootdse?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adrootdse?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADRootDSE --- diff --git a/docset/winserver2019-ps/activedirectory/Get-ADServiceAccount.md b/docset/winserver2019-ps/activedirectory/Get-ADServiceAccount.md index f2a1071646..6ca8308168 100644 --- a/docset/winserver2019-ps/activedirectory/Get-ADServiceAccount.md +++ b/docset/winserver2019-ps/activedirectory/Get-ADServiceAccount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adserviceaccount?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adserviceaccount?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADServiceAccount --- diff --git a/docset/winserver2019-ps/activedirectory/Get-ADTrust.md b/docset/winserver2019-ps/activedirectory/Get-ADTrust.md index 21ba3bcfc8..907e9749fe 100644 --- a/docset/winserver2019-ps/activedirectory/Get-ADTrust.md +++ b/docset/winserver2019-ps/activedirectory/Get-ADTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adtrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adtrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADTrust --- diff --git a/docset/winserver2019-ps/activedirectory/Get-ADUser.md b/docset/winserver2019-ps/activedirectory/Get-ADUser.md index 00084e4c0a..641705cd0e 100644 --- a/docset/winserver2019-ps/activedirectory/Get-ADUser.md +++ b/docset/winserver2019-ps/activedirectory/Get-ADUser.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-aduser?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-aduser?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADUser --- diff --git a/docset/winserver2019-ps/activedirectory/Get-ADUserResultantPasswordPolicy.md b/docset/winserver2019-ps/activedirectory/Get-ADUserResultantPasswordPolicy.md index 9b1a85b983..fb440acec6 100644 --- a/docset/winserver2019-ps/activedirectory/Get-ADUserResultantPasswordPolicy.md +++ b/docset/winserver2019-ps/activedirectory/Get-ADUserResultantPasswordPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-aduserresultantpasswordpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-aduserresultantpasswordpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADUserResultantPasswordPolicy --- diff --git a/docset/winserver2019-ps/activedirectory/Grant-ADAuthenticationPolicySiloAccess.md b/docset/winserver2019-ps/activedirectory/Grant-ADAuthenticationPolicySiloAccess.md index 456a74b42e..42dffbbd5c 100644 --- a/docset/winserver2019-ps/activedirectory/Grant-ADAuthenticationPolicySiloAccess.md +++ b/docset/winserver2019-ps/activedirectory/Grant-ADAuthenticationPolicySiloAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/grant-adauthenticationpolicysiloaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/grant-adauthenticationpolicysiloaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Grant-ADAuthenticationPolicySiloAccess --- diff --git a/docset/winserver2019-ps/activedirectory/Install-ADServiceAccount.md b/docset/winserver2019-ps/activedirectory/Install-ADServiceAccount.md index 7690b0dfe0..af3f46bea8 100644 --- a/docset/winserver2019-ps/activedirectory/Install-ADServiceAccount.md +++ b/docset/winserver2019-ps/activedirectory/Install-ADServiceAccount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/install-adserviceaccount?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/install-adserviceaccount?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-ADServiceAccount --- diff --git a/docset/winserver2019-ps/activedirectory/Move-ADDirectoryServer.md b/docset/winserver2019-ps/activedirectory/Move-ADDirectoryServer.md index 277d84f9ff..65e476e303 100644 --- a/docset/winserver2019-ps/activedirectory/Move-ADDirectoryServer.md +++ b/docset/winserver2019-ps/activedirectory/Move-ADDirectoryServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/move-addirectoryserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/move-addirectoryserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-ADDirectoryServer --- diff --git a/docset/winserver2019-ps/activedirectory/Move-ADDirectoryServerOperationMasterRole.md b/docset/winserver2019-ps/activedirectory/Move-ADDirectoryServerOperationMasterRole.md index a9f85d0727..7c70b4b86d 100644 --- a/docset/winserver2019-ps/activedirectory/Move-ADDirectoryServerOperationMasterRole.md +++ b/docset/winserver2019-ps/activedirectory/Move-ADDirectoryServerOperationMasterRole.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/move-addirectoryserveroperationmasterrole?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/move-addirectoryserveroperationmasterrole?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-ADDirectoryServerOperationMasterRole --- diff --git a/docset/winserver2019-ps/activedirectory/Move-ADObject.md b/docset/winserver2019-ps/activedirectory/Move-ADObject.md index ca98bc9406..3ea888d585 100644 --- a/docset/winserver2019-ps/activedirectory/Move-ADObject.md +++ b/docset/winserver2019-ps/activedirectory/Move-ADObject.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/move-adobject?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/move-adobject?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-ADObject --- diff --git a/docset/winserver2019-ps/activedirectory/New-ADAuthenticationPolicy.md b/docset/winserver2019-ps/activedirectory/New-ADAuthenticationPolicy.md index 8424926b5d..1112b1dc1a 100644 --- a/docset/winserver2019-ps/activedirectory/New-ADAuthenticationPolicy.md +++ b/docset/winserver2019-ps/activedirectory/New-ADAuthenticationPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adauthenticationpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adauthenticationpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADAuthenticationPolicy --- diff --git a/docset/winserver2019-ps/activedirectory/New-ADAuthenticationPolicySilo.md b/docset/winserver2019-ps/activedirectory/New-ADAuthenticationPolicySilo.md index f61ac00bb6..41bba5206b 100644 --- a/docset/winserver2019-ps/activedirectory/New-ADAuthenticationPolicySilo.md +++ b/docset/winserver2019-ps/activedirectory/New-ADAuthenticationPolicySilo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adauthenticationpolicysilo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adauthenticationpolicysilo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADAuthenticationPolicySilo --- diff --git a/docset/winserver2019-ps/activedirectory/New-ADCentralAccessPolicy.md b/docset/winserver2019-ps/activedirectory/New-ADCentralAccessPolicy.md index dabd7ea027..269f96d7f0 100644 --- a/docset/winserver2019-ps/activedirectory/New-ADCentralAccessPolicy.md +++ b/docset/winserver2019-ps/activedirectory/New-ADCentralAccessPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adcentralaccesspolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adcentralaccesspolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADCentralAccessPolicy --- diff --git a/docset/winserver2019-ps/activedirectory/New-ADCentralAccessRule.md b/docset/winserver2019-ps/activedirectory/New-ADCentralAccessRule.md index 7053ff9b69..50c83ef95c 100644 --- a/docset/winserver2019-ps/activedirectory/New-ADCentralAccessRule.md +++ b/docset/winserver2019-ps/activedirectory/New-ADCentralAccessRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adcentralaccessrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adcentralaccessrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADCentralAccessRule --- diff --git a/docset/winserver2019-ps/activedirectory/New-ADClaimTransformPolicy.md b/docset/winserver2019-ps/activedirectory/New-ADClaimTransformPolicy.md index ff47e91d36..6eafbf59c8 100644 --- a/docset/winserver2019-ps/activedirectory/New-ADClaimTransformPolicy.md +++ b/docset/winserver2019-ps/activedirectory/New-ADClaimTransformPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adclaimtransformpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adclaimtransformpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADClaimTransformPolicy --- diff --git a/docset/winserver2019-ps/activedirectory/New-ADClaimType.md b/docset/winserver2019-ps/activedirectory/New-ADClaimType.md index 21089504f5..0dfafa9efc 100644 --- a/docset/winserver2019-ps/activedirectory/New-ADClaimType.md +++ b/docset/winserver2019-ps/activedirectory/New-ADClaimType.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adclaimtype?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adclaimtype?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADClaimType --- diff --git a/docset/winserver2019-ps/activedirectory/New-ADComputer.md b/docset/winserver2019-ps/activedirectory/New-ADComputer.md index efa6848a6e..54452e684a 100644 --- a/docset/winserver2019-ps/activedirectory/New-ADComputer.md +++ b/docset/winserver2019-ps/activedirectory/New-ADComputer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adcomputer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adcomputer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADComputer --- diff --git a/docset/winserver2019-ps/activedirectory/New-ADDCCloneConfigFile.md b/docset/winserver2019-ps/activedirectory/New-ADDCCloneConfigFile.md index bc552de802..db79e37966 100644 --- a/docset/winserver2019-ps/activedirectory/New-ADDCCloneConfigFile.md +++ b/docset/winserver2019-ps/activedirectory/New-ADDCCloneConfigFile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-addccloneconfigfile?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-addccloneconfigfile?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADDCCloneConfigFile --- diff --git a/docset/winserver2019-ps/activedirectory/New-ADFineGrainedPasswordPolicy.md b/docset/winserver2019-ps/activedirectory/New-ADFineGrainedPasswordPolicy.md index 8accb08023..bbd8244c48 100644 --- a/docset/winserver2019-ps/activedirectory/New-ADFineGrainedPasswordPolicy.md +++ b/docset/winserver2019-ps/activedirectory/New-ADFineGrainedPasswordPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adfinegrainedpasswordpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adfinegrainedpasswordpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADFineGrainedPasswordPolicy --- diff --git a/docset/winserver2019-ps/activedirectory/New-ADGroup.md b/docset/winserver2019-ps/activedirectory/New-ADGroup.md index 869673aa18..39d357591e 100644 --- a/docset/winserver2019-ps/activedirectory/New-ADGroup.md +++ b/docset/winserver2019-ps/activedirectory/New-ADGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADGroup --- diff --git a/docset/winserver2019-ps/activedirectory/New-ADObject.md b/docset/winserver2019-ps/activedirectory/New-ADObject.md index 6e701134d4..5b551af59f 100644 --- a/docset/winserver2019-ps/activedirectory/New-ADObject.md +++ b/docset/winserver2019-ps/activedirectory/New-ADObject.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adobject?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adobject?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADObject --- diff --git a/docset/winserver2019-ps/activedirectory/New-ADOrganizationalUnit.md b/docset/winserver2019-ps/activedirectory/New-ADOrganizationalUnit.md index b912d6050c..19ad0825d4 100644 --- a/docset/winserver2019-ps/activedirectory/New-ADOrganizationalUnit.md +++ b/docset/winserver2019-ps/activedirectory/New-ADOrganizationalUnit.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adorganizationalunit?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adorganizationalunit?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADOrganizationalUnit --- diff --git a/docset/winserver2019-ps/activedirectory/New-ADReplicationSite.md b/docset/winserver2019-ps/activedirectory/New-ADReplicationSite.md index 383c281e7e..04d704d986 100644 --- a/docset/winserver2019-ps/activedirectory/New-ADReplicationSite.md +++ b/docset/winserver2019-ps/activedirectory/New-ADReplicationSite.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adreplicationsite?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adreplicationsite?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADReplicationSite --- diff --git a/docset/winserver2019-ps/activedirectory/New-ADReplicationSiteLink.md b/docset/winserver2019-ps/activedirectory/New-ADReplicationSiteLink.md index 0a40fa9342..d9696b44b6 100644 --- a/docset/winserver2019-ps/activedirectory/New-ADReplicationSiteLink.md +++ b/docset/winserver2019-ps/activedirectory/New-ADReplicationSiteLink.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adreplicationsitelink?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adreplicationsitelink?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADReplicationSiteLink --- diff --git a/docset/winserver2019-ps/activedirectory/New-ADReplicationSiteLinkBridge.md b/docset/winserver2019-ps/activedirectory/New-ADReplicationSiteLinkBridge.md index 1bdc8f8f72..86a055c997 100644 --- a/docset/winserver2019-ps/activedirectory/New-ADReplicationSiteLinkBridge.md +++ b/docset/winserver2019-ps/activedirectory/New-ADReplicationSiteLinkBridge.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adreplicationsitelinkbridge?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adreplicationsitelinkbridge?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADReplicationSiteLinkBridge --- diff --git a/docset/winserver2019-ps/activedirectory/New-ADReplicationSubnet.md b/docset/winserver2019-ps/activedirectory/New-ADReplicationSubnet.md index e4d713fdd2..912a11fda0 100644 --- a/docset/winserver2019-ps/activedirectory/New-ADReplicationSubnet.md +++ b/docset/winserver2019-ps/activedirectory/New-ADReplicationSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adreplicationsubnet?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adreplicationsubnet?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADReplicationSubnet --- diff --git a/docset/winserver2019-ps/activedirectory/New-ADResourceProperty.md b/docset/winserver2019-ps/activedirectory/New-ADResourceProperty.md index 26f2be6326..2f20f99f18 100644 --- a/docset/winserver2019-ps/activedirectory/New-ADResourceProperty.md +++ b/docset/winserver2019-ps/activedirectory/New-ADResourceProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adresourceproperty?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adresourceproperty?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADResourceProperty --- diff --git a/docset/winserver2019-ps/activedirectory/New-ADResourcePropertyList.md b/docset/winserver2019-ps/activedirectory/New-ADResourcePropertyList.md index 979040b48b..80863ec7c2 100644 --- a/docset/winserver2019-ps/activedirectory/New-ADResourcePropertyList.md +++ b/docset/winserver2019-ps/activedirectory/New-ADResourcePropertyList.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adresourcepropertylist?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adresourcepropertylist?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADResourcePropertyList --- diff --git a/docset/winserver2019-ps/activedirectory/New-ADServiceAccount.md b/docset/winserver2019-ps/activedirectory/New-ADServiceAccount.md index 53b5a24bfa..e3fd985eb4 100644 --- a/docset/winserver2019-ps/activedirectory/New-ADServiceAccount.md +++ b/docset/winserver2019-ps/activedirectory/New-ADServiceAccount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adserviceaccount?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adserviceaccount?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADServiceAccount --- diff --git a/docset/winserver2019-ps/activedirectory/New-ADUser.md b/docset/winserver2019-ps/activedirectory/New-ADUser.md index 4bc96abfe2..908bc89c40 100644 --- a/docset/winserver2019-ps/activedirectory/New-ADUser.md +++ b/docset/winserver2019-ps/activedirectory/New-ADUser.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-aduser?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-aduser?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADUser --- diff --git a/docset/winserver2019-ps/activedirectory/Remove-ADAuthenticationPolicy.md b/docset/winserver2019-ps/activedirectory/Remove-ADAuthenticationPolicy.md index 9bb1d17441..114f7208c5 100644 --- a/docset/winserver2019-ps/activedirectory/Remove-ADAuthenticationPolicy.md +++ b/docset/winserver2019-ps/activedirectory/Remove-ADAuthenticationPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adauthenticationpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adauthenticationpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADAuthenticationPolicy --- diff --git a/docset/winserver2019-ps/activedirectory/Remove-ADAuthenticationPolicySilo.md b/docset/winserver2019-ps/activedirectory/Remove-ADAuthenticationPolicySilo.md index c8715b2b8a..e8e1912997 100644 --- a/docset/winserver2019-ps/activedirectory/Remove-ADAuthenticationPolicySilo.md +++ b/docset/winserver2019-ps/activedirectory/Remove-ADAuthenticationPolicySilo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adauthenticationpolicysilo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adauthenticationpolicysilo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADAuthenticationPolicySilo --- diff --git a/docset/winserver2019-ps/activedirectory/Remove-ADCentralAccessPolicy.md b/docset/winserver2019-ps/activedirectory/Remove-ADCentralAccessPolicy.md index 6b6f448981..ae1bb01da5 100644 --- a/docset/winserver2019-ps/activedirectory/Remove-ADCentralAccessPolicy.md +++ b/docset/winserver2019-ps/activedirectory/Remove-ADCentralAccessPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adcentralaccesspolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adcentralaccesspolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADCentralAccessPolicy --- diff --git a/docset/winserver2019-ps/activedirectory/Remove-ADCentralAccessPolicyMember.md b/docset/winserver2019-ps/activedirectory/Remove-ADCentralAccessPolicyMember.md index 639da981ba..6f5490972a 100644 --- a/docset/winserver2019-ps/activedirectory/Remove-ADCentralAccessPolicyMember.md +++ b/docset/winserver2019-ps/activedirectory/Remove-ADCentralAccessPolicyMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adcentralaccesspolicymember?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adcentralaccesspolicymember?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADCentralAccessPolicyMember --- diff --git a/docset/winserver2019-ps/activedirectory/Remove-ADCentralAccessRule.md b/docset/winserver2019-ps/activedirectory/Remove-ADCentralAccessRule.md index 5400c308a8..e909fd06a3 100644 --- a/docset/winserver2019-ps/activedirectory/Remove-ADCentralAccessRule.md +++ b/docset/winserver2019-ps/activedirectory/Remove-ADCentralAccessRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adcentralaccessrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adcentralaccessrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADCentralAccessRule --- diff --git a/docset/winserver2019-ps/activedirectory/Remove-ADClaimTransformPolicy.md b/docset/winserver2019-ps/activedirectory/Remove-ADClaimTransformPolicy.md index 3cac717d8f..b4b2a73a51 100644 --- a/docset/winserver2019-ps/activedirectory/Remove-ADClaimTransformPolicy.md +++ b/docset/winserver2019-ps/activedirectory/Remove-ADClaimTransformPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adclaimtransformpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adclaimtransformpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADClaimTransformPolicy --- diff --git a/docset/winserver2019-ps/activedirectory/Remove-ADClaimType.md b/docset/winserver2019-ps/activedirectory/Remove-ADClaimType.md index e6e5213e4d..57c0f0e645 100644 --- a/docset/winserver2019-ps/activedirectory/Remove-ADClaimType.md +++ b/docset/winserver2019-ps/activedirectory/Remove-ADClaimType.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adclaimtype?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adclaimtype?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADClaimType --- diff --git a/docset/winserver2019-ps/activedirectory/Remove-ADComputer.md b/docset/winserver2019-ps/activedirectory/Remove-ADComputer.md index e5f6f0fd7d..1519f0e889 100644 --- a/docset/winserver2019-ps/activedirectory/Remove-ADComputer.md +++ b/docset/winserver2019-ps/activedirectory/Remove-ADComputer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adcomputer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adcomputer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADComputer --- diff --git a/docset/winserver2019-ps/activedirectory/Remove-ADComputerServiceAccount.md b/docset/winserver2019-ps/activedirectory/Remove-ADComputerServiceAccount.md index d4eae85a1a..0d9ef03b87 100644 --- a/docset/winserver2019-ps/activedirectory/Remove-ADComputerServiceAccount.md +++ b/docset/winserver2019-ps/activedirectory/Remove-ADComputerServiceAccount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adcomputerserviceaccount?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adcomputerserviceaccount?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADComputerServiceAccount --- diff --git a/docset/winserver2019-ps/activedirectory/Remove-ADDomainControllerPasswordReplicationPolicy.md b/docset/winserver2019-ps/activedirectory/Remove-ADDomainControllerPasswordReplicationPolicy.md index 776777f213..d100c39dd1 100644 --- a/docset/winserver2019-ps/activedirectory/Remove-ADDomainControllerPasswordReplicationPolicy.md +++ b/docset/winserver2019-ps/activedirectory/Remove-ADDomainControllerPasswordReplicationPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-addomaincontrollerpasswordreplicationpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-addomaincontrollerpasswordreplicationpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADDomainControllerPasswordReplicationPolicy --- diff --git a/docset/winserver2019-ps/activedirectory/Remove-ADFineGrainedPasswordPolicy.md b/docset/winserver2019-ps/activedirectory/Remove-ADFineGrainedPasswordPolicy.md index 0eea71c25b..8d74b9341c 100644 --- a/docset/winserver2019-ps/activedirectory/Remove-ADFineGrainedPasswordPolicy.md +++ b/docset/winserver2019-ps/activedirectory/Remove-ADFineGrainedPasswordPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adfinegrainedpasswordpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adfinegrainedpasswordpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADFineGrainedPasswordPolicy --- diff --git a/docset/winserver2019-ps/activedirectory/Remove-ADFineGrainedPasswordPolicySubject.md b/docset/winserver2019-ps/activedirectory/Remove-ADFineGrainedPasswordPolicySubject.md index 3dd710524f..5ce61ff032 100644 --- a/docset/winserver2019-ps/activedirectory/Remove-ADFineGrainedPasswordPolicySubject.md +++ b/docset/winserver2019-ps/activedirectory/Remove-ADFineGrainedPasswordPolicySubject.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adfinegrainedpasswordpolicysubject?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adfinegrainedpasswordpolicysubject?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADFineGrainedPasswordPolicySubject --- diff --git a/docset/winserver2019-ps/activedirectory/Remove-ADGroup.md b/docset/winserver2019-ps/activedirectory/Remove-ADGroup.md index 81af49bcb9..a71af1ba52 100644 --- a/docset/winserver2019-ps/activedirectory/Remove-ADGroup.md +++ b/docset/winserver2019-ps/activedirectory/Remove-ADGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADGroup --- diff --git a/docset/winserver2019-ps/activedirectory/Remove-ADGroupMember.md b/docset/winserver2019-ps/activedirectory/Remove-ADGroupMember.md index 1b8370ebfd..0da033bf57 100644 --- a/docset/winserver2019-ps/activedirectory/Remove-ADGroupMember.md +++ b/docset/winserver2019-ps/activedirectory/Remove-ADGroupMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adgroupmember?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adgroupmember?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADGroupMember --- diff --git a/docset/winserver2019-ps/activedirectory/Remove-ADObject.md b/docset/winserver2019-ps/activedirectory/Remove-ADObject.md index 3125c67e01..0341d03cd2 100644 --- a/docset/winserver2019-ps/activedirectory/Remove-ADObject.md +++ b/docset/winserver2019-ps/activedirectory/Remove-ADObject.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adobject?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adobject?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADObject --- diff --git a/docset/winserver2019-ps/activedirectory/Remove-ADOrganizationalUnit.md b/docset/winserver2019-ps/activedirectory/Remove-ADOrganizationalUnit.md index 36616d0cea..ddb9dfad45 100644 --- a/docset/winserver2019-ps/activedirectory/Remove-ADOrganizationalUnit.md +++ b/docset/winserver2019-ps/activedirectory/Remove-ADOrganizationalUnit.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adorganizationalunit?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adorganizationalunit?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADOrganizationalUnit --- diff --git a/docset/winserver2019-ps/activedirectory/Remove-ADPrincipalGroupMembership.md b/docset/winserver2019-ps/activedirectory/Remove-ADPrincipalGroupMembership.md index bd08b6dfca..1abc2d2fd7 100644 --- a/docset/winserver2019-ps/activedirectory/Remove-ADPrincipalGroupMembership.md +++ b/docset/winserver2019-ps/activedirectory/Remove-ADPrincipalGroupMembership.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adprincipalgroupmembership?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adprincipalgroupmembership?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADPrincipalGroupMembership --- diff --git a/docset/winserver2019-ps/activedirectory/Remove-ADReplicationSite.md b/docset/winserver2019-ps/activedirectory/Remove-ADReplicationSite.md index e88b1e0ec4..a8f1cc5565 100644 --- a/docset/winserver2019-ps/activedirectory/Remove-ADReplicationSite.md +++ b/docset/winserver2019-ps/activedirectory/Remove-ADReplicationSite.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adreplicationsite?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adreplicationsite?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADReplicationSite --- diff --git a/docset/winserver2019-ps/activedirectory/Remove-ADReplicationSiteLink.md b/docset/winserver2019-ps/activedirectory/Remove-ADReplicationSiteLink.md index 0d2837bba9..08d6d5d026 100644 --- a/docset/winserver2019-ps/activedirectory/Remove-ADReplicationSiteLink.md +++ b/docset/winserver2019-ps/activedirectory/Remove-ADReplicationSiteLink.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adreplicationsitelink?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adreplicationsitelink?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADReplicationSiteLink --- diff --git a/docset/winserver2019-ps/activedirectory/Remove-ADReplicationSiteLinkBridge.md b/docset/winserver2019-ps/activedirectory/Remove-ADReplicationSiteLinkBridge.md index bec3ec7afd..7cfb222eb7 100644 --- a/docset/winserver2019-ps/activedirectory/Remove-ADReplicationSiteLinkBridge.md +++ b/docset/winserver2019-ps/activedirectory/Remove-ADReplicationSiteLinkBridge.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adreplicationsitelinkbridge?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adreplicationsitelinkbridge?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADReplicationSiteLinkBridge --- diff --git a/docset/winserver2019-ps/activedirectory/Remove-ADReplicationSubnet.md b/docset/winserver2019-ps/activedirectory/Remove-ADReplicationSubnet.md index a5c9f46543..7483a75fbe 100644 --- a/docset/winserver2019-ps/activedirectory/Remove-ADReplicationSubnet.md +++ b/docset/winserver2019-ps/activedirectory/Remove-ADReplicationSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adreplicationsubnet?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adreplicationsubnet?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADReplicationSubnet --- diff --git a/docset/winserver2019-ps/activedirectory/Remove-ADResourceProperty.md b/docset/winserver2019-ps/activedirectory/Remove-ADResourceProperty.md index bd7eeef30c..94531209b6 100644 --- a/docset/winserver2019-ps/activedirectory/Remove-ADResourceProperty.md +++ b/docset/winserver2019-ps/activedirectory/Remove-ADResourceProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adresourceproperty?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adresourceproperty?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADResourceProperty --- diff --git a/docset/winserver2019-ps/activedirectory/Remove-ADResourcePropertyList.md b/docset/winserver2019-ps/activedirectory/Remove-ADResourcePropertyList.md index 2809dcf9cd..091311fb20 100644 --- a/docset/winserver2019-ps/activedirectory/Remove-ADResourcePropertyList.md +++ b/docset/winserver2019-ps/activedirectory/Remove-ADResourcePropertyList.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adresourcepropertylist?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adresourcepropertylist?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADResourcePropertyList --- diff --git a/docset/winserver2019-ps/activedirectory/Remove-ADResourcePropertyListMember.md b/docset/winserver2019-ps/activedirectory/Remove-ADResourcePropertyListMember.md index dbacec794a..0b537aa543 100644 --- a/docset/winserver2019-ps/activedirectory/Remove-ADResourcePropertyListMember.md +++ b/docset/winserver2019-ps/activedirectory/Remove-ADResourcePropertyListMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adresourcepropertylistmember?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adresourcepropertylistmember?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADResourcePropertyListMember --- diff --git a/docset/winserver2019-ps/activedirectory/Remove-ADServiceAccount.md b/docset/winserver2019-ps/activedirectory/Remove-ADServiceAccount.md index e130bb50c1..7d88b70771 100644 --- a/docset/winserver2019-ps/activedirectory/Remove-ADServiceAccount.md +++ b/docset/winserver2019-ps/activedirectory/Remove-ADServiceAccount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adserviceaccount?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adserviceaccount?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADServiceAccount --- diff --git a/docset/winserver2019-ps/activedirectory/Remove-ADUser.md b/docset/winserver2019-ps/activedirectory/Remove-ADUser.md index 67505a1680..21d689e1ea 100644 --- a/docset/winserver2019-ps/activedirectory/Remove-ADUser.md +++ b/docset/winserver2019-ps/activedirectory/Remove-ADUser.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-aduser?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-aduser?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADUser --- diff --git a/docset/winserver2019-ps/activedirectory/Rename-ADObject.md b/docset/winserver2019-ps/activedirectory/Rename-ADObject.md index 1748a8059a..32ba1495a8 100644 --- a/docset/winserver2019-ps/activedirectory/Rename-ADObject.md +++ b/docset/winserver2019-ps/activedirectory/Rename-ADObject.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/rename-adobject?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/rename-adobject?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-ADObject --- diff --git a/docset/winserver2019-ps/activedirectory/Reset-ADServiceAccountPassword.md b/docset/winserver2019-ps/activedirectory/Reset-ADServiceAccountPassword.md index f3478aa293..b4b68c148b 100644 --- a/docset/winserver2019-ps/activedirectory/Reset-ADServiceAccountPassword.md +++ b/docset/winserver2019-ps/activedirectory/Reset-ADServiceAccountPassword.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/reset-adserviceaccountpassword?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/reset-adserviceaccountpassword?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-ADServiceAccountPassword --- diff --git a/docset/winserver2019-ps/activedirectory/Restore-ADObject.md b/docset/winserver2019-ps/activedirectory/Restore-ADObject.md index 150b087c1e..9f89b88395 100644 --- a/docset/winserver2019-ps/activedirectory/Restore-ADObject.md +++ b/docset/winserver2019-ps/activedirectory/Restore-ADObject.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/restore-adobject?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/restore-adobject?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-ADObject --- diff --git a/docset/winserver2019-ps/activedirectory/Revoke-ADAuthenticationPolicySiloAccess.md b/docset/winserver2019-ps/activedirectory/Revoke-ADAuthenticationPolicySiloAccess.md index 10e32f2181..07257216ce 100644 --- a/docset/winserver2019-ps/activedirectory/Revoke-ADAuthenticationPolicySiloAccess.md +++ b/docset/winserver2019-ps/activedirectory/Revoke-ADAuthenticationPolicySiloAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/revoke-adauthenticationpolicysiloaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/revoke-adauthenticationpolicysiloaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Revoke-ADAuthenticationPolicySiloAccess --- diff --git a/docset/winserver2019-ps/activedirectory/Search-ADAccount.md b/docset/winserver2019-ps/activedirectory/Search-ADAccount.md index 51d88b1de8..46d99eb918 100644 --- a/docset/winserver2019-ps/activedirectory/Search-ADAccount.md +++ b/docset/winserver2019-ps/activedirectory/Search-ADAccount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/search-adaccount?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/search-adaccount?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Search-ADAccount --- diff --git a/docset/winserver2019-ps/activedirectory/Set-ADAccountAuthenticationPolicySilo.md b/docset/winserver2019-ps/activedirectory/Set-ADAccountAuthenticationPolicySilo.md index 4fdfdea278..a9b51282c2 100644 --- a/docset/winserver2019-ps/activedirectory/Set-ADAccountAuthenticationPolicySilo.md +++ b/docset/winserver2019-ps/activedirectory/Set-ADAccountAuthenticationPolicySilo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adaccountauthenticationpolicysilo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adaccountauthenticationpolicysilo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADAccountAuthenticationPolicySilo --- diff --git a/docset/winserver2019-ps/activedirectory/Set-ADAccountControl.md b/docset/winserver2019-ps/activedirectory/Set-ADAccountControl.md index d6a855d7ae..79cd418e6b 100644 --- a/docset/winserver2019-ps/activedirectory/Set-ADAccountControl.md +++ b/docset/winserver2019-ps/activedirectory/Set-ADAccountControl.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adaccountcontrol?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adaccountcontrol?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADAccountControl --- diff --git a/docset/winserver2019-ps/activedirectory/Set-ADAccountExpiration.md b/docset/winserver2019-ps/activedirectory/Set-ADAccountExpiration.md index 044ae00a2a..a070068d55 100644 --- a/docset/winserver2019-ps/activedirectory/Set-ADAccountExpiration.md +++ b/docset/winserver2019-ps/activedirectory/Set-ADAccountExpiration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adaccountexpiration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adaccountexpiration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADAccountExpiration --- diff --git a/docset/winserver2019-ps/activedirectory/Set-ADAccountPassword.md b/docset/winserver2019-ps/activedirectory/Set-ADAccountPassword.md index 57d32aafd1..99a84caf93 100644 --- a/docset/winserver2019-ps/activedirectory/Set-ADAccountPassword.md +++ b/docset/winserver2019-ps/activedirectory/Set-ADAccountPassword.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adaccountpassword?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adaccountpassword?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADAccountPassword --- diff --git a/docset/winserver2019-ps/activedirectory/Set-ADAuthenticationPolicy.md b/docset/winserver2019-ps/activedirectory/Set-ADAuthenticationPolicy.md index 3fae01f4c9..71f92434f7 100644 --- a/docset/winserver2019-ps/activedirectory/Set-ADAuthenticationPolicy.md +++ b/docset/winserver2019-ps/activedirectory/Set-ADAuthenticationPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adauthenticationpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adauthenticationpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADAuthenticationPolicy --- diff --git a/docset/winserver2019-ps/activedirectory/Set-ADAuthenticationPolicySilo.md b/docset/winserver2019-ps/activedirectory/Set-ADAuthenticationPolicySilo.md index e1fb0d0077..6199dc283f 100644 --- a/docset/winserver2019-ps/activedirectory/Set-ADAuthenticationPolicySilo.md +++ b/docset/winserver2019-ps/activedirectory/Set-ADAuthenticationPolicySilo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adauthenticationpolicysilo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adauthenticationpolicysilo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADAuthenticationPolicySilo --- diff --git a/docset/winserver2019-ps/activedirectory/Set-ADCentralAccessPolicy.md b/docset/winserver2019-ps/activedirectory/Set-ADCentralAccessPolicy.md index f866715f84..fd09a2a3fe 100644 --- a/docset/winserver2019-ps/activedirectory/Set-ADCentralAccessPolicy.md +++ b/docset/winserver2019-ps/activedirectory/Set-ADCentralAccessPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adcentralaccesspolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adcentralaccesspolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADCentralAccessPolicy --- diff --git a/docset/winserver2019-ps/activedirectory/Set-ADCentralAccessRule.md b/docset/winserver2019-ps/activedirectory/Set-ADCentralAccessRule.md index d19eb1611e..1656216a39 100644 --- a/docset/winserver2019-ps/activedirectory/Set-ADCentralAccessRule.md +++ b/docset/winserver2019-ps/activedirectory/Set-ADCentralAccessRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adcentralaccessrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adcentralaccessrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADCentralAccessRule --- diff --git a/docset/winserver2019-ps/activedirectory/Set-ADClaimTransformLink.md b/docset/winserver2019-ps/activedirectory/Set-ADClaimTransformLink.md index df626f7ac8..05d89760a0 100644 --- a/docset/winserver2019-ps/activedirectory/Set-ADClaimTransformLink.md +++ b/docset/winserver2019-ps/activedirectory/Set-ADClaimTransformLink.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adclaimtransformlink?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adclaimtransformlink?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADClaimTransformLink --- diff --git a/docset/winserver2019-ps/activedirectory/Set-ADClaimTransformPolicy.md b/docset/winserver2019-ps/activedirectory/Set-ADClaimTransformPolicy.md index 744c155457..8597f91d97 100644 --- a/docset/winserver2019-ps/activedirectory/Set-ADClaimTransformPolicy.md +++ b/docset/winserver2019-ps/activedirectory/Set-ADClaimTransformPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adclaimtransformpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adclaimtransformpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADClaimTransformPolicy --- diff --git a/docset/winserver2019-ps/activedirectory/Set-ADClaimType.md b/docset/winserver2019-ps/activedirectory/Set-ADClaimType.md index f11ae3349a..21028648d4 100644 --- a/docset/winserver2019-ps/activedirectory/Set-ADClaimType.md +++ b/docset/winserver2019-ps/activedirectory/Set-ADClaimType.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adclaimtype?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adclaimtype?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADClaimType --- diff --git a/docset/winserver2019-ps/activedirectory/Set-ADComputer.md b/docset/winserver2019-ps/activedirectory/Set-ADComputer.md index f62e34794e..66dc1f5317 100644 --- a/docset/winserver2019-ps/activedirectory/Set-ADComputer.md +++ b/docset/winserver2019-ps/activedirectory/Set-ADComputer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adcomputer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adcomputer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADComputer --- diff --git a/docset/winserver2019-ps/activedirectory/Set-ADDefaultDomainPasswordPolicy.md b/docset/winserver2019-ps/activedirectory/Set-ADDefaultDomainPasswordPolicy.md index bc31ad36ef..6990249e7f 100644 --- a/docset/winserver2019-ps/activedirectory/Set-ADDefaultDomainPasswordPolicy.md +++ b/docset/winserver2019-ps/activedirectory/Set-ADDefaultDomainPasswordPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-addefaultdomainpasswordpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-addefaultdomainpasswordpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADDefaultDomainPasswordPolicy --- diff --git a/docset/winserver2019-ps/activedirectory/Set-ADDomain.md b/docset/winserver2019-ps/activedirectory/Set-ADDomain.md index 2650325414..fd336fcd3b 100644 --- a/docset/winserver2019-ps/activedirectory/Set-ADDomain.md +++ b/docset/winserver2019-ps/activedirectory/Set-ADDomain.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-addomain?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-addomain?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADDomain --- diff --git a/docset/winserver2019-ps/activedirectory/Set-ADDomainMode.md b/docset/winserver2019-ps/activedirectory/Set-ADDomainMode.md index 74a024c629..ff563601a2 100644 --- a/docset/winserver2019-ps/activedirectory/Set-ADDomainMode.md +++ b/docset/winserver2019-ps/activedirectory/Set-ADDomainMode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-addomainmode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-addomainmode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADDomainMode --- diff --git a/docset/winserver2019-ps/activedirectory/Set-ADFineGrainedPasswordPolicy.md b/docset/winserver2019-ps/activedirectory/Set-ADFineGrainedPasswordPolicy.md index 47f7d821b5..8a70f7f743 100644 --- a/docset/winserver2019-ps/activedirectory/Set-ADFineGrainedPasswordPolicy.md +++ b/docset/winserver2019-ps/activedirectory/Set-ADFineGrainedPasswordPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adfinegrainedpasswordpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adfinegrainedpasswordpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADFineGrainedPasswordPolicy --- diff --git a/docset/winserver2019-ps/activedirectory/Set-ADForest.md b/docset/winserver2019-ps/activedirectory/Set-ADForest.md index 77581ebcb1..7c1fa57e03 100644 --- a/docset/winserver2019-ps/activedirectory/Set-ADForest.md +++ b/docset/winserver2019-ps/activedirectory/Set-ADForest.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adforest?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adforest?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADForest --- diff --git a/docset/winserver2019-ps/activedirectory/Set-ADForestMode.md b/docset/winserver2019-ps/activedirectory/Set-ADForestMode.md index e255c9e79f..cf9a3d3103 100644 --- a/docset/winserver2019-ps/activedirectory/Set-ADForestMode.md +++ b/docset/winserver2019-ps/activedirectory/Set-ADForestMode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adforestmode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adforestmode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADForestMode --- diff --git a/docset/winserver2019-ps/activedirectory/Set-ADGroup.md b/docset/winserver2019-ps/activedirectory/Set-ADGroup.md index 65a8207ede..4a67cdc23a 100644 --- a/docset/winserver2019-ps/activedirectory/Set-ADGroup.md +++ b/docset/winserver2019-ps/activedirectory/Set-ADGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADGroup --- diff --git a/docset/winserver2019-ps/activedirectory/Set-ADObject.md b/docset/winserver2019-ps/activedirectory/Set-ADObject.md index c4e77f41c3..f32655539f 100644 --- a/docset/winserver2019-ps/activedirectory/Set-ADObject.md +++ b/docset/winserver2019-ps/activedirectory/Set-ADObject.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adobject?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adobject?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADObject --- diff --git a/docset/winserver2019-ps/activedirectory/Set-ADOrganizationalUnit.md b/docset/winserver2019-ps/activedirectory/Set-ADOrganizationalUnit.md index 27e3c0f2ff..ba94178fc1 100644 --- a/docset/winserver2019-ps/activedirectory/Set-ADOrganizationalUnit.md +++ b/docset/winserver2019-ps/activedirectory/Set-ADOrganizationalUnit.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adorganizationalunit?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adorganizationalunit?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADOrganizationalUnit --- diff --git a/docset/winserver2019-ps/activedirectory/Set-ADReplicationConnection.md b/docset/winserver2019-ps/activedirectory/Set-ADReplicationConnection.md index 2ebd7634a5..64a253df01 100644 --- a/docset/winserver2019-ps/activedirectory/Set-ADReplicationConnection.md +++ b/docset/winserver2019-ps/activedirectory/Set-ADReplicationConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adreplicationconnection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adreplicationconnection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADReplicationConnection --- diff --git a/docset/winserver2019-ps/activedirectory/Set-ADReplicationSite.md b/docset/winserver2019-ps/activedirectory/Set-ADReplicationSite.md index b64acf1a1f..a56b331c99 100644 --- a/docset/winserver2019-ps/activedirectory/Set-ADReplicationSite.md +++ b/docset/winserver2019-ps/activedirectory/Set-ADReplicationSite.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adreplicationsite?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adreplicationsite?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADReplicationSite --- diff --git a/docset/winserver2019-ps/activedirectory/Set-ADReplicationSiteLink.md b/docset/winserver2019-ps/activedirectory/Set-ADReplicationSiteLink.md index a62d1b5d39..5b9cac9382 100644 --- a/docset/winserver2019-ps/activedirectory/Set-ADReplicationSiteLink.md +++ b/docset/winserver2019-ps/activedirectory/Set-ADReplicationSiteLink.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adreplicationsitelink?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adreplicationsitelink?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADReplicationSiteLink --- diff --git a/docset/winserver2019-ps/activedirectory/Set-ADReplicationSiteLinkBridge.md b/docset/winserver2019-ps/activedirectory/Set-ADReplicationSiteLinkBridge.md index 977f426425..40eb40e416 100644 --- a/docset/winserver2019-ps/activedirectory/Set-ADReplicationSiteLinkBridge.md +++ b/docset/winserver2019-ps/activedirectory/Set-ADReplicationSiteLinkBridge.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adreplicationsitelinkbridge?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adreplicationsitelinkbridge?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADReplicationSiteLinkBridge --- diff --git a/docset/winserver2019-ps/activedirectory/Set-ADReplicationSubnet.md b/docset/winserver2019-ps/activedirectory/Set-ADReplicationSubnet.md index cc13e2d568..bff037acff 100644 --- a/docset/winserver2019-ps/activedirectory/Set-ADReplicationSubnet.md +++ b/docset/winserver2019-ps/activedirectory/Set-ADReplicationSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adreplicationsubnet?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adreplicationsubnet?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADReplicationSubnet --- diff --git a/docset/winserver2019-ps/activedirectory/Set-ADResourceProperty.md b/docset/winserver2019-ps/activedirectory/Set-ADResourceProperty.md index 45eb2c3ae7..f166e62045 100644 --- a/docset/winserver2019-ps/activedirectory/Set-ADResourceProperty.md +++ b/docset/winserver2019-ps/activedirectory/Set-ADResourceProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adresourceproperty?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adresourceproperty?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADResourceProperty --- diff --git a/docset/winserver2019-ps/activedirectory/Set-ADResourcePropertyList.md b/docset/winserver2019-ps/activedirectory/Set-ADResourcePropertyList.md index 179b998a46..fd0ed0372e 100644 --- a/docset/winserver2019-ps/activedirectory/Set-ADResourcePropertyList.md +++ b/docset/winserver2019-ps/activedirectory/Set-ADResourcePropertyList.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adresourcepropertylist?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adresourcepropertylist?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADResourcePropertyList --- diff --git a/docset/winserver2019-ps/activedirectory/Set-ADServiceAccount.md b/docset/winserver2019-ps/activedirectory/Set-ADServiceAccount.md index 64c332b45c..d3678b66a4 100644 --- a/docset/winserver2019-ps/activedirectory/Set-ADServiceAccount.md +++ b/docset/winserver2019-ps/activedirectory/Set-ADServiceAccount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adserviceaccount?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adserviceaccount?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADServiceAccount --- diff --git a/docset/winserver2019-ps/activedirectory/Set-ADUser.md b/docset/winserver2019-ps/activedirectory/Set-ADUser.md index 0cacd58ec7..7f5e16d12c 100644 --- a/docset/winserver2019-ps/activedirectory/Set-ADUser.md +++ b/docset/winserver2019-ps/activedirectory/Set-ADUser.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-aduser?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-aduser?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADUser --- diff --git a/docset/winserver2019-ps/activedirectory/Show-ADAuthenticationPolicyExpression.md b/docset/winserver2019-ps/activedirectory/Show-ADAuthenticationPolicyExpression.md index b837e80eae..049d3b0874 100644 --- a/docset/winserver2019-ps/activedirectory/Show-ADAuthenticationPolicyExpression.md +++ b/docset/winserver2019-ps/activedirectory/Show-ADAuthenticationPolicyExpression.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/show-adauthenticationpolicyexpression?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/show-adauthenticationpolicyexpression?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Show-ADAuthenticationPolicyExpression --- diff --git a/docset/winserver2019-ps/activedirectory/Sync-ADObject.md b/docset/winserver2019-ps/activedirectory/Sync-ADObject.md index 0440c2ced8..e1f7e60e09 100644 --- a/docset/winserver2019-ps/activedirectory/Sync-ADObject.md +++ b/docset/winserver2019-ps/activedirectory/Sync-ADObject.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/sync-adobject?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/sync-adobject?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Sync-ADObject --- diff --git a/docset/winserver2019-ps/activedirectory/Test-ADServiceAccount.md b/docset/winserver2019-ps/activedirectory/Test-ADServiceAccount.md index bd72b29ebc..b5eaaa7651 100644 --- a/docset/winserver2019-ps/activedirectory/Test-ADServiceAccount.md +++ b/docset/winserver2019-ps/activedirectory/Test-ADServiceAccount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/test-adserviceaccount?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/test-adserviceaccount?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-ADServiceAccount --- diff --git a/docset/winserver2019-ps/activedirectory/Uninstall-ADServiceAccount.md b/docset/winserver2019-ps/activedirectory/Uninstall-ADServiceAccount.md index 02a768aa61..8e0c818f2f 100644 --- a/docset/winserver2019-ps/activedirectory/Uninstall-ADServiceAccount.md +++ b/docset/winserver2019-ps/activedirectory/Uninstall-ADServiceAccount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/uninstall-adserviceaccount?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/uninstall-adserviceaccount?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-ADServiceAccount --- diff --git a/docset/winserver2019-ps/activedirectory/Unlock-ADAccount.md b/docset/winserver2019-ps/activedirectory/Unlock-ADAccount.md index 57840aff6c..2a596c31dd 100644 --- a/docset/winserver2019-ps/activedirectory/Unlock-ADAccount.md +++ b/docset/winserver2019-ps/activedirectory/Unlock-ADAccount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/unlock-adaccount?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/unlock-adaccount?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unlock-ADAccount --- diff --git a/docset/winserver2019-ps/adcsadministration/Add-CAAuthorityInformationAccess.md b/docset/winserver2019-ps/adcsadministration/Add-CAAuthorityInformationAccess.md index 871b457617..f8c977a669 100644 --- a/docset/winserver2019-ps/adcsadministration/Add-CAAuthorityInformationAccess.md +++ b/docset/winserver2019-ps/adcsadministration/Add-CAAuthorityInformationAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: ADCSAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsadministration/add-caauthorityinformationaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/add-caauthorityinformationaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-CAAuthorityInformationAccess --- diff --git a/docset/winserver2019-ps/adcsadministration/Add-CACrlDistributionPoint.md b/docset/winserver2019-ps/adcsadministration/Add-CACrlDistributionPoint.md index 0fdb2c7d5d..c1bcfb34a9 100644 --- a/docset/winserver2019-ps/adcsadministration/Add-CACrlDistributionPoint.md +++ b/docset/winserver2019-ps/adcsadministration/Add-CACrlDistributionPoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: ADCSAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsadministration/add-cacrldistributionpoint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/add-cacrldistributionpoint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-CACrlDistributionPoint --- diff --git a/docset/winserver2019-ps/adcsadministration/Add-CATemplate.md b/docset/winserver2019-ps/adcsadministration/Add-CATemplate.md index 425d7acba8..0cb77b4cf6 100644 --- a/docset/winserver2019-ps/adcsadministration/Add-CATemplate.md +++ b/docset/winserver2019-ps/adcsadministration/Add-CATemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: ADCSAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsadministration/add-catemplate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/add-catemplate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-CATemplate --- diff --git a/docset/winserver2019-ps/adcsadministration/Backup-CARoleService.md b/docset/winserver2019-ps/adcsadministration/Backup-CARoleService.md index 31f1916945..71324a563d 100644 --- a/docset/winserver2019-ps/adcsadministration/Backup-CARoleService.md +++ b/docset/winserver2019-ps/adcsadministration/Backup-CARoleService.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: ADCSAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsadministration/backup-caroleservice?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/backup-caroleservice?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Backup-CARoleService --- diff --git a/docset/winserver2019-ps/adcsadministration/Confirm-CAEndorsementKeyInfo.md b/docset/winserver2019-ps/adcsadministration/Confirm-CAEndorsementKeyInfo.md index a77913ece4..fa5d139caa 100644 --- a/docset/winserver2019-ps/adcsadministration/Confirm-CAEndorsementKeyInfo.md +++ b/docset/winserver2019-ps/adcsadministration/Confirm-CAEndorsementKeyInfo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: ADCSAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsadministration/confirm-caendorsementkeyinfo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/confirm-caendorsementkeyinfo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Confirm-CAEndorsementKeyInfo --- diff --git a/docset/winserver2019-ps/adcsadministration/Get-CAAuthorityInformationAccess.md b/docset/winserver2019-ps/adcsadministration/Get-CAAuthorityInformationAccess.md index 89a5f129c1..687846feb4 100644 --- a/docset/winserver2019-ps/adcsadministration/Get-CAAuthorityInformationAccess.md +++ b/docset/winserver2019-ps/adcsadministration/Get-CAAuthorityInformationAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: ADCSAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsadministration/get-caauthorityinformationaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/get-caauthorityinformationaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CAAuthorityInformationAccess --- diff --git a/docset/winserver2019-ps/adcsadministration/Get-CACrlDistributionPoint.md b/docset/winserver2019-ps/adcsadministration/Get-CACrlDistributionPoint.md index 22cfb39d42..f87b7033ce 100644 --- a/docset/winserver2019-ps/adcsadministration/Get-CACrlDistributionPoint.md +++ b/docset/winserver2019-ps/adcsadministration/Get-CACrlDistributionPoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: ADCSAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsadministration/get-cacrldistributionpoint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/get-cacrldistributionpoint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CACrlDistributionPoint --- diff --git a/docset/winserver2019-ps/adcsadministration/Get-CATemplate.md b/docset/winserver2019-ps/adcsadministration/Get-CATemplate.md index 0d9478505c..f8d99a64a8 100644 --- a/docset/winserver2019-ps/adcsadministration/Get-CATemplate.md +++ b/docset/winserver2019-ps/adcsadministration/Get-CATemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: ADCSAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsadministration/get-catemplate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/get-catemplate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CATemplate --- diff --git a/docset/winserver2019-ps/adcsadministration/Remove-CAAuthorityInformationAccess.md b/docset/winserver2019-ps/adcsadministration/Remove-CAAuthorityInformationAccess.md index c1c08bddaf..c551da59db 100644 --- a/docset/winserver2019-ps/adcsadministration/Remove-CAAuthorityInformationAccess.md +++ b/docset/winserver2019-ps/adcsadministration/Remove-CAAuthorityInformationAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: ADCSAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsadministration/remove-caauthorityinformationaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/remove-caauthorityinformationaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-CAAuthorityInformationAccess --- diff --git a/docset/winserver2019-ps/adcsadministration/Remove-CACrlDistributionPoint.md b/docset/winserver2019-ps/adcsadministration/Remove-CACrlDistributionPoint.md index 2056f05c06..1e5e1920a5 100644 --- a/docset/winserver2019-ps/adcsadministration/Remove-CACrlDistributionPoint.md +++ b/docset/winserver2019-ps/adcsadministration/Remove-CACrlDistributionPoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: ADCSAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsadministration/remove-cacrldistributionpoint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/remove-cacrldistributionpoint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-CACrlDistributionPoint --- diff --git a/docset/winserver2019-ps/adcsadministration/Remove-CATemplate.md b/docset/winserver2019-ps/adcsadministration/Remove-CATemplate.md index 5628f9ddce..021973438a 100644 --- a/docset/winserver2019-ps/adcsadministration/Remove-CATemplate.md +++ b/docset/winserver2019-ps/adcsadministration/Remove-CATemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: ADCSAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsadministration/remove-catemplate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/remove-catemplate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-CATemplate --- diff --git a/docset/winserver2019-ps/adcsadministration/Restore-CARoleService.md b/docset/winserver2019-ps/adcsadministration/Restore-CARoleService.md index 0ac1ecd139..bf66cd1626 100644 --- a/docset/winserver2019-ps/adcsadministration/Restore-CARoleService.md +++ b/docset/winserver2019-ps/adcsadministration/Restore-CARoleService.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: ADCSAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsadministration/restore-caroleservice?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/restore-caroleservice?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-CARoleService --- diff --git a/docset/winserver2019-ps/adcsdeployment/Install-AdcsCertificationAuthority.md b/docset/winserver2019-ps/adcsdeployment/Install-AdcsCertificationAuthority.md index ba564327df..d17f2ecd2b 100644 --- a/docset/winserver2019-ps/adcsdeployment/Install-AdcsCertificationAuthority.md +++ b/docset/winserver2019-ps/adcsdeployment/Install-AdcsCertificationAuthority.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: ADCSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/install-adcscertificationauthority?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/install-adcscertificationauthority?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-AdcsCertificationAuthority --- diff --git a/docset/winserver2019-ps/adcsdeployment/Install-AdcsEnrollmentPolicyWebService.md b/docset/winserver2019-ps/adcsdeployment/Install-AdcsEnrollmentPolicyWebService.md index b8d9439bd2..0563d0a184 100644 --- a/docset/winserver2019-ps/adcsdeployment/Install-AdcsEnrollmentPolicyWebService.md +++ b/docset/winserver2019-ps/adcsdeployment/Install-AdcsEnrollmentPolicyWebService.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: ADCSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/install-adcsenrollmentpolicywebservice?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/install-adcsenrollmentpolicywebservice?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-AdcsEnrollmentPolicyWebService --- diff --git a/docset/winserver2019-ps/adcsdeployment/Install-AdcsEnrollmentWebService.md b/docset/winserver2019-ps/adcsdeployment/Install-AdcsEnrollmentWebService.md index 37875034d9..91d804caad 100644 --- a/docset/winserver2019-ps/adcsdeployment/Install-AdcsEnrollmentWebService.md +++ b/docset/winserver2019-ps/adcsdeployment/Install-AdcsEnrollmentWebService.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: ADCSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/install-adcsenrollmentwebservice?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/install-adcsenrollmentwebservice?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-AdcsEnrollmentWebService --- diff --git a/docset/winserver2019-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md b/docset/winserver2019-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md index fef3c05edf..b9661cb06f 100644 --- a/docset/winserver2019-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md +++ b/docset/winserver2019-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: ADCSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/install-adcsnetworkdeviceenrollmentservice?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/install-adcsnetworkdeviceenrollmentservice?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-AdcsNetworkDeviceEnrollmentService --- diff --git a/docset/winserver2019-ps/adcsdeployment/Install-AdcsOnlineResponder.md b/docset/winserver2019-ps/adcsdeployment/Install-AdcsOnlineResponder.md index 675c53a487..f96ab9c982 100644 --- a/docset/winserver2019-ps/adcsdeployment/Install-AdcsOnlineResponder.md +++ b/docset/winserver2019-ps/adcsdeployment/Install-AdcsOnlineResponder.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: ADCSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/install-adcsonlineresponder?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/install-adcsonlineresponder?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-AdcsOnlineResponder --- diff --git a/docset/winserver2019-ps/adcsdeployment/Install-AdcsWebEnrollment.md b/docset/winserver2019-ps/adcsdeployment/Install-AdcsWebEnrollment.md index 3ad1544680..f272ff29ae 100644 --- a/docset/winserver2019-ps/adcsdeployment/Install-AdcsWebEnrollment.md +++ b/docset/winserver2019-ps/adcsdeployment/Install-AdcsWebEnrollment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: ADCSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/install-adcswebenrollment?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/install-adcswebenrollment?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-AdcsWebEnrollment --- diff --git a/docset/winserver2019-ps/adcsdeployment/Uninstall-AdcsCertificationAuthority.md b/docset/winserver2019-ps/adcsdeployment/Uninstall-AdcsCertificationAuthority.md index a63a4030af..fefbf0b653 100644 --- a/docset/winserver2019-ps/adcsdeployment/Uninstall-AdcsCertificationAuthority.md +++ b/docset/winserver2019-ps/adcsdeployment/Uninstall-AdcsCertificationAuthority.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: ADCSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/uninstall-adcscertificationauthority?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/uninstall-adcscertificationauthority?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-AdcsCertificationAuthority --- diff --git a/docset/winserver2019-ps/adcsdeployment/Uninstall-AdcsEnrollmentPolicyWebService.md b/docset/winserver2019-ps/adcsdeployment/Uninstall-AdcsEnrollmentPolicyWebService.md index aa004c3de9..5ed3c9a2e2 100644 --- a/docset/winserver2019-ps/adcsdeployment/Uninstall-AdcsEnrollmentPolicyWebService.md +++ b/docset/winserver2019-ps/adcsdeployment/Uninstall-AdcsEnrollmentPolicyWebService.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: ADCSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/uninstall-adcsenrollmentpolicywebservice?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/uninstall-adcsenrollmentpolicywebservice?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-AdcsEnrollmentPolicyWebService --- diff --git a/docset/winserver2019-ps/adcsdeployment/Uninstall-AdcsEnrollmentWebService.md b/docset/winserver2019-ps/adcsdeployment/Uninstall-AdcsEnrollmentWebService.md index ec8cd3eb7e..f2f4ca0443 100644 --- a/docset/winserver2019-ps/adcsdeployment/Uninstall-AdcsEnrollmentWebService.md +++ b/docset/winserver2019-ps/adcsdeployment/Uninstall-AdcsEnrollmentWebService.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: ADCSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/uninstall-adcsenrollmentwebservice?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/uninstall-adcsenrollmentwebservice?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-AdcsEnrollmentWebService --- diff --git a/docset/winserver2019-ps/adcsdeployment/Uninstall-AdcsNetworkDeviceEnrollmentService.md b/docset/winserver2019-ps/adcsdeployment/Uninstall-AdcsNetworkDeviceEnrollmentService.md index c5e702c831..1f5f5a14de 100644 --- a/docset/winserver2019-ps/adcsdeployment/Uninstall-AdcsNetworkDeviceEnrollmentService.md +++ b/docset/winserver2019-ps/adcsdeployment/Uninstall-AdcsNetworkDeviceEnrollmentService.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: ADCSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/uninstall-adcsnetworkdeviceenrollmentservice?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/uninstall-adcsnetworkdeviceenrollmentservice?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-AdcsNetworkDeviceEnrollmentService --- diff --git a/docset/winserver2019-ps/adcsdeployment/Uninstall-AdcsOnlineResponder.md b/docset/winserver2019-ps/adcsdeployment/Uninstall-AdcsOnlineResponder.md index 3645f459f2..d6ebd16992 100644 --- a/docset/winserver2019-ps/adcsdeployment/Uninstall-AdcsOnlineResponder.md +++ b/docset/winserver2019-ps/adcsdeployment/Uninstall-AdcsOnlineResponder.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: ADCSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/uninstall-adcsonlineresponder?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/uninstall-adcsonlineresponder?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-AdcsOnlineResponder --- diff --git a/docset/winserver2019-ps/adcsdeployment/Uninstall-AdcsWebEnrollment.md b/docset/winserver2019-ps/adcsdeployment/Uninstall-AdcsWebEnrollment.md index 0ffe6846a1..81af5c3b11 100644 --- a/docset/winserver2019-ps/adcsdeployment/Uninstall-AdcsWebEnrollment.md +++ b/docset/winserver2019-ps/adcsdeployment/Uninstall-AdcsWebEnrollment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: ADCSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/uninstall-adcswebenrollment?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/uninstall-adcswebenrollment?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-AdcsWebEnrollment --- diff --git a/docset/winserver2019-ps/addsdeployment/Add-ADDSReadOnlyDomainControllerAccount.md b/docset/winserver2019-ps/addsdeployment/Add-ADDSReadOnlyDomainControllerAccount.md index b84eb96dae..2d938310dd 100644 --- a/docset/winserver2019-ps/addsdeployment/Add-ADDSReadOnlyDomainControllerAccount.md +++ b/docset/winserver2019-ps/addsdeployment/Add-ADDSReadOnlyDomainControllerAccount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.DirectoryServices.Deployment.dll-Help.xml Module Name: ADDSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/addsdeployment/add-addsreadonlydomaincontrolleraccount?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/addsdeployment/add-addsreadonlydomaincontrolleraccount?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ADDSReadOnlyDomainControllerAccount --- diff --git a/docset/winserver2019-ps/addsdeployment/Install-ADDSDomain.md b/docset/winserver2019-ps/addsdeployment/Install-ADDSDomain.md index 0430d10faf..02480bfc89 100644 --- a/docset/winserver2019-ps/addsdeployment/Install-ADDSDomain.md +++ b/docset/winserver2019-ps/addsdeployment/Install-ADDSDomain.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.DirectoryServices.Deployment.dll-Help.xml Module Name: ADDSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/addsdeployment/install-addsdomain?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/addsdeployment/install-addsdomain?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-ADDSDomain --- diff --git a/docset/winserver2019-ps/addsdeployment/Install-ADDSDomainController.md b/docset/winserver2019-ps/addsdeployment/Install-ADDSDomainController.md index d1fcef6296..585bc8da2f 100644 --- a/docset/winserver2019-ps/addsdeployment/Install-ADDSDomainController.md +++ b/docset/winserver2019-ps/addsdeployment/Install-ADDSDomainController.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.DirectoryServices.Deployment.dll-Help.xml Module Name: ADDSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/addsdeployment/install-addsdomaincontroller?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/addsdeployment/install-addsdomaincontroller?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-ADDSDomainController --- diff --git a/docset/winserver2019-ps/addsdeployment/Install-ADDSForest.md b/docset/winserver2019-ps/addsdeployment/Install-ADDSForest.md index 3dc6c78516..35bdc8295d 100644 --- a/docset/winserver2019-ps/addsdeployment/Install-ADDSForest.md +++ b/docset/winserver2019-ps/addsdeployment/Install-ADDSForest.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.DirectoryServices.Deployment.dll-Help.xml Module Name: ADDSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/addsdeployment/install-addsforest?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/addsdeployment/install-addsforest?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-ADDSForest --- diff --git a/docset/winserver2019-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md b/docset/winserver2019-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md index f092f8e2c6..e93c8c90b4 100644 --- a/docset/winserver2019-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md +++ b/docset/winserver2019-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.DirectoryServices.Deployment.dll-Help.xml Module Name: ADDSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/addsdeployment/test-addsdomaincontrollerinstallation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/addsdeployment/test-addsdomaincontrollerinstallation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-ADDSDomainControllerInstallation --- diff --git a/docset/winserver2019-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md b/docset/winserver2019-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md index f440eab491..94e9591f99 100644 --- a/docset/winserver2019-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md +++ b/docset/winserver2019-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.DirectoryServices.Deployment.dll-Help.xml Module Name: ADDSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/addsdeployment/test-addsdomaincontrolleruninstallation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/addsdeployment/test-addsdomaincontrolleruninstallation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-ADDSDomainControllerUninstallation --- diff --git a/docset/winserver2019-ps/addsdeployment/Test-ADDSDomainInstallation.md b/docset/winserver2019-ps/addsdeployment/Test-ADDSDomainInstallation.md index 235976c5ea..a718249fd6 100644 --- a/docset/winserver2019-ps/addsdeployment/Test-ADDSDomainInstallation.md +++ b/docset/winserver2019-ps/addsdeployment/Test-ADDSDomainInstallation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.DirectoryServices.Deployment.dll-Help.xml Module Name: ADDSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/addsdeployment/test-addsdomaininstallation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/addsdeployment/test-addsdomaininstallation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-ADDSDomainInstallation --- diff --git a/docset/winserver2019-ps/addsdeployment/Test-ADDSForestInstallation.md b/docset/winserver2019-ps/addsdeployment/Test-ADDSForestInstallation.md index 4de367226d..87d836ce25 100644 --- a/docset/winserver2019-ps/addsdeployment/Test-ADDSForestInstallation.md +++ b/docset/winserver2019-ps/addsdeployment/Test-ADDSForestInstallation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.DirectoryServices.Deployment.dll-Help.xml Module Name: ADDSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/addsdeployment/test-addsforestinstallation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/addsdeployment/test-addsforestinstallation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-ADDSForestInstallation --- diff --git a/docset/winserver2019-ps/addsdeployment/Test-ADDSReadOnlyDomainControllerAccountCreation.md b/docset/winserver2019-ps/addsdeployment/Test-ADDSReadOnlyDomainControllerAccountCreation.md index 95ae0f94d8..7b8a65924b 100644 --- a/docset/winserver2019-ps/addsdeployment/Test-ADDSReadOnlyDomainControllerAccountCreation.md +++ b/docset/winserver2019-ps/addsdeployment/Test-ADDSReadOnlyDomainControllerAccountCreation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.DirectoryServices.Deployment.dll-Help.xml Module Name: ADDSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/addsdeployment/test-addsreadonlydomaincontrolleraccountcreation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/addsdeployment/test-addsreadonlydomaincontrolleraccountcreation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-ADDSReadOnlyDomainControllerAccountCreation --- diff --git a/docset/winserver2019-ps/addsdeployment/Uninstall-ADDSDomainController.md b/docset/winserver2019-ps/addsdeployment/Uninstall-ADDSDomainController.md index fe96f30429..e85dada666 100644 --- a/docset/winserver2019-ps/addsdeployment/Uninstall-ADDSDomainController.md +++ b/docset/winserver2019-ps/addsdeployment/Uninstall-ADDSDomainController.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.DirectoryServices.Deployment.dll-Help.xml Module Name: ADDSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/addsdeployment/uninstall-addsdomaincontroller?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/addsdeployment/uninstall-addsdomaincontroller?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-ADDSDomainController --- diff --git a/docset/winserver2019-ps/adfs/Add-AdfsAttributeStore.md b/docset/winserver2019-ps/adfs/Add-AdfsAttributeStore.md index 65b5f6f479..17d847ce74 100644 --- a/docset/winserver2019-ps/adfs/Add-AdfsAttributeStore.md +++ b/docset/winserver2019-ps/adfs/Add-AdfsAttributeStore.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfsattributestore?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfsattributestore?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsAttributeStore --- diff --git a/docset/winserver2019-ps/adfs/Add-AdfsCertificate.md b/docset/winserver2019-ps/adfs/Add-AdfsCertificate.md index d931e9fcc5..0761bf71e9 100644 --- a/docset/winserver2019-ps/adfs/Add-AdfsCertificate.md +++ b/docset/winserver2019-ps/adfs/Add-AdfsCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfscertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfscertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsCertificate --- diff --git a/docset/winserver2019-ps/adfs/Add-AdfsClaimDescription.md b/docset/winserver2019-ps/adfs/Add-AdfsClaimDescription.md index 88c7a2f287..546ff9481b 100644 --- a/docset/winserver2019-ps/adfs/Add-AdfsClaimDescription.md +++ b/docset/winserver2019-ps/adfs/Add-AdfsClaimDescription.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfsclaimdescription?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfsclaimdescription?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsClaimDescription --- diff --git a/docset/winserver2019-ps/adfs/Add-AdfsClaimsProviderTrust.md b/docset/winserver2019-ps/adfs/Add-AdfsClaimsProviderTrust.md index 257b020afc..be6eaa8cf9 100644 --- a/docset/winserver2019-ps/adfs/Add-AdfsClaimsProviderTrust.md +++ b/docset/winserver2019-ps/adfs/Add-AdfsClaimsProviderTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfsclaimsprovidertrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfsclaimsprovidertrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsClaimsProviderTrust --- diff --git a/docset/winserver2019-ps/adfs/Add-AdfsClaimsProviderTrustsGroup.md b/docset/winserver2019-ps/adfs/Add-AdfsClaimsProviderTrustsGroup.md index 4f5856ed2d..5f51eab98b 100644 --- a/docset/winserver2019-ps/adfs/Add-AdfsClaimsProviderTrustsGroup.md +++ b/docset/winserver2019-ps/adfs/Add-AdfsClaimsProviderTrustsGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfsclaimsprovidertrustsgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfsclaimsprovidertrustsgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsClaimsProviderTrustsGroup --- diff --git a/docset/winserver2019-ps/adfs/Add-AdfsClient.md b/docset/winserver2019-ps/adfs/Add-AdfsClient.md index 10bc8e9ef8..000b9f7e63 100644 --- a/docset/winserver2019-ps/adfs/Add-AdfsClient.md +++ b/docset/winserver2019-ps/adfs/Add-AdfsClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 09/19/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfsclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfsclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsClient --- diff --git a/docset/winserver2019-ps/adfs/Add-AdfsDeviceRegistrationUpnSuffix.md b/docset/winserver2019-ps/adfs/Add-AdfsDeviceRegistrationUpnSuffix.md index c21c293e7d..6a1f0f5d88 100644 --- a/docset/winserver2019-ps/adfs/Add-AdfsDeviceRegistrationUpnSuffix.md +++ b/docset/winserver2019-ps/adfs/Add-AdfsDeviceRegistrationUpnSuffix.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfsdeviceregistrationupnsuffix?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfsdeviceregistrationupnsuffix?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsDeviceRegistrationUpnSuffix --- diff --git a/docset/winserver2019-ps/adfs/Add-AdfsFarmNode.md b/docset/winserver2019-ps/adfs/Add-AdfsFarmNode.md index d5d554709e..6a272b530e 100644 --- a/docset/winserver2019-ps/adfs/Add-AdfsFarmNode.md +++ b/docset/winserver2019-ps/adfs/Add-AdfsFarmNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Deployment.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfsfarmnode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfsfarmnode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsFarmNode --- diff --git a/docset/winserver2019-ps/adfs/Add-AdfsLocalClaimsProviderTrust.md b/docset/winserver2019-ps/adfs/Add-AdfsLocalClaimsProviderTrust.md index 06a004b6e4..6664028a00 100644 --- a/docset/winserver2019-ps/adfs/Add-AdfsLocalClaimsProviderTrust.md +++ b/docset/winserver2019-ps/adfs/Add-AdfsLocalClaimsProviderTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfslocalclaimsprovidertrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfslocalclaimsprovidertrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsLocalClaimsProviderTrust --- diff --git a/docset/winserver2019-ps/adfs/Add-AdfsNativeClientApplication.md b/docset/winserver2019-ps/adfs/Add-AdfsNativeClientApplication.md index c21c821d4e..143fb5a4e9 100644 --- a/docset/winserver2019-ps/adfs/Add-AdfsNativeClientApplication.md +++ b/docset/winserver2019-ps/adfs/Add-AdfsNativeClientApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 09/19/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfsnativeclientapplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfsnativeclientapplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsNativeClientApplication --- diff --git a/docset/winserver2019-ps/adfs/Add-AdfsNonClaimsAwareRelyingPartyTrust.md b/docset/winserver2019-ps/adfs/Add-AdfsNonClaimsAwareRelyingPartyTrust.md index e262966425..85fe74ea68 100644 --- a/docset/winserver2019-ps/adfs/Add-AdfsNonClaimsAwareRelyingPartyTrust.md +++ b/docset/winserver2019-ps/adfs/Add-AdfsNonClaimsAwareRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfsnonclaimsawarerelyingpartytrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfsnonclaimsawarerelyingpartytrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsNonClaimsAwareRelyingPartyTrust --- diff --git a/docset/winserver2019-ps/adfs/Add-AdfsRelyingPartyTrust.md b/docset/winserver2019-ps/adfs/Add-AdfsRelyingPartyTrust.md index 067987708e..109a57c15e 100644 --- a/docset/winserver2019-ps/adfs/Add-AdfsRelyingPartyTrust.md +++ b/docset/winserver2019-ps/adfs/Add-AdfsRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfsrelyingpartytrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfsrelyingpartytrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsRelyingPartyTrust --- diff --git a/docset/winserver2019-ps/adfs/Add-AdfsRelyingPartyTrustsGroup.md b/docset/winserver2019-ps/adfs/Add-AdfsRelyingPartyTrustsGroup.md index e444ad27cb..46601842c5 100644 --- a/docset/winserver2019-ps/adfs/Add-AdfsRelyingPartyTrustsGroup.md +++ b/docset/winserver2019-ps/adfs/Add-AdfsRelyingPartyTrustsGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfsrelyingpartytrustsgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfsrelyingpartytrustsgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsRelyingPartyTrustsGroup --- diff --git a/docset/winserver2019-ps/adfs/Add-AdfsScopeDescription.md b/docset/winserver2019-ps/adfs/Add-AdfsScopeDescription.md index cdd7b0171d..6385ce118f 100644 --- a/docset/winserver2019-ps/adfs/Add-AdfsScopeDescription.md +++ b/docset/winserver2019-ps/adfs/Add-AdfsScopeDescription.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfsscopedescription?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfsscopedescription?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsScopeDescription --- diff --git a/docset/winserver2019-ps/adfs/Add-AdfsServerApplication.md b/docset/winserver2019-ps/adfs/Add-AdfsServerApplication.md index a0bd05cae5..c0a4460fc6 100644 --- a/docset/winserver2019-ps/adfs/Add-AdfsServerApplication.md +++ b/docset/winserver2019-ps/adfs/Add-AdfsServerApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 09/19/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfsserverapplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfsserverapplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsServerApplication --- diff --git a/docset/winserver2019-ps/adfs/Add-AdfsTrustedFederationPartner.md b/docset/winserver2019-ps/adfs/Add-AdfsTrustedFederationPartner.md index bbddb20fce..018fd4fbe3 100644 --- a/docset/winserver2019-ps/adfs/Add-AdfsTrustedFederationPartner.md +++ b/docset/winserver2019-ps/adfs/Add-AdfsTrustedFederationPartner.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfstrustedfederationpartner?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfstrustedfederationpartner?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsTrustedFederationPartner --- diff --git a/docset/winserver2019-ps/adfs/Add-AdfsWebApiApplication.md b/docset/winserver2019-ps/adfs/Add-AdfsWebApiApplication.md index 3f7886eb3f..5f0c5dbd39 100644 --- a/docset/winserver2019-ps/adfs/Add-AdfsWebApiApplication.md +++ b/docset/winserver2019-ps/adfs/Add-AdfsWebApiApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfswebapiapplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfswebapiapplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsWebApiApplication --- diff --git a/docset/winserver2019-ps/adfs/Add-AdfsWebApplicationProxyRelyingPartyTrust.md b/docset/winserver2019-ps/adfs/Add-AdfsWebApplicationProxyRelyingPartyTrust.md index fc9e575318..27517b646c 100644 --- a/docset/winserver2019-ps/adfs/Add-AdfsWebApplicationProxyRelyingPartyTrust.md +++ b/docset/winserver2019-ps/adfs/Add-AdfsWebApplicationProxyRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfswebapplicationproxyrelyingpartytrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfswebapplicationproxyrelyingpartytrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsWebApplicationProxyRelyingPartyTrust --- diff --git a/docset/winserver2019-ps/adfs/Disable-AdfsApplicationGroup.md b/docset/winserver2019-ps/adfs/Disable-AdfsApplicationGroup.md index 47e628389e..0bae8a078e 100644 --- a/docset/winserver2019-ps/adfs/Disable-AdfsApplicationGroup.md +++ b/docset/winserver2019-ps/adfs/Disable-AdfsApplicationGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/disable-adfsapplicationgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/disable-adfsapplicationgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-AdfsApplicationGroup --- diff --git a/docset/winserver2019-ps/adfs/Disable-AdfsCertificateAuthority.md b/docset/winserver2019-ps/adfs/Disable-AdfsCertificateAuthority.md index e1f0096614..2070d2dbe8 100644 --- a/docset/winserver2019-ps/adfs/Disable-AdfsCertificateAuthority.md +++ b/docset/winserver2019-ps/adfs/Disable-AdfsCertificateAuthority.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/disable-adfscertificateauthority?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/disable-adfscertificateauthority?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-AdfsCertificateAuthority --- diff --git a/docset/winserver2019-ps/adfs/Disable-AdfsClaimsProviderTrust.md b/docset/winserver2019-ps/adfs/Disable-AdfsClaimsProviderTrust.md index cfb640528a..351ed5117d 100644 --- a/docset/winserver2019-ps/adfs/Disable-AdfsClaimsProviderTrust.md +++ b/docset/winserver2019-ps/adfs/Disable-AdfsClaimsProviderTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/disable-adfsclaimsprovidertrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/disable-adfsclaimsprovidertrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-AdfsClaimsProviderTrust --- diff --git a/docset/winserver2019-ps/adfs/Disable-AdfsClient.md b/docset/winserver2019-ps/adfs/Disable-AdfsClient.md index 63d28c02a2..4a16a0c845 100644 --- a/docset/winserver2019-ps/adfs/Disable-AdfsClient.md +++ b/docset/winserver2019-ps/adfs/Disable-AdfsClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/disable-adfsclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/disable-adfsclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-AdfsClient --- diff --git a/docset/winserver2019-ps/adfs/Disable-AdfsDeviceRegistration.md b/docset/winserver2019-ps/adfs/Disable-AdfsDeviceRegistration.md index 386facc687..4fe2f3deb8 100644 --- a/docset/winserver2019-ps/adfs/Disable-AdfsDeviceRegistration.md +++ b/docset/winserver2019-ps/adfs/Disable-AdfsDeviceRegistration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Deployment.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/disable-adfsdeviceregistration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/disable-adfsdeviceregistration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-AdfsDeviceRegistration --- diff --git a/docset/winserver2019-ps/adfs/Disable-AdfsEndpoint.md b/docset/winserver2019-ps/adfs/Disable-AdfsEndpoint.md index 6baea9cf06..8b18861f31 100644 --- a/docset/winserver2019-ps/adfs/Disable-AdfsEndpoint.md +++ b/docset/winserver2019-ps/adfs/Disable-AdfsEndpoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/disable-adfsendpoint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/disable-adfsendpoint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-AdfsEndpoint --- diff --git a/docset/winserver2019-ps/adfs/Disable-AdfsLocalClaimsProviderTrust.md b/docset/winserver2019-ps/adfs/Disable-AdfsLocalClaimsProviderTrust.md index 7bdf66e033..cb1e82ed56 100644 --- a/docset/winserver2019-ps/adfs/Disable-AdfsLocalClaimsProviderTrust.md +++ b/docset/winserver2019-ps/adfs/Disable-AdfsLocalClaimsProviderTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/disable-adfslocalclaimsprovidertrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/disable-adfslocalclaimsprovidertrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-AdfsLocalClaimsProviderTrust --- diff --git a/docset/winserver2019-ps/adfs/Disable-AdfsNonClaimsAwareRelyingPartyTrust.md b/docset/winserver2019-ps/adfs/Disable-AdfsNonClaimsAwareRelyingPartyTrust.md index 7b5d68957b..b5ccc99acb 100644 --- a/docset/winserver2019-ps/adfs/Disable-AdfsNonClaimsAwareRelyingPartyTrust.md +++ b/docset/winserver2019-ps/adfs/Disable-AdfsNonClaimsAwareRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/disable-adfsnonclaimsawarerelyingpartytrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/disable-adfsnonclaimsawarerelyingpartytrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-AdfsNonClaimsAwareRelyingPartyTrust --- diff --git a/docset/winserver2019-ps/adfs/Disable-AdfsRelyingPartyTrust.md b/docset/winserver2019-ps/adfs/Disable-AdfsRelyingPartyTrust.md index 43291a1de4..45ddb9ec50 100644 --- a/docset/winserver2019-ps/adfs/Disable-AdfsRelyingPartyTrust.md +++ b/docset/winserver2019-ps/adfs/Disable-AdfsRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/disable-adfsrelyingpartytrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/disable-adfsrelyingpartytrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-AdfsRelyingPartyTrust --- diff --git a/docset/winserver2019-ps/adfs/Disable-AdfsWebApplicationProxyRelyingPartyTrust.md b/docset/winserver2019-ps/adfs/Disable-AdfsWebApplicationProxyRelyingPartyTrust.md index 19c28be4bd..9db40493f5 100644 --- a/docset/winserver2019-ps/adfs/Disable-AdfsWebApplicationProxyRelyingPartyTrust.md +++ b/docset/winserver2019-ps/adfs/Disable-AdfsWebApplicationProxyRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/disable-adfswebapplicationproxyrelyingpartytrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/disable-adfswebapplicationproxyrelyingpartytrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-AdfsWebApplicationProxyRelyingPartyTrust --- diff --git a/docset/winserver2019-ps/adfs/Enable-AdfsApplicationGroup.md b/docset/winserver2019-ps/adfs/Enable-AdfsApplicationGroup.md index 510bc07610..0032bd0021 100644 --- a/docset/winserver2019-ps/adfs/Enable-AdfsApplicationGroup.md +++ b/docset/winserver2019-ps/adfs/Enable-AdfsApplicationGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/enable-adfsapplicationgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/enable-adfsapplicationgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-AdfsApplicationGroup --- diff --git a/docset/winserver2019-ps/adfs/Enable-AdfsClaimsProviderTrust.md b/docset/winserver2019-ps/adfs/Enable-AdfsClaimsProviderTrust.md index 3efdb3fa13..8a56165ade 100644 --- a/docset/winserver2019-ps/adfs/Enable-AdfsClaimsProviderTrust.md +++ b/docset/winserver2019-ps/adfs/Enable-AdfsClaimsProviderTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/enable-adfsclaimsprovidertrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/enable-adfsclaimsprovidertrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-AdfsClaimsProviderTrust --- diff --git a/docset/winserver2019-ps/adfs/Enable-AdfsClient.md b/docset/winserver2019-ps/adfs/Enable-AdfsClient.md index 261e39af96..d8e35c6b01 100644 --- a/docset/winserver2019-ps/adfs/Enable-AdfsClient.md +++ b/docset/winserver2019-ps/adfs/Enable-AdfsClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/enable-adfsclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/enable-adfsclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-AdfsClient --- diff --git a/docset/winserver2019-ps/adfs/Enable-AdfsDeviceRegistration.md b/docset/winserver2019-ps/adfs/Enable-AdfsDeviceRegistration.md index 9a7a9c9380..a380e02941 100644 --- a/docset/winserver2019-ps/adfs/Enable-AdfsDeviceRegistration.md +++ b/docset/winserver2019-ps/adfs/Enable-AdfsDeviceRegistration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Deployment.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/enable-adfsdeviceregistration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/enable-adfsdeviceregistration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-AdfsDeviceRegistration --- diff --git a/docset/winserver2019-ps/adfs/Enable-AdfsEndpoint.md b/docset/winserver2019-ps/adfs/Enable-AdfsEndpoint.md index 559fb24848..cb3b191e82 100644 --- a/docset/winserver2019-ps/adfs/Enable-AdfsEndpoint.md +++ b/docset/winserver2019-ps/adfs/Enable-AdfsEndpoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/enable-adfsendpoint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/enable-adfsendpoint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-AdfsEndpoint --- diff --git a/docset/winserver2019-ps/adfs/Enable-AdfsLocalClaimsProviderTrust.md b/docset/winserver2019-ps/adfs/Enable-AdfsLocalClaimsProviderTrust.md index 5373609b5e..4dad1ab348 100644 --- a/docset/winserver2019-ps/adfs/Enable-AdfsLocalClaimsProviderTrust.md +++ b/docset/winserver2019-ps/adfs/Enable-AdfsLocalClaimsProviderTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/enable-adfslocalclaimsprovidertrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/enable-adfslocalclaimsprovidertrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-AdfsLocalClaimsProviderTrust --- diff --git a/docset/winserver2019-ps/adfs/Enable-AdfsNonClaimsAwareRelyingPartyTrust.md b/docset/winserver2019-ps/adfs/Enable-AdfsNonClaimsAwareRelyingPartyTrust.md index 28b4078210..d18efafcdb 100644 --- a/docset/winserver2019-ps/adfs/Enable-AdfsNonClaimsAwareRelyingPartyTrust.md +++ b/docset/winserver2019-ps/adfs/Enable-AdfsNonClaimsAwareRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/enable-adfsnonclaimsawarerelyingpartytrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/enable-adfsnonclaimsawarerelyingpartytrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-AdfsNonClaimsAwareRelyingPartyTrust --- diff --git a/docset/winserver2019-ps/adfs/Enable-AdfsRelyingPartyTrust.md b/docset/winserver2019-ps/adfs/Enable-AdfsRelyingPartyTrust.md index 2d39351d4e..dfec36631a 100644 --- a/docset/winserver2019-ps/adfs/Enable-AdfsRelyingPartyTrust.md +++ b/docset/winserver2019-ps/adfs/Enable-AdfsRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/enable-adfsrelyingpartytrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/enable-adfsrelyingpartytrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-AdfsRelyingPartyTrust --- diff --git a/docset/winserver2019-ps/adfs/Enable-AdfsWebApplicationProxyRelyingPartyTrust.md b/docset/winserver2019-ps/adfs/Enable-AdfsWebApplicationProxyRelyingPartyTrust.md index 4be6209019..9360981433 100644 --- a/docset/winserver2019-ps/adfs/Enable-AdfsWebApplicationProxyRelyingPartyTrust.md +++ b/docset/winserver2019-ps/adfs/Enable-AdfsWebApplicationProxyRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/enable-adfswebapplicationproxyrelyingpartytrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/enable-adfswebapplicationproxyrelyingpartytrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-AdfsWebApplicationProxyRelyingPartyTrust --- diff --git a/docset/winserver2019-ps/adfs/Export-AdfsAuthenticationProviderConfigurationData.md b/docset/winserver2019-ps/adfs/Export-AdfsAuthenticationProviderConfigurationData.md index 92303ec102..b0885dae1b 100644 --- a/docset/winserver2019-ps/adfs/Export-AdfsAuthenticationProviderConfigurationData.md +++ b/docset/winserver2019-ps/adfs/Export-AdfsAuthenticationProviderConfigurationData.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/export-adfsauthenticationproviderconfigurationdata?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/export-adfsauthenticationproviderconfigurationdata?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-AdfsAuthenticationProviderConfigurationData --- diff --git a/docset/winserver2019-ps/adfs/Export-AdfsDeploymentSQLScript.md b/docset/winserver2019-ps/adfs/Export-AdfsDeploymentSQLScript.md index 1e9438bfe1..a420f26fa5 100644 --- a/docset/winserver2019-ps/adfs/Export-AdfsDeploymentSQLScript.md +++ b/docset/winserver2019-ps/adfs/Export-AdfsDeploymentSQLScript.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Deployment.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/export-adfsdeploymentsqlscript?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/export-adfsdeploymentsqlscript?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-AdfsDeploymentSQLScript --- diff --git a/docset/winserver2019-ps/adfs/Export-AdfsWebContent.md b/docset/winserver2019-ps/adfs/Export-AdfsWebContent.md index eebc54124d..93725e9ee7 100644 --- a/docset/winserver2019-ps/adfs/Export-AdfsWebContent.md +++ b/docset/winserver2019-ps/adfs/Export-AdfsWebContent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/export-adfswebcontent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/export-adfswebcontent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-AdfsWebContent --- diff --git a/docset/winserver2019-ps/adfs/Export-AdfsWebTheme.md b/docset/winserver2019-ps/adfs/Export-AdfsWebTheme.md index a88d271535..01c5d60f18 100644 --- a/docset/winserver2019-ps/adfs/Export-AdfsWebTheme.md +++ b/docset/winserver2019-ps/adfs/Export-AdfsWebTheme.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/export-adfswebtheme?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/export-adfswebtheme?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-AdfsWebTheme --- diff --git a/docset/winserver2019-ps/adfs/Get-AdfsAccessControlPolicy.md b/docset/winserver2019-ps/adfs/Get-AdfsAccessControlPolicy.md index e88edd6b6f..b6ea92834d 100644 --- a/docset/winserver2019-ps/adfs/Get-AdfsAccessControlPolicy.md +++ b/docset/winserver2019-ps/adfs/Get-AdfsAccessControlPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsaccesscontrolpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsaccesscontrolpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsAccessControlPolicy --- diff --git a/docset/winserver2019-ps/adfs/Get-AdfsAdditionalAuthenticationRule.md b/docset/winserver2019-ps/adfs/Get-AdfsAdditionalAuthenticationRule.md index 08999f4a6f..a8c4d39096 100644 --- a/docset/winserver2019-ps/adfs/Get-AdfsAdditionalAuthenticationRule.md +++ b/docset/winserver2019-ps/adfs/Get-AdfsAdditionalAuthenticationRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsadditionalauthenticationrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsadditionalauthenticationrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsAdditionalAuthenticationRule --- diff --git a/docset/winserver2019-ps/adfs/Get-AdfsApplicationGroup.md b/docset/winserver2019-ps/adfs/Get-AdfsApplicationGroup.md index fabcb7bd80..98e153a739 100644 --- a/docset/winserver2019-ps/adfs/Get-AdfsApplicationGroup.md +++ b/docset/winserver2019-ps/adfs/Get-AdfsApplicationGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsapplicationgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsapplicationgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsApplicationGroup --- diff --git a/docset/winserver2019-ps/adfs/Get-AdfsApplicationPermission.md b/docset/winserver2019-ps/adfs/Get-AdfsApplicationPermission.md index 8f2ff52567..7bb6f8f2e1 100644 --- a/docset/winserver2019-ps/adfs/Get-AdfsApplicationPermission.md +++ b/docset/winserver2019-ps/adfs/Get-AdfsApplicationPermission.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsapplicationpermission?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsapplicationpermission?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsApplicationPermission --- diff --git a/docset/winserver2019-ps/adfs/Get-AdfsAttributeStore.md b/docset/winserver2019-ps/adfs/Get-AdfsAttributeStore.md index e0e474ffcc..a8616df722 100644 --- a/docset/winserver2019-ps/adfs/Get-AdfsAttributeStore.md +++ b/docset/winserver2019-ps/adfs/Get-AdfsAttributeStore.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsattributestore?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsattributestore?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsAttributeStore --- diff --git a/docset/winserver2019-ps/adfs/Get-AdfsAuthenticationProvider.md b/docset/winserver2019-ps/adfs/Get-AdfsAuthenticationProvider.md index 62143c9350..279bd94c86 100644 --- a/docset/winserver2019-ps/adfs/Get-AdfsAuthenticationProvider.md +++ b/docset/winserver2019-ps/adfs/Get-AdfsAuthenticationProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsauthenticationprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsauthenticationprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsAuthenticationProvider --- diff --git a/docset/winserver2019-ps/adfs/Get-AdfsAuthenticationProviderWebContent.md b/docset/winserver2019-ps/adfs/Get-AdfsAuthenticationProviderWebContent.md index 4ccc04692e..caafcf7f2f 100644 --- a/docset/winserver2019-ps/adfs/Get-AdfsAuthenticationProviderWebContent.md +++ b/docset/winserver2019-ps/adfs/Get-AdfsAuthenticationProviderWebContent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsauthenticationproviderwebcontent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsauthenticationproviderwebcontent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsAuthenticationProviderWebContent --- diff --git a/docset/winserver2019-ps/adfs/Get-AdfsAzureMfaConfigured.md b/docset/winserver2019-ps/adfs/Get-AdfsAzureMfaConfigured.md index ca9e2a1191..6e075a5c51 100644 --- a/docset/winserver2019-ps/adfs/Get-AdfsAzureMfaConfigured.md +++ b/docset/winserver2019-ps/adfs/Get-AdfsAzureMfaConfigured.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsazuremfaconfigured?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsazuremfaconfigured?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsAzureMfaConfigured --- diff --git a/docset/winserver2019-ps/adfs/Get-AdfsCertificate.md b/docset/winserver2019-ps/adfs/Get-AdfsCertificate.md index 8cadbe7b36..5ed1bbc5da 100644 --- a/docset/winserver2019-ps/adfs/Get-AdfsCertificate.md +++ b/docset/winserver2019-ps/adfs/Get-AdfsCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfscertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfscertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsCertificate --- diff --git a/docset/winserver2019-ps/adfs/Get-AdfsCertificateAuthority.md b/docset/winserver2019-ps/adfs/Get-AdfsCertificateAuthority.md index fdd0fe4aad..22a6917f33 100644 --- a/docset/winserver2019-ps/adfs/Get-AdfsCertificateAuthority.md +++ b/docset/winserver2019-ps/adfs/Get-AdfsCertificateAuthority.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfscertificateauthority?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfscertificateauthority?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsCertificateAuthority --- diff --git a/docset/winserver2019-ps/adfs/Get-AdfsClaimDescription.md b/docset/winserver2019-ps/adfs/Get-AdfsClaimDescription.md index 7a8ad9f4d0..2b147b6b91 100644 --- a/docset/winserver2019-ps/adfs/Get-AdfsClaimDescription.md +++ b/docset/winserver2019-ps/adfs/Get-AdfsClaimDescription.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsclaimdescription?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsclaimdescription?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsClaimDescription --- diff --git a/docset/winserver2019-ps/adfs/Get-AdfsClaimsProviderTrust.md b/docset/winserver2019-ps/adfs/Get-AdfsClaimsProviderTrust.md index a6c8635579..2c8b0295aa 100644 --- a/docset/winserver2019-ps/adfs/Get-AdfsClaimsProviderTrust.md +++ b/docset/winserver2019-ps/adfs/Get-AdfsClaimsProviderTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsclaimsprovidertrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsclaimsprovidertrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsClaimsProviderTrust --- diff --git a/docset/winserver2019-ps/adfs/Get-AdfsClaimsProviderTrustsGroup.md b/docset/winserver2019-ps/adfs/Get-AdfsClaimsProviderTrustsGroup.md index 0cef4b4a4e..710dd88075 100644 --- a/docset/winserver2019-ps/adfs/Get-AdfsClaimsProviderTrustsGroup.md +++ b/docset/winserver2019-ps/adfs/Get-AdfsClaimsProviderTrustsGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsclaimsprovidertrustsgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsclaimsprovidertrustsgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsClaimsProviderTrustsGroup --- diff --git a/docset/winserver2019-ps/adfs/Get-AdfsClient.md b/docset/winserver2019-ps/adfs/Get-AdfsClient.md index a42ac66f70..46852eeb70 100644 --- a/docset/winserver2019-ps/adfs/Get-AdfsClient.md +++ b/docset/winserver2019-ps/adfs/Get-AdfsClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsClient --- diff --git a/docset/winserver2019-ps/adfs/Get-AdfsDeviceRegistration.md b/docset/winserver2019-ps/adfs/Get-AdfsDeviceRegistration.md index 628fa570d2..98ba9e9cb3 100644 --- a/docset/winserver2019-ps/adfs/Get-AdfsDeviceRegistration.md +++ b/docset/winserver2019-ps/adfs/Get-AdfsDeviceRegistration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsdeviceregistration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsdeviceregistration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsDeviceRegistration --- diff --git a/docset/winserver2019-ps/adfs/Get-AdfsDeviceRegistrationUpnSuffix.md b/docset/winserver2019-ps/adfs/Get-AdfsDeviceRegistrationUpnSuffix.md index a54b94026b..2f0e7bebdd 100644 --- a/docset/winserver2019-ps/adfs/Get-AdfsDeviceRegistrationUpnSuffix.md +++ b/docset/winserver2019-ps/adfs/Get-AdfsDeviceRegistrationUpnSuffix.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsdeviceregistrationupnsuffix?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsdeviceregistrationupnsuffix?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsDeviceRegistrationUpnSuffix --- diff --git a/docset/winserver2019-ps/adfs/Get-AdfsEndpoint.md b/docset/winserver2019-ps/adfs/Get-AdfsEndpoint.md index 3a0155cc78..bc32a39e41 100644 --- a/docset/winserver2019-ps/adfs/Get-AdfsEndpoint.md +++ b/docset/winserver2019-ps/adfs/Get-AdfsEndpoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsendpoint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsendpoint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsEndpoint --- diff --git a/docset/winserver2019-ps/adfs/Get-AdfsFarmInformation.md b/docset/winserver2019-ps/adfs/Get-AdfsFarmInformation.md index bd51ddc49e..6c90382f42 100644 --- a/docset/winserver2019-ps/adfs/Get-AdfsFarmInformation.md +++ b/docset/winserver2019-ps/adfs/Get-AdfsFarmInformation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsfarminformation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsfarminformation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsFarmInformation --- diff --git a/docset/winserver2019-ps/adfs/Get-AdfsGlobalAuthenticationPolicy.md b/docset/winserver2019-ps/adfs/Get-AdfsGlobalAuthenticationPolicy.md index a32be83c1f..a0603b8a40 100644 --- a/docset/winserver2019-ps/adfs/Get-AdfsGlobalAuthenticationPolicy.md +++ b/docset/winserver2019-ps/adfs/Get-AdfsGlobalAuthenticationPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsglobalauthenticationpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsglobalauthenticationpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsGlobalAuthenticationPolicy --- diff --git a/docset/winserver2019-ps/adfs/Get-AdfsGlobalWebContent.md b/docset/winserver2019-ps/adfs/Get-AdfsGlobalWebContent.md index 78a00d3dc9..3381cb9064 100644 --- a/docset/winserver2019-ps/adfs/Get-AdfsGlobalWebContent.md +++ b/docset/winserver2019-ps/adfs/Get-AdfsGlobalWebContent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsglobalwebcontent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsglobalwebcontent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsGlobalWebContent --- diff --git a/docset/winserver2019-ps/adfs/Get-AdfsLocalClaimsProviderTrust.md b/docset/winserver2019-ps/adfs/Get-AdfsLocalClaimsProviderTrust.md index 4161b54625..c284054097 100644 --- a/docset/winserver2019-ps/adfs/Get-AdfsLocalClaimsProviderTrust.md +++ b/docset/winserver2019-ps/adfs/Get-AdfsLocalClaimsProviderTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfslocalclaimsprovidertrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfslocalclaimsprovidertrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsLocalClaimsProviderTrust --- diff --git a/docset/winserver2019-ps/adfs/Get-AdfsNativeClientApplication.md b/docset/winserver2019-ps/adfs/Get-AdfsNativeClientApplication.md index 0cd6128367..dc1aaadad5 100644 --- a/docset/winserver2019-ps/adfs/Get-AdfsNativeClientApplication.md +++ b/docset/winserver2019-ps/adfs/Get-AdfsNativeClientApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsnativeclientapplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsnativeclientapplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsNativeClientApplication --- diff --git a/docset/winserver2019-ps/adfs/Get-AdfsNonClaimsAwareRelyingPartyTrust.md b/docset/winserver2019-ps/adfs/Get-AdfsNonClaimsAwareRelyingPartyTrust.md index e99174dae6..45bb845bd2 100644 --- a/docset/winserver2019-ps/adfs/Get-AdfsNonClaimsAwareRelyingPartyTrust.md +++ b/docset/winserver2019-ps/adfs/Get-AdfsNonClaimsAwareRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsnonclaimsawarerelyingpartytrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsnonclaimsawarerelyingpartytrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsNonClaimsAwareRelyingPartyTrust --- diff --git a/docset/winserver2019-ps/adfs/Get-AdfsProperties.md b/docset/winserver2019-ps/adfs/Get-AdfsProperties.md index 8d2f767886..87b48921c6 100644 --- a/docset/winserver2019-ps/adfs/Get-AdfsProperties.md +++ b/docset/winserver2019-ps/adfs/Get-AdfsProperties.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsproperties?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsproperties?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsProperties --- diff --git a/docset/winserver2019-ps/adfs/Get-AdfsRegistrationHosts.md b/docset/winserver2019-ps/adfs/Get-AdfsRegistrationHosts.md index d2146926b1..be9db3a00b 100644 --- a/docset/winserver2019-ps/adfs/Get-AdfsRegistrationHosts.md +++ b/docset/winserver2019-ps/adfs/Get-AdfsRegistrationHosts.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsregistrationhosts?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsregistrationhosts?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsRegistrationHosts --- diff --git a/docset/winserver2019-ps/adfs/Get-AdfsRelyingPartyTrust.md b/docset/winserver2019-ps/adfs/Get-AdfsRelyingPartyTrust.md index 04dc09a6f3..0b2ff01b73 100644 --- a/docset/winserver2019-ps/adfs/Get-AdfsRelyingPartyTrust.md +++ b/docset/winserver2019-ps/adfs/Get-AdfsRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsrelyingpartytrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsrelyingpartytrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsRelyingPartyTrust --- diff --git a/docset/winserver2019-ps/adfs/Get-AdfsRelyingPartyTrustsGroup.md b/docset/winserver2019-ps/adfs/Get-AdfsRelyingPartyTrustsGroup.md index 6804a21313..efde491b5e 100644 --- a/docset/winserver2019-ps/adfs/Get-AdfsRelyingPartyTrustsGroup.md +++ b/docset/winserver2019-ps/adfs/Get-AdfsRelyingPartyTrustsGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsrelyingpartytrustsgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsrelyingpartytrustsgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsRelyingPartyTrustsGroup --- diff --git a/docset/winserver2019-ps/adfs/Get-AdfsRelyingPartyWebContent.md b/docset/winserver2019-ps/adfs/Get-AdfsRelyingPartyWebContent.md index c5f40bc4b7..0a74e0aea5 100644 --- a/docset/winserver2019-ps/adfs/Get-AdfsRelyingPartyWebContent.md +++ b/docset/winserver2019-ps/adfs/Get-AdfsRelyingPartyWebContent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsrelyingpartywebcontent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsrelyingpartywebcontent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsRelyingPartyWebContent --- diff --git a/docset/winserver2019-ps/adfs/Get-AdfsRelyingPartyWebTheme.md b/docset/winserver2019-ps/adfs/Get-AdfsRelyingPartyWebTheme.md index 412da8f099..79559f03be 100644 --- a/docset/winserver2019-ps/adfs/Get-AdfsRelyingPartyWebTheme.md +++ b/docset/winserver2019-ps/adfs/Get-AdfsRelyingPartyWebTheme.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsrelyingpartywebtheme?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsrelyingpartywebtheme?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsRelyingPartyWebTheme --- diff --git a/docset/winserver2019-ps/adfs/Get-AdfsScopeDescription.md b/docset/winserver2019-ps/adfs/Get-AdfsScopeDescription.md index a33db779b0..c51056115f 100644 --- a/docset/winserver2019-ps/adfs/Get-AdfsScopeDescription.md +++ b/docset/winserver2019-ps/adfs/Get-AdfsScopeDescription.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsscopedescription?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsscopedescription?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsScopeDescription --- diff --git a/docset/winserver2019-ps/adfs/Get-AdfsServerApplication.md b/docset/winserver2019-ps/adfs/Get-AdfsServerApplication.md index 922cc8c3c7..e68e6ae6c4 100644 --- a/docset/winserver2019-ps/adfs/Get-AdfsServerApplication.md +++ b/docset/winserver2019-ps/adfs/Get-AdfsServerApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsserverapplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsserverapplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsServerApplication --- diff --git a/docset/winserver2019-ps/adfs/Get-AdfsSslCertificate.md b/docset/winserver2019-ps/adfs/Get-AdfsSslCertificate.md index 78b09fc8de..5459e7a72e 100644 --- a/docset/winserver2019-ps/adfs/Get-AdfsSslCertificate.md +++ b/docset/winserver2019-ps/adfs/Get-AdfsSslCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfssslcertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfssslcertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsSslCertificate --- diff --git a/docset/winserver2019-ps/adfs/Get-AdfsSyncProperties.md b/docset/winserver2019-ps/adfs/Get-AdfsSyncProperties.md index 536d50aff0..602fa802bf 100644 --- a/docset/winserver2019-ps/adfs/Get-AdfsSyncProperties.md +++ b/docset/winserver2019-ps/adfs/Get-AdfsSyncProperties.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfssyncproperties?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfssyncproperties?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsSyncProperties --- diff --git a/docset/winserver2019-ps/adfs/Get-AdfsTrustedFederationPartner.md b/docset/winserver2019-ps/adfs/Get-AdfsTrustedFederationPartner.md index 1d4fb2588c..ba7765f651 100644 --- a/docset/winserver2019-ps/adfs/Get-AdfsTrustedFederationPartner.md +++ b/docset/winserver2019-ps/adfs/Get-AdfsTrustedFederationPartner.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfstrustedfederationpartner?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfstrustedfederationpartner?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsTrustedFederationPartner --- diff --git a/docset/winserver2019-ps/adfs/Get-AdfsWebApiApplication.md b/docset/winserver2019-ps/adfs/Get-AdfsWebApiApplication.md index bb7f014ab8..44d5740828 100644 --- a/docset/winserver2019-ps/adfs/Get-AdfsWebApiApplication.md +++ b/docset/winserver2019-ps/adfs/Get-AdfsWebApiApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfswebapiapplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfswebapiapplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsWebApiApplication --- diff --git a/docset/winserver2019-ps/adfs/Get-AdfsWebApplicationProxyRelyingPartyTrust.md b/docset/winserver2019-ps/adfs/Get-AdfsWebApplicationProxyRelyingPartyTrust.md index 59ed02c3ef..acb2d72226 100644 --- a/docset/winserver2019-ps/adfs/Get-AdfsWebApplicationProxyRelyingPartyTrust.md +++ b/docset/winserver2019-ps/adfs/Get-AdfsWebApplicationProxyRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfswebapplicationproxyrelyingpartytrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfswebapplicationproxyrelyingpartytrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsWebApplicationProxyRelyingPartyTrust --- diff --git a/docset/winserver2019-ps/adfs/Get-AdfsWebConfig.md b/docset/winserver2019-ps/adfs/Get-AdfsWebConfig.md index a6627a7e5a..1dd68636f2 100644 --- a/docset/winserver2019-ps/adfs/Get-AdfsWebConfig.md +++ b/docset/winserver2019-ps/adfs/Get-AdfsWebConfig.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfswebconfig?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfswebconfig?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsWebConfig --- diff --git a/docset/winserver2019-ps/adfs/Get-AdfsWebTheme.md b/docset/winserver2019-ps/adfs/Get-AdfsWebTheme.md index ca2800718d..9a2f16c09f 100644 --- a/docset/winserver2019-ps/adfs/Get-AdfsWebTheme.md +++ b/docset/winserver2019-ps/adfs/Get-AdfsWebTheme.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfswebtheme?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfswebtheme?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsWebTheme --- diff --git a/docset/winserver2019-ps/adfs/Grant-AdfsApplicationPermission.md b/docset/winserver2019-ps/adfs/Grant-AdfsApplicationPermission.md index b4f80e251b..084fcc3520 100644 --- a/docset/winserver2019-ps/adfs/Grant-AdfsApplicationPermission.md +++ b/docset/winserver2019-ps/adfs/Grant-AdfsApplicationPermission.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/grant-adfsapplicationpermission?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/grant-adfsapplicationpermission?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Grant-AdfsApplicationPermission --- diff --git a/docset/winserver2019-ps/adfs/Import-AdfsAuthenticationProviderConfigurationData.md b/docset/winserver2019-ps/adfs/Import-AdfsAuthenticationProviderConfigurationData.md index b6ba3d64a4..dd01a44515 100644 --- a/docset/winserver2019-ps/adfs/Import-AdfsAuthenticationProviderConfigurationData.md +++ b/docset/winserver2019-ps/adfs/Import-AdfsAuthenticationProviderConfigurationData.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/import-adfsauthenticationproviderconfigurationdata?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/import-adfsauthenticationproviderconfigurationdata?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-AdfsAuthenticationProviderConfigurationData --- diff --git a/docset/winserver2019-ps/adfs/Import-AdfsWebContent.md b/docset/winserver2019-ps/adfs/Import-AdfsWebContent.md index bcf7945bce..d61185abea 100644 --- a/docset/winserver2019-ps/adfs/Import-AdfsWebContent.md +++ b/docset/winserver2019-ps/adfs/Import-AdfsWebContent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/import-adfswebcontent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/import-adfswebcontent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-AdfsWebContent --- diff --git a/docset/winserver2019-ps/adfs/Initialize-ADDeviceRegistration.md b/docset/winserver2019-ps/adfs/Initialize-ADDeviceRegistration.md index 5de3b5a469..40d3bd8fd3 100644 --- a/docset/winserver2019-ps/adfs/Initialize-ADDeviceRegistration.md +++ b/docset/winserver2019-ps/adfs/Initialize-ADDeviceRegistration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Deployment.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/initialize-addeviceregistration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/initialize-addeviceregistration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Initialize-ADDeviceRegistration --- diff --git a/docset/winserver2019-ps/adfs/Install-AdfsFarm.md b/docset/winserver2019-ps/adfs/Install-AdfsFarm.md index 2a47774e58..b661ff5136 100644 --- a/docset/winserver2019-ps/adfs/Install-AdfsFarm.md +++ b/docset/winserver2019-ps/adfs/Install-AdfsFarm.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Deployment.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/install-adfsfarm?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/install-adfsfarm?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-AdfsFarm --- diff --git a/docset/winserver2019-ps/adfs/Invoke-AdfsFarmBehaviorLevelRaise.md b/docset/winserver2019-ps/adfs/Invoke-AdfsFarmBehaviorLevelRaise.md index beace25644..05e8f41c42 100644 --- a/docset/winserver2019-ps/adfs/Invoke-AdfsFarmBehaviorLevelRaise.md +++ b/docset/winserver2019-ps/adfs/Invoke-AdfsFarmBehaviorLevelRaise.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Deployment.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/invoke-adfsfarmbehaviorlevelraise?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/invoke-adfsfarmbehaviorlevelraise?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-AdfsFarmBehaviorLevelRaise --- diff --git a/docset/winserver2019-ps/adfs/New-AdfsAccessControlPolicy.md b/docset/winserver2019-ps/adfs/New-AdfsAccessControlPolicy.md index d520e4ccd6..173d3fdee7 100644 --- a/docset/winserver2019-ps/adfs/New-AdfsAccessControlPolicy.md +++ b/docset/winserver2019-ps/adfs/New-AdfsAccessControlPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/new-adfsaccesscontrolpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/new-adfsaccesscontrolpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-AdfsAccessControlPolicy --- diff --git a/docset/winserver2019-ps/adfs/New-AdfsApplicationGroup.md b/docset/winserver2019-ps/adfs/New-AdfsApplicationGroup.md index 02aad11ff3..3418c7db9b 100644 --- a/docset/winserver2019-ps/adfs/New-AdfsApplicationGroup.md +++ b/docset/winserver2019-ps/adfs/New-AdfsApplicationGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/new-adfsapplicationgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/new-adfsapplicationgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-AdfsApplicationGroup --- diff --git a/docset/winserver2019-ps/adfs/New-AdfsAzureMfaTenantCertificate.md b/docset/winserver2019-ps/adfs/New-AdfsAzureMfaTenantCertificate.md index ffa14175f3..4b491b8d92 100644 --- a/docset/winserver2019-ps/adfs/New-AdfsAzureMfaTenantCertificate.md +++ b/docset/winserver2019-ps/adfs/New-AdfsAzureMfaTenantCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/new-adfsazuremfatenantcertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/new-adfsazuremfatenantcertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-AdfsAzureMfaTenantCertificate --- diff --git a/docset/winserver2019-ps/adfs/New-AdfsClaimRuleSet.md b/docset/winserver2019-ps/adfs/New-AdfsClaimRuleSet.md index 25d22a582c..cafc8acf80 100644 --- a/docset/winserver2019-ps/adfs/New-AdfsClaimRuleSet.md +++ b/docset/winserver2019-ps/adfs/New-AdfsClaimRuleSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/new-adfsclaimruleset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/new-adfsclaimruleset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-AdfsClaimRuleSet --- diff --git a/docset/winserver2019-ps/adfs/New-AdfsContactPerson.md b/docset/winserver2019-ps/adfs/New-AdfsContactPerson.md index 26d956b7ac..f45dcf56c9 100644 --- a/docset/winserver2019-ps/adfs/New-AdfsContactPerson.md +++ b/docset/winserver2019-ps/adfs/New-AdfsContactPerson.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/new-adfscontactperson?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/new-adfscontactperson?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-AdfsContactPerson --- diff --git a/docset/winserver2019-ps/adfs/New-AdfsLdapAttributeToClaimMapping.md b/docset/winserver2019-ps/adfs/New-AdfsLdapAttributeToClaimMapping.md index 341916df5b..582683e723 100644 --- a/docset/winserver2019-ps/adfs/New-AdfsLdapAttributeToClaimMapping.md +++ b/docset/winserver2019-ps/adfs/New-AdfsLdapAttributeToClaimMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/new-adfsldapattributetoclaimmapping?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/new-adfsldapattributetoclaimmapping?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-AdfsLdapAttributeToClaimMapping --- diff --git a/docset/winserver2019-ps/adfs/New-AdfsLdapServerConnection.md b/docset/winserver2019-ps/adfs/New-AdfsLdapServerConnection.md index 79a979ae19..3791accbd9 100644 --- a/docset/winserver2019-ps/adfs/New-AdfsLdapServerConnection.md +++ b/docset/winserver2019-ps/adfs/New-AdfsLdapServerConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/new-adfsldapserverconnection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/new-adfsldapserverconnection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-AdfsLdapServerConnection --- diff --git a/docset/winserver2019-ps/adfs/New-AdfsOrganization.md b/docset/winserver2019-ps/adfs/New-AdfsOrganization.md index d5068d9808..813a178dd5 100644 --- a/docset/winserver2019-ps/adfs/New-AdfsOrganization.md +++ b/docset/winserver2019-ps/adfs/New-AdfsOrganization.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/new-adfsorganization?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/new-adfsorganization?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-AdfsOrganization --- diff --git a/docset/winserver2019-ps/adfs/New-AdfsSamlEndpoint.md b/docset/winserver2019-ps/adfs/New-AdfsSamlEndpoint.md index 52e5d45aca..401e4c0bef 100644 --- a/docset/winserver2019-ps/adfs/New-AdfsSamlEndpoint.md +++ b/docset/winserver2019-ps/adfs/New-AdfsSamlEndpoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/new-adfssamlendpoint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/new-adfssamlendpoint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-AdfsSamlEndpoint --- diff --git a/docset/winserver2019-ps/adfs/New-AdfsWebTheme.md b/docset/winserver2019-ps/adfs/New-AdfsWebTheme.md index 6ab30b5857..f49c088900 100644 --- a/docset/winserver2019-ps/adfs/New-AdfsWebTheme.md +++ b/docset/winserver2019-ps/adfs/New-AdfsWebTheme.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/new-adfswebtheme?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/new-adfswebtheme?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-AdfsWebTheme --- diff --git a/docset/winserver2019-ps/adfs/Publish-SslCertificate.md b/docset/winserver2019-ps/adfs/Publish-SslCertificate.md index 2571ad668c..9a89c9e64a 100644 --- a/docset/winserver2019-ps/adfs/Publish-SslCertificate.md +++ b/docset/winserver2019-ps/adfs/Publish-SslCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Deployment.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/publish-sslcertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/publish-sslcertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Publish-SslCertificate --- diff --git a/docset/winserver2019-ps/adfs/Register-AdfsAuthenticationProvider.md b/docset/winserver2019-ps/adfs/Register-AdfsAuthenticationProvider.md index 7a7e20cefa..727b25d461 100644 --- a/docset/winserver2019-ps/adfs/Register-AdfsAuthenticationProvider.md +++ b/docset/winserver2019-ps/adfs/Register-AdfsAuthenticationProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/register-adfsauthenticationprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/register-adfsauthenticationprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Register-AdfsAuthenticationProvider --- diff --git a/docset/winserver2019-ps/adfs/Remove-AdfsAccessControlPolicy.md b/docset/winserver2019-ps/adfs/Remove-AdfsAccessControlPolicy.md index 8105f66312..fe981def35 100644 --- a/docset/winserver2019-ps/adfs/Remove-AdfsAccessControlPolicy.md +++ b/docset/winserver2019-ps/adfs/Remove-AdfsAccessControlPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsaccesscontrolpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsaccesscontrolpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsAccessControlPolicy --- diff --git a/docset/winserver2019-ps/adfs/Remove-AdfsApplicationGroup.md b/docset/winserver2019-ps/adfs/Remove-AdfsApplicationGroup.md index 7e7aa5a1da..bea087c704 100644 --- a/docset/winserver2019-ps/adfs/Remove-AdfsApplicationGroup.md +++ b/docset/winserver2019-ps/adfs/Remove-AdfsApplicationGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsapplicationgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsapplicationgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsApplicationGroup --- diff --git a/docset/winserver2019-ps/adfs/Remove-AdfsAttributeStore.md b/docset/winserver2019-ps/adfs/Remove-AdfsAttributeStore.md index b44e628e70..95a5035999 100644 --- a/docset/winserver2019-ps/adfs/Remove-AdfsAttributeStore.md +++ b/docset/winserver2019-ps/adfs/Remove-AdfsAttributeStore.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsattributestore?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsattributestore?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsAttributeStore --- diff --git a/docset/winserver2019-ps/adfs/Remove-AdfsAuthenticationProviderWebContent.md b/docset/winserver2019-ps/adfs/Remove-AdfsAuthenticationProviderWebContent.md index 376e648c68..cef0680559 100644 --- a/docset/winserver2019-ps/adfs/Remove-AdfsAuthenticationProviderWebContent.md +++ b/docset/winserver2019-ps/adfs/Remove-AdfsAuthenticationProviderWebContent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsauthenticationproviderwebcontent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsauthenticationproviderwebcontent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsAuthenticationProviderWebContent --- diff --git a/docset/winserver2019-ps/adfs/Remove-AdfsCertificate.md b/docset/winserver2019-ps/adfs/Remove-AdfsCertificate.md index 0f8831ceba..07f1346915 100644 --- a/docset/winserver2019-ps/adfs/Remove-AdfsCertificate.md +++ b/docset/winserver2019-ps/adfs/Remove-AdfsCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfscertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfscertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsCertificate --- diff --git a/docset/winserver2019-ps/adfs/Remove-AdfsClaimDescription.md b/docset/winserver2019-ps/adfs/Remove-AdfsClaimDescription.md index ca9a760641..c44c3b0c9d 100644 --- a/docset/winserver2019-ps/adfs/Remove-AdfsClaimDescription.md +++ b/docset/winserver2019-ps/adfs/Remove-AdfsClaimDescription.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsclaimdescription?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsclaimdescription?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsClaimDescription --- diff --git a/docset/winserver2019-ps/adfs/Remove-AdfsClaimsProviderTrust.md b/docset/winserver2019-ps/adfs/Remove-AdfsClaimsProviderTrust.md index 7ad3a6dee2..7310a98736 100644 --- a/docset/winserver2019-ps/adfs/Remove-AdfsClaimsProviderTrust.md +++ b/docset/winserver2019-ps/adfs/Remove-AdfsClaimsProviderTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsclaimsprovidertrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsclaimsprovidertrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsClaimsProviderTrust --- diff --git a/docset/winserver2019-ps/adfs/Remove-AdfsClaimsProviderTrustsGroup.md b/docset/winserver2019-ps/adfs/Remove-AdfsClaimsProviderTrustsGroup.md index 1eaef540c9..fb8f46cca0 100644 --- a/docset/winserver2019-ps/adfs/Remove-AdfsClaimsProviderTrustsGroup.md +++ b/docset/winserver2019-ps/adfs/Remove-AdfsClaimsProviderTrustsGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsclaimsprovidertrustsgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsclaimsprovidertrustsgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsClaimsProviderTrustsGroup --- diff --git a/docset/winserver2019-ps/adfs/Remove-AdfsClient.md b/docset/winserver2019-ps/adfs/Remove-AdfsClient.md index 70f625bf01..2b925fb51b 100644 --- a/docset/winserver2019-ps/adfs/Remove-AdfsClient.md +++ b/docset/winserver2019-ps/adfs/Remove-AdfsClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsClient --- diff --git a/docset/winserver2019-ps/adfs/Remove-AdfsDeviceRegistrationUpnSuffix.md b/docset/winserver2019-ps/adfs/Remove-AdfsDeviceRegistrationUpnSuffix.md index 2a5e7c8113..405e966279 100644 --- a/docset/winserver2019-ps/adfs/Remove-AdfsDeviceRegistrationUpnSuffix.md +++ b/docset/winserver2019-ps/adfs/Remove-AdfsDeviceRegistrationUpnSuffix.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsdeviceregistrationupnsuffix?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsdeviceregistrationupnsuffix?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsDeviceRegistrationUpnSuffix --- diff --git a/docset/winserver2019-ps/adfs/Remove-AdfsFarmNode.md b/docset/winserver2019-ps/adfs/Remove-AdfsFarmNode.md index 3da2b63f67..b882661296 100644 --- a/docset/winserver2019-ps/adfs/Remove-AdfsFarmNode.md +++ b/docset/winserver2019-ps/adfs/Remove-AdfsFarmNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Deployment.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsfarmnode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsfarmnode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsFarmNode --- diff --git a/docset/winserver2019-ps/adfs/Remove-AdfsGlobalWebContent.md b/docset/winserver2019-ps/adfs/Remove-AdfsGlobalWebContent.md index 41ae18b1a1..d1f88d1980 100644 --- a/docset/winserver2019-ps/adfs/Remove-AdfsGlobalWebContent.md +++ b/docset/winserver2019-ps/adfs/Remove-AdfsGlobalWebContent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsglobalwebcontent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsglobalwebcontent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsGlobalWebContent --- diff --git a/docset/winserver2019-ps/adfs/Remove-AdfsLocalClaimsProviderTrust.md b/docset/winserver2019-ps/adfs/Remove-AdfsLocalClaimsProviderTrust.md index 011ef274fc..2e7c31e53e 100644 --- a/docset/winserver2019-ps/adfs/Remove-AdfsLocalClaimsProviderTrust.md +++ b/docset/winserver2019-ps/adfs/Remove-AdfsLocalClaimsProviderTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfslocalclaimsprovidertrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfslocalclaimsprovidertrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsLocalClaimsProviderTrust --- diff --git a/docset/winserver2019-ps/adfs/Remove-AdfsNativeClientApplication.md b/docset/winserver2019-ps/adfs/Remove-AdfsNativeClientApplication.md index ba47c95b30..b3c251e762 100644 --- a/docset/winserver2019-ps/adfs/Remove-AdfsNativeClientApplication.md +++ b/docset/winserver2019-ps/adfs/Remove-AdfsNativeClientApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsnativeclientapplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsnativeclientapplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsNativeClientApplication --- diff --git a/docset/winserver2019-ps/adfs/Remove-AdfsNonClaimsAwareRelyingPartyTrust.md b/docset/winserver2019-ps/adfs/Remove-AdfsNonClaimsAwareRelyingPartyTrust.md index 4d188c7c63..6f866c2225 100644 --- a/docset/winserver2019-ps/adfs/Remove-AdfsNonClaimsAwareRelyingPartyTrust.md +++ b/docset/winserver2019-ps/adfs/Remove-AdfsNonClaimsAwareRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsnonclaimsawarerelyingpartytrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsnonclaimsawarerelyingpartytrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsNonClaimsAwareRelyingPartyTrust --- diff --git a/docset/winserver2019-ps/adfs/Remove-AdfsRelyingPartyTrust.md b/docset/winserver2019-ps/adfs/Remove-AdfsRelyingPartyTrust.md index 2bb8f665a8..bfe8380486 100644 --- a/docset/winserver2019-ps/adfs/Remove-AdfsRelyingPartyTrust.md +++ b/docset/winserver2019-ps/adfs/Remove-AdfsRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsrelyingpartytrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsrelyingpartytrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsRelyingPartyTrust --- diff --git a/docset/winserver2019-ps/adfs/Remove-AdfsRelyingPartyTrustsGroup.md b/docset/winserver2019-ps/adfs/Remove-AdfsRelyingPartyTrustsGroup.md index af7eda3147..de452c4eaf 100644 --- a/docset/winserver2019-ps/adfs/Remove-AdfsRelyingPartyTrustsGroup.md +++ b/docset/winserver2019-ps/adfs/Remove-AdfsRelyingPartyTrustsGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsrelyingpartytrustsgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsrelyingpartytrustsgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsRelyingPartyTrustsGroup --- diff --git a/docset/winserver2019-ps/adfs/Remove-AdfsRelyingPartyWebContent.md b/docset/winserver2019-ps/adfs/Remove-AdfsRelyingPartyWebContent.md index 5295e5a9fa..ddf90bf989 100644 --- a/docset/winserver2019-ps/adfs/Remove-AdfsRelyingPartyWebContent.md +++ b/docset/winserver2019-ps/adfs/Remove-AdfsRelyingPartyWebContent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsrelyingpartywebcontent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsrelyingpartywebcontent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsRelyingPartyWebContent --- diff --git a/docset/winserver2019-ps/adfs/Remove-AdfsRelyingPartyWebTheme.md b/docset/winserver2019-ps/adfs/Remove-AdfsRelyingPartyWebTheme.md index dd9f2f9b7d..2f731a5623 100644 --- a/docset/winserver2019-ps/adfs/Remove-AdfsRelyingPartyWebTheme.md +++ b/docset/winserver2019-ps/adfs/Remove-AdfsRelyingPartyWebTheme.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsrelyingpartywebtheme?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsrelyingpartywebtheme?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsRelyingPartyWebTheme --- diff --git a/docset/winserver2019-ps/adfs/Remove-AdfsScopeDescription.md b/docset/winserver2019-ps/adfs/Remove-AdfsScopeDescription.md index 8b0bf95ed5..fa6f4605a6 100644 --- a/docset/winserver2019-ps/adfs/Remove-AdfsScopeDescription.md +++ b/docset/winserver2019-ps/adfs/Remove-AdfsScopeDescription.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsscopedescription?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsscopedescription?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsScopeDescription --- diff --git a/docset/winserver2019-ps/adfs/Remove-AdfsServerApplication.md b/docset/winserver2019-ps/adfs/Remove-AdfsServerApplication.md index 484e4a6d4e..86a9f5baf7 100644 --- a/docset/winserver2019-ps/adfs/Remove-AdfsServerApplication.md +++ b/docset/winserver2019-ps/adfs/Remove-AdfsServerApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsserverapplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsserverapplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsServerApplication --- diff --git a/docset/winserver2019-ps/adfs/Remove-AdfsTrustedFederationPartner.md b/docset/winserver2019-ps/adfs/Remove-AdfsTrustedFederationPartner.md index 8f25c7ab46..3d4ce75754 100644 --- a/docset/winserver2019-ps/adfs/Remove-AdfsTrustedFederationPartner.md +++ b/docset/winserver2019-ps/adfs/Remove-AdfsTrustedFederationPartner.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfstrustedfederationpartner?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfstrustedfederationpartner?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsTrustedFederationPartner --- diff --git a/docset/winserver2019-ps/adfs/Remove-AdfsWebApiApplication.md b/docset/winserver2019-ps/adfs/Remove-AdfsWebApiApplication.md index ecf54a500b..de33c23ef7 100644 --- a/docset/winserver2019-ps/adfs/Remove-AdfsWebApiApplication.md +++ b/docset/winserver2019-ps/adfs/Remove-AdfsWebApiApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfswebapiapplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfswebapiapplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsWebApiApplication --- diff --git a/docset/winserver2019-ps/adfs/Remove-AdfsWebApplicationProxyRelyingPartyTrust.md b/docset/winserver2019-ps/adfs/Remove-AdfsWebApplicationProxyRelyingPartyTrust.md index 3876f2965c..7373a6edfb 100644 --- a/docset/winserver2019-ps/adfs/Remove-AdfsWebApplicationProxyRelyingPartyTrust.md +++ b/docset/winserver2019-ps/adfs/Remove-AdfsWebApplicationProxyRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfswebapplicationproxyrelyingpartytrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfswebapplicationproxyrelyingpartytrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsWebApplicationProxyRelyingPartyTrust --- diff --git a/docset/winserver2019-ps/adfs/Remove-AdfsWebTheme.md b/docset/winserver2019-ps/adfs/Remove-AdfsWebTheme.md index 369fa04da4..b80dced58f 100644 --- a/docset/winserver2019-ps/adfs/Remove-AdfsWebTheme.md +++ b/docset/winserver2019-ps/adfs/Remove-AdfsWebTheme.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfswebtheme?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfswebtheme?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsWebTheme --- diff --git a/docset/winserver2019-ps/adfs/Restore-AdfsFarmBehaviorLevel.md b/docset/winserver2019-ps/adfs/Restore-AdfsFarmBehaviorLevel.md index 866ee99c30..478278dad4 100644 --- a/docset/winserver2019-ps/adfs/Restore-AdfsFarmBehaviorLevel.md +++ b/docset/winserver2019-ps/adfs/Restore-AdfsFarmBehaviorLevel.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Deployment.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/restore-adfsfarmbehaviorlevel?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/restore-adfsfarmbehaviorlevel?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-AdfsFarmBehaviorLevel --- diff --git a/docset/winserver2019-ps/adfs/Revoke-AdfsApplicationPermission.md b/docset/winserver2019-ps/adfs/Revoke-AdfsApplicationPermission.md index c037d0238b..b8a2817008 100644 --- a/docset/winserver2019-ps/adfs/Revoke-AdfsApplicationPermission.md +++ b/docset/winserver2019-ps/adfs/Revoke-AdfsApplicationPermission.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/revoke-adfsapplicationpermission?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/revoke-adfsapplicationpermission?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Revoke-AdfsApplicationPermission --- diff --git a/docset/winserver2019-ps/adfs/Revoke-AdfsProxyTrust.md b/docset/winserver2019-ps/adfs/Revoke-AdfsProxyTrust.md index fcbf118c50..2b21c4b40a 100644 --- a/docset/winserver2019-ps/adfs/Revoke-AdfsProxyTrust.md +++ b/docset/winserver2019-ps/adfs/Revoke-AdfsProxyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/revoke-adfsproxytrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/revoke-adfsproxytrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Revoke-AdfsProxyTrust --- diff --git a/docset/winserver2019-ps/adfs/Set-AdfsAccessControlPolicy.md b/docset/winserver2019-ps/adfs/Set-AdfsAccessControlPolicy.md index db4dbb87c9..19401893f1 100644 --- a/docset/winserver2019-ps/adfs/Set-AdfsAccessControlPolicy.md +++ b/docset/winserver2019-ps/adfs/Set-AdfsAccessControlPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsaccesscontrolpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsaccesscontrolpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsAccessControlPolicy --- diff --git a/docset/winserver2019-ps/adfs/Set-AdfsAdditionalAuthenticationRule.md b/docset/winserver2019-ps/adfs/Set-AdfsAdditionalAuthenticationRule.md index 1d3d29196d..873a4a321c 100644 --- a/docset/winserver2019-ps/adfs/Set-AdfsAdditionalAuthenticationRule.md +++ b/docset/winserver2019-ps/adfs/Set-AdfsAdditionalAuthenticationRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsadditionalauthenticationrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsadditionalauthenticationrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsAdditionalAuthenticationRule --- diff --git a/docset/winserver2019-ps/adfs/Set-AdfsAlternateTlsClientBinding.md b/docset/winserver2019-ps/adfs/Set-AdfsAlternateTlsClientBinding.md index 63cb32bd27..d2a49e703c 100644 --- a/docset/winserver2019-ps/adfs/Set-AdfsAlternateTlsClientBinding.md +++ b/docset/winserver2019-ps/adfs/Set-AdfsAlternateTlsClientBinding.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsalternatetlsclientbinding?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsalternatetlsclientbinding?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsAlternateTlsClientBinding --- diff --git a/docset/winserver2019-ps/adfs/Set-AdfsApplicationGroup.md b/docset/winserver2019-ps/adfs/Set-AdfsApplicationGroup.md index e43c94a253..0284b6fe2a 100644 --- a/docset/winserver2019-ps/adfs/Set-AdfsApplicationGroup.md +++ b/docset/winserver2019-ps/adfs/Set-AdfsApplicationGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsapplicationgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsapplicationgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsApplicationGroup --- diff --git a/docset/winserver2019-ps/adfs/Set-AdfsApplicationPermission.md b/docset/winserver2019-ps/adfs/Set-AdfsApplicationPermission.md index 1b9448cefa..1aaae6d084 100644 --- a/docset/winserver2019-ps/adfs/Set-AdfsApplicationPermission.md +++ b/docset/winserver2019-ps/adfs/Set-AdfsApplicationPermission.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsapplicationpermission?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsapplicationpermission?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsApplicationPermission --- diff --git a/docset/winserver2019-ps/adfs/Set-AdfsAttributeStore.md b/docset/winserver2019-ps/adfs/Set-AdfsAttributeStore.md index 59defc6256..5a73cbc5f5 100644 --- a/docset/winserver2019-ps/adfs/Set-AdfsAttributeStore.md +++ b/docset/winserver2019-ps/adfs/Set-AdfsAttributeStore.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsattributestore?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsattributestore?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsAttributeStore --- diff --git a/docset/winserver2019-ps/adfs/Set-AdfsAuthenticationProviderWebContent.md b/docset/winserver2019-ps/adfs/Set-AdfsAuthenticationProviderWebContent.md index 57a6f1362f..6a21a758ce 100644 --- a/docset/winserver2019-ps/adfs/Set-AdfsAuthenticationProviderWebContent.md +++ b/docset/winserver2019-ps/adfs/Set-AdfsAuthenticationProviderWebContent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsauthenticationproviderwebcontent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsauthenticationproviderwebcontent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsAuthenticationProviderWebContent --- diff --git a/docset/winserver2019-ps/adfs/Set-AdfsAzureMfaTenant.md b/docset/winserver2019-ps/adfs/Set-AdfsAzureMfaTenant.md index 5503911f89..d8e0a6c71b 100644 --- a/docset/winserver2019-ps/adfs/Set-AdfsAzureMfaTenant.md +++ b/docset/winserver2019-ps/adfs/Set-AdfsAzureMfaTenant.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsazuremfatenant?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsazuremfatenant?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsAzureMfaTenant --- diff --git a/docset/winserver2019-ps/adfs/Set-AdfsCertSharingContainer.md b/docset/winserver2019-ps/adfs/Set-AdfsCertSharingContainer.md index 3d00069e10..f48ea3b9bc 100644 --- a/docset/winserver2019-ps/adfs/Set-AdfsCertSharingContainer.md +++ b/docset/winserver2019-ps/adfs/Set-AdfsCertSharingContainer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfscertsharingcontainer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfscertsharingcontainer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsCertSharingContainer --- diff --git a/docset/winserver2019-ps/adfs/Set-AdfsCertificate.md b/docset/winserver2019-ps/adfs/Set-AdfsCertificate.md index 260429dd77..d7aaa5c7c1 100644 --- a/docset/winserver2019-ps/adfs/Set-AdfsCertificate.md +++ b/docset/winserver2019-ps/adfs/Set-AdfsCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfscertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfscertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsCertificate --- diff --git a/docset/winserver2019-ps/adfs/Set-AdfsCertificateAuthority.md b/docset/winserver2019-ps/adfs/Set-AdfsCertificateAuthority.md index b2d417753a..685badde70 100644 --- a/docset/winserver2019-ps/adfs/Set-AdfsCertificateAuthority.md +++ b/docset/winserver2019-ps/adfs/Set-AdfsCertificateAuthority.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfscertificateauthority?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfscertificateauthority?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsCertificateAuthority --- diff --git a/docset/winserver2019-ps/adfs/Set-AdfsClaimDescription.md b/docset/winserver2019-ps/adfs/Set-AdfsClaimDescription.md index 950b5bf540..c53b2eae24 100644 --- a/docset/winserver2019-ps/adfs/Set-AdfsClaimDescription.md +++ b/docset/winserver2019-ps/adfs/Set-AdfsClaimDescription.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsclaimdescription?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsclaimdescription?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsClaimDescription --- diff --git a/docset/winserver2019-ps/adfs/Set-AdfsClaimsProviderTrust.md b/docset/winserver2019-ps/adfs/Set-AdfsClaimsProviderTrust.md index cf317c03ce..01c003694d 100644 --- a/docset/winserver2019-ps/adfs/Set-AdfsClaimsProviderTrust.md +++ b/docset/winserver2019-ps/adfs/Set-AdfsClaimsProviderTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsclaimsprovidertrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsclaimsprovidertrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsClaimsProviderTrust --- diff --git a/docset/winserver2019-ps/adfs/Set-AdfsClient.md b/docset/winserver2019-ps/adfs/Set-AdfsClient.md index 1c3edd9031..9c5ca2cb7d 100644 --- a/docset/winserver2019-ps/adfs/Set-AdfsClient.md +++ b/docset/winserver2019-ps/adfs/Set-AdfsClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 09/19/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsClient --- diff --git a/docset/winserver2019-ps/adfs/Set-AdfsDeviceRegistration.md b/docset/winserver2019-ps/adfs/Set-AdfsDeviceRegistration.md index 68ba5fb65c..888e59e70b 100644 --- a/docset/winserver2019-ps/adfs/Set-AdfsDeviceRegistration.md +++ b/docset/winserver2019-ps/adfs/Set-AdfsDeviceRegistration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsdeviceregistration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsdeviceregistration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsDeviceRegistration --- diff --git a/docset/winserver2019-ps/adfs/Set-AdfsDeviceRegistrationUpnSuffix.md b/docset/winserver2019-ps/adfs/Set-AdfsDeviceRegistrationUpnSuffix.md index ddd39a92c9..78ab1a797a 100644 --- a/docset/winserver2019-ps/adfs/Set-AdfsDeviceRegistrationUpnSuffix.md +++ b/docset/winserver2019-ps/adfs/Set-AdfsDeviceRegistrationUpnSuffix.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsdeviceregistrationupnsuffix?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsdeviceregistrationupnsuffix?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsDeviceRegistrationUpnSuffix --- diff --git a/docset/winserver2019-ps/adfs/Set-AdfsEndpoint.md b/docset/winserver2019-ps/adfs/Set-AdfsEndpoint.md index 199c5dc948..50bc2356c3 100644 --- a/docset/winserver2019-ps/adfs/Set-AdfsEndpoint.md +++ b/docset/winserver2019-ps/adfs/Set-AdfsEndpoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsendpoint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsendpoint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsEndpoint --- diff --git a/docset/winserver2019-ps/adfs/Set-AdfsFarmInformation.md b/docset/winserver2019-ps/adfs/Set-AdfsFarmInformation.md index f0cd7b4a46..a0a0c23350 100644 --- a/docset/winserver2019-ps/adfs/Set-AdfsFarmInformation.md +++ b/docset/winserver2019-ps/adfs/Set-AdfsFarmInformation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsfarminformation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsfarminformation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsFarmInformation --- diff --git a/docset/winserver2019-ps/adfs/Set-AdfsGlobalAuthenticationPolicy.md b/docset/winserver2019-ps/adfs/Set-AdfsGlobalAuthenticationPolicy.md index c3befc61ae..80977bfa13 100644 --- a/docset/winserver2019-ps/adfs/Set-AdfsGlobalAuthenticationPolicy.md +++ b/docset/winserver2019-ps/adfs/Set-AdfsGlobalAuthenticationPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsglobalauthenticationpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsglobalauthenticationpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsGlobalAuthenticationPolicy --- diff --git a/docset/winserver2019-ps/adfs/Set-AdfsGlobalWebContent.md b/docset/winserver2019-ps/adfs/Set-AdfsGlobalWebContent.md index 14e3bcba9d..1d2a0e8c5f 100644 --- a/docset/winserver2019-ps/adfs/Set-AdfsGlobalWebContent.md +++ b/docset/winserver2019-ps/adfs/Set-AdfsGlobalWebContent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsglobalwebcontent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsglobalwebcontent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsGlobalWebContent --- diff --git a/docset/winserver2019-ps/adfs/Set-AdfsLocalClaimsProviderTrust.md b/docset/winserver2019-ps/adfs/Set-AdfsLocalClaimsProviderTrust.md index 2caadb70ef..b5ccd5cd25 100644 --- a/docset/winserver2019-ps/adfs/Set-AdfsLocalClaimsProviderTrust.md +++ b/docset/winserver2019-ps/adfs/Set-AdfsLocalClaimsProviderTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfslocalclaimsprovidertrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfslocalclaimsprovidertrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsLocalClaimsProviderTrust --- diff --git a/docset/winserver2019-ps/adfs/Set-AdfsNativeClientApplication.md b/docset/winserver2019-ps/adfs/Set-AdfsNativeClientApplication.md index 3309d9bf86..13ab834bd8 100644 --- a/docset/winserver2019-ps/adfs/Set-AdfsNativeClientApplication.md +++ b/docset/winserver2019-ps/adfs/Set-AdfsNativeClientApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 09/19/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsnativeclientapplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsnativeclientapplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsNativeClientApplication --- diff --git a/docset/winserver2019-ps/adfs/Set-AdfsNonClaimsAwareRelyingPartyTrust.md b/docset/winserver2019-ps/adfs/Set-AdfsNonClaimsAwareRelyingPartyTrust.md index bb86d9e1b7..cc72f5fe06 100644 --- a/docset/winserver2019-ps/adfs/Set-AdfsNonClaimsAwareRelyingPartyTrust.md +++ b/docset/winserver2019-ps/adfs/Set-AdfsNonClaimsAwareRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsnonclaimsawarerelyingpartytrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsnonclaimsawarerelyingpartytrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsNonClaimsAwareRelyingPartyTrust --- diff --git a/docset/winserver2019-ps/adfs/Set-AdfsProperties.md b/docset/winserver2019-ps/adfs/Set-AdfsProperties.md index a15dadf2dd..14daae710e 100644 --- a/docset/winserver2019-ps/adfs/Set-AdfsProperties.md +++ b/docset/winserver2019-ps/adfs/Set-AdfsProperties.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/02/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsproperties?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsproperties?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsProperties --- diff --git a/docset/winserver2019-ps/adfs/Set-AdfsRegistrationHosts.md b/docset/winserver2019-ps/adfs/Set-AdfsRegistrationHosts.md index fd9de7b370..583ecb71fa 100644 --- a/docset/winserver2019-ps/adfs/Set-AdfsRegistrationHosts.md +++ b/docset/winserver2019-ps/adfs/Set-AdfsRegistrationHosts.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsregistrationhosts?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsregistrationhosts?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsRegistrationHosts --- diff --git a/docset/winserver2019-ps/adfs/Set-AdfsRelyingPartyTrust.md b/docset/winserver2019-ps/adfs/Set-AdfsRelyingPartyTrust.md index 5edb321c7a..929e4a082f 100644 --- a/docset/winserver2019-ps/adfs/Set-AdfsRelyingPartyTrust.md +++ b/docset/winserver2019-ps/adfs/Set-AdfsRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsrelyingpartytrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsrelyingpartytrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsRelyingPartyTrust --- diff --git a/docset/winserver2019-ps/adfs/Set-AdfsRelyingPartyWebContent.md b/docset/winserver2019-ps/adfs/Set-AdfsRelyingPartyWebContent.md index dd9972c39f..6657a2f6ee 100644 --- a/docset/winserver2019-ps/adfs/Set-AdfsRelyingPartyWebContent.md +++ b/docset/winserver2019-ps/adfs/Set-AdfsRelyingPartyWebContent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsrelyingpartywebcontent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsrelyingpartywebcontent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsRelyingPartyWebContent --- diff --git a/docset/winserver2019-ps/adfs/Set-AdfsRelyingPartyWebTheme.md b/docset/winserver2019-ps/adfs/Set-AdfsRelyingPartyWebTheme.md index ebc07a9988..cf7615199f 100644 --- a/docset/winserver2019-ps/adfs/Set-AdfsRelyingPartyWebTheme.md +++ b/docset/winserver2019-ps/adfs/Set-AdfsRelyingPartyWebTheme.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsrelyingpartywebtheme?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsrelyingpartywebtheme?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsRelyingPartyWebTheme --- diff --git a/docset/winserver2019-ps/adfs/Set-AdfsScopeDescription.md b/docset/winserver2019-ps/adfs/Set-AdfsScopeDescription.md index 734459c848..9b198fe2c5 100644 --- a/docset/winserver2019-ps/adfs/Set-AdfsScopeDescription.md +++ b/docset/winserver2019-ps/adfs/Set-AdfsScopeDescription.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsscopedescription?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsscopedescription?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsScopeDescription --- diff --git a/docset/winserver2019-ps/adfs/Set-AdfsServerApplication.md b/docset/winserver2019-ps/adfs/Set-AdfsServerApplication.md index 232b0c66cf..7d9389db4e 100644 --- a/docset/winserver2019-ps/adfs/Set-AdfsServerApplication.md +++ b/docset/winserver2019-ps/adfs/Set-AdfsServerApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 09/19/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsserverapplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsserverapplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsServerApplication --- diff --git a/docset/winserver2019-ps/adfs/Set-AdfsSslCertificate.md b/docset/winserver2019-ps/adfs/Set-AdfsSslCertificate.md index 0ff617ec56..333717d851 100644 --- a/docset/winserver2019-ps/adfs/Set-AdfsSslCertificate.md +++ b/docset/winserver2019-ps/adfs/Set-AdfsSslCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfssslcertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfssslcertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsSslCertificate --- diff --git a/docset/winserver2019-ps/adfs/Set-AdfsSyncProperties.md b/docset/winserver2019-ps/adfs/Set-AdfsSyncProperties.md index 4764f3128e..22e54bcb81 100644 --- a/docset/winserver2019-ps/adfs/Set-AdfsSyncProperties.md +++ b/docset/winserver2019-ps/adfs/Set-AdfsSyncProperties.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfssyncproperties?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfssyncproperties?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsSyncProperties --- diff --git a/docset/winserver2019-ps/adfs/Set-AdfsTrustedFederationPartner.md b/docset/winserver2019-ps/adfs/Set-AdfsTrustedFederationPartner.md index 7b10d90f33..f68310066e 100644 --- a/docset/winserver2019-ps/adfs/Set-AdfsTrustedFederationPartner.md +++ b/docset/winserver2019-ps/adfs/Set-AdfsTrustedFederationPartner.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfstrustedfederationpartner?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfstrustedfederationpartner?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsTrustedFederationPartner --- diff --git a/docset/winserver2019-ps/adfs/Set-AdfsWebApiApplication.md b/docset/winserver2019-ps/adfs/Set-AdfsWebApiApplication.md index 8ce4159051..354c4fe615 100644 --- a/docset/winserver2019-ps/adfs/Set-AdfsWebApiApplication.md +++ b/docset/winserver2019-ps/adfs/Set-AdfsWebApiApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfswebapiapplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfswebapiapplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsWebApiApplication --- diff --git a/docset/winserver2019-ps/adfs/Set-AdfsWebApplicationProxyRelyingPartyTrust.md b/docset/winserver2019-ps/adfs/Set-AdfsWebApplicationProxyRelyingPartyTrust.md index d89458f50a..2f0c3a1cc8 100644 --- a/docset/winserver2019-ps/adfs/Set-AdfsWebApplicationProxyRelyingPartyTrust.md +++ b/docset/winserver2019-ps/adfs/Set-AdfsWebApplicationProxyRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfswebapplicationproxyrelyingpartytrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfswebapplicationproxyrelyingpartytrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsWebApplicationProxyRelyingPartyTrust --- diff --git a/docset/winserver2019-ps/adfs/Set-AdfsWebConfig.md b/docset/winserver2019-ps/adfs/Set-AdfsWebConfig.md index ba5530fdae..340ef50b65 100644 --- a/docset/winserver2019-ps/adfs/Set-AdfsWebConfig.md +++ b/docset/winserver2019-ps/adfs/Set-AdfsWebConfig.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfswebconfig?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfswebconfig?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsWebConfig --- diff --git a/docset/winserver2019-ps/adfs/Set-AdfsWebTheme.md b/docset/winserver2019-ps/adfs/Set-AdfsWebTheme.md index 6393975b40..f5ce71630b 100644 --- a/docset/winserver2019-ps/adfs/Set-AdfsWebTheme.md +++ b/docset/winserver2019-ps/adfs/Set-AdfsWebTheme.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfswebtheme?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfswebtheme?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsWebTheme --- diff --git a/docset/winserver2019-ps/adfs/Test-AdfsFarmBehaviorLevelRaise.md b/docset/winserver2019-ps/adfs/Test-AdfsFarmBehaviorLevelRaise.md index 215536f533..a5a2fb85ec 100644 --- a/docset/winserver2019-ps/adfs/Test-AdfsFarmBehaviorLevelRaise.md +++ b/docset/winserver2019-ps/adfs/Test-AdfsFarmBehaviorLevelRaise.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Deployment.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/test-adfsfarmbehaviorlevelraise?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/test-adfsfarmbehaviorlevelraise?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-AdfsFarmBehaviorLevelRaise --- diff --git a/docset/winserver2019-ps/adfs/Test-AdfsFarmBehaviorLevelRestore.md b/docset/winserver2019-ps/adfs/Test-AdfsFarmBehaviorLevelRestore.md index bd80f5dcee..c7307f2d8c 100644 --- a/docset/winserver2019-ps/adfs/Test-AdfsFarmBehaviorLevelRestore.md +++ b/docset/winserver2019-ps/adfs/Test-AdfsFarmBehaviorLevelRestore.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Deployment.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/test-adfsfarmbehaviorlevelrestore?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/test-adfsfarmbehaviorlevelrestore?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-AdfsFarmBehaviorLevelRestore --- diff --git a/docset/winserver2019-ps/adfs/Test-AdfsFarmInstallation.md b/docset/winserver2019-ps/adfs/Test-AdfsFarmInstallation.md index 77a3d81d36..8d420aced3 100644 --- a/docset/winserver2019-ps/adfs/Test-AdfsFarmInstallation.md +++ b/docset/winserver2019-ps/adfs/Test-AdfsFarmInstallation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Deployment.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/test-adfsfarminstallation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/test-adfsfarminstallation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-AdfsFarmInstallation --- diff --git a/docset/winserver2019-ps/adfs/Test-AdfsFarmJoin.md b/docset/winserver2019-ps/adfs/Test-AdfsFarmJoin.md index 4c5b3542bf..0706eaa61a 100644 --- a/docset/winserver2019-ps/adfs/Test-AdfsFarmJoin.md +++ b/docset/winserver2019-ps/adfs/Test-AdfsFarmJoin.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Deployment.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/test-adfsfarmjoin?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/test-adfsfarmjoin?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-AdfsFarmJoin --- diff --git a/docset/winserver2019-ps/adfs/Unregister-AdfsAuthenticationProvider.md b/docset/winserver2019-ps/adfs/Unregister-AdfsAuthenticationProvider.md index f329bfdaa8..cd641deaf6 100644 --- a/docset/winserver2019-ps/adfs/Unregister-AdfsAuthenticationProvider.md +++ b/docset/winserver2019-ps/adfs/Unregister-AdfsAuthenticationProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/unregister-adfsauthenticationprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/unregister-adfsauthenticationprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unregister-AdfsAuthenticationProvider --- diff --git a/docset/winserver2019-ps/adfs/Update-AdfsCertificate.md b/docset/winserver2019-ps/adfs/Update-AdfsCertificate.md index 6024d84370..b848379265 100644 --- a/docset/winserver2019-ps/adfs/Update-AdfsCertificate.md +++ b/docset/winserver2019-ps/adfs/Update-AdfsCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/update-adfscertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/update-adfscertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-AdfsCertificate --- diff --git a/docset/winserver2019-ps/adfs/Update-AdfsClaimsProviderTrust.md b/docset/winserver2019-ps/adfs/Update-AdfsClaimsProviderTrust.md index 2b8bc53003..c95846d418 100644 --- a/docset/winserver2019-ps/adfs/Update-AdfsClaimsProviderTrust.md +++ b/docset/winserver2019-ps/adfs/Update-AdfsClaimsProviderTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/update-adfsclaimsprovidertrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/update-adfsclaimsprovidertrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-AdfsClaimsProviderTrust --- diff --git a/docset/winserver2019-ps/adfs/Update-AdfsRelyingPartyTrust.md b/docset/winserver2019-ps/adfs/Update-AdfsRelyingPartyTrust.md index 4cca171585..fcc03fe36c 100644 --- a/docset/winserver2019-ps/adfs/Update-AdfsRelyingPartyTrust.md +++ b/docset/winserver2019-ps/adfs/Update-AdfsRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/update-adfsrelyingpartytrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/update-adfsrelyingpartytrust?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-AdfsRelyingPartyTrust --- diff --git a/docset/winserver2019-ps/adrms/Install-ADRMS.md b/docset/winserver2019-ps/adrms/Install-ADRMS.md index 00d813e953..15a6c360c2 100644 --- a/docset/winserver2019-ps/adrms/Install-ADRMS.md +++ b/docset/winserver2019-ps/adrms/Install-ADRMS.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Configuration.dll-Help.xml Module Name: ADRMS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrms/install-adrms?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrms/install-adrms?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-ADRMS --- diff --git a/docset/winserver2019-ps/adrms/Uninstall-ADRMS.md b/docset/winserver2019-ps/adrms/Uninstall-ADRMS.md index 125d249966..79d85fbe43 100644 --- a/docset/winserver2019-ps/adrms/Uninstall-ADRMS.md +++ b/docset/winserver2019-ps/adrms/Uninstall-ADRMS.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Configuration.dll-Help.xml Module Name: ADRMS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrms/uninstall-adrms?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrms/uninstall-adrms?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-ADRMS --- diff --git a/docset/winserver2019-ps/adrms/Update-ADRMS.md b/docset/winserver2019-ps/adrms/Update-ADRMS.md index f4b8b58659..5b7bae0442 100644 --- a/docset/winserver2019-ps/adrms/Update-ADRMS.md +++ b/docset/winserver2019-ps/adrms/Update-ADRMS.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Configuration.dll-Help.xml Module Name: ADRMS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrms/update-adrms?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrms/update-adrms?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-ADRMS --- diff --git a/docset/winserver2019-ps/adrmsadmin/Export-RmsReportDefinitionLanguage.md b/docset/winserver2019-ps/adrmsadmin/Export-RmsReportDefinitionLanguage.md index a3840b9171..b8aaa43a49 100644 --- a/docset/winserver2019-ps/adrmsadmin/Export-RmsReportDefinitionLanguage.md +++ b/docset/winserver2019-ps/adrmsadmin/Export-RmsReportDefinitionLanguage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/export-rmsreportdefinitionlanguage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/export-rmsreportdefinitionlanguage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-RmsReportDefinitionLanguage --- diff --git a/docset/winserver2019-ps/adrmsadmin/Export-RmsTPD.md b/docset/winserver2019-ps/adrmsadmin/Export-RmsTPD.md index 227aa125a3..4d04a67a06 100644 --- a/docset/winserver2019-ps/adrmsadmin/Export-RmsTPD.md +++ b/docset/winserver2019-ps/adrmsadmin/Export-RmsTPD.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/export-rmstpd?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/export-rmstpd?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-RmsTPD --- diff --git a/docset/winserver2019-ps/adrmsadmin/Export-RmsTUD.md b/docset/winserver2019-ps/adrmsadmin/Export-RmsTUD.md index a2ca9d58d4..35cc13c588 100644 --- a/docset/winserver2019-ps/adrmsadmin/Export-RmsTUD.md +++ b/docset/winserver2019-ps/adrmsadmin/Export-RmsTUD.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/export-rmstud?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/export-rmstud?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-RmsTUD --- diff --git a/docset/winserver2019-ps/adrmsadmin/Get-RmsCertChain.md b/docset/winserver2019-ps/adrmsadmin/Get-RmsCertChain.md index 238e6bc947..528dfe816b 100644 --- a/docset/winserver2019-ps/adrmsadmin/Get-RmsCertChain.md +++ b/docset/winserver2019-ps/adrmsadmin/Get-RmsCertChain.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/get-rmscertchain?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/get-rmscertchain?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RmsCertChain --- diff --git a/docset/winserver2019-ps/adrmsadmin/Get-RmsCertInfo.md b/docset/winserver2019-ps/adrmsadmin/Get-RmsCertInfo.md index e2a0b0a4f7..1be23a5212 100644 --- a/docset/winserver2019-ps/adrmsadmin/Get-RmsCertInfo.md +++ b/docset/winserver2019-ps/adrmsadmin/Get-RmsCertInfo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/get-rmscertinfo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/get-rmscertinfo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RmsCertInfo --- diff --git a/docset/winserver2019-ps/adrmsadmin/Get-RmsChildCert.md b/docset/winserver2019-ps/adrmsadmin/Get-RmsChildCert.md index 27a72aeb4f..4def2c0eb3 100644 --- a/docset/winserver2019-ps/adrmsadmin/Get-RmsChildCert.md +++ b/docset/winserver2019-ps/adrmsadmin/Get-RmsChildCert.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/get-rmschildcert?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/get-rmschildcert?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RmsChildCert --- diff --git a/docset/winserver2019-ps/adrmsadmin/Get-RmsEncryptedIL.md b/docset/winserver2019-ps/adrmsadmin/Get-RmsEncryptedIL.md index c91aa80447..733ae5c2b7 100644 --- a/docset/winserver2019-ps/adrmsadmin/Get-RmsEncryptedIL.md +++ b/docset/winserver2019-ps/adrmsadmin/Get-RmsEncryptedIL.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/get-rmsencryptedil?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/get-rmsencryptedil?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RmsEncryptedIL --- diff --git a/docset/winserver2019-ps/adrmsadmin/Get-RmsRequestInfo.md b/docset/winserver2019-ps/adrmsadmin/Get-RmsRequestInfo.md index 97e0357030..72aa465e73 100644 --- a/docset/winserver2019-ps/adrmsadmin/Get-RmsRequestInfo.md +++ b/docset/winserver2019-ps/adrmsadmin/Get-RmsRequestInfo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/get-rmsrequestinfo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/get-rmsrequestinfo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RmsRequestInfo --- diff --git a/docset/winserver2019-ps/adrmsadmin/Get-RmsSvcAccount.md b/docset/winserver2019-ps/adrmsadmin/Get-RmsSvcAccount.md index 46bb1da0b6..d894588e01 100644 --- a/docset/winserver2019-ps/adrmsadmin/Get-RmsSvcAccount.md +++ b/docset/winserver2019-ps/adrmsadmin/Get-RmsSvcAccount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/get-rmssvcaccount?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/get-rmssvcaccount?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RmsSvcAccount --- diff --git a/docset/winserver2019-ps/adrmsadmin/Get-RmsSystemHealthReport.md b/docset/winserver2019-ps/adrmsadmin/Get-RmsSystemHealthReport.md index b435905ea5..862d685ebb 100644 --- a/docset/winserver2019-ps/adrmsadmin/Get-RmsSystemHealthReport.md +++ b/docset/winserver2019-ps/adrmsadmin/Get-RmsSystemHealthReport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/get-rmssystemhealthreport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/get-rmssystemhealthreport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RmsSystemHealthReport --- diff --git a/docset/winserver2019-ps/adrmsadmin/Get-RmsUserRequestReport.md b/docset/winserver2019-ps/adrmsadmin/Get-RmsUserRequestReport.md index 7e0dc487b9..4526f0bded 100644 --- a/docset/winserver2019-ps/adrmsadmin/Get-RmsUserRequestReport.md +++ b/docset/winserver2019-ps/adrmsadmin/Get-RmsUserRequestReport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/get-rmsuserrequestreport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/get-rmsuserrequestreport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RmsUserRequestReport --- diff --git a/docset/winserver2019-ps/adrmsadmin/Import-RmsTPD.md b/docset/winserver2019-ps/adrmsadmin/Import-RmsTPD.md index 2fd65cafa7..411aabc2be 100644 --- a/docset/winserver2019-ps/adrmsadmin/Import-RmsTPD.md +++ b/docset/winserver2019-ps/adrmsadmin/Import-RmsTPD.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/import-rmstpd?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/import-rmstpd?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-RmsTPD --- diff --git a/docset/winserver2019-ps/adrmsadmin/Import-RmsTUD.md b/docset/winserver2019-ps/adrmsadmin/Import-RmsTUD.md index 7ecfc1a3f6..a8f310b2eb 100644 --- a/docset/winserver2019-ps/adrmsadmin/Import-RmsTUD.md +++ b/docset/winserver2019-ps/adrmsadmin/Import-RmsTUD.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/import-rmstud?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/import-rmstud?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-RmsTUD --- diff --git a/docset/winserver2019-ps/adrmsadmin/Initialize-RmsCryptoMode2.md b/docset/winserver2019-ps/adrmsadmin/Initialize-RmsCryptoMode2.md index d5286b3171..354934f7d4 100644 --- a/docset/winserver2019-ps/adrmsadmin/Initialize-RmsCryptoMode2.md +++ b/docset/winserver2019-ps/adrmsadmin/Initialize-RmsCryptoMode2.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/initialize-rmscryptomode2?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/initialize-rmscryptomode2?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Initialize-RmsCryptoMode2 --- diff --git a/docset/winserver2019-ps/adrmsadmin/Install-RmsMfgEnrollment.md b/docset/winserver2019-ps/adrmsadmin/Install-RmsMfgEnrollment.md index 1b66d86854..faa03fac3e 100644 --- a/docset/winserver2019-ps/adrmsadmin/Install-RmsMfgEnrollment.md +++ b/docset/winserver2019-ps/adrmsadmin/Install-RmsMfgEnrollment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/install-rmsmfgenrollment?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/install-rmsmfgenrollment?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-RmsMfgEnrollment --- diff --git a/docset/winserver2019-ps/adrmsadmin/Install-RmsMfgSupport.md b/docset/winserver2019-ps/adrmsadmin/Install-RmsMfgSupport.md index c8b9d9c635..2152eb169d 100644 --- a/docset/winserver2019-ps/adrmsadmin/Install-RmsMfgSupport.md +++ b/docset/winserver2019-ps/adrmsadmin/Install-RmsMfgSupport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/install-rmsmfgsupport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/install-rmsmfgsupport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-RmsMfgSupport --- diff --git a/docset/winserver2019-ps/adrmsadmin/Set-RmsSvcAccount.md b/docset/winserver2019-ps/adrmsadmin/Set-RmsSvcAccount.md index fdd40d28ef..ae6500ed6f 100644 --- a/docset/winserver2019-ps/adrmsadmin/Set-RmsSvcAccount.md +++ b/docset/winserver2019-ps/adrmsadmin/Set-RmsSvcAccount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/set-rmssvcaccount?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/set-rmssvcaccount?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RmsSvcAccount --- diff --git a/docset/winserver2019-ps/adrmsadmin/Uninstall-RmsMfgEnrollment.md b/docset/winserver2019-ps/adrmsadmin/Uninstall-RmsMfgEnrollment.md index 7220816251..c7b008657e 100644 --- a/docset/winserver2019-ps/adrmsadmin/Uninstall-RmsMfgEnrollment.md +++ b/docset/winserver2019-ps/adrmsadmin/Uninstall-RmsMfgEnrollment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/uninstall-rmsmfgenrollment?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/uninstall-rmsmfgenrollment?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-RmsMfgEnrollment --- diff --git a/docset/winserver2019-ps/adrmsadmin/Uninstall-RmsMfgSupport.md b/docset/winserver2019-ps/adrmsadmin/Uninstall-RmsMfgSupport.md index ce138489f2..db8fbacbab 100644 --- a/docset/winserver2019-ps/adrmsadmin/Uninstall-RmsMfgSupport.md +++ b/docset/winserver2019-ps/adrmsadmin/Uninstall-RmsMfgSupport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/uninstall-rmsmfgsupport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/uninstall-rmsmfgsupport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-RmsMfgSupport --- diff --git a/docset/winserver2019-ps/adrmsadmin/Update-RmsCluster.md b/docset/winserver2019-ps/adrmsadmin/Update-RmsCluster.md index a38d9cf4c3..b836353316 100644 --- a/docset/winserver2019-ps/adrmsadmin/Update-RmsCluster.md +++ b/docset/winserver2019-ps/adrmsadmin/Update-RmsCluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/update-rmscluster?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/update-rmscluster?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-RmsCluster --- diff --git a/docset/winserver2019-ps/adrmsadmin/Update-RmsMfgEnrollment.md b/docset/winserver2019-ps/adrmsadmin/Update-RmsMfgEnrollment.md index 8e167c8d84..11689b9a85 100644 --- a/docset/winserver2019-ps/adrmsadmin/Update-RmsMfgEnrollment.md +++ b/docset/winserver2019-ps/adrmsadmin/Update-RmsMfgEnrollment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/update-rmsmfgenrollment?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/update-rmsmfgenrollment?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-RmsMfgEnrollment --- diff --git a/docset/winserver2019-ps/appbackgroundtask/Disable-AppBackgroundTaskDiagnosticLog.md b/docset/winserver2019-ps/appbackgroundtask/Disable-AppBackgroundTaskDiagnosticLog.md index 6cb5de40e4..b20bf527c6 100644 --- a/docset/winserver2019-ps/appbackgroundtask/Disable-AppBackgroundTaskDiagnosticLog.md +++ b/docset/winserver2019-ps/appbackgroundtask/Disable-AppBackgroundTaskDiagnosticLog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: microsoft.windows.appbackgroundtask.commands.dll-Help.xml Module Name: AppBackgroundTask ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appbackgroundtask/disable-appbackgroundtaskdiagnosticlog?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appbackgroundtask/disable-appbackgroundtaskdiagnosticlog?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-AppBackgroundTaskDiagnosticLog --- diff --git a/docset/winserver2019-ps/appbackgroundtask/Enable-AppBackgroundTaskDiagnosticLog.md b/docset/winserver2019-ps/appbackgroundtask/Enable-AppBackgroundTaskDiagnosticLog.md index 867a51f7a0..2d2bf66733 100644 --- a/docset/winserver2019-ps/appbackgroundtask/Enable-AppBackgroundTaskDiagnosticLog.md +++ b/docset/winserver2019-ps/appbackgroundtask/Enable-AppBackgroundTaskDiagnosticLog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: microsoft.windows.appbackgroundtask.commands.dll-Help.xml Module Name: AppBackgroundTask ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appbackgroundtask/enable-appbackgroundtaskdiagnosticlog?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appbackgroundtask/enable-appbackgroundtaskdiagnosticlog?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-AppBackgroundTaskDiagnosticLog --- diff --git a/docset/winserver2019-ps/appbackgroundtask/Get-AppBackgroundTask.md b/docset/winserver2019-ps/appbackgroundtask/Get-AppBackgroundTask.md index daa5ae91e5..fc624a2524 100644 --- a/docset/winserver2019-ps/appbackgroundtask/Get-AppBackgroundTask.md +++ b/docset/winserver2019-ps/appbackgroundtask/Get-AppBackgroundTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BackgroundTask.cdxml-help.xml Module Name: AppBackgroundTask ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appbackgroundtask/get-appbackgroundtask?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appbackgroundtask/get-appbackgroundtask?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppBackgroundTask --- diff --git a/docset/winserver2019-ps/appbackgroundtask/Set-AppBackgroundTaskResourcePolicy.md b/docset/winserver2019-ps/appbackgroundtask/Set-AppBackgroundTaskResourcePolicy.md index 95a49c29bf..e65f1353fd 100644 --- a/docset/winserver2019-ps/appbackgroundtask/Set-AppBackgroundTaskResourcePolicy.md +++ b/docset/winserver2019-ps/appbackgroundtask/Set-AppBackgroundTaskResourcePolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: microsoft.windows.appbackgroundtask.commands.dll-Help.xml Module Name: AppBackgroundTask ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appbackgroundtask/set-appbackgroundtaskresourcepolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appbackgroundtask/set-appbackgroundtaskresourcepolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AppBackgroundTaskResourcePolicy --- diff --git a/docset/winserver2019-ps/appbackgroundtask/Start-AppBackgroundTask.md b/docset/winserver2019-ps/appbackgroundtask/Start-AppBackgroundTask.md index 27466fafe7..20b546078b 100644 --- a/docset/winserver2019-ps/appbackgroundtask/Start-AppBackgroundTask.md +++ b/docset/winserver2019-ps/appbackgroundtask/Start-AppBackgroundTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BackgroundTask.cdxml-help.xml Module Name: AppBackgroundTask ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appbackgroundtask/start-appbackgroundtask?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appbackgroundtask/start-appbackgroundtask?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-AppBackgroundTask --- diff --git a/docset/winserver2019-ps/appbackgroundtask/Unregister-AppBackgroundTask.md b/docset/winserver2019-ps/appbackgroundtask/Unregister-AppBackgroundTask.md index d3c85f159a..51b445c77a 100644 --- a/docset/winserver2019-ps/appbackgroundtask/Unregister-AppBackgroundTask.md +++ b/docset/winserver2019-ps/appbackgroundtask/Unregister-AppBackgroundTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BackgroundTask.cdxml-help.xml Module Name: AppBackgroundTask ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appbackgroundtask/unregister-appbackgroundtask?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appbackgroundtask/unregister-appbackgroundtask?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unregister-AppBackgroundTask --- diff --git a/docset/winserver2019-ps/applocker/Get-AppLockerFileInformation.md b/docset/winserver2019-ps/applocker/Get-AppLockerFileInformation.md index c6c80b119b..fd199aea99 100644 --- a/docset/winserver2019-ps/applocker/Get-AppLockerFileInformation.md +++ b/docset/winserver2019-ps/applocker/Get-AppLockerFileInformation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Security.ApplicationId.PolicyManagement.Cmdlets.dll-Help.xml Module Name: AppLocker ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/applocker/get-applockerfileinformation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/applocker/get-applockerfileinformation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppLockerFileInformation --- diff --git a/docset/winserver2019-ps/applocker/Get-AppLockerPolicy.md b/docset/winserver2019-ps/applocker/Get-AppLockerPolicy.md index 22cee07703..452d6b4556 100644 --- a/docset/winserver2019-ps/applocker/Get-AppLockerPolicy.md +++ b/docset/winserver2019-ps/applocker/Get-AppLockerPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Security.ApplicationId.PolicyManagement.Cmdlets.dll-Help.xml Module Name: AppLocker ms.date: 09/28/2020 -online version: https://docs.microsoft.com/powershell/module/applocker/get-applockerpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/applocker/get-applockerpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppLockerPolicy --- diff --git a/docset/winserver2019-ps/applocker/New-AppLockerPolicy.md b/docset/winserver2019-ps/applocker/New-AppLockerPolicy.md index df622808f5..4a7965263c 100644 --- a/docset/winserver2019-ps/applocker/New-AppLockerPolicy.md +++ b/docset/winserver2019-ps/applocker/New-AppLockerPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Security.ApplicationId.PolicyManagement.Cmdlets.dll-Help.xml Module Name: AppLocker ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/applocker/new-applockerpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/applocker/new-applockerpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-AppLockerPolicy --- diff --git a/docset/winserver2019-ps/applocker/Set-AppLockerPolicy.md b/docset/winserver2019-ps/applocker/Set-AppLockerPolicy.md index e1bdaacf32..57d196d14a 100644 --- a/docset/winserver2019-ps/applocker/Set-AppLockerPolicy.md +++ b/docset/winserver2019-ps/applocker/Set-AppLockerPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Security.ApplicationId.PolicyManagement.Cmdlets.dll-Help.xml Module Name: AppLocker ms.date: 09/28/2020 -online version: https://docs.microsoft.com/powershell/module/applocker/set-applockerpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/applocker/set-applockerpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AppLockerPolicy --- diff --git a/docset/winserver2019-ps/applocker/Test-AppLockerPolicy.md b/docset/winserver2019-ps/applocker/Test-AppLockerPolicy.md index bc57457e05..ebff798431 100644 --- a/docset/winserver2019-ps/applocker/Test-AppLockerPolicy.md +++ b/docset/winserver2019-ps/applocker/Test-AppLockerPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Security.ApplicationId.PolicyManagement.Cmdlets.dll-Help.xml Module Name: AppLocker ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/applocker/test-applockerpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/applocker/test-applockerpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-AppLockerPolicy --- diff --git a/docset/winserver2019-ps/appvclient/Add-AppvClientConnectionGroup.md b/docset/winserver2019-ps/appvclient/Add-AppvClientConnectionGroup.md index 18caf7c40c..59e1bf2c32 100644 --- a/docset/winserver2019-ps/appvclient/Add-AppvClientConnectionGroup.md +++ b/docset/winserver2019-ps/appvclient/Add-AppvClientConnectionGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/add-appvclientconnectiongroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/add-appvclientconnectiongroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AppvClientConnectionGroup --- diff --git a/docset/winserver2019-ps/appvclient/Add-AppvClientPackage.md b/docset/winserver2019-ps/appvclient/Add-AppvClientPackage.md index 57a0083b72..36c4ad30e1 100644 --- a/docset/winserver2019-ps/appvclient/Add-AppvClientPackage.md +++ b/docset/winserver2019-ps/appvclient/Add-AppvClientPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/add-appvclientpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/add-appvclientpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AppvClientPackage --- diff --git a/docset/winserver2019-ps/appvclient/Add-AppvPublishingServer.md b/docset/winserver2019-ps/appvclient/Add-AppvPublishingServer.md index 1b37bbcb4b..758dfea9d2 100644 --- a/docset/winserver2019-ps/appvclient/Add-AppvPublishingServer.md +++ b/docset/winserver2019-ps/appvclient/Add-AppvPublishingServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/add-appvpublishingserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/add-appvpublishingserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AppvPublishingServer --- diff --git a/docset/winserver2019-ps/appvclient/Disable-Appv.md b/docset/winserver2019-ps/appvclient/Disable-Appv.md index 52c9bed36e..9e7c3b0209 100644 --- a/docset/winserver2019-ps/appvclient/Disable-Appv.md +++ b/docset/winserver2019-ps/appvclient/Disable-Appv.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/disable-appv?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/disable-appv?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-Appv --- diff --git a/docset/winserver2019-ps/appvclient/Disable-AppvClientConnectionGroup.md b/docset/winserver2019-ps/appvclient/Disable-AppvClientConnectionGroup.md index 423f36828a..32d7ae73cf 100644 --- a/docset/winserver2019-ps/appvclient/Disable-AppvClientConnectionGroup.md +++ b/docset/winserver2019-ps/appvclient/Disable-AppvClientConnectionGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/disable-appvclientconnectiongroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/disable-appvclientconnectiongroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-AppvClientConnectionGroup --- diff --git a/docset/winserver2019-ps/appvclient/Enable-Appv.md b/docset/winserver2019-ps/appvclient/Enable-Appv.md index a6d64dbf3b..2d516a0818 100644 --- a/docset/winserver2019-ps/appvclient/Enable-Appv.md +++ b/docset/winserver2019-ps/appvclient/Enable-Appv.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/enable-appv?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/enable-appv?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-Appv --- diff --git a/docset/winserver2019-ps/appvclient/Enable-AppvClientConnectionGroup.md b/docset/winserver2019-ps/appvclient/Enable-AppvClientConnectionGroup.md index 3a4f9e951d..a529331076 100644 --- a/docset/winserver2019-ps/appvclient/Enable-AppvClientConnectionGroup.md +++ b/docset/winserver2019-ps/appvclient/Enable-AppvClientConnectionGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/enable-appvclientconnectiongroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/enable-appvclientconnectiongroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-AppvClientConnectionGroup --- diff --git a/docset/winserver2019-ps/appvclient/Get-AppvClientApplication.md b/docset/winserver2019-ps/appvclient/Get-AppvClientApplication.md index 10f4911119..8b844e1d04 100644 --- a/docset/winserver2019-ps/appvclient/Get-AppvClientApplication.md +++ b/docset/winserver2019-ps/appvclient/Get-AppvClientApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/get-appvclientapplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/get-appvclientapplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppvClientApplication --- diff --git a/docset/winserver2019-ps/appvclient/Get-AppvClientConfiguration.md b/docset/winserver2019-ps/appvclient/Get-AppvClientConfiguration.md index b1538832c6..0865016265 100644 --- a/docset/winserver2019-ps/appvclient/Get-AppvClientConfiguration.md +++ b/docset/winserver2019-ps/appvclient/Get-AppvClientConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/get-appvclientconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/get-appvclientconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppvClientConfiguration --- diff --git a/docset/winserver2019-ps/appvclient/Get-AppvClientConnectionGroup.md b/docset/winserver2019-ps/appvclient/Get-AppvClientConnectionGroup.md index a4217d0703..8cdb313522 100644 --- a/docset/winserver2019-ps/appvclient/Get-AppvClientConnectionGroup.md +++ b/docset/winserver2019-ps/appvclient/Get-AppvClientConnectionGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/get-appvclientconnectiongroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/get-appvclientconnectiongroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppvClientConnectionGroup --- diff --git a/docset/winserver2019-ps/appvclient/Get-AppvClientMode.md b/docset/winserver2019-ps/appvclient/Get-AppvClientMode.md index 71b1d5b7e2..ae26937d73 100644 --- a/docset/winserver2019-ps/appvclient/Get-AppvClientMode.md +++ b/docset/winserver2019-ps/appvclient/Get-AppvClientMode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/get-appvclientmode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/get-appvclientmode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppvClientMode --- diff --git a/docset/winserver2019-ps/appvclient/Get-AppvClientPackage.md b/docset/winserver2019-ps/appvclient/Get-AppvClientPackage.md index 7e9378632b..4941c8e9c8 100644 --- a/docset/winserver2019-ps/appvclient/Get-AppvClientPackage.md +++ b/docset/winserver2019-ps/appvclient/Get-AppvClientPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/get-appvclientpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/get-appvclientpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppvClientPackage --- diff --git a/docset/winserver2019-ps/appvclient/Get-AppvPublishingServer.md b/docset/winserver2019-ps/appvclient/Get-AppvPublishingServer.md index 93f9e31752..f3b38f1fbb 100644 --- a/docset/winserver2019-ps/appvclient/Get-AppvPublishingServer.md +++ b/docset/winserver2019-ps/appvclient/Get-AppvPublishingServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/get-appvpublishingserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/get-appvpublishingserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppvPublishingServer --- diff --git a/docset/winserver2019-ps/appvclient/Get-AppvStatus.md b/docset/winserver2019-ps/appvclient/Get-AppvStatus.md index 33e963322b..fafd4645dc 100644 --- a/docset/winserver2019-ps/appvclient/Get-AppvStatus.md +++ b/docset/winserver2019-ps/appvclient/Get-AppvStatus.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/get-appvstatus?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/get-appvstatus?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppvStatus --- diff --git a/docset/winserver2019-ps/appvclient/Get-AppvVirtualProcess.md b/docset/winserver2019-ps/appvclient/Get-AppvVirtualProcess.md index 9daae94a23..ec6211772e 100644 --- a/docset/winserver2019-ps/appvclient/Get-AppvVirtualProcess.md +++ b/docset/winserver2019-ps/appvclient/Get-AppvVirtualProcess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: AppVClientCmdlets-help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/get-appvvirtualprocess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/get-appvvirtualprocess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppvVirtualProcess --- diff --git a/docset/winserver2019-ps/appvclient/Mount-AppvClientConnectionGroup.md b/docset/winserver2019-ps/appvclient/Mount-AppvClientConnectionGroup.md index 7ffa210da9..e9f299b6e4 100644 --- a/docset/winserver2019-ps/appvclient/Mount-AppvClientConnectionGroup.md +++ b/docset/winserver2019-ps/appvclient/Mount-AppvClientConnectionGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/mount-appvclientconnectiongroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/mount-appvclientconnectiongroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Mount-AppvClientConnectionGroup --- diff --git a/docset/winserver2019-ps/appvclient/Mount-AppvClientPackage.md b/docset/winserver2019-ps/appvclient/Mount-AppvClientPackage.md index 753c3a5194..11b04e1b53 100644 --- a/docset/winserver2019-ps/appvclient/Mount-AppvClientPackage.md +++ b/docset/winserver2019-ps/appvclient/Mount-AppvClientPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/mount-appvclientpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/mount-appvclientpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Mount-AppvClientPackage --- diff --git a/docset/winserver2019-ps/appvclient/Publish-AppvClientPackage.md b/docset/winserver2019-ps/appvclient/Publish-AppvClientPackage.md index f9f279f15e..beaba37c48 100644 --- a/docset/winserver2019-ps/appvclient/Publish-AppvClientPackage.md +++ b/docset/winserver2019-ps/appvclient/Publish-AppvClientPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/publish-appvclientpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/publish-appvclientpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Publish-AppvClientPackage --- diff --git a/docset/winserver2019-ps/appvclient/Remove-AppvClientConnectionGroup.md b/docset/winserver2019-ps/appvclient/Remove-AppvClientConnectionGroup.md index 135688ca7c..c4438fd92d 100644 --- a/docset/winserver2019-ps/appvclient/Remove-AppvClientConnectionGroup.md +++ b/docset/winserver2019-ps/appvclient/Remove-AppvClientConnectionGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/remove-appvclientconnectiongroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/remove-appvclientconnectiongroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AppvClientConnectionGroup --- diff --git a/docset/winserver2019-ps/appvclient/Remove-AppvClientPackage.md b/docset/winserver2019-ps/appvclient/Remove-AppvClientPackage.md index 2caeeacb65..fa9b022177 100644 --- a/docset/winserver2019-ps/appvclient/Remove-AppvClientPackage.md +++ b/docset/winserver2019-ps/appvclient/Remove-AppvClientPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/remove-appvclientpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/remove-appvclientpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AppvClientPackage --- diff --git a/docset/winserver2019-ps/appvclient/Remove-AppvPublishingServer.md b/docset/winserver2019-ps/appvclient/Remove-AppvPublishingServer.md index 232c05b271..87940a7b0a 100644 --- a/docset/winserver2019-ps/appvclient/Remove-AppvPublishingServer.md +++ b/docset/winserver2019-ps/appvclient/Remove-AppvPublishingServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/remove-appvpublishingserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/remove-appvpublishingserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AppvPublishingServer --- diff --git a/docset/winserver2019-ps/appvclient/Repair-AppvClientConnectionGroup.md b/docset/winserver2019-ps/appvclient/Repair-AppvClientConnectionGroup.md index 2d0be95867..2418488ca8 100644 --- a/docset/winserver2019-ps/appvclient/Repair-AppvClientConnectionGroup.md +++ b/docset/winserver2019-ps/appvclient/Repair-AppvClientConnectionGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/repair-appvclientconnectiongroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/repair-appvclientconnectiongroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Repair-AppvClientConnectionGroup --- diff --git a/docset/winserver2019-ps/appvclient/Repair-AppvClientPackage.md b/docset/winserver2019-ps/appvclient/Repair-AppvClientPackage.md index 2b7a1031ea..e8c8a1b0a6 100644 --- a/docset/winserver2019-ps/appvclient/Repair-AppvClientPackage.md +++ b/docset/winserver2019-ps/appvclient/Repair-AppvClientPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/repair-appvclientpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/repair-appvclientpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Repair-AppvClientPackage --- diff --git a/docset/winserver2019-ps/appvclient/Send-AppvClientReport.md b/docset/winserver2019-ps/appvclient/Send-AppvClientReport.md index d7c4372661..867dd27f76 100644 --- a/docset/winserver2019-ps/appvclient/Send-AppvClientReport.md +++ b/docset/winserver2019-ps/appvclient/Send-AppvClientReport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/send-appvclientreport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/send-appvclientreport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Send-AppvClientReport --- diff --git a/docset/winserver2019-ps/appvclient/Set-AppvClientConfiguration.md b/docset/winserver2019-ps/appvclient/Set-AppvClientConfiguration.md index acf66e1793..751f969905 100644 --- a/docset/winserver2019-ps/appvclient/Set-AppvClientConfiguration.md +++ b/docset/winserver2019-ps/appvclient/Set-AppvClientConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/set-appvclientconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/set-appvclientconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AppvClientConfiguration --- diff --git a/docset/winserver2019-ps/appvclient/Set-AppvClientMode.md b/docset/winserver2019-ps/appvclient/Set-AppvClientMode.md index 353b9d24c9..0f96c97e08 100644 --- a/docset/winserver2019-ps/appvclient/Set-AppvClientMode.md +++ b/docset/winserver2019-ps/appvclient/Set-AppvClientMode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/set-appvclientmode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/set-appvclientmode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AppvClientMode --- diff --git a/docset/winserver2019-ps/appvclient/Set-AppvClientPackage.md b/docset/winserver2019-ps/appvclient/Set-AppvClientPackage.md index 5121333244..904b879488 100644 --- a/docset/winserver2019-ps/appvclient/Set-AppvClientPackage.md +++ b/docset/winserver2019-ps/appvclient/Set-AppvClientPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/set-appvclientpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/set-appvclientpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AppvClientPackage --- diff --git a/docset/winserver2019-ps/appvclient/Set-AppvPublishingServer.md b/docset/winserver2019-ps/appvclient/Set-AppvPublishingServer.md index d099733fe1..e8a17f851c 100644 --- a/docset/winserver2019-ps/appvclient/Set-AppvPublishingServer.md +++ b/docset/winserver2019-ps/appvclient/Set-AppvPublishingServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/set-appvpublishingserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/set-appvpublishingserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AppvPublishingServer --- diff --git a/docset/winserver2019-ps/appvclient/Start-AppvVirtualProcess.md b/docset/winserver2019-ps/appvclient/Start-AppvVirtualProcess.md index cac5caebdf..f2d5ca4ac2 100644 --- a/docset/winserver2019-ps/appvclient/Start-AppvVirtualProcess.md +++ b/docset/winserver2019-ps/appvclient/Start-AppvVirtualProcess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: AppVClientCmdlets-help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/start-appvvirtualprocess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/start-appvvirtualprocess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-AppvVirtualProcess --- diff --git a/docset/winserver2019-ps/appvclient/Stop-AppvClientConnectionGroup.md b/docset/winserver2019-ps/appvclient/Stop-AppvClientConnectionGroup.md index 93efe12413..b378b33ef8 100644 --- a/docset/winserver2019-ps/appvclient/Stop-AppvClientConnectionGroup.md +++ b/docset/winserver2019-ps/appvclient/Stop-AppvClientConnectionGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/stop-appvclientconnectiongroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/stop-appvclientconnectiongroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-AppvClientConnectionGroup --- diff --git a/docset/winserver2019-ps/appvclient/Stop-AppvClientPackage.md b/docset/winserver2019-ps/appvclient/Stop-AppvClientPackage.md index 338b4fbdff..7fc9382a48 100644 --- a/docset/winserver2019-ps/appvclient/Stop-AppvClientPackage.md +++ b/docset/winserver2019-ps/appvclient/Stop-AppvClientPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/stop-appvclientpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/stop-appvclientpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-AppvClientPackage --- diff --git a/docset/winserver2019-ps/appvclient/Sync-AppvPublishingServer.md b/docset/winserver2019-ps/appvclient/Sync-AppvPublishingServer.md index 7a671d599a..23beeebe4c 100644 --- a/docset/winserver2019-ps/appvclient/Sync-AppvPublishingServer.md +++ b/docset/winserver2019-ps/appvclient/Sync-AppvPublishingServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/sync-appvpublishingserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/sync-appvpublishingserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Sync-AppvPublishingServer --- diff --git a/docset/winserver2019-ps/appvclient/Unpublish-AppvClientPackage.md b/docset/winserver2019-ps/appvclient/Unpublish-AppvClientPackage.md index 4f0c7386f6..3b36425ea0 100644 --- a/docset/winserver2019-ps/appvclient/Unpublish-AppvClientPackage.md +++ b/docset/winserver2019-ps/appvclient/Unpublish-AppvClientPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/unpublish-appvclientpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/unpublish-appvclientpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unpublish-AppvClientPackage --- diff --git a/docset/winserver2019-ps/appvsequencer/Expand-AppvSequencerPackage.md b/docset/winserver2019-ps/appvsequencer/Expand-AppvSequencerPackage.md index a04166b5bb..a70ceba2f0 100644 --- a/docset/winserver2019-ps/appvsequencer/Expand-AppvSequencerPackage.md +++ b/docset/winserver2019-ps/appvsequencer/Expand-AppvSequencerPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.Modernizer.Cmdlets.dll-Help.xml Module Name: AppvSequencer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvsequencer/expand-appvsequencerpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvsequencer/expand-appvsequencerpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Expand-AppvSequencerPackage --- diff --git a/docset/winserver2019-ps/appvsequencer/New-AppvPackageAccelerator.md b/docset/winserver2019-ps/appvsequencer/New-AppvPackageAccelerator.md index ba7585b3ef..968683fc46 100644 --- a/docset/winserver2019-ps/appvsequencer/New-AppvPackageAccelerator.md +++ b/docset/winserver2019-ps/appvsequencer/New-AppvPackageAccelerator.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.Modernizer.Cmdlets.dll-Help.xml Module Name: AppvSequencer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvsequencer/new-appvpackageaccelerator?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvsequencer/new-appvpackageaccelerator?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-AppvPackageAccelerator --- diff --git a/docset/winserver2019-ps/appvsequencer/New-AppvSequencerPackage.md b/docset/winserver2019-ps/appvsequencer/New-AppvSequencerPackage.md index 58655db88b..e965b78c57 100644 --- a/docset/winserver2019-ps/appvsequencer/New-AppvSequencerPackage.md +++ b/docset/winserver2019-ps/appvsequencer/New-AppvSequencerPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.Modernizer.Cmdlets.dll-Help.xml Module Name: AppvSequencer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvsequencer/new-appvsequencerpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvsequencer/new-appvsequencerpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-AppvSequencerPackage --- diff --git a/docset/winserver2019-ps/appvsequencer/Update-AppvSequencerPackage.md b/docset/winserver2019-ps/appvsequencer/Update-AppvSequencerPackage.md index 262751e514..13274f6f85 100644 --- a/docset/winserver2019-ps/appvsequencer/Update-AppvSequencerPackage.md +++ b/docset/winserver2019-ps/appvsequencer/Update-AppvSequencerPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.Modernizer.Cmdlets.dll-Help.xml Module Name: AppvSequencer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvsequencer/update-appvsequencerpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvsequencer/update-appvsequencerpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-AppvSequencerPackage --- diff --git a/docset/winserver2019-ps/appx/Add-AppxPackage.md b/docset/winserver2019-ps/appx/Add-AppxPackage.md index 3b9dad7e0e..f83792c072 100644 --- a/docset/winserver2019-ps/appx/Add-AppxPackage.md +++ b/docset/winserver2019-ps/appx/Add-AppxPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-help.xml Module Name: Appx ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appx/add-appxpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/add-appxpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AppxPackage --- diff --git a/docset/winserver2019-ps/appx/Add-AppxVolume.md b/docset/winserver2019-ps/appx/Add-AppxVolume.md index 6af697a9f2..b05a02634d 100644 --- a/docset/winserver2019-ps/appx/Add-AppxVolume.md +++ b/docset/winserver2019-ps/appx/Add-AppxVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: Appx ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appx/add-appxvolume?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/add-appxvolume?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AppxVolume --- diff --git a/docset/winserver2019-ps/appx/Dismount-AppxVolume.md b/docset/winserver2019-ps/appx/Dismount-AppxVolume.md index 216fae9e6e..e9248bd859 100644 --- a/docset/winserver2019-ps/appx/Dismount-AppxVolume.md +++ b/docset/winserver2019-ps/appx/Dismount-AppxVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: Appx ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appx/dismount-appxvolume?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/dismount-appxvolume?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Dismount-AppxVolume --- diff --git a/docset/winserver2019-ps/appx/Get-AppxDefaultVolume.md b/docset/winserver2019-ps/appx/Get-AppxDefaultVolume.md index 1c73beffff..8652bc3c4a 100644 --- a/docset/winserver2019-ps/appx/Get-AppxDefaultVolume.md +++ b/docset/winserver2019-ps/appx/Get-AppxDefaultVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: Appx ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appx/get-appxdefaultvolume?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/get-appxdefaultvolume?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppxDefaultVolume --- diff --git a/docset/winserver2019-ps/appx/Get-AppxLastError.md b/docset/winserver2019-ps/appx/Get-AppxLastError.md index 5ae2e5a913..c41e75302f 100644 --- a/docset/winserver2019-ps/appx/Get-AppxLastError.md +++ b/docset/winserver2019-ps/appx/Get-AppxLastError.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-help.xml Module Name: Appx ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appx/get-appxlasterror?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/get-appxlasterror?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppxLastError --- diff --git a/docset/winserver2019-ps/appx/Get-AppxLog.md b/docset/winserver2019-ps/appx/Get-AppxLog.md index 3af9c7d1bb..1104a30e91 100644 --- a/docset/winserver2019-ps/appx/Get-AppxLog.md +++ b/docset/winserver2019-ps/appx/Get-AppxLog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-help.xml Module Name: Appx ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appx/get-appxlog?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/get-appxlog?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppxLog --- diff --git a/docset/winserver2019-ps/appx/Get-AppxPackage.md b/docset/winserver2019-ps/appx/Get-AppxPackage.md index 1ec17c0f26..685530aae7 100644 --- a/docset/winserver2019-ps/appx/Get-AppxPackage.md +++ b/docset/winserver2019-ps/appx/Get-AppxPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: Appx ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appx/get-appxpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/get-appxpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppxPackage --- diff --git a/docset/winserver2019-ps/appx/Get-AppxPackageManifest.md b/docset/winserver2019-ps/appx/Get-AppxPackageManifest.md index 29e4ade47f..841050aa3e 100644 --- a/docset/winserver2019-ps/appx/Get-AppxPackageManifest.md +++ b/docset/winserver2019-ps/appx/Get-AppxPackageManifest.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: Appx ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appx/get-appxpackagemanifest?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/get-appxpackagemanifest?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppxPackageManifest --- diff --git a/docset/winserver2019-ps/appx/Get-AppxVolume.md b/docset/winserver2019-ps/appx/Get-AppxVolume.md index 2fe376c24b..e83fa54c21 100644 --- a/docset/winserver2019-ps/appx/Get-AppxVolume.md +++ b/docset/winserver2019-ps/appx/Get-AppxVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: Appx ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appx/get-appxvolume?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/get-appxvolume?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppxVolume --- diff --git a/docset/winserver2019-ps/appx/Get-NonRemovableAppsPolicy.md b/docset/winserver2019-ps/appx/Get-NonRemovableAppsPolicy.md index 20e20d60b8..d3190cccc2 100644 --- a/docset/winserver2019-ps/appx/Get-NonRemovableAppsPolicy.md +++ b/docset/winserver2019-ps/appx/Get-NonRemovableAppsPolicy.md @@ -4,7 +4,7 @@ description: Use this topic to help prevent the uninstall of specific Windows ap external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-help.xml Module Name: Appx ms.date: 02/05/2020 -online version: https://docs.microsoft.com/powershell/module/appx/get-nonremovableappspolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/get-nonremovableappspolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NonRemovableAppsPolicy --- diff --git a/docset/winserver2019-ps/appx/Invoke-CommandInDesktopPackage.md b/docset/winserver2019-ps/appx/Invoke-CommandInDesktopPackage.md index 9cf2b8a98c..2482eb0ecc 100644 --- a/docset/winserver2019-ps/appx/Invoke-CommandInDesktopPackage.md +++ b/docset/winserver2019-ps/appx/Invoke-CommandInDesktopPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: Appx ms.date: 05/19/2017 -online version: https://docs.microsoft.com/powershell/module/appx/invoke-commandindesktoppackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/invoke-commandindesktoppackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-CommandInDesktopPackage --- diff --git a/docset/winserver2019-ps/appx/Mount-AppxVolume.md b/docset/winserver2019-ps/appx/Mount-AppxVolume.md index ecc48cbe93..668f10a256 100644 --- a/docset/winserver2019-ps/appx/Mount-AppxVolume.md +++ b/docset/winserver2019-ps/appx/Mount-AppxVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: Appx ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appx/mount-appxvolume?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/mount-appxvolume?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Mount-AppxVolume --- diff --git a/docset/winserver2019-ps/appx/Move-AppxPackage.md b/docset/winserver2019-ps/appx/Move-AppxPackage.md index 55f0a9f925..78f3915d24 100644 --- a/docset/winserver2019-ps/appx/Move-AppxPackage.md +++ b/docset/winserver2019-ps/appx/Move-AppxPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: Appx ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appx/move-appxpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/move-appxpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-AppxPackage --- diff --git a/docset/winserver2019-ps/appx/Remove-AppxPackage.md b/docset/winserver2019-ps/appx/Remove-AppxPackage.md index 3459b2755e..44e338e78b 100644 --- a/docset/winserver2019-ps/appx/Remove-AppxPackage.md +++ b/docset/winserver2019-ps/appx/Remove-AppxPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: Appx ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appx/remove-appxpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/remove-appxpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AppxPackage --- diff --git a/docset/winserver2019-ps/appx/Remove-AppxVolume.md b/docset/winserver2019-ps/appx/Remove-AppxVolume.md index b69220518c..e8708316f7 100644 --- a/docset/winserver2019-ps/appx/Remove-AppxVolume.md +++ b/docset/winserver2019-ps/appx/Remove-AppxVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: Appx ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appx/remove-appxvolume?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/remove-appxvolume?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AppxVolume --- diff --git a/docset/winserver2019-ps/appx/Reset-AppxPackage.md b/docset/winserver2019-ps/appx/Reset-AppxPackage.md index 5015f27ad8..a8bc5ae82e 100644 --- a/docset/winserver2019-ps/appx/Reset-AppxPackage.md +++ b/docset/winserver2019-ps/appx/Reset-AppxPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-help.xml Module Name: Appx ms.date: 10/20/2020 -online version: https://docs.microsoft.com/powershell/module/appx/reset-appxpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/reset-appxpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-AppxPackage --- diff --git a/docset/winserver2019-ps/appx/Set-AppxDefaultVolume.md b/docset/winserver2019-ps/appx/Set-AppxDefaultVolume.md index 386c3a751f..3d6d41ee92 100644 --- a/docset/winserver2019-ps/appx/Set-AppxDefaultVolume.md +++ b/docset/winserver2019-ps/appx/Set-AppxDefaultVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: Appx ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appx/set-appxdefaultvolume?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/set-appxdefaultvolume?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AppxDefaultVolume --- diff --git a/docset/winserver2019-ps/appx/Set-NonRemovableAppsPolicy.md b/docset/winserver2019-ps/appx/Set-NonRemovableAppsPolicy.md index 1db7b909c4..c71cace1de 100644 --- a/docset/winserver2019-ps/appx/Set-NonRemovableAppsPolicy.md +++ b/docset/winserver2019-ps/appx/Set-NonRemovableAppsPolicy.md @@ -4,7 +4,7 @@ description: Use this topic to help prevent the uninstall of specific Windows ap external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-help.xml Module Name: Appx ms.date: 02/05/2020 -online version: https://docs.microsoft.com/powershell/module/appx/set-nonremovableappspolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/set-nonremovableappspolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NonRemovableAppsPolicy --- diff --git a/docset/winserver2019-ps/assignedaccess/Clear-AssignedAccess.md b/docset/winserver2019-ps/assignedaccess/Clear-AssignedAccess.md index ec8fec236b..40946664b8 100644 --- a/docset/winserver2019-ps/assignedaccess/Clear-AssignedAccess.md +++ b/docset/winserver2019-ps/assignedaccess/Clear-AssignedAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: AssignedAccess-help.xml Module Name: AssignedAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/assignedaccess/clear-assignedaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/assignedaccess/clear-assignedaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-AssignedAccess --- diff --git a/docset/winserver2019-ps/assignedaccess/Get-AssignedAccess.md b/docset/winserver2019-ps/assignedaccess/Get-AssignedAccess.md index dce1c6ad60..5fcc15f7b6 100644 --- a/docset/winserver2019-ps/assignedaccess/Get-AssignedAccess.md +++ b/docset/winserver2019-ps/assignedaccess/Get-AssignedAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: AssignedAccess-help.xml Module Name: AssignedAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/assignedaccess/get-assignedaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/assignedaccess/get-assignedaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AssignedAccess --- diff --git a/docset/winserver2019-ps/assignedaccess/Set-AssignedAccess.md b/docset/winserver2019-ps/assignedaccess/Set-AssignedAccess.md index f8f8ff9d1e..62231d05f3 100644 --- a/docset/winserver2019-ps/assignedaccess/Set-AssignedAccess.md +++ b/docset/winserver2019-ps/assignedaccess/Set-AssignedAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: AssignedAccess-help.xml Module Name: AssignedAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/assignedaccess/set-assignedaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/assignedaccess/set-assignedaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AssignedAccess --- diff --git a/docset/winserver2019-ps/bestpractices/Get-BpaModel.md b/docset/winserver2019-ps/bestpractices/Get-BpaModel.md index ce1fa47aca..bd4a2486d2 100644 --- a/docset/winserver2019-ps/bestpractices/Get-BpaModel.md +++ b/docset/winserver2019-ps/bestpractices/Get-BpaModel.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.BestPractices.Cmdlets.dll-Help.xml Module Name: BestPractices ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/bestpractices/get-bpamodel?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bestpractices/get-bpamodel?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BpaModel --- diff --git a/docset/winserver2019-ps/bestpractices/Get-BpaResult.md b/docset/winserver2019-ps/bestpractices/Get-BpaResult.md index 3f1187e1ab..2a0f388d98 100644 --- a/docset/winserver2019-ps/bestpractices/Get-BpaResult.md +++ b/docset/winserver2019-ps/bestpractices/Get-BpaResult.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.BestPractices.Cmdlets.dll-Help.xml Module Name: BestPractices ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/bestpractices/get-bparesult?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bestpractices/get-bparesult?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BpaResult --- diff --git a/docset/winserver2019-ps/bestpractices/Invoke-BpaModel.md b/docset/winserver2019-ps/bestpractices/Invoke-BpaModel.md index 1f573f5431..9ea04593c5 100644 --- a/docset/winserver2019-ps/bestpractices/Invoke-BpaModel.md +++ b/docset/winserver2019-ps/bestpractices/Invoke-BpaModel.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.BestPractices.Cmdlets.dll-Help.xml Module Name: BestPractices ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/bestpractices/invoke-bpamodel?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bestpractices/invoke-bpamodel?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-BpaModel --- diff --git a/docset/winserver2019-ps/bestpractices/Set-BpaResult.md b/docset/winserver2019-ps/bestpractices/Set-BpaResult.md index 611eb3a4de..0eaf2a5150 100644 --- a/docset/winserver2019-ps/bestpractices/Set-BpaResult.md +++ b/docset/winserver2019-ps/bestpractices/Set-BpaResult.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.BestPractices.Cmdlets.dll-Help.xml Module Name: BestPractices ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/bestpractices/set-bparesult?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bestpractices/set-bparesult?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-BpaResult --- diff --git a/docset/winserver2019-ps/bitlocker/Add-BitLockerKeyProtector.md b/docset/winserver2019-ps/bitlocker/Add-BitLockerKeyProtector.md index 02a9127986..afca7ea9e7 100644 --- a/docset/winserver2019-ps/bitlocker/Add-BitLockerKeyProtector.md +++ b/docset/winserver2019-ps/bitlocker/Add-BitLockerKeyProtector.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BitLocker-help.xml Module Name: BitLocker ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitlocker/add-bitlockerkeyprotector?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/add-bitlockerkeyprotector?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-BitLockerKeyProtector --- diff --git a/docset/winserver2019-ps/bitlocker/Backup-BitLockerKeyProtector.md b/docset/winserver2019-ps/bitlocker/Backup-BitLockerKeyProtector.md index 8148635bef..8fe8a06876 100644 --- a/docset/winserver2019-ps/bitlocker/Backup-BitLockerKeyProtector.md +++ b/docset/winserver2019-ps/bitlocker/Backup-BitLockerKeyProtector.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BitLocker-help.xml Module Name: BitLocker ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitlocker/backup-bitlockerkeyprotector?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/backup-bitlockerkeyprotector?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Backup-BitLockerKeyProtector --- diff --git a/docset/winserver2019-ps/bitlocker/Clear-BitLockerAutoUnlock.md b/docset/winserver2019-ps/bitlocker/Clear-BitLockerAutoUnlock.md index 7b0a9163cb..0e7a23bb93 100644 --- a/docset/winserver2019-ps/bitlocker/Clear-BitLockerAutoUnlock.md +++ b/docset/winserver2019-ps/bitlocker/Clear-BitLockerAutoUnlock.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BitLocker-help.xml Module Name: BitLocker ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitlocker/clear-bitlockerautounlock?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/clear-bitlockerautounlock?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-BitLockerAutoUnlock --- diff --git a/docset/winserver2019-ps/bitlocker/Disable-BitLocker.md b/docset/winserver2019-ps/bitlocker/Disable-BitLocker.md index bfcf5c3bdc..3d20aed010 100644 --- a/docset/winserver2019-ps/bitlocker/Disable-BitLocker.md +++ b/docset/winserver2019-ps/bitlocker/Disable-BitLocker.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BitLocker-help.xml Module Name: BitLocker ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitlocker/disable-bitlocker?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/disable-bitlocker?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-BitLocker --- diff --git a/docset/winserver2019-ps/bitlocker/Disable-BitLockerAutoUnlock.md b/docset/winserver2019-ps/bitlocker/Disable-BitLockerAutoUnlock.md index f4821018a9..a071f7c110 100644 --- a/docset/winserver2019-ps/bitlocker/Disable-BitLockerAutoUnlock.md +++ b/docset/winserver2019-ps/bitlocker/Disable-BitLockerAutoUnlock.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BitLocker-help.xml Module Name: BitLocker ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitlocker/disable-bitlockerautounlock?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/disable-bitlockerautounlock?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-BitLockerAutoUnlock --- diff --git a/docset/winserver2019-ps/bitlocker/Enable-BitLocker.md b/docset/winserver2019-ps/bitlocker/Enable-BitLocker.md index 3729cba7fe..7e389edee6 100644 --- a/docset/winserver2019-ps/bitlocker/Enable-BitLocker.md +++ b/docset/winserver2019-ps/bitlocker/Enable-BitLocker.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BitLocker-help.xml Module Name: BitLocker ms.date: 12/14/2021 -online version: https://docs.microsoft.com/powershell/module/bitlocker/enable-bitlocker?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/enable-bitlocker?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-BitLocker --- diff --git a/docset/winserver2019-ps/bitlocker/Enable-BitLockerAutoUnlock.md b/docset/winserver2019-ps/bitlocker/Enable-BitLockerAutoUnlock.md index 099b94a849..dfa9928e58 100644 --- a/docset/winserver2019-ps/bitlocker/Enable-BitLockerAutoUnlock.md +++ b/docset/winserver2019-ps/bitlocker/Enable-BitLockerAutoUnlock.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BitLocker-help.xml Module Name: BitLocker ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitlocker/enable-bitlockerautounlock?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/enable-bitlockerautounlock?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-BitLockerAutoUnlock --- diff --git a/docset/winserver2019-ps/bitlocker/Get-BitLockerVolume.md b/docset/winserver2019-ps/bitlocker/Get-BitLockerVolume.md index 3079c13730..8967bb03f0 100644 --- a/docset/winserver2019-ps/bitlocker/Get-BitLockerVolume.md +++ b/docset/winserver2019-ps/bitlocker/Get-BitLockerVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BitLocker-help.xml Module Name: BitLocker ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitlocker/get-bitlockervolume?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/get-bitlockervolume?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BitLockerVolume --- diff --git a/docset/winserver2019-ps/bitlocker/Lock-BitLocker.md b/docset/winserver2019-ps/bitlocker/Lock-BitLocker.md index 52954d4331..a98a142087 100644 --- a/docset/winserver2019-ps/bitlocker/Lock-BitLocker.md +++ b/docset/winserver2019-ps/bitlocker/Lock-BitLocker.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BitLocker-help.xml Module Name: BitLocker ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitlocker/lock-bitlocker?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/lock-bitlocker?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Lock-BitLocker --- diff --git a/docset/winserver2019-ps/bitlocker/Remove-BitLockerKeyProtector.md b/docset/winserver2019-ps/bitlocker/Remove-BitLockerKeyProtector.md index f0fb2d4760..a1fa6930e7 100644 --- a/docset/winserver2019-ps/bitlocker/Remove-BitLockerKeyProtector.md +++ b/docset/winserver2019-ps/bitlocker/Remove-BitLockerKeyProtector.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BitLocker-help.xml Module Name: BitLocker ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitlocker/remove-bitlockerkeyprotector?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/remove-bitlockerkeyprotector?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-BitLockerKeyProtector --- diff --git a/docset/winserver2019-ps/bitlocker/Resume-BitLocker.md b/docset/winserver2019-ps/bitlocker/Resume-BitLocker.md index be1ac3f176..6d5c3cb74f 100644 --- a/docset/winserver2019-ps/bitlocker/Resume-BitLocker.md +++ b/docset/winserver2019-ps/bitlocker/Resume-BitLocker.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BitLocker-help.xml Module Name: BitLocker ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitlocker/resume-bitlocker?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/resume-bitlocker?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-BitLocker --- diff --git a/docset/winserver2019-ps/bitlocker/Suspend-BitLocker.md b/docset/winserver2019-ps/bitlocker/Suspend-BitLocker.md index 3fe6e9f15b..716a891964 100644 --- a/docset/winserver2019-ps/bitlocker/Suspend-BitLocker.md +++ b/docset/winserver2019-ps/bitlocker/Suspend-BitLocker.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BitLocker-help.xml Module Name: BitLocker ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitlocker/suspend-bitlocker?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/suspend-bitlocker?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-BitLocker --- diff --git a/docset/winserver2019-ps/bitlocker/Unlock-BitLocker.md b/docset/winserver2019-ps/bitlocker/Unlock-BitLocker.md index 672c76aff9..8c69024ae7 100644 --- a/docset/winserver2019-ps/bitlocker/Unlock-BitLocker.md +++ b/docset/winserver2019-ps/bitlocker/Unlock-BitLocker.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BitLocker-help.xml Module Name: BitLocker ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitlocker/unlock-bitlocker?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/unlock-bitlocker?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unlock-BitLocker --- diff --git a/docset/winserver2019-ps/bitstransfer/Add-BitsFile.md b/docset/winserver2019-ps/bitstransfer/Add-BitsFile.md index b2a5ef7838..97410531e7 100644 --- a/docset/winserver2019-ps/bitstransfer/Add-BitsFile.md +++ b/docset/winserver2019-ps/bitstransfer/Add-BitsFile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.BackgroundIntelligentTransfer.Management.dll-Help.xml Module Name: BitsTransfer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitstransfer/add-bitsfile?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitstransfer/add-bitsfile?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-BitsFile --- diff --git a/docset/winserver2019-ps/bitstransfer/Complete-BitsTransfer.md b/docset/winserver2019-ps/bitstransfer/Complete-BitsTransfer.md index e26eaa9d66..056ac44dcc 100644 --- a/docset/winserver2019-ps/bitstransfer/Complete-BitsTransfer.md +++ b/docset/winserver2019-ps/bitstransfer/Complete-BitsTransfer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.BackgroundIntelligentTransfer.Management.dll-Help.xml Module Name: BitsTransfer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitstransfer/complete-bitstransfer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitstransfer/complete-bitstransfer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Complete-BitsTransfer --- diff --git a/docset/winserver2019-ps/bitstransfer/Get-BitsTransfer.md b/docset/winserver2019-ps/bitstransfer/Get-BitsTransfer.md index 7432aac976..034670e77c 100644 --- a/docset/winserver2019-ps/bitstransfer/Get-BitsTransfer.md +++ b/docset/winserver2019-ps/bitstransfer/Get-BitsTransfer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.BackgroundIntelligentTransfer.Management.dll-Help.xml Module Name: BitsTransfer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitstransfer/get-bitstransfer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitstransfer/get-bitstransfer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BitsTransfer --- diff --git a/docset/winserver2019-ps/bitstransfer/Remove-BitsTransfer.md b/docset/winserver2019-ps/bitstransfer/Remove-BitsTransfer.md index 21d27f05ac..ee01e655e7 100644 --- a/docset/winserver2019-ps/bitstransfer/Remove-BitsTransfer.md +++ b/docset/winserver2019-ps/bitstransfer/Remove-BitsTransfer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.BackgroundIntelligentTransfer.Management.dll-Help.xml Module Name: BitsTransfer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitstransfer/remove-bitstransfer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitstransfer/remove-bitstransfer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-BitsTransfer --- diff --git a/docset/winserver2019-ps/bitstransfer/Resume-BitsTransfer.md b/docset/winserver2019-ps/bitstransfer/Resume-BitsTransfer.md index b36a0ac51f..938b05ca53 100644 --- a/docset/winserver2019-ps/bitstransfer/Resume-BitsTransfer.md +++ b/docset/winserver2019-ps/bitstransfer/Resume-BitsTransfer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.BackgroundIntelligentTransfer.Management.dll-Help.xml Module Name: BitsTransfer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitstransfer/resume-bitstransfer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitstransfer/resume-bitstransfer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-BitsTransfer --- diff --git a/docset/winserver2019-ps/bitstransfer/Set-BitsTransfer.md b/docset/winserver2019-ps/bitstransfer/Set-BitsTransfer.md index 513c5102d0..6e0c7a155d 100644 --- a/docset/winserver2019-ps/bitstransfer/Set-BitsTransfer.md +++ b/docset/winserver2019-ps/bitstransfer/Set-BitsTransfer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.BackgroundIntelligentTransfer.Management.dll-Help.xml Module Name: BitsTransfer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitstransfer/set-bitstransfer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitstransfer/set-bitstransfer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-BitsTransfer --- diff --git a/docset/winserver2019-ps/bitstransfer/Start-BitsTransfer.md b/docset/winserver2019-ps/bitstransfer/Start-BitsTransfer.md index d56022faf3..711b167a81 100644 --- a/docset/winserver2019-ps/bitstransfer/Start-BitsTransfer.md +++ b/docset/winserver2019-ps/bitstransfer/Start-BitsTransfer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.BackgroundIntelligentTransfer.Management.dll-Help.xml Module Name: BitsTransfer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitstransfer/start-bitstransfer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitstransfer/start-bitstransfer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-BitsTransfer --- diff --git a/docset/winserver2019-ps/bitstransfer/Suspend-BitsTransfer.md b/docset/winserver2019-ps/bitstransfer/Suspend-BitsTransfer.md index a9c6c4aa40..2b2fe7f2c4 100644 --- a/docset/winserver2019-ps/bitstransfer/Suspend-BitsTransfer.md +++ b/docset/winserver2019-ps/bitstransfer/Suspend-BitsTransfer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.BackgroundIntelligentTransfer.Management.dll-Help.xml Module Name: BitsTransfer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitstransfer/suspend-bitstransfer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitstransfer/suspend-bitstransfer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-BitsTransfer --- diff --git a/docset/winserver2019-ps/booteventcollector/Checkpoint-SbecActiveConfig.md b/docset/winserver2019-ps/booteventcollector/Checkpoint-SbecActiveConfig.md index 2f76db2b70..dda4e65903 100644 --- a/docset/winserver2019-ps/booteventcollector/Checkpoint-SbecActiveConfig.md +++ b/docset/winserver2019-ps/booteventcollector/Checkpoint-SbecActiveConfig.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/checkpoint-sbecactiveconfig?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/checkpoint-sbecactiveconfig?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Checkpoint-SbecActiveConfig --- diff --git a/docset/winserver2019-ps/booteventcollector/Clear-SbecProviderCache.md b/docset/winserver2019-ps/booteventcollector/Clear-SbecProviderCache.md index 261bef8889..8fa88c8470 100644 --- a/docset/winserver2019-ps/booteventcollector/Clear-SbecProviderCache.md +++ b/docset/winserver2019-ps/booteventcollector/Clear-SbecProviderCache.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/clear-sbecprovidercache?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/clear-sbecprovidercache?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-SbecProviderCache --- diff --git a/docset/winserver2019-ps/booteventcollector/Disable-SbecAutologger.md b/docset/winserver2019-ps/booteventcollector/Disable-SbecAutologger.md index ed1a1c0bd8..e639af386a 100644 --- a/docset/winserver2019-ps/booteventcollector/Disable-SbecAutologger.md +++ b/docset/winserver2019-ps/booteventcollector/Disable-SbecAutologger.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/disable-sbecautologger?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/disable-sbecautologger?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-SbecAutologger --- diff --git a/docset/winserver2019-ps/booteventcollector/Disable-SbecBcd.md b/docset/winserver2019-ps/booteventcollector/Disable-SbecBcd.md index c146f29fbb..e0f2bbbaea 100644 --- a/docset/winserver2019-ps/booteventcollector/Disable-SbecBcd.md +++ b/docset/winserver2019-ps/booteventcollector/Disable-SbecBcd.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/disable-sbecbcd?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/disable-sbecbcd?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-SbecBcd --- diff --git a/docset/winserver2019-ps/booteventcollector/Enable-SbecAutologger.md b/docset/winserver2019-ps/booteventcollector/Enable-SbecAutologger.md index f993d2eee3..0926ef7ee8 100644 --- a/docset/winserver2019-ps/booteventcollector/Enable-SbecAutologger.md +++ b/docset/winserver2019-ps/booteventcollector/Enable-SbecAutologger.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/enable-sbecautologger?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/enable-sbecautologger?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-SbecAutologger --- diff --git a/docset/winserver2019-ps/booteventcollector/Enable-SbecBcd.md b/docset/winserver2019-ps/booteventcollector/Enable-SbecBcd.md index 971644b125..254ab16b2e 100644 --- a/docset/winserver2019-ps/booteventcollector/Enable-SbecBcd.md +++ b/docset/winserver2019-ps/booteventcollector/Enable-SbecBcd.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/enable-sbecbcd?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/enable-sbecbcd?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-SbecBcd --- diff --git a/docset/winserver2019-ps/booteventcollector/Enable-SbecBootImage.md b/docset/winserver2019-ps/booteventcollector/Enable-SbecBootImage.md index dd2ead2be1..b632aea827 100644 --- a/docset/winserver2019-ps/booteventcollector/Enable-SbecBootImage.md +++ b/docset/winserver2019-ps/booteventcollector/Enable-SbecBootImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/enable-sbecbootimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/enable-sbecbootimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-SbecBootImage --- diff --git a/docset/winserver2019-ps/booteventcollector/Enable-SbecWdsBcd.md b/docset/winserver2019-ps/booteventcollector/Enable-SbecWdsBcd.md index 280fdcf61d..bffa5cc704 100644 --- a/docset/winserver2019-ps/booteventcollector/Enable-SbecWdsBcd.md +++ b/docset/winserver2019-ps/booteventcollector/Enable-SbecWdsBcd.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/enable-sbecwdsbcd?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/enable-sbecwdsbcd?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-SbecWdsBcd --- diff --git a/docset/winserver2019-ps/booteventcollector/Get-SbecActiveConfig.md b/docset/winserver2019-ps/booteventcollector/Get-SbecActiveConfig.md index c23a8f8647..3510d8f6fb 100644 --- a/docset/winserver2019-ps/booteventcollector/Get-SbecActiveConfig.md +++ b/docset/winserver2019-ps/booteventcollector/Get-SbecActiveConfig.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/get-sbecactiveconfig?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/get-sbecactiveconfig?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SbecActiveConfig --- diff --git a/docset/winserver2019-ps/booteventcollector/Get-SbecBackupConfig.md b/docset/winserver2019-ps/booteventcollector/Get-SbecBackupConfig.md index 3ebb84d8a7..e99dd564d8 100644 --- a/docset/winserver2019-ps/booteventcollector/Get-SbecBackupConfig.md +++ b/docset/winserver2019-ps/booteventcollector/Get-SbecBackupConfig.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/get-sbecbackupconfig?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/get-sbecbackupconfig?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SbecBackupConfig --- diff --git a/docset/winserver2019-ps/booteventcollector/Get-SbecDestination.md b/docset/winserver2019-ps/booteventcollector/Get-SbecDestination.md index 31596d99e2..2e23163a05 100644 --- a/docset/winserver2019-ps/booteventcollector/Get-SbecDestination.md +++ b/docset/winserver2019-ps/booteventcollector/Get-SbecDestination.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/get-sbecdestination?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/get-sbecdestination?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SbecDestination --- diff --git a/docset/winserver2019-ps/booteventcollector/Get-SbecForwarding.md b/docset/winserver2019-ps/booteventcollector/Get-SbecForwarding.md index 20855e0787..e61caa93bb 100644 --- a/docset/winserver2019-ps/booteventcollector/Get-SbecForwarding.md +++ b/docset/winserver2019-ps/booteventcollector/Get-SbecForwarding.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/get-sbecforwarding?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/get-sbecforwarding?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SbecForwarding --- diff --git a/docset/winserver2019-ps/booteventcollector/Get-SbecHistory.md b/docset/winserver2019-ps/booteventcollector/Get-SbecHistory.md index 6f9dc2076f..f018039026 100644 --- a/docset/winserver2019-ps/booteventcollector/Get-SbecHistory.md +++ b/docset/winserver2019-ps/booteventcollector/Get-SbecHistory.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/get-sbechistory?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/get-sbechistory?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SbecHistory --- diff --git a/docset/winserver2019-ps/booteventcollector/Get-SbecLocalizedMessage.md b/docset/winserver2019-ps/booteventcollector/Get-SbecLocalizedMessage.md index 889d87c7b1..9f27857ae3 100644 --- a/docset/winserver2019-ps/booteventcollector/Get-SbecLocalizedMessage.md +++ b/docset/winserver2019-ps/booteventcollector/Get-SbecLocalizedMessage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/get-sbeclocalizedmessage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/get-sbeclocalizedmessage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SbecLocalizedMessage --- diff --git a/docset/winserver2019-ps/booteventcollector/Get-SbecLogSession.md b/docset/winserver2019-ps/booteventcollector/Get-SbecLogSession.md index fb26d08390..b5bda0290e 100644 --- a/docset/winserver2019-ps/booteventcollector/Get-SbecLogSession.md +++ b/docset/winserver2019-ps/booteventcollector/Get-SbecLogSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/get-sbeclogsession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/get-sbeclogsession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SbecLogSession --- diff --git a/docset/winserver2019-ps/booteventcollector/Get-SbecTraceProviders.md b/docset/winserver2019-ps/booteventcollector/Get-SbecTraceProviders.md index 39665e41cb..d6d2f61f42 100644 --- a/docset/winserver2019-ps/booteventcollector/Get-SbecTraceProviders.md +++ b/docset/winserver2019-ps/booteventcollector/Get-SbecTraceProviders.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/get-sbectraceproviders?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/get-sbectraceproviders?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SbecTraceProviders --- diff --git a/docset/winserver2019-ps/booteventcollector/New-SbecUnattendFragment.md b/docset/winserver2019-ps/booteventcollector/New-SbecUnattendFragment.md index d4f302fa07..0b75906929 100644 --- a/docset/winserver2019-ps/booteventcollector/New-SbecUnattendFragment.md +++ b/docset/winserver2019-ps/booteventcollector/New-SbecUnattendFragment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/new-sbecunattendfragment?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/new-sbecunattendfragment?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-SbecUnattendFragment --- diff --git a/docset/winserver2019-ps/booteventcollector/Redo-SbecActiveConfig.md b/docset/winserver2019-ps/booteventcollector/Redo-SbecActiveConfig.md index c97e88b39a..0ab16caa1d 100644 --- a/docset/winserver2019-ps/booteventcollector/Redo-SbecActiveConfig.md +++ b/docset/winserver2019-ps/booteventcollector/Redo-SbecActiveConfig.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/redo-sbecactiveconfig?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/redo-sbecactiveconfig?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Redo-SbecActiveConfig --- diff --git a/docset/winserver2019-ps/booteventcollector/Restore-SbecBackupConfig.md b/docset/winserver2019-ps/booteventcollector/Restore-SbecBackupConfig.md index 208ab7f7ea..16cab2905e 100644 --- a/docset/winserver2019-ps/booteventcollector/Restore-SbecBackupConfig.md +++ b/docset/winserver2019-ps/booteventcollector/Restore-SbecBackupConfig.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/restore-sbecbackupconfig?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/restore-sbecbackupconfig?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-SbecBackupConfig --- diff --git a/docset/winserver2019-ps/booteventcollector/Save-SbecInstance.md b/docset/winserver2019-ps/booteventcollector/Save-SbecInstance.md index b2c86906a7..301436d7fa 100644 --- a/docset/winserver2019-ps/booteventcollector/Save-SbecInstance.md +++ b/docset/winserver2019-ps/booteventcollector/Save-SbecInstance.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/save-sbecinstance?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/save-sbecinstance?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Save-SbecInstance --- diff --git a/docset/winserver2019-ps/booteventcollector/Save-SbecLogSession.md b/docset/winserver2019-ps/booteventcollector/Save-SbecLogSession.md index 5163c3c5a8..5e40e85538 100644 --- a/docset/winserver2019-ps/booteventcollector/Save-SbecLogSession.md +++ b/docset/winserver2019-ps/booteventcollector/Save-SbecLogSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/save-sbeclogsession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/save-sbeclogsession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Save-SbecLogSession --- diff --git a/docset/winserver2019-ps/booteventcollector/Set-SbecActiveConfig.md b/docset/winserver2019-ps/booteventcollector/Set-SbecActiveConfig.md index 828733f1ab..6c3db1db34 100644 --- a/docset/winserver2019-ps/booteventcollector/Set-SbecActiveConfig.md +++ b/docset/winserver2019-ps/booteventcollector/Set-SbecActiveConfig.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/set-sbecactiveconfig?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/set-sbecactiveconfig?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SbecActiveConfig --- diff --git a/docset/winserver2019-ps/booteventcollector/Set-SbecLogSession.md b/docset/winserver2019-ps/booteventcollector/Set-SbecLogSession.md index a56424fb32..3c30d89693 100644 --- a/docset/winserver2019-ps/booteventcollector/Set-SbecLogSession.md +++ b/docset/winserver2019-ps/booteventcollector/Set-SbecLogSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/set-sbeclogsession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/set-sbeclogsession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SbecLogSession --- diff --git a/docset/winserver2019-ps/booteventcollector/Start-SbecInstance.md b/docset/winserver2019-ps/booteventcollector/Start-SbecInstance.md index f0c08e0f68..65c0dd6119 100644 --- a/docset/winserver2019-ps/booteventcollector/Start-SbecInstance.md +++ b/docset/winserver2019-ps/booteventcollector/Start-SbecInstance.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/start-sbecinstance?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/start-sbecinstance?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-SbecInstance --- diff --git a/docset/winserver2019-ps/booteventcollector/Start-SbecLogSession.md b/docset/winserver2019-ps/booteventcollector/Start-SbecLogSession.md index a7c85132e9..91f5abc226 100644 --- a/docset/winserver2019-ps/booteventcollector/Start-SbecLogSession.md +++ b/docset/winserver2019-ps/booteventcollector/Start-SbecLogSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/start-sbeclogsession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/start-sbeclogsession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-SbecLogSession --- diff --git a/docset/winserver2019-ps/booteventcollector/Start-SbecNtKernelLogSession.md b/docset/winserver2019-ps/booteventcollector/Start-SbecNtKernelLogSession.md index 243a8c5a82..3db2c54cea 100644 --- a/docset/winserver2019-ps/booteventcollector/Start-SbecNtKernelLogSession.md +++ b/docset/winserver2019-ps/booteventcollector/Start-SbecNtKernelLogSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/start-sbecntkernellogsession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/start-sbecntkernellogsession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-SbecNtKernelLogSession --- diff --git a/docset/winserver2019-ps/booteventcollector/Start-SbecSimpleLogSession.md b/docset/winserver2019-ps/booteventcollector/Start-SbecSimpleLogSession.md index 757e1fdf72..bd352d96c6 100644 --- a/docset/winserver2019-ps/booteventcollector/Start-SbecSimpleLogSession.md +++ b/docset/winserver2019-ps/booteventcollector/Start-SbecSimpleLogSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/start-sbecsimplelogsession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/start-sbecsimplelogsession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-SbecSimpleLogSession --- diff --git a/docset/winserver2019-ps/booteventcollector/Stop-SbecInstance.md b/docset/winserver2019-ps/booteventcollector/Stop-SbecInstance.md index 3b2f0e122a..6515f91810 100644 --- a/docset/winserver2019-ps/booteventcollector/Stop-SbecInstance.md +++ b/docset/winserver2019-ps/booteventcollector/Stop-SbecInstance.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/stop-sbecinstance?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/stop-sbecinstance?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-SbecInstance --- diff --git a/docset/winserver2019-ps/booteventcollector/Stop-SbecLogSession.md b/docset/winserver2019-ps/booteventcollector/Stop-SbecLogSession.md index 930e0359e2..712c1e01c9 100644 --- a/docset/winserver2019-ps/booteventcollector/Stop-SbecLogSession.md +++ b/docset/winserver2019-ps/booteventcollector/Stop-SbecLogSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/stop-sbeclogsession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/stop-sbeclogsession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-SbecLogSession --- diff --git a/docset/winserver2019-ps/booteventcollector/Test-SbecActiveConfig.md b/docset/winserver2019-ps/booteventcollector/Test-SbecActiveConfig.md index 2dae63822f..bc3416f41b 100644 --- a/docset/winserver2019-ps/booteventcollector/Test-SbecActiveConfig.md +++ b/docset/winserver2019-ps/booteventcollector/Test-SbecActiveConfig.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/test-sbecactiveconfig?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/test-sbecactiveconfig?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-SbecActiveConfig --- diff --git a/docset/winserver2019-ps/booteventcollector/Test-SbecConfig.md b/docset/winserver2019-ps/booteventcollector/Test-SbecConfig.md index 1b2a7ea885..39ce53bb86 100644 --- a/docset/winserver2019-ps/booteventcollector/Test-SbecConfig.md +++ b/docset/winserver2019-ps/booteventcollector/Test-SbecConfig.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/test-sbecconfig?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/test-sbecconfig?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-SbecConfig --- diff --git a/docset/winserver2019-ps/booteventcollector/Undo-SbecActiveConfig.md b/docset/winserver2019-ps/booteventcollector/Undo-SbecActiveConfig.md index 5f97ebcefe..29cb570d17 100644 --- a/docset/winserver2019-ps/booteventcollector/Undo-SbecActiveConfig.md +++ b/docset/winserver2019-ps/booteventcollector/Undo-SbecActiveConfig.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/undo-sbecactiveconfig?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/undo-sbecactiveconfig?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Undo-SbecActiveConfig --- diff --git a/docset/winserver2019-ps/branchcache/Add-BCDataCacheExtension.md b/docset/winserver2019-ps/branchcache/Add-BCDataCacheExtension.md index 2b6c02928e..e79bad47af 100644 --- a/docset/winserver2019-ps/branchcache/Add-BCDataCacheExtension.md +++ b/docset/winserver2019-ps/branchcache/Add-BCDataCacheExtension.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/add-bcdatacacheextension?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/add-bcdatacacheextension?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-BCDataCacheExtension --- diff --git a/docset/winserver2019-ps/branchcache/Clear-BCCache.md b/docset/winserver2019-ps/branchcache/Clear-BCCache.md index d7d5271165..565e9bc238 100644 --- a/docset/winserver2019-ps/branchcache/Clear-BCCache.md +++ b/docset/winserver2019-ps/branchcache/Clear-BCCache.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/clear-bccache?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/clear-bccache?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-BCCache --- diff --git a/docset/winserver2019-ps/branchcache/Disable-BC.md b/docset/winserver2019-ps/branchcache/Disable-BC.md index c2788369f6..1e9497e187 100644 --- a/docset/winserver2019-ps/branchcache/Disable-BC.md +++ b/docset/winserver2019-ps/branchcache/Disable-BC.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/disable-bc?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/disable-bc?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-BC --- diff --git a/docset/winserver2019-ps/branchcache/Disable-BCDowngrading.md b/docset/winserver2019-ps/branchcache/Disable-BCDowngrading.md index 808c7b4710..6faab05e27 100644 --- a/docset/winserver2019-ps/branchcache/Disable-BCDowngrading.md +++ b/docset/winserver2019-ps/branchcache/Disable-BCDowngrading.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/disable-bcdowngrading?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/disable-bcdowngrading?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-BCDowngrading --- diff --git a/docset/winserver2019-ps/branchcache/Disable-BCServeOnBattery.md b/docset/winserver2019-ps/branchcache/Disable-BCServeOnBattery.md index 3385e7f095..b07e242e21 100644 --- a/docset/winserver2019-ps/branchcache/Disable-BCServeOnBattery.md +++ b/docset/winserver2019-ps/branchcache/Disable-BCServeOnBattery.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/disable-bcserveonbattery?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/disable-bcserveonbattery?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-BCServeOnBattery --- diff --git a/docset/winserver2019-ps/branchcache/Enable-BCDistributed.md b/docset/winserver2019-ps/branchcache/Enable-BCDistributed.md index 7152a2a711..7e279fac06 100644 --- a/docset/winserver2019-ps/branchcache/Enable-BCDistributed.md +++ b/docset/winserver2019-ps/branchcache/Enable-BCDistributed.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/enable-bcdistributed?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/enable-bcdistributed?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-BCDistributed --- diff --git a/docset/winserver2019-ps/branchcache/Enable-BCDowngrading.md b/docset/winserver2019-ps/branchcache/Enable-BCDowngrading.md index 180fbe0c73..205ff9f09f 100644 --- a/docset/winserver2019-ps/branchcache/Enable-BCDowngrading.md +++ b/docset/winserver2019-ps/branchcache/Enable-BCDowngrading.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/enable-bcdowngrading?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/enable-bcdowngrading?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-BCDowngrading --- diff --git a/docset/winserver2019-ps/branchcache/Enable-BCHostedClient.md b/docset/winserver2019-ps/branchcache/Enable-BCHostedClient.md index 4b38c41fd1..939567809d 100644 --- a/docset/winserver2019-ps/branchcache/Enable-BCHostedClient.md +++ b/docset/winserver2019-ps/branchcache/Enable-BCHostedClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/enable-bchostedclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/enable-bchostedclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-BCHostedClient --- diff --git a/docset/winserver2019-ps/branchcache/Enable-BCHostedServer.md b/docset/winserver2019-ps/branchcache/Enable-BCHostedServer.md index d4ad0cabf1..7ac826494e 100644 --- a/docset/winserver2019-ps/branchcache/Enable-BCHostedServer.md +++ b/docset/winserver2019-ps/branchcache/Enable-BCHostedServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/enable-bchostedserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/enable-bchostedserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-BCHostedServer --- diff --git a/docset/winserver2019-ps/branchcache/Enable-BCLocal.md b/docset/winserver2019-ps/branchcache/Enable-BCLocal.md index 9d8315f8a3..54abffe0cc 100644 --- a/docset/winserver2019-ps/branchcache/Enable-BCLocal.md +++ b/docset/winserver2019-ps/branchcache/Enable-BCLocal.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/enable-bclocal?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/enable-bclocal?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-BCLocal --- diff --git a/docset/winserver2019-ps/branchcache/Enable-BCServeOnBattery.md b/docset/winserver2019-ps/branchcache/Enable-BCServeOnBattery.md index 88673bb328..57e824db33 100644 --- a/docset/winserver2019-ps/branchcache/Enable-BCServeOnBattery.md +++ b/docset/winserver2019-ps/branchcache/Enable-BCServeOnBattery.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/enable-bcserveonbattery?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/enable-bcserveonbattery?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-BCServeOnBattery --- diff --git a/docset/winserver2019-ps/branchcache/Export-BCCachePackage.md b/docset/winserver2019-ps/branchcache/Export-BCCachePackage.md index d4f314e061..bdf1b7940f 100644 --- a/docset/winserver2019-ps/branchcache/Export-BCCachePackage.md +++ b/docset/winserver2019-ps/branchcache/Export-BCCachePackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/export-bccachepackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/export-bccachepackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-BCCachePackage --- diff --git a/docset/winserver2019-ps/branchcache/Export-BCSecretKey.md b/docset/winserver2019-ps/branchcache/Export-BCSecretKey.md index 5da8941467..6943f1fd08 100644 --- a/docset/winserver2019-ps/branchcache/Export-BCSecretKey.md +++ b/docset/winserver2019-ps/branchcache/Export-BCSecretKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/export-bcsecretkey?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/export-bcsecretkey?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-BCSecretKey --- diff --git a/docset/winserver2019-ps/branchcache/Get-BCClientConfiguration.md b/docset/winserver2019-ps/branchcache/Get-BCClientConfiguration.md index 991e629c95..0a49dfd235 100644 --- a/docset/winserver2019-ps/branchcache/Get-BCClientConfiguration.md +++ b/docset/winserver2019-ps/branchcache/Get-BCClientConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheClientSettingData.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/get-bcclientconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/get-bcclientconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BCClientConfiguration --- diff --git a/docset/winserver2019-ps/branchcache/Get-BCContentServerConfiguration.md b/docset/winserver2019-ps/branchcache/Get-BCContentServerConfiguration.md index c7832cc83b..ad7741e063 100644 --- a/docset/winserver2019-ps/branchcache/Get-BCContentServerConfiguration.md +++ b/docset/winserver2019-ps/branchcache/Get-BCContentServerConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheContentServerSettingData.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/get-bccontentserverconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/get-bccontentserverconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BCContentServerConfiguration --- diff --git a/docset/winserver2019-ps/branchcache/Get-BCDataCache.md b/docset/winserver2019-ps/branchcache/Get-BCDataCache.md index abf5ed3e6b..9a4312fa08 100644 --- a/docset/winserver2019-ps/branchcache/Get-BCDataCache.md +++ b/docset/winserver2019-ps/branchcache/Get-BCDataCache.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCachePrimaryRepublicationCacheFile.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/get-bcdatacache?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/get-bcdatacache?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BCDataCache --- diff --git a/docset/winserver2019-ps/branchcache/Get-BCDataCacheExtension.md b/docset/winserver2019-ps/branchcache/Get-BCDataCacheExtension.md index 18ff997d8a..6db41a4fed 100644 --- a/docset/winserver2019-ps/branchcache/Get-BCDataCacheExtension.md +++ b/docset/winserver2019-ps/branchcache/Get-BCDataCacheExtension.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheSecondaryRepublicationCacheFile.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/get-bcdatacacheextension?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/get-bcdatacacheextension?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BCDataCacheExtension --- diff --git a/docset/winserver2019-ps/branchcache/Get-BCHashCache.md b/docset/winserver2019-ps/branchcache/Get-BCHashCache.md index 947d97e592..6282685e56 100644 --- a/docset/winserver2019-ps/branchcache/Get-BCHashCache.md +++ b/docset/winserver2019-ps/branchcache/Get-BCHashCache.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCachePrimaryPublicationCacheFile.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/get-bchashcache?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/get-bchashcache?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BCHashCache --- diff --git a/docset/winserver2019-ps/branchcache/Get-BCHostedCacheServerConfiguration.md b/docset/winserver2019-ps/branchcache/Get-BCHostedCacheServerConfiguration.md index 09c9ef545b..2c64e5f4fd 100644 --- a/docset/winserver2019-ps/branchcache/Get-BCHostedCacheServerConfiguration.md +++ b/docset/winserver2019-ps/branchcache/Get-BCHostedCacheServerConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheHostedCacheServerSettingData.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/get-bchostedcacheserverconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/get-bchostedcacheserverconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BCHostedCacheServerConfiguration --- diff --git a/docset/winserver2019-ps/branchcache/Get-BCNetworkConfiguration.md b/docset/winserver2019-ps/branchcache/Get-BCNetworkConfiguration.md index 6527edf448..6f7213f80a 100644 --- a/docset/winserver2019-ps/branchcache/Get-BCNetworkConfiguration.md +++ b/docset/winserver2019-ps/branchcache/Get-BCNetworkConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheNetworkSettingData.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/get-bcnetworkconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/get-bcnetworkconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BCNetworkConfiguration --- diff --git a/docset/winserver2019-ps/branchcache/Get-BCStatus.md b/docset/winserver2019-ps/branchcache/Get-BCStatus.md index 0441fbccb7..3677601633 100644 --- a/docset/winserver2019-ps/branchcache/Get-BCStatus.md +++ b/docset/winserver2019-ps/branchcache/Get-BCStatus.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheStatus.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/get-bcstatus?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/get-bcstatus?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BCStatus --- diff --git a/docset/winserver2019-ps/branchcache/Import-BCCachePackage.md b/docset/winserver2019-ps/branchcache/Import-BCCachePackage.md index fd6579e067..41f9aa6dea 100644 --- a/docset/winserver2019-ps/branchcache/Import-BCCachePackage.md +++ b/docset/winserver2019-ps/branchcache/Import-BCCachePackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/import-bccachepackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/import-bccachepackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-BCCachePackage --- diff --git a/docset/winserver2019-ps/branchcache/Import-BCSecretKey.md b/docset/winserver2019-ps/branchcache/Import-BCSecretKey.md index 84fb593c45..ee2edb9fe7 100644 --- a/docset/winserver2019-ps/branchcache/Import-BCSecretKey.md +++ b/docset/winserver2019-ps/branchcache/Import-BCSecretKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/import-bcsecretkey?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/import-bcsecretkey?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-BCSecretKey --- diff --git a/docset/winserver2019-ps/branchcache/Publish-BCFileContent.md b/docset/winserver2019-ps/branchcache/Publish-BCFileContent.md index 17213d4125..bcf9b386dc 100644 --- a/docset/winserver2019-ps/branchcache/Publish-BCFileContent.md +++ b/docset/winserver2019-ps/branchcache/Publish-BCFileContent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/publish-bcfilecontent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/publish-bcfilecontent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Publish-BCFileContent --- diff --git a/docset/winserver2019-ps/branchcache/Publish-BCWebContent.md b/docset/winserver2019-ps/branchcache/Publish-BCWebContent.md index 8993f73485..01d4d31cd4 100644 --- a/docset/winserver2019-ps/branchcache/Publish-BCWebContent.md +++ b/docset/winserver2019-ps/branchcache/Publish-BCWebContent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/publish-bcwebcontent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/publish-bcwebcontent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Publish-BCWebContent --- diff --git a/docset/winserver2019-ps/branchcache/Remove-BCDataCacheExtension.md b/docset/winserver2019-ps/branchcache/Remove-BCDataCacheExtension.md index 5e7ba5643a..4f5f1d65e7 100644 --- a/docset/winserver2019-ps/branchcache/Remove-BCDataCacheExtension.md +++ b/docset/winserver2019-ps/branchcache/Remove-BCDataCacheExtension.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/remove-bcdatacacheextension?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/remove-bcdatacacheextension?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-BCDataCacheExtension --- diff --git a/docset/winserver2019-ps/branchcache/Reset-BC.md b/docset/winserver2019-ps/branchcache/Reset-BC.md index 639cbb4669..86dc42c9ba 100644 --- a/docset/winserver2019-ps/branchcache/Reset-BC.md +++ b/docset/winserver2019-ps/branchcache/Reset-BC.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/reset-bc?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/reset-bc?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-BC --- diff --git a/docset/winserver2019-ps/branchcache/Set-BCAuthentication.md b/docset/winserver2019-ps/branchcache/Set-BCAuthentication.md index c15d942345..cfa7a10c91 100644 --- a/docset/winserver2019-ps/branchcache/Set-BCAuthentication.md +++ b/docset/winserver2019-ps/branchcache/Set-BCAuthentication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/set-bcauthentication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/set-bcauthentication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-BCAuthentication --- diff --git a/docset/winserver2019-ps/branchcache/Set-BCCache.md b/docset/winserver2019-ps/branchcache/Set-BCCache.md index 1d263f2b3c..fdeca8918c 100644 --- a/docset/winserver2019-ps/branchcache/Set-BCCache.md +++ b/docset/winserver2019-ps/branchcache/Set-BCCache.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/set-bccache?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/set-bccache?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-BCCache --- diff --git a/docset/winserver2019-ps/branchcache/Set-BCDataCacheEntryMaxAge.md b/docset/winserver2019-ps/branchcache/Set-BCDataCacheEntryMaxAge.md index 7adef6e790..0abdd3e4bb 100644 --- a/docset/winserver2019-ps/branchcache/Set-BCDataCacheEntryMaxAge.md +++ b/docset/winserver2019-ps/branchcache/Set-BCDataCacheEntryMaxAge.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/set-bcdatacacheentrymaxage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/set-bcdatacacheentrymaxage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-BCDataCacheEntryMaxAge --- diff --git a/docset/winserver2019-ps/branchcache/Set-BCMinSMBLatency.md b/docset/winserver2019-ps/branchcache/Set-BCMinSMBLatency.md index 9b976b94f5..859b804652 100644 --- a/docset/winserver2019-ps/branchcache/Set-BCMinSMBLatency.md +++ b/docset/winserver2019-ps/branchcache/Set-BCMinSMBLatency.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/set-bcminsmblatency?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/set-bcminsmblatency?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-BCMinSMBLatency --- diff --git a/docset/winserver2019-ps/branchcache/Set-BCSecretKey.md b/docset/winserver2019-ps/branchcache/Set-BCSecretKey.md index 0e1851e30a..b2bb70332a 100644 --- a/docset/winserver2019-ps/branchcache/Set-BCSecretKey.md +++ b/docset/winserver2019-ps/branchcache/Set-BCSecretKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/set-bcsecretkey?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/set-bcsecretkey?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-BCSecretKey --- diff --git a/docset/winserver2019-ps/clusterawareupdating/Add-CauClusterRole.md b/docset/winserver2019-ps/clusterawareupdating/Add-CauClusterRole.md index 2ee9001127..0ebd9df617 100644 --- a/docset/winserver2019-ps/clusterawareupdating/Add-CauClusterRole.md +++ b/docset/winserver2019-ps/clusterawareupdating/Add-CauClusterRole.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/add-cauclusterrole?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/add-cauclusterrole?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-CauClusterRole --- diff --git a/docset/winserver2019-ps/clusterawareupdating/Disable-CauClusterRole.md b/docset/winserver2019-ps/clusterawareupdating/Disable-CauClusterRole.md index b68fc3f1f6..ef568b77be 100644 --- a/docset/winserver2019-ps/clusterawareupdating/Disable-CauClusterRole.md +++ b/docset/winserver2019-ps/clusterawareupdating/Disable-CauClusterRole.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/disable-cauclusterrole?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/disable-cauclusterrole?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-CauClusterRole --- diff --git a/docset/winserver2019-ps/clusterawareupdating/Enable-CauClusterRole.md b/docset/winserver2019-ps/clusterawareupdating/Enable-CauClusterRole.md index 4b9331dac5..49b0c98673 100644 --- a/docset/winserver2019-ps/clusterawareupdating/Enable-CauClusterRole.md +++ b/docset/winserver2019-ps/clusterawareupdating/Enable-CauClusterRole.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/enable-cauclusterrole?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/enable-cauclusterrole?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-CauClusterRole --- diff --git a/docset/winserver2019-ps/clusterawareupdating/Export-CauReport.md b/docset/winserver2019-ps/clusterawareupdating/Export-CauReport.md index ead6c122c9..81f30080f1 100644 --- a/docset/winserver2019-ps/clusterawareupdating/Export-CauReport.md +++ b/docset/winserver2019-ps/clusterawareupdating/Export-CauReport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/export-caureport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/export-caureport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-CauReport --- diff --git a/docset/winserver2019-ps/clusterawareupdating/Get-CauClusterRole.md b/docset/winserver2019-ps/clusterawareupdating/Get-CauClusterRole.md index d95224730d..79817fc5e7 100644 --- a/docset/winserver2019-ps/clusterawareupdating/Get-CauClusterRole.md +++ b/docset/winserver2019-ps/clusterawareupdating/Get-CauClusterRole.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/get-cauclusterrole?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/get-cauclusterrole?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CauClusterRole --- diff --git a/docset/winserver2019-ps/clusterawareupdating/Get-CauPlugin.md b/docset/winserver2019-ps/clusterawareupdating/Get-CauPlugin.md index 7b607db310..42ca921a1f 100644 --- a/docset/winserver2019-ps/clusterawareupdating/Get-CauPlugin.md +++ b/docset/winserver2019-ps/clusterawareupdating/Get-CauPlugin.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/get-cauplugin?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/get-cauplugin?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CauPlugin --- diff --git a/docset/winserver2019-ps/clusterawareupdating/Get-CauReport.md b/docset/winserver2019-ps/clusterawareupdating/Get-CauReport.md index 10bb3ba96d..b8f62a3428 100644 --- a/docset/winserver2019-ps/clusterawareupdating/Get-CauReport.md +++ b/docset/winserver2019-ps/clusterawareupdating/Get-CauReport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/get-caureport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/get-caureport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CauReport --- diff --git a/docset/winserver2019-ps/clusterawareupdating/Get-CauRun.md b/docset/winserver2019-ps/clusterawareupdating/Get-CauRun.md index be50be89ce..3c505dcdc7 100644 --- a/docset/winserver2019-ps/clusterawareupdating/Get-CauRun.md +++ b/docset/winserver2019-ps/clusterawareupdating/Get-CauRun.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/get-caurun?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/get-caurun?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CauRun --- diff --git a/docset/winserver2019-ps/clusterawareupdating/Invoke-CauRun.md b/docset/winserver2019-ps/clusterawareupdating/Invoke-CauRun.md index fde65eab62..6d07b9dbe9 100644 --- a/docset/winserver2019-ps/clusterawareupdating/Invoke-CauRun.md +++ b/docset/winserver2019-ps/clusterawareupdating/Invoke-CauRun.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/invoke-caurun?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/invoke-caurun?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-CauRun --- diff --git a/docset/winserver2019-ps/clusterawareupdating/Invoke-CauScan.md b/docset/winserver2019-ps/clusterawareupdating/Invoke-CauScan.md index de4bb3c609..02c0ff71f8 100644 --- a/docset/winserver2019-ps/clusterawareupdating/Invoke-CauScan.md +++ b/docset/winserver2019-ps/clusterawareupdating/Invoke-CauScan.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/invoke-causcan?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/invoke-causcan?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-CauScan --- diff --git a/docset/winserver2019-ps/clusterawareupdating/Register-CauPlugin.md b/docset/winserver2019-ps/clusterawareupdating/Register-CauPlugin.md index 75a76cda68..b723b907a6 100644 --- a/docset/winserver2019-ps/clusterawareupdating/Register-CauPlugin.md +++ b/docset/winserver2019-ps/clusterawareupdating/Register-CauPlugin.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/register-cauplugin?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/register-cauplugin?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Register-CauPlugin --- diff --git a/docset/winserver2019-ps/clusterawareupdating/Remove-CauClusterRole.md b/docset/winserver2019-ps/clusterawareupdating/Remove-CauClusterRole.md index 033059fa7e..19fd14f2ca 100644 --- a/docset/winserver2019-ps/clusterawareupdating/Remove-CauClusterRole.md +++ b/docset/winserver2019-ps/clusterawareupdating/Remove-CauClusterRole.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/remove-cauclusterrole?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/remove-cauclusterrole?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-CauClusterRole --- diff --git a/docset/winserver2019-ps/clusterawareupdating/Save-CauDebugTrace.md b/docset/winserver2019-ps/clusterawareupdating/Save-CauDebugTrace.md index ca3ec4ee1f..9c3690e6dd 100644 --- a/docset/winserver2019-ps/clusterawareupdating/Save-CauDebugTrace.md +++ b/docset/winserver2019-ps/clusterawareupdating/Save-CauDebugTrace.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/save-caudebugtrace?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/save-caudebugtrace?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Save-CauDebugTrace --- diff --git a/docset/winserver2019-ps/clusterawareupdating/Set-CauClusterRole.md b/docset/winserver2019-ps/clusterawareupdating/Set-CauClusterRole.md index 83a9676445..8c9272a994 100644 --- a/docset/winserver2019-ps/clusterawareupdating/Set-CauClusterRole.md +++ b/docset/winserver2019-ps/clusterawareupdating/Set-CauClusterRole.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/set-cauclusterrole?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/set-cauclusterrole?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-CauClusterRole --- diff --git a/docset/winserver2019-ps/clusterawareupdating/Stop-CauRun.md b/docset/winserver2019-ps/clusterawareupdating/Stop-CauRun.md index 9cc3b2b5f1..0fa1fd5232 100644 --- a/docset/winserver2019-ps/clusterawareupdating/Stop-CauRun.md +++ b/docset/winserver2019-ps/clusterawareupdating/Stop-CauRun.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/stop-caurun?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/stop-caurun?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-CauRun --- diff --git a/docset/winserver2019-ps/clusterawareupdating/Test-CauSetup.md b/docset/winserver2019-ps/clusterawareupdating/Test-CauSetup.md index 8b87c396e9..64ec252573 100644 --- a/docset/winserver2019-ps/clusterawareupdating/Test-CauSetup.md +++ b/docset/winserver2019-ps/clusterawareupdating/Test-CauSetup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/test-causetup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/test-causetup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-CauSetup --- diff --git a/docset/winserver2019-ps/clusterawareupdating/Unregister-CauPlugin.md b/docset/winserver2019-ps/clusterawareupdating/Unregister-CauPlugin.md index e66b354322..a928109a43 100644 --- a/docset/winserver2019-ps/clusterawareupdating/Unregister-CauPlugin.md +++ b/docset/winserver2019-ps/clusterawareupdating/Unregister-CauPlugin.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/unregister-cauplugin?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/unregister-cauplugin?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unregister-CauPlugin --- diff --git a/docset/winserver2019-ps/configci/Add-SignerRule.md b/docset/winserver2019-ps/configci/Add-SignerRule.md index ee475731ef..05bef46bd9 100644 --- a/docset/winserver2019-ps/configci/Add-SignerRule.md +++ b/docset/winserver2019-ps/configci/Add-SignerRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ConfigCI.Commands.dll-Help.xml Module Name: ConfigCI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/configci/add-signerrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/configci/add-signerrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-SignerRule --- diff --git a/docset/winserver2019-ps/configci/ConvertFrom-CIPolicy.md b/docset/winserver2019-ps/configci/ConvertFrom-CIPolicy.md index 1ebbc10d0b..a8d67aff71 100644 --- a/docset/winserver2019-ps/configci/ConvertFrom-CIPolicy.md +++ b/docset/winserver2019-ps/configci/ConvertFrom-CIPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ConfigCI.Commands.dll-Help.xml Module Name: ConfigCI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/configci/convertfrom-cipolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/configci/convertfrom-cipolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: ConvertFrom-CIPolicy --- diff --git a/docset/winserver2019-ps/configci/Edit-CIPolicyRule.md b/docset/winserver2019-ps/configci/Edit-CIPolicyRule.md index cbb2b97a9a..d56ad705a1 100644 --- a/docset/winserver2019-ps/configci/Edit-CIPolicyRule.md +++ b/docset/winserver2019-ps/configci/Edit-CIPolicyRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ConfigCI.Commands.dll-Help.xml Module Name: ConfigCI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/configci/edit-cipolicyrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/configci/edit-cipolicyrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Edit-CIPolicyRule --- diff --git a/docset/winserver2019-ps/configci/Get-CIPolicy.md b/docset/winserver2019-ps/configci/Get-CIPolicy.md index 55cf9261bc..720e2f81f2 100644 --- a/docset/winserver2019-ps/configci/Get-CIPolicy.md +++ b/docset/winserver2019-ps/configci/Get-CIPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ConfigCI.Commands.dll-Help.xml Module Name: ConfigCI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/configci/get-cipolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/configci/get-cipolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CIPolicy --- diff --git a/docset/winserver2019-ps/configci/Get-CIPolicyIdInfo.md b/docset/winserver2019-ps/configci/Get-CIPolicyIdInfo.md index ce70aa1be4..8e2d20d1c4 100644 --- a/docset/winserver2019-ps/configci/Get-CIPolicyIdInfo.md +++ b/docset/winserver2019-ps/configci/Get-CIPolicyIdInfo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ConfigCI.Commands.dll-Help.xml Module Name: ConfigCI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/configci/get-cipolicyidinfo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/configci/get-cipolicyidinfo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CIPolicyIdInfo --- diff --git a/docset/winserver2019-ps/configci/Get-CIPolicyInfo.md b/docset/winserver2019-ps/configci/Get-CIPolicyInfo.md index 9805a4360e..92029e768c 100644 --- a/docset/winserver2019-ps/configci/Get-CIPolicyInfo.md +++ b/docset/winserver2019-ps/configci/Get-CIPolicyInfo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ConfigCI.Commands.dll-Help.xml Module Name: ConfigCI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/configci/get-cipolicyinfo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/configci/get-cipolicyinfo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CIPolicyInfo --- diff --git a/docset/winserver2019-ps/configci/Get-SystemDriver.md b/docset/winserver2019-ps/configci/Get-SystemDriver.md index 6a7b12b0eb..823bbd6361 100644 --- a/docset/winserver2019-ps/configci/Get-SystemDriver.md +++ b/docset/winserver2019-ps/configci/Get-SystemDriver.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ConfigCI.Commands.dll-Help.xml Module Name: ConfigCI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/configci/get-systemdriver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/configci/get-systemdriver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SystemDriver --- diff --git a/docset/winserver2019-ps/configci/Merge-CIPolicy.md b/docset/winserver2019-ps/configci/Merge-CIPolicy.md index 17ee54e5ab..d2cd7cdc66 100644 --- a/docset/winserver2019-ps/configci/Merge-CIPolicy.md +++ b/docset/winserver2019-ps/configci/Merge-CIPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ConfigCI.Commands.dll-Help.xml Module Name: ConfigCI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/configci/merge-cipolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/configci/merge-cipolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Merge-CIPolicy --- diff --git a/docset/winserver2019-ps/configci/New-CIPolicy.md b/docset/winserver2019-ps/configci/New-CIPolicy.md index 27a71ed422..fa87d2b8ea 100644 --- a/docset/winserver2019-ps/configci/New-CIPolicy.md +++ b/docset/winserver2019-ps/configci/New-CIPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ConfigCI.Commands.dll-Help.xml Module Name: ConfigCI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/configci/new-cipolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/configci/new-cipolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-CIPolicy --- diff --git a/docset/winserver2019-ps/configci/New-CIPolicyRule.md b/docset/winserver2019-ps/configci/New-CIPolicyRule.md index b77581a683..ea197e7733 100644 --- a/docset/winserver2019-ps/configci/New-CIPolicyRule.md +++ b/docset/winserver2019-ps/configci/New-CIPolicyRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ConfigCI.Commands.dll-Help.xml Module Name: ConfigCI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/configci/new-cipolicyrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/configci/new-cipolicyrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-CIPolicyRule --- diff --git a/docset/winserver2019-ps/configci/Remove-CIPolicyRule.md b/docset/winserver2019-ps/configci/Remove-CIPolicyRule.md index 198322b6e8..dc013269a3 100644 --- a/docset/winserver2019-ps/configci/Remove-CIPolicyRule.md +++ b/docset/winserver2019-ps/configci/Remove-CIPolicyRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ConfigCI.Commands.dll-Help.xml Module Name: ConfigCI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/configci/remove-cipolicyrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/configci/remove-cipolicyrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-CIPolicyRule --- diff --git a/docset/winserver2019-ps/configci/Set-CIPolicyIdInfo.md b/docset/winserver2019-ps/configci/Set-CIPolicyIdInfo.md index b92f3b1877..a4c83ba0a7 100644 --- a/docset/winserver2019-ps/configci/Set-CIPolicyIdInfo.md +++ b/docset/winserver2019-ps/configci/Set-CIPolicyIdInfo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ConfigCI.Commands.dll-Help.xml Module Name: ConfigCI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/configci/set-cipolicyidinfo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/configci/set-cipolicyidinfo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-CIPolicyIdInfo --- diff --git a/docset/winserver2019-ps/configci/Set-CIPolicyVersion.md b/docset/winserver2019-ps/configci/Set-CIPolicyVersion.md index 920867d317..f3ad6a58ab 100644 --- a/docset/winserver2019-ps/configci/Set-CIPolicyVersion.md +++ b/docset/winserver2019-ps/configci/Set-CIPolicyVersion.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ConfigCI.Commands.dll-Help.xml Module Name: ConfigCI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/configci/set-cipolicyversion?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/configci/set-cipolicyversion?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-CIPolicyVersion --- diff --git a/docset/winserver2019-ps/configci/Set-HVCIOptions.md b/docset/winserver2019-ps/configci/Set-HVCIOptions.md index e034e17e33..a0ebfc227e 100644 --- a/docset/winserver2019-ps/configci/Set-HVCIOptions.md +++ b/docset/winserver2019-ps/configci/Set-HVCIOptions.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ConfigCI.Commands.dll-Help.xml Module Name: ConfigCI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/configci/set-hvcioptions?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/configci/set-hvcioptions?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-HVCIOptions --- diff --git a/docset/winserver2019-ps/configci/Set-RuleOption.md b/docset/winserver2019-ps/configci/Set-RuleOption.md index 386b63c6f9..5255716f41 100644 --- a/docset/winserver2019-ps/configci/Set-RuleOption.md +++ b/docset/winserver2019-ps/configci/Set-RuleOption.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ConfigCI.Commands.dll-Help.xml Module Name: ConfigCI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/configci/set-ruleoption?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/configci/set-ruleoption?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RuleOption --- diff --git a/docset/winserver2019-ps/dcbqos/Disable-NetQosFlowControl.md b/docset/winserver2019-ps/dcbqos/Disable-NetQosFlowControl.md index 9c8b010f40..7ec4af3e7c 100644 --- a/docset/winserver2019-ps/dcbqos/Disable-NetQosFlowControl.md +++ b/docset/winserver2019-ps/dcbqos/Disable-NetQosFlowControl.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetQosFlowControl.cdxml-help.xml Module Name: DcbQoS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/dcbqos/disable-netqosflowcontrol?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/disable-netqosflowcontrol?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetQosFlowControl --- diff --git a/docset/winserver2019-ps/dcbqos/Enable-NetQosFlowControl.md b/docset/winserver2019-ps/dcbqos/Enable-NetQosFlowControl.md index a45930324b..3a5f9b831c 100644 --- a/docset/winserver2019-ps/dcbqos/Enable-NetQosFlowControl.md +++ b/docset/winserver2019-ps/dcbqos/Enable-NetQosFlowControl.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetQosFlowControl.cdxml-help.xml Module Name: DcbQoS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/dcbqos/enable-netqosflowcontrol?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/enable-netqosflowcontrol?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetQosFlowControl --- diff --git a/docset/winserver2019-ps/dcbqos/Get-NetQosDcbxSetting.md b/docset/winserver2019-ps/dcbqos/Get-NetQosDcbxSetting.md index 5294aff151..f60126e3da 100644 --- a/docset/winserver2019-ps/dcbqos/Get-NetQosDcbxSetting.md +++ b/docset/winserver2019-ps/dcbqos/Get-NetQosDcbxSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetQosDcbxSetting.cdxml-help.xml Module Name: DcbQoS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/dcbqos/get-netqosdcbxsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/get-netqosdcbxsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetQosDcbxSetting --- diff --git a/docset/winserver2019-ps/dcbqos/Get-NetQosFlowControl.md b/docset/winserver2019-ps/dcbqos/Get-NetQosFlowControl.md index 64a83aad4d..4d266cc12e 100644 --- a/docset/winserver2019-ps/dcbqos/Get-NetQosFlowControl.md +++ b/docset/winserver2019-ps/dcbqos/Get-NetQosFlowControl.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetQosFlowControl.cdxml-help.xml Module Name: DcbQoS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/dcbqos/get-netqosflowcontrol?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/get-netqosflowcontrol?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetQosFlowControl --- diff --git a/docset/winserver2019-ps/dcbqos/Get-NetQosTrafficClass.md b/docset/winserver2019-ps/dcbqos/Get-NetQosTrafficClass.md index 9486380611..271c059670 100644 --- a/docset/winserver2019-ps/dcbqos/Get-NetQosTrafficClass.md +++ b/docset/winserver2019-ps/dcbqos/Get-NetQosTrafficClass.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetQosTrafficClass.cdxml-help.xml Module Name: DcbQoS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/dcbqos/get-netqostrafficclass?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/get-netqostrafficclass?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetQosTrafficClass --- diff --git a/docset/winserver2019-ps/dcbqos/New-NetQosTrafficClass.md b/docset/winserver2019-ps/dcbqos/New-NetQosTrafficClass.md index ab1bd49be5..4bb966f22b 100644 --- a/docset/winserver2019-ps/dcbqos/New-NetQosTrafficClass.md +++ b/docset/winserver2019-ps/dcbqos/New-NetQosTrafficClass.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetQosTrafficClass.cdxml-help.xml Module Name: DcbQoS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/dcbqos/new-netqostrafficclass?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/new-netqostrafficclass?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetQosTrafficClass --- diff --git a/docset/winserver2019-ps/dcbqos/Remove-NetQosTrafficClass.md b/docset/winserver2019-ps/dcbqos/Remove-NetQosTrafficClass.md index db26fe8cff..3d18be31d9 100644 --- a/docset/winserver2019-ps/dcbqos/Remove-NetQosTrafficClass.md +++ b/docset/winserver2019-ps/dcbqos/Remove-NetQosTrafficClass.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetQosTrafficClass.cdxml-help.xml Module Name: DcbQoS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/dcbqos/remove-netqostrafficclass?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/remove-netqostrafficclass?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetQosTrafficClass --- diff --git a/docset/winserver2019-ps/dcbqos/Set-NetQosDcbxSetting.md b/docset/winserver2019-ps/dcbqos/Set-NetQosDcbxSetting.md index 9fed4b9240..ff594468c2 100644 --- a/docset/winserver2019-ps/dcbqos/Set-NetQosDcbxSetting.md +++ b/docset/winserver2019-ps/dcbqos/Set-NetQosDcbxSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetQosDcbxSetting.cdxml-help.xml Module Name: DcbQoS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/dcbqos/set-netqosdcbxsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/set-netqosdcbxsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetQosDcbxSetting --- diff --git a/docset/winserver2019-ps/dcbqos/Set-NetQosFlowControl.md b/docset/winserver2019-ps/dcbqos/Set-NetQosFlowControl.md index 971b0f8709..1113b830c2 100644 --- a/docset/winserver2019-ps/dcbqos/Set-NetQosFlowControl.md +++ b/docset/winserver2019-ps/dcbqos/Set-NetQosFlowControl.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetQosFlowControl.cdxml-help.xml Module Name: DcbQoS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/dcbqos/set-netqosflowcontrol?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/set-netqosflowcontrol?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetQosFlowControl --- diff --git a/docset/winserver2019-ps/dcbqos/Set-NetQosTrafficClass.md b/docset/winserver2019-ps/dcbqos/Set-NetQosTrafficClass.md index ec9f3db4f4..e20ec21a4e 100644 --- a/docset/winserver2019-ps/dcbqos/Set-NetQosTrafficClass.md +++ b/docset/winserver2019-ps/dcbqos/Set-NetQosTrafficClass.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetQosTrafficClass.cdxml-help.xml Module Name: DcbQoS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/dcbqos/set-netqostrafficclass?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/set-netqostrafficclass?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetQosTrafficClass --- diff --git a/docset/winserver2019-ps/dcbqos/Switch-NetQosDcbxSetting.md b/docset/winserver2019-ps/dcbqos/Switch-NetQosDcbxSetting.md index c993a1becf..8c6d57bdf7 100644 --- a/docset/winserver2019-ps/dcbqos/Switch-NetQosDcbxSetting.md +++ b/docset/winserver2019-ps/dcbqos/Switch-NetQosDcbxSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetQosDcbxSetting.cdxml-help.xml Module Name: DcbQoS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/dcbqos/switch-netqosdcbxsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/switch-netqosdcbxsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Switch-NetQosDcbxSetting --- diff --git a/docset/winserver2019-ps/dcbqos/Switch-NetQosFlowControl.md b/docset/winserver2019-ps/dcbqos/Switch-NetQosFlowControl.md index 13af397506..c6713ced63 100644 --- a/docset/winserver2019-ps/dcbqos/Switch-NetQosFlowControl.md +++ b/docset/winserver2019-ps/dcbqos/Switch-NetQosFlowControl.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetQosFlowControl.cdxml-help.xml Module Name: DcbQoS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/dcbqos/switch-netqosflowcontrol?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/switch-netqosflowcontrol?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Switch-NetQosFlowControl --- diff --git a/docset/winserver2019-ps/dcbqos/Switch-NetQosTrafficClass.md b/docset/winserver2019-ps/dcbqos/Switch-NetQosTrafficClass.md index 47ee43f0ea..6ee641afc7 100644 --- a/docset/winserver2019-ps/dcbqos/Switch-NetQosTrafficClass.md +++ b/docset/winserver2019-ps/dcbqos/Switch-NetQosTrafficClass.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetQosTrafficClass.cdxml-help.xml Module Name: DcbQoS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/dcbqos/switch-netqostrafficclass?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/switch-netqostrafficclass?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Switch-NetQosTrafficClass --- diff --git a/docset/winserver2019-ps/deduplication/Disable-DedupVolume.md b/docset/winserver2019-ps/deduplication/Disable-DedupVolume.md index aadfffbd8c..8c3054489f 100644 --- a/docset/winserver2019-ps/deduplication/Disable-DedupVolume.md +++ b/docset/winserver2019-ps/deduplication/Disable-DedupVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DedupVolume.cdxml-help.xml Module Name: Deduplication ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/deduplication/disable-dedupvolume?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/disable-dedupvolume?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-DedupVolume --- diff --git a/docset/winserver2019-ps/deduplication/Enable-DedupVolume.md b/docset/winserver2019-ps/deduplication/Enable-DedupVolume.md index 81852b5602..a917d9aac4 100644 --- a/docset/winserver2019-ps/deduplication/Enable-DedupVolume.md +++ b/docset/winserver2019-ps/deduplication/Enable-DedupVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DedupVolume.cdxml-help.xml Module Name: Deduplication ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/deduplication/enable-dedupvolume?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/enable-dedupvolume?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-DedupVolume --- diff --git a/docset/winserver2019-ps/deduplication/Expand-DedupFile.md b/docset/winserver2019-ps/deduplication/Expand-DedupFile.md index 54a4707aa4..ecbb1cf81b 100644 --- a/docset/winserver2019-ps/deduplication/Expand-DedupFile.md +++ b/docset/winserver2019-ps/deduplication/Expand-DedupFile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DedupVolume.cdxml-help.xml Module Name: Deduplication ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/deduplication/expand-dedupfile?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/expand-dedupfile?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Expand-DedupFile --- diff --git a/docset/winserver2019-ps/deduplication/Get-DedupJob.md b/docset/winserver2019-ps/deduplication/Get-DedupJob.md index 69d3a6f526..a4b1d0f45c 100644 --- a/docset/winserver2019-ps/deduplication/Get-DedupJob.md +++ b/docset/winserver2019-ps/deduplication/Get-DedupJob.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DedupJob.cdxml-help.xml Module Name: Deduplication ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/deduplication/get-dedupjob?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/get-dedupjob?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DedupJob --- diff --git a/docset/winserver2019-ps/deduplication/Get-DedupMetadata.md b/docset/winserver2019-ps/deduplication/Get-DedupMetadata.md index 8a38be7889..e9df838f46 100644 --- a/docset/winserver2019-ps/deduplication/Get-DedupMetadata.md +++ b/docset/winserver2019-ps/deduplication/Get-DedupMetadata.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DedupMetadata.cdxml-help.xml Module Name: Deduplication ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/deduplication/get-dedupmetadata?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/get-dedupmetadata?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DedupMetadata --- diff --git a/docset/winserver2019-ps/deduplication/Get-DedupSchedule.md b/docset/winserver2019-ps/deduplication/Get-DedupSchedule.md index d4b0a873d3..9e013bf8e7 100644 --- a/docset/winserver2019-ps/deduplication/Get-DedupSchedule.md +++ b/docset/winserver2019-ps/deduplication/Get-DedupSchedule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DedupSchedule.cdxml-help.xml Module Name: Deduplication ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/deduplication/get-dedupschedule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/get-dedupschedule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DedupSchedule --- diff --git a/docset/winserver2019-ps/deduplication/Get-DedupStatus.md b/docset/winserver2019-ps/deduplication/Get-DedupStatus.md index 07544c138c..1520c254a5 100644 --- a/docset/winserver2019-ps/deduplication/Get-DedupStatus.md +++ b/docset/winserver2019-ps/deduplication/Get-DedupStatus.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DedupStatus.cdxml-help.xml Module Name: Deduplication ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/deduplication/get-dedupstatus?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/get-dedupstatus?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DedupStatus --- diff --git a/docset/winserver2019-ps/deduplication/Get-DedupVolume.md b/docset/winserver2019-ps/deduplication/Get-DedupVolume.md index ec67848de0..4a0d7d8562 100644 --- a/docset/winserver2019-ps/deduplication/Get-DedupVolume.md +++ b/docset/winserver2019-ps/deduplication/Get-DedupVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DedupVolume.cdxml-help.xml Module Name: Deduplication ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/deduplication/get-dedupvolume?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/get-dedupvolume?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DedupVolume --- diff --git a/docset/winserver2019-ps/deduplication/Measure-DedupFileMetadata.md b/docset/winserver2019-ps/deduplication/Measure-DedupFileMetadata.md index ca0a69a4a8..c83d7d90d1 100644 --- a/docset/winserver2019-ps/deduplication/Measure-DedupFileMetadata.md +++ b/docset/winserver2019-ps/deduplication/Measure-DedupFileMetadata.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DedupFileMetadata.cdxml-help.xml Module Name: Deduplication ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/deduplication/measure-dedupfilemetadata?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/measure-dedupfilemetadata?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Measure-DedupFileMetadata --- diff --git a/docset/winserver2019-ps/deduplication/New-DedupSchedule.md b/docset/winserver2019-ps/deduplication/New-DedupSchedule.md index 735634ad19..de793d5f87 100644 --- a/docset/winserver2019-ps/deduplication/New-DedupSchedule.md +++ b/docset/winserver2019-ps/deduplication/New-DedupSchedule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DedupSchedule.cdxml-help.xml Module Name: Deduplication ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/deduplication/new-dedupschedule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/new-dedupschedule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-DedupSchedule --- diff --git a/docset/winserver2019-ps/deduplication/Remove-DedupSchedule.md b/docset/winserver2019-ps/deduplication/Remove-DedupSchedule.md index 6f1242b393..306326c8df 100644 --- a/docset/winserver2019-ps/deduplication/Remove-DedupSchedule.md +++ b/docset/winserver2019-ps/deduplication/Remove-DedupSchedule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DedupSchedule.cdxml-help.xml Module Name: Deduplication ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/deduplication/remove-dedupschedule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/remove-dedupschedule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DedupSchedule --- diff --git a/docset/winserver2019-ps/deduplication/Set-DedupSchedule.md b/docset/winserver2019-ps/deduplication/Set-DedupSchedule.md index e9c86ac01f..77250ffe62 100644 --- a/docset/winserver2019-ps/deduplication/Set-DedupSchedule.md +++ b/docset/winserver2019-ps/deduplication/Set-DedupSchedule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DedupSchedule.cdxml-help.xml Module Name: Deduplication ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/deduplication/set-dedupschedule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/set-dedupschedule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DedupSchedule --- diff --git a/docset/winserver2019-ps/deduplication/Set-DedupVolume.md b/docset/winserver2019-ps/deduplication/Set-DedupVolume.md index cb97b11cdd..2b708a628a 100644 --- a/docset/winserver2019-ps/deduplication/Set-DedupVolume.md +++ b/docset/winserver2019-ps/deduplication/Set-DedupVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DedupVolume.cdxml-help.xml Module Name: Deduplication ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/deduplication/set-dedupvolume?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/set-dedupvolume?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DedupVolume --- diff --git a/docset/winserver2019-ps/deduplication/Start-DedupJob.md b/docset/winserver2019-ps/deduplication/Start-DedupJob.md index f92530b9f5..bbe58dce6a 100644 --- a/docset/winserver2019-ps/deduplication/Start-DedupJob.md +++ b/docset/winserver2019-ps/deduplication/Start-DedupJob.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DedupJob.cdxml-help.xml Module Name: Deduplication ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/deduplication/start-dedupjob?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/start-dedupjob?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-DedupJob --- diff --git a/docset/winserver2019-ps/deduplication/Stop-DedupJob.md b/docset/winserver2019-ps/deduplication/Stop-DedupJob.md index 961f2f7956..02ff14c6cf 100644 --- a/docset/winserver2019-ps/deduplication/Stop-DedupJob.md +++ b/docset/winserver2019-ps/deduplication/Stop-DedupJob.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DedupJob.cdxml-help.xml Module Name: Deduplication ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/deduplication/stop-dedupjob?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/stop-dedupjob?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-DedupJob --- diff --git a/docset/winserver2019-ps/deduplication/Update-DedupStatus.md b/docset/winserver2019-ps/deduplication/Update-DedupStatus.md index 0693c5964a..442e11d9e1 100644 --- a/docset/winserver2019-ps/deduplication/Update-DedupStatus.md +++ b/docset/winserver2019-ps/deduplication/Update-DedupStatus.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DedupStatus.cdxml-help.xml Module Name: Deduplication ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/deduplication/update-dedupstatus?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/update-dedupstatus?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-DedupStatus --- diff --git a/docset/winserver2019-ps/defender/Add-MpPreference.md b/docset/winserver2019-ps/defender/Add-MpPreference.md index 14e067b887..2be629cb94 100644 --- a/docset/winserver2019-ps/defender/Add-MpPreference.md +++ b/docset/winserver2019-ps/defender/Add-MpPreference.md @@ -3,7 +3,7 @@ description: The Add-MpPreference cmdlet modifies settings for Windows Defender. external help file: MSFT_MpPreference.cdxml-help.xml Module Name: Defender ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/defender/add-mppreference?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/defender/add-mppreference?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-MpPreference --- diff --git a/docset/winserver2019-ps/defender/Get-MpComputerStatus.md b/docset/winserver2019-ps/defender/Get-MpComputerStatus.md index 1e32852dd8..26ba030db1 100644 --- a/docset/winserver2019-ps/defender/Get-MpComputerStatus.md +++ b/docset/winserver2019-ps/defender/Get-MpComputerStatus.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_MpComputerStatus.cdxml-help.xml Module Name: Defender ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/defender/get-mpcomputerstatus?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/defender/get-mpcomputerstatus?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MpComputerStatus --- diff --git a/docset/winserver2019-ps/defender/Get-MpPreference.md b/docset/winserver2019-ps/defender/Get-MpPreference.md index 2aa589874b..5df7a32337 100644 --- a/docset/winserver2019-ps/defender/Get-MpPreference.md +++ b/docset/winserver2019-ps/defender/Get-MpPreference.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_MpPreference.cdxml-help.xml Module Name: Defender ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/defender/get-mppreference?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/defender/get-mppreference?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MpPreference --- diff --git a/docset/winserver2019-ps/defender/Get-MpThreat.md b/docset/winserver2019-ps/defender/Get-MpThreat.md index 927210a3fe..6c372c962b 100644 --- a/docset/winserver2019-ps/defender/Get-MpThreat.md +++ b/docset/winserver2019-ps/defender/Get-MpThreat.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_MpThreat.cdxml-help.xml Module Name: Defender ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/defender/get-mpthreat?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/defender/get-mpthreat?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MpThreat --- diff --git a/docset/winserver2019-ps/defender/Get-MpThreatCatalog.md b/docset/winserver2019-ps/defender/Get-MpThreatCatalog.md index d20d4272e7..675660c2b2 100644 --- a/docset/winserver2019-ps/defender/Get-MpThreatCatalog.md +++ b/docset/winserver2019-ps/defender/Get-MpThreatCatalog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_MpThreatCatalog.cdxml-help.xml Module Name: Defender ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/defender/get-mpthreatcatalog?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/defender/get-mpthreatcatalog?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MpThreatCatalog --- diff --git a/docset/winserver2019-ps/defender/Get-MpThreatDetection.md b/docset/winserver2019-ps/defender/Get-MpThreatDetection.md index d7824f94df..6d86a24ac6 100644 --- a/docset/winserver2019-ps/defender/Get-MpThreatDetection.md +++ b/docset/winserver2019-ps/defender/Get-MpThreatDetection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_MpThreatDetection.cdxml-help.xml Module Name: Defender ms.date: 09/19/2018 -online version: https://docs.microsoft.com/powershell/module/defender/get-mpthreatdetection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/defender/get-mpthreatdetection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MpThreatDetection --- diff --git a/docset/winserver2019-ps/defender/Remove-MpPreference.md b/docset/winserver2019-ps/defender/Remove-MpPreference.md index 8ce0c1f848..ce3e6cbf19 100644 --- a/docset/winserver2019-ps/defender/Remove-MpPreference.md +++ b/docset/winserver2019-ps/defender/Remove-MpPreference.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_MpPreference.cdxml-help.xml Module Name: Defender ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/defender/remove-mppreference?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/defender/remove-mppreference?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-MpPreference --- diff --git a/docset/winserver2019-ps/defender/Remove-MpThreat.md b/docset/winserver2019-ps/defender/Remove-MpThreat.md index eb999bc91d..8d37440820 100644 --- a/docset/winserver2019-ps/defender/Remove-MpThreat.md +++ b/docset/winserver2019-ps/defender/Remove-MpThreat.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_MpThreat.cdxml-help.xml Module Name: Defender ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/defender/remove-mpthreat?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/defender/remove-mpthreat?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-MpThreat --- diff --git a/docset/winserver2019-ps/defender/Set-MpPreference.md b/docset/winserver2019-ps/defender/Set-MpPreference.md index b766af3beb..7c99cf3d20 100644 --- a/docset/winserver2019-ps/defender/Set-MpPreference.md +++ b/docset/winserver2019-ps/defender/Set-MpPreference.md @@ -3,7 +3,7 @@ description: Use this article to help manage Windows and Windows Server technolo external help file: MSFT_MpPreference.cdxml-help.xml Module Name: Defender ms.date: 09/20/2022 -online version: https://docs.microsoft.com/powershell/module/defender/set-mppreference?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/defender/set-mppreference?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-MpPreference --- diff --git a/docset/winserver2019-ps/defender/Start-MpScan.md b/docset/winserver2019-ps/defender/Start-MpScan.md index fa38a47a88..88dc8fb4cd 100644 --- a/docset/winserver2019-ps/defender/Start-MpScan.md +++ b/docset/winserver2019-ps/defender/Start-MpScan.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_MpScan.cdxml-help.xml Module Name: Defender ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/defender/start-mpscan?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/defender/start-mpscan?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-MpScan --- diff --git a/docset/winserver2019-ps/defender/Start-MpWDOScan.md b/docset/winserver2019-ps/defender/Start-MpWDOScan.md index 329bd5a42b..35ae5987c5 100644 --- a/docset/winserver2019-ps/defender/Start-MpWDOScan.md +++ b/docset/winserver2019-ps/defender/Start-MpWDOScan.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_MpWDOScan.cdxml-help.xml Module Name: Defender ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/defender/start-mpwdoscan?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/defender/start-mpwdoscan?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-MpWDOScan --- diff --git a/docset/winserver2019-ps/defender/Update-MpSignature.md b/docset/winserver2019-ps/defender/Update-MpSignature.md index 6493994cef..bcee210b10 100644 --- a/docset/winserver2019-ps/defender/Update-MpSignature.md +++ b/docset/winserver2019-ps/defender/Update-MpSignature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_MpSignature.cdxml-help.xml Module Name: Defender ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/defender/update-mpsignature?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/defender/update-mpsignature?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-MpSignature --- diff --git a/docset/winserver2019-ps/devicehealthattestation/Backup-DHASConfiguration.md b/docset/winserver2019-ps/devicehealthattestation/Backup-DHASConfiguration.md index 2fc9cda8b7..02491f0f48 100644 --- a/docset/winserver2019-ps/devicehealthattestation/Backup-DHASConfiguration.md +++ b/docset/winserver2019-ps/devicehealthattestation/Backup-DHASConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.DeviceHealthAttestation.PowerShell.dll-Help.xml Module Name: DeviceHealthAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/devicehealthattestation/backup-dhasconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/devicehealthattestation/backup-dhasconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Backup-DHASConfiguration --- diff --git a/docset/winserver2019-ps/devicehealthattestation/Get-DHASActiveEncryptionCertificate.md b/docset/winserver2019-ps/devicehealthattestation/Get-DHASActiveEncryptionCertificate.md index ea8cc26098..e475bf6b4b 100644 --- a/docset/winserver2019-ps/devicehealthattestation/Get-DHASActiveEncryptionCertificate.md +++ b/docset/winserver2019-ps/devicehealthattestation/Get-DHASActiveEncryptionCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.DeviceHealthAttestation.PowerShell.dll-Help.xml Module Name: DeviceHealthAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/devicehealthattestation/get-dhasactiveencryptioncertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/devicehealthattestation/get-dhasactiveencryptioncertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DHASActiveEncryptionCertificate --- diff --git a/docset/winserver2019-ps/devicehealthattestation/Get-DHASActiveSigningCertificate.md b/docset/winserver2019-ps/devicehealthattestation/Get-DHASActiveSigningCertificate.md index e56664cbba..ebc4e1c5c7 100644 --- a/docset/winserver2019-ps/devicehealthattestation/Get-DHASActiveSigningCertificate.md +++ b/docset/winserver2019-ps/devicehealthattestation/Get-DHASActiveSigningCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.DeviceHealthAttestation.PowerShell.dll-Help.xml Module Name: DeviceHealthAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/devicehealthattestation/get-dhasactivesigningcertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/devicehealthattestation/get-dhasactivesigningcertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DHASActiveSigningCertificate --- diff --git a/docset/winserver2019-ps/devicehealthattestation/Get-DHASCertificateChainPolicy.md b/docset/winserver2019-ps/devicehealthattestation/Get-DHASCertificateChainPolicy.md index 1f1f3d5969..b5622532f2 100644 --- a/docset/winserver2019-ps/devicehealthattestation/Get-DHASCertificateChainPolicy.md +++ b/docset/winserver2019-ps/devicehealthattestation/Get-DHASCertificateChainPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.DeviceHealthAttestation.PowerShell.dll-Help.xml Module Name: DeviceHealthAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/devicehealthattestation/get-dhascertificatechainpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/devicehealthattestation/get-dhascertificatechainpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DHASCertificateChainPolicy --- diff --git a/docset/winserver2019-ps/devicehealthattestation/Get-DHASInactiveEncryptionCertificate.md b/docset/winserver2019-ps/devicehealthattestation/Get-DHASInactiveEncryptionCertificate.md index e06f6f8c11..a4c849069c 100644 --- a/docset/winserver2019-ps/devicehealthattestation/Get-DHASInactiveEncryptionCertificate.md +++ b/docset/winserver2019-ps/devicehealthattestation/Get-DHASInactiveEncryptionCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.DeviceHealthAttestation.PowerShell.dll-Help.xml Module Name: DeviceHealthAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/devicehealthattestation/get-dhasinactiveencryptioncertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/devicehealthattestation/get-dhasinactiveencryptioncertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DHASInactiveEncryptionCertificate --- diff --git a/docset/winserver2019-ps/devicehealthattestation/Get-DHASInactiveSigningCertificate.md b/docset/winserver2019-ps/devicehealthattestation/Get-DHASInactiveSigningCertificate.md index 2a3f5ef1f0..685e31c1b6 100644 --- a/docset/winserver2019-ps/devicehealthattestation/Get-DHASInactiveSigningCertificate.md +++ b/docset/winserver2019-ps/devicehealthattestation/Get-DHASInactiveSigningCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.DeviceHealthAttestation.PowerShell.dll-Help.xml Module Name: DeviceHealthAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/devicehealthattestation/get-dhasinactivesigningcertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/devicehealthattestation/get-dhasinactivesigningcertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DHASInactiveSigningCertificate --- diff --git a/docset/winserver2019-ps/devicehealthattestation/Install-DeviceHealthAttestation.md b/docset/winserver2019-ps/devicehealthattestation/Install-DeviceHealthAttestation.md index 078059aae6..48c6764360 100644 --- a/docset/winserver2019-ps/devicehealthattestation/Install-DeviceHealthAttestation.md +++ b/docset/winserver2019-ps/devicehealthattestation/Install-DeviceHealthAttestation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.DeviceHealthAttestation.PowerShell.dll-Help.xml Module Name: DeviceHealthAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/devicehealthattestation/install-devicehealthattestation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/devicehealthattestation/install-devicehealthattestation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-DeviceHealthAttestation --- diff --git a/docset/winserver2019-ps/devicehealthattestation/Remove-DHASInactiveEncryptionCertificate.md b/docset/winserver2019-ps/devicehealthattestation/Remove-DHASInactiveEncryptionCertificate.md index f288cfc96b..ab2d99a422 100644 --- a/docset/winserver2019-ps/devicehealthattestation/Remove-DHASInactiveEncryptionCertificate.md +++ b/docset/winserver2019-ps/devicehealthattestation/Remove-DHASInactiveEncryptionCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.DeviceHealthAttestation.PowerShell.dll-Help.xml Module Name: DeviceHealthAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/devicehealthattestation/remove-dhasinactiveencryptioncertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/devicehealthattestation/remove-dhasinactiveencryptioncertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DHASInactiveEncryptionCertificate --- diff --git a/docset/winserver2019-ps/devicehealthattestation/Remove-DHASInactiveSigningCertificate.md b/docset/winserver2019-ps/devicehealthattestation/Remove-DHASInactiveSigningCertificate.md index 01de5eaac8..7b2c06e44b 100644 --- a/docset/winserver2019-ps/devicehealthattestation/Remove-DHASInactiveSigningCertificate.md +++ b/docset/winserver2019-ps/devicehealthattestation/Remove-DHASInactiveSigningCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.DeviceHealthAttestation.PowerShell.dll-Help.xml Module Name: DeviceHealthAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/devicehealthattestation/remove-dhasinactivesigningcertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/devicehealthattestation/remove-dhasinactivesigningcertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DHASInactiveSigningCertificate --- diff --git a/docset/winserver2019-ps/devicehealthattestation/Restore-DHASConfiguration.md b/docset/winserver2019-ps/devicehealthattestation/Restore-DHASConfiguration.md index 5ca3f49fbb..b0cac285aa 100644 --- a/docset/winserver2019-ps/devicehealthattestation/Restore-DHASConfiguration.md +++ b/docset/winserver2019-ps/devicehealthattestation/Restore-DHASConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.DeviceHealthAttestation.PowerShell.dll-Help.xml Module Name: DeviceHealthAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/devicehealthattestation/restore-dhasconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/devicehealthattestation/restore-dhasconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-DHASConfiguration --- diff --git a/docset/winserver2019-ps/devicehealthattestation/Set-DHASActiveEncryptionCertificate.md b/docset/winserver2019-ps/devicehealthattestation/Set-DHASActiveEncryptionCertificate.md index 2093ed1050..a2130af524 100644 --- a/docset/winserver2019-ps/devicehealthattestation/Set-DHASActiveEncryptionCertificate.md +++ b/docset/winserver2019-ps/devicehealthattestation/Set-DHASActiveEncryptionCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.DeviceHealthAttestation.PowerShell.dll-Help.xml Module Name: DeviceHealthAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/devicehealthattestation/set-dhasactiveencryptioncertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/devicehealthattestation/set-dhasactiveencryptioncertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DHASActiveEncryptionCertificate --- diff --git a/docset/winserver2019-ps/devicehealthattestation/Set-DHASActiveSigningCertificate.md b/docset/winserver2019-ps/devicehealthattestation/Set-DHASActiveSigningCertificate.md index 5255119d9d..a84437e02e 100644 --- a/docset/winserver2019-ps/devicehealthattestation/Set-DHASActiveSigningCertificate.md +++ b/docset/winserver2019-ps/devicehealthattestation/Set-DHASActiveSigningCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.DeviceHealthAttestation.PowerShell.dll-Help.xml Module Name: DeviceHealthAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/devicehealthattestation/set-dhasactivesigningcertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/devicehealthattestation/set-dhasactivesigningcertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DHASActiveSigningCertificate --- diff --git a/docset/winserver2019-ps/devicehealthattestation/Set-DHASCertificateChainPolicy.md b/docset/winserver2019-ps/devicehealthattestation/Set-DHASCertificateChainPolicy.md index c48e7545ce..693b70b75d 100644 --- a/docset/winserver2019-ps/devicehealthattestation/Set-DHASCertificateChainPolicy.md +++ b/docset/winserver2019-ps/devicehealthattestation/Set-DHASCertificateChainPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.DeviceHealthAttestation.PowerShell.dll-Help.xml Module Name: DeviceHealthAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/devicehealthattestation/set-dhascertificatechainpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/devicehealthattestation/set-dhascertificatechainpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DHASCertificateChainPolicy --- diff --git a/docset/winserver2019-ps/devicehealthattestation/Set-DHASSupportedAuthenticationSchema.md b/docset/winserver2019-ps/devicehealthattestation/Set-DHASSupportedAuthenticationSchema.md index ede8543194..9a8d91fdd7 100644 --- a/docset/winserver2019-ps/devicehealthattestation/Set-DHASSupportedAuthenticationSchema.md +++ b/docset/winserver2019-ps/devicehealthattestation/Set-DHASSupportedAuthenticationSchema.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.DeviceHealthAttestation.PowerShell.dll-Help.xml Module Name: DeviceHealthAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/devicehealthattestation/set-dhassupportedauthenticationschema?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/devicehealthattestation/set-dhassupportedauthenticationschema?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DHASSupportedAuthenticationSchema --- diff --git a/docset/winserver2019-ps/devicehealthattestation/Uninstall-DeviceHealthAttestation.md b/docset/winserver2019-ps/devicehealthattestation/Uninstall-DeviceHealthAttestation.md index f5856791bb..e7f44c83db 100644 --- a/docset/winserver2019-ps/devicehealthattestation/Uninstall-DeviceHealthAttestation.md +++ b/docset/winserver2019-ps/devicehealthattestation/Uninstall-DeviceHealthAttestation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.DeviceHealthAttestation.PowerShell.dll-Help.xml Module Name: DeviceHealthAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/devicehealthattestation/uninstall-devicehealthattestation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/devicehealthattestation/uninstall-devicehealthattestation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-DeviceHealthAttestation --- diff --git a/docset/winserver2019-ps/dfsn/Get-DfsnAccess.md b/docset/winserver2019-ps/dfsn/Get-DfsnAccess.md index b289f124d5..298b4701eb 100644 --- a/docset/winserver2019-ps/dfsn/Get-DfsnAccess.md +++ b/docset/winserver2019-ps/dfsn/Get-DfsnAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceAccess.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/get-dfsnaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/get-dfsnaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsnAccess --- diff --git a/docset/winserver2019-ps/dfsn/Get-DfsnFolder.md b/docset/winserver2019-ps/dfsn/Get-DfsnFolder.md index 8a31fb566b..01e2efcb10 100644 --- a/docset/winserver2019-ps/dfsn/Get-DfsnFolder.md +++ b/docset/winserver2019-ps/dfsn/Get-DfsnFolder.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceFolder.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/get-dfsnfolder?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/get-dfsnfolder?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsnFolder --- diff --git a/docset/winserver2019-ps/dfsn/Get-DfsnFolderTarget.md b/docset/winserver2019-ps/dfsn/Get-DfsnFolderTarget.md index 30e0a9d9c6..47b146e93c 100644 --- a/docset/winserver2019-ps/dfsn/Get-DfsnFolderTarget.md +++ b/docset/winserver2019-ps/dfsn/Get-DfsnFolderTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceFolderTarget.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/get-dfsnfoldertarget?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/get-dfsnfoldertarget?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsnFolderTarget --- diff --git a/docset/winserver2019-ps/dfsn/Get-DfsnRoot.md b/docset/winserver2019-ps/dfsn/Get-DfsnRoot.md index 288ae60bad..aa5367fe77 100644 --- a/docset/winserver2019-ps/dfsn/Get-DfsnRoot.md +++ b/docset/winserver2019-ps/dfsn/Get-DfsnRoot.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespace.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/get-dfsnroot?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/get-dfsnroot?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsnRoot --- diff --git a/docset/winserver2019-ps/dfsn/Get-DfsnRootTarget.md b/docset/winserver2019-ps/dfsn/Get-DfsnRootTarget.md index 1a25e4633c..402f2a6b59 100644 --- a/docset/winserver2019-ps/dfsn/Get-DfsnRootTarget.md +++ b/docset/winserver2019-ps/dfsn/Get-DfsnRootTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceRootTarget.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/get-dfsnroottarget?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/get-dfsnroottarget?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsnRootTarget --- diff --git a/docset/winserver2019-ps/dfsn/Get-DfsnServerConfiguration.md b/docset/winserver2019-ps/dfsn/Get-DfsnServerConfiguration.md index f4ede1f7b4..aaf9d514e3 100644 --- a/docset/winserver2019-ps/dfsn/Get-DfsnServerConfiguration.md +++ b/docset/winserver2019-ps/dfsn/Get-DfsnServerConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceServerConfig.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/get-dfsnserverconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/get-dfsnserverconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsnServerConfiguration --- diff --git a/docset/winserver2019-ps/dfsn/Grant-DfsnAccess.md b/docset/winserver2019-ps/dfsn/Grant-DfsnAccess.md index 8fb587e976..9fad9ca50c 100644 --- a/docset/winserver2019-ps/dfsn/Grant-DfsnAccess.md +++ b/docset/winserver2019-ps/dfsn/Grant-DfsnAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceAccess.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/grant-dfsnaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/grant-dfsnaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Grant-DfsnAccess --- diff --git a/docset/winserver2019-ps/dfsn/Move-DfsnFolder.md b/docset/winserver2019-ps/dfsn/Move-DfsnFolder.md index 59e7afb41e..5cfd77aa03 100644 --- a/docset/winserver2019-ps/dfsn/Move-DfsnFolder.md +++ b/docset/winserver2019-ps/dfsn/Move-DfsnFolder.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceFolder.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/move-dfsnfolder?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/move-dfsnfolder?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-DfsnFolder --- diff --git a/docset/winserver2019-ps/dfsn/New-DfsnFolder.md b/docset/winserver2019-ps/dfsn/New-DfsnFolder.md index f5eb8a1a7c..9142d46ad6 100644 --- a/docset/winserver2019-ps/dfsn/New-DfsnFolder.md +++ b/docset/winserver2019-ps/dfsn/New-DfsnFolder.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceFolder.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/new-dfsnfolder?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/new-dfsnfolder?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-DfsnFolder --- diff --git a/docset/winserver2019-ps/dfsn/New-DfsnFolderTarget.md b/docset/winserver2019-ps/dfsn/New-DfsnFolderTarget.md index e3269232a9..7ce5695d74 100644 --- a/docset/winserver2019-ps/dfsn/New-DfsnFolderTarget.md +++ b/docset/winserver2019-ps/dfsn/New-DfsnFolderTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceFolderTarget.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/new-dfsnfoldertarget?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/new-dfsnfoldertarget?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-DfsnFolderTarget --- diff --git a/docset/winserver2019-ps/dfsn/New-DfsnRoot.md b/docset/winserver2019-ps/dfsn/New-DfsnRoot.md index e380efa9b7..2f997595fa 100644 --- a/docset/winserver2019-ps/dfsn/New-DfsnRoot.md +++ b/docset/winserver2019-ps/dfsn/New-DfsnRoot.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespace.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/new-dfsnroot?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/new-dfsnroot?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-DfsnRoot --- diff --git a/docset/winserver2019-ps/dfsn/New-DfsnRootTarget.md b/docset/winserver2019-ps/dfsn/New-DfsnRootTarget.md index f704344254..56b87a0778 100644 --- a/docset/winserver2019-ps/dfsn/New-DfsnRootTarget.md +++ b/docset/winserver2019-ps/dfsn/New-DfsnRootTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceRootTarget.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/new-dfsnroottarget?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/new-dfsnroottarget?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-DfsnRootTarget --- diff --git a/docset/winserver2019-ps/dfsn/Remove-DfsnAccess.md b/docset/winserver2019-ps/dfsn/Remove-DfsnAccess.md index a0630fed23..ad5a841842 100644 --- a/docset/winserver2019-ps/dfsn/Remove-DfsnAccess.md +++ b/docset/winserver2019-ps/dfsn/Remove-DfsnAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceAccess.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/remove-dfsnaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/remove-dfsnaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DfsnAccess --- diff --git a/docset/winserver2019-ps/dfsn/Remove-DfsnFolder.md b/docset/winserver2019-ps/dfsn/Remove-DfsnFolder.md index 6110a7f666..af9072bade 100644 --- a/docset/winserver2019-ps/dfsn/Remove-DfsnFolder.md +++ b/docset/winserver2019-ps/dfsn/Remove-DfsnFolder.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceFolder.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/remove-dfsnfolder?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/remove-dfsnfolder?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DfsnFolder --- diff --git a/docset/winserver2019-ps/dfsn/Remove-DfsnFolderTarget.md b/docset/winserver2019-ps/dfsn/Remove-DfsnFolderTarget.md index ebff08866f..f56f7cbdc3 100644 --- a/docset/winserver2019-ps/dfsn/Remove-DfsnFolderTarget.md +++ b/docset/winserver2019-ps/dfsn/Remove-DfsnFolderTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceFolderTarget.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/remove-dfsnfoldertarget?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/remove-dfsnfoldertarget?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DfsnFolderTarget --- diff --git a/docset/winserver2019-ps/dfsn/Remove-DfsnRoot.md b/docset/winserver2019-ps/dfsn/Remove-DfsnRoot.md index 774b7a0540..b4479f15c5 100644 --- a/docset/winserver2019-ps/dfsn/Remove-DfsnRoot.md +++ b/docset/winserver2019-ps/dfsn/Remove-DfsnRoot.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespace.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/remove-dfsnroot?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/remove-dfsnroot?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DfsnRoot --- diff --git a/docset/winserver2019-ps/dfsn/Remove-DfsnRootTarget.md b/docset/winserver2019-ps/dfsn/Remove-DfsnRootTarget.md index 51b5beb1b5..c48867e2ea 100644 --- a/docset/winserver2019-ps/dfsn/Remove-DfsnRootTarget.md +++ b/docset/winserver2019-ps/dfsn/Remove-DfsnRootTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceRootTarget.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/remove-dfsnroottarget?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/remove-dfsnroottarget?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DfsnRootTarget --- diff --git a/docset/winserver2019-ps/dfsn/Revoke-DfsnAccess.md b/docset/winserver2019-ps/dfsn/Revoke-DfsnAccess.md index 80fd6ec2c7..2c69c64929 100644 --- a/docset/winserver2019-ps/dfsn/Revoke-DfsnAccess.md +++ b/docset/winserver2019-ps/dfsn/Revoke-DfsnAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceAccess.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/revoke-dfsnaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/revoke-dfsnaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Revoke-DfsnAccess --- diff --git a/docset/winserver2019-ps/dfsn/Set-DfsnFolder.md b/docset/winserver2019-ps/dfsn/Set-DfsnFolder.md index aa216e709e..5c7118cac0 100644 --- a/docset/winserver2019-ps/dfsn/Set-DfsnFolder.md +++ b/docset/winserver2019-ps/dfsn/Set-DfsnFolder.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceFolder.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/set-dfsnfolder?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/set-dfsnfolder?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DfsnFolder --- diff --git a/docset/winserver2019-ps/dfsn/Set-DfsnFolderTarget.md b/docset/winserver2019-ps/dfsn/Set-DfsnFolderTarget.md index 18ce064f1d..754d1f808a 100644 --- a/docset/winserver2019-ps/dfsn/Set-DfsnFolderTarget.md +++ b/docset/winserver2019-ps/dfsn/Set-DfsnFolderTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceFolderTarget.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/set-dfsnfoldertarget?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/set-dfsnfoldertarget?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DfsnFolderTarget --- diff --git a/docset/winserver2019-ps/dfsn/Set-DfsnRoot.md b/docset/winserver2019-ps/dfsn/Set-DfsnRoot.md index 931a6941e0..c999515a9c 100644 --- a/docset/winserver2019-ps/dfsn/Set-DfsnRoot.md +++ b/docset/winserver2019-ps/dfsn/Set-DfsnRoot.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespace.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/set-dfsnroot?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/set-dfsnroot?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DfsnRoot --- diff --git a/docset/winserver2019-ps/dfsn/Set-DfsnRootTarget.md b/docset/winserver2019-ps/dfsn/Set-DfsnRootTarget.md index 370d39c436..3b9ccd09b3 100644 --- a/docset/winserver2019-ps/dfsn/Set-DfsnRootTarget.md +++ b/docset/winserver2019-ps/dfsn/Set-DfsnRootTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceRootTarget.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/set-dfsnroottarget?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/set-dfsnroottarget?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DfsnRootTarget --- diff --git a/docset/winserver2019-ps/dfsn/Set-DfsnServerConfiguration.md b/docset/winserver2019-ps/dfsn/Set-DfsnServerConfiguration.md index 266cbacc7a..99e715f521 100644 --- a/docset/winserver2019-ps/dfsn/Set-DfsnServerConfiguration.md +++ b/docset/winserver2019-ps/dfsn/Set-DfsnServerConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceServerConfig.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/set-dfsnserverconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/set-dfsnserverconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DfsnServerConfiguration --- diff --git a/docset/winserver2019-ps/dfsr/Add-DfsrConnection.md b/docset/winserver2019-ps/dfsr/Add-DfsrConnection.md index edd0a59ef4..88330eb9b3 100644 --- a/docset/winserver2019-ps/dfsr/Add-DfsrConnection.md +++ b/docset/winserver2019-ps/dfsr/Add-DfsrConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/add-dfsrconnection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/add-dfsrconnection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DfsrConnection --- diff --git a/docset/winserver2019-ps/dfsr/Add-DfsrMember.md b/docset/winserver2019-ps/dfsr/Add-DfsrMember.md index 86731ae43d..f2a083c162 100644 --- a/docset/winserver2019-ps/dfsr/Add-DfsrMember.md +++ b/docset/winserver2019-ps/dfsr/Add-DfsrMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/add-dfsrmember?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/add-dfsrmember?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DfsrMember --- diff --git a/docset/winserver2019-ps/dfsr/ConvertFrom-DfsrGuid.md b/docset/winserver2019-ps/dfsr/ConvertFrom-DfsrGuid.md index b0a0333c13..e6269b1ecb 100644 --- a/docset/winserver2019-ps/dfsr/ConvertFrom-DfsrGuid.md +++ b/docset/winserver2019-ps/dfsr/ConvertFrom-DfsrGuid.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/convertfrom-dfsrguid?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/convertfrom-dfsrguid?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: ConvertFrom-DfsrGuid --- diff --git a/docset/winserver2019-ps/dfsr/Export-DfsrClone.md b/docset/winserver2019-ps/dfsr/Export-DfsrClone.md index 8cd58178c2..290d35a26a 100644 --- a/docset/winserver2019-ps/dfsr/Export-DfsrClone.md +++ b/docset/winserver2019-ps/dfsr/Export-DfsrClone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/export-dfsrclone?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/export-dfsrclone?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-DfsrClone --- diff --git a/docset/winserver2019-ps/dfsr/Get-DfsReplicatedFolder.md b/docset/winserver2019-ps/dfsr/Get-DfsReplicatedFolder.md index 96dc5231de..de0d271ff6 100644 --- a/docset/winserver2019-ps/dfsr/Get-DfsReplicatedFolder.md +++ b/docset/winserver2019-ps/dfsr/Get-DfsReplicatedFolder.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsreplicatedfolder?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsreplicatedfolder?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsReplicatedFolder --- diff --git a/docset/winserver2019-ps/dfsr/Get-DfsReplicationGroup.md b/docset/winserver2019-ps/dfsr/Get-DfsReplicationGroup.md index ba8f3ca3e6..9c139b7037 100644 --- a/docset/winserver2019-ps/dfsr/Get-DfsReplicationGroup.md +++ b/docset/winserver2019-ps/dfsr/Get-DfsReplicationGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsreplicationgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsreplicationgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsReplicationGroup --- diff --git a/docset/winserver2019-ps/dfsr/Get-DfsrBacklog.md b/docset/winserver2019-ps/dfsr/Get-DfsrBacklog.md index 0edbfe7211..049c9e2dbb 100644 --- a/docset/winserver2019-ps/dfsr/Get-DfsrBacklog.md +++ b/docset/winserver2019-ps/dfsr/Get-DfsrBacklog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsrbacklog?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsrbacklog?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsrBacklog --- diff --git a/docset/winserver2019-ps/dfsr/Get-DfsrCloneState.md b/docset/winserver2019-ps/dfsr/Get-DfsrCloneState.md index bef517ba03..f08f52b057 100644 --- a/docset/winserver2019-ps/dfsr/Get-DfsrCloneState.md +++ b/docset/winserver2019-ps/dfsr/Get-DfsrCloneState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsrclonestate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsrclonestate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsrCloneState --- diff --git a/docset/winserver2019-ps/dfsr/Get-DfsrConnection.md b/docset/winserver2019-ps/dfsr/Get-DfsrConnection.md index c642c62ded..627096f3d0 100644 --- a/docset/winserver2019-ps/dfsr/Get-DfsrConnection.md +++ b/docset/winserver2019-ps/dfsr/Get-DfsrConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsrconnection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsrconnection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsrConnection --- diff --git a/docset/winserver2019-ps/dfsr/Get-DfsrConnectionSchedule.md b/docset/winserver2019-ps/dfsr/Get-DfsrConnectionSchedule.md index 388709e5ca..f530131e0f 100644 --- a/docset/winserver2019-ps/dfsr/Get-DfsrConnectionSchedule.md +++ b/docset/winserver2019-ps/dfsr/Get-DfsrConnectionSchedule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsrconnectionschedule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsrconnectionschedule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsrConnectionSchedule --- diff --git a/docset/winserver2019-ps/dfsr/Get-DfsrDelegation.md b/docset/winserver2019-ps/dfsr/Get-DfsrDelegation.md index 59e8e9f314..6864e95c5e 100644 --- a/docset/winserver2019-ps/dfsr/Get-DfsrDelegation.md +++ b/docset/winserver2019-ps/dfsr/Get-DfsrDelegation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsrdelegation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsrdelegation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsrDelegation --- diff --git a/docset/winserver2019-ps/dfsr/Get-DfsrFileHash.md b/docset/winserver2019-ps/dfsr/Get-DfsrFileHash.md index 3f0ff83f37..fb7a0f4f83 100644 --- a/docset/winserver2019-ps/dfsr/Get-DfsrFileHash.md +++ b/docset/winserver2019-ps/dfsr/Get-DfsrFileHash.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsrfilehash?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsrfilehash?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsrFileHash --- diff --git a/docset/winserver2019-ps/dfsr/Get-DfsrGroupSchedule.md b/docset/winserver2019-ps/dfsr/Get-DfsrGroupSchedule.md index 753063de88..0935fcbcb4 100644 --- a/docset/winserver2019-ps/dfsr/Get-DfsrGroupSchedule.md +++ b/docset/winserver2019-ps/dfsr/Get-DfsrGroupSchedule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsrgroupschedule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsrgroupschedule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsrGroupSchedule --- diff --git a/docset/winserver2019-ps/dfsr/Get-DfsrIdRecord.md b/docset/winserver2019-ps/dfsr/Get-DfsrIdRecord.md index 2635c1eab5..875b9017c2 100644 --- a/docset/winserver2019-ps/dfsr/Get-DfsrIdRecord.md +++ b/docset/winserver2019-ps/dfsr/Get-DfsrIdRecord.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsridrecord?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsridrecord?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsrIdRecord --- diff --git a/docset/winserver2019-ps/dfsr/Get-DfsrMember.md b/docset/winserver2019-ps/dfsr/Get-DfsrMember.md index 595116b4ed..ba41fa53b8 100644 --- a/docset/winserver2019-ps/dfsr/Get-DfsrMember.md +++ b/docset/winserver2019-ps/dfsr/Get-DfsrMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsrmember?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsrmember?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsrMember --- diff --git a/docset/winserver2019-ps/dfsr/Get-DfsrMembership.md b/docset/winserver2019-ps/dfsr/Get-DfsrMembership.md index ab82d1ef34..ab3fe94d6f 100644 --- a/docset/winserver2019-ps/dfsr/Get-DfsrMembership.md +++ b/docset/winserver2019-ps/dfsr/Get-DfsrMembership.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsrmembership?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsrmembership?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsrMembership --- diff --git a/docset/winserver2019-ps/dfsr/Get-DfsrPreservedFiles.md b/docset/winserver2019-ps/dfsr/Get-DfsrPreservedFiles.md index e504e99978..c7516942e3 100644 --- a/docset/winserver2019-ps/dfsr/Get-DfsrPreservedFiles.md +++ b/docset/winserver2019-ps/dfsr/Get-DfsrPreservedFiles.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsrpreservedfiles?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsrpreservedfiles?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsrPreservedFiles --- diff --git a/docset/winserver2019-ps/dfsr/Get-DfsrServiceConfiguration.md b/docset/winserver2019-ps/dfsr/Get-DfsrServiceConfiguration.md index 0852ab9d85..a3679d8e0c 100644 --- a/docset/winserver2019-ps/dfsr/Get-DfsrServiceConfiguration.md +++ b/docset/winserver2019-ps/dfsr/Get-DfsrServiceConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsrserviceconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsrserviceconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsrServiceConfiguration --- diff --git a/docset/winserver2019-ps/dfsr/Get-DfsrState.md b/docset/winserver2019-ps/dfsr/Get-DfsrState.md index 0fc0d6cb69..039c6689a2 100644 --- a/docset/winserver2019-ps/dfsr/Get-DfsrState.md +++ b/docset/winserver2019-ps/dfsr/Get-DfsrState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsrstate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsrstate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsrState --- diff --git a/docset/winserver2019-ps/dfsr/Grant-DfsrDelegation.md b/docset/winserver2019-ps/dfsr/Grant-DfsrDelegation.md index 5f68198cb0..89a134bc49 100644 --- a/docset/winserver2019-ps/dfsr/Grant-DfsrDelegation.md +++ b/docset/winserver2019-ps/dfsr/Grant-DfsrDelegation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/grant-dfsrdelegation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/grant-dfsrdelegation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Grant-DfsrDelegation --- diff --git a/docset/winserver2019-ps/dfsr/Import-DfsrClone.md b/docset/winserver2019-ps/dfsr/Import-DfsrClone.md index f095358140..5044615e2f 100644 --- a/docset/winserver2019-ps/dfsr/Import-DfsrClone.md +++ b/docset/winserver2019-ps/dfsr/Import-DfsrClone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/import-dfsrclone?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/import-dfsrclone?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-DfsrClone --- diff --git a/docset/winserver2019-ps/dfsr/New-DfsReplicatedFolder.md b/docset/winserver2019-ps/dfsr/New-DfsReplicatedFolder.md index 2c9825f3f8..9169c56055 100644 --- a/docset/winserver2019-ps/dfsr/New-DfsReplicatedFolder.md +++ b/docset/winserver2019-ps/dfsr/New-DfsReplicatedFolder.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/new-dfsreplicatedfolder?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/new-dfsreplicatedfolder?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-DfsReplicatedFolder --- diff --git a/docset/winserver2019-ps/dfsr/New-DfsReplicationGroup.md b/docset/winserver2019-ps/dfsr/New-DfsReplicationGroup.md index c5c4719747..73da80b3df 100644 --- a/docset/winserver2019-ps/dfsr/New-DfsReplicationGroup.md +++ b/docset/winserver2019-ps/dfsr/New-DfsReplicationGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/new-dfsreplicationgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/new-dfsreplicationgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-DfsReplicationGroup --- diff --git a/docset/winserver2019-ps/dfsr/Remove-DfsReplicatedFolder.md b/docset/winserver2019-ps/dfsr/Remove-DfsReplicatedFolder.md index d2455ef883..890b4e8d75 100644 --- a/docset/winserver2019-ps/dfsr/Remove-DfsReplicatedFolder.md +++ b/docset/winserver2019-ps/dfsr/Remove-DfsReplicatedFolder.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/remove-dfsreplicatedfolder?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/remove-dfsreplicatedfolder?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DfsReplicatedFolder --- diff --git a/docset/winserver2019-ps/dfsr/Remove-DfsReplicationGroup.md b/docset/winserver2019-ps/dfsr/Remove-DfsReplicationGroup.md index 34ab405f87..71c6a8ef93 100644 --- a/docset/winserver2019-ps/dfsr/Remove-DfsReplicationGroup.md +++ b/docset/winserver2019-ps/dfsr/Remove-DfsReplicationGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/remove-dfsreplicationgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/remove-dfsreplicationgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DfsReplicationGroup --- diff --git a/docset/winserver2019-ps/dfsr/Remove-DfsrConnection.md b/docset/winserver2019-ps/dfsr/Remove-DfsrConnection.md index 07639a53e9..46cf183857 100644 --- a/docset/winserver2019-ps/dfsr/Remove-DfsrConnection.md +++ b/docset/winserver2019-ps/dfsr/Remove-DfsrConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/remove-dfsrconnection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/remove-dfsrconnection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DfsrConnection --- diff --git a/docset/winserver2019-ps/dfsr/Remove-DfsrMember.md b/docset/winserver2019-ps/dfsr/Remove-DfsrMember.md index 99172e4856..ad50d50e48 100644 --- a/docset/winserver2019-ps/dfsr/Remove-DfsrMember.md +++ b/docset/winserver2019-ps/dfsr/Remove-DfsrMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/remove-dfsrmember?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/remove-dfsrmember?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DfsrMember --- diff --git a/docset/winserver2019-ps/dfsr/Remove-DfsrPropagationTestFile.md b/docset/winserver2019-ps/dfsr/Remove-DfsrPropagationTestFile.md index c451acf77f..f8b719c978 100644 --- a/docset/winserver2019-ps/dfsr/Remove-DfsrPropagationTestFile.md +++ b/docset/winserver2019-ps/dfsr/Remove-DfsrPropagationTestFile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/remove-dfsrpropagationtestfile?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/remove-dfsrpropagationtestfile?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DfsrPropagationTestFile --- diff --git a/docset/winserver2019-ps/dfsr/Reset-DfsrCloneState.md b/docset/winserver2019-ps/dfsr/Reset-DfsrCloneState.md index 39ff12dad9..d04fabe440 100644 --- a/docset/winserver2019-ps/dfsr/Reset-DfsrCloneState.md +++ b/docset/winserver2019-ps/dfsr/Reset-DfsrCloneState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/reset-dfsrclonestate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/reset-dfsrclonestate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-DfsrCloneState --- diff --git a/docset/winserver2019-ps/dfsr/Restore-DfsrPreservedFiles.md b/docset/winserver2019-ps/dfsr/Restore-DfsrPreservedFiles.md index 88bbbeef13..ae75ace490 100644 --- a/docset/winserver2019-ps/dfsr/Restore-DfsrPreservedFiles.md +++ b/docset/winserver2019-ps/dfsr/Restore-DfsrPreservedFiles.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/restore-dfsrpreservedfiles?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/restore-dfsrpreservedfiles?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-DfsrPreservedFiles --- diff --git a/docset/winserver2019-ps/dfsr/Revoke-DfsrDelegation.md b/docset/winserver2019-ps/dfsr/Revoke-DfsrDelegation.md index f0aa28214f..75bb755965 100644 --- a/docset/winserver2019-ps/dfsr/Revoke-DfsrDelegation.md +++ b/docset/winserver2019-ps/dfsr/Revoke-DfsrDelegation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/revoke-dfsrdelegation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/revoke-dfsrdelegation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Revoke-DfsrDelegation --- diff --git a/docset/winserver2019-ps/dfsr/Set-DfsReplicatedFolder.md b/docset/winserver2019-ps/dfsr/Set-DfsReplicatedFolder.md index 336d4f25ad..107e995b60 100644 --- a/docset/winserver2019-ps/dfsr/Set-DfsReplicatedFolder.md +++ b/docset/winserver2019-ps/dfsr/Set-DfsReplicatedFolder.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/set-dfsreplicatedfolder?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/set-dfsreplicatedfolder?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DfsReplicatedFolder --- diff --git a/docset/winserver2019-ps/dfsr/Set-DfsReplicationGroup.md b/docset/winserver2019-ps/dfsr/Set-DfsReplicationGroup.md index 8f86f4c023..6abf7bbcab 100644 --- a/docset/winserver2019-ps/dfsr/Set-DfsReplicationGroup.md +++ b/docset/winserver2019-ps/dfsr/Set-DfsReplicationGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/set-dfsreplicationgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/set-dfsreplicationgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DfsReplicationGroup --- diff --git a/docset/winserver2019-ps/dfsr/Set-DfsrConnection.md b/docset/winserver2019-ps/dfsr/Set-DfsrConnection.md index 7cf6d4e3cf..b45da21f44 100644 --- a/docset/winserver2019-ps/dfsr/Set-DfsrConnection.md +++ b/docset/winserver2019-ps/dfsr/Set-DfsrConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/set-dfsrconnection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/set-dfsrconnection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DfsrConnection --- diff --git a/docset/winserver2019-ps/dfsr/Set-DfsrConnectionSchedule.md b/docset/winserver2019-ps/dfsr/Set-DfsrConnectionSchedule.md index 1114de0a0f..9424dc7981 100644 --- a/docset/winserver2019-ps/dfsr/Set-DfsrConnectionSchedule.md +++ b/docset/winserver2019-ps/dfsr/Set-DfsrConnectionSchedule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/set-dfsrconnectionschedule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/set-dfsrconnectionschedule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DfsrConnectionSchedule --- diff --git a/docset/winserver2019-ps/dfsr/Set-DfsrGroupSchedule.md b/docset/winserver2019-ps/dfsr/Set-DfsrGroupSchedule.md index b497e824b1..0b31345472 100644 --- a/docset/winserver2019-ps/dfsr/Set-DfsrGroupSchedule.md +++ b/docset/winserver2019-ps/dfsr/Set-DfsrGroupSchedule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/set-dfsrgroupschedule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/set-dfsrgroupschedule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DfsrGroupSchedule --- diff --git a/docset/winserver2019-ps/dfsr/Set-DfsrMember.md b/docset/winserver2019-ps/dfsr/Set-DfsrMember.md index 6efeef3170..8f467dfc2e 100644 --- a/docset/winserver2019-ps/dfsr/Set-DfsrMember.md +++ b/docset/winserver2019-ps/dfsr/Set-DfsrMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/set-dfsrmember?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/set-dfsrmember?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DfsrMember --- diff --git a/docset/winserver2019-ps/dfsr/Set-DfsrMembership.md b/docset/winserver2019-ps/dfsr/Set-DfsrMembership.md index eced71b528..f5d66df2a8 100644 --- a/docset/winserver2019-ps/dfsr/Set-DfsrMembership.md +++ b/docset/winserver2019-ps/dfsr/Set-DfsrMembership.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/set-dfsrmembership?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/set-dfsrmembership?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DfsrMembership --- diff --git a/docset/winserver2019-ps/dfsr/Set-DfsrServiceConfiguration.md b/docset/winserver2019-ps/dfsr/Set-DfsrServiceConfiguration.md index a80352df88..5397a84397 100644 --- a/docset/winserver2019-ps/dfsr/Set-DfsrServiceConfiguration.md +++ b/docset/winserver2019-ps/dfsr/Set-DfsrServiceConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/set-dfsrserviceconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/set-dfsrserviceconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DfsrServiceConfiguration --- diff --git a/docset/winserver2019-ps/dfsr/Start-DfsrPropagationTest.md b/docset/winserver2019-ps/dfsr/Start-DfsrPropagationTest.md index ac62250996..2520270116 100644 --- a/docset/winserver2019-ps/dfsr/Start-DfsrPropagationTest.md +++ b/docset/winserver2019-ps/dfsr/Start-DfsrPropagationTest.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/start-dfsrpropagationtest?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/start-dfsrpropagationtest?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-DfsrPropagationTest --- diff --git a/docset/winserver2019-ps/dfsr/Suspend-DfsReplicationGroup.md b/docset/winserver2019-ps/dfsr/Suspend-DfsReplicationGroup.md index 6ca67d5518..48fbf757e5 100644 --- a/docset/winserver2019-ps/dfsr/Suspend-DfsReplicationGroup.md +++ b/docset/winserver2019-ps/dfsr/Suspend-DfsReplicationGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/suspend-dfsreplicationgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/suspend-dfsreplicationgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-DfsReplicationGroup --- diff --git a/docset/winserver2019-ps/dfsr/Sync-DfsReplicationGroup.md b/docset/winserver2019-ps/dfsr/Sync-DfsReplicationGroup.md index 774f9b610f..41fd5f722d 100644 --- a/docset/winserver2019-ps/dfsr/Sync-DfsReplicationGroup.md +++ b/docset/winserver2019-ps/dfsr/Sync-DfsReplicationGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/sync-dfsreplicationgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/sync-dfsreplicationgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Sync-DfsReplicationGroup --- diff --git a/docset/winserver2019-ps/dfsr/Update-DfsrConfigurationFromAD.md b/docset/winserver2019-ps/dfsr/Update-DfsrConfigurationFromAD.md index 005508a3a2..a0d30ec801 100644 --- a/docset/winserver2019-ps/dfsr/Update-DfsrConfigurationFromAD.md +++ b/docset/winserver2019-ps/dfsr/Update-DfsrConfigurationFromAD.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/update-dfsrconfigurationfromad?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/update-dfsrconfigurationfromad?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-DfsrConfigurationFromAD --- diff --git a/docset/winserver2019-ps/dfsr/Write-DfsrHealthReport.md b/docset/winserver2019-ps/dfsr/Write-DfsrHealthReport.md index b55797974d..d1a83c4602 100644 --- a/docset/winserver2019-ps/dfsr/Write-DfsrHealthReport.md +++ b/docset/winserver2019-ps/dfsr/Write-DfsrHealthReport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/write-dfsrhealthreport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/write-dfsrhealthreport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Write-DfsrHealthReport --- diff --git a/docset/winserver2019-ps/dfsr/Write-DfsrPropagationReport.md b/docset/winserver2019-ps/dfsr/Write-DfsrPropagationReport.md index 042ed29fcf..a17af09331 100644 --- a/docset/winserver2019-ps/dfsr/Write-DfsrPropagationReport.md +++ b/docset/winserver2019-ps/dfsr/Write-DfsrPropagationReport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/write-dfsrpropagationreport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/write-dfsrpropagationreport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Write-DfsrPropagationReport --- diff --git a/docset/winserver2019-ps/dhcpserver/Add-DhcpServerInDC.md b/docset/winserver2019-ps/dhcpserver/Add-DhcpServerInDC.md index 1f1b0e6e8d..e3dd379e42 100644 --- a/docset/winserver2019-ps/dhcpserver/Add-DhcpServerInDC.md +++ b/docset/winserver2019-ps/dhcpserver/Add-DhcpServerInDC.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerInDC_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverindc?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverindc?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerInDC --- diff --git a/docset/winserver2019-ps/dhcpserver/Add-DhcpServerSecurityGroup.md b/docset/winserver2019-ps/dhcpserver/Add-DhcpServerSecurityGroup.md index eff4a96355..bf129d4f0f 100644 --- a/docset/winserver2019-ps/dhcpserver/Add-DhcpServerSecurityGroup.md +++ b/docset/winserver2019-ps/dhcpserver/Add-DhcpServerSecurityGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerSecurityGroup_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserversecuritygroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserversecuritygroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerSecurityGroup --- diff --git a/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4Class.md b/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4Class.md index 097a564db1..b20328faa2 100644 --- a/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4Class.md +++ b/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4Class.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Class_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4class?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4class?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4Class --- diff --git a/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4ExclusionRange.md b/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4ExclusionRange.md index 2bbb41b72c..79dde4abe6 100644 --- a/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4ExclusionRange.md +++ b/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4ExclusionRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4ExclusionRange_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4exclusionrange?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4exclusionrange?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4ExclusionRange --- diff --git a/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4Failover.md b/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4Failover.md index c41263720d..3450da76c2 100644 --- a/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4Failover.md +++ b/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4Failover.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Failover_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4failover?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4failover?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4Failover --- diff --git a/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4FailoverScope.md b/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4FailoverScope.md index 6dce001ad0..0006f0014a 100644 --- a/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4FailoverScope.md +++ b/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4FailoverScope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4FailoverScope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4failoverscope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4failoverscope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4FailoverScope --- diff --git a/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4Filter.md b/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4Filter.md index 76863ba97b..62f8896963 100644 --- a/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4Filter.md +++ b/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4Filter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Filter_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4filter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4filter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4Filter --- diff --git a/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4Lease.md b/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4Lease.md index 20075e2af7..52b2467383 100644 --- a/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4Lease.md +++ b/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4Lease.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Lease_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4lease?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4lease?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4Lease --- diff --git a/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4MulticastExclusionRange.md b/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4MulticastExclusionRange.md index 05e7e9dfa4..692e29fae9 100644 --- a/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4MulticastExclusionRange.md +++ b/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4MulticastExclusionRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4MulticastExclusionRange_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4multicastexclusionrange?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4multicastexclusionrange?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4MulticastExclusionRange --- diff --git a/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4MulticastScope.md b/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4MulticastScope.md index 0aa9787799..5b1c851b2e 100644 --- a/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4MulticastScope.md +++ b/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4MulticastScope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4MulticastScope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4multicastscope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4multicastscope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4MulticastScope --- diff --git a/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4OptionDefinition.md b/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4OptionDefinition.md index d78694a1ab..9f16f7c18b 100644 --- a/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4OptionDefinition.md +++ b/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4OptionDefinition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4OptionDefinition_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4optiondefinition?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4optiondefinition?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4OptionDefinition --- diff --git a/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4Policy.md b/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4Policy.md index 73ce6b2533..02b2f94ea3 100644 --- a/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4Policy.md +++ b/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4Policy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Policy_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4policy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4policy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4Policy --- diff --git a/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4PolicyIPRange.md b/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4PolicyIPRange.md index 88ce7b691d..f5ea6aa524 100644 --- a/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4PolicyIPRange.md +++ b/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4PolicyIPRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4PolicyIPRange_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4policyiprange?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4policyiprange?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4PolicyIPRange --- diff --git a/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4Reservation.md b/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4Reservation.md index 6eda28aab8..d9bebc306b 100644 --- a/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4Reservation.md +++ b/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4Reservation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4Reservation_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4reservation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4reservation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4Reservation --- diff --git a/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4Scope.md b/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4Scope.md index 78ab17c9b6..97a3dc709a 100644 --- a/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4Scope.md +++ b/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4Scope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4Scope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4scope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4scope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4Scope --- diff --git a/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4Superscope.md b/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4Superscope.md index 07412b650f..efb389b3e7 100644 --- a/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4Superscope.md +++ b/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv4Superscope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4Superscope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4superscope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4superscope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4Superscope --- diff --git a/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv6Class.md b/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv6Class.md index 824cbc146a..b95953c032 100644 --- a/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv6Class.md +++ b/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv6Class.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv6Class_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6class?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6class?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv6Class --- diff --git a/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv6ExclusionRange.md b/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv6ExclusionRange.md index 5a7ca4be32..6ae26adcff 100644 --- a/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv6ExclusionRange.md +++ b/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv6ExclusionRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6ExclusionRange_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6exclusionrange?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6exclusionrange?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv6ExclusionRange --- diff --git a/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv6Lease.md b/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv6Lease.md index bd924711c0..c3529d8d1f 100644 --- a/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv6Lease.md +++ b/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv6Lease.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv6Lease_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6lease?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6lease?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv6Lease --- diff --git a/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv6OptionDefinition.md b/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv6OptionDefinition.md index 5c49a51376..2f1ea0e4d1 100644 --- a/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv6OptionDefinition.md +++ b/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv6OptionDefinition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6OptionDefinition_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6optiondefinition?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6optiondefinition?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv6OptionDefinition --- diff --git a/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv6Reservation.md b/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv6Reservation.md index 2ff73de8d5..0288040900 100644 --- a/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv6Reservation.md +++ b/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv6Reservation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6Reservation_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6reservation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6reservation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv6Reservation --- diff --git a/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv6Scope.md b/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv6Scope.md index 103cd1ba4c..88f0a75e26 100644 --- a/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv6Scope.md +++ b/docset/winserver2019-ps/dhcpserver/Add-DhcpServerv6Scope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6Scope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6scope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6scope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv6Scope --- diff --git a/docset/winserver2019-ps/dhcpserver/Backup-DhcpServer.md b/docset/winserver2019-ps/dhcpserver/Backup-DhcpServer.md index 28ccf820c3..c2deec041d 100644 --- a/docset/winserver2019-ps/dhcpserver/Backup-DhcpServer.md +++ b/docset/winserver2019-ps/dhcpserver/Backup-DhcpServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServer_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/backup-dhcpserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/backup-dhcpserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Backup-DhcpServer --- diff --git a/docset/winserver2019-ps/dhcpserver/Export-DhcpServer.md b/docset/winserver2019-ps/dhcpserver/Export-DhcpServer.md index 63f37f8fd8..bcd494bd6f 100644 --- a/docset/winserver2019-ps/dhcpserver/Export-DhcpServer.md +++ b/docset/winserver2019-ps/dhcpserver/Export-DhcpServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DhcpServerMigration-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/export-dhcpserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/export-dhcpserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-DhcpServer --- diff --git a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerAuditLog.md b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerAuditLog.md index deec20e2e0..0ef6f6b4f9 100644 --- a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerAuditLog.md +++ b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerAuditLog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerAuditLog_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverauditlog?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverauditlog?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerAuditLog --- diff --git a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerDatabase.md b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerDatabase.md index d416cdbb41..bad5711c0b 100644 --- a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerDatabase.md +++ b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerDatabase.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerDatabase_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverdatabase?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverdatabase?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerDatabase --- diff --git a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerDnsCredential.md b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerDnsCredential.md index 8680f63cc9..6dd56abede 100644 --- a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerDnsCredential.md +++ b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerDnsCredential.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerDnsCredential_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverdnscredential?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverdnscredential?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerDnsCredential --- diff --git a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerInDC.md b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerInDC.md index 03e5af708b..44c290c6ac 100644 --- a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerInDC.md +++ b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerInDC.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerInDC_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverindc?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverindc?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerInDC --- diff --git a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerSetting.md b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerSetting.md index 29a37ffdc5..e85acb013f 100644 --- a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerSetting.md +++ b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerSetting_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserversetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserversetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerSetting --- diff --git a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerVersion.md b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerVersion.md index 224eba617a..16fd9d0179 100644 --- a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerVersion.md +++ b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerVersion.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerVersion_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverversion?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverversion?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerVersion --- diff --git a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4Binding.md b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4Binding.md index c74d7dceac..3b97b82291 100644 --- a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4Binding.md +++ b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4Binding.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4Binding_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4binding?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4binding?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4Binding --- diff --git a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4Class.md b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4Class.md index 17cf5815bd..bd76744cd2 100644 --- a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4Class.md +++ b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4Class.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Class_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4class?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4class?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4Class --- diff --git a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4DnsSetting.md b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4DnsSetting.md index 98ed824f6d..7fffacc071 100644 --- a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4DnsSetting.md +++ b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4DnsSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4DnsSetting_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4dnssetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4dnssetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4DnsSetting --- diff --git a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4ExclusionRange.md b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4ExclusionRange.md index c2a9c94e07..35cc44a6b8 100644 --- a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4ExclusionRange.md +++ b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4ExclusionRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4ExclusionRange_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4exclusionrange?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4exclusionrange?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4ExclusionRange --- diff --git a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4Failover.md b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4Failover.md index 19efa6f9b4..5e4a611003 100644 --- a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4Failover.md +++ b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4Failover.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Failover_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4failover?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4failover?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4Failover --- diff --git a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4Filter.md b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4Filter.md index f641a2dbcf..28a8c5097e 100644 --- a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4Filter.md +++ b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4Filter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Filter_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4filter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4filter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4Filter --- diff --git a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4FilterList.md b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4FilterList.md index d996a6da8c..3c97a6a85f 100644 --- a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4FilterList.md +++ b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4FilterList.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4FilterList_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4filterlist?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4filterlist?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4FilterList --- diff --git a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4FreeIPAddress.md b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4FreeIPAddress.md index 8da9d09950..94e50504ac 100644 --- a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4FreeIPAddress.md +++ b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4FreeIPAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4FreeIPAddress_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4freeipaddress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4freeipaddress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4FreeIPAddress --- diff --git a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4Lease.md b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4Lease.md index de756c6274..74320886b5 100644 --- a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4Lease.md +++ b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4Lease.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Lease_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4lease?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4lease?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4Lease --- diff --git a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4MulticastExclusionRange.md b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4MulticastExclusionRange.md index c19de87ea2..82088a59e1 100644 --- a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4MulticastExclusionRange.md +++ b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4MulticastExclusionRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4MulticastExclusionRange_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4multicastexclusionrange?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4multicastexclusionrange?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4MulticastExclusionRange --- diff --git a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4MulticastLease.md b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4MulticastLease.md index 8e96395109..f6e9cefbd3 100644 --- a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4MulticastLease.md +++ b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4MulticastLease.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4MulticastLease_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4multicastlease?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4multicastlease?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4MulticastLease --- diff --git a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4MulticastScope.md b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4MulticastScope.md index 8c6cf745fc..9c1fffc292 100644 --- a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4MulticastScope.md +++ b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4MulticastScope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4MulticastScope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4multicastscope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4multicastscope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4MulticastScope --- diff --git a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4MulticastScopeStatistics.md b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4MulticastScopeStatistics.md index b2b6a6fa4b..d11e6be115 100644 --- a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4MulticastScopeStatistics.md +++ b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4MulticastScopeStatistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4MulticastScopeStatistics_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4multicastscopestatistics?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4multicastscopestatistics?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4MulticastScopeStatistics --- diff --git a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4OptionDefinition.md b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4OptionDefinition.md index 0b76163cbd..67cb222e5d 100644 --- a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4OptionDefinition.md +++ b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4OptionDefinition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4OptionDefinition_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4optiondefinition?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4optiondefinition?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4OptionDefinition --- diff --git a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4OptionValue.md b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4OptionValue.md index bdbd302c54..9554ec42d2 100644 --- a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4OptionValue.md +++ b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4OptionValue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4OptionValue_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4optionvalue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4optionvalue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4OptionValue --- diff --git a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4Policy.md b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4Policy.md index e6572e28f6..444ccc826e 100644 --- a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4Policy.md +++ b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4Policy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Policy_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4policy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4policy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4Policy --- diff --git a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4PolicyIPRange.md b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4PolicyIPRange.md index 8f921a481b..3323177397 100644 --- a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4PolicyIPRange.md +++ b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4PolicyIPRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4PolicyIPRange_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4policyiprange?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4policyiprange?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4PolicyIPRange --- diff --git a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4Reservation.md b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4Reservation.md index 14c552a7b2..2d3137fb60 100644 --- a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4Reservation.md +++ b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4Reservation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4Reservation_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4reservation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4reservation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4Reservation --- diff --git a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4Scope.md b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4Scope.md index e11186d08b..dd73be5195 100644 --- a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4Scope.md +++ b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4Scope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4Scope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4scope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4scope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4Scope --- diff --git a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4ScopeStatistics.md b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4ScopeStatistics.md index ffbde8bf03..ed2aa7e163 100644 --- a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4ScopeStatistics.md +++ b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4ScopeStatistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4ScopeStatistics_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4scopestatistics?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4scopestatistics?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4ScopeStatistics --- diff --git a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4Statistics.md b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4Statistics.md index 911e456cdd..4a1600fe34 100644 --- a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4Statistics.md +++ b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4Statistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Statistics_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4statistics?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4statistics?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4Statistics --- diff --git a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4Superscope.md b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4Superscope.md index ab0c02de6d..457ac75115 100644 --- a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4Superscope.md +++ b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4Superscope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4Superscope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4superscope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4superscope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4Superscope --- diff --git a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4SuperscopeStatistics.md b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4SuperscopeStatistics.md index 66a15f4d20..72f913b098 100644 --- a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4SuperscopeStatistics.md +++ b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv4SuperscopeStatistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4SuperScopeStatistics_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4superscopestatistics?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4superscopestatistics?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4SuperscopeStatistics --- diff --git a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6Binding.md b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6Binding.md index 8c994af941..e7fcb9db50 100644 --- a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6Binding.md +++ b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6Binding.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6Binding_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6binding?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6binding?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6Binding --- diff --git a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6Class.md b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6Class.md index f204261261..d8574ff872 100644 --- a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6Class.md +++ b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6Class.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv6Class_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6class?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6class?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6Class --- diff --git a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6DnsSetting.md b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6DnsSetting.md index 0306e9d8aa..0a1700ad22 100644 --- a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6DnsSetting.md +++ b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6DnsSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv6DnsSetting_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6dnssetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6dnssetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6DnsSetting --- diff --git a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6ExclusionRange.md b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6ExclusionRange.md index 219120daaf..4ab1e3c407 100644 --- a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6ExclusionRange.md +++ b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6ExclusionRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6ExclusionRange_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6exclusionrange?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6exclusionrange?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6ExclusionRange --- diff --git a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6FreeIPAddress.md b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6FreeIPAddress.md index 8fde88118e..1f2a1acf98 100644 --- a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6FreeIPAddress.md +++ b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6FreeIPAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv6FreeIPAddress_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6freeipaddress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6freeipaddress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6FreeIPAddress --- diff --git a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6Lease.md b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6Lease.md index 51c4e18e9d..df150c7b73 100644 --- a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6Lease.md +++ b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6Lease.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv6Lease_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6lease?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6lease?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6Lease --- diff --git a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6OptionDefinition.md b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6OptionDefinition.md index 64072b83df..9173967637 100644 --- a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6OptionDefinition.md +++ b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6OptionDefinition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6OptionDefinition_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6optiondefinition?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6optiondefinition?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6OptionDefinition --- diff --git a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6OptionValue.md b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6OptionValue.md index 6ca32d7d47..1e2ebfb2e8 100644 --- a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6OptionValue.md +++ b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6OptionValue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6OptionValue_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6optionvalue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6optionvalue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6OptionValue --- diff --git a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6Reservation.md b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6Reservation.md index d81d28cf5f..7db1307371 100644 --- a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6Reservation.md +++ b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6Reservation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6Reservation_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6reservation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6reservation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6Reservation --- diff --git a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6Scope.md b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6Scope.md index 5b645baf03..33b25fd8d1 100644 --- a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6Scope.md +++ b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6Scope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6Scope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6scope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6scope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6Scope --- diff --git a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6ScopeStatistics.md b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6ScopeStatistics.md index b19efcb6c2..f6aa7f13a1 100644 --- a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6ScopeStatistics.md +++ b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6ScopeStatistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6ScopeStatistics_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6scopestatistics?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6scopestatistics?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6ScopeStatistics --- diff --git a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6StatelessStatistics.md b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6StatelessStatistics.md index 5943e0efe4..7cc99971ed 100644 --- a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6StatelessStatistics.md +++ b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6StatelessStatistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv6StatelessStatistics_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6statelessstatistics?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6statelessstatistics?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6StatelessStatistics --- diff --git a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6StatelessStore.md b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6StatelessStore.md index e801519fc4..05b6089bb9 100644 --- a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6StatelessStore.md +++ b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6StatelessStore.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv6StatelessStore_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6statelessstore?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6statelessstore?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6StatelessStore --- diff --git a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6Statistics.md b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6Statistics.md index 5fd5237291..fc626b404e 100644 --- a/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6Statistics.md +++ b/docset/winserver2019-ps/dhcpserver/Get-DhcpServerv6Statistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv6Statistics_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6statistics?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6statistics?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6Statistics --- diff --git a/docset/winserver2019-ps/dhcpserver/Import-DhcpServer.md b/docset/winserver2019-ps/dhcpserver/Import-DhcpServer.md index 7f99b23378..3ff5d68d16 100644 --- a/docset/winserver2019-ps/dhcpserver/Import-DhcpServer.md +++ b/docset/winserver2019-ps/dhcpserver/Import-DhcpServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DhcpServerMigration-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/import-dhcpserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/import-dhcpserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-DhcpServer --- diff --git a/docset/winserver2019-ps/dhcpserver/Invoke-DhcpServerv4FailoverReplication.md b/docset/winserver2019-ps/dhcpserver/Invoke-DhcpServerv4FailoverReplication.md index a68c367fac..8d583db75a 100644 --- a/docset/winserver2019-ps/dhcpserver/Invoke-DhcpServerv4FailoverReplication.md +++ b/docset/winserver2019-ps/dhcpserver/Invoke-DhcpServerv4FailoverReplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4FailoverReplication_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/invoke-dhcpserverv4failoverreplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/invoke-dhcpserverv4failoverreplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-DhcpServerv4FailoverReplication --- diff --git a/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerDnsCredential.md b/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerDnsCredential.md index e63c2b3a13..13c80475c6 100644 --- a/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerDnsCredential.md +++ b/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerDnsCredential.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerDnsCredential_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverdnscredential?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverdnscredential?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerDnsCredential --- diff --git a/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerInDC.md b/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerInDC.md index 682756ec6e..efbd45b655 100644 --- a/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerInDC.md +++ b/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerInDC.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerInDC_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverindc?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverindc?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerInDC --- diff --git a/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4Class.md b/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4Class.md index 85704f383e..255b6df368 100644 --- a/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4Class.md +++ b/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4Class.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Class_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4class?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4class?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4Class --- diff --git a/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4ExclusionRange.md b/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4ExclusionRange.md index 0bd096c566..c1eeee9cdd 100644 --- a/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4ExclusionRange.md +++ b/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4ExclusionRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4ExclusionRange_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4exclusionrange?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4exclusionrange?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4ExclusionRange --- diff --git a/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4Failover.md b/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4Failover.md index 4400e58e84..0732773afb 100644 --- a/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4Failover.md +++ b/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4Failover.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Failover_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4failover?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4failover?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4Failover --- diff --git a/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4FailoverScope.md b/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4FailoverScope.md index 41f0fcdda5..a2a44f4d70 100644 --- a/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4FailoverScope.md +++ b/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4FailoverScope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4FailoverScope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4failoverscope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4failoverscope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4FailoverScope --- diff --git a/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4Filter.md b/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4Filter.md index 23de623752..e27f61d0df 100644 --- a/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4Filter.md +++ b/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4Filter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Filter_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4filter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4filter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4Filter --- diff --git a/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4Lease.md b/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4Lease.md index f3d1e6d8e3..a413d49582 100644 --- a/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4Lease.md +++ b/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4Lease.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Lease_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4lease?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4lease?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4Lease --- diff --git a/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4MulticastExclusionRange.md b/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4MulticastExclusionRange.md index 7861430283..c467e17a3b 100644 --- a/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4MulticastExclusionRange.md +++ b/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4MulticastExclusionRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4MulticastExclusionRange_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4multicastexclusionrange?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4multicastexclusionrange?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4MulticastExclusionRange --- diff --git a/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4MulticastLease.md b/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4MulticastLease.md index 5a3f6b95c9..7a90399933 100644 --- a/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4MulticastLease.md +++ b/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4MulticastLease.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4MulticastLease_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4multicastlease?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4multicastlease?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4MulticastLease --- diff --git a/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4MulticastScope.md b/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4MulticastScope.md index a013f73347..11830cc594 100644 --- a/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4MulticastScope.md +++ b/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4MulticastScope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4MulticastScope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4multicastscope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4multicastscope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4MulticastScope --- diff --git a/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4OptionDefinition.md b/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4OptionDefinition.md index 68e4edb0cd..34166176e9 100644 --- a/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4OptionDefinition.md +++ b/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4OptionDefinition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4OptionDefinition_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4optiondefinition?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4optiondefinition?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4OptionDefinition --- diff --git a/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4OptionValue.md b/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4OptionValue.md index 992c3914d8..117c737c82 100644 --- a/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4OptionValue.md +++ b/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4OptionValue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4OptionValue_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4optionvalue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4optionvalue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4OptionValue --- diff --git a/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4Policy.md b/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4Policy.md index d621382114..4fdda86526 100644 --- a/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4Policy.md +++ b/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4Policy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Policy_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4policy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4policy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4Policy --- diff --git a/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4PolicyIPRange.md b/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4PolicyIPRange.md index 1e4e886188..2950478eb5 100644 --- a/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4PolicyIPRange.md +++ b/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4PolicyIPRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4PolicyIPRange_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4policyiprange?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4policyiprange?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4PolicyIPRange --- diff --git a/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4Reservation.md b/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4Reservation.md index ef95097745..c12404280b 100644 --- a/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4Reservation.md +++ b/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4Reservation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4Reservation_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4reservation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4reservation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4Reservation --- diff --git a/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4Scope.md b/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4Scope.md index 43eb3ecdb9..ce64a8081a 100644 --- a/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4Scope.md +++ b/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4Scope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4Scope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4scope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4scope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4Scope --- diff --git a/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4Superscope.md b/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4Superscope.md index 614d0a647a..06a583d3b8 100644 --- a/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4Superscope.md +++ b/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv4Superscope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4Superscope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4superscope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4superscope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4Superscope --- diff --git a/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv6Class.md b/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv6Class.md index 9ca827c119..c8c573089a 100644 --- a/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv6Class.md +++ b/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv6Class.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv6Class_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6class?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6class?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv6Class --- diff --git a/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv6ExclusionRange.md b/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv6ExclusionRange.md index f0b8737b4e..c8c43f696e 100644 --- a/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv6ExclusionRange.md +++ b/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv6ExclusionRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6ExclusionRange_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6exclusionrange?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6exclusionrange?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv6ExclusionRange --- diff --git a/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv6Lease.md b/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv6Lease.md index 09d72b75bd..9b4c74d82d 100644 --- a/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv6Lease.md +++ b/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv6Lease.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv6Lease_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6lease?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6lease?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv6Lease --- diff --git a/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv6OptionDefinition.md b/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv6OptionDefinition.md index c895ab0302..3bb10758ed 100644 --- a/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv6OptionDefinition.md +++ b/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv6OptionDefinition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6OptionDefinition_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6optiondefinition?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6optiondefinition?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv6OptionDefinition --- diff --git a/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv6OptionValue.md b/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv6OptionValue.md index c37b88f8c5..fcbc216ca6 100644 --- a/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv6OptionValue.md +++ b/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv6OptionValue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6OptionValue_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6optionvalue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6optionvalue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv6OptionValue --- diff --git a/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv6Reservation.md b/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv6Reservation.md index b7e8021827..956eecd896 100644 --- a/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv6Reservation.md +++ b/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv6Reservation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6Reservation_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6reservation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6reservation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv6Reservation --- diff --git a/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv6Scope.md b/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv6Scope.md index 319abb4e35..bc68c7471f 100644 --- a/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv6Scope.md +++ b/docset/winserver2019-ps/dhcpserver/Remove-DhcpServerv6Scope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6Scope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6scope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6scope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv6Scope --- diff --git a/docset/winserver2019-ps/dhcpserver/Rename-DhcpServerv4Superscope.md b/docset/winserver2019-ps/dhcpserver/Rename-DhcpServerv4Superscope.md index 97697b7883..d72785b253 100644 --- a/docset/winserver2019-ps/dhcpserver/Rename-DhcpServerv4Superscope.md +++ b/docset/winserver2019-ps/dhcpserver/Rename-DhcpServerv4Superscope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4Superscope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/rename-dhcpserverv4superscope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/rename-dhcpserverv4superscope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-DhcpServerv4Superscope --- diff --git a/docset/winserver2019-ps/dhcpserver/Repair-DhcpServerv4IPRecord.md b/docset/winserver2019-ps/dhcpserver/Repair-DhcpServerv4IPRecord.md index 35409bb1d2..41257329b2 100644 --- a/docset/winserver2019-ps/dhcpserver/Repair-DhcpServerv4IPRecord.md +++ b/docset/winserver2019-ps/dhcpserver/Repair-DhcpServerv4IPRecord.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4IPRecord_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/repair-dhcpserverv4iprecord?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/repair-dhcpserverv4iprecord?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Repair-DhcpServerv4IPRecord --- diff --git a/docset/winserver2019-ps/dhcpserver/Restore-DhcpServer.md b/docset/winserver2019-ps/dhcpserver/Restore-DhcpServer.md index 1ad45bc39d..0b76f52a67 100644 --- a/docset/winserver2019-ps/dhcpserver/Restore-DhcpServer.md +++ b/docset/winserver2019-ps/dhcpserver/Restore-DhcpServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServer_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/restore-dhcpserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/restore-dhcpserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-DhcpServer --- diff --git a/docset/winserver2019-ps/dhcpserver/Set-DhcpServerAuditLog.md b/docset/winserver2019-ps/dhcpserver/Set-DhcpServerAuditLog.md index a086559b4d..b3f44260b4 100644 --- a/docset/winserver2019-ps/dhcpserver/Set-DhcpServerAuditLog.md +++ b/docset/winserver2019-ps/dhcpserver/Set-DhcpServerAuditLog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerAuditLog_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverauditlog?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverauditlog?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerAuditLog --- diff --git a/docset/winserver2019-ps/dhcpserver/Set-DhcpServerDatabase.md b/docset/winserver2019-ps/dhcpserver/Set-DhcpServerDatabase.md index fefa587864..eb8b40fb92 100644 --- a/docset/winserver2019-ps/dhcpserver/Set-DhcpServerDatabase.md +++ b/docset/winserver2019-ps/dhcpserver/Set-DhcpServerDatabase.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerDatabase_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverdatabase?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverdatabase?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerDatabase --- diff --git a/docset/winserver2019-ps/dhcpserver/Set-DhcpServerDnsCredential.md b/docset/winserver2019-ps/dhcpserver/Set-DhcpServerDnsCredential.md index d52158fc9d..f9bd0d070a 100644 --- a/docset/winserver2019-ps/dhcpserver/Set-DhcpServerDnsCredential.md +++ b/docset/winserver2019-ps/dhcpserver/Set-DhcpServerDnsCredential.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerDnsCredential_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverdnscredential?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverdnscredential?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerDnsCredential --- diff --git a/docset/winserver2019-ps/dhcpserver/Set-DhcpServerSetting.md b/docset/winserver2019-ps/dhcpserver/Set-DhcpServerSetting.md index f9dfee3c4e..60fcd7f57f 100644 --- a/docset/winserver2019-ps/dhcpserver/Set-DhcpServerSetting.md +++ b/docset/winserver2019-ps/dhcpserver/Set-DhcpServerSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerSetting_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserversetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserversetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerSetting --- diff --git a/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv4Binding.md b/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv4Binding.md index 8a331db431..26a28a993c 100644 --- a/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv4Binding.md +++ b/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv4Binding.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4Binding_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4binding?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4binding?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv4Binding --- diff --git a/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv4Class.md b/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv4Class.md index 02a07d8909..e69cd82ef2 100644 --- a/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv4Class.md +++ b/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv4Class.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Class_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4class?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4class?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv4Class --- diff --git a/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv4DnsSetting.md b/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv4DnsSetting.md index a3da1f28c9..14f7d997e3 100644 --- a/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv4DnsSetting.md +++ b/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv4DnsSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4DnsSetting_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4dnssetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4dnssetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv4DnsSetting --- diff --git a/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv4Failover.md b/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv4Failover.md index 806880d07f..bf9cf7b4bc 100644 --- a/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv4Failover.md +++ b/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv4Failover.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Failover_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4failover?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4failover?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv4Failover --- diff --git a/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv4FilterList.md b/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv4FilterList.md index 74b06e2c9d..0d3f9c62b9 100644 --- a/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv4FilterList.md +++ b/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv4FilterList.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4FilterList_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4filterlist?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4filterlist?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv4FilterList --- diff --git a/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv4MulticastScope.md b/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv4MulticastScope.md index e335558fef..6ff9a4ccfc 100644 --- a/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv4MulticastScope.md +++ b/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv4MulticastScope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4MulticastScope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4multicastscope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4multicastscope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv4MulticastScope --- diff --git a/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv4OptionDefinition.md b/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv4OptionDefinition.md index c3cc9ccfa1..d80df50a51 100644 --- a/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv4OptionDefinition.md +++ b/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv4OptionDefinition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4OptionDefinition_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4optiondefinition?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4optiondefinition?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv4OptionDefinition --- diff --git a/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv4OptionValue.md b/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv4OptionValue.md index 6806533487..cf333048aa 100644 --- a/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv4OptionValue.md +++ b/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv4OptionValue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4OptionValue_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4optionvalue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4optionvalue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv4OptionValue --- diff --git a/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv4Policy.md b/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv4Policy.md index 59060a9093..bae1ec1a85 100644 --- a/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv4Policy.md +++ b/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv4Policy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Policy_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4policy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4policy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv4Policy --- diff --git a/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv4Reservation.md b/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv4Reservation.md index 23c0244609..3f4fbe2929 100644 --- a/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv4Reservation.md +++ b/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv4Reservation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4Reservation_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4reservation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4reservation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv4Reservation --- diff --git a/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv4Scope.md b/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv4Scope.md index 49ac582a3b..47c05399f0 100644 --- a/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv4Scope.md +++ b/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv4Scope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4Scope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4scope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4scope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv4Scope --- diff --git a/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv6Binding.md b/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv6Binding.md index 669218ad06..d82149bdd2 100644 --- a/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv6Binding.md +++ b/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv6Binding.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6Binding_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6binding?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6binding?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv6Binding --- diff --git a/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv6Class.md b/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv6Class.md index a5a7e8237d..30c34a6cf7 100644 --- a/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv6Class.md +++ b/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv6Class.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv6Class_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6class?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6class?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv6Class --- diff --git a/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv6DnsSetting.md b/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv6DnsSetting.md index dce0fe2fab..adc64bd9fc 100644 --- a/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv6DnsSetting.md +++ b/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv6DnsSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv6DnsSetting_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6dnssetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6dnssetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv6DnsSetting --- diff --git a/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv6OptionDefinition.md b/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv6OptionDefinition.md index 1b86f08dae..85e34dfebf 100644 --- a/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv6OptionDefinition.md +++ b/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv6OptionDefinition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6OptionDefinition_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6optiondefinition?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6optiondefinition?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv6OptionDefinition --- diff --git a/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv6OptionValue.md b/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv6OptionValue.md index 5425a65351..52eaab47d4 100644 --- a/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv6OptionValue.md +++ b/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv6OptionValue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6OptionValue_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6optionvalue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6optionvalue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv6OptionValue --- diff --git a/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv6Reservation.md b/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv6Reservation.md index 3840beb871..c1b0d05e7a 100644 --- a/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv6Reservation.md +++ b/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv6Reservation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6Reservation_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6reservation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6reservation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv6Reservation --- diff --git a/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv6Scope.md b/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv6Scope.md index 748003ba3e..44f9a8436f 100644 --- a/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv6Scope.md +++ b/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv6Scope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6Scope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6scope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6scope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv6Scope --- diff --git a/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv6StatelessStore.md b/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv6StatelessStore.md index 1372756411..d3636b4c7e 100644 --- a/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv6StatelessStore.md +++ b/docset/winserver2019-ps/dhcpserver/Set-DhcpServerv6StatelessStore.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv6StatelessStore_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6statelessstore?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6statelessstore?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv6StatelessStore --- diff --git a/docset/winserver2019-ps/directaccessclientcomponents/Disable-DAManualEntryPointSelection.md b/docset/winserver2019-ps/directaccessclientcomponents/Disable-DAManualEntryPointSelection.md index d5ed9879ea..f6291a6afb 100644 --- a/docset/winserver2019-ps/directaccessclientcomponents/Disable-DAManualEntryPointSelection.md +++ b/docset/winserver2019-ps/directaccessclientcomponents/Disable-DAManualEntryPointSelection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DASiteTableEntry.cdxml-help.xml Module Name: DirectAccessClientComponents ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/directaccessclientcomponents/disable-damanualentrypointselection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/directaccessclientcomponents/disable-damanualentrypointselection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-DAManualEntryPointSelection --- diff --git a/docset/winserver2019-ps/directaccessclientcomponents/Enable-DAManualEntryPointSelection.md b/docset/winserver2019-ps/directaccessclientcomponents/Enable-DAManualEntryPointSelection.md index edcd641492..504b623fcc 100644 --- a/docset/winserver2019-ps/directaccessclientcomponents/Enable-DAManualEntryPointSelection.md +++ b/docset/winserver2019-ps/directaccessclientcomponents/Enable-DAManualEntryPointSelection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DASiteTableEntry.cdxml-help.xml Module Name: DirectAccessClientComponents ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/directaccessclientcomponents/enable-damanualentrypointselection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/directaccessclientcomponents/enable-damanualentrypointselection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-DAManualEntryPointSelection --- diff --git a/docset/winserver2019-ps/directaccessclientcomponents/Get-DAClientExperienceConfiguration.md b/docset/winserver2019-ps/directaccessclientcomponents/Get-DAClientExperienceConfiguration.md index 75113d5ed2..b9147efea8 100644 --- a/docset/winserver2019-ps/directaccessclientcomponents/Get-DAClientExperienceConfiguration.md +++ b/docset/winserver2019-ps/directaccessclientcomponents/Get-DAClientExperienceConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DAClientExperienceConfiguration.cdxml-help.xml Module Name: DirectAccessClientComponents ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/directaccessclientcomponents/get-daclientexperienceconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/directaccessclientcomponents/get-daclientexperienceconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DAClientExperienceConfiguration --- diff --git a/docset/winserver2019-ps/directaccessclientcomponents/Get-DAEntryPointTableItem.md b/docset/winserver2019-ps/directaccessclientcomponents/Get-DAEntryPointTableItem.md index 6a05ac2079..def7a07d46 100644 --- a/docset/winserver2019-ps/directaccessclientcomponents/Get-DAEntryPointTableItem.md +++ b/docset/winserver2019-ps/directaccessclientcomponents/Get-DAEntryPointTableItem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DASiteTableEntry.cdxml-help.xml Module Name: DirectAccessClientComponents ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/directaccessclientcomponents/get-daentrypointtableitem?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/directaccessclientcomponents/get-daentrypointtableitem?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DAEntryPointTableItem --- diff --git a/docset/winserver2019-ps/directaccessclientcomponents/New-DAEntryPointTableItem.md b/docset/winserver2019-ps/directaccessclientcomponents/New-DAEntryPointTableItem.md index 0ba5af80c5..f13610fcf8 100644 --- a/docset/winserver2019-ps/directaccessclientcomponents/New-DAEntryPointTableItem.md +++ b/docset/winserver2019-ps/directaccessclientcomponents/New-DAEntryPointTableItem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DASiteTableEntry.cdxml-help.xml Module Name: DirectAccessClientComponents ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/directaccessclientcomponents/new-daentrypointtableitem?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/directaccessclientcomponents/new-daentrypointtableitem?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-DAEntryPointTableItem --- diff --git a/docset/winserver2019-ps/directaccessclientcomponents/Remove-DAEntryPointTableItem.md b/docset/winserver2019-ps/directaccessclientcomponents/Remove-DAEntryPointTableItem.md index 5edb4206e6..9ae90f31bf 100644 --- a/docset/winserver2019-ps/directaccessclientcomponents/Remove-DAEntryPointTableItem.md +++ b/docset/winserver2019-ps/directaccessclientcomponents/Remove-DAEntryPointTableItem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DASiteTableEntry.cdxml-help.xml Module Name: DirectAccessClientComponents ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/directaccessclientcomponents/remove-daentrypointtableitem?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/directaccessclientcomponents/remove-daentrypointtableitem?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DAEntryPointTableItem --- diff --git a/docset/winserver2019-ps/directaccessclientcomponents/Rename-DAEntryPointTableItem.md b/docset/winserver2019-ps/directaccessclientcomponents/Rename-DAEntryPointTableItem.md index 99fcf5e95e..cc668c7052 100644 --- a/docset/winserver2019-ps/directaccessclientcomponents/Rename-DAEntryPointTableItem.md +++ b/docset/winserver2019-ps/directaccessclientcomponents/Rename-DAEntryPointTableItem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DASiteTableEntry.cdxml-help.xml Module Name: DirectAccessClientComponents ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/directaccessclientcomponents/rename-daentrypointtableitem?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/directaccessclientcomponents/rename-daentrypointtableitem?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-DAEntryPointTableItem --- diff --git a/docset/winserver2019-ps/directaccessclientcomponents/Reset-DAClientExperienceConfiguration.md b/docset/winserver2019-ps/directaccessclientcomponents/Reset-DAClientExperienceConfiguration.md index c2f06f4001..5bcb951923 100644 --- a/docset/winserver2019-ps/directaccessclientcomponents/Reset-DAClientExperienceConfiguration.md +++ b/docset/winserver2019-ps/directaccessclientcomponents/Reset-DAClientExperienceConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DAClientExperienceConfiguration.cdxml-help.xml Module Name: DirectAccessClientComponents ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/directaccessclientcomponents/reset-daclientexperienceconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/directaccessclientcomponents/reset-daclientexperienceconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-DAClientExperienceConfiguration --- diff --git a/docset/winserver2019-ps/directaccessclientcomponents/Reset-DAEntryPointTableItem.md b/docset/winserver2019-ps/directaccessclientcomponents/Reset-DAEntryPointTableItem.md index 7e4032c7a2..27b47573e8 100644 --- a/docset/winserver2019-ps/directaccessclientcomponents/Reset-DAEntryPointTableItem.md +++ b/docset/winserver2019-ps/directaccessclientcomponents/Reset-DAEntryPointTableItem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DASiteTableEntry.cdxml-help.xml Module Name: DirectAccessClientComponents ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/directaccessclientcomponents/reset-daentrypointtableitem?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/directaccessclientcomponents/reset-daentrypointtableitem?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-DAEntryPointTableItem --- diff --git a/docset/winserver2019-ps/directaccessclientcomponents/Set-DAClientExperienceConfiguration.md b/docset/winserver2019-ps/directaccessclientcomponents/Set-DAClientExperienceConfiguration.md index f3dc423e7b..2ee0b8d379 100644 --- a/docset/winserver2019-ps/directaccessclientcomponents/Set-DAClientExperienceConfiguration.md +++ b/docset/winserver2019-ps/directaccessclientcomponents/Set-DAClientExperienceConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DAClientExperienceConfiguration.cdxml-help.xml Module Name: DirectAccessClientComponents ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/directaccessclientcomponents/set-daclientexperienceconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/directaccessclientcomponents/set-daclientexperienceconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DAClientExperienceConfiguration --- diff --git a/docset/winserver2019-ps/directaccessclientcomponents/Set-DAEntryPointTableItem.md b/docset/winserver2019-ps/directaccessclientcomponents/Set-DAEntryPointTableItem.md index f666cbfbc7..99634517b1 100644 --- a/docset/winserver2019-ps/directaccessclientcomponents/Set-DAEntryPointTableItem.md +++ b/docset/winserver2019-ps/directaccessclientcomponents/Set-DAEntryPointTableItem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DASiteTableEntry.cdxml-help.xml Module Name: DirectAccessClientComponents ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/directaccessclientcomponents/set-daentrypointtableitem?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/directaccessclientcomponents/set-daentrypointtableitem?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DAEntryPointTableItem --- diff --git a/docset/winserver2019-ps/dism/Add-AppxProvisionedPackage.md b/docset/winserver2019-ps/dism/Add-AppxProvisionedPackage.md index bc0064eefc..a0f703a027 100644 --- a/docset/winserver2019-ps/dism/Add-AppxProvisionedPackage.md +++ b/docset/winserver2019-ps/dism/Add-AppxProvisionedPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/add-appxprovisionedpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/add-appxprovisionedpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AppxProvisionedPackage --- diff --git a/docset/winserver2019-ps/dism/Add-WindowsCapability.md b/docset/winserver2019-ps/dism/Add-WindowsCapability.md index b991d44592..e6908d89fa 100644 --- a/docset/winserver2019-ps/dism/Add-WindowsCapability.md +++ b/docset/winserver2019-ps/dism/Add-WindowsCapability.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/add-windowscapability?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/add-windowscapability?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WindowsCapability --- diff --git a/docset/winserver2019-ps/dism/Add-WindowsDriver.md b/docset/winserver2019-ps/dism/Add-WindowsDriver.md index 4fe89de309..cdd7b390a0 100644 --- a/docset/winserver2019-ps/dism/Add-WindowsDriver.md +++ b/docset/winserver2019-ps/dism/Add-WindowsDriver.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/add-windowsdriver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/add-windowsdriver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WindowsDriver --- diff --git a/docset/winserver2019-ps/dism/Add-WindowsImage.md b/docset/winserver2019-ps/dism/Add-WindowsImage.md index ce9751650d..f01238f6be 100644 --- a/docset/winserver2019-ps/dism/Add-WindowsImage.md +++ b/docset/winserver2019-ps/dism/Add-WindowsImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/add-windowsimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/add-windowsimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WindowsImage --- diff --git a/docset/winserver2019-ps/dism/Add-WindowsPackage.md b/docset/winserver2019-ps/dism/Add-WindowsPackage.md index 7029258b7e..c629f0b29e 100644 --- a/docset/winserver2019-ps/dism/Add-WindowsPackage.md +++ b/docset/winserver2019-ps/dism/Add-WindowsPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/add-windowspackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/add-windowspackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WindowsPackage --- diff --git a/docset/winserver2019-ps/dism/Clear-WindowsCorruptMountPoint.md b/docset/winserver2019-ps/dism/Clear-WindowsCorruptMountPoint.md index ed718f5228..f25069348f 100644 --- a/docset/winserver2019-ps/dism/Clear-WindowsCorruptMountPoint.md +++ b/docset/winserver2019-ps/dism/Clear-WindowsCorruptMountPoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/clear-windowscorruptmountpoint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/clear-windowscorruptmountpoint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-WindowsCorruptMountPoint --- diff --git a/docset/winserver2019-ps/dism/Disable-WindowsOptionalFeature.md b/docset/winserver2019-ps/dism/Disable-WindowsOptionalFeature.md index 97da4ef308..2061c71525 100644 --- a/docset/winserver2019-ps/dism/Disable-WindowsOptionalFeature.md +++ b/docset/winserver2019-ps/dism/Disable-WindowsOptionalFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/disable-windowsoptionalfeature?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/disable-windowsoptionalfeature?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WindowsOptionalFeature --- diff --git a/docset/winserver2019-ps/dism/Dismount-WindowsImage.md b/docset/winserver2019-ps/dism/Dismount-WindowsImage.md index 54699a7ad4..6ca153f659 100644 --- a/docset/winserver2019-ps/dism/Dismount-WindowsImage.md +++ b/docset/winserver2019-ps/dism/Dismount-WindowsImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/dismount-windowsimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/dismount-windowsimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Dismount-WindowsImage --- diff --git a/docset/winserver2019-ps/dism/Enable-WindowsOptionalFeature.md b/docset/winserver2019-ps/dism/Enable-WindowsOptionalFeature.md index 41ec1fd3e1..073eb97ee0 100644 --- a/docset/winserver2019-ps/dism/Enable-WindowsOptionalFeature.md +++ b/docset/winserver2019-ps/dism/Enable-WindowsOptionalFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/enable-windowsoptionalfeature?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/enable-windowsoptionalfeature?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WindowsOptionalFeature --- diff --git a/docset/winserver2019-ps/dism/Expand-WindowsCustomDataImage.md b/docset/winserver2019-ps/dism/Expand-WindowsCustomDataImage.md index 6164dd04a1..b84adb9c96 100644 --- a/docset/winserver2019-ps/dism/Expand-WindowsCustomDataImage.md +++ b/docset/winserver2019-ps/dism/Expand-WindowsCustomDataImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/expand-windowscustomdataimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/expand-windowscustomdataimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Expand-WindowsCustomDataImage --- diff --git a/docset/winserver2019-ps/dism/Expand-WindowsImage.md b/docset/winserver2019-ps/dism/Expand-WindowsImage.md index 865698cf7c..aa38013f92 100644 --- a/docset/winserver2019-ps/dism/Expand-WindowsImage.md +++ b/docset/winserver2019-ps/dism/Expand-WindowsImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/expand-windowsimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/expand-windowsimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Expand-WindowsImage --- diff --git a/docset/winserver2019-ps/dism/Export-WindowsDriver.md b/docset/winserver2019-ps/dism/Export-WindowsDriver.md index f28804532c..8117c0d1ca 100644 --- a/docset/winserver2019-ps/dism/Export-WindowsDriver.md +++ b/docset/winserver2019-ps/dism/Export-WindowsDriver.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/export-windowsdriver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/export-windowsdriver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-WindowsDriver --- diff --git a/docset/winserver2019-ps/dism/Export-WindowsImage.md b/docset/winserver2019-ps/dism/Export-WindowsImage.md index f55782faea..5eaaf8e629 100644 --- a/docset/winserver2019-ps/dism/Export-WindowsImage.md +++ b/docset/winserver2019-ps/dism/Export-WindowsImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/export-windowsimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/export-windowsimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-WindowsImage --- diff --git a/docset/winserver2019-ps/dism/Get-AppxProvisionedPackage.md b/docset/winserver2019-ps/dism/Get-AppxProvisionedPackage.md index 0a934c1323..fbf81ae6da 100644 --- a/docset/winserver2019-ps/dism/Get-AppxProvisionedPackage.md +++ b/docset/winserver2019-ps/dism/Get-AppxProvisionedPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/get-appxprovisionedpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/get-appxprovisionedpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppxProvisionedPackage --- diff --git a/docset/winserver2019-ps/dism/Get-WIMBootEntry.md b/docset/winserver2019-ps/dism/Get-WIMBootEntry.md index fbe93c24b1..366286e137 100644 --- a/docset/winserver2019-ps/dism/Get-WIMBootEntry.md +++ b/docset/winserver2019-ps/dism/Get-WIMBootEntry.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/get-wimbootentry?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/get-wimbootentry?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WIMBootEntry --- diff --git a/docset/winserver2019-ps/dism/Get-WindowsCapability.md b/docset/winserver2019-ps/dism/Get-WindowsCapability.md index 33d07c04e3..eb023b4162 100644 --- a/docset/winserver2019-ps/dism/Get-WindowsCapability.md +++ b/docset/winserver2019-ps/dism/Get-WindowsCapability.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/get-windowscapability?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/get-windowscapability?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WindowsCapability --- diff --git a/docset/winserver2019-ps/dism/Get-WindowsDriver.md b/docset/winserver2019-ps/dism/Get-WindowsDriver.md index b87cb169ca..7a50380c2c 100644 --- a/docset/winserver2019-ps/dism/Get-WindowsDriver.md +++ b/docset/winserver2019-ps/dism/Get-WindowsDriver.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/get-windowsdriver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/get-windowsdriver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WindowsDriver --- diff --git a/docset/winserver2019-ps/dism/Get-WindowsEdition.md b/docset/winserver2019-ps/dism/Get-WindowsEdition.md index 9f53f8a182..b1876b84bb 100644 --- a/docset/winserver2019-ps/dism/Get-WindowsEdition.md +++ b/docset/winserver2019-ps/dism/Get-WindowsEdition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/get-windowsedition?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/get-windowsedition?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WindowsEdition --- diff --git a/docset/winserver2019-ps/dism/Get-WindowsImage.md b/docset/winserver2019-ps/dism/Get-WindowsImage.md index 7e01c406e4..407f93c4be 100644 --- a/docset/winserver2019-ps/dism/Get-WindowsImage.md +++ b/docset/winserver2019-ps/dism/Get-WindowsImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/get-windowsimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/get-windowsimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WindowsImage --- diff --git a/docset/winserver2019-ps/dism/Get-WindowsImageContent.md b/docset/winserver2019-ps/dism/Get-WindowsImageContent.md index 516f4b1283..02bcd2f68d 100644 --- a/docset/winserver2019-ps/dism/Get-WindowsImageContent.md +++ b/docset/winserver2019-ps/dism/Get-WindowsImageContent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/get-windowsimagecontent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/get-windowsimagecontent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WindowsImageContent --- diff --git a/docset/winserver2019-ps/dism/Get-WindowsOptionalFeature.md b/docset/winserver2019-ps/dism/Get-WindowsOptionalFeature.md index 1d8c12052a..862307f6df 100644 --- a/docset/winserver2019-ps/dism/Get-WindowsOptionalFeature.md +++ b/docset/winserver2019-ps/dism/Get-WindowsOptionalFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/get-windowsoptionalfeature?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/get-windowsoptionalfeature?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WindowsOptionalFeature --- diff --git a/docset/winserver2019-ps/dism/Get-WindowsPackage.md b/docset/winserver2019-ps/dism/Get-WindowsPackage.md index 6f51f90566..2d2b07f160 100644 --- a/docset/winserver2019-ps/dism/Get-WindowsPackage.md +++ b/docset/winserver2019-ps/dism/Get-WindowsPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/get-windowspackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/get-windowspackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WindowsPackage --- diff --git a/docset/winserver2019-ps/dism/Get-WindowsReservedStorageState.md b/docset/winserver2019-ps/dism/Get-WindowsReservedStorageState.md index 18cf32ab6a..fa1214412f 100644 --- a/docset/winserver2019-ps/dism/Get-WindowsReservedStorageState.md +++ b/docset/winserver2019-ps/dism/Get-WindowsReservedStorageState.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] -online version: https://docs.microsoft.com/powershell/module/dism/get-windowsreservedstoragestate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/get-windowsreservedstoragestate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2019-ps/dism/Mount-WindowsImage.md b/docset/winserver2019-ps/dism/Mount-WindowsImage.md index f8d895e7c6..cae9c0705c 100644 --- a/docset/winserver2019-ps/dism/Mount-WindowsImage.md +++ b/docset/winserver2019-ps/dism/Mount-WindowsImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/mount-windowsimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/mount-windowsimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Mount-WindowsImage --- diff --git a/docset/winserver2019-ps/dism/New-WindowsCustomImage.md b/docset/winserver2019-ps/dism/New-WindowsCustomImage.md index 4c85755c76..0829711c43 100644 --- a/docset/winserver2019-ps/dism/New-WindowsCustomImage.md +++ b/docset/winserver2019-ps/dism/New-WindowsCustomImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/new-windowscustomimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/new-windowscustomimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WindowsCustomImage --- diff --git a/docset/winserver2019-ps/dism/New-WindowsImage.md b/docset/winserver2019-ps/dism/New-WindowsImage.md index f3bb8170c0..25f7f34277 100644 --- a/docset/winserver2019-ps/dism/New-WindowsImage.md +++ b/docset/winserver2019-ps/dism/New-WindowsImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/new-windowsimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/new-windowsimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WindowsImage --- diff --git a/docset/winserver2019-ps/dism/Optimize-WindowsImage.md b/docset/winserver2019-ps/dism/Optimize-WindowsImage.md index 5839d9c1d7..2524e46d1f 100644 --- a/docset/winserver2019-ps/dism/Optimize-WindowsImage.md +++ b/docset/winserver2019-ps/dism/Optimize-WindowsImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/optimize-windowsimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/optimize-windowsimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Optimize-WindowsImage --- diff --git a/docset/winserver2019-ps/dism/Remove-AppxProvisionedPackage.md b/docset/winserver2019-ps/dism/Remove-AppxProvisionedPackage.md index 2ee5fcf0c0..6bfd4608d1 100644 --- a/docset/winserver2019-ps/dism/Remove-AppxProvisionedPackage.md +++ b/docset/winserver2019-ps/dism/Remove-AppxProvisionedPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/remove-appxprovisionedpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/remove-appxprovisionedpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AppxProvisionedPackage --- diff --git a/docset/winserver2019-ps/dism/Remove-WindowsCapability.md b/docset/winserver2019-ps/dism/Remove-WindowsCapability.md index 30b5c33d5b..7bc5b40377 100644 --- a/docset/winserver2019-ps/dism/Remove-WindowsCapability.md +++ b/docset/winserver2019-ps/dism/Remove-WindowsCapability.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/remove-windowscapability?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/remove-windowscapability?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WindowsCapability --- diff --git a/docset/winserver2019-ps/dism/Remove-WindowsDriver.md b/docset/winserver2019-ps/dism/Remove-WindowsDriver.md index 1502afb55d..e2b7c088f3 100644 --- a/docset/winserver2019-ps/dism/Remove-WindowsDriver.md +++ b/docset/winserver2019-ps/dism/Remove-WindowsDriver.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/remove-windowsdriver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/remove-windowsdriver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WindowsDriver --- diff --git a/docset/winserver2019-ps/dism/Remove-WindowsImage.md b/docset/winserver2019-ps/dism/Remove-WindowsImage.md index 62f99750dc..ac603534d5 100644 --- a/docset/winserver2019-ps/dism/Remove-WindowsImage.md +++ b/docset/winserver2019-ps/dism/Remove-WindowsImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/remove-windowsimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/remove-windowsimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WindowsImage --- diff --git a/docset/winserver2019-ps/dism/Remove-WindowsPackage.md b/docset/winserver2019-ps/dism/Remove-WindowsPackage.md index ea92e5f5e0..1e6b444e75 100644 --- a/docset/winserver2019-ps/dism/Remove-WindowsPackage.md +++ b/docset/winserver2019-ps/dism/Remove-WindowsPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/remove-windowspackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/remove-windowspackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WindowsPackage --- diff --git a/docset/winserver2019-ps/dism/Repair-WindowsImage.md b/docset/winserver2019-ps/dism/Repair-WindowsImage.md index 9b17756611..fcd872784a 100644 --- a/docset/winserver2019-ps/dism/Repair-WindowsImage.md +++ b/docset/winserver2019-ps/dism/Repair-WindowsImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/repair-windowsimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/repair-windowsimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Repair-WindowsImage --- diff --git a/docset/winserver2019-ps/dism/Save-WindowsImage.md b/docset/winserver2019-ps/dism/Save-WindowsImage.md index c6efd327a4..01a2452d93 100644 --- a/docset/winserver2019-ps/dism/Save-WindowsImage.md +++ b/docset/winserver2019-ps/dism/Save-WindowsImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/save-windowsimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/save-windowsimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Save-WindowsImage --- diff --git a/docset/winserver2019-ps/dism/Set-AppXProvisionedDataFile.md b/docset/winserver2019-ps/dism/Set-AppXProvisionedDataFile.md index 9f045a1407..6e7a644b33 100644 --- a/docset/winserver2019-ps/dism/Set-AppXProvisionedDataFile.md +++ b/docset/winserver2019-ps/dism/Set-AppXProvisionedDataFile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/set-appxprovisioneddatafile?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/set-appxprovisioneddatafile?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AppXProvisionedDataFile --- diff --git a/docset/winserver2019-ps/dism/Set-WindowsEdition.md b/docset/winserver2019-ps/dism/Set-WindowsEdition.md index 0e7b18a99b..f4ab433329 100644 --- a/docset/winserver2019-ps/dism/Set-WindowsEdition.md +++ b/docset/winserver2019-ps/dism/Set-WindowsEdition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/set-windowsedition?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/set-windowsedition?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WindowsEdition --- diff --git a/docset/winserver2019-ps/dism/Set-WindowsProductKey.md b/docset/winserver2019-ps/dism/Set-WindowsProductKey.md index 29896346de..87559f96e5 100644 --- a/docset/winserver2019-ps/dism/Set-WindowsProductKey.md +++ b/docset/winserver2019-ps/dism/Set-WindowsProductKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/set-windowsproductkey?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/set-windowsproductkey?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WindowsProductKey --- diff --git a/docset/winserver2019-ps/dism/Set-WindowsReservedStorageState.md b/docset/winserver2019-ps/dism/Set-WindowsReservedStorageState.md index 37e7ef737e..60c7e5d8aa 100644 --- a/docset/winserver2019-ps/dism/Set-WindowsReservedStorageState.md +++ b/docset/winserver2019-ps/dism/Set-WindowsReservedStorageState.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] -online version: https://docs.microsoft.com/powershell/module/dism/set-windowsreservedstoragestate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/set-windowsreservedstoragestate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2019-ps/dism/Split-WindowsImage.md b/docset/winserver2019-ps/dism/Split-WindowsImage.md index dae2e5a356..c4637d6e39 100644 --- a/docset/winserver2019-ps/dism/Split-WindowsImage.md +++ b/docset/winserver2019-ps/dism/Split-WindowsImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/split-windowsimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/split-windowsimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Split-WindowsImage --- diff --git a/docset/winserver2019-ps/dism/Update-WIMBootEntry.md b/docset/winserver2019-ps/dism/Update-WIMBootEntry.md index fc199325e5..a4debf5b9d 100644 --- a/docset/winserver2019-ps/dism/Update-WIMBootEntry.md +++ b/docset/winserver2019-ps/dism/Update-WIMBootEntry.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/update-wimbootentry?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/update-wimbootentry?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-WIMBootEntry --- diff --git a/docset/winserver2019-ps/dism/Use-WindowsUnattend.md b/docset/winserver2019-ps/dism/Use-WindowsUnattend.md index fa2d5ca8b6..449bc4d511 100644 --- a/docset/winserver2019-ps/dism/Use-WindowsUnattend.md +++ b/docset/winserver2019-ps/dism/Use-WindowsUnattend.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/use-windowsunattend?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/use-windowsunattend?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Use-WindowsUnattend --- diff --git a/docset/winserver2019-ps/dnsclient/Add-DnsClientNrptRule.md b/docset/winserver2019-ps/dnsclient/Add-DnsClientNrptRule.md index 7f8c53abe0..8fe9f61139 100644 --- a/docset/winserver2019-ps/dnsclient/Add-DnsClientNrptRule.md +++ b/docset/winserver2019-ps/dnsclient/Add-DnsClientNrptRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsClientNRPTRule_v1.0.0.cdxml-help.xml Module Name: DnsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsclient/add-dnsclientnrptrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/add-dnsclientnrptrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsClientNrptRule --- diff --git a/docset/winserver2019-ps/dnsclient/Clear-DnsClientCache.md b/docset/winserver2019-ps/dnsclient/Clear-DnsClientCache.md index ac076bbce6..e01064e0e5 100644 --- a/docset/winserver2019-ps/dnsclient/Clear-DnsClientCache.md +++ b/docset/winserver2019-ps/dnsclient/Clear-DnsClientCache.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DnsClientCache.cdxml-help.xml Module Name: DnsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsclient/clear-dnsclientcache?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/clear-dnsclientcache?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-DnsClientCache --- diff --git a/docset/winserver2019-ps/dnsclient/Get-DnsClient.md b/docset/winserver2019-ps/dnsclient/Get-DnsClient.md index ca4da3f0e8..12555ec76f 100644 --- a/docset/winserver2019-ps/dnsclient/Get-DnsClient.md +++ b/docset/winserver2019-ps/dnsclient/Get-DnsClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DnsClient.cdxml-help.xml Module Name: DnsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsclient/get-dnsclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/get-dnsclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsClient --- diff --git a/docset/winserver2019-ps/dnsclient/Get-DnsClientCache.md b/docset/winserver2019-ps/dnsclient/Get-DnsClientCache.md index 03390bd2e2..dcc7780365 100644 --- a/docset/winserver2019-ps/dnsclient/Get-DnsClientCache.md +++ b/docset/winserver2019-ps/dnsclient/Get-DnsClientCache.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DnsClientCache.cdxml-help.xml Module Name: DnsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsclient/get-dnsclientcache?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/get-dnsclientcache?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsClientCache --- diff --git a/docset/winserver2019-ps/dnsclient/Get-DnsClientGlobalSetting.md b/docset/winserver2019-ps/dnsclient/Get-DnsClientGlobalSetting.md index a569115ec3..ce5c39bdc9 100644 --- a/docset/winserver2019-ps/dnsclient/Get-DnsClientGlobalSetting.md +++ b/docset/winserver2019-ps/dnsclient/Get-DnsClientGlobalSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DnsClientGlobalSetting.cdxml-help.xml Module Name: DnsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsclient/get-dnsclientglobalsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/get-dnsclientglobalsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsClientGlobalSetting --- diff --git a/docset/winserver2019-ps/dnsclient/Get-DnsClientNrptGlobal.md b/docset/winserver2019-ps/dnsclient/Get-DnsClientNrptGlobal.md index 9a53f5c09d..74e0fa16a1 100644 --- a/docset/winserver2019-ps/dnsclient/Get-DnsClientNrptGlobal.md +++ b/docset/winserver2019-ps/dnsclient/Get-DnsClientNrptGlobal.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsClientNRPTGlobal_v1.0.0.cdxml-help.xml Module Name: DnsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsclient/get-dnsclientnrptglobal?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/get-dnsclientnrptglobal?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsClientNrptGlobal --- diff --git a/docset/winserver2019-ps/dnsclient/Get-DnsClientNrptPolicy.md b/docset/winserver2019-ps/dnsclient/Get-DnsClientNrptPolicy.md index 2e01a241b4..f7b9db3a06 100644 --- a/docset/winserver2019-ps/dnsclient/Get-DnsClientNrptPolicy.md +++ b/docset/winserver2019-ps/dnsclient/Get-DnsClientNrptPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsClientNrptPolicy_v1.0.0.cdxml-help.xml Module Name: DnsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsclient/get-dnsclientnrptpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/get-dnsclientnrptpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsClientNrptPolicy --- diff --git a/docset/winserver2019-ps/dnsclient/Get-DnsClientNrptRule.md b/docset/winserver2019-ps/dnsclient/Get-DnsClientNrptRule.md index 1c786258e7..bcf3945e25 100644 --- a/docset/winserver2019-ps/dnsclient/Get-DnsClientNrptRule.md +++ b/docset/winserver2019-ps/dnsclient/Get-DnsClientNrptRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsClientNRPTRule_v1.0.0.cdxml-help.xml Module Name: DnsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsclient/get-dnsclientnrptrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/get-dnsclientnrptrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsClientNrptRule --- diff --git a/docset/winserver2019-ps/dnsclient/Get-DnsClientServerAddress.md b/docset/winserver2019-ps/dnsclient/Get-DnsClientServerAddress.md index 09e7256b9a..4a3d59669c 100644 --- a/docset/winserver2019-ps/dnsclient/Get-DnsClientServerAddress.md +++ b/docset/winserver2019-ps/dnsclient/Get-DnsClientServerAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DnsClientServerAddress.cdxml-help.xml Module Name: DnsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsclient/get-dnsclientserveraddress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/get-dnsclientserveraddress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsClientServerAddress --- diff --git a/docset/winserver2019-ps/dnsclient/Register-DnsClient.md b/docset/winserver2019-ps/dnsclient/Register-DnsClient.md index d33d1eb9e2..cf87a7ae55 100644 --- a/docset/winserver2019-ps/dnsclient/Register-DnsClient.md +++ b/docset/winserver2019-ps/dnsclient/Register-DnsClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DnsClient.cdxml-help.xml Module Name: DnsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsclient/register-dnsclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/register-dnsclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Register-DnsClient --- diff --git a/docset/winserver2019-ps/dnsclient/Remove-DnsClientNrptRule.md b/docset/winserver2019-ps/dnsclient/Remove-DnsClientNrptRule.md index 2643b7bd29..b610c4f54f 100644 --- a/docset/winserver2019-ps/dnsclient/Remove-DnsClientNrptRule.md +++ b/docset/winserver2019-ps/dnsclient/Remove-DnsClientNrptRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsClientNRPTRule_v1.0.0.cdxml-help.xml Module Name: DnsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsclient/remove-dnsclientnrptrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/remove-dnsclientnrptrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsClientNrptRule --- diff --git a/docset/winserver2019-ps/dnsclient/Resolve-DnsName.md b/docset/winserver2019-ps/dnsclient/Resolve-DnsName.md index 050bedbe12..9e9dd7d6d7 100644 --- a/docset/winserver2019-ps/dnsclient/Resolve-DnsName.md +++ b/docset/winserver2019-ps/dnsclient/Resolve-DnsName.md @@ -2,7 +2,7 @@ external help file: dnslookup.dll-Help.xml Module Name: DnsClient ms.date: 05/20/2019 -online version: https://docs.microsoft.com/powershell/module/dnsclient/resolve-dnsname?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/resolve-dnsname?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resolve-DnsName --- diff --git a/docset/winserver2019-ps/dnsclient/Set-DnsClient.md b/docset/winserver2019-ps/dnsclient/Set-DnsClient.md index 5fb18a0022..5df4cfa194 100644 --- a/docset/winserver2019-ps/dnsclient/Set-DnsClient.md +++ b/docset/winserver2019-ps/dnsclient/Set-DnsClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DnsClient.cdxml-help.xml Module Name: DnsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsclient/set-dnsclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/set-dnsclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsClient --- diff --git a/docset/winserver2019-ps/dnsclient/Set-DnsClientGlobalSetting.md b/docset/winserver2019-ps/dnsclient/Set-DnsClientGlobalSetting.md index f2bd4b3561..326fcee7a3 100644 --- a/docset/winserver2019-ps/dnsclient/Set-DnsClientGlobalSetting.md +++ b/docset/winserver2019-ps/dnsclient/Set-DnsClientGlobalSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DnsClientGlobalSetting.cdxml-help.xml Module Name: DnsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsclient/set-dnsclientglobalsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/set-dnsclientglobalsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsClientGlobalSetting --- diff --git a/docset/winserver2019-ps/dnsclient/Set-DnsClientNrptGlobal.md b/docset/winserver2019-ps/dnsclient/Set-DnsClientNrptGlobal.md index aec248a7aa..1f1d241087 100644 --- a/docset/winserver2019-ps/dnsclient/Set-DnsClientNrptGlobal.md +++ b/docset/winserver2019-ps/dnsclient/Set-DnsClientNrptGlobal.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsClientNRPTGlobal_v1.0.0.cdxml-help.xml Module Name: DnsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsclient/set-dnsclientnrptglobal?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/set-dnsclientnrptglobal?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsClientNrptGlobal --- diff --git a/docset/winserver2019-ps/dnsclient/Set-DnsClientNrptRule.md b/docset/winserver2019-ps/dnsclient/Set-DnsClientNrptRule.md index a516138795..f651870d6a 100644 --- a/docset/winserver2019-ps/dnsclient/Set-DnsClientNrptRule.md +++ b/docset/winserver2019-ps/dnsclient/Set-DnsClientNrptRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsClientNRPTRule_v1.0.0.cdxml-help.xml Module Name: DnsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsclient/set-dnsclientnrptrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/set-dnsclientnrptrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsClientNrptRule --- diff --git a/docset/winserver2019-ps/dnsclient/Set-DnsClientServerAddress.md b/docset/winserver2019-ps/dnsclient/Set-DnsClientServerAddress.md index 71edb1376e..86b750542e 100644 --- a/docset/winserver2019-ps/dnsclient/Set-DnsClientServerAddress.md +++ b/docset/winserver2019-ps/dnsclient/Set-DnsClientServerAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DnsClientServerAddress.cdxml-help.xml Module Name: DnsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsclient/set-dnsclientserveraddress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/set-dnsclientserveraddress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsClientServerAddress --- diff --git a/docset/winserver2019-ps/dnsserver/Add-DnsServerClientSubnet.md b/docset/winserver2019-ps/dnsserver/Add-DnsServerClientSubnet.md index 2c14c8bd65..5d31809bc5 100644 --- a/docset/winserver2019-ps/dnsserver/Add-DnsServerClientSubnet.md +++ b/docset/winserver2019-ps/dnsserver/Add-DnsServerClientSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerClientSubnet_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverclientsubnet?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverclientsubnet?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerClientSubnet --- diff --git a/docset/winserver2019-ps/dnsserver/Add-DnsServerConditionalForwarderZone.md b/docset/winserver2019-ps/dnsserver/Add-DnsServerConditionalForwarderZone.md index 0b42069f9f..8cdeb88efb 100644 --- a/docset/winserver2019-ps/dnsserver/Add-DnsServerConditionalForwarderZone.md +++ b/docset/winserver2019-ps/dnsserver/Add-DnsServerConditionalForwarderZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerConditionalForwarder_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverconditionalforwarderzone?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverconditionalforwarderzone?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerConditionalForwarderZone --- diff --git a/docset/winserver2019-ps/dnsserver/Add-DnsServerDirectoryPartition.md b/docset/winserver2019-ps/dnsserver/Add-DnsServerDirectoryPartition.md index 4cbabd4c7c..4d52968505 100644 --- a/docset/winserver2019-ps/dnsserver/Add-DnsServerDirectoryPartition.md +++ b/docset/winserver2019-ps/dnsserver/Add-DnsServerDirectoryPartition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerDirectoryPartition_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverdirectorypartition?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverdirectorypartition?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerDirectoryPartition --- diff --git a/docset/winserver2019-ps/dnsserver/Add-DnsServerForwarder.md b/docset/winserver2019-ps/dnsserver/Add-DnsServerForwarder.md index c9de0454b8..e5e7aa9e21 100644 --- a/docset/winserver2019-ps/dnsserver/Add-DnsServerForwarder.md +++ b/docset/winserver2019-ps/dnsserver/Add-DnsServerForwarder.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerForwarder_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverforwarder?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverforwarder?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerForwarder --- diff --git a/docset/winserver2019-ps/dnsserver/Add-DnsServerPrimaryZone.md b/docset/winserver2019-ps/dnsserver/Add-DnsServerPrimaryZone.md index 844ef07cca..43fe3c4db5 100644 --- a/docset/winserver2019-ps/dnsserver/Add-DnsServerPrimaryZone.md +++ b/docset/winserver2019-ps/dnsserver/Add-DnsServerPrimaryZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerPrimaryZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverprimaryzone?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverprimaryzone?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerPrimaryZone --- diff --git a/docset/winserver2019-ps/dnsserver/Add-DnsServerQueryResolutionPolicy.md b/docset/winserver2019-ps/dnsserver/Add-DnsServerQueryResolutionPolicy.md index 0e18327ef5..24864ad2d7 100644 --- a/docset/winserver2019-ps/dnsserver/Add-DnsServerQueryResolutionPolicy.md +++ b/docset/winserver2019-ps/dnsserver/Add-DnsServerQueryResolutionPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerQueryResolutionPolicy_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverqueryresolutionpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverqueryresolutionpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerQueryResolutionPolicy --- diff --git a/docset/winserver2019-ps/dnsserver/Add-DnsServerRecursionScope.md b/docset/winserver2019-ps/dnsserver/Add-DnsServerRecursionScope.md index 475d211e75..43ff2834d2 100644 --- a/docset/winserver2019-ps/dnsserver/Add-DnsServerRecursionScope.md +++ b/docset/winserver2019-ps/dnsserver/Add-DnsServerRecursionScope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerRecursionScope_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverrecursionscope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverrecursionscope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerRecursionScope --- diff --git a/docset/winserver2019-ps/dnsserver/Add-DnsServerResourceRecord.md b/docset/winserver2019-ps/dnsserver/Add-DnsServerResourceRecord.md index 913f10a12a..e02c36989d 100644 --- a/docset/winserver2019-ps/dnsserver/Add-DnsServerResourceRecord.md +++ b/docset/winserver2019-ps/dnsserver/Add-DnsServerResourceRecord.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResourceRecord_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecord?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecord?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerResourceRecord --- diff --git a/docset/winserver2019-ps/dnsserver/Add-DnsServerResourceRecordA.md b/docset/winserver2019-ps/dnsserver/Add-DnsServerResourceRecordA.md index 144dca249d..f5c058c3d1 100644 --- a/docset/winserver2019-ps/dnsserver/Add-DnsServerResourceRecordA.md +++ b/docset/winserver2019-ps/dnsserver/Add-DnsServerResourceRecordA.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResourceRecordA_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecorda?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecorda?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerResourceRecordA --- diff --git a/docset/winserver2019-ps/dnsserver/Add-DnsServerResourceRecordAAAA.md b/docset/winserver2019-ps/dnsserver/Add-DnsServerResourceRecordAAAA.md index 588a42d358..ca4c443d14 100644 --- a/docset/winserver2019-ps/dnsserver/Add-DnsServerResourceRecordAAAA.md +++ b/docset/winserver2019-ps/dnsserver/Add-DnsServerResourceRecordAAAA.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResourceRecordAAAA_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecordaaaa?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecordaaaa?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerResourceRecordAAAA --- diff --git a/docset/winserver2019-ps/dnsserver/Add-DnsServerResourceRecordCName.md b/docset/winserver2019-ps/dnsserver/Add-DnsServerResourceRecordCName.md index e895febef6..b41e35ff95 100644 --- a/docset/winserver2019-ps/dnsserver/Add-DnsServerResourceRecordCName.md +++ b/docset/winserver2019-ps/dnsserver/Add-DnsServerResourceRecordCName.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResourceRecordCNAME_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecordcname?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecordcname?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerResourceRecordCName --- diff --git a/docset/winserver2019-ps/dnsserver/Add-DnsServerResourceRecordDS.md b/docset/winserver2019-ps/dnsserver/Add-DnsServerResourceRecordDS.md index 556ec18c78..662870bc81 100644 --- a/docset/winserver2019-ps/dnsserver/Add-DnsServerResourceRecordDS.md +++ b/docset/winserver2019-ps/dnsserver/Add-DnsServerResourceRecordDS.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResourceRecordDS_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecordds?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecordds?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerResourceRecordDS --- diff --git a/docset/winserver2019-ps/dnsserver/Add-DnsServerResourceRecordDnsKey.md b/docset/winserver2019-ps/dnsserver/Add-DnsServerResourceRecordDnsKey.md index 6b5a671bf1..111157626d 100644 --- a/docset/winserver2019-ps/dnsserver/Add-DnsServerResourceRecordDnsKey.md +++ b/docset/winserver2019-ps/dnsserver/Add-DnsServerResourceRecordDnsKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResourceRecordDnsKey_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecorddnskey?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecorddnskey?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerResourceRecordDnsKey --- diff --git a/docset/winserver2019-ps/dnsserver/Add-DnsServerResourceRecordMX.md b/docset/winserver2019-ps/dnsserver/Add-DnsServerResourceRecordMX.md index aca5594ebc..32e50f72c4 100644 --- a/docset/winserver2019-ps/dnsserver/Add-DnsServerResourceRecordMX.md +++ b/docset/winserver2019-ps/dnsserver/Add-DnsServerResourceRecordMX.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResourceRecordMX_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecordmx?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecordmx?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerResourceRecordMX --- diff --git a/docset/winserver2019-ps/dnsserver/Add-DnsServerResourceRecordPtr.md b/docset/winserver2019-ps/dnsserver/Add-DnsServerResourceRecordPtr.md index 0b405d0518..f85e1f9a76 100644 --- a/docset/winserver2019-ps/dnsserver/Add-DnsServerResourceRecordPtr.md +++ b/docset/winserver2019-ps/dnsserver/Add-DnsServerResourceRecordPtr.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResourceRecordPTR_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecordptr?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecordptr?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerResourceRecordPtr --- diff --git a/docset/winserver2019-ps/dnsserver/Add-DnsServerResponseRateLimitingExceptionlist.md b/docset/winserver2019-ps/dnsserver/Add-DnsServerResponseRateLimitingExceptionlist.md index 20a79eaf38..7aadd40d7c 100644 --- a/docset/winserver2019-ps/dnsserver/Add-DnsServerResponseRateLimitingExceptionlist.md +++ b/docset/winserver2019-ps/dnsserver/Add-DnsServerResponseRateLimitingExceptionlist.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResponseRateLimitingExceptionlist_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverresponseratelimitingexceptionlist?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverresponseratelimitingexceptionlist?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerResponseRateLimitingExceptionlist --- diff --git a/docset/winserver2019-ps/dnsserver/Add-DnsServerRootHint.md b/docset/winserver2019-ps/dnsserver/Add-DnsServerRootHint.md index f24e62d3a8..4cdd4da5da 100644 --- a/docset/winserver2019-ps/dnsserver/Add-DnsServerRootHint.md +++ b/docset/winserver2019-ps/dnsserver/Add-DnsServerRootHint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerRootHint_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverroothint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverroothint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerRootHint --- diff --git a/docset/winserver2019-ps/dnsserver/Add-DnsServerSecondaryZone.md b/docset/winserver2019-ps/dnsserver/Add-DnsServerSecondaryZone.md index 9092f6014a..b5e7b739f1 100644 --- a/docset/winserver2019-ps/dnsserver/Add-DnsServerSecondaryZone.md +++ b/docset/winserver2019-ps/dnsserver/Add-DnsServerSecondaryZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerSecondaryZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserversecondaryzone?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserversecondaryzone?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerSecondaryZone --- diff --git a/docset/winserver2019-ps/dnsserver/Add-DnsServerSigningKey.md b/docset/winserver2019-ps/dnsserver/Add-DnsServerSigningKey.md index 7f083cbf3e..d176a863a9 100644 --- a/docset/winserver2019-ps/dnsserver/Add-DnsServerSigningKey.md +++ b/docset/winserver2019-ps/dnsserver/Add-DnsServerSigningKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerSigningKey_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserversigningkey?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserversigningkey?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerSigningKey --- diff --git a/docset/winserver2019-ps/dnsserver/Add-DnsServerStubZone.md b/docset/winserver2019-ps/dnsserver/Add-DnsServerStubZone.md index 06f75d88aa..74b2e017e7 100644 --- a/docset/winserver2019-ps/dnsserver/Add-DnsServerStubZone.md +++ b/docset/winserver2019-ps/dnsserver/Add-DnsServerStubZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerStubZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverstubzone?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverstubzone?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerStubZone --- diff --git a/docset/winserver2019-ps/dnsserver/Add-DnsServerTrustAnchor.md b/docset/winserver2019-ps/dnsserver/Add-DnsServerTrustAnchor.md index a9c882a538..e0ed60dd8d 100644 --- a/docset/winserver2019-ps/dnsserver/Add-DnsServerTrustAnchor.md +++ b/docset/winserver2019-ps/dnsserver/Add-DnsServerTrustAnchor.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerTrustAnchor_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsservertrustanchor?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsservertrustanchor?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerTrustAnchor --- diff --git a/docset/winserver2019-ps/dnsserver/Add-DnsServerVirtualizationInstance.md b/docset/winserver2019-ps/dnsserver/Add-DnsServerVirtualizationInstance.md index 895a6a1f84..d1c7b19f7b 100644 --- a/docset/winserver2019-ps/dnsserver/Add-DnsServerVirtualizationInstance.md +++ b/docset/winserver2019-ps/dnsserver/Add-DnsServerVirtualizationInstance.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerVirtualizationInstance_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsservervirtualizationinstance?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsservervirtualizationinstance?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerVirtualizationInstance --- diff --git a/docset/winserver2019-ps/dnsserver/Add-DnsServerZoneDelegation.md b/docset/winserver2019-ps/dnsserver/Add-DnsServerZoneDelegation.md index fe381512ab..04a48327da 100644 --- a/docset/winserver2019-ps/dnsserver/Add-DnsServerZoneDelegation.md +++ b/docset/winserver2019-ps/dnsserver/Add-DnsServerZoneDelegation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZoneDelegation_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverzonedelegation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverzonedelegation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerZoneDelegation --- diff --git a/docset/winserver2019-ps/dnsserver/Add-DnsServerZoneScope.md b/docset/winserver2019-ps/dnsserver/Add-DnsServerZoneScope.md index 74753db23f..0c35d3509c 100644 --- a/docset/winserver2019-ps/dnsserver/Add-DnsServerZoneScope.md +++ b/docset/winserver2019-ps/dnsserver/Add-DnsServerZoneScope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZoneScope_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverzonescope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverzonescope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerZoneScope --- diff --git a/docset/winserver2019-ps/dnsserver/Add-DnsServerZoneTransferPolicy.md b/docset/winserver2019-ps/dnsserver/Add-DnsServerZoneTransferPolicy.md index 0f57f1baad..d15af13f4d 100644 --- a/docset/winserver2019-ps/dnsserver/Add-DnsServerZoneTransferPolicy.md +++ b/docset/winserver2019-ps/dnsserver/Add-DnsServerZoneTransferPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZoneTransferPolicy_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverzonetransferpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverzonetransferpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerZoneTransferPolicy --- diff --git a/docset/winserver2019-ps/dnsserver/Clear-DnsServerCache.md b/docset/winserver2019-ps/dnsserver/Clear-DnsServerCache.md index a98a46d807..1573585439 100644 --- a/docset/winserver2019-ps/dnsserver/Clear-DnsServerCache.md +++ b/docset/winserver2019-ps/dnsserver/Clear-DnsServerCache.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerCache_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/clear-dnsservercache?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/clear-dnsservercache?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-DnsServerCache --- diff --git a/docset/winserver2019-ps/dnsserver/Clear-DnsServerStatistics.md b/docset/winserver2019-ps/dnsserver/Clear-DnsServerStatistics.md index cca5b39b6b..a3631aed27 100644 --- a/docset/winserver2019-ps/dnsserver/Clear-DnsServerStatistics.md +++ b/docset/winserver2019-ps/dnsserver/Clear-DnsServerStatistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerStatistics_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/clear-dnsserverstatistics?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/clear-dnsserverstatistics?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-DnsServerStatistics --- diff --git a/docset/winserver2019-ps/dnsserver/ConvertTo-DnsServerPrimaryZone.md b/docset/winserver2019-ps/dnsserver/ConvertTo-DnsServerPrimaryZone.md index d9cfa470b8..74cd6101e3 100644 --- a/docset/winserver2019-ps/dnsserver/ConvertTo-DnsServerPrimaryZone.md +++ b/docset/winserver2019-ps/dnsserver/ConvertTo-DnsServerPrimaryZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerPrimaryZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/convertto-dnsserverprimaryzone?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/convertto-dnsserverprimaryzone?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: ConvertTo-DnsServerPrimaryZone --- diff --git a/docset/winserver2019-ps/dnsserver/ConvertTo-DnsServerSecondaryZone.md b/docset/winserver2019-ps/dnsserver/ConvertTo-DnsServerSecondaryZone.md index c5a9a5bc77..aec6046847 100644 --- a/docset/winserver2019-ps/dnsserver/ConvertTo-DnsServerSecondaryZone.md +++ b/docset/winserver2019-ps/dnsserver/ConvertTo-DnsServerSecondaryZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerSecondaryZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/convertto-dnsserversecondaryzone?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/convertto-dnsserversecondaryzone?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: ConvertTo-DnsServerSecondaryZone --- diff --git a/docset/winserver2019-ps/dnsserver/Disable-DnsServerPolicy.md b/docset/winserver2019-ps/dnsserver/Disable-DnsServerPolicy.md index 6f1a3d4857..b9a2877558 100644 --- a/docset/winserver2019-ps/dnsserver/Disable-DnsServerPolicy.md +++ b/docset/winserver2019-ps/dnsserver/Disable-DnsServerPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerPolicy_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/disable-dnsserverpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/disable-dnsserverpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-DnsServerPolicy --- diff --git a/docset/winserver2019-ps/dnsserver/Disable-DnsServerSigningKeyRollover.md b/docset/winserver2019-ps/dnsserver/Disable-DnsServerSigningKeyRollover.md index c80057f6ea..464e86f444 100644 --- a/docset/winserver2019-ps/dnsserver/Disable-DnsServerSigningKeyRollover.md +++ b/docset/winserver2019-ps/dnsserver/Disable-DnsServerSigningKeyRollover.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerSigningKeyRollover_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/disable-dnsserversigningkeyrollover?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/disable-dnsserversigningkeyrollover?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-DnsServerSigningKeyRollover --- diff --git a/docset/winserver2019-ps/dnsserver/Enable-DnsServerPolicy.md b/docset/winserver2019-ps/dnsserver/Enable-DnsServerPolicy.md index eaa92bee5c..ab5a5d466d 100644 --- a/docset/winserver2019-ps/dnsserver/Enable-DnsServerPolicy.md +++ b/docset/winserver2019-ps/dnsserver/Enable-DnsServerPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerPolicy_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/enable-dnsserverpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/enable-dnsserverpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-DnsServerPolicy --- diff --git a/docset/winserver2019-ps/dnsserver/Enable-DnsServerSigningKeyRollover.md b/docset/winserver2019-ps/dnsserver/Enable-DnsServerSigningKeyRollover.md index 66244a2c72..8e57673874 100644 --- a/docset/winserver2019-ps/dnsserver/Enable-DnsServerSigningKeyRollover.md +++ b/docset/winserver2019-ps/dnsserver/Enable-DnsServerSigningKeyRollover.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerSigningKeyRollover_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/enable-dnsserversigningkeyrollover?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/enable-dnsserversigningkeyrollover?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-DnsServerSigningKeyRollover --- diff --git a/docset/winserver2019-ps/dnsserver/Export-DnsServerDnsSecPublicKey.md b/docset/winserver2019-ps/dnsserver/Export-DnsServerDnsSecPublicKey.md index cd22c6290b..bd6cd1aba3 100644 --- a/docset/winserver2019-ps/dnsserver/Export-DnsServerDnsSecPublicKey.md +++ b/docset/winserver2019-ps/dnsserver/Export-DnsServerDnsSecPublicKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerDnsSecPublicKey_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/export-dnsserverdnssecpublickey?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/export-dnsserverdnssecpublickey?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-DnsServerDnsSecPublicKey --- diff --git a/docset/winserver2019-ps/dnsserver/Export-DnsServerZone.md b/docset/winserver2019-ps/dnsserver/Export-DnsServerZone.md index 13a39b2a8f..30f227535d 100644 --- a/docset/winserver2019-ps/dnsserver/Export-DnsServerZone.md +++ b/docset/winserver2019-ps/dnsserver/Export-DnsServerZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/export-dnsserverzone?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/export-dnsserverzone?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-DnsServerZone --- diff --git a/docset/winserver2019-ps/dnsserver/Get-DnsServer.md b/docset/winserver2019-ps/dnsserver/Get-DnsServer.md index 1e75c71309..af64721b96 100644 --- a/docset/winserver2019-ps/dnsserver/Get-DnsServer.md +++ b/docset/winserver2019-ps/dnsserver/Get-DnsServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServer_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServer --- diff --git a/docset/winserver2019-ps/dnsserver/Get-DnsServerCache.md b/docset/winserver2019-ps/dnsserver/Get-DnsServerCache.md index 9c56ddc1f1..4e185b85a6 100644 --- a/docset/winserver2019-ps/dnsserver/Get-DnsServerCache.md +++ b/docset/winserver2019-ps/dnsserver/Get-DnsServerCache.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerCache_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsservercache?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsservercache?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerCache --- diff --git a/docset/winserver2019-ps/dnsserver/Get-DnsServerClientSubnet.md b/docset/winserver2019-ps/dnsserver/Get-DnsServerClientSubnet.md index 5cb712b144..e7d4f373c6 100644 --- a/docset/winserver2019-ps/dnsserver/Get-DnsServerClientSubnet.md +++ b/docset/winserver2019-ps/dnsserver/Get-DnsServerClientSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerClientSubnet_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverclientsubnet?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverclientsubnet?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerClientSubnet --- diff --git a/docset/winserver2019-ps/dnsserver/Get-DnsServerDiagnostics.md b/docset/winserver2019-ps/dnsserver/Get-DnsServerDiagnostics.md index bbe3b6ec1d..41c117ecc8 100644 --- a/docset/winserver2019-ps/dnsserver/Get-DnsServerDiagnostics.md +++ b/docset/winserver2019-ps/dnsserver/Get-DnsServerDiagnostics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerDiagnostics_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverdiagnostics?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverdiagnostics?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerDiagnostics --- diff --git a/docset/winserver2019-ps/dnsserver/Get-DnsServerDirectoryPartition.md b/docset/winserver2019-ps/dnsserver/Get-DnsServerDirectoryPartition.md index 7b4b03f785..6be1b73006 100644 --- a/docset/winserver2019-ps/dnsserver/Get-DnsServerDirectoryPartition.md +++ b/docset/winserver2019-ps/dnsserver/Get-DnsServerDirectoryPartition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerDirectoryPartition_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverdirectorypartition?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverdirectorypartition?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerDirectoryPartition --- diff --git a/docset/winserver2019-ps/dnsserver/Get-DnsServerDnsSecZoneSetting.md b/docset/winserver2019-ps/dnsserver/Get-DnsServerDnsSecZoneSetting.md index d5585cc7ac..851e13e625 100644 --- a/docset/winserver2019-ps/dnsserver/Get-DnsServerDnsSecZoneSetting.md +++ b/docset/winserver2019-ps/dnsserver/Get-DnsServerDnsSecZoneSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerDnsSecZoneSetting_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverdnsseczonesetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverdnsseczonesetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerDnsSecZoneSetting --- diff --git a/docset/winserver2019-ps/dnsserver/Get-DnsServerDsSetting.md b/docset/winserver2019-ps/dnsserver/Get-DnsServerDsSetting.md index b1ccca3d0e..187402fc4e 100644 --- a/docset/winserver2019-ps/dnsserver/Get-DnsServerDsSetting.md +++ b/docset/winserver2019-ps/dnsserver/Get-DnsServerDsSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerDsSetting_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverdssetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverdssetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerDsSetting --- diff --git a/docset/winserver2019-ps/dnsserver/Get-DnsServerEDns.md b/docset/winserver2019-ps/dnsserver/Get-DnsServerEDns.md index f55342e690..16159d9f09 100644 --- a/docset/winserver2019-ps/dnsserver/Get-DnsServerEDns.md +++ b/docset/winserver2019-ps/dnsserver/Get-DnsServerEDns.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerEdns_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserveredns?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserveredns?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerEDns --- diff --git a/docset/winserver2019-ps/dnsserver/Get-DnsServerForwarder.md b/docset/winserver2019-ps/dnsserver/Get-DnsServerForwarder.md index 2c7ca3021d..d99dc89bd7 100644 --- a/docset/winserver2019-ps/dnsserver/Get-DnsServerForwarder.md +++ b/docset/winserver2019-ps/dnsserver/Get-DnsServerForwarder.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerForwarder_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverforwarder?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverforwarder?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerForwarder --- diff --git a/docset/winserver2019-ps/dnsserver/Get-DnsServerGlobalNameZone.md b/docset/winserver2019-ps/dnsserver/Get-DnsServerGlobalNameZone.md index b2d96d8010..7860e0240d 100644 --- a/docset/winserver2019-ps/dnsserver/Get-DnsServerGlobalNameZone.md +++ b/docset/winserver2019-ps/dnsserver/Get-DnsServerGlobalNameZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerGlobalNameZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverglobalnamezone?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverglobalnamezone?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerGlobalNameZone --- diff --git a/docset/winserver2019-ps/dnsserver/Get-DnsServerGlobalQueryBlockList.md b/docset/winserver2019-ps/dnsserver/Get-DnsServerGlobalQueryBlockList.md index f28da2e535..49aad3bf31 100644 --- a/docset/winserver2019-ps/dnsserver/Get-DnsServerGlobalQueryBlockList.md +++ b/docset/winserver2019-ps/dnsserver/Get-DnsServerGlobalQueryBlockList.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerGlobalQueryBlockList_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverglobalqueryblocklist?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverglobalqueryblocklist?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerGlobalQueryBlockList --- diff --git a/docset/winserver2019-ps/dnsserver/Get-DnsServerQueryResolutionPolicy.md b/docset/winserver2019-ps/dnsserver/Get-DnsServerQueryResolutionPolicy.md index b987acac69..7de4335ba0 100644 --- a/docset/winserver2019-ps/dnsserver/Get-DnsServerQueryResolutionPolicy.md +++ b/docset/winserver2019-ps/dnsserver/Get-DnsServerQueryResolutionPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerQueryResolutionPolicy_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverqueryresolutionpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverqueryresolutionpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerQueryResolutionPolicy --- diff --git a/docset/winserver2019-ps/dnsserver/Get-DnsServerRecursion.md b/docset/winserver2019-ps/dnsserver/Get-DnsServerRecursion.md index f3e6ca641a..a95eb6e287 100644 --- a/docset/winserver2019-ps/dnsserver/Get-DnsServerRecursion.md +++ b/docset/winserver2019-ps/dnsserver/Get-DnsServerRecursion.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerRecursion_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverrecursion?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverrecursion?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerRecursion --- diff --git a/docset/winserver2019-ps/dnsserver/Get-DnsServerRecursionScope.md b/docset/winserver2019-ps/dnsserver/Get-DnsServerRecursionScope.md index 0758219e35..666e019ad0 100644 --- a/docset/winserver2019-ps/dnsserver/Get-DnsServerRecursionScope.md +++ b/docset/winserver2019-ps/dnsserver/Get-DnsServerRecursionScope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerRecursionScope_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverrecursionscope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverrecursionscope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerRecursionScope --- diff --git a/docset/winserver2019-ps/dnsserver/Get-DnsServerResourceRecord.md b/docset/winserver2019-ps/dnsserver/Get-DnsServerResourceRecord.md index e4f54c216e..47ea7c00a9 100644 --- a/docset/winserver2019-ps/dnsserver/Get-DnsServerResourceRecord.md +++ b/docset/winserver2019-ps/dnsserver/Get-DnsServerResourceRecord.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResourceRecord_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverresourcerecord?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverresourcerecord?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerResourceRecord --- diff --git a/docset/winserver2019-ps/dnsserver/Get-DnsServerResponseRateLimiting.md b/docset/winserver2019-ps/dnsserver/Get-DnsServerResponseRateLimiting.md index f50dbf7023..3224240c6a 100644 --- a/docset/winserver2019-ps/dnsserver/Get-DnsServerResponseRateLimiting.md +++ b/docset/winserver2019-ps/dnsserver/Get-DnsServerResponseRateLimiting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResponseRateLimiting_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverresponseratelimiting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverresponseratelimiting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerResponseRateLimiting --- diff --git a/docset/winserver2019-ps/dnsserver/Get-DnsServerResponseRateLimitingExceptionlist.md b/docset/winserver2019-ps/dnsserver/Get-DnsServerResponseRateLimitingExceptionlist.md index 83bae41e35..80fed0cee7 100644 --- a/docset/winserver2019-ps/dnsserver/Get-DnsServerResponseRateLimitingExceptionlist.md +++ b/docset/winserver2019-ps/dnsserver/Get-DnsServerResponseRateLimitingExceptionlist.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResponseRateLimitingExceptionlist_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverresponseratelimitingexceptionlist?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverresponseratelimitingexceptionlist?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerResponseRateLimitingExceptionlist --- diff --git a/docset/winserver2019-ps/dnsserver/Get-DnsServerRootHint.md b/docset/winserver2019-ps/dnsserver/Get-DnsServerRootHint.md index 2ba1b23f9f..ba7a2d9e9c 100644 --- a/docset/winserver2019-ps/dnsserver/Get-DnsServerRootHint.md +++ b/docset/winserver2019-ps/dnsserver/Get-DnsServerRootHint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerRootHint_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverroothint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverroothint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerRootHint --- diff --git a/docset/winserver2019-ps/dnsserver/Get-DnsServerScavenging.md b/docset/winserver2019-ps/dnsserver/Get-DnsServerScavenging.md index 5c5dab45ac..63210e6166 100644 --- a/docset/winserver2019-ps/dnsserver/Get-DnsServerScavenging.md +++ b/docset/winserver2019-ps/dnsserver/Get-DnsServerScavenging.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerScavenging_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverscavenging?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverscavenging?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerScavenging --- diff --git a/docset/winserver2019-ps/dnsserver/Get-DnsServerSetting.md b/docset/winserver2019-ps/dnsserver/Get-DnsServerSetting.md index 6e74766490..b3d6b4eb49 100644 --- a/docset/winserver2019-ps/dnsserver/Get-DnsServerSetting.md +++ b/docset/winserver2019-ps/dnsserver/Get-DnsServerSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerSetting_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserversetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserversetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerSetting --- diff --git a/docset/winserver2019-ps/dnsserver/Get-DnsServerSigningKey.md b/docset/winserver2019-ps/dnsserver/Get-DnsServerSigningKey.md index 211fc5544f..9deb8bce79 100644 --- a/docset/winserver2019-ps/dnsserver/Get-DnsServerSigningKey.md +++ b/docset/winserver2019-ps/dnsserver/Get-DnsServerSigningKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerSigningKey_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserversigningkey?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserversigningkey?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerSigningKey --- diff --git a/docset/winserver2019-ps/dnsserver/Get-DnsServerStatistics.md b/docset/winserver2019-ps/dnsserver/Get-DnsServerStatistics.md index d04ac82371..2a96c48323 100644 --- a/docset/winserver2019-ps/dnsserver/Get-DnsServerStatistics.md +++ b/docset/winserver2019-ps/dnsserver/Get-DnsServerStatistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerStatistics_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverstatistics?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverstatistics?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerStatistics --- diff --git a/docset/winserver2019-ps/dnsserver/Get-DnsServerTrustAnchor.md b/docset/winserver2019-ps/dnsserver/Get-DnsServerTrustAnchor.md index 9fb9700424..0bc91b73a6 100644 --- a/docset/winserver2019-ps/dnsserver/Get-DnsServerTrustAnchor.md +++ b/docset/winserver2019-ps/dnsserver/Get-DnsServerTrustAnchor.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerTrustAnchor_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsservertrustanchor?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsservertrustanchor?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerTrustAnchor --- diff --git a/docset/winserver2019-ps/dnsserver/Get-DnsServerTrustPoint.md b/docset/winserver2019-ps/dnsserver/Get-DnsServerTrustPoint.md index 7a7c817f38..86fc192783 100644 --- a/docset/winserver2019-ps/dnsserver/Get-DnsServerTrustPoint.md +++ b/docset/winserver2019-ps/dnsserver/Get-DnsServerTrustPoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerTrustPoint_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsservertrustpoint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsservertrustpoint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerTrustPoint --- diff --git a/docset/winserver2019-ps/dnsserver/Get-DnsServerVirtualizationInstance.md b/docset/winserver2019-ps/dnsserver/Get-DnsServerVirtualizationInstance.md index 5ad591b848..e0a66c752c 100644 --- a/docset/winserver2019-ps/dnsserver/Get-DnsServerVirtualizationInstance.md +++ b/docset/winserver2019-ps/dnsserver/Get-DnsServerVirtualizationInstance.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerVirtualizationInstance_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsservervirtualizationinstance?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsservervirtualizationinstance?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerVirtualizationInstance --- diff --git a/docset/winserver2019-ps/dnsserver/Get-DnsServerZone.md b/docset/winserver2019-ps/dnsserver/Get-DnsServerZone.md index 9b8441aaa4..90b77f04f8 100644 --- a/docset/winserver2019-ps/dnsserver/Get-DnsServerZone.md +++ b/docset/winserver2019-ps/dnsserver/Get-DnsServerZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverzone?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverzone?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerZone --- diff --git a/docset/winserver2019-ps/dnsserver/Get-DnsServerZoneAging.md b/docset/winserver2019-ps/dnsserver/Get-DnsServerZoneAging.md index 0a8499e1bf..609fadb471 100644 --- a/docset/winserver2019-ps/dnsserver/Get-DnsServerZoneAging.md +++ b/docset/winserver2019-ps/dnsserver/Get-DnsServerZoneAging.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZoneAging_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverzoneaging?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverzoneaging?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerZoneAging --- diff --git a/docset/winserver2019-ps/dnsserver/Get-DnsServerZoneDelegation.md b/docset/winserver2019-ps/dnsserver/Get-DnsServerZoneDelegation.md index 51d91ede2f..cb1ddb55ef 100644 --- a/docset/winserver2019-ps/dnsserver/Get-DnsServerZoneDelegation.md +++ b/docset/winserver2019-ps/dnsserver/Get-DnsServerZoneDelegation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZoneDelegation_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverzonedelegation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverzonedelegation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerZoneDelegation --- diff --git a/docset/winserver2019-ps/dnsserver/Get-DnsServerZoneScope.md b/docset/winserver2019-ps/dnsserver/Get-DnsServerZoneScope.md index 47697b3e3d..909025b071 100644 --- a/docset/winserver2019-ps/dnsserver/Get-DnsServerZoneScope.md +++ b/docset/winserver2019-ps/dnsserver/Get-DnsServerZoneScope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZoneScope_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverzonescope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverzonescope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerZoneScope --- diff --git a/docset/winserver2019-ps/dnsserver/Get-DnsServerZoneTransferPolicy.md b/docset/winserver2019-ps/dnsserver/Get-DnsServerZoneTransferPolicy.md index f3145165ac..6b2e3e1a17 100644 --- a/docset/winserver2019-ps/dnsserver/Get-DnsServerZoneTransferPolicy.md +++ b/docset/winserver2019-ps/dnsserver/Get-DnsServerZoneTransferPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZoneTransferPolicy_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverzonetransferpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverzonetransferpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerZoneTransferPolicy --- diff --git a/docset/winserver2019-ps/dnsserver/Import-DnsServerResourceRecordDS.md b/docset/winserver2019-ps/dnsserver/Import-DnsServerResourceRecordDS.md index 96680274d6..854010cd4b 100644 --- a/docset/winserver2019-ps/dnsserver/Import-DnsServerResourceRecordDS.md +++ b/docset/winserver2019-ps/dnsserver/Import-DnsServerResourceRecordDS.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResourceRecordDS_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/import-dnsserverresourcerecordds?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/import-dnsserverresourcerecordds?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-DnsServerResourceRecordDS --- diff --git a/docset/winserver2019-ps/dnsserver/Import-DnsServerRootHint.md b/docset/winserver2019-ps/dnsserver/Import-DnsServerRootHint.md index 242127a1b1..c91b9c2ba7 100644 --- a/docset/winserver2019-ps/dnsserver/Import-DnsServerRootHint.md +++ b/docset/winserver2019-ps/dnsserver/Import-DnsServerRootHint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerRootHint_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/import-dnsserverroothint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/import-dnsserverroothint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-DnsServerRootHint --- diff --git a/docset/winserver2019-ps/dnsserver/Import-DnsServerTrustAnchor.md b/docset/winserver2019-ps/dnsserver/Import-DnsServerTrustAnchor.md index be7844763e..2a25b6fec8 100644 --- a/docset/winserver2019-ps/dnsserver/Import-DnsServerTrustAnchor.md +++ b/docset/winserver2019-ps/dnsserver/Import-DnsServerTrustAnchor.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerTrustAnchor_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/import-dnsservertrustanchor?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/import-dnsservertrustanchor?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-DnsServerTrustAnchor --- diff --git a/docset/winserver2019-ps/dnsserver/Invoke-DnsServerSigningKeyRollover.md b/docset/winserver2019-ps/dnsserver/Invoke-DnsServerSigningKeyRollover.md index d2b73ba63f..4d36607cb4 100644 --- a/docset/winserver2019-ps/dnsserver/Invoke-DnsServerSigningKeyRollover.md +++ b/docset/winserver2019-ps/dnsserver/Invoke-DnsServerSigningKeyRollover.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerSigningKeyRollover_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/invoke-dnsserversigningkeyrollover?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/invoke-dnsserversigningkeyrollover?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-DnsServerSigningKeyRollover --- diff --git a/docset/winserver2019-ps/dnsserver/Invoke-DnsServerZoneSign.md b/docset/winserver2019-ps/dnsserver/Invoke-DnsServerZoneSign.md index dd6208b2da..edde43803d 100644 --- a/docset/winserver2019-ps/dnsserver/Invoke-DnsServerZoneSign.md +++ b/docset/winserver2019-ps/dnsserver/Invoke-DnsServerZoneSign.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZoneSign_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/invoke-dnsserverzonesign?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/invoke-dnsserverzonesign?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-DnsServerZoneSign --- diff --git a/docset/winserver2019-ps/dnsserver/Invoke-DnsServerZoneUnsign.md b/docset/winserver2019-ps/dnsserver/Invoke-DnsServerZoneUnsign.md index 6db1eedb40..c569aed5ba 100644 --- a/docset/winserver2019-ps/dnsserver/Invoke-DnsServerZoneUnsign.md +++ b/docset/winserver2019-ps/dnsserver/Invoke-DnsServerZoneUnsign.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZoneUnsign_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/invoke-dnsserverzoneunsign?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/invoke-dnsserverzoneunsign?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-DnsServerZoneUnsign --- diff --git a/docset/winserver2019-ps/dnsserver/Register-DnsServerDirectoryPartition.md b/docset/winserver2019-ps/dnsserver/Register-DnsServerDirectoryPartition.md index 16a5c98701..3f050765a0 100644 --- a/docset/winserver2019-ps/dnsserver/Register-DnsServerDirectoryPartition.md +++ b/docset/winserver2019-ps/dnsserver/Register-DnsServerDirectoryPartition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerDirectoryPartition_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/register-dnsserverdirectorypartition?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/register-dnsserverdirectorypartition?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Register-DnsServerDirectoryPartition --- diff --git a/docset/winserver2019-ps/dnsserver/Remove-DnsServerClientSubnet.md b/docset/winserver2019-ps/dnsserver/Remove-DnsServerClientSubnet.md index 7179c26074..332d3c0a92 100644 --- a/docset/winserver2019-ps/dnsserver/Remove-DnsServerClientSubnet.md +++ b/docset/winserver2019-ps/dnsserver/Remove-DnsServerClientSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerClientSubnet_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsserverclientsubnet?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsserverclientsubnet?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsServerClientSubnet --- diff --git a/docset/winserver2019-ps/dnsserver/Remove-DnsServerDirectoryPartition.md b/docset/winserver2019-ps/dnsserver/Remove-DnsServerDirectoryPartition.md index e5ff2f4aec..a8bd351f58 100644 --- a/docset/winserver2019-ps/dnsserver/Remove-DnsServerDirectoryPartition.md +++ b/docset/winserver2019-ps/dnsserver/Remove-DnsServerDirectoryPartition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerDirectoryPartition_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsserverdirectorypartition?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsserverdirectorypartition?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsServerDirectoryPartition --- diff --git a/docset/winserver2019-ps/dnsserver/Remove-DnsServerForwarder.md b/docset/winserver2019-ps/dnsserver/Remove-DnsServerForwarder.md index 75108ce11d..5a54fdb954 100644 --- a/docset/winserver2019-ps/dnsserver/Remove-DnsServerForwarder.md +++ b/docset/winserver2019-ps/dnsserver/Remove-DnsServerForwarder.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerForwarder_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsserverforwarder?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsserverforwarder?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsServerForwarder --- diff --git a/docset/winserver2019-ps/dnsserver/Remove-DnsServerQueryResolutionPolicy.md b/docset/winserver2019-ps/dnsserver/Remove-DnsServerQueryResolutionPolicy.md index ff1a9d7f9f..45e3306452 100644 --- a/docset/winserver2019-ps/dnsserver/Remove-DnsServerQueryResolutionPolicy.md +++ b/docset/winserver2019-ps/dnsserver/Remove-DnsServerQueryResolutionPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerQueryResolutionPolicy_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsserverqueryresolutionpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsserverqueryresolutionpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsServerQueryResolutionPolicy --- diff --git a/docset/winserver2019-ps/dnsserver/Remove-DnsServerRecursionScope.md b/docset/winserver2019-ps/dnsserver/Remove-DnsServerRecursionScope.md index 388c225aed..ad89e6ac03 100644 --- a/docset/winserver2019-ps/dnsserver/Remove-DnsServerRecursionScope.md +++ b/docset/winserver2019-ps/dnsserver/Remove-DnsServerRecursionScope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerRecursionScope_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsserverrecursionscope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsserverrecursionscope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsServerRecursionScope --- diff --git a/docset/winserver2019-ps/dnsserver/Remove-DnsServerResourceRecord.md b/docset/winserver2019-ps/dnsserver/Remove-DnsServerResourceRecord.md index 679b908572..93066bcef6 100644 --- a/docset/winserver2019-ps/dnsserver/Remove-DnsServerResourceRecord.md +++ b/docset/winserver2019-ps/dnsserver/Remove-DnsServerResourceRecord.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResourceRecord_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsserverresourcerecord?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsserverresourcerecord?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsServerResourceRecord --- diff --git a/docset/winserver2019-ps/dnsserver/Remove-DnsServerResponseRateLimitingExceptionlist.md b/docset/winserver2019-ps/dnsserver/Remove-DnsServerResponseRateLimitingExceptionlist.md index abec7cbfed..cd59fc9273 100644 --- a/docset/winserver2019-ps/dnsserver/Remove-DnsServerResponseRateLimitingExceptionlist.md +++ b/docset/winserver2019-ps/dnsserver/Remove-DnsServerResponseRateLimitingExceptionlist.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResponseRateLimitingExceptionlist_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsserverresponseratelimitingexceptionlist?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsserverresponseratelimitingexceptionlist?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsServerResponseRateLimitingExceptionlist --- diff --git a/docset/winserver2019-ps/dnsserver/Remove-DnsServerRootHint.md b/docset/winserver2019-ps/dnsserver/Remove-DnsServerRootHint.md index eca5ab5fd9..57675bf55b 100644 --- a/docset/winserver2019-ps/dnsserver/Remove-DnsServerRootHint.md +++ b/docset/winserver2019-ps/dnsserver/Remove-DnsServerRootHint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerRootHint_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsserverroothint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsserverroothint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsServerRootHint --- diff --git a/docset/winserver2019-ps/dnsserver/Remove-DnsServerSigningKey.md b/docset/winserver2019-ps/dnsserver/Remove-DnsServerSigningKey.md index 7461594a9c..eacbcbc4a9 100644 --- a/docset/winserver2019-ps/dnsserver/Remove-DnsServerSigningKey.md +++ b/docset/winserver2019-ps/dnsserver/Remove-DnsServerSigningKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerSigningKey_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsserversigningkey?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsserversigningkey?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsServerSigningKey --- diff --git a/docset/winserver2019-ps/dnsserver/Remove-DnsServerTrustAnchor.md b/docset/winserver2019-ps/dnsserver/Remove-DnsServerTrustAnchor.md index 3d1d3c74d2..c34def82a2 100644 --- a/docset/winserver2019-ps/dnsserver/Remove-DnsServerTrustAnchor.md +++ b/docset/winserver2019-ps/dnsserver/Remove-DnsServerTrustAnchor.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerTrustAnchor_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsservertrustanchor?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsservertrustanchor?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsServerTrustAnchor --- diff --git a/docset/winserver2019-ps/dnsserver/Remove-DnsServerVirtualizationInstance.md b/docset/winserver2019-ps/dnsserver/Remove-DnsServerVirtualizationInstance.md index acdcdf5396..27fdc2d65b 100644 --- a/docset/winserver2019-ps/dnsserver/Remove-DnsServerVirtualizationInstance.md +++ b/docset/winserver2019-ps/dnsserver/Remove-DnsServerVirtualizationInstance.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerVirtualizationInstance_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsservervirtualizationinstance?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsservervirtualizationinstance?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsServerVirtualizationInstance --- diff --git a/docset/winserver2019-ps/dnsserver/Remove-DnsServerZone.md b/docset/winserver2019-ps/dnsserver/Remove-DnsServerZone.md index 4bf0a4bf9c..61456b6878 100644 --- a/docset/winserver2019-ps/dnsserver/Remove-DnsServerZone.md +++ b/docset/winserver2019-ps/dnsserver/Remove-DnsServerZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsserverzone?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsserverzone?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsServerZone --- diff --git a/docset/winserver2019-ps/dnsserver/Remove-DnsServerZoneDelegation.md b/docset/winserver2019-ps/dnsserver/Remove-DnsServerZoneDelegation.md index b6f5c5d303..2e8b55c501 100644 --- a/docset/winserver2019-ps/dnsserver/Remove-DnsServerZoneDelegation.md +++ b/docset/winserver2019-ps/dnsserver/Remove-DnsServerZoneDelegation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZoneDelegation_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsserverzonedelegation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsserverzonedelegation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsServerZoneDelegation --- diff --git a/docset/winserver2019-ps/dnsserver/Remove-DnsServerZoneScope.md b/docset/winserver2019-ps/dnsserver/Remove-DnsServerZoneScope.md index d5bc5b6dab..1d6b53c366 100644 --- a/docset/winserver2019-ps/dnsserver/Remove-DnsServerZoneScope.md +++ b/docset/winserver2019-ps/dnsserver/Remove-DnsServerZoneScope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZoneScope_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsserverzonescope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsserverzonescope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsServerZoneScope --- diff --git a/docset/winserver2019-ps/dnsserver/Remove-DnsServerZoneTransferPolicy.md b/docset/winserver2019-ps/dnsserver/Remove-DnsServerZoneTransferPolicy.md index b399efb374..35c13b20bb 100644 --- a/docset/winserver2019-ps/dnsserver/Remove-DnsServerZoneTransferPolicy.md +++ b/docset/winserver2019-ps/dnsserver/Remove-DnsServerZoneTransferPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZoneTransferPolicy_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsserverzonetransferpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsserverzonetransferpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsServerZoneTransferPolicy --- diff --git a/docset/winserver2019-ps/dnsserver/Reset-DnsServerZoneKeyMasterRole.md b/docset/winserver2019-ps/dnsserver/Reset-DnsServerZoneKeyMasterRole.md index 2a66be9612..fd2872a280 100644 --- a/docset/winserver2019-ps/dnsserver/Reset-DnsServerZoneKeyMasterRole.md +++ b/docset/winserver2019-ps/dnsserver/Reset-DnsServerZoneKeyMasterRole.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZoneKeyMasterRole_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/reset-dnsserverzonekeymasterrole?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/reset-dnsserverzonekeymasterrole?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-DnsServerZoneKeyMasterRole --- diff --git a/docset/winserver2019-ps/dnsserver/Restore-DnsServerPrimaryZone.md b/docset/winserver2019-ps/dnsserver/Restore-DnsServerPrimaryZone.md index 1a48d45eb6..a65825b2bd 100644 --- a/docset/winserver2019-ps/dnsserver/Restore-DnsServerPrimaryZone.md +++ b/docset/winserver2019-ps/dnsserver/Restore-DnsServerPrimaryZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerPrimaryZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/restore-dnsserverprimaryzone?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/restore-dnsserverprimaryzone?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-DnsServerPrimaryZone --- diff --git a/docset/winserver2019-ps/dnsserver/Restore-DnsServerSecondaryZone.md b/docset/winserver2019-ps/dnsserver/Restore-DnsServerSecondaryZone.md index d23423bd4a..67cc55aee1 100644 --- a/docset/winserver2019-ps/dnsserver/Restore-DnsServerSecondaryZone.md +++ b/docset/winserver2019-ps/dnsserver/Restore-DnsServerSecondaryZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerSecondaryZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/restore-dnsserversecondaryzone?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/restore-dnsserversecondaryzone?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-DnsServerSecondaryZone --- diff --git a/docset/winserver2019-ps/dnsserver/Resume-DnsServerZone.md b/docset/winserver2019-ps/dnsserver/Resume-DnsServerZone.md index 9b8122f60a..e878088995 100644 --- a/docset/winserver2019-ps/dnsserver/Resume-DnsServerZone.md +++ b/docset/winserver2019-ps/dnsserver/Resume-DnsServerZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/resume-dnsserverzone?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/resume-dnsserverzone?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-DnsServerZone --- diff --git a/docset/winserver2019-ps/dnsserver/Set-DnsServer.md b/docset/winserver2019-ps/dnsserver/Set-DnsServer.md index 1c048b867d..8bdae71f2a 100644 --- a/docset/winserver2019-ps/dnsserver/Set-DnsServer.md +++ b/docset/winserver2019-ps/dnsserver/Set-DnsServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServer_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServer --- diff --git a/docset/winserver2019-ps/dnsserver/Set-DnsServerCache.md b/docset/winserver2019-ps/dnsserver/Set-DnsServerCache.md index 0c92712811..74d3f34101 100644 --- a/docset/winserver2019-ps/dnsserver/Set-DnsServerCache.md +++ b/docset/winserver2019-ps/dnsserver/Set-DnsServerCache.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerCache_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsservercache?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsservercache?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerCache --- diff --git a/docset/winserver2019-ps/dnsserver/Set-DnsServerClientSubnet.md b/docset/winserver2019-ps/dnsserver/Set-DnsServerClientSubnet.md index 6856f550e5..5d166ddd31 100644 --- a/docset/winserver2019-ps/dnsserver/Set-DnsServerClientSubnet.md +++ b/docset/winserver2019-ps/dnsserver/Set-DnsServerClientSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerClientSubnet_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverclientsubnet?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverclientsubnet?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerClientSubnet --- diff --git a/docset/winserver2019-ps/dnsserver/Set-DnsServerConditionalForwarderZone.md b/docset/winserver2019-ps/dnsserver/Set-DnsServerConditionalForwarderZone.md index 8bbafb3daf..c9403554a3 100644 --- a/docset/winserver2019-ps/dnsserver/Set-DnsServerConditionalForwarderZone.md +++ b/docset/winserver2019-ps/dnsserver/Set-DnsServerConditionalForwarderZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerConditionalForwarder_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverconditionalforwarderzone?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverconditionalforwarderzone?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerConditionalForwarderZone --- diff --git a/docset/winserver2019-ps/dnsserver/Set-DnsServerDiagnostics.md b/docset/winserver2019-ps/dnsserver/Set-DnsServerDiagnostics.md index 2aa97cd642..45d09a55cc 100644 --- a/docset/winserver2019-ps/dnsserver/Set-DnsServerDiagnostics.md +++ b/docset/winserver2019-ps/dnsserver/Set-DnsServerDiagnostics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerDiagnostics_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverdiagnostics?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverdiagnostics?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerDiagnostics --- diff --git a/docset/winserver2019-ps/dnsserver/Set-DnsServerDnsSecZoneSetting.md b/docset/winserver2019-ps/dnsserver/Set-DnsServerDnsSecZoneSetting.md index 6805381a7a..dcdfcea99c 100644 --- a/docset/winserver2019-ps/dnsserver/Set-DnsServerDnsSecZoneSetting.md +++ b/docset/winserver2019-ps/dnsserver/Set-DnsServerDnsSecZoneSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerDnsSecZoneSetting_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverdnsseczonesetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverdnsseczonesetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerDnsSecZoneSetting --- diff --git a/docset/winserver2019-ps/dnsserver/Set-DnsServerDsSetting.md b/docset/winserver2019-ps/dnsserver/Set-DnsServerDsSetting.md index 4e8f0cfb43..03c5839d8b 100644 --- a/docset/winserver2019-ps/dnsserver/Set-DnsServerDsSetting.md +++ b/docset/winserver2019-ps/dnsserver/Set-DnsServerDsSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerDsSetting_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverdssetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverdssetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerDsSetting --- diff --git a/docset/winserver2019-ps/dnsserver/Set-DnsServerEDns.md b/docset/winserver2019-ps/dnsserver/Set-DnsServerEDns.md index 46839b8195..762a653742 100644 --- a/docset/winserver2019-ps/dnsserver/Set-DnsServerEDns.md +++ b/docset/winserver2019-ps/dnsserver/Set-DnsServerEDns.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerEdns_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserveredns?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserveredns?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerEDns --- diff --git a/docset/winserver2019-ps/dnsserver/Set-DnsServerForwarder.md b/docset/winserver2019-ps/dnsserver/Set-DnsServerForwarder.md index 062a98039d..eeaccc6c2c 100644 --- a/docset/winserver2019-ps/dnsserver/Set-DnsServerForwarder.md +++ b/docset/winserver2019-ps/dnsserver/Set-DnsServerForwarder.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerForwarder_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverforwarder?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverforwarder?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerForwarder --- diff --git a/docset/winserver2019-ps/dnsserver/Set-DnsServerGlobalNameZone.md b/docset/winserver2019-ps/dnsserver/Set-DnsServerGlobalNameZone.md index 25f585dd44..295e3bd6bd 100644 --- a/docset/winserver2019-ps/dnsserver/Set-DnsServerGlobalNameZone.md +++ b/docset/winserver2019-ps/dnsserver/Set-DnsServerGlobalNameZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerGlobalNameZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverglobalnamezone?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverglobalnamezone?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerGlobalNameZone --- diff --git a/docset/winserver2019-ps/dnsserver/Set-DnsServerGlobalQueryBlockList.md b/docset/winserver2019-ps/dnsserver/Set-DnsServerGlobalQueryBlockList.md index e1a605df96..1c6542b23b 100644 --- a/docset/winserver2019-ps/dnsserver/Set-DnsServerGlobalQueryBlockList.md +++ b/docset/winserver2019-ps/dnsserver/Set-DnsServerGlobalQueryBlockList.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerGlobalQueryBlockList_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverglobalqueryblocklist?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverglobalqueryblocklist?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerGlobalQueryBlockList --- diff --git a/docset/winserver2019-ps/dnsserver/Set-DnsServerPrimaryZone.md b/docset/winserver2019-ps/dnsserver/Set-DnsServerPrimaryZone.md index 709479d6a0..88c9cb9d8f 100644 --- a/docset/winserver2019-ps/dnsserver/Set-DnsServerPrimaryZone.md +++ b/docset/winserver2019-ps/dnsserver/Set-DnsServerPrimaryZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerPrimaryZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverprimaryzone?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverprimaryzone?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerPrimaryZone --- diff --git a/docset/winserver2019-ps/dnsserver/Set-DnsServerQueryResolutionPolicy.md b/docset/winserver2019-ps/dnsserver/Set-DnsServerQueryResolutionPolicy.md index e389758c67..08150e283b 100644 --- a/docset/winserver2019-ps/dnsserver/Set-DnsServerQueryResolutionPolicy.md +++ b/docset/winserver2019-ps/dnsserver/Set-DnsServerQueryResolutionPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerQueryResolutionPolicy_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverqueryresolutionpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverqueryresolutionpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerQueryResolutionPolicy --- diff --git a/docset/winserver2019-ps/dnsserver/Set-DnsServerRecursion.md b/docset/winserver2019-ps/dnsserver/Set-DnsServerRecursion.md index c8e83bcb59..52d436d005 100644 --- a/docset/winserver2019-ps/dnsserver/Set-DnsServerRecursion.md +++ b/docset/winserver2019-ps/dnsserver/Set-DnsServerRecursion.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerRecursion_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverrecursion?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverrecursion?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerRecursion --- diff --git a/docset/winserver2019-ps/dnsserver/Set-DnsServerRecursionScope.md b/docset/winserver2019-ps/dnsserver/Set-DnsServerRecursionScope.md index ad55fa448a..0ef5004a5f 100644 --- a/docset/winserver2019-ps/dnsserver/Set-DnsServerRecursionScope.md +++ b/docset/winserver2019-ps/dnsserver/Set-DnsServerRecursionScope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerRecursionScope_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverrecursionscope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverrecursionscope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerRecursionScope --- diff --git a/docset/winserver2019-ps/dnsserver/Set-DnsServerResourceRecord.md b/docset/winserver2019-ps/dnsserver/Set-DnsServerResourceRecord.md index 3640c276b9..902c16b806 100644 --- a/docset/winserver2019-ps/dnsserver/Set-DnsServerResourceRecord.md +++ b/docset/winserver2019-ps/dnsserver/Set-DnsServerResourceRecord.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResourceRecord_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverresourcerecord?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverresourcerecord?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerResourceRecord --- diff --git a/docset/winserver2019-ps/dnsserver/Set-DnsServerResourceRecordAging.md b/docset/winserver2019-ps/dnsserver/Set-DnsServerResourceRecordAging.md index b160c6fe09..47c36a2422 100644 --- a/docset/winserver2019-ps/dnsserver/Set-DnsServerResourceRecordAging.md +++ b/docset/winserver2019-ps/dnsserver/Set-DnsServerResourceRecordAging.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResourceRecordAging_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverresourcerecordaging?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverresourcerecordaging?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerResourceRecordAging --- diff --git a/docset/winserver2019-ps/dnsserver/Set-DnsServerResponseRateLimiting.md b/docset/winserver2019-ps/dnsserver/Set-DnsServerResponseRateLimiting.md index 26c3b6b026..564e0be03c 100644 --- a/docset/winserver2019-ps/dnsserver/Set-DnsServerResponseRateLimiting.md +++ b/docset/winserver2019-ps/dnsserver/Set-DnsServerResponseRateLimiting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResponseRateLimiting_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverresponseratelimiting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverresponseratelimiting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerResponseRateLimiting --- diff --git a/docset/winserver2019-ps/dnsserver/Set-DnsServerResponseRateLimitingExceptionlist.md b/docset/winserver2019-ps/dnsserver/Set-DnsServerResponseRateLimitingExceptionlist.md index 72873c7bfd..015c3d74a6 100644 --- a/docset/winserver2019-ps/dnsserver/Set-DnsServerResponseRateLimitingExceptionlist.md +++ b/docset/winserver2019-ps/dnsserver/Set-DnsServerResponseRateLimitingExceptionlist.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResponseRateLimitingExceptionlist_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverresponseratelimitingexceptionlist?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverresponseratelimitingexceptionlist?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerResponseRateLimitingExceptionlist --- diff --git a/docset/winserver2019-ps/dnsserver/Set-DnsServerRootHint.md b/docset/winserver2019-ps/dnsserver/Set-DnsServerRootHint.md index ac43eb49ed..8482fa45ef 100644 --- a/docset/winserver2019-ps/dnsserver/Set-DnsServerRootHint.md +++ b/docset/winserver2019-ps/dnsserver/Set-DnsServerRootHint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerRootHint_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverroothint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverroothint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerRootHint --- diff --git a/docset/winserver2019-ps/dnsserver/Set-DnsServerScavenging.md b/docset/winserver2019-ps/dnsserver/Set-DnsServerScavenging.md index decc162ccd..fbb0a57f76 100644 --- a/docset/winserver2019-ps/dnsserver/Set-DnsServerScavenging.md +++ b/docset/winserver2019-ps/dnsserver/Set-DnsServerScavenging.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerScavenging_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverscavenging?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverscavenging?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerScavenging --- diff --git a/docset/winserver2019-ps/dnsserver/Set-DnsServerSecondaryZone.md b/docset/winserver2019-ps/dnsserver/Set-DnsServerSecondaryZone.md index e70c536844..cabf5ca5b7 100644 --- a/docset/winserver2019-ps/dnsserver/Set-DnsServerSecondaryZone.md +++ b/docset/winserver2019-ps/dnsserver/Set-DnsServerSecondaryZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerSecondaryZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserversecondaryzone?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserversecondaryzone?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerSecondaryZone --- diff --git a/docset/winserver2019-ps/dnsserver/Set-DnsServerSetting.md b/docset/winserver2019-ps/dnsserver/Set-DnsServerSetting.md index 205f61d62e..5051395862 100644 --- a/docset/winserver2019-ps/dnsserver/Set-DnsServerSetting.md +++ b/docset/winserver2019-ps/dnsserver/Set-DnsServerSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerSetting_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserversetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserversetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerSetting --- diff --git a/docset/winserver2019-ps/dnsserver/Set-DnsServerSigningKey.md b/docset/winserver2019-ps/dnsserver/Set-DnsServerSigningKey.md index 91370c115a..f5082b6212 100644 --- a/docset/winserver2019-ps/dnsserver/Set-DnsServerSigningKey.md +++ b/docset/winserver2019-ps/dnsserver/Set-DnsServerSigningKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerSigningKey_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserversigningkey?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserversigningkey?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerSigningKey --- diff --git a/docset/winserver2019-ps/dnsserver/Set-DnsServerStubZone.md b/docset/winserver2019-ps/dnsserver/Set-DnsServerStubZone.md index ccb0007d86..613fff326c 100644 --- a/docset/winserver2019-ps/dnsserver/Set-DnsServerStubZone.md +++ b/docset/winserver2019-ps/dnsserver/Set-DnsServerStubZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerStubZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverstubzone?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverstubzone?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerStubZone --- diff --git a/docset/winserver2019-ps/dnsserver/Set-DnsServerVirtualizationInstance.md b/docset/winserver2019-ps/dnsserver/Set-DnsServerVirtualizationInstance.md index ff13545bc6..f7543a29e2 100644 --- a/docset/winserver2019-ps/dnsserver/Set-DnsServerVirtualizationInstance.md +++ b/docset/winserver2019-ps/dnsserver/Set-DnsServerVirtualizationInstance.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerVirtualizationInstance_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsservervirtualizationinstance?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsservervirtualizationinstance?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerVirtualizationInstance --- diff --git a/docset/winserver2019-ps/dnsserver/Set-DnsServerZoneAging.md b/docset/winserver2019-ps/dnsserver/Set-DnsServerZoneAging.md index 7dde4ebda8..51c13aa65a 100644 --- a/docset/winserver2019-ps/dnsserver/Set-DnsServerZoneAging.md +++ b/docset/winserver2019-ps/dnsserver/Set-DnsServerZoneAging.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZoneAging_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverzoneaging?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverzoneaging?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerZoneAging --- diff --git a/docset/winserver2019-ps/dnsserver/Set-DnsServerZoneDelegation.md b/docset/winserver2019-ps/dnsserver/Set-DnsServerZoneDelegation.md index 6f6b2943c8..a9b10fd9ab 100644 --- a/docset/winserver2019-ps/dnsserver/Set-DnsServerZoneDelegation.md +++ b/docset/winserver2019-ps/dnsserver/Set-DnsServerZoneDelegation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZoneDelegation_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverzonedelegation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverzonedelegation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerZoneDelegation --- diff --git a/docset/winserver2019-ps/dnsserver/Set-DnsServerZoneTransferPolicy.md b/docset/winserver2019-ps/dnsserver/Set-DnsServerZoneTransferPolicy.md index 40abb0f186..9dfe432584 100644 --- a/docset/winserver2019-ps/dnsserver/Set-DnsServerZoneTransferPolicy.md +++ b/docset/winserver2019-ps/dnsserver/Set-DnsServerZoneTransferPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZoneTransferPolicy_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverzonetransferpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverzonetransferpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerZoneTransferPolicy --- diff --git a/docset/winserver2019-ps/dnsserver/Show-DnsServerCache.md b/docset/winserver2019-ps/dnsserver/Show-DnsServerCache.md index 818d98bbb3..70fdb477dd 100644 --- a/docset/winserver2019-ps/dnsserver/Show-DnsServerCache.md +++ b/docset/winserver2019-ps/dnsserver/Show-DnsServerCache.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerCache_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/show-dnsservercache?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/show-dnsservercache?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Show-DnsServerCache --- diff --git a/docset/winserver2019-ps/dnsserver/Show-DnsServerKeyStorageProvider.md b/docset/winserver2019-ps/dnsserver/Show-DnsServerKeyStorageProvider.md index c044098f74..f86e633328 100644 --- a/docset/winserver2019-ps/dnsserver/Show-DnsServerKeyStorageProvider.md +++ b/docset/winserver2019-ps/dnsserver/Show-DnsServerKeyStorageProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerKeyStorageProvider_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/show-dnsserverkeystorageprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/show-dnsserverkeystorageprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Show-DnsServerKeyStorageProvider --- diff --git a/docset/winserver2019-ps/dnsserver/Start-DnsServerScavenging.md b/docset/winserver2019-ps/dnsserver/Start-DnsServerScavenging.md index 2d6e3ec270..c13ef3e51f 100644 --- a/docset/winserver2019-ps/dnsserver/Start-DnsServerScavenging.md +++ b/docset/winserver2019-ps/dnsserver/Start-DnsServerScavenging.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerScavenging_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/start-dnsserverscavenging?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/start-dnsserverscavenging?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-DnsServerScavenging --- diff --git a/docset/winserver2019-ps/dnsserver/Start-DnsServerZoneTransfer.md b/docset/winserver2019-ps/dnsserver/Start-DnsServerZoneTransfer.md index 2b8e3e07d8..ef85238029 100644 --- a/docset/winserver2019-ps/dnsserver/Start-DnsServerZoneTransfer.md +++ b/docset/winserver2019-ps/dnsserver/Start-DnsServerZoneTransfer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZoneTransfer_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/start-dnsserverzonetransfer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/start-dnsserverzonetransfer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-DnsServerZoneTransfer --- diff --git a/docset/winserver2019-ps/dnsserver/Step-DnsServerSigningKeyRollover.md b/docset/winserver2019-ps/dnsserver/Step-DnsServerSigningKeyRollover.md index 5aa691d8d4..9ac5023e97 100644 --- a/docset/winserver2019-ps/dnsserver/Step-DnsServerSigningKeyRollover.md +++ b/docset/winserver2019-ps/dnsserver/Step-DnsServerSigningKeyRollover.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerSigningKeyRollover_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/step-dnsserversigningkeyrollover?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/step-dnsserversigningkeyrollover?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Step-DnsServerSigningKeyRollover --- diff --git a/docset/winserver2019-ps/dnsserver/Suspend-DnsServerZone.md b/docset/winserver2019-ps/dnsserver/Suspend-DnsServerZone.md index cadbc46444..58b57878ca 100644 --- a/docset/winserver2019-ps/dnsserver/Suspend-DnsServerZone.md +++ b/docset/winserver2019-ps/dnsserver/Suspend-DnsServerZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/suspend-dnsserverzone?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/suspend-dnsserverzone?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-DnsServerZone --- diff --git a/docset/winserver2019-ps/dnsserver/Sync-DnsServerZone.md b/docset/winserver2019-ps/dnsserver/Sync-DnsServerZone.md index b6923e21f8..cd2927f45f 100644 --- a/docset/winserver2019-ps/dnsserver/Sync-DnsServerZone.md +++ b/docset/winserver2019-ps/dnsserver/Sync-DnsServerZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/sync-dnsserverzone?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/sync-dnsserverzone?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Sync-DnsServerZone --- diff --git a/docset/winserver2019-ps/dnsserver/Test-DnsServer.md b/docset/winserver2019-ps/dnsserver/Test-DnsServer.md index 4aff2ab0ee..5d5a0f6d95 100644 --- a/docset/winserver2019-ps/dnsserver/Test-DnsServer.md +++ b/docset/winserver2019-ps/dnsserver/Test-DnsServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServer_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/test-dnsserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/test-dnsserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-DnsServer --- diff --git a/docset/winserver2019-ps/dnsserver/Test-DnsServerDnsSecZoneSetting.md b/docset/winserver2019-ps/dnsserver/Test-DnsServerDnsSecZoneSetting.md index 5ba4fa897f..7315e0253c 100644 --- a/docset/winserver2019-ps/dnsserver/Test-DnsServerDnsSecZoneSetting.md +++ b/docset/winserver2019-ps/dnsserver/Test-DnsServerDnsSecZoneSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerDnsSecZoneSetting_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/test-dnsserverdnsseczonesetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/test-dnsserverdnsseczonesetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-DnsServerDnsSecZoneSetting --- diff --git a/docset/winserver2019-ps/dnsserver/Unregister-DnsServerDirectoryPartition.md b/docset/winserver2019-ps/dnsserver/Unregister-DnsServerDirectoryPartition.md index b9de7b8d5b..6e0fb878dc 100644 --- a/docset/winserver2019-ps/dnsserver/Unregister-DnsServerDirectoryPartition.md +++ b/docset/winserver2019-ps/dnsserver/Unregister-DnsServerDirectoryPartition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerDirectoryPartition_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/unregister-dnsserverdirectorypartition?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/unregister-dnsserverdirectorypartition?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unregister-DnsServerDirectoryPartition --- diff --git a/docset/winserver2019-ps/dnsserver/Update-DnsServerTrustPoint.md b/docset/winserver2019-ps/dnsserver/Update-DnsServerTrustPoint.md index c87ae057fb..0767cca6af 100644 --- a/docset/winserver2019-ps/dnsserver/Update-DnsServerTrustPoint.md +++ b/docset/winserver2019-ps/dnsserver/Update-DnsServerTrustPoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerTrustPoint_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/update-dnsservertrustpoint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/update-dnsservertrustpoint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-DnsServerTrustPoint --- diff --git a/docset/winserver2019-ps/eventtracingmanagement/Add-EtwTraceProvider.md b/docset/winserver2019-ps/eventtracingmanagement/Add-EtwTraceProvider.md index c2a6c179a5..1ac14b30d9 100644 --- a/docset/winserver2019-ps/eventtracingmanagement/Add-EtwTraceProvider.md +++ b/docset/winserver2019-ps/eventtracingmanagement/Add-EtwTraceProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_EtwTraceProvider_v1.0.cdxml-help.xml Module Name: EventTracingManagement ms.date: 01/05/2017 -online version: https://docs.microsoft.com/powershell/module/eventtracingmanagement/add-etwtraceprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/eventtracingmanagement/add-etwtraceprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-EtwTraceProvider --- diff --git a/docset/winserver2019-ps/eventtracingmanagement/Get-AutologgerConfig.md b/docset/winserver2019-ps/eventtracingmanagement/Get-AutologgerConfig.md index 2f2ccbfd0d..db6175b364 100644 --- a/docset/winserver2019-ps/eventtracingmanagement/Get-AutologgerConfig.md +++ b/docset/winserver2019-ps/eventtracingmanagement/Get-AutologgerConfig.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_AutologgerConfig_v1.0.cdxml-help.xml Module Name: EventTracingManagement ms.date: 01/05/2017 -online version: https://docs.microsoft.com/powershell/module/eventtracingmanagement/get-autologgerconfig?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/eventtracingmanagement/get-autologgerconfig?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AutologgerConfig --- diff --git a/docset/winserver2019-ps/eventtracingmanagement/Get-EtwTraceProvider.md b/docset/winserver2019-ps/eventtracingmanagement/Get-EtwTraceProvider.md index 4836c2cc3e..6fa1dae681 100644 --- a/docset/winserver2019-ps/eventtracingmanagement/Get-EtwTraceProvider.md +++ b/docset/winserver2019-ps/eventtracingmanagement/Get-EtwTraceProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_EtwTraceProvider_v1.0.cdxml-help.xml Module Name: EventTracingManagement ms.date: 01/05/2017 -online version: https://docs.microsoft.com/powershell/module/eventtracingmanagement/get-etwtraceprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/eventtracingmanagement/get-etwtraceprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-EtwTraceProvider --- diff --git a/docset/winserver2019-ps/eventtracingmanagement/Get-EtwTraceSession.md b/docset/winserver2019-ps/eventtracingmanagement/Get-EtwTraceSession.md index b528f1d456..a72f7db281 100644 --- a/docset/winserver2019-ps/eventtracingmanagement/Get-EtwTraceSession.md +++ b/docset/winserver2019-ps/eventtracingmanagement/Get-EtwTraceSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_EtwTraceSession_v1.0.cdxml-help.xml Module Name: EventTracingManagement ms.date: 01/05/2017 -online version: https://docs.microsoft.com/powershell/module/eventtracingmanagement/get-etwtracesession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/eventtracingmanagement/get-etwtracesession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-EtwTraceSession --- diff --git a/docset/winserver2019-ps/eventtracingmanagement/New-AutologgerConfig.md b/docset/winserver2019-ps/eventtracingmanagement/New-AutologgerConfig.md index a748dd4bba..0a6b4e33cd 100644 --- a/docset/winserver2019-ps/eventtracingmanagement/New-AutologgerConfig.md +++ b/docset/winserver2019-ps/eventtracingmanagement/New-AutologgerConfig.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_AutologgerConfig_v1.0.cdxml-help.xml Module Name: EventTracingManagement ms.date: 01/05/2017 -online version: https://docs.microsoft.com/powershell/module/eventtracingmanagement/new-autologgerconfig?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/eventtracingmanagement/new-autologgerconfig?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-AutologgerConfig --- diff --git a/docset/winserver2019-ps/eventtracingmanagement/New-EtwTraceSession.md b/docset/winserver2019-ps/eventtracingmanagement/New-EtwTraceSession.md index 66b1053228..9ea9dcb179 100644 --- a/docset/winserver2019-ps/eventtracingmanagement/New-EtwTraceSession.md +++ b/docset/winserver2019-ps/eventtracingmanagement/New-EtwTraceSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_EtwTraceSession_v1.0.cdxml-help.xml Module Name: EventTracingManagement ms.date: 01/05/2017 -online version: https://docs.microsoft.com/powershell/module/eventtracingmanagement/new-etwtracesession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/eventtracingmanagement/new-etwtracesession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-EtwTraceSession --- diff --git a/docset/winserver2019-ps/eventtracingmanagement/Remove-AutologgerConfig.md b/docset/winserver2019-ps/eventtracingmanagement/Remove-AutologgerConfig.md index 060c9b4fb9..3e284f1047 100644 --- a/docset/winserver2019-ps/eventtracingmanagement/Remove-AutologgerConfig.md +++ b/docset/winserver2019-ps/eventtracingmanagement/Remove-AutologgerConfig.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_AutologgerConfig_v1.0.cdxml-help.xml Module Name: EventTracingManagement ms.date: 01/05/2017 -online version: https://docs.microsoft.com/powershell/module/eventtracingmanagement/remove-autologgerconfig?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/eventtracingmanagement/remove-autologgerconfig?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AutologgerConfig --- diff --git a/docset/winserver2019-ps/eventtracingmanagement/Remove-EtwTraceProvider.md b/docset/winserver2019-ps/eventtracingmanagement/Remove-EtwTraceProvider.md index fe62b5a105..b6a8bdd09b 100644 --- a/docset/winserver2019-ps/eventtracingmanagement/Remove-EtwTraceProvider.md +++ b/docset/winserver2019-ps/eventtracingmanagement/Remove-EtwTraceProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_EtwTraceProvider_v1.0.cdxml-help.xml Module Name: EventTracingManagement ms.date: 01/05/2017 -online version: https://docs.microsoft.com/powershell/module/eventtracingmanagement/remove-etwtraceprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/eventtracingmanagement/remove-etwtraceprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-EtwTraceProvider --- diff --git a/docset/winserver2019-ps/eventtracingmanagement/Save-EtwTraceSession.md b/docset/winserver2019-ps/eventtracingmanagement/Save-EtwTraceSession.md index e6eeaaf95d..d114199505 100644 --- a/docset/winserver2019-ps/eventtracingmanagement/Save-EtwTraceSession.md +++ b/docset/winserver2019-ps/eventtracingmanagement/Save-EtwTraceSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: EventTracingManagement-help.xml Module Name: EventTracingManagement ms.date: 01/05/2017 -online version: https://docs.microsoft.com/powershell/module/eventtracingmanagement/save-etwtracesession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/eventtracingmanagement/save-etwtracesession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Save-EtwTraceSession --- diff --git a/docset/winserver2019-ps/eventtracingmanagement/Send-EtwTraceSession.md b/docset/winserver2019-ps/eventtracingmanagement/Send-EtwTraceSession.md index 39f0e53bee..96560963b2 100644 --- a/docset/winserver2019-ps/eventtracingmanagement/Send-EtwTraceSession.md +++ b/docset/winserver2019-ps/eventtracingmanagement/Send-EtwTraceSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_EtwTraceSession_v1.0.cdxml-help.xml Module Name: EventTracingManagement ms.date: 01/05/2017 -online version: https://docs.microsoft.com/powershell/module/eventtracingmanagement/send-etwtracesession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/eventtracingmanagement/send-etwtracesession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Send-EtwTraceSession --- diff --git a/docset/winserver2019-ps/eventtracingmanagement/Set-AutologgerConfig.md b/docset/winserver2019-ps/eventtracingmanagement/Set-AutologgerConfig.md index 8e3f83aaa4..f9d402a437 100644 --- a/docset/winserver2019-ps/eventtracingmanagement/Set-AutologgerConfig.md +++ b/docset/winserver2019-ps/eventtracingmanagement/Set-AutologgerConfig.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_AutologgerConfig_v1.0.cdxml-help.xml Module Name: EventTracingManagement ms.date: 01/05/2017 -online version: https://docs.microsoft.com/powershell/module/eventtracingmanagement/set-autologgerconfig?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/eventtracingmanagement/set-autologgerconfig?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AutologgerConfig --- diff --git a/docset/winserver2019-ps/eventtracingmanagement/Set-EtwTraceProvider.md b/docset/winserver2019-ps/eventtracingmanagement/Set-EtwTraceProvider.md index e8af9ab90e..886df863cd 100644 --- a/docset/winserver2019-ps/eventtracingmanagement/Set-EtwTraceProvider.md +++ b/docset/winserver2019-ps/eventtracingmanagement/Set-EtwTraceProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_EtwTraceProvider_v1.0.cdxml-help.xml Module Name: EventTracingManagement ms.date: 01/05/2017 -online version: https://docs.microsoft.com/powershell/module/eventtracingmanagement/set-etwtraceprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/eventtracingmanagement/set-etwtraceprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-EtwTraceProvider --- diff --git a/docset/winserver2019-ps/eventtracingmanagement/Start-EtwTraceSession.md b/docset/winserver2019-ps/eventtracingmanagement/Start-EtwTraceSession.md index 08506c5dbc..2e4800ab6e 100644 --- a/docset/winserver2019-ps/eventtracingmanagement/Start-EtwTraceSession.md +++ b/docset/winserver2019-ps/eventtracingmanagement/Start-EtwTraceSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: EventTracingManagement-help.xml Module Name: EventTracingManagement ms.date: 01/05/2017 -online version: https://docs.microsoft.com/powershell/module/eventtracingmanagement/start-etwtracesession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/eventtracingmanagement/start-etwtracesession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-EtwTraceSession --- diff --git a/docset/winserver2019-ps/eventtracingmanagement/Stop-EtwTraceSession.md b/docset/winserver2019-ps/eventtracingmanagement/Stop-EtwTraceSession.md index f9928226fb..0925c27c63 100644 --- a/docset/winserver2019-ps/eventtracingmanagement/Stop-EtwTraceSession.md +++ b/docset/winserver2019-ps/eventtracingmanagement/Stop-EtwTraceSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_EtwTraceSession_v1.0.cdxml-help.xml Module Name: EventTracingManagement ms.date: 01/05/2017 -online version: https://docs.microsoft.com/powershell/module/eventtracingmanagement/stop-etwtracesession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/eventtracingmanagement/stop-etwtracesession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-EtwTraceSession --- diff --git a/docset/winserver2019-ps/eventtracingmanagement/Update-EtwTraceSession.md b/docset/winserver2019-ps/eventtracingmanagement/Update-EtwTraceSession.md index 63b3842a5a..caf6d9412a 100644 --- a/docset/winserver2019-ps/eventtracingmanagement/Update-EtwTraceSession.md +++ b/docset/winserver2019-ps/eventtracingmanagement/Update-EtwTraceSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_EtwTraceSession_v1.0.cdxml-help.xml Module Name: EventTracingManagement ms.date: 01/05/2017 -online version: https://docs.microsoft.com/powershell/module/eventtracingmanagement/update-etwtracesession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/eventtracingmanagement/update-etwtracesession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-EtwTraceSession --- diff --git a/docset/winserver2019-ps/failoverclusters/Add-ClusterCheckpoint.md b/docset/winserver2019-ps/failoverclusters/Add-ClusterCheckpoint.md index 730701e2f6..c0e13cf0ca 100644 --- a/docset/winserver2019-ps/failoverclusters/Add-ClusterCheckpoint.md +++ b/docset/winserver2019-ps/failoverclusters/Add-ClusterCheckpoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clustercheckpoint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustercheckpoint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterCheckpoint --- diff --git a/docset/winserver2019-ps/failoverclusters/Add-ClusterDisk.md b/docset/winserver2019-ps/failoverclusters/Add-ClusterDisk.md index 5d759248f3..17a135fd8f 100644 --- a/docset/winserver2019-ps/failoverclusters/Add-ClusterDisk.md +++ b/docset/winserver2019-ps/failoverclusters/Add-ClusterDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clusterdisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusterdisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterDisk --- diff --git a/docset/winserver2019-ps/failoverclusters/Add-ClusterFileServerRole.md b/docset/winserver2019-ps/failoverclusters/Add-ClusterFileServerRole.md index a319e0f103..866d492ea0 100644 --- a/docset/winserver2019-ps/failoverclusters/Add-ClusterFileServerRole.md +++ b/docset/winserver2019-ps/failoverclusters/Add-ClusterFileServerRole.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clusterfileserverrole?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusterfileserverrole?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterFileServerRole --- diff --git a/docset/winserver2019-ps/failoverclusters/Add-ClusterGenericApplicationRole.md b/docset/winserver2019-ps/failoverclusters/Add-ClusterGenericApplicationRole.md index 7f825d9115..b8053720fc 100644 --- a/docset/winserver2019-ps/failoverclusters/Add-ClusterGenericApplicationRole.md +++ b/docset/winserver2019-ps/failoverclusters/Add-ClusterGenericApplicationRole.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clustergenericapplicationrole?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustergenericapplicationrole?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterGenericApplicationRole --- diff --git a/docset/winserver2019-ps/failoverclusters/Add-ClusterGenericScriptRole.md b/docset/winserver2019-ps/failoverclusters/Add-ClusterGenericScriptRole.md index 96ffc59d45..21b044fd2c 100644 --- a/docset/winserver2019-ps/failoverclusters/Add-ClusterGenericScriptRole.md +++ b/docset/winserver2019-ps/failoverclusters/Add-ClusterGenericScriptRole.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clustergenericscriptrole?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustergenericscriptrole?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterGenericScriptRole --- diff --git a/docset/winserver2019-ps/failoverclusters/Add-ClusterGenericServiceRole.md b/docset/winserver2019-ps/failoverclusters/Add-ClusterGenericServiceRole.md index 3298fdd6a8..cb06c52743 100644 --- a/docset/winserver2019-ps/failoverclusters/Add-ClusterGenericServiceRole.md +++ b/docset/winserver2019-ps/failoverclusters/Add-ClusterGenericServiceRole.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clustergenericservicerole?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustergenericservicerole?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterGenericServiceRole --- diff --git a/docset/winserver2019-ps/failoverclusters/Add-ClusterGroup.md b/docset/winserver2019-ps/failoverclusters/Add-ClusterGroup.md index e25b3aecf8..7e48ce800a 100644 --- a/docset/winserver2019-ps/failoverclusters/Add-ClusterGroup.md +++ b/docset/winserver2019-ps/failoverclusters/Add-ClusterGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clustergroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustergroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterGroup --- diff --git a/docset/winserver2019-ps/failoverclusters/Add-ClusterGroupSetDependency.md b/docset/winserver2019-ps/failoverclusters/Add-ClusterGroupSetDependency.md index be7770706f..6b8b420724 100644 --- a/docset/winserver2019-ps/failoverclusters/Add-ClusterGroupSetDependency.md +++ b/docset/winserver2019-ps/failoverclusters/Add-ClusterGroupSetDependency.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterCollection.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clustergroupsetdependency?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustergroupsetdependency?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterGroupSetDependency --- diff --git a/docset/winserver2019-ps/failoverclusters/Add-ClusterGroupToSet.md b/docset/winserver2019-ps/failoverclusters/Add-ClusterGroupToSet.md index 1664ff4833..a2ca09fee3 100644 --- a/docset/winserver2019-ps/failoverclusters/Add-ClusterGroupToSet.md +++ b/docset/winserver2019-ps/failoverclusters/Add-ClusterGroupToSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterCollection.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clustergrouptoset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustergrouptoset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterGroupToSet --- diff --git a/docset/winserver2019-ps/failoverclusters/Add-ClusterNode.md b/docset/winserver2019-ps/failoverclusters/Add-ClusterNode.md index 9e330a55f2..3db91f12b5 100644 --- a/docset/winserver2019-ps/failoverclusters/Add-ClusterNode.md +++ b/docset/winserver2019-ps/failoverclusters/Add-ClusterNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clusternode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusternode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterNode --- diff --git a/docset/winserver2019-ps/failoverclusters/Add-ClusterResource.md b/docset/winserver2019-ps/failoverclusters/Add-ClusterResource.md index 2b8354ab17..9bbba5ff47 100644 --- a/docset/winserver2019-ps/failoverclusters/Add-ClusterResource.md +++ b/docset/winserver2019-ps/failoverclusters/Add-ClusterResource.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clusterresource?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusterresource?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterResource --- diff --git a/docset/winserver2019-ps/failoverclusters/Add-ClusterResourceDependency.md b/docset/winserver2019-ps/failoverclusters/Add-ClusterResourceDependency.md index 95de5b5d76..ffe73c1d23 100644 --- a/docset/winserver2019-ps/failoverclusters/Add-ClusterResourceDependency.md +++ b/docset/winserver2019-ps/failoverclusters/Add-ClusterResourceDependency.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clusterresourcedependency?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusterresourcedependency?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterResourceDependency --- diff --git a/docset/winserver2019-ps/failoverclusters/Add-ClusterResourceType.md b/docset/winserver2019-ps/failoverclusters/Add-ClusterResourceType.md index 31b29c747a..a234b41668 100644 --- a/docset/winserver2019-ps/failoverclusters/Add-ClusterResourceType.md +++ b/docset/winserver2019-ps/failoverclusters/Add-ClusterResourceType.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clusterresourcetype?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusterresourcetype?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterResourceType --- diff --git a/docset/winserver2019-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md b/docset/winserver2019-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md index 6bb2c1cc23..2ae8ee53c4 100644 --- a/docset/winserver2019-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md +++ b/docset/winserver2019-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clusterscaleoutfileserverrole?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusterscaleoutfileserverrole?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterScaleOutFileServerRole --- diff --git a/docset/winserver2019-ps/failoverclusters/Add-ClusterSharedVolume.md b/docset/winserver2019-ps/failoverclusters/Add-ClusterSharedVolume.md index 780bacc6e8..d08a059ac5 100644 --- a/docset/winserver2019-ps/failoverclusters/Add-ClusterSharedVolume.md +++ b/docset/winserver2019-ps/failoverclusters/Add-ClusterSharedVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clustersharedvolume?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustersharedvolume?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterSharedVolume --- diff --git a/docset/winserver2019-ps/failoverclusters/Add-ClusterVMMonitoredItem.md b/docset/winserver2019-ps/failoverclusters/Add-ClusterVMMonitoredItem.md index ae6891612f..ce6c13f31e 100644 --- a/docset/winserver2019-ps/failoverclusters/Add-ClusterVMMonitoredItem.md +++ b/docset/winserver2019-ps/failoverclusters/Add-ClusterVMMonitoredItem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clustervmmonitoreditem?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustervmmonitoreditem?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterVMMonitoredItem --- diff --git a/docset/winserver2019-ps/failoverclusters/Add-ClusterVirtualMachineRole.md b/docset/winserver2019-ps/failoverclusters/Add-ClusterVirtualMachineRole.md index 4681109897..90184f5cc3 100644 --- a/docset/winserver2019-ps/failoverclusters/Add-ClusterVirtualMachineRole.md +++ b/docset/winserver2019-ps/failoverclusters/Add-ClusterVirtualMachineRole.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clustervirtualmachinerole?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustervirtualmachinerole?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterVirtualMachineRole --- diff --git a/docset/winserver2019-ps/failoverclusters/Add-ClusteriSCSITargetServerRole.md b/docset/winserver2019-ps/failoverclusters/Add-ClusteriSCSITargetServerRole.md index 8b208e97be..1c53a63610 100644 --- a/docset/winserver2019-ps/failoverclusters/Add-ClusteriSCSITargetServerRole.md +++ b/docset/winserver2019-ps/failoverclusters/Add-ClusteriSCSITargetServerRole.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clusteriscsitargetserverrole?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusteriscsitargetserverrole?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusteriSCSITargetServerRole --- diff --git a/docset/winserver2019-ps/failoverclusters/Block-ClusterAccess.md b/docset/winserver2019-ps/failoverclusters/Block-ClusterAccess.md index f7e78328f1..94218e78ba 100644 --- a/docset/winserver2019-ps/failoverclusters/Block-ClusterAccess.md +++ b/docset/winserver2019-ps/failoverclusters/Block-ClusterAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/block-clusteraccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/block-clusteraccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Block-ClusterAccess --- diff --git a/docset/winserver2019-ps/failoverclusters/Clear-ClusterDiskReservation.md b/docset/winserver2019-ps/failoverclusters/Clear-ClusterDiskReservation.md index cbf04f9693..317fe02d22 100644 --- a/docset/winserver2019-ps/failoverclusters/Clear-ClusterDiskReservation.md +++ b/docset/winserver2019-ps/failoverclusters/Clear-ClusterDiskReservation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/clear-clusterdiskreservation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/clear-clusterdiskreservation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-ClusterDiskReservation --- diff --git a/docset/winserver2019-ps/failoverclusters/Clear-ClusterNode.md b/docset/winserver2019-ps/failoverclusters/Clear-ClusterNode.md index 26489391ce..cd1f6ba546 100644 --- a/docset/winserver2019-ps/failoverclusters/Clear-ClusterNode.md +++ b/docset/winserver2019-ps/failoverclusters/Clear-ClusterNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/clear-clusternode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/clear-clusternode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-ClusterNode --- diff --git a/docset/winserver2019-ps/failoverclusters/Disable-ClusterStorageSpacesDirect.md b/docset/winserver2019-ps/failoverclusters/Disable-ClusterStorageSpacesDirect.md index da666bf84f..60a540af60 100644 --- a/docset/winserver2019-ps/failoverclusters/Disable-ClusterStorageSpacesDirect.md +++ b/docset/winserver2019-ps/failoverclusters/Disable-ClusterStorageSpacesDirect.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterStorageSpacesDirect.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/disable-clusterstoragespacesdirect?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/disable-clusterstoragespacesdirect?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-ClusterStorageSpacesDirect --- diff --git a/docset/winserver2019-ps/failoverclusters/Enable-ClusterStorageSpacesDirect.md b/docset/winserver2019-ps/failoverclusters/Enable-ClusterStorageSpacesDirect.md index bc4a2f321a..fe67f23090 100644 --- a/docset/winserver2019-ps/failoverclusters/Enable-ClusterStorageSpacesDirect.md +++ b/docset/winserver2019-ps/failoverclusters/Enable-ClusterStorageSpacesDirect.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Storage Spaces Direct with Windows Po external help file: ClusterStorageSpacesDirect.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/enable-clusterstoragespacesdirect?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/enable-clusterstoragespacesdirect?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-ClusterStorageSpacesDirect --- diff --git a/docset/winserver2019-ps/failoverclusters/Get-Cluster.md b/docset/winserver2019-ps/failoverclusters/Get-Cluster.md index 31ed6a57e0..ea2d7bf1de 100644 --- a/docset/winserver2019-ps/failoverclusters/Get-Cluster.md +++ b/docset/winserver2019-ps/failoverclusters/Get-Cluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-cluster?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-cluster?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-Cluster --- diff --git a/docset/winserver2019-ps/failoverclusters/Get-ClusterAccess.md b/docset/winserver2019-ps/failoverclusters/Get-ClusterAccess.md index b34d61af7a..887fad3cdb 100644 --- a/docset/winserver2019-ps/failoverclusters/Get-ClusterAccess.md +++ b/docset/winserver2019-ps/failoverclusters/Get-ClusterAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusteraccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusteraccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterAccess --- diff --git a/docset/winserver2019-ps/failoverclusters/Get-ClusterAvailableDisk.md b/docset/winserver2019-ps/failoverclusters/Get-ClusterAvailableDisk.md index 411221ff57..c89c7ad691 100644 --- a/docset/winserver2019-ps/failoverclusters/Get-ClusterAvailableDisk.md +++ b/docset/winserver2019-ps/failoverclusters/Get-ClusterAvailableDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusteravailabledisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusteravailabledisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterAvailableDisk --- diff --git a/docset/winserver2019-ps/failoverclusters/Get-ClusterCheckpoint.md b/docset/winserver2019-ps/failoverclusters/Get-ClusterCheckpoint.md index 7e5ed77023..7a613ff8fc 100644 --- a/docset/winserver2019-ps/failoverclusters/Get-ClusterCheckpoint.md +++ b/docset/winserver2019-ps/failoverclusters/Get-ClusterCheckpoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clustercheckpoint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clustercheckpoint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterCheckpoint --- diff --git a/docset/winserver2019-ps/failoverclusters/Get-ClusterDiagnosticInfo.md b/docset/winserver2019-ps/failoverclusters/Get-ClusterDiagnosticInfo.md index e7018c912b..72e5e2a45a 100644 --- a/docset/winserver2019-ps/failoverclusters/Get-ClusterDiagnosticInfo.md +++ b/docset/winserver2019-ps/failoverclusters/Get-ClusterDiagnosticInfo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusterdiagnosticinfo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterdiagnosticinfo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterDiagnosticInfo --- diff --git a/docset/winserver2019-ps/failoverclusters/Get-ClusterFaultDomain.md b/docset/winserver2019-ps/failoverclusters/Get-ClusterFaultDomain.md index 70bff753d2..d1fb7685ea 100644 --- a/docset/winserver2019-ps/failoverclusters/Get-ClusterFaultDomain.md +++ b/docset/winserver2019-ps/failoverclusters/Get-ClusterFaultDomain.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterFaultDomain.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusterfaultdomain?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterfaultdomain?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterFaultDomain --- diff --git a/docset/winserver2019-ps/failoverclusters/Get-ClusterFaultDomainXML.md b/docset/winserver2019-ps/failoverclusters/Get-ClusterFaultDomainXML.md index 09a697101c..57610e4d1c 100644 --- a/docset/winserver2019-ps/failoverclusters/Get-ClusterFaultDomainXML.md +++ b/docset/winserver2019-ps/failoverclusters/Get-ClusterFaultDomainXML.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterFaultDomain.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusterfaultdomainxml?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterfaultdomainxml?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterFaultDomainXML --- diff --git a/docset/winserver2019-ps/failoverclusters/Get-ClusterGroup.md b/docset/winserver2019-ps/failoverclusters/Get-ClusterGroup.md index f8e8554760..13884354b0 100644 --- a/docset/winserver2019-ps/failoverclusters/Get-ClusterGroup.md +++ b/docset/winserver2019-ps/failoverclusters/Get-ClusterGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clustergroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clustergroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterGroup --- diff --git a/docset/winserver2019-ps/failoverclusters/Get-ClusterGroupSet.md b/docset/winserver2019-ps/failoverclusters/Get-ClusterGroupSet.md index c4fa9fb5e3..d1f12ac71f 100644 --- a/docset/winserver2019-ps/failoverclusters/Get-ClusterGroupSet.md +++ b/docset/winserver2019-ps/failoverclusters/Get-ClusterGroupSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterCollection.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clustergroupset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clustergroupset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterGroupSet --- diff --git a/docset/winserver2019-ps/failoverclusters/Get-ClusterGroupSetDependency.md b/docset/winserver2019-ps/failoverclusters/Get-ClusterGroupSetDependency.md index f631eff67b..6b8fb7a2c5 100644 --- a/docset/winserver2019-ps/failoverclusters/Get-ClusterGroupSetDependency.md +++ b/docset/winserver2019-ps/failoverclusters/Get-ClusterGroupSetDependency.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterCollection.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clustergroupsetdependency?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clustergroupsetdependency?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterGroupSetDependency --- diff --git a/docset/winserver2019-ps/failoverclusters/Get-ClusterLog.md b/docset/winserver2019-ps/failoverclusters/Get-ClusterLog.md index ce2814fca0..107129c688 100644 --- a/docset/winserver2019-ps/failoverclusters/Get-ClusterLog.md +++ b/docset/winserver2019-ps/failoverclusters/Get-ClusterLog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusterlog?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterlog?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterLog --- diff --git a/docset/winserver2019-ps/failoverclusters/Get-ClusterNetwork.md b/docset/winserver2019-ps/failoverclusters/Get-ClusterNetwork.md index cc41953ce1..cbaf1356a5 100644 --- a/docset/winserver2019-ps/failoverclusters/Get-ClusterNetwork.md +++ b/docset/winserver2019-ps/failoverclusters/Get-ClusterNetwork.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusternetwork?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusternetwork?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterNetwork --- diff --git a/docset/winserver2019-ps/failoverclusters/Get-ClusterNetworkInterface.md b/docset/winserver2019-ps/failoverclusters/Get-ClusterNetworkInterface.md index 4a1604c633..64612e8eb2 100644 --- a/docset/winserver2019-ps/failoverclusters/Get-ClusterNetworkInterface.md +++ b/docset/winserver2019-ps/failoverclusters/Get-ClusterNetworkInterface.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusternetworkinterface?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusternetworkinterface?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterNetworkInterface --- diff --git a/docset/winserver2019-ps/failoverclusters/Get-ClusterNode.md b/docset/winserver2019-ps/failoverclusters/Get-ClusterNode.md index ab8c811b3f..4ac492ca9f 100644 --- a/docset/winserver2019-ps/failoverclusters/Get-ClusterNode.md +++ b/docset/winserver2019-ps/failoverclusters/Get-ClusterNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusternode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusternode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterNode --- diff --git a/docset/winserver2019-ps/failoverclusters/Get-ClusterOwnerNode.md b/docset/winserver2019-ps/failoverclusters/Get-ClusterOwnerNode.md index 0b4168fa54..d60094faf3 100644 --- a/docset/winserver2019-ps/failoverclusters/Get-ClusterOwnerNode.md +++ b/docset/winserver2019-ps/failoverclusters/Get-ClusterOwnerNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusterownernode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterownernode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterOwnerNode --- diff --git a/docset/winserver2019-ps/failoverclusters/Get-ClusterParameter.md b/docset/winserver2019-ps/failoverclusters/Get-ClusterParameter.md index da3c59cba1..669242b031 100644 --- a/docset/winserver2019-ps/failoverclusters/Get-ClusterParameter.md +++ b/docset/winserver2019-ps/failoverclusters/Get-ClusterParameter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusterparameter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterparameter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterParameter --- diff --git a/docset/winserver2019-ps/failoverclusters/Get-ClusterQuorum.md b/docset/winserver2019-ps/failoverclusters/Get-ClusterQuorum.md index f17fd0f147..9593addeb0 100644 --- a/docset/winserver2019-ps/failoverclusters/Get-ClusterQuorum.md +++ b/docset/winserver2019-ps/failoverclusters/Get-ClusterQuorum.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusterquorum?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterquorum?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterQuorum --- diff --git a/docset/winserver2019-ps/failoverclusters/Get-ClusterResource.md b/docset/winserver2019-ps/failoverclusters/Get-ClusterResource.md index ddd06b4653..9837ce3558 100644 --- a/docset/winserver2019-ps/failoverclusters/Get-ClusterResource.md +++ b/docset/winserver2019-ps/failoverclusters/Get-ClusterResource.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusterresource?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterresource?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterResource --- diff --git a/docset/winserver2019-ps/failoverclusters/Get-ClusterResourceDependency.md b/docset/winserver2019-ps/failoverclusters/Get-ClusterResourceDependency.md index 142c25a4a7..d6211654cc 100644 --- a/docset/winserver2019-ps/failoverclusters/Get-ClusterResourceDependency.md +++ b/docset/winserver2019-ps/failoverclusters/Get-ClusterResourceDependency.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusterresourcedependency?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterresourcedependency?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterResourceDependency --- diff --git a/docset/winserver2019-ps/failoverclusters/Get-ClusterResourceDependencyReport.md b/docset/winserver2019-ps/failoverclusters/Get-ClusterResourceDependencyReport.md index a5e0650b78..80b4fb62e1 100644 --- a/docset/winserver2019-ps/failoverclusters/Get-ClusterResourceDependencyReport.md +++ b/docset/winserver2019-ps/failoverclusters/Get-ClusterResourceDependencyReport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusterresourcedependencyreport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterresourcedependencyreport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterResourceDependencyReport --- diff --git a/docset/winserver2019-ps/failoverclusters/Get-ClusterResourceType.md b/docset/winserver2019-ps/failoverclusters/Get-ClusterResourceType.md index 0dcc15eb70..ebeb27099f 100644 --- a/docset/winserver2019-ps/failoverclusters/Get-ClusterResourceType.md +++ b/docset/winserver2019-ps/failoverclusters/Get-ClusterResourceType.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusterresourcetype?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterresourcetype?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterResourceType --- diff --git a/docset/winserver2019-ps/failoverclusters/Get-ClusterSharedVolume.md b/docset/winserver2019-ps/failoverclusters/Get-ClusterSharedVolume.md index b3c590b42b..6cf5d7b0b6 100644 --- a/docset/winserver2019-ps/failoverclusters/Get-ClusterSharedVolume.md +++ b/docset/winserver2019-ps/failoverclusters/Get-ClusterSharedVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clustersharedvolume?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clustersharedvolume?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterSharedVolume --- diff --git a/docset/winserver2019-ps/failoverclusters/Get-ClusterSharedVolumeState.md b/docset/winserver2019-ps/failoverclusters/Get-ClusterSharedVolumeState.md index d441d7b0fd..9e9fe19da1 100644 --- a/docset/winserver2019-ps/failoverclusters/Get-ClusterSharedVolumeState.md +++ b/docset/winserver2019-ps/failoverclusters/Get-ClusterSharedVolumeState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clustersharedvolumestate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clustersharedvolumestate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterSharedVolumeState --- diff --git a/docset/winserver2019-ps/failoverclusters/Get-ClusterStorageSpacesDirect.md b/docset/winserver2019-ps/failoverclusters/Get-ClusterStorageSpacesDirect.md index 23953e61c8..241656a14b 100644 --- a/docset/winserver2019-ps/failoverclusters/Get-ClusterStorageSpacesDirect.md +++ b/docset/winserver2019-ps/failoverclusters/Get-ClusterStorageSpacesDirect.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterStorageSpacesDirect.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusterstoragespacesdirect?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterstoragespacesdirect?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterStorageSpacesDirect --- diff --git a/docset/winserver2019-ps/failoverclusters/Get-ClusterVMMonitoredItem.md b/docset/winserver2019-ps/failoverclusters/Get-ClusterVMMonitoredItem.md index 63282deab2..17a4b7e904 100644 --- a/docset/winserver2019-ps/failoverclusters/Get-ClusterVMMonitoredItem.md +++ b/docset/winserver2019-ps/failoverclusters/Get-ClusterVMMonitoredItem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clustervmmonitoreditem?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clustervmmonitoreditem?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterVMMonitoredItem --- diff --git a/docset/winserver2019-ps/failoverclusters/Grant-ClusterAccess.md b/docset/winserver2019-ps/failoverclusters/Grant-ClusterAccess.md index 13681a2817..a354a9f508 100644 --- a/docset/winserver2019-ps/failoverclusters/Grant-ClusterAccess.md +++ b/docset/winserver2019-ps/failoverclusters/Grant-ClusterAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/grant-clusteraccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/grant-clusteraccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Grant-ClusterAccess --- diff --git a/docset/winserver2019-ps/failoverclusters/Move-ClusterGroup.md b/docset/winserver2019-ps/failoverclusters/Move-ClusterGroup.md index 4109698acd..90d2313627 100644 --- a/docset/winserver2019-ps/failoverclusters/Move-ClusterGroup.md +++ b/docset/winserver2019-ps/failoverclusters/Move-ClusterGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/move-clustergroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/move-clustergroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-ClusterGroup --- diff --git a/docset/winserver2019-ps/failoverclusters/Move-ClusterResource.md b/docset/winserver2019-ps/failoverclusters/Move-ClusterResource.md index 57841d4ebd..664d5dbcc7 100644 --- a/docset/winserver2019-ps/failoverclusters/Move-ClusterResource.md +++ b/docset/winserver2019-ps/failoverclusters/Move-ClusterResource.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/move-clusterresource?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/move-clusterresource?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-ClusterResource --- diff --git a/docset/winserver2019-ps/failoverclusters/Move-ClusterSharedVolume.md b/docset/winserver2019-ps/failoverclusters/Move-ClusterSharedVolume.md index 6b34879f8e..ca3b257c4c 100644 --- a/docset/winserver2019-ps/failoverclusters/Move-ClusterSharedVolume.md +++ b/docset/winserver2019-ps/failoverclusters/Move-ClusterSharedVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/move-clustersharedvolume?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/move-clustersharedvolume?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-ClusterSharedVolume --- diff --git a/docset/winserver2019-ps/failoverclusters/Move-ClusterVirtualMachineRole.md b/docset/winserver2019-ps/failoverclusters/Move-ClusterVirtualMachineRole.md index 7bec256cc4..18bec19009 100644 --- a/docset/winserver2019-ps/failoverclusters/Move-ClusterVirtualMachineRole.md +++ b/docset/winserver2019-ps/failoverclusters/Move-ClusterVirtualMachineRole.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/move-clustervirtualmachinerole?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/move-clustervirtualmachinerole?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-ClusterVirtualMachineRole --- diff --git a/docset/winserver2019-ps/failoverclusters/New-Cluster.md b/docset/winserver2019-ps/failoverclusters/New-Cluster.md index 73511cb1f7..e99567ce3d 100644 --- a/docset/winserver2019-ps/failoverclusters/New-Cluster.md +++ b/docset/winserver2019-ps/failoverclusters/New-Cluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/new-cluster?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/new-cluster?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-Cluster --- diff --git a/docset/winserver2019-ps/failoverclusters/New-ClusterFaultDomain.md b/docset/winserver2019-ps/failoverclusters/New-ClusterFaultDomain.md index 8e03cc9d50..ef78049227 100644 --- a/docset/winserver2019-ps/failoverclusters/New-ClusterFaultDomain.md +++ b/docset/winserver2019-ps/failoverclusters/New-ClusterFaultDomain.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterFaultDomain.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/new-clusterfaultdomain?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/new-clusterfaultdomain?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ClusterFaultDomain --- diff --git a/docset/winserver2019-ps/failoverclusters/New-ClusterGroupSet.md b/docset/winserver2019-ps/failoverclusters/New-ClusterGroupSet.md index 643db07143..bba1a93b28 100644 --- a/docset/winserver2019-ps/failoverclusters/New-ClusterGroupSet.md +++ b/docset/winserver2019-ps/failoverclusters/New-ClusterGroupSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterCollection.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/new-clustergroupset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/new-clustergroupset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ClusterGroupSet --- diff --git a/docset/winserver2019-ps/failoverclusters/New-ClusterNameAccount.md b/docset/winserver2019-ps/failoverclusters/New-ClusterNameAccount.md index bb7589cd16..b2590248be 100644 --- a/docset/winserver2019-ps/failoverclusters/New-ClusterNameAccount.md +++ b/docset/winserver2019-ps/failoverclusters/New-ClusterNameAccount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/new-clusternameaccount?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/new-clusternameaccount?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ClusterNameAccount --- diff --git a/docset/winserver2019-ps/failoverclusters/Remove-Cluster.md b/docset/winserver2019-ps/failoverclusters/Remove-Cluster.md index 4f84b16544..8152b80463 100644 --- a/docset/winserver2019-ps/failoverclusters/Remove-Cluster.md +++ b/docset/winserver2019-ps/failoverclusters/Remove-Cluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-cluster?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-cluster?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-Cluster --- diff --git a/docset/winserver2019-ps/failoverclusters/Remove-ClusterAccess.md b/docset/winserver2019-ps/failoverclusters/Remove-ClusterAccess.md index 432baad74d..0ff374b1a4 100644 --- a/docset/winserver2019-ps/failoverclusters/Remove-ClusterAccess.md +++ b/docset/winserver2019-ps/failoverclusters/Remove-ClusterAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clusteraccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clusteraccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterAccess --- diff --git a/docset/winserver2019-ps/failoverclusters/Remove-ClusterCheckpoint.md b/docset/winserver2019-ps/failoverclusters/Remove-ClusterCheckpoint.md index 6dd7ebfb48..8c397803a1 100644 --- a/docset/winserver2019-ps/failoverclusters/Remove-ClusterCheckpoint.md +++ b/docset/winserver2019-ps/failoverclusters/Remove-ClusterCheckpoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clustercheckpoint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clustercheckpoint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterCheckpoint --- diff --git a/docset/winserver2019-ps/failoverclusters/Remove-ClusterFaultDomain.md b/docset/winserver2019-ps/failoverclusters/Remove-ClusterFaultDomain.md index 3b61e1b532..389520f307 100644 --- a/docset/winserver2019-ps/failoverclusters/Remove-ClusterFaultDomain.md +++ b/docset/winserver2019-ps/failoverclusters/Remove-ClusterFaultDomain.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterFaultDomain.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clusterfaultdomain?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clusterfaultdomain?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterFaultDomain --- diff --git a/docset/winserver2019-ps/failoverclusters/Remove-ClusterGroup.md b/docset/winserver2019-ps/failoverclusters/Remove-ClusterGroup.md index 50ff57cfc7..f407d8b5bb 100644 --- a/docset/winserver2019-ps/failoverclusters/Remove-ClusterGroup.md +++ b/docset/winserver2019-ps/failoverclusters/Remove-ClusterGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clustergroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clustergroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterGroup --- diff --git a/docset/winserver2019-ps/failoverclusters/Remove-ClusterGroupFromSet.md b/docset/winserver2019-ps/failoverclusters/Remove-ClusterGroupFromSet.md index 99e77ff8dd..df20afbb3d 100644 --- a/docset/winserver2019-ps/failoverclusters/Remove-ClusterGroupFromSet.md +++ b/docset/winserver2019-ps/failoverclusters/Remove-ClusterGroupFromSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterCollection.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clustergroupfromset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clustergroupfromset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterGroupFromSet --- diff --git a/docset/winserver2019-ps/failoverclusters/Remove-ClusterGroupSet.md b/docset/winserver2019-ps/failoverclusters/Remove-ClusterGroupSet.md index 1c33416e40..932317b032 100644 --- a/docset/winserver2019-ps/failoverclusters/Remove-ClusterGroupSet.md +++ b/docset/winserver2019-ps/failoverclusters/Remove-ClusterGroupSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterCollection.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clustergroupset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clustergroupset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterGroupSet --- diff --git a/docset/winserver2019-ps/failoverclusters/Remove-ClusterGroupSetDependency.md b/docset/winserver2019-ps/failoverclusters/Remove-ClusterGroupSetDependency.md index 02460e68de..f6a596281a 100644 --- a/docset/winserver2019-ps/failoverclusters/Remove-ClusterGroupSetDependency.md +++ b/docset/winserver2019-ps/failoverclusters/Remove-ClusterGroupSetDependency.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterCollection.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clustergroupsetdependency?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clustergroupsetdependency?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterGroupSetDependency --- diff --git a/docset/winserver2019-ps/failoverclusters/Remove-ClusterNode.md b/docset/winserver2019-ps/failoverclusters/Remove-ClusterNode.md index fe37c7896f..67da9d0233 100644 --- a/docset/winserver2019-ps/failoverclusters/Remove-ClusterNode.md +++ b/docset/winserver2019-ps/failoverclusters/Remove-ClusterNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clusternode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clusternode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterNode --- diff --git a/docset/winserver2019-ps/failoverclusters/Remove-ClusterResource.md b/docset/winserver2019-ps/failoverclusters/Remove-ClusterResource.md index 9a2f46cc32..7714e7f252 100644 --- a/docset/winserver2019-ps/failoverclusters/Remove-ClusterResource.md +++ b/docset/winserver2019-ps/failoverclusters/Remove-ClusterResource.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clusterresource?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clusterresource?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterResource --- diff --git a/docset/winserver2019-ps/failoverclusters/Remove-ClusterResourceDependency.md b/docset/winserver2019-ps/failoverclusters/Remove-ClusterResourceDependency.md index cfba185fa3..3fda3110e2 100644 --- a/docset/winserver2019-ps/failoverclusters/Remove-ClusterResourceDependency.md +++ b/docset/winserver2019-ps/failoverclusters/Remove-ClusterResourceDependency.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clusterresourcedependency?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clusterresourcedependency?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterResourceDependency --- diff --git a/docset/winserver2019-ps/failoverclusters/Remove-ClusterResourceType.md b/docset/winserver2019-ps/failoverclusters/Remove-ClusterResourceType.md index 4c1e4622e1..74298ae495 100644 --- a/docset/winserver2019-ps/failoverclusters/Remove-ClusterResourceType.md +++ b/docset/winserver2019-ps/failoverclusters/Remove-ClusterResourceType.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clusterresourcetype?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clusterresourcetype?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterResourceType --- diff --git a/docset/winserver2019-ps/failoverclusters/Remove-ClusterSharedVolume.md b/docset/winserver2019-ps/failoverclusters/Remove-ClusterSharedVolume.md index f7e8d1b192..4140beb5cc 100644 --- a/docset/winserver2019-ps/failoverclusters/Remove-ClusterSharedVolume.md +++ b/docset/winserver2019-ps/failoverclusters/Remove-ClusterSharedVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clustersharedvolume?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clustersharedvolume?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterSharedVolume --- diff --git a/docset/winserver2019-ps/failoverclusters/Remove-ClusterVMMonitoredItem.md b/docset/winserver2019-ps/failoverclusters/Remove-ClusterVMMonitoredItem.md index ba05fe6e58..102d8b1b14 100644 --- a/docset/winserver2019-ps/failoverclusters/Remove-ClusterVMMonitoredItem.md +++ b/docset/winserver2019-ps/failoverclusters/Remove-ClusterVMMonitoredItem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clustervmmonitoreditem?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clustervmmonitoreditem?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterVMMonitoredItem --- diff --git a/docset/winserver2019-ps/failoverclusters/Repair-ClusterStorageSpacesDirect.md b/docset/winserver2019-ps/failoverclusters/Repair-ClusterStorageSpacesDirect.md index 914e744750..2b1cb3a002 100644 --- a/docset/winserver2019-ps/failoverclusters/Repair-ClusterStorageSpacesDirect.md +++ b/docset/winserver2019-ps/failoverclusters/Repair-ClusterStorageSpacesDirect.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterStorageSpacesDirect.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/repair-clusterstoragespacesdirect?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/repair-clusterstoragespacesdirect?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Repair-ClusterStorageSpacesDirect --- diff --git a/docset/winserver2019-ps/failoverclusters/Reset-ClusterVMMonitoredState.md b/docset/winserver2019-ps/failoverclusters/Reset-ClusterVMMonitoredState.md index 88c7676cba..9938a9eeaf 100644 --- a/docset/winserver2019-ps/failoverclusters/Reset-ClusterVMMonitoredState.md +++ b/docset/winserver2019-ps/failoverclusters/Reset-ClusterVMMonitoredState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/reset-clustervmmonitoredstate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/reset-clustervmmonitoredstate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-ClusterVMMonitoredState --- diff --git a/docset/winserver2019-ps/failoverclusters/Resume-ClusterNode.md b/docset/winserver2019-ps/failoverclusters/Resume-ClusterNode.md index 2e0b3af6ea..b2ff422b87 100644 --- a/docset/winserver2019-ps/failoverclusters/Resume-ClusterNode.md +++ b/docset/winserver2019-ps/failoverclusters/Resume-ClusterNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/resume-clusternode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/resume-clusternode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-ClusterNode --- diff --git a/docset/winserver2019-ps/failoverclusters/Resume-ClusterResource.md b/docset/winserver2019-ps/failoverclusters/Resume-ClusterResource.md index 2d77ccee7a..66fe085067 100644 --- a/docset/winserver2019-ps/failoverclusters/Resume-ClusterResource.md +++ b/docset/winserver2019-ps/failoverclusters/Resume-ClusterResource.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/resume-clusterresource?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/resume-clusterresource?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-ClusterResource --- diff --git a/docset/winserver2019-ps/failoverclusters/Set-ClusterFaultDomain.md b/docset/winserver2019-ps/failoverclusters/Set-ClusterFaultDomain.md index 69e88fc769..637c4a5987 100644 --- a/docset/winserver2019-ps/failoverclusters/Set-ClusterFaultDomain.md +++ b/docset/winserver2019-ps/failoverclusters/Set-ClusterFaultDomain.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterFaultDomain.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/set-clusterfaultdomain?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterfaultdomain?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterFaultDomain --- diff --git a/docset/winserver2019-ps/failoverclusters/Set-ClusterFaultDomainXML.md b/docset/winserver2019-ps/failoverclusters/Set-ClusterFaultDomainXML.md index 4dd0828425..87b5354748 100644 --- a/docset/winserver2019-ps/failoverclusters/Set-ClusterFaultDomainXML.md +++ b/docset/winserver2019-ps/failoverclusters/Set-ClusterFaultDomainXML.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterFaultDomain.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/set-clusterfaultdomainxml?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterfaultdomainxml?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterFaultDomainXML --- diff --git a/docset/winserver2019-ps/failoverclusters/Set-ClusterGroupSet.md b/docset/winserver2019-ps/failoverclusters/Set-ClusterGroupSet.md index ecc79ea0f6..739c4005a0 100644 --- a/docset/winserver2019-ps/failoverclusters/Set-ClusterGroupSet.md +++ b/docset/winserver2019-ps/failoverclusters/Set-ClusterGroupSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterCollection.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/set-clustergroupset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clustergroupset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterGroupSet --- diff --git a/docset/winserver2019-ps/failoverclusters/Set-ClusterLog.md b/docset/winserver2019-ps/failoverclusters/Set-ClusterLog.md index 0b9b054547..755debfc96 100644 --- a/docset/winserver2019-ps/failoverclusters/Set-ClusterLog.md +++ b/docset/winserver2019-ps/failoverclusters/Set-ClusterLog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/set-clusterlog?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterlog?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterLog --- diff --git a/docset/winserver2019-ps/failoverclusters/Set-ClusterOwnerNode.md b/docset/winserver2019-ps/failoverclusters/Set-ClusterOwnerNode.md index ab23a376a7..8c87176a3e 100644 --- a/docset/winserver2019-ps/failoverclusters/Set-ClusterOwnerNode.md +++ b/docset/winserver2019-ps/failoverclusters/Set-ClusterOwnerNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/set-clusterownernode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterownernode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterOwnerNode --- diff --git a/docset/winserver2019-ps/failoverclusters/Set-ClusterParameter.md b/docset/winserver2019-ps/failoverclusters/Set-ClusterParameter.md index bb9d3f22f2..8166cdd3ce 100644 --- a/docset/winserver2019-ps/failoverclusters/Set-ClusterParameter.md +++ b/docset/winserver2019-ps/failoverclusters/Set-ClusterParameter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/set-clusterparameter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterparameter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterParameter --- diff --git a/docset/winserver2019-ps/failoverclusters/Set-ClusterQuorum.md b/docset/winserver2019-ps/failoverclusters/Set-ClusterQuorum.md index dd8a6d8481..bb20eac9d9 100644 --- a/docset/winserver2019-ps/failoverclusters/Set-ClusterQuorum.md +++ b/docset/winserver2019-ps/failoverclusters/Set-ClusterQuorum.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/set-clusterquorum?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterquorum?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterQuorum --- diff --git a/docset/winserver2019-ps/failoverclusters/Set-ClusterResourceDependency.md b/docset/winserver2019-ps/failoverclusters/Set-ClusterResourceDependency.md index a74580bd14..9694c963a9 100644 --- a/docset/winserver2019-ps/failoverclusters/Set-ClusterResourceDependency.md +++ b/docset/winserver2019-ps/failoverclusters/Set-ClusterResourceDependency.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/set-clusterresourcedependency?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterresourcedependency?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterResourceDependency --- diff --git a/docset/winserver2019-ps/failoverclusters/Set-ClusterStorageSpacesDirect.md b/docset/winserver2019-ps/failoverclusters/Set-ClusterStorageSpacesDirect.md index 6c17c525ab..f8fad8645e 100644 --- a/docset/winserver2019-ps/failoverclusters/Set-ClusterStorageSpacesDirect.md +++ b/docset/winserver2019-ps/failoverclusters/Set-ClusterStorageSpacesDirect.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterStorageSpacesDirect.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/set-clusterstoragespacesdirect?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterstoragespacesdirect?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterStorageSpacesDirect --- diff --git a/docset/winserver2019-ps/failoverclusters/Set-ClusterStorageSpacesDirectDisk.md b/docset/winserver2019-ps/failoverclusters/Set-ClusterStorageSpacesDirectDisk.md index 6fec962661..f4163d078c 100644 --- a/docset/winserver2019-ps/failoverclusters/Set-ClusterStorageSpacesDirectDisk.md +++ b/docset/winserver2019-ps/failoverclusters/Set-ClusterStorageSpacesDirectDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterStorageSpacesDirect.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/set-clusterstoragespacesdirectdisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterstoragespacesdirectdisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterStorageSpacesDirectDisk --- diff --git a/docset/winserver2019-ps/failoverclusters/Start-Cluster.md b/docset/winserver2019-ps/failoverclusters/Start-Cluster.md index 1c3692dff5..483a8b2e6d 100644 --- a/docset/winserver2019-ps/failoverclusters/Start-Cluster.md +++ b/docset/winserver2019-ps/failoverclusters/Start-Cluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/start-cluster?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/start-cluster?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-Cluster --- diff --git a/docset/winserver2019-ps/failoverclusters/Start-ClusterGroup.md b/docset/winserver2019-ps/failoverclusters/Start-ClusterGroup.md index d00d183baf..1d49a7da77 100644 --- a/docset/winserver2019-ps/failoverclusters/Start-ClusterGroup.md +++ b/docset/winserver2019-ps/failoverclusters/Start-ClusterGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/start-clustergroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/start-clustergroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-ClusterGroup --- diff --git a/docset/winserver2019-ps/failoverclusters/Start-ClusterNode.md b/docset/winserver2019-ps/failoverclusters/Start-ClusterNode.md index a2746c40e6..fdad29ea89 100644 --- a/docset/winserver2019-ps/failoverclusters/Start-ClusterNode.md +++ b/docset/winserver2019-ps/failoverclusters/Start-ClusterNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/start-clusternode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/start-clusternode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-ClusterNode --- diff --git a/docset/winserver2019-ps/failoverclusters/Start-ClusterResource.md b/docset/winserver2019-ps/failoverclusters/Start-ClusterResource.md index 7e3d06b296..44ccf2f7fb 100644 --- a/docset/winserver2019-ps/failoverclusters/Start-ClusterResource.md +++ b/docset/winserver2019-ps/failoverclusters/Start-ClusterResource.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/start-clusterresource?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/start-clusterresource?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-ClusterResource --- diff --git a/docset/winserver2019-ps/failoverclusters/Stop-Cluster.md b/docset/winserver2019-ps/failoverclusters/Stop-Cluster.md index cf730a7eb4..5fe862a4b9 100644 --- a/docset/winserver2019-ps/failoverclusters/Stop-Cluster.md +++ b/docset/winserver2019-ps/failoverclusters/Stop-Cluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/stop-cluster?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/stop-cluster?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-Cluster --- diff --git a/docset/winserver2019-ps/failoverclusters/Stop-ClusterGroup.md b/docset/winserver2019-ps/failoverclusters/Stop-ClusterGroup.md index 917f2e6c91..31b5f3083c 100644 --- a/docset/winserver2019-ps/failoverclusters/Stop-ClusterGroup.md +++ b/docset/winserver2019-ps/failoverclusters/Stop-ClusterGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/stop-clustergroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/stop-clustergroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-ClusterGroup --- diff --git a/docset/winserver2019-ps/failoverclusters/Stop-ClusterNode.md b/docset/winserver2019-ps/failoverclusters/Stop-ClusterNode.md index d6b3921e1e..5fd5f89ddc 100644 --- a/docset/winserver2019-ps/failoverclusters/Stop-ClusterNode.md +++ b/docset/winserver2019-ps/failoverclusters/Stop-ClusterNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/stop-clusternode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/stop-clusternode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-ClusterNode --- diff --git a/docset/winserver2019-ps/failoverclusters/Stop-ClusterResource.md b/docset/winserver2019-ps/failoverclusters/Stop-ClusterResource.md index f8da1bf2ab..2b1135316a 100644 --- a/docset/winserver2019-ps/failoverclusters/Stop-ClusterResource.md +++ b/docset/winserver2019-ps/failoverclusters/Stop-ClusterResource.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/stop-clusterresource?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/stop-clusterresource?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-ClusterResource --- diff --git a/docset/winserver2019-ps/failoverclusters/Suspend-ClusterNode.md b/docset/winserver2019-ps/failoverclusters/Suspend-ClusterNode.md index 46bf90f254..5b8bc2694b 100644 --- a/docset/winserver2019-ps/failoverclusters/Suspend-ClusterNode.md +++ b/docset/winserver2019-ps/failoverclusters/Suspend-ClusterNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/suspend-clusternode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/suspend-clusternode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-ClusterNode --- diff --git a/docset/winserver2019-ps/failoverclusters/Suspend-ClusterResource.md b/docset/winserver2019-ps/failoverclusters/Suspend-ClusterResource.md index 743e1772cc..75ccf323eb 100644 --- a/docset/winserver2019-ps/failoverclusters/Suspend-ClusterResource.md +++ b/docset/winserver2019-ps/failoverclusters/Suspend-ClusterResource.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/suspend-clusterresource?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/suspend-clusterresource?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-ClusterResource --- diff --git a/docset/winserver2019-ps/failoverclusters/Test-Cluster.md b/docset/winserver2019-ps/failoverclusters/Test-Cluster.md index df72da94b9..8fc95a443b 100644 --- a/docset/winserver2019-ps/failoverclusters/Test-Cluster.md +++ b/docset/winserver2019-ps/failoverclusters/Test-Cluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/test-cluster?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/test-cluster?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-Cluster --- diff --git a/docset/winserver2019-ps/failoverclusters/Test-ClusterResourceFailure.md b/docset/winserver2019-ps/failoverclusters/Test-ClusterResourceFailure.md index fa6e7e7d22..240bdad072 100644 --- a/docset/winserver2019-ps/failoverclusters/Test-ClusterResourceFailure.md +++ b/docset/winserver2019-ps/failoverclusters/Test-ClusterResourceFailure.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/test-clusterresourcefailure?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/test-clusterresourcefailure?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-ClusterResourceFailure --- diff --git a/docset/winserver2019-ps/failoverclusters/Update-ClusterFunctionalLevel.md b/docset/winserver2019-ps/failoverclusters/Update-ClusterFunctionalLevel.md index 5f44aa6be0..09351adcdb 100644 --- a/docset/winserver2019-ps/failoverclusters/Update-ClusterFunctionalLevel.md +++ b/docset/winserver2019-ps/failoverclusters/Update-ClusterFunctionalLevel.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/update-clusterfunctionallevel?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/update-clusterfunctionallevel?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-ClusterFunctionalLevel --- diff --git a/docset/winserver2019-ps/failoverclusters/Update-ClusterIPResource.md b/docset/winserver2019-ps/failoverclusters/Update-ClusterIPResource.md index 3a65aa24ee..af9b82a3b0 100644 --- a/docset/winserver2019-ps/failoverclusters/Update-ClusterIPResource.md +++ b/docset/winserver2019-ps/failoverclusters/Update-ClusterIPResource.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/update-clusteripresource?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/update-clusteripresource?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-ClusterIPResource --- diff --git a/docset/winserver2019-ps/failoverclusters/Update-ClusterNetworkNameResource.md b/docset/winserver2019-ps/failoverclusters/Update-ClusterNetworkNameResource.md index e6788c4318..933060df33 100644 --- a/docset/winserver2019-ps/failoverclusters/Update-ClusterNetworkNameResource.md +++ b/docset/winserver2019-ps/failoverclusters/Update-ClusterNetworkNameResource.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/update-clusternetworknameresource?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/update-clusternetworknameresource?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-ClusterNetworkNameResource --- diff --git a/docset/winserver2019-ps/failoverclusters/Update-ClusterVirtualMachineConfiguration.md b/docset/winserver2019-ps/failoverclusters/Update-ClusterVirtualMachineConfiguration.md index 5be95b23bf..fcd242b07b 100644 --- a/docset/winserver2019-ps/failoverclusters/Update-ClusterVirtualMachineConfiguration.md +++ b/docset/winserver2019-ps/failoverclusters/Update-ClusterVirtualMachineConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/update-clustervirtualmachineconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/update-clustervirtualmachineconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-ClusterVirtualMachineConfiguration --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmAdrSetting.md b/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmAdrSetting.md index cb6b3a9c03..17a9ee58d3 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmAdrSetting.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmAdrSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmAdrSetting.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmadrsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmadrsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmAdrSetting --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmAutoQuota.md b/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmAutoQuota.md index 31d1aec772..b72b0978c8 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmAutoQuota.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmAutoQuota.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMAutoQuota.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmautoquota?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmautoquota?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmAutoQuota --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmClassification.md b/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmClassification.md index f3dab41502..e8246c2794 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmClassification.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmClassification.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMClassification.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmclassification?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmclassification?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmClassification --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmClassificationPropertyDefinition.md b/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmClassificationPropertyDefinition.md index 56b5fb7878..cd265e20c9 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmClassificationPropertyDefinition.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmClassificationPropertyDefinition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMClassificationPropertyDefinition.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmclassificationpropertydefinition?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmclassificationpropertydefinition?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmClassificationPropertyDefinition --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmClassificationRule.md b/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmClassificationRule.md index 53eb189b18..ae91c4260b 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmClassificationRule.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmClassificationRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMClassificationRule.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmclassificationrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmclassificationrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmClassificationRule --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmEffectiveNamespace.md b/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmEffectiveNamespace.md index 2648a4a15b..433cfd0711 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmEffectiveNamespace.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmEffectiveNamespace.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMEffectiveNamespace.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmeffectivenamespace?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmeffectivenamespace?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmEffectiveNamespace --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmFileGroup.md b/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmFileGroup.md index 9f1d93091e..bb813b574e 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmFileGroup.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmFileGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFileGroup.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmfilegroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmfilegroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmFileGroup --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmFileManagementJob.md b/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmFileManagementJob.md index 4f0c49ced8..0581d8acdb 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmFileManagementJob.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmFileManagementJob.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMFileManagementJob.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmfilemanagementjob?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmfilemanagementjob?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmFileManagementJob --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmFileScreen.md b/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmFileScreen.md index 5a62e0413d..8ae3574abc 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmFileScreen.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmFileScreen.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFileScreen.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmfilescreen?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmfilescreen?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmFileScreen --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmFileScreenException.md b/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmFileScreenException.md index 9dc6fe42fa..01ed4571c6 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmFileScreenException.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmFileScreenException.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFileScreenException.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmfilescreenexception?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmfilescreenexception?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmFileScreenException --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmFileScreenTemplate.md b/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmFileScreenTemplate.md index d56d198780..7520871bea 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmFileScreenTemplate.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmFileScreenTemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFileScreenTemplate.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmfilescreentemplate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmfilescreentemplate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmFileScreenTemplate --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmMacro.md b/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmMacro.md index a381678101..5c9dad1a24 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmMacro.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmMacro.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmMacro.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmmacro?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmmacro?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmMacro --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmMgmtProperty.md b/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmMgmtProperty.md index d5fad602d3..e748c9bf99 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmMgmtProperty.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmMgmtProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmMgmtProperty.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmmgmtproperty?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmmgmtproperty?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmMgmtProperty --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmQuota.md b/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmQuota.md index e1b162664e..63654b4b2e 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmQuota.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmQuota.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmQuota.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmquota?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmquota?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmQuota --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmQuotaTemplate.md b/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmQuotaTemplate.md index ffab7bf28d..8453dcdce9 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmQuotaTemplate.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmQuotaTemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmQuotaTemplate.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmquotatemplate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmquotatemplate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmQuotaTemplate --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmRmsTemplate.md b/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmRmsTemplate.md index a8d4466e15..414cda1615 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmRmsTemplate.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmRmsTemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmRmsTemplate.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmrmstemplate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmrmstemplate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmRmsTemplate --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmSetting.md b/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmSetting.md index f661060e29..ee2cce8033 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmSetting.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmSetting.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmSetting --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmStorageReport.md b/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmStorageReport.md index 913d6d4a8e..b074e5fc24 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmStorageReport.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Get-FsrmStorageReport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmStorageReport.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmstoragereport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmstoragereport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmStorageReport --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmAction.md b/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmAction.md index 15f3cd2d15..14d78da822 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmAction.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmAction.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmAction.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmaction?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmaction?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmAction --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmAutoQuota.md b/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmAutoQuota.md index 09a2ed33b3..4bbbd7c870 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmAutoQuota.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmAutoQuota.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMAutoQuota.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmautoquota?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmautoquota?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmAutoQuota --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmClassificationPropertyDefinition.md b/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmClassificationPropertyDefinition.md index 90eba33bcf..e85b59f382 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmClassificationPropertyDefinition.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmClassificationPropertyDefinition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMClassificationPropertyDefinition.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmclassificationpropertydefinition?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmclassificationpropertydefinition?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmClassificationPropertyDefinition --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmClassificationPropertyValue.md b/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmClassificationPropertyValue.md index 2a3128f9c1..ac69166a3c 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmClassificationPropertyValue.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmClassificationPropertyValue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmClassificationPropertyValue.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmclassificationpropertyvalue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmclassificationpropertyvalue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmClassificationPropertyValue --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmClassificationRule.md b/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmClassificationRule.md index ff3198033d..34e9584cc6 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmClassificationRule.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmClassificationRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMClassificationRule.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmclassificationrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmclassificationrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmClassificationRule --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmFMJNotification.md b/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmFMJNotification.md index 0a4b71f6e6..28e43b7aef 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmFMJNotification.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmFMJNotification.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMFmjNotification.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfmjnotification?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfmjnotification?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmFMJNotification --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmFileGroup.md b/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmFileGroup.md index d95f71f192..e8b2803d4c 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmFileGroup.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmFileGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFileGroup.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfilegroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfilegroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmFileGroup --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmFileManagementJob.md b/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmFileManagementJob.md index 3d654f9fc1..7c66205a65 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmFileManagementJob.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmFileManagementJob.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMFileManagementJob.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfilemanagementjob?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfilemanagementjob?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmFileManagementJob --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmFileScreen.md b/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmFileScreen.md index 0a2acb73d5..1fa37ca046 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmFileScreen.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmFileScreen.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFileScreen.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfilescreen?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfilescreen?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmFileScreen --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmFileScreenException.md b/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmFileScreenException.md index be2590ef95..9b45121370 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmFileScreenException.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmFileScreenException.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFileScreenException.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfilescreenexception?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfilescreenexception?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmFileScreenException --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmFileScreenTemplate.md b/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmFileScreenTemplate.md index 7aacda0f20..84f78fb008 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmFileScreenTemplate.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmFileScreenTemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFileScreenTemplate.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfilescreentemplate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfilescreentemplate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmFileScreenTemplate --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmFmjAction.md b/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmFmjAction.md index bcbdfbfa4f..0c6c7368a1 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmFmjAction.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmFmjAction.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFmjAction.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfmjaction?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfmjaction?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmFmjAction --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmFmjCondition.md b/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmFmjCondition.md index f4dc3f0d93..ad0ac1bab2 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmFmjCondition.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmFmjCondition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMFmjCondition.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfmjcondition?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfmjcondition?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmFmjCondition --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmFmjNotificationAction.md b/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmFmjNotificationAction.md index 7d55a985d8..c50e10789a 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmFmjNotificationAction.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmFmjNotificationAction.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFmjNotificationAction.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfmjnotificationaction?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfmjnotificationaction?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmFmjNotificationAction --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmQuota.md b/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmQuota.md index b4d5047dfa..7def1eb494 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmQuota.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmQuota.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmQuota.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmquota?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmquota?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmQuota --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmQuotaTemplate.md b/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmQuotaTemplate.md index 65aec332ab..a83459ec0e 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmQuotaTemplate.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmQuotaTemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmQuotaTemplate.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmquotatemplate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmquotatemplate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmQuotaTemplate --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmQuotaThreshold.md b/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmQuotaThreshold.md index e8eb347bf5..8bf7730a11 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmQuotaThreshold.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmQuotaThreshold.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMQuotaThreshold.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmquotathreshold?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmquotathreshold?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmQuotaThreshold --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmScheduledTask.md b/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmScheduledTask.md index 222e1c1ac9..9d6778d62a 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmScheduledTask.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmScheduledTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmScheduledTask.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmscheduledtask?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmscheduledtask?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmScheduledTask --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmStorageReport.md b/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmStorageReport.md index b495e77e62..8aca4a36b1 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmStorageReport.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/New-FsrmStorageReport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmStorageReport.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmstoragereport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmstoragereport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmStorageReport --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Remove-FsrmAutoQuota.md b/docset/winserver2019-ps/fileserverresourcemanager/Remove-FsrmAutoQuota.md index 5abef06c02..6eb88f757c 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Remove-FsrmAutoQuota.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Remove-FsrmAutoQuota.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMAutoQuota.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmautoquota?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmautoquota?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-FsrmAutoQuota --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Remove-FsrmClassificationPropertyDefinition.md b/docset/winserver2019-ps/fileserverresourcemanager/Remove-FsrmClassificationPropertyDefinition.md index 74997589ee..72bb7e70f7 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Remove-FsrmClassificationPropertyDefinition.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Remove-FsrmClassificationPropertyDefinition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMClassificationPropertyDefinition.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmclassificationpropertydefinition?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmclassificationpropertydefinition?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-FsrmClassificationPropertyDefinition --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Remove-FsrmClassificationRule.md b/docset/winserver2019-ps/fileserverresourcemanager/Remove-FsrmClassificationRule.md index 39b5293558..6c393c0017 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Remove-FsrmClassificationRule.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Remove-FsrmClassificationRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMClassificationRule.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmclassificationrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmclassificationrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-FsrmClassificationRule --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Remove-FsrmFileGroup.md b/docset/winserver2019-ps/fileserverresourcemanager/Remove-FsrmFileGroup.md index 18964720e3..72579065e3 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Remove-FsrmFileGroup.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Remove-FsrmFileGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFileGroup.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmfilegroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmfilegroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-FsrmFileGroup --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Remove-FsrmFileManagementJob.md b/docset/winserver2019-ps/fileserverresourcemanager/Remove-FsrmFileManagementJob.md index 9d0a3958b9..47465338ff 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Remove-FsrmFileManagementJob.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Remove-FsrmFileManagementJob.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMFileManagementJob.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmfilemanagementjob?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmfilemanagementjob?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-FsrmFileManagementJob --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Remove-FsrmFileScreen.md b/docset/winserver2019-ps/fileserverresourcemanager/Remove-FsrmFileScreen.md index 844e7cab36..8ca6b61dde 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Remove-FsrmFileScreen.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Remove-FsrmFileScreen.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFileScreen.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmfilescreen?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmfilescreen?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-FsrmFileScreen --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Remove-FsrmFileScreenException.md b/docset/winserver2019-ps/fileserverresourcemanager/Remove-FsrmFileScreenException.md index 7080dd43b5..17985d63b0 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Remove-FsrmFileScreenException.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Remove-FsrmFileScreenException.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFileScreenException.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmfilescreenexception?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmfilescreenexception?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-FsrmFileScreenException --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Remove-FsrmFileScreenTemplate.md b/docset/winserver2019-ps/fileserverresourcemanager/Remove-FsrmFileScreenTemplate.md index 92fcfe2601..8ba0399931 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Remove-FsrmFileScreenTemplate.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Remove-FsrmFileScreenTemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFileScreenTemplate.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmfilescreentemplate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmfilescreentemplate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-FsrmFileScreenTemplate --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Remove-FsrmMgmtProperty.md b/docset/winserver2019-ps/fileserverresourcemanager/Remove-FsrmMgmtProperty.md index e33165139e..98a84df8dc 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Remove-FsrmMgmtProperty.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Remove-FsrmMgmtProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmMgmtProperty.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmmgmtproperty?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmmgmtproperty?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-FsrmMgmtProperty --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Remove-FsrmQuota.md b/docset/winserver2019-ps/fileserverresourcemanager/Remove-FsrmQuota.md index 0113c91440..e8a580d74b 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Remove-FsrmQuota.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Remove-FsrmQuota.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmQuota.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmquota?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmquota?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-FsrmQuota --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Remove-FsrmQuotaTemplate.md b/docset/winserver2019-ps/fileserverresourcemanager/Remove-FsrmQuotaTemplate.md index 1f95c604d9..c0f0e493ab 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Remove-FsrmQuotaTemplate.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Remove-FsrmQuotaTemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmQuotaTemplate.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmquotatemplate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmquotatemplate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-FsrmQuotaTemplate --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Remove-FsrmStorageReport.md b/docset/winserver2019-ps/fileserverresourcemanager/Remove-FsrmStorageReport.md index 94c01bb2a5..ec09e5aa5b 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Remove-FsrmStorageReport.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Remove-FsrmStorageReport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmStorageReport.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmstoragereport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmstoragereport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-FsrmStorageReport --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Reset-FsrmFileScreen.md b/docset/winserver2019-ps/fileserverresourcemanager/Reset-FsrmFileScreen.md index ca400f7823..92da85b6be 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Reset-FsrmFileScreen.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Reset-FsrmFileScreen.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFileScreen.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/reset-fsrmfilescreen?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/reset-fsrmfilescreen?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-FsrmFileScreen --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Reset-FsrmQuota.md b/docset/winserver2019-ps/fileserverresourcemanager/Reset-FsrmQuota.md index 56c0db401e..7782c05cd6 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Reset-FsrmQuota.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Reset-FsrmQuota.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmQuota.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/reset-fsrmquota?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/reset-fsrmquota?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-FsrmQuota --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Send-FsrmTestEmail.md b/docset/winserver2019-ps/fileserverresourcemanager/Send-FsrmTestEmail.md index 0536860d62..670a2778d2 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Send-FsrmTestEmail.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Send-FsrmTestEmail.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmTestEmail.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/send-fsrmtestemail?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/send-fsrmtestemail?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Send-FsrmTestEmail --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmAdrSetting.md b/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmAdrSetting.md index 6b3205a6f6..281347fe4d 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmAdrSetting.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmAdrSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmAdrSetting.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmadrsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmadrsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmAdrSetting --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmAutoQuota.md b/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmAutoQuota.md index 713b77f3a1..52e6ad5439 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmAutoQuota.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmAutoQuota.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMAutoQuota.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmautoquota?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmautoquota?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmAutoQuota --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmClassification.md b/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmClassification.md index 577bf0389d..31e851275f 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmClassification.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmClassification.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMClassification.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmclassification?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmclassification?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmClassification --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmClassificationPropertyDefinition.md b/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmClassificationPropertyDefinition.md index b3d0bcbd9e..9c5e32aad5 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmClassificationPropertyDefinition.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmClassificationPropertyDefinition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMClassificationPropertyDefinition.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmclassificationpropertydefinition?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmclassificationpropertydefinition?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmClassificationPropertyDefinition --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmClassificationRule.md b/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmClassificationRule.md index 6bb5f43271..6d68e62664 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmClassificationRule.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmClassificationRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMClassificationRule.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmclassificationrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmclassificationrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmClassificationRule --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmFileGroup.md b/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmFileGroup.md index 12f2b2dd1f..d8a20456a2 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmFileGroup.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmFileGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFileGroup.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmfilegroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmfilegroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmFileGroup --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmFileManagementJob.md b/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmFileManagementJob.md index 3b606ab540..d201ced86b 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmFileManagementJob.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmFileManagementJob.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMFileManagementJob.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmfilemanagementjob?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmfilemanagementjob?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmFileManagementJob --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmFileScreen.md b/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmFileScreen.md index ae30ebea5a..62b8e9a811 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmFileScreen.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmFileScreen.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFileScreen.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmfilescreen?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmfilescreen?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmFileScreen --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmFileScreenException.md b/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmFileScreenException.md index 1d8b35b5a1..92cc64eac9 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmFileScreenException.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmFileScreenException.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFileScreenException.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmfilescreenexception?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmfilescreenexception?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmFileScreenException --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmFileScreenTemplate.md b/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmFileScreenTemplate.md index 81301044cc..c43bde3d37 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmFileScreenTemplate.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmFileScreenTemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFileScreenTemplate.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmfilescreentemplate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmfilescreentemplate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmFileScreenTemplate --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmMgmtProperty.md b/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmMgmtProperty.md index 0b91ccb0f7..b9483a1985 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmMgmtProperty.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmMgmtProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmMgmtProperty.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmmgmtproperty?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmmgmtproperty?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmMgmtProperty --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmQuota.md b/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmQuota.md index d531d8934f..91dfa3b324 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmQuota.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmQuota.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmQuota.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmquota?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmquota?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmQuota --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmQuotaTemplate.md b/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmQuotaTemplate.md index aeb5d470e6..850da954bc 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmQuotaTemplate.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmQuotaTemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmQuotaTemplate.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmquotatemplate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmquotatemplate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmQuotaTemplate --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmSetting.md b/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmSetting.md index 5cea3e7fac..de23b7b4cb 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmSetting.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmSetting.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmSetting --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmStorageReport.md b/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmStorageReport.md index c5ee86df40..4b59cb5da6 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmStorageReport.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Set-FsrmStorageReport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmStorageReport.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmstoragereport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmstoragereport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmStorageReport --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Start-FsrmClassification.md b/docset/winserver2019-ps/fileserverresourcemanager/Start-FsrmClassification.md index f522598873..2fe71cbc90 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Start-FsrmClassification.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Start-FsrmClassification.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMClassification.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/start-fsrmclassification?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/start-fsrmclassification?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-FsrmClassification --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Start-FsrmFileManagementJob.md b/docset/winserver2019-ps/fileserverresourcemanager/Start-FsrmFileManagementJob.md index 3154bec799..dde8d56ee3 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Start-FsrmFileManagementJob.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Start-FsrmFileManagementJob.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMFileManagementJob.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/start-fsrmfilemanagementjob?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/start-fsrmfilemanagementjob?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-FsrmFileManagementJob --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Start-FsrmStorageReport.md b/docset/winserver2019-ps/fileserverresourcemanager/Start-FsrmStorageReport.md index 2038ee4663..70d1ac6eed 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Start-FsrmStorageReport.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Start-FsrmStorageReport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmStorageReport.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/start-fsrmstoragereport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/start-fsrmstoragereport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-FsrmStorageReport --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Stop-FsrmClassification.md b/docset/winserver2019-ps/fileserverresourcemanager/Stop-FsrmClassification.md index 490f0b91ef..f855e30628 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Stop-FsrmClassification.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Stop-FsrmClassification.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMClassification.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/stop-fsrmclassification?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/stop-fsrmclassification?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-FsrmClassification --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Stop-FsrmFileManagementJob.md b/docset/winserver2019-ps/fileserverresourcemanager/Stop-FsrmFileManagementJob.md index e64456db59..a96fe7276a 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Stop-FsrmFileManagementJob.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Stop-FsrmFileManagementJob.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMFileManagementJob.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/stop-fsrmfilemanagementjob?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/stop-fsrmfilemanagementjob?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-FsrmFileManagementJob --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Stop-FsrmStorageReport.md b/docset/winserver2019-ps/fileserverresourcemanager/Stop-FsrmStorageReport.md index b1b1beab1f..6efa4cfa81 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Stop-FsrmStorageReport.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Stop-FsrmStorageReport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmStorageReport.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/stop-fsrmstoragereport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/stop-fsrmstoragereport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-FsrmStorageReport --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Update-FsrmAutoQuota.md b/docset/winserver2019-ps/fileserverresourcemanager/Update-FsrmAutoQuota.md index f0dddd5b68..98fc69b424 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Update-FsrmAutoQuota.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Update-FsrmAutoQuota.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMAutoQuota.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/update-fsrmautoquota?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/update-fsrmautoquota?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-FsrmAutoQuota --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Update-FsrmClassificationPropertyDefinition.md b/docset/winserver2019-ps/fileserverresourcemanager/Update-FsrmClassificationPropertyDefinition.md index 690211abd5..a76a47c0ae 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Update-FsrmClassificationPropertyDefinition.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Update-FsrmClassificationPropertyDefinition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMClassificationPropertyDefinition.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/update-fsrmclassificationpropertydefinition?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/update-fsrmclassificationpropertydefinition?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-FsrmClassificationPropertyDefinition --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Update-FsrmQuota.md b/docset/winserver2019-ps/fileserverresourcemanager/Update-FsrmQuota.md index 2086e2e2ee..ff2b8a0ecc 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Update-FsrmQuota.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Update-FsrmQuota.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmQuota.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/update-fsrmquota?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/update-fsrmquota?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-FsrmQuota --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Wait-FsrmClassification.md b/docset/winserver2019-ps/fileserverresourcemanager/Wait-FsrmClassification.md index b59ae3a32e..610cd1aabb 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Wait-FsrmClassification.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Wait-FsrmClassification.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMClassification.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/wait-fsrmclassification?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/wait-fsrmclassification?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Wait-FsrmClassification --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Wait-FsrmFileManagementJob.md b/docset/winserver2019-ps/fileserverresourcemanager/Wait-FsrmFileManagementJob.md index d3240d6edd..da80c737c5 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Wait-FsrmFileManagementJob.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Wait-FsrmFileManagementJob.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMFileManagementJob.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/wait-fsrmfilemanagementjob?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/wait-fsrmfilemanagementjob?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Wait-FsrmFileManagementJob --- diff --git a/docset/winserver2019-ps/fileserverresourcemanager/Wait-FsrmStorageReport.md b/docset/winserver2019-ps/fileserverresourcemanager/Wait-FsrmStorageReport.md index dd6b7abe58..dee981a443 100644 --- a/docset/winserver2019-ps/fileserverresourcemanager/Wait-FsrmStorageReport.md +++ b/docset/winserver2019-ps/fileserverresourcemanager/Wait-FsrmStorageReport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmStorageReport.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/wait-fsrmstoragereport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/wait-fsrmstoragereport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Wait-FsrmStorageReport --- diff --git a/docset/winserver2019-ps/grouppolicy/Backup-GPO.md b/docset/winserver2019-ps/grouppolicy/Backup-GPO.md index 806beded52..a322895f1c 100644 --- a/docset/winserver2019-ps/grouppolicy/Backup-GPO.md +++ b/docset/winserver2019-ps/grouppolicy/Backup-GPO.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/backup-gpo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/backup-gpo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Backup-GPO --- diff --git a/docset/winserver2019-ps/grouppolicy/Copy-GPO.md b/docset/winserver2019-ps/grouppolicy/Copy-GPO.md index ac21bb0148..964917e1a1 100644 --- a/docset/winserver2019-ps/grouppolicy/Copy-GPO.md +++ b/docset/winserver2019-ps/grouppolicy/Copy-GPO.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/copy-gpo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/copy-gpo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Copy-GPO --- diff --git a/docset/winserver2019-ps/grouppolicy/Get-GPInheritance.md b/docset/winserver2019-ps/grouppolicy/Get-GPInheritance.md index 9e1f28c878..0ab6d3e34b 100644 --- a/docset/winserver2019-ps/grouppolicy/Get-GPInheritance.md +++ b/docset/winserver2019-ps/grouppolicy/Get-GPInheritance.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/get-gpinheritance?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/get-gpinheritance?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-GPInheritance --- diff --git a/docset/winserver2019-ps/grouppolicy/Get-GPO.md b/docset/winserver2019-ps/grouppolicy/Get-GPO.md index 9d53790849..afa1f629d3 100644 --- a/docset/winserver2019-ps/grouppolicy/Get-GPO.md +++ b/docset/winserver2019-ps/grouppolicy/Get-GPO.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/get-gpo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/get-gpo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-GPO --- diff --git a/docset/winserver2019-ps/grouppolicy/Get-GPOReport.md b/docset/winserver2019-ps/grouppolicy/Get-GPOReport.md index 70a8de6434..10ecdfbdf3 100644 --- a/docset/winserver2019-ps/grouppolicy/Get-GPOReport.md +++ b/docset/winserver2019-ps/grouppolicy/Get-GPOReport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/get-gporeport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/get-gporeport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-GPOReport --- diff --git a/docset/winserver2019-ps/grouppolicy/Get-GPPermission.md b/docset/winserver2019-ps/grouppolicy/Get-GPPermission.md index 64e42056a9..ddfcb48482 100644 --- a/docset/winserver2019-ps/grouppolicy/Get-GPPermission.md +++ b/docset/winserver2019-ps/grouppolicy/Get-GPPermission.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/get-gppermission?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/get-gppermission?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-GPPermission --- diff --git a/docset/winserver2019-ps/grouppolicy/Get-GPPrefRegistryValue.md b/docset/winserver2019-ps/grouppolicy/Get-GPPrefRegistryValue.md index 73431e7535..55cde82878 100644 --- a/docset/winserver2019-ps/grouppolicy/Get-GPPrefRegistryValue.md +++ b/docset/winserver2019-ps/grouppolicy/Get-GPPrefRegistryValue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/get-gpprefregistryvalue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/get-gpprefregistryvalue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-GPPrefRegistryValue --- diff --git a/docset/winserver2019-ps/grouppolicy/Get-GPRegistryValue.md b/docset/winserver2019-ps/grouppolicy/Get-GPRegistryValue.md index a5c7a3584b..94346827d1 100644 --- a/docset/winserver2019-ps/grouppolicy/Get-GPRegistryValue.md +++ b/docset/winserver2019-ps/grouppolicy/Get-GPRegistryValue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/get-gpregistryvalue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/get-gpregistryvalue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-GPRegistryValue --- diff --git a/docset/winserver2019-ps/grouppolicy/Get-GPResultantSetOfPolicy.md b/docset/winserver2019-ps/grouppolicy/Get-GPResultantSetOfPolicy.md index 0332d5a0aa..6aa00f185b 100644 --- a/docset/winserver2019-ps/grouppolicy/Get-GPResultantSetOfPolicy.md +++ b/docset/winserver2019-ps/grouppolicy/Get-GPResultantSetOfPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/get-gpresultantsetofpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/get-gpresultantsetofpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-GPResultantSetOfPolicy --- diff --git a/docset/winserver2019-ps/grouppolicy/Get-GPStarterGPO.md b/docset/winserver2019-ps/grouppolicy/Get-GPStarterGPO.md index c3557c9feb..15c2e4b05e 100644 --- a/docset/winserver2019-ps/grouppolicy/Get-GPStarterGPO.md +++ b/docset/winserver2019-ps/grouppolicy/Get-GPStarterGPO.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/get-gpstartergpo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/get-gpstartergpo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-GPStarterGPO --- diff --git a/docset/winserver2019-ps/grouppolicy/Import-GPO.md b/docset/winserver2019-ps/grouppolicy/Import-GPO.md index 3816b89588..4b7059c82f 100644 --- a/docset/winserver2019-ps/grouppolicy/Import-GPO.md +++ b/docset/winserver2019-ps/grouppolicy/Import-GPO.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/import-gpo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/import-gpo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-GPO --- diff --git a/docset/winserver2019-ps/grouppolicy/Invoke-GPUpdate.md b/docset/winserver2019-ps/grouppolicy/Invoke-GPUpdate.md index 8972bee352..c00530ffeb 100644 --- a/docset/winserver2019-ps/grouppolicy/Invoke-GPUpdate.md +++ b/docset/winserver2019-ps/grouppolicy/Invoke-GPUpdate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/invoke-gpupdate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/invoke-gpupdate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-GPUpdate --- diff --git a/docset/winserver2019-ps/grouppolicy/New-GPLink.md b/docset/winserver2019-ps/grouppolicy/New-GPLink.md index e1b7be5143..be3fa56f2d 100644 --- a/docset/winserver2019-ps/grouppolicy/New-GPLink.md +++ b/docset/winserver2019-ps/grouppolicy/New-GPLink.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/new-gplink?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/new-gplink?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-GPLink --- diff --git a/docset/winserver2019-ps/grouppolicy/New-GPO.md b/docset/winserver2019-ps/grouppolicy/New-GPO.md index ab8a931845..7abafe4354 100644 --- a/docset/winserver2019-ps/grouppolicy/New-GPO.md +++ b/docset/winserver2019-ps/grouppolicy/New-GPO.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/new-gpo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/new-gpo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-GPO --- diff --git a/docset/winserver2019-ps/grouppolicy/New-GPStarterGPO.md b/docset/winserver2019-ps/grouppolicy/New-GPStarterGPO.md index c189de49de..87c03065bb 100644 --- a/docset/winserver2019-ps/grouppolicy/New-GPStarterGPO.md +++ b/docset/winserver2019-ps/grouppolicy/New-GPStarterGPO.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/new-gpstartergpo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/new-gpstartergpo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-GPStarterGPO --- diff --git a/docset/winserver2019-ps/grouppolicy/Remove-GPLink.md b/docset/winserver2019-ps/grouppolicy/Remove-GPLink.md index cc89ae277e..37338c9e12 100644 --- a/docset/winserver2019-ps/grouppolicy/Remove-GPLink.md +++ b/docset/winserver2019-ps/grouppolicy/Remove-GPLink.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/remove-gplink?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/remove-gplink?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-GPLink --- diff --git a/docset/winserver2019-ps/grouppolicy/Remove-GPO.md b/docset/winserver2019-ps/grouppolicy/Remove-GPO.md index 4e16da981f..45358c1bfe 100644 --- a/docset/winserver2019-ps/grouppolicy/Remove-GPO.md +++ b/docset/winserver2019-ps/grouppolicy/Remove-GPO.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/remove-gpo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/remove-gpo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-GPO --- diff --git a/docset/winserver2019-ps/grouppolicy/Remove-GPPrefRegistryValue.md b/docset/winserver2019-ps/grouppolicy/Remove-GPPrefRegistryValue.md index 8e621725c9..2266a4d93c 100644 --- a/docset/winserver2019-ps/grouppolicy/Remove-GPPrefRegistryValue.md +++ b/docset/winserver2019-ps/grouppolicy/Remove-GPPrefRegistryValue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/remove-gpprefregistryvalue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/remove-gpprefregistryvalue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-GPPrefRegistryValue --- diff --git a/docset/winserver2019-ps/grouppolicy/Remove-GPRegistryValue.md b/docset/winserver2019-ps/grouppolicy/Remove-GPRegistryValue.md index abaa04230a..38b0121960 100644 --- a/docset/winserver2019-ps/grouppolicy/Remove-GPRegistryValue.md +++ b/docset/winserver2019-ps/grouppolicy/Remove-GPRegistryValue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/remove-gpregistryvalue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/remove-gpregistryvalue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-GPRegistryValue --- diff --git a/docset/winserver2019-ps/grouppolicy/Rename-GPO.md b/docset/winserver2019-ps/grouppolicy/Rename-GPO.md index bf7ed70765..4876d06161 100644 --- a/docset/winserver2019-ps/grouppolicy/Rename-GPO.md +++ b/docset/winserver2019-ps/grouppolicy/Rename-GPO.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/rename-gpo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/rename-gpo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-GPO --- diff --git a/docset/winserver2019-ps/grouppolicy/Restore-GPO.md b/docset/winserver2019-ps/grouppolicy/Restore-GPO.md index a834062a0a..c5cbeb6c0b 100644 --- a/docset/winserver2019-ps/grouppolicy/Restore-GPO.md +++ b/docset/winserver2019-ps/grouppolicy/Restore-GPO.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/restore-gpo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/restore-gpo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-GPO --- diff --git a/docset/winserver2019-ps/grouppolicy/Set-GPInheritance.md b/docset/winserver2019-ps/grouppolicy/Set-GPInheritance.md index 3728129304..98fa5f0ea1 100644 --- a/docset/winserver2019-ps/grouppolicy/Set-GPInheritance.md +++ b/docset/winserver2019-ps/grouppolicy/Set-GPInheritance.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/set-gpinheritance?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/set-gpinheritance?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-GPInheritance --- diff --git a/docset/winserver2019-ps/grouppolicy/Set-GPLink.md b/docset/winserver2019-ps/grouppolicy/Set-GPLink.md index 78e466a62a..e1fe02cee7 100644 --- a/docset/winserver2019-ps/grouppolicy/Set-GPLink.md +++ b/docset/winserver2019-ps/grouppolicy/Set-GPLink.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/set-gplink?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/set-gplink?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-GPLink --- diff --git a/docset/winserver2019-ps/grouppolicy/Set-GPPermission.md b/docset/winserver2019-ps/grouppolicy/Set-GPPermission.md index 5673e28c8f..954bab253d 100644 --- a/docset/winserver2019-ps/grouppolicy/Set-GPPermission.md +++ b/docset/winserver2019-ps/grouppolicy/Set-GPPermission.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/set-gppermission?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/set-gppermission?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-GPPermission --- diff --git a/docset/winserver2019-ps/grouppolicy/Set-GPPrefRegistryValue.md b/docset/winserver2019-ps/grouppolicy/Set-GPPrefRegistryValue.md index 66967243b2..40415e803d 100644 --- a/docset/winserver2019-ps/grouppolicy/Set-GPPrefRegistryValue.md +++ b/docset/winserver2019-ps/grouppolicy/Set-GPPrefRegistryValue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/set-gpprefregistryvalue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/set-gpprefregistryvalue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-GPPrefRegistryValue --- diff --git a/docset/winserver2019-ps/grouppolicy/Set-GPRegistryValue.md b/docset/winserver2019-ps/grouppolicy/Set-GPRegistryValue.md index 3698ccf451..eeced4ccd5 100644 --- a/docset/winserver2019-ps/grouppolicy/Set-GPRegistryValue.md +++ b/docset/winserver2019-ps/grouppolicy/Set-GPRegistryValue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/set-gpregistryvalue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/set-gpregistryvalue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-GPRegistryValue --- diff --git a/docset/winserver2019-ps/hardwarecertification/Export-HwCertTestCollectionToXml.md b/docset/winserver2019-ps/hardwarecertification/Export-HwCertTestCollectionToXml.md index 65c3dc1078..b8c921048b 100644 --- a/docset/winserver2019-ps/hardwarecertification/Export-HwCertTestCollectionToXml.md +++ b/docset/winserver2019-ps/hardwarecertification/Export-HwCertTestCollectionToXml.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: microsoft.windows.kits.hardware.certification.management.dll-Help.xml Module Name: HardwareCertification ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hardwarecertification/export-hwcerttestcollectiontoxml?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hardwarecertification/export-hwcerttestcollectiontoxml?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-HwCertTestCollectionToXml --- diff --git a/docset/winserver2019-ps/hardwarecertification/Import-HwCertTestCollectionFromXml.md b/docset/winserver2019-ps/hardwarecertification/Import-HwCertTestCollectionFromXml.md index 91a137274c..1768cb5bf3 100644 --- a/docset/winserver2019-ps/hardwarecertification/Import-HwCertTestCollectionFromXml.md +++ b/docset/winserver2019-ps/hardwarecertification/Import-HwCertTestCollectionFromXml.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: microsoft.windows.kits.hardware.certification.management.dll-Help.xml Module Name: HardwareCertification ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hardwarecertification/import-hwcerttestcollectionfromxml?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hardwarecertification/import-hwcerttestcollectionfromxml?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-HwCertTestCollectionFromXml --- diff --git a/docset/winserver2019-ps/hardwarecertification/Merge-HwCertTestCollectionFromPackage.md b/docset/winserver2019-ps/hardwarecertification/Merge-HwCertTestCollectionFromPackage.md index 32bc4fdaa1..766dc60330 100644 --- a/docset/winserver2019-ps/hardwarecertification/Merge-HwCertTestCollectionFromPackage.md +++ b/docset/winserver2019-ps/hardwarecertification/Merge-HwCertTestCollectionFromPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: microsoft.windows.kits.hardware.certification.management.dll-Help.xml Module Name: HardwareCertification ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hardwarecertification/merge-hwcerttestcollectionfrompackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hardwarecertification/merge-hwcerttestcollectionfrompackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Merge-HwCertTestCollectionFromPackage --- diff --git a/docset/winserver2019-ps/hardwarecertification/Merge-HwCertTestCollectionFromXml.md b/docset/winserver2019-ps/hardwarecertification/Merge-HwCertTestCollectionFromXml.md index 050b445091..d7745e4f20 100644 --- a/docset/winserver2019-ps/hardwarecertification/Merge-HwCertTestCollectionFromXml.md +++ b/docset/winserver2019-ps/hardwarecertification/Merge-HwCertTestCollectionFromXml.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: microsoft.windows.kits.hardware.certification.management.dll-Help.xml Module Name: HardwareCertification ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hardwarecertification/merge-hwcerttestcollectionfromxml?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hardwarecertification/merge-hwcerttestcollectionfromxml?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Merge-HwCertTestCollectionFromXml --- diff --git a/docset/winserver2019-ps/hardwarecertification/New-HwCertProjectDefinitionFile.md b/docset/winserver2019-ps/hardwarecertification/New-HwCertProjectDefinitionFile.md index 4c6dbedd13..fedbcb14d2 100644 --- a/docset/winserver2019-ps/hardwarecertification/New-HwCertProjectDefinitionFile.md +++ b/docset/winserver2019-ps/hardwarecertification/New-HwCertProjectDefinitionFile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: microsoft.windows.kits.hardware.certification.management.dll-Help.xml Module Name: HardwareCertification ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hardwarecertification/new-hwcertprojectdefinitionfile?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hardwarecertification/new-hwcertprojectdefinitionfile?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-HwCertProjectDefinitionFile --- diff --git a/docset/winserver2019-ps/hardwarecertification/New-HwCertTestCollection.md b/docset/winserver2019-ps/hardwarecertification/New-HwCertTestCollection.md index ccee574031..4aecd253b2 100644 --- a/docset/winserver2019-ps/hardwarecertification/New-HwCertTestCollection.md +++ b/docset/winserver2019-ps/hardwarecertification/New-HwCertTestCollection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: microsoft.windows.kits.hardware.certification.management.dll-Help.xml Module Name: HardwareCertification ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hardwarecertification/new-hwcerttestcollection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hardwarecertification/new-hwcerttestcollection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-HwCertTestCollection --- diff --git a/docset/winserver2019-ps/hardwarecertification/New-HwCertTestCollectionExcelReport.md b/docset/winserver2019-ps/hardwarecertification/New-HwCertTestCollectionExcelReport.md index ae43d5a0b7..4a816a95d2 100644 --- a/docset/winserver2019-ps/hardwarecertification/New-HwCertTestCollectionExcelReport.md +++ b/docset/winserver2019-ps/hardwarecertification/New-HwCertTestCollectionExcelReport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: microsoft.windows.kits.hardware.certification.management.dll-Help.xml Module Name: HardwareCertification ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hardwarecertification/new-hwcerttestcollectionexcelreport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hardwarecertification/new-hwcerttestcollectionexcelreport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-HwCertTestCollectionExcelReport --- diff --git a/docset/winserver2019-ps/hgsattestation/Add-HgsAttestationCIPolicy.md b/docset/winserver2019-ps/hgsattestation/Add-HgsAttestationCIPolicy.md index af1a498095..fa3ca229fa 100644 --- a/docset/winserver2019-ps/hgsattestation/Add-HgsAttestationCIPolicy.md +++ b/docset/winserver2019-ps/hgsattestation/Add-HgsAttestationCIPolicy.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Windows.RemoteAttestation.Server.PowerShell.dll-Help.xml Module Name: HgsAttestation -online version: https://docs.microsoft.com/powershell/module/hgsattestation/add-hgsattestationcipolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsattestation/add-hgsattestationcipolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-HgsAttestationCIPolicy --- diff --git a/docset/winserver2019-ps/hgsattestation/Add-HgsAttestationDumpPolicy.md b/docset/winserver2019-ps/hgsattestation/Add-HgsAttestationDumpPolicy.md index b511f97028..aa7f37e907 100644 --- a/docset/winserver2019-ps/hgsattestation/Add-HgsAttestationDumpPolicy.md +++ b/docset/winserver2019-ps/hgsattestation/Add-HgsAttestationDumpPolicy.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Windows.RemoteAttestation.Server.PowerShell.dll-Help.xml Module Name: HgsAttestation -online version: https://docs.microsoft.com/powershell/module/hgsattestation/add-hgsattestationdumppolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsattestation/add-hgsattestationdumppolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-HgsAttestationDumpPolicy --- diff --git a/docset/winserver2019-ps/hgsattestation/Add-HgsAttestationHostGroup.md b/docset/winserver2019-ps/hgsattestation/Add-HgsAttestationHostGroup.md index 57c14ba73c..b83963a833 100644 --- a/docset/winserver2019-ps/hgsattestation/Add-HgsAttestationHostGroup.md +++ b/docset/winserver2019-ps/hgsattestation/Add-HgsAttestationHostGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.RemoteAttestation.Server.PowerShell.dll-Help.xml Module Name: HgsAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsattestation/add-hgsattestationhostgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsattestation/add-hgsattestationhostgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-HgsAttestationHostGroup --- diff --git a/docset/winserver2019-ps/hgsattestation/Add-HgsAttestationTpmHost.md b/docset/winserver2019-ps/hgsattestation/Add-HgsAttestationTpmHost.md index ca1905f8d1..8e7450f17a 100644 --- a/docset/winserver2019-ps/hgsattestation/Add-HgsAttestationTpmHost.md +++ b/docset/winserver2019-ps/hgsattestation/Add-HgsAttestationTpmHost.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.RemoteAttestation.Server.PowerShell.dll-Help.xml Module Name: HgsAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsattestation/add-hgsattestationtpmhost?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsattestation/add-hgsattestationtpmhost?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-HgsAttestationTpmHost --- diff --git a/docset/winserver2019-ps/hgsattestation/Add-HgsAttestationTpmPolicy.md b/docset/winserver2019-ps/hgsattestation/Add-HgsAttestationTpmPolicy.md index 7bce91e094..8e7d5de5f3 100644 --- a/docset/winserver2019-ps/hgsattestation/Add-HgsAttestationTpmPolicy.md +++ b/docset/winserver2019-ps/hgsattestation/Add-HgsAttestationTpmPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.RemoteAttestation.Server.PowerShell.dll-Help.xml Module Name: HgsAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsattestation/add-hgsattestationtpmpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsattestation/add-hgsattestationtpmpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-HgsAttestationTpmPolicy --- diff --git a/docset/winserver2019-ps/hgsattestation/Disable-HgsAttestationPolicy.md b/docset/winserver2019-ps/hgsattestation/Disable-HgsAttestationPolicy.md index 1f9679f1dc..befba9aa42 100644 --- a/docset/winserver2019-ps/hgsattestation/Disable-HgsAttestationPolicy.md +++ b/docset/winserver2019-ps/hgsattestation/Disable-HgsAttestationPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.RemoteAttestation.Server.PowerShell.dll-Help.xml Module Name: HgsAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsattestation/disable-hgsattestationpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsattestation/disable-hgsattestationpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-HgsAttestationPolicy --- diff --git a/docset/winserver2019-ps/hgsattestation/Enable-HgsAttestationPolicy.md b/docset/winserver2019-ps/hgsattestation/Enable-HgsAttestationPolicy.md index 16b594655d..54b19b2e9f 100644 --- a/docset/winserver2019-ps/hgsattestation/Enable-HgsAttestationPolicy.md +++ b/docset/winserver2019-ps/hgsattestation/Enable-HgsAttestationPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.RemoteAttestation.Server.PowerShell.dll-Help.xml Module Name: HgsAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsattestation/enable-hgsattestationpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsattestation/enable-hgsattestationpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-HgsAttestationPolicy --- diff --git a/docset/winserver2019-ps/hgsattestation/Get-HgsAttestationHostGroup.md b/docset/winserver2019-ps/hgsattestation/Get-HgsAttestationHostGroup.md index 8159a8f586..b951d75657 100644 --- a/docset/winserver2019-ps/hgsattestation/Get-HgsAttestationHostGroup.md +++ b/docset/winserver2019-ps/hgsattestation/Get-HgsAttestationHostGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.RemoteAttestation.Server.PowerShell.dll-Help.xml Module Name: HgsAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsattestation/get-hgsattestationhostgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsattestation/get-hgsattestationhostgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HgsAttestationHostGroup --- diff --git a/docset/winserver2019-ps/hgsattestation/Get-HgsAttestationPolicy.md b/docset/winserver2019-ps/hgsattestation/Get-HgsAttestationPolicy.md index c9e4a9d072..2fe3ec3791 100644 --- a/docset/winserver2019-ps/hgsattestation/Get-HgsAttestationPolicy.md +++ b/docset/winserver2019-ps/hgsattestation/Get-HgsAttestationPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.RemoteAttestation.Server.PowerShell.dll-Help.xml Module Name: HgsAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsattestation/get-hgsattestationpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsattestation/get-hgsattestationpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HgsAttestationPolicy --- diff --git a/docset/winserver2019-ps/hgsattestation/Get-HgsAttestationSignerCertificate.md b/docset/winserver2019-ps/hgsattestation/Get-HgsAttestationSignerCertificate.md index 4850becab2..9988f2154b 100644 --- a/docset/winserver2019-ps/hgsattestation/Get-HgsAttestationSignerCertificate.md +++ b/docset/winserver2019-ps/hgsattestation/Get-HgsAttestationSignerCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.RemoteAttestation.Server.PowerShell.dll-Help.xml Module Name: HgsAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsattestation/get-hgsattestationsignercertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsattestation/get-hgsattestationsignercertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HgsAttestationSignerCertificate --- diff --git a/docset/winserver2019-ps/hgsattestation/Get-HgsAttestationTpmHost.md b/docset/winserver2019-ps/hgsattestation/Get-HgsAttestationTpmHost.md index 6fc39fd057..5b17fdcce4 100644 --- a/docset/winserver2019-ps/hgsattestation/Get-HgsAttestationTpmHost.md +++ b/docset/winserver2019-ps/hgsattestation/Get-HgsAttestationTpmHost.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.RemoteAttestation.Server.PowerShell.dll-Help.xml Module Name: HgsAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsattestation/get-hgsattestationtpmhost?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsattestation/get-hgsattestationtpmhost?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HgsAttestationTpmHost --- diff --git a/docset/winserver2019-ps/hgsattestation/Remove-HgsAttestationHostGroup.md b/docset/winserver2019-ps/hgsattestation/Remove-HgsAttestationHostGroup.md index e0338d486b..d01cb4692a 100644 --- a/docset/winserver2019-ps/hgsattestation/Remove-HgsAttestationHostGroup.md +++ b/docset/winserver2019-ps/hgsattestation/Remove-HgsAttestationHostGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.RemoteAttestation.Server.PowerShell.dll-Help.xml Module Name: HgsAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsattestation/remove-hgsattestationhostgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsattestation/remove-hgsattestationhostgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-HgsAttestationHostGroup --- diff --git a/docset/winserver2019-ps/hgsattestation/Remove-HgsAttestationPolicy.md b/docset/winserver2019-ps/hgsattestation/Remove-HgsAttestationPolicy.md index c2bf1b9825..66e8b596e3 100644 --- a/docset/winserver2019-ps/hgsattestation/Remove-HgsAttestationPolicy.md +++ b/docset/winserver2019-ps/hgsattestation/Remove-HgsAttestationPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.RemoteAttestation.Server.PowerShell.dll-Help.xml Module Name: HgsAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsattestation/remove-hgsattestationpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsattestation/remove-hgsattestationpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-HgsAttestationPolicy --- diff --git a/docset/winserver2019-ps/hgsattestation/Remove-HgsAttestationTpmHost.md b/docset/winserver2019-ps/hgsattestation/Remove-HgsAttestationTpmHost.md index 35a52ec654..5f55723695 100644 --- a/docset/winserver2019-ps/hgsattestation/Remove-HgsAttestationTpmHost.md +++ b/docset/winserver2019-ps/hgsattestation/Remove-HgsAttestationTpmHost.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.RemoteAttestation.Server.PowerShell.dll-Help.xml Module Name: HgsAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsattestation/remove-hgsattestationtpmhost?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsattestation/remove-hgsattestationtpmhost?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-HgsAttestationTpmHost --- diff --git a/docset/winserver2019-ps/hgsclient/ConvertTo-HgsKeyProtector.md b/docset/winserver2019-ps/hgsclient/ConvertTo-HgsKeyProtector.md index 212e1b790c..6fba6900fa 100644 --- a/docset/winserver2019-ps/hgsclient/ConvertTo-HgsKeyProtector.md +++ b/docset/winserver2019-ps/hgsclient/ConvertTo-HgsKeyProtector.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_HgsKeyProtector_v1.0.cdxml-help.xml Module Name: HgsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsclient/convertto-hgskeyprotector?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsclient/convertto-hgskeyprotector?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: ConvertTo-HgsKeyProtector --- diff --git a/docset/winserver2019-ps/hgsclient/Export-HgsGuardian.md b/docset/winserver2019-ps/hgsclient/Export-HgsGuardian.md index eedb4f3692..b12c66080d 100644 --- a/docset/winserver2019-ps/hgsclient/Export-HgsGuardian.md +++ b/docset/winserver2019-ps/hgsclient/Export-HgsGuardian.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: HgsClient-help.xml Module Name: HgsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsclient/export-hgsguardian?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsclient/export-hgsguardian?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-HgsGuardian --- diff --git a/docset/winserver2019-ps/hgsclient/Get-HgsAttestationBaselinePolicy.md b/docset/winserver2019-ps/hgsclient/Get-HgsAttestationBaselinePolicy.md index f7bce06782..a7767333d7 100644 --- a/docset/winserver2019-ps/hgsclient/Get-HgsAttestationBaselinePolicy.md +++ b/docset/winserver2019-ps/hgsclient/Get-HgsAttestationBaselinePolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.RemoteAttestation.Client.PowerShell.dll-Help.xml Module Name: HgsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsclient/get-hgsattestationbaselinepolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsclient/get-hgsattestationbaselinepolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HgsAttestationBaselinePolicy --- diff --git a/docset/winserver2019-ps/hgsclient/Get-HgsClientConfiguration.md b/docset/winserver2019-ps/hgsclient/Get-HgsClientConfiguration.md index 6fa3ce6c22..44968a421f 100644 --- a/docset/winserver2019-ps/hgsclient/Get-HgsClientConfiguration.md +++ b/docset/winserver2019-ps/hgsclient/Get-HgsClientConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_HgsClientConfiguration_v1.0.cdxml-help.xml Module Name: HgsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsclient/get-hgsclientconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsclient/get-hgsclientconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HgsClientConfiguration --- diff --git a/docset/winserver2019-ps/hgsclient/Get-HgsGuardian.md b/docset/winserver2019-ps/hgsclient/Get-HgsGuardian.md index 49995b1bc5..743514b6e8 100644 --- a/docset/winserver2019-ps/hgsclient/Get-HgsGuardian.md +++ b/docset/winserver2019-ps/hgsclient/Get-HgsGuardian.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_HgsGuardian_v1.0.cdxml-help.xml Module Name: HgsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsclient/get-hgsguardian?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsclient/get-hgsguardian?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HgsGuardian --- diff --git a/docset/winserver2019-ps/hgsclient/Grant-HgsKeyProtectorAccess.md b/docset/winserver2019-ps/hgsclient/Grant-HgsKeyProtectorAccess.md index f2596827be..0ffd23adbc 100644 --- a/docset/winserver2019-ps/hgsclient/Grant-HgsKeyProtectorAccess.md +++ b/docset/winserver2019-ps/hgsclient/Grant-HgsKeyProtectorAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: HgsClient-help.xml Module Name: HgsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsclient/grant-hgskeyprotectoraccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsclient/grant-hgskeyprotectoraccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Grant-HgsKeyProtectorAccess --- diff --git a/docset/winserver2019-ps/hgsclient/Import-HgsGuardian.md b/docset/winserver2019-ps/hgsclient/Import-HgsGuardian.md index b017576b01..3c41b40e1c 100644 --- a/docset/winserver2019-ps/hgsclient/Import-HgsGuardian.md +++ b/docset/winserver2019-ps/hgsclient/Import-HgsGuardian.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: HgsClient-help.xml Module Name: HgsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsclient/import-hgsguardian?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsclient/import-hgsguardian?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-HgsGuardian --- diff --git a/docset/winserver2019-ps/hgsclient/New-HgsGuardian.md b/docset/winserver2019-ps/hgsclient/New-HgsGuardian.md index 8d824e6f20..40010f7287 100644 --- a/docset/winserver2019-ps/hgsclient/New-HgsGuardian.md +++ b/docset/winserver2019-ps/hgsclient/New-HgsGuardian.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: HgsClient-help.xml Module Name: HgsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsclient/new-hgsguardian?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsclient/new-hgsguardian?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-HgsGuardian --- diff --git a/docset/winserver2019-ps/hgsclient/New-HgsKeyProtector.md b/docset/winserver2019-ps/hgsclient/New-HgsKeyProtector.md index 4885bac7ea..5b631f8564 100644 --- a/docset/winserver2019-ps/hgsclient/New-HgsKeyProtector.md +++ b/docset/winserver2019-ps/hgsclient/New-HgsKeyProtector.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: HgsClient-help.xml Module Name: HgsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsclient/new-hgskeyprotector?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsclient/new-hgskeyprotector?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-HgsKeyProtector --- diff --git a/docset/winserver2019-ps/hgsclient/Remove-HgsGuardian.md b/docset/winserver2019-ps/hgsclient/Remove-HgsGuardian.md index 58666a056c..e7576660ad 100644 --- a/docset/winserver2019-ps/hgsclient/Remove-HgsGuardian.md +++ b/docset/winserver2019-ps/hgsclient/Remove-HgsGuardian.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: HgsClient-help.xml Module Name: HgsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsclient/remove-hgsguardian?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsclient/remove-hgsguardian?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-HgsGuardian --- diff --git a/docset/winserver2019-ps/hgsclient/Revoke-HgsKeyProtectorAccess.md b/docset/winserver2019-ps/hgsclient/Revoke-HgsKeyProtectorAccess.md index d466c8eb3e..b650a6cf6b 100644 --- a/docset/winserver2019-ps/hgsclient/Revoke-HgsKeyProtectorAccess.md +++ b/docset/winserver2019-ps/hgsclient/Revoke-HgsKeyProtectorAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: HgsClient-help.xml Module Name: HgsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsclient/revoke-hgskeyprotectoraccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsclient/revoke-hgskeyprotectoraccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Revoke-HgsKeyProtectorAccess --- diff --git a/docset/winserver2019-ps/hgsclient/Set-HgsClientConfiguration.md b/docset/winserver2019-ps/hgsclient/Set-HgsClientConfiguration.md index 0a3d27e135..d4a511ed66 100644 --- a/docset/winserver2019-ps/hgsclient/Set-HgsClientConfiguration.md +++ b/docset/winserver2019-ps/hgsclient/Set-HgsClientConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: HgsClient-help.xml Module Name: HgsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsclient/set-hgsclientconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsclient/set-hgsclientconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-HgsClientConfiguration --- diff --git a/docset/winserver2019-ps/hgsclient/Test-HgsClientConfiguration.md b/docset/winserver2019-ps/hgsclient/Test-HgsClientConfiguration.md index 2614138b62..273b1456fc 100644 --- a/docset/winserver2019-ps/hgsclient/Test-HgsClientConfiguration.md +++ b/docset/winserver2019-ps/hgsclient/Test-HgsClientConfiguration.md @@ -1,7 +1,7 @@ --- external help file: HgsClient-help.xml Module Name: HgsClient -online version: https://docs.microsoft.com/powershell/module/hgsclient/test-hgsclientconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsclient/test-hgsclientconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-HgsClientConfiguration --- diff --git a/docset/winserver2019-ps/hgsdiagnostics/Get-HgsTrace.md b/docset/winserver2019-ps/hgsdiagnostics/Get-HgsTrace.md index 4d98c22402..6408c11842 100644 --- a/docset/winserver2019-ps/hgsdiagnostics/Get-HgsTrace.md +++ b/docset/winserver2019-ps/hgsdiagnostics/Get-HgsTrace.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.HostGuardianService.Diagnostics.Payload.dll-Help.xml Module Name: HgsDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsdiagnostics/get-hgstrace?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsdiagnostics/get-hgstrace?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HgsTrace --- diff --git a/docset/winserver2019-ps/hgsdiagnostics/Get-HgsTraceFileData.md b/docset/winserver2019-ps/hgsdiagnostics/Get-HgsTraceFileData.md index 2cac153139..8b08fe3159 100644 --- a/docset/winserver2019-ps/hgsdiagnostics/Get-HgsTraceFileData.md +++ b/docset/winserver2019-ps/hgsdiagnostics/Get-HgsTraceFileData.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.HostGuardianService.Diagnostics.Payload.dll-Help.xml Module Name: HgsDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsdiagnostics/get-hgstracefiledata?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsdiagnostics/get-hgstracefiledata?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HgsTraceFileData --- diff --git a/docset/winserver2019-ps/hgsdiagnostics/New-HgsTraceTarget.md b/docset/winserver2019-ps/hgsdiagnostics/New-HgsTraceTarget.md index d146ea8710..357a2cfcef 100644 --- a/docset/winserver2019-ps/hgsdiagnostics/New-HgsTraceTarget.md +++ b/docset/winserver2019-ps/hgsdiagnostics/New-HgsTraceTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.HostGuardianService.Diagnostics.Payload.dll-Help.xml Module Name: HgsDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsdiagnostics/new-hgstracetarget?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsdiagnostics/new-hgstracetarget?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-HgsTraceTarget --- diff --git a/docset/winserver2019-ps/hgsdiagnostics/Test-HgsTraceTarget.md b/docset/winserver2019-ps/hgsdiagnostics/Test-HgsTraceTarget.md index d62a02f8a6..71e74663ae 100644 --- a/docset/winserver2019-ps/hgsdiagnostics/Test-HgsTraceTarget.md +++ b/docset/winserver2019-ps/hgsdiagnostics/Test-HgsTraceTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.HostGuardianService.Diagnostics.Payload.dll-Help.xml Module Name: HgsDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsdiagnostics/test-hgstracetarget?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsdiagnostics/test-hgstracetarget?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-HgsTraceTarget --- diff --git a/docset/winserver2019-ps/hgskeyprotection/Add-HgsKeyProtectionAttestationSignerCertificate.md b/docset/winserver2019-ps/hgskeyprotection/Add-HgsKeyProtectionAttestationSignerCertificate.md index 67cbd2c6d6..f5e383cb71 100644 --- a/docset/winserver2019-ps/hgskeyprotection/Add-HgsKeyProtectionAttestationSignerCertificate.md +++ b/docset/winserver2019-ps/hgskeyprotection/Add-HgsKeyProtectionAttestationSignerCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.KpsServer.Administration.dll-Help.xml Module Name: HgsKeyProtection ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgskeyprotection/add-hgskeyprotectionattestationsignercertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgskeyprotection/add-hgskeyprotectionattestationsignercertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-HgsKeyProtectionAttestationSignerCertificate --- diff --git a/docset/winserver2019-ps/hgskeyprotection/Add-HgsKeyProtectionCertificate.md b/docset/winserver2019-ps/hgskeyprotection/Add-HgsKeyProtectionCertificate.md index 8d600e588e..713a8bb634 100644 --- a/docset/winserver2019-ps/hgskeyprotection/Add-HgsKeyProtectionCertificate.md +++ b/docset/winserver2019-ps/hgskeyprotection/Add-HgsKeyProtectionCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.KpsServer.Administration.dll-Help.xml Module Name: HgsKeyProtection ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgskeyprotection/add-hgskeyprotectioncertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgskeyprotection/add-hgskeyprotectioncertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-HgsKeyProtectionCertificate --- diff --git a/docset/winserver2019-ps/hgskeyprotection/Export-HgsKeyProtectionState.md b/docset/winserver2019-ps/hgskeyprotection/Export-HgsKeyProtectionState.md index d6dbec441e..d865b4b65a 100644 --- a/docset/winserver2019-ps/hgskeyprotection/Export-HgsKeyProtectionState.md +++ b/docset/winserver2019-ps/hgskeyprotection/Export-HgsKeyProtectionState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.KpsServer.Administration.dll-Help.xml Module Name: HgsKeyProtection ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgskeyprotection/export-hgskeyprotectionstate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgskeyprotection/export-hgskeyprotectionstate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-HgsKeyProtectionState --- diff --git a/docset/winserver2019-ps/hgskeyprotection/Get-HgsKeyProtectionAttestationSignerCertificate.md b/docset/winserver2019-ps/hgskeyprotection/Get-HgsKeyProtectionAttestationSignerCertificate.md index e706ab0290..5aaf3de6b4 100644 --- a/docset/winserver2019-ps/hgskeyprotection/Get-HgsKeyProtectionAttestationSignerCertificate.md +++ b/docset/winserver2019-ps/hgskeyprotection/Get-HgsKeyProtectionAttestationSignerCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.KpsServer.Administration.dll-Help.xml Module Name: HgsKeyProtection ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgskeyprotection/get-hgskeyprotectionattestationsignercertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgskeyprotection/get-hgskeyprotectionattestationsignercertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HgsKeyProtectionAttestationSignerCertificate --- diff --git a/docset/winserver2019-ps/hgskeyprotection/Get-HgsKeyProtectionCertificate.md b/docset/winserver2019-ps/hgskeyprotection/Get-HgsKeyProtectionCertificate.md index 40b4626072..5b64c67619 100644 --- a/docset/winserver2019-ps/hgskeyprotection/Get-HgsKeyProtectionCertificate.md +++ b/docset/winserver2019-ps/hgskeyprotection/Get-HgsKeyProtectionCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.KpsServer.Administration.dll-Help.xml Module Name: HgsKeyProtection ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgskeyprotection/get-hgskeyprotectioncertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgskeyprotection/get-hgskeyprotectioncertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HgsKeyProtectionCertificate --- diff --git a/docset/winserver2019-ps/hgskeyprotection/Get-HgsKeyProtectionConfiguration.md b/docset/winserver2019-ps/hgskeyprotection/Get-HgsKeyProtectionConfiguration.md index 7fd521e6db..d32774a165 100644 --- a/docset/winserver2019-ps/hgskeyprotection/Get-HgsKeyProtectionConfiguration.md +++ b/docset/winserver2019-ps/hgskeyprotection/Get-HgsKeyProtectionConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.KpsServer.Administration.dll-Help.xml Module Name: HgsKeyProtection ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgskeyprotection/get-hgskeyprotectionconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgskeyprotection/get-hgskeyprotectionconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HgsKeyProtectionConfiguration --- diff --git a/docset/winserver2019-ps/hgskeyprotection/Import-HgsKeyProtectionState.md b/docset/winserver2019-ps/hgskeyprotection/Import-HgsKeyProtectionState.md index 95079556d3..c4259386c5 100644 --- a/docset/winserver2019-ps/hgskeyprotection/Import-HgsKeyProtectionState.md +++ b/docset/winserver2019-ps/hgskeyprotection/Import-HgsKeyProtectionState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.KpsServer.Administration.dll-Help.xml Module Name: HgsKeyProtection ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgskeyprotection/import-hgskeyprotectionstate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgskeyprotection/import-hgskeyprotectionstate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-HgsKeyProtectionState --- diff --git a/docset/winserver2019-ps/hgskeyprotection/Remove-HgsKeyProtectionAttestationSignerCertificate.md b/docset/winserver2019-ps/hgskeyprotection/Remove-HgsKeyProtectionAttestationSignerCertificate.md index ea75a7c2e9..a6c417b767 100644 --- a/docset/winserver2019-ps/hgskeyprotection/Remove-HgsKeyProtectionAttestationSignerCertificate.md +++ b/docset/winserver2019-ps/hgskeyprotection/Remove-HgsKeyProtectionAttestationSignerCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.KpsServer.Administration.dll-Help.xml Module Name: HgsKeyProtection ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgskeyprotection/remove-hgskeyprotectionattestationsignercertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgskeyprotection/remove-hgskeyprotectionattestationsignercertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-HgsKeyProtectionAttestationSignerCertificate --- diff --git a/docset/winserver2019-ps/hgskeyprotection/Remove-HgsKeyProtectionCertificate.md b/docset/winserver2019-ps/hgskeyprotection/Remove-HgsKeyProtectionCertificate.md index 5c3974abab..235ecef8da 100644 --- a/docset/winserver2019-ps/hgskeyprotection/Remove-HgsKeyProtectionCertificate.md +++ b/docset/winserver2019-ps/hgskeyprotection/Remove-HgsKeyProtectionCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.KpsServer.Administration.dll-Help.xml Module Name: HgsKeyProtection ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgskeyprotection/remove-hgskeyprotectioncertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgskeyprotection/remove-hgskeyprotectioncertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-HgsKeyProtectionCertificate --- diff --git a/docset/winserver2019-ps/hgskeyprotection/Set-HgsKeyProtectionAttestationSignerCertificatePolicy.md b/docset/winserver2019-ps/hgskeyprotection/Set-HgsKeyProtectionAttestationSignerCertificatePolicy.md index 7cec735dff..6d2a8fe64d 100644 --- a/docset/winserver2019-ps/hgskeyprotection/Set-HgsKeyProtectionAttestationSignerCertificatePolicy.md +++ b/docset/winserver2019-ps/hgskeyprotection/Set-HgsKeyProtectionAttestationSignerCertificatePolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.KpsServer.Administration.dll-Help.xml Module Name: HgsKeyProtection ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgskeyprotection/set-hgskeyprotectionattestationsignercertificatepolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgskeyprotection/set-hgskeyprotectionattestationsignercertificatepolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-HgsKeyProtectionAttestationSignerCertificatePolicy --- diff --git a/docset/winserver2019-ps/hgskeyprotection/Set-HgsKeyProtectionCertificate.md b/docset/winserver2019-ps/hgskeyprotection/Set-HgsKeyProtectionCertificate.md index fcd1f9804c..2d82e6d15e 100644 --- a/docset/winserver2019-ps/hgskeyprotection/Set-HgsKeyProtectionCertificate.md +++ b/docset/winserver2019-ps/hgskeyprotection/Set-HgsKeyProtectionCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.KpsServer.Administration.dll-Help.xml Module Name: HgsKeyProtection ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgskeyprotection/set-hgskeyprotectioncertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgskeyprotection/set-hgskeyprotectioncertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-HgsKeyProtectionCertificate --- diff --git a/docset/winserver2019-ps/hgskeyprotection/Set-HgsKeyProtectionConfiguration.md b/docset/winserver2019-ps/hgskeyprotection/Set-HgsKeyProtectionConfiguration.md index 18c7f4f998..77b6a3d834 100644 --- a/docset/winserver2019-ps/hgskeyprotection/Set-HgsKeyProtectionConfiguration.md +++ b/docset/winserver2019-ps/hgskeyprotection/Set-HgsKeyProtectionConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.KpsServer.Administration.dll-Help.xml Module Name: HgsKeyProtection ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgskeyprotection/set-hgskeyprotectionconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgskeyprotection/set-hgskeyprotectionconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-HgsKeyProtectionConfiguration --- diff --git a/docset/winserver2019-ps/hgsserver/Clear-HgsServer.md b/docset/winserver2019-ps/hgsserver/Clear-HgsServer.md index cdccc71eda..eeefe829b3 100644 --- a/docset/winserver2019-ps/hgsserver/Clear-HgsServer.md +++ b/docset/winserver2019-ps/hgsserver/Clear-HgsServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: HgsServer-help.xml Module Name: HgsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsserver/clear-hgsserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsserver/clear-hgsserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-HgsServer --- diff --git a/docset/winserver2019-ps/hgsserver/Export-HgsServerState.md b/docset/winserver2019-ps/hgsserver/Export-HgsServerState.md index 16289b3fa6..0120619f82 100644 --- a/docset/winserver2019-ps/hgsserver/Export-HgsServerState.md +++ b/docset/winserver2019-ps/hgsserver/Export-HgsServerState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: HgsServer-help.xml Module Name: HgsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsserver/export-hgsserverstate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsserver/export-hgsserverstate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-HgsServerState --- diff --git a/docset/winserver2019-ps/hgsserver/Get-HgsServer.md b/docset/winserver2019-ps/hgsserver/Get-HgsServer.md index d87c18009f..4fee92a633 100644 --- a/docset/winserver2019-ps/hgsserver/Get-HgsServer.md +++ b/docset/winserver2019-ps/hgsserver/Get-HgsServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: HgsServer-help.xml Module Name: HgsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsserver/get-hgsserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsserver/get-hgsserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HgsServer --- diff --git a/docset/winserver2019-ps/hgsserver/Import-HgsServerState.md b/docset/winserver2019-ps/hgsserver/Import-HgsServerState.md index 5a3a04cd19..de23c2fd19 100644 --- a/docset/winserver2019-ps/hgsserver/Import-HgsServerState.md +++ b/docset/winserver2019-ps/hgsserver/Import-HgsServerState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: HgsServer-help.xml Module Name: HgsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsserver/import-hgsserverstate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsserver/import-hgsserverstate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-HgsServerState --- diff --git a/docset/winserver2019-ps/hgsserver/Initialize-HgsServer.md b/docset/winserver2019-ps/hgsserver/Initialize-HgsServer.md index 3bc084927d..e79083309a 100644 --- a/docset/winserver2019-ps/hgsserver/Initialize-HgsServer.md +++ b/docset/winserver2019-ps/hgsserver/Initialize-HgsServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: HgsServer-help.xml Module Name: HgsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsserver/initialize-hgsserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsserver/initialize-hgsserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Initialize-HgsServer --- diff --git a/docset/winserver2019-ps/hgsserver/Install-HgsServer.md b/docset/winserver2019-ps/hgsserver/Install-HgsServer.md index 3ccb27af5d..2b4cd02936 100644 --- a/docset/winserver2019-ps/hgsserver/Install-HgsServer.md +++ b/docset/winserver2019-ps/hgsserver/Install-HgsServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: HgsServer-help.xml Module Name: HgsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsserver/install-hgsserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsserver/install-hgsserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-HgsServer --- diff --git a/docset/winserver2019-ps/hgsserver/Set-HgsServer.md b/docset/winserver2019-ps/hgsserver/Set-HgsServer.md index 562c75787a..f556602258 100644 --- a/docset/winserver2019-ps/hgsserver/Set-HgsServer.md +++ b/docset/winserver2019-ps/hgsserver/Set-HgsServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: HgsServer-help.xml Module Name: HgsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsserver/set-hgsserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsserver/set-hgsserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-HgsServer --- diff --git a/docset/winserver2019-ps/hgsserver/Test-HgsServer.md b/docset/winserver2019-ps/hgsserver/Test-HgsServer.md index 49352ea4ba..f576a0adb5 100644 --- a/docset/winserver2019-ps/hgsserver/Test-HgsServer.md +++ b/docset/winserver2019-ps/hgsserver/Test-HgsServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: HgsServer-help.xml Module Name: HgsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsserver/test-hgsserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsserver/test-hgsserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-HgsServer --- diff --git a/docset/winserver2019-ps/hgsserver/Uninstall-HgsServer.md b/docset/winserver2019-ps/hgsserver/Uninstall-HgsServer.md index b666fc31d5..7d79bfcb7f 100644 --- a/docset/winserver2019-ps/hgsserver/Uninstall-HgsServer.md +++ b/docset/winserver2019-ps/hgsserver/Uninstall-HgsServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: HgsServer-help.xml Module Name: HgsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsserver/uninstall-hgsserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsserver/uninstall-hgsserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-HgsServer --- diff --git a/docset/winserver2019-ps/hnvdiagnostics/Debug-SlbDatapath.md b/docset/winserver2019-ps/hnvdiagnostics/Debug-SlbDatapath.md index 48d324ab70..23e84a5982 100644 --- a/docset/winserver2019-ps/hnvdiagnostics/Debug-SlbDatapath.md +++ b/docset/winserver2019-ps/hnvdiagnostics/Debug-SlbDatapath.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SlbDatapathTracing-help.xml Module Name: HNVDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hnvdiagnostics/debug-slbdatapath?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hnvdiagnostics/debug-slbdatapath?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Debug-SlbDatapath --- diff --git a/docset/winserver2019-ps/hnvdiagnostics/Debug-VirtualMachineQueueOperation.md b/docset/winserver2019-ps/hnvdiagnostics/Debug-VirtualMachineQueueOperation.md index 408e4bf9d6..71fe707544 100644 --- a/docset/winserver2019-ps/hnvdiagnostics/Debug-VirtualMachineQueueOperation.md +++ b/docset/winserver2019-ps/hnvdiagnostics/Debug-VirtualMachineQueueOperation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Debug-VirtualMachineQueueOperation-help.xml Module Name: HNVDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hnvdiagnostics/debug-virtualmachinequeueoperation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hnvdiagnostics/debug-virtualmachinequeueoperation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Debug-VirtualMachineQueueOperation --- diff --git a/docset/winserver2019-ps/hnvdiagnostics/Disable-MuxEchoResponder.md b/docset/winserver2019-ps/hnvdiagnostics/Disable-MuxEchoResponder.md index 250f79436c..17401afd78 100644 --- a/docset/winserver2019-ps/hnvdiagnostics/Disable-MuxEchoResponder.md +++ b/docset/winserver2019-ps/hnvdiagnostics/Disable-MuxEchoResponder.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MuxEchoResponder-help.xml Module Name: HNVDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hnvdiagnostics/disable-muxechoresponder?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hnvdiagnostics/disable-muxechoresponder?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-MuxEchoResponder --- diff --git a/docset/winserver2019-ps/hnvdiagnostics/Enable-MuxEchoResponder.md b/docset/winserver2019-ps/hnvdiagnostics/Enable-MuxEchoResponder.md index 1805a45b97..ddd6658c25 100644 --- a/docset/winserver2019-ps/hnvdiagnostics/Enable-MuxEchoResponder.md +++ b/docset/winserver2019-ps/hnvdiagnostics/Enable-MuxEchoResponder.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MuxEchoResponder-help.xml Module Name: HNVDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hnvdiagnostics/enable-muxechoresponder?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hnvdiagnostics/enable-muxechoresponder?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-MuxEchoResponder --- diff --git a/docset/winserver2019-ps/hnvdiagnostics/Get-CustomerRoute.md b/docset/winserver2019-ps/hnvdiagnostics/Get-CustomerRoute.md index b562291e81..dc34922a4e 100644 --- a/docset/winserver2019-ps/hnvdiagnostics/Get-CustomerRoute.md +++ b/docset/winserver2019-ps/hnvdiagnostics/Get-CustomerRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Get-CustomerRoute-help.xml Module Name: HNVDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hnvdiagnostics/get-customerroute?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hnvdiagnostics/get-customerroute?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CustomerRoute --- diff --git a/docset/winserver2019-ps/hnvdiagnostics/Get-NetworkControllerVipResource.md b/docset/winserver2019-ps/hnvdiagnostics/Get-NetworkControllerVipResource.md index df950f5037..c48217badf 100644 --- a/docset/winserver2019-ps/hnvdiagnostics/Get-NetworkControllerVipResource.md +++ b/docset/winserver2019-ps/hnvdiagnostics/Get-NetworkControllerVipResource.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Get-VipConnectivityInfo-help.xml Module Name: HNVDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hnvdiagnostics/get-networkcontrollervipresource?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hnvdiagnostics/get-networkcontrollervipresource?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerVipResource --- diff --git a/docset/winserver2019-ps/hnvdiagnostics/Get-PACAMapping.md b/docset/winserver2019-ps/hnvdiagnostics/Get-PACAMapping.md index 58fccd3182..26dbf14bd7 100644 --- a/docset/winserver2019-ps/hnvdiagnostics/Get-PACAMapping.md +++ b/docset/winserver2019-ps/hnvdiagnostics/Get-PACAMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Get-PACAMapping-help.xml Module Name: HNVDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hnvdiagnostics/get-pacamapping?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hnvdiagnostics/get-pacamapping?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PACAMapping --- diff --git a/docset/winserver2019-ps/hnvdiagnostics/Get-ProviderAddress.md b/docset/winserver2019-ps/hnvdiagnostics/Get-ProviderAddress.md index 6c170963c4..cfa4d312a6 100644 --- a/docset/winserver2019-ps/hnvdiagnostics/Get-ProviderAddress.md +++ b/docset/winserver2019-ps/hnvdiagnostics/Get-ProviderAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Get-ProviderAddress-help.xml Module Name: HNVDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hnvdiagnostics/get-provideraddress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hnvdiagnostics/get-provideraddress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ProviderAddress --- diff --git a/docset/winserver2019-ps/hnvdiagnostics/Get-VMNetworkAdapterPortId.md b/docset/winserver2019-ps/hnvdiagnostics/Get-VMNetworkAdapterPortId.md index 32fe689cce..8f0405cb91 100644 --- a/docset/winserver2019-ps/hnvdiagnostics/Get-VMNetworkAdapterPortId.md +++ b/docset/winserver2019-ps/hnvdiagnostics/Get-VMNetworkAdapterPortId.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Get-VMNetworkAdapterPortId-help.xml Module Name: HNVDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hnvdiagnostics/get-vmnetworkadapterportid?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hnvdiagnostics/get-vmnetworkadapterportid?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMNetworkAdapterPortId --- diff --git a/docset/winserver2019-ps/hnvdiagnostics/Get-VMSwitchExternalPortId.md b/docset/winserver2019-ps/hnvdiagnostics/Get-VMSwitchExternalPortId.md index ccaeebe7d9..a8cb46f1e5 100644 --- a/docset/winserver2019-ps/hnvdiagnostics/Get-VMSwitchExternalPortId.md +++ b/docset/winserver2019-ps/hnvdiagnostics/Get-VMSwitchExternalPortId.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Get-VMSwitchExternalPortId-help.xml Module Name: HNVDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hnvdiagnostics/get-vmswitchexternalportid?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hnvdiagnostics/get-vmswitchexternalportid?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMSwitchExternalPortId --- diff --git a/docset/winserver2019-ps/hnvdiagnostics/Get-VipHostMapping.md b/docset/winserver2019-ps/hnvdiagnostics/Get-VipHostMapping.md index bcfeaa8555..260a6e5925 100644 --- a/docset/winserver2019-ps/hnvdiagnostics/Get-VipHostMapping.md +++ b/docset/winserver2019-ps/hnvdiagnostics/Get-VipHostMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Get-VipConnectivityInfo-help.xml Module Name: HNVDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hnvdiagnostics/get-viphostmapping?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hnvdiagnostics/get-viphostmapping?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VipHostMapping --- diff --git a/docset/winserver2019-ps/hnvdiagnostics/Test-DipHostReachability.md b/docset/winserver2019-ps/hnvdiagnostics/Test-DipHostReachability.md index c0bc6acfb9..e3a5c87ebd 100644 --- a/docset/winserver2019-ps/hnvdiagnostics/Test-DipHostReachability.md +++ b/docset/winserver2019-ps/hnvdiagnostics/Test-DipHostReachability.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DipHostReachability-help.xml Module Name: HNVDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hnvdiagnostics/test-diphostreachability?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hnvdiagnostics/test-diphostreachability?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-DipHostReachability --- diff --git a/docset/winserver2019-ps/hnvdiagnostics/Test-EncapOverheadSettings.md b/docset/winserver2019-ps/hnvdiagnostics/Test-EncapOverheadSettings.md index 5d37957dc5..70c10d5dd2 100644 --- a/docset/winserver2019-ps/hnvdiagnostics/Test-EncapOverheadSettings.md +++ b/docset/winserver2019-ps/hnvdiagnostics/Test-EncapOverheadSettings.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Test-EncapOverheadValue-help.xml Module Name: HNVDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hnvdiagnostics/test-encapoverheadsettings?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hnvdiagnostics/test-encapoverheadsettings?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-EncapOverheadSettings --- diff --git a/docset/winserver2019-ps/hnvdiagnostics/Test-LogicalNetworkConnection.md b/docset/winserver2019-ps/hnvdiagnostics/Test-LogicalNetworkConnection.md index 957017a695..e1701cda3c 100644 --- a/docset/winserver2019-ps/hnvdiagnostics/Test-LogicalNetworkConnection.md +++ b/docset/winserver2019-ps/hnvdiagnostics/Test-LogicalNetworkConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PaPing-help.xml Module Name: HNVDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hnvdiagnostics/test-logicalnetworkconnection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hnvdiagnostics/test-logicalnetworkconnection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-LogicalNetworkConnection --- diff --git a/docset/winserver2019-ps/hnvdiagnostics/Test-LogicalNetworkSupportsJumboPacket.md b/docset/winserver2019-ps/hnvdiagnostics/Test-LogicalNetworkSupportsJumboPacket.md index 7e52359d15..c4ebc32545 100644 --- a/docset/winserver2019-ps/hnvdiagnostics/Test-LogicalNetworkSupportsJumboPacket.md +++ b/docset/winserver2019-ps/hnvdiagnostics/Test-LogicalNetworkSupportsJumboPacket.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Test-LogicalNetworkSupportsJumboPacket-help.xml Module Name: HNVDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hnvdiagnostics/test-logicalnetworksupportsjumbopacket?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hnvdiagnostics/test-logicalnetworksupportsjumbopacket?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-LogicalNetworkSupportsJumboPacket --- diff --git a/docset/winserver2019-ps/hnvdiagnostics/Test-VipReachability.md b/docset/winserver2019-ps/hnvdiagnostics/Test-VipReachability.md index fa9e45fcfc..d8489b431e 100644 --- a/docset/winserver2019-ps/hnvdiagnostics/Test-VipReachability.md +++ b/docset/winserver2019-ps/hnvdiagnostics/Test-VipReachability.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: VipReachability-help.xml Module Name: HNVDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hnvdiagnostics/test-vipreachability?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hnvdiagnostics/test-vipreachability?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-VipReachability --- diff --git a/docset/winserver2019-ps/hnvdiagnostics/Test-VirtualNetworkConnection.md b/docset/winserver2019-ps/hnvdiagnostics/Test-VirtualNetworkConnection.md index f96172df4e..073772622c 100644 --- a/docset/winserver2019-ps/hnvdiagnostics/Test-VirtualNetworkConnection.md +++ b/docset/winserver2019-ps/hnvdiagnostics/Test-VirtualNetworkConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Test-VirtualNetworkConnection-help.xml Module Name: HNVDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hnvdiagnostics/test-virtualnetworkconnection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hnvdiagnostics/test-virtualnetworkconnection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-VirtualNetworkConnection --- diff --git a/docset/winserver2019-ps/hostcomputeservice/Get-ComputeProcess.md b/docset/winserver2019-ps/hostcomputeservice/Get-ComputeProcess.md index d4aba43ee5..345cede735 100644 --- a/docset/winserver2019-ps/hostcomputeservice/Get-ComputeProcess.md +++ b/docset/winserver2019-ps/hostcomputeservice/Get-ComputeProcess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HostCompute.PowerShell.Cmdlets.dll-Help.xml Module Name: HostComputeService ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/hostcomputeservice/get-computeprocess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hostcomputeservice/get-computeprocess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ComputeProcess --- diff --git a/docset/winserver2019-ps/hostcomputeservice/Stop-ComputeProcess.md b/docset/winserver2019-ps/hostcomputeservice/Stop-ComputeProcess.md index 9ba1fbf6d0..10a63f9e0c 100644 --- a/docset/winserver2019-ps/hostcomputeservice/Stop-ComputeProcess.md +++ b/docset/winserver2019-ps/hostcomputeservice/Stop-ComputeProcess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HostCompute.PowerShell.Cmdlets.dll-Help.xml Module Name: HostComputeService ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/hostcomputeservice/stop-computeprocess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hostcomputeservice/stop-computeprocess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-ComputeProcess --- diff --git a/docset/winserver2019-ps/hyper-v/Add-VMDvdDrive.md b/docset/winserver2019-ps/hyper-v/Add-VMDvdDrive.md index 0288b986ce..385dfe3753 100644 --- a/docset/winserver2019-ps/hyper-v/Add-VMDvdDrive.md +++ b/docset/winserver2019-ps/hyper-v/Add-VMDvdDrive.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmdvddrive?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmdvddrive?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMDvdDrive --- diff --git a/docset/winserver2019-ps/hyper-v/Add-VMFibreChannelHba.md b/docset/winserver2019-ps/hyper-v/Add-VMFibreChannelHba.md index e54d88afcc..61fd412282 100644 --- a/docset/winserver2019-ps/hyper-v/Add-VMFibreChannelHba.md +++ b/docset/winserver2019-ps/hyper-v/Add-VMFibreChannelHba.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmfibrechannelhba?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmfibrechannelhba?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMFibreChannelHba --- diff --git a/docset/winserver2019-ps/hyper-v/Add-VMGroupMember.md b/docset/winserver2019-ps/hyper-v/Add-VMGroupMember.md index 3251895d07..a5225b5cb6 100644 --- a/docset/winserver2019-ps/hyper-v/Add-VMGroupMember.md +++ b/docset/winserver2019-ps/hyper-v/Add-VMGroupMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmgroupmember?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmgroupmember?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMGroupMember --- diff --git a/docset/winserver2019-ps/hyper-v/Add-VMHardDiskDrive.md b/docset/winserver2019-ps/hyper-v/Add-VMHardDiskDrive.md index df03fdc15a..64a046cba4 100644 --- a/docset/winserver2019-ps/hyper-v/Add-VMHardDiskDrive.md +++ b/docset/winserver2019-ps/hyper-v/Add-VMHardDiskDrive.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmharddiskdrive?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmharddiskdrive?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMHardDiskDrive --- diff --git a/docset/winserver2019-ps/hyper-v/Add-VMMigrationNetwork.md b/docset/winserver2019-ps/hyper-v/Add-VMMigrationNetwork.md index 88528f5b8d..e432b9cf1a 100644 --- a/docset/winserver2019-ps/hyper-v/Add-VMMigrationNetwork.md +++ b/docset/winserver2019-ps/hyper-v/Add-VMMigrationNetwork.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmmigrationnetwork?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmmigrationnetwork?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMMigrationNetwork --- diff --git a/docset/winserver2019-ps/hyper-v/Add-VMNetworkAdapter.md b/docset/winserver2019-ps/hyper-v/Add-VMNetworkAdapter.md index fbf211de92..076010b005 100644 --- a/docset/winserver2019-ps/hyper-v/Add-VMNetworkAdapter.md +++ b/docset/winserver2019-ps/hyper-v/Add-VMNetworkAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmnetworkadapter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmnetworkadapter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMNetworkAdapter --- diff --git a/docset/winserver2019-ps/hyper-v/Add-VMNetworkAdapterAcl.md b/docset/winserver2019-ps/hyper-v/Add-VMNetworkAdapterAcl.md index 52502d2a30..ab368b801b 100644 --- a/docset/winserver2019-ps/hyper-v/Add-VMNetworkAdapterAcl.md +++ b/docset/winserver2019-ps/hyper-v/Add-VMNetworkAdapterAcl.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmnetworkadapteracl?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmnetworkadapteracl?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMNetworkAdapterAcl --- diff --git a/docset/winserver2019-ps/hyper-v/Add-VMNetworkAdapterExtendedAcl.md b/docset/winserver2019-ps/hyper-v/Add-VMNetworkAdapterExtendedAcl.md index 8fcf53b7d3..b11f0a7a39 100644 --- a/docset/winserver2019-ps/hyper-v/Add-VMNetworkAdapterExtendedAcl.md +++ b/docset/winserver2019-ps/hyper-v/Add-VMNetworkAdapterExtendedAcl.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmnetworkadapterextendedacl?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmnetworkadapterextendedacl?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMNetworkAdapterExtendedAcl --- diff --git a/docset/winserver2019-ps/hyper-v/Add-VMRemoteFx3dVideoAdapter.md b/docset/winserver2019-ps/hyper-v/Add-VMRemoteFx3dVideoAdapter.md index fc56fdf934..9524e47f65 100644 --- a/docset/winserver2019-ps/hyper-v/Add-VMRemoteFx3dVideoAdapter.md +++ b/docset/winserver2019-ps/hyper-v/Add-VMRemoteFx3dVideoAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmremotefx3dvideoadapter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmremotefx3dvideoadapter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMRemoteFx3dVideoAdapter --- diff --git a/docset/winserver2019-ps/hyper-v/Add-VMScsiController.md b/docset/winserver2019-ps/hyper-v/Add-VMScsiController.md index 53702a768b..80cb3af21d 100644 --- a/docset/winserver2019-ps/hyper-v/Add-VMScsiController.md +++ b/docset/winserver2019-ps/hyper-v/Add-VMScsiController.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmscsicontroller?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmscsicontroller?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMScsiController --- diff --git a/docset/winserver2019-ps/hyper-v/Add-VMStoragePath.md b/docset/winserver2019-ps/hyper-v/Add-VMStoragePath.md index 3ab8081894..541c016d65 100644 --- a/docset/winserver2019-ps/hyper-v/Add-VMStoragePath.md +++ b/docset/winserver2019-ps/hyper-v/Add-VMStoragePath.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmstoragepath?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmstoragepath?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMStoragePath --- diff --git a/docset/winserver2019-ps/hyper-v/Add-VMSwitch.md b/docset/winserver2019-ps/hyper-v/Add-VMSwitch.md index 1ad2dc73ad..1636b69db5 100644 --- a/docset/winserver2019-ps/hyper-v/Add-VMSwitch.md +++ b/docset/winserver2019-ps/hyper-v/Add-VMSwitch.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmswitch?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmswitch?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMSwitch --- diff --git a/docset/winserver2019-ps/hyper-v/Add-VMSwitchExtensionPortFeature.md b/docset/winserver2019-ps/hyper-v/Add-VMSwitchExtensionPortFeature.md index 3e13378742..9edf561768 100644 --- a/docset/winserver2019-ps/hyper-v/Add-VMSwitchExtensionPortFeature.md +++ b/docset/winserver2019-ps/hyper-v/Add-VMSwitchExtensionPortFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmswitchextensionportfeature?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmswitchextensionportfeature?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMSwitchExtensionPortFeature --- diff --git a/docset/winserver2019-ps/hyper-v/Add-VMSwitchExtensionSwitchFeature.md b/docset/winserver2019-ps/hyper-v/Add-VMSwitchExtensionSwitchFeature.md index a4f60c2a79..8c86e26bbf 100644 --- a/docset/winserver2019-ps/hyper-v/Add-VMSwitchExtensionSwitchFeature.md +++ b/docset/winserver2019-ps/hyper-v/Add-VMSwitchExtensionSwitchFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmswitchextensionswitchfeature?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmswitchextensionswitchfeature?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMSwitchExtensionSwitchFeature --- diff --git a/docset/winserver2019-ps/hyper-v/Add-VMSwitchTeamMember.md b/docset/winserver2019-ps/hyper-v/Add-VMSwitchTeamMember.md index 6f3410dc63..0f0e72c52d 100644 --- a/docset/winserver2019-ps/hyper-v/Add-VMSwitchTeamMember.md +++ b/docset/winserver2019-ps/hyper-v/Add-VMSwitchTeamMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmswitchteammember?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmswitchteammember?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMSwitchTeamMember --- diff --git a/docset/winserver2019-ps/hyper-v/Add-VmNetworkAdapterRoutingDomainMapping.md b/docset/winserver2019-ps/hyper-v/Add-VmNetworkAdapterRoutingDomainMapping.md index 8abdedea60..d9b8856fac 100644 --- a/docset/winserver2019-ps/hyper-v/Add-VmNetworkAdapterRoutingDomainMapping.md +++ b/docset/winserver2019-ps/hyper-v/Add-VmNetworkAdapterRoutingDomainMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmnetworkadapterroutingdomainmapping?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmnetworkadapterroutingdomainmapping?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VmNetworkAdapterRoutingDomainMapping --- diff --git a/docset/winserver2019-ps/hyper-v/Checkpoint-VM.md b/docset/winserver2019-ps/hyper-v/Checkpoint-VM.md index 3d39f77a3e..c32a56849f 100644 --- a/docset/winserver2019-ps/hyper-v/Checkpoint-VM.md +++ b/docset/winserver2019-ps/hyper-v/Checkpoint-VM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/checkpoint-vm?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/checkpoint-vm?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Checkpoint-VM --- diff --git a/docset/winserver2019-ps/hyper-v/Compare-VM.md b/docset/winserver2019-ps/hyper-v/Compare-VM.md index 2bdcbf5a4f..d4c6ec4422 100644 --- a/docset/winserver2019-ps/hyper-v/Compare-VM.md +++ b/docset/winserver2019-ps/hyper-v/Compare-VM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/compare-vm?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/compare-vm?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Compare-VM --- diff --git a/docset/winserver2019-ps/hyper-v/Complete-VMFailover.md b/docset/winserver2019-ps/hyper-v/Complete-VMFailover.md index 8dc3863380..499b9d2da8 100644 --- a/docset/winserver2019-ps/hyper-v/Complete-VMFailover.md +++ b/docset/winserver2019-ps/hyper-v/Complete-VMFailover.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/complete-vmfailover?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/complete-vmfailover?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Complete-VMFailover --- diff --git a/docset/winserver2019-ps/hyper-v/Connect-VMNetworkAdapter.md b/docset/winserver2019-ps/hyper-v/Connect-VMNetworkAdapter.md index 9d3858d47a..3be0d9c739 100644 --- a/docset/winserver2019-ps/hyper-v/Connect-VMNetworkAdapter.md +++ b/docset/winserver2019-ps/hyper-v/Connect-VMNetworkAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/connect-vmnetworkadapter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/connect-vmnetworkadapter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Connect-VMNetworkAdapter --- diff --git a/docset/winserver2019-ps/hyper-v/Connect-VMSan.md b/docset/winserver2019-ps/hyper-v/Connect-VMSan.md index 03f31bca47..d9cfd1eb15 100644 --- a/docset/winserver2019-ps/hyper-v/Connect-VMSan.md +++ b/docset/winserver2019-ps/hyper-v/Connect-VMSan.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/connect-vmsan?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/connect-vmsan?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Connect-VMSan --- diff --git a/docset/winserver2019-ps/hyper-v/Convert-VHD.md b/docset/winserver2019-ps/hyper-v/Convert-VHD.md index ef641c7551..2648d2314a 100644 --- a/docset/winserver2019-ps/hyper-v/Convert-VHD.md +++ b/docset/winserver2019-ps/hyper-v/Convert-VHD.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/convert-vhd?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/convert-vhd?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Convert-VHD --- diff --git a/docset/winserver2019-ps/hyper-v/Copy-VMFile.md b/docset/winserver2019-ps/hyper-v/Copy-VMFile.md index b1684f69e3..87d5e3e034 100644 --- a/docset/winserver2019-ps/hyper-v/Copy-VMFile.md +++ b/docset/winserver2019-ps/hyper-v/Copy-VMFile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/copy-vmfile?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/copy-vmfile?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Copy-VMFile --- diff --git a/docset/winserver2019-ps/hyper-v/Debug-VM.md b/docset/winserver2019-ps/hyper-v/Debug-VM.md index f72c3b704f..93aac68326 100644 --- a/docset/winserver2019-ps/hyper-v/Debug-VM.md +++ b/docset/winserver2019-ps/hyper-v/Debug-VM.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/debug-vm?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/debug-vm?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Debug-VM --- diff --git a/docset/winserver2019-ps/hyper-v/Disable-VMConsoleSupport.md b/docset/winserver2019-ps/hyper-v/Disable-VMConsoleSupport.md index 4b486ba7a1..0f6c489e66 100644 --- a/docset/winserver2019-ps/hyper-v/Disable-VMConsoleSupport.md +++ b/docset/winserver2019-ps/hyper-v/Disable-VMConsoleSupport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/disable-vmconsolesupport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/disable-vmconsolesupport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-VMConsoleSupport --- diff --git a/docset/winserver2019-ps/hyper-v/Disable-VMEventing.md b/docset/winserver2019-ps/hyper-v/Disable-VMEventing.md index e210c395be..9c976fb82d 100644 --- a/docset/winserver2019-ps/hyper-v/Disable-VMEventing.md +++ b/docset/winserver2019-ps/hyper-v/Disable-VMEventing.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/disable-vmeventing?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/disable-vmeventing?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-VMEventing --- diff --git a/docset/winserver2019-ps/hyper-v/Disable-VMIntegrationService.md b/docset/winserver2019-ps/hyper-v/Disable-VMIntegrationService.md index 38f18f2f04..bf8a53795a 100644 --- a/docset/winserver2019-ps/hyper-v/Disable-VMIntegrationService.md +++ b/docset/winserver2019-ps/hyper-v/Disable-VMIntegrationService.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/disable-vmintegrationservice?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/disable-vmintegrationservice?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-VMIntegrationService --- diff --git a/docset/winserver2019-ps/hyper-v/Disable-VMMigration.md b/docset/winserver2019-ps/hyper-v/Disable-VMMigration.md index f65e67e3a4..934544f29b 100644 --- a/docset/winserver2019-ps/hyper-v/Disable-VMMigration.md +++ b/docset/winserver2019-ps/hyper-v/Disable-VMMigration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/disable-vmmigration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/disable-vmmigration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-VMMigration --- diff --git a/docset/winserver2019-ps/hyper-v/Disable-VMRemoteFXPhysicalVideoAdapter.md b/docset/winserver2019-ps/hyper-v/Disable-VMRemoteFXPhysicalVideoAdapter.md index 6994da6f08..5dc4d78f58 100644 --- a/docset/winserver2019-ps/hyper-v/Disable-VMRemoteFXPhysicalVideoAdapter.md +++ b/docset/winserver2019-ps/hyper-v/Disable-VMRemoteFXPhysicalVideoAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/disable-vmremotefxphysicalvideoadapter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/disable-vmremotefxphysicalvideoadapter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-VMRemoteFXPhysicalVideoAdapter --- diff --git a/docset/winserver2019-ps/hyper-v/Disable-VMResourceMetering.md b/docset/winserver2019-ps/hyper-v/Disable-VMResourceMetering.md index 80532de906..b0ad8d99ca 100644 --- a/docset/winserver2019-ps/hyper-v/Disable-VMResourceMetering.md +++ b/docset/winserver2019-ps/hyper-v/Disable-VMResourceMetering.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/disable-vmresourcemetering?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/disable-vmresourcemetering?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-VMResourceMetering --- diff --git a/docset/winserver2019-ps/hyper-v/Disable-VMSwitchExtension.md b/docset/winserver2019-ps/hyper-v/Disable-VMSwitchExtension.md index b5cd3b3b91..ce9b2fecff 100644 --- a/docset/winserver2019-ps/hyper-v/Disable-VMSwitchExtension.md +++ b/docset/winserver2019-ps/hyper-v/Disable-VMSwitchExtension.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/disable-vmswitchextension?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/disable-vmswitchextension?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-VMSwitchExtension --- diff --git a/docset/winserver2019-ps/hyper-v/Disable-VMTPM.md b/docset/winserver2019-ps/hyper-v/Disable-VMTPM.md index bc5c8b8820..edcbf25f4b 100644 --- a/docset/winserver2019-ps/hyper-v/Disable-VMTPM.md +++ b/docset/winserver2019-ps/hyper-v/Disable-VMTPM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/disable-vmtpm?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/disable-vmtpm?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-VMTPM --- diff --git a/docset/winserver2019-ps/hyper-v/Disconnect-VMNetworkAdapter.md b/docset/winserver2019-ps/hyper-v/Disconnect-VMNetworkAdapter.md index c9384a0f2b..56f442926b 100644 --- a/docset/winserver2019-ps/hyper-v/Disconnect-VMNetworkAdapter.md +++ b/docset/winserver2019-ps/hyper-v/Disconnect-VMNetworkAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/disconnect-vmnetworkadapter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/disconnect-vmnetworkadapter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disconnect-VMNetworkAdapter --- diff --git a/docset/winserver2019-ps/hyper-v/Disconnect-VMSan.md b/docset/winserver2019-ps/hyper-v/Disconnect-VMSan.md index ec19487beb..555511aab7 100644 --- a/docset/winserver2019-ps/hyper-v/Disconnect-VMSan.md +++ b/docset/winserver2019-ps/hyper-v/Disconnect-VMSan.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/disconnect-vmsan?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/disconnect-vmsan?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disconnect-VMSan --- diff --git a/docset/winserver2019-ps/hyper-v/Dismount-VHD.md b/docset/winserver2019-ps/hyper-v/Dismount-VHD.md index 7a1c1acce5..96255c5c46 100644 --- a/docset/winserver2019-ps/hyper-v/Dismount-VHD.md +++ b/docset/winserver2019-ps/hyper-v/Dismount-VHD.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/dismount-vhd?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/dismount-vhd?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Dismount-VHD --- diff --git a/docset/winserver2019-ps/hyper-v/Enable-VMConsoleSupport.md b/docset/winserver2019-ps/hyper-v/Enable-VMConsoleSupport.md index fbbb312f90..f1a26dbb52 100644 --- a/docset/winserver2019-ps/hyper-v/Enable-VMConsoleSupport.md +++ b/docset/winserver2019-ps/hyper-v/Enable-VMConsoleSupport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/enable-vmconsolesupport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/enable-vmconsolesupport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-VMConsoleSupport --- diff --git a/docset/winserver2019-ps/hyper-v/Enable-VMEventing.md b/docset/winserver2019-ps/hyper-v/Enable-VMEventing.md index e1094903ac..dc0664ecda 100644 --- a/docset/winserver2019-ps/hyper-v/Enable-VMEventing.md +++ b/docset/winserver2019-ps/hyper-v/Enable-VMEventing.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/enable-vmeventing?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/enable-vmeventing?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-VMEventing --- diff --git a/docset/winserver2019-ps/hyper-v/Enable-VMIntegrationService.md b/docset/winserver2019-ps/hyper-v/Enable-VMIntegrationService.md index f5b1c292c9..5293421a70 100644 --- a/docset/winserver2019-ps/hyper-v/Enable-VMIntegrationService.md +++ b/docset/winserver2019-ps/hyper-v/Enable-VMIntegrationService.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/enable-vmintegrationservice?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/enable-vmintegrationservice?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-VMIntegrationService --- diff --git a/docset/winserver2019-ps/hyper-v/Enable-VMMigration.md b/docset/winserver2019-ps/hyper-v/Enable-VMMigration.md index a47fe31e73..8966819efd 100644 --- a/docset/winserver2019-ps/hyper-v/Enable-VMMigration.md +++ b/docset/winserver2019-ps/hyper-v/Enable-VMMigration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/enable-vmmigration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/enable-vmmigration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-VMMigration --- diff --git a/docset/winserver2019-ps/hyper-v/Enable-VMRemoteFXPhysicalVideoAdapter.md b/docset/winserver2019-ps/hyper-v/Enable-VMRemoteFXPhysicalVideoAdapter.md index 3bfe0dbb65..88cb0a24ec 100644 --- a/docset/winserver2019-ps/hyper-v/Enable-VMRemoteFXPhysicalVideoAdapter.md +++ b/docset/winserver2019-ps/hyper-v/Enable-VMRemoteFXPhysicalVideoAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/enable-vmremotefxphysicalvideoadapter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/enable-vmremotefxphysicalvideoadapter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-VMRemoteFXPhysicalVideoAdapter --- diff --git a/docset/winserver2019-ps/hyper-v/Enable-VMReplication.md b/docset/winserver2019-ps/hyper-v/Enable-VMReplication.md index 24263a2f29..db3f12e607 100644 --- a/docset/winserver2019-ps/hyper-v/Enable-VMReplication.md +++ b/docset/winserver2019-ps/hyper-v/Enable-VMReplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/enable-vmreplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/enable-vmreplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-VMReplication --- diff --git a/docset/winserver2019-ps/hyper-v/Enable-VMResourceMetering.md b/docset/winserver2019-ps/hyper-v/Enable-VMResourceMetering.md index cd4b7121c9..5f5fc04941 100644 --- a/docset/winserver2019-ps/hyper-v/Enable-VMResourceMetering.md +++ b/docset/winserver2019-ps/hyper-v/Enable-VMResourceMetering.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/enable-vmresourcemetering?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/enable-vmresourcemetering?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-VMResourceMetering --- diff --git a/docset/winserver2019-ps/hyper-v/Enable-VMSwitchExtension.md b/docset/winserver2019-ps/hyper-v/Enable-VMSwitchExtension.md index 94624394b3..c01ab4ac07 100644 --- a/docset/winserver2019-ps/hyper-v/Enable-VMSwitchExtension.md +++ b/docset/winserver2019-ps/hyper-v/Enable-VMSwitchExtension.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/enable-vmswitchextension?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/enable-vmswitchextension?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-VMSwitchExtension --- diff --git a/docset/winserver2019-ps/hyper-v/Enable-VMTPM.md b/docset/winserver2019-ps/hyper-v/Enable-VMTPM.md index d76c2fb334..8dffdbf285 100644 --- a/docset/winserver2019-ps/hyper-v/Enable-VMTPM.md +++ b/docset/winserver2019-ps/hyper-v/Enable-VMTPM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/enable-vmtpm?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/enable-vmtpm?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-VMTPM --- diff --git a/docset/winserver2019-ps/hyper-v/Export-VM.md b/docset/winserver2019-ps/hyper-v/Export-VM.md index 9decd31913..aa7fadcbf9 100644 --- a/docset/winserver2019-ps/hyper-v/Export-VM.md +++ b/docset/winserver2019-ps/hyper-v/Export-VM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/export-vm?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/export-vm?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-VM --- diff --git a/docset/winserver2019-ps/hyper-v/Export-VMSnapshot.md b/docset/winserver2019-ps/hyper-v/Export-VMSnapshot.md index f582b023e7..35f67e26ad 100644 --- a/docset/winserver2019-ps/hyper-v/Export-VMSnapshot.md +++ b/docset/winserver2019-ps/hyper-v/Export-VMSnapshot.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/export-vmsnapshot?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/export-vmsnapshot?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-VMSnapshot --- diff --git a/docset/winserver2019-ps/hyper-v/Get-VHD.md b/docset/winserver2019-ps/hyper-v/Get-VHD.md index 799a3fcb30..412a5ec0fe 100644 --- a/docset/winserver2019-ps/hyper-v/Get-VHD.md +++ b/docset/winserver2019-ps/hyper-v/Get-VHD.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vhd?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vhd?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VHD --- diff --git a/docset/winserver2019-ps/hyper-v/Get-VHDSet.md b/docset/winserver2019-ps/hyper-v/Get-VHDSet.md index a8d95f1986..78691455ae 100644 --- a/docset/winserver2019-ps/hyper-v/Get-VHDSet.md +++ b/docset/winserver2019-ps/hyper-v/Get-VHDSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vhdset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vhdset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VHDSet --- diff --git a/docset/winserver2019-ps/hyper-v/Get-VHDSnapshot.md b/docset/winserver2019-ps/hyper-v/Get-VHDSnapshot.md index 1e2d652a3a..5c3399fd51 100644 --- a/docset/winserver2019-ps/hyper-v/Get-VHDSnapshot.md +++ b/docset/winserver2019-ps/hyper-v/Get-VHDSnapshot.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vhdsnapshot?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vhdsnapshot?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VHDSnapshot --- diff --git a/docset/winserver2019-ps/hyper-v/Get-VM.md b/docset/winserver2019-ps/hyper-v/Get-VM.md index 5936e03ab8..38ac468e7c 100644 --- a/docset/winserver2019-ps/hyper-v/Get-VM.md +++ b/docset/winserver2019-ps/hyper-v/Get-VM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vm?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vm?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VM --- diff --git a/docset/winserver2019-ps/hyper-v/Get-VMBios.md b/docset/winserver2019-ps/hyper-v/Get-VMBios.md index f8cf2580cf..3d06a3328a 100644 --- a/docset/winserver2019-ps/hyper-v/Get-VMBios.md +++ b/docset/winserver2019-ps/hyper-v/Get-VMBios.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmbios?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmbios?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMBios --- diff --git a/docset/winserver2019-ps/hyper-v/Get-VMComPort.md b/docset/winserver2019-ps/hyper-v/Get-VMComPort.md index 84d2db1e6e..88c0d20421 100644 --- a/docset/winserver2019-ps/hyper-v/Get-VMComPort.md +++ b/docset/winserver2019-ps/hyper-v/Get-VMComPort.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmcomport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmcomport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMComPort --- diff --git a/docset/winserver2019-ps/hyper-v/Get-VMConnectAccess.md b/docset/winserver2019-ps/hyper-v/Get-VMConnectAccess.md index 2d137de6b0..bcfaff60f7 100644 --- a/docset/winserver2019-ps/hyper-v/Get-VMConnectAccess.md +++ b/docset/winserver2019-ps/hyper-v/Get-VMConnectAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmconnectaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmconnectaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMConnectAccess --- diff --git a/docset/winserver2019-ps/hyper-v/Get-VMDvdDrive.md b/docset/winserver2019-ps/hyper-v/Get-VMDvdDrive.md index fa06ccf1b5..e625e95375 100644 --- a/docset/winserver2019-ps/hyper-v/Get-VMDvdDrive.md +++ b/docset/winserver2019-ps/hyper-v/Get-VMDvdDrive.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmdvddrive?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmdvddrive?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMDvdDrive --- diff --git a/docset/winserver2019-ps/hyper-v/Get-VMFibreChannelHba.md b/docset/winserver2019-ps/hyper-v/Get-VMFibreChannelHba.md index 2eace36d86..4738ceaea0 100644 --- a/docset/winserver2019-ps/hyper-v/Get-VMFibreChannelHba.md +++ b/docset/winserver2019-ps/hyper-v/Get-VMFibreChannelHba.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmfibrechannelhba?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmfibrechannelhba?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMFibreChannelHba --- diff --git a/docset/winserver2019-ps/hyper-v/Get-VMFirmware.md b/docset/winserver2019-ps/hyper-v/Get-VMFirmware.md index 5d0b17b754..be99daff13 100644 --- a/docset/winserver2019-ps/hyper-v/Get-VMFirmware.md +++ b/docset/winserver2019-ps/hyper-v/Get-VMFirmware.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmfirmware?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmfirmware?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMFirmware --- diff --git a/docset/winserver2019-ps/hyper-v/Get-VMFloppyDiskDrive.md b/docset/winserver2019-ps/hyper-v/Get-VMFloppyDiskDrive.md index 06f522785b..9659affecf 100644 --- a/docset/winserver2019-ps/hyper-v/Get-VMFloppyDiskDrive.md +++ b/docset/winserver2019-ps/hyper-v/Get-VMFloppyDiskDrive.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmfloppydiskdrive?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmfloppydiskdrive?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMFloppyDiskDrive --- diff --git a/docset/winserver2019-ps/hyper-v/Get-VMGroup.md b/docset/winserver2019-ps/hyper-v/Get-VMGroup.md index 4538431e65..15d4708f29 100644 --- a/docset/winserver2019-ps/hyper-v/Get-VMGroup.md +++ b/docset/winserver2019-ps/hyper-v/Get-VMGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMGroup --- diff --git a/docset/winserver2019-ps/hyper-v/Get-VMHardDiskDrive.md b/docset/winserver2019-ps/hyper-v/Get-VMHardDiskDrive.md index 0c830f321f..d1b886a59c 100644 --- a/docset/winserver2019-ps/hyper-v/Get-VMHardDiskDrive.md +++ b/docset/winserver2019-ps/hyper-v/Get-VMHardDiskDrive.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmharddiskdrive?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmharddiskdrive?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMHardDiskDrive --- diff --git a/docset/winserver2019-ps/hyper-v/Get-VMHost.md b/docset/winserver2019-ps/hyper-v/Get-VMHost.md index ee722544fe..727c15517d 100644 --- a/docset/winserver2019-ps/hyper-v/Get-VMHost.md +++ b/docset/winserver2019-ps/hyper-v/Get-VMHost.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmhost?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmhost?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMHost --- diff --git a/docset/winserver2019-ps/hyper-v/Get-VMHostCluster.md b/docset/winserver2019-ps/hyper-v/Get-VMHostCluster.md index b3000662e2..d78b4ae437 100644 --- a/docset/winserver2019-ps/hyper-v/Get-VMHostCluster.md +++ b/docset/winserver2019-ps/hyper-v/Get-VMHostCluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmhostcluster?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmhostcluster?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMHostCluster --- diff --git a/docset/winserver2019-ps/hyper-v/Get-VMHostNumaNode.md b/docset/winserver2019-ps/hyper-v/Get-VMHostNumaNode.md index ab0d17cc40..1463e82d1a 100644 --- a/docset/winserver2019-ps/hyper-v/Get-VMHostNumaNode.md +++ b/docset/winserver2019-ps/hyper-v/Get-VMHostNumaNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmhostnumanode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmhostnumanode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMHostNumaNode --- diff --git a/docset/winserver2019-ps/hyper-v/Get-VMHostNumaNodeStatus.md b/docset/winserver2019-ps/hyper-v/Get-VMHostNumaNodeStatus.md index 2806293546..ec0575da80 100644 --- a/docset/winserver2019-ps/hyper-v/Get-VMHostNumaNodeStatus.md +++ b/docset/winserver2019-ps/hyper-v/Get-VMHostNumaNodeStatus.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmhostnumanodestatus?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmhostnumanodestatus?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMHostNumaNodeStatus --- diff --git a/docset/winserver2019-ps/hyper-v/Get-VMHostSupportedVersion.md b/docset/winserver2019-ps/hyper-v/Get-VMHostSupportedVersion.md index f4c4ec09d6..50b3fca015 100644 --- a/docset/winserver2019-ps/hyper-v/Get-VMHostSupportedVersion.md +++ b/docset/winserver2019-ps/hyper-v/Get-VMHostSupportedVersion.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmhostsupportedversion?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmhostsupportedversion?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMHostSupportedVersion --- diff --git a/docset/winserver2019-ps/hyper-v/Get-VMIdeController.md b/docset/winserver2019-ps/hyper-v/Get-VMIdeController.md index f9fb273aca..ea96fedcf2 100644 --- a/docset/winserver2019-ps/hyper-v/Get-VMIdeController.md +++ b/docset/winserver2019-ps/hyper-v/Get-VMIdeController.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmidecontroller?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmidecontroller?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMIdeController --- diff --git a/docset/winserver2019-ps/hyper-v/Get-VMIntegrationService.md b/docset/winserver2019-ps/hyper-v/Get-VMIntegrationService.md index a2e2805e4a..932193fc90 100644 --- a/docset/winserver2019-ps/hyper-v/Get-VMIntegrationService.md +++ b/docset/winserver2019-ps/hyper-v/Get-VMIntegrationService.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmintegrationservice?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmintegrationservice?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMIntegrationService --- diff --git a/docset/winserver2019-ps/hyper-v/Get-VMKeyProtector.md b/docset/winserver2019-ps/hyper-v/Get-VMKeyProtector.md index f01b3d49ef..bb72a80e38 100644 --- a/docset/winserver2019-ps/hyper-v/Get-VMKeyProtector.md +++ b/docset/winserver2019-ps/hyper-v/Get-VMKeyProtector.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmkeyprotector?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmkeyprotector?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMKeyProtector --- diff --git a/docset/winserver2019-ps/hyper-v/Get-VMMemory.md b/docset/winserver2019-ps/hyper-v/Get-VMMemory.md index 0389688a94..15e09286cb 100644 --- a/docset/winserver2019-ps/hyper-v/Get-VMMemory.md +++ b/docset/winserver2019-ps/hyper-v/Get-VMMemory.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmmemory?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmmemory?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMMemory --- diff --git a/docset/winserver2019-ps/hyper-v/Get-VMMigrationNetwork.md b/docset/winserver2019-ps/hyper-v/Get-VMMigrationNetwork.md index f5955d9181..40ea317629 100644 --- a/docset/winserver2019-ps/hyper-v/Get-VMMigrationNetwork.md +++ b/docset/winserver2019-ps/hyper-v/Get-VMMigrationNetwork.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmmigrationnetwork?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmmigrationnetwork?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMMigrationNetwork --- diff --git a/docset/winserver2019-ps/hyper-v/Get-VMNetworkAdapter.md b/docset/winserver2019-ps/hyper-v/Get-VMNetworkAdapter.md index d0812fc1fc..48b82a48ca 100644 --- a/docset/winserver2019-ps/hyper-v/Get-VMNetworkAdapter.md +++ b/docset/winserver2019-ps/hyper-v/Get-VMNetworkAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMNetworkAdapter --- diff --git a/docset/winserver2019-ps/hyper-v/Get-VMNetworkAdapterAcl.md b/docset/winserver2019-ps/hyper-v/Get-VMNetworkAdapterAcl.md index 691970ba87..710ef7d58b 100644 --- a/docset/winserver2019-ps/hyper-v/Get-VMNetworkAdapterAcl.md +++ b/docset/winserver2019-ps/hyper-v/Get-VMNetworkAdapterAcl.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapteracl?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapteracl?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMNetworkAdapterAcl --- diff --git a/docset/winserver2019-ps/hyper-v/Get-VMNetworkAdapterExtendedAcl.md b/docset/winserver2019-ps/hyper-v/Get-VMNetworkAdapterExtendedAcl.md index c0902a250b..1af3750334 100644 --- a/docset/winserver2019-ps/hyper-v/Get-VMNetworkAdapterExtendedAcl.md +++ b/docset/winserver2019-ps/hyper-v/Get-VMNetworkAdapterExtendedAcl.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapterextendedacl?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapterextendedacl?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMNetworkAdapterExtendedAcl --- diff --git a/docset/winserver2019-ps/hyper-v/Get-VMNetworkAdapterFailoverConfiguration.md b/docset/winserver2019-ps/hyper-v/Get-VMNetworkAdapterFailoverConfiguration.md index a857c0fcad..984b7633c3 100644 --- a/docset/winserver2019-ps/hyper-v/Get-VMNetworkAdapterFailoverConfiguration.md +++ b/docset/winserver2019-ps/hyper-v/Get-VMNetworkAdapterFailoverConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapterfailoverconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapterfailoverconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMNetworkAdapterFailoverConfiguration --- diff --git a/docset/winserver2019-ps/hyper-v/Get-VMNetworkAdapterRoutingDomainMapping.md b/docset/winserver2019-ps/hyper-v/Get-VMNetworkAdapterRoutingDomainMapping.md index 2cdf90836d..c1b3615241 100644 --- a/docset/winserver2019-ps/hyper-v/Get-VMNetworkAdapterRoutingDomainMapping.md +++ b/docset/winserver2019-ps/hyper-v/Get-VMNetworkAdapterRoutingDomainMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapterroutingdomainmapping?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapterroutingdomainmapping?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMNetworkAdapterRoutingDomainMapping --- diff --git a/docset/winserver2019-ps/hyper-v/Get-VMNetworkAdapterTeamMapping.md b/docset/winserver2019-ps/hyper-v/Get-VMNetworkAdapterTeamMapping.md index 80e11b62ea..2fbb6060ce 100644 --- a/docset/winserver2019-ps/hyper-v/Get-VMNetworkAdapterTeamMapping.md +++ b/docset/winserver2019-ps/hyper-v/Get-VMNetworkAdapterTeamMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapterteammapping?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapterteammapping?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMNetworkAdapterTeamMapping --- diff --git a/docset/winserver2019-ps/hyper-v/Get-VMNetworkAdapterVlan.md b/docset/winserver2019-ps/hyper-v/Get-VMNetworkAdapterVlan.md index cf4eb33c12..2a5758c21b 100644 --- a/docset/winserver2019-ps/hyper-v/Get-VMNetworkAdapterVlan.md +++ b/docset/winserver2019-ps/hyper-v/Get-VMNetworkAdapterVlan.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmnetworkadaptervlan?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmnetworkadaptervlan?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMNetworkAdapterVlan --- diff --git a/docset/winserver2019-ps/hyper-v/Get-VMProcessor.md b/docset/winserver2019-ps/hyper-v/Get-VMProcessor.md index 3bce0d5069..ad0ca00f2a 100644 --- a/docset/winserver2019-ps/hyper-v/Get-VMProcessor.md +++ b/docset/winserver2019-ps/hyper-v/Get-VMProcessor.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmprocessor?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmprocessor?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMProcessor --- diff --git a/docset/winserver2019-ps/hyper-v/Get-VMRemoteFXPhysicalVideoAdapter.md b/docset/winserver2019-ps/hyper-v/Get-VMRemoteFXPhysicalVideoAdapter.md index cbb0b73f05..6ac3c73d21 100644 --- a/docset/winserver2019-ps/hyper-v/Get-VMRemoteFXPhysicalVideoAdapter.md +++ b/docset/winserver2019-ps/hyper-v/Get-VMRemoteFXPhysicalVideoAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmremotefxphysicalvideoadapter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmremotefxphysicalvideoadapter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMRemoteFXPhysicalVideoAdapter --- diff --git a/docset/winserver2019-ps/hyper-v/Get-VMRemoteFx3dVideoAdapter.md b/docset/winserver2019-ps/hyper-v/Get-VMRemoteFx3dVideoAdapter.md index 7a50a6556a..40327978f4 100644 --- a/docset/winserver2019-ps/hyper-v/Get-VMRemoteFx3dVideoAdapter.md +++ b/docset/winserver2019-ps/hyper-v/Get-VMRemoteFx3dVideoAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmremotefx3dvideoadapter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmremotefx3dvideoadapter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMRemoteFx3dVideoAdapter --- diff --git a/docset/winserver2019-ps/hyper-v/Get-VMReplication.md b/docset/winserver2019-ps/hyper-v/Get-VMReplication.md index da57aa96fc..cfc571add6 100644 --- a/docset/winserver2019-ps/hyper-v/Get-VMReplication.md +++ b/docset/winserver2019-ps/hyper-v/Get-VMReplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmreplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmreplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMReplication --- diff --git a/docset/winserver2019-ps/hyper-v/Get-VMReplicationAuthorizationEntry.md b/docset/winserver2019-ps/hyper-v/Get-VMReplicationAuthorizationEntry.md index 04a0a46734..9e4cfb0dfa 100644 --- a/docset/winserver2019-ps/hyper-v/Get-VMReplicationAuthorizationEntry.md +++ b/docset/winserver2019-ps/hyper-v/Get-VMReplicationAuthorizationEntry.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmreplicationauthorizationentry?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmreplicationauthorizationentry?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMReplicationAuthorizationEntry --- diff --git a/docset/winserver2019-ps/hyper-v/Get-VMReplicationServer.md b/docset/winserver2019-ps/hyper-v/Get-VMReplicationServer.md index 585fd66938..46c666f838 100644 --- a/docset/winserver2019-ps/hyper-v/Get-VMReplicationServer.md +++ b/docset/winserver2019-ps/hyper-v/Get-VMReplicationServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmreplicationserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmreplicationserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMReplicationServer --- diff --git a/docset/winserver2019-ps/hyper-v/Get-VMResourcePool.md b/docset/winserver2019-ps/hyper-v/Get-VMResourcePool.md index 0f623b6f41..4625c8c30e 100644 --- a/docset/winserver2019-ps/hyper-v/Get-VMResourcePool.md +++ b/docset/winserver2019-ps/hyper-v/Get-VMResourcePool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmresourcepool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmresourcepool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMResourcePool --- diff --git a/docset/winserver2019-ps/hyper-v/Get-VMSan.md b/docset/winserver2019-ps/hyper-v/Get-VMSan.md index 378253ce11..294ce63398 100644 --- a/docset/winserver2019-ps/hyper-v/Get-VMSan.md +++ b/docset/winserver2019-ps/hyper-v/Get-VMSan.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmsan?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmsan?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMSan --- diff --git a/docset/winserver2019-ps/hyper-v/Get-VMScsiController.md b/docset/winserver2019-ps/hyper-v/Get-VMScsiController.md index 9b1920f098..e25ef548e9 100644 --- a/docset/winserver2019-ps/hyper-v/Get-VMScsiController.md +++ b/docset/winserver2019-ps/hyper-v/Get-VMScsiController.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmscsicontroller?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmscsicontroller?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMScsiController --- diff --git a/docset/winserver2019-ps/hyper-v/Get-VMSecurity.md b/docset/winserver2019-ps/hyper-v/Get-VMSecurity.md index f00f8e81fc..4e1182f4cc 100644 --- a/docset/winserver2019-ps/hyper-v/Get-VMSecurity.md +++ b/docset/winserver2019-ps/hyper-v/Get-VMSecurity.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmsecurity?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmsecurity?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMSecurity --- diff --git a/docset/winserver2019-ps/hyper-v/Get-VMSnapshot.md b/docset/winserver2019-ps/hyper-v/Get-VMSnapshot.md index 8a7d5b2d50..caa2bf1a08 100644 --- a/docset/winserver2019-ps/hyper-v/Get-VMSnapshot.md +++ b/docset/winserver2019-ps/hyper-v/Get-VMSnapshot.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmsnapshot?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmsnapshot?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMSnapshot --- diff --git a/docset/winserver2019-ps/hyper-v/Get-VMStoragePath.md b/docset/winserver2019-ps/hyper-v/Get-VMStoragePath.md index dadb70fc41..38a2c938e5 100644 --- a/docset/winserver2019-ps/hyper-v/Get-VMStoragePath.md +++ b/docset/winserver2019-ps/hyper-v/Get-VMStoragePath.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmstoragepath?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmstoragepath?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMStoragePath --- diff --git a/docset/winserver2019-ps/hyper-v/Get-VMSwitch.md b/docset/winserver2019-ps/hyper-v/Get-VMSwitch.md index 730afd39b7..49aded8fe9 100644 --- a/docset/winserver2019-ps/hyper-v/Get-VMSwitch.md +++ b/docset/winserver2019-ps/hyper-v/Get-VMSwitch.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmswitch?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmswitch?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMSwitch --- diff --git a/docset/winserver2019-ps/hyper-v/Get-VMSwitchExtension.md b/docset/winserver2019-ps/hyper-v/Get-VMSwitchExtension.md index e24d2f16ae..2fada7376e 100644 --- a/docset/winserver2019-ps/hyper-v/Get-VMSwitchExtension.md +++ b/docset/winserver2019-ps/hyper-v/Get-VMSwitchExtension.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmswitchextension?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmswitchextension?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMSwitchExtension --- diff --git a/docset/winserver2019-ps/hyper-v/Get-VMSwitchExtensionPortData.md b/docset/winserver2019-ps/hyper-v/Get-VMSwitchExtensionPortData.md index fa5c97268f..d010102f6d 100644 --- a/docset/winserver2019-ps/hyper-v/Get-VMSwitchExtensionPortData.md +++ b/docset/winserver2019-ps/hyper-v/Get-VMSwitchExtensionPortData.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmswitchextensionportdata?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmswitchextensionportdata?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMSwitchExtensionPortData --- diff --git a/docset/winserver2019-ps/hyper-v/Get-VMSwitchExtensionPortFeature.md b/docset/winserver2019-ps/hyper-v/Get-VMSwitchExtensionPortFeature.md index de951be0fd..9f69b5c6ff 100644 --- a/docset/winserver2019-ps/hyper-v/Get-VMSwitchExtensionPortFeature.md +++ b/docset/winserver2019-ps/hyper-v/Get-VMSwitchExtensionPortFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmswitchextensionportfeature?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmswitchextensionportfeature?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMSwitchExtensionPortFeature --- diff --git a/docset/winserver2019-ps/hyper-v/Get-VMSwitchExtensionSwitchData.md b/docset/winserver2019-ps/hyper-v/Get-VMSwitchExtensionSwitchData.md index 693f4e0b44..06a37a4a26 100644 --- a/docset/winserver2019-ps/hyper-v/Get-VMSwitchExtensionSwitchData.md +++ b/docset/winserver2019-ps/hyper-v/Get-VMSwitchExtensionSwitchData.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmswitchextensionswitchdata?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmswitchextensionswitchdata?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMSwitchExtensionSwitchData --- diff --git a/docset/winserver2019-ps/hyper-v/Get-VMSwitchExtensionSwitchFeature.md b/docset/winserver2019-ps/hyper-v/Get-VMSwitchExtensionSwitchFeature.md index 4334f60e4f..f87ba1c5ef 100644 --- a/docset/winserver2019-ps/hyper-v/Get-VMSwitchExtensionSwitchFeature.md +++ b/docset/winserver2019-ps/hyper-v/Get-VMSwitchExtensionSwitchFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmswitchextensionswitchfeature?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmswitchextensionswitchfeature?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMSwitchExtensionSwitchFeature --- diff --git a/docset/winserver2019-ps/hyper-v/Get-VMSwitchTeam.md b/docset/winserver2019-ps/hyper-v/Get-VMSwitchTeam.md index 607797ce90..81c5780f9b 100644 --- a/docset/winserver2019-ps/hyper-v/Get-VMSwitchTeam.md +++ b/docset/winserver2019-ps/hyper-v/Get-VMSwitchTeam.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmswitchteam?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmswitchteam?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMSwitchTeam --- diff --git a/docset/winserver2019-ps/hyper-v/Get-VMSystemSwitchExtension.md b/docset/winserver2019-ps/hyper-v/Get-VMSystemSwitchExtension.md index 08402ee78c..d7ba65fb5c 100644 --- a/docset/winserver2019-ps/hyper-v/Get-VMSystemSwitchExtension.md +++ b/docset/winserver2019-ps/hyper-v/Get-VMSystemSwitchExtension.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmsystemswitchextension?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmsystemswitchextension?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMSystemSwitchExtension --- diff --git a/docset/winserver2019-ps/hyper-v/Get-VMSystemSwitchExtensionPortFeature.md b/docset/winserver2019-ps/hyper-v/Get-VMSystemSwitchExtensionPortFeature.md index 7e9b7249cc..b20bd43a5b 100644 --- a/docset/winserver2019-ps/hyper-v/Get-VMSystemSwitchExtensionPortFeature.md +++ b/docset/winserver2019-ps/hyper-v/Get-VMSystemSwitchExtensionPortFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmsystemswitchextensionportfeature?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmsystemswitchextensionportfeature?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMSystemSwitchExtensionPortFeature --- diff --git a/docset/winserver2019-ps/hyper-v/Get-VMSystemSwitchExtensionSwitchFeature.md b/docset/winserver2019-ps/hyper-v/Get-VMSystemSwitchExtensionSwitchFeature.md index f4ebfd9da8..2453cff2b8 100644 --- a/docset/winserver2019-ps/hyper-v/Get-VMSystemSwitchExtensionSwitchFeature.md +++ b/docset/winserver2019-ps/hyper-v/Get-VMSystemSwitchExtensionSwitchFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmsystemswitchextensionswitchfeature?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmsystemswitchextensionswitchfeature?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMSystemSwitchExtensionSwitchFeature --- diff --git a/docset/winserver2019-ps/hyper-v/Get-VMVideo.md b/docset/winserver2019-ps/hyper-v/Get-VMVideo.md index 1efe6cfb3c..c4587499c1 100644 --- a/docset/winserver2019-ps/hyper-v/Get-VMVideo.md +++ b/docset/winserver2019-ps/hyper-v/Get-VMVideo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmvideo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmvideo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMVideo --- diff --git a/docset/winserver2019-ps/hyper-v/Get-VmNetworkAdapterIsolation.md b/docset/winserver2019-ps/hyper-v/Get-VmNetworkAdapterIsolation.md index b77151b513..741b14d636 100644 --- a/docset/winserver2019-ps/hyper-v/Get-VmNetworkAdapterIsolation.md +++ b/docset/winserver2019-ps/hyper-v/Get-VmNetworkAdapterIsolation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapterisolation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapterisolation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VmNetworkAdapterIsolation --- diff --git a/docset/winserver2019-ps/hyper-v/Grant-VMConnectAccess.md b/docset/winserver2019-ps/hyper-v/Grant-VMConnectAccess.md index 69794dcd5b..0dc427ddaf 100644 --- a/docset/winserver2019-ps/hyper-v/Grant-VMConnectAccess.md +++ b/docset/winserver2019-ps/hyper-v/Grant-VMConnectAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/grant-vmconnectaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/grant-vmconnectaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Grant-VMConnectAccess --- diff --git a/docset/winserver2019-ps/hyper-v/Import-VM.md b/docset/winserver2019-ps/hyper-v/Import-VM.md index 7d9c66abfe..c4ad37fd73 100644 --- a/docset/winserver2019-ps/hyper-v/Import-VM.md +++ b/docset/winserver2019-ps/hyper-v/Import-VM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/import-vm?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/import-vm?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-VM --- diff --git a/docset/winserver2019-ps/hyper-v/Import-VMInitialReplication.md b/docset/winserver2019-ps/hyper-v/Import-VMInitialReplication.md index a0152e3569..f1cc4ab368 100644 --- a/docset/winserver2019-ps/hyper-v/Import-VMInitialReplication.md +++ b/docset/winserver2019-ps/hyper-v/Import-VMInitialReplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/import-vminitialreplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/import-vminitialreplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-VMInitialReplication --- diff --git a/docset/winserver2019-ps/hyper-v/Measure-VM.md b/docset/winserver2019-ps/hyper-v/Measure-VM.md index e49cafc1d6..d2da45f1bf 100644 --- a/docset/winserver2019-ps/hyper-v/Measure-VM.md +++ b/docset/winserver2019-ps/hyper-v/Measure-VM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/measure-vm?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/measure-vm?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Measure-VM --- diff --git a/docset/winserver2019-ps/hyper-v/Measure-VMReplication.md b/docset/winserver2019-ps/hyper-v/Measure-VMReplication.md index 1d8d967853..728a5c0e2a 100644 --- a/docset/winserver2019-ps/hyper-v/Measure-VMReplication.md +++ b/docset/winserver2019-ps/hyper-v/Measure-VMReplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/measure-vmreplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/measure-vmreplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Measure-VMReplication --- diff --git a/docset/winserver2019-ps/hyper-v/Measure-VMResourcePool.md b/docset/winserver2019-ps/hyper-v/Measure-VMResourcePool.md index fb0b88f9cb..d61f328a2d 100644 --- a/docset/winserver2019-ps/hyper-v/Measure-VMResourcePool.md +++ b/docset/winserver2019-ps/hyper-v/Measure-VMResourcePool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/measure-vmresourcepool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/measure-vmresourcepool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Measure-VMResourcePool --- diff --git a/docset/winserver2019-ps/hyper-v/Merge-VHD.md b/docset/winserver2019-ps/hyper-v/Merge-VHD.md index dc694759b8..f584a757d0 100644 --- a/docset/winserver2019-ps/hyper-v/Merge-VHD.md +++ b/docset/winserver2019-ps/hyper-v/Merge-VHD.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/merge-vhd?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/merge-vhd?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Merge-VHD --- diff --git a/docset/winserver2019-ps/hyper-v/Mount-VHD.md b/docset/winserver2019-ps/hyper-v/Mount-VHD.md index 0366bb7a61..1a77770cd4 100644 --- a/docset/winserver2019-ps/hyper-v/Mount-VHD.md +++ b/docset/winserver2019-ps/hyper-v/Mount-VHD.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/mount-vhd?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/mount-vhd?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Mount-VHD --- diff --git a/docset/winserver2019-ps/hyper-v/Move-VM.md b/docset/winserver2019-ps/hyper-v/Move-VM.md index c31778dcb3..315706d702 100644 --- a/docset/winserver2019-ps/hyper-v/Move-VM.md +++ b/docset/winserver2019-ps/hyper-v/Move-VM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/move-vm?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/move-vm?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-VM --- diff --git a/docset/winserver2019-ps/hyper-v/Move-VMStorage.md b/docset/winserver2019-ps/hyper-v/Move-VMStorage.md index 67b414aff0..7241977266 100644 --- a/docset/winserver2019-ps/hyper-v/Move-VMStorage.md +++ b/docset/winserver2019-ps/hyper-v/Move-VMStorage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/move-vmstorage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/move-vmstorage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-VMStorage --- diff --git a/docset/winserver2019-ps/hyper-v/New-VFD.md b/docset/winserver2019-ps/hyper-v/New-VFD.md index 13e1373474..5135e25c3b 100644 --- a/docset/winserver2019-ps/hyper-v/New-VFD.md +++ b/docset/winserver2019-ps/hyper-v/New-VFD.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/new-vfd?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/new-vfd?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VFD --- diff --git a/docset/winserver2019-ps/hyper-v/New-VHD.md b/docset/winserver2019-ps/hyper-v/New-VHD.md index 5960b62d8e..9f996369f5 100644 --- a/docset/winserver2019-ps/hyper-v/New-VHD.md +++ b/docset/winserver2019-ps/hyper-v/New-VHD.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/new-vhd?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/new-vhd?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VHD --- diff --git a/docset/winserver2019-ps/hyper-v/New-VM.md b/docset/winserver2019-ps/hyper-v/New-VM.md index c0815dad24..3b1287509e 100644 --- a/docset/winserver2019-ps/hyper-v/New-VM.md +++ b/docset/winserver2019-ps/hyper-v/New-VM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/new-vm?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/new-vm?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VM --- diff --git a/docset/winserver2019-ps/hyper-v/New-VMGroup.md b/docset/winserver2019-ps/hyper-v/New-VMGroup.md index d7b675b8b5..704f9ccc9b 100644 --- a/docset/winserver2019-ps/hyper-v/New-VMGroup.md +++ b/docset/winserver2019-ps/hyper-v/New-VMGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/new-vmgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/new-vmgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VMGroup --- diff --git a/docset/winserver2019-ps/hyper-v/New-VMReplicationAuthorizationEntry.md b/docset/winserver2019-ps/hyper-v/New-VMReplicationAuthorizationEntry.md index 1c13e1c5ca..8a4fd77489 100644 --- a/docset/winserver2019-ps/hyper-v/New-VMReplicationAuthorizationEntry.md +++ b/docset/winserver2019-ps/hyper-v/New-VMReplicationAuthorizationEntry.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/new-vmreplicationauthorizationentry?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/new-vmreplicationauthorizationentry?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VMReplicationAuthorizationEntry --- diff --git a/docset/winserver2019-ps/hyper-v/New-VMResourcePool.md b/docset/winserver2019-ps/hyper-v/New-VMResourcePool.md index e7f280e88d..8ca6a8cd31 100644 --- a/docset/winserver2019-ps/hyper-v/New-VMResourcePool.md +++ b/docset/winserver2019-ps/hyper-v/New-VMResourcePool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/new-vmresourcepool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/new-vmresourcepool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VMResourcePool --- diff --git a/docset/winserver2019-ps/hyper-v/New-VMSan.md b/docset/winserver2019-ps/hyper-v/New-VMSan.md index e7bfe4c3c2..a709bbaf60 100644 --- a/docset/winserver2019-ps/hyper-v/New-VMSan.md +++ b/docset/winserver2019-ps/hyper-v/New-VMSan.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/new-vmsan?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/new-vmsan?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VMSan --- diff --git a/docset/winserver2019-ps/hyper-v/New-VMSwitch.md b/docset/winserver2019-ps/hyper-v/New-VMSwitch.md index f69f038cf7..0e11fb6879 100644 --- a/docset/winserver2019-ps/hyper-v/New-VMSwitch.md +++ b/docset/winserver2019-ps/hyper-v/New-VMSwitch.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/new-vmswitch?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/new-vmswitch?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VMSwitch --- diff --git a/docset/winserver2019-ps/hyper-v/Optimize-VHD.md b/docset/winserver2019-ps/hyper-v/Optimize-VHD.md index b737370d4f..88c945e820 100644 --- a/docset/winserver2019-ps/hyper-v/Optimize-VHD.md +++ b/docset/winserver2019-ps/hyper-v/Optimize-VHD.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/optimize-vhd?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/optimize-vhd?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Optimize-VHD --- diff --git a/docset/winserver2019-ps/hyper-v/Optimize-VHDSet.md b/docset/winserver2019-ps/hyper-v/Optimize-VHDSet.md index e56e595062..0f8be8a98a 100644 --- a/docset/winserver2019-ps/hyper-v/Optimize-VHDSet.md +++ b/docset/winserver2019-ps/hyper-v/Optimize-VHDSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/optimize-vhdset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/optimize-vhdset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Optimize-VHDSet --- diff --git a/docset/winserver2019-ps/hyper-v/Remove-VHDSnapshot.md b/docset/winserver2019-ps/hyper-v/Remove-VHDSnapshot.md index f0f3447acc..2b04e35668 100644 --- a/docset/winserver2019-ps/hyper-v/Remove-VHDSnapshot.md +++ b/docset/winserver2019-ps/hyper-v/Remove-VHDSnapshot.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vhdsnapshot?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vhdsnapshot?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VHDSnapshot --- diff --git a/docset/winserver2019-ps/hyper-v/Remove-VM.md b/docset/winserver2019-ps/hyper-v/Remove-VM.md index 9cd6b25d53..c63c521897 100644 --- a/docset/winserver2019-ps/hyper-v/Remove-VM.md +++ b/docset/winserver2019-ps/hyper-v/Remove-VM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vm?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vm?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VM --- diff --git a/docset/winserver2019-ps/hyper-v/Remove-VMDvdDrive.md b/docset/winserver2019-ps/hyper-v/Remove-VMDvdDrive.md index 568df23428..c763383605 100644 --- a/docset/winserver2019-ps/hyper-v/Remove-VMDvdDrive.md +++ b/docset/winserver2019-ps/hyper-v/Remove-VMDvdDrive.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmdvddrive?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmdvddrive?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMDvdDrive --- diff --git a/docset/winserver2019-ps/hyper-v/Remove-VMFibreChannelHba.md b/docset/winserver2019-ps/hyper-v/Remove-VMFibreChannelHba.md index 3ac7a083aa..9f1b35cfe3 100644 --- a/docset/winserver2019-ps/hyper-v/Remove-VMFibreChannelHba.md +++ b/docset/winserver2019-ps/hyper-v/Remove-VMFibreChannelHba.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmfibrechannelhba?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmfibrechannelhba?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMFibreChannelHba --- diff --git a/docset/winserver2019-ps/hyper-v/Remove-VMGroup.md b/docset/winserver2019-ps/hyper-v/Remove-VMGroup.md index c8c325ac2a..9de009b160 100644 --- a/docset/winserver2019-ps/hyper-v/Remove-VMGroup.md +++ b/docset/winserver2019-ps/hyper-v/Remove-VMGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMGroup --- diff --git a/docset/winserver2019-ps/hyper-v/Remove-VMGroupMember.md b/docset/winserver2019-ps/hyper-v/Remove-VMGroupMember.md index 046a7b69d5..2a528fb54f 100644 --- a/docset/winserver2019-ps/hyper-v/Remove-VMGroupMember.md +++ b/docset/winserver2019-ps/hyper-v/Remove-VMGroupMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmgroupmember?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmgroupmember?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMGroupMember --- diff --git a/docset/winserver2019-ps/hyper-v/Remove-VMHardDiskDrive.md b/docset/winserver2019-ps/hyper-v/Remove-VMHardDiskDrive.md index 400b4c9461..53fae3dd0c 100644 --- a/docset/winserver2019-ps/hyper-v/Remove-VMHardDiskDrive.md +++ b/docset/winserver2019-ps/hyper-v/Remove-VMHardDiskDrive.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmharddiskdrive?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmharddiskdrive?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMHardDiskDrive --- diff --git a/docset/winserver2019-ps/hyper-v/Remove-VMMigrationNetwork.md b/docset/winserver2019-ps/hyper-v/Remove-VMMigrationNetwork.md index 48762a4db9..1137385a58 100644 --- a/docset/winserver2019-ps/hyper-v/Remove-VMMigrationNetwork.md +++ b/docset/winserver2019-ps/hyper-v/Remove-VMMigrationNetwork.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmmigrationnetwork?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmmigrationnetwork?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMMigrationNetwork --- diff --git a/docset/winserver2019-ps/hyper-v/Remove-VMNetworkAdapter.md b/docset/winserver2019-ps/hyper-v/Remove-VMNetworkAdapter.md index 92d1c005ba..fde30ae8ea 100644 --- a/docset/winserver2019-ps/hyper-v/Remove-VMNetworkAdapter.md +++ b/docset/winserver2019-ps/hyper-v/Remove-VMNetworkAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmnetworkadapter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmnetworkadapter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMNetworkAdapter --- diff --git a/docset/winserver2019-ps/hyper-v/Remove-VMNetworkAdapterAcl.md b/docset/winserver2019-ps/hyper-v/Remove-VMNetworkAdapterAcl.md index 6bf84830a5..64864ee516 100644 --- a/docset/winserver2019-ps/hyper-v/Remove-VMNetworkAdapterAcl.md +++ b/docset/winserver2019-ps/hyper-v/Remove-VMNetworkAdapterAcl.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmnetworkadapteracl?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmnetworkadapteracl?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMNetworkAdapterAcl --- diff --git a/docset/winserver2019-ps/hyper-v/Remove-VMNetworkAdapterExtendedAcl.md b/docset/winserver2019-ps/hyper-v/Remove-VMNetworkAdapterExtendedAcl.md index 53bfac217c..844a9ec980 100644 --- a/docset/winserver2019-ps/hyper-v/Remove-VMNetworkAdapterExtendedAcl.md +++ b/docset/winserver2019-ps/hyper-v/Remove-VMNetworkAdapterExtendedAcl.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmnetworkadapterextendedacl?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmnetworkadapterextendedacl?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMNetworkAdapterExtendedAcl --- diff --git a/docset/winserver2019-ps/hyper-v/Remove-VMNetworkAdapterRoutingDomainMapping.md b/docset/winserver2019-ps/hyper-v/Remove-VMNetworkAdapterRoutingDomainMapping.md index 0cdea68db4..83fd93aa07 100644 --- a/docset/winserver2019-ps/hyper-v/Remove-VMNetworkAdapterRoutingDomainMapping.md +++ b/docset/winserver2019-ps/hyper-v/Remove-VMNetworkAdapterRoutingDomainMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmnetworkadapterroutingdomainmapping?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmnetworkadapterroutingdomainmapping?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMNetworkAdapterRoutingDomainMapping --- diff --git a/docset/winserver2019-ps/hyper-v/Remove-VMNetworkAdapterTeamMapping.md b/docset/winserver2019-ps/hyper-v/Remove-VMNetworkAdapterTeamMapping.md index 38f6a3f3ac..b9fa6a489d 100644 --- a/docset/winserver2019-ps/hyper-v/Remove-VMNetworkAdapterTeamMapping.md +++ b/docset/winserver2019-ps/hyper-v/Remove-VMNetworkAdapterTeamMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmnetworkadapterteammapping?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmnetworkadapterteammapping?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMNetworkAdapterTeamMapping --- diff --git a/docset/winserver2019-ps/hyper-v/Remove-VMRemoteFx3dVideoAdapter.md b/docset/winserver2019-ps/hyper-v/Remove-VMRemoteFx3dVideoAdapter.md index 6ffed9e88b..5fa5a5a230 100644 --- a/docset/winserver2019-ps/hyper-v/Remove-VMRemoteFx3dVideoAdapter.md +++ b/docset/winserver2019-ps/hyper-v/Remove-VMRemoteFx3dVideoAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmremotefx3dvideoadapter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmremotefx3dvideoadapter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMRemoteFx3dVideoAdapter --- diff --git a/docset/winserver2019-ps/hyper-v/Remove-VMReplication.md b/docset/winserver2019-ps/hyper-v/Remove-VMReplication.md index 61ad14aa42..d600a7034f 100644 --- a/docset/winserver2019-ps/hyper-v/Remove-VMReplication.md +++ b/docset/winserver2019-ps/hyper-v/Remove-VMReplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmreplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmreplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMReplication --- diff --git a/docset/winserver2019-ps/hyper-v/Remove-VMReplicationAuthorizationEntry.md b/docset/winserver2019-ps/hyper-v/Remove-VMReplicationAuthorizationEntry.md index 032aea8276..cd28f3cb83 100644 --- a/docset/winserver2019-ps/hyper-v/Remove-VMReplicationAuthorizationEntry.md +++ b/docset/winserver2019-ps/hyper-v/Remove-VMReplicationAuthorizationEntry.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmreplicationauthorizationentry?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmreplicationauthorizationentry?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMReplicationAuthorizationEntry --- diff --git a/docset/winserver2019-ps/hyper-v/Remove-VMResourcePool.md b/docset/winserver2019-ps/hyper-v/Remove-VMResourcePool.md index 9cc67ee569..4bed0affc4 100644 --- a/docset/winserver2019-ps/hyper-v/Remove-VMResourcePool.md +++ b/docset/winserver2019-ps/hyper-v/Remove-VMResourcePool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmresourcepool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmresourcepool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMResourcePool --- diff --git a/docset/winserver2019-ps/hyper-v/Remove-VMSan.md b/docset/winserver2019-ps/hyper-v/Remove-VMSan.md index 082aff1ac5..68a702d78c 100644 --- a/docset/winserver2019-ps/hyper-v/Remove-VMSan.md +++ b/docset/winserver2019-ps/hyper-v/Remove-VMSan.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmsan?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmsan?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMSan --- diff --git a/docset/winserver2019-ps/hyper-v/Remove-VMSavedState.md b/docset/winserver2019-ps/hyper-v/Remove-VMSavedState.md index 176d55cbae..121e5dbe7f 100644 --- a/docset/winserver2019-ps/hyper-v/Remove-VMSavedState.md +++ b/docset/winserver2019-ps/hyper-v/Remove-VMSavedState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmsavedstate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmsavedstate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMSavedState --- diff --git a/docset/winserver2019-ps/hyper-v/Remove-VMScsiController.md b/docset/winserver2019-ps/hyper-v/Remove-VMScsiController.md index 4b4b35887e..66cf10415f 100644 --- a/docset/winserver2019-ps/hyper-v/Remove-VMScsiController.md +++ b/docset/winserver2019-ps/hyper-v/Remove-VMScsiController.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmscsicontroller?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmscsicontroller?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMScsiController --- diff --git a/docset/winserver2019-ps/hyper-v/Remove-VMSnapshot.md b/docset/winserver2019-ps/hyper-v/Remove-VMSnapshot.md index c86292d1a7..9ab504c2f6 100644 --- a/docset/winserver2019-ps/hyper-v/Remove-VMSnapshot.md +++ b/docset/winserver2019-ps/hyper-v/Remove-VMSnapshot.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmsnapshot?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmsnapshot?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMSnapshot --- diff --git a/docset/winserver2019-ps/hyper-v/Remove-VMStoragePath.md b/docset/winserver2019-ps/hyper-v/Remove-VMStoragePath.md index fc893d3541..da9c680125 100644 --- a/docset/winserver2019-ps/hyper-v/Remove-VMStoragePath.md +++ b/docset/winserver2019-ps/hyper-v/Remove-VMStoragePath.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmstoragepath?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmstoragepath?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMStoragePath --- diff --git a/docset/winserver2019-ps/hyper-v/Remove-VMSwitch.md b/docset/winserver2019-ps/hyper-v/Remove-VMSwitch.md index 300a4163f7..df3580f1e5 100644 --- a/docset/winserver2019-ps/hyper-v/Remove-VMSwitch.md +++ b/docset/winserver2019-ps/hyper-v/Remove-VMSwitch.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmswitch?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmswitch?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMSwitch --- diff --git a/docset/winserver2019-ps/hyper-v/Remove-VMSwitchExtensionPortFeature.md b/docset/winserver2019-ps/hyper-v/Remove-VMSwitchExtensionPortFeature.md index 9a1042744f..2aba804dee 100644 --- a/docset/winserver2019-ps/hyper-v/Remove-VMSwitchExtensionPortFeature.md +++ b/docset/winserver2019-ps/hyper-v/Remove-VMSwitchExtensionPortFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmswitchextensionportfeature?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmswitchextensionportfeature?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMSwitchExtensionPortFeature --- diff --git a/docset/winserver2019-ps/hyper-v/Remove-VMSwitchExtensionSwitchFeature.md b/docset/winserver2019-ps/hyper-v/Remove-VMSwitchExtensionSwitchFeature.md index b90b019675..c960007ec0 100644 --- a/docset/winserver2019-ps/hyper-v/Remove-VMSwitchExtensionSwitchFeature.md +++ b/docset/winserver2019-ps/hyper-v/Remove-VMSwitchExtensionSwitchFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmswitchextensionswitchfeature?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmswitchextensionswitchfeature?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMSwitchExtensionSwitchFeature --- diff --git a/docset/winserver2019-ps/hyper-v/Remove-VMSwitchTeamMember.md b/docset/winserver2019-ps/hyper-v/Remove-VMSwitchTeamMember.md index 9d7ed3d8bb..4eddfcac09 100644 --- a/docset/winserver2019-ps/hyper-v/Remove-VMSwitchTeamMember.md +++ b/docset/winserver2019-ps/hyper-v/Remove-VMSwitchTeamMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmswitchteammember?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmswitchteammember?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMSwitchTeamMember --- diff --git a/docset/winserver2019-ps/hyper-v/Rename-VM.md b/docset/winserver2019-ps/hyper-v/Rename-VM.md index ddfbbfa146..14fe0ccbb8 100644 --- a/docset/winserver2019-ps/hyper-v/Rename-VM.md +++ b/docset/winserver2019-ps/hyper-v/Rename-VM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/rename-vm?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/rename-vm?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-VM --- diff --git a/docset/winserver2019-ps/hyper-v/Rename-VMGroup.md b/docset/winserver2019-ps/hyper-v/Rename-VMGroup.md index 3eee67327f..cd554c485d 100644 --- a/docset/winserver2019-ps/hyper-v/Rename-VMGroup.md +++ b/docset/winserver2019-ps/hyper-v/Rename-VMGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/rename-vmgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/rename-vmgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-VMGroup --- diff --git a/docset/winserver2019-ps/hyper-v/Rename-VMNetworkAdapter.md b/docset/winserver2019-ps/hyper-v/Rename-VMNetworkAdapter.md index ee9f1f220b..457af6d18d 100644 --- a/docset/winserver2019-ps/hyper-v/Rename-VMNetworkAdapter.md +++ b/docset/winserver2019-ps/hyper-v/Rename-VMNetworkAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/rename-vmnetworkadapter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/rename-vmnetworkadapter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-VMNetworkAdapter --- diff --git a/docset/winserver2019-ps/hyper-v/Rename-VMResourcePool.md b/docset/winserver2019-ps/hyper-v/Rename-VMResourcePool.md index 4031d8c176..113aa9b12e 100644 --- a/docset/winserver2019-ps/hyper-v/Rename-VMResourcePool.md +++ b/docset/winserver2019-ps/hyper-v/Rename-VMResourcePool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/rename-vmresourcepool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/rename-vmresourcepool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-VMResourcePool --- diff --git a/docset/winserver2019-ps/hyper-v/Rename-VMSan.md b/docset/winserver2019-ps/hyper-v/Rename-VMSan.md index 093084dba4..7b17ce9754 100644 --- a/docset/winserver2019-ps/hyper-v/Rename-VMSan.md +++ b/docset/winserver2019-ps/hyper-v/Rename-VMSan.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/rename-vmsan?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/rename-vmsan?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-VMSan --- diff --git a/docset/winserver2019-ps/hyper-v/Rename-VMSnapshot.md b/docset/winserver2019-ps/hyper-v/Rename-VMSnapshot.md index 97d238f0fc..58cf06c6a9 100644 --- a/docset/winserver2019-ps/hyper-v/Rename-VMSnapshot.md +++ b/docset/winserver2019-ps/hyper-v/Rename-VMSnapshot.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/rename-vmsnapshot?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/rename-vmsnapshot?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-VMSnapshot --- diff --git a/docset/winserver2019-ps/hyper-v/Rename-VMSwitch.md b/docset/winserver2019-ps/hyper-v/Rename-VMSwitch.md index db2280d426..ed5b719097 100644 --- a/docset/winserver2019-ps/hyper-v/Rename-VMSwitch.md +++ b/docset/winserver2019-ps/hyper-v/Rename-VMSwitch.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/rename-vmswitch?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/rename-vmswitch?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-VMSwitch --- diff --git a/docset/winserver2019-ps/hyper-v/Repair-VM.md b/docset/winserver2019-ps/hyper-v/Repair-VM.md index 3a3fd07529..ecafd56d07 100644 --- a/docset/winserver2019-ps/hyper-v/Repair-VM.md +++ b/docset/winserver2019-ps/hyper-v/Repair-VM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/repair-vm?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/repair-vm?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Repair-VM --- diff --git a/docset/winserver2019-ps/hyper-v/Reset-VMReplicationStatistics.md b/docset/winserver2019-ps/hyper-v/Reset-VMReplicationStatistics.md index c78676eb2b..792d1a401c 100644 --- a/docset/winserver2019-ps/hyper-v/Reset-VMReplicationStatistics.md +++ b/docset/winserver2019-ps/hyper-v/Reset-VMReplicationStatistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/reset-vmreplicationstatistics?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/reset-vmreplicationstatistics?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-VMReplicationStatistics --- diff --git a/docset/winserver2019-ps/hyper-v/Reset-VMResourceMetering.md b/docset/winserver2019-ps/hyper-v/Reset-VMResourceMetering.md index 26d0f60e67..d48ad33f28 100644 --- a/docset/winserver2019-ps/hyper-v/Reset-VMResourceMetering.md +++ b/docset/winserver2019-ps/hyper-v/Reset-VMResourceMetering.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/reset-vmresourcemetering?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/reset-vmresourcemetering?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-VMResourceMetering --- diff --git a/docset/winserver2019-ps/hyper-v/Resize-VHD.md b/docset/winserver2019-ps/hyper-v/Resize-VHD.md index 4f18ae5c5c..f4986f2b15 100644 --- a/docset/winserver2019-ps/hyper-v/Resize-VHD.md +++ b/docset/winserver2019-ps/hyper-v/Resize-VHD.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/resize-vhd?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/resize-vhd?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resize-VHD --- diff --git a/docset/winserver2019-ps/hyper-v/Restart-VM.md b/docset/winserver2019-ps/hyper-v/Restart-VM.md index 8f3c155e21..98746e3436 100644 --- a/docset/winserver2019-ps/hyper-v/Restart-VM.md +++ b/docset/winserver2019-ps/hyper-v/Restart-VM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/restart-vm?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/restart-vm?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restart-VM --- diff --git a/docset/winserver2019-ps/hyper-v/Restore-VMSnapshot.md b/docset/winserver2019-ps/hyper-v/Restore-VMSnapshot.md index 8ba7e5ca15..97f5059d94 100644 --- a/docset/winserver2019-ps/hyper-v/Restore-VMSnapshot.md +++ b/docset/winserver2019-ps/hyper-v/Restore-VMSnapshot.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/restore-vmsnapshot?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/restore-vmsnapshot?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-VMSnapshot --- diff --git a/docset/winserver2019-ps/hyper-v/Resume-VM.md b/docset/winserver2019-ps/hyper-v/Resume-VM.md index 1d7c20cb2e..a74d31436c 100644 --- a/docset/winserver2019-ps/hyper-v/Resume-VM.md +++ b/docset/winserver2019-ps/hyper-v/Resume-VM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/resume-vm?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/resume-vm?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-VM --- diff --git a/docset/winserver2019-ps/hyper-v/Resume-VMReplication.md b/docset/winserver2019-ps/hyper-v/Resume-VMReplication.md index 5d5a6e08c8..c2567b2af1 100644 --- a/docset/winserver2019-ps/hyper-v/Resume-VMReplication.md +++ b/docset/winserver2019-ps/hyper-v/Resume-VMReplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/resume-vmreplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/resume-vmreplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-VMReplication --- diff --git a/docset/winserver2019-ps/hyper-v/Revoke-VMConnectAccess.md b/docset/winserver2019-ps/hyper-v/Revoke-VMConnectAccess.md index 2f6db06567..909c9c588b 100644 --- a/docset/winserver2019-ps/hyper-v/Revoke-VMConnectAccess.md +++ b/docset/winserver2019-ps/hyper-v/Revoke-VMConnectAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/revoke-vmconnectaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/revoke-vmconnectaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Revoke-VMConnectAccess --- diff --git a/docset/winserver2019-ps/hyper-v/Save-VM.md b/docset/winserver2019-ps/hyper-v/Save-VM.md index 2bd9ff4c17..5205768d01 100644 --- a/docset/winserver2019-ps/hyper-v/Save-VM.md +++ b/docset/winserver2019-ps/hyper-v/Save-VM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/save-vm?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/save-vm?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Save-VM --- diff --git a/docset/winserver2019-ps/hyper-v/Set-VHD.md b/docset/winserver2019-ps/hyper-v/Set-VHD.md index cb390f4dbf..8ec71d26c5 100644 --- a/docset/winserver2019-ps/hyper-v/Set-VHD.md +++ b/docset/winserver2019-ps/hyper-v/Set-VHD.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vhd?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vhd?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VHD --- diff --git a/docset/winserver2019-ps/hyper-v/Set-VM.md b/docset/winserver2019-ps/hyper-v/Set-VM.md index e3ae10de17..9a18c00c8f 100644 --- a/docset/winserver2019-ps/hyper-v/Set-VM.md +++ b/docset/winserver2019-ps/hyper-v/Set-VM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vm?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vm?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VM --- diff --git a/docset/winserver2019-ps/hyper-v/Set-VMBios.md b/docset/winserver2019-ps/hyper-v/Set-VMBios.md index 4ca970a519..a6c224d87b 100644 --- a/docset/winserver2019-ps/hyper-v/Set-VMBios.md +++ b/docset/winserver2019-ps/hyper-v/Set-VMBios.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmbios?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmbios?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMBios --- diff --git a/docset/winserver2019-ps/hyper-v/Set-VMComPort.md b/docset/winserver2019-ps/hyper-v/Set-VMComPort.md index d17149234f..83ba4712f4 100644 --- a/docset/winserver2019-ps/hyper-v/Set-VMComPort.md +++ b/docset/winserver2019-ps/hyper-v/Set-VMComPort.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmcomport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmcomport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMComPort --- diff --git a/docset/winserver2019-ps/hyper-v/Set-VMDvdDrive.md b/docset/winserver2019-ps/hyper-v/Set-VMDvdDrive.md index 6c0c752c36..0f5047de0b 100644 --- a/docset/winserver2019-ps/hyper-v/Set-VMDvdDrive.md +++ b/docset/winserver2019-ps/hyper-v/Set-VMDvdDrive.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmdvddrive?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmdvddrive?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMDvdDrive --- diff --git a/docset/winserver2019-ps/hyper-v/Set-VMFibreChannelHba.md b/docset/winserver2019-ps/hyper-v/Set-VMFibreChannelHba.md index 2881467fff..143f5a0349 100644 --- a/docset/winserver2019-ps/hyper-v/Set-VMFibreChannelHba.md +++ b/docset/winserver2019-ps/hyper-v/Set-VMFibreChannelHba.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmfibrechannelhba?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmfibrechannelhba?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMFibreChannelHba --- diff --git a/docset/winserver2019-ps/hyper-v/Set-VMFirmware.md b/docset/winserver2019-ps/hyper-v/Set-VMFirmware.md index f980d11aac..eee9523c24 100644 --- a/docset/winserver2019-ps/hyper-v/Set-VMFirmware.md +++ b/docset/winserver2019-ps/hyper-v/Set-VMFirmware.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmfirmware?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmfirmware?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMFirmware --- diff --git a/docset/winserver2019-ps/hyper-v/Set-VMFloppyDiskDrive.md b/docset/winserver2019-ps/hyper-v/Set-VMFloppyDiskDrive.md index 651b40994d..6af22ad972 100644 --- a/docset/winserver2019-ps/hyper-v/Set-VMFloppyDiskDrive.md +++ b/docset/winserver2019-ps/hyper-v/Set-VMFloppyDiskDrive.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmfloppydiskdrive?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmfloppydiskdrive?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMFloppyDiskDrive --- diff --git a/docset/winserver2019-ps/hyper-v/Set-VMHardDiskDrive.md b/docset/winserver2019-ps/hyper-v/Set-VMHardDiskDrive.md index 70dc44d0cf..001926a255 100644 --- a/docset/winserver2019-ps/hyper-v/Set-VMHardDiskDrive.md +++ b/docset/winserver2019-ps/hyper-v/Set-VMHardDiskDrive.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmharddiskdrive?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmharddiskdrive?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMHardDiskDrive --- diff --git a/docset/winserver2019-ps/hyper-v/Set-VMHost.md b/docset/winserver2019-ps/hyper-v/Set-VMHost.md index bfee890a29..5da1f8baab 100644 --- a/docset/winserver2019-ps/hyper-v/Set-VMHost.md +++ b/docset/winserver2019-ps/hyper-v/Set-VMHost.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmhost?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmhost?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMHost --- diff --git a/docset/winserver2019-ps/hyper-v/Set-VMHostCluster.md b/docset/winserver2019-ps/hyper-v/Set-VMHostCluster.md index 2da05081a4..71301738c2 100644 --- a/docset/winserver2019-ps/hyper-v/Set-VMHostCluster.md +++ b/docset/winserver2019-ps/hyper-v/Set-VMHostCluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmhostcluster?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmhostcluster?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMHostCluster --- diff --git a/docset/winserver2019-ps/hyper-v/Set-VMKeyProtector.md b/docset/winserver2019-ps/hyper-v/Set-VMKeyProtector.md index ed503cfdcd..3dcff0a12c 100644 --- a/docset/winserver2019-ps/hyper-v/Set-VMKeyProtector.md +++ b/docset/winserver2019-ps/hyper-v/Set-VMKeyProtector.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmkeyprotector?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmkeyprotector?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMKeyProtector --- diff --git a/docset/winserver2019-ps/hyper-v/Set-VMMemory.md b/docset/winserver2019-ps/hyper-v/Set-VMMemory.md index a975180606..7b8a526d01 100644 --- a/docset/winserver2019-ps/hyper-v/Set-VMMemory.md +++ b/docset/winserver2019-ps/hyper-v/Set-VMMemory.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmmemory?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmmemory?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMMemory --- diff --git a/docset/winserver2019-ps/hyper-v/Set-VMMigrationNetwork.md b/docset/winserver2019-ps/hyper-v/Set-VMMigrationNetwork.md index b26fac6d2f..1a99463edf 100644 --- a/docset/winserver2019-ps/hyper-v/Set-VMMigrationNetwork.md +++ b/docset/winserver2019-ps/hyper-v/Set-VMMigrationNetwork.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmmigrationnetwork?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmmigrationnetwork?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMMigrationNetwork --- diff --git a/docset/winserver2019-ps/hyper-v/Set-VMNetworkAdapter.md b/docset/winserver2019-ps/hyper-v/Set-VMNetworkAdapter.md index 1c5a412a19..dd02093942 100644 --- a/docset/winserver2019-ps/hyper-v/Set-VMNetworkAdapter.md +++ b/docset/winserver2019-ps/hyper-v/Set-VMNetworkAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmnetworkadapter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmnetworkadapter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMNetworkAdapter --- diff --git a/docset/winserver2019-ps/hyper-v/Set-VMNetworkAdapterFailoverConfiguration.md b/docset/winserver2019-ps/hyper-v/Set-VMNetworkAdapterFailoverConfiguration.md index ee095cf82c..a45434cc9e 100644 --- a/docset/winserver2019-ps/hyper-v/Set-VMNetworkAdapterFailoverConfiguration.md +++ b/docset/winserver2019-ps/hyper-v/Set-VMNetworkAdapterFailoverConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmnetworkadapterfailoverconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmnetworkadapterfailoverconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMNetworkAdapterFailoverConfiguration --- diff --git a/docset/winserver2019-ps/hyper-v/Set-VMNetworkAdapterTeamMapping.md b/docset/winserver2019-ps/hyper-v/Set-VMNetworkAdapterTeamMapping.md index 0ee40a8501..319b1caca2 100644 --- a/docset/winserver2019-ps/hyper-v/Set-VMNetworkAdapterTeamMapping.md +++ b/docset/winserver2019-ps/hyper-v/Set-VMNetworkAdapterTeamMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmnetworkadapterteammapping?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmnetworkadapterteammapping?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMNetworkAdapterTeamMapping --- diff --git a/docset/winserver2019-ps/hyper-v/Set-VMNetworkAdapterVlan.md b/docset/winserver2019-ps/hyper-v/Set-VMNetworkAdapterVlan.md index 8426ea2953..a1d9e7b0d1 100644 --- a/docset/winserver2019-ps/hyper-v/Set-VMNetworkAdapterVlan.md +++ b/docset/winserver2019-ps/hyper-v/Set-VMNetworkAdapterVlan.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmnetworkadaptervlan?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmnetworkadaptervlan?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMNetworkAdapterVlan --- diff --git a/docset/winserver2019-ps/hyper-v/Set-VMProcessor.md b/docset/winserver2019-ps/hyper-v/Set-VMProcessor.md index 12ddcf7b9a..1a3cb5c34d 100644 --- a/docset/winserver2019-ps/hyper-v/Set-VMProcessor.md +++ b/docset/winserver2019-ps/hyper-v/Set-VMProcessor.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmprocessor?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmprocessor?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMProcessor --- diff --git a/docset/winserver2019-ps/hyper-v/Set-VMRemoteFx3dVideoAdapter.md b/docset/winserver2019-ps/hyper-v/Set-VMRemoteFx3dVideoAdapter.md index 1e35c48234..32faa38d28 100644 --- a/docset/winserver2019-ps/hyper-v/Set-VMRemoteFx3dVideoAdapter.md +++ b/docset/winserver2019-ps/hyper-v/Set-VMRemoteFx3dVideoAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmremotefx3dvideoadapter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmremotefx3dvideoadapter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMRemoteFx3dVideoAdapter --- diff --git a/docset/winserver2019-ps/hyper-v/Set-VMReplication.md b/docset/winserver2019-ps/hyper-v/Set-VMReplication.md index 9f7d403eb8..c789ae9024 100644 --- a/docset/winserver2019-ps/hyper-v/Set-VMReplication.md +++ b/docset/winserver2019-ps/hyper-v/Set-VMReplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmreplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmreplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMReplication --- diff --git a/docset/winserver2019-ps/hyper-v/Set-VMReplicationAuthorizationEntry.md b/docset/winserver2019-ps/hyper-v/Set-VMReplicationAuthorizationEntry.md index a3e51805d6..92506c20fc 100644 --- a/docset/winserver2019-ps/hyper-v/Set-VMReplicationAuthorizationEntry.md +++ b/docset/winserver2019-ps/hyper-v/Set-VMReplicationAuthorizationEntry.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmreplicationauthorizationentry?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmreplicationauthorizationentry?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMReplicationAuthorizationEntry --- diff --git a/docset/winserver2019-ps/hyper-v/Set-VMReplicationServer.md b/docset/winserver2019-ps/hyper-v/Set-VMReplicationServer.md index 512110666e..f4d06ad88a 100644 --- a/docset/winserver2019-ps/hyper-v/Set-VMReplicationServer.md +++ b/docset/winserver2019-ps/hyper-v/Set-VMReplicationServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmreplicationserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmreplicationserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMReplicationServer --- diff --git a/docset/winserver2019-ps/hyper-v/Set-VMResourcePool.md b/docset/winserver2019-ps/hyper-v/Set-VMResourcePool.md index 56cf7ff161..e44d1eabbc 100644 --- a/docset/winserver2019-ps/hyper-v/Set-VMResourcePool.md +++ b/docset/winserver2019-ps/hyper-v/Set-VMResourcePool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmresourcepool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmresourcepool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMResourcePool --- diff --git a/docset/winserver2019-ps/hyper-v/Set-VMSan.md b/docset/winserver2019-ps/hyper-v/Set-VMSan.md index e71d74e2d1..fe49290dda 100644 --- a/docset/winserver2019-ps/hyper-v/Set-VMSan.md +++ b/docset/winserver2019-ps/hyper-v/Set-VMSan.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmsan?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmsan?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMSan --- diff --git a/docset/winserver2019-ps/hyper-v/Set-VMSecurity.md b/docset/winserver2019-ps/hyper-v/Set-VMSecurity.md index 6386ef30e4..da33a5f2c3 100644 --- a/docset/winserver2019-ps/hyper-v/Set-VMSecurity.md +++ b/docset/winserver2019-ps/hyper-v/Set-VMSecurity.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmsecurity?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmsecurity?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMSecurity --- diff --git a/docset/winserver2019-ps/hyper-v/Set-VMSecurityPolicy.md b/docset/winserver2019-ps/hyper-v/Set-VMSecurityPolicy.md index bf259f245f..4f960020b2 100644 --- a/docset/winserver2019-ps/hyper-v/Set-VMSecurityPolicy.md +++ b/docset/winserver2019-ps/hyper-v/Set-VMSecurityPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmsecuritypolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmsecuritypolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMSecurityPolicy --- diff --git a/docset/winserver2019-ps/hyper-v/Set-VMSwitch.md b/docset/winserver2019-ps/hyper-v/Set-VMSwitch.md index 8e5f7ea58c..12446b569d 100644 --- a/docset/winserver2019-ps/hyper-v/Set-VMSwitch.md +++ b/docset/winserver2019-ps/hyper-v/Set-VMSwitch.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmswitch?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmswitch?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMSwitch --- diff --git a/docset/winserver2019-ps/hyper-v/Set-VMSwitchExtensionPortFeature.md b/docset/winserver2019-ps/hyper-v/Set-VMSwitchExtensionPortFeature.md index 92a56f5a5e..7d01bdd750 100644 --- a/docset/winserver2019-ps/hyper-v/Set-VMSwitchExtensionPortFeature.md +++ b/docset/winserver2019-ps/hyper-v/Set-VMSwitchExtensionPortFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmswitchextensionportfeature?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmswitchextensionportfeature?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMSwitchExtensionPortFeature --- diff --git a/docset/winserver2019-ps/hyper-v/Set-VMSwitchExtensionSwitchFeature.md b/docset/winserver2019-ps/hyper-v/Set-VMSwitchExtensionSwitchFeature.md index 37285a44cf..003d80d8e6 100644 --- a/docset/winserver2019-ps/hyper-v/Set-VMSwitchExtensionSwitchFeature.md +++ b/docset/winserver2019-ps/hyper-v/Set-VMSwitchExtensionSwitchFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmswitchextensionswitchfeature?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmswitchextensionswitchfeature?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMSwitchExtensionSwitchFeature --- diff --git a/docset/winserver2019-ps/hyper-v/Set-VMSwitchTeam.md b/docset/winserver2019-ps/hyper-v/Set-VMSwitchTeam.md index 4b2d2732db..acea504601 100644 --- a/docset/winserver2019-ps/hyper-v/Set-VMSwitchTeam.md +++ b/docset/winserver2019-ps/hyper-v/Set-VMSwitchTeam.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmswitchteam?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmswitchteam?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMSwitchTeam --- diff --git a/docset/winserver2019-ps/hyper-v/Set-VMVideo.md b/docset/winserver2019-ps/hyper-v/Set-VMVideo.md index 59ab0864df..48a886a3a3 100644 --- a/docset/winserver2019-ps/hyper-v/Set-VMVideo.md +++ b/docset/winserver2019-ps/hyper-v/Set-VMVideo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmvideo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmvideo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMVideo --- diff --git a/docset/winserver2019-ps/hyper-v/Set-VmNetworkAdapterIsolation.md b/docset/winserver2019-ps/hyper-v/Set-VmNetworkAdapterIsolation.md index a6fbcc9b23..1024dcdc76 100644 --- a/docset/winserver2019-ps/hyper-v/Set-VmNetworkAdapterIsolation.md +++ b/docset/winserver2019-ps/hyper-v/Set-VmNetworkAdapterIsolation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmnetworkadapterisolation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmnetworkadapterisolation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VmNetworkAdapterIsolation --- diff --git a/docset/winserver2019-ps/hyper-v/Set-VmNetworkAdapterRoutingDomainMapping.md b/docset/winserver2019-ps/hyper-v/Set-VmNetworkAdapterRoutingDomainMapping.md index babf9d8570..5ccef58f44 100644 --- a/docset/winserver2019-ps/hyper-v/Set-VmNetworkAdapterRoutingDomainMapping.md +++ b/docset/winserver2019-ps/hyper-v/Set-VmNetworkAdapterRoutingDomainMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmnetworkadapterroutingdomainmapping?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmnetworkadapterroutingdomainmapping?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VmNetworkAdapterRoutingDomainMapping --- diff --git a/docset/winserver2019-ps/hyper-v/Start-VM.md b/docset/winserver2019-ps/hyper-v/Start-VM.md index 172ae164bd..2639ab4fca 100644 --- a/docset/winserver2019-ps/hyper-v/Start-VM.md +++ b/docset/winserver2019-ps/hyper-v/Start-VM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/start-vm?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/start-vm?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-VM --- diff --git a/docset/winserver2019-ps/hyper-v/Start-VMFailover.md b/docset/winserver2019-ps/hyper-v/Start-VMFailover.md index 25bc813d7f..41c0387fcc 100644 --- a/docset/winserver2019-ps/hyper-v/Start-VMFailover.md +++ b/docset/winserver2019-ps/hyper-v/Start-VMFailover.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/start-vmfailover?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/start-vmfailover?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-VMFailover --- diff --git a/docset/winserver2019-ps/hyper-v/Start-VMInitialReplication.md b/docset/winserver2019-ps/hyper-v/Start-VMInitialReplication.md index 5b118a4c8a..6bcf205962 100644 --- a/docset/winserver2019-ps/hyper-v/Start-VMInitialReplication.md +++ b/docset/winserver2019-ps/hyper-v/Start-VMInitialReplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/start-vminitialreplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/start-vminitialreplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-VMInitialReplication --- diff --git a/docset/winserver2019-ps/hyper-v/Start-VMTrace.md b/docset/winserver2019-ps/hyper-v/Start-VMTrace.md index 867f4d3d01..455b5d3bb5 100644 --- a/docset/winserver2019-ps/hyper-v/Start-VMTrace.md +++ b/docset/winserver2019-ps/hyper-v/Start-VMTrace.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/start-vmtrace?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/start-vmtrace?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-VMTrace --- diff --git a/docset/winserver2019-ps/hyper-v/Stop-VM.md b/docset/winserver2019-ps/hyper-v/Stop-VM.md index d0570fc045..c9016bc87d 100644 --- a/docset/winserver2019-ps/hyper-v/Stop-VM.md +++ b/docset/winserver2019-ps/hyper-v/Stop-VM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/stop-vm?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/stop-vm?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-VM --- diff --git a/docset/winserver2019-ps/hyper-v/Stop-VMFailover.md b/docset/winserver2019-ps/hyper-v/Stop-VMFailover.md index f8b3d106a8..56533a2ada 100644 --- a/docset/winserver2019-ps/hyper-v/Stop-VMFailover.md +++ b/docset/winserver2019-ps/hyper-v/Stop-VMFailover.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/stop-vmfailover?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/stop-vmfailover?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-VMFailover --- diff --git a/docset/winserver2019-ps/hyper-v/Stop-VMInitialReplication.md b/docset/winserver2019-ps/hyper-v/Stop-VMInitialReplication.md index 7cd6efd4a3..234e27ac5b 100644 --- a/docset/winserver2019-ps/hyper-v/Stop-VMInitialReplication.md +++ b/docset/winserver2019-ps/hyper-v/Stop-VMInitialReplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/stop-vminitialreplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/stop-vminitialreplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-VMInitialReplication --- diff --git a/docset/winserver2019-ps/hyper-v/Stop-VMReplication.md b/docset/winserver2019-ps/hyper-v/Stop-VMReplication.md index c9bd2727da..052f53849c 100644 --- a/docset/winserver2019-ps/hyper-v/Stop-VMReplication.md +++ b/docset/winserver2019-ps/hyper-v/Stop-VMReplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/stop-vmreplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/stop-vmreplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-VMReplication --- diff --git a/docset/winserver2019-ps/hyper-v/Stop-VMTrace.md b/docset/winserver2019-ps/hyper-v/Stop-VMTrace.md index f7449f4a9f..23d4bc8c80 100644 --- a/docset/winserver2019-ps/hyper-v/Stop-VMTrace.md +++ b/docset/winserver2019-ps/hyper-v/Stop-VMTrace.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/stop-vmtrace?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/stop-vmtrace?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-VMTrace --- diff --git a/docset/winserver2019-ps/hyper-v/Suspend-VM.md b/docset/winserver2019-ps/hyper-v/Suspend-VM.md index cb34878537..fdefb68646 100644 --- a/docset/winserver2019-ps/hyper-v/Suspend-VM.md +++ b/docset/winserver2019-ps/hyper-v/Suspend-VM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/suspend-vm?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/suspend-vm?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-VM --- diff --git a/docset/winserver2019-ps/hyper-v/Suspend-VMReplication.md b/docset/winserver2019-ps/hyper-v/Suspend-VMReplication.md index 5070aab30a..d69e31b017 100644 --- a/docset/winserver2019-ps/hyper-v/Suspend-VMReplication.md +++ b/docset/winserver2019-ps/hyper-v/Suspend-VMReplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/suspend-vmreplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/suspend-vmreplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-VMReplication --- diff --git a/docset/winserver2019-ps/hyper-v/Test-VHD.md b/docset/winserver2019-ps/hyper-v/Test-VHD.md index 9522397fc4..b6e7f18b9e 100644 --- a/docset/winserver2019-ps/hyper-v/Test-VHD.md +++ b/docset/winserver2019-ps/hyper-v/Test-VHD.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/test-vhd?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/test-vhd?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-VHD --- diff --git a/docset/winserver2019-ps/hyper-v/Test-VMNetworkAdapter.md b/docset/winserver2019-ps/hyper-v/Test-VMNetworkAdapter.md index c4a28e395a..c2558f63de 100644 --- a/docset/winserver2019-ps/hyper-v/Test-VMNetworkAdapter.md +++ b/docset/winserver2019-ps/hyper-v/Test-VMNetworkAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/test-vmnetworkadapter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/test-vmnetworkadapter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-VMNetworkAdapter --- diff --git a/docset/winserver2019-ps/hyper-v/Test-VMReplicationConnection.md b/docset/winserver2019-ps/hyper-v/Test-VMReplicationConnection.md index c68d360e06..8d2f1f7e0c 100644 --- a/docset/winserver2019-ps/hyper-v/Test-VMReplicationConnection.md +++ b/docset/winserver2019-ps/hyper-v/Test-VMReplicationConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/test-vmreplicationconnection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/test-vmreplicationconnection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-VMReplicationConnection --- diff --git a/docset/winserver2019-ps/hyper-v/Update-VMVersion.md b/docset/winserver2019-ps/hyper-v/Update-VMVersion.md index a61cca0082..cdb36388b1 100644 --- a/docset/winserver2019-ps/hyper-v/Update-VMVersion.md +++ b/docset/winserver2019-ps/hyper-v/Update-VMVersion.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/update-vmversion?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/update-vmversion?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-VMVersion --- diff --git a/docset/winserver2019-ps/iisadministration/Clear-IISCentralCertProvider.md b/docset/winserver2019-ps/iisadministration/Clear-IISCentralCertProvider.md index 625264feb7..c715b03578 100644 --- a/docset/winserver2019-ps/iisadministration/Clear-IISCentralCertProvider.md +++ b/docset/winserver2019-ps/iisadministration/Clear-IISCentralCertProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/clear-iiscentralcertprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/clear-iiscentralcertprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-IISCentralCertProvider --- diff --git a/docset/winserver2019-ps/iisadministration/Clear-IISConfigCollection.md b/docset/winserver2019-ps/iisadministration/Clear-IISConfigCollection.md index bdf7b87b5b..fa10424180 100644 --- a/docset/winserver2019-ps/iisadministration/Clear-IISConfigCollection.md +++ b/docset/winserver2019-ps/iisadministration/Clear-IISConfigCollection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/clear-iisconfigcollection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/clear-iisconfigcollection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-IISConfigCollection --- diff --git a/docset/winserver2019-ps/iisadministration/Disable-IISCentralCertProvider.md b/docset/winserver2019-ps/iisadministration/Disable-IISCentralCertProvider.md index 538d2d7cf3..c402e75a59 100644 --- a/docset/winserver2019-ps/iisadministration/Disable-IISCentralCertProvider.md +++ b/docset/winserver2019-ps/iisadministration/Disable-IISCentralCertProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/disable-iiscentralcertprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/disable-iiscentralcertprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-IISCentralCertProvider --- diff --git a/docset/winserver2019-ps/iisadministration/Disable-IISSharedConfig.md b/docset/winserver2019-ps/iisadministration/Disable-IISSharedConfig.md index 20e9e6e1d1..f082aec478 100644 --- a/docset/winserver2019-ps/iisadministration/Disable-IISSharedConfig.md +++ b/docset/winserver2019-ps/iisadministration/Disable-IISSharedConfig.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/disable-iissharedconfig?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/disable-iissharedconfig?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-IISSharedConfig --- diff --git a/docset/winserver2019-ps/iisadministration/Enable-IISCentralCertProvider.md b/docset/winserver2019-ps/iisadministration/Enable-IISCentralCertProvider.md index b6a4115b1e..3c1858deff 100644 --- a/docset/winserver2019-ps/iisadministration/Enable-IISCentralCertProvider.md +++ b/docset/winserver2019-ps/iisadministration/Enable-IISCentralCertProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/enable-iiscentralcertprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/enable-iiscentralcertprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-IISCentralCertProvider --- diff --git a/docset/winserver2019-ps/iisadministration/Enable-IISSharedConfig.md b/docset/winserver2019-ps/iisadministration/Enable-IISSharedConfig.md index 2ddb3db903..276814cbd3 100644 --- a/docset/winserver2019-ps/iisadministration/Enable-IISSharedConfig.md +++ b/docset/winserver2019-ps/iisadministration/Enable-IISSharedConfig.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/enable-iissharedconfig?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/enable-iissharedconfig?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-IISSharedConfig --- diff --git a/docset/winserver2019-ps/iisadministration/Export-IISConfiguration.md b/docset/winserver2019-ps/iisadministration/Export-IISConfiguration.md index 0d93c5862f..2fbb294bde 100644 --- a/docset/winserver2019-ps/iisadministration/Export-IISConfiguration.md +++ b/docset/winserver2019-ps/iisadministration/Export-IISConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/export-iisconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/export-iisconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-IISConfiguration --- diff --git a/docset/winserver2019-ps/iisadministration/Get-IISAppPool.md b/docset/winserver2019-ps/iisadministration/Get-IISAppPool.md index 28a9c7fd82..e3a90ea904 100644 --- a/docset/winserver2019-ps/iisadministration/Get-IISAppPool.md +++ b/docset/winserver2019-ps/iisadministration/Get-IISAppPool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/get-iisapppool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/get-iisapppool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IISAppPool --- diff --git a/docset/winserver2019-ps/iisadministration/Get-IISCentralCertProvider.md b/docset/winserver2019-ps/iisadministration/Get-IISCentralCertProvider.md index 02bee446d3..5706d4c5bc 100644 --- a/docset/winserver2019-ps/iisadministration/Get-IISCentralCertProvider.md +++ b/docset/winserver2019-ps/iisadministration/Get-IISCentralCertProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/get-iiscentralcertprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/get-iiscentralcertprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IISCentralCertProvider --- diff --git a/docset/winserver2019-ps/iisadministration/Get-IISConfigAttributeValue.md b/docset/winserver2019-ps/iisadministration/Get-IISConfigAttributeValue.md index 5f55abe9b2..644071340e 100644 --- a/docset/winserver2019-ps/iisadministration/Get-IISConfigAttributeValue.md +++ b/docset/winserver2019-ps/iisadministration/Get-IISConfigAttributeValue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/get-iisconfigattributevalue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/get-iisconfigattributevalue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IISConfigAttributeValue --- diff --git a/docset/winserver2019-ps/iisadministration/Get-IISConfigCollection.md b/docset/winserver2019-ps/iisadministration/Get-IISConfigCollection.md index 69cb88001c..53f62dd7fa 100644 --- a/docset/winserver2019-ps/iisadministration/Get-IISConfigCollection.md +++ b/docset/winserver2019-ps/iisadministration/Get-IISConfigCollection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/get-iisconfigcollection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/get-iisconfigcollection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IISConfigCollection --- diff --git a/docset/winserver2019-ps/iisadministration/Get-IISConfigCollectionElement.md b/docset/winserver2019-ps/iisadministration/Get-IISConfigCollectionElement.md index 6cc3a90883..7259dfb9de 100644 --- a/docset/winserver2019-ps/iisadministration/Get-IISConfigCollectionElement.md +++ b/docset/winserver2019-ps/iisadministration/Get-IISConfigCollectionElement.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/get-iisconfigcollectionelement?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/get-iisconfigcollectionelement?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IISConfigCollectionElement --- diff --git a/docset/winserver2019-ps/iisadministration/Get-IISConfigElement.md b/docset/winserver2019-ps/iisadministration/Get-IISConfigElement.md index 250b0fc156..2e558b7fb0 100644 --- a/docset/winserver2019-ps/iisadministration/Get-IISConfigElement.md +++ b/docset/winserver2019-ps/iisadministration/Get-IISConfigElement.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/get-iisconfigelement?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/get-iisconfigelement?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IISConfigElement --- diff --git a/docset/winserver2019-ps/iisadministration/Get-IISConfigSection.md b/docset/winserver2019-ps/iisadministration/Get-IISConfigSection.md index 88a7d0b290..219aef5839 100644 --- a/docset/winserver2019-ps/iisadministration/Get-IISConfigSection.md +++ b/docset/winserver2019-ps/iisadministration/Get-IISConfigSection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/get-iisconfigsection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/get-iisconfigsection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IISConfigSection --- diff --git a/docset/winserver2019-ps/iisadministration/Get-IISServerManager.md b/docset/winserver2019-ps/iisadministration/Get-IISServerManager.md index 04c700a815..aa497d4ae9 100644 --- a/docset/winserver2019-ps/iisadministration/Get-IISServerManager.md +++ b/docset/winserver2019-ps/iisadministration/Get-IISServerManager.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/get-iisservermanager?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/get-iisservermanager?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IISServerManager --- diff --git a/docset/winserver2019-ps/iisadministration/Get-IISSharedConfig.md b/docset/winserver2019-ps/iisadministration/Get-IISSharedConfig.md index 611162ea71..00f7fd9b86 100644 --- a/docset/winserver2019-ps/iisadministration/Get-IISSharedConfig.md +++ b/docset/winserver2019-ps/iisadministration/Get-IISSharedConfig.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/get-iissharedconfig?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/get-iissharedconfig?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IISSharedConfig --- diff --git a/docset/winserver2019-ps/iisadministration/Get-IISSite.md b/docset/winserver2019-ps/iisadministration/Get-IISSite.md index 45002dc277..5f0b9f360a 100644 --- a/docset/winserver2019-ps/iisadministration/Get-IISSite.md +++ b/docset/winserver2019-ps/iisadministration/Get-IISSite.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/get-iissite?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/get-iissite?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IISSite --- diff --git a/docset/winserver2019-ps/iisadministration/Get-IISSiteBinding.md b/docset/winserver2019-ps/iisadministration/Get-IISSiteBinding.md index cd2b5a73df..3fe89e10c9 100644 --- a/docset/winserver2019-ps/iisadministration/Get-IISSiteBinding.md +++ b/docset/winserver2019-ps/iisadministration/Get-IISSiteBinding.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration -online version: https://docs.microsoft.com/powershell/module/iisadministration/get-iissitebinding?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/get-iissitebinding?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IISSiteBinding --- diff --git a/docset/winserver2019-ps/iisadministration/New-IISConfigCollectionElement.md b/docset/winserver2019-ps/iisadministration/New-IISConfigCollectionElement.md index 1b5cf9b0cf..07b9a63794 100644 --- a/docset/winserver2019-ps/iisadministration/New-IISConfigCollectionElement.md +++ b/docset/winserver2019-ps/iisadministration/New-IISConfigCollectionElement.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/new-iisconfigcollectionelement?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/new-iisconfigcollectionelement?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-IISConfigCollectionElement --- diff --git a/docset/winserver2019-ps/iisadministration/New-IISSite.md b/docset/winserver2019-ps/iisadministration/New-IISSite.md index acb58d1ebb..65805079bf 100644 --- a/docset/winserver2019-ps/iisadministration/New-IISSite.md +++ b/docset/winserver2019-ps/iisadministration/New-IISSite.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/new-iissite?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/new-iissite?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-IISSite --- diff --git a/docset/winserver2019-ps/iisadministration/New-IISSiteBinding.md b/docset/winserver2019-ps/iisadministration/New-IISSiteBinding.md index 2c36dd8cbc..4dc92c9bd2 100644 --- a/docset/winserver2019-ps/iisadministration/New-IISSiteBinding.md +++ b/docset/winserver2019-ps/iisadministration/New-IISSiteBinding.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration -online version: https://docs.microsoft.com/powershell/module/iisadministration/new-iissitebinding?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/new-iissitebinding?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-IISSiteBinding --- diff --git a/docset/winserver2019-ps/iisadministration/Remove-IISConfigAttribute.md b/docset/winserver2019-ps/iisadministration/Remove-IISConfigAttribute.md index 0ae4831615..08009a5375 100644 --- a/docset/winserver2019-ps/iisadministration/Remove-IISConfigAttribute.md +++ b/docset/winserver2019-ps/iisadministration/Remove-IISConfigAttribute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/remove-iisconfigattribute?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/remove-iisconfigattribute?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IISConfigAttribute --- diff --git a/docset/winserver2019-ps/iisadministration/Remove-IISConfigCollectionElement.md b/docset/winserver2019-ps/iisadministration/Remove-IISConfigCollectionElement.md index e5a555a0ed..e87d2c9caf 100644 --- a/docset/winserver2019-ps/iisadministration/Remove-IISConfigCollectionElement.md +++ b/docset/winserver2019-ps/iisadministration/Remove-IISConfigCollectionElement.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/remove-iisconfigcollectionelement?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/remove-iisconfigcollectionelement?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IISConfigCollectionElement --- diff --git a/docset/winserver2019-ps/iisadministration/Remove-IISConfigElement.md b/docset/winserver2019-ps/iisadministration/Remove-IISConfigElement.md index 2696ed142b..fd53429f03 100644 --- a/docset/winserver2019-ps/iisadministration/Remove-IISConfigElement.md +++ b/docset/winserver2019-ps/iisadministration/Remove-IISConfigElement.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/remove-iisconfigelement?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/remove-iisconfigelement?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IISConfigElement --- diff --git a/docset/winserver2019-ps/iisadministration/Remove-IISSite.md b/docset/winserver2019-ps/iisadministration/Remove-IISSite.md index ce2de76e05..1548f0c318 100644 --- a/docset/winserver2019-ps/iisadministration/Remove-IISSite.md +++ b/docset/winserver2019-ps/iisadministration/Remove-IISSite.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/remove-iissite?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/remove-iissite?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IISSite --- diff --git a/docset/winserver2019-ps/iisadministration/Remove-IISSiteBinding.md b/docset/winserver2019-ps/iisadministration/Remove-IISSiteBinding.md index 19b963f2fa..cf589f8428 100644 --- a/docset/winserver2019-ps/iisadministration/Remove-IISSiteBinding.md +++ b/docset/winserver2019-ps/iisadministration/Remove-IISSiteBinding.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration -online version: https://docs.microsoft.com/powershell/module/iisadministration/remove-iissitebinding?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/remove-iissitebinding?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IISSiteBinding --- diff --git a/docset/winserver2019-ps/iisadministration/Reset-IISServerManager.md b/docset/winserver2019-ps/iisadministration/Reset-IISServerManager.md index 883814b79a..f4efc661d8 100644 --- a/docset/winserver2019-ps/iisadministration/Reset-IISServerManager.md +++ b/docset/winserver2019-ps/iisadministration/Reset-IISServerManager.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/reset-iisservermanager?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/reset-iisservermanager?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-IISServerManager --- diff --git a/docset/winserver2019-ps/iisadministration/Set-IISCentralCertProvider.md b/docset/winserver2019-ps/iisadministration/Set-IISCentralCertProvider.md index 13d9e13483..a45aecbb98 100644 --- a/docset/winserver2019-ps/iisadministration/Set-IISCentralCertProvider.md +++ b/docset/winserver2019-ps/iisadministration/Set-IISCentralCertProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/set-iiscentralcertprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/set-iiscentralcertprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IISCentralCertProvider --- diff --git a/docset/winserver2019-ps/iisadministration/Set-IISCentralCertProviderCredential.md b/docset/winserver2019-ps/iisadministration/Set-IISCentralCertProviderCredential.md index da7a82e62e..ae5957e29b 100644 --- a/docset/winserver2019-ps/iisadministration/Set-IISCentralCertProviderCredential.md +++ b/docset/winserver2019-ps/iisadministration/Set-IISCentralCertProviderCredential.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/set-iiscentralcertprovidercredential?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/set-iiscentralcertprovidercredential?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IISCentralCertProviderCredential --- diff --git a/docset/winserver2019-ps/iisadministration/Set-IISConfigAttributeValue.md b/docset/winserver2019-ps/iisadministration/Set-IISConfigAttributeValue.md index f7b89bc6ce..aab11bed41 100644 --- a/docset/winserver2019-ps/iisadministration/Set-IISConfigAttributeValue.md +++ b/docset/winserver2019-ps/iisadministration/Set-IISConfigAttributeValue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/set-iisconfigattributevalue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/set-iisconfigattributevalue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IISConfigAttributeValue --- diff --git a/docset/winserver2019-ps/iisadministration/Start-IISCommitDelay.md b/docset/winserver2019-ps/iisadministration/Start-IISCommitDelay.md index 0b28a9ff27..a3a1f7e5a9 100644 --- a/docset/winserver2019-ps/iisadministration/Start-IISCommitDelay.md +++ b/docset/winserver2019-ps/iisadministration/Start-IISCommitDelay.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/start-iiscommitdelay?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/start-iiscommitdelay?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-IISCommitDelay --- diff --git a/docset/winserver2019-ps/iisadministration/Start-IISSite.md b/docset/winserver2019-ps/iisadministration/Start-IISSite.md index e9681665aa..50a250096c 100644 --- a/docset/winserver2019-ps/iisadministration/Start-IISSite.md +++ b/docset/winserver2019-ps/iisadministration/Start-IISSite.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/start-iissite?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/start-iissite?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-IISSite --- diff --git a/docset/winserver2019-ps/iisadministration/Stop-IISCommitDelay.md b/docset/winserver2019-ps/iisadministration/Stop-IISCommitDelay.md index efe0c8c121..4321020b55 100644 --- a/docset/winserver2019-ps/iisadministration/Stop-IISCommitDelay.md +++ b/docset/winserver2019-ps/iisadministration/Stop-IISCommitDelay.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/stop-iiscommitdelay?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/stop-iiscommitdelay?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-IISCommitDelay --- diff --git a/docset/winserver2019-ps/iisadministration/Stop-IISSite.md b/docset/winserver2019-ps/iisadministration/Stop-IISSite.md index 083c3e7373..283730b2a8 100644 --- a/docset/winserver2019-ps/iisadministration/Stop-IISSite.md +++ b/docset/winserver2019-ps/iisadministration/Stop-IISSite.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/stop-iissite?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/stop-iissite?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-IISSite --- diff --git a/docset/winserver2019-ps/international/Get-WinAcceptLanguageFromLanguageListOptOut.md b/docset/winserver2019-ps/international/Get-WinAcceptLanguageFromLanguageListOptOut.md index 6ce61922fd..db652b9e00 100644 --- a/docset/winserver2019-ps/international/Get-WinAcceptLanguageFromLanguageListOptOut.md +++ b/docset/winserver2019-ps/international/Get-WinAcceptLanguageFromLanguageListOptOut.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/international/get-winacceptlanguagefromlanguagelistoptout?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/get-winacceptlanguagefromlanguagelistoptout?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WinAcceptLanguageFromLanguageListOptOut --- diff --git a/docset/winserver2019-ps/international/Get-WinCultureFromLanguageListOptOut.md b/docset/winserver2019-ps/international/Get-WinCultureFromLanguageListOptOut.md index 7fe7eed794..102a79e99c 100644 --- a/docset/winserver2019-ps/international/Get-WinCultureFromLanguageListOptOut.md +++ b/docset/winserver2019-ps/international/Get-WinCultureFromLanguageListOptOut.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/international/get-winculturefromlanguagelistoptout?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/get-winculturefromlanguagelistoptout?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WinCultureFromLanguageListOptOut --- diff --git a/docset/winserver2019-ps/international/Get-WinDefaultInputMethodOverride.md b/docset/winserver2019-ps/international/Get-WinDefaultInputMethodOverride.md index bffc23c97c..7f7cdfb333 100644 --- a/docset/winserver2019-ps/international/Get-WinDefaultInputMethodOverride.md +++ b/docset/winserver2019-ps/international/Get-WinDefaultInputMethodOverride.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/international/get-windefaultinputmethodoverride?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/get-windefaultinputmethodoverride?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WinDefaultInputMethodOverride --- diff --git a/docset/winserver2019-ps/international/Get-WinHomeLocation.md b/docset/winserver2019-ps/international/Get-WinHomeLocation.md index feb985b9f5..21fa7be419 100644 --- a/docset/winserver2019-ps/international/Get-WinHomeLocation.md +++ b/docset/winserver2019-ps/international/Get-WinHomeLocation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/international/get-winhomelocation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/get-winhomelocation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WinHomeLocation --- diff --git a/docset/winserver2019-ps/international/Get-WinLanguageBarOption.md b/docset/winserver2019-ps/international/Get-WinLanguageBarOption.md index d10fe501dc..20f0b917b0 100644 --- a/docset/winserver2019-ps/international/Get-WinLanguageBarOption.md +++ b/docset/winserver2019-ps/international/Get-WinLanguageBarOption.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/international/get-winlanguagebaroption?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/get-winlanguagebaroption?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WinLanguageBarOption --- diff --git a/docset/winserver2019-ps/international/Get-WinSystemLocale.md b/docset/winserver2019-ps/international/Get-WinSystemLocale.md index 04e96199d8..dc133ce1af 100644 --- a/docset/winserver2019-ps/international/Get-WinSystemLocale.md +++ b/docset/winserver2019-ps/international/Get-WinSystemLocale.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/international/get-winsystemlocale?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/get-winsystemlocale?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WinSystemLocale --- diff --git a/docset/winserver2019-ps/international/Get-WinUILanguageOverride.md b/docset/winserver2019-ps/international/Get-WinUILanguageOverride.md index 2bd33ef387..468a745018 100644 --- a/docset/winserver2019-ps/international/Get-WinUILanguageOverride.md +++ b/docset/winserver2019-ps/international/Get-WinUILanguageOverride.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/international/get-winuilanguageoverride?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/get-winuilanguageoverride?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WinUILanguageOverride --- diff --git a/docset/winserver2019-ps/international/Get-WinUserLanguageList.md b/docset/winserver2019-ps/international/Get-WinUserLanguageList.md index b13fc9caa9..fe65665a99 100644 --- a/docset/winserver2019-ps/international/Get-WinUserLanguageList.md +++ b/docset/winserver2019-ps/international/Get-WinUserLanguageList.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/international/get-winuserlanguagelist?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/get-winuserlanguagelist?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WinUserLanguageList --- diff --git a/docset/winserver2019-ps/international/New-WinUserLanguageList.md b/docset/winserver2019-ps/international/New-WinUserLanguageList.md index bed79617e0..b73945ed03 100644 --- a/docset/winserver2019-ps/international/New-WinUserLanguageList.md +++ b/docset/winserver2019-ps/international/New-WinUserLanguageList.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/international/new-winuserlanguagelist?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/new-winuserlanguagelist?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WinUserLanguageList --- diff --git a/docset/winserver2019-ps/international/Set-Culture.md b/docset/winserver2019-ps/international/Set-Culture.md index ca52e45b29..f57f6eed8f 100644 --- a/docset/winserver2019-ps/international/Set-Culture.md +++ b/docset/winserver2019-ps/international/Set-Culture.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/international/set-culture?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/set-culture?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-Culture --- diff --git a/docset/winserver2019-ps/international/Set-WinAcceptLanguageFromLanguageListOptOut.md b/docset/winserver2019-ps/international/Set-WinAcceptLanguageFromLanguageListOptOut.md index 7cc5d0452a..b111236e34 100644 --- a/docset/winserver2019-ps/international/Set-WinAcceptLanguageFromLanguageListOptOut.md +++ b/docset/winserver2019-ps/international/Set-WinAcceptLanguageFromLanguageListOptOut.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/international/set-winacceptlanguagefromlanguagelistoptout?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/set-winacceptlanguagefromlanguagelistoptout?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WinAcceptLanguageFromLanguageListOptOut --- diff --git a/docset/winserver2019-ps/international/Set-WinCultureFromLanguageListOptOut.md b/docset/winserver2019-ps/international/Set-WinCultureFromLanguageListOptOut.md index de9a679f34..2e7974b3f6 100644 --- a/docset/winserver2019-ps/international/Set-WinCultureFromLanguageListOptOut.md +++ b/docset/winserver2019-ps/international/Set-WinCultureFromLanguageListOptOut.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/international/set-winculturefromlanguagelistoptout?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/set-winculturefromlanguagelistoptout?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WinCultureFromLanguageListOptOut --- diff --git a/docset/winserver2019-ps/international/Set-WinDefaultInputMethodOverride.md b/docset/winserver2019-ps/international/Set-WinDefaultInputMethodOverride.md index 780444c1d3..e18c1a5645 100644 --- a/docset/winserver2019-ps/international/Set-WinDefaultInputMethodOverride.md +++ b/docset/winserver2019-ps/international/Set-WinDefaultInputMethodOverride.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/international/set-windefaultinputmethodoverride?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/set-windefaultinputmethodoverride?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WinDefaultInputMethodOverride --- diff --git a/docset/winserver2019-ps/international/Set-WinHomeLocation.md b/docset/winserver2019-ps/international/Set-WinHomeLocation.md index 6e3b1eda35..d498eabdd9 100644 --- a/docset/winserver2019-ps/international/Set-WinHomeLocation.md +++ b/docset/winserver2019-ps/international/Set-WinHomeLocation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/international/set-winhomelocation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/set-winhomelocation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WinHomeLocation --- diff --git a/docset/winserver2019-ps/international/Set-WinLanguageBarOption.md b/docset/winserver2019-ps/international/Set-WinLanguageBarOption.md index 9e659f7fce..05181e07f2 100644 --- a/docset/winserver2019-ps/international/Set-WinLanguageBarOption.md +++ b/docset/winserver2019-ps/international/Set-WinLanguageBarOption.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/international/set-winlanguagebaroption?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/set-winlanguagebaroption?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WinLanguageBarOption --- diff --git a/docset/winserver2019-ps/international/Set-WinSystemLocale.md b/docset/winserver2019-ps/international/Set-WinSystemLocale.md index d02450c3b8..3c99a5f571 100644 --- a/docset/winserver2019-ps/international/Set-WinSystemLocale.md +++ b/docset/winserver2019-ps/international/Set-WinSystemLocale.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/international/set-winsystemlocale?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/set-winsystemlocale?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WinSystemLocale --- diff --git a/docset/winserver2019-ps/international/Set-WinUILanguageOverride.md b/docset/winserver2019-ps/international/Set-WinUILanguageOverride.md index d4b4508789..b88fd5555b 100644 --- a/docset/winserver2019-ps/international/Set-WinUILanguageOverride.md +++ b/docset/winserver2019-ps/international/Set-WinUILanguageOverride.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/international/set-winuilanguageoverride?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/set-winuilanguageoverride?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WinUILanguageOverride --- diff --git a/docset/winserver2019-ps/international/Set-WinUserLanguageList.md b/docset/winserver2019-ps/international/Set-WinUserLanguageList.md index 682a5c2baa..3201b12f5e 100644 --- a/docset/winserver2019-ps/international/Set-WinUserLanguageList.md +++ b/docset/winserver2019-ps/international/Set-WinUserLanguageList.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/international/set-winuserlanguagelist?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/set-winuserlanguagelist?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WinUserLanguageList --- diff --git a/docset/winserver2019-ps/ipamserver/Add-IpamAddress.md b/docset/winserver2019-ps/ipamserver/Add-IpamAddress.md index 4799703320..42f53b2544 100644 --- a/docset/winserver2019-ps/ipamserver/Add-IpamAddress.md +++ b/docset/winserver2019-ps/ipamserver/Add-IpamAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamAddress.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/add-ipamaddress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/add-ipamaddress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-IpamAddress --- diff --git a/docset/winserver2019-ps/ipamserver/Add-IpamAddressSpace.md b/docset/winserver2019-ps/ipamserver/Add-IpamAddressSpace.md index b84daa0b1b..fd107b4520 100644 --- a/docset/winserver2019-ps/ipamserver/Add-IpamAddressSpace.md +++ b/docset/winserver2019-ps/ipamserver/Add-IpamAddressSpace.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamAddressSpace.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/add-ipamaddressspace?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/add-ipamaddressspace?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-IpamAddressSpace --- diff --git a/docset/winserver2019-ps/ipamserver/Add-IpamBlock.md b/docset/winserver2019-ps/ipamserver/Add-IpamBlock.md index e89b9faeaa..2ab7a97c4b 100644 --- a/docset/winserver2019-ps/ipamserver/Add-IpamBlock.md +++ b/docset/winserver2019-ps/ipamserver/Add-IpamBlock.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamBlock.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/add-ipamblock?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/add-ipamblock?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-IpamBlock --- diff --git a/docset/winserver2019-ps/ipamserver/Add-IpamCustomField.md b/docset/winserver2019-ps/ipamserver/Add-IpamCustomField.md index 88dfe6e262..2fb294bd11 100644 --- a/docset/winserver2019-ps/ipamserver/Add-IpamCustomField.md +++ b/docset/winserver2019-ps/ipamserver/Add-IpamCustomField.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamCustomField.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/add-ipamcustomfield?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/add-ipamcustomfield?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-IpamCustomField --- diff --git a/docset/winserver2019-ps/ipamserver/Add-IpamCustomFieldAssociation.md b/docset/winserver2019-ps/ipamserver/Add-IpamCustomFieldAssociation.md index 3cde356a0d..201ee0c521 100644 --- a/docset/winserver2019-ps/ipamserver/Add-IpamCustomFieldAssociation.md +++ b/docset/winserver2019-ps/ipamserver/Add-IpamCustomFieldAssociation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamCustomFieldAssociation.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/add-ipamcustomfieldassociation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/add-ipamcustomfieldassociation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-IpamCustomFieldAssociation --- diff --git a/docset/winserver2019-ps/ipamserver/Add-IpamCustomValue.md b/docset/winserver2019-ps/ipamserver/Add-IpamCustomValue.md index 6e7e859456..7deb3bc4c3 100644 --- a/docset/winserver2019-ps/ipamserver/Add-IpamCustomValue.md +++ b/docset/winserver2019-ps/ipamserver/Add-IpamCustomValue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamCustomValue.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/add-ipamcustomvalue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/add-ipamcustomvalue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-IpamCustomValue --- diff --git a/docset/winserver2019-ps/ipamserver/Add-IpamDiscoveryDomain.md b/docset/winserver2019-ps/ipamserver/Add-IpamDiscoveryDomain.md index 1e69bb5d2f..7a91a728aa 100644 --- a/docset/winserver2019-ps/ipamserver/Add-IpamDiscoveryDomain.md +++ b/docset/winserver2019-ps/ipamserver/Add-IpamDiscoveryDomain.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamDiscoveryDomain.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/add-ipamdiscoverydomain?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/add-ipamdiscoverydomain?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-IpamDiscoveryDomain --- diff --git a/docset/winserver2019-ps/ipamserver/Add-IpamRange.md b/docset/winserver2019-ps/ipamserver/Add-IpamRange.md index 86db7e78c4..56bfdd8966 100644 --- a/docset/winserver2019-ps/ipamserver/Add-IpamRange.md +++ b/docset/winserver2019-ps/ipamserver/Add-IpamRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamRange.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/add-ipamrange?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/add-ipamrange?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-IpamRange --- diff --git a/docset/winserver2019-ps/ipamserver/Add-IpamServerInventory.md b/docset/winserver2019-ps/ipamserver/Add-IpamServerInventory.md index 1b945e9891..f38ebdb810 100644 --- a/docset/winserver2019-ps/ipamserver/Add-IpamServerInventory.md +++ b/docset/winserver2019-ps/ipamserver/Add-IpamServerInventory.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamServerInventory.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/add-ipamserverinventory?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/add-ipamserverinventory?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-IpamServerInventory --- diff --git a/docset/winserver2019-ps/ipamserver/Add-IpamSubnet.md b/docset/winserver2019-ps/ipamserver/Add-IpamSubnet.md index be26c9700c..dfe02ed6e7 100644 --- a/docset/winserver2019-ps/ipamserver/Add-IpamSubnet.md +++ b/docset/winserver2019-ps/ipamserver/Add-IpamSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamSubnet.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/add-ipamsubnet?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/add-ipamsubnet?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-IpamSubnet --- diff --git a/docset/winserver2019-ps/ipamserver/Disable-IpamCapability.md b/docset/winserver2019-ps/ipamserver/Disable-IpamCapability.md index 59465c2c5b..1c5ce6a8d7 100644 --- a/docset/winserver2019-ps/ipamserver/Disable-IpamCapability.md +++ b/docset/winserver2019-ps/ipamserver/Disable-IpamCapability.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamCapabilities.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/disable-ipamcapability?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/disable-ipamcapability?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-IpamCapability --- diff --git a/docset/winserver2019-ps/ipamserver/Enable-IpamCapability.md b/docset/winserver2019-ps/ipamserver/Enable-IpamCapability.md index 75e1301824..dae41cf752 100644 --- a/docset/winserver2019-ps/ipamserver/Enable-IpamCapability.md +++ b/docset/winserver2019-ps/ipamserver/Enable-IpamCapability.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamCapabilities.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/enable-ipamcapability?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/enable-ipamcapability?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-IpamCapability --- diff --git a/docset/winserver2019-ps/ipamserver/Export-IpamAddress.md b/docset/winserver2019-ps/ipamserver/Export-IpamAddress.md index d0628ef87e..c9c6bafb27 100644 --- a/docset/winserver2019-ps/ipamserver/Export-IpamAddress.md +++ b/docset/winserver2019-ps/ipamserver/Export-IpamAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamAddress.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/export-ipamaddress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/export-ipamaddress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-IpamAddress --- diff --git a/docset/winserver2019-ps/ipamserver/Export-IpamRange.md b/docset/winserver2019-ps/ipamserver/Export-IpamRange.md index 1c5f294ffd..c53dcae514 100644 --- a/docset/winserver2019-ps/ipamserver/Export-IpamRange.md +++ b/docset/winserver2019-ps/ipamserver/Export-IpamRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamRange.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/export-ipamrange?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/export-ipamrange?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-IpamRange --- diff --git a/docset/winserver2019-ps/ipamserver/Export-IpamSubnet.md b/docset/winserver2019-ps/ipamserver/Export-IpamSubnet.md index 84ca8f92d6..8e6ad9f15b 100644 --- a/docset/winserver2019-ps/ipamserver/Export-IpamSubnet.md +++ b/docset/winserver2019-ps/ipamserver/Export-IpamSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamSubnet.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/export-ipamsubnet?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/export-ipamsubnet?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-IpamSubnet --- diff --git a/docset/winserver2019-ps/ipamserver/Find-IpamFreeAddress.md b/docset/winserver2019-ps/ipamserver/Find-IpamFreeAddress.md index 95e77ab881..65c346b51b 100644 --- a/docset/winserver2019-ps/ipamserver/Find-IpamFreeAddress.md +++ b/docset/winserver2019-ps/ipamserver/Find-IpamFreeAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamAddress.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/find-ipamfreeaddress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/find-ipamfreeaddress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Find-IpamFreeAddress --- diff --git a/docset/winserver2019-ps/ipamserver/Find-IpamFreeRange.md b/docset/winserver2019-ps/ipamserver/Find-IpamFreeRange.md index c4a74c0098..7d00a0c7c5 100644 --- a/docset/winserver2019-ps/ipamserver/Find-IpamFreeRange.md +++ b/docset/winserver2019-ps/ipamserver/Find-IpamFreeRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamRange.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/find-ipamfreerange?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/find-ipamfreerange?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Find-IpamFreeRange --- diff --git a/docset/winserver2019-ps/ipamserver/Find-IpamFreeSubnet.md b/docset/winserver2019-ps/ipamserver/Find-IpamFreeSubnet.md index 4de219d6c7..cb0fa2da20 100644 --- a/docset/winserver2019-ps/ipamserver/Find-IpamFreeSubnet.md +++ b/docset/winserver2019-ps/ipamserver/Find-IpamFreeSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamSubnet.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/find-ipamfreesubnet?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/find-ipamfreesubnet?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Find-IpamFreeSubnet --- diff --git a/docset/winserver2019-ps/ipamserver/Get-IpamAddress.md b/docset/winserver2019-ps/ipamserver/Get-IpamAddress.md index 202450ad27..1f16950c01 100644 --- a/docset/winserver2019-ps/ipamserver/Get-IpamAddress.md +++ b/docset/winserver2019-ps/ipamserver/Get-IpamAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamAddress.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamaddress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamaddress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamAddress --- diff --git a/docset/winserver2019-ps/ipamserver/Get-IpamAddressSpace.md b/docset/winserver2019-ps/ipamserver/Get-IpamAddressSpace.md index 1a9a5ee502..cf8dd3329e 100644 --- a/docset/winserver2019-ps/ipamserver/Get-IpamAddressSpace.md +++ b/docset/winserver2019-ps/ipamserver/Get-IpamAddressSpace.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamAddressSpace.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamaddressspace?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamaddressspace?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamAddressSpace --- diff --git a/docset/winserver2019-ps/ipamserver/Get-IpamAddressUtilizationThreshold.md b/docset/winserver2019-ps/ipamserver/Get-IpamAddressUtilizationThreshold.md index bc2f45b6ce..faf8c706e9 100644 --- a/docset/winserver2019-ps/ipamserver/Get-IpamAddressUtilizationThreshold.md +++ b/docset/winserver2019-ps/ipamserver/Get-IpamAddressUtilizationThreshold.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamAddressUtilizationThreshold.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamaddressutilizationthreshold?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamaddressutilizationthreshold?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamAddressUtilizationThreshold --- diff --git a/docset/winserver2019-ps/ipamserver/Get-IpamBlock.md b/docset/winserver2019-ps/ipamserver/Get-IpamBlock.md index b1596b98df..9b9a618c46 100644 --- a/docset/winserver2019-ps/ipamserver/Get-IpamBlock.md +++ b/docset/winserver2019-ps/ipamserver/Get-IpamBlock.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamBlock.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamblock?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamblock?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamBlock --- diff --git a/docset/winserver2019-ps/ipamserver/Get-IpamCapability.md b/docset/winserver2019-ps/ipamserver/Get-IpamCapability.md index 3d77d7f83f..f08ef981f7 100644 --- a/docset/winserver2019-ps/ipamserver/Get-IpamCapability.md +++ b/docset/winserver2019-ps/ipamserver/Get-IpamCapability.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamCapabilities.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamcapability?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamcapability?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamCapability --- diff --git a/docset/winserver2019-ps/ipamserver/Get-IpamConfiguration.md b/docset/winserver2019-ps/ipamserver/Get-IpamConfiguration.md index be43dd3d3f..68c4d4e1e4 100644 --- a/docset/winserver2019-ps/ipamserver/Get-IpamConfiguration.md +++ b/docset/winserver2019-ps/ipamserver/Get-IpamConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamConfiguration.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamConfiguration --- diff --git a/docset/winserver2019-ps/ipamserver/Get-IpamConfigurationEvent.md b/docset/winserver2019-ps/ipamserver/Get-IpamConfigurationEvent.md index d01cd98317..fd69737649 100644 --- a/docset/winserver2019-ps/ipamserver/Get-IpamConfigurationEvent.md +++ b/docset/winserver2019-ps/ipamserver/Get-IpamConfigurationEvent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamConfigurationEvent.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamconfigurationevent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamconfigurationevent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamConfigurationEvent --- diff --git a/docset/winserver2019-ps/ipamserver/Get-IpamCustomField.md b/docset/winserver2019-ps/ipamserver/Get-IpamCustomField.md index 09dd2d8bf2..2529308c75 100644 --- a/docset/winserver2019-ps/ipamserver/Get-IpamCustomField.md +++ b/docset/winserver2019-ps/ipamserver/Get-IpamCustomField.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamCustomField.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamcustomfield?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamcustomfield?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamCustomField --- diff --git a/docset/winserver2019-ps/ipamserver/Get-IpamCustomFieldAssociation.md b/docset/winserver2019-ps/ipamserver/Get-IpamCustomFieldAssociation.md index 100635c4fb..af3df46216 100644 --- a/docset/winserver2019-ps/ipamserver/Get-IpamCustomFieldAssociation.md +++ b/docset/winserver2019-ps/ipamserver/Get-IpamCustomFieldAssociation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamCustomFieldAssociation.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamcustomfieldassociation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamcustomfieldassociation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamCustomFieldAssociation --- diff --git a/docset/winserver2019-ps/ipamserver/Get-IpamDatabase.md b/docset/winserver2019-ps/ipamserver/Get-IpamDatabase.md index b3f8c9dca1..b928c515fd 100644 --- a/docset/winserver2019-ps/ipamserver/Get-IpamDatabase.md +++ b/docset/winserver2019-ps/ipamserver/Get-IpamDatabase.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamDatabase.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamdatabase?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamdatabase?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamDatabase --- diff --git a/docset/winserver2019-ps/ipamserver/Get-IpamDhcpConfigurationEvent.md b/docset/winserver2019-ps/ipamserver/Get-IpamDhcpConfigurationEvent.md index d27afd7a8a..8cfd14f3d7 100644 --- a/docset/winserver2019-ps/ipamserver/Get-IpamDhcpConfigurationEvent.md +++ b/docset/winserver2019-ps/ipamserver/Get-IpamDhcpConfigurationEvent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamDhcpConfigurationEvent.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamdhcpconfigurationevent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamdhcpconfigurationevent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamDhcpConfigurationEvent --- diff --git a/docset/winserver2019-ps/ipamserver/Get-IpamDhcpScope.md b/docset/winserver2019-ps/ipamserver/Get-IpamDhcpScope.md index f125019457..a1ebee01d3 100644 --- a/docset/winserver2019-ps/ipamserver/Get-IpamDhcpScope.md +++ b/docset/winserver2019-ps/ipamserver/Get-IpamDhcpScope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamDhcpScope.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamdhcpscope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamdhcpscope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamDhcpScope --- diff --git a/docset/winserver2019-ps/ipamserver/Get-IpamDhcpServer.md b/docset/winserver2019-ps/ipamserver/Get-IpamDhcpServer.md index 4c992b41be..3cef94d3ec 100644 --- a/docset/winserver2019-ps/ipamserver/Get-IpamDhcpServer.md +++ b/docset/winserver2019-ps/ipamserver/Get-IpamDhcpServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamDhcpServer.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamdhcpserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamdhcpserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamDhcpServer --- diff --git a/docset/winserver2019-ps/ipamserver/Get-IpamDhcpSuperscope.md b/docset/winserver2019-ps/ipamserver/Get-IpamDhcpSuperscope.md index 6d9bd29b7e..6e125b3763 100644 --- a/docset/winserver2019-ps/ipamserver/Get-IpamDhcpSuperscope.md +++ b/docset/winserver2019-ps/ipamserver/Get-IpamDhcpSuperscope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamDhcpSuperscope.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamdhcpsuperscope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamdhcpsuperscope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamDhcpSuperscope --- diff --git a/docset/winserver2019-ps/ipamserver/Get-IpamDiscoveryDomain.md b/docset/winserver2019-ps/ipamserver/Get-IpamDiscoveryDomain.md index 99315cf0aa..dcb47c1963 100644 --- a/docset/winserver2019-ps/ipamserver/Get-IpamDiscoveryDomain.md +++ b/docset/winserver2019-ps/ipamserver/Get-IpamDiscoveryDomain.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamDiscoveryDomain.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamdiscoverydomain?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamdiscoverydomain?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamDiscoveryDomain --- diff --git a/docset/winserver2019-ps/ipamserver/Get-IpamDnsConditionalForwarder.md b/docset/winserver2019-ps/ipamserver/Get-IpamDnsConditionalForwarder.md index 9dfd51a96e..5f824cbcb0 100644 --- a/docset/winserver2019-ps/ipamserver/Get-IpamDnsConditionalForwarder.md +++ b/docset/winserver2019-ps/ipamserver/Get-IpamDnsConditionalForwarder.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamDnsConditionalForwarder.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamdnsconditionalforwarder?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamdnsconditionalforwarder?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamDnsConditionalForwarder --- diff --git a/docset/winserver2019-ps/ipamserver/Get-IpamDnsResourceRecord.md b/docset/winserver2019-ps/ipamserver/Get-IpamDnsResourceRecord.md index 37f9305787..af5e377caf 100644 --- a/docset/winserver2019-ps/ipamserver/Get-IpamDnsResourceRecord.md +++ b/docset/winserver2019-ps/ipamserver/Get-IpamDnsResourceRecord.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamDnsResourceRecord.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamdnsresourcerecord?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamdnsresourcerecord?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamDnsResourceRecord --- diff --git a/docset/winserver2019-ps/ipamserver/Get-IpamDnsServer.md b/docset/winserver2019-ps/ipamserver/Get-IpamDnsServer.md index e71d03a503..af1cbf630e 100644 --- a/docset/winserver2019-ps/ipamserver/Get-IpamDnsServer.md +++ b/docset/winserver2019-ps/ipamserver/Get-IpamDnsServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamDnsServer.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamdnsserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamdnsserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamDnsServer --- diff --git a/docset/winserver2019-ps/ipamserver/Get-IpamDnsZone.md b/docset/winserver2019-ps/ipamserver/Get-IpamDnsZone.md index d1c54cc99c..a2d898dea3 100644 --- a/docset/winserver2019-ps/ipamserver/Get-IpamDnsZone.md +++ b/docset/winserver2019-ps/ipamserver/Get-IpamDnsZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamDnsZone.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamdnszone?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamdnszone?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamDnsZone --- diff --git a/docset/winserver2019-ps/ipamserver/Get-IpamIpAddressAuditEvent.md b/docset/winserver2019-ps/ipamserver/Get-IpamIpAddressAuditEvent.md index 0f04b125c4..71e73d7c58 100644 --- a/docset/winserver2019-ps/ipamserver/Get-IpamIpAddressAuditEvent.md +++ b/docset/winserver2019-ps/ipamserver/Get-IpamIpAddressAuditEvent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamIpAuditEvent.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamipaddressauditevent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamipaddressauditevent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamIpAddressAuditEvent --- diff --git a/docset/winserver2019-ps/ipamserver/Get-IpamRange.md b/docset/winserver2019-ps/ipamserver/Get-IpamRange.md index 9b271e7ae7..b351a2946f 100644 --- a/docset/winserver2019-ps/ipamserver/Get-IpamRange.md +++ b/docset/winserver2019-ps/ipamserver/Get-IpamRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamRange.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamrange?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamrange?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamRange --- diff --git a/docset/winserver2019-ps/ipamserver/Get-IpamServerInventory.md b/docset/winserver2019-ps/ipamserver/Get-IpamServerInventory.md index d74feb3349..5425e10267 100644 --- a/docset/winserver2019-ps/ipamserver/Get-IpamServerInventory.md +++ b/docset/winserver2019-ps/ipamserver/Get-IpamServerInventory.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamServerInventory.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamserverinventory?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamserverinventory?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamServerInventory --- diff --git a/docset/winserver2019-ps/ipamserver/Get-IpamSubnet.md b/docset/winserver2019-ps/ipamserver/Get-IpamSubnet.md index 0397dde20a..c4e16b06a4 100644 --- a/docset/winserver2019-ps/ipamserver/Get-IpamSubnet.md +++ b/docset/winserver2019-ps/ipamserver/Get-IpamSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamSubnet.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamsubnet?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamsubnet?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamSubnet --- diff --git a/docset/winserver2019-ps/ipamserver/Import-IpamAddress.md b/docset/winserver2019-ps/ipamserver/Import-IpamAddress.md index 87bc61d718..a410240100 100644 --- a/docset/winserver2019-ps/ipamserver/Import-IpamAddress.md +++ b/docset/winserver2019-ps/ipamserver/Import-IpamAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamAddress.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/import-ipamaddress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/import-ipamaddress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-IpamAddress --- diff --git a/docset/winserver2019-ps/ipamserver/Import-IpamRange.md b/docset/winserver2019-ps/ipamserver/Import-IpamRange.md index 05640f34cd..4936a20531 100644 --- a/docset/winserver2019-ps/ipamserver/Import-IpamRange.md +++ b/docset/winserver2019-ps/ipamserver/Import-IpamRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamRange.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/import-ipamrange?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/import-ipamrange?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-IpamRange --- diff --git a/docset/winserver2019-ps/ipamserver/Import-IpamSubnet.md b/docset/winserver2019-ps/ipamserver/Import-IpamSubnet.md index 5ed26b43ca..adb69ab8fb 100644 --- a/docset/winserver2019-ps/ipamserver/Import-IpamSubnet.md +++ b/docset/winserver2019-ps/ipamserver/Import-IpamSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamSubnet.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/import-ipamsubnet?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/import-ipamsubnet?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-IpamSubnet --- diff --git a/docset/winserver2019-ps/ipamserver/Invoke-IpamGpoProvisioning.md b/docset/winserver2019-ps/ipamserver/Invoke-IpamGpoProvisioning.md index b5bdbca665..6207e8e566 100644 --- a/docset/winserver2019-ps/ipamserver/Invoke-IpamGpoProvisioning.md +++ b/docset/winserver2019-ps/ipamserver/Invoke-IpamGpoProvisioning.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamGpo-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/invoke-ipamgpoprovisioning?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/invoke-ipamgpoprovisioning?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-IpamGpoProvisioning --- diff --git a/docset/winserver2019-ps/ipamserver/Invoke-IpamServerProvisioning.md b/docset/winserver2019-ps/ipamserver/Invoke-IpamServerProvisioning.md index 52c7c420da..7b9a6d526b 100644 --- a/docset/winserver2019-ps/ipamserver/Invoke-IpamServerProvisioning.md +++ b/docset/winserver2019-ps/ipamserver/Invoke-IpamServerProvisioning.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamServerProvisioning.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/invoke-ipamserverprovisioning?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/invoke-ipamserverprovisioning?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-IpamServerProvisioning --- diff --git a/docset/winserver2019-ps/ipamserver/Move-IpamDatabase.md b/docset/winserver2019-ps/ipamserver/Move-IpamDatabase.md index a0818dd97b..0bc0755c3a 100644 --- a/docset/winserver2019-ps/ipamserver/Move-IpamDatabase.md +++ b/docset/winserver2019-ps/ipamserver/Move-IpamDatabase.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamDatabase.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/move-ipamdatabase?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/move-ipamdatabase?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-IpamDatabase --- diff --git a/docset/winserver2019-ps/ipamserver/Remove-IpamAddress.md b/docset/winserver2019-ps/ipamserver/Remove-IpamAddress.md index e9cf4585f7..bebb18474e 100644 --- a/docset/winserver2019-ps/ipamserver/Remove-IpamAddress.md +++ b/docset/winserver2019-ps/ipamserver/Remove-IpamAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamAddress.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/remove-ipamaddress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/remove-ipamaddress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IpamAddress --- diff --git a/docset/winserver2019-ps/ipamserver/Remove-IpamAddressSpace.md b/docset/winserver2019-ps/ipamserver/Remove-IpamAddressSpace.md index e763f41a8f..0994925abf 100644 --- a/docset/winserver2019-ps/ipamserver/Remove-IpamAddressSpace.md +++ b/docset/winserver2019-ps/ipamserver/Remove-IpamAddressSpace.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamAddressSpace.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/remove-ipamaddressspace?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/remove-ipamaddressspace?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IpamAddressSpace --- diff --git a/docset/winserver2019-ps/ipamserver/Remove-IpamBlock.md b/docset/winserver2019-ps/ipamserver/Remove-IpamBlock.md index dcdf6f1dd4..79a29e8670 100644 --- a/docset/winserver2019-ps/ipamserver/Remove-IpamBlock.md +++ b/docset/winserver2019-ps/ipamserver/Remove-IpamBlock.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamBlock.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/remove-ipamblock?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/remove-ipamblock?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IpamBlock --- diff --git a/docset/winserver2019-ps/ipamserver/Remove-IpamConfigurationEvent.md b/docset/winserver2019-ps/ipamserver/Remove-IpamConfigurationEvent.md index bc23164e6e..8ded970e9c 100644 --- a/docset/winserver2019-ps/ipamserver/Remove-IpamConfigurationEvent.md +++ b/docset/winserver2019-ps/ipamserver/Remove-IpamConfigurationEvent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamConfigurationEvent.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/remove-ipamconfigurationevent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/remove-ipamconfigurationevent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IpamConfigurationEvent --- diff --git a/docset/winserver2019-ps/ipamserver/Remove-IpamCustomField.md b/docset/winserver2019-ps/ipamserver/Remove-IpamCustomField.md index 024e50dce3..d123636a89 100644 --- a/docset/winserver2019-ps/ipamserver/Remove-IpamCustomField.md +++ b/docset/winserver2019-ps/ipamserver/Remove-IpamCustomField.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamCustomField.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/remove-ipamcustomfield?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/remove-ipamcustomfield?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IpamCustomField --- diff --git a/docset/winserver2019-ps/ipamserver/Remove-IpamCustomFieldAssociation.md b/docset/winserver2019-ps/ipamserver/Remove-IpamCustomFieldAssociation.md index 4df8a853ca..1927dd78f9 100644 --- a/docset/winserver2019-ps/ipamserver/Remove-IpamCustomFieldAssociation.md +++ b/docset/winserver2019-ps/ipamserver/Remove-IpamCustomFieldAssociation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamCustomFieldAssociation.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/remove-ipamcustomfieldassociation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/remove-ipamcustomfieldassociation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IpamCustomFieldAssociation --- diff --git a/docset/winserver2019-ps/ipamserver/Remove-IpamCustomValue.md b/docset/winserver2019-ps/ipamserver/Remove-IpamCustomValue.md index 8737e96295..202a7b6ce6 100644 --- a/docset/winserver2019-ps/ipamserver/Remove-IpamCustomValue.md +++ b/docset/winserver2019-ps/ipamserver/Remove-IpamCustomValue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamCustomValue.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/remove-ipamcustomvalue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/remove-ipamcustomvalue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IpamCustomValue --- diff --git a/docset/winserver2019-ps/ipamserver/Remove-IpamDhcpConfigurationEvent.md b/docset/winserver2019-ps/ipamserver/Remove-IpamDhcpConfigurationEvent.md index 434f21ca41..33605e9de3 100644 --- a/docset/winserver2019-ps/ipamserver/Remove-IpamDhcpConfigurationEvent.md +++ b/docset/winserver2019-ps/ipamserver/Remove-IpamDhcpConfigurationEvent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamDhcpConfigurationEvent.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/remove-ipamdhcpconfigurationevent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/remove-ipamdhcpconfigurationevent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IpamDhcpConfigurationEvent --- diff --git a/docset/winserver2019-ps/ipamserver/Remove-IpamDiscoveryDomain.md b/docset/winserver2019-ps/ipamserver/Remove-IpamDiscoveryDomain.md index 1d4e6715b2..70f88339d0 100644 --- a/docset/winserver2019-ps/ipamserver/Remove-IpamDiscoveryDomain.md +++ b/docset/winserver2019-ps/ipamserver/Remove-IpamDiscoveryDomain.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamDiscoveryDomain.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/remove-ipamdiscoverydomain?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/remove-ipamdiscoverydomain?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IpamDiscoveryDomain --- diff --git a/docset/winserver2019-ps/ipamserver/Remove-IpamIpAddressAuditEvent.md b/docset/winserver2019-ps/ipamserver/Remove-IpamIpAddressAuditEvent.md index 540a44388a..cd2a52a9cb 100644 --- a/docset/winserver2019-ps/ipamserver/Remove-IpamIpAddressAuditEvent.md +++ b/docset/winserver2019-ps/ipamserver/Remove-IpamIpAddressAuditEvent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamIpAuditEvent.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/remove-ipamipaddressauditevent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/remove-ipamipaddressauditevent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IpamIpAddressAuditEvent --- diff --git a/docset/winserver2019-ps/ipamserver/Remove-IpamRange.md b/docset/winserver2019-ps/ipamserver/Remove-IpamRange.md index 9b1e87da48..258a839240 100644 --- a/docset/winserver2019-ps/ipamserver/Remove-IpamRange.md +++ b/docset/winserver2019-ps/ipamserver/Remove-IpamRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamRange.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/remove-ipamrange?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/remove-ipamrange?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IpamRange --- diff --git a/docset/winserver2019-ps/ipamserver/Remove-IpamServerInventory.md b/docset/winserver2019-ps/ipamserver/Remove-IpamServerInventory.md index c85d995698..b930f5a030 100644 --- a/docset/winserver2019-ps/ipamserver/Remove-IpamServerInventory.md +++ b/docset/winserver2019-ps/ipamserver/Remove-IpamServerInventory.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamServerInventory.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/remove-ipamserverinventory?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/remove-ipamserverinventory?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IpamServerInventory --- diff --git a/docset/winserver2019-ps/ipamserver/Remove-IpamSubnet.md b/docset/winserver2019-ps/ipamserver/Remove-IpamSubnet.md index 8cadda1570..9e2db1b14b 100644 --- a/docset/winserver2019-ps/ipamserver/Remove-IpamSubnet.md +++ b/docset/winserver2019-ps/ipamserver/Remove-IpamSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamSubnet.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/remove-ipamsubnet?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/remove-ipamsubnet?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IpamSubnet --- diff --git a/docset/winserver2019-ps/ipamserver/Remove-IpamUtilizationData.md b/docset/winserver2019-ps/ipamserver/Remove-IpamUtilizationData.md index cb84317844..efca06ccae 100644 --- a/docset/winserver2019-ps/ipamserver/Remove-IpamUtilizationData.md +++ b/docset/winserver2019-ps/ipamserver/Remove-IpamUtilizationData.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamUtilizationData.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/remove-ipamutilizationdata?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/remove-ipamutilizationdata?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IpamUtilizationData --- diff --git a/docset/winserver2019-ps/ipamserver/Rename-IpamCustomField.md b/docset/winserver2019-ps/ipamserver/Rename-IpamCustomField.md index 1102a04f48..58301757d8 100644 --- a/docset/winserver2019-ps/ipamserver/Rename-IpamCustomField.md +++ b/docset/winserver2019-ps/ipamserver/Rename-IpamCustomField.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamCustomField.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/rename-ipamcustomfield?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/rename-ipamcustomfield?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-IpamCustomField --- diff --git a/docset/winserver2019-ps/ipamserver/Rename-IpamCustomValue.md b/docset/winserver2019-ps/ipamserver/Rename-IpamCustomValue.md index 0272a631af..b1f7e79e04 100644 --- a/docset/winserver2019-ps/ipamserver/Rename-IpamCustomValue.md +++ b/docset/winserver2019-ps/ipamserver/Rename-IpamCustomValue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamCustomValue.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/rename-ipamcustomvalue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/rename-ipamcustomvalue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-IpamCustomValue --- diff --git a/docset/winserver2019-ps/ipamserver/Set-IpamAccessScope.md b/docset/winserver2019-ps/ipamserver/Set-IpamAccessScope.md index b8247d5283..6c6cd6cc96 100644 --- a/docset/winserver2019-ps/ipamserver/Set-IpamAccessScope.md +++ b/docset/winserver2019-ps/ipamserver/Set-IpamAccessScope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamAccessScope.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/set-ipamaccessscope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/set-ipamaccessscope?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IpamAccessScope --- diff --git a/docset/winserver2019-ps/ipamserver/Set-IpamAddress.md b/docset/winserver2019-ps/ipamserver/Set-IpamAddress.md index 3b43f24dbd..e903e61e0b 100644 --- a/docset/winserver2019-ps/ipamserver/Set-IpamAddress.md +++ b/docset/winserver2019-ps/ipamserver/Set-IpamAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamAddress.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/set-ipamaddress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/set-ipamaddress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IpamAddress --- diff --git a/docset/winserver2019-ps/ipamserver/Set-IpamAddressSpace.md b/docset/winserver2019-ps/ipamserver/Set-IpamAddressSpace.md index 32303ddbaa..44ecb0ef32 100644 --- a/docset/winserver2019-ps/ipamserver/Set-IpamAddressSpace.md +++ b/docset/winserver2019-ps/ipamserver/Set-IpamAddressSpace.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamAddressSpace.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/set-ipamaddressspace?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/set-ipamaddressspace?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IpamAddressSpace --- diff --git a/docset/winserver2019-ps/ipamserver/Set-IpamAddressUtilizationThreshold.md b/docset/winserver2019-ps/ipamserver/Set-IpamAddressUtilizationThreshold.md index 057f79514c..b962234aee 100644 --- a/docset/winserver2019-ps/ipamserver/Set-IpamAddressUtilizationThreshold.md +++ b/docset/winserver2019-ps/ipamserver/Set-IpamAddressUtilizationThreshold.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamAddressUtilizationThreshold.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/set-ipamaddressutilizationthreshold?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/set-ipamaddressutilizationthreshold?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IpamAddressUtilizationThreshold --- diff --git a/docset/winserver2019-ps/ipamserver/Set-IpamBlock.md b/docset/winserver2019-ps/ipamserver/Set-IpamBlock.md index fef0036dde..fdbdf155bb 100644 --- a/docset/winserver2019-ps/ipamserver/Set-IpamBlock.md +++ b/docset/winserver2019-ps/ipamserver/Set-IpamBlock.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamBlock.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/set-ipamblock?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/set-ipamblock?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IpamBlock --- diff --git a/docset/winserver2019-ps/ipamserver/Set-IpamConfiguration.md b/docset/winserver2019-ps/ipamserver/Set-IpamConfiguration.md index 9529d97245..99939c2271 100644 --- a/docset/winserver2019-ps/ipamserver/Set-IpamConfiguration.md +++ b/docset/winserver2019-ps/ipamserver/Set-IpamConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamConfiguration.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/set-ipamconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/set-ipamconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IpamConfiguration --- diff --git a/docset/winserver2019-ps/ipamserver/Set-IpamCustomFieldAssociation.md b/docset/winserver2019-ps/ipamserver/Set-IpamCustomFieldAssociation.md index c1b1cd3e74..ed66e6cf91 100644 --- a/docset/winserver2019-ps/ipamserver/Set-IpamCustomFieldAssociation.md +++ b/docset/winserver2019-ps/ipamserver/Set-IpamCustomFieldAssociation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamCustomFieldAssociation.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/set-ipamcustomfieldassociation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/set-ipamcustomfieldassociation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IpamCustomFieldAssociation --- diff --git a/docset/winserver2019-ps/ipamserver/Set-IpamDatabase.md b/docset/winserver2019-ps/ipamserver/Set-IpamDatabase.md index 82d129a7bf..907a2bbc90 100644 --- a/docset/winserver2019-ps/ipamserver/Set-IpamDatabase.md +++ b/docset/winserver2019-ps/ipamserver/Set-IpamDatabase.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamDatabase.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/set-ipamdatabase?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/set-ipamdatabase?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IpamDatabase --- diff --git a/docset/winserver2019-ps/ipamserver/Set-IpamDiscoveryDomain.md b/docset/winserver2019-ps/ipamserver/Set-IpamDiscoveryDomain.md index 70ab8dffc1..b1ceb66c7d 100644 --- a/docset/winserver2019-ps/ipamserver/Set-IpamDiscoveryDomain.md +++ b/docset/winserver2019-ps/ipamserver/Set-IpamDiscoveryDomain.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamDiscoveryDomain.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/set-ipamdiscoverydomain?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/set-ipamdiscoverydomain?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IpamDiscoveryDomain --- diff --git a/docset/winserver2019-ps/ipamserver/Set-IpamRange.md b/docset/winserver2019-ps/ipamserver/Set-IpamRange.md index 5ff6b6eb22..f73fdd1f27 100644 --- a/docset/winserver2019-ps/ipamserver/Set-IpamRange.md +++ b/docset/winserver2019-ps/ipamserver/Set-IpamRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamRange.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/set-ipamrange?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/set-ipamrange?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IpamRange --- diff --git a/docset/winserver2019-ps/ipamserver/Set-IpamServerInventory.md b/docset/winserver2019-ps/ipamserver/Set-IpamServerInventory.md index 69f058f7b1..bbb4055850 100644 --- a/docset/winserver2019-ps/ipamserver/Set-IpamServerInventory.md +++ b/docset/winserver2019-ps/ipamserver/Set-IpamServerInventory.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamServerInventory.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/set-ipamserverinventory?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/set-ipamserverinventory?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IpamServerInventory --- diff --git a/docset/winserver2019-ps/ipamserver/Set-IpamSubnet.md b/docset/winserver2019-ps/ipamserver/Set-IpamSubnet.md index 8707cefbc2..1846fc473f 100644 --- a/docset/winserver2019-ps/ipamserver/Set-IpamSubnet.md +++ b/docset/winserver2019-ps/ipamserver/Set-IpamSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamSubnet.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/set-ipamsubnet?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/set-ipamsubnet?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IpamSubnet --- diff --git a/docset/winserver2019-ps/ipamserver/Update-IpamServer.md b/docset/winserver2019-ps/ipamserver/Update-IpamServer.md index 616a9ff65c..570936dc1c 100644 --- a/docset/winserver2019-ps/ipamserver/Update-IpamServer.md +++ b/docset/winserver2019-ps/ipamserver/Update-IpamServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamServer.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/update-ipamserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/update-ipamserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-IpamServer --- diff --git a/docset/winserver2019-ps/iscsi/Connect-IscsiTarget.md b/docset/winserver2019-ps/iscsi/Connect-IscsiTarget.md index 3763fc0ef1..5604d859dc 100644 --- a/docset/winserver2019-ps/iscsi/Connect-IscsiTarget.md +++ b/docset/winserver2019-ps/iscsi/Connect-IscsiTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: iSCSITarget.cdxml-help.xml Module Name: iSCSI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsi/connect-iscsitarget?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/connect-iscsitarget?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Connect-IscsiTarget --- diff --git a/docset/winserver2019-ps/iscsi/Disconnect-IscsiTarget.md b/docset/winserver2019-ps/iscsi/Disconnect-IscsiTarget.md index 1faffe0eaa..30b73df9f0 100644 --- a/docset/winserver2019-ps/iscsi/Disconnect-IscsiTarget.md +++ b/docset/winserver2019-ps/iscsi/Disconnect-IscsiTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: iSCSITarget.cdxml-help.xml Module Name: iSCSI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsi/disconnect-iscsitarget?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/disconnect-iscsitarget?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disconnect-IscsiTarget --- diff --git a/docset/winserver2019-ps/iscsi/Get-IscsiConnection.md b/docset/winserver2019-ps/iscsi/Get-IscsiConnection.md index e709027de6..263151aa1b 100644 --- a/docset/winserver2019-ps/iscsi/Get-IscsiConnection.md +++ b/docset/winserver2019-ps/iscsi/Get-IscsiConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: iSCSIConnection.cdxml-help.xml Module Name: iSCSI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsi/get-iscsiconnection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/get-iscsiconnection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IscsiConnection --- diff --git a/docset/winserver2019-ps/iscsi/Get-IscsiSession.md b/docset/winserver2019-ps/iscsi/Get-IscsiSession.md index 8c5aac1102..b3237fa699 100644 --- a/docset/winserver2019-ps/iscsi/Get-IscsiSession.md +++ b/docset/winserver2019-ps/iscsi/Get-IscsiSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: iSCSISession.cdxml-help.xml Module Name: iSCSI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsi/get-iscsisession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/get-iscsisession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IscsiSession --- diff --git a/docset/winserver2019-ps/iscsi/Get-IscsiTarget.md b/docset/winserver2019-ps/iscsi/Get-IscsiTarget.md index d6f60e534e..8540e6fde3 100644 --- a/docset/winserver2019-ps/iscsi/Get-IscsiTarget.md +++ b/docset/winserver2019-ps/iscsi/Get-IscsiTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: iSCSITarget.cdxml-help.xml Module Name: iSCSI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsi/get-iscsitarget?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/get-iscsitarget?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IscsiTarget --- diff --git a/docset/winserver2019-ps/iscsi/Get-IscsiTargetPortal.md b/docset/winserver2019-ps/iscsi/Get-IscsiTargetPortal.md index 905e6f5178..7874a3e486 100644 --- a/docset/winserver2019-ps/iscsi/Get-IscsiTargetPortal.md +++ b/docset/winserver2019-ps/iscsi/Get-IscsiTargetPortal.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: iSCSITargetPortal.cdxml-help.xml Module Name: iSCSI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsi/get-iscsitargetportal?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/get-iscsitargetportal?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IscsiTargetPortal --- diff --git a/docset/winserver2019-ps/iscsi/New-IscsiTargetPortal.md b/docset/winserver2019-ps/iscsi/New-IscsiTargetPortal.md index 3b9180d694..dd6bf7ba19 100644 --- a/docset/winserver2019-ps/iscsi/New-IscsiTargetPortal.md +++ b/docset/winserver2019-ps/iscsi/New-IscsiTargetPortal.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: iSCSITargetPortal.cdxml-help.xml Module Name: iSCSI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsi/new-iscsitargetportal?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/new-iscsitargetportal?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-IscsiTargetPortal --- diff --git a/docset/winserver2019-ps/iscsi/Register-IscsiSession.md b/docset/winserver2019-ps/iscsi/Register-IscsiSession.md index b40eb84344..347819b870 100644 --- a/docset/winserver2019-ps/iscsi/Register-IscsiSession.md +++ b/docset/winserver2019-ps/iscsi/Register-IscsiSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: iSCSISession.cdxml-help.xml Module Name: iSCSI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsi/register-iscsisession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/register-iscsisession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Register-IscsiSession --- diff --git a/docset/winserver2019-ps/iscsi/Remove-IscsiTargetPortal.md b/docset/winserver2019-ps/iscsi/Remove-IscsiTargetPortal.md index c91698d0ac..b4b597991b 100644 --- a/docset/winserver2019-ps/iscsi/Remove-IscsiTargetPortal.md +++ b/docset/winserver2019-ps/iscsi/Remove-IscsiTargetPortal.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: iSCSITargetPortal.cdxml-help.xml Module Name: iSCSI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsi/remove-iscsitargetportal?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/remove-iscsitargetportal?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IscsiTargetPortal --- diff --git a/docset/winserver2019-ps/iscsi/Set-IscsiChapSecret.md b/docset/winserver2019-ps/iscsi/Set-IscsiChapSecret.md index c6da6b9e41..82842a8369 100644 --- a/docset/winserver2019-ps/iscsi/Set-IscsiChapSecret.md +++ b/docset/winserver2019-ps/iscsi/Set-IscsiChapSecret.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: iSCSISession.cdxml-help.xml Module Name: iSCSI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsi/set-iscsichapsecret?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/set-iscsichapsecret?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IscsiChapSecret --- diff --git a/docset/winserver2019-ps/iscsi/Unregister-IscsiSession.md b/docset/winserver2019-ps/iscsi/Unregister-IscsiSession.md index 35b069b6e3..8ebb2bbb92 100644 --- a/docset/winserver2019-ps/iscsi/Unregister-IscsiSession.md +++ b/docset/winserver2019-ps/iscsi/Unregister-IscsiSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: iSCSISession.cdxml-help.xml Module Name: iSCSI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsi/unregister-iscsisession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/unregister-iscsisession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unregister-IscsiSession --- diff --git a/docset/winserver2019-ps/iscsi/Update-IscsiTarget.md b/docset/winserver2019-ps/iscsi/Update-IscsiTarget.md index 9d15330ac0..1299a99d66 100644 --- a/docset/winserver2019-ps/iscsi/Update-IscsiTarget.md +++ b/docset/winserver2019-ps/iscsi/Update-IscsiTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: iSCSITarget.cdxml-help.xml Module Name: iSCSI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsi/update-iscsitarget?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/update-iscsitarget?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-IscsiTarget --- diff --git a/docset/winserver2019-ps/iscsi/Update-IscsiTargetPortal.md b/docset/winserver2019-ps/iscsi/Update-IscsiTargetPortal.md index 82f6e6e639..175ca89d5a 100644 --- a/docset/winserver2019-ps/iscsi/Update-IscsiTargetPortal.md +++ b/docset/winserver2019-ps/iscsi/Update-IscsiTargetPortal.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: iSCSITargetPortal.cdxml-help.xml Module Name: iSCSI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsi/update-iscsitargetportal?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/update-iscsitargetportal?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-IscsiTargetPortal --- diff --git a/docset/winserver2019-ps/iscsitarget/Add-IscsiVirtualDiskTargetMapping.md b/docset/winserver2019-ps/iscsitarget/Add-IscsiVirtualDiskTargetMapping.md index 4a905c8c1d..dfabf5a468 100644 --- a/docset/winserver2019-ps/iscsitarget/Add-IscsiVirtualDiskTargetMapping.md +++ b/docset/winserver2019-ps/iscsitarget/Add-IscsiVirtualDiskTargetMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/add-iscsivirtualdisktargetmapping?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/add-iscsivirtualdisktargetmapping?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-IscsiVirtualDiskTargetMapping --- diff --git a/docset/winserver2019-ps/iscsitarget/Checkpoint-IscsiVirtualDisk.md b/docset/winserver2019-ps/iscsitarget/Checkpoint-IscsiVirtualDisk.md index d9efb94538..4425260a33 100644 --- a/docset/winserver2019-ps/iscsitarget/Checkpoint-IscsiVirtualDisk.md +++ b/docset/winserver2019-ps/iscsitarget/Checkpoint-IscsiVirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/checkpoint-iscsivirtualdisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/checkpoint-iscsivirtualdisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Checkpoint-IscsiVirtualDisk --- diff --git a/docset/winserver2019-ps/iscsitarget/Convert-IscsiVirtualDisk.md b/docset/winserver2019-ps/iscsitarget/Convert-IscsiVirtualDisk.md index 79d04b691a..1ea4cd91ee 100644 --- a/docset/winserver2019-ps/iscsitarget/Convert-IscsiVirtualDisk.md +++ b/docset/winserver2019-ps/iscsitarget/Convert-IscsiVirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/convert-iscsivirtualdisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/convert-iscsivirtualdisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Convert-IscsiVirtualDisk --- diff --git a/docset/winserver2019-ps/iscsitarget/Dismount-IscsiVirtualDiskSnapshot.md b/docset/winserver2019-ps/iscsitarget/Dismount-IscsiVirtualDiskSnapshot.md index ad9a7b89ce..39489a6b5b 100644 --- a/docset/winserver2019-ps/iscsitarget/Dismount-IscsiVirtualDiskSnapshot.md +++ b/docset/winserver2019-ps/iscsitarget/Dismount-IscsiVirtualDiskSnapshot.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/dismount-iscsivirtualdisksnapshot?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/dismount-iscsivirtualdisksnapshot?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Dismount-IscsiVirtualDiskSnapshot --- diff --git a/docset/winserver2019-ps/iscsitarget/Export-IscsiTargetServerConfiguration.md b/docset/winserver2019-ps/iscsitarget/Export-IscsiTargetServerConfiguration.md index 92a6d56fd9..6b5209fe5c 100644 --- a/docset/winserver2019-ps/iscsitarget/Export-IscsiTargetServerConfiguration.md +++ b/docset/winserver2019-ps/iscsitarget/Export-IscsiTargetServerConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/export-iscsitargetserverconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/export-iscsitargetserverconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-IscsiTargetServerConfiguration --- diff --git a/docset/winserver2019-ps/iscsitarget/Export-IscsiVirtualDiskSnapshot.md b/docset/winserver2019-ps/iscsitarget/Export-IscsiVirtualDiskSnapshot.md index d5d652ac59..6a7e5b38a3 100644 --- a/docset/winserver2019-ps/iscsitarget/Export-IscsiVirtualDiskSnapshot.md +++ b/docset/winserver2019-ps/iscsitarget/Export-IscsiVirtualDiskSnapshot.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/export-iscsivirtualdisksnapshot?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/export-iscsivirtualdisksnapshot?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-IscsiVirtualDiskSnapshot --- diff --git a/docset/winserver2019-ps/iscsitarget/Get-IscsiServerTarget.md b/docset/winserver2019-ps/iscsitarget/Get-IscsiServerTarget.md index 2ac883c533..af12c81be0 100644 --- a/docset/winserver2019-ps/iscsitarget/Get-IscsiServerTarget.md +++ b/docset/winserver2019-ps/iscsitarget/Get-IscsiServerTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/get-iscsiservertarget?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/get-iscsiservertarget?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IscsiServerTarget --- diff --git a/docset/winserver2019-ps/iscsitarget/Get-IscsiTargetServerSetting.md b/docset/winserver2019-ps/iscsitarget/Get-IscsiTargetServerSetting.md index 4ed281cd8e..8e89961c94 100644 --- a/docset/winserver2019-ps/iscsitarget/Get-IscsiTargetServerSetting.md +++ b/docset/winserver2019-ps/iscsitarget/Get-IscsiTargetServerSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/get-iscsitargetserversetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/get-iscsitargetserversetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IscsiTargetServerSetting --- diff --git a/docset/winserver2019-ps/iscsitarget/Get-IscsiVirtualDisk.md b/docset/winserver2019-ps/iscsitarget/Get-IscsiVirtualDisk.md index 8431572ec5..f23c6f743d 100644 --- a/docset/winserver2019-ps/iscsitarget/Get-IscsiVirtualDisk.md +++ b/docset/winserver2019-ps/iscsitarget/Get-IscsiVirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/get-iscsivirtualdisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/get-iscsivirtualdisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IscsiVirtualDisk --- diff --git a/docset/winserver2019-ps/iscsitarget/Get-IscsiVirtualDiskSnapshot.md b/docset/winserver2019-ps/iscsitarget/Get-IscsiVirtualDiskSnapshot.md index fbccbcb7bb..4f9a99a2a2 100644 --- a/docset/winserver2019-ps/iscsitarget/Get-IscsiVirtualDiskSnapshot.md +++ b/docset/winserver2019-ps/iscsitarget/Get-IscsiVirtualDiskSnapshot.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/get-iscsivirtualdisksnapshot?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/get-iscsivirtualdisksnapshot?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IscsiVirtualDiskSnapshot --- diff --git a/docset/winserver2019-ps/iscsitarget/Import-IscsiTargetServerConfiguration.md b/docset/winserver2019-ps/iscsitarget/Import-IscsiTargetServerConfiguration.md index afd201f1ba..5a7f0bcb95 100644 --- a/docset/winserver2019-ps/iscsitarget/Import-IscsiTargetServerConfiguration.md +++ b/docset/winserver2019-ps/iscsitarget/Import-IscsiTargetServerConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/import-iscsitargetserverconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/import-iscsitargetserverconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-IscsiTargetServerConfiguration --- diff --git a/docset/winserver2019-ps/iscsitarget/Import-IscsiVirtualDisk.md b/docset/winserver2019-ps/iscsitarget/Import-IscsiVirtualDisk.md index d30b2555c2..e46bb5c55e 100644 --- a/docset/winserver2019-ps/iscsitarget/Import-IscsiVirtualDisk.md +++ b/docset/winserver2019-ps/iscsitarget/Import-IscsiVirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/import-iscsivirtualdisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/import-iscsivirtualdisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-IscsiVirtualDisk --- diff --git a/docset/winserver2019-ps/iscsitarget/Mount-IscsiVirtualDiskSnapshot.md b/docset/winserver2019-ps/iscsitarget/Mount-IscsiVirtualDiskSnapshot.md index 4f615ba32f..e002a3d117 100644 --- a/docset/winserver2019-ps/iscsitarget/Mount-IscsiVirtualDiskSnapshot.md +++ b/docset/winserver2019-ps/iscsitarget/Mount-IscsiVirtualDiskSnapshot.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/mount-iscsivirtualdisksnapshot?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/mount-iscsivirtualdisksnapshot?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Mount-IscsiVirtualDiskSnapshot --- diff --git a/docset/winserver2019-ps/iscsitarget/New-IscsiServerTarget.md b/docset/winserver2019-ps/iscsitarget/New-IscsiServerTarget.md index 8714a5c6e3..4a2225bf38 100644 --- a/docset/winserver2019-ps/iscsitarget/New-IscsiServerTarget.md +++ b/docset/winserver2019-ps/iscsitarget/New-IscsiServerTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/new-iscsiservertarget?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/new-iscsiservertarget?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-IscsiServerTarget --- diff --git a/docset/winserver2019-ps/iscsitarget/New-IscsiVirtualDisk.md b/docset/winserver2019-ps/iscsitarget/New-IscsiVirtualDisk.md index fae7ca510d..5cf4e481e9 100644 --- a/docset/winserver2019-ps/iscsitarget/New-IscsiVirtualDisk.md +++ b/docset/winserver2019-ps/iscsitarget/New-IscsiVirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/new-iscsivirtualdisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/new-iscsivirtualdisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-IscsiVirtualDisk --- diff --git a/docset/winserver2019-ps/iscsitarget/Remove-IscsiServerTarget.md b/docset/winserver2019-ps/iscsitarget/Remove-IscsiServerTarget.md index 2ba023f503..2235600676 100644 --- a/docset/winserver2019-ps/iscsitarget/Remove-IscsiServerTarget.md +++ b/docset/winserver2019-ps/iscsitarget/Remove-IscsiServerTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/remove-iscsiservertarget?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/remove-iscsiservertarget?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IscsiServerTarget --- diff --git a/docset/winserver2019-ps/iscsitarget/Remove-IscsiVirtualDisk.md b/docset/winserver2019-ps/iscsitarget/Remove-IscsiVirtualDisk.md index c0bf5775a4..2736ec04b6 100644 --- a/docset/winserver2019-ps/iscsitarget/Remove-IscsiVirtualDisk.md +++ b/docset/winserver2019-ps/iscsitarget/Remove-IscsiVirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/remove-iscsivirtualdisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/remove-iscsivirtualdisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IscsiVirtualDisk --- diff --git a/docset/winserver2019-ps/iscsitarget/Remove-IscsiVirtualDiskSnapshot.md b/docset/winserver2019-ps/iscsitarget/Remove-IscsiVirtualDiskSnapshot.md index 3fc58f1dc4..bddd8a2da4 100644 --- a/docset/winserver2019-ps/iscsitarget/Remove-IscsiVirtualDiskSnapshot.md +++ b/docset/winserver2019-ps/iscsitarget/Remove-IscsiVirtualDiskSnapshot.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/remove-iscsivirtualdisksnapshot?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/remove-iscsivirtualdisksnapshot?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IscsiVirtualDiskSnapshot --- diff --git a/docset/winserver2019-ps/iscsitarget/Remove-IscsiVirtualDiskTargetMapping.md b/docset/winserver2019-ps/iscsitarget/Remove-IscsiVirtualDiskTargetMapping.md index 6d815395bb..d8cc54d353 100644 --- a/docset/winserver2019-ps/iscsitarget/Remove-IscsiVirtualDiskTargetMapping.md +++ b/docset/winserver2019-ps/iscsitarget/Remove-IscsiVirtualDiskTargetMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/remove-iscsivirtualdisktargetmapping?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/remove-iscsivirtualdisktargetmapping?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IscsiVirtualDiskTargetMapping --- diff --git a/docset/winserver2019-ps/iscsitarget/Resize-IscsiVirtualDisk.md b/docset/winserver2019-ps/iscsitarget/Resize-IscsiVirtualDisk.md index 8a7ffd46e6..3c462cd96b 100644 --- a/docset/winserver2019-ps/iscsitarget/Resize-IscsiVirtualDisk.md +++ b/docset/winserver2019-ps/iscsitarget/Resize-IscsiVirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/resize-iscsivirtualdisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/resize-iscsivirtualdisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resize-IscsiVirtualDisk --- diff --git a/docset/winserver2019-ps/iscsitarget/Restore-IscsiVirtualDisk.md b/docset/winserver2019-ps/iscsitarget/Restore-IscsiVirtualDisk.md index 9f12495a1b..bd7e4880de 100644 --- a/docset/winserver2019-ps/iscsitarget/Restore-IscsiVirtualDisk.md +++ b/docset/winserver2019-ps/iscsitarget/Restore-IscsiVirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/restore-iscsivirtualdisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/restore-iscsivirtualdisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-IscsiVirtualDisk --- diff --git a/docset/winserver2019-ps/iscsitarget/Set-IscsiServerTarget.md b/docset/winserver2019-ps/iscsitarget/Set-IscsiServerTarget.md index edd86149b1..37e72fa0d5 100644 --- a/docset/winserver2019-ps/iscsitarget/Set-IscsiServerTarget.md +++ b/docset/winserver2019-ps/iscsitarget/Set-IscsiServerTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/set-iscsiservertarget?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/set-iscsiservertarget?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IscsiServerTarget --- diff --git a/docset/winserver2019-ps/iscsitarget/Set-IscsiTargetServerSetting.md b/docset/winserver2019-ps/iscsitarget/Set-IscsiTargetServerSetting.md index d948e90df9..8b966b16cf 100644 --- a/docset/winserver2019-ps/iscsitarget/Set-IscsiTargetServerSetting.md +++ b/docset/winserver2019-ps/iscsitarget/Set-IscsiTargetServerSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/set-iscsitargetserversetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/set-iscsitargetserversetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IscsiTargetServerSetting --- diff --git a/docset/winserver2019-ps/iscsitarget/Set-IscsiVirtualDisk.md b/docset/winserver2019-ps/iscsitarget/Set-IscsiVirtualDisk.md index dfc7623e6f..a854844598 100644 --- a/docset/winserver2019-ps/iscsitarget/Set-IscsiVirtualDisk.md +++ b/docset/winserver2019-ps/iscsitarget/Set-IscsiVirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/set-iscsivirtualdisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/set-iscsivirtualdisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IscsiVirtualDisk --- diff --git a/docset/winserver2019-ps/iscsitarget/Set-IscsiVirtualDiskSnapshot.md b/docset/winserver2019-ps/iscsitarget/Set-IscsiVirtualDiskSnapshot.md index 3fade63451..02428d807d 100644 --- a/docset/winserver2019-ps/iscsitarget/Set-IscsiVirtualDiskSnapshot.md +++ b/docset/winserver2019-ps/iscsitarget/Set-IscsiVirtualDiskSnapshot.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/set-iscsivirtualdisksnapshot?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/set-iscsivirtualdisksnapshot?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IscsiVirtualDiskSnapshot --- diff --git a/docset/winserver2019-ps/iscsitarget/Stop-IscsiVirtualDiskOperation.md b/docset/winserver2019-ps/iscsitarget/Stop-IscsiVirtualDiskOperation.md index 796e1c12d2..e38cd7671b 100644 --- a/docset/winserver2019-ps/iscsitarget/Stop-IscsiVirtualDiskOperation.md +++ b/docset/winserver2019-ps/iscsitarget/Stop-IscsiVirtualDiskOperation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/stop-iscsivirtualdiskoperation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/stop-iscsivirtualdiskoperation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-IscsiVirtualDiskOperation --- diff --git a/docset/winserver2019-ps/kds/Add-KdsRootKey.md b/docset/winserver2019-ps/kds/Add-KdsRootKey.md index 919a19e9ac..37713bc82c 100644 --- a/docset/winserver2019-ps/kds/Add-KdsRootKey.md +++ b/docset/winserver2019-ps/kds/Add-KdsRootKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.KeyDistributionService.Cmdlets.dll-Help.xml Module Name: KDS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/kds/add-kdsrootkey?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/kds/add-kdsrootkey?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-KdsRootKey --- diff --git a/docset/winserver2019-ps/kds/Clear-KdsCache.md b/docset/winserver2019-ps/kds/Clear-KdsCache.md index 405234cd75..b01a593b20 100644 --- a/docset/winserver2019-ps/kds/Clear-KdsCache.md +++ b/docset/winserver2019-ps/kds/Clear-KdsCache.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.KeyDistributionService.Cmdlets.dll-Help.xml Module Name: KDS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/kds/clear-kdscache?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/kds/clear-kdscache?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-KdsCache --- diff --git a/docset/winserver2019-ps/kds/Get-KdsConfiguration.md b/docset/winserver2019-ps/kds/Get-KdsConfiguration.md index 56d15e507f..a5ce186031 100644 --- a/docset/winserver2019-ps/kds/Get-KdsConfiguration.md +++ b/docset/winserver2019-ps/kds/Get-KdsConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.KeyDistributionService.Cmdlets.dll-Help.xml Module Name: KDS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/kds/get-kdsconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/kds/get-kdsconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-KdsConfiguration --- diff --git a/docset/winserver2019-ps/kds/Get-KdsRootKey.md b/docset/winserver2019-ps/kds/Get-KdsRootKey.md index 955a9b19b9..3df69f255f 100644 --- a/docset/winserver2019-ps/kds/Get-KdsRootKey.md +++ b/docset/winserver2019-ps/kds/Get-KdsRootKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.KeyDistributionService.Cmdlets.dll-Help.xml Module Name: KDS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/kds/get-kdsrootkey?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/kds/get-kdsrootkey?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-KdsRootKey --- diff --git a/docset/winserver2019-ps/kds/Set-KdsConfiguration.md b/docset/winserver2019-ps/kds/Set-KdsConfiguration.md index 2f7abb7b69..f53e45c7e8 100644 --- a/docset/winserver2019-ps/kds/Set-KdsConfiguration.md +++ b/docset/winserver2019-ps/kds/Set-KdsConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.KeyDistributionService.Cmdlets.dll-Help.xml Module Name: KDS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/kds/set-kdsconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/kds/set-kdsconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-KdsConfiguration --- diff --git a/docset/winserver2019-ps/kds/Test-KdsRootKey.md b/docset/winserver2019-ps/kds/Test-KdsRootKey.md index 5aef45ae3c..01a598de80 100644 --- a/docset/winserver2019-ps/kds/Test-KdsRootKey.md +++ b/docset/winserver2019-ps/kds/Test-KdsRootKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.KeyDistributionService.Cmdlets.dll-Help.xml Module Name: KDS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/kds/test-kdsrootkey?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/kds/test-kdsrootkey?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-KdsRootKey --- diff --git a/docset/winserver2019-ps/languagepackmanagement/Get-InstalledLanguage.md b/docset/winserver2019-ps/languagepackmanagement/Get-InstalledLanguage.md index a2d7f5a09a..55bd9189fd 100644 --- a/docset/winserver2019-ps/languagepackmanagement/Get-InstalledLanguage.md +++ b/docset/winserver2019-ps/languagepackmanagement/Get-InstalledLanguage.md @@ -1,11 +1,11 @@ --- +description: The Get-InstalledLanguage cmdlet lets you see which languages are installed in a running Windows installation external help file: Microsoft.LanguagePackManagement.Powershell.Commands.dll-Help.xml Module Name: LanguagePackManagement -online version: https://docs.microsoft.com/powershell/module/languagepackmanagement/get-installedlanguage?view=windowsserver2019-ps -schema: 2.0.0 ms.date: 08/15/2022 +online version: https://learn.microsoft.com/powershell/module/languagepackmanagement/get-installedlanguage?view=windowsserver2019-ps +schema: 2.0.0 title: Get-InstalledLanguage -description: The Get-InstalledLanguage cmdlet lets you see which languages are installed in a running Windows installation --- # Get-InstalledLanguage diff --git a/docset/winserver2019-ps/languagepackmanagement/Get-SystemPreferredUILanguage.md b/docset/winserver2019-ps/languagepackmanagement/Get-SystemPreferredUILanguage.md index 67407f488a..03b9f584a6 100644 --- a/docset/winserver2019-ps/languagepackmanagement/Get-SystemPreferredUILanguage.md +++ b/docset/winserver2019-ps/languagepackmanagement/Get-SystemPreferredUILanguage.md @@ -1,11 +1,11 @@ --- +description: The Get-SystemPreferredUILanguage cmdlet lets you see which language is set as the System Preferred UI Language in a running Windows installation external help file: Microsoft.LanguagePackManagement.Powershell.Commands.dll-Help.xml Module Name: LanguagePackManagement -online version: https://docs.microsoft.com/powershell/module/languagepackmanagement/get-systempreferreduilanguage?view=windowsserver2019-ps -schema: 2.0.0 ms.date: 08/15/2022 +online version: https://learn.microsoft.com/powershell/module/languagepackmanagement/get-systempreferreduilanguage?view=windowsserver2019-ps +schema: 2.0.0 title: Get-SystemPreferredUILanguage -description: The Get-SystemPreferredUILanguage cmdlet lets you see which language is set as the System Preferred UI Language in a running Windows installation --- # Get-SystemPreferredUILanguage diff --git a/docset/winserver2019-ps/languagepackmanagement/Install-Language.md b/docset/winserver2019-ps/languagepackmanagement/Install-Language.md index 7873a2a288..a7e3dbfd32 100644 --- a/docset/winserver2019-ps/languagepackmanagement/Install-Language.md +++ b/docset/winserver2019-ps/languagepackmanagement/Install-Language.md @@ -1,11 +1,11 @@ --- +description: The Install-Language cmdlet lets you add a language to a running Windows installation external help file: Microsoft.LanguagePackManagement.Powershell.Commands.dll-Help.xml Module Name: LanguagePackManagement -online version: https://docs.microsoft.com/powershell/module/languagepackmanagement/install-language?view=windowsserver2019-ps -schema: 2.0.0 ms.date: 08/15/2022 +online version: https://learn.microsoft.com/powershell/module/languagepackmanagement/install-language?view=windowsserver2019-ps +schema: 2.0.0 title: Install-Language -description: The Install-Language cmdlet lets you add a language to a running Windows installation --- # Install-Language diff --git a/docset/winserver2019-ps/languagepackmanagement/LanguagePackManagement.md b/docset/winserver2019-ps/languagepackmanagement/LanguagePackManagement.md index 6a2cba237f..cb2ccfa0db 100644 --- a/docset/winserver2019-ps/languagepackmanagement/LanguagePackManagement.md +++ b/docset/winserver2019-ps/languagepackmanagement/LanguagePackManagement.md @@ -1,12 +1,12 @@ --- -Module Name: LanguagePackManagement -Module Guid: f42dbdd4-4358-4067-8155-a4567a0aaee5 +description: The LanguagePackManagement module includes cmdlets that help you easily manage languages and language settings on a running Windows installation Download Help Link: https://aka.ms/winsvr-2022-pshelp Help Version: 5.0.0.1 Locale: en-US +Module Guid: f42dbdd4-4358-4067-8155-a4567a0aaee5 +Module Name: LanguagePackManagement ms.date: 08/15/2022 title: LanguagePackManagement module -description: The LanguagePackManagement module includes cmdlets that help you easily manage languages and language settings on a running Windows installation --- # LanguagePackManagement Module diff --git a/docset/winserver2019-ps/languagepackmanagement/Set-SystemPreferredUILanguage.md b/docset/winserver2019-ps/languagepackmanagement/Set-SystemPreferredUILanguage.md index 84dbbc73fb..1eced4dae9 100644 --- a/docset/winserver2019-ps/languagepackmanagement/Set-SystemPreferredUILanguage.md +++ b/docset/winserver2019-ps/languagepackmanagement/Set-SystemPreferredUILanguage.md @@ -1,11 +1,11 @@ --- +description: The Set-SystemPreferredUILanguage cmdlet lets you set an installed language as the System Preferred UI Language in a running Windows installation external help file: Microsoft.LanguagePackManagement.Powershell.Commands.dll-Help.xml Module Name: LanguagePackManagement -online version: https://docs.microsoft.com/powershell/module/languagepackmanagement/set-systempreferreduilanguage?view=windowsserver2019-ps -schema: 2.0.0 ms.date: 08/15/2022 +online version: https://learn.microsoft.com/powershell/module/languagepackmanagement/set-systempreferreduilanguage?view=windowsserver2019-ps +schema: 2.0.0 title: Set-SystemPreferredUILanguage -description: The Set-SystemPreferredUILanguage cmdlet lets you set an installed language as the System Preferred UI Language in a running Windows installation --- # Set-SystemPreferredUILanguage diff --git a/docset/winserver2019-ps/languagepackmanagement/Uninstall-Language.md b/docset/winserver2019-ps/languagepackmanagement/Uninstall-Language.md index cad725fb30..d27362651f 100644 --- a/docset/winserver2019-ps/languagepackmanagement/Uninstall-Language.md +++ b/docset/winserver2019-ps/languagepackmanagement/Uninstall-Language.md @@ -1,11 +1,11 @@ --- +description: The Uninstall-Language cmdlet lets you remove a language and its components from a running Windows installation external help file: Microsoft.LanguagePackManagement.Powershell.Commands.dll-Help.xml Module Name: LanguagePackManagement -online version: https://docs.microsoft.com/powershell/module/languagepackmanagement/uninstall-language?view=windowsserver2019-ps -schema: 2.0.0 ms.date: 08/15/2022 +online version: https://learn.microsoft.com/powershell/module/languagepackmanagement/uninstall-language?view=windowsserver2019-ps +schema: 2.0.0 title: Uninstall-Language -description: The Uninstall-Language cmdlet lets you remove a language and its components from a running Windows installation --- # Uninstall-Language diff --git a/docset/winserver2019-ps/mmagent/Debug-MMAppPrelaunch.md b/docset/winserver2019-ps/mmagent/Debug-MMAppPrelaunch.md index 758cb0e0ee..c9ec744b2b 100644 --- a/docset/winserver2019-ps/mmagent/Debug-MMAppPrelaunch.md +++ b/docset/winserver2019-ps/mmagent/Debug-MMAppPrelaunch.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ps_mmagent_v1.0.cdxml-help.xml Module Name: MMAgent ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/mmagent/debug-mmappprelaunch?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mmagent/debug-mmappprelaunch?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Debug-MMAppPrelaunch --- diff --git a/docset/winserver2019-ps/mmagent/Disable-MMAgent.md b/docset/winserver2019-ps/mmagent/Disable-MMAgent.md index 06e7c802be..80fcc2ce9a 100644 --- a/docset/winserver2019-ps/mmagent/Disable-MMAgent.md +++ b/docset/winserver2019-ps/mmagent/Disable-MMAgent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ps_mmagent_v1.0.cdxml-help.xml Module Name: MMAgent ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/mmagent/disable-mmagent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mmagent/disable-mmagent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-MMAgent --- diff --git a/docset/winserver2019-ps/mmagent/Enable-MMAgent.md b/docset/winserver2019-ps/mmagent/Enable-MMAgent.md index bf313ed4ce..dc6029903f 100644 --- a/docset/winserver2019-ps/mmagent/Enable-MMAgent.md +++ b/docset/winserver2019-ps/mmagent/Enable-MMAgent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ps_mmagent_v1.0.cdxml-help.xml Module Name: MMAgent ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/mmagent/enable-mmagent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mmagent/enable-mmagent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-MMAgent --- diff --git a/docset/winserver2019-ps/mmagent/Get-MMAgent.md b/docset/winserver2019-ps/mmagent/Get-MMAgent.md index 07715ea167..542f04d749 100644 --- a/docset/winserver2019-ps/mmagent/Get-MMAgent.md +++ b/docset/winserver2019-ps/mmagent/Get-MMAgent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ps_mmagent_v1.0.cdxml-help.xml Module Name: MMAgent ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/mmagent/get-mmagent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mmagent/get-mmagent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MMAgent --- diff --git a/docset/winserver2019-ps/mmagent/Set-MMAgent.md b/docset/winserver2019-ps/mmagent/Set-MMAgent.md index 1472bd7342..ef9c3724b8 100644 --- a/docset/winserver2019-ps/mmagent/Set-MMAgent.md +++ b/docset/winserver2019-ps/mmagent/Set-MMAgent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ps_mmagent_v1.0.cdxml-help.xml Module Name: MMAgent ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/mmagent/set-mmagent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mmagent/set-mmagent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-MMAgent --- diff --git a/docset/winserver2019-ps/mpio/Clear-MSDSMSupportedHW.md b/docset/winserver2019-ps/mpio/Clear-MSDSMSupportedHW.md index ace38998ed..f244dbc982 100644 --- a/docset/winserver2019-ps/mpio/Clear-MSDSMSupportedHW.md +++ b/docset/winserver2019-ps/mpio/Clear-MSDSMSupportedHW.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSDSMSupportedHW.cdxml-help.xml Module Name: MPIO ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/mpio/clear-msdsmsupportedhw?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/clear-msdsmsupportedhw?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-MSDSMSupportedHW --- diff --git a/docset/winserver2019-ps/mpio/Disable-MSDSMAutomaticClaim.md b/docset/winserver2019-ps/mpio/Disable-MSDSMAutomaticClaim.md index cfc2f916dc..c72c72f4bd 100644 --- a/docset/winserver2019-ps/mpio/Disable-MSDSMAutomaticClaim.md +++ b/docset/winserver2019-ps/mpio/Disable-MSDSMAutomaticClaim.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Mpio-help.xml Module Name: MPIO ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/mpio/disable-msdsmautomaticclaim?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/disable-msdsmautomaticclaim?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-MSDSMAutomaticClaim --- diff --git a/docset/winserver2019-ps/mpio/Enable-MSDSMAutomaticClaim.md b/docset/winserver2019-ps/mpio/Enable-MSDSMAutomaticClaim.md index 4d0fbb4db1..d24bb91303 100644 --- a/docset/winserver2019-ps/mpio/Enable-MSDSMAutomaticClaim.md +++ b/docset/winserver2019-ps/mpio/Enable-MSDSMAutomaticClaim.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Mpio-help.xml Module Name: MPIO ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/mpio/enable-msdsmautomaticclaim?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/enable-msdsmautomaticclaim?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-MSDSMAutomaticClaim --- diff --git a/docset/winserver2019-ps/mpio/Get-MPIOAvailableHW.md b/docset/winserver2019-ps/mpio/Get-MPIOAvailableHW.md index 17491eaa30..b04bfdc7cb 100644 --- a/docset/winserver2019-ps/mpio/Get-MPIOAvailableHW.md +++ b/docset/winserver2019-ps/mpio/Get-MPIOAvailableHW.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MPIOAvailableHW.cdxml-help.xml Module Name: MPIO ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/mpio/get-mpioavailablehw?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/get-mpioavailablehw?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MPIOAvailableHW --- diff --git a/docset/winserver2019-ps/mpio/Get-MPIOSetting.md b/docset/winserver2019-ps/mpio/Get-MPIOSetting.md index 708c8f1e65..ba882c1152 100644 --- a/docset/winserver2019-ps/mpio/Get-MPIOSetting.md +++ b/docset/winserver2019-ps/mpio/Get-MPIOSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Mpio-help.xml Module Name: MPIO ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/mpio/get-mpiosetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/get-mpiosetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MPIOSetting --- diff --git a/docset/winserver2019-ps/mpio/Get-MSDSMAutomaticClaimSettings.md b/docset/winserver2019-ps/mpio/Get-MSDSMAutomaticClaimSettings.md index 06866f23cc..dad9d8ba73 100644 --- a/docset/winserver2019-ps/mpio/Get-MSDSMAutomaticClaimSettings.md +++ b/docset/winserver2019-ps/mpio/Get-MSDSMAutomaticClaimSettings.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Mpio-help.xml Module Name: MPIO ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/mpio/get-msdsmautomaticclaimsettings?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/get-msdsmautomaticclaimsettings?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MSDSMAutomaticClaimSettings --- diff --git a/docset/winserver2019-ps/mpio/Get-MSDSMGlobalDefaultLoadBalancePolicy.md b/docset/winserver2019-ps/mpio/Get-MSDSMGlobalDefaultLoadBalancePolicy.md index 4e24b75ffa..9a795b194a 100644 --- a/docset/winserver2019-ps/mpio/Get-MSDSMGlobalDefaultLoadBalancePolicy.md +++ b/docset/winserver2019-ps/mpio/Get-MSDSMGlobalDefaultLoadBalancePolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Mpio-help.xml Module Name: MPIO ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/mpio/get-msdsmglobaldefaultloadbalancepolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/get-msdsmglobaldefaultloadbalancepolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MSDSMGlobalDefaultLoadBalancePolicy --- diff --git a/docset/winserver2019-ps/mpio/Get-MSDSMSupportedHW.md b/docset/winserver2019-ps/mpio/Get-MSDSMSupportedHW.md index 5ff550a37f..9024381dfb 100644 --- a/docset/winserver2019-ps/mpio/Get-MSDSMSupportedHW.md +++ b/docset/winserver2019-ps/mpio/Get-MSDSMSupportedHW.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSDSMSupportedHW.cdxml-help.xml Module Name: MPIO ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/mpio/get-msdsmsupportedhw?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/get-msdsmsupportedhw?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MSDSMSupportedHW --- diff --git a/docset/winserver2019-ps/mpio/New-MSDSMSupportedHW.md b/docset/winserver2019-ps/mpio/New-MSDSMSupportedHW.md index 2c017b768a..851e16a3ba 100644 --- a/docset/winserver2019-ps/mpio/New-MSDSMSupportedHW.md +++ b/docset/winserver2019-ps/mpio/New-MSDSMSupportedHW.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSDSMSupportedHW.cdxml-help.xml Module Name: MPIO ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/mpio/new-msdsmsupportedhw?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/new-msdsmsupportedhw?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-MSDSMSupportedHW --- diff --git a/docset/winserver2019-ps/mpio/Remove-MSDSMSupportedHW.md b/docset/winserver2019-ps/mpio/Remove-MSDSMSupportedHW.md index 765df23239..09c94b6cca 100644 --- a/docset/winserver2019-ps/mpio/Remove-MSDSMSupportedHW.md +++ b/docset/winserver2019-ps/mpio/Remove-MSDSMSupportedHW.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSDSMSupportedHW.cdxml-help.xml Module Name: MPIO ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/mpio/remove-msdsmsupportedhw?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/remove-msdsmsupportedhw?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-MSDSMSupportedHW --- diff --git a/docset/winserver2019-ps/mpio/Set-MPIOSetting.md b/docset/winserver2019-ps/mpio/Set-MPIOSetting.md index b9de66d375..68032dd60d 100644 --- a/docset/winserver2019-ps/mpio/Set-MPIOSetting.md +++ b/docset/winserver2019-ps/mpio/Set-MPIOSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Mpio-help.xml Module Name: MPIO ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/mpio/set-mpiosetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/set-mpiosetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-MPIOSetting --- diff --git a/docset/winserver2019-ps/mpio/Set-MSDSMGlobalDefaultLoadBalancePolicy.md b/docset/winserver2019-ps/mpio/Set-MSDSMGlobalDefaultLoadBalancePolicy.md index 02512ac25c..03e17f5458 100644 --- a/docset/winserver2019-ps/mpio/Set-MSDSMGlobalDefaultLoadBalancePolicy.md +++ b/docset/winserver2019-ps/mpio/Set-MSDSMGlobalDefaultLoadBalancePolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Mpio-help.xml Module Name: MPIO ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/mpio/set-msdsmglobaldefaultloadbalancepolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/set-msdsmglobaldefaultloadbalancepolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-MSDSMGlobalDefaultLoadBalancePolicy --- diff --git a/docset/winserver2019-ps/mpio/Update-MPIOClaimedHW.md b/docset/winserver2019-ps/mpio/Update-MPIOClaimedHW.md index 6cb9f5d75c..6ba7949870 100644 --- a/docset/winserver2019-ps/mpio/Update-MPIOClaimedHW.md +++ b/docset/winserver2019-ps/mpio/Update-MPIOClaimedHW.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MPIOClaimedHW.cdxml-help.xml Module Name: MPIO ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/mpio/update-mpioclaimedhw?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/update-mpioclaimedhw?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-MPIOClaimedHW --- diff --git a/docset/winserver2019-ps/msdtc/Add-DtcClusterTMMapping.md b/docset/winserver2019-ps/msdtc/Add-DtcClusterTMMapping.md index ec5bd27c3c..9d1e3ef60f 100644 --- a/docset/winserver2019-ps/msdtc/Add-DtcClusterTMMapping.md +++ b/docset/winserver2019-ps/msdtc/Add-DtcClusterTMMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcClusterTMMappingTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/add-dtcclustertmmapping?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/add-dtcclustertmmapping?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DtcClusterTMMapping --- diff --git a/docset/winserver2019-ps/msdtc/Complete-DtcDiagnosticTransaction.md b/docset/winserver2019-ps/msdtc/Complete-DtcDiagnosticTransaction.md index 377c4829af..d46ed3dfbb 100644 --- a/docset/winserver2019-ps/msdtc/Complete-DtcDiagnosticTransaction.md +++ b/docset/winserver2019-ps/msdtc/Complete-DtcDiagnosticTransaction.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dtc.PowerShell.dll-Help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/complete-dtcdiagnostictransaction?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/complete-dtcdiagnostictransaction?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Complete-DtcDiagnosticTransaction --- diff --git a/docset/winserver2019-ps/msdtc/Get-Dtc.md b/docset/winserver2019-ps/msdtc/Get-Dtc.md index ab1a17aeab..8921c7f77e 100644 --- a/docset/winserver2019-ps/msdtc/Get-Dtc.md +++ b/docset/winserver2019-ps/msdtc/Get-Dtc.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtc?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtc?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-Dtc --- diff --git a/docset/winserver2019-ps/msdtc/Get-DtcAdvancedHostSetting.md b/docset/winserver2019-ps/msdtc/Get-DtcAdvancedHostSetting.md index 453eb36373..bdb293ff14 100644 --- a/docset/winserver2019-ps/msdtc/Get-DtcAdvancedHostSetting.md +++ b/docset/winserver2019-ps/msdtc/Get-DtcAdvancedHostSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcAdvancedHostSettingTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtcadvancedhostsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtcadvancedhostsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DtcAdvancedHostSetting --- diff --git a/docset/winserver2019-ps/msdtc/Get-DtcAdvancedSetting.md b/docset/winserver2019-ps/msdtc/Get-DtcAdvancedSetting.md index 9a209866ed..fcd628a33a 100644 --- a/docset/winserver2019-ps/msdtc/Get-DtcAdvancedSetting.md +++ b/docset/winserver2019-ps/msdtc/Get-DtcAdvancedSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcAdvancedSettingTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtcadvancedsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtcadvancedsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DtcAdvancedSetting --- diff --git a/docset/winserver2019-ps/msdtc/Get-DtcClusterDefault.md b/docset/winserver2019-ps/msdtc/Get-DtcClusterDefault.md index dbcee4f116..c3ccccb72a 100644 --- a/docset/winserver2019-ps/msdtc/Get-DtcClusterDefault.md +++ b/docset/winserver2019-ps/msdtc/Get-DtcClusterDefault.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcClusterDefaultTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtcclusterdefault?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtcclusterdefault?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DtcClusterDefault --- diff --git a/docset/winserver2019-ps/msdtc/Get-DtcClusterTMMapping.md b/docset/winserver2019-ps/msdtc/Get-DtcClusterTMMapping.md index d34decdb50..4ad4c997b7 100644 --- a/docset/winserver2019-ps/msdtc/Get-DtcClusterTMMapping.md +++ b/docset/winserver2019-ps/msdtc/Get-DtcClusterTMMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcClusterTMMappingTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtcclustertmmapping?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtcclustertmmapping?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DtcClusterTMMapping --- diff --git a/docset/winserver2019-ps/msdtc/Get-DtcDefault.md b/docset/winserver2019-ps/msdtc/Get-DtcDefault.md index 83ab37ea3b..ac68ee1e8d 100644 --- a/docset/winserver2019-ps/msdtc/Get-DtcDefault.md +++ b/docset/winserver2019-ps/msdtc/Get-DtcDefault.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcDefaultTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtcdefault?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtcdefault?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DtcDefault --- diff --git a/docset/winserver2019-ps/msdtc/Get-DtcLog.md b/docset/winserver2019-ps/msdtc/Get-DtcLog.md index e0dc2dad01..26fa3772e0 100644 --- a/docset/winserver2019-ps/msdtc/Get-DtcLog.md +++ b/docset/winserver2019-ps/msdtc/Get-DtcLog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcLogTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtclog?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtclog?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DtcLog --- diff --git a/docset/winserver2019-ps/msdtc/Get-DtcNetworkSetting.md b/docset/winserver2019-ps/msdtc/Get-DtcNetworkSetting.md index 4b61673d51..e6189fa4be 100644 --- a/docset/winserver2019-ps/msdtc/Get-DtcNetworkSetting.md +++ b/docset/winserver2019-ps/msdtc/Get-DtcNetworkSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcNetworkSettingTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtcnetworksetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtcnetworksetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DtcNetworkSetting --- diff --git a/docset/winserver2019-ps/msdtc/Get-DtcTransaction.md b/docset/winserver2019-ps/msdtc/Get-DtcTransaction.md index 9f7f517c93..e7cd7f3ab5 100644 --- a/docset/winserver2019-ps/msdtc/Get-DtcTransaction.md +++ b/docset/winserver2019-ps/msdtc/Get-DtcTransaction.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcTransactionTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtctransaction?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtctransaction?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DtcTransaction --- diff --git a/docset/winserver2019-ps/msdtc/Get-DtcTransactionsStatistics.md b/docset/winserver2019-ps/msdtc/Get-DtcTransactionsStatistics.md index b8180383c7..d4c2727e63 100644 --- a/docset/winserver2019-ps/msdtc/Get-DtcTransactionsStatistics.md +++ b/docset/winserver2019-ps/msdtc/Get-DtcTransactionsStatistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcTransactionsStatisticsTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtctransactionsstatistics?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtctransactionsstatistics?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DtcTransactionsStatistics --- diff --git a/docset/winserver2019-ps/msdtc/Get-DtcTransactionsTraceSession.md b/docset/winserver2019-ps/msdtc/Get-DtcTransactionsTraceSession.md index 0bcec90859..149b0f448c 100644 --- a/docset/winserver2019-ps/msdtc/Get-DtcTransactionsTraceSession.md +++ b/docset/winserver2019-ps/msdtc/Get-DtcTransactionsTraceSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcTransactionsTraceSessionTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtctransactionstracesession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtctransactionstracesession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DtcTransactionsTraceSession --- diff --git a/docset/winserver2019-ps/msdtc/Get-DtcTransactionsTraceSetting.md b/docset/winserver2019-ps/msdtc/Get-DtcTransactionsTraceSetting.md index 6a56d0c1c5..7b3de3bc89 100644 --- a/docset/winserver2019-ps/msdtc/Get-DtcTransactionsTraceSetting.md +++ b/docset/winserver2019-ps/msdtc/Get-DtcTransactionsTraceSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcTransactionsTraceSettingTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtctransactionstracesetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtctransactionstracesetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DtcTransactionsTraceSetting --- diff --git a/docset/winserver2019-ps/msdtc/Install-Dtc.md b/docset/winserver2019-ps/msdtc/Install-Dtc.md index afb3bf7d8a..b15b006ba0 100644 --- a/docset/winserver2019-ps/msdtc/Install-Dtc.md +++ b/docset/winserver2019-ps/msdtc/Install-Dtc.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/install-dtc?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/install-dtc?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-Dtc --- diff --git a/docset/winserver2019-ps/msdtc/Join-DtcDiagnosticResourceManager.md b/docset/winserver2019-ps/msdtc/Join-DtcDiagnosticResourceManager.md index 4e3598d561..64a063c279 100644 --- a/docset/winserver2019-ps/msdtc/Join-DtcDiagnosticResourceManager.md +++ b/docset/winserver2019-ps/msdtc/Join-DtcDiagnosticResourceManager.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dtc.PowerShell.dll-Help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/join-dtcdiagnosticresourcemanager?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/join-dtcdiagnosticresourcemanager?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Join-DtcDiagnosticResourceManager --- diff --git a/docset/winserver2019-ps/msdtc/New-DtcDiagnosticTransaction.md b/docset/winserver2019-ps/msdtc/New-DtcDiagnosticTransaction.md index ad2d88e980..8fcbcedb6e 100644 --- a/docset/winserver2019-ps/msdtc/New-DtcDiagnosticTransaction.md +++ b/docset/winserver2019-ps/msdtc/New-DtcDiagnosticTransaction.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dtc.PowerShell.dll-Help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/new-dtcdiagnostictransaction?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/new-dtcdiagnostictransaction?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-DtcDiagnosticTransaction --- diff --git a/docset/winserver2019-ps/msdtc/Receive-DtcDiagnosticTransaction.md b/docset/winserver2019-ps/msdtc/Receive-DtcDiagnosticTransaction.md index 0428b912fe..6bfa9ceaf2 100644 --- a/docset/winserver2019-ps/msdtc/Receive-DtcDiagnosticTransaction.md +++ b/docset/winserver2019-ps/msdtc/Receive-DtcDiagnosticTransaction.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dtc.PowerShell.dll-Help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/receive-dtcdiagnostictransaction?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/receive-dtcdiagnostictransaction?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Receive-DtcDiagnosticTransaction --- diff --git a/docset/winserver2019-ps/msdtc/Remove-DtcClusterTMMapping.md b/docset/winserver2019-ps/msdtc/Remove-DtcClusterTMMapping.md index 3dfe52b34f..a6e1f18b45 100644 --- a/docset/winserver2019-ps/msdtc/Remove-DtcClusterTMMapping.md +++ b/docset/winserver2019-ps/msdtc/Remove-DtcClusterTMMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcClusterTMMappingTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/remove-dtcclustertmmapping?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/remove-dtcclustertmmapping?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DtcClusterTMMapping --- diff --git a/docset/winserver2019-ps/msdtc/Reset-DtcLog.md b/docset/winserver2019-ps/msdtc/Reset-DtcLog.md index 89b5e6f520..f4caa38f08 100644 --- a/docset/winserver2019-ps/msdtc/Reset-DtcLog.md +++ b/docset/winserver2019-ps/msdtc/Reset-DtcLog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcLogTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/reset-dtclog?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/reset-dtclog?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-DtcLog --- diff --git a/docset/winserver2019-ps/msdtc/Send-DtcDiagnosticTransaction.md b/docset/winserver2019-ps/msdtc/Send-DtcDiagnosticTransaction.md index 46de1937f9..af4e624829 100644 --- a/docset/winserver2019-ps/msdtc/Send-DtcDiagnosticTransaction.md +++ b/docset/winserver2019-ps/msdtc/Send-DtcDiagnosticTransaction.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dtc.PowerShell.dll-Help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/send-dtcdiagnostictransaction?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/send-dtcdiagnostictransaction?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Send-DtcDiagnosticTransaction --- diff --git a/docset/winserver2019-ps/msdtc/Set-DtcAdvancedHostSetting.md b/docset/winserver2019-ps/msdtc/Set-DtcAdvancedHostSetting.md index 8f9968c944..4ef05a6bd9 100644 --- a/docset/winserver2019-ps/msdtc/Set-DtcAdvancedHostSetting.md +++ b/docset/winserver2019-ps/msdtc/Set-DtcAdvancedHostSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcAdvancedHostSettingTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/set-dtcadvancedhostsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/set-dtcadvancedhostsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DtcAdvancedHostSetting --- diff --git a/docset/winserver2019-ps/msdtc/Set-DtcAdvancedSetting.md b/docset/winserver2019-ps/msdtc/Set-DtcAdvancedSetting.md index b35962cb7f..472a0c6f5b 100644 --- a/docset/winserver2019-ps/msdtc/Set-DtcAdvancedSetting.md +++ b/docset/winserver2019-ps/msdtc/Set-DtcAdvancedSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcAdvancedSettingTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/set-dtcadvancedsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/set-dtcadvancedsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DtcAdvancedSetting --- diff --git a/docset/winserver2019-ps/msdtc/Set-DtcClusterDefault.md b/docset/winserver2019-ps/msdtc/Set-DtcClusterDefault.md index a0d18dba07..b888f02722 100644 --- a/docset/winserver2019-ps/msdtc/Set-DtcClusterDefault.md +++ b/docset/winserver2019-ps/msdtc/Set-DtcClusterDefault.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcClusterDefaultTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/set-dtcclusterdefault?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/set-dtcclusterdefault?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DtcClusterDefault --- diff --git a/docset/winserver2019-ps/msdtc/Set-DtcClusterTMMapping.md b/docset/winserver2019-ps/msdtc/Set-DtcClusterTMMapping.md index e033700708..496ce2ea77 100644 --- a/docset/winserver2019-ps/msdtc/Set-DtcClusterTMMapping.md +++ b/docset/winserver2019-ps/msdtc/Set-DtcClusterTMMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcClusterTMMappingTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/set-dtcclustertmmapping?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/set-dtcclustertmmapping?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DtcClusterTMMapping --- diff --git a/docset/winserver2019-ps/msdtc/Set-DtcDefault.md b/docset/winserver2019-ps/msdtc/Set-DtcDefault.md index a19691f7ea..cc07ab5d68 100644 --- a/docset/winserver2019-ps/msdtc/Set-DtcDefault.md +++ b/docset/winserver2019-ps/msdtc/Set-DtcDefault.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcDefaultTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/set-dtcdefault?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/set-dtcdefault?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DtcDefault --- diff --git a/docset/winserver2019-ps/msdtc/Set-DtcLog.md b/docset/winserver2019-ps/msdtc/Set-DtcLog.md index 1854cd216f..16b067d12f 100644 --- a/docset/winserver2019-ps/msdtc/Set-DtcLog.md +++ b/docset/winserver2019-ps/msdtc/Set-DtcLog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcLogTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/set-dtclog?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/set-dtclog?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DtcLog --- diff --git a/docset/winserver2019-ps/msdtc/Set-DtcNetworkSetting.md b/docset/winserver2019-ps/msdtc/Set-DtcNetworkSetting.md index 23f55ab5bf..a54d5a8b05 100644 --- a/docset/winserver2019-ps/msdtc/Set-DtcNetworkSetting.md +++ b/docset/winserver2019-ps/msdtc/Set-DtcNetworkSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcNetworkSettingTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/set-dtcnetworksetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/set-dtcnetworksetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DtcNetworkSetting --- diff --git a/docset/winserver2019-ps/msdtc/Set-DtcTransaction.md b/docset/winserver2019-ps/msdtc/Set-DtcTransaction.md index 173f788035..581acc94f8 100644 --- a/docset/winserver2019-ps/msdtc/Set-DtcTransaction.md +++ b/docset/winserver2019-ps/msdtc/Set-DtcTransaction.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcTransactionTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/set-dtctransaction?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/set-dtctransaction?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DtcTransaction --- diff --git a/docset/winserver2019-ps/msdtc/Set-DtcTransactionsTraceSession.md b/docset/winserver2019-ps/msdtc/Set-DtcTransactionsTraceSession.md index 5814f391b2..62a6b8a7f9 100644 --- a/docset/winserver2019-ps/msdtc/Set-DtcTransactionsTraceSession.md +++ b/docset/winserver2019-ps/msdtc/Set-DtcTransactionsTraceSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcTransactionsTraceSessionTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/set-dtctransactionstracesession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/set-dtctransactionstracesession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DtcTransactionsTraceSession --- diff --git a/docset/winserver2019-ps/msdtc/Set-DtcTransactionsTraceSetting.md b/docset/winserver2019-ps/msdtc/Set-DtcTransactionsTraceSetting.md index a48a49cc3d..5655b2a531 100644 --- a/docset/winserver2019-ps/msdtc/Set-DtcTransactionsTraceSetting.md +++ b/docset/winserver2019-ps/msdtc/Set-DtcTransactionsTraceSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcTransactionsTraceSettingTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/set-dtctransactionstracesetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/set-dtctransactionstracesetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DtcTransactionsTraceSetting --- diff --git a/docset/winserver2019-ps/msdtc/Start-Dtc.md b/docset/winserver2019-ps/msdtc/Start-Dtc.md index 84a371c6dc..90ebe592d8 100644 --- a/docset/winserver2019-ps/msdtc/Start-Dtc.md +++ b/docset/winserver2019-ps/msdtc/Start-Dtc.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/start-dtc?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/start-dtc?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-Dtc --- diff --git a/docset/winserver2019-ps/msdtc/Start-DtcDiagnosticResourceManager.md b/docset/winserver2019-ps/msdtc/Start-DtcDiagnosticResourceManager.md index 08bf15acae..ea9a018403 100644 --- a/docset/winserver2019-ps/msdtc/Start-DtcDiagnosticResourceManager.md +++ b/docset/winserver2019-ps/msdtc/Start-DtcDiagnosticResourceManager.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dtc.PowerShell.dll-Help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/start-dtcdiagnosticresourcemanager?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/start-dtcdiagnosticresourcemanager?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-DtcDiagnosticResourceManager --- diff --git a/docset/winserver2019-ps/msdtc/Start-DtcTransactionsTraceSession.md b/docset/winserver2019-ps/msdtc/Start-DtcTransactionsTraceSession.md index 5545181cb3..b1a4857033 100644 --- a/docset/winserver2019-ps/msdtc/Start-DtcTransactionsTraceSession.md +++ b/docset/winserver2019-ps/msdtc/Start-DtcTransactionsTraceSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcTransactionsTraceSessionTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/start-dtctransactionstracesession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/start-dtctransactionstracesession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-DtcTransactionsTraceSession --- diff --git a/docset/winserver2019-ps/msdtc/Stop-Dtc.md b/docset/winserver2019-ps/msdtc/Stop-Dtc.md index 8057dc2425..9e66a208d3 100644 --- a/docset/winserver2019-ps/msdtc/Stop-Dtc.md +++ b/docset/winserver2019-ps/msdtc/Stop-Dtc.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/stop-dtc?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/stop-dtc?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-Dtc --- diff --git a/docset/winserver2019-ps/msdtc/Stop-DtcDiagnosticResourceManager.md b/docset/winserver2019-ps/msdtc/Stop-DtcDiagnosticResourceManager.md index 402feb2a5a..f32787c5f5 100644 --- a/docset/winserver2019-ps/msdtc/Stop-DtcDiagnosticResourceManager.md +++ b/docset/winserver2019-ps/msdtc/Stop-DtcDiagnosticResourceManager.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dtc.PowerShell.dll-Help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/stop-dtcdiagnosticresourcemanager?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/stop-dtcdiagnosticresourcemanager?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-DtcDiagnosticResourceManager --- diff --git a/docset/winserver2019-ps/msdtc/Stop-DtcTransactionsTraceSession.md b/docset/winserver2019-ps/msdtc/Stop-DtcTransactionsTraceSession.md index 52e8fb486d..5e8f99fe8e 100644 --- a/docset/winserver2019-ps/msdtc/Stop-DtcTransactionsTraceSession.md +++ b/docset/winserver2019-ps/msdtc/Stop-DtcTransactionsTraceSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcTransactionsTraceSessionTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/stop-dtctransactionstracesession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/stop-dtctransactionstracesession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-DtcTransactionsTraceSession --- diff --git a/docset/winserver2019-ps/msdtc/Test-Dtc.md b/docset/winserver2019-ps/msdtc/Test-Dtc.md index 8f30ae9c97..a6ac9d7187 100644 --- a/docset/winserver2019-ps/msdtc/Test-Dtc.md +++ b/docset/winserver2019-ps/msdtc/Test-Dtc.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: TestDtc-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/test-dtc?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/test-dtc?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-Dtc --- diff --git a/docset/winserver2019-ps/msdtc/Undo-DtcDiagnosticTransaction.md b/docset/winserver2019-ps/msdtc/Undo-DtcDiagnosticTransaction.md index 6f84ac4d56..4c535d3ea3 100644 --- a/docset/winserver2019-ps/msdtc/Undo-DtcDiagnosticTransaction.md +++ b/docset/winserver2019-ps/msdtc/Undo-DtcDiagnosticTransaction.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dtc.PowerShell.dll-Help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/undo-dtcdiagnostictransaction?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/undo-dtcdiagnostictransaction?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Undo-DtcDiagnosticTransaction --- diff --git a/docset/winserver2019-ps/msdtc/Uninstall-Dtc.md b/docset/winserver2019-ps/msdtc/Uninstall-Dtc.md index 7f53d707d0..62c28c5ac4 100644 --- a/docset/winserver2019-ps/msdtc/Uninstall-Dtc.md +++ b/docset/winserver2019-ps/msdtc/Uninstall-Dtc.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/uninstall-dtc?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/uninstall-dtc?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-Dtc --- diff --git a/docset/winserver2019-ps/msdtc/Write-DtcTransactionsTraceSession.md b/docset/winserver2019-ps/msdtc/Write-DtcTransactionsTraceSession.md index eb6c4bbd60..6e2874e7fe 100644 --- a/docset/winserver2019-ps/msdtc/Write-DtcTransactionsTraceSession.md +++ b/docset/winserver2019-ps/msdtc/Write-DtcTransactionsTraceSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcTransactionsTraceSessionTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/write-dtctransactionstracesession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/write-dtctransactionstracesession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Write-DtcTransactionsTraceSession --- diff --git a/docset/winserver2019-ps/msmq/Clear-MSMQOutgoingQueue.md b/docset/winserver2019-ps/msmq/Clear-MSMQOutgoingQueue.md index 86a1cba96f..d9cfb6edc5 100644 --- a/docset/winserver2019-ps/msmq/Clear-MSMQOutgoingQueue.md +++ b/docset/winserver2019-ps/msmq/Clear-MSMQOutgoingQueue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/clear-msmqoutgoingqueue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/clear-msmqoutgoingqueue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-MSMQOutgoingQueue --- diff --git a/docset/winserver2019-ps/msmq/Clear-MSMQQueue.md b/docset/winserver2019-ps/msmq/Clear-MSMQQueue.md index f1dcee4758..0cf44c742b 100644 --- a/docset/winserver2019-ps/msmq/Clear-MSMQQueue.md +++ b/docset/winserver2019-ps/msmq/Clear-MSMQQueue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/clear-msmqqueue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/clear-msmqqueue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-MSMQQueue --- diff --git a/docset/winserver2019-ps/msmq/Enable-MSMQCertificate.md b/docset/winserver2019-ps/msmq/Enable-MSMQCertificate.md index d9ba3c7bf3..1099fe134a 100644 --- a/docset/winserver2019-ps/msmq/Enable-MSMQCertificate.md +++ b/docset/winserver2019-ps/msmq/Enable-MSMQCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/enable-msmqcertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/enable-msmqcertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-MSMQCertificate --- diff --git a/docset/winserver2019-ps/msmq/Get-MSMQCertificate.md b/docset/winserver2019-ps/msmq/Get-MSMQCertificate.md index e30aed5b17..3a3b596850 100644 --- a/docset/winserver2019-ps/msmq/Get-MSMQCertificate.md +++ b/docset/winserver2019-ps/msmq/Get-MSMQCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/get-msmqcertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/get-msmqcertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MSMQCertificate --- diff --git a/docset/winserver2019-ps/msmq/Get-MSMQOutgoingQueue.md b/docset/winserver2019-ps/msmq/Get-MSMQOutgoingQueue.md index 302ea63a5c..b198c50867 100644 --- a/docset/winserver2019-ps/msmq/Get-MSMQOutgoingQueue.md +++ b/docset/winserver2019-ps/msmq/Get-MSMQOutgoingQueue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/get-msmqoutgoingqueue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/get-msmqoutgoingqueue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MSMQOutgoingQueue --- diff --git a/docset/winserver2019-ps/msmq/Get-MsmqQueue.md b/docset/winserver2019-ps/msmq/Get-MsmqQueue.md index f501b0a387..f5cb0060af 100644 --- a/docset/winserver2019-ps/msmq/Get-MsmqQueue.md +++ b/docset/winserver2019-ps/msmq/Get-MsmqQueue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/get-msmqqueue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/get-msmqqueue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MsmqQueue --- diff --git a/docset/winserver2019-ps/msmq/Get-MsmqQueueACL.md b/docset/winserver2019-ps/msmq/Get-MsmqQueueACL.md index 3138272333..b7833f79ba 100644 --- a/docset/winserver2019-ps/msmq/Get-MsmqQueueACL.md +++ b/docset/winserver2019-ps/msmq/Get-MsmqQueueACL.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/get-msmqqueueacl?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/get-msmqqueueacl?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MsmqQueueACL --- diff --git a/docset/winserver2019-ps/msmq/Get-MsmqQueueManager.md b/docset/winserver2019-ps/msmq/Get-MsmqQueueManager.md index e661f7ccfb..943158f513 100644 --- a/docset/winserver2019-ps/msmq/Get-MsmqQueueManager.md +++ b/docset/winserver2019-ps/msmq/Get-MsmqQueueManager.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/get-msmqqueuemanager?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/get-msmqqueuemanager?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MsmqQueueManager --- diff --git a/docset/winserver2019-ps/msmq/Get-MsmqQueueManagerACL.md b/docset/winserver2019-ps/msmq/Get-MsmqQueueManagerACL.md index d80d629c68..969de1d289 100644 --- a/docset/winserver2019-ps/msmq/Get-MsmqQueueManagerACL.md +++ b/docset/winserver2019-ps/msmq/Get-MsmqQueueManagerACL.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/get-msmqqueuemanageracl?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/get-msmqqueuemanageracl?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MsmqQueueManagerACL --- diff --git a/docset/winserver2019-ps/msmq/Move-MsmqMessage.md b/docset/winserver2019-ps/msmq/Move-MsmqMessage.md index 8dcd06ca8a..fa6c3b467d 100644 --- a/docset/winserver2019-ps/msmq/Move-MsmqMessage.md +++ b/docset/winserver2019-ps/msmq/Move-MsmqMessage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/move-msmqmessage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/move-msmqmessage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-MsmqMessage --- diff --git a/docset/winserver2019-ps/msmq/New-MsmqMessage.md b/docset/winserver2019-ps/msmq/New-MsmqMessage.md index 8e91853670..c85de70441 100644 --- a/docset/winserver2019-ps/msmq/New-MsmqMessage.md +++ b/docset/winserver2019-ps/msmq/New-MsmqMessage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/new-msmqmessage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/new-msmqmessage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-MsmqMessage --- diff --git a/docset/winserver2019-ps/msmq/New-MsmqQueue.md b/docset/winserver2019-ps/msmq/New-MsmqQueue.md index 6574e2d1f7..fc3b1b5123 100644 --- a/docset/winserver2019-ps/msmq/New-MsmqQueue.md +++ b/docset/winserver2019-ps/msmq/New-MsmqQueue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/new-msmqqueue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/new-msmqqueue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-MsmqQueue --- diff --git a/docset/winserver2019-ps/msmq/Receive-MsmqQueue.md b/docset/winserver2019-ps/msmq/Receive-MsmqQueue.md index 51e02f3152..dc92464a6f 100644 --- a/docset/winserver2019-ps/msmq/Receive-MsmqQueue.md +++ b/docset/winserver2019-ps/msmq/Receive-MsmqQueue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/receive-msmqqueue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/receive-msmqqueue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Receive-MsmqQueue --- diff --git a/docset/winserver2019-ps/msmq/Remove-MsmqCertificate.md b/docset/winserver2019-ps/msmq/Remove-MsmqCertificate.md index db112a93c1..8b4dbc1d12 100644 --- a/docset/winserver2019-ps/msmq/Remove-MsmqCertificate.md +++ b/docset/winserver2019-ps/msmq/Remove-MsmqCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/remove-msmqcertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/remove-msmqcertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-MsmqCertificate --- diff --git a/docset/winserver2019-ps/msmq/Remove-MsmqQueue.md b/docset/winserver2019-ps/msmq/Remove-MsmqQueue.md index 7985d65d48..3d0d696252 100644 --- a/docset/winserver2019-ps/msmq/Remove-MsmqQueue.md +++ b/docset/winserver2019-ps/msmq/Remove-MsmqQueue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/remove-msmqqueue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/remove-msmqqueue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-MsmqQueue --- diff --git a/docset/winserver2019-ps/msmq/Resume-MsmqOutgoingQueue.md b/docset/winserver2019-ps/msmq/Resume-MsmqOutgoingQueue.md index 27ab8406b4..81551004e8 100644 --- a/docset/winserver2019-ps/msmq/Resume-MsmqOutgoingQueue.md +++ b/docset/winserver2019-ps/msmq/Resume-MsmqOutgoingQueue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/resume-msmqoutgoingqueue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/resume-msmqoutgoingqueue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-MsmqOutgoingQueue --- diff --git a/docset/winserver2019-ps/msmq/Send-MsmqQueue.md b/docset/winserver2019-ps/msmq/Send-MsmqQueue.md index 1d6e46aaee..20f9d15df1 100644 --- a/docset/winserver2019-ps/msmq/Send-MsmqQueue.md +++ b/docset/winserver2019-ps/msmq/Send-MsmqQueue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/send-msmqqueue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/send-msmqqueue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Send-MsmqQueue --- diff --git a/docset/winserver2019-ps/msmq/Set-MsmqQueue.md b/docset/winserver2019-ps/msmq/Set-MsmqQueue.md index 59323edaab..6fbacc10d9 100644 --- a/docset/winserver2019-ps/msmq/Set-MsmqQueue.md +++ b/docset/winserver2019-ps/msmq/Set-MsmqQueue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/set-msmqqueue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/set-msmqqueue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-MsmqQueue --- diff --git a/docset/winserver2019-ps/msmq/Set-MsmqQueueACL.md b/docset/winserver2019-ps/msmq/Set-MsmqQueueACL.md index 3811efa97c..e3e50f25bf 100644 --- a/docset/winserver2019-ps/msmq/Set-MsmqQueueACL.md +++ b/docset/winserver2019-ps/msmq/Set-MsmqQueueACL.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/set-msmqqueueacl?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/set-msmqqueueacl?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-MsmqQueueACL --- diff --git a/docset/winserver2019-ps/msmq/Set-MsmqQueueManager.md b/docset/winserver2019-ps/msmq/Set-MsmqQueueManager.md index 35fe0fbde8..108555426e 100644 --- a/docset/winserver2019-ps/msmq/Set-MsmqQueueManager.md +++ b/docset/winserver2019-ps/msmq/Set-MsmqQueueManager.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/set-msmqqueuemanager?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/set-msmqqueuemanager?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-MsmqQueueManager --- diff --git a/docset/winserver2019-ps/msmq/Set-MsmqQueueManagerACL.md b/docset/winserver2019-ps/msmq/Set-MsmqQueueManagerACL.md index a15186548c..12d99aaac8 100644 --- a/docset/winserver2019-ps/msmq/Set-MsmqQueueManagerACL.md +++ b/docset/winserver2019-ps/msmq/Set-MsmqQueueManagerACL.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/set-msmqqueuemanageracl?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/set-msmqqueuemanageracl?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-MsmqQueueManagerACL --- diff --git a/docset/winserver2019-ps/msmq/Suspend-MsmqOutgoingQueue.md b/docset/winserver2019-ps/msmq/Suspend-MsmqOutgoingQueue.md index 546a430cb1..5da86fe685 100644 --- a/docset/winserver2019-ps/msmq/Suspend-MsmqOutgoingQueue.md +++ b/docset/winserver2019-ps/msmq/Suspend-MsmqOutgoingQueue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/suspend-msmqoutgoingqueue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/suspend-msmqoutgoingqueue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-MsmqOutgoingQueue --- diff --git a/docset/winserver2019-ps/multipoint/Add-WmsSystem.md b/docset/winserver2019-ps/multipoint/Add-WmsSystem.md index 58ad488446..9c6dc7f432 100644 --- a/docset/winserver2019-ps/multipoint/Add-WmsSystem.md +++ b/docset/winserver2019-ps/multipoint/Add-WmsSystem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/add-wmssystem?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/add-wmssystem?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WmsSystem --- diff --git a/docset/winserver2019-ps/multipoint/Clear-WmsStation.md b/docset/winserver2019-ps/multipoint/Clear-WmsStation.md index 066288bbdf..9875a576c6 100644 --- a/docset/winserver2019-ps/multipoint/Clear-WmsStation.md +++ b/docset/winserver2019-ps/multipoint/Clear-WmsStation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/clear-wmsstation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/clear-wmsstation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-WmsStation --- diff --git a/docset/winserver2019-ps/multipoint/Close-WmsApp.md b/docset/winserver2019-ps/multipoint/Close-WmsApp.md index 1bfd1f38d0..8d5ad5444d 100644 --- a/docset/winserver2019-ps/multipoint/Close-WmsApp.md +++ b/docset/winserver2019-ps/multipoint/Close-WmsApp.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/close-wmsapp?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/close-wmsapp?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Close-WmsApp --- diff --git a/docset/winserver2019-ps/multipoint/Close-WmsSession.md b/docset/winserver2019-ps/multipoint/Close-WmsSession.md index b6326244c5..352858c0f8 100644 --- a/docset/winserver2019-ps/multipoint/Close-WmsSession.md +++ b/docset/winserver2019-ps/multipoint/Close-WmsSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/close-wmssession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/close-wmssession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Close-WmsSession --- diff --git a/docset/winserver2019-ps/multipoint/Disable-WmsDiskProtection.md b/docset/winserver2019-ps/multipoint/Disable-WmsDiskProtection.md index 462d5f592d..fbc48312a2 100644 --- a/docset/winserver2019-ps/multipoint/Disable-WmsDiskProtection.md +++ b/docset/winserver2019-ps/multipoint/Disable-WmsDiskProtection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/disable-wmsdiskprotection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/disable-wmsdiskprotection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WmsDiskProtection --- diff --git a/docset/winserver2019-ps/multipoint/Disable-WmsScheduledUpdate.md b/docset/winserver2019-ps/multipoint/Disable-WmsScheduledUpdate.md index 0bc34e6546..32c479fd1a 100644 --- a/docset/winserver2019-ps/multipoint/Disable-WmsScheduledUpdate.md +++ b/docset/winserver2019-ps/multipoint/Disable-WmsScheduledUpdate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/disable-wmsscheduledupdate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/disable-wmsscheduledupdate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WmsScheduledUpdate --- diff --git a/docset/winserver2019-ps/multipoint/Disable-WmsWebLimiting.md b/docset/winserver2019-ps/multipoint/Disable-WmsWebLimiting.md index 20d11718df..9595a2ca91 100644 --- a/docset/winserver2019-ps/multipoint/Disable-WmsWebLimiting.md +++ b/docset/winserver2019-ps/multipoint/Disable-WmsWebLimiting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/disable-wmsweblimiting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/disable-wmsweblimiting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WmsWebLimiting --- diff --git a/docset/winserver2019-ps/multipoint/Disconnect-WmsSession.md b/docset/winserver2019-ps/multipoint/Disconnect-WmsSession.md index 338ed11bc9..2f92f79151 100644 --- a/docset/winserver2019-ps/multipoint/Disconnect-WmsSession.md +++ b/docset/winserver2019-ps/multipoint/Disconnect-WmsSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/disconnect-wmssession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/disconnect-wmssession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disconnect-WmsSession --- diff --git a/docset/winserver2019-ps/multipoint/Enable-WmsDiskProtection.md b/docset/winserver2019-ps/multipoint/Enable-WmsDiskProtection.md index 9306283372..5e70eae87e 100644 --- a/docset/winserver2019-ps/multipoint/Enable-WmsDiskProtection.md +++ b/docset/winserver2019-ps/multipoint/Enable-WmsDiskProtection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/enable-wmsdiskprotection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/enable-wmsdiskprotection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WmsDiskProtection --- diff --git a/docset/winserver2019-ps/multipoint/Enable-WmsScheduledUpdate.md b/docset/winserver2019-ps/multipoint/Enable-WmsScheduledUpdate.md index 396db520ca..97a077b5b0 100644 --- a/docset/winserver2019-ps/multipoint/Enable-WmsScheduledUpdate.md +++ b/docset/winserver2019-ps/multipoint/Enable-WmsScheduledUpdate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/enable-wmsscheduledupdate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/enable-wmsscheduledupdate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WmsScheduledUpdate --- diff --git a/docset/winserver2019-ps/multipoint/Enable-WmsWebLimiting.md b/docset/winserver2019-ps/multipoint/Enable-WmsWebLimiting.md index ad1615ed14..bc85af7056 100644 --- a/docset/winserver2019-ps/multipoint/Enable-WmsWebLimiting.md +++ b/docset/winserver2019-ps/multipoint/Enable-WmsWebLimiting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/enable-wmsweblimiting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/enable-wmsweblimiting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WmsWebLimiting --- diff --git a/docset/winserver2019-ps/multipoint/Get-WmsAlert.md b/docset/winserver2019-ps/multipoint/Get-WmsAlert.md index 2a4de6daf4..54f43a1e37 100644 --- a/docset/winserver2019-ps/multipoint/Get-WmsAlert.md +++ b/docset/winserver2019-ps/multipoint/Get-WmsAlert.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/get-wmsalert?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/get-wmsalert?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WmsAlert --- diff --git a/docset/winserver2019-ps/multipoint/Get-WmsApp.md b/docset/winserver2019-ps/multipoint/Get-WmsApp.md index dd19d5825e..b3aa2057ce 100644 --- a/docset/winserver2019-ps/multipoint/Get-WmsApp.md +++ b/docset/winserver2019-ps/multipoint/Get-WmsApp.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/get-wmsapp?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/get-wmsapp?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WmsApp --- diff --git a/docset/winserver2019-ps/multipoint/Get-WmsDiskProtection.md b/docset/winserver2019-ps/multipoint/Get-WmsDiskProtection.md index 132f8f5797..3d769afa1a 100644 --- a/docset/winserver2019-ps/multipoint/Get-WmsDiskProtection.md +++ b/docset/winserver2019-ps/multipoint/Get-WmsDiskProtection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/get-wmsdiskprotection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/get-wmsdiskprotection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WmsDiskProtection --- diff --git a/docset/winserver2019-ps/multipoint/Get-WmsScheduledUpdate.md b/docset/winserver2019-ps/multipoint/Get-WmsScheduledUpdate.md index 91117531b2..5024954b22 100644 --- a/docset/winserver2019-ps/multipoint/Get-WmsScheduledUpdate.md +++ b/docset/winserver2019-ps/multipoint/Get-WmsScheduledUpdate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/get-wmsscheduledupdate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/get-wmsscheduledupdate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WmsScheduledUpdate --- diff --git a/docset/winserver2019-ps/multipoint/Get-WmsSession.md b/docset/winserver2019-ps/multipoint/Get-WmsSession.md index a811689eca..ccdd63189b 100644 --- a/docset/winserver2019-ps/multipoint/Get-WmsSession.md +++ b/docset/winserver2019-ps/multipoint/Get-WmsSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/get-wmssession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/get-wmssession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WmsSession --- diff --git a/docset/winserver2019-ps/multipoint/Get-WmsStation.md b/docset/winserver2019-ps/multipoint/Get-WmsStation.md index 61d97d64b5..a72c11291f 100644 --- a/docset/winserver2019-ps/multipoint/Get-WmsStation.md +++ b/docset/winserver2019-ps/multipoint/Get-WmsStation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/get-wmsstation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/get-wmsstation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WmsStation --- diff --git a/docset/winserver2019-ps/multipoint/Get-WmsSystem.md b/docset/winserver2019-ps/multipoint/Get-WmsSystem.md index a565b68ea5..865e21d9cd 100644 --- a/docset/winserver2019-ps/multipoint/Get-WmsSystem.md +++ b/docset/winserver2019-ps/multipoint/Get-WmsSystem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/get-wmssystem?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/get-wmssystem?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WmsSystem --- diff --git a/docset/winserver2019-ps/multipoint/Get-WmsUser.md b/docset/winserver2019-ps/multipoint/Get-WmsUser.md index d3c401af12..1151d11b6e 100644 --- a/docset/winserver2019-ps/multipoint/Get-WmsUser.md +++ b/docset/winserver2019-ps/multipoint/Get-WmsUser.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/get-wmsuser?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/get-wmsuser?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WmsUser --- diff --git a/docset/winserver2019-ps/multipoint/Get-WmsVersion.md b/docset/winserver2019-ps/multipoint/Get-WmsVersion.md index 76c5c6c11f..43fe3c12ae 100644 --- a/docset/winserver2019-ps/multipoint/Get-WmsVersion.md +++ b/docset/winserver2019-ps/multipoint/Get-WmsVersion.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/get-wmsversion?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/get-wmsversion?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WmsVersion --- diff --git a/docset/winserver2019-ps/multipoint/Get-WmsWebLimiting.md b/docset/winserver2019-ps/multipoint/Get-WmsWebLimiting.md index 70a9df0d63..dc15694e67 100644 --- a/docset/winserver2019-ps/multipoint/Get-WmsWebLimiting.md +++ b/docset/winserver2019-ps/multipoint/Get-WmsWebLimiting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/get-wmsweblimiting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/get-wmsweblimiting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WmsWebLimiting --- diff --git a/docset/winserver2019-ps/multipoint/Hide-WmsIdentifier.md b/docset/winserver2019-ps/multipoint/Hide-WmsIdentifier.md index 21897a3440..f1a49703e2 100644 --- a/docset/winserver2019-ps/multipoint/Hide-WmsIdentifier.md +++ b/docset/winserver2019-ps/multipoint/Hide-WmsIdentifier.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/hide-wmsidentifier?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/hide-wmsidentifier?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Hide-WmsIdentifier --- diff --git a/docset/winserver2019-ps/multipoint/Join-WmsStation.md b/docset/winserver2019-ps/multipoint/Join-WmsStation.md index 3962fe7b5d..7e2b27aaee 100644 --- a/docset/winserver2019-ps/multipoint/Join-WmsStation.md +++ b/docset/winserver2019-ps/multipoint/Join-WmsStation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/join-wmsstation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/join-wmsstation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Join-WmsStation --- diff --git a/docset/winserver2019-ps/multipoint/Lock-WmsSession.md b/docset/winserver2019-ps/multipoint/Lock-WmsSession.md index 7d882a8d61..64997d0c29 100644 --- a/docset/winserver2019-ps/multipoint/Lock-WmsSession.md +++ b/docset/winserver2019-ps/multipoint/Lock-WmsSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/lock-wmssession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/lock-wmssession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Lock-WmsSession --- diff --git a/docset/winserver2019-ps/multipoint/Lock-WmsUsbStorage.md b/docset/winserver2019-ps/multipoint/Lock-WmsUsbStorage.md index 72cf1e3f5d..3514e74b28 100644 --- a/docset/winserver2019-ps/multipoint/Lock-WmsUsbStorage.md +++ b/docset/winserver2019-ps/multipoint/Lock-WmsUsbStorage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/lock-wmsusbstorage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/lock-wmsusbstorage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Lock-WmsUsbStorage --- diff --git a/docset/winserver2019-ps/multipoint/New-WmsUser.md b/docset/winserver2019-ps/multipoint/New-WmsUser.md index bdfc18fd9f..ff1cb059d7 100644 --- a/docset/winserver2019-ps/multipoint/New-WmsUser.md +++ b/docset/winserver2019-ps/multipoint/New-WmsUser.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/new-wmsuser?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/new-wmsuser?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WmsUser --- diff --git a/docset/winserver2019-ps/multipoint/Open-WmsApp.md b/docset/winserver2019-ps/multipoint/Open-WmsApp.md index 4c0448e264..e23b5885ac 100644 --- a/docset/winserver2019-ps/multipoint/Open-WmsApp.md +++ b/docset/winserver2019-ps/multipoint/Open-WmsApp.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/open-wmsapp?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/open-wmsapp?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Open-WmsApp --- diff --git a/docset/winserver2019-ps/multipoint/Publish-WmsDesktop.md b/docset/winserver2019-ps/multipoint/Publish-WmsDesktop.md index a86c005c6c..5f6b3a3846 100644 --- a/docset/winserver2019-ps/multipoint/Publish-WmsDesktop.md +++ b/docset/winserver2019-ps/multipoint/Publish-WmsDesktop.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/publish-wmsdesktop?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/publish-wmsdesktop?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Publish-WmsDesktop --- diff --git a/docset/winserver2019-ps/multipoint/Remove-WmsSystem.md b/docset/winserver2019-ps/multipoint/Remove-WmsSystem.md index 83fbf7f288..948f5f6c78 100644 --- a/docset/winserver2019-ps/multipoint/Remove-WmsSystem.md +++ b/docset/winserver2019-ps/multipoint/Remove-WmsSystem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/remove-wmssystem?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/remove-wmssystem?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WmsSystem --- diff --git a/docset/winserver2019-ps/multipoint/Remove-WmsUser.md b/docset/winserver2019-ps/multipoint/Remove-WmsUser.md index 8e61eed00d..b08ce9cb3d 100644 --- a/docset/winserver2019-ps/multipoint/Remove-WmsUser.md +++ b/docset/winserver2019-ps/multipoint/Remove-WmsUser.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/remove-wmsuser?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/remove-wmsuser?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WmsUser --- diff --git a/docset/winserver2019-ps/multipoint/Restart-WmsSystem.md b/docset/winserver2019-ps/multipoint/Restart-WmsSystem.md index 032ef29d41..d29e72b2b2 100644 --- a/docset/winserver2019-ps/multipoint/Restart-WmsSystem.md +++ b/docset/winserver2019-ps/multipoint/Restart-WmsSystem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/restart-wmssystem?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/restart-wmssystem?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restart-WmsSystem --- diff --git a/docset/winserver2019-ps/multipoint/Resume-WmsDiskProtection.md b/docset/winserver2019-ps/multipoint/Resume-WmsDiskProtection.md index 62cfaf6787..8f117f2f72 100644 --- a/docset/winserver2019-ps/multipoint/Resume-WmsDiskProtection.md +++ b/docset/winserver2019-ps/multipoint/Resume-WmsDiskProtection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/resume-wmsdiskprotection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/resume-wmsdiskprotection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-WmsDiskProtection --- diff --git a/docset/winserver2019-ps/multipoint/Search-WmsSystem.md b/docset/winserver2019-ps/multipoint/Search-WmsSystem.md index e1535cf75e..fecee81469 100644 --- a/docset/winserver2019-ps/multipoint/Search-WmsSystem.md +++ b/docset/winserver2019-ps/multipoint/Search-WmsSystem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/search-wmssystem?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/search-wmssystem?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Search-WmsSystem --- diff --git a/docset/winserver2019-ps/multipoint/Set-WmsScheduledUpdate.md b/docset/winserver2019-ps/multipoint/Set-WmsScheduledUpdate.md index c76821d693..35c2eaff1f 100644 --- a/docset/winserver2019-ps/multipoint/Set-WmsScheduledUpdate.md +++ b/docset/winserver2019-ps/multipoint/Set-WmsScheduledUpdate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/set-wmsscheduledupdate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/set-wmsscheduledupdate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WmsScheduledUpdate --- diff --git a/docset/winserver2019-ps/multipoint/Set-WmsStation.md b/docset/winserver2019-ps/multipoint/Set-WmsStation.md index 466f8bcb84..3384087ea2 100644 --- a/docset/winserver2019-ps/multipoint/Set-WmsStation.md +++ b/docset/winserver2019-ps/multipoint/Set-WmsStation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/set-wmsstation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/set-wmsstation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WmsStation --- diff --git a/docset/winserver2019-ps/multipoint/Set-WmsSystem.md b/docset/winserver2019-ps/multipoint/Set-WmsSystem.md index 38af61daa0..8199350bc6 100644 --- a/docset/winserver2019-ps/multipoint/Set-WmsSystem.md +++ b/docset/winserver2019-ps/multipoint/Set-WmsSystem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/set-wmssystem?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/set-wmssystem?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WmsSystem --- diff --git a/docset/winserver2019-ps/multipoint/Set-WmsUser.md b/docset/winserver2019-ps/multipoint/Set-WmsUser.md index e940828199..5331ae73da 100644 --- a/docset/winserver2019-ps/multipoint/Set-WmsUser.md +++ b/docset/winserver2019-ps/multipoint/Set-WmsUser.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/set-wmsuser?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/set-wmsuser?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WmsUser --- diff --git a/docset/winserver2019-ps/multipoint/Set-WmsWebLimiting.md b/docset/winserver2019-ps/multipoint/Set-WmsWebLimiting.md index b2729a2eff..8e2810b809 100644 --- a/docset/winserver2019-ps/multipoint/Set-WmsWebLimiting.md +++ b/docset/winserver2019-ps/multipoint/Set-WmsWebLimiting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/set-wmsweblimiting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/set-wmsweblimiting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WmsWebLimiting --- diff --git a/docset/winserver2019-ps/multipoint/Show-WmsDesktop.md b/docset/winserver2019-ps/multipoint/Show-WmsDesktop.md index be96a630f7..94cf3f85fc 100644 --- a/docset/winserver2019-ps/multipoint/Show-WmsDesktop.md +++ b/docset/winserver2019-ps/multipoint/Show-WmsDesktop.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/show-wmsdesktop?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/show-wmsdesktop?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Show-WmsDesktop --- diff --git a/docset/winserver2019-ps/multipoint/Show-WmsIdentifier.md b/docset/winserver2019-ps/multipoint/Show-WmsIdentifier.md index e10b59825c..5377bf4849 100644 --- a/docset/winserver2019-ps/multipoint/Show-WmsIdentifier.md +++ b/docset/winserver2019-ps/multipoint/Show-WmsIdentifier.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/show-wmsidentifier?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/show-wmsidentifier?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Show-WmsIdentifier --- diff --git a/docset/winserver2019-ps/multipoint/Split-WmsStation.md b/docset/winserver2019-ps/multipoint/Split-WmsStation.md index 17617c1927..ddcfd29876 100644 --- a/docset/winserver2019-ps/multipoint/Split-WmsStation.md +++ b/docset/winserver2019-ps/multipoint/Split-WmsStation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/split-wmsstation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/split-wmsstation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Split-WmsStation --- diff --git a/docset/winserver2019-ps/multipoint/Stop-WmsSystem.md b/docset/winserver2019-ps/multipoint/Stop-WmsSystem.md index 7d5b9f4d4b..67150845da 100644 --- a/docset/winserver2019-ps/multipoint/Stop-WmsSystem.md +++ b/docset/winserver2019-ps/multipoint/Stop-WmsSystem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/stop-wmssystem?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/stop-wmssystem?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-WmsSystem --- diff --git a/docset/winserver2019-ps/multipoint/Suspend-WmsDiskProtection.md b/docset/winserver2019-ps/multipoint/Suspend-WmsDiskProtection.md index 4ea142756a..8f25b51c7c 100644 --- a/docset/winserver2019-ps/multipoint/Suspend-WmsDiskProtection.md +++ b/docset/winserver2019-ps/multipoint/Suspend-WmsDiskProtection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/suspend-wmsdiskprotection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/suspend-wmsdiskprotection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-WmsDiskProtection --- diff --git a/docset/winserver2019-ps/multipoint/Unlock-WmsSession.md b/docset/winserver2019-ps/multipoint/Unlock-WmsSession.md index 683d1a6658..64b90ee9b5 100644 --- a/docset/winserver2019-ps/multipoint/Unlock-WmsSession.md +++ b/docset/winserver2019-ps/multipoint/Unlock-WmsSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/unlock-wmssession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/unlock-wmssession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unlock-WmsSession --- diff --git a/docset/winserver2019-ps/multipoint/Unlock-WmsUsbStorage.md b/docset/winserver2019-ps/multipoint/Unlock-WmsUsbStorage.md index 7b55032f70..7b917ee172 100644 --- a/docset/winserver2019-ps/multipoint/Unlock-WmsUsbStorage.md +++ b/docset/winserver2019-ps/multipoint/Unlock-WmsUsbStorage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/unlock-wmsusbstorage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/unlock-wmsusbstorage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unlock-WmsUsbStorage --- diff --git a/docset/winserver2019-ps/multipoint/Unpublish-WmsDesktop.md b/docset/winserver2019-ps/multipoint/Unpublish-WmsDesktop.md index dd5b164948..d8c66e297e 100644 --- a/docset/winserver2019-ps/multipoint/Unpublish-WmsDesktop.md +++ b/docset/winserver2019-ps/multipoint/Unpublish-WmsDesktop.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/unpublish-wmsdesktop?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/unpublish-wmsdesktop?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unpublish-WmsDesktop --- diff --git a/docset/winserver2019-ps/multipoint/Update-WmsStation.md b/docset/winserver2019-ps/multipoint/Update-WmsStation.md index 743c4a02ae..e426e9e57c 100644 --- a/docset/winserver2019-ps/multipoint/Update-WmsStation.md +++ b/docset/winserver2019-ps/multipoint/Update-WmsStation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/update-wmsstation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/update-wmsstation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-WmsStation --- diff --git a/docset/winserver2019-ps/multipointvdi/Disable-WmsVirtualDesktopRole.md b/docset/winserver2019-ps/multipointvdi/Disable-WmsVirtualDesktopRole.md index a941698738..3647c0b31c 100644 --- a/docset/winserver2019-ps/multipointvdi/Disable-WmsVirtualDesktopRole.md +++ b/docset/winserver2019-ps/multipointvdi/Disable-WmsVirtualDesktopRole.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPointVdi.dll-Help.xml Module Name: MultipointVdi ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipointvdi/disable-wmsvirtualdesktoprole?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipointvdi/disable-wmsvirtualdesktoprole?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WmsVirtualDesktopRole --- diff --git a/docset/winserver2019-ps/multipointvdi/Enable-WmsVirtualDesktopRole.md b/docset/winserver2019-ps/multipointvdi/Enable-WmsVirtualDesktopRole.md index 3d6a432709..5bd1a2e292 100644 --- a/docset/winserver2019-ps/multipointvdi/Enable-WmsVirtualDesktopRole.md +++ b/docset/winserver2019-ps/multipointvdi/Enable-WmsVirtualDesktopRole.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPointVdi.dll-Help.xml Module Name: MultipointVdi ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipointvdi/enable-wmsvirtualdesktoprole?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipointvdi/enable-wmsvirtualdesktoprole?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WmsVirtualDesktopRole --- diff --git a/docset/winserver2019-ps/multipointvdi/Get-WmsVirtualDesktop.md b/docset/winserver2019-ps/multipointvdi/Get-WmsVirtualDesktop.md index 0eb51618d3..acf7d29dad 100644 --- a/docset/winserver2019-ps/multipointvdi/Get-WmsVirtualDesktop.md +++ b/docset/winserver2019-ps/multipointvdi/Get-WmsVirtualDesktop.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPointVdi.dll-Help.xml Module Name: MultipointVdi ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipointvdi/get-wmsvirtualdesktop?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipointvdi/get-wmsvirtualdesktop?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WmsVirtualDesktop --- diff --git a/docset/winserver2019-ps/multipointvdi/Import-WmsVirtualDesktop.md b/docset/winserver2019-ps/multipointvdi/Import-WmsVirtualDesktop.md index d98a9b8b87..58f4eb4d12 100644 --- a/docset/winserver2019-ps/multipointvdi/Import-WmsVirtualDesktop.md +++ b/docset/winserver2019-ps/multipointvdi/Import-WmsVirtualDesktop.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPointVdi.dll-Help.xml Module Name: MultipointVdi ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipointvdi/import-wmsvirtualdesktop?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipointvdi/import-wmsvirtualdesktop?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-WmsVirtualDesktop --- diff --git a/docset/winserver2019-ps/multipointvdi/New-WmsVirtualDesktop.md b/docset/winserver2019-ps/multipointvdi/New-WmsVirtualDesktop.md index 2ed3ec509c..82504801fa 100644 --- a/docset/winserver2019-ps/multipointvdi/New-WmsVirtualDesktop.md +++ b/docset/winserver2019-ps/multipointvdi/New-WmsVirtualDesktop.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPointVdi.dll-Help.xml Module Name: MultipointVdi ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipointvdi/new-wmsvirtualdesktop?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipointvdi/new-wmsvirtualdesktop?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WmsVirtualDesktop --- diff --git a/docset/winserver2019-ps/multipointvdi/New-WmsVirtualDesktopTemplate.md b/docset/winserver2019-ps/multipointvdi/New-WmsVirtualDesktopTemplate.md index 3ba1aabee0..af21f459b5 100644 --- a/docset/winserver2019-ps/multipointvdi/New-WmsVirtualDesktopTemplate.md +++ b/docset/winserver2019-ps/multipointvdi/New-WmsVirtualDesktopTemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPointVdi.dll-Help.xml Module Name: MultipointVdi ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipointvdi/new-wmsvirtualdesktoptemplate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipointvdi/new-wmsvirtualdesktoptemplate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WmsVirtualDesktopTemplate --- diff --git a/docset/winserver2019-ps/multipointvdi/Open-WmsVirtualDesktop.md b/docset/winserver2019-ps/multipointvdi/Open-WmsVirtualDesktop.md index 30f1ad22f7..67c81620e6 100644 --- a/docset/winserver2019-ps/multipointvdi/Open-WmsVirtualDesktop.md +++ b/docset/winserver2019-ps/multipointvdi/Open-WmsVirtualDesktop.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPointVdi.dll-Help.xml Module Name: MultipointVdi ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipointvdi/open-wmsvirtualdesktop?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipointvdi/open-wmsvirtualdesktop?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Open-WmsVirtualDesktop --- diff --git a/docset/winserver2019-ps/nanoserverimagegenerator/Edit-NanoServerImage.md b/docset/winserver2019-ps/nanoserverimagegenerator/Edit-NanoServerImage.md index efedf8e7ae..d81e500ed9 100644 --- a/docset/winserver2019-ps/nanoserverimagegenerator/Edit-NanoServerImage.md +++ b/docset/winserver2019-ps/nanoserverimagegenerator/Edit-NanoServerImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NanoServerImageGenerator-help.xml Module Name: NanoServerImageGenerator ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nanoserverimagegenerator/edit-nanoserverimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nanoserverimagegenerator/edit-nanoserverimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Edit-NanoServerImage --- diff --git a/docset/winserver2019-ps/nanoserverimagegenerator/Get-NanoServerPackage.md b/docset/winserver2019-ps/nanoserverimagegenerator/Get-NanoServerPackage.md index aa74b0eea1..e604b3be05 100644 --- a/docset/winserver2019-ps/nanoserverimagegenerator/Get-NanoServerPackage.md +++ b/docset/winserver2019-ps/nanoserverimagegenerator/Get-NanoServerPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NanoServerImageGenerator-help.xml Module Name: NanoServerImageGenerator ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nanoserverimagegenerator/get-nanoserverpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nanoserverimagegenerator/get-nanoserverpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NanoServerPackage --- diff --git a/docset/winserver2019-ps/nanoserverimagegenerator/New-NanoServerImage.md b/docset/winserver2019-ps/nanoserverimagegenerator/New-NanoServerImage.md index aa0fcbd338..275acd1122 100644 --- a/docset/winserver2019-ps/nanoserverimagegenerator/New-NanoServerImage.md +++ b/docset/winserver2019-ps/nanoserverimagegenerator/New-NanoServerImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NanoServerImageGenerator-help.xml Module Name: NanoServerImageGenerator ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nanoserverimagegenerator/new-nanoserverimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nanoserverimagegenerator/new-nanoserverimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NanoServerImage --- diff --git a/docset/winserver2019-ps/netadapter/Disable-NetAdapter.md b/docset/winserver2019-ps/netadapter/Disable-NetAdapter.md index 23f46fe43a..f3979cfa30 100644 --- a/docset/winserver2019-ps/netadapter/Disable-NetAdapter.md +++ b/docset/winserver2019-ps/netadapter/Disable-NetAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapter.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetAdapter --- diff --git a/docset/winserver2019-ps/netadapter/Disable-NetAdapterBinding.md b/docset/winserver2019-ps/netadapter/Disable-NetAdapterBinding.md index 05699f4cba..d349a2ee5c 100644 --- a/docset/winserver2019-ps/netadapter/Disable-NetAdapterBinding.md +++ b/docset/winserver2019-ps/netadapter/Disable-NetAdapterBinding.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterBinding.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapterbinding?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapterbinding?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetAdapterBinding --- diff --git a/docset/winserver2019-ps/netadapter/Disable-NetAdapterChecksumOffload.md b/docset/winserver2019-ps/netadapter/Disable-NetAdapterChecksumOffload.md index 73fd552022..d7a514e496 100644 --- a/docset/winserver2019-ps/netadapter/Disable-NetAdapterChecksumOffload.md +++ b/docset/winserver2019-ps/netadapter/Disable-NetAdapterChecksumOffload.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterChecksumOffload.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapterchecksumoffload?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapterchecksumoffload?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetAdapterChecksumOffload --- diff --git a/docset/winserver2019-ps/netadapter/Disable-NetAdapterEncapsulatedPacketTaskOffload.md b/docset/winserver2019-ps/netadapter/Disable-NetAdapterEncapsulatedPacketTaskOffload.md index 6625d489c2..4641531433 100644 --- a/docset/winserver2019-ps/netadapter/Disable-NetAdapterEncapsulatedPacketTaskOffload.md +++ b/docset/winserver2019-ps/netadapter/Disable-NetAdapterEncapsulatedPacketTaskOffload.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterEncapsulatedPacketTaskOffload.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapterencapsulatedpackettaskoffload?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapterencapsulatedpackettaskoffload?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetAdapterEncapsulatedPacketTaskOffload --- diff --git a/docset/winserver2019-ps/netadapter/Disable-NetAdapterIPsecOffload.md b/docset/winserver2019-ps/netadapter/Disable-NetAdapterIPsecOffload.md index 834b39c783..9d1ef7bdc7 100644 --- a/docset/winserver2019-ps/netadapter/Disable-NetAdapterIPsecOffload.md +++ b/docset/winserver2019-ps/netadapter/Disable-NetAdapterIPsecOffload.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterIPsecOffload.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapteripsecoffload?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapteripsecoffload?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetAdapterIPsecOffload --- diff --git a/docset/winserver2019-ps/netadapter/Disable-NetAdapterLso.md b/docset/winserver2019-ps/netadapter/Disable-NetAdapterLso.md index a4f9f22807..cc3f49724a 100644 --- a/docset/winserver2019-ps/netadapter/Disable-NetAdapterLso.md +++ b/docset/winserver2019-ps/netadapter/Disable-NetAdapterLso.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterLso.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapterlso?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapterlso?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetAdapterLso --- diff --git a/docset/winserver2019-ps/netadapter/Disable-NetAdapterPowerManagement.md b/docset/winserver2019-ps/netadapter/Disable-NetAdapterPowerManagement.md index 932f2688b7..3300e167c1 100644 --- a/docset/winserver2019-ps/netadapter/Disable-NetAdapterPowerManagement.md +++ b/docset/winserver2019-ps/netadapter/Disable-NetAdapterPowerManagement.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterPowerManagement.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 02/14/2018 -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapterpowermanagement?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapterpowermanagement?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetAdapterPowerManagement --- diff --git a/docset/winserver2019-ps/netadapter/Disable-NetAdapterQos.md b/docset/winserver2019-ps/netadapter/Disable-NetAdapterQos.md index b11af5cd47..8925a1a29c 100644 --- a/docset/winserver2019-ps/netadapter/Disable-NetAdapterQos.md +++ b/docset/winserver2019-ps/netadapter/Disable-NetAdapterQos.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterQos.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapterqos?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapterqos?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetAdapterQos --- diff --git a/docset/winserver2019-ps/netadapter/Disable-NetAdapterRdma.md b/docset/winserver2019-ps/netadapter/Disable-NetAdapterRdma.md index 67f43133f3..d41a958ba7 100644 --- a/docset/winserver2019-ps/netadapter/Disable-NetAdapterRdma.md +++ b/docset/winserver2019-ps/netadapter/Disable-NetAdapterRdma.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterRdma.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapterrdma?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapterrdma?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetAdapterRdma --- diff --git a/docset/winserver2019-ps/netadapter/Disable-NetAdapterRsc.md b/docset/winserver2019-ps/netadapter/Disable-NetAdapterRsc.md index 55a18cad1f..52871a0f83 100644 --- a/docset/winserver2019-ps/netadapter/Disable-NetAdapterRsc.md +++ b/docset/winserver2019-ps/netadapter/Disable-NetAdapterRsc.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterRsc.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapterrsc?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapterrsc?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetAdapterRsc --- diff --git a/docset/winserver2019-ps/netadapter/Disable-NetAdapterRss.md b/docset/winserver2019-ps/netadapter/Disable-NetAdapterRss.md index 45a44a1713..09a02d3c1c 100644 --- a/docset/winserver2019-ps/netadapter/Disable-NetAdapterRss.md +++ b/docset/winserver2019-ps/netadapter/Disable-NetAdapterRss.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterRss.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapterrss?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapterrss?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetAdapterRss --- diff --git a/docset/winserver2019-ps/netadapter/Disable-NetAdapterSriov.md b/docset/winserver2019-ps/netadapter/Disable-NetAdapterSriov.md index 3cc9173825..93ad9d231e 100644 --- a/docset/winserver2019-ps/netadapter/Disable-NetAdapterSriov.md +++ b/docset/winserver2019-ps/netadapter/Disable-NetAdapterSriov.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterSriov.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadaptersriov?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadaptersriov?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetAdapterSriov --- diff --git a/docset/winserver2019-ps/netadapter/Disable-NetAdapterVmq.md b/docset/winserver2019-ps/netadapter/Disable-NetAdapterVmq.md index 5d02aaf2a3..129bb17092 100644 --- a/docset/winserver2019-ps/netadapter/Disable-NetAdapterVmq.md +++ b/docset/winserver2019-ps/netadapter/Disable-NetAdapterVmq.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterVmq.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadaptervmq?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadaptervmq?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetAdapterVmq --- diff --git a/docset/winserver2019-ps/netadapter/Enable-NetAdapter.md b/docset/winserver2019-ps/netadapter/Enable-NetAdapter.md index b8c199f6ab..eefef99afd 100644 --- a/docset/winserver2019-ps/netadapter/Enable-NetAdapter.md +++ b/docset/winserver2019-ps/netadapter/Enable-NetAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapter.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetAdapter --- diff --git a/docset/winserver2019-ps/netadapter/Enable-NetAdapterBinding.md b/docset/winserver2019-ps/netadapter/Enable-NetAdapterBinding.md index a76088f4f6..3ef03fb69b 100644 --- a/docset/winserver2019-ps/netadapter/Enable-NetAdapterBinding.md +++ b/docset/winserver2019-ps/netadapter/Enable-NetAdapterBinding.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterBinding.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapterbinding?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapterbinding?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetAdapterBinding --- diff --git a/docset/winserver2019-ps/netadapter/Enable-NetAdapterChecksumOffload.md b/docset/winserver2019-ps/netadapter/Enable-NetAdapterChecksumOffload.md index 3223c952e1..d0efcdf005 100644 --- a/docset/winserver2019-ps/netadapter/Enable-NetAdapterChecksumOffload.md +++ b/docset/winserver2019-ps/netadapter/Enable-NetAdapterChecksumOffload.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterChecksumOffload.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapterchecksumoffload?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapterchecksumoffload?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetAdapterChecksumOffload --- diff --git a/docset/winserver2019-ps/netadapter/Enable-NetAdapterEncapsulatedPacketTaskOffload.md b/docset/winserver2019-ps/netadapter/Enable-NetAdapterEncapsulatedPacketTaskOffload.md index b86e10a728..62667e063a 100644 --- a/docset/winserver2019-ps/netadapter/Enable-NetAdapterEncapsulatedPacketTaskOffload.md +++ b/docset/winserver2019-ps/netadapter/Enable-NetAdapterEncapsulatedPacketTaskOffload.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterEncapsulatedPacketTaskOffload.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapterencapsulatedpackettaskoffload?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapterencapsulatedpackettaskoffload?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetAdapterEncapsulatedPacketTaskOffload --- diff --git a/docset/winserver2019-ps/netadapter/Enable-NetAdapterIPsecOffload.md b/docset/winserver2019-ps/netadapter/Enable-NetAdapterIPsecOffload.md index 398f6512b1..a313400795 100644 --- a/docset/winserver2019-ps/netadapter/Enable-NetAdapterIPsecOffload.md +++ b/docset/winserver2019-ps/netadapter/Enable-NetAdapterIPsecOffload.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterIPsecOffload.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapteripsecoffload?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapteripsecoffload?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetAdapterIPsecOffload --- diff --git a/docset/winserver2019-ps/netadapter/Enable-NetAdapterLso.md b/docset/winserver2019-ps/netadapter/Enable-NetAdapterLso.md index 8ee0996577..ddb7904298 100644 --- a/docset/winserver2019-ps/netadapter/Enable-NetAdapterLso.md +++ b/docset/winserver2019-ps/netadapter/Enable-NetAdapterLso.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterLso.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapterlso?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapterlso?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetAdapterLso --- diff --git a/docset/winserver2019-ps/netadapter/Enable-NetAdapterPowerManagement.md b/docset/winserver2019-ps/netadapter/Enable-NetAdapterPowerManagement.md index 865ab72fc8..0f637bcc6c 100644 --- a/docset/winserver2019-ps/netadapter/Enable-NetAdapterPowerManagement.md +++ b/docset/winserver2019-ps/netadapter/Enable-NetAdapterPowerManagement.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterPowerManagement.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapterpowermanagement?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapterpowermanagement?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetAdapterPowerManagement --- diff --git a/docset/winserver2019-ps/netadapter/Enable-NetAdapterQos.md b/docset/winserver2019-ps/netadapter/Enable-NetAdapterQos.md index fb23b99fa6..a8a896eb86 100644 --- a/docset/winserver2019-ps/netadapter/Enable-NetAdapterQos.md +++ b/docset/winserver2019-ps/netadapter/Enable-NetAdapterQos.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterQos.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapterqos?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapterqos?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetAdapterQos --- diff --git a/docset/winserver2019-ps/netadapter/Enable-NetAdapterRdma.md b/docset/winserver2019-ps/netadapter/Enable-NetAdapterRdma.md index bb38b7ce52..5458a7cdaa 100644 --- a/docset/winserver2019-ps/netadapter/Enable-NetAdapterRdma.md +++ b/docset/winserver2019-ps/netadapter/Enable-NetAdapterRdma.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterRdma.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapterrdma?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapterrdma?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetAdapterRdma --- diff --git a/docset/winserver2019-ps/netadapter/Enable-NetAdapterRsc.md b/docset/winserver2019-ps/netadapter/Enable-NetAdapterRsc.md index d70c933735..6814ee1d15 100644 --- a/docset/winserver2019-ps/netadapter/Enable-NetAdapterRsc.md +++ b/docset/winserver2019-ps/netadapter/Enable-NetAdapterRsc.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterRsc.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapterrsc?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapterrsc?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetAdapterRsc --- diff --git a/docset/winserver2019-ps/netadapter/Enable-NetAdapterRss.md b/docset/winserver2019-ps/netadapter/Enable-NetAdapterRss.md index 9faf29239f..b757f9e505 100644 --- a/docset/winserver2019-ps/netadapter/Enable-NetAdapterRss.md +++ b/docset/winserver2019-ps/netadapter/Enable-NetAdapterRss.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterRss.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapterrss?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapterrss?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetAdapterRss --- diff --git a/docset/winserver2019-ps/netadapter/Enable-NetAdapterSriov.md b/docset/winserver2019-ps/netadapter/Enable-NetAdapterSriov.md index ada6e29424..7fabd89392 100644 --- a/docset/winserver2019-ps/netadapter/Enable-NetAdapterSriov.md +++ b/docset/winserver2019-ps/netadapter/Enable-NetAdapterSriov.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterSriov.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadaptersriov?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadaptersriov?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetAdapterSriov --- diff --git a/docset/winserver2019-ps/netadapter/Enable-NetAdapterVmq.md b/docset/winserver2019-ps/netadapter/Enable-NetAdapterVmq.md index 31056fb2f0..627e213e79 100644 --- a/docset/winserver2019-ps/netadapter/Enable-NetAdapterVmq.md +++ b/docset/winserver2019-ps/netadapter/Enable-NetAdapterVmq.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterVmq.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadaptervmq?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadaptervmq?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetAdapterVmq --- diff --git a/docset/winserver2019-ps/netadapter/Get-NetAdapter.md b/docset/winserver2019-ps/netadapter/Get-NetAdapter.md index 35a070b9e1..7a273eba00 100644 --- a/docset/winserver2019-ps/netadapter/Get-NetAdapter.md +++ b/docset/winserver2019-ps/netadapter/Get-NetAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapter.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapter --- diff --git a/docset/winserver2019-ps/netadapter/Get-NetAdapterAdvancedProperty.md b/docset/winserver2019-ps/netadapter/Get-NetAdapterAdvancedProperty.md index 316b79eef9..5ab6d81fbd 100644 --- a/docset/winserver2019-ps/netadapter/Get-NetAdapterAdvancedProperty.md +++ b/docset/winserver2019-ps/netadapter/Get-NetAdapterAdvancedProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterAdvancedProperty.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapteradvancedproperty?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapteradvancedproperty?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterAdvancedProperty --- diff --git a/docset/winserver2019-ps/netadapter/Get-NetAdapterBinding.md b/docset/winserver2019-ps/netadapter/Get-NetAdapterBinding.md index 1968289f3f..4cfcfd4043 100644 --- a/docset/winserver2019-ps/netadapter/Get-NetAdapterBinding.md +++ b/docset/winserver2019-ps/netadapter/Get-NetAdapterBinding.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterBinding.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterbinding?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterbinding?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterBinding --- diff --git a/docset/winserver2019-ps/netadapter/Get-NetAdapterChecksumOffload.md b/docset/winserver2019-ps/netadapter/Get-NetAdapterChecksumOffload.md index 176f82b908..28b4446397 100644 --- a/docset/winserver2019-ps/netadapter/Get-NetAdapterChecksumOffload.md +++ b/docset/winserver2019-ps/netadapter/Get-NetAdapterChecksumOffload.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterChecksumOffload.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterchecksumoffload?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterchecksumoffload?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterChecksumOffload --- diff --git a/docset/winserver2019-ps/netadapter/Get-NetAdapterEncapsulatedPacketTaskOffload.md b/docset/winserver2019-ps/netadapter/Get-NetAdapterEncapsulatedPacketTaskOffload.md index ab176eee8f..5723b6495e 100644 --- a/docset/winserver2019-ps/netadapter/Get-NetAdapterEncapsulatedPacketTaskOffload.md +++ b/docset/winserver2019-ps/netadapter/Get-NetAdapterEncapsulatedPacketTaskOffload.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterEncapsulatedPacketTaskOffload.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterencapsulatedpackettaskoffload?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterencapsulatedpackettaskoffload?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterEncapsulatedPacketTaskOffload --- diff --git a/docset/winserver2019-ps/netadapter/Get-NetAdapterHardwareInfo.md b/docset/winserver2019-ps/netadapter/Get-NetAdapterHardwareInfo.md index 22e6f4ced5..3b30e6c99a 100644 --- a/docset/winserver2019-ps/netadapter/Get-NetAdapterHardwareInfo.md +++ b/docset/winserver2019-ps/netadapter/Get-NetAdapterHardwareInfo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterHardwareInfo.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterhardwareinfo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterhardwareinfo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterHardwareInfo --- diff --git a/docset/winserver2019-ps/netadapter/Get-NetAdapterIPsecOffload.md b/docset/winserver2019-ps/netadapter/Get-NetAdapterIPsecOffload.md index b9f47c0569..1afaf4fa47 100644 --- a/docset/winserver2019-ps/netadapter/Get-NetAdapterIPsecOffload.md +++ b/docset/winserver2019-ps/netadapter/Get-NetAdapterIPsecOffload.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterIPsecOffload.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapteripsecoffload?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapteripsecoffload?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterIPsecOffload --- diff --git a/docset/winserver2019-ps/netadapter/Get-NetAdapterLso.md b/docset/winserver2019-ps/netadapter/Get-NetAdapterLso.md index 9bdc408187..2a080c96a7 100644 --- a/docset/winserver2019-ps/netadapter/Get-NetAdapterLso.md +++ b/docset/winserver2019-ps/netadapter/Get-NetAdapterLso.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterLso.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterlso?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterlso?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterLso --- diff --git a/docset/winserver2019-ps/netadapter/Get-NetAdapterPowerManagement.md b/docset/winserver2019-ps/netadapter/Get-NetAdapterPowerManagement.md index fb4d80e93c..5cb1079b96 100644 --- a/docset/winserver2019-ps/netadapter/Get-NetAdapterPowerManagement.md +++ b/docset/winserver2019-ps/netadapter/Get-NetAdapterPowerManagement.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterPowerManagement.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterpowermanagement?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterpowermanagement?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterPowerManagement --- diff --git a/docset/winserver2019-ps/netadapter/Get-NetAdapterQos.md b/docset/winserver2019-ps/netadapter/Get-NetAdapterQos.md index fbec5494c1..fc7dfed20e 100644 --- a/docset/winserver2019-ps/netadapter/Get-NetAdapterQos.md +++ b/docset/winserver2019-ps/netadapter/Get-NetAdapterQos.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterQos.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterqos?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterqos?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterQos --- diff --git a/docset/winserver2019-ps/netadapter/Get-NetAdapterRdma.md b/docset/winserver2019-ps/netadapter/Get-NetAdapterRdma.md index 86626142d4..4dc71bb61f 100644 --- a/docset/winserver2019-ps/netadapter/Get-NetAdapterRdma.md +++ b/docset/winserver2019-ps/netadapter/Get-NetAdapterRdma.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterRdma.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterrdma?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterrdma?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterRdma --- diff --git a/docset/winserver2019-ps/netadapter/Get-NetAdapterRsc.md b/docset/winserver2019-ps/netadapter/Get-NetAdapterRsc.md index d6c643b244..9b70fe973c 100644 --- a/docset/winserver2019-ps/netadapter/Get-NetAdapterRsc.md +++ b/docset/winserver2019-ps/netadapter/Get-NetAdapterRsc.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterRsc.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterrsc?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterrsc?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterRsc --- diff --git a/docset/winserver2019-ps/netadapter/Get-NetAdapterRss.md b/docset/winserver2019-ps/netadapter/Get-NetAdapterRss.md index 294582e797..a56462c20d 100644 --- a/docset/winserver2019-ps/netadapter/Get-NetAdapterRss.md +++ b/docset/winserver2019-ps/netadapter/Get-NetAdapterRss.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterRss.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterrss?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterrss?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterRss --- diff --git a/docset/winserver2019-ps/netadapter/Get-NetAdapterSriov.md b/docset/winserver2019-ps/netadapter/Get-NetAdapterSriov.md index 88ab8d8f97..4e0cbf028a 100644 --- a/docset/winserver2019-ps/netadapter/Get-NetAdapterSriov.md +++ b/docset/winserver2019-ps/netadapter/Get-NetAdapterSriov.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterSriov.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadaptersriov?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadaptersriov?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterSriov --- diff --git a/docset/winserver2019-ps/netadapter/Get-NetAdapterSriovVf.md b/docset/winserver2019-ps/netadapter/Get-NetAdapterSriovVf.md index 24ba768142..7b64136a21 100644 --- a/docset/winserver2019-ps/netadapter/Get-NetAdapterSriovVf.md +++ b/docset/winserver2019-ps/netadapter/Get-NetAdapterSriovVf.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterSriovVf.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadaptersriovvf?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadaptersriovvf?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterSriovVf --- diff --git a/docset/winserver2019-ps/netadapter/Get-NetAdapterStatistics.md b/docset/winserver2019-ps/netadapter/Get-NetAdapterStatistics.md index 2b012776a6..f1c3daa60d 100644 --- a/docset/winserver2019-ps/netadapter/Get-NetAdapterStatistics.md +++ b/docset/winserver2019-ps/netadapter/Get-NetAdapterStatistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterStatistics.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterstatistics?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterstatistics?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterStatistics --- diff --git a/docset/winserver2019-ps/netadapter/Get-NetAdapterVPort.md b/docset/winserver2019-ps/netadapter/Get-NetAdapterVPort.md index b1a1a23097..2a4c08ee58 100644 --- a/docset/winserver2019-ps/netadapter/Get-NetAdapterVPort.md +++ b/docset/winserver2019-ps/netadapter/Get-NetAdapterVPort.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterVPort.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadaptervport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadaptervport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterVPort --- diff --git a/docset/winserver2019-ps/netadapter/Get-NetAdapterVmq.md b/docset/winserver2019-ps/netadapter/Get-NetAdapterVmq.md index 2eb8b9e4fe..a7771b4983 100644 --- a/docset/winserver2019-ps/netadapter/Get-NetAdapterVmq.md +++ b/docset/winserver2019-ps/netadapter/Get-NetAdapterVmq.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterVmq.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadaptervmq?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadaptervmq?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterVmq --- diff --git a/docset/winserver2019-ps/netadapter/Get-NetAdapterVmqQueue.md b/docset/winserver2019-ps/netadapter/Get-NetAdapterVmqQueue.md index 4bb851a165..59d4b581b7 100644 --- a/docset/winserver2019-ps/netadapter/Get-NetAdapterVmqQueue.md +++ b/docset/winserver2019-ps/netadapter/Get-NetAdapterVmqQueue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterVmqQueue.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadaptervmqqueue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadaptervmqqueue?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterVmqQueue --- diff --git a/docset/winserver2019-ps/netadapter/New-NetAdapterAdvancedProperty.md b/docset/winserver2019-ps/netadapter/New-NetAdapterAdvancedProperty.md index 4a783e80d4..c84ad83212 100644 --- a/docset/winserver2019-ps/netadapter/New-NetAdapterAdvancedProperty.md +++ b/docset/winserver2019-ps/netadapter/New-NetAdapterAdvancedProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterAdvancedProperty.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/new-netadapteradvancedproperty?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/new-netadapteradvancedproperty?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetAdapterAdvancedProperty --- diff --git a/docset/winserver2019-ps/netadapter/Remove-NetAdapterAdvancedProperty.md b/docset/winserver2019-ps/netadapter/Remove-NetAdapterAdvancedProperty.md index 6ede1ac5c2..3ab5a6bcaa 100644 --- a/docset/winserver2019-ps/netadapter/Remove-NetAdapterAdvancedProperty.md +++ b/docset/winserver2019-ps/netadapter/Remove-NetAdapterAdvancedProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterAdvancedProperty.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/remove-netadapteradvancedproperty?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/remove-netadapteradvancedproperty?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetAdapterAdvancedProperty --- diff --git a/docset/winserver2019-ps/netadapter/Rename-NetAdapter.md b/docset/winserver2019-ps/netadapter/Rename-NetAdapter.md index a6ff05d05d..ce70abfb47 100644 --- a/docset/winserver2019-ps/netadapter/Rename-NetAdapter.md +++ b/docset/winserver2019-ps/netadapter/Rename-NetAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapter.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/rename-netadapter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/rename-netadapter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-NetAdapter --- diff --git a/docset/winserver2019-ps/netadapter/Reset-NetAdapterAdvancedProperty.md b/docset/winserver2019-ps/netadapter/Reset-NetAdapterAdvancedProperty.md index 6cea798301..8d983345db 100644 --- a/docset/winserver2019-ps/netadapter/Reset-NetAdapterAdvancedProperty.md +++ b/docset/winserver2019-ps/netadapter/Reset-NetAdapterAdvancedProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterAdvancedProperty.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/reset-netadapteradvancedproperty?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/reset-netadapteradvancedproperty?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-NetAdapterAdvancedProperty --- diff --git a/docset/winserver2019-ps/netadapter/Restart-NetAdapter.md b/docset/winserver2019-ps/netadapter/Restart-NetAdapter.md index af3c46f3ef..16757b5420 100644 --- a/docset/winserver2019-ps/netadapter/Restart-NetAdapter.md +++ b/docset/winserver2019-ps/netadapter/Restart-NetAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapter.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/restart-netadapter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/restart-netadapter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restart-NetAdapter --- diff --git a/docset/winserver2019-ps/netadapter/Set-NetAdapter.md b/docset/winserver2019-ps/netadapter/Set-NetAdapter.md index 4e490bfc15..c218d59e53 100644 --- a/docset/winserver2019-ps/netadapter/Set-NetAdapter.md +++ b/docset/winserver2019-ps/netadapter/Set-NetAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapter.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapter --- diff --git a/docset/winserver2019-ps/netadapter/Set-NetAdapterAdvancedProperty.md b/docset/winserver2019-ps/netadapter/Set-NetAdapterAdvancedProperty.md index 3868b4feee..eb91a74251 100644 --- a/docset/winserver2019-ps/netadapter/Set-NetAdapterAdvancedProperty.md +++ b/docset/winserver2019-ps/netadapter/Set-NetAdapterAdvancedProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterAdvancedProperty.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapteradvancedproperty?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapteradvancedproperty?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapterAdvancedProperty --- diff --git a/docset/winserver2019-ps/netadapter/Set-NetAdapterBinding.md b/docset/winserver2019-ps/netadapter/Set-NetAdapterBinding.md index 595a80f735..8669d0c95c 100644 --- a/docset/winserver2019-ps/netadapter/Set-NetAdapterBinding.md +++ b/docset/winserver2019-ps/netadapter/Set-NetAdapterBinding.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterBinding.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapterbinding?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapterbinding?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapterBinding --- diff --git a/docset/winserver2019-ps/netadapter/Set-NetAdapterChecksumOffload.md b/docset/winserver2019-ps/netadapter/Set-NetAdapterChecksumOffload.md index a69b207eb5..5d11b5fe6e 100644 --- a/docset/winserver2019-ps/netadapter/Set-NetAdapterChecksumOffload.md +++ b/docset/winserver2019-ps/netadapter/Set-NetAdapterChecksumOffload.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterChecksumOffload.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapterchecksumoffload?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapterchecksumoffload?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapterChecksumOffload --- diff --git a/docset/winserver2019-ps/netadapter/Set-NetAdapterEncapsulatedPacketTaskOffload.md b/docset/winserver2019-ps/netadapter/Set-NetAdapterEncapsulatedPacketTaskOffload.md index d50e0405d9..307d07af93 100644 --- a/docset/winserver2019-ps/netadapter/Set-NetAdapterEncapsulatedPacketTaskOffload.md +++ b/docset/winserver2019-ps/netadapter/Set-NetAdapterEncapsulatedPacketTaskOffload.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterEncapsulatedPacketTaskOffload.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapterencapsulatedpackettaskoffload?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapterencapsulatedpackettaskoffload?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapterEncapsulatedPacketTaskOffload --- diff --git a/docset/winserver2019-ps/netadapter/Set-NetAdapterIPsecOffload.md b/docset/winserver2019-ps/netadapter/Set-NetAdapterIPsecOffload.md index 72f6854701..825159bf2b 100644 --- a/docset/winserver2019-ps/netadapter/Set-NetAdapterIPsecOffload.md +++ b/docset/winserver2019-ps/netadapter/Set-NetAdapterIPsecOffload.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterIPsecOffload.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapteripsecoffload?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapteripsecoffload?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapterIPsecOffload --- diff --git a/docset/winserver2019-ps/netadapter/Set-NetAdapterLso.md b/docset/winserver2019-ps/netadapter/Set-NetAdapterLso.md index 4a135380fc..b9c4c27cd7 100644 --- a/docset/winserver2019-ps/netadapter/Set-NetAdapterLso.md +++ b/docset/winserver2019-ps/netadapter/Set-NetAdapterLso.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterLso.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapterlso?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapterlso?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapterLso --- diff --git a/docset/winserver2019-ps/netadapter/Set-NetAdapterPowerManagement.md b/docset/winserver2019-ps/netadapter/Set-NetAdapterPowerManagement.md index 4424c3b7ad..51839978ba 100644 --- a/docset/winserver2019-ps/netadapter/Set-NetAdapterPowerManagement.md +++ b/docset/winserver2019-ps/netadapter/Set-NetAdapterPowerManagement.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterPowerManagement.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapterpowermanagement?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapterpowermanagement?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapterPowerManagement --- diff --git a/docset/winserver2019-ps/netadapter/Set-NetAdapterQos.md b/docset/winserver2019-ps/netadapter/Set-NetAdapterQos.md index 2527dce1fe..52d6c55c15 100644 --- a/docset/winserver2019-ps/netadapter/Set-NetAdapterQos.md +++ b/docset/winserver2019-ps/netadapter/Set-NetAdapterQos.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterQos.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapterqos?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapterqos?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapterQos --- diff --git a/docset/winserver2019-ps/netadapter/Set-NetAdapterRdma.md b/docset/winserver2019-ps/netadapter/Set-NetAdapterRdma.md index 93d0a6231b..18e7907b84 100644 --- a/docset/winserver2019-ps/netadapter/Set-NetAdapterRdma.md +++ b/docset/winserver2019-ps/netadapter/Set-NetAdapterRdma.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterRdma.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapterrdma?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapterrdma?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapterRdma --- diff --git a/docset/winserver2019-ps/netadapter/Set-NetAdapterRsc.md b/docset/winserver2019-ps/netadapter/Set-NetAdapterRsc.md index 9f3102626f..0b549f3976 100644 --- a/docset/winserver2019-ps/netadapter/Set-NetAdapterRsc.md +++ b/docset/winserver2019-ps/netadapter/Set-NetAdapterRsc.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterRsc.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapterrsc?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapterrsc?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapterRsc --- diff --git a/docset/winserver2019-ps/netadapter/Set-NetAdapterRss.md b/docset/winserver2019-ps/netadapter/Set-NetAdapterRss.md index 87a302f133..89f83a113f 100644 --- a/docset/winserver2019-ps/netadapter/Set-NetAdapterRss.md +++ b/docset/winserver2019-ps/netadapter/Set-NetAdapterRss.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterRss.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapterrss?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapterrss?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapterRss --- diff --git a/docset/winserver2019-ps/netadapter/Set-NetAdapterSriov.md b/docset/winserver2019-ps/netadapter/Set-NetAdapterSriov.md index a08a8ae5f4..43085866d1 100644 --- a/docset/winserver2019-ps/netadapter/Set-NetAdapterSriov.md +++ b/docset/winserver2019-ps/netadapter/Set-NetAdapterSriov.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterSriov.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadaptersriov?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadaptersriov?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapterSriov --- diff --git a/docset/winserver2019-ps/netadapter/Set-NetAdapterVmq.md b/docset/winserver2019-ps/netadapter/Set-NetAdapterVmq.md index 42c921e27c..c880af1c60 100644 --- a/docset/winserver2019-ps/netadapter/Set-NetAdapterVmq.md +++ b/docset/winserver2019-ps/netadapter/Set-NetAdapterVmq.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterVmq.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadaptervmq?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadaptervmq?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapterVmq --- diff --git a/docset/winserver2019-ps/netconnection/Get-NetConnectionProfile.md b/docset/winserver2019-ps/netconnection/Get-NetConnectionProfile.md index 82cd4b8bed..fa382bce62 100644 --- a/docset/winserver2019-ps/netconnection/Get-NetConnectionProfile.md +++ b/docset/winserver2019-ps/netconnection/Get-NetConnectionProfile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetConnectionProfile.cdxml-help.xml Module Name: NetConnection ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netconnectionprofile/get-netconnectionprofile?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netconnectionprofile/get-netconnectionprofile?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetConnectionProfile --- diff --git a/docset/winserver2019-ps/netconnection/Set-NetConnectionProfile.md b/docset/winserver2019-ps/netconnection/Set-NetConnectionProfile.md index ad37a413f3..e3c6b863ca 100644 --- a/docset/winserver2019-ps/netconnection/Set-NetConnectionProfile.md +++ b/docset/winserver2019-ps/netconnection/Set-NetConnectionProfile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetConnectionProfile.cdxml-help.xml Module Name: NetConnection ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netconnectionprofile/set-netconnectionprofile?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netconnectionprofile/set-netconnectionprofile?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetConnectionProfile --- diff --git a/docset/winserver2019-ps/neteventpacketcapture/Add-NetEventNetworkAdapter.md b/docset/winserver2019-ps/neteventpacketcapture/Add-NetEventNetworkAdapter.md index a61925e68b..9d73a1867b 100644 --- a/docset/winserver2019-ps/neteventpacketcapture/Add-NetEventNetworkAdapter.md +++ b/docset/winserver2019-ps/neteventpacketcapture/Add-NetEventNetworkAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventNetworkAdapter.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/add-neteventnetworkadapter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/add-neteventnetworkadapter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NetEventNetworkAdapter --- diff --git a/docset/winserver2019-ps/neteventpacketcapture/Add-NetEventPacketCaptureProvider.md b/docset/winserver2019-ps/neteventpacketcapture/Add-NetEventPacketCaptureProvider.md index b9c42b1b7e..f3c4373aaa 100644 --- a/docset/winserver2019-ps/neteventpacketcapture/Add-NetEventPacketCaptureProvider.md +++ b/docset/winserver2019-ps/neteventpacketcapture/Add-NetEventPacketCaptureProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventPacketCaptureProvider.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/add-neteventpacketcaptureprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/add-neteventpacketcaptureprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NetEventPacketCaptureProvider --- diff --git a/docset/winserver2019-ps/neteventpacketcapture/Add-NetEventProvider.md b/docset/winserver2019-ps/neteventpacketcapture/Add-NetEventProvider.md index 1008dfdf60..b5aef5ea68 100644 --- a/docset/winserver2019-ps/neteventpacketcapture/Add-NetEventProvider.md +++ b/docset/winserver2019-ps/neteventpacketcapture/Add-NetEventProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventProvider.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/add-neteventprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/add-neteventprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NetEventProvider --- diff --git a/docset/winserver2019-ps/neteventpacketcapture/Add-NetEventVmNetworkAdapter.md b/docset/winserver2019-ps/neteventpacketcapture/Add-NetEventVmNetworkAdapter.md index 2f79d05821..3d0e9a0877 100644 --- a/docset/winserver2019-ps/neteventpacketcapture/Add-NetEventVmNetworkAdapter.md +++ b/docset/winserver2019-ps/neteventpacketcapture/Add-NetEventVmNetworkAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventVmNetworkAdatper.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/add-neteventvmnetworkadapter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/add-neteventvmnetworkadapter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NetEventVmNetworkAdapter --- diff --git a/docset/winserver2019-ps/neteventpacketcapture/Add-NetEventVmSwitch.md b/docset/winserver2019-ps/neteventpacketcapture/Add-NetEventVmSwitch.md index 5e4ada3645..b4aa56fbe7 100644 --- a/docset/winserver2019-ps/neteventpacketcapture/Add-NetEventVmSwitch.md +++ b/docset/winserver2019-ps/neteventpacketcapture/Add-NetEventVmSwitch.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventVmSwitch.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/add-neteventvmswitch?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/add-neteventvmswitch?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NetEventVmSwitch --- diff --git a/docset/winserver2019-ps/neteventpacketcapture/Add-NetEventWFPCaptureProvider.md b/docset/winserver2019-ps/neteventpacketcapture/Add-NetEventWFPCaptureProvider.md index 485ee7779c..2d1edaef48 100644 --- a/docset/winserver2019-ps/neteventpacketcapture/Add-NetEventWFPCaptureProvider.md +++ b/docset/winserver2019-ps/neteventpacketcapture/Add-NetEventWFPCaptureProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventWFPCaptureProvider.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/add-neteventwfpcaptureprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/add-neteventwfpcaptureprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NetEventWFPCaptureProvider --- diff --git a/docset/winserver2019-ps/neteventpacketcapture/Get-NetEventNetworkAdapter.md b/docset/winserver2019-ps/neteventpacketcapture/Get-NetEventNetworkAdapter.md index 861ecf137c..21f0e78c36 100644 --- a/docset/winserver2019-ps/neteventpacketcapture/Get-NetEventNetworkAdapter.md +++ b/docset/winserver2019-ps/neteventpacketcapture/Get-NetEventNetworkAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventNetworkAdapter.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/get-neteventnetworkadapter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/get-neteventnetworkadapter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetEventNetworkAdapter --- diff --git a/docset/winserver2019-ps/neteventpacketcapture/Get-NetEventPacketCaptureProvider.md b/docset/winserver2019-ps/neteventpacketcapture/Get-NetEventPacketCaptureProvider.md index f4a57962bb..4694cae705 100644 --- a/docset/winserver2019-ps/neteventpacketcapture/Get-NetEventPacketCaptureProvider.md +++ b/docset/winserver2019-ps/neteventpacketcapture/Get-NetEventPacketCaptureProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventPacketCaptureProvider.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/get-neteventpacketcaptureprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/get-neteventpacketcaptureprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetEventPacketCaptureProvider --- diff --git a/docset/winserver2019-ps/neteventpacketcapture/Get-NetEventProvider.md b/docset/winserver2019-ps/neteventpacketcapture/Get-NetEventProvider.md index adb8b4cf08..3346f8ccc7 100644 --- a/docset/winserver2019-ps/neteventpacketcapture/Get-NetEventProvider.md +++ b/docset/winserver2019-ps/neteventpacketcapture/Get-NetEventProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventProvider.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/get-neteventprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/get-neteventprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetEventProvider --- diff --git a/docset/winserver2019-ps/neteventpacketcapture/Get-NetEventSession.md b/docset/winserver2019-ps/neteventpacketcapture/Get-NetEventSession.md index be4afc78c4..ff470a3d11 100644 --- a/docset/winserver2019-ps/neteventpacketcapture/Get-NetEventSession.md +++ b/docset/winserver2019-ps/neteventpacketcapture/Get-NetEventSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventSession.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/get-neteventsession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/get-neteventsession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetEventSession --- diff --git a/docset/winserver2019-ps/neteventpacketcapture/Get-NetEventVmNetworkAdapter.md b/docset/winserver2019-ps/neteventpacketcapture/Get-NetEventVmNetworkAdapter.md index 8db4fd77d4..d203b91309 100644 --- a/docset/winserver2019-ps/neteventpacketcapture/Get-NetEventVmNetworkAdapter.md +++ b/docset/winserver2019-ps/neteventpacketcapture/Get-NetEventVmNetworkAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventVmNetworkAdatper.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/get-neteventvmnetworkadapter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/get-neteventvmnetworkadapter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetEventVmNetworkAdapter --- diff --git a/docset/winserver2019-ps/neteventpacketcapture/Get-NetEventVmSwitch.md b/docset/winserver2019-ps/neteventpacketcapture/Get-NetEventVmSwitch.md index f228295ce8..6be0ed8f5a 100644 --- a/docset/winserver2019-ps/neteventpacketcapture/Get-NetEventVmSwitch.md +++ b/docset/winserver2019-ps/neteventpacketcapture/Get-NetEventVmSwitch.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventVmSwitch.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/get-neteventvmswitch?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/get-neteventvmswitch?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetEventVmSwitch --- diff --git a/docset/winserver2019-ps/neteventpacketcapture/Get-NetEventWFPCaptureProvider.md b/docset/winserver2019-ps/neteventpacketcapture/Get-NetEventWFPCaptureProvider.md index 7f44b5ee8e..53c36444b3 100644 --- a/docset/winserver2019-ps/neteventpacketcapture/Get-NetEventWFPCaptureProvider.md +++ b/docset/winserver2019-ps/neteventpacketcapture/Get-NetEventWFPCaptureProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventWFPCaptureProvider.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/get-neteventwfpcaptureprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/get-neteventwfpcaptureprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetEventWFPCaptureProvider --- diff --git a/docset/winserver2019-ps/neteventpacketcapture/New-NetEventSession.md b/docset/winserver2019-ps/neteventpacketcapture/New-NetEventSession.md index 6229274965..89dc5bdb59 100644 --- a/docset/winserver2019-ps/neteventpacketcapture/New-NetEventSession.md +++ b/docset/winserver2019-ps/neteventpacketcapture/New-NetEventSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventSession.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/new-neteventsession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/new-neteventsession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetEventSession --- diff --git a/docset/winserver2019-ps/neteventpacketcapture/Remove-NetEventNetworkAdapter.md b/docset/winserver2019-ps/neteventpacketcapture/Remove-NetEventNetworkAdapter.md index ffc7be18cf..86fe573e5f 100644 --- a/docset/winserver2019-ps/neteventpacketcapture/Remove-NetEventNetworkAdapter.md +++ b/docset/winserver2019-ps/neteventpacketcapture/Remove-NetEventNetworkAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventNetworkAdapter.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventnetworkadapter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventnetworkadapter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetEventNetworkAdapter --- diff --git a/docset/winserver2019-ps/neteventpacketcapture/Remove-NetEventPacketCaptureProvider.md b/docset/winserver2019-ps/neteventpacketcapture/Remove-NetEventPacketCaptureProvider.md index b02f4e8217..fd0691d469 100644 --- a/docset/winserver2019-ps/neteventpacketcapture/Remove-NetEventPacketCaptureProvider.md +++ b/docset/winserver2019-ps/neteventpacketcapture/Remove-NetEventPacketCaptureProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventPacketCaptureProvider.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventpacketcaptureprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventpacketcaptureprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetEventPacketCaptureProvider --- diff --git a/docset/winserver2019-ps/neteventpacketcapture/Remove-NetEventProvider.md b/docset/winserver2019-ps/neteventpacketcapture/Remove-NetEventProvider.md index 5bf3ef31d3..cc2c86a1ab 100644 --- a/docset/winserver2019-ps/neteventpacketcapture/Remove-NetEventProvider.md +++ b/docset/winserver2019-ps/neteventpacketcapture/Remove-NetEventProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventProvider.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetEventProvider --- diff --git a/docset/winserver2019-ps/neteventpacketcapture/Remove-NetEventSession.md b/docset/winserver2019-ps/neteventpacketcapture/Remove-NetEventSession.md index 2a9437223c..959b6187df 100644 --- a/docset/winserver2019-ps/neteventpacketcapture/Remove-NetEventSession.md +++ b/docset/winserver2019-ps/neteventpacketcapture/Remove-NetEventSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventSession.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventsession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventsession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetEventSession --- diff --git a/docset/winserver2019-ps/neteventpacketcapture/Remove-NetEventVmNetworkAdapter.md b/docset/winserver2019-ps/neteventpacketcapture/Remove-NetEventVmNetworkAdapter.md index 64d2046e9b..e7bbbbaffb 100644 --- a/docset/winserver2019-ps/neteventpacketcapture/Remove-NetEventVmNetworkAdapter.md +++ b/docset/winserver2019-ps/neteventpacketcapture/Remove-NetEventVmNetworkAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventVmNetworkAdatper.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventvmnetworkadapter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventvmnetworkadapter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetEventVmNetworkAdapter --- diff --git a/docset/winserver2019-ps/neteventpacketcapture/Remove-NetEventVmSwitch.md b/docset/winserver2019-ps/neteventpacketcapture/Remove-NetEventVmSwitch.md index df7091f0d7..c986eaabfa 100644 --- a/docset/winserver2019-ps/neteventpacketcapture/Remove-NetEventVmSwitch.md +++ b/docset/winserver2019-ps/neteventpacketcapture/Remove-NetEventVmSwitch.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventVmSwitch.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventvmswitch?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventvmswitch?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetEventVmSwitch --- diff --git a/docset/winserver2019-ps/neteventpacketcapture/Remove-NetEventWFPCaptureProvider.md b/docset/winserver2019-ps/neteventpacketcapture/Remove-NetEventWFPCaptureProvider.md index e59c29cd07..67bb33eaa7 100644 --- a/docset/winserver2019-ps/neteventpacketcapture/Remove-NetEventWFPCaptureProvider.md +++ b/docset/winserver2019-ps/neteventpacketcapture/Remove-NetEventWFPCaptureProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventWFPCaptureProvider.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventwfpcaptureprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventwfpcaptureprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetEventWFPCaptureProvider --- diff --git a/docset/winserver2019-ps/neteventpacketcapture/Set-NetEventPacketCaptureProvider.md b/docset/winserver2019-ps/neteventpacketcapture/Set-NetEventPacketCaptureProvider.md index cb3537b25e..258541bd80 100644 --- a/docset/winserver2019-ps/neteventpacketcapture/Set-NetEventPacketCaptureProvider.md +++ b/docset/winserver2019-ps/neteventpacketcapture/Set-NetEventPacketCaptureProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventPacketCaptureProvider.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/set-neteventpacketcaptureprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/set-neteventpacketcaptureprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetEventPacketCaptureProvider --- diff --git a/docset/winserver2019-ps/neteventpacketcapture/Set-NetEventProvider.md b/docset/winserver2019-ps/neteventpacketcapture/Set-NetEventProvider.md index f6462dfc30..45481dfe2f 100644 --- a/docset/winserver2019-ps/neteventpacketcapture/Set-NetEventProvider.md +++ b/docset/winserver2019-ps/neteventpacketcapture/Set-NetEventProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventProvider.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/set-neteventprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/set-neteventprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetEventProvider --- diff --git a/docset/winserver2019-ps/neteventpacketcapture/Set-NetEventSession.md b/docset/winserver2019-ps/neteventpacketcapture/Set-NetEventSession.md index 44679ae219..6eefd77b71 100644 --- a/docset/winserver2019-ps/neteventpacketcapture/Set-NetEventSession.md +++ b/docset/winserver2019-ps/neteventpacketcapture/Set-NetEventSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventSession.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/set-neteventsession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/set-neteventsession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetEventSession --- diff --git a/docset/winserver2019-ps/neteventpacketcapture/Set-NetEventWFPCaptureProvider.md b/docset/winserver2019-ps/neteventpacketcapture/Set-NetEventWFPCaptureProvider.md index 7081a050be..88be62bd8e 100644 --- a/docset/winserver2019-ps/neteventpacketcapture/Set-NetEventWFPCaptureProvider.md +++ b/docset/winserver2019-ps/neteventpacketcapture/Set-NetEventWFPCaptureProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventWFPCaptureProvider.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/set-neteventwfpcaptureprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/set-neteventwfpcaptureprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetEventWFPCaptureProvider --- diff --git a/docset/winserver2019-ps/neteventpacketcapture/Start-NetEventSession.md b/docset/winserver2019-ps/neteventpacketcapture/Start-NetEventSession.md index 4ed136b5f8..1c02a3dcbf 100644 --- a/docset/winserver2019-ps/neteventpacketcapture/Start-NetEventSession.md +++ b/docset/winserver2019-ps/neteventpacketcapture/Start-NetEventSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventSession.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/start-neteventsession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/start-neteventsession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-NetEventSession --- diff --git a/docset/winserver2019-ps/neteventpacketcapture/Stop-NetEventSession.md b/docset/winserver2019-ps/neteventpacketcapture/Stop-NetEventSession.md index b2882b36cc..f9f6cae7df 100644 --- a/docset/winserver2019-ps/neteventpacketcapture/Stop-NetEventSession.md +++ b/docset/winserver2019-ps/neteventpacketcapture/Stop-NetEventSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventSession.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/stop-neteventsession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/stop-neteventsession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-NetEventSession --- diff --git a/docset/winserver2019-ps/netlbfo/Add-NetLbfoTeamMember.md b/docset/winserver2019-ps/netlbfo/Add-NetLbfoTeamMember.md index 723fd31726..c20def0827 100644 --- a/docset/winserver2019-ps/netlbfo/Add-NetLbfoTeamMember.md +++ b/docset/winserver2019-ps/netlbfo/Add-NetLbfoTeamMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetLbfoTeamMember.cdxml-help.xml Module Name: NetLbfo ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netlbfo/add-netlbfoteammember?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/add-netlbfoteammember?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NetLbfoTeamMember --- diff --git a/docset/winserver2019-ps/netlbfo/Add-NetLbfoTeamNic.md b/docset/winserver2019-ps/netlbfo/Add-NetLbfoTeamNic.md index 95aa7dbb53..29534dbb9b 100644 --- a/docset/winserver2019-ps/netlbfo/Add-NetLbfoTeamNic.md +++ b/docset/winserver2019-ps/netlbfo/Add-NetLbfoTeamNic.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetLbfoTeamNic.cdxml-help.xml Module Name: NetLbfo ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netlbfo/add-netlbfoteamnic?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/add-netlbfoteamnic?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NetLbfoTeamNic --- diff --git a/docset/winserver2019-ps/netlbfo/Get-NetLbfoTeam.md b/docset/winserver2019-ps/netlbfo/Get-NetLbfoTeam.md index b522250eb8..1a56c6ceda 100644 --- a/docset/winserver2019-ps/netlbfo/Get-NetLbfoTeam.md +++ b/docset/winserver2019-ps/netlbfo/Get-NetLbfoTeam.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetLbfoTeam.cdxml-help.xml Module Name: NetLbfo ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netlbfo/get-netlbfoteam?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/get-netlbfoteam?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetLbfoTeam --- diff --git a/docset/winserver2019-ps/netlbfo/Get-NetLbfoTeamMember.md b/docset/winserver2019-ps/netlbfo/Get-NetLbfoTeamMember.md index 1736509234..9039576acc 100644 --- a/docset/winserver2019-ps/netlbfo/Get-NetLbfoTeamMember.md +++ b/docset/winserver2019-ps/netlbfo/Get-NetLbfoTeamMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetLbfoTeamMember.cdxml-help.xml Module Name: NetLbfo ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netlbfo/get-netlbfoteammember?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/get-netlbfoteammember?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetLbfoTeamMember --- diff --git a/docset/winserver2019-ps/netlbfo/Get-NetLbfoTeamNic.md b/docset/winserver2019-ps/netlbfo/Get-NetLbfoTeamNic.md index 4d3b8570c1..7bdfc05ce7 100644 --- a/docset/winserver2019-ps/netlbfo/Get-NetLbfoTeamNic.md +++ b/docset/winserver2019-ps/netlbfo/Get-NetLbfoTeamNic.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetLbfoTeamNic.cdxml-help.xml Module Name: NetLbfo ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netlbfo/get-netlbfoteamnic?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/get-netlbfoteamnic?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetLbfoTeamNic --- diff --git a/docset/winserver2019-ps/netlbfo/New-NetLbfoTeam.md b/docset/winserver2019-ps/netlbfo/New-NetLbfoTeam.md index 0562920065..7349e3cdf8 100644 --- a/docset/winserver2019-ps/netlbfo/New-NetLbfoTeam.md +++ b/docset/winserver2019-ps/netlbfo/New-NetLbfoTeam.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetLbfoTeam.cdxml-help.xml Module Name: NetLbfo ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netlbfo/new-netlbfoteam?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/new-netlbfoteam?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetLbfoTeam --- diff --git a/docset/winserver2019-ps/netlbfo/Remove-NetLbfoTeam.md b/docset/winserver2019-ps/netlbfo/Remove-NetLbfoTeam.md index 882b927ded..e983d4216e 100644 --- a/docset/winserver2019-ps/netlbfo/Remove-NetLbfoTeam.md +++ b/docset/winserver2019-ps/netlbfo/Remove-NetLbfoTeam.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetLbfoTeam.cdxml-help.xml Module Name: NetLbfo ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netlbfo/remove-netlbfoteam?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/remove-netlbfoteam?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetLbfoTeam --- diff --git a/docset/winserver2019-ps/netlbfo/Remove-NetLbfoTeamMember.md b/docset/winserver2019-ps/netlbfo/Remove-NetLbfoTeamMember.md index a1db8d385e..59face2d71 100644 --- a/docset/winserver2019-ps/netlbfo/Remove-NetLbfoTeamMember.md +++ b/docset/winserver2019-ps/netlbfo/Remove-NetLbfoTeamMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetLbfoTeamMember.cdxml-help.xml Module Name: NetLbfo ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netlbfo/remove-netlbfoteammember?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/remove-netlbfoteammember?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetLbfoTeamMember --- diff --git a/docset/winserver2019-ps/netlbfo/Remove-NetLbfoTeamNic.md b/docset/winserver2019-ps/netlbfo/Remove-NetLbfoTeamNic.md index db3645d22a..f20768a570 100644 --- a/docset/winserver2019-ps/netlbfo/Remove-NetLbfoTeamNic.md +++ b/docset/winserver2019-ps/netlbfo/Remove-NetLbfoTeamNic.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetLbfoTeamNic.cdxml-help.xml Module Name: NetLbfo ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netlbfo/remove-netlbfoteamnic?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/remove-netlbfoteamnic?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetLbfoTeamNic --- diff --git a/docset/winserver2019-ps/netlbfo/Rename-NetLbfoTeam.md b/docset/winserver2019-ps/netlbfo/Rename-NetLbfoTeam.md index c11ed7a710..1dff7d8a72 100644 --- a/docset/winserver2019-ps/netlbfo/Rename-NetLbfoTeam.md +++ b/docset/winserver2019-ps/netlbfo/Rename-NetLbfoTeam.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetLbfoTeam.cdxml-help.xml Module Name: NetLbfo ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netlbfo/rename-netlbfoteam?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/rename-netlbfoteam?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-NetLbfoTeam --- diff --git a/docset/winserver2019-ps/netlbfo/Set-NetLbfoTeam.md b/docset/winserver2019-ps/netlbfo/Set-NetLbfoTeam.md index 83575bee00..f2faadbee2 100644 --- a/docset/winserver2019-ps/netlbfo/Set-NetLbfoTeam.md +++ b/docset/winserver2019-ps/netlbfo/Set-NetLbfoTeam.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetLbfoTeam.cdxml-help.xml Module Name: NetLbfo ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netlbfo/set-netlbfoteam?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/set-netlbfoteam?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetLbfoTeam --- diff --git a/docset/winserver2019-ps/netlbfo/Set-NetLbfoTeamMember.md b/docset/winserver2019-ps/netlbfo/Set-NetLbfoTeamMember.md index 40a61125c0..98772951e6 100644 --- a/docset/winserver2019-ps/netlbfo/Set-NetLbfoTeamMember.md +++ b/docset/winserver2019-ps/netlbfo/Set-NetLbfoTeamMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetLbfoTeamMember.cdxml-help.xml Module Name: NetLbfo ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netlbfo/set-netlbfoteammember?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/set-netlbfoteammember?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetLbfoTeamMember --- diff --git a/docset/winserver2019-ps/netlbfo/Set-NetLbfoTeamNic.md b/docset/winserver2019-ps/netlbfo/Set-NetLbfoTeamNic.md index 1fc276a5d4..e9136559d7 100644 --- a/docset/winserver2019-ps/netlbfo/Set-NetLbfoTeamNic.md +++ b/docset/winserver2019-ps/netlbfo/Set-NetLbfoTeamNic.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetLbfoTeamNic.cdxml-help.xml Module Name: NetLbfo ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netlbfo/set-netlbfoteamnic?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/set-netlbfoteamnic?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetLbfoTeamNic --- diff --git a/docset/winserver2019-ps/netlldpagent/Disable-NetLldpAgent.md b/docset/winserver2019-ps/netlldpagent/Disable-NetLldpAgent.md index dc8330a955..98493c0880 100644 --- a/docset/winserver2019-ps/netlldpagent/Disable-NetLldpAgent.md +++ b/docset/winserver2019-ps/netlldpagent/Disable-NetLldpAgent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetLldpAgent.cdxml-help.xml Module Name: NetLldpAgent ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netlldpagent/disable-netlldpagent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlldpagent/disable-netlldpagent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetLldpAgent --- diff --git a/docset/winserver2019-ps/netlldpagent/Enable-NetLldpAgent.md b/docset/winserver2019-ps/netlldpagent/Enable-NetLldpAgent.md index 8abb270e7c..12c036d5e0 100644 --- a/docset/winserver2019-ps/netlldpagent/Enable-NetLldpAgent.md +++ b/docset/winserver2019-ps/netlldpagent/Enable-NetLldpAgent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetLldpAgent.cdxml-help.xml Module Name: NetLldpAgent ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netlldpagent/enable-netlldpagent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlldpagent/enable-netlldpagent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetLldpAgent --- diff --git a/docset/winserver2019-ps/netlldpagent/Get-NetLldpAgent.md b/docset/winserver2019-ps/netlldpagent/Get-NetLldpAgent.md index 32b6116d8f..bb30b34ff9 100644 --- a/docset/winserver2019-ps/netlldpagent/Get-NetLldpAgent.md +++ b/docset/winserver2019-ps/netlldpagent/Get-NetLldpAgent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetLldpAgent.cdxml-help.xml Module Name: NetLldpAgent ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netlldpagent/get-netlldpagent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlldpagent/get-netlldpagent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetLldpAgent --- diff --git a/docset/winserver2019-ps/netnat/Add-NetNatExternalAddress.md b/docset/winserver2019-ps/netnat/Add-NetNatExternalAddress.md index 9d948ffbd0..272da20aa6 100644 --- a/docset/winserver2019-ps/netnat/Add-NetNatExternalAddress.md +++ b/docset/winserver2019-ps/netnat/Add-NetNatExternalAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNatExternalAddress.cdxml-help.xml Module Name: NetNat ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netnat/add-netnatexternaladdress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netnat/add-netnatexternaladdress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NetNatExternalAddress --- diff --git a/docset/winserver2019-ps/netnat/Add-NetNatStaticMapping.md b/docset/winserver2019-ps/netnat/Add-NetNatStaticMapping.md index 1bb7748414..07bb1a33e9 100644 --- a/docset/winserver2019-ps/netnat/Add-NetNatStaticMapping.md +++ b/docset/winserver2019-ps/netnat/Add-NetNatStaticMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNatStaticMapping.cdxml-help.xml Module Name: NetNat ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netnat/add-netnatstaticmapping?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netnat/add-netnatstaticmapping?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NetNatStaticMapping --- diff --git a/docset/winserver2019-ps/netnat/Get-NetNat.md b/docset/winserver2019-ps/netnat/Get-NetNat.md index 342170b9c2..d7d5c7f826 100644 --- a/docset/winserver2019-ps/netnat/Get-NetNat.md +++ b/docset/winserver2019-ps/netnat/Get-NetNat.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNat.cdxml-help.xml Module Name: NetNat ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netnat/get-netnat?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netnat/get-netnat?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetNat --- diff --git a/docset/winserver2019-ps/netnat/Get-NetNatExternalAddress.md b/docset/winserver2019-ps/netnat/Get-NetNatExternalAddress.md index b7ebf02afe..4f4367acd2 100644 --- a/docset/winserver2019-ps/netnat/Get-NetNatExternalAddress.md +++ b/docset/winserver2019-ps/netnat/Get-NetNatExternalAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNatExternalAddress.cdxml-help.xml Module Name: NetNat ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netnat/get-netnatexternaladdress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netnat/get-netnatexternaladdress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetNatExternalAddress --- diff --git a/docset/winserver2019-ps/netnat/Get-NetNatGlobal.md b/docset/winserver2019-ps/netnat/Get-NetNatGlobal.md index 905fedda28..d10ef3ed98 100644 --- a/docset/winserver2019-ps/netnat/Get-NetNatGlobal.md +++ b/docset/winserver2019-ps/netnat/Get-NetNatGlobal.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNatGlobal.cdxml-help.xml Module Name: NetNat ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netnat/get-netnatglobal?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netnat/get-netnatglobal?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetNatGlobal --- diff --git a/docset/winserver2019-ps/netnat/Get-NetNatSession.md b/docset/winserver2019-ps/netnat/Get-NetNatSession.md index 9e5889bb6a..ded8db6c14 100644 --- a/docset/winserver2019-ps/netnat/Get-NetNatSession.md +++ b/docset/winserver2019-ps/netnat/Get-NetNatSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNatSession.cdxml-help.xml Module Name: NetNat ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netnat/get-netnatsession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netnat/get-netnatsession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetNatSession --- diff --git a/docset/winserver2019-ps/netnat/Get-NetNatStaticMapping.md b/docset/winserver2019-ps/netnat/Get-NetNatStaticMapping.md index 6cd52b2f89..a51e11d6e3 100644 --- a/docset/winserver2019-ps/netnat/Get-NetNatStaticMapping.md +++ b/docset/winserver2019-ps/netnat/Get-NetNatStaticMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNatStaticMapping.cdxml-help.xml Module Name: NetNat ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netnat/get-netnatstaticmapping?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netnat/get-netnatstaticmapping?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetNatStaticMapping --- diff --git a/docset/winserver2019-ps/netnat/New-NetNat.md b/docset/winserver2019-ps/netnat/New-NetNat.md index af245bb85b..145818c1ec 100644 --- a/docset/winserver2019-ps/netnat/New-NetNat.md +++ b/docset/winserver2019-ps/netnat/New-NetNat.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNat.cdxml-help.xml Module Name: NetNat ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netnat/new-netnat?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netnat/new-netnat?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetNat --- diff --git a/docset/winserver2019-ps/netnat/Remove-NetNat.md b/docset/winserver2019-ps/netnat/Remove-NetNat.md index b6404c8d47..422764e2fa 100644 --- a/docset/winserver2019-ps/netnat/Remove-NetNat.md +++ b/docset/winserver2019-ps/netnat/Remove-NetNat.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNat.cdxml-help.xml Module Name: NetNat ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netnat/remove-netnat?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netnat/remove-netnat?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetNat --- diff --git a/docset/winserver2019-ps/netnat/Remove-NetNatExternalAddress.md b/docset/winserver2019-ps/netnat/Remove-NetNatExternalAddress.md index 89c7f978b3..96b193f63a 100644 --- a/docset/winserver2019-ps/netnat/Remove-NetNatExternalAddress.md +++ b/docset/winserver2019-ps/netnat/Remove-NetNatExternalAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNatExternalAddress.cdxml-help.xml Module Name: NetNat ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netnat/remove-netnatexternaladdress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netnat/remove-netnatexternaladdress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetNatExternalAddress --- diff --git a/docset/winserver2019-ps/netnat/Remove-NetNatStaticMapping.md b/docset/winserver2019-ps/netnat/Remove-NetNatStaticMapping.md index 75b5b9b274..1090f3c744 100644 --- a/docset/winserver2019-ps/netnat/Remove-NetNatStaticMapping.md +++ b/docset/winserver2019-ps/netnat/Remove-NetNatStaticMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNatStaticMapping.cdxml-help.xml Module Name: NetNat ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netnat/remove-netnatstaticmapping?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netnat/remove-netnatstaticmapping?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetNatStaticMapping --- diff --git a/docset/winserver2019-ps/netnat/Set-NetNat.md b/docset/winserver2019-ps/netnat/Set-NetNat.md index 8e7bea440c..041e82d061 100644 --- a/docset/winserver2019-ps/netnat/Set-NetNat.md +++ b/docset/winserver2019-ps/netnat/Set-NetNat.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNat.cdxml-help.xml Module Name: NetNat ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netnat/set-netnat?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netnat/set-netnat?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetNat --- diff --git a/docset/winserver2019-ps/netnat/Set-NetNatGlobal.md b/docset/winserver2019-ps/netnat/Set-NetNatGlobal.md index ed31683449..0c2ddd6f9a 100644 --- a/docset/winserver2019-ps/netnat/Set-NetNatGlobal.md +++ b/docset/winserver2019-ps/netnat/Set-NetNatGlobal.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNatGlobal.cdxml-help.xml Module Name: NetNat ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netnat/set-netnatglobal?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netnat/set-netnatglobal?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetNatGlobal --- diff --git a/docset/winserver2019-ps/netqos/Get-NetQosPolicy.md b/docset/winserver2019-ps/netqos/Get-NetQosPolicy.md index 754da4f7c4..91bf03d4e8 100644 --- a/docset/winserver2019-ps/netqos/Get-NetQosPolicy.md +++ b/docset/winserver2019-ps/netqos/Get-NetQosPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetQosPolicy.cdxml-help.xml Module Name: NetQoS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netqos/get-netqospolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netqos/get-netqospolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetQosPolicy --- diff --git a/docset/winserver2019-ps/netqos/New-NetQosPolicy.md b/docset/winserver2019-ps/netqos/New-NetQosPolicy.md index 4cdcd9a669..763e13a173 100644 --- a/docset/winserver2019-ps/netqos/New-NetQosPolicy.md +++ b/docset/winserver2019-ps/netqos/New-NetQosPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetQosPolicy.cdxml-help.xml Module Name: NetQoS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netqos/new-netqospolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netqos/new-netqospolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetQosPolicy --- diff --git a/docset/winserver2019-ps/netqos/Remove-NetQosPolicy.md b/docset/winserver2019-ps/netqos/Remove-NetQosPolicy.md index 870fec823f..764e4df459 100644 --- a/docset/winserver2019-ps/netqos/Remove-NetQosPolicy.md +++ b/docset/winserver2019-ps/netqos/Remove-NetQosPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetQosPolicy.cdxml-help.xml Module Name: NetQoS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netqos/remove-netqospolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netqos/remove-netqospolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetQosPolicy --- diff --git a/docset/winserver2019-ps/netqos/Set-NetQosPolicy.md b/docset/winserver2019-ps/netqos/Set-NetQosPolicy.md index 19f48c16aa..c716a13199 100644 --- a/docset/winserver2019-ps/netqos/Set-NetQosPolicy.md +++ b/docset/winserver2019-ps/netqos/Set-NetQosPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetQosPolicy.cdxml-help.xml Module Name: NetQoS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netqos/set-netqospolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netqos/set-netqospolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetQosPolicy --- diff --git a/docset/winserver2019-ps/netsecurity/Copy-NetFirewallRule.md b/docset/winserver2019-ps/netsecurity/Copy-NetFirewallRule.md index a897915513..4f521fef80 100644 --- a/docset/winserver2019-ps/netsecurity/Copy-NetFirewallRule.md +++ b/docset/winserver2019-ps/netsecurity/Copy-NetFirewallRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/copy-netfirewallrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/copy-netfirewallrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Copy-NetFirewallRule --- diff --git a/docset/winserver2019-ps/netsecurity/Copy-NetIPsecMainModeCryptoSet.md b/docset/winserver2019-ps/netsecurity/Copy-NetIPsecMainModeCryptoSet.md index ab6701063e..c300cea65f 100644 --- a/docset/winserver2019-ps/netsecurity/Copy-NetIPsecMainModeCryptoSet.md +++ b/docset/winserver2019-ps/netsecurity/Copy-NetIPsecMainModeCryptoSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecMainModeCryptoSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/copy-netipsecmainmodecryptoset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/copy-netipsecmainmodecryptoset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Copy-NetIPsecMainModeCryptoSet --- diff --git a/docset/winserver2019-ps/netsecurity/Copy-NetIPsecMainModeRule.md b/docset/winserver2019-ps/netsecurity/Copy-NetIPsecMainModeRule.md index 748160bd60..ae584b9f4b 100644 --- a/docset/winserver2019-ps/netsecurity/Copy-NetIPsecMainModeRule.md +++ b/docset/winserver2019-ps/netsecurity/Copy-NetIPsecMainModeRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecMainModeRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/copy-netipsecmainmoderule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/copy-netipsecmainmoderule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Copy-NetIPsecMainModeRule --- diff --git a/docset/winserver2019-ps/netsecurity/Copy-NetIPsecPhase1AuthSet.md b/docset/winserver2019-ps/netsecurity/Copy-NetIPsecPhase1AuthSet.md index 9fb331f273..482b559a13 100644 --- a/docset/winserver2019-ps/netsecurity/Copy-NetIPsecPhase1AuthSet.md +++ b/docset/winserver2019-ps/netsecurity/Copy-NetIPsecPhase1AuthSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecPhase1AuthSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/copy-netipsecphase1authset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/copy-netipsecphase1authset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Copy-NetIPsecPhase1AuthSet --- diff --git a/docset/winserver2019-ps/netsecurity/Copy-NetIPsecPhase2AuthSet.md b/docset/winserver2019-ps/netsecurity/Copy-NetIPsecPhase2AuthSet.md index e9a6c59989..987b3cf9e0 100644 --- a/docset/winserver2019-ps/netsecurity/Copy-NetIPsecPhase2AuthSet.md +++ b/docset/winserver2019-ps/netsecurity/Copy-NetIPsecPhase2AuthSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecPhase2AuthSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/copy-netipsecphase2authset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/copy-netipsecphase2authset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Copy-NetIPsecPhase2AuthSet --- diff --git a/docset/winserver2019-ps/netsecurity/Copy-NetIPsecQuickModeCryptoSet.md b/docset/winserver2019-ps/netsecurity/Copy-NetIPsecQuickModeCryptoSet.md index 38490f117e..a01144da9b 100644 --- a/docset/winserver2019-ps/netsecurity/Copy-NetIPsecQuickModeCryptoSet.md +++ b/docset/winserver2019-ps/netsecurity/Copy-NetIPsecQuickModeCryptoSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecQuickModeCryptoSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/copy-netipsecquickmodecryptoset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/copy-netipsecquickmodecryptoset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Copy-NetIPsecQuickModeCryptoSet --- diff --git a/docset/winserver2019-ps/netsecurity/Copy-NetIPsecRule.md b/docset/winserver2019-ps/netsecurity/Copy-NetIPsecRule.md index 6a7c51532d..ae8236fa3d 100644 --- a/docset/winserver2019-ps/netsecurity/Copy-NetIPsecRule.md +++ b/docset/winserver2019-ps/netsecurity/Copy-NetIPsecRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/copy-netipsecrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/copy-netipsecrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Copy-NetIPsecRule --- diff --git a/docset/winserver2019-ps/netsecurity/Disable-NetFirewallRule.md b/docset/winserver2019-ps/netsecurity/Disable-NetFirewallRule.md index 266c4d3ad0..9536ae0574 100644 --- a/docset/winserver2019-ps/netsecurity/Disable-NetFirewallRule.md +++ b/docset/winserver2019-ps/netsecurity/Disable-NetFirewallRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/disable-netfirewallrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/disable-netfirewallrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetFirewallRule --- diff --git a/docset/winserver2019-ps/netsecurity/Disable-NetIPsecMainModeRule.md b/docset/winserver2019-ps/netsecurity/Disable-NetIPsecMainModeRule.md index fa27312e2b..40a52c680d 100644 --- a/docset/winserver2019-ps/netsecurity/Disable-NetIPsecMainModeRule.md +++ b/docset/winserver2019-ps/netsecurity/Disable-NetIPsecMainModeRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecMainModeRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/disable-netipsecmainmoderule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/disable-netipsecmainmoderule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetIPsecMainModeRule --- diff --git a/docset/winserver2019-ps/netsecurity/Disable-NetIPsecRule.md b/docset/winserver2019-ps/netsecurity/Disable-NetIPsecRule.md index 3b1688cc4c..60908ccdb7 100644 --- a/docset/winserver2019-ps/netsecurity/Disable-NetIPsecRule.md +++ b/docset/winserver2019-ps/netsecurity/Disable-NetIPsecRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/disable-netipsecrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/disable-netipsecrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetIPsecRule --- diff --git a/docset/winserver2019-ps/netsecurity/Enable-NetFirewallRule.md b/docset/winserver2019-ps/netsecurity/Enable-NetFirewallRule.md index 4acc0a0243..f7ce879ec8 100644 --- a/docset/winserver2019-ps/netsecurity/Enable-NetFirewallRule.md +++ b/docset/winserver2019-ps/netsecurity/Enable-NetFirewallRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/enable-netfirewallrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/enable-netfirewallrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetFirewallRule --- diff --git a/docset/winserver2019-ps/netsecurity/Enable-NetIPsecMainModeRule.md b/docset/winserver2019-ps/netsecurity/Enable-NetIPsecMainModeRule.md index 7a23b75dcf..28474cdfb4 100644 --- a/docset/winserver2019-ps/netsecurity/Enable-NetIPsecMainModeRule.md +++ b/docset/winserver2019-ps/netsecurity/Enable-NetIPsecMainModeRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecMainModeRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/enable-netipsecmainmoderule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/enable-netipsecmainmoderule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetIPsecMainModeRule --- diff --git a/docset/winserver2019-ps/netsecurity/Enable-NetIPsecRule.md b/docset/winserver2019-ps/netsecurity/Enable-NetIPsecRule.md index d308d15af0..0e4cb6e297 100644 --- a/docset/winserver2019-ps/netsecurity/Enable-NetIPsecRule.md +++ b/docset/winserver2019-ps/netsecurity/Enable-NetIPsecRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/enable-netipsecrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/enable-netipsecrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetIPsecRule --- diff --git a/docset/winserver2019-ps/netsecurity/Find-NetIPsecRule.md b/docset/winserver2019-ps/netsecurity/Find-NetIPsecRule.md index 04cfffd198..673a928f53 100644 --- a/docset/winserver2019-ps/netsecurity/Find-NetIPsecRule.md +++ b/docset/winserver2019-ps/netsecurity/Find-NetIPsecRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/find-netipsecrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/find-netipsecrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Find-NetIPsecRule --- diff --git a/docset/winserver2019-ps/netsecurity/Get-DAPolicyChange.md b/docset/winserver2019-ps/netsecurity/Get-DAPolicyChange.md index 663d5880be..e129ef990f 100644 --- a/docset/winserver2019-ps/netsecurity/Get-DAPolicyChange.md +++ b/docset/winserver2019-ps/netsecurity/Get-DAPolicyChange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Firewall.Commands.dll-Help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-dapolicychange?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-dapolicychange?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DAPolicyChange --- diff --git a/docset/winserver2019-ps/netsecurity/Get-NetFirewallAddressFilter.md b/docset/winserver2019-ps/netsecurity/Get-NetFirewallAddressFilter.md index b204e2c900..5435638882 100644 --- a/docset/winserver2019-ps/netsecurity/Get-NetFirewallAddressFilter.md +++ b/docset/winserver2019-ps/netsecurity/Get-NetFirewallAddressFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallAddressFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewalladdressfilter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netfirewalladdressfilter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetFirewallAddressFilter --- diff --git a/docset/winserver2019-ps/netsecurity/Get-NetFirewallApplicationFilter.md b/docset/winserver2019-ps/netsecurity/Get-NetFirewallApplicationFilter.md index 86d405b80c..0591f9b7ed 100644 --- a/docset/winserver2019-ps/netsecurity/Get-NetFirewallApplicationFilter.md +++ b/docset/winserver2019-ps/netsecurity/Get-NetFirewallApplicationFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallApplicationFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewallapplicationfilter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netfirewallapplicationfilter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetFirewallApplicationFilter --- diff --git a/docset/winserver2019-ps/netsecurity/Get-NetFirewallInterfaceFilter.md b/docset/winserver2019-ps/netsecurity/Get-NetFirewallInterfaceFilter.md index e326c265e3..88d0dc48c8 100644 --- a/docset/winserver2019-ps/netsecurity/Get-NetFirewallInterfaceFilter.md +++ b/docset/winserver2019-ps/netsecurity/Get-NetFirewallInterfaceFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallInterfaceFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewallinterfacefilter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netfirewallinterfacefilter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetFirewallInterfaceFilter --- diff --git a/docset/winserver2019-ps/netsecurity/Get-NetFirewallInterfaceTypeFilter.md b/docset/winserver2019-ps/netsecurity/Get-NetFirewallInterfaceTypeFilter.md index c4d1d0b4f6..cef341b0b7 100644 --- a/docset/winserver2019-ps/netsecurity/Get-NetFirewallInterfaceTypeFilter.md +++ b/docset/winserver2019-ps/netsecurity/Get-NetFirewallInterfaceTypeFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallInterfaceTypeFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewallinterfacetypefilter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netfirewallinterfacetypefilter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetFirewallInterfaceTypeFilter --- diff --git a/docset/winserver2019-ps/netsecurity/Get-NetFirewallPortFilter.md b/docset/winserver2019-ps/netsecurity/Get-NetFirewallPortFilter.md index d4ca991925..7d1e132c39 100644 --- a/docset/winserver2019-ps/netsecurity/Get-NetFirewallPortFilter.md +++ b/docset/winserver2019-ps/netsecurity/Get-NetFirewallPortFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallPortFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewallportfilter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netfirewallportfilter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetFirewallPortFilter --- diff --git a/docset/winserver2019-ps/netsecurity/Get-NetFirewallProfile.md b/docset/winserver2019-ps/netsecurity/Get-NetFirewallProfile.md index 3133f6e6f3..38a1e8ff50 100644 --- a/docset/winserver2019-ps/netsecurity/Get-NetFirewallProfile.md +++ b/docset/winserver2019-ps/netsecurity/Get-NetFirewallProfile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallProfile.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewallprofile?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netfirewallprofile?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetFirewallProfile --- diff --git a/docset/winserver2019-ps/netsecurity/Get-NetFirewallRule.md b/docset/winserver2019-ps/netsecurity/Get-NetFirewallRule.md index f86276935e..f2ad495149 100644 --- a/docset/winserver2019-ps/netsecurity/Get-NetFirewallRule.md +++ b/docset/winserver2019-ps/netsecurity/Get-NetFirewallRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewallrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netfirewallrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetFirewallRule --- diff --git a/docset/winserver2019-ps/netsecurity/Get-NetFirewallSecurityFilter.md b/docset/winserver2019-ps/netsecurity/Get-NetFirewallSecurityFilter.md index f63206cdbf..3a33102dde 100644 --- a/docset/winserver2019-ps/netsecurity/Get-NetFirewallSecurityFilter.md +++ b/docset/winserver2019-ps/netsecurity/Get-NetFirewallSecurityFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallSecurityFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewallsecurityfilter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netfirewallsecurityfilter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetFirewallSecurityFilter --- diff --git a/docset/winserver2019-ps/netsecurity/Get-NetFirewallServiceFilter.md b/docset/winserver2019-ps/netsecurity/Get-NetFirewallServiceFilter.md index 1f16a40631..faca1774a3 100644 --- a/docset/winserver2019-ps/netsecurity/Get-NetFirewallServiceFilter.md +++ b/docset/winserver2019-ps/netsecurity/Get-NetFirewallServiceFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallServiceFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewallservicefilter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netfirewallservicefilter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetFirewallServiceFilter --- diff --git a/docset/winserver2019-ps/netsecurity/Get-NetFirewallSetting.md b/docset/winserver2019-ps/netsecurity/Get-NetFirewallSetting.md index de56d024ad..5eeacbfcf0 100644 --- a/docset/winserver2019-ps/netsecurity/Get-NetFirewallSetting.md +++ b/docset/winserver2019-ps/netsecurity/Get-NetFirewallSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallSetting.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewallsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netfirewallsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetFirewallSetting --- diff --git a/docset/winserver2019-ps/netsecurity/Get-NetIPsecDospSetting.md b/docset/winserver2019-ps/netsecurity/Get-NetIPsecDospSetting.md index 7a58fa5fb3..609e004893 100644 --- a/docset/winserver2019-ps/netsecurity/Get-NetIPsecDospSetting.md +++ b/docset/winserver2019-ps/netsecurity/Get-NetIPsecDospSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecDospSetting.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netipsecdospsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netipsecdospsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPsecDospSetting --- diff --git a/docset/winserver2019-ps/netsecurity/Get-NetIPsecMainModeCryptoSet.md b/docset/winserver2019-ps/netsecurity/Get-NetIPsecMainModeCryptoSet.md index 870fbebeb6..328bd18950 100644 --- a/docset/winserver2019-ps/netsecurity/Get-NetIPsecMainModeCryptoSet.md +++ b/docset/winserver2019-ps/netsecurity/Get-NetIPsecMainModeCryptoSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecMainModeCryptoSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netipsecmainmodecryptoset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netipsecmainmodecryptoset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPsecMainModeCryptoSet --- diff --git a/docset/winserver2019-ps/netsecurity/Get-NetIPsecMainModeRule.md b/docset/winserver2019-ps/netsecurity/Get-NetIPsecMainModeRule.md index dfab66c479..f3a54e3ca5 100644 --- a/docset/winserver2019-ps/netsecurity/Get-NetIPsecMainModeRule.md +++ b/docset/winserver2019-ps/netsecurity/Get-NetIPsecMainModeRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecMainModeRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netipsecmainmoderule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netipsecmainmoderule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPsecMainModeRule --- diff --git a/docset/winserver2019-ps/netsecurity/Get-NetIPsecMainModeSA.md b/docset/winserver2019-ps/netsecurity/Get-NetIPsecMainModeSA.md index 48d609a7d2..6407921e5f 100644 --- a/docset/winserver2019-ps/netsecurity/Get-NetIPsecMainModeSA.md +++ b/docset/winserver2019-ps/netsecurity/Get-NetIPsecMainModeSA.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecMainModeSA.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netipsecmainmodesa?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netipsecmainmodesa?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPsecMainModeSA --- diff --git a/docset/winserver2019-ps/netsecurity/Get-NetIPsecPhase1AuthSet.md b/docset/winserver2019-ps/netsecurity/Get-NetIPsecPhase1AuthSet.md index 90f35d1609..9a5912da20 100644 --- a/docset/winserver2019-ps/netsecurity/Get-NetIPsecPhase1AuthSet.md +++ b/docset/winserver2019-ps/netsecurity/Get-NetIPsecPhase1AuthSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecPhase1AuthSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netipsecphase1authset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netipsecphase1authset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPsecPhase1AuthSet --- diff --git a/docset/winserver2019-ps/netsecurity/Get-NetIPsecPhase2AuthSet.md b/docset/winserver2019-ps/netsecurity/Get-NetIPsecPhase2AuthSet.md index 43ea7e9790..2d95ce5a59 100644 --- a/docset/winserver2019-ps/netsecurity/Get-NetIPsecPhase2AuthSet.md +++ b/docset/winserver2019-ps/netsecurity/Get-NetIPsecPhase2AuthSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecPhase2AuthSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netipsecphase2authset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netipsecphase2authset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPsecPhase2AuthSet --- diff --git a/docset/winserver2019-ps/netsecurity/Get-NetIPsecQuickModeCryptoSet.md b/docset/winserver2019-ps/netsecurity/Get-NetIPsecQuickModeCryptoSet.md index cf437c5c79..2744088599 100644 --- a/docset/winserver2019-ps/netsecurity/Get-NetIPsecQuickModeCryptoSet.md +++ b/docset/winserver2019-ps/netsecurity/Get-NetIPsecQuickModeCryptoSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecQuickModeCryptoSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netipsecquickmodecryptoset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netipsecquickmodecryptoset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPsecQuickModeCryptoSet --- diff --git a/docset/winserver2019-ps/netsecurity/Get-NetIPsecQuickModeSA.md b/docset/winserver2019-ps/netsecurity/Get-NetIPsecQuickModeSA.md index e0d9e83377..4d6ac6082c 100644 --- a/docset/winserver2019-ps/netsecurity/Get-NetIPsecQuickModeSA.md +++ b/docset/winserver2019-ps/netsecurity/Get-NetIPsecQuickModeSA.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecQuickModeSA.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netipsecquickmodesa?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netipsecquickmodesa?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPsecQuickModeSA --- diff --git a/docset/winserver2019-ps/netsecurity/Get-NetIPsecRule.md b/docset/winserver2019-ps/netsecurity/Get-NetIPsecRule.md index 28a1260a43..d1c3d054b3 100644 --- a/docset/winserver2019-ps/netsecurity/Get-NetIPsecRule.md +++ b/docset/winserver2019-ps/netsecurity/Get-NetIPsecRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netipsecrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netipsecrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPsecRule --- diff --git a/docset/winserver2019-ps/netsecurity/New-NetFirewallRule.md b/docset/winserver2019-ps/netsecurity/New-NetFirewallRule.md index 31fea09a4f..c4339ed36f 100644 --- a/docset/winserver2019-ps/netsecurity/New-NetFirewallRule.md +++ b/docset/winserver2019-ps/netsecurity/New-NetFirewallRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netfirewallrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netfirewallrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetFirewallRule --- diff --git a/docset/winserver2019-ps/netsecurity/New-NetIPsecAuthProposal.md b/docset/winserver2019-ps/netsecurity/New-NetIPsecAuthProposal.md index 2c23e0f855..a69c82d3ff 100644 --- a/docset/winserver2019-ps/netsecurity/New-NetIPsecAuthProposal.md +++ b/docset/winserver2019-ps/netsecurity/New-NetIPsecAuthProposal.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Firewall.Commands.dll-Help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netipsecauthproposal?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netipsecauthproposal?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetIPsecAuthProposal --- diff --git a/docset/winserver2019-ps/netsecurity/New-NetIPsecDospSetting.md b/docset/winserver2019-ps/netsecurity/New-NetIPsecDospSetting.md index edd43d8094..a395acf511 100644 --- a/docset/winserver2019-ps/netsecurity/New-NetIPsecDospSetting.md +++ b/docset/winserver2019-ps/netsecurity/New-NetIPsecDospSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecDospSetting.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netipsecdospsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netipsecdospsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetIPsecDospSetting --- diff --git a/docset/winserver2019-ps/netsecurity/New-NetIPsecMainModeCryptoProposal.md b/docset/winserver2019-ps/netsecurity/New-NetIPsecMainModeCryptoProposal.md index 7f467bd40f..97171788f4 100644 --- a/docset/winserver2019-ps/netsecurity/New-NetIPsecMainModeCryptoProposal.md +++ b/docset/winserver2019-ps/netsecurity/New-NetIPsecMainModeCryptoProposal.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Firewall.Commands.dll-Help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netipsecmainmodecryptoproposal?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netipsecmainmodecryptoproposal?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetIPsecMainModeCryptoProposal --- diff --git a/docset/winserver2019-ps/netsecurity/New-NetIPsecMainModeCryptoSet.md b/docset/winserver2019-ps/netsecurity/New-NetIPsecMainModeCryptoSet.md index b9adad217f..861c72f982 100644 --- a/docset/winserver2019-ps/netsecurity/New-NetIPsecMainModeCryptoSet.md +++ b/docset/winserver2019-ps/netsecurity/New-NetIPsecMainModeCryptoSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecMainModeCryptoSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netipsecmainmodecryptoset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netipsecmainmodecryptoset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetIPsecMainModeCryptoSet --- diff --git a/docset/winserver2019-ps/netsecurity/New-NetIPsecMainModeRule.md b/docset/winserver2019-ps/netsecurity/New-NetIPsecMainModeRule.md index 523ffd226d..55bab8fa37 100644 --- a/docset/winserver2019-ps/netsecurity/New-NetIPsecMainModeRule.md +++ b/docset/winserver2019-ps/netsecurity/New-NetIPsecMainModeRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecMainModeRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netipsecmainmoderule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netipsecmainmoderule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetIPsecMainModeRule --- diff --git a/docset/winserver2019-ps/netsecurity/New-NetIPsecPhase1AuthSet.md b/docset/winserver2019-ps/netsecurity/New-NetIPsecPhase1AuthSet.md index b15bd7d943..ad55dfef24 100644 --- a/docset/winserver2019-ps/netsecurity/New-NetIPsecPhase1AuthSet.md +++ b/docset/winserver2019-ps/netsecurity/New-NetIPsecPhase1AuthSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecPhase1AuthSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netipsecphase1authset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netipsecphase1authset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetIPsecPhase1AuthSet --- diff --git a/docset/winserver2019-ps/netsecurity/New-NetIPsecPhase2AuthSet.md b/docset/winserver2019-ps/netsecurity/New-NetIPsecPhase2AuthSet.md index 350f1f4571..17f81575e4 100644 --- a/docset/winserver2019-ps/netsecurity/New-NetIPsecPhase2AuthSet.md +++ b/docset/winserver2019-ps/netsecurity/New-NetIPsecPhase2AuthSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecPhase2AuthSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netipsecphase2authset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netipsecphase2authset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetIPsecPhase2AuthSet --- diff --git a/docset/winserver2019-ps/netsecurity/New-NetIPsecQuickModeCryptoProposal.md b/docset/winserver2019-ps/netsecurity/New-NetIPsecQuickModeCryptoProposal.md index 946a70e280..2f338ee882 100644 --- a/docset/winserver2019-ps/netsecurity/New-NetIPsecQuickModeCryptoProposal.md +++ b/docset/winserver2019-ps/netsecurity/New-NetIPsecQuickModeCryptoProposal.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Firewall.Commands.dll-Help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netipsecquickmodecryptoproposal?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netipsecquickmodecryptoproposal?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetIPsecQuickModeCryptoProposal --- diff --git a/docset/winserver2019-ps/netsecurity/New-NetIPsecQuickModeCryptoSet.md b/docset/winserver2019-ps/netsecurity/New-NetIPsecQuickModeCryptoSet.md index 011bbf4a2e..1fe43cd17c 100644 --- a/docset/winserver2019-ps/netsecurity/New-NetIPsecQuickModeCryptoSet.md +++ b/docset/winserver2019-ps/netsecurity/New-NetIPsecQuickModeCryptoSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecQuickModeCryptoSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netipsecquickmodecryptoset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netipsecquickmodecryptoset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetIPsecQuickModeCryptoSet --- diff --git a/docset/winserver2019-ps/netsecurity/New-NetIPsecRule.md b/docset/winserver2019-ps/netsecurity/New-NetIPsecRule.md index ff25875ec2..4945a50d1c 100644 --- a/docset/winserver2019-ps/netsecurity/New-NetIPsecRule.md +++ b/docset/winserver2019-ps/netsecurity/New-NetIPsecRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netipsecrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netipsecrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetIPsecRule --- diff --git a/docset/winserver2019-ps/netsecurity/Open-NetGPO.md b/docset/winserver2019-ps/netsecurity/Open-NetGPO.md index 72759a4eed..394f1cea3c 100644 --- a/docset/winserver2019-ps/netsecurity/Open-NetGPO.md +++ b/docset/winserver2019-ps/netsecurity/Open-NetGPO.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetGPO.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/open-netgpo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/open-netgpo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Open-NetGPO --- diff --git a/docset/winserver2019-ps/netsecurity/Remove-NetFirewallRule.md b/docset/winserver2019-ps/netsecurity/Remove-NetFirewallRule.md index 166e744159..4f81b6d855 100644 --- a/docset/winserver2019-ps/netsecurity/Remove-NetFirewallRule.md +++ b/docset/winserver2019-ps/netsecurity/Remove-NetFirewallRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/remove-netfirewallrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/remove-netfirewallrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetFirewallRule --- diff --git a/docset/winserver2019-ps/netsecurity/Remove-NetIPsecDospSetting.md b/docset/winserver2019-ps/netsecurity/Remove-NetIPsecDospSetting.md index 1a62520515..4bf3cb367c 100644 --- a/docset/winserver2019-ps/netsecurity/Remove-NetIPsecDospSetting.md +++ b/docset/winserver2019-ps/netsecurity/Remove-NetIPsecDospSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecDospSetting.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/remove-netipsecdospsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/remove-netipsecdospsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetIPsecDospSetting --- diff --git a/docset/winserver2019-ps/netsecurity/Remove-NetIPsecMainModeCryptoSet.md b/docset/winserver2019-ps/netsecurity/Remove-NetIPsecMainModeCryptoSet.md index 5247c4c9cb..dbd6c2200a 100644 --- a/docset/winserver2019-ps/netsecurity/Remove-NetIPsecMainModeCryptoSet.md +++ b/docset/winserver2019-ps/netsecurity/Remove-NetIPsecMainModeCryptoSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecMainModeCryptoSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/remove-netipsecmainmodecryptoset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/remove-netipsecmainmodecryptoset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetIPsecMainModeCryptoSet --- diff --git a/docset/winserver2019-ps/netsecurity/Remove-NetIPsecMainModeRule.md b/docset/winserver2019-ps/netsecurity/Remove-NetIPsecMainModeRule.md index cdf13e67d1..dbf1bed5f3 100644 --- a/docset/winserver2019-ps/netsecurity/Remove-NetIPsecMainModeRule.md +++ b/docset/winserver2019-ps/netsecurity/Remove-NetIPsecMainModeRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecMainModeRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/remove-netipsecmainmoderule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/remove-netipsecmainmoderule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetIPsecMainModeRule --- diff --git a/docset/winserver2019-ps/netsecurity/Remove-NetIPsecMainModeSA.md b/docset/winserver2019-ps/netsecurity/Remove-NetIPsecMainModeSA.md index aeeacef4bc..590f73bd93 100644 --- a/docset/winserver2019-ps/netsecurity/Remove-NetIPsecMainModeSA.md +++ b/docset/winserver2019-ps/netsecurity/Remove-NetIPsecMainModeSA.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecMainModeSA.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/remove-netipsecmainmodesa?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/remove-netipsecmainmodesa?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetIPsecMainModeSA --- diff --git a/docset/winserver2019-ps/netsecurity/Remove-NetIPsecPhase1AuthSet.md b/docset/winserver2019-ps/netsecurity/Remove-NetIPsecPhase1AuthSet.md index b024a819b4..ad4b3c32b3 100644 --- a/docset/winserver2019-ps/netsecurity/Remove-NetIPsecPhase1AuthSet.md +++ b/docset/winserver2019-ps/netsecurity/Remove-NetIPsecPhase1AuthSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecPhase1AuthSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/remove-netipsecphase1authset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/remove-netipsecphase1authset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetIPsecPhase1AuthSet --- diff --git a/docset/winserver2019-ps/netsecurity/Remove-NetIPsecPhase2AuthSet.md b/docset/winserver2019-ps/netsecurity/Remove-NetIPsecPhase2AuthSet.md index c028142951..6ecce256c5 100644 --- a/docset/winserver2019-ps/netsecurity/Remove-NetIPsecPhase2AuthSet.md +++ b/docset/winserver2019-ps/netsecurity/Remove-NetIPsecPhase2AuthSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecPhase2AuthSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/remove-netipsecphase2authset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/remove-netipsecphase2authset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetIPsecPhase2AuthSet --- diff --git a/docset/winserver2019-ps/netsecurity/Remove-NetIPsecQuickModeCryptoSet.md b/docset/winserver2019-ps/netsecurity/Remove-NetIPsecQuickModeCryptoSet.md index 9d42c86681..2f1d5ce8e8 100644 --- a/docset/winserver2019-ps/netsecurity/Remove-NetIPsecQuickModeCryptoSet.md +++ b/docset/winserver2019-ps/netsecurity/Remove-NetIPsecQuickModeCryptoSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecQuickModeCryptoSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/remove-netipsecquickmodecryptoset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/remove-netipsecquickmodecryptoset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetIPsecQuickModeCryptoSet --- diff --git a/docset/winserver2019-ps/netsecurity/Remove-NetIPsecQuickModeSA.md b/docset/winserver2019-ps/netsecurity/Remove-NetIPsecQuickModeSA.md index e3fbeed9a5..627f0fd44b 100644 --- a/docset/winserver2019-ps/netsecurity/Remove-NetIPsecQuickModeSA.md +++ b/docset/winserver2019-ps/netsecurity/Remove-NetIPsecQuickModeSA.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecQuickModeSA.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/remove-netipsecquickmodesa?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/remove-netipsecquickmodesa?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetIPsecQuickModeSA --- diff --git a/docset/winserver2019-ps/netsecurity/Remove-NetIPsecRule.md b/docset/winserver2019-ps/netsecurity/Remove-NetIPsecRule.md index 852f88a35f..f756e795d9 100644 --- a/docset/winserver2019-ps/netsecurity/Remove-NetIPsecRule.md +++ b/docset/winserver2019-ps/netsecurity/Remove-NetIPsecRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/remove-netipsecrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/remove-netipsecrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetIPsecRule --- diff --git a/docset/winserver2019-ps/netsecurity/Rename-NetFirewallRule.md b/docset/winserver2019-ps/netsecurity/Rename-NetFirewallRule.md index bf34cf8040..e3f7f82ca9 100644 --- a/docset/winserver2019-ps/netsecurity/Rename-NetFirewallRule.md +++ b/docset/winserver2019-ps/netsecurity/Rename-NetFirewallRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/rename-netfirewallrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/rename-netfirewallrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-NetFirewallRule --- diff --git a/docset/winserver2019-ps/netsecurity/Rename-NetIPsecMainModeCryptoSet.md b/docset/winserver2019-ps/netsecurity/Rename-NetIPsecMainModeCryptoSet.md index 3375d02996..0d610cb5d3 100644 --- a/docset/winserver2019-ps/netsecurity/Rename-NetIPsecMainModeCryptoSet.md +++ b/docset/winserver2019-ps/netsecurity/Rename-NetIPsecMainModeCryptoSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecMainModeCryptoSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/rename-netipsecmainmodecryptoset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/rename-netipsecmainmodecryptoset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-NetIPsecMainModeCryptoSet --- diff --git a/docset/winserver2019-ps/netsecurity/Rename-NetIPsecMainModeRule.md b/docset/winserver2019-ps/netsecurity/Rename-NetIPsecMainModeRule.md index 9640a361b1..b049ada0a2 100644 --- a/docset/winserver2019-ps/netsecurity/Rename-NetIPsecMainModeRule.md +++ b/docset/winserver2019-ps/netsecurity/Rename-NetIPsecMainModeRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecMainModeRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/rename-netipsecmainmoderule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/rename-netipsecmainmoderule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-NetIPsecMainModeRule --- diff --git a/docset/winserver2019-ps/netsecurity/Rename-NetIPsecPhase1AuthSet.md b/docset/winserver2019-ps/netsecurity/Rename-NetIPsecPhase1AuthSet.md index 40c636f76b..563a4c5047 100644 --- a/docset/winserver2019-ps/netsecurity/Rename-NetIPsecPhase1AuthSet.md +++ b/docset/winserver2019-ps/netsecurity/Rename-NetIPsecPhase1AuthSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecPhase1AuthSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/rename-netipsecphase1authset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/rename-netipsecphase1authset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-NetIPsecPhase1AuthSet --- diff --git a/docset/winserver2019-ps/netsecurity/Rename-NetIPsecPhase2AuthSet.md b/docset/winserver2019-ps/netsecurity/Rename-NetIPsecPhase2AuthSet.md index f817409d33..7a2c4ad9ec 100644 --- a/docset/winserver2019-ps/netsecurity/Rename-NetIPsecPhase2AuthSet.md +++ b/docset/winserver2019-ps/netsecurity/Rename-NetIPsecPhase2AuthSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecPhase2AuthSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/rename-netipsecphase2authset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/rename-netipsecphase2authset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-NetIPsecPhase2AuthSet --- diff --git a/docset/winserver2019-ps/netsecurity/Rename-NetIPsecQuickModeCryptoSet.md b/docset/winserver2019-ps/netsecurity/Rename-NetIPsecQuickModeCryptoSet.md index f4a5a519b0..46a962e5c7 100644 --- a/docset/winserver2019-ps/netsecurity/Rename-NetIPsecQuickModeCryptoSet.md +++ b/docset/winserver2019-ps/netsecurity/Rename-NetIPsecQuickModeCryptoSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecQuickModeCryptoSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/rename-netipsecquickmodecryptoset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/rename-netipsecquickmodecryptoset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-NetIPsecQuickModeCryptoSet --- diff --git a/docset/winserver2019-ps/netsecurity/Rename-NetIPsecRule.md b/docset/winserver2019-ps/netsecurity/Rename-NetIPsecRule.md index a4d5a1060f..8d3c3a2c64 100644 --- a/docset/winserver2019-ps/netsecurity/Rename-NetIPsecRule.md +++ b/docset/winserver2019-ps/netsecurity/Rename-NetIPsecRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/rename-netipsecrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/rename-netipsecrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-NetIPsecRule --- diff --git a/docset/winserver2019-ps/netsecurity/Save-NetGPO.md b/docset/winserver2019-ps/netsecurity/Save-NetGPO.md index a0ff2f7925..5b41390081 100644 --- a/docset/winserver2019-ps/netsecurity/Save-NetGPO.md +++ b/docset/winserver2019-ps/netsecurity/Save-NetGPO.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetGPO.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/save-netgpo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/save-netgpo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Save-NetGPO --- diff --git a/docset/winserver2019-ps/netsecurity/Set-NetFirewallAddressFilter.md b/docset/winserver2019-ps/netsecurity/Set-NetFirewallAddressFilter.md index ce92f414d8..f097834a87 100644 --- a/docset/winserver2019-ps/netsecurity/Set-NetFirewallAddressFilter.md +++ b/docset/winserver2019-ps/netsecurity/Set-NetFirewallAddressFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallAddressFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewalladdressfilter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netfirewalladdressfilter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetFirewallAddressFilter --- diff --git a/docset/winserver2019-ps/netsecurity/Set-NetFirewallApplicationFilter.md b/docset/winserver2019-ps/netsecurity/Set-NetFirewallApplicationFilter.md index 8b8ee5e79e..b3252f6015 100644 --- a/docset/winserver2019-ps/netsecurity/Set-NetFirewallApplicationFilter.md +++ b/docset/winserver2019-ps/netsecurity/Set-NetFirewallApplicationFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallApplicationFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewallapplicationfilter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netfirewallapplicationfilter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetFirewallApplicationFilter --- diff --git a/docset/winserver2019-ps/netsecurity/Set-NetFirewallInterfaceFilter.md b/docset/winserver2019-ps/netsecurity/Set-NetFirewallInterfaceFilter.md index fec101acfe..27b19ecb7f 100644 --- a/docset/winserver2019-ps/netsecurity/Set-NetFirewallInterfaceFilter.md +++ b/docset/winserver2019-ps/netsecurity/Set-NetFirewallInterfaceFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallInterfaceFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewallinterfacefilter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netfirewallinterfacefilter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetFirewallInterfaceFilter --- diff --git a/docset/winserver2019-ps/netsecurity/Set-NetFirewallInterfaceTypeFilter.md b/docset/winserver2019-ps/netsecurity/Set-NetFirewallInterfaceTypeFilter.md index b7b2ae03e8..96746bf670 100644 --- a/docset/winserver2019-ps/netsecurity/Set-NetFirewallInterfaceTypeFilter.md +++ b/docset/winserver2019-ps/netsecurity/Set-NetFirewallInterfaceTypeFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallInterfaceTypeFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewallinterfacetypefilter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netfirewallinterfacetypefilter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetFirewallInterfaceTypeFilter --- diff --git a/docset/winserver2019-ps/netsecurity/Set-NetFirewallPortFilter.md b/docset/winserver2019-ps/netsecurity/Set-NetFirewallPortFilter.md index 65e147bfe8..0616733a1b 100644 --- a/docset/winserver2019-ps/netsecurity/Set-NetFirewallPortFilter.md +++ b/docset/winserver2019-ps/netsecurity/Set-NetFirewallPortFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallPortFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewallportfilter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netfirewallportfilter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetFirewallPortFilter --- diff --git a/docset/winserver2019-ps/netsecurity/Set-NetFirewallProfile.md b/docset/winserver2019-ps/netsecurity/Set-NetFirewallProfile.md index 3189044177..27710f1dc9 100644 --- a/docset/winserver2019-ps/netsecurity/Set-NetFirewallProfile.md +++ b/docset/winserver2019-ps/netsecurity/Set-NetFirewallProfile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallProfile.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewallprofile?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netfirewallprofile?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetFirewallProfile --- diff --git a/docset/winserver2019-ps/netsecurity/Set-NetFirewallRule.md b/docset/winserver2019-ps/netsecurity/Set-NetFirewallRule.md index 4804ab9560..f287fb734a 100644 --- a/docset/winserver2019-ps/netsecurity/Set-NetFirewallRule.md +++ b/docset/winserver2019-ps/netsecurity/Set-NetFirewallRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewallrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netfirewallrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetFirewallRule --- diff --git a/docset/winserver2019-ps/netsecurity/Set-NetFirewallSecurityFilter.md b/docset/winserver2019-ps/netsecurity/Set-NetFirewallSecurityFilter.md index b229b28971..5185e0c8c9 100644 --- a/docset/winserver2019-ps/netsecurity/Set-NetFirewallSecurityFilter.md +++ b/docset/winserver2019-ps/netsecurity/Set-NetFirewallSecurityFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallSecurityFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewallsecurityfilter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netfirewallsecurityfilter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetFirewallSecurityFilter --- diff --git a/docset/winserver2019-ps/netsecurity/Set-NetFirewallServiceFilter.md b/docset/winserver2019-ps/netsecurity/Set-NetFirewallServiceFilter.md index 3b30d731c4..61f830dcc0 100644 --- a/docset/winserver2019-ps/netsecurity/Set-NetFirewallServiceFilter.md +++ b/docset/winserver2019-ps/netsecurity/Set-NetFirewallServiceFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallServiceFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewallservicefilter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netfirewallservicefilter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetFirewallServiceFilter --- diff --git a/docset/winserver2019-ps/netsecurity/Set-NetFirewallSetting.md b/docset/winserver2019-ps/netsecurity/Set-NetFirewallSetting.md index bfa678c07e..ad7ca64019 100644 --- a/docset/winserver2019-ps/netsecurity/Set-NetFirewallSetting.md +++ b/docset/winserver2019-ps/netsecurity/Set-NetFirewallSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallSetting.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewallsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netfirewallsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetFirewallSetting --- diff --git a/docset/winserver2019-ps/netsecurity/Set-NetIPsecDospSetting.md b/docset/winserver2019-ps/netsecurity/Set-NetIPsecDospSetting.md index 9bff59948c..1951264ac7 100644 --- a/docset/winserver2019-ps/netsecurity/Set-NetIPsecDospSetting.md +++ b/docset/winserver2019-ps/netsecurity/Set-NetIPsecDospSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecDospSetting.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netipsecdospsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netipsecdospsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetIPsecDospSetting --- diff --git a/docset/winserver2019-ps/netsecurity/Set-NetIPsecMainModeCryptoSet.md b/docset/winserver2019-ps/netsecurity/Set-NetIPsecMainModeCryptoSet.md index aefe9cea07..f2d1997216 100644 --- a/docset/winserver2019-ps/netsecurity/Set-NetIPsecMainModeCryptoSet.md +++ b/docset/winserver2019-ps/netsecurity/Set-NetIPsecMainModeCryptoSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecMainModeCryptoSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netipsecmainmodecryptoset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netipsecmainmodecryptoset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetIPsecMainModeCryptoSet --- diff --git a/docset/winserver2019-ps/netsecurity/Set-NetIPsecMainModeRule.md b/docset/winserver2019-ps/netsecurity/Set-NetIPsecMainModeRule.md index 8d46cc96d3..5c5ed0a3da 100644 --- a/docset/winserver2019-ps/netsecurity/Set-NetIPsecMainModeRule.md +++ b/docset/winserver2019-ps/netsecurity/Set-NetIPsecMainModeRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecMainModeRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netipsecmainmoderule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netipsecmainmoderule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetIPsecMainModeRule --- diff --git a/docset/winserver2019-ps/netsecurity/Set-NetIPsecPhase1AuthSet.md b/docset/winserver2019-ps/netsecurity/Set-NetIPsecPhase1AuthSet.md index 6145470bdb..edaabc28c4 100644 --- a/docset/winserver2019-ps/netsecurity/Set-NetIPsecPhase1AuthSet.md +++ b/docset/winserver2019-ps/netsecurity/Set-NetIPsecPhase1AuthSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecPhase1AuthSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netipsecphase1authset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netipsecphase1authset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetIPsecPhase1AuthSet --- diff --git a/docset/winserver2019-ps/netsecurity/Set-NetIPsecPhase2AuthSet.md b/docset/winserver2019-ps/netsecurity/Set-NetIPsecPhase2AuthSet.md index fadb91e2c7..9cf9a0e55f 100644 --- a/docset/winserver2019-ps/netsecurity/Set-NetIPsecPhase2AuthSet.md +++ b/docset/winserver2019-ps/netsecurity/Set-NetIPsecPhase2AuthSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecPhase2AuthSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netipsecphase2authset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netipsecphase2authset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetIPsecPhase2AuthSet --- diff --git a/docset/winserver2019-ps/netsecurity/Set-NetIPsecQuickModeCryptoSet.md b/docset/winserver2019-ps/netsecurity/Set-NetIPsecQuickModeCryptoSet.md index d16bbadb84..53db3a3436 100644 --- a/docset/winserver2019-ps/netsecurity/Set-NetIPsecQuickModeCryptoSet.md +++ b/docset/winserver2019-ps/netsecurity/Set-NetIPsecQuickModeCryptoSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecQuickModeCryptoSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netipsecquickmodecryptoset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netipsecquickmodecryptoset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetIPsecQuickModeCryptoSet --- diff --git a/docset/winserver2019-ps/netsecurity/Set-NetIPsecRule.md b/docset/winserver2019-ps/netsecurity/Set-NetIPsecRule.md index 1f4eac2e46..22018de4e7 100644 --- a/docset/winserver2019-ps/netsecurity/Set-NetIPsecRule.md +++ b/docset/winserver2019-ps/netsecurity/Set-NetIPsecRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netipsecrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netipsecrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetIPsecRule --- diff --git a/docset/winserver2019-ps/netsecurity/Show-NetFirewallRule.md b/docset/winserver2019-ps/netsecurity/Show-NetFirewallRule.md index ae0e23df46..ce25d7611e 100644 --- a/docset/winserver2019-ps/netsecurity/Show-NetFirewallRule.md +++ b/docset/winserver2019-ps/netsecurity/Show-NetFirewallRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/show-netfirewallrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/show-netfirewallrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Show-NetFirewallRule --- diff --git a/docset/winserver2019-ps/netsecurity/Show-NetIPsecRule.md b/docset/winserver2019-ps/netsecurity/Show-NetIPsecRule.md index de92c29ce2..407bdb7738 100644 --- a/docset/winserver2019-ps/netsecurity/Show-NetIPsecRule.md +++ b/docset/winserver2019-ps/netsecurity/Show-NetIPsecRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/show-netipsecrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/show-netipsecrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Show-NetIPsecRule --- diff --git a/docset/winserver2019-ps/netsecurity/Sync-NetIPsecRule.md b/docset/winserver2019-ps/netsecurity/Sync-NetIPsecRule.md index e94f06be85..d9f6af962f 100644 --- a/docset/winserver2019-ps/netsecurity/Sync-NetIPsecRule.md +++ b/docset/winserver2019-ps/netsecurity/Sync-NetIPsecRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/sync-netipsecrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/sync-netipsecrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Sync-NetIPsecRule --- diff --git a/docset/winserver2019-ps/netsecurity/Update-NetIPsecRule.md b/docset/winserver2019-ps/netsecurity/Update-NetIPsecRule.md index e291bc07bb..a4ec4ca520 100644 --- a/docset/winserver2019-ps/netsecurity/Update-NetIPsecRule.md +++ b/docset/winserver2019-ps/netsecurity/Update-NetIPsecRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/update-netipsecrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/update-netipsecrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-NetIPsecRule --- diff --git a/docset/winserver2019-ps/netswitchteam/Add-NetSwitchTeamMember.md b/docset/winserver2019-ps/netswitchteam/Add-NetSwitchTeamMember.md index 1873ad5943..279782f7e5 100644 --- a/docset/winserver2019-ps/netswitchteam/Add-NetSwitchTeamMember.md +++ b/docset/winserver2019-ps/netswitchteam/Add-NetSwitchTeamMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetSwitchTeam.cdxml-help.xml Module Name: NetSwitchTeam ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netswitchteam/add-netswitchteammember?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netswitchteam/add-netswitchteammember?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NetSwitchTeamMember --- diff --git a/docset/winserver2019-ps/netswitchteam/Get-NetSwitchTeam.md b/docset/winserver2019-ps/netswitchteam/Get-NetSwitchTeam.md index a0e9c32b31..45cf0c93bc 100644 --- a/docset/winserver2019-ps/netswitchteam/Get-NetSwitchTeam.md +++ b/docset/winserver2019-ps/netswitchteam/Get-NetSwitchTeam.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetSwitchTeam.cdxml-help.xml Module Name: NetSwitchTeam ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netswitchteam/get-netswitchteam?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netswitchteam/get-netswitchteam?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetSwitchTeam --- diff --git a/docset/winserver2019-ps/netswitchteam/Get-NetSwitchTeamMember.md b/docset/winserver2019-ps/netswitchteam/Get-NetSwitchTeamMember.md index 6bbeaee0d0..6aece99a09 100644 --- a/docset/winserver2019-ps/netswitchteam/Get-NetSwitchTeamMember.md +++ b/docset/winserver2019-ps/netswitchteam/Get-NetSwitchTeamMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetSwitchTeamMember.cdxml-help.xml Module Name: NetSwitchTeam ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netswitchteam/get-netswitchteammember?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netswitchteam/get-netswitchteammember?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetSwitchTeamMember --- diff --git a/docset/winserver2019-ps/netswitchteam/New-NetSwitchTeam.md b/docset/winserver2019-ps/netswitchteam/New-NetSwitchTeam.md index ae1d4b2d1d..45326460eb 100644 --- a/docset/winserver2019-ps/netswitchteam/New-NetSwitchTeam.md +++ b/docset/winserver2019-ps/netswitchteam/New-NetSwitchTeam.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetSwitchTeam.cdxml-help.xml Module Name: NetSwitchTeam ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netswitchteam/new-netswitchteam?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netswitchteam/new-netswitchteam?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetSwitchTeam --- diff --git a/docset/winserver2019-ps/netswitchteam/Remove-NetSwitchTeam.md b/docset/winserver2019-ps/netswitchteam/Remove-NetSwitchTeam.md index 37fd443989..272c387de9 100644 --- a/docset/winserver2019-ps/netswitchteam/Remove-NetSwitchTeam.md +++ b/docset/winserver2019-ps/netswitchteam/Remove-NetSwitchTeam.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetSwitchTeam.cdxml-help.xml Module Name: NetSwitchTeam ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netswitchteam/remove-netswitchteam?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netswitchteam/remove-netswitchteam?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetSwitchTeam --- diff --git a/docset/winserver2019-ps/netswitchteam/Remove-NetSwitchTeamMember.md b/docset/winserver2019-ps/netswitchteam/Remove-NetSwitchTeamMember.md index e77c644a32..29d62294cd 100644 --- a/docset/winserver2019-ps/netswitchteam/Remove-NetSwitchTeamMember.md +++ b/docset/winserver2019-ps/netswitchteam/Remove-NetSwitchTeamMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetSwitchTeam.cdxml-help.xml Module Name: NetSwitchTeam ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netswitchteam/remove-netswitchteammember?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netswitchteam/remove-netswitchteammember?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetSwitchTeamMember --- diff --git a/docset/winserver2019-ps/netswitchteam/Rename-NetSwitchTeam.md b/docset/winserver2019-ps/netswitchteam/Rename-NetSwitchTeam.md index 1eacace62d..5affd8381d 100644 --- a/docset/winserver2019-ps/netswitchteam/Rename-NetSwitchTeam.md +++ b/docset/winserver2019-ps/netswitchteam/Rename-NetSwitchTeam.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetSwitchTeam.cdxml-help.xml Module Name: NetSwitchTeam ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netswitchteam/rename-netswitchteam?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netswitchteam/rename-netswitchteam?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-NetSwitchTeam --- diff --git a/docset/winserver2019-ps/nettcpip/Find-NetRoute.md b/docset/winserver2019-ps/nettcpip/Find-NetRoute.md index f1884d5498..20426ebf29 100644 --- a/docset/winserver2019-ps/nettcpip/Find-NetRoute.md +++ b/docset/winserver2019-ps/nettcpip/Find-NetRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetRoute.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/find-netroute?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/find-netroute?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Find-NetRoute --- diff --git a/docset/winserver2019-ps/nettcpip/Get-NetCompartment.md b/docset/winserver2019-ps/nettcpip/Get-NetCompartment.md index 4dee316d2b..3671c04efb 100644 --- a/docset/winserver2019-ps/nettcpip/Get-NetCompartment.md +++ b/docset/winserver2019-ps/nettcpip/Get-NetCompartment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetCompartment.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netcompartment?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netcompartment?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetCompartment --- diff --git a/docset/winserver2019-ps/nettcpip/Get-NetIPAddress.md b/docset/winserver2019-ps/nettcpip/Get-NetIPAddress.md index 27bbbb304a..c3f7d4aa29 100644 --- a/docset/winserver2019-ps/nettcpip/Get-NetIPAddress.md +++ b/docset/winserver2019-ps/nettcpip/Get-NetIPAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIPAddress.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netipaddress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netipaddress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPAddress --- diff --git a/docset/winserver2019-ps/nettcpip/Get-NetIPConfiguration.md b/docset/winserver2019-ps/nettcpip/Get-NetIPConfiguration.md index eec5bdc933..abb4229b0f 100644 --- a/docset/winserver2019-ps/nettcpip/Get-NetIPConfiguration.md +++ b/docset/winserver2019-ps/nettcpip/Get-NetIPConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPConfiguration-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netipconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netipconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPConfiguration --- diff --git a/docset/winserver2019-ps/nettcpip/Get-NetIPInterface.md b/docset/winserver2019-ps/nettcpip/Get-NetIPInterface.md index a322439ab2..ea053ddcd1 100644 --- a/docset/winserver2019-ps/nettcpip/Get-NetIPInterface.md +++ b/docset/winserver2019-ps/nettcpip/Get-NetIPInterface.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIPInterface.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netipinterface?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netipinterface?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPInterface --- diff --git a/docset/winserver2019-ps/nettcpip/Get-NetIPv4Protocol.md b/docset/winserver2019-ps/nettcpip/Get-NetIPv4Protocol.md index af4f3aeef3..8140364b4f 100644 --- a/docset/winserver2019-ps/nettcpip/Get-NetIPv4Protocol.md +++ b/docset/winserver2019-ps/nettcpip/Get-NetIPv4Protocol.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIPv4Protocol.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netipv4protocol?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netipv4protocol?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPv4Protocol --- diff --git a/docset/winserver2019-ps/nettcpip/Get-NetIPv6Protocol.md b/docset/winserver2019-ps/nettcpip/Get-NetIPv6Protocol.md index 8f0c6b4ecb..d73e1457e1 100644 --- a/docset/winserver2019-ps/nettcpip/Get-NetIPv6Protocol.md +++ b/docset/winserver2019-ps/nettcpip/Get-NetIPv6Protocol.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIPv6Protocol.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netipv6protocol?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netipv6protocol?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPv6Protocol --- diff --git a/docset/winserver2019-ps/nettcpip/Get-NetNeighbor.md b/docset/winserver2019-ps/nettcpip/Get-NetNeighbor.md index 1aa8b3e151..b5f4a9cfaf 100644 --- a/docset/winserver2019-ps/nettcpip/Get-NetNeighbor.md +++ b/docset/winserver2019-ps/nettcpip/Get-NetNeighbor.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNeighbor.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netneighbor?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netneighbor?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetNeighbor --- diff --git a/docset/winserver2019-ps/nettcpip/Get-NetOffloadGlobalSetting.md b/docset/winserver2019-ps/nettcpip/Get-NetOffloadGlobalSetting.md index 247a413c5b..14f4426d31 100644 --- a/docset/winserver2019-ps/nettcpip/Get-NetOffloadGlobalSetting.md +++ b/docset/winserver2019-ps/nettcpip/Get-NetOffloadGlobalSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetOffloadGlobalSetting.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netoffloadglobalsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netoffloadglobalsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetOffloadGlobalSetting --- diff --git a/docset/winserver2019-ps/nettcpip/Get-NetPrefixPolicy.md b/docset/winserver2019-ps/nettcpip/Get-NetPrefixPolicy.md index 4d4850065f..58aca53999 100644 --- a/docset/winserver2019-ps/nettcpip/Get-NetPrefixPolicy.md +++ b/docset/winserver2019-ps/nettcpip/Get-NetPrefixPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetPrefixPolicy.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netprefixpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netprefixpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetPrefixPolicy --- diff --git a/docset/winserver2019-ps/nettcpip/Get-NetRoute.md b/docset/winserver2019-ps/nettcpip/Get-NetRoute.md index ddd5357da8..65f488b3d0 100644 --- a/docset/winserver2019-ps/nettcpip/Get-NetRoute.md +++ b/docset/winserver2019-ps/nettcpip/Get-NetRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetRoute.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netroute?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netroute?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetRoute --- diff --git a/docset/winserver2019-ps/nettcpip/Get-NetTCPConnection.md b/docset/winserver2019-ps/nettcpip/Get-NetTCPConnection.md index 7155f18355..bbe9440771 100644 --- a/docset/winserver2019-ps/nettcpip/Get-NetTCPConnection.md +++ b/docset/winserver2019-ps/nettcpip/Get-NetTCPConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetTCPConnection.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-nettcpconnection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-nettcpconnection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetTCPConnection --- diff --git a/docset/winserver2019-ps/nettcpip/Get-NetTCPSetting.md b/docset/winserver2019-ps/nettcpip/Get-NetTCPSetting.md index 1c392585bc..71dffbf555 100644 --- a/docset/winserver2019-ps/nettcpip/Get-NetTCPSetting.md +++ b/docset/winserver2019-ps/nettcpip/Get-NetTCPSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetTCPSetting.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-nettcpsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-nettcpsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetTCPSetting --- diff --git a/docset/winserver2019-ps/nettcpip/Get-NetTransportFilter.md b/docset/winserver2019-ps/nettcpip/Get-NetTransportFilter.md index 0ebd28bec6..48c8068a47 100644 --- a/docset/winserver2019-ps/nettcpip/Get-NetTransportFilter.md +++ b/docset/winserver2019-ps/nettcpip/Get-NetTransportFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetTransportFilter.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-nettransportfilter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-nettransportfilter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetTransportFilter --- diff --git a/docset/winserver2019-ps/nettcpip/Get-NetUDPEndpoint.md b/docset/winserver2019-ps/nettcpip/Get-NetUDPEndpoint.md index 84f7166e22..32bd7ac18a 100644 --- a/docset/winserver2019-ps/nettcpip/Get-NetUDPEndpoint.md +++ b/docset/winserver2019-ps/nettcpip/Get-NetUDPEndpoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetUDPEndpoint.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netudpendpoint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netudpendpoint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetUDPEndpoint --- diff --git a/docset/winserver2019-ps/nettcpip/Get-NetUDPSetting.md b/docset/winserver2019-ps/nettcpip/Get-NetUDPSetting.md index 9834b30ad5..c4bce3b582 100644 --- a/docset/winserver2019-ps/nettcpip/Get-NetUDPSetting.md +++ b/docset/winserver2019-ps/nettcpip/Get-NetUDPSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetUDPSetting.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netudpsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netudpsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetUDPSetting --- diff --git a/docset/winserver2019-ps/nettcpip/New-NetIPAddress.md b/docset/winserver2019-ps/nettcpip/New-NetIPAddress.md index 2d978283b7..bc5f9d7d11 100644 --- a/docset/winserver2019-ps/nettcpip/New-NetIPAddress.md +++ b/docset/winserver2019-ps/nettcpip/New-NetIPAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIPAddress.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/new-netipaddress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/new-netipaddress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetIPAddress --- diff --git a/docset/winserver2019-ps/nettcpip/New-NetNeighbor.md b/docset/winserver2019-ps/nettcpip/New-NetNeighbor.md index 59537505af..1c21196d14 100644 --- a/docset/winserver2019-ps/nettcpip/New-NetNeighbor.md +++ b/docset/winserver2019-ps/nettcpip/New-NetNeighbor.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNeighbor.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/new-netneighbor?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/new-netneighbor?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetNeighbor --- diff --git a/docset/winserver2019-ps/nettcpip/New-NetRoute.md b/docset/winserver2019-ps/nettcpip/New-NetRoute.md index 357c4bb509..a1e447a199 100644 --- a/docset/winserver2019-ps/nettcpip/New-NetRoute.md +++ b/docset/winserver2019-ps/nettcpip/New-NetRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetRoute.cdxml-help.xml Module Name: NetTCPIP ms.date: 05/30/2018 -online version: https://docs.microsoft.com/powershell/module/nettcpip/new-netroute?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/new-netroute?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetRoute --- diff --git a/docset/winserver2019-ps/nettcpip/New-NetTransportFilter.md b/docset/winserver2019-ps/nettcpip/New-NetTransportFilter.md index a9217fde6f..f9c60808ec 100644 --- a/docset/winserver2019-ps/nettcpip/New-NetTransportFilter.md +++ b/docset/winserver2019-ps/nettcpip/New-NetTransportFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetTransportFilter.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/new-nettransportfilter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/new-nettransportfilter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetTransportFilter --- diff --git a/docset/winserver2019-ps/nettcpip/Remove-NetIPAddress.md b/docset/winserver2019-ps/nettcpip/Remove-NetIPAddress.md index 917bb23ed4..6b829ed62d 100644 --- a/docset/winserver2019-ps/nettcpip/Remove-NetIPAddress.md +++ b/docset/winserver2019-ps/nettcpip/Remove-NetIPAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIPAddress.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/remove-netipaddress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/remove-netipaddress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetIPAddress --- diff --git a/docset/winserver2019-ps/nettcpip/Remove-NetNeighbor.md b/docset/winserver2019-ps/nettcpip/Remove-NetNeighbor.md index 9d9a0bb10e..9e9df3637e 100644 --- a/docset/winserver2019-ps/nettcpip/Remove-NetNeighbor.md +++ b/docset/winserver2019-ps/nettcpip/Remove-NetNeighbor.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNeighbor.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/remove-netneighbor?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/remove-netneighbor?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetNeighbor --- diff --git a/docset/winserver2019-ps/nettcpip/Remove-NetRoute.md b/docset/winserver2019-ps/nettcpip/Remove-NetRoute.md index c027fa8c8f..a6d380e03e 100644 --- a/docset/winserver2019-ps/nettcpip/Remove-NetRoute.md +++ b/docset/winserver2019-ps/nettcpip/Remove-NetRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetRoute.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/remove-netroute?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/remove-netroute?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetRoute --- diff --git a/docset/winserver2019-ps/nettcpip/Remove-NetTransportFilter.md b/docset/winserver2019-ps/nettcpip/Remove-NetTransportFilter.md index 483dbef73f..9da92db485 100644 --- a/docset/winserver2019-ps/nettcpip/Remove-NetTransportFilter.md +++ b/docset/winserver2019-ps/nettcpip/Remove-NetTransportFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetTransportFilter.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/remove-nettransportfilter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/remove-nettransportfilter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetTransportFilter --- diff --git a/docset/winserver2019-ps/nettcpip/Set-NetIPAddress.md b/docset/winserver2019-ps/nettcpip/Set-NetIPAddress.md index df24f967ff..067b597ff3 100644 --- a/docset/winserver2019-ps/nettcpip/Set-NetIPAddress.md +++ b/docset/winserver2019-ps/nettcpip/Set-NetIPAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIPAddress.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/set-netipaddress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/set-netipaddress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetIPAddress --- diff --git a/docset/winserver2019-ps/nettcpip/Set-NetIPInterface.md b/docset/winserver2019-ps/nettcpip/Set-NetIPInterface.md index 343b54747a..1fe8831387 100644 --- a/docset/winserver2019-ps/nettcpip/Set-NetIPInterface.md +++ b/docset/winserver2019-ps/nettcpip/Set-NetIPInterface.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIPInterface.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/set-netipinterface?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/set-netipinterface?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetIPInterface --- diff --git a/docset/winserver2019-ps/nettcpip/Set-NetIPv4Protocol.md b/docset/winserver2019-ps/nettcpip/Set-NetIPv4Protocol.md index 654fca706a..b699ef789f 100644 --- a/docset/winserver2019-ps/nettcpip/Set-NetIPv4Protocol.md +++ b/docset/winserver2019-ps/nettcpip/Set-NetIPv4Protocol.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIPv4Protocol.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/set-netipv4protocol?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/set-netipv4protocol?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetIPv4Protocol --- diff --git a/docset/winserver2019-ps/nettcpip/Set-NetIPv6Protocol.md b/docset/winserver2019-ps/nettcpip/Set-NetIPv6Protocol.md index c355966a16..a3cc68ad16 100644 --- a/docset/winserver2019-ps/nettcpip/Set-NetIPv6Protocol.md +++ b/docset/winserver2019-ps/nettcpip/Set-NetIPv6Protocol.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIPv6Protocol.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/set-netipv6protocol?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/set-netipv6protocol?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetIPv6Protocol --- diff --git a/docset/winserver2019-ps/nettcpip/Set-NetNeighbor.md b/docset/winserver2019-ps/nettcpip/Set-NetNeighbor.md index f3740856dc..392a2ee1b0 100644 --- a/docset/winserver2019-ps/nettcpip/Set-NetNeighbor.md +++ b/docset/winserver2019-ps/nettcpip/Set-NetNeighbor.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNeighbor.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/set-netneighbor?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/set-netneighbor?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetNeighbor --- diff --git a/docset/winserver2019-ps/nettcpip/Set-NetOffloadGlobalSetting.md b/docset/winserver2019-ps/nettcpip/Set-NetOffloadGlobalSetting.md index f4f36877bf..38fa8d6678 100644 --- a/docset/winserver2019-ps/nettcpip/Set-NetOffloadGlobalSetting.md +++ b/docset/winserver2019-ps/nettcpip/Set-NetOffloadGlobalSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetOffloadGlobalSetting.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/set-netoffloadglobalsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/set-netoffloadglobalsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetOffloadGlobalSetting --- diff --git a/docset/winserver2019-ps/nettcpip/Set-NetRoute.md b/docset/winserver2019-ps/nettcpip/Set-NetRoute.md index 2701bb7ee7..6a6e42ed32 100644 --- a/docset/winserver2019-ps/nettcpip/Set-NetRoute.md +++ b/docset/winserver2019-ps/nettcpip/Set-NetRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetRoute.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/set-netroute?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/set-netroute?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetRoute --- diff --git a/docset/winserver2019-ps/nettcpip/Set-NetTCPSetting.md b/docset/winserver2019-ps/nettcpip/Set-NetTCPSetting.md index 606fd4b354..7437f4de59 100644 --- a/docset/winserver2019-ps/nettcpip/Set-NetTCPSetting.md +++ b/docset/winserver2019-ps/nettcpip/Set-NetTCPSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetTCPSetting.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/set-nettcpsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/set-nettcpsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetTCPSetting --- diff --git a/docset/winserver2019-ps/nettcpip/Set-NetUDPSetting.md b/docset/winserver2019-ps/nettcpip/Set-NetUDPSetting.md index 92d9a0de1e..20f6e2625e 100644 --- a/docset/winserver2019-ps/nettcpip/Set-NetUDPSetting.md +++ b/docset/winserver2019-ps/nettcpip/Set-NetUDPSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetUDPSetting.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/set-netudpsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/set-netudpsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetUDPSetting --- diff --git a/docset/winserver2019-ps/nettcpip/Test-NetConnection.md b/docset/winserver2019-ps/nettcpip/Test-NetConnection.md index 42f8ac7965..5404200f02 100644 --- a/docset/winserver2019-ps/nettcpip/Test-NetConnection.md +++ b/docset/winserver2019-ps/nettcpip/Test-NetConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Test-NetConnection-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/test-netconnection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/test-netconnection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-NetConnection --- diff --git a/docset/winserver2019-ps/netwnv/Get-NetVirtualizationCustomerRoute.md b/docset/winserver2019-ps/netwnv/Get-NetVirtualizationCustomerRoute.md index 73236d602e..43b77e92c6 100644 --- a/docset/winserver2019-ps/netwnv/Get-NetVirtualizationCustomerRoute.md +++ b/docset/winserver2019-ps/netwnv/Get-NetVirtualizationCustomerRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationCustomerRouteSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/get-netvirtualizationcustomerroute?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/get-netvirtualizationcustomerroute?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetVirtualizationCustomerRoute --- diff --git a/docset/winserver2019-ps/netwnv/Get-NetVirtualizationGlobal.md b/docset/winserver2019-ps/netwnv/Get-NetVirtualizationGlobal.md index 982dde7931..0abdc928a0 100644 --- a/docset/winserver2019-ps/netwnv/Get-NetVirtualizationGlobal.md +++ b/docset/winserver2019-ps/netwnv/Get-NetVirtualizationGlobal.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationGlobalSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/get-netvirtualizationglobal?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/get-netvirtualizationglobal?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetVirtualizationGlobal --- diff --git a/docset/winserver2019-ps/netwnv/Get-NetVirtualizationLookupRecord.md b/docset/winserver2019-ps/netwnv/Get-NetVirtualizationLookupRecord.md index 5aab983ce7..af9b99b02a 100644 --- a/docset/winserver2019-ps/netwnv/Get-NetVirtualizationLookupRecord.md +++ b/docset/winserver2019-ps/netwnv/Get-NetVirtualizationLookupRecord.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationLookupRecordSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/get-netvirtualizationlookuprecord?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/get-netvirtualizationlookuprecord?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetVirtualizationLookupRecord --- diff --git a/docset/winserver2019-ps/netwnv/Get-NetVirtualizationProviderAddress.md b/docset/winserver2019-ps/netwnv/Get-NetVirtualizationProviderAddress.md index 26b9bd703b..8c3124cda2 100644 --- a/docset/winserver2019-ps/netwnv/Get-NetVirtualizationProviderAddress.md +++ b/docset/winserver2019-ps/netwnv/Get-NetVirtualizationProviderAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationProviderAddressSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/get-netvirtualizationprovideraddress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/get-netvirtualizationprovideraddress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetVirtualizationProviderAddress --- diff --git a/docset/winserver2019-ps/netwnv/Get-NetVirtualizationProviderRoute.md b/docset/winserver2019-ps/netwnv/Get-NetVirtualizationProviderRoute.md index 7b428dee0f..2663175c9f 100644 --- a/docset/winserver2019-ps/netwnv/Get-NetVirtualizationProviderRoute.md +++ b/docset/winserver2019-ps/netwnv/Get-NetVirtualizationProviderRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationProviderRouteSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/get-netvirtualizationproviderroute?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/get-netvirtualizationproviderroute?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetVirtualizationProviderRoute --- diff --git a/docset/winserver2019-ps/netwnv/New-NetVirtualizationCustomerRoute.md b/docset/winserver2019-ps/netwnv/New-NetVirtualizationCustomerRoute.md index b05c0d16f2..74ee60055f 100644 --- a/docset/winserver2019-ps/netwnv/New-NetVirtualizationCustomerRoute.md +++ b/docset/winserver2019-ps/netwnv/New-NetVirtualizationCustomerRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationCustomerRouteSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/new-netvirtualizationcustomerroute?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/new-netvirtualizationcustomerroute?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetVirtualizationCustomerRoute --- diff --git a/docset/winserver2019-ps/netwnv/New-NetVirtualizationLookupRecord.md b/docset/winserver2019-ps/netwnv/New-NetVirtualizationLookupRecord.md index 45d910da0c..f2a6894283 100644 --- a/docset/winserver2019-ps/netwnv/New-NetVirtualizationLookupRecord.md +++ b/docset/winserver2019-ps/netwnv/New-NetVirtualizationLookupRecord.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationLookupRecordSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/new-netvirtualizationlookuprecord?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/new-netvirtualizationlookuprecord?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetVirtualizationLookupRecord --- diff --git a/docset/winserver2019-ps/netwnv/New-NetVirtualizationProviderAddress.md b/docset/winserver2019-ps/netwnv/New-NetVirtualizationProviderAddress.md index 3bd784d14f..0061ace34d 100644 --- a/docset/winserver2019-ps/netwnv/New-NetVirtualizationProviderAddress.md +++ b/docset/winserver2019-ps/netwnv/New-NetVirtualizationProviderAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationProviderAddressSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/new-netvirtualizationprovideraddress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/new-netvirtualizationprovideraddress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetVirtualizationProviderAddress --- diff --git a/docset/winserver2019-ps/netwnv/New-NetVirtualizationProviderRoute.md b/docset/winserver2019-ps/netwnv/New-NetVirtualizationProviderRoute.md index 7a28158022..9716fccb61 100644 --- a/docset/winserver2019-ps/netwnv/New-NetVirtualizationProviderRoute.md +++ b/docset/winserver2019-ps/netwnv/New-NetVirtualizationProviderRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationProviderRouteSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/new-netvirtualizationproviderroute?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/new-netvirtualizationproviderroute?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetVirtualizationProviderRoute --- diff --git a/docset/winserver2019-ps/netwnv/Remove-NetVirtualizationCustomerRoute.md b/docset/winserver2019-ps/netwnv/Remove-NetVirtualizationCustomerRoute.md index 77808a9b10..1fecbc96ec 100644 --- a/docset/winserver2019-ps/netwnv/Remove-NetVirtualizationCustomerRoute.md +++ b/docset/winserver2019-ps/netwnv/Remove-NetVirtualizationCustomerRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationCustomerRouteSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/remove-netvirtualizationcustomerroute?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/remove-netvirtualizationcustomerroute?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetVirtualizationCustomerRoute --- diff --git a/docset/winserver2019-ps/netwnv/Remove-NetVirtualizationLookupRecord.md b/docset/winserver2019-ps/netwnv/Remove-NetVirtualizationLookupRecord.md index fd411a9936..699cb0ca89 100644 --- a/docset/winserver2019-ps/netwnv/Remove-NetVirtualizationLookupRecord.md +++ b/docset/winserver2019-ps/netwnv/Remove-NetVirtualizationLookupRecord.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationLookupRecordSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/remove-netvirtualizationlookuprecord?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/remove-netvirtualizationlookuprecord?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetVirtualizationLookupRecord --- diff --git a/docset/winserver2019-ps/netwnv/Remove-NetVirtualizationProviderAddress.md b/docset/winserver2019-ps/netwnv/Remove-NetVirtualizationProviderAddress.md index 8f549019f5..fd78ed0c50 100644 --- a/docset/winserver2019-ps/netwnv/Remove-NetVirtualizationProviderAddress.md +++ b/docset/winserver2019-ps/netwnv/Remove-NetVirtualizationProviderAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationProviderAddressSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/remove-netvirtualizationprovideraddress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/remove-netvirtualizationprovideraddress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetVirtualizationProviderAddress --- diff --git a/docset/winserver2019-ps/netwnv/Remove-NetVirtualizationProviderRoute.md b/docset/winserver2019-ps/netwnv/Remove-NetVirtualizationProviderRoute.md index 598415d04e..ad5819023d 100644 --- a/docset/winserver2019-ps/netwnv/Remove-NetVirtualizationProviderRoute.md +++ b/docset/winserver2019-ps/netwnv/Remove-NetVirtualizationProviderRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationProviderRouteSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/remove-netvirtualizationproviderroute?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/remove-netvirtualizationproviderroute?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetVirtualizationProviderRoute --- diff --git a/docset/winserver2019-ps/netwnv/Select-NetVirtualizationNextHop.md b/docset/winserver2019-ps/netwnv/Select-NetVirtualizationNextHop.md index 64c58b6d78..8e29c8c89a 100644 --- a/docset/winserver2019-ps/netwnv/Select-NetVirtualizationNextHop.md +++ b/docset/winserver2019-ps/netwnv/Select-NetVirtualizationNextHop.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationNextHopLookup.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/select-netvirtualizationnexthop?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/select-netvirtualizationnexthop?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Select-NetVirtualizationNextHop --- diff --git a/docset/winserver2019-ps/netwnv/Set-NetVirtualizationCustomerRoute.md b/docset/winserver2019-ps/netwnv/Set-NetVirtualizationCustomerRoute.md index 462f3924bf..878715b1b6 100644 --- a/docset/winserver2019-ps/netwnv/Set-NetVirtualizationCustomerRoute.md +++ b/docset/winserver2019-ps/netwnv/Set-NetVirtualizationCustomerRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationCustomerRouteSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/set-netvirtualizationcustomerroute?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/set-netvirtualizationcustomerroute?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetVirtualizationCustomerRoute --- diff --git a/docset/winserver2019-ps/netwnv/Set-NetVirtualizationGlobal.md b/docset/winserver2019-ps/netwnv/Set-NetVirtualizationGlobal.md index fa0a615962..bf5e7495ad 100644 --- a/docset/winserver2019-ps/netwnv/Set-NetVirtualizationGlobal.md +++ b/docset/winserver2019-ps/netwnv/Set-NetVirtualizationGlobal.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationGlobalSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/set-netvirtualizationglobal?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/set-netvirtualizationglobal?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetVirtualizationGlobal --- diff --git a/docset/winserver2019-ps/netwnv/Set-NetVirtualizationLookupRecord.md b/docset/winserver2019-ps/netwnv/Set-NetVirtualizationLookupRecord.md index f594289050..7d21bd21f1 100644 --- a/docset/winserver2019-ps/netwnv/Set-NetVirtualizationLookupRecord.md +++ b/docset/winserver2019-ps/netwnv/Set-NetVirtualizationLookupRecord.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationLookupRecordSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/set-netvirtualizationlookuprecord?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/set-netvirtualizationlookuprecord?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetVirtualizationLookupRecord --- diff --git a/docset/winserver2019-ps/netwnv/Set-NetVirtualizationProviderAddress.md b/docset/winserver2019-ps/netwnv/Set-NetVirtualizationProviderAddress.md index 90ad063651..b61745c76b 100644 --- a/docset/winserver2019-ps/netwnv/Set-NetVirtualizationProviderAddress.md +++ b/docset/winserver2019-ps/netwnv/Set-NetVirtualizationProviderAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationProviderAddressSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/set-netvirtualizationprovideraddress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/set-netvirtualizationprovideraddress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetVirtualizationProviderAddress --- diff --git a/docset/winserver2019-ps/netwnv/Set-NetVirtualizationProviderRoute.md b/docset/winserver2019-ps/netwnv/Set-NetVirtualizationProviderRoute.md index 04ec42c6c0..936371e18b 100644 --- a/docset/winserver2019-ps/netwnv/Set-NetVirtualizationProviderRoute.md +++ b/docset/winserver2019-ps/netwnv/Set-NetVirtualizationProviderRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationProviderRouteSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/set-netvirtualizationproviderroute?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/set-netvirtualizationproviderroute?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetVirtualizationProviderRoute --- diff --git a/docset/winserver2019-ps/networkconnectivitystatus/Get-DAConnectionStatus.md b/docset/winserver2019-ps/networkconnectivitystatus/Get-DAConnectionStatus.md index 049a2d81d1..639bcfe6cd 100644 --- a/docset/winserver2019-ps/networkconnectivitystatus/Get-DAConnectionStatus.md +++ b/docset/winserver2019-ps/networkconnectivitystatus/Get-DAConnectionStatus.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DAConnectionStatus.cdxml-help.xml Module Name: NetworkConnectivityStatus ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkconnectivitystatus/get-daconnectionstatus?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkconnectivitystatus/get-daconnectionstatus?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DAConnectionStatus --- diff --git a/docset/winserver2019-ps/networkconnectivitystatus/Get-NCSIPolicyConfiguration.md b/docset/winserver2019-ps/networkconnectivitystatus/Get-NCSIPolicyConfiguration.md index f930a997b2..a3dbdc84dd 100644 --- a/docset/winserver2019-ps/networkconnectivitystatus/Get-NCSIPolicyConfiguration.md +++ b/docset/winserver2019-ps/networkconnectivitystatus/Get-NCSIPolicyConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NCSIPolicyConfiguration.cdxml-help.xml Module Name: NetworkConnectivityStatus ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkconnectivitystatus/get-ncsipolicyconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkconnectivitystatus/get-ncsipolicyconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NCSIPolicyConfiguration --- diff --git a/docset/winserver2019-ps/networkconnectivitystatus/Reset-NCSIPolicyConfiguration.md b/docset/winserver2019-ps/networkconnectivitystatus/Reset-NCSIPolicyConfiguration.md index e0e05099db..db6240a45c 100644 --- a/docset/winserver2019-ps/networkconnectivitystatus/Reset-NCSIPolicyConfiguration.md +++ b/docset/winserver2019-ps/networkconnectivitystatus/Reset-NCSIPolicyConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NCSIPolicyConfiguration.cdxml-help.xml Module Name: NetworkConnectivityStatus ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkconnectivitystatus/reset-ncsipolicyconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkconnectivitystatus/reset-ncsipolicyconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-NCSIPolicyConfiguration --- diff --git a/docset/winserver2019-ps/networkconnectivitystatus/Set-NCSIPolicyConfiguration.md b/docset/winserver2019-ps/networkconnectivitystatus/Set-NCSIPolicyConfiguration.md index 6e6eb0ca25..7e6b28233b 100644 --- a/docset/winserver2019-ps/networkconnectivitystatus/Set-NCSIPolicyConfiguration.md +++ b/docset/winserver2019-ps/networkconnectivitystatus/Set-NCSIPolicyConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NCSIPolicyConfiguration.cdxml-help.xml Module Name: NetworkConnectivityStatus ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkconnectivitystatus/set-ncsipolicyconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkconnectivitystatus/set-ncsipolicyconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NCSIPolicyConfiguration --- diff --git a/docset/winserver2019-ps/networkcontroller/Add-NetworkControllerNode.md b/docset/winserver2019-ps/networkcontroller/Add-NetworkControllerNode.md index 2856fed719..ed377256bc 100644 --- a/docset/winserver2019-ps/networkcontroller/Add-NetworkControllerNode.md +++ b/docset/winserver2019-ps/networkcontroller/Add-NetworkControllerNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/add-networkcontrollernode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/add-networkcontrollernode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NetworkControllerNode --- diff --git a/docset/winserver2019-ps/networkcontroller/Clear-NetworkControllerNodeContent.md b/docset/winserver2019-ps/networkcontroller/Clear-NetworkControllerNodeContent.md index b376cfa8f9..df723db2c8 100644 --- a/docset/winserver2019-ps/networkcontroller/Clear-NetworkControllerNodeContent.md +++ b/docset/winserver2019-ps/networkcontroller/Clear-NetworkControllerNodeContent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/clear-networkcontrollernodecontent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/clear-networkcontrollernodecontent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-NetworkControllerNodeContent --- diff --git a/docset/winserver2019-ps/networkcontroller/Disable-NetworkControllerNode.md b/docset/winserver2019-ps/networkcontroller/Disable-NetworkControllerNode.md index 8d90b0ea4d..203baeacc2 100644 --- a/docset/winserver2019-ps/networkcontroller/Disable-NetworkControllerNode.md +++ b/docset/winserver2019-ps/networkcontroller/Disable-NetworkControllerNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/disable-networkcontrollernode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/disable-networkcontrollernode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetworkControllerNode --- diff --git a/docset/winserver2019-ps/networkcontroller/Enable-NetworkControllerNode.md b/docset/winserver2019-ps/networkcontroller/Enable-NetworkControllerNode.md index 2e3801ef2d..8cec66031a 100644 --- a/docset/winserver2019-ps/networkcontroller/Enable-NetworkControllerNode.md +++ b/docset/winserver2019-ps/networkcontroller/Enable-NetworkControllerNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/enable-networkcontrollernode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/enable-networkcontrollernode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetworkControllerNode --- diff --git a/docset/winserver2019-ps/networkcontroller/Get-NetworkController.md b/docset/winserver2019-ps/networkcontroller/Get-NetworkController.md index 0c04ca1e28..c1b27152c6 100644 --- a/docset/winserver2019-ps/networkcontroller/Get-NetworkController.md +++ b/docset/winserver2019-ps/networkcontroller/Get-NetworkController.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontroller?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontroller?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkController --- diff --git a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerAccessControlList.md b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerAccessControlList.md index a5436a1ea2..73acb949c0 100644 --- a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerAccessControlList.md +++ b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerAccessControlList.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrolleraccesscontrollist?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrolleraccesscontrollist?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerAccessControlList --- diff --git a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerAccessControlListRule.md b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerAccessControlListRule.md index d361095fdd..4760f58cb4 100644 --- a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerAccessControlListRule.md +++ b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerAccessControlListRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrolleraccesscontrollistrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrolleraccesscontrollistrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerAccessControlListRule --- diff --git a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerCluster.md b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerCluster.md index 42f394f836..2764da7699 100644 --- a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerCluster.md +++ b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerCluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollercluster?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollercluster?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerCluster --- diff --git a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerConnectivityCheck.md b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerConnectivityCheck.md index 072b921b8d..a86cf8e2c8 100644 --- a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerConnectivityCheck.md +++ b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerConnectivityCheck.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerconnectivitycheck?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerconnectivitycheck?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerConnectivityCheck --- diff --git a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerConnectivityCheckResult.md b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerConnectivityCheckResult.md index 6c15aa6482..b63ccc5719 100644 --- a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerConnectivityCheckResult.md +++ b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerConnectivityCheckResult.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerconnectivitycheckresult?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerconnectivitycheckresult?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerConnectivityCheckResult --- diff --git a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerCredential.md b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerCredential.md index f874811eba..4b72ee5987 100644 --- a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerCredential.md +++ b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerCredential.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollercredential?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollercredential?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerCredential --- diff --git a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerDiagnostic.md b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerDiagnostic.md index 67c124039f..2098c11a5a 100644 --- a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerDiagnostic.md +++ b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerDiagnostic.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerdiagnostic?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerdiagnostic?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerDiagnostic --- diff --git a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerFabricRoute.md b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerFabricRoute.md index 3a9e20c4ab..4bfc795f08 100644 --- a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerFabricRoute.md +++ b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerFabricRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerfabricroute?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerfabricroute?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerFabricRoute --- diff --git a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerGateway.md b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerGateway.md index 9e6b4a2f6e..c1c211da12 100644 --- a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerGateway.md +++ b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerGateway.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollergateway?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollergateway?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerGateway --- diff --git a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerGatewayPool.md b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerGatewayPool.md index 7b5e89348c..8402fff821 100644 --- a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerGatewayPool.md +++ b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerGatewayPool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollergatewaypool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollergatewaypool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerGatewayPool --- diff --git a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerInternalResourceInstances.md b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerInternalResourceInstances.md index 2618fa5125..64b811b850 100644 --- a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerInternalResourceInstances.md +++ b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerInternalResourceInstances.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerinternalresourceinstances?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerinternalresourceinstances?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerInternalResourceInstances --- diff --git a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerIpPool.md b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerIpPool.md index 0050726e2e..d21b5c7522 100644 --- a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerIpPool.md +++ b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerIpPool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerippool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerippool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerIpPool --- diff --git a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerLoadBalancer.md b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerLoadBalancer.md index 185796c43a..d2ad8be632 100644 --- a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerLoadBalancer.md +++ b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerLoadBalancer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerloadbalancer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerloadbalancer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerLoadBalancer --- diff --git a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerLoadBalancerBackendAddressPool.md b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerLoadBalancerBackendAddressPool.md index 2283754011..57b028fc3c 100644 --- a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerLoadBalancerBackendAddressPool.md +++ b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerLoadBalancerBackendAddressPool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerloadbalancerbackendaddresspool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerloadbalancerbackendaddresspool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerLoadBalancerBackendAddressPool --- diff --git a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerLoadBalancerConfiguration.md b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerLoadBalancerConfiguration.md index 4e70e20d6f..fbb31d4f7b 100644 --- a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerLoadBalancerConfiguration.md +++ b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerLoadBalancerConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerloadbalancerconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerloadbalancerconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerLoadBalancerConfiguration --- diff --git a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerLoadBalancerFrontendIpConfiguration.md b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerLoadBalancerFrontendIpConfiguration.md index b9d6f1ff52..bf6dfc731d 100644 --- a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerLoadBalancerFrontendIpConfiguration.md +++ b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerLoadBalancerFrontendIpConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerloadbalancerfrontendipconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerloadbalancerfrontendipconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerLoadBalancerFrontendIpConfiguration --- diff --git a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerLoadBalancerInboundNatRule.md b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerLoadBalancerInboundNatRule.md index 7de0701cd5..0101fae3f5 100644 --- a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerLoadBalancerInboundNatRule.md +++ b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerLoadBalancerInboundNatRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerloadbalancerinboundnatrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerloadbalancerinboundnatrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerLoadBalancerInboundNatRule --- diff --git a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerLoadBalancerMux.md b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerLoadBalancerMux.md index 7e3022660c..37674bf3ed 100644 --- a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerLoadBalancerMux.md +++ b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerLoadBalancerMux.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerloadbalancermux?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerloadbalancermux?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerLoadBalancerMux --- diff --git a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerLoadBalancerOutboundNatRule.md b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerLoadBalancerOutboundNatRule.md index fd96d48a6b..c418f6f4c5 100644 --- a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerLoadBalancerOutboundNatRule.md +++ b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerLoadBalancerOutboundNatRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerloadbalanceroutboundnatrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerloadbalanceroutboundnatrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerLoadBalancerOutboundNatRule --- diff --git a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerLoadBalancerProbe.md b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerLoadBalancerProbe.md index bfb0888cf6..041e32908b 100644 --- a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerLoadBalancerProbe.md +++ b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerLoadBalancerProbe.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerloadbalancerprobe?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerloadbalancerprobe?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerLoadBalancerProbe --- diff --git a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerLoadBalancingRule.md b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerLoadBalancingRule.md index 10ea40bfcf..ada0ed18dd 100644 --- a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerLoadBalancingRule.md +++ b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerLoadBalancingRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerloadbalancingrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerloadbalancingrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerLoadBalancingRule --- diff --git a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerLogicalNetwork.md b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerLogicalNetwork.md index e3b6573126..dc7581eed4 100644 --- a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerLogicalNetwork.md +++ b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerLogicalNetwork.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerlogicalnetwork?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerlogicalnetwork?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerLogicalNetwork --- diff --git a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerLogicalSubnet.md b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerLogicalSubnet.md index a5d9d87c43..b2047552f2 100644 --- a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerLogicalSubnet.md +++ b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerLogicalSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerlogicalsubnet?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerlogicalsubnet?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerLogicalSubnet --- diff --git a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerMacPool.md b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerMacPool.md index 9a285e78a2..76efa9fa08 100644 --- a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerMacPool.md +++ b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerMacPool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollermacpool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollermacpool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerMacPool --- diff --git a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerNetworkInterface.md b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerNetworkInterface.md index 75d2ee88b3..7935bee82c 100644 --- a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerNetworkInterface.md +++ b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerNetworkInterface.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollernetworkinterface?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollernetworkinterface?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerNetworkInterface --- diff --git a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerNetworkInterfaceIpConfiguration.md b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerNetworkInterfaceIpConfiguration.md index 771a53089e..78554076b6 100644 --- a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerNetworkInterfaceIpConfiguration.md +++ b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerNetworkInterfaceIpConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollernetworkinterfaceipconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollernetworkinterfaceipconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerNetworkInterfaceIpConfiguration --- diff --git a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerNode.md b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerNode.md index 3ba6802cae..d97d0c232a 100644 --- a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerNode.md +++ b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollernode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollernode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerNode --- diff --git a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerPublicIpAddress.md b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerPublicIpAddress.md index 3dedafcc9e..7168c1ad5c 100644 --- a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerPublicIpAddress.md +++ b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerPublicIpAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerpublicipaddress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerpublicipaddress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerPublicIpAddress --- diff --git a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerRoute.md b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerRoute.md index fde56e6995..b4ef7e330f 100644 --- a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerRoute.md +++ b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerroute?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerroute?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerRoute --- diff --git a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerRouteTable.md b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerRouteTable.md index 4c1a407f12..26e69c9f23 100644 --- a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerRouteTable.md +++ b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerRouteTable.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerroutetable?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerroutetable?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerRouteTable --- diff --git a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerServer.md b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerServer.md index 44893fcaf6..d9f0a1e3c4 100644 --- a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerServer.md +++ b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerServer --- diff --git a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerServerInterface.md b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerServerInterface.md index 7aaf651756..427f676253 100644 --- a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerServerInterface.md +++ b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerServerInterface.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerserverinterface?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerserverinterface?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerServerInterface --- diff --git a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerServiceInsertion.md b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerServiceInsertion.md index e5712a7de4..3b8c086379 100644 --- a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerServiceInsertion.md +++ b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerServiceInsertion.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerserviceinsertion?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerserviceinsertion?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerServiceInsertion --- diff --git a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerState.md b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerState.md index 6b1f7b9ce5..8397b0c8be 100644 --- a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerState.md +++ b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerstate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerstate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerState --- diff --git a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerStatistics.md b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerStatistics.md index bad16cb508..16ca1daff9 100644 --- a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerStatistics.md +++ b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerStatistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerstatistics?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerstatistics?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerStatistics --- diff --git a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerVirtualGateway.md b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerVirtualGateway.md index 2cc4e5ec10..59249eae0f 100644 --- a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerVirtualGateway.md +++ b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerVirtualGateway.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualgateway?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualgateway?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerVirtualGateway --- diff --git a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerVirtualGatewayBgpPeer.md b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerVirtualGatewayBgpPeer.md index 987e2150bb..ba91566ba3 100644 --- a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerVirtualGatewayBgpPeer.md +++ b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerVirtualGatewayBgpPeer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualgatewaybgppeer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualgatewaybgppeer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerVirtualGatewayBgpPeer --- diff --git a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerVirtualGatewayBgpRouter.md b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerVirtualGatewayBgpRouter.md index e54d21cda2..a795d309dd 100644 --- a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerVirtualGatewayBgpRouter.md +++ b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerVirtualGatewayBgpRouter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualgatewaybgprouter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualgatewaybgprouter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerVirtualGatewayBgpRouter --- diff --git a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerVirtualGatewayNetworkConnection.md b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerVirtualGatewayNetworkConnection.md index 1755adfe4a..421713efd3 100644 --- a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerVirtualGatewayNetworkConnection.md +++ b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerVirtualGatewayNetworkConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualgatewaynetworkconnection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualgatewaynetworkconnection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerVirtualGatewayNetworkConnection --- diff --git a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerVirtualGatewayPolicyMap.md b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerVirtualGatewayPolicyMap.md index d8a540857c..8c9559d1b4 100644 --- a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerVirtualGatewayPolicyMap.md +++ b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerVirtualGatewayPolicyMap.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualgatewaypolicymap?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualgatewaypolicymap?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerVirtualGatewayPolicyMap --- diff --git a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerVirtualNetwork.md b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerVirtualNetwork.md index 2bea7ec5eb..7f3eed0d88 100644 --- a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerVirtualNetwork.md +++ b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerVirtualNetwork.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualnetwork?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualnetwork?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerVirtualNetwork --- diff --git a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerVirtualNetworkConfiguration.md b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerVirtualNetworkConfiguration.md index d2c5cef1b3..5bfcc40ec3 100644 --- a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerVirtualNetworkConfiguration.md +++ b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerVirtualNetworkConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualnetworkconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualnetworkconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerVirtualNetworkConfiguration --- diff --git a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerVirtualServer.md b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerVirtualServer.md index 87183a7a07..dabf474d2c 100644 --- a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerVirtualServer.md +++ b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerVirtualServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerVirtualServer --- diff --git a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerVirtualSubnet.md b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerVirtualSubnet.md index 9b8edd41ab..9ce8ab4062 100644 --- a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerVirtualSubnet.md +++ b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerVirtualSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualsubnet?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualsubnet?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerVirtualSubnet --- diff --git a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerVirtualSwitchConfiguration.md b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerVirtualSwitchConfiguration.md index 5f28415b98..5f28bf48a8 100644 --- a/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerVirtualSwitchConfiguration.md +++ b/docset/winserver2019-ps/networkcontroller/Get-NetworkControllerVirtualSwitchConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualswitchconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualswitchconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerVirtualSwitchConfiguration --- diff --git a/docset/winserver2019-ps/networkcontroller/Install-NetworkController.md b/docset/winserver2019-ps/networkcontroller/Install-NetworkController.md index 02a13a33bc..361296965c 100644 --- a/docset/winserver2019-ps/networkcontroller/Install-NetworkController.md +++ b/docset/winserver2019-ps/networkcontroller/Install-NetworkController.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/install-networkcontroller?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/install-networkcontroller?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-NetworkController --- diff --git a/docset/winserver2019-ps/networkcontroller/Install-NetworkControllerCluster.md b/docset/winserver2019-ps/networkcontroller/Install-NetworkControllerCluster.md index 576d8572a7..d2b1fffd94 100644 --- a/docset/winserver2019-ps/networkcontroller/Install-NetworkControllerCluster.md +++ b/docset/winserver2019-ps/networkcontroller/Install-NetworkControllerCluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/install-networkcontrollercluster?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/install-networkcontrollercluster?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-NetworkControllerCluster --- diff --git a/docset/winserver2019-ps/networkcontroller/Invoke-NetworkControllerConnectivityCheck.md b/docset/winserver2019-ps/networkcontroller/Invoke-NetworkControllerConnectivityCheck.md index 4123081561..a0abf9d5ab 100644 --- a/docset/winserver2019-ps/networkcontroller/Invoke-NetworkControllerConnectivityCheck.md +++ b/docset/winserver2019-ps/networkcontroller/Invoke-NetworkControllerConnectivityCheck.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/invoke-networkcontrollerconnectivitycheck?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/invoke-networkcontrollerconnectivitycheck?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-NetworkControllerConnectivityCheck --- diff --git a/docset/winserver2019-ps/networkcontroller/Invoke-NetworkControllerState.md b/docset/winserver2019-ps/networkcontroller/Invoke-NetworkControllerState.md index bd76ea6350..47344bf585 100644 --- a/docset/winserver2019-ps/networkcontroller/Invoke-NetworkControllerState.md +++ b/docset/winserver2019-ps/networkcontroller/Invoke-NetworkControllerState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/invoke-networkcontrollerstate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/invoke-networkcontrollerstate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-NetworkControllerState --- diff --git a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerAccessControlList.md b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerAccessControlList.md index 388860515d..00f91e0b05 100644 --- a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerAccessControlList.md +++ b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerAccessControlList.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrolleraccesscontrollist?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrolleraccesscontrollist?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerAccessControlList --- diff --git a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerAccessControlListRule.md b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerAccessControlListRule.md index de3eae6e2a..edd7eb57e7 100644 --- a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerAccessControlListRule.md +++ b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerAccessControlListRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrolleraccesscontrollistrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrolleraccesscontrollistrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerAccessControlListRule --- diff --git a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerCredential.md b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerCredential.md index e470ed9333..f1408452eb 100644 --- a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerCredential.md +++ b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerCredential.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollercredential?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollercredential?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerCredential --- diff --git a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerFabricRoute.md b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerFabricRoute.md index 9c70d47fb9..e9a36c702e 100644 --- a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerFabricRoute.md +++ b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerFabricRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerfabricroute?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerfabricroute?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerFabricRoute --- diff --git a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerGateway.md b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerGateway.md index 1f3ea9b9f5..314a9c4601 100644 --- a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerGateway.md +++ b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerGateway.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollergateway?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollergateway?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerGateway --- diff --git a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerGatewayPool.md b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerGatewayPool.md index 49df0c653e..fe6ecd0727 100644 --- a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerGatewayPool.md +++ b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerGatewayPool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollergatewaypool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollergatewaypool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerGatewayPool --- diff --git a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerIpPool.md b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerIpPool.md index 8cbe572884..5774e8b76b 100644 --- a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerIpPool.md +++ b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerIpPool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerippool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerippool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerIpPool --- diff --git a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerLoadBalancer.md b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerLoadBalancer.md index bf0ad173d1..56886cf611 100644 --- a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerLoadBalancer.md +++ b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerLoadBalancer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerloadbalancer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerloadbalancer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerLoadBalancer --- diff --git a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerLoadBalancerBackendAddressPool.md b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerLoadBalancerBackendAddressPool.md index a50c1dd863..e54e56782f 100644 --- a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerLoadBalancerBackendAddressPool.md +++ b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerLoadBalancerBackendAddressPool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerloadbalancerbackendaddresspool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerloadbalancerbackendaddresspool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerLoadBalancerBackendAddressPool --- diff --git a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerLoadBalancerConfiguration.md b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerLoadBalancerConfiguration.md index b8c737eda5..df47147d2c 100644 --- a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerLoadBalancerConfiguration.md +++ b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerLoadBalancerConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerloadbalancerconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerloadbalancerconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerLoadBalancerConfiguration --- diff --git a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerLoadBalancerFrontendIpConfiguration.md b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerLoadBalancerFrontendIpConfiguration.md index 346c2989a0..4802406077 100644 --- a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerLoadBalancerFrontendIpConfiguration.md +++ b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerLoadBalancerFrontendIpConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerloadbalancerfrontendipconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerloadbalancerfrontendipconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerLoadBalancerFrontendIpConfiguration --- diff --git a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerLoadBalancerInboundNatRule.md b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerLoadBalancerInboundNatRule.md index ede062751c..79c7b93ad0 100644 --- a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerLoadBalancerInboundNatRule.md +++ b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerLoadBalancerInboundNatRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerloadbalancerinboundnatrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerloadbalancerinboundnatrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerLoadBalancerInboundNatRule --- diff --git a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerLoadBalancerMux.md b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerLoadBalancerMux.md index a84c19db09..e402cca299 100644 --- a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerLoadBalancerMux.md +++ b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerLoadBalancerMux.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerloadbalancermux?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerloadbalancermux?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerLoadBalancerMux --- diff --git a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerLoadBalancerOutboundNatRule.md b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerLoadBalancerOutboundNatRule.md index c7862de757..868ba0ea11 100644 --- a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerLoadBalancerOutboundNatRule.md +++ b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerLoadBalancerOutboundNatRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerloadbalanceroutboundnatrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerloadbalanceroutboundnatrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerLoadBalancerOutboundNatRule --- diff --git a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerLoadBalancerProbe.md b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerLoadBalancerProbe.md index c795b6f66a..5f75dc6b0d 100644 --- a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerLoadBalancerProbe.md +++ b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerLoadBalancerProbe.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerloadbalancerprobe?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerloadbalancerprobe?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerLoadBalancerProbe --- diff --git a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerLoadBalancingRule.md b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerLoadBalancingRule.md index 16a92de8ee..359a42b0f2 100644 --- a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerLoadBalancingRule.md +++ b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerLoadBalancingRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerloadbalancingrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerloadbalancingrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerLoadBalancingRule --- diff --git a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerLogicalNetwork.md b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerLogicalNetwork.md index d87955db8e..4c6031af75 100644 --- a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerLogicalNetwork.md +++ b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerLogicalNetwork.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerlogicalnetwork?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerlogicalnetwork?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerLogicalNetwork --- diff --git a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerLogicalSubnet.md b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerLogicalSubnet.md index e0807164ad..cacc04de7d 100644 --- a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerLogicalSubnet.md +++ b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerLogicalSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerlogicalsubnet?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerlogicalsubnet?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerLogicalSubnet --- diff --git a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerMacPool.md b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerMacPool.md index ef5f661969..6ea14b20f7 100644 --- a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerMacPool.md +++ b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerMacPool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollermacpool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollermacpool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerMacPool --- diff --git a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerNetworkInterface.md b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerNetworkInterface.md index d0d6ed3bda..495eb157b2 100644 --- a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerNetworkInterface.md +++ b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerNetworkInterface.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollernetworkinterface?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollernetworkinterface?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerNetworkInterface --- diff --git a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerNetworkInterfaceIpConfiguration.md b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerNetworkInterfaceIpConfiguration.md index 0b21c7befd..0e7a2f2002 100644 --- a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerNetworkInterfaceIpConfiguration.md +++ b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerNetworkInterfaceIpConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollernetworkinterfaceipconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollernetworkinterfaceipconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerNetworkInterfaceIpConfiguration --- diff --git a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerNodeObject.md b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerNodeObject.md index aa56130b02..4fafbf3275 100644 --- a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerNodeObject.md +++ b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerNodeObject.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollernodeobject?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollernodeobject?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerNodeObject --- diff --git a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerPublicIpAddress.md b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerPublicIpAddress.md index 0519230572..eeb7479ec9 100644 --- a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerPublicIpAddress.md +++ b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerPublicIpAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerpublicipaddress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerpublicipaddress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerPublicIpAddress --- diff --git a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerRoute.md b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerRoute.md index 567fee18b3..ae2ce32143 100644 --- a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerRoute.md +++ b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerroute?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerroute?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerRoute --- diff --git a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerRouteTable.md b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerRouteTable.md index c117597acd..f1b879f8a2 100644 --- a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerRouteTable.md +++ b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerRouteTable.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerroutetable?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerroutetable?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerRouteTable --- diff --git a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerServer.md b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerServer.md index a5311fc496..a8c121f85c 100644 --- a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerServer.md +++ b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerServer --- diff --git a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerServerInterface.md b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerServerInterface.md index 66c33c53a8..7398e6f8f8 100644 --- a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerServerInterface.md +++ b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerServerInterface.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerserverinterface?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerserverinterface?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerServerInterface --- diff --git a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerServiceInsertion.md b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerServiceInsertion.md index 703705854f..e724e951da 100644 --- a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerServiceInsertion.md +++ b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerServiceInsertion.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerserviceinsertion?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerserviceinsertion?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerServiceInsertion --- diff --git a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerVirtualGateway.md b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerVirtualGateway.md index 6cbd9cc48b..a3d4f9d97e 100644 --- a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerVirtualGateway.md +++ b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerVirtualGateway.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollervirtualgateway?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollervirtualgateway?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerVirtualGateway --- diff --git a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerVirtualGatewayBgpPeer.md b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerVirtualGatewayBgpPeer.md index b72abd8a48..ee99cf4c0f 100644 --- a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerVirtualGatewayBgpPeer.md +++ b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerVirtualGatewayBgpPeer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollervirtualgatewaybgppeer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollervirtualgatewaybgppeer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerVirtualGatewayBgpPeer --- diff --git a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerVirtualGatewayBgpRouter.md b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerVirtualGatewayBgpRouter.md index 0c3db14b76..04c65e037c 100644 --- a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerVirtualGatewayBgpRouter.md +++ b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerVirtualGatewayBgpRouter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollervirtualgatewaybgprouter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollervirtualgatewaybgprouter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerVirtualGatewayBgpRouter --- diff --git a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerVirtualGatewayNetworkConnection.md b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerVirtualGatewayNetworkConnection.md index d123017060..f5c8c383cc 100644 --- a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerVirtualGatewayNetworkConnection.md +++ b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerVirtualGatewayNetworkConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollervirtualgatewaynetworkconnection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollervirtualgatewaynetworkconnection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerVirtualGatewayNetworkConnection --- diff --git a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerVirtualGatewayPolicyMap.md b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerVirtualGatewayPolicyMap.md index e2890d036c..fa91f5f8c7 100644 --- a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerVirtualGatewayPolicyMap.md +++ b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerVirtualGatewayPolicyMap.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollervirtualgatewaypolicymap?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollervirtualgatewaypolicymap?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerVirtualGatewayPolicyMap --- diff --git a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerVirtualNetwork.md b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerVirtualNetwork.md index c899fbc350..f53281440a 100644 --- a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerVirtualNetwork.md +++ b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerVirtualNetwork.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollervirtualnetwork?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollervirtualnetwork?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerVirtualNetwork --- diff --git a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerVirtualServer.md b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerVirtualServer.md index 0336bbbcc6..32afd3d569 100644 --- a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerVirtualServer.md +++ b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerVirtualServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollervirtualserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollervirtualserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerVirtualServer --- diff --git a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerVirtualSubnet.md b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerVirtualSubnet.md index 47c9fd6a10..2180506c8d 100644 --- a/docset/winserver2019-ps/networkcontroller/New-NetworkControllerVirtualSubnet.md +++ b/docset/winserver2019-ps/networkcontroller/New-NetworkControllerVirtualSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollervirtualsubnet?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollervirtualsubnet?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerVirtualSubnet --- diff --git a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerAccessControlList.md b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerAccessControlList.md index ed372a1d6b..d1ad4c60d2 100644 --- a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerAccessControlList.md +++ b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerAccessControlList.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrolleraccesscontrollist?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrolleraccesscontrollist?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerAccessControlList --- diff --git a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerAccessControlListRule.md b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerAccessControlListRule.md index 36107da560..4ab8bfb4a0 100644 --- a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerAccessControlListRule.md +++ b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerAccessControlListRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrolleraccesscontrollistrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrolleraccesscontrollistrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerAccessControlListRule --- diff --git a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerCredential.md b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerCredential.md index f5538928f1..3f8882794d 100644 --- a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerCredential.md +++ b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerCredential.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollercredential?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollercredential?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerCredential --- diff --git a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerFabricRoute.md b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerFabricRoute.md index 223269fbd7..33bc0f3276 100644 --- a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerFabricRoute.md +++ b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerFabricRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerfabricroute?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerfabricroute?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerFabricRoute --- diff --git a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerGateway.md b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerGateway.md index ebbad1a8f4..297671723e 100644 --- a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerGateway.md +++ b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerGateway.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollergateway?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollergateway?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerGateway --- diff --git a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerGatewayPool.md b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerGatewayPool.md index 27ccea5a61..76cf76f777 100644 --- a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerGatewayPool.md +++ b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerGatewayPool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollergatewaypool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollergatewaypool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerGatewayPool --- diff --git a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerIpPool.md b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerIpPool.md index 1b69680fa6..aff0278317 100644 --- a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerIpPool.md +++ b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerIpPool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerippool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerippool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerIpPool --- diff --git a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerLoadBalancer.md b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerLoadBalancer.md index 1c269cfafd..0a514d91c5 100644 --- a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerLoadBalancer.md +++ b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerLoadBalancer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerloadbalancer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerloadbalancer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerLoadBalancer --- diff --git a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerLoadBalancerBackendAddressPool.md b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerLoadBalancerBackendAddressPool.md index 230a590358..007872c179 100644 --- a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerLoadBalancerBackendAddressPool.md +++ b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerLoadBalancerBackendAddressPool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerloadbalancerbackendaddresspool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerloadbalancerbackendaddresspool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerLoadBalancerBackendAddressPool --- diff --git a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerLoadBalancerConfiguration.md b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerLoadBalancerConfiguration.md index 08c427d140..2083cc9166 100644 --- a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerLoadBalancerConfiguration.md +++ b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerLoadBalancerConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerloadbalancerconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerloadbalancerconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerLoadBalancerConfiguration --- diff --git a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerLoadBalancerFrontendIpConfiguration.md b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerLoadBalancerFrontendIpConfiguration.md index e2ff40e640..3a44f4f53c 100644 --- a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerLoadBalancerFrontendIpConfiguration.md +++ b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerLoadBalancerFrontendIpConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerloadbalancerfrontendipconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerloadbalancerfrontendipconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerLoadBalancerFrontendIpConfiguration --- diff --git a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerLoadBalancerInboundNatRule.md b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerLoadBalancerInboundNatRule.md index a56b47b126..830b08870f 100644 --- a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerLoadBalancerInboundNatRule.md +++ b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerLoadBalancerInboundNatRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerloadbalancerinboundnatrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerloadbalancerinboundnatrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerLoadBalancerInboundNatRule --- diff --git a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerLoadBalancerMux.md b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerLoadBalancerMux.md index a2242f8d68..f6768c130c 100644 --- a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerLoadBalancerMux.md +++ b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerLoadBalancerMux.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerloadbalancermux?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerloadbalancermux?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerLoadBalancerMux --- diff --git a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerLoadBalancerOutboundNatRule.md b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerLoadBalancerOutboundNatRule.md index f37ea1fbb5..1fe3c7a5b1 100644 --- a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerLoadBalancerOutboundNatRule.md +++ b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerLoadBalancerOutboundNatRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerloadbalanceroutboundnatrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerloadbalanceroutboundnatrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerLoadBalancerOutboundNatRule --- diff --git a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerLoadBalancerProbe.md b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerLoadBalancerProbe.md index 0dd1ddfa7c..6ac3106f59 100644 --- a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerLoadBalancerProbe.md +++ b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerLoadBalancerProbe.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerloadbalancerprobe?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerloadbalancerprobe?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerLoadBalancerProbe --- diff --git a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerLoadBalancingRule.md b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerLoadBalancingRule.md index 8f0aed3000..daf60fa2ee 100644 --- a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerLoadBalancingRule.md +++ b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerLoadBalancingRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerloadbalancingrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerloadbalancingrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerLoadBalancingRule --- diff --git a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerLogicalNetwork.md b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerLogicalNetwork.md index 8fc8366f36..337126e0a1 100644 --- a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerLogicalNetwork.md +++ b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerLogicalNetwork.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerlogicalnetwork?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerlogicalnetwork?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerLogicalNetwork --- diff --git a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerLogicalSubnet.md b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerLogicalSubnet.md index 8940817a75..05571d7047 100644 --- a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerLogicalSubnet.md +++ b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerLogicalSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerlogicalsubnet?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerlogicalsubnet?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerLogicalSubnet --- diff --git a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerMacPool.md b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerMacPool.md index 5b244b9af8..14da627312 100644 --- a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerMacPool.md +++ b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerMacPool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollermacpool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollermacpool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerMacPool --- diff --git a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerNetworkInterface.md b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerNetworkInterface.md index f50572000a..4ac3c74417 100644 --- a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerNetworkInterface.md +++ b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerNetworkInterface.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollernetworkinterface?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollernetworkinterface?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerNetworkInterface --- diff --git a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerNetworkInterfaceIpConfiguration.md b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerNetworkInterfaceIpConfiguration.md index 54341b4392..ac4eb2cc97 100644 --- a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerNetworkInterfaceIpConfiguration.md +++ b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerNetworkInterfaceIpConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollernetworkinterfaceipconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollernetworkinterfaceipconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerNetworkInterfaceIpConfiguration --- diff --git a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerNode.md b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerNode.md index 64287802d0..33e1f1307d 100644 --- a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerNode.md +++ b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollernode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollernode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerNode --- diff --git a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerPublicIpAddress.md b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerPublicIpAddress.md index c1caa13604..7ad1f68a5d 100644 --- a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerPublicIpAddress.md +++ b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerPublicIpAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerpublicipaddress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerpublicipaddress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerPublicIpAddress --- diff --git a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerRoute.md b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerRoute.md index 50b809bf95..701d408a46 100644 --- a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerRoute.md +++ b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerroute?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerroute?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerRoute --- diff --git a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerRouteTable.md b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerRouteTable.md index 7efa3244db..9d2a7dfb2b 100644 --- a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerRouteTable.md +++ b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerRouteTable.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerroutetable?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerroutetable?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerRouteTable --- diff --git a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerServer.md b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerServer.md index b2a4ced42d..63b1e98cff 100644 --- a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerServer.md +++ b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerServer --- diff --git a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerServerInterface.md b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerServerInterface.md index 4bd143420b..6ad28a1e5f 100644 --- a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerServerInterface.md +++ b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerServerInterface.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerserverinterface?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerserverinterface?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerServerInterface --- diff --git a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerServiceInsertion.md b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerServiceInsertion.md index 6490d8aa6c..aa4fced896 100644 --- a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerServiceInsertion.md +++ b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerServiceInsertion.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerserviceinsertion?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerserviceinsertion?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerServiceInsertion --- diff --git a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerVirtualGateway.md b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerVirtualGateway.md index de73b755d2..c9b762ee1a 100644 --- a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerVirtualGateway.md +++ b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerVirtualGateway.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollervirtualgateway?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollervirtualgateway?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerVirtualGateway --- diff --git a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerVirtualGatewayBgpPeer.md b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerVirtualGatewayBgpPeer.md index b2c5b413d4..964dc9f0f3 100644 --- a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerVirtualGatewayBgpPeer.md +++ b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerVirtualGatewayBgpPeer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollervirtualgatewaybgppeer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollervirtualgatewaybgppeer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerVirtualGatewayBgpPeer --- diff --git a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerVirtualGatewayBgpRouter.md b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerVirtualGatewayBgpRouter.md index 6c2147a640..62ffeb68c1 100644 --- a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerVirtualGatewayBgpRouter.md +++ b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerVirtualGatewayBgpRouter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollervirtualgatewaybgprouter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollervirtualgatewaybgprouter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerVirtualGatewayBgpRouter --- diff --git a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerVirtualGatewayNetworkConnection.md b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerVirtualGatewayNetworkConnection.md index 0f0eb86816..5eb2dc209f 100644 --- a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerVirtualGatewayNetworkConnection.md +++ b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerVirtualGatewayNetworkConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollervirtualgatewaynetworkconnection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollervirtualgatewaynetworkconnection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerVirtualGatewayNetworkConnection --- diff --git a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerVirtualGatewayPolicyMap.md b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerVirtualGatewayPolicyMap.md index 49de24f6ec..01553bc2de 100644 --- a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerVirtualGatewayPolicyMap.md +++ b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerVirtualGatewayPolicyMap.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollervirtualgatewaypolicymap?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollervirtualgatewaypolicymap?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerVirtualGatewayPolicyMap --- diff --git a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerVirtualNetwork.md b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerVirtualNetwork.md index 49a5ee840d..878c452728 100644 --- a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerVirtualNetwork.md +++ b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerVirtualNetwork.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollervirtualnetwork?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollervirtualnetwork?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerVirtualNetwork --- diff --git a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerVirtualServer.md b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerVirtualServer.md index 71af67537b..6fd1df4884 100644 --- a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerVirtualServer.md +++ b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerVirtualServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollervirtualserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollervirtualserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerVirtualServer --- diff --git a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerVirtualSubnet.md b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerVirtualSubnet.md index 53e8994ec4..f9600b6097 100644 --- a/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerVirtualSubnet.md +++ b/docset/winserver2019-ps/networkcontroller/Remove-NetworkControllerVirtualSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollervirtualsubnet?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollervirtualsubnet?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerVirtualSubnet --- diff --git a/docset/winserver2019-ps/networkcontroller/Repair-NetworkControllerCluster.md b/docset/winserver2019-ps/networkcontroller/Repair-NetworkControllerCluster.md index d5a05a973e..f3fd40bab8 100644 --- a/docset/winserver2019-ps/networkcontroller/Repair-NetworkControllerCluster.md +++ b/docset/winserver2019-ps/networkcontroller/Repair-NetworkControllerCluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/repair-networkcontrollercluster?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/repair-networkcontrollercluster?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Repair-NetworkControllerCluster --- diff --git a/docset/winserver2019-ps/networkcontroller/Set-NetworkController.md b/docset/winserver2019-ps/networkcontroller/Set-NetworkController.md index a627ff17fc..b65997ea28 100644 --- a/docset/winserver2019-ps/networkcontroller/Set-NetworkController.md +++ b/docset/winserver2019-ps/networkcontroller/Set-NetworkController.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/set-networkcontroller?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/set-networkcontroller?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetworkController --- diff --git a/docset/winserver2019-ps/networkcontroller/Set-NetworkControllerCluster.md b/docset/winserver2019-ps/networkcontroller/Set-NetworkControllerCluster.md index 5702150ee0..7e421907ca 100644 --- a/docset/winserver2019-ps/networkcontroller/Set-NetworkControllerCluster.md +++ b/docset/winserver2019-ps/networkcontroller/Set-NetworkControllerCluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/set-networkcontrollercluster?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/set-networkcontrollercluster?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetworkControllerCluster --- diff --git a/docset/winserver2019-ps/networkcontroller/Set-NetworkControllerDiagnostic.md b/docset/winserver2019-ps/networkcontroller/Set-NetworkControllerDiagnostic.md index c0b1b1fb0f..597bd55199 100644 --- a/docset/winserver2019-ps/networkcontroller/Set-NetworkControllerDiagnostic.md +++ b/docset/winserver2019-ps/networkcontroller/Set-NetworkControllerDiagnostic.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/set-networkcontrollerdiagnostic?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/set-networkcontrollerdiagnostic?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetworkControllerDiagnostic --- diff --git a/docset/winserver2019-ps/networkcontroller/Set-NetworkControllerNode.md b/docset/winserver2019-ps/networkcontroller/Set-NetworkControllerNode.md index 914970f396..cea2e54615 100644 --- a/docset/winserver2019-ps/networkcontroller/Set-NetworkControllerNode.md +++ b/docset/winserver2019-ps/networkcontroller/Set-NetworkControllerNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/set-networkcontrollernode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/set-networkcontrollernode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetworkControllerNode --- diff --git a/docset/winserver2019-ps/networkcontroller/Set-NetworkControllerVirtualNetworkConfiguration.md b/docset/winserver2019-ps/networkcontroller/Set-NetworkControllerVirtualNetworkConfiguration.md index 65a7af53aa..e92decdb8a 100644 --- a/docset/winserver2019-ps/networkcontroller/Set-NetworkControllerVirtualNetworkConfiguration.md +++ b/docset/winserver2019-ps/networkcontroller/Set-NetworkControllerVirtualNetworkConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/set-networkcontrollervirtualnetworkconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/set-networkcontrollervirtualnetworkconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetworkControllerVirtualNetworkConfiguration --- diff --git a/docset/winserver2019-ps/networkcontroller/Set-NetworkControllerVirtualSwitchConfiguration.md b/docset/winserver2019-ps/networkcontroller/Set-NetworkControllerVirtualSwitchConfiguration.md index acde17d23c..9643ca384b 100644 --- a/docset/winserver2019-ps/networkcontroller/Set-NetworkControllerVirtualSwitchConfiguration.md +++ b/docset/winserver2019-ps/networkcontroller/Set-NetworkControllerVirtualSwitchConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/set-networkcontrollervirtualswitchconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/set-networkcontrollervirtualswitchconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetworkControllerVirtualSwitchConfiguration --- diff --git a/docset/winserver2019-ps/networkcontroller/Uninstall-NetworkController.md b/docset/winserver2019-ps/networkcontroller/Uninstall-NetworkController.md index d129725e13..7102c46cac 100644 --- a/docset/winserver2019-ps/networkcontroller/Uninstall-NetworkController.md +++ b/docset/winserver2019-ps/networkcontroller/Uninstall-NetworkController.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/uninstall-networkcontroller?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/uninstall-networkcontroller?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-NetworkController --- diff --git a/docset/winserver2019-ps/networkcontroller/Uninstall-NetworkControllerCluster.md b/docset/winserver2019-ps/networkcontroller/Uninstall-NetworkControllerCluster.md index 30e0e684d0..773cc9e029 100644 --- a/docset/winserver2019-ps/networkcontroller/Uninstall-NetworkControllerCluster.md +++ b/docset/winserver2019-ps/networkcontroller/Uninstall-NetworkControllerCluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/uninstall-networkcontrollercluster?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/uninstall-networkcontrollercluster?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-NetworkControllerCluster --- diff --git a/docset/winserver2019-ps/networkcontroller/Update-NetworkController.md b/docset/winserver2019-ps/networkcontroller/Update-NetworkController.md index 4f89f3ffdb..5bace94a05 100644 --- a/docset/winserver2019-ps/networkcontroller/Update-NetworkController.md +++ b/docset/winserver2019-ps/networkcontroller/Update-NetworkController.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/update-networkcontroller?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/update-networkcontroller?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-NetworkController --- diff --git a/docset/winserver2019-ps/networkcontrollerdiagnostics/Debug-NetworkController.md b/docset/winserver2019-ps/networkcontrollerdiagnostics/Debug-NetworkController.md index 7747335e75..82defdca4f 100644 --- a/docset/winserver2019-ps/networkcontrollerdiagnostics/Debug-NetworkController.md +++ b/docset/winserver2019-ps/networkcontrollerdiagnostics/Debug-NetworkController.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Debug-NetworkController-help.xml Module Name: NetworkControllerDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontrollerdiagnostics/debug-networkcontroller?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontrollerdiagnostics/debug-networkcontroller?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Debug-NetworkController --- diff --git a/docset/winserver2019-ps/networkcontrollerdiagnostics/Debug-NetworkControllerConfigurationState.md b/docset/winserver2019-ps/networkcontrollerdiagnostics/Debug-NetworkControllerConfigurationState.md index cdeadf5d5b..c1905a9ade 100644 --- a/docset/winserver2019-ps/networkcontrollerdiagnostics/Debug-NetworkControllerConfigurationState.md +++ b/docset/winserver2019-ps/networkcontrollerdiagnostics/Debug-NetworkControllerConfigurationState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Debug-NetworkControllerConfigurationState-help.xml Module Name: NetworkControllerDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontrollerdiagnostics/debug-networkcontrollerconfigurationstate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontrollerdiagnostics/debug-networkcontrollerconfigurationstate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Debug-NetworkControllerConfigurationState --- diff --git a/docset/winserver2019-ps/networkcontrollerdiagnostics/Debug-ServiceFabricNodeStatus.md b/docset/winserver2019-ps/networkcontrollerdiagnostics/Debug-ServiceFabricNodeStatus.md index 6bdf54d256..ce91e2b8cb 100644 --- a/docset/winserver2019-ps/networkcontrollerdiagnostics/Debug-ServiceFabricNodeStatus.md +++ b/docset/winserver2019-ps/networkcontrollerdiagnostics/Debug-ServiceFabricNodeStatus.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Debug-ServiceFabricNodeStatus-help.xml Module Name: NetworkControllerDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontrollerdiagnostics/debug-servicefabricnodestatus?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontrollerdiagnostics/debug-servicefabricnodestatus?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Debug-ServiceFabricNodeStatus --- diff --git a/docset/winserver2019-ps/networkcontrollerdiagnostics/Get-NetworkControllerDeploymentInfo.md b/docset/winserver2019-ps/networkcontrollerdiagnostics/Get-NetworkControllerDeploymentInfo.md index 7e4a680464..e0d91dfc9f 100644 --- a/docset/winserver2019-ps/networkcontrollerdiagnostics/Get-NetworkControllerDeploymentInfo.md +++ b/docset/winserver2019-ps/networkcontrollerdiagnostics/Get-NetworkControllerDeploymentInfo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Debug-NetworkController-help.xml Module Name: NetworkControllerDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontrollerdiagnostics/get-networkcontrollerdeploymentinfo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontrollerdiagnostics/get-networkcontrollerdeploymentinfo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerDeploymentInfo --- diff --git a/docset/winserver2019-ps/networkcontrollerdiagnostics/Get-NetworkControllerReplica.md b/docset/winserver2019-ps/networkcontrollerdiagnostics/Get-NetworkControllerReplica.md index 4767397e16..ddaab214ca 100644 --- a/docset/winserver2019-ps/networkcontrollerdiagnostics/Get-NetworkControllerReplica.md +++ b/docset/winserver2019-ps/networkcontrollerdiagnostics/Get-NetworkControllerReplica.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Get-NetworkControllerReplica-help.xml Module Name: NetworkControllerDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontrollerdiagnostics/get-networkcontrollerreplica?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontrollerdiagnostics/get-networkcontrollerreplica?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerReplica --- diff --git a/docset/winserver2019-ps/networkloadbalancingclusters/Add-NlbClusterNode.md b/docset/winserver2019-ps/networkloadbalancingclusters/Add-NlbClusterNode.md index 14e36734d8..c2b492ba40 100644 --- a/docset/winserver2019-ps/networkloadbalancingclusters/Add-NlbClusterNode.md +++ b/docset/winserver2019-ps/networkloadbalancingclusters/Add-NlbClusterNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/add-nlbclusternode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/add-nlbclusternode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NlbClusterNode --- diff --git a/docset/winserver2019-ps/networkloadbalancingclusters/Add-NlbClusterNodeDip.md b/docset/winserver2019-ps/networkloadbalancingclusters/Add-NlbClusterNodeDip.md index b5e70d1c37..d4b13eb327 100644 --- a/docset/winserver2019-ps/networkloadbalancingclusters/Add-NlbClusterNodeDip.md +++ b/docset/winserver2019-ps/networkloadbalancingclusters/Add-NlbClusterNodeDip.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/add-nlbclusternodedip?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/add-nlbclusternodedip?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NlbClusterNodeDip --- diff --git a/docset/winserver2019-ps/networkloadbalancingclusters/Add-NlbClusterPortRule.md b/docset/winserver2019-ps/networkloadbalancingclusters/Add-NlbClusterPortRule.md index d9c2027021..6f2fdf623d 100644 --- a/docset/winserver2019-ps/networkloadbalancingclusters/Add-NlbClusterPortRule.md +++ b/docset/winserver2019-ps/networkloadbalancingclusters/Add-NlbClusterPortRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/add-nlbclusterportrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/add-nlbclusterportrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NlbClusterPortRule --- diff --git a/docset/winserver2019-ps/networkloadbalancingclusters/Add-NlbClusterVip.md b/docset/winserver2019-ps/networkloadbalancingclusters/Add-NlbClusterVip.md index facdf97963..c5bedb384e 100644 --- a/docset/winserver2019-ps/networkloadbalancingclusters/Add-NlbClusterVip.md +++ b/docset/winserver2019-ps/networkloadbalancingclusters/Add-NlbClusterVip.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/add-nlbclustervip?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/add-nlbclustervip?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NlbClusterVip --- diff --git a/docset/winserver2019-ps/networkloadbalancingclusters/Disable-NlbClusterPortRule.md b/docset/winserver2019-ps/networkloadbalancingclusters/Disable-NlbClusterPortRule.md index cc402c3668..63155c0d63 100644 --- a/docset/winserver2019-ps/networkloadbalancingclusters/Disable-NlbClusterPortRule.md +++ b/docset/winserver2019-ps/networkloadbalancingclusters/Disable-NlbClusterPortRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/disable-nlbclusterportrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/disable-nlbclusterportrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NlbClusterPortRule --- diff --git a/docset/winserver2019-ps/networkloadbalancingclusters/Enable-NlbClusterPortRule.md b/docset/winserver2019-ps/networkloadbalancingclusters/Enable-NlbClusterPortRule.md index cc103ea719..3f85dd1c70 100644 --- a/docset/winserver2019-ps/networkloadbalancingclusters/Enable-NlbClusterPortRule.md +++ b/docset/winserver2019-ps/networkloadbalancingclusters/Enable-NlbClusterPortRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/enable-nlbclusterportrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/enable-nlbclusterportrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NlbClusterPortRule --- diff --git a/docset/winserver2019-ps/networkloadbalancingclusters/Get-NlbCluster.md b/docset/winserver2019-ps/networkloadbalancingclusters/Get-NlbCluster.md index e4294f99f5..02282fef11 100644 --- a/docset/winserver2019-ps/networkloadbalancingclusters/Get-NlbCluster.md +++ b/docset/winserver2019-ps/networkloadbalancingclusters/Get-NlbCluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbcluster?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbcluster?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NlbCluster --- diff --git a/docset/winserver2019-ps/networkloadbalancingclusters/Get-NlbClusterDriverInfo.md b/docset/winserver2019-ps/networkloadbalancingclusters/Get-NlbClusterDriverInfo.md index 8f10436ee5..9657555df5 100644 --- a/docset/winserver2019-ps/networkloadbalancingclusters/Get-NlbClusterDriverInfo.md +++ b/docset/winserver2019-ps/networkloadbalancingclusters/Get-NlbClusterDriverInfo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclusterdriverinfo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclusterdriverinfo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NlbClusterDriverInfo --- diff --git a/docset/winserver2019-ps/networkloadbalancingclusters/Get-NlbClusterNode.md b/docset/winserver2019-ps/networkloadbalancingclusters/Get-NlbClusterNode.md index ff6ba29ab3..bab3b47047 100644 --- a/docset/winserver2019-ps/networkloadbalancingclusters/Get-NlbClusterNode.md +++ b/docset/winserver2019-ps/networkloadbalancingclusters/Get-NlbClusterNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclusternode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclusternode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NlbClusterNode --- diff --git a/docset/winserver2019-ps/networkloadbalancingclusters/Get-NlbClusterNodeDip.md b/docset/winserver2019-ps/networkloadbalancingclusters/Get-NlbClusterNodeDip.md index a9d724d47b..4150d49a45 100644 --- a/docset/winserver2019-ps/networkloadbalancingclusters/Get-NlbClusterNodeDip.md +++ b/docset/winserver2019-ps/networkloadbalancingclusters/Get-NlbClusterNodeDip.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclusternodedip?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclusternodedip?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NlbClusterNodeDip --- diff --git a/docset/winserver2019-ps/networkloadbalancingclusters/Get-NlbClusterNodeNetworkInterface.md b/docset/winserver2019-ps/networkloadbalancingclusters/Get-NlbClusterNodeNetworkInterface.md index e6a9b2c9b3..1a9100f1c5 100644 --- a/docset/winserver2019-ps/networkloadbalancingclusters/Get-NlbClusterNodeNetworkInterface.md +++ b/docset/winserver2019-ps/networkloadbalancingclusters/Get-NlbClusterNodeNetworkInterface.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclusternodenetworkinterface?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclusternodenetworkinterface?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NlbClusterNodeNetworkInterface --- diff --git a/docset/winserver2019-ps/networkloadbalancingclusters/Get-NlbClusterPortRule.md b/docset/winserver2019-ps/networkloadbalancingclusters/Get-NlbClusterPortRule.md index ce9ca53f1c..6d2e46954c 100644 --- a/docset/winserver2019-ps/networkloadbalancingclusters/Get-NlbClusterPortRule.md +++ b/docset/winserver2019-ps/networkloadbalancingclusters/Get-NlbClusterPortRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclusterportrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclusterportrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NlbClusterPortRule --- diff --git a/docset/winserver2019-ps/networkloadbalancingclusters/Get-NlbClusterVip.md b/docset/winserver2019-ps/networkloadbalancingclusters/Get-NlbClusterVip.md index 2b6a5c5382..cb0cefb3cf 100644 --- a/docset/winserver2019-ps/networkloadbalancingclusters/Get-NlbClusterVip.md +++ b/docset/winserver2019-ps/networkloadbalancingclusters/Get-NlbClusterVip.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclustervip?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclustervip?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NlbClusterVip --- diff --git a/docset/winserver2019-ps/networkloadbalancingclusters/New-NlbCluster.md b/docset/winserver2019-ps/networkloadbalancingclusters/New-NlbCluster.md index 4d9de21be6..af291088de 100644 --- a/docset/winserver2019-ps/networkloadbalancingclusters/New-NlbCluster.md +++ b/docset/winserver2019-ps/networkloadbalancingclusters/New-NlbCluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/new-nlbcluster?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/new-nlbcluster?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NlbCluster --- diff --git a/docset/winserver2019-ps/networkloadbalancingclusters/New-NlbClusterIpv6Address.md b/docset/winserver2019-ps/networkloadbalancingclusters/New-NlbClusterIpv6Address.md index 1a9f49fcf8..8e36eee1e6 100644 --- a/docset/winserver2019-ps/networkloadbalancingclusters/New-NlbClusterIpv6Address.md +++ b/docset/winserver2019-ps/networkloadbalancingclusters/New-NlbClusterIpv6Address.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/new-nlbclusteripv6address?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/new-nlbclusteripv6address?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NlbClusterIpv6Address --- diff --git a/docset/winserver2019-ps/networkloadbalancingclusters/Remove-NlbCluster.md b/docset/winserver2019-ps/networkloadbalancingclusters/Remove-NlbCluster.md index f7ac3b9c15..5c2ee21bc9 100644 --- a/docset/winserver2019-ps/networkloadbalancingclusters/Remove-NlbCluster.md +++ b/docset/winserver2019-ps/networkloadbalancingclusters/Remove-NlbCluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/remove-nlbcluster?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/remove-nlbcluster?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NlbCluster --- diff --git a/docset/winserver2019-ps/networkloadbalancingclusters/Remove-NlbClusterNode.md b/docset/winserver2019-ps/networkloadbalancingclusters/Remove-NlbClusterNode.md index 98e46ba570..29d4872533 100644 --- a/docset/winserver2019-ps/networkloadbalancingclusters/Remove-NlbClusterNode.md +++ b/docset/winserver2019-ps/networkloadbalancingclusters/Remove-NlbClusterNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/remove-nlbclusternode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/remove-nlbclusternode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NlbClusterNode --- diff --git a/docset/winserver2019-ps/networkloadbalancingclusters/Remove-NlbClusterNodeDip.md b/docset/winserver2019-ps/networkloadbalancingclusters/Remove-NlbClusterNodeDip.md index 5c27430591..e45f39be71 100644 --- a/docset/winserver2019-ps/networkloadbalancingclusters/Remove-NlbClusterNodeDip.md +++ b/docset/winserver2019-ps/networkloadbalancingclusters/Remove-NlbClusterNodeDip.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/remove-nlbclusternodedip?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/remove-nlbclusternodedip?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NlbClusterNodeDip --- diff --git a/docset/winserver2019-ps/networkloadbalancingclusters/Remove-NlbClusterPortRule.md b/docset/winserver2019-ps/networkloadbalancingclusters/Remove-NlbClusterPortRule.md index 006c4d98dc..9b40fe7f64 100644 --- a/docset/winserver2019-ps/networkloadbalancingclusters/Remove-NlbClusterPortRule.md +++ b/docset/winserver2019-ps/networkloadbalancingclusters/Remove-NlbClusterPortRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/remove-nlbclusterportrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/remove-nlbclusterportrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NlbClusterPortRule --- diff --git a/docset/winserver2019-ps/networkloadbalancingclusters/Remove-NlbClusterVip.md b/docset/winserver2019-ps/networkloadbalancingclusters/Remove-NlbClusterVip.md index 8471766c8e..55f1bead38 100644 --- a/docset/winserver2019-ps/networkloadbalancingclusters/Remove-NlbClusterVip.md +++ b/docset/winserver2019-ps/networkloadbalancingclusters/Remove-NlbClusterVip.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/remove-nlbclustervip?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/remove-nlbclustervip?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NlbClusterVip --- diff --git a/docset/winserver2019-ps/networkloadbalancingclusters/Resume-NlbCluster.md b/docset/winserver2019-ps/networkloadbalancingclusters/Resume-NlbCluster.md index 7bea7872ee..942ff26d15 100644 --- a/docset/winserver2019-ps/networkloadbalancingclusters/Resume-NlbCluster.md +++ b/docset/winserver2019-ps/networkloadbalancingclusters/Resume-NlbCluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/resume-nlbcluster?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/resume-nlbcluster?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-NlbCluster --- diff --git a/docset/winserver2019-ps/networkloadbalancingclusters/Resume-NlbClusterNode.md b/docset/winserver2019-ps/networkloadbalancingclusters/Resume-NlbClusterNode.md index 08f5a720ae..d40fca91ef 100644 --- a/docset/winserver2019-ps/networkloadbalancingclusters/Resume-NlbClusterNode.md +++ b/docset/winserver2019-ps/networkloadbalancingclusters/Resume-NlbClusterNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/resume-nlbclusternode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/resume-nlbclusternode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-NlbClusterNode --- diff --git a/docset/winserver2019-ps/networkloadbalancingclusters/Set-NlbCluster.md b/docset/winserver2019-ps/networkloadbalancingclusters/Set-NlbCluster.md index 7a04a83212..0b1680261f 100644 --- a/docset/winserver2019-ps/networkloadbalancingclusters/Set-NlbCluster.md +++ b/docset/winserver2019-ps/networkloadbalancingclusters/Set-NlbCluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbcluster?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbcluster?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NlbCluster --- diff --git a/docset/winserver2019-ps/networkloadbalancingclusters/Set-NlbClusterNode.md b/docset/winserver2019-ps/networkloadbalancingclusters/Set-NlbClusterNode.md index 099acc6982..fb5a8b301c 100644 --- a/docset/winserver2019-ps/networkloadbalancingclusters/Set-NlbClusterNode.md +++ b/docset/winserver2019-ps/networkloadbalancingclusters/Set-NlbClusterNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclusternode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclusternode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NlbClusterNode --- diff --git a/docset/winserver2019-ps/networkloadbalancingclusters/Set-NlbClusterNodeDip.md b/docset/winserver2019-ps/networkloadbalancingclusters/Set-NlbClusterNodeDip.md index 5257d69604..a821d5b819 100644 --- a/docset/winserver2019-ps/networkloadbalancingclusters/Set-NlbClusterNodeDip.md +++ b/docset/winserver2019-ps/networkloadbalancingclusters/Set-NlbClusterNodeDip.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclusternodedip?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclusternodedip?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NlbClusterNodeDip --- diff --git a/docset/winserver2019-ps/networkloadbalancingclusters/Set-NlbClusterPortRule.md b/docset/winserver2019-ps/networkloadbalancingclusters/Set-NlbClusterPortRule.md index 8a27ecb595..db00122d86 100644 --- a/docset/winserver2019-ps/networkloadbalancingclusters/Set-NlbClusterPortRule.md +++ b/docset/winserver2019-ps/networkloadbalancingclusters/Set-NlbClusterPortRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclusterportrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclusterportrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NlbClusterPortRule --- diff --git a/docset/winserver2019-ps/networkloadbalancingclusters/Set-NlbClusterPortRuleNodeHandlingPriority.md b/docset/winserver2019-ps/networkloadbalancingclusters/Set-NlbClusterPortRuleNodeHandlingPriority.md index 2c335c2ae9..2bd83d1deb 100644 --- a/docset/winserver2019-ps/networkloadbalancingclusters/Set-NlbClusterPortRuleNodeHandlingPriority.md +++ b/docset/winserver2019-ps/networkloadbalancingclusters/Set-NlbClusterPortRuleNodeHandlingPriority.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclusterportrulenodehandlingpriority?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclusterportrulenodehandlingpriority?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NlbClusterPortRuleNodeHandlingPriority --- diff --git a/docset/winserver2019-ps/networkloadbalancingclusters/Set-NlbClusterPortRuleNodeWeight.md b/docset/winserver2019-ps/networkloadbalancingclusters/Set-NlbClusterPortRuleNodeWeight.md index 865d38cc0a..1240829334 100644 --- a/docset/winserver2019-ps/networkloadbalancingclusters/Set-NlbClusterPortRuleNodeWeight.md +++ b/docset/winserver2019-ps/networkloadbalancingclusters/Set-NlbClusterPortRuleNodeWeight.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclusterportrulenodeweight?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclusterportrulenodeweight?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NlbClusterPortRuleNodeWeight --- diff --git a/docset/winserver2019-ps/networkloadbalancingclusters/Set-NlbClusterVip.md b/docset/winserver2019-ps/networkloadbalancingclusters/Set-NlbClusterVip.md index b24c260d83..60cc654f5b 100644 --- a/docset/winserver2019-ps/networkloadbalancingclusters/Set-NlbClusterVip.md +++ b/docset/winserver2019-ps/networkloadbalancingclusters/Set-NlbClusterVip.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclustervip?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclustervip?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NlbClusterVip --- diff --git a/docset/winserver2019-ps/networkloadbalancingclusters/Start-NlbCluster.md b/docset/winserver2019-ps/networkloadbalancingclusters/Start-NlbCluster.md index cfb2769818..eb971cd50a 100644 --- a/docset/winserver2019-ps/networkloadbalancingclusters/Start-NlbCluster.md +++ b/docset/winserver2019-ps/networkloadbalancingclusters/Start-NlbCluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/start-nlbcluster?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/start-nlbcluster?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-NlbCluster --- diff --git a/docset/winserver2019-ps/networkloadbalancingclusters/Start-NlbClusterNode.md b/docset/winserver2019-ps/networkloadbalancingclusters/Start-NlbClusterNode.md index 0d85a796cc..155dd842a5 100644 --- a/docset/winserver2019-ps/networkloadbalancingclusters/Start-NlbClusterNode.md +++ b/docset/winserver2019-ps/networkloadbalancingclusters/Start-NlbClusterNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/start-nlbclusternode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/start-nlbclusternode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-NlbClusterNode --- diff --git a/docset/winserver2019-ps/networkloadbalancingclusters/Stop-NlbCluster.md b/docset/winserver2019-ps/networkloadbalancingclusters/Stop-NlbCluster.md index 2e6eda5295..387c304557 100644 --- a/docset/winserver2019-ps/networkloadbalancingclusters/Stop-NlbCluster.md +++ b/docset/winserver2019-ps/networkloadbalancingclusters/Stop-NlbCluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/stop-nlbcluster?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/stop-nlbcluster?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-NlbCluster --- diff --git a/docset/winserver2019-ps/networkloadbalancingclusters/Stop-NlbClusterNode.md b/docset/winserver2019-ps/networkloadbalancingclusters/Stop-NlbClusterNode.md index bbdc5d796d..f397beece8 100644 --- a/docset/winserver2019-ps/networkloadbalancingclusters/Stop-NlbClusterNode.md +++ b/docset/winserver2019-ps/networkloadbalancingclusters/Stop-NlbClusterNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/stop-nlbclusternode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/stop-nlbclusternode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-NlbClusterNode --- diff --git a/docset/winserver2019-ps/networkloadbalancingclusters/Suspend-NlbCluster.md b/docset/winserver2019-ps/networkloadbalancingclusters/Suspend-NlbCluster.md index 72d3e2a13f..084db1202f 100644 --- a/docset/winserver2019-ps/networkloadbalancingclusters/Suspend-NlbCluster.md +++ b/docset/winserver2019-ps/networkloadbalancingclusters/Suspend-NlbCluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/suspend-nlbcluster?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/suspend-nlbcluster?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-NlbCluster --- diff --git a/docset/winserver2019-ps/networkloadbalancingclusters/Suspend-NlbClusterNode.md b/docset/winserver2019-ps/networkloadbalancingclusters/Suspend-NlbClusterNode.md index 5fb77ccf17..e79df438f3 100644 --- a/docset/winserver2019-ps/networkloadbalancingclusters/Suspend-NlbClusterNode.md +++ b/docset/winserver2019-ps/networkloadbalancingclusters/Suspend-NlbClusterNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/suspend-nlbclusternode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/suspend-nlbclusternode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-NlbClusterNode --- diff --git a/docset/winserver2019-ps/networkswitchmanager/Disable-NetworkSwitchEthernetPort.md b/docset/winserver2019-ps/networkswitchmanager/Disable-NetworkSwitchEthernetPort.md index 420398bf9a..74b7be28c5 100644 --- a/docset/winserver2019-ps/networkswitchmanager/Disable-NetworkSwitchEthernetPort.md +++ b/docset/winserver2019-ps/networkswitchmanager/Disable-NetworkSwitchEthernetPort.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchEthernetPort-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/disable-networkswitchethernetport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/disable-networkswitchethernetport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetworkSwitchEthernetPort --- diff --git a/docset/winserver2019-ps/networkswitchmanager/Disable-NetworkSwitchFeature.md b/docset/winserver2019-ps/networkswitchmanager/Disable-NetworkSwitchFeature.md index c24b58c414..29e6bcfb7a 100644 --- a/docset/winserver2019-ps/networkswitchmanager/Disable-NetworkSwitchFeature.md +++ b/docset/winserver2019-ps/networkswitchmanager/Disable-NetworkSwitchFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchFeature-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/disable-networkswitchfeature?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/disable-networkswitchfeature?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetworkSwitchFeature --- diff --git a/docset/winserver2019-ps/networkswitchmanager/Disable-NetworkSwitchVlan.md b/docset/winserver2019-ps/networkswitchmanager/Disable-NetworkSwitchVlan.md index e346f93449..30756f557f 100644 --- a/docset/winserver2019-ps/networkswitchmanager/Disable-NetworkSwitchVlan.md +++ b/docset/winserver2019-ps/networkswitchmanager/Disable-NetworkSwitchVlan.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchVlan-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/disable-networkswitchvlan?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/disable-networkswitchvlan?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetworkSwitchVlan --- diff --git a/docset/winserver2019-ps/networkswitchmanager/Enable-NetworkSwitchEthernetPort.md b/docset/winserver2019-ps/networkswitchmanager/Enable-NetworkSwitchEthernetPort.md index c70981b015..e47e1ad70c 100644 --- a/docset/winserver2019-ps/networkswitchmanager/Enable-NetworkSwitchEthernetPort.md +++ b/docset/winserver2019-ps/networkswitchmanager/Enable-NetworkSwitchEthernetPort.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchEthernetPort-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/enable-networkswitchethernetport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/enable-networkswitchethernetport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetworkSwitchEthernetPort --- diff --git a/docset/winserver2019-ps/networkswitchmanager/Enable-NetworkSwitchFeature.md b/docset/winserver2019-ps/networkswitchmanager/Enable-NetworkSwitchFeature.md index ba0dca1284..231b0e1558 100644 --- a/docset/winserver2019-ps/networkswitchmanager/Enable-NetworkSwitchFeature.md +++ b/docset/winserver2019-ps/networkswitchmanager/Enable-NetworkSwitchFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchFeature-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/enable-networkswitchfeature?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/enable-networkswitchfeature?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetworkSwitchFeature --- diff --git a/docset/winserver2019-ps/networkswitchmanager/Enable-NetworkSwitchVlan.md b/docset/winserver2019-ps/networkswitchmanager/Enable-NetworkSwitchVlan.md index a9cf9cf289..dbe2e826d8 100644 --- a/docset/winserver2019-ps/networkswitchmanager/Enable-NetworkSwitchVlan.md +++ b/docset/winserver2019-ps/networkswitchmanager/Enable-NetworkSwitchVlan.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchVlan-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/enable-networkswitchvlan?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/enable-networkswitchvlan?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetworkSwitchVlan --- diff --git a/docset/winserver2019-ps/networkswitchmanager/Get-NetworkSwitchEthernetPort.md b/docset/winserver2019-ps/networkswitchmanager/Get-NetworkSwitchEthernetPort.md index c77d7ed748..f12aedc187 100644 --- a/docset/winserver2019-ps/networkswitchmanager/Get-NetworkSwitchEthernetPort.md +++ b/docset/winserver2019-ps/networkswitchmanager/Get-NetworkSwitchEthernetPort.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchEthernetPort-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/get-networkswitchethernetport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/get-networkswitchethernetport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkSwitchEthernetPort --- diff --git a/docset/winserver2019-ps/networkswitchmanager/Get-NetworkSwitchFeature.md b/docset/winserver2019-ps/networkswitchmanager/Get-NetworkSwitchFeature.md index b623ff3b86..784f83aa71 100644 --- a/docset/winserver2019-ps/networkswitchmanager/Get-NetworkSwitchFeature.md +++ b/docset/winserver2019-ps/networkswitchmanager/Get-NetworkSwitchFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchFeature-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/get-networkswitchfeature?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/get-networkswitchfeature?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkSwitchFeature --- diff --git a/docset/winserver2019-ps/networkswitchmanager/Get-NetworkSwitchGlobalData.md b/docset/winserver2019-ps/networkswitchmanager/Get-NetworkSwitchGlobalData.md index 7f8ffed36b..50524818f1 100644 --- a/docset/winserver2019-ps/networkswitchmanager/Get-NetworkSwitchGlobalData.md +++ b/docset/winserver2019-ps/networkswitchmanager/Get-NetworkSwitchGlobalData.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchGlobalSettingData-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/get-networkswitchglobaldata?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/get-networkswitchglobaldata?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkSwitchGlobalData --- diff --git a/docset/winserver2019-ps/networkswitchmanager/Get-NetworkSwitchVlan.md b/docset/winserver2019-ps/networkswitchmanager/Get-NetworkSwitchVlan.md index 9a75e8eb14..7fad6b343f 100644 --- a/docset/winserver2019-ps/networkswitchmanager/Get-NetworkSwitchVlan.md +++ b/docset/winserver2019-ps/networkswitchmanager/Get-NetworkSwitchVlan.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchVlan-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/get-networkswitchvlan?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/get-networkswitchvlan?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkSwitchVlan --- diff --git a/docset/winserver2019-ps/networkswitchmanager/New-NetworkSwitchVlan.md b/docset/winserver2019-ps/networkswitchmanager/New-NetworkSwitchVlan.md index a43b092a1c..548281fb25 100644 --- a/docset/winserver2019-ps/networkswitchmanager/New-NetworkSwitchVlan.md +++ b/docset/winserver2019-ps/networkswitchmanager/New-NetworkSwitchVlan.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchVlan-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/new-networkswitchvlan?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/new-networkswitchvlan?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkSwitchVlan --- diff --git a/docset/winserver2019-ps/networkswitchmanager/Remove-NetworkSwitchEthernetPortIPAddress.md b/docset/winserver2019-ps/networkswitchmanager/Remove-NetworkSwitchEthernetPortIPAddress.md index d6bedf67d9..11d6f043df 100644 --- a/docset/winserver2019-ps/networkswitchmanager/Remove-NetworkSwitchEthernetPortIPAddress.md +++ b/docset/winserver2019-ps/networkswitchmanager/Remove-NetworkSwitchEthernetPortIPAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchEthernetPort-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/remove-networkswitchethernetportipaddress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/remove-networkswitchethernetportipaddress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkSwitchEthernetPortIPAddress --- diff --git a/docset/winserver2019-ps/networkswitchmanager/Remove-NetworkSwitchVlan.md b/docset/winserver2019-ps/networkswitchmanager/Remove-NetworkSwitchVlan.md index b0a5c7cf34..8a68af02df 100644 --- a/docset/winserver2019-ps/networkswitchmanager/Remove-NetworkSwitchVlan.md +++ b/docset/winserver2019-ps/networkswitchmanager/Remove-NetworkSwitchVlan.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchVlan-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/remove-networkswitchvlan?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/remove-networkswitchvlan?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkSwitchVlan --- diff --git a/docset/winserver2019-ps/networkswitchmanager/Restore-NetworkSwitchConfiguration.md b/docset/winserver2019-ps/networkswitchmanager/Restore-NetworkSwitchConfiguration.md index c2fcf6cd83..a9b21adaec 100644 --- a/docset/winserver2019-ps/networkswitchmanager/Restore-NetworkSwitchConfiguration.md +++ b/docset/winserver2019-ps/networkswitchmanager/Restore-NetworkSwitchConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchConfiguration-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/restore-networkswitchconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/restore-networkswitchconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-NetworkSwitchConfiguration --- diff --git a/docset/winserver2019-ps/networkswitchmanager/Save-NetworkSwitchConfiguration.md b/docset/winserver2019-ps/networkswitchmanager/Save-NetworkSwitchConfiguration.md index 41f59f6a57..a29ac64bee 100644 --- a/docset/winserver2019-ps/networkswitchmanager/Save-NetworkSwitchConfiguration.md +++ b/docset/winserver2019-ps/networkswitchmanager/Save-NetworkSwitchConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchConfiguration-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/save-networkswitchconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/save-networkswitchconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Save-NetworkSwitchConfiguration --- diff --git a/docset/winserver2019-ps/networkswitchmanager/Set-NetworkSwitchEthernetPortIPAddress.md b/docset/winserver2019-ps/networkswitchmanager/Set-NetworkSwitchEthernetPortIPAddress.md index c1d6023f50..8ef3de7dc4 100644 --- a/docset/winserver2019-ps/networkswitchmanager/Set-NetworkSwitchEthernetPortIPAddress.md +++ b/docset/winserver2019-ps/networkswitchmanager/Set-NetworkSwitchEthernetPortIPAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchEthernetPort-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/set-networkswitchethernetportipaddress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/set-networkswitchethernetportipaddress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetworkSwitchEthernetPortIPAddress --- diff --git a/docset/winserver2019-ps/networkswitchmanager/Set-NetworkSwitchPortMode.md b/docset/winserver2019-ps/networkswitchmanager/Set-NetworkSwitchPortMode.md index b6a42aadfa..32c16fd9f4 100644 --- a/docset/winserver2019-ps/networkswitchmanager/Set-NetworkSwitchPortMode.md +++ b/docset/winserver2019-ps/networkswitchmanager/Set-NetworkSwitchPortMode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchEthernetPort-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/set-networkswitchportmode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/set-networkswitchportmode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetworkSwitchPortMode --- diff --git a/docset/winserver2019-ps/networkswitchmanager/Set-NetworkSwitchPortProperty.md b/docset/winserver2019-ps/networkswitchmanager/Set-NetworkSwitchPortProperty.md index 7b183fd493..25f627699e 100644 --- a/docset/winserver2019-ps/networkswitchmanager/Set-NetworkSwitchPortProperty.md +++ b/docset/winserver2019-ps/networkswitchmanager/Set-NetworkSwitchPortProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchEthernetPort-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/set-networkswitchportproperty?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/set-networkswitchportproperty?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetworkSwitchPortProperty --- diff --git a/docset/winserver2019-ps/networkswitchmanager/Set-NetworkSwitchVlanProperty.md b/docset/winserver2019-ps/networkswitchmanager/Set-NetworkSwitchVlanProperty.md index fa49787fc5..3269ee64ea 100644 --- a/docset/winserver2019-ps/networkswitchmanager/Set-NetworkSwitchVlanProperty.md +++ b/docset/winserver2019-ps/networkswitchmanager/Set-NetworkSwitchVlanProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchVlan-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/set-networkswitchvlanproperty?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/set-networkswitchvlanproperty?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetworkSwitchVlanProperty --- diff --git a/docset/winserver2019-ps/networktransition/Add-NetIPHttpsCertBinding.md b/docset/winserver2019-ps/networktransition/Add-NetIPHttpsCertBinding.md index c7590559b6..37dbc05cd7 100644 --- a/docset/winserver2019-ps/networktransition/Add-NetIPHttpsCertBinding.md +++ b/docset/winserver2019-ps/networktransition/Add-NetIPHttpsCertBinding.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIpHTTPsConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/add-netiphttpscertbinding?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/add-netiphttpscertbinding?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NetIPHttpsCertBinding --- diff --git a/docset/winserver2019-ps/networktransition/Disable-NetDnsTransitionConfiguration.md b/docset/winserver2019-ps/networktransition/Disable-NetDnsTransitionConfiguration.md index f57c8d6a4e..3b1c8eadfe 100644 --- a/docset/winserver2019-ps/networktransition/Disable-NetDnsTransitionConfiguration.md +++ b/docset/winserver2019-ps/networktransition/Disable-NetDnsTransitionConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetDnsTransitionConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/disable-netdnstransitionconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/disable-netdnstransitionconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetDnsTransitionConfiguration --- diff --git a/docset/winserver2019-ps/networktransition/Disable-NetIPHttpsProfile.md b/docset/winserver2019-ps/networktransition/Disable-NetIPHttpsProfile.md index b8421c9c9b..d647a5fdb2 100644 --- a/docset/winserver2019-ps/networktransition/Disable-NetIPHttpsProfile.md +++ b/docset/winserver2019-ps/networktransition/Disable-NetIPHttpsProfile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIpHTTPsConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/disable-netiphttpsprofile?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/disable-netiphttpsprofile?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetIPHttpsProfile --- diff --git a/docset/winserver2019-ps/networktransition/Disable-NetNatTransitionConfiguration.md b/docset/winserver2019-ps/networktransition/Disable-NetNatTransitionConfiguration.md index f0a5f73b2c..b110292f14 100644 --- a/docset/winserver2019-ps/networktransition/Disable-NetNatTransitionConfiguration.md +++ b/docset/winserver2019-ps/networktransition/Disable-NetNatTransitionConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNatTransitionConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/disable-netnattransitionconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/disable-netnattransitionconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetNatTransitionConfiguration --- diff --git a/docset/winserver2019-ps/networktransition/Enable-NetDnsTransitionConfiguration.md b/docset/winserver2019-ps/networktransition/Enable-NetDnsTransitionConfiguration.md index fea58249f4..f879dd47d3 100644 --- a/docset/winserver2019-ps/networktransition/Enable-NetDnsTransitionConfiguration.md +++ b/docset/winserver2019-ps/networktransition/Enable-NetDnsTransitionConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetDnsTransitionConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/enable-netdnstransitionconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/enable-netdnstransitionconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetDnsTransitionConfiguration --- diff --git a/docset/winserver2019-ps/networktransition/Enable-NetIPHttpsProfile.md b/docset/winserver2019-ps/networktransition/Enable-NetIPHttpsProfile.md index c49efb1a40..99c27f54b8 100644 --- a/docset/winserver2019-ps/networktransition/Enable-NetIPHttpsProfile.md +++ b/docset/winserver2019-ps/networktransition/Enable-NetIPHttpsProfile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIpHTTPsConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/enable-netiphttpsprofile?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/enable-netiphttpsprofile?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetIPHttpsProfile --- diff --git a/docset/winserver2019-ps/networktransition/Enable-NetNatTransitionConfiguration.md b/docset/winserver2019-ps/networktransition/Enable-NetNatTransitionConfiguration.md index 2202e09641..277c02c3cc 100644 --- a/docset/winserver2019-ps/networktransition/Enable-NetNatTransitionConfiguration.md +++ b/docset/winserver2019-ps/networktransition/Enable-NetNatTransitionConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNatTransitionConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/enable-netnattransitionconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/enable-netnattransitionconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetNatTransitionConfiguration --- diff --git a/docset/winserver2019-ps/networktransition/Get-Net6to4Configuration.md b/docset/winserver2019-ps/networktransition/Get-Net6to4Configuration.md index 71ab508903..c84013e1c1 100644 --- a/docset/winserver2019-ps/networktransition/Get-Net6to4Configuration.md +++ b/docset/winserver2019-ps/networktransition/Get-Net6to4Configuration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_Net6to4Configuration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/get-net6to4configuration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/get-net6to4configuration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-Net6to4Configuration --- diff --git a/docset/winserver2019-ps/networktransition/Get-NetDnsTransitionConfiguration.md b/docset/winserver2019-ps/networktransition/Get-NetDnsTransitionConfiguration.md index 5ee7c1a766..88c990a6ef 100644 --- a/docset/winserver2019-ps/networktransition/Get-NetDnsTransitionConfiguration.md +++ b/docset/winserver2019-ps/networktransition/Get-NetDnsTransitionConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetDnsTransitionConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/get-netdnstransitionconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/get-netdnstransitionconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetDnsTransitionConfiguration --- diff --git a/docset/winserver2019-ps/networktransition/Get-NetDnsTransitionMonitoring.md b/docset/winserver2019-ps/networktransition/Get-NetDnsTransitionMonitoring.md index 82c90c2274..4b721b12e1 100644 --- a/docset/winserver2019-ps/networktransition/Get-NetDnsTransitionMonitoring.md +++ b/docset/winserver2019-ps/networktransition/Get-NetDnsTransitionMonitoring.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetDnsTransitionMonitoring.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/get-netdnstransitionmonitoring?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/get-netdnstransitionmonitoring?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetDnsTransitionMonitoring --- diff --git a/docset/winserver2019-ps/networktransition/Get-NetIPHttpsConfiguration.md b/docset/winserver2019-ps/networktransition/Get-NetIPHttpsConfiguration.md index 27e303da97..7466b1b743 100644 --- a/docset/winserver2019-ps/networktransition/Get-NetIPHttpsConfiguration.md +++ b/docset/winserver2019-ps/networktransition/Get-NetIPHttpsConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIpHTTPsConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/get-netiphttpsconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/get-netiphttpsconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPHttpsConfiguration --- diff --git a/docset/winserver2019-ps/networktransition/Get-NetIPHttpsState.md b/docset/winserver2019-ps/networktransition/Get-NetIPHttpsState.md index cbcf9015f3..1d6a17fff8 100644 --- a/docset/winserver2019-ps/networktransition/Get-NetIPHttpsState.md +++ b/docset/winserver2019-ps/networktransition/Get-NetIPHttpsState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIpHTTPsState.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/get-netiphttpsstate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/get-netiphttpsstate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPHttpsState --- diff --git a/docset/winserver2019-ps/networktransition/Get-NetIsatapConfiguration.md b/docset/winserver2019-ps/networktransition/Get-NetIsatapConfiguration.md index 0e809642d7..95b7f217f2 100644 --- a/docset/winserver2019-ps/networktransition/Get-NetIsatapConfiguration.md +++ b/docset/winserver2019-ps/networktransition/Get-NetIsatapConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetISATAPConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/get-netisatapconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/get-netisatapconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIsatapConfiguration --- diff --git a/docset/winserver2019-ps/networktransition/Get-NetNatTransitionConfiguration.md b/docset/winserver2019-ps/networktransition/Get-NetNatTransitionConfiguration.md index a86cc52d11..58729e4520 100644 --- a/docset/winserver2019-ps/networktransition/Get-NetNatTransitionConfiguration.md +++ b/docset/winserver2019-ps/networktransition/Get-NetNatTransitionConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNatTransitionConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/get-netnattransitionconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/get-netnattransitionconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetNatTransitionConfiguration --- diff --git a/docset/winserver2019-ps/networktransition/Get-NetNatTransitionMonitoring.md b/docset/winserver2019-ps/networktransition/Get-NetNatTransitionMonitoring.md index 9ef90a6cdb..b359548608 100644 --- a/docset/winserver2019-ps/networktransition/Get-NetNatTransitionMonitoring.md +++ b/docset/winserver2019-ps/networktransition/Get-NetNatTransitionMonitoring.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNatTransitionMonitoring.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/get-netnattransitionmonitoring?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/get-netnattransitionmonitoring?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetNatTransitionMonitoring --- diff --git a/docset/winserver2019-ps/networktransition/Get-NetTeredoConfiguration.md b/docset/winserver2019-ps/networktransition/Get-NetTeredoConfiguration.md index 8d3bb65dfa..93d86b048a 100644 --- a/docset/winserver2019-ps/networktransition/Get-NetTeredoConfiguration.md +++ b/docset/winserver2019-ps/networktransition/Get-NetTeredoConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetTeredoConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/get-netteredoconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/get-netteredoconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetTeredoConfiguration --- diff --git a/docset/winserver2019-ps/networktransition/Get-NetTeredoState.md b/docset/winserver2019-ps/networktransition/Get-NetTeredoState.md index 7e3f99b08e..f150e1db97 100644 --- a/docset/winserver2019-ps/networktransition/Get-NetTeredoState.md +++ b/docset/winserver2019-ps/networktransition/Get-NetTeredoState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetTeredoState.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/get-netteredostate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/get-netteredostate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetTeredoState --- diff --git a/docset/winserver2019-ps/networktransition/New-NetIPHttpsConfiguration.md b/docset/winserver2019-ps/networktransition/New-NetIPHttpsConfiguration.md index e941dfa79b..12c397cdf2 100644 --- a/docset/winserver2019-ps/networktransition/New-NetIPHttpsConfiguration.md +++ b/docset/winserver2019-ps/networktransition/New-NetIPHttpsConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIpHTTPsConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/new-netiphttpsconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/new-netiphttpsconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetIPHttpsConfiguration --- diff --git a/docset/winserver2019-ps/networktransition/New-NetNatTransitionConfiguration.md b/docset/winserver2019-ps/networktransition/New-NetNatTransitionConfiguration.md index 7b8b4f1b06..8a7e2832ba 100644 --- a/docset/winserver2019-ps/networktransition/New-NetNatTransitionConfiguration.md +++ b/docset/winserver2019-ps/networktransition/New-NetNatTransitionConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNatTransitionConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/new-netnattransitionconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/new-netnattransitionconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetNatTransitionConfiguration --- diff --git a/docset/winserver2019-ps/networktransition/Remove-NetIPHttpsCertBinding.md b/docset/winserver2019-ps/networktransition/Remove-NetIPHttpsCertBinding.md index c382e9ec45..a83664cd0f 100644 --- a/docset/winserver2019-ps/networktransition/Remove-NetIPHttpsCertBinding.md +++ b/docset/winserver2019-ps/networktransition/Remove-NetIPHttpsCertBinding.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIpHTTPsConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/remove-netiphttpscertbinding?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/remove-netiphttpscertbinding?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetIPHttpsCertBinding --- diff --git a/docset/winserver2019-ps/networktransition/Remove-NetIPHttpsConfiguration.md b/docset/winserver2019-ps/networktransition/Remove-NetIPHttpsConfiguration.md index 02708597b9..3a080f3bb3 100644 --- a/docset/winserver2019-ps/networktransition/Remove-NetIPHttpsConfiguration.md +++ b/docset/winserver2019-ps/networktransition/Remove-NetIPHttpsConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIpHTTPsConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/remove-netiphttpsconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/remove-netiphttpsconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetIPHttpsConfiguration --- diff --git a/docset/winserver2019-ps/networktransition/Remove-NetNatTransitionConfiguration.md b/docset/winserver2019-ps/networktransition/Remove-NetNatTransitionConfiguration.md index 59d56c6693..33f5c182c1 100644 --- a/docset/winserver2019-ps/networktransition/Remove-NetNatTransitionConfiguration.md +++ b/docset/winserver2019-ps/networktransition/Remove-NetNatTransitionConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNatTransitionConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/remove-netnattransitionconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/remove-netnattransitionconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetNatTransitionConfiguration --- diff --git a/docset/winserver2019-ps/networktransition/Rename-NetIPHttpsConfiguration.md b/docset/winserver2019-ps/networktransition/Rename-NetIPHttpsConfiguration.md index e63c219428..0787b9b935 100644 --- a/docset/winserver2019-ps/networktransition/Rename-NetIPHttpsConfiguration.md +++ b/docset/winserver2019-ps/networktransition/Rename-NetIPHttpsConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIpHTTPsConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/rename-netiphttpsconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/rename-netiphttpsconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-NetIPHttpsConfiguration --- diff --git a/docset/winserver2019-ps/networktransition/Reset-Net6to4Configuration.md b/docset/winserver2019-ps/networktransition/Reset-Net6to4Configuration.md index 53d15af758..62152aec49 100644 --- a/docset/winserver2019-ps/networktransition/Reset-Net6to4Configuration.md +++ b/docset/winserver2019-ps/networktransition/Reset-Net6to4Configuration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_Net6to4Configuration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/reset-net6to4configuration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/reset-net6to4configuration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-Net6to4Configuration --- diff --git a/docset/winserver2019-ps/networktransition/Reset-NetDnsTransitionConfiguration.md b/docset/winserver2019-ps/networktransition/Reset-NetDnsTransitionConfiguration.md index 28156fd9f0..3ea44cb409 100644 --- a/docset/winserver2019-ps/networktransition/Reset-NetDnsTransitionConfiguration.md +++ b/docset/winserver2019-ps/networktransition/Reset-NetDnsTransitionConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetDnsTransitionConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/reset-netdnstransitionconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/reset-netdnstransitionconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-NetDnsTransitionConfiguration --- diff --git a/docset/winserver2019-ps/networktransition/Reset-NetIPHttpsConfiguration.md b/docset/winserver2019-ps/networktransition/Reset-NetIPHttpsConfiguration.md index 2b29c1a807..6bb465c139 100644 --- a/docset/winserver2019-ps/networktransition/Reset-NetIPHttpsConfiguration.md +++ b/docset/winserver2019-ps/networktransition/Reset-NetIPHttpsConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIpHTTPsConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/reset-netiphttpsconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/reset-netiphttpsconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-NetIPHttpsConfiguration --- diff --git a/docset/winserver2019-ps/networktransition/Reset-NetIsatapConfiguration.md b/docset/winserver2019-ps/networktransition/Reset-NetIsatapConfiguration.md index 1a713853ab..00ed96ab42 100644 --- a/docset/winserver2019-ps/networktransition/Reset-NetIsatapConfiguration.md +++ b/docset/winserver2019-ps/networktransition/Reset-NetIsatapConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetISATAPConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/reset-netisatapconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/reset-netisatapconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-NetIsatapConfiguration --- diff --git a/docset/winserver2019-ps/networktransition/Reset-NetTeredoConfiguration.md b/docset/winserver2019-ps/networktransition/Reset-NetTeredoConfiguration.md index 8c907812cc..c1a45dd62a 100644 --- a/docset/winserver2019-ps/networktransition/Reset-NetTeredoConfiguration.md +++ b/docset/winserver2019-ps/networktransition/Reset-NetTeredoConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetTeredoConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/reset-netteredoconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/reset-netteredoconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-NetTeredoConfiguration --- diff --git a/docset/winserver2019-ps/networktransition/Set-Net6to4Configuration.md b/docset/winserver2019-ps/networktransition/Set-Net6to4Configuration.md index c1ecbd2fe1..a1df27573a 100644 --- a/docset/winserver2019-ps/networktransition/Set-Net6to4Configuration.md +++ b/docset/winserver2019-ps/networktransition/Set-Net6to4Configuration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_Net6to4Configuration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/set-net6to4configuration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/set-net6to4configuration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-Net6to4Configuration --- diff --git a/docset/winserver2019-ps/networktransition/Set-NetDnsTransitionConfiguration.md b/docset/winserver2019-ps/networktransition/Set-NetDnsTransitionConfiguration.md index ef4a5d7208..5fc5b8fb8e 100644 --- a/docset/winserver2019-ps/networktransition/Set-NetDnsTransitionConfiguration.md +++ b/docset/winserver2019-ps/networktransition/Set-NetDnsTransitionConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetDnsTransitionConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/set-netdnstransitionconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/set-netdnstransitionconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetDnsTransitionConfiguration --- diff --git a/docset/winserver2019-ps/networktransition/Set-NetIPHttpsConfiguration.md b/docset/winserver2019-ps/networktransition/Set-NetIPHttpsConfiguration.md index 8884005985..0863148d24 100644 --- a/docset/winserver2019-ps/networktransition/Set-NetIPHttpsConfiguration.md +++ b/docset/winserver2019-ps/networktransition/Set-NetIPHttpsConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIpHTTPsConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/set-netiphttpsconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/set-netiphttpsconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetIPHttpsConfiguration --- diff --git a/docset/winserver2019-ps/networktransition/Set-NetIsatapConfiguration.md b/docset/winserver2019-ps/networktransition/Set-NetIsatapConfiguration.md index a1bcfb46f5..3d0296c88e 100644 --- a/docset/winserver2019-ps/networktransition/Set-NetIsatapConfiguration.md +++ b/docset/winserver2019-ps/networktransition/Set-NetIsatapConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetISATAPConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/set-netisatapconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/set-netisatapconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetIsatapConfiguration --- diff --git a/docset/winserver2019-ps/networktransition/Set-NetNatTransitionConfiguration.md b/docset/winserver2019-ps/networktransition/Set-NetNatTransitionConfiguration.md index 0dc4459b24..a6ac244918 100644 --- a/docset/winserver2019-ps/networktransition/Set-NetNatTransitionConfiguration.md +++ b/docset/winserver2019-ps/networktransition/Set-NetNatTransitionConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNatTransitionConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/set-netnattransitionconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/set-netnattransitionconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetNatTransitionConfiguration --- diff --git a/docset/winserver2019-ps/networktransition/Set-NetTeredoConfiguration.md b/docset/winserver2019-ps/networktransition/Set-NetTeredoConfiguration.md index 9ca079c656..fd044a0600 100644 --- a/docset/winserver2019-ps/networktransition/Set-NetTeredoConfiguration.md +++ b/docset/winserver2019-ps/networktransition/Set-NetTeredoConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetTeredoConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/set-netteredoconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/set-netteredoconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetTeredoConfiguration --- diff --git a/docset/winserver2019-ps/nfs/Disconnect-NfsSession.md b/docset/winserver2019-ps/nfs/Disconnect-NfsSession.md index 567585e8a9..ded0b22b5f 100644 --- a/docset/winserver2019-ps/nfs/Disconnect-NfsSession.md +++ b/docset/winserver2019-ps/nfs/Disconnect-NfsSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsSession.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/disconnect-nfssession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/disconnect-nfssession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disconnect-NfsSession --- diff --git a/docset/winserver2019-ps/nfs/Get-NfsClientConfiguration.md b/docset/winserver2019-ps/nfs/Get-NfsClientConfiguration.md index 700100b11a..72436c1921 100644 --- a/docset/winserver2019-ps/nfs/Get-NfsClientConfiguration.md +++ b/docset/winserver2019-ps/nfs/Get-NfsClientConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsClientConfig.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsclientconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsclientconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsClientConfiguration --- diff --git a/docset/winserver2019-ps/nfs/Get-NfsClientLock.md b/docset/winserver2019-ps/nfs/Get-NfsClientLock.md index e1cdbec670..94c692dd1d 100644 --- a/docset/winserver2019-ps/nfs/Get-NfsClientLock.md +++ b/docset/winserver2019-ps/nfs/Get-NfsClientLock.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsClientLock.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsclientlock?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsclientlock?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsClientLock --- diff --git a/docset/winserver2019-ps/nfs/Get-NfsClientgroup.md b/docset/winserver2019-ps/nfs/Get-NfsClientgroup.md index ceab157660..9061a1a77c 100644 --- a/docset/winserver2019-ps/nfs/Get-NfsClientgroup.md +++ b/docset/winserver2019-ps/nfs/Get-NfsClientgroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsClientGroup.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsclientgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsclientgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsClientgroup --- diff --git a/docset/winserver2019-ps/nfs/Get-NfsMappedIdentity.md b/docset/winserver2019-ps/nfs/Get-NfsMappedIdentity.md index e10df1a4bf..8b4759caa6 100644 --- a/docset/winserver2019-ps/nfs/Get-NfsMappedIdentity.md +++ b/docset/winserver2019-ps/nfs/Get-NfsMappedIdentity.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FileServices.Powershell.NFS.dll-Help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsmappedidentity?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsmappedidentity?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsMappedIdentity --- diff --git a/docset/winserver2019-ps/nfs/Get-NfsMappingStore.md b/docset/winserver2019-ps/nfs/Get-NfsMappingStore.md index 6658ee6bd2..141df641eb 100644 --- a/docset/winserver2019-ps/nfs/Get-NfsMappingStore.md +++ b/docset/winserver2019-ps/nfs/Get-NfsMappingStore.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsMappingStore.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsmappingstore?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsmappingstore?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsMappingStore --- diff --git a/docset/winserver2019-ps/nfs/Get-NfsMountedClient.md b/docset/winserver2019-ps/nfs/Get-NfsMountedClient.md index 3f703e9ab1..52f272b1b7 100644 --- a/docset/winserver2019-ps/nfs/Get-NfsMountedClient.md +++ b/docset/winserver2019-ps/nfs/Get-NfsMountedClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsMountedClient.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsmountedclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsmountedclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsMountedClient --- diff --git a/docset/winserver2019-ps/nfs/Get-NfsNetgroup.md b/docset/winserver2019-ps/nfs/Get-NfsNetgroup.md index de8f5bd3c6..c074fa4e67 100644 --- a/docset/winserver2019-ps/nfs/Get-NfsNetgroup.md +++ b/docset/winserver2019-ps/nfs/Get-NfsNetgroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FileServices.Powershell.NFS.dll-Help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsnetgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsnetgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsNetgroup --- diff --git a/docset/winserver2019-ps/nfs/Get-NfsNetgroupStore.md b/docset/winserver2019-ps/nfs/Get-NfsNetgroupStore.md index 4bbbf02a7f..11631d1700 100644 --- a/docset/winserver2019-ps/nfs/Get-NfsNetgroupStore.md +++ b/docset/winserver2019-ps/nfs/Get-NfsNetgroupStore.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsNetgroupStore.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsnetgroupstore?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsnetgroupstore?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsNetgroupStore --- diff --git a/docset/winserver2019-ps/nfs/Get-NfsOpenFile.md b/docset/winserver2019-ps/nfs/Get-NfsOpenFile.md index e1e927c0ab..7addb0f489 100644 --- a/docset/winserver2019-ps/nfs/Get-NfsOpenFile.md +++ b/docset/winserver2019-ps/nfs/Get-NfsOpenFile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsOpenFile.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsopenfile?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsopenfile?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsOpenFile --- diff --git a/docset/winserver2019-ps/nfs/Get-NfsServerConfiguration.md b/docset/winserver2019-ps/nfs/Get-NfsServerConfiguration.md index 11e997129b..81da0d5011 100644 --- a/docset/winserver2019-ps/nfs/Get-NfsServerConfiguration.md +++ b/docset/winserver2019-ps/nfs/Get-NfsServerConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsServerConfig.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsserverconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsserverconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsServerConfiguration --- diff --git a/docset/winserver2019-ps/nfs/Get-NfsSession.md b/docset/winserver2019-ps/nfs/Get-NfsSession.md index 89b84c509a..de144e01c7 100644 --- a/docset/winserver2019-ps/nfs/Get-NfsSession.md +++ b/docset/winserver2019-ps/nfs/Get-NfsSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsSession.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfssession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfssession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsSession --- diff --git a/docset/winserver2019-ps/nfs/Get-NfsShare.md b/docset/winserver2019-ps/nfs/Get-NfsShare.md index cd88c3d269..87e7f2efb8 100644 --- a/docset/winserver2019-ps/nfs/Get-NfsShare.md +++ b/docset/winserver2019-ps/nfs/Get-NfsShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsShare.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsshare?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsshare?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsShare --- diff --git a/docset/winserver2019-ps/nfs/Get-NfsSharePermission.md b/docset/winserver2019-ps/nfs/Get-NfsSharePermission.md index 2f7118d3e6..0ff744c6c4 100644 --- a/docset/winserver2019-ps/nfs/Get-NfsSharePermission.md +++ b/docset/winserver2019-ps/nfs/Get-NfsSharePermission.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsServerTasks.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfssharepermission?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfssharepermission?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsSharePermission --- diff --git a/docset/winserver2019-ps/nfs/Get-NfsStatistics.md b/docset/winserver2019-ps/nfs/Get-NfsStatistics.md index 0fa2cf11a6..4db29fd8f1 100644 --- a/docset/winserver2019-ps/nfs/Get-NfsStatistics.md +++ b/docset/winserver2019-ps/nfs/Get-NfsStatistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsStatistics.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsstatistics?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsstatistics?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsStatistics --- diff --git a/docset/winserver2019-ps/nfs/Grant-NfsSharePermission.md b/docset/winserver2019-ps/nfs/Grant-NfsSharePermission.md index a2410e6e16..ed926506db 100644 --- a/docset/winserver2019-ps/nfs/Grant-NfsSharePermission.md +++ b/docset/winserver2019-ps/nfs/Grant-NfsSharePermission.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsServerTasks.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/grant-nfssharepermission?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/grant-nfssharepermission?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Grant-NfsSharePermission --- diff --git a/docset/winserver2019-ps/nfs/Install-NfsMappingStore.md b/docset/winserver2019-ps/nfs/Install-NfsMappingStore.md index 1b5ae0ee72..41d492f692 100644 --- a/docset/winserver2019-ps/nfs/Install-NfsMappingStore.md +++ b/docset/winserver2019-ps/nfs/Install-NfsMappingStore.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FileServices.Powershell.NFS.dll-Help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/install-nfsmappingstore?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/install-nfsmappingstore?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-NfsMappingStore --- diff --git a/docset/winserver2019-ps/nfs/New-NfsClientgroup.md b/docset/winserver2019-ps/nfs/New-NfsClientgroup.md index d4190c71cf..43f9d0f75b 100644 --- a/docset/winserver2019-ps/nfs/New-NfsClientgroup.md +++ b/docset/winserver2019-ps/nfs/New-NfsClientgroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsServerTasks.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/new-nfsclientgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/new-nfsclientgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NfsClientgroup --- diff --git a/docset/winserver2019-ps/nfs/New-NfsMappedIdentity.md b/docset/winserver2019-ps/nfs/New-NfsMappedIdentity.md index fff8846060..96d193865b 100644 --- a/docset/winserver2019-ps/nfs/New-NfsMappedIdentity.md +++ b/docset/winserver2019-ps/nfs/New-NfsMappedIdentity.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FileServices.Powershell.NFS.dll-Help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/new-nfsmappedidentity?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/new-nfsmappedidentity?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NfsMappedIdentity --- diff --git a/docset/winserver2019-ps/nfs/New-NfsNetgroup.md b/docset/winserver2019-ps/nfs/New-NfsNetgroup.md index d123a0cf78..c2876e9e01 100644 --- a/docset/winserver2019-ps/nfs/New-NfsNetgroup.md +++ b/docset/winserver2019-ps/nfs/New-NfsNetgroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FileServices.Powershell.NFS.dll-Help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/new-nfsnetgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/new-nfsnetgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NfsNetgroup --- diff --git a/docset/winserver2019-ps/nfs/New-NfsShare.md b/docset/winserver2019-ps/nfs/New-NfsShare.md index d22ff86b76..6336f28848 100644 --- a/docset/winserver2019-ps/nfs/New-NfsShare.md +++ b/docset/winserver2019-ps/nfs/New-NfsShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsServerTasks.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/new-nfsshare?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/new-nfsshare?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NfsShare --- diff --git a/docset/winserver2019-ps/nfs/Remove-NfsClientgroup.md b/docset/winserver2019-ps/nfs/Remove-NfsClientgroup.md index 0cd4326463..59332d8e64 100644 --- a/docset/winserver2019-ps/nfs/Remove-NfsClientgroup.md +++ b/docset/winserver2019-ps/nfs/Remove-NfsClientgroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsClientGroup.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/remove-nfsclientgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/remove-nfsclientgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NfsClientgroup --- diff --git a/docset/winserver2019-ps/nfs/Remove-NfsMappedIdentity.md b/docset/winserver2019-ps/nfs/Remove-NfsMappedIdentity.md index 2839f48cf7..396b29425d 100644 --- a/docset/winserver2019-ps/nfs/Remove-NfsMappedIdentity.md +++ b/docset/winserver2019-ps/nfs/Remove-NfsMappedIdentity.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FileServices.Powershell.NFS.dll-Help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/remove-nfsmappedidentity?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/remove-nfsmappedidentity?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NfsMappedIdentity --- diff --git a/docset/winserver2019-ps/nfs/Remove-NfsNetgroup.md b/docset/winserver2019-ps/nfs/Remove-NfsNetgroup.md index 98cdc7d988..088b965369 100644 --- a/docset/winserver2019-ps/nfs/Remove-NfsNetgroup.md +++ b/docset/winserver2019-ps/nfs/Remove-NfsNetgroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FileServices.Powershell.NFS.dll-Help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/remove-nfsnetgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/remove-nfsnetgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NfsNetgroup --- diff --git a/docset/winserver2019-ps/nfs/Remove-NfsShare.md b/docset/winserver2019-ps/nfs/Remove-NfsShare.md index 864876360d..7f3a33d326 100644 --- a/docset/winserver2019-ps/nfs/Remove-NfsShare.md +++ b/docset/winserver2019-ps/nfs/Remove-NfsShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsShare.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/remove-nfsshare?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/remove-nfsshare?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NfsShare --- diff --git a/docset/winserver2019-ps/nfs/Rename-NfsClientgroup.md b/docset/winserver2019-ps/nfs/Rename-NfsClientgroup.md index b636a3b5fd..1c1f378f6b 100644 --- a/docset/winserver2019-ps/nfs/Rename-NfsClientgroup.md +++ b/docset/winserver2019-ps/nfs/Rename-NfsClientgroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsServerTasks.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/rename-nfsclientgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/rename-nfsclientgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-NfsClientgroup --- diff --git a/docset/winserver2019-ps/nfs/Reset-NfsStatistics.md b/docset/winserver2019-ps/nfs/Reset-NfsStatistics.md index 07de54f8ea..3f364b6409 100644 --- a/docset/winserver2019-ps/nfs/Reset-NfsStatistics.md +++ b/docset/winserver2019-ps/nfs/Reset-NfsStatistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsStatistics.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/reset-nfsstatistics?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/reset-nfsstatistics?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-NfsStatistics --- diff --git a/docset/winserver2019-ps/nfs/Resolve-NfsMappedIdentity.md b/docset/winserver2019-ps/nfs/Resolve-NfsMappedIdentity.md index b1d70a052e..f52a007dbc 100644 --- a/docset/winserver2019-ps/nfs/Resolve-NfsMappedIdentity.md +++ b/docset/winserver2019-ps/nfs/Resolve-NfsMappedIdentity.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsServerTasks.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/resolve-nfsmappedidentity?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/resolve-nfsmappedidentity?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resolve-NfsMappedIdentity --- diff --git a/docset/winserver2019-ps/nfs/Revoke-NfsClientLock.md b/docset/winserver2019-ps/nfs/Revoke-NfsClientLock.md index bf8ceee269..fc191d62f8 100644 --- a/docset/winserver2019-ps/nfs/Revoke-NfsClientLock.md +++ b/docset/winserver2019-ps/nfs/Revoke-NfsClientLock.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsClientLock.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/revoke-nfsclientlock?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/revoke-nfsclientlock?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Revoke-NfsClientLock --- diff --git a/docset/winserver2019-ps/nfs/Revoke-NfsMountedClient.md b/docset/winserver2019-ps/nfs/Revoke-NfsMountedClient.md index 22a270f993..4e39d8bd7e 100644 --- a/docset/winserver2019-ps/nfs/Revoke-NfsMountedClient.md +++ b/docset/winserver2019-ps/nfs/Revoke-NfsMountedClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsMountedClient.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/revoke-nfsmountedclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/revoke-nfsmountedclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Revoke-NfsMountedClient --- diff --git a/docset/winserver2019-ps/nfs/Revoke-NfsOpenFile.md b/docset/winserver2019-ps/nfs/Revoke-NfsOpenFile.md index c0d3330718..d84376c727 100644 --- a/docset/winserver2019-ps/nfs/Revoke-NfsOpenFile.md +++ b/docset/winserver2019-ps/nfs/Revoke-NfsOpenFile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsOpenFile.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/revoke-nfsopenfile?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/revoke-nfsopenfile?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Revoke-NfsOpenFile --- diff --git a/docset/winserver2019-ps/nfs/Revoke-NfsSharePermission.md b/docset/winserver2019-ps/nfs/Revoke-NfsSharePermission.md index d5a91f0911..3f6f81ecf7 100644 --- a/docset/winserver2019-ps/nfs/Revoke-NfsSharePermission.md +++ b/docset/winserver2019-ps/nfs/Revoke-NfsSharePermission.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsServerTasks.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/revoke-nfssharepermission?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/revoke-nfssharepermission?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Revoke-NfsSharePermission --- diff --git a/docset/winserver2019-ps/nfs/Set-NfsClientConfiguration.md b/docset/winserver2019-ps/nfs/Set-NfsClientConfiguration.md index 8fbcb03ef6..08a98127d6 100644 --- a/docset/winserver2019-ps/nfs/Set-NfsClientConfiguration.md +++ b/docset/winserver2019-ps/nfs/Set-NfsClientConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsClientConfig.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/set-nfsclientconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/set-nfsclientconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NfsClientConfiguration --- diff --git a/docset/winserver2019-ps/nfs/Set-NfsClientgroup.md b/docset/winserver2019-ps/nfs/Set-NfsClientgroup.md index 53139f702c..25dc709b77 100644 --- a/docset/winserver2019-ps/nfs/Set-NfsClientgroup.md +++ b/docset/winserver2019-ps/nfs/Set-NfsClientgroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsServerTasks.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/set-nfsclientgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/set-nfsclientgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NfsClientgroup --- diff --git a/docset/winserver2019-ps/nfs/Set-NfsMappedIdentity.md b/docset/winserver2019-ps/nfs/Set-NfsMappedIdentity.md index 239d6d1997..cbf5c4d6ed 100644 --- a/docset/winserver2019-ps/nfs/Set-NfsMappedIdentity.md +++ b/docset/winserver2019-ps/nfs/Set-NfsMappedIdentity.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FileServices.Powershell.NFS.dll-Help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/set-nfsmappedidentity?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/set-nfsmappedidentity?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NfsMappedIdentity --- diff --git a/docset/winserver2019-ps/nfs/Set-NfsMappingStore.md b/docset/winserver2019-ps/nfs/Set-NfsMappingStore.md index 6c67749831..cdd7dfb29e 100644 --- a/docset/winserver2019-ps/nfs/Set-NfsMappingStore.md +++ b/docset/winserver2019-ps/nfs/Set-NfsMappingStore.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsMappingStore.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/set-nfsmappingstore?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/set-nfsmappingstore?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NfsMappingStore --- diff --git a/docset/winserver2019-ps/nfs/Set-NfsNetgroup.md b/docset/winserver2019-ps/nfs/Set-NfsNetgroup.md index b04a2c4e58..7d9ee0f08d 100644 --- a/docset/winserver2019-ps/nfs/Set-NfsNetgroup.md +++ b/docset/winserver2019-ps/nfs/Set-NfsNetgroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FileServices.Powershell.NFS.dll-Help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/set-nfsnetgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/set-nfsnetgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NfsNetgroup --- diff --git a/docset/winserver2019-ps/nfs/Set-NfsNetgroupStore.md b/docset/winserver2019-ps/nfs/Set-NfsNetgroupStore.md index 2b06396247..4f27dd9fd9 100644 --- a/docset/winserver2019-ps/nfs/Set-NfsNetgroupStore.md +++ b/docset/winserver2019-ps/nfs/Set-NfsNetgroupStore.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsNetgroupStore.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/set-nfsnetgroupstore?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/set-nfsnetgroupstore?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NfsNetgroupStore --- diff --git a/docset/winserver2019-ps/nfs/Set-NfsServerConfiguration.md b/docset/winserver2019-ps/nfs/Set-NfsServerConfiguration.md index 098d4de482..89ca946b49 100644 --- a/docset/winserver2019-ps/nfs/Set-NfsServerConfiguration.md +++ b/docset/winserver2019-ps/nfs/Set-NfsServerConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsServerConfig.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/set-nfsserverconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/set-nfsserverconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NfsServerConfiguration --- diff --git a/docset/winserver2019-ps/nfs/Set-NfsShare.md b/docset/winserver2019-ps/nfs/Set-NfsShare.md index 420dafeec8..d137e67973 100644 --- a/docset/winserver2019-ps/nfs/Set-NfsShare.md +++ b/docset/winserver2019-ps/nfs/Set-NfsShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsServerTasks.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/set-nfsshare?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/set-nfsshare?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NfsShare --- diff --git a/docset/winserver2019-ps/nfs/Test-NfsMappedIdentity.md b/docset/winserver2019-ps/nfs/Test-NfsMappedIdentity.md index abd8446298..38d1fd83e3 100644 --- a/docset/winserver2019-ps/nfs/Test-NfsMappedIdentity.md +++ b/docset/winserver2019-ps/nfs/Test-NfsMappedIdentity.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FileServices.Powershell.NFS.dll-Help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/test-nfsmappedidentity?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/test-nfsmappedidentity?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-NfsMappedIdentity --- diff --git a/docset/winserver2019-ps/nfs/Test-NfsMappingStore.md b/docset/winserver2019-ps/nfs/Test-NfsMappingStore.md index 559659b04a..fbab80130f 100644 --- a/docset/winserver2019-ps/nfs/Test-NfsMappingStore.md +++ b/docset/winserver2019-ps/nfs/Test-NfsMappingStore.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsServerTasks.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/test-nfsmappingstore?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/test-nfsmappingstore?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-NfsMappingStore --- diff --git a/docset/winserver2019-ps/nps/Export-NpsConfiguration.md b/docset/winserver2019-ps/nps/Export-NpsConfiguration.md index a9adfb3b55..b6f5732137 100644 --- a/docset/winserver2019-ps/nps/Export-NpsConfiguration.md +++ b/docset/winserver2019-ps/nps/Export-NpsConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NPS.Commands.dll-Help.xml Module Name: NPS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nps/export-npsconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nps/export-npsconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-NpsConfiguration --- diff --git a/docset/winserver2019-ps/nps/Get-NpsRadiusClient.md b/docset/winserver2019-ps/nps/Get-NpsRadiusClient.md index d8631db368..564b4c1d6b 100644 --- a/docset/winserver2019-ps/nps/Get-NpsRadiusClient.md +++ b/docset/winserver2019-ps/nps/Get-NpsRadiusClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NPS.Commands.dll-Help.xml Module Name: NPS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nps/get-npsradiusclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nps/get-npsradiusclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NpsRadiusClient --- diff --git a/docset/winserver2019-ps/nps/Get-NpsSharedSecretTemplate.md b/docset/winserver2019-ps/nps/Get-NpsSharedSecretTemplate.md index 226f53c0f2..19476bdd5a 100644 --- a/docset/winserver2019-ps/nps/Get-NpsSharedSecretTemplate.md +++ b/docset/winserver2019-ps/nps/Get-NpsSharedSecretTemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NPS.Commands.dll-Help.xml Module Name: NPS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nps/get-npssharedsecrettemplate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nps/get-npssharedsecrettemplate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NpsSharedSecretTemplate --- diff --git a/docset/winserver2019-ps/nps/Import-NpsConfiguration.md b/docset/winserver2019-ps/nps/Import-NpsConfiguration.md index 2e2bf50b5d..d2097f0a9a 100644 --- a/docset/winserver2019-ps/nps/Import-NpsConfiguration.md +++ b/docset/winserver2019-ps/nps/Import-NpsConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NPS.Commands.dll-Help.xml Module Name: NPS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nps/import-npsconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nps/import-npsconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-NpsConfiguration --- diff --git a/docset/winserver2019-ps/nps/New-NpsRadiusClient.md b/docset/winserver2019-ps/nps/New-NpsRadiusClient.md index 693c815920..4dfff4d8d1 100644 --- a/docset/winserver2019-ps/nps/New-NpsRadiusClient.md +++ b/docset/winserver2019-ps/nps/New-NpsRadiusClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NPS.Commands.dll-Help.xml Module Name: NPS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nps/new-npsradiusclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nps/new-npsradiusclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NpsRadiusClient --- diff --git a/docset/winserver2019-ps/nps/Remove-NpsRadiusClient.md b/docset/winserver2019-ps/nps/Remove-NpsRadiusClient.md index dd97c21c49..405ca78766 100644 --- a/docset/winserver2019-ps/nps/Remove-NpsRadiusClient.md +++ b/docset/winserver2019-ps/nps/Remove-NpsRadiusClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NPS.Commands.dll-Help.xml Module Name: NPS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nps/remove-npsradiusclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nps/remove-npsradiusclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NpsRadiusClient --- diff --git a/docset/winserver2019-ps/nps/Set-NpsRadiusClient.md b/docset/winserver2019-ps/nps/Set-NpsRadiusClient.md index 5575cd90fc..e7e8815d83 100644 --- a/docset/winserver2019-ps/nps/Set-NpsRadiusClient.md +++ b/docset/winserver2019-ps/nps/Set-NpsRadiusClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NPS.Commands.dll-Help.xml Module Name: NPS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nps/set-npsradiusclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nps/set-npsradiusclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NpsRadiusClient --- diff --git a/docset/winserver2019-ps/pcsvdevice/Clear-PcsvDeviceLog.md b/docset/winserver2019-ps/pcsvdevice/Clear-PcsvDeviceLog.md index c7726d765c..cf6450ac1e 100644 --- a/docset/winserver2019-ps/pcsvdevice/Clear-PcsvDeviceLog.md +++ b/docset/winserver2019-ps/pcsvdevice/Clear-PcsvDeviceLog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: CIM_PhysicalComputerSystemView.cdxml-help.xml Module Name: PCSVDevice ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pcsvdevice/clear-pcsvdevicelog?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pcsvdevice/clear-pcsvdevicelog?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-PcsvDeviceLog --- diff --git a/docset/winserver2019-ps/pcsvdevice/Get-PcsvDevice.md b/docset/winserver2019-ps/pcsvdevice/Get-PcsvDevice.md index f33b310ad1..866ad1c0c9 100644 --- a/docset/winserver2019-ps/pcsvdevice/Get-PcsvDevice.md +++ b/docset/winserver2019-ps/pcsvdevice/Get-PcsvDevice.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: CIM_PhysicalComputerSystemView.cdxml-help.xml Module Name: PCSVDevice ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pcsvdevice/get-pcsvdevice?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pcsvdevice/get-pcsvdevice?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PcsvDevice --- diff --git a/docset/winserver2019-ps/pcsvdevice/Get-PcsvDeviceLog.md b/docset/winserver2019-ps/pcsvdevice/Get-PcsvDeviceLog.md index 131cbe2670..55f166ff95 100644 --- a/docset/winserver2019-ps/pcsvdevice/Get-PcsvDeviceLog.md +++ b/docset/winserver2019-ps/pcsvdevice/Get-PcsvDeviceLog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: CIM_PhysicalComputerSystemView.cdxml-help.xml Module Name: PCSVDevice ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pcsvdevice/get-pcsvdevicelog?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pcsvdevice/get-pcsvdevicelog?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PcsvDeviceLog --- diff --git a/docset/winserver2019-ps/pcsvdevice/Restart-PcsvDevice.md b/docset/winserver2019-ps/pcsvdevice/Restart-PcsvDevice.md index 985bf89632..1390a110a1 100644 --- a/docset/winserver2019-ps/pcsvdevice/Restart-PcsvDevice.md +++ b/docset/winserver2019-ps/pcsvdevice/Restart-PcsvDevice.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: CIM_PhysicalComputerSystemView.cdxml-help.xml Module Name: PCSVDevice ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pcsvdevice/restart-pcsvdevice?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pcsvdevice/restart-pcsvdevice?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restart-PcsvDevice --- diff --git a/docset/winserver2019-ps/pcsvdevice/Set-PcsvDeviceBootConfiguration.md b/docset/winserver2019-ps/pcsvdevice/Set-PcsvDeviceBootConfiguration.md index 280bfbf1a2..0a01d47b49 100644 --- a/docset/winserver2019-ps/pcsvdevice/Set-PcsvDeviceBootConfiguration.md +++ b/docset/winserver2019-ps/pcsvdevice/Set-PcsvDeviceBootConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: CIM_PhysicalComputerSystemView.cdxml-help.xml Module Name: PCSVDevice ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pcsvdevice/set-pcsvdevicebootconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pcsvdevice/set-pcsvdevicebootconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-PcsvDeviceBootConfiguration --- diff --git a/docset/winserver2019-ps/pcsvdevice/Set-PcsvDeviceNetworkConfiguration.md b/docset/winserver2019-ps/pcsvdevice/Set-PcsvDeviceNetworkConfiguration.md index 6b459612b1..184b5e4549 100644 --- a/docset/winserver2019-ps/pcsvdevice/Set-PcsvDeviceNetworkConfiguration.md +++ b/docset/winserver2019-ps/pcsvdevice/Set-PcsvDeviceNetworkConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: CIM_PhysicalComputerSystemView.cdxml-help.xml Module Name: PCSVDevice ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pcsvdevice/set-pcsvdevicenetworkconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pcsvdevice/set-pcsvdevicenetworkconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-PcsvDeviceNetworkConfiguration --- diff --git a/docset/winserver2019-ps/pcsvdevice/Set-PcsvDeviceUserPassword.md b/docset/winserver2019-ps/pcsvdevice/Set-PcsvDeviceUserPassword.md index b43ea3f1e7..8e7ab6029f 100644 --- a/docset/winserver2019-ps/pcsvdevice/Set-PcsvDeviceUserPassword.md +++ b/docset/winserver2019-ps/pcsvdevice/Set-PcsvDeviceUserPassword.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: CIM_PhysicalComputerSystemView.cdxml-help.xml Module Name: PCSVDevice ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pcsvdevice/set-pcsvdeviceuserpassword?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pcsvdevice/set-pcsvdeviceuserpassword?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-PcsvDeviceUserPassword --- diff --git a/docset/winserver2019-ps/pcsvdevice/Start-PcsvDevice.md b/docset/winserver2019-ps/pcsvdevice/Start-PcsvDevice.md index 571cdea543..c05face8e0 100644 --- a/docset/winserver2019-ps/pcsvdevice/Start-PcsvDevice.md +++ b/docset/winserver2019-ps/pcsvdevice/Start-PcsvDevice.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: CIM_PhysicalComputerSystemView.cdxml-help.xml Module Name: PCSVDevice ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pcsvdevice/start-pcsvdevice?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pcsvdevice/start-pcsvdevice?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-PcsvDevice --- diff --git a/docset/winserver2019-ps/pcsvdevice/Stop-PcsvDevice.md b/docset/winserver2019-ps/pcsvdevice/Stop-PcsvDevice.md index 10e0f763a6..9fd3bc75d9 100644 --- a/docset/winserver2019-ps/pcsvdevice/Stop-PcsvDevice.md +++ b/docset/winserver2019-ps/pcsvdevice/Stop-PcsvDevice.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: CIM_PhysicalComputerSystemView.cdxml-help.xml Module Name: PCSVDevice ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pcsvdevice/stop-pcsvdevice?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pcsvdevice/stop-pcsvdevice?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-PcsvDevice --- diff --git a/docset/winserver2019-ps/pki/Add-CertificateEnrollmentPolicyServer.md b/docset/winserver2019-ps/pki/Add-CertificateEnrollmentPolicyServer.md index 60498c222e..56a7c05656 100644 --- a/docset/winserver2019-ps/pki/Add-CertificateEnrollmentPolicyServer.md +++ b/docset/winserver2019-ps/pki/Add-CertificateEnrollmentPolicyServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pki/add-certificateenrollmentpolicyserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/add-certificateenrollmentpolicyserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-CertificateEnrollmentPolicyServer --- diff --git a/docset/winserver2019-ps/pki/Export-Certificate.md b/docset/winserver2019-ps/pki/Export-Certificate.md index a08a851829..d0ea968a7f 100644 --- a/docset/winserver2019-ps/pki/Export-Certificate.md +++ b/docset/winserver2019-ps/pki/Export-Certificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pki/export-certificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/export-certificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-Certificate --- diff --git a/docset/winserver2019-ps/pki/Export-PfxCertificate.md b/docset/winserver2019-ps/pki/Export-PfxCertificate.md index 4af14f4185..ce7fc19712 100644 --- a/docset/winserver2019-ps/pki/Export-PfxCertificate.md +++ b/docset/winserver2019-ps/pki/Export-PfxCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pki/export-pfxcertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/export-pfxcertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-PfxCertificate --- diff --git a/docset/winserver2019-ps/pki/Get-Certificate.md b/docset/winserver2019-ps/pki/Get-Certificate.md index 16ce10abfc..f328220e7d 100644 --- a/docset/winserver2019-ps/pki/Get-Certificate.md +++ b/docset/winserver2019-ps/pki/Get-Certificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pki/get-certificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/get-certificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-Certificate --- diff --git a/docset/winserver2019-ps/pki/Get-CertificateAutoEnrollmentPolicy.md b/docset/winserver2019-ps/pki/Get-CertificateAutoEnrollmentPolicy.md index b6f8db86ca..9d46705532 100644 --- a/docset/winserver2019-ps/pki/Get-CertificateAutoEnrollmentPolicy.md +++ b/docset/winserver2019-ps/pki/Get-CertificateAutoEnrollmentPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pki/get-certificateautoenrollmentpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/get-certificateautoenrollmentpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CertificateAutoEnrollmentPolicy --- diff --git a/docset/winserver2019-ps/pki/Get-CertificateEnrollmentPolicyServer.md b/docset/winserver2019-ps/pki/Get-CertificateEnrollmentPolicyServer.md index 3db7e5484f..95d6103ebc 100644 --- a/docset/winserver2019-ps/pki/Get-CertificateEnrollmentPolicyServer.md +++ b/docset/winserver2019-ps/pki/Get-CertificateEnrollmentPolicyServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pki/get-certificateenrollmentpolicyserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/get-certificateenrollmentpolicyserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CertificateEnrollmentPolicyServer --- diff --git a/docset/winserver2019-ps/pki/Get-CertificateNotificationTask.md b/docset/winserver2019-ps/pki/Get-CertificateNotificationTask.md index f1f934c434..6132a468ae 100644 --- a/docset/winserver2019-ps/pki/Get-CertificateNotificationTask.md +++ b/docset/winserver2019-ps/pki/Get-CertificateNotificationTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pki/get-certificatenotificationtask?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/get-certificatenotificationtask?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CertificateNotificationTask --- diff --git a/docset/winserver2019-ps/pki/Get-PfxData.md b/docset/winserver2019-ps/pki/Get-PfxData.md index 96bda223fc..c00cc1aab8 100644 --- a/docset/winserver2019-ps/pki/Get-PfxData.md +++ b/docset/winserver2019-ps/pki/Get-PfxData.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pki/get-pfxdata?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/get-pfxdata?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PfxData --- diff --git a/docset/winserver2019-ps/pki/Import-Certificate.md b/docset/winserver2019-ps/pki/Import-Certificate.md index cbcde3f84a..ed4bd96406 100644 --- a/docset/winserver2019-ps/pki/Import-Certificate.md +++ b/docset/winserver2019-ps/pki/Import-Certificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pki/import-certificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/import-certificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-Certificate --- diff --git a/docset/winserver2019-ps/pki/Import-PfxCertificate.md b/docset/winserver2019-ps/pki/Import-PfxCertificate.md index a18c28548f..aaa267e488 100644 --- a/docset/winserver2019-ps/pki/Import-PfxCertificate.md +++ b/docset/winserver2019-ps/pki/Import-PfxCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pki/import-pfxcertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/import-pfxcertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-PfxCertificate --- diff --git a/docset/winserver2019-ps/pki/New-CertificateNotificationTask.md b/docset/winserver2019-ps/pki/New-CertificateNotificationTask.md index e3822a745a..9fb1d802c6 100644 --- a/docset/winserver2019-ps/pki/New-CertificateNotificationTask.md +++ b/docset/winserver2019-ps/pki/New-CertificateNotificationTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pki/new-certificatenotificationtask?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/new-certificatenotificationtask?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-CertificateNotificationTask --- diff --git a/docset/winserver2019-ps/pki/New-SelfSignedCertificate.md b/docset/winserver2019-ps/pki/New-SelfSignedCertificate.md index 4c14ea9194..db9efb97f8 100644 --- a/docset/winserver2019-ps/pki/New-SelfSignedCertificate.md +++ b/docset/winserver2019-ps/pki/New-SelfSignedCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 10/06/2019 -online version: https://docs.microsoft.com/powershell/module/pki/new-selfsignedcertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/new-selfsignedcertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-SelfSignedCertificate --- diff --git a/docset/winserver2019-ps/pki/Remove-CertificateEnrollmentPolicyServer.md b/docset/winserver2019-ps/pki/Remove-CertificateEnrollmentPolicyServer.md index fd73f785c2..c727c9d159 100644 --- a/docset/winserver2019-ps/pki/Remove-CertificateEnrollmentPolicyServer.md +++ b/docset/winserver2019-ps/pki/Remove-CertificateEnrollmentPolicyServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pki/remove-certificateenrollmentpolicyserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/remove-certificateenrollmentpolicyserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-CertificateEnrollmentPolicyServer --- diff --git a/docset/winserver2019-ps/pki/Remove-CertificateNotificationTask.md b/docset/winserver2019-ps/pki/Remove-CertificateNotificationTask.md index 0b4cbcc7b6..f2a248c8db 100644 --- a/docset/winserver2019-ps/pki/Remove-CertificateNotificationTask.md +++ b/docset/winserver2019-ps/pki/Remove-CertificateNotificationTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pki/remove-certificatenotificationtask?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/remove-certificatenotificationtask?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-CertificateNotificationTask --- diff --git a/docset/winserver2019-ps/pki/Set-CertificateAutoEnrollmentPolicy.md b/docset/winserver2019-ps/pki/Set-CertificateAutoEnrollmentPolicy.md index d8959cd2e7..b681d66f98 100644 --- a/docset/winserver2019-ps/pki/Set-CertificateAutoEnrollmentPolicy.md +++ b/docset/winserver2019-ps/pki/Set-CertificateAutoEnrollmentPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pki/set-certificateautoenrollmentpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/set-certificateautoenrollmentpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-CertificateAutoEnrollmentPolicy --- diff --git a/docset/winserver2019-ps/pki/Switch-Certificate.md b/docset/winserver2019-ps/pki/Switch-Certificate.md index a06921b960..386c695176 100644 --- a/docset/winserver2019-ps/pki/Switch-Certificate.md +++ b/docset/winserver2019-ps/pki/Switch-Certificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pki/switch-certificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/switch-certificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Switch-Certificate --- diff --git a/docset/winserver2019-ps/pki/Test-Certificate.md b/docset/winserver2019-ps/pki/Test-Certificate.md index bf5756df5a..4d951703c1 100644 --- a/docset/winserver2019-ps/pki/Test-Certificate.md +++ b/docset/winserver2019-ps/pki/Test-Certificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pki/test-certificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/test-certificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-Certificate --- diff --git a/docset/winserver2019-ps/platformidentifier/Get-PlatformIdentifier.md b/docset/winserver2019-ps/platformidentifier/Get-PlatformIdentifier.md index 2cc70862a0..bebaf7ab67 100644 --- a/docset/winserver2019-ps/platformidentifier/Get-PlatformIdentifier.md +++ b/docset/winserver2019-ps/platformidentifier/Get-PlatformIdentifier.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_PlatformIdentifier.cdxml-help.xml Module Name: PlatformIdentifier ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/platformidentifier/get-platformidentifier?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/platformidentifier/get-platformidentifier?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PlatformIdentifier --- diff --git a/docset/winserver2019-ps/pnpdevice/Disable-PnpDevice.md b/docset/winserver2019-ps/pnpdevice/Disable-PnpDevice.md index 1c427e1e1d..f8dfe1675e 100644 --- a/docset/winserver2019-ps/pnpdevice/Disable-PnpDevice.md +++ b/docset/winserver2019-ps/pnpdevice/Disable-PnpDevice.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PnpDevice.cdxml-help.xml Module Name: PnpDevice ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pnpdevice/disable-pnpdevice?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pnpdevice/disable-pnpdevice?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-PnpDevice --- diff --git a/docset/winserver2019-ps/pnpdevice/Enable-PnpDevice.md b/docset/winserver2019-ps/pnpdevice/Enable-PnpDevice.md index 8373befdbc..f92888ae96 100644 --- a/docset/winserver2019-ps/pnpdevice/Enable-PnpDevice.md +++ b/docset/winserver2019-ps/pnpdevice/Enable-PnpDevice.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PnpDevice.cdxml-help.xml Module Name: PnpDevice ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pnpdevice/enable-pnpdevice?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pnpdevice/enable-pnpdevice?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-PnpDevice --- diff --git a/docset/winserver2019-ps/pnpdevice/Get-PnpDevice.md b/docset/winserver2019-ps/pnpdevice/Get-PnpDevice.md index 23228a9ed2..d13cbc4902 100644 --- a/docset/winserver2019-ps/pnpdevice/Get-PnpDevice.md +++ b/docset/winserver2019-ps/pnpdevice/Get-PnpDevice.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PnpDevice.cdxml-help.xml Module Name: PnpDevice ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pnpdevice/get-pnpdevice?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pnpdevice/get-pnpdevice?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PnpDevice --- diff --git a/docset/winserver2019-ps/pnpdevice/Get-PnpDeviceProperty.md b/docset/winserver2019-ps/pnpdevice/Get-PnpDeviceProperty.md index 4702307fa0..67c3e3af18 100644 --- a/docset/winserver2019-ps/pnpdevice/Get-PnpDeviceProperty.md +++ b/docset/winserver2019-ps/pnpdevice/Get-PnpDeviceProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PnpDevice.cdxml-help.xml Module Name: PnpDevice ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pnpdevice/get-pnpdeviceproperty?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pnpdevice/get-pnpdeviceproperty?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PnpDeviceProperty --- diff --git a/docset/winserver2019-ps/printmanagement/Add-Printer.md b/docset/winserver2019-ps/printmanagement/Add-Printer.md index 2c858cdb74..8c0a2be28d 100644 --- a/docset/winserver2019-ps/printmanagement/Add-Printer.md +++ b/docset/winserver2019-ps/printmanagement/Add-Printer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_Printer_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/printmanagement/add-printer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/add-printer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-Printer --- diff --git a/docset/winserver2019-ps/printmanagement/Add-PrinterDriver.md b/docset/winserver2019-ps/printmanagement/Add-PrinterDriver.md index a4e59401ac..f73635b4de 100644 --- a/docset/winserver2019-ps/printmanagement/Add-PrinterDriver.md +++ b/docset/winserver2019-ps/printmanagement/Add-PrinterDriver.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_PrinterDriver_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/printmanagement/add-printerdriver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/add-printerdriver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-PrinterDriver --- diff --git a/docset/winserver2019-ps/printmanagement/Add-PrinterPort.md b/docset/winserver2019-ps/printmanagement/Add-PrinterPort.md index 39371d980f..c8f9cc8527 100644 --- a/docset/winserver2019-ps/printmanagement/Add-PrinterPort.md +++ b/docset/winserver2019-ps/printmanagement/Add-PrinterPort.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_PrinterPortTasks_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/printmanagement/add-printerport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/add-printerport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-PrinterPort --- diff --git a/docset/winserver2019-ps/printmanagement/Get-PrintConfiguration.md b/docset/winserver2019-ps/printmanagement/Get-PrintConfiguration.md index c60bd914cb..beb561b806 100644 --- a/docset/winserver2019-ps/printmanagement/Get-PrintConfiguration.md +++ b/docset/winserver2019-ps/printmanagement/Get-PrintConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_PrinterConfiguration_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/printmanagement/get-printconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/get-printconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PrintConfiguration --- diff --git a/docset/winserver2019-ps/printmanagement/Get-PrintJob.md b/docset/winserver2019-ps/printmanagement/Get-PrintJob.md index 96f7160fea..773a4f30fd 100644 --- a/docset/winserver2019-ps/printmanagement/Get-PrintJob.md +++ b/docset/winserver2019-ps/printmanagement/Get-PrintJob.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_PrintJob_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/printmanagement/get-printjob?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/get-printjob?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PrintJob --- diff --git a/docset/winserver2019-ps/printmanagement/Get-Printer.md b/docset/winserver2019-ps/printmanagement/Get-Printer.md index c451e4f76a..904f529df3 100644 --- a/docset/winserver2019-ps/printmanagement/Get-Printer.md +++ b/docset/winserver2019-ps/printmanagement/Get-Printer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_Printer_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/printmanagement/get-printer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/get-printer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-Printer --- diff --git a/docset/winserver2019-ps/printmanagement/Get-PrinterDriver.md b/docset/winserver2019-ps/printmanagement/Get-PrinterDriver.md index 8875cf1a24..8504998421 100644 --- a/docset/winserver2019-ps/printmanagement/Get-PrinterDriver.md +++ b/docset/winserver2019-ps/printmanagement/Get-PrinterDriver.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_PrinterDriver_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/printmanagement/get-printerdriver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/get-printerdriver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PrinterDriver --- diff --git a/docset/winserver2019-ps/printmanagement/Get-PrinterPort.md b/docset/winserver2019-ps/printmanagement/Get-PrinterPort.md index e4cb7cb604..5fef223cbb 100644 --- a/docset/winserver2019-ps/printmanagement/Get-PrinterPort.md +++ b/docset/winserver2019-ps/printmanagement/Get-PrinterPort.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_PrinterPort_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/printmanagement/get-printerport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/get-printerport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PrinterPort --- diff --git a/docset/winserver2019-ps/printmanagement/Get-PrinterProperty.md b/docset/winserver2019-ps/printmanagement/Get-PrinterProperty.md index aa851419fd..0f88a76434 100644 --- a/docset/winserver2019-ps/printmanagement/Get-PrinterProperty.md +++ b/docset/winserver2019-ps/printmanagement/Get-PrinterProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_PrinterProperty_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/printmanagement/get-printerproperty?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/get-printerproperty?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PrinterProperty --- diff --git a/docset/winserver2019-ps/printmanagement/Read-PrinterNfcTag.md b/docset/winserver2019-ps/printmanagement/Read-PrinterNfcTag.md index 3909c5f3d9..356b327e15 100644 --- a/docset/winserver2019-ps/printmanagement/Read-PrinterNfcTag.md +++ b/docset/winserver2019-ps/printmanagement/Read-PrinterNfcTag.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_PrinterNfcTagTasks_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/printmanagement/read-printernfctag?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/read-printernfctag?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Read-PrinterNfcTag --- diff --git a/docset/winserver2019-ps/printmanagement/Remove-PrintJob.md b/docset/winserver2019-ps/printmanagement/Remove-PrintJob.md index b80e4d0ac9..56c012cb5e 100644 --- a/docset/winserver2019-ps/printmanagement/Remove-PrintJob.md +++ b/docset/winserver2019-ps/printmanagement/Remove-PrintJob.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_PrintJob_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/printmanagement/remove-printjob?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/remove-printjob?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-PrintJob --- diff --git a/docset/winserver2019-ps/printmanagement/Remove-Printer.md b/docset/winserver2019-ps/printmanagement/Remove-Printer.md index f53b1a2d6a..a9f430a3a4 100644 --- a/docset/winserver2019-ps/printmanagement/Remove-Printer.md +++ b/docset/winserver2019-ps/printmanagement/Remove-Printer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_Printer_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/printmanagement/remove-printer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/remove-printer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-Printer --- diff --git a/docset/winserver2019-ps/printmanagement/Remove-PrinterDriver.md b/docset/winserver2019-ps/printmanagement/Remove-PrinterDriver.md index add002f57a..ade9ef7fc8 100644 --- a/docset/winserver2019-ps/printmanagement/Remove-PrinterDriver.md +++ b/docset/winserver2019-ps/printmanagement/Remove-PrinterDriver.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_PrinterDriver_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/printmanagement/remove-printerdriver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/remove-printerdriver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-PrinterDriver --- diff --git a/docset/winserver2019-ps/printmanagement/Remove-PrinterPort.md b/docset/winserver2019-ps/printmanagement/Remove-PrinterPort.md index 8729388d09..33f9af7b5f 100644 --- a/docset/winserver2019-ps/printmanagement/Remove-PrinterPort.md +++ b/docset/winserver2019-ps/printmanagement/Remove-PrinterPort.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_PrinterPort_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/printmanagement/remove-printerport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/remove-printerport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-PrinterPort --- diff --git a/docset/winserver2019-ps/printmanagement/Rename-Printer.md b/docset/winserver2019-ps/printmanagement/Rename-Printer.md index a6585227cb..35ee46b1b7 100644 --- a/docset/winserver2019-ps/printmanagement/Rename-Printer.md +++ b/docset/winserver2019-ps/printmanagement/Rename-Printer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_Printer_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/printmanagement/rename-printer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/rename-printer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-Printer --- diff --git a/docset/winserver2019-ps/printmanagement/Restart-PrintJob.md b/docset/winserver2019-ps/printmanagement/Restart-PrintJob.md index 8765fcf3b5..e66ae57956 100644 --- a/docset/winserver2019-ps/printmanagement/Restart-PrintJob.md +++ b/docset/winserver2019-ps/printmanagement/Restart-PrintJob.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_PrintJob_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/printmanagement/restart-printjob?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/restart-printjob?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restart-PrintJob --- diff --git a/docset/winserver2019-ps/printmanagement/Resume-PrintJob.md b/docset/winserver2019-ps/printmanagement/Resume-PrintJob.md index 6765c283ec..e1c5d50d5f 100644 --- a/docset/winserver2019-ps/printmanagement/Resume-PrintJob.md +++ b/docset/winserver2019-ps/printmanagement/Resume-PrintJob.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_PrintJob_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/printmanagement/resume-printjob?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/resume-printjob?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-PrintJob --- diff --git a/docset/winserver2019-ps/printmanagement/Set-PrintConfiguration.md b/docset/winserver2019-ps/printmanagement/Set-PrintConfiguration.md index 55e3911903..427095e73e 100644 --- a/docset/winserver2019-ps/printmanagement/Set-PrintConfiguration.md +++ b/docset/winserver2019-ps/printmanagement/Set-PrintConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_PrinterConfiguration_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/printmanagement/set-printconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/set-printconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-PrintConfiguration --- diff --git a/docset/winserver2019-ps/printmanagement/Set-Printer.md b/docset/winserver2019-ps/printmanagement/Set-Printer.md index b696d192ee..b69a6bca33 100644 --- a/docset/winserver2019-ps/printmanagement/Set-Printer.md +++ b/docset/winserver2019-ps/printmanagement/Set-Printer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_Printer_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/printmanagement/set-printer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/set-printer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-Printer --- diff --git a/docset/winserver2019-ps/printmanagement/Set-PrinterProperty.md b/docset/winserver2019-ps/printmanagement/Set-PrinterProperty.md index a00714350a..3f2afa05c3 100644 --- a/docset/winserver2019-ps/printmanagement/Set-PrinterProperty.md +++ b/docset/winserver2019-ps/printmanagement/Set-PrinterProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_PrinterProperty_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/printmanagement/set-printerproperty?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/set-printerproperty?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-PrinterProperty --- diff --git a/docset/winserver2019-ps/printmanagement/Suspend-PrintJob.md b/docset/winserver2019-ps/printmanagement/Suspend-PrintJob.md index afcacac209..a67bc29685 100644 --- a/docset/winserver2019-ps/printmanagement/Suspend-PrintJob.md +++ b/docset/winserver2019-ps/printmanagement/Suspend-PrintJob.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_PrintJob_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/printmanagement/suspend-printjob?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/suspend-printjob?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-PrintJob --- diff --git a/docset/winserver2019-ps/printmanagement/Write-PrinterNfcTag.md b/docset/winserver2019-ps/printmanagement/Write-PrinterNfcTag.md index ebe10ce851..7280dda801 100644 --- a/docset/winserver2019-ps/printmanagement/Write-PrinterNfcTag.md +++ b/docset/winserver2019-ps/printmanagement/Write-PrinterNfcTag.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_PrinterNfcTagTasks_v1.0.cdxml-help.xml Module Name: PrintManagement ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/printmanagement/write-printernfctag?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/printmanagement/write-printernfctag?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Write-PrinterNfcTag --- diff --git a/docset/winserver2019-ps/processmitigations/ConvertTo-ProcessMitigationPolicy.md b/docset/winserver2019-ps/processmitigations/ConvertTo-ProcessMitigationPolicy.md index 7898d7ae1f..1189f27794 100644 --- a/docset/winserver2019-ps/processmitigations/ConvertTo-ProcessMitigationPolicy.md +++ b/docset/winserver2019-ps/processmitigations/ConvertTo-ProcessMitigationPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ProcessMitigations.dll-Help.xml Module Name: ProcessMitigations ms.date: 03/29/2017 -online version: https://docs.microsoft.com/powershell/module/processmitigations/convertto-processmitigationpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/processmitigations/convertto-processmitigationpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: ConvertTo-ProcessMitigationPolicy --- diff --git a/docset/winserver2019-ps/processmitigations/Get-ProcessMitigation.md b/docset/winserver2019-ps/processmitigations/Get-ProcessMitigation.md index eadffe544c..e9bf12085a 100644 --- a/docset/winserver2019-ps/processmitigations/Get-ProcessMitigation.md +++ b/docset/winserver2019-ps/processmitigations/Get-ProcessMitigation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ProcessMitigations.dll-Help.xml Module Name: ProcessMitigations ms.date: 03/29/2017 -online version: https://docs.microsoft.com/powershell/module/processmitigations/get-processmitigation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/processmitigations/get-processmitigation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ProcessMitigation --- diff --git a/docset/winserver2019-ps/processmitigations/Set-ProcessMitigation.md b/docset/winserver2019-ps/processmitigations/Set-ProcessMitigation.md index 38de021acd..503288032b 100644 --- a/docset/winserver2019-ps/processmitigations/Set-ProcessMitigation.md +++ b/docset/winserver2019-ps/processmitigations/Set-ProcessMitigation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ProcessMitigations.dll-Help.xml Module Name: ProcessMitigations ms.date: 03/29/2017 -online version: https://docs.microsoft.com/powershell/module/processmitigations/set-processmitigation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/processmitigations/set-processmitigation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ProcessMitigation --- diff --git a/docset/winserver2019-ps/provisioning/Export-ProvisioningPackage.md b/docset/winserver2019-ps/provisioning/Export-ProvisioningPackage.md index 2218c0da5d..2bf7ac8533 100644 --- a/docset/winserver2019-ps/provisioning/Export-ProvisioningPackage.md +++ b/docset/winserver2019-ps/provisioning/Export-ProvisioningPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: provcmdlets.dll-Help.xml Module Name: Provisioning ms.date: 11/29/2021 -online version: https://docs.microsoft.com/powershell/module/provisioning/export-provisioningpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/provisioning/export-provisioningpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-ProvisioningPackage --- diff --git a/docset/winserver2019-ps/provisioning/Export-Trace.md b/docset/winserver2019-ps/provisioning/Export-Trace.md index 576967c3b2..1263319148 100644 --- a/docset/winserver2019-ps/provisioning/Export-Trace.md +++ b/docset/winserver2019-ps/provisioning/Export-Trace.md @@ -3,7 +3,7 @@ description: The Export-Trace cmdlet exports an event trace log (ETL) file for p external help file: provcmdlets.dll-Help.xml Module Name: Provisioning ms.date: 11/29/2021 -online version: https://docs.microsoft.com/powershell/module/provisioning/export-trace?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/provisioning/export-trace?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-Trace --- diff --git a/docset/winserver2019-ps/provisioning/Get-ProvisioningPackage.md b/docset/winserver2019-ps/provisioning/Get-ProvisioningPackage.md index 53485a3f92..9a3795700e 100644 --- a/docset/winserver2019-ps/provisioning/Get-ProvisioningPackage.md +++ b/docset/winserver2019-ps/provisioning/Get-ProvisioningPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: provcmdlets.dll-Help.xml Module Name: Provisioning ms.date: 11/29/2021 -online version: https://docs.microsoft.com/powershell/module/provisioning/get-provisioningpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/provisioning/get-provisioningpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ProvisioningPackage --- diff --git a/docset/winserver2019-ps/provisioning/Get-TrustedProvisioningCertificate.md b/docset/winserver2019-ps/provisioning/Get-TrustedProvisioningCertificate.md index 920ad5b3f2..b7819be753 100644 --- a/docset/winserver2019-ps/provisioning/Get-TrustedProvisioningCertificate.md +++ b/docset/winserver2019-ps/provisioning/Get-TrustedProvisioningCertificate.md @@ -3,7 +3,7 @@ description: Lists all installed trusted provisioning certificates; use this cmd external help file: provcmdlets.dll-Help.xml Module Name: Provisioning ms.date: 11/29/2021 -online version: https://docs.microsoft.com/powershell/module/provisioning/get-trustedprovisioningcertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/provisioning/get-trustedprovisioningcertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-TrustedProvisioningCertificate --- diff --git a/docset/winserver2019-ps/provisioning/Install-ProvisioningPackage.md b/docset/winserver2019-ps/provisioning/Install-ProvisioningPackage.md index eec360679f..cd895813ac 100644 --- a/docset/winserver2019-ps/provisioning/Install-ProvisioningPackage.md +++ b/docset/winserver2019-ps/provisioning/Install-ProvisioningPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: provcmdlets.dll-Help.xml Module Name: Provisioning ms.date: 11/29/2021 -online version: https://docs.microsoft.com/powershell/module/provisioning/install-provisioningpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/provisioning/install-provisioningpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-ProvisioningPackage --- diff --git a/docset/winserver2019-ps/provisioning/Install-TrustedProvisioningCertificate.md b/docset/winserver2019-ps/provisioning/Install-TrustedProvisioningCertificate.md index 9ef0d91141..e8d8617208 100644 --- a/docset/winserver2019-ps/provisioning/Install-TrustedProvisioningCertificate.md +++ b/docset/winserver2019-ps/provisioning/Install-TrustedProvisioningCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: provcmdlets.dll-Help.xml Module Name: Provisioning ms.date: 05/09/2017 -online version: https://docs.microsoft.com/powershell/module/provisioning/install-trustedprovisioningcertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/provisioning/install-trustedprovisioningcertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-TrustedProvisioningCertificate --- diff --git a/docset/winserver2019-ps/provisioning/Uninstall-ProvisioningPackage.md b/docset/winserver2019-ps/provisioning/Uninstall-ProvisioningPackage.md index 67bf053f7c..7f7e2b7258 100644 --- a/docset/winserver2019-ps/provisioning/Uninstall-ProvisioningPackage.md +++ b/docset/winserver2019-ps/provisioning/Uninstall-ProvisioningPackage.md @@ -3,7 +3,7 @@ description: The Uninstall-ProvisioningPackage cmdlet uninstalls .ppkg files. external help file: provcmdlets.dll-Help.xml Module Name: Provisioning ms.date: 05/09/2017 -online version: https://docs.microsoft.com/powershell/module/provisioning/uninstall-provisioningpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/provisioning/uninstall-provisioningpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-ProvisioningPackage --- diff --git a/docset/winserver2019-ps/provisioning/Uninstall-TrustedProvisioningCertificate.md b/docset/winserver2019-ps/provisioning/Uninstall-TrustedProvisioningCertificate.md index b921a3874d..416b482624 100644 --- a/docset/winserver2019-ps/provisioning/Uninstall-TrustedProvisioningCertificate.md +++ b/docset/winserver2019-ps/provisioning/Uninstall-TrustedProvisioningCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: provcmdlets.dll-Help.xml Module Name: Provisioning ms.date: 11/29/2021 -online version: https://docs.microsoft.com/powershell/module/provisioning/uninstall-trustedprovisioningcertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/provisioning/uninstall-trustedprovisioningcertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-TrustedProvisioningCertificate --- diff --git a/docset/winserver2019-ps/rdmgmt/Add-RDServer.md b/docset/winserver2019-ps/rdmgmt/Add-RDServer.md index 30b50caf50..73e935ab94 100644 --- a/docset/winserver2019-ps/rdmgmt/Add-RDServer.md +++ b/docset/winserver2019-ps/rdmgmt/Add-RDServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/add-rdserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/add-rdserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-RDServer --- diff --git a/docset/winserver2019-ps/rdmgmt/Add-RDSessionHost.md b/docset/winserver2019-ps/rdmgmt/Add-RDSessionHost.md index 79eaabb3fc..3cc7ed2fc6 100644 --- a/docset/winserver2019-ps/rdmgmt/Add-RDSessionHost.md +++ b/docset/winserver2019-ps/rdmgmt/Add-RDSessionHost.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/add-rdsessionhost?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/add-rdsessionhost?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-RDSessionHost --- diff --git a/docset/winserver2019-ps/rdmgmt/Add-RDVirtualDesktopToCollection.md b/docset/winserver2019-ps/rdmgmt/Add-RDVirtualDesktopToCollection.md index c79e0bd23c..3d5f20c0b2 100644 --- a/docset/winserver2019-ps/rdmgmt/Add-RDVirtualDesktopToCollection.md +++ b/docset/winserver2019-ps/rdmgmt/Add-RDVirtualDesktopToCollection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/add-rdvirtualdesktoptocollection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/add-rdvirtualdesktoptocollection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-RDVirtualDesktopToCollection --- diff --git a/docset/winserver2019-ps/rdmgmt/Disable-RDVirtualDesktopADMachineAccountReuse.md b/docset/winserver2019-ps/rdmgmt/Disable-RDVirtualDesktopADMachineAccountReuse.md index d93c912bf4..6b46eaf469 100644 --- a/docset/winserver2019-ps/rdmgmt/Disable-RDVirtualDesktopADMachineAccountReuse.md +++ b/docset/winserver2019-ps/rdmgmt/Disable-RDVirtualDesktopADMachineAccountReuse.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/disable-rdvirtualdesktopadmachineaccountreuse?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/disable-rdvirtualdesktopadmachineaccountreuse?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-RDVirtualDesktopADMachineAccountReuse --- diff --git a/docset/winserver2019-ps/rdmgmt/Disconnect-RDUser.md b/docset/winserver2019-ps/rdmgmt/Disconnect-RDUser.md index ef97575342..07412e9055 100644 --- a/docset/winserver2019-ps/rdmgmt/Disconnect-RDUser.md +++ b/docset/winserver2019-ps/rdmgmt/Disconnect-RDUser.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/disconnect-rduser?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/disconnect-rduser?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disconnect-RDUser --- diff --git a/docset/winserver2019-ps/rdmgmt/Enable-RDVirtualDesktopADMachineAccountReuse.md b/docset/winserver2019-ps/rdmgmt/Enable-RDVirtualDesktopADMachineAccountReuse.md index c79c6c5ec6..bcea97c71d 100644 --- a/docset/winserver2019-ps/rdmgmt/Enable-RDVirtualDesktopADMachineAccountReuse.md +++ b/docset/winserver2019-ps/rdmgmt/Enable-RDVirtualDesktopADMachineAccountReuse.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/enable-rdvirtualdesktopadmachineaccountreuse?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/enable-rdvirtualdesktopadmachineaccountreuse?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-RDVirtualDesktopADMachineAccountReuse --- diff --git a/docset/winserver2019-ps/rdmgmt/Export-RDPersonalSessionDesktopAssignment.md b/docset/winserver2019-ps/rdmgmt/Export-RDPersonalSessionDesktopAssignment.md index d56c32bc0a..66c38e2b5c 100644 --- a/docset/winserver2019-ps/rdmgmt/Export-RDPersonalSessionDesktopAssignment.md +++ b/docset/winserver2019-ps/rdmgmt/Export-RDPersonalSessionDesktopAssignment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/export-rdpersonalsessiondesktopassignment?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/export-rdpersonalsessiondesktopassignment?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-RDPersonalSessionDesktopAssignment --- diff --git a/docset/winserver2019-ps/rdmgmt/Export-RDPersonalVirtualDesktopAssignment.md b/docset/winserver2019-ps/rdmgmt/Export-RDPersonalVirtualDesktopAssignment.md index d962542951..1fd0422b50 100644 --- a/docset/winserver2019-ps/rdmgmt/Export-RDPersonalVirtualDesktopAssignment.md +++ b/docset/winserver2019-ps/rdmgmt/Export-RDPersonalVirtualDesktopAssignment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/export-rdpersonalvirtualdesktopassignment?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/export-rdpersonalvirtualdesktopassignment?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-RDPersonalVirtualDesktopAssignment --- diff --git a/docset/winserver2019-ps/rdmgmt/Get-RDAvailableApp.md b/docset/winserver2019-ps/rdmgmt/Get-RDAvailableApp.md index 73e48fdc2a..b4709610da 100644 --- a/docset/winserver2019-ps/rdmgmt/Get-RDAvailableApp.md +++ b/docset/winserver2019-ps/rdmgmt/Get-RDAvailableApp.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdavailableapp?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdavailableapp?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDAvailableApp --- diff --git a/docset/winserver2019-ps/rdmgmt/Get-RDCertificate.md b/docset/winserver2019-ps/rdmgmt/Get-RDCertificate.md index 52e8f40f7e..8e54283e88 100644 --- a/docset/winserver2019-ps/rdmgmt/Get-RDCertificate.md +++ b/docset/winserver2019-ps/rdmgmt/Get-RDCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdcertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdcertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDCertificate --- diff --git a/docset/winserver2019-ps/rdmgmt/Get-RDConnectionBrokerHighAvailability.md b/docset/winserver2019-ps/rdmgmt/Get-RDConnectionBrokerHighAvailability.md index 09e16d8125..3851c033d2 100644 --- a/docset/winserver2019-ps/rdmgmt/Get-RDConnectionBrokerHighAvailability.md +++ b/docset/winserver2019-ps/rdmgmt/Get-RDConnectionBrokerHighAvailability.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdconnectionbrokerhighavailability?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdconnectionbrokerhighavailability?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDConnectionBrokerHighAvailability --- diff --git a/docset/winserver2019-ps/rdmgmt/Get-RDDeploymentGatewayConfiguration.md b/docset/winserver2019-ps/rdmgmt/Get-RDDeploymentGatewayConfiguration.md index 6332093260..afba9d1fa0 100644 --- a/docset/winserver2019-ps/rdmgmt/Get-RDDeploymentGatewayConfiguration.md +++ b/docset/winserver2019-ps/rdmgmt/Get-RDDeploymentGatewayConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rddeploymentgatewayconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rddeploymentgatewayconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDDeploymentGatewayConfiguration --- diff --git a/docset/winserver2019-ps/rdmgmt/Get-RDFileTypeAssociation.md b/docset/winserver2019-ps/rdmgmt/Get-RDFileTypeAssociation.md index b0f3e2cf91..e0dea7c202 100644 --- a/docset/winserver2019-ps/rdmgmt/Get-RDFileTypeAssociation.md +++ b/docset/winserver2019-ps/rdmgmt/Get-RDFileTypeAssociation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdfiletypeassociation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdfiletypeassociation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDFileTypeAssociation --- diff --git a/docset/winserver2019-ps/rdmgmt/Get-RDLicenseConfiguration.md b/docset/winserver2019-ps/rdmgmt/Get-RDLicenseConfiguration.md index 42067c3f7b..78706b5d14 100644 --- a/docset/winserver2019-ps/rdmgmt/Get-RDLicenseConfiguration.md +++ b/docset/winserver2019-ps/rdmgmt/Get-RDLicenseConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdlicenseconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdlicenseconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDLicenseConfiguration --- diff --git a/docset/winserver2019-ps/rdmgmt/Get-RDPersonalSessionDesktopAssignment.md b/docset/winserver2019-ps/rdmgmt/Get-RDPersonalSessionDesktopAssignment.md index 6f8be15f0c..3ee9feb8ce 100644 --- a/docset/winserver2019-ps/rdmgmt/Get-RDPersonalSessionDesktopAssignment.md +++ b/docset/winserver2019-ps/rdmgmt/Get-RDPersonalSessionDesktopAssignment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdpersonalsessiondesktopassignment?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdpersonalsessiondesktopassignment?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDPersonalSessionDesktopAssignment --- diff --git a/docset/winserver2019-ps/rdmgmt/Get-RDPersonalVirtualDesktopAssignment.md b/docset/winserver2019-ps/rdmgmt/Get-RDPersonalVirtualDesktopAssignment.md index 3cf94c921a..88e0ae668a 100644 --- a/docset/winserver2019-ps/rdmgmt/Get-RDPersonalVirtualDesktopAssignment.md +++ b/docset/winserver2019-ps/rdmgmt/Get-RDPersonalVirtualDesktopAssignment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdpersonalvirtualdesktopassignment?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdpersonalvirtualdesktopassignment?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDPersonalVirtualDesktopAssignment --- diff --git a/docset/winserver2019-ps/rdmgmt/Get-RDPersonalVirtualDesktopPatchSchedule.md b/docset/winserver2019-ps/rdmgmt/Get-RDPersonalVirtualDesktopPatchSchedule.md index 809d75aedd..a89f5b043a 100644 --- a/docset/winserver2019-ps/rdmgmt/Get-RDPersonalVirtualDesktopPatchSchedule.md +++ b/docset/winserver2019-ps/rdmgmt/Get-RDPersonalVirtualDesktopPatchSchedule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdpersonalvirtualdesktoppatchschedule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdpersonalvirtualdesktoppatchschedule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDPersonalVirtualDesktopPatchSchedule --- diff --git a/docset/winserver2019-ps/rdmgmt/Get-RDRemoteApp.md b/docset/winserver2019-ps/rdmgmt/Get-RDRemoteApp.md index 62fec8b1b2..0e3ba9cbc5 100644 --- a/docset/winserver2019-ps/rdmgmt/Get-RDRemoteApp.md +++ b/docset/winserver2019-ps/rdmgmt/Get-RDRemoteApp.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdremoteapp?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdremoteapp?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDRemoteApp --- diff --git a/docset/winserver2019-ps/rdmgmt/Get-RDRemoteDesktop.md b/docset/winserver2019-ps/rdmgmt/Get-RDRemoteDesktop.md index 152162bed6..d541e3b52a 100644 --- a/docset/winserver2019-ps/rdmgmt/Get-RDRemoteDesktop.md +++ b/docset/winserver2019-ps/rdmgmt/Get-RDRemoteDesktop.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdremotedesktop?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdremotedesktop?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDRemoteDesktop --- diff --git a/docset/winserver2019-ps/rdmgmt/Get-RDServer.md b/docset/winserver2019-ps/rdmgmt/Get-RDServer.md index 5a88e8f4a6..251004e1ab 100644 --- a/docset/winserver2019-ps/rdmgmt/Get-RDServer.md +++ b/docset/winserver2019-ps/rdmgmt/Get-RDServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDServer --- diff --git a/docset/winserver2019-ps/rdmgmt/Get-RDSessionCollection.md b/docset/winserver2019-ps/rdmgmt/Get-RDSessionCollection.md index 6cf67ae124..60a2b32e7a 100644 --- a/docset/winserver2019-ps/rdmgmt/Get-RDSessionCollection.md +++ b/docset/winserver2019-ps/rdmgmt/Get-RDSessionCollection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdsessioncollection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdsessioncollection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDSessionCollection --- diff --git a/docset/winserver2019-ps/rdmgmt/Get-RDSessionCollectionConfiguration.md b/docset/winserver2019-ps/rdmgmt/Get-RDSessionCollectionConfiguration.md index 8a3a4561e0..32d853cc0b 100644 --- a/docset/winserver2019-ps/rdmgmt/Get-RDSessionCollectionConfiguration.md +++ b/docset/winserver2019-ps/rdmgmt/Get-RDSessionCollectionConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdsessioncollectionconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdsessioncollectionconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDSessionCollectionConfiguration --- diff --git a/docset/winserver2019-ps/rdmgmt/Get-RDSessionHost.md b/docset/winserver2019-ps/rdmgmt/Get-RDSessionHost.md index 9f1cedf466..ec8ec35c48 100644 --- a/docset/winserver2019-ps/rdmgmt/Get-RDSessionHost.md +++ b/docset/winserver2019-ps/rdmgmt/Get-RDSessionHost.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdsessionhost?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdsessionhost?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDSessionHost --- diff --git a/docset/winserver2019-ps/rdmgmt/Get-RDUserSession.md b/docset/winserver2019-ps/rdmgmt/Get-RDUserSession.md index c8199ed4cf..f66eaf0907 100644 --- a/docset/winserver2019-ps/rdmgmt/Get-RDUserSession.md +++ b/docset/winserver2019-ps/rdmgmt/Get-RDUserSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdusersession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdusersession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDUserSession --- diff --git a/docset/winserver2019-ps/rdmgmt/Get-RDVirtualDesktop.md b/docset/winserver2019-ps/rdmgmt/Get-RDVirtualDesktop.md index d8bc9fe71e..15262baf3e 100644 --- a/docset/winserver2019-ps/rdmgmt/Get-RDVirtualDesktop.md +++ b/docset/winserver2019-ps/rdmgmt/Get-RDVirtualDesktop.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktop?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktop?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDVirtualDesktop --- diff --git a/docset/winserver2019-ps/rdmgmt/Get-RDVirtualDesktopCollection.md b/docset/winserver2019-ps/rdmgmt/Get-RDVirtualDesktopCollection.md index 922935755d..92d3abb3f3 100644 --- a/docset/winserver2019-ps/rdmgmt/Get-RDVirtualDesktopCollection.md +++ b/docset/winserver2019-ps/rdmgmt/Get-RDVirtualDesktopCollection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktopcollection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktopcollection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDVirtualDesktopCollection --- diff --git a/docset/winserver2019-ps/rdmgmt/Get-RDVirtualDesktopCollectionConfiguration.md b/docset/winserver2019-ps/rdmgmt/Get-RDVirtualDesktopCollectionConfiguration.md index b4547e2b57..c005ed853f 100644 --- a/docset/winserver2019-ps/rdmgmt/Get-RDVirtualDesktopCollectionConfiguration.md +++ b/docset/winserver2019-ps/rdmgmt/Get-RDVirtualDesktopCollectionConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktopcollectionconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktopcollectionconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDVirtualDesktopCollectionConfiguration --- diff --git a/docset/winserver2019-ps/rdmgmt/Get-RDVirtualDesktopCollectionJobStatus.md b/docset/winserver2019-ps/rdmgmt/Get-RDVirtualDesktopCollectionJobStatus.md index cea9aeb45a..ee8c7d4d65 100644 --- a/docset/winserver2019-ps/rdmgmt/Get-RDVirtualDesktopCollectionJobStatus.md +++ b/docset/winserver2019-ps/rdmgmt/Get-RDVirtualDesktopCollectionJobStatus.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktopcollectionjobstatus?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktopcollectionjobstatus?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDVirtualDesktopCollectionJobStatus --- diff --git a/docset/winserver2019-ps/rdmgmt/Get-RDVirtualDesktopConcurrency.md b/docset/winserver2019-ps/rdmgmt/Get-RDVirtualDesktopConcurrency.md index f88e71fe83..6f0cb997ab 100644 --- a/docset/winserver2019-ps/rdmgmt/Get-RDVirtualDesktopConcurrency.md +++ b/docset/winserver2019-ps/rdmgmt/Get-RDVirtualDesktopConcurrency.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktopconcurrency?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktopconcurrency?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDVirtualDesktopConcurrency --- diff --git a/docset/winserver2019-ps/rdmgmt/Get-RDVirtualDesktopIdleCount.md b/docset/winserver2019-ps/rdmgmt/Get-RDVirtualDesktopIdleCount.md index 261ae6ece0..389b963de3 100644 --- a/docset/winserver2019-ps/rdmgmt/Get-RDVirtualDesktopIdleCount.md +++ b/docset/winserver2019-ps/rdmgmt/Get-RDVirtualDesktopIdleCount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktopidlecount?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktopidlecount?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDVirtualDesktopIdleCount --- diff --git a/docset/winserver2019-ps/rdmgmt/Get-RDVirtualDesktopTemplateExportPath.md b/docset/winserver2019-ps/rdmgmt/Get-RDVirtualDesktopTemplateExportPath.md index cdc1bc8059..a4fcb3d81a 100644 --- a/docset/winserver2019-ps/rdmgmt/Get-RDVirtualDesktopTemplateExportPath.md +++ b/docset/winserver2019-ps/rdmgmt/Get-RDVirtualDesktopTemplateExportPath.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktoptemplateexportpath?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktoptemplateexportpath?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDVirtualDesktopTemplateExportPath --- diff --git a/docset/winserver2019-ps/rdmgmt/Get-RDWorkspace.md b/docset/winserver2019-ps/rdmgmt/Get-RDWorkspace.md index 06fca6b895..947598f941 100644 --- a/docset/winserver2019-ps/rdmgmt/Get-RDWorkspace.md +++ b/docset/winserver2019-ps/rdmgmt/Get-RDWorkspace.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdworkspace?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdworkspace?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDWorkspace --- diff --git a/docset/winserver2019-ps/rdmgmt/Grant-RDOUAccess.md b/docset/winserver2019-ps/rdmgmt/Grant-RDOUAccess.md index f6a3b8be0b..708f3adc5d 100644 --- a/docset/winserver2019-ps/rdmgmt/Grant-RDOUAccess.md +++ b/docset/winserver2019-ps/rdmgmt/Grant-RDOUAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/grant-rdouaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/grant-rdouaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Grant-RDOUAccess --- diff --git a/docset/winserver2019-ps/rdmgmt/Import-RDPersonalSessionDesktopAssignment.md b/docset/winserver2019-ps/rdmgmt/Import-RDPersonalSessionDesktopAssignment.md index dd09589796..d748ef67de 100644 --- a/docset/winserver2019-ps/rdmgmt/Import-RDPersonalSessionDesktopAssignment.md +++ b/docset/winserver2019-ps/rdmgmt/Import-RDPersonalSessionDesktopAssignment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/import-rdpersonalsessiondesktopassignment?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/import-rdpersonalsessiondesktopassignment?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-RDPersonalSessionDesktopAssignment --- diff --git a/docset/winserver2019-ps/rdmgmt/Import-RDPersonalVirtualDesktopAssignment.md b/docset/winserver2019-ps/rdmgmt/Import-RDPersonalVirtualDesktopAssignment.md index d91b366372..3b51854368 100644 --- a/docset/winserver2019-ps/rdmgmt/Import-RDPersonalVirtualDesktopAssignment.md +++ b/docset/winserver2019-ps/rdmgmt/Import-RDPersonalVirtualDesktopAssignment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/import-rdpersonalvirtualdesktopassignment?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/import-rdpersonalvirtualdesktopassignment?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-RDPersonalVirtualDesktopAssignment --- diff --git a/docset/winserver2019-ps/rdmgmt/Invoke-RDUserLogoff.md b/docset/winserver2019-ps/rdmgmt/Invoke-RDUserLogoff.md index 68dfc416fb..36c44b45d2 100644 --- a/docset/winserver2019-ps/rdmgmt/Invoke-RDUserLogoff.md +++ b/docset/winserver2019-ps/rdmgmt/Invoke-RDUserLogoff.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/invoke-rduserlogoff?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/invoke-rduserlogoff?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-RDUserLogoff --- diff --git a/docset/winserver2019-ps/rdmgmt/Move-RDVirtualDesktop.md b/docset/winserver2019-ps/rdmgmt/Move-RDVirtualDesktop.md index 2ae50c4a0b..3e6ac0e93b 100644 --- a/docset/winserver2019-ps/rdmgmt/Move-RDVirtualDesktop.md +++ b/docset/winserver2019-ps/rdmgmt/Move-RDVirtualDesktop.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/move-rdvirtualdesktop?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/move-rdvirtualdesktop?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-RDVirtualDesktop --- diff --git a/docset/winserver2019-ps/rdmgmt/New-RDCertificate.md b/docset/winserver2019-ps/rdmgmt/New-RDCertificate.md index 549f6ef31d..16d358d4c2 100644 --- a/docset/winserver2019-ps/rdmgmt/New-RDCertificate.md +++ b/docset/winserver2019-ps/rdmgmt/New-RDCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/new-rdcertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/new-rdcertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-RDCertificate --- diff --git a/docset/winserver2019-ps/rdmgmt/New-RDPersonalVirtualDesktopPatchSchedule.md b/docset/winserver2019-ps/rdmgmt/New-RDPersonalVirtualDesktopPatchSchedule.md index 38d7a9ef29..98c96cf7be 100644 --- a/docset/winserver2019-ps/rdmgmt/New-RDPersonalVirtualDesktopPatchSchedule.md +++ b/docset/winserver2019-ps/rdmgmt/New-RDPersonalVirtualDesktopPatchSchedule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/new-rdpersonalvirtualdesktoppatchschedule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/new-rdpersonalvirtualdesktoppatchschedule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-RDPersonalVirtualDesktopPatchSchedule --- diff --git a/docset/winserver2019-ps/rdmgmt/New-RDRemoteApp.md b/docset/winserver2019-ps/rdmgmt/New-RDRemoteApp.md index 76571eaa4f..a24d8b1be2 100644 --- a/docset/winserver2019-ps/rdmgmt/New-RDRemoteApp.md +++ b/docset/winserver2019-ps/rdmgmt/New-RDRemoteApp.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/new-rdremoteapp?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/new-rdremoteapp?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-RDRemoteApp --- diff --git a/docset/winserver2019-ps/rdmgmt/New-RDSessionCollection.md b/docset/winserver2019-ps/rdmgmt/New-RDSessionCollection.md index 3137100181..af3ad6a4d9 100644 --- a/docset/winserver2019-ps/rdmgmt/New-RDSessionCollection.md +++ b/docset/winserver2019-ps/rdmgmt/New-RDSessionCollection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/new-rdsessioncollection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/new-rdsessioncollection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-RDSessionCollection --- diff --git a/docset/winserver2019-ps/rdmgmt/New-RDSessionDeployment.md b/docset/winserver2019-ps/rdmgmt/New-RDSessionDeployment.md index 2a6737501e..cc9c4a971e 100644 --- a/docset/winserver2019-ps/rdmgmt/New-RDSessionDeployment.md +++ b/docset/winserver2019-ps/rdmgmt/New-RDSessionDeployment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/new-rdsessiondeployment?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/new-rdsessiondeployment?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-RDSessionDeployment --- diff --git a/docset/winserver2019-ps/rdmgmt/New-RDVirtualDesktopCollection.md b/docset/winserver2019-ps/rdmgmt/New-RDVirtualDesktopCollection.md index bea4ad0c45..7b2315ee5d 100644 --- a/docset/winserver2019-ps/rdmgmt/New-RDVirtualDesktopCollection.md +++ b/docset/winserver2019-ps/rdmgmt/New-RDVirtualDesktopCollection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/new-rdvirtualdesktopcollection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/new-rdvirtualdesktopcollection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-RDVirtualDesktopCollection --- diff --git a/docset/winserver2019-ps/rdmgmt/New-RDVirtualDesktopDeployment.md b/docset/winserver2019-ps/rdmgmt/New-RDVirtualDesktopDeployment.md index d6e030e657..63c114a63d 100644 --- a/docset/winserver2019-ps/rdmgmt/New-RDVirtualDesktopDeployment.md +++ b/docset/winserver2019-ps/rdmgmt/New-RDVirtualDesktopDeployment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/new-rdvirtualdesktopdeployment?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/new-rdvirtualdesktopdeployment?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-RDVirtualDesktopDeployment --- diff --git a/docset/winserver2019-ps/rdmgmt/Remove-RDDatabaseConnectionString.md b/docset/winserver2019-ps/rdmgmt/Remove-RDDatabaseConnectionString.md index 8616ff840d..75d9cd1016 100644 --- a/docset/winserver2019-ps/rdmgmt/Remove-RDDatabaseConnectionString.md +++ b/docset/winserver2019-ps/rdmgmt/Remove-RDDatabaseConnectionString.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/remove-rddatabaseconnectionstring?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/remove-rddatabaseconnectionstring?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-RDDatabaseConnectionString --- diff --git a/docset/winserver2019-ps/rdmgmt/Remove-RDPersonalSessionDesktopAssignment.md b/docset/winserver2019-ps/rdmgmt/Remove-RDPersonalSessionDesktopAssignment.md index 3a22890a6d..21e2870bec 100644 --- a/docset/winserver2019-ps/rdmgmt/Remove-RDPersonalSessionDesktopAssignment.md +++ b/docset/winserver2019-ps/rdmgmt/Remove-RDPersonalSessionDesktopAssignment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/remove-rdpersonalsessiondesktopassignment?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/remove-rdpersonalsessiondesktopassignment?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-RDPersonalSessionDesktopAssignment --- diff --git a/docset/winserver2019-ps/rdmgmt/Remove-RDPersonalVirtualDesktopAssignment.md b/docset/winserver2019-ps/rdmgmt/Remove-RDPersonalVirtualDesktopAssignment.md index 151b194e6c..66eb1ce6dd 100644 --- a/docset/winserver2019-ps/rdmgmt/Remove-RDPersonalVirtualDesktopAssignment.md +++ b/docset/winserver2019-ps/rdmgmt/Remove-RDPersonalVirtualDesktopAssignment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/remove-rdpersonalvirtualdesktopassignment?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/remove-rdpersonalvirtualdesktopassignment?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-RDPersonalVirtualDesktopAssignment --- diff --git a/docset/winserver2019-ps/rdmgmt/Remove-RDPersonalVirtualDesktopPatchSchedule.md b/docset/winserver2019-ps/rdmgmt/Remove-RDPersonalVirtualDesktopPatchSchedule.md index 9a40334e26..6061358302 100644 --- a/docset/winserver2019-ps/rdmgmt/Remove-RDPersonalVirtualDesktopPatchSchedule.md +++ b/docset/winserver2019-ps/rdmgmt/Remove-RDPersonalVirtualDesktopPatchSchedule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/remove-rdpersonalvirtualdesktoppatchschedule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/remove-rdpersonalvirtualdesktoppatchschedule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-RDPersonalVirtualDesktopPatchSchedule --- diff --git a/docset/winserver2019-ps/rdmgmt/Remove-RDRemoteApp.md b/docset/winserver2019-ps/rdmgmt/Remove-RDRemoteApp.md index 601d605191..74bc3a2a5e 100644 --- a/docset/winserver2019-ps/rdmgmt/Remove-RDRemoteApp.md +++ b/docset/winserver2019-ps/rdmgmt/Remove-RDRemoteApp.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/remove-rdremoteapp?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/remove-rdremoteapp?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-RDRemoteApp --- diff --git a/docset/winserver2019-ps/rdmgmt/Remove-RDServer.md b/docset/winserver2019-ps/rdmgmt/Remove-RDServer.md index 19e393d552..5d8a12c64c 100644 --- a/docset/winserver2019-ps/rdmgmt/Remove-RDServer.md +++ b/docset/winserver2019-ps/rdmgmt/Remove-RDServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/remove-rdserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/remove-rdserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-RDServer --- diff --git a/docset/winserver2019-ps/rdmgmt/Remove-RDSessionCollection.md b/docset/winserver2019-ps/rdmgmt/Remove-RDSessionCollection.md index 522a58d498..e012cc1bf2 100644 --- a/docset/winserver2019-ps/rdmgmt/Remove-RDSessionCollection.md +++ b/docset/winserver2019-ps/rdmgmt/Remove-RDSessionCollection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/remove-rdsessioncollection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/remove-rdsessioncollection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-RDSessionCollection --- diff --git a/docset/winserver2019-ps/rdmgmt/Remove-RDSessionHost.md b/docset/winserver2019-ps/rdmgmt/Remove-RDSessionHost.md index 5b6045d6ed..48a3e9ea78 100644 --- a/docset/winserver2019-ps/rdmgmt/Remove-RDSessionHost.md +++ b/docset/winserver2019-ps/rdmgmt/Remove-RDSessionHost.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/remove-rdsessionhost?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/remove-rdsessionhost?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-RDSessionHost --- diff --git a/docset/winserver2019-ps/rdmgmt/Remove-RDVirtualDesktopCollection.md b/docset/winserver2019-ps/rdmgmt/Remove-RDVirtualDesktopCollection.md index 852aa63007..52e66c8eac 100644 --- a/docset/winserver2019-ps/rdmgmt/Remove-RDVirtualDesktopCollection.md +++ b/docset/winserver2019-ps/rdmgmt/Remove-RDVirtualDesktopCollection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/remove-rdvirtualdesktopcollection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/remove-rdvirtualdesktopcollection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-RDVirtualDesktopCollection --- diff --git a/docset/winserver2019-ps/rdmgmt/Remove-RDVirtualDesktopFromCollection.md b/docset/winserver2019-ps/rdmgmt/Remove-RDVirtualDesktopFromCollection.md index a8b86a62eb..a776d963b7 100644 --- a/docset/winserver2019-ps/rdmgmt/Remove-RDVirtualDesktopFromCollection.md +++ b/docset/winserver2019-ps/rdmgmt/Remove-RDVirtualDesktopFromCollection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/remove-rdvirtualdesktopfromcollection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/remove-rdvirtualdesktopfromcollection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-RDVirtualDesktopFromCollection --- diff --git a/docset/winserver2019-ps/rdmgmt/Send-RDUserMessage.md b/docset/winserver2019-ps/rdmgmt/Send-RDUserMessage.md index d4a6d6914e..7cbfb0bd7f 100644 --- a/docset/winserver2019-ps/rdmgmt/Send-RDUserMessage.md +++ b/docset/winserver2019-ps/rdmgmt/Send-RDUserMessage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/send-rdusermessage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/send-rdusermessage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Send-RDUserMessage --- diff --git a/docset/winserver2019-ps/rdmgmt/Set-RDActiveManagementServer.md b/docset/winserver2019-ps/rdmgmt/Set-RDActiveManagementServer.md index 853f525b8e..1aeee304eb 100644 --- a/docset/winserver2019-ps/rdmgmt/Set-RDActiveManagementServer.md +++ b/docset/winserver2019-ps/rdmgmt/Set-RDActiveManagementServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdactivemanagementserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdactivemanagementserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDActiveManagementServer --- diff --git a/docset/winserver2019-ps/rdmgmt/Set-RDCertificate.md b/docset/winserver2019-ps/rdmgmt/Set-RDCertificate.md index b6c4089cee..c304d66acf 100644 --- a/docset/winserver2019-ps/rdmgmt/Set-RDCertificate.md +++ b/docset/winserver2019-ps/rdmgmt/Set-RDCertificate.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdcertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdcertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDCertificate --- diff --git a/docset/winserver2019-ps/rdmgmt/Set-RDClientAccessName.md b/docset/winserver2019-ps/rdmgmt/Set-RDClientAccessName.md index b63041b878..a608f63202 100644 --- a/docset/winserver2019-ps/rdmgmt/Set-RDClientAccessName.md +++ b/docset/winserver2019-ps/rdmgmt/Set-RDClientAccessName.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdclientaccessname?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdclientaccessname?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDClientAccessName --- diff --git a/docset/winserver2019-ps/rdmgmt/Set-RDConnectionBrokerHighAvailability.md b/docset/winserver2019-ps/rdmgmt/Set-RDConnectionBrokerHighAvailability.md index 1cb34a98f5..5ba177caf6 100644 --- a/docset/winserver2019-ps/rdmgmt/Set-RDConnectionBrokerHighAvailability.md +++ b/docset/winserver2019-ps/rdmgmt/Set-RDConnectionBrokerHighAvailability.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdconnectionbrokerhighavailability?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdconnectionbrokerhighavailability?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDConnectionBrokerHighAvailability --- diff --git a/docset/winserver2019-ps/rdmgmt/Set-RDDatabaseConnectionString.md b/docset/winserver2019-ps/rdmgmt/Set-RDDatabaseConnectionString.md index f7ba25ea14..a158f35ba3 100644 --- a/docset/winserver2019-ps/rdmgmt/Set-RDDatabaseConnectionString.md +++ b/docset/winserver2019-ps/rdmgmt/Set-RDDatabaseConnectionString.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rddatabaseconnectionstring?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rddatabaseconnectionstring?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDDatabaseConnectionString --- diff --git a/docset/winserver2019-ps/rdmgmt/Set-RDDeploymentGatewayConfiguration.md b/docset/winserver2019-ps/rdmgmt/Set-RDDeploymentGatewayConfiguration.md index 36043d3bd1..b4725988a7 100644 --- a/docset/winserver2019-ps/rdmgmt/Set-RDDeploymentGatewayConfiguration.md +++ b/docset/winserver2019-ps/rdmgmt/Set-RDDeploymentGatewayConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rddeploymentgatewayconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rddeploymentgatewayconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDDeploymentGatewayConfiguration --- diff --git a/docset/winserver2019-ps/rdmgmt/Set-RDFileTypeAssociation.md b/docset/winserver2019-ps/rdmgmt/Set-RDFileTypeAssociation.md index ae38ba75e5..f629cb9a5c 100644 --- a/docset/winserver2019-ps/rdmgmt/Set-RDFileTypeAssociation.md +++ b/docset/winserver2019-ps/rdmgmt/Set-RDFileTypeAssociation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdfiletypeassociation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdfiletypeassociation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDFileTypeAssociation --- diff --git a/docset/winserver2019-ps/rdmgmt/Set-RDLicenseConfiguration.md b/docset/winserver2019-ps/rdmgmt/Set-RDLicenseConfiguration.md index 4438159557..438653960c 100644 --- a/docset/winserver2019-ps/rdmgmt/Set-RDLicenseConfiguration.md +++ b/docset/winserver2019-ps/rdmgmt/Set-RDLicenseConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdlicenseconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdlicenseconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDLicenseConfiguration --- diff --git a/docset/winserver2019-ps/rdmgmt/Set-RDPersonalSessionDesktopAssignment.md b/docset/winserver2019-ps/rdmgmt/Set-RDPersonalSessionDesktopAssignment.md index 5f8edfa329..0c99859e14 100644 --- a/docset/winserver2019-ps/rdmgmt/Set-RDPersonalSessionDesktopAssignment.md +++ b/docset/winserver2019-ps/rdmgmt/Set-RDPersonalSessionDesktopAssignment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdpersonalsessiondesktopassignment?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdpersonalsessiondesktopassignment?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDPersonalSessionDesktopAssignment --- diff --git a/docset/winserver2019-ps/rdmgmt/Set-RDPersonalVirtualDesktopAssignment.md b/docset/winserver2019-ps/rdmgmt/Set-RDPersonalVirtualDesktopAssignment.md index 01fc0d7df6..5fa659937d 100644 --- a/docset/winserver2019-ps/rdmgmt/Set-RDPersonalVirtualDesktopAssignment.md +++ b/docset/winserver2019-ps/rdmgmt/Set-RDPersonalVirtualDesktopAssignment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdpersonalvirtualdesktopassignment?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdpersonalvirtualdesktopassignment?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDPersonalVirtualDesktopAssignment --- diff --git a/docset/winserver2019-ps/rdmgmt/Set-RDPersonalVirtualDesktopPatchSchedule.md b/docset/winserver2019-ps/rdmgmt/Set-RDPersonalVirtualDesktopPatchSchedule.md index bc1ca0399f..a695143fe1 100644 --- a/docset/winserver2019-ps/rdmgmt/Set-RDPersonalVirtualDesktopPatchSchedule.md +++ b/docset/winserver2019-ps/rdmgmt/Set-RDPersonalVirtualDesktopPatchSchedule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdpersonalvirtualdesktoppatchschedule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdpersonalvirtualdesktoppatchschedule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDPersonalVirtualDesktopPatchSchedule --- diff --git a/docset/winserver2019-ps/rdmgmt/Set-RDRemoteApp.md b/docset/winserver2019-ps/rdmgmt/Set-RDRemoteApp.md index 46cee01e21..9d6e9c4889 100644 --- a/docset/winserver2019-ps/rdmgmt/Set-RDRemoteApp.md +++ b/docset/winserver2019-ps/rdmgmt/Set-RDRemoteApp.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdremoteapp?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdremoteapp?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDRemoteApp --- diff --git a/docset/winserver2019-ps/rdmgmt/Set-RDRemoteDesktop.md b/docset/winserver2019-ps/rdmgmt/Set-RDRemoteDesktop.md index ae8080c163..09857a66e4 100644 --- a/docset/winserver2019-ps/rdmgmt/Set-RDRemoteDesktop.md +++ b/docset/winserver2019-ps/rdmgmt/Set-RDRemoteDesktop.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdremotedesktop?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdremotedesktop?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDRemoteDesktop --- diff --git a/docset/winserver2019-ps/rdmgmt/Set-RDSessionCollectionConfiguration.md b/docset/winserver2019-ps/rdmgmt/Set-RDSessionCollectionConfiguration.md index e9d2cdc593..cc29d9f9d4 100644 --- a/docset/winserver2019-ps/rdmgmt/Set-RDSessionCollectionConfiguration.md +++ b/docset/winserver2019-ps/rdmgmt/Set-RDSessionCollectionConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdsessioncollectionconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdsessioncollectionconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDSessionCollectionConfiguration --- diff --git a/docset/winserver2019-ps/rdmgmt/Set-RDSessionHost.md b/docset/winserver2019-ps/rdmgmt/Set-RDSessionHost.md index 0520cbc6a7..ef2594e74e 100644 --- a/docset/winserver2019-ps/rdmgmt/Set-RDSessionHost.md +++ b/docset/winserver2019-ps/rdmgmt/Set-RDSessionHost.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdsessionhost?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdsessionhost?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDSessionHost --- diff --git a/docset/winserver2019-ps/rdmgmt/Set-RDVirtualDesktopCollectionConfiguration.md b/docset/winserver2019-ps/rdmgmt/Set-RDVirtualDesktopCollectionConfiguration.md index 9fba16f4f2..0aeec26670 100644 --- a/docset/winserver2019-ps/rdmgmt/Set-RDVirtualDesktopCollectionConfiguration.md +++ b/docset/winserver2019-ps/rdmgmt/Set-RDVirtualDesktopCollectionConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdvirtualdesktopcollectionconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdvirtualdesktopcollectionconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDVirtualDesktopCollectionConfiguration --- diff --git a/docset/winserver2019-ps/rdmgmt/Set-RDVirtualDesktopConcurrency.md b/docset/winserver2019-ps/rdmgmt/Set-RDVirtualDesktopConcurrency.md index 5a099d6c4c..052471f414 100644 --- a/docset/winserver2019-ps/rdmgmt/Set-RDVirtualDesktopConcurrency.md +++ b/docset/winserver2019-ps/rdmgmt/Set-RDVirtualDesktopConcurrency.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdvirtualdesktopconcurrency?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdvirtualdesktopconcurrency?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDVirtualDesktopConcurrency --- diff --git a/docset/winserver2019-ps/rdmgmt/Set-RDVirtualDesktopIdleCount.md b/docset/winserver2019-ps/rdmgmt/Set-RDVirtualDesktopIdleCount.md index 36dac5fbb7..a1fce517ab 100644 --- a/docset/winserver2019-ps/rdmgmt/Set-RDVirtualDesktopIdleCount.md +++ b/docset/winserver2019-ps/rdmgmt/Set-RDVirtualDesktopIdleCount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdvirtualdesktopidlecount?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdvirtualdesktopidlecount?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDVirtualDesktopIdleCount --- diff --git a/docset/winserver2019-ps/rdmgmt/Set-RDVirtualDesktopTemplateExportPath.md b/docset/winserver2019-ps/rdmgmt/Set-RDVirtualDesktopTemplateExportPath.md index d17872fe51..b9aad3dbc2 100644 --- a/docset/winserver2019-ps/rdmgmt/Set-RDVirtualDesktopTemplateExportPath.md +++ b/docset/winserver2019-ps/rdmgmt/Set-RDVirtualDesktopTemplateExportPath.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdvirtualdesktoptemplateexportpath?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdvirtualdesktoptemplateexportpath?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDVirtualDesktopTemplateExportPath --- diff --git a/docset/winserver2019-ps/rdmgmt/Set-RDWorkspace.md b/docset/winserver2019-ps/rdmgmt/Set-RDWorkspace.md index 4178bd12cd..709f7660ab 100644 --- a/docset/winserver2019-ps/rdmgmt/Set-RDWorkspace.md +++ b/docset/winserver2019-ps/rdmgmt/Set-RDWorkspace.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdworkspace?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdworkspace?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDWorkspace --- diff --git a/docset/winserver2019-ps/rdmgmt/Stop-RDVirtualDesktopCollectionJob.md b/docset/winserver2019-ps/rdmgmt/Stop-RDVirtualDesktopCollectionJob.md index c526cfcfd8..8601169700 100644 --- a/docset/winserver2019-ps/rdmgmt/Stop-RDVirtualDesktopCollectionJob.md +++ b/docset/winserver2019-ps/rdmgmt/Stop-RDVirtualDesktopCollectionJob.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/stop-rdvirtualdesktopcollectionjob?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/stop-rdvirtualdesktopcollectionjob?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-RDVirtualDesktopCollectionJob --- diff --git a/docset/winserver2019-ps/rdmgmt/Test-RDOUAccess.md b/docset/winserver2019-ps/rdmgmt/Test-RDOUAccess.md index 2801cebcee..fa90418753 100644 --- a/docset/winserver2019-ps/rdmgmt/Test-RDOUAccess.md +++ b/docset/winserver2019-ps/rdmgmt/Test-RDOUAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/test-rdouaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/test-rdouaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-RDOUAccess --- diff --git a/docset/winserver2019-ps/rdmgmt/Test-RDVirtualDesktopADMachineAccountReuse.md b/docset/winserver2019-ps/rdmgmt/Test-RDVirtualDesktopADMachineAccountReuse.md index 14c9e710e5..bcb4be43cf 100644 --- a/docset/winserver2019-ps/rdmgmt/Test-RDVirtualDesktopADMachineAccountReuse.md +++ b/docset/winserver2019-ps/rdmgmt/Test-RDVirtualDesktopADMachineAccountReuse.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/test-rdvirtualdesktopadmachineaccountreuse?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/test-rdvirtualdesktopadmachineaccountreuse?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-RDVirtualDesktopADMachineAccountReuse --- diff --git a/docset/winserver2019-ps/rdmgmt/Update-RDVirtualDesktopCollection.md b/docset/winserver2019-ps/rdmgmt/Update-RDVirtualDesktopCollection.md index 9bd27c16e1..95808ce5b8 100644 --- a/docset/winserver2019-ps/rdmgmt/Update-RDVirtualDesktopCollection.md +++ b/docset/winserver2019-ps/rdmgmt/Update-RDVirtualDesktopCollection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/update-rdvirtualdesktopcollection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/update-rdvirtualdesktopcollection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-RDVirtualDesktopCollection --- diff --git a/docset/winserver2019-ps/remoteaccess/Add-BgpCustomRoute.md b/docset/winserver2019-ps/remoteaccess/Add-BgpCustomRoute.md index fdd7d6169a..a17f443ba9 100644 --- a/docset/winserver2019-ps/remoteaccess/Add-BgpCustomRoute.md +++ b/docset/winserver2019-ps/remoteaccess/Add-BgpCustomRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpCustomRoute_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-bgpcustomroute?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-bgpcustomroute?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-BgpCustomRoute --- diff --git a/docset/winserver2019-ps/remoteaccess/Add-BgpPeer.md b/docset/winserver2019-ps/remoteaccess/Add-BgpPeer.md index 68d2ac7dc5..1b279f0ea5 100644 --- a/docset/winserver2019-ps/remoteaccess/Add-BgpPeer.md +++ b/docset/winserver2019-ps/remoteaccess/Add-BgpPeer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpPeer_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-bgppeer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-bgppeer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-BgpPeer --- diff --git a/docset/winserver2019-ps/remoteaccess/Add-BgpRouteAggregate.md b/docset/winserver2019-ps/remoteaccess/Add-BgpRouteAggregate.md index 4c791aa56a..c4b5ef801c 100644 --- a/docset/winserver2019-ps/remoteaccess/Add-BgpRouteAggregate.md +++ b/docset/winserver2019-ps/remoteaccess/Add-BgpRouteAggregate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRouteAggregate_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-bgprouteaggregate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-bgprouteaggregate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-BgpRouteAggregate --- diff --git a/docset/winserver2019-ps/remoteaccess/Add-BgpRouter.md b/docset/winserver2019-ps/remoteaccess/Add-BgpRouter.md index f06f7473ed..25088235d4 100644 --- a/docset/winserver2019-ps/remoteaccess/Add-BgpRouter.md +++ b/docset/winserver2019-ps/remoteaccess/Add-BgpRouter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRouter_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-bgprouter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-bgprouter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-BgpRouter --- diff --git a/docset/winserver2019-ps/remoteaccess/Add-BgpRoutingPolicy.md b/docset/winserver2019-ps/remoteaccess/Add-BgpRoutingPolicy.md index 642a36d8d3..26c7a3f9db 100644 --- a/docset/winserver2019-ps/remoteaccess/Add-BgpRoutingPolicy.md +++ b/docset/winserver2019-ps/remoteaccess/Add-BgpRoutingPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRoutingPolicy_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-bgproutingpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-bgproutingpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-BgpRoutingPolicy --- diff --git a/docset/winserver2019-ps/remoteaccess/Add-BgpRoutingPolicyForPeer.md b/docset/winserver2019-ps/remoteaccess/Add-BgpRoutingPolicyForPeer.md index 04f4029b66..b0683403b0 100644 --- a/docset/winserver2019-ps/remoteaccess/Add-BgpRoutingPolicyForPeer.md +++ b/docset/winserver2019-ps/remoteaccess/Add-BgpRoutingPolicyForPeer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRoutingPolicyForPeer_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-bgproutingpolicyforpeer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-bgproutingpolicyforpeer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-BgpRoutingPolicyForPeer --- diff --git a/docset/winserver2019-ps/remoteaccess/Add-DAAppServer.md b/docset/winserver2019-ps/remoteaccess/Add-DAAppServer.md index 2ab6ecdde0..82b9e1418c 100644 --- a/docset/winserver2019-ps/remoteaccess/Add-DAAppServer.md +++ b/docset/winserver2019-ps/remoteaccess/Add-DAAppServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAAppServer_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-daappserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-daappserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DAAppServer --- diff --git a/docset/winserver2019-ps/remoteaccess/Add-DAClient.md b/docset/winserver2019-ps/remoteaccess/Add-DAClient.md index bbb88e3d70..fdfcf275ab 100644 --- a/docset/winserver2019-ps/remoteaccess/Add-DAClient.md +++ b/docset/winserver2019-ps/remoteaccess/Add-DAClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAClient_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-daclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-daclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DAClient --- diff --git a/docset/winserver2019-ps/remoteaccess/Add-DAClientDnsConfiguration.md b/docset/winserver2019-ps/remoteaccess/Add-DAClientDnsConfiguration.md index 086f89a455..730a11f29b 100644 --- a/docset/winserver2019-ps/remoteaccess/Add-DAClientDnsConfiguration.md +++ b/docset/winserver2019-ps/remoteaccess/Add-DAClientDnsConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAClientDNSConfiguration_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-daclientdnsconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-daclientdnsconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DAClientDnsConfiguration --- diff --git a/docset/winserver2019-ps/remoteaccess/Add-DAEntryPoint.md b/docset/winserver2019-ps/remoteaccess/Add-DAEntryPoint.md index becc61a6ec..55eea17475 100644 --- a/docset/winserver2019-ps/remoteaccess/Add-DAEntryPoint.md +++ b/docset/winserver2019-ps/remoteaccess/Add-DAEntryPoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAEntryPoint_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-daentrypoint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-daentrypoint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DAEntryPoint --- diff --git a/docset/winserver2019-ps/remoteaccess/Add-DAMgmtServer.md b/docset/winserver2019-ps/remoteaccess/Add-DAMgmtServer.md index 9bb8061159..e526c501d1 100644 --- a/docset/winserver2019-ps/remoteaccess/Add-DAMgmtServer.md +++ b/docset/winserver2019-ps/remoteaccess/Add-DAMgmtServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAMgmtServer_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-damgmtserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-damgmtserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DAMgmtServer --- diff --git a/docset/winserver2019-ps/remoteaccess/Add-RemoteAccessIpFilter.md b/docset/winserver2019-ps/remoteaccess/Add-RemoteAccessIpFilter.md index cb1e493e02..01922184b3 100644 --- a/docset/winserver2019-ps/remoteaccess/Add-RemoteAccessIpFilter.md +++ b/docset/winserver2019-ps/remoteaccess/Add-RemoteAccessIpFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_IPFilter_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-remoteaccessipfilter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-remoteaccessipfilter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-RemoteAccessIpFilter --- diff --git a/docset/winserver2019-ps/remoteaccess/Add-RemoteAccessLoadBalancerNode.md b/docset/winserver2019-ps/remoteaccess/Add-RemoteAccessLoadBalancerNode.md index cc598d35c9..3b21c2e11a 100644 --- a/docset/winserver2019-ps/remoteaccess/Add-RemoteAccessLoadBalancerNode.md +++ b/docset/winserver2019-ps/remoteaccess/Add-RemoteAccessLoadBalancerNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessLoadBalancerNode_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-remoteaccessloadbalancernode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-remoteaccessloadbalancernode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-RemoteAccessLoadBalancerNode --- diff --git a/docset/winserver2019-ps/remoteaccess/Add-RemoteAccessRadius.md b/docset/winserver2019-ps/remoteaccess/Add-RemoteAccessRadius.md index bf46e0f56d..92f9e10b5a 100644 --- a/docset/winserver2019-ps/remoteaccess/Add-RemoteAccessRadius.md +++ b/docset/winserver2019-ps/remoteaccess/Add-RemoteAccessRadius.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessRADIUS_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-remoteaccessradius?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-remoteaccessradius?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-RemoteAccessRadius --- diff --git a/docset/winserver2019-ps/remoteaccess/Add-VpnIPAddressRange.md b/docset/winserver2019-ps/remoteaccess/Add-VpnIPAddressRange.md index c587f6f9be..9e44ee9e85 100644 --- a/docset/winserver2019-ps/remoteaccess/Add-VpnIPAddressRange.md +++ b/docset/winserver2019-ps/remoteaccess/Add-VpnIPAddressRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VPNIPAddressRange_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-vpnipaddressrange?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-vpnipaddressrange?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VpnIPAddressRange --- diff --git a/docset/winserver2019-ps/remoteaccess/Add-VpnS2SInterface.md b/docset/winserver2019-ps/remoteaccess/Add-VpnS2SInterface.md index e21efb4e53..3a44f51ae9 100644 --- a/docset/winserver2019-ps/remoteaccess/Add-VpnS2SInterface.md +++ b/docset/winserver2019-ps/remoteaccess/Add-VpnS2SInterface.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnS2SInterface_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-vpns2sinterface?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-vpns2sinterface?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VpnS2SInterface --- diff --git a/docset/winserver2019-ps/remoteaccess/Add-VpnSstpProxyRule.md b/docset/winserver2019-ps/remoteaccess/Add-VpnSstpProxyRule.md index fad0888c13..a3d539096f 100644 --- a/docset/winserver2019-ps/remoteaccess/Add-VpnSstpProxyRule.md +++ b/docset/winserver2019-ps/remoteaccess/Add-VpnSstpProxyRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnSstpProxyRule_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-vpnsstpproxyrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-vpnsstpproxyrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VpnSstpProxyRule --- diff --git a/docset/winserver2019-ps/remoteaccess/Clear-BgpRouteFlapDampening.md b/docset/winserver2019-ps/remoteaccess/Clear-BgpRouteFlapDampening.md index db547e8df1..82a02ce5ce 100644 --- a/docset/winserver2019-ps/remoteaccess/Clear-BgpRouteFlapDampening.md +++ b/docset/winserver2019-ps/remoteaccess/Clear-BgpRouteFlapDampening.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRouteFlapDampening_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/clear-bgprouteflapdampening?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/clear-bgprouteflapdampening?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-BgpRouteFlapDampening --- diff --git a/docset/winserver2019-ps/remoteaccess/Clear-RemoteAccessInboxAccountingStore.md b/docset/winserver2019-ps/remoteaccess/Clear-RemoteAccessInboxAccountingStore.md index 708226fb4c..d3266de8f3 100644 --- a/docset/winserver2019-ps/remoteaccess/Clear-RemoteAccessInboxAccountingStore.md +++ b/docset/winserver2019-ps/remoteaccess/Clear-RemoteAccessInboxAccountingStore.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessInboxAccountingStore_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/clear-remoteaccessinboxaccountingstore?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/clear-remoteaccessinboxaccountingstore?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-RemoteAccessInboxAccountingStore --- diff --git a/docset/winserver2019-ps/remoteaccess/Clear-VpnS2SInterfaceStatistics.md b/docset/winserver2019-ps/remoteaccess/Clear-VpnS2SInterfaceStatistics.md index b83c857ddc..acb8ddfbe9 100644 --- a/docset/winserver2019-ps/remoteaccess/Clear-VpnS2SInterfaceStatistics.md +++ b/docset/winserver2019-ps/remoteaccess/Clear-VpnS2SInterfaceStatistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnS2SInterfaceStatistics_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/clear-vpns2sinterfacestatistics?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/clear-vpns2sinterfacestatistics?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-VpnS2SInterfaceStatistics --- diff --git a/docset/winserver2019-ps/remoteaccess/Connect-VpnS2SInterface.md b/docset/winserver2019-ps/remoteaccess/Connect-VpnS2SInterface.md index 92739621f3..59bfe2d7b7 100644 --- a/docset/winserver2019-ps/remoteaccess/Connect-VpnS2SInterface.md +++ b/docset/winserver2019-ps/remoteaccess/Connect-VpnS2SInterface.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnS2SInterface_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/connect-vpns2sinterface?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/connect-vpns2sinterface?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Connect-VpnS2SInterface --- diff --git a/docset/winserver2019-ps/remoteaccess/Disable-BgpRouteFlapDampening.md b/docset/winserver2019-ps/remoteaccess/Disable-BgpRouteFlapDampening.md index 4b2a0dff61..8c891518be 100644 --- a/docset/winserver2019-ps/remoteaccess/Disable-BgpRouteFlapDampening.md +++ b/docset/winserver2019-ps/remoteaccess/Disable-BgpRouteFlapDampening.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRouteFlapDampening_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/disable-bgprouteflapdampening?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/disable-bgprouteflapdampening?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-BgpRouteFlapDampening --- diff --git a/docset/winserver2019-ps/remoteaccess/Disable-DAMultiSite.md b/docset/winserver2019-ps/remoteaccess/Disable-DAMultiSite.md index fe49e3f1bb..97de35bab7 100644 --- a/docset/winserver2019-ps/remoteaccess/Disable-DAMultiSite.md +++ b/docset/winserver2019-ps/remoteaccess/Disable-DAMultiSite.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAMultiSite_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/disable-damultisite?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/disable-damultisite?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-DAMultiSite --- diff --git a/docset/winserver2019-ps/remoteaccess/Disable-DAOtpAuthentication.md b/docset/winserver2019-ps/remoteaccess/Disable-DAOtpAuthentication.md index 0d17e6d4c6..2741937758 100644 --- a/docset/winserver2019-ps/remoteaccess/Disable-DAOtpAuthentication.md +++ b/docset/winserver2019-ps/remoteaccess/Disable-DAOtpAuthentication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAOtpAuthentication_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/disable-daotpauthentication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/disable-daotpauthentication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-DAOtpAuthentication --- diff --git a/docset/winserver2019-ps/remoteaccess/Disable-RemoteAccessRoutingDomain.md b/docset/winserver2019-ps/remoteaccess/Disable-RemoteAccessRoutingDomain.md index a8a60189eb..1db8097ef7 100644 --- a/docset/winserver2019-ps/remoteaccess/Disable-RemoteAccessRoutingDomain.md +++ b/docset/winserver2019-ps/remoteaccess/Disable-RemoteAccessRoutingDomain.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessRoutingDomain_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/disable-remoteaccessroutingdomain?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/disable-remoteaccessroutingdomain?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-RemoteAccessRoutingDomain --- diff --git a/docset/winserver2019-ps/remoteaccess/Disconnect-VpnS2SInterface.md b/docset/winserver2019-ps/remoteaccess/Disconnect-VpnS2SInterface.md index b46d972914..20b811a90d 100644 --- a/docset/winserver2019-ps/remoteaccess/Disconnect-VpnS2SInterface.md +++ b/docset/winserver2019-ps/remoteaccess/Disconnect-VpnS2SInterface.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnS2SInterface_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/disconnect-vpns2sinterface?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/disconnect-vpns2sinterface?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disconnect-VpnS2SInterface --- diff --git a/docset/winserver2019-ps/remoteaccess/Disconnect-VpnUser.md b/docset/winserver2019-ps/remoteaccess/Disconnect-VpnUser.md index cefe5cea16..3010a467fc 100644 --- a/docset/winserver2019-ps/remoteaccess/Disconnect-VpnUser.md +++ b/docset/winserver2019-ps/remoteaccess/Disconnect-VpnUser.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VPNUser_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/disconnect-vpnuser?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/disconnect-vpnuser?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disconnect-VpnUser --- diff --git a/docset/winserver2019-ps/remoteaccess/Enable-BgpRouteFlapDampening.md b/docset/winserver2019-ps/remoteaccess/Enable-BgpRouteFlapDampening.md index 3e54b94f1f..347afdf1d8 100644 --- a/docset/winserver2019-ps/remoteaccess/Enable-BgpRouteFlapDampening.md +++ b/docset/winserver2019-ps/remoteaccess/Enable-BgpRouteFlapDampening.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRouteFlapDampening_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/enable-bgprouteflapdampening?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/enable-bgprouteflapdampening?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-BgpRouteFlapDampening --- diff --git a/docset/winserver2019-ps/remoteaccess/Enable-DAMultiSite.md b/docset/winserver2019-ps/remoteaccess/Enable-DAMultiSite.md index 1774faae48..241ac10806 100644 --- a/docset/winserver2019-ps/remoteaccess/Enable-DAMultiSite.md +++ b/docset/winserver2019-ps/remoteaccess/Enable-DAMultiSite.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAMultiSite_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/enable-damultisite?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/enable-damultisite?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-DAMultiSite --- diff --git a/docset/winserver2019-ps/remoteaccess/Enable-DAOtpAuthentication.md b/docset/winserver2019-ps/remoteaccess/Enable-DAOtpAuthentication.md index 2d7bac4ae4..7fdedae6ef 100644 --- a/docset/winserver2019-ps/remoteaccess/Enable-DAOtpAuthentication.md +++ b/docset/winserver2019-ps/remoteaccess/Enable-DAOtpAuthentication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAOtpAuthentication_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/enable-daotpauthentication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/enable-daotpauthentication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-DAOtpAuthentication --- diff --git a/docset/winserver2019-ps/remoteaccess/Enable-RemoteAccessRoutingDomain.md b/docset/winserver2019-ps/remoteaccess/Enable-RemoteAccessRoutingDomain.md index 70feb11e0e..5d631fe03b 100644 --- a/docset/winserver2019-ps/remoteaccess/Enable-RemoteAccessRoutingDomain.md +++ b/docset/winserver2019-ps/remoteaccess/Enable-RemoteAccessRoutingDomain.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessRoutingDomain_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/enable-remoteaccessroutingdomain?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/enable-remoteaccessroutingdomain?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-RemoteAccessRoutingDomain --- diff --git a/docset/winserver2019-ps/remoteaccess/Get-BgpCustomRoute.md b/docset/winserver2019-ps/remoteaccess/Get-BgpCustomRoute.md index 7c054dc8dd..f5958bd3f7 100644 --- a/docset/winserver2019-ps/remoteaccess/Get-BgpCustomRoute.md +++ b/docset/winserver2019-ps/remoteaccess/Get-BgpCustomRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpCustomRoute_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-bgpcustomroute?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-bgpcustomroute?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BgpCustomRoute --- diff --git a/docset/winserver2019-ps/remoteaccess/Get-BgpPeer.md b/docset/winserver2019-ps/remoteaccess/Get-BgpPeer.md index 9b6af7ef1b..677b27c6f7 100644 --- a/docset/winserver2019-ps/remoteaccess/Get-BgpPeer.md +++ b/docset/winserver2019-ps/remoteaccess/Get-BgpPeer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpPeer_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-bgppeer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-bgppeer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BgpPeer --- diff --git a/docset/winserver2019-ps/remoteaccess/Get-BgpRouteAggregate.md b/docset/winserver2019-ps/remoteaccess/Get-BgpRouteAggregate.md index 976aa77c6f..378256a642 100644 --- a/docset/winserver2019-ps/remoteaccess/Get-BgpRouteAggregate.md +++ b/docset/winserver2019-ps/remoteaccess/Get-BgpRouteAggregate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRouteAggregate_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-bgprouteaggregate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-bgprouteaggregate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BgpRouteAggregate --- diff --git a/docset/winserver2019-ps/remoteaccess/Get-BgpRouteFlapDampening.md b/docset/winserver2019-ps/remoteaccess/Get-BgpRouteFlapDampening.md index 0e87ef87f0..9fc262fef3 100644 --- a/docset/winserver2019-ps/remoteaccess/Get-BgpRouteFlapDampening.md +++ b/docset/winserver2019-ps/remoteaccess/Get-BgpRouteFlapDampening.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRouteFlapDampening_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-bgprouteflapdampening?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-bgprouteflapdampening?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BgpRouteFlapDampening --- diff --git a/docset/winserver2019-ps/remoteaccess/Get-BgpRouteInformation.md b/docset/winserver2019-ps/remoteaccess/Get-BgpRouteInformation.md index d4b90e4228..4cd1fc0925 100644 --- a/docset/winserver2019-ps/remoteaccess/Get-BgpRouteInformation.md +++ b/docset/winserver2019-ps/remoteaccess/Get-BgpRouteInformation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRoute_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-bgprouteinformation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-bgprouteinformation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BgpRouteInformation --- diff --git a/docset/winserver2019-ps/remoteaccess/Get-BgpRouter.md b/docset/winserver2019-ps/remoteaccess/Get-BgpRouter.md index 19fe0f1e0e..754e060834 100644 --- a/docset/winserver2019-ps/remoteaccess/Get-BgpRouter.md +++ b/docset/winserver2019-ps/remoteaccess/Get-BgpRouter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRouter_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-bgprouter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-bgprouter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BgpRouter --- diff --git a/docset/winserver2019-ps/remoteaccess/Get-BgpRoutingPolicy.md b/docset/winserver2019-ps/remoteaccess/Get-BgpRoutingPolicy.md index a5b5dfcd0d..f2056d1301 100644 --- a/docset/winserver2019-ps/remoteaccess/Get-BgpRoutingPolicy.md +++ b/docset/winserver2019-ps/remoteaccess/Get-BgpRoutingPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRoutingPolicy_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-bgproutingpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-bgproutingpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BgpRoutingPolicy --- diff --git a/docset/winserver2019-ps/remoteaccess/Get-BgpStatistics.md b/docset/winserver2019-ps/remoteaccess/Get-BgpStatistics.md index 2b11e15275..b3a697b598 100644 --- a/docset/winserver2019-ps/remoteaccess/Get-BgpStatistics.md +++ b/docset/winserver2019-ps/remoteaccess/Get-BgpStatistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpStatistics_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-bgpstatistics?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-bgpstatistics?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BgpStatistics --- diff --git a/docset/winserver2019-ps/remoteaccess/Get-DAAppServer.md b/docset/winserver2019-ps/remoteaccess/Get-DAAppServer.md index 8fad09ebf1..baa5a3d700 100644 --- a/docset/winserver2019-ps/remoteaccess/Get-DAAppServer.md +++ b/docset/winserver2019-ps/remoteaccess/Get-DAAppServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAAppServer_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-daappserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-daappserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DAAppServer --- diff --git a/docset/winserver2019-ps/remoteaccess/Get-DAClient.md b/docset/winserver2019-ps/remoteaccess/Get-DAClient.md index 69eb608052..b9c4c1ff1a 100644 --- a/docset/winserver2019-ps/remoteaccess/Get-DAClient.md +++ b/docset/winserver2019-ps/remoteaccess/Get-DAClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAClient_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-daclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-daclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DAClient --- diff --git a/docset/winserver2019-ps/remoteaccess/Get-DAClientDnsConfiguration.md b/docset/winserver2019-ps/remoteaccess/Get-DAClientDnsConfiguration.md index 83aa50b466..362e81b34c 100644 --- a/docset/winserver2019-ps/remoteaccess/Get-DAClientDnsConfiguration.md +++ b/docset/winserver2019-ps/remoteaccess/Get-DAClientDnsConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAClientDNSConfiguration_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-daclientdnsconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-daclientdnsconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DAClientDnsConfiguration --- diff --git a/docset/winserver2019-ps/remoteaccess/Get-DAEntryPoint.md b/docset/winserver2019-ps/remoteaccess/Get-DAEntryPoint.md index 1f95714e99..e92082cb09 100644 --- a/docset/winserver2019-ps/remoteaccess/Get-DAEntryPoint.md +++ b/docset/winserver2019-ps/remoteaccess/Get-DAEntryPoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAEntryPoint_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-daentrypoint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-daentrypoint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DAEntryPoint --- diff --git a/docset/winserver2019-ps/remoteaccess/Get-DAEntryPointDC.md b/docset/winserver2019-ps/remoteaccess/Get-DAEntryPointDC.md index acc98671d8..efc3c2e7ed 100644 --- a/docset/winserver2019-ps/remoteaccess/Get-DAEntryPointDC.md +++ b/docset/winserver2019-ps/remoteaccess/Get-DAEntryPointDC.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAEntryPointDC_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-daentrypointdc?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-daentrypointdc?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DAEntryPointDC --- diff --git a/docset/winserver2019-ps/remoteaccess/Get-DAMgmtServer.md b/docset/winserver2019-ps/remoteaccess/Get-DAMgmtServer.md index 9b6447e8ae..c385ac79b8 100644 --- a/docset/winserver2019-ps/remoteaccess/Get-DAMgmtServer.md +++ b/docset/winserver2019-ps/remoteaccess/Get-DAMgmtServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAMgmtServer_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-damgmtserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-damgmtserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DAMgmtServer --- diff --git a/docset/winserver2019-ps/remoteaccess/Get-DAMultiSite.md b/docset/winserver2019-ps/remoteaccess/Get-DAMultiSite.md index 03b0ef9c1b..d1e0aca37c 100644 --- a/docset/winserver2019-ps/remoteaccess/Get-DAMultiSite.md +++ b/docset/winserver2019-ps/remoteaccess/Get-DAMultiSite.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAMultiSite_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-damultisite?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-damultisite?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DAMultiSite --- diff --git a/docset/winserver2019-ps/remoteaccess/Get-DANetworkLocationServer.md b/docset/winserver2019-ps/remoteaccess/Get-DANetworkLocationServer.md index dc3198d887..f0e620223c 100644 --- a/docset/winserver2019-ps/remoteaccess/Get-DANetworkLocationServer.md +++ b/docset/winserver2019-ps/remoteaccess/Get-DANetworkLocationServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DANetworkLocationServer_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-danetworklocationserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-danetworklocationserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DANetworkLocationServer --- diff --git a/docset/winserver2019-ps/remoteaccess/Get-DAOtpAuthentication.md b/docset/winserver2019-ps/remoteaccess/Get-DAOtpAuthentication.md index 5e567a035e..0b12398714 100644 --- a/docset/winserver2019-ps/remoteaccess/Get-DAOtpAuthentication.md +++ b/docset/winserver2019-ps/remoteaccess/Get-DAOtpAuthentication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAOtpAuthentication_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-daotpauthentication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-daotpauthentication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DAOtpAuthentication --- diff --git a/docset/winserver2019-ps/remoteaccess/Get-DAServer.md b/docset/winserver2019-ps/remoteaccess/Get-DAServer.md index 712d589a76..f90bb92012 100644 --- a/docset/winserver2019-ps/remoteaccess/Get-DAServer.md +++ b/docset/winserver2019-ps/remoteaccess/Get-DAServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAServer_v2.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-daserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-daserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DAServer --- diff --git a/docset/winserver2019-ps/remoteaccess/Get-RemoteAccess.md b/docset/winserver2019-ps/remoteaccess/Get-RemoteAccess.md index 1c43c1ca8a..edf7d4f5e4 100644 --- a/docset/winserver2019-ps/remoteaccess/Get-RemoteAccess.md +++ b/docset/winserver2019-ps/remoteaccess/Get-RemoteAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccess_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-remoteaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-remoteaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RemoteAccess --- diff --git a/docset/winserver2019-ps/remoteaccess/Get-RemoteAccessAccounting.md b/docset/winserver2019-ps/remoteaccess/Get-RemoteAccessAccounting.md index c70cbf5ff2..2896adcf27 100644 --- a/docset/winserver2019-ps/remoteaccess/Get-RemoteAccessAccounting.md +++ b/docset/winserver2019-ps/remoteaccess/Get-RemoteAccessAccounting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessAccounting_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-remoteaccessaccounting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-remoteaccessaccounting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RemoteAccessAccounting --- diff --git a/docset/winserver2019-ps/remoteaccess/Get-RemoteAccessConfiguration.md b/docset/winserver2019-ps/remoteaccess/Get-RemoteAccessConfiguration.md index 83d444b106..7cdc0c392b 100644 --- a/docset/winserver2019-ps/remoteaccess/Get-RemoteAccessConfiguration.md +++ b/docset/winserver2019-ps/remoteaccess/Get-RemoteAccessConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessConfiguration_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-remoteaccessconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-remoteaccessconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RemoteAccessConfiguration --- diff --git a/docset/winserver2019-ps/remoteaccess/Get-RemoteAccessConnectionStatistics.md b/docset/winserver2019-ps/remoteaccess/Get-RemoteAccessConnectionStatistics.md index 5d2e76e636..c95323ecff 100644 --- a/docset/winserver2019-ps/remoteaccess/Get-RemoteAccessConnectionStatistics.md +++ b/docset/winserver2019-ps/remoteaccess/Get-RemoteAccessConnectionStatistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessConnectionStatistics_v2.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-remoteaccessconnectionstatistics?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-remoteaccessconnectionstatistics?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RemoteAccessConnectionStatistics --- diff --git a/docset/winserver2019-ps/remoteaccess/Get-RemoteAccessConnectionStatisticsSummary.md b/docset/winserver2019-ps/remoteaccess/Get-RemoteAccessConnectionStatisticsSummary.md index c004b59f7e..a635f2ee32 100644 --- a/docset/winserver2019-ps/remoteaccess/Get-RemoteAccessConnectionStatisticsSummary.md +++ b/docset/winserver2019-ps/remoteaccess/Get-RemoteAccessConnectionStatisticsSummary.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessConnectionStatisticsSummary_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-remoteaccessconnectionstatisticssummary?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-remoteaccessconnectionstatisticssummary?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RemoteAccessConnectionStatisticsSummary --- diff --git a/docset/winserver2019-ps/remoteaccess/Get-RemoteAccessHealth.md b/docset/winserver2019-ps/remoteaccess/Get-RemoteAccessHealth.md index 909b70bcfc..cfcab64440 100644 --- a/docset/winserver2019-ps/remoteaccess/Get-RemoteAccessHealth.md +++ b/docset/winserver2019-ps/remoteaccess/Get-RemoteAccessHealth.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessHealth_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-remoteaccesshealth?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-remoteaccesshealth?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RemoteAccessHealth --- diff --git a/docset/winserver2019-ps/remoteaccess/Get-RemoteAccessIpFilter.md b/docset/winserver2019-ps/remoteaccess/Get-RemoteAccessIpFilter.md index 528184a721..81a789b112 100644 --- a/docset/winserver2019-ps/remoteaccess/Get-RemoteAccessIpFilter.md +++ b/docset/winserver2019-ps/remoteaccess/Get-RemoteAccessIpFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_IPFilter_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-remoteaccessipfilter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-remoteaccessipfilter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RemoteAccessIpFilter --- diff --git a/docset/winserver2019-ps/remoteaccess/Get-RemoteAccessLoadBalancer.md b/docset/winserver2019-ps/remoteaccess/Get-RemoteAccessLoadBalancer.md index 5acab25446..e8fb8d672b 100644 --- a/docset/winserver2019-ps/remoteaccess/Get-RemoteAccessLoadBalancer.md +++ b/docset/winserver2019-ps/remoteaccess/Get-RemoteAccessLoadBalancer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessLoadBalancer_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-remoteaccessloadbalancer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-remoteaccessloadbalancer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RemoteAccessLoadBalancer --- diff --git a/docset/winserver2019-ps/remoteaccess/Get-RemoteAccessRadius.md b/docset/winserver2019-ps/remoteaccess/Get-RemoteAccessRadius.md index fb8f326057..f433613fe0 100644 --- a/docset/winserver2019-ps/remoteaccess/Get-RemoteAccessRadius.md +++ b/docset/winserver2019-ps/remoteaccess/Get-RemoteAccessRadius.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessRADIUS_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-remoteaccessradius?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-remoteaccessradius?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RemoteAccessRadius --- diff --git a/docset/winserver2019-ps/remoteaccess/Get-RemoteAccessRoutingDomain.md b/docset/winserver2019-ps/remoteaccess/Get-RemoteAccessRoutingDomain.md index 0a887789a1..68678dfad5 100644 --- a/docset/winserver2019-ps/remoteaccess/Get-RemoteAccessRoutingDomain.md +++ b/docset/winserver2019-ps/remoteaccess/Get-RemoteAccessRoutingDomain.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessRoutingDomain_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-remoteaccessroutingdomain?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-remoteaccessroutingdomain?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RemoteAccessRoutingDomain --- diff --git a/docset/winserver2019-ps/remoteaccess/Get-RemoteAccessUserActivity.md b/docset/winserver2019-ps/remoteaccess/Get-RemoteAccessUserActivity.md index 45e365edfe..517be39ede 100644 --- a/docset/winserver2019-ps/remoteaccess/Get-RemoteAccessUserActivity.md +++ b/docset/winserver2019-ps/remoteaccess/Get-RemoteAccessUserActivity.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessUserActivity_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-remoteaccessuseractivity?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-remoteaccessuseractivity?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RemoteAccessUserActivity --- diff --git a/docset/winserver2019-ps/remoteaccess/Get-RoutingProtocolPreference.md b/docset/winserver2019-ps/remoteaccess/Get-RoutingProtocolPreference.md index d7a4caa350..f6f7a540ca 100644 --- a/docset/winserver2019-ps/remoteaccess/Get-RoutingProtocolPreference.md +++ b/docset/winserver2019-ps/remoteaccess/Get-RoutingProtocolPreference.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RoutingProtocolPreference_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-routingprotocolpreference?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-routingprotocolpreference?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RoutingProtocolPreference --- diff --git a/docset/winserver2019-ps/remoteaccess/Get-VpnAuthProtocol.md b/docset/winserver2019-ps/remoteaccess/Get-VpnAuthProtocol.md index f684e28345..24b3316b5b 100644 --- a/docset/winserver2019-ps/remoteaccess/Get-VpnAuthProtocol.md +++ b/docset/winserver2019-ps/remoteaccess/Get-VpnAuthProtocol.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnAuthProtocol_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-vpnauthprotocol?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-vpnauthprotocol?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VpnAuthProtocol --- diff --git a/docset/winserver2019-ps/remoteaccess/Get-VpnS2SInterface.md b/docset/winserver2019-ps/remoteaccess/Get-VpnS2SInterface.md index 526df31209..e033587137 100644 --- a/docset/winserver2019-ps/remoteaccess/Get-VpnS2SInterface.md +++ b/docset/winserver2019-ps/remoteaccess/Get-VpnS2SInterface.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnS2SInterface_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-vpns2sinterface?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-vpns2sinterface?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VpnS2SInterface --- diff --git a/docset/winserver2019-ps/remoteaccess/Get-VpnS2SInterfaceStatistics.md b/docset/winserver2019-ps/remoteaccess/Get-VpnS2SInterfaceStatistics.md index bea646b4f5..ad066f9c6c 100644 --- a/docset/winserver2019-ps/remoteaccess/Get-VpnS2SInterfaceStatistics.md +++ b/docset/winserver2019-ps/remoteaccess/Get-VpnS2SInterfaceStatistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnS2SInterfaceStatistics_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-vpns2sinterfacestatistics?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-vpns2sinterfacestatistics?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VpnS2SInterfaceStatistics --- diff --git a/docset/winserver2019-ps/remoteaccess/Get-VpnServerConfiguration.md b/docset/winserver2019-ps/remoteaccess/Get-VpnServerConfiguration.md index 9b6af72d7c..54c47e5aa8 100644 --- a/docset/winserver2019-ps/remoteaccess/Get-VpnServerConfiguration.md +++ b/docset/winserver2019-ps/remoteaccess/Get-VpnServerConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnServerIPsecConfiguration_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-vpnserverconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-vpnserverconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VpnServerConfiguration --- diff --git a/docset/winserver2019-ps/remoteaccess/Get-VpnSstpProxyRule.md b/docset/winserver2019-ps/remoteaccess/Get-VpnSstpProxyRule.md index 16ea1b3bc6..2902bc6877 100644 --- a/docset/winserver2019-ps/remoteaccess/Get-VpnSstpProxyRule.md +++ b/docset/winserver2019-ps/remoteaccess/Get-VpnSstpProxyRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnSstpProxyRule_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-vpnsstpproxyrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-vpnsstpproxyrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VpnSstpProxyRule --- diff --git a/docset/winserver2019-ps/remoteaccess/Install-RemoteAccess.md b/docset/winserver2019-ps/remoteaccess/Install-RemoteAccess.md index dea9c8e52b..cc0761d740 100644 --- a/docset/winserver2019-ps/remoteaccess/Install-RemoteAccess.md +++ b/docset/winserver2019-ps/remoteaccess/Install-RemoteAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccess_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/install-remoteaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/install-remoteaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-RemoteAccess --- diff --git a/docset/winserver2019-ps/remoteaccess/New-VpnSstpProxyRule.md b/docset/winserver2019-ps/remoteaccess/New-VpnSstpProxyRule.md index 11a83e7bfd..c54b712b94 100644 --- a/docset/winserver2019-ps/remoteaccess/New-VpnSstpProxyRule.md +++ b/docset/winserver2019-ps/remoteaccess/New-VpnSstpProxyRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnSstpProxyRule_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/new-vpnsstpproxyrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/new-vpnsstpproxyrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VpnSstpProxyRule --- diff --git a/docset/winserver2019-ps/remoteaccess/New-VpnTrafficSelector.md b/docset/winserver2019-ps/remoteaccess/New-VpnTrafficSelector.md index 36bd75e7a0..5412085828 100644 --- a/docset/winserver2019-ps/remoteaccess/New-VpnTrafficSelector.md +++ b/docset/winserver2019-ps/remoteaccess/New-VpnTrafficSelector.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnTrafficselector_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/new-vpntrafficselector?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/new-vpntrafficselector?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VpnTrafficSelector --- diff --git a/docset/winserver2019-ps/remoteaccess/Remove-BgpCustomRoute.md b/docset/winserver2019-ps/remoteaccess/Remove-BgpCustomRoute.md index 7885b0db28..d3b46e9601 100644 --- a/docset/winserver2019-ps/remoteaccess/Remove-BgpCustomRoute.md +++ b/docset/winserver2019-ps/remoteaccess/Remove-BgpCustomRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpCustomRoute_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-bgpcustomroute?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-bgpcustomroute?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-BgpCustomRoute --- diff --git a/docset/winserver2019-ps/remoteaccess/Remove-BgpPeer.md b/docset/winserver2019-ps/remoteaccess/Remove-BgpPeer.md index 8102415bcc..e4f7feb28e 100644 --- a/docset/winserver2019-ps/remoteaccess/Remove-BgpPeer.md +++ b/docset/winserver2019-ps/remoteaccess/Remove-BgpPeer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpPeer_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-bgppeer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-bgppeer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-BgpPeer --- diff --git a/docset/winserver2019-ps/remoteaccess/Remove-BgpRouteAggregate.md b/docset/winserver2019-ps/remoteaccess/Remove-BgpRouteAggregate.md index 060ac2e326..27dfeb23ed 100644 --- a/docset/winserver2019-ps/remoteaccess/Remove-BgpRouteAggregate.md +++ b/docset/winserver2019-ps/remoteaccess/Remove-BgpRouteAggregate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRouteAggregate_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-bgprouteaggregate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-bgprouteaggregate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-BgpRouteAggregate --- diff --git a/docset/winserver2019-ps/remoteaccess/Remove-BgpRouter.md b/docset/winserver2019-ps/remoteaccess/Remove-BgpRouter.md index 26eea8e462..2211444521 100644 --- a/docset/winserver2019-ps/remoteaccess/Remove-BgpRouter.md +++ b/docset/winserver2019-ps/remoteaccess/Remove-BgpRouter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRouter_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-bgprouter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-bgprouter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-BgpRouter --- diff --git a/docset/winserver2019-ps/remoteaccess/Remove-BgpRoutingPolicy.md b/docset/winserver2019-ps/remoteaccess/Remove-BgpRoutingPolicy.md index 67511c9401..5ae45af926 100644 --- a/docset/winserver2019-ps/remoteaccess/Remove-BgpRoutingPolicy.md +++ b/docset/winserver2019-ps/remoteaccess/Remove-BgpRoutingPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRoutingPolicy_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-bgproutingpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-bgproutingpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-BgpRoutingPolicy --- diff --git a/docset/winserver2019-ps/remoteaccess/Remove-BgpRoutingPolicyForPeer.md b/docset/winserver2019-ps/remoteaccess/Remove-BgpRoutingPolicyForPeer.md index 12cb90a535..bb33833bd1 100644 --- a/docset/winserver2019-ps/remoteaccess/Remove-BgpRoutingPolicyForPeer.md +++ b/docset/winserver2019-ps/remoteaccess/Remove-BgpRoutingPolicyForPeer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRoutingPolicyForPeer_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-bgproutingpolicyforpeer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-bgproutingpolicyforpeer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-BgpRoutingPolicyForPeer --- diff --git a/docset/winserver2019-ps/remoteaccess/Remove-DAAppServer.md b/docset/winserver2019-ps/remoteaccess/Remove-DAAppServer.md index a64c8141f5..82f3ebec5a 100644 --- a/docset/winserver2019-ps/remoteaccess/Remove-DAAppServer.md +++ b/docset/winserver2019-ps/remoteaccess/Remove-DAAppServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAAppServer_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-daappserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-daappserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DAAppServer --- diff --git a/docset/winserver2019-ps/remoteaccess/Remove-DAClient.md b/docset/winserver2019-ps/remoteaccess/Remove-DAClient.md index b37c187704..cb3868e886 100644 --- a/docset/winserver2019-ps/remoteaccess/Remove-DAClient.md +++ b/docset/winserver2019-ps/remoteaccess/Remove-DAClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAClient_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-daclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-daclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DAClient --- diff --git a/docset/winserver2019-ps/remoteaccess/Remove-DAClientDnsConfiguration.md b/docset/winserver2019-ps/remoteaccess/Remove-DAClientDnsConfiguration.md index e3191b8605..19cbca9365 100644 --- a/docset/winserver2019-ps/remoteaccess/Remove-DAClientDnsConfiguration.md +++ b/docset/winserver2019-ps/remoteaccess/Remove-DAClientDnsConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAClientDNSConfiguration_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-daclientdnsconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-daclientdnsconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DAClientDnsConfiguration --- diff --git a/docset/winserver2019-ps/remoteaccess/Remove-DAEntryPoint.md b/docset/winserver2019-ps/remoteaccess/Remove-DAEntryPoint.md index 8a4b4fa431..6a2029999a 100644 --- a/docset/winserver2019-ps/remoteaccess/Remove-DAEntryPoint.md +++ b/docset/winserver2019-ps/remoteaccess/Remove-DAEntryPoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAEntryPoint_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-daentrypoint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-daentrypoint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DAEntryPoint --- diff --git a/docset/winserver2019-ps/remoteaccess/Remove-DAMgmtServer.md b/docset/winserver2019-ps/remoteaccess/Remove-DAMgmtServer.md index 0c0b17f598..c8dc3ad7d5 100644 --- a/docset/winserver2019-ps/remoteaccess/Remove-DAMgmtServer.md +++ b/docset/winserver2019-ps/remoteaccess/Remove-DAMgmtServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAMgmtServer_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-damgmtserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-damgmtserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DAMgmtServer --- diff --git a/docset/winserver2019-ps/remoteaccess/Remove-RemoteAccessIpFilter.md b/docset/winserver2019-ps/remoteaccess/Remove-RemoteAccessIpFilter.md index 01e1fffc7f..9d00ea851c 100644 --- a/docset/winserver2019-ps/remoteaccess/Remove-RemoteAccessIpFilter.md +++ b/docset/winserver2019-ps/remoteaccess/Remove-RemoteAccessIpFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_IPFilter_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-remoteaccessipfilter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-remoteaccessipfilter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-RemoteAccessIpFilter --- diff --git a/docset/winserver2019-ps/remoteaccess/Remove-RemoteAccessLoadBalancerNode.md b/docset/winserver2019-ps/remoteaccess/Remove-RemoteAccessLoadBalancerNode.md index e89c805fb2..8404d1ed2b 100644 --- a/docset/winserver2019-ps/remoteaccess/Remove-RemoteAccessLoadBalancerNode.md +++ b/docset/winserver2019-ps/remoteaccess/Remove-RemoteAccessLoadBalancerNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessLoadBalancerNode_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-remoteaccessloadbalancernode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-remoteaccessloadbalancernode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-RemoteAccessLoadBalancerNode --- diff --git a/docset/winserver2019-ps/remoteaccess/Remove-RemoteAccessRadius.md b/docset/winserver2019-ps/remoteaccess/Remove-RemoteAccessRadius.md index 176d7d2e5c..c012fe98d4 100644 --- a/docset/winserver2019-ps/remoteaccess/Remove-RemoteAccessRadius.md +++ b/docset/winserver2019-ps/remoteaccess/Remove-RemoteAccessRadius.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessRADIUS_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-remoteaccessradius?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-remoteaccessradius?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-RemoteAccessRadius --- diff --git a/docset/winserver2019-ps/remoteaccess/Remove-VpnIPAddressRange.md b/docset/winserver2019-ps/remoteaccess/Remove-VpnIPAddressRange.md index 4cfb5732e5..2dda5e92ad 100644 --- a/docset/winserver2019-ps/remoteaccess/Remove-VpnIPAddressRange.md +++ b/docset/winserver2019-ps/remoteaccess/Remove-VpnIPAddressRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VPNIPAddressRange_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-vpnipaddressrange?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-vpnipaddressrange?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VpnIPAddressRange --- diff --git a/docset/winserver2019-ps/remoteaccess/Remove-VpnS2SInterface.md b/docset/winserver2019-ps/remoteaccess/Remove-VpnS2SInterface.md index c2dc15f45c..0da7d17a4f 100644 --- a/docset/winserver2019-ps/remoteaccess/Remove-VpnS2SInterface.md +++ b/docset/winserver2019-ps/remoteaccess/Remove-VpnS2SInterface.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnS2SInterface_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-vpns2sinterface?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-vpns2sinterface?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VpnS2SInterface --- diff --git a/docset/winserver2019-ps/remoteaccess/Remove-VpnSstpProxyRule.md b/docset/winserver2019-ps/remoteaccess/Remove-VpnSstpProxyRule.md index 3f68b9832d..071ef78c9c 100644 --- a/docset/winserver2019-ps/remoteaccess/Remove-VpnSstpProxyRule.md +++ b/docset/winserver2019-ps/remoteaccess/Remove-VpnSstpProxyRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnSstpProxyRule_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-vpnsstpproxyrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-vpnsstpproxyrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VpnSstpProxyRule --- diff --git a/docset/winserver2019-ps/remoteaccess/Set-BgpPeer.md b/docset/winserver2019-ps/remoteaccess/Set-BgpPeer.md index 41160b6852..5dc4862726 100644 --- a/docset/winserver2019-ps/remoteaccess/Set-BgpPeer.md +++ b/docset/winserver2019-ps/remoteaccess/Set-BgpPeer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpPeer_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-bgppeer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-bgppeer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-BgpPeer --- diff --git a/docset/winserver2019-ps/remoteaccess/Set-BgpRouteAggregate.md b/docset/winserver2019-ps/remoteaccess/Set-BgpRouteAggregate.md index 5cc8b94e2b..bf609fda04 100644 --- a/docset/winserver2019-ps/remoteaccess/Set-BgpRouteAggregate.md +++ b/docset/winserver2019-ps/remoteaccess/Set-BgpRouteAggregate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRouteAggregate_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-bgprouteaggregate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-bgprouteaggregate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-BgpRouteAggregate --- diff --git a/docset/winserver2019-ps/remoteaccess/Set-BgpRouteFlapDampening.md b/docset/winserver2019-ps/remoteaccess/Set-BgpRouteFlapDampening.md index 0af58dc389..8635631415 100644 --- a/docset/winserver2019-ps/remoteaccess/Set-BgpRouteFlapDampening.md +++ b/docset/winserver2019-ps/remoteaccess/Set-BgpRouteFlapDampening.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRouteFlapDampening_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-bgprouteflapdampening?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-bgprouteflapdampening?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-BgpRouteFlapDampening --- diff --git a/docset/winserver2019-ps/remoteaccess/Set-BgpRouter.md b/docset/winserver2019-ps/remoteaccess/Set-BgpRouter.md index 1f111502b9..7e0a2498fd 100644 --- a/docset/winserver2019-ps/remoteaccess/Set-BgpRouter.md +++ b/docset/winserver2019-ps/remoteaccess/Set-BgpRouter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRouter_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-bgprouter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-bgprouter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-BgpRouter --- diff --git a/docset/winserver2019-ps/remoteaccess/Set-BgpRoutingPolicy.md b/docset/winserver2019-ps/remoteaccess/Set-BgpRoutingPolicy.md index 12c3fe774f..fe84ed6b42 100644 --- a/docset/winserver2019-ps/remoteaccess/Set-BgpRoutingPolicy.md +++ b/docset/winserver2019-ps/remoteaccess/Set-BgpRoutingPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRoutingPolicy_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-bgproutingpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-bgproutingpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-BgpRoutingPolicy --- diff --git a/docset/winserver2019-ps/remoteaccess/Set-BgpRoutingPolicyForPeer.md b/docset/winserver2019-ps/remoteaccess/Set-BgpRoutingPolicyForPeer.md index 80ce00689f..ff04cd712c 100644 --- a/docset/winserver2019-ps/remoteaccess/Set-BgpRoutingPolicyForPeer.md +++ b/docset/winserver2019-ps/remoteaccess/Set-BgpRoutingPolicyForPeer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRoutingPolicyForPeer_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-bgproutingpolicyforpeer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-bgproutingpolicyforpeer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-BgpRoutingPolicyForPeer --- diff --git a/docset/winserver2019-ps/remoteaccess/Set-DAAppServerConnection.md b/docset/winserver2019-ps/remoteaccess/Set-DAAppServerConnection.md index fc25e042e9..951cf32601 100644 --- a/docset/winserver2019-ps/remoteaccess/Set-DAAppServerConnection.md +++ b/docset/winserver2019-ps/remoteaccess/Set-DAAppServerConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAAppServerConnection_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-daappserverconnection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-daappserverconnection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DAAppServerConnection --- diff --git a/docset/winserver2019-ps/remoteaccess/Set-DAClient.md b/docset/winserver2019-ps/remoteaccess/Set-DAClient.md index 179ba44f3d..0f8cf44e67 100644 --- a/docset/winserver2019-ps/remoteaccess/Set-DAClient.md +++ b/docset/winserver2019-ps/remoteaccess/Set-DAClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAClient_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-daclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-daclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DAClient --- diff --git a/docset/winserver2019-ps/remoteaccess/Set-DAClientDnsConfiguration.md b/docset/winserver2019-ps/remoteaccess/Set-DAClientDnsConfiguration.md index 1c29c28a22..aee9edc4ba 100644 --- a/docset/winserver2019-ps/remoteaccess/Set-DAClientDnsConfiguration.md +++ b/docset/winserver2019-ps/remoteaccess/Set-DAClientDnsConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAClientDNSConfiguration_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-daclientdnsconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-daclientdnsconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DAClientDnsConfiguration --- diff --git a/docset/winserver2019-ps/remoteaccess/Set-DAEntryPoint.md b/docset/winserver2019-ps/remoteaccess/Set-DAEntryPoint.md index 6f8a590acb..8e98173f1b 100644 --- a/docset/winserver2019-ps/remoteaccess/Set-DAEntryPoint.md +++ b/docset/winserver2019-ps/remoteaccess/Set-DAEntryPoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAEntryPoint_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-daentrypoint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-daentrypoint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DAEntryPoint --- diff --git a/docset/winserver2019-ps/remoteaccess/Set-DAEntryPointDC.md b/docset/winserver2019-ps/remoteaccess/Set-DAEntryPointDC.md index 6ddf7adcea..34c5b7eb8e 100644 --- a/docset/winserver2019-ps/remoteaccess/Set-DAEntryPointDC.md +++ b/docset/winserver2019-ps/remoteaccess/Set-DAEntryPointDC.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAEntryPointDC_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-daentrypointdc?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-daentrypointdc?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DAEntryPointDC --- diff --git a/docset/winserver2019-ps/remoteaccess/Set-DAMultiSite.md b/docset/winserver2019-ps/remoteaccess/Set-DAMultiSite.md index 8503453771..2456b37ee9 100644 --- a/docset/winserver2019-ps/remoteaccess/Set-DAMultiSite.md +++ b/docset/winserver2019-ps/remoteaccess/Set-DAMultiSite.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAMultiSite_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-damultisite?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-damultisite?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DAMultiSite --- diff --git a/docset/winserver2019-ps/remoteaccess/Set-DANetworkLocationServer.md b/docset/winserver2019-ps/remoteaccess/Set-DANetworkLocationServer.md index 00a4bc42b8..5ba555b029 100644 --- a/docset/winserver2019-ps/remoteaccess/Set-DANetworkLocationServer.md +++ b/docset/winserver2019-ps/remoteaccess/Set-DANetworkLocationServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DANetworkLocationServer_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-danetworklocationserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-danetworklocationserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DANetworkLocationServer --- diff --git a/docset/winserver2019-ps/remoteaccess/Set-DAOtpAuthentication.md b/docset/winserver2019-ps/remoteaccess/Set-DAOtpAuthentication.md index aad7d1c6a8..0f29f0ffe2 100644 --- a/docset/winserver2019-ps/remoteaccess/Set-DAOtpAuthentication.md +++ b/docset/winserver2019-ps/remoteaccess/Set-DAOtpAuthentication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAOtpAuthentication_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-daotpauthentication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-daotpauthentication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DAOtpAuthentication --- diff --git a/docset/winserver2019-ps/remoteaccess/Set-DAServer.md b/docset/winserver2019-ps/remoteaccess/Set-DAServer.md index a7bd4e57fe..310c083c8a 100644 --- a/docset/winserver2019-ps/remoteaccess/Set-DAServer.md +++ b/docset/winserver2019-ps/remoteaccess/Set-DAServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAServer_v2.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-daserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-daserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DAServer --- diff --git a/docset/winserver2019-ps/remoteaccess/Set-RemoteAccess.md b/docset/winserver2019-ps/remoteaccess/Set-RemoteAccess.md index 45f58c1df2..b52d3f3948 100644 --- a/docset/winserver2019-ps/remoteaccess/Set-RemoteAccess.md +++ b/docset/winserver2019-ps/remoteaccess/Set-RemoteAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccess_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-remoteaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-remoteaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RemoteAccess --- diff --git a/docset/winserver2019-ps/remoteaccess/Set-RemoteAccessAccounting.md b/docset/winserver2019-ps/remoteaccess/Set-RemoteAccessAccounting.md index 6dd0ce341d..8b9e180730 100644 --- a/docset/winserver2019-ps/remoteaccess/Set-RemoteAccessAccounting.md +++ b/docset/winserver2019-ps/remoteaccess/Set-RemoteAccessAccounting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessAccounting_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-remoteaccessaccounting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-remoteaccessaccounting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RemoteAccessAccounting --- diff --git a/docset/winserver2019-ps/remoteaccess/Set-RemoteAccessConfiguration.md b/docset/winserver2019-ps/remoteaccess/Set-RemoteAccessConfiguration.md index 20c815e1ee..43d2f41be3 100644 --- a/docset/winserver2019-ps/remoteaccess/Set-RemoteAccessConfiguration.md +++ b/docset/winserver2019-ps/remoteaccess/Set-RemoteAccessConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessConfiguration_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-remoteaccessconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-remoteaccessconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RemoteAccessConfiguration --- diff --git a/docset/winserver2019-ps/remoteaccess/Set-RemoteAccessInboxAccountingStore.md b/docset/winserver2019-ps/remoteaccess/Set-RemoteAccessInboxAccountingStore.md index 17cdab75ae..581484c038 100644 --- a/docset/winserver2019-ps/remoteaccess/Set-RemoteAccessInboxAccountingStore.md +++ b/docset/winserver2019-ps/remoteaccess/Set-RemoteAccessInboxAccountingStore.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessInboxAccountingStore_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-remoteaccessinboxaccountingstore?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-remoteaccessinboxaccountingstore?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RemoteAccessInboxAccountingStore --- diff --git a/docset/winserver2019-ps/remoteaccess/Set-RemoteAccessIpFilter.md b/docset/winserver2019-ps/remoteaccess/Set-RemoteAccessIpFilter.md index ee717383fc..53989d94d6 100644 --- a/docset/winserver2019-ps/remoteaccess/Set-RemoteAccessIpFilter.md +++ b/docset/winserver2019-ps/remoteaccess/Set-RemoteAccessIpFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_IPFilter_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-remoteaccessipfilter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-remoteaccessipfilter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RemoteAccessIpFilter --- diff --git a/docset/winserver2019-ps/remoteaccess/Set-RemoteAccessLoadBalancer.md b/docset/winserver2019-ps/remoteaccess/Set-RemoteAccessLoadBalancer.md index 3fd985b289..0eeadbd76f 100644 --- a/docset/winserver2019-ps/remoteaccess/Set-RemoteAccessLoadBalancer.md +++ b/docset/winserver2019-ps/remoteaccess/Set-RemoteAccessLoadBalancer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessLoadBalancer_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-remoteaccessloadbalancer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-remoteaccessloadbalancer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RemoteAccessLoadBalancer --- diff --git a/docset/winserver2019-ps/remoteaccess/Set-RemoteAccessRadius.md b/docset/winserver2019-ps/remoteaccess/Set-RemoteAccessRadius.md index 5d31c98408..7d4c21192b 100644 --- a/docset/winserver2019-ps/remoteaccess/Set-RemoteAccessRadius.md +++ b/docset/winserver2019-ps/remoteaccess/Set-RemoteAccessRadius.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessRADIUS_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-remoteaccessradius?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-remoteaccessradius?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RemoteAccessRadius --- diff --git a/docset/winserver2019-ps/remoteaccess/Set-RemoteAccessRoutingDomain.md b/docset/winserver2019-ps/remoteaccess/Set-RemoteAccessRoutingDomain.md index c0aa7f5b07..8f4ef7a12b 100644 --- a/docset/winserver2019-ps/remoteaccess/Set-RemoteAccessRoutingDomain.md +++ b/docset/winserver2019-ps/remoteaccess/Set-RemoteAccessRoutingDomain.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessRoutingDomain_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-remoteaccessroutingdomain?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-remoteaccessroutingdomain?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RemoteAccessRoutingDomain --- diff --git a/docset/winserver2019-ps/remoteaccess/Set-RoutingProtocolPreference.md b/docset/winserver2019-ps/remoteaccess/Set-RoutingProtocolPreference.md index 067ba85b40..e588e73b8b 100644 --- a/docset/winserver2019-ps/remoteaccess/Set-RoutingProtocolPreference.md +++ b/docset/winserver2019-ps/remoteaccess/Set-RoutingProtocolPreference.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RoutingProtocolPreference_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-routingprotocolpreference?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-routingprotocolpreference?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RoutingProtocolPreference --- diff --git a/docset/winserver2019-ps/remoteaccess/Set-VpnAuthProtocol.md b/docset/winserver2019-ps/remoteaccess/Set-VpnAuthProtocol.md index 5ee4ac704e..aefaba8b91 100644 --- a/docset/winserver2019-ps/remoteaccess/Set-VpnAuthProtocol.md +++ b/docset/winserver2019-ps/remoteaccess/Set-VpnAuthProtocol.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnAuthProtocol_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-vpnauthprotocol?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-vpnauthprotocol?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VpnAuthProtocol --- diff --git a/docset/winserver2019-ps/remoteaccess/Set-VpnAuthType.md b/docset/winserver2019-ps/remoteaccess/Set-VpnAuthType.md index 57ab1e0074..f6d912957f 100644 --- a/docset/winserver2019-ps/remoteaccess/Set-VpnAuthType.md +++ b/docset/winserver2019-ps/remoteaccess/Set-VpnAuthType.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VPNAuthType_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-vpnauthtype?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-vpnauthtype?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VpnAuthType --- diff --git a/docset/winserver2019-ps/remoteaccess/Set-VpnIPAddressAssignment.md b/docset/winserver2019-ps/remoteaccess/Set-VpnIPAddressAssignment.md index 28bc0a9901..13bccf6a27 100644 --- a/docset/winserver2019-ps/remoteaccess/Set-VpnIPAddressAssignment.md +++ b/docset/winserver2019-ps/remoteaccess/Set-VpnIPAddressAssignment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VPNIPAddressAssignment_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-vpnipaddressassignment?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-vpnipaddressassignment?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VpnIPAddressAssignment --- diff --git a/docset/winserver2019-ps/remoteaccess/Set-VpnS2SInterface.md b/docset/winserver2019-ps/remoteaccess/Set-VpnS2SInterface.md index d326301add..21908c3a41 100644 --- a/docset/winserver2019-ps/remoteaccess/Set-VpnS2SInterface.md +++ b/docset/winserver2019-ps/remoteaccess/Set-VpnS2SInterface.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnS2SInterface_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-vpns2sinterface?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-vpns2sinterface?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VpnS2SInterface --- diff --git a/docset/winserver2019-ps/remoteaccess/Set-VpnServerConfiguration.md b/docset/winserver2019-ps/remoteaccess/Set-VpnServerConfiguration.md index f23bdba1db..c961426b57 100644 --- a/docset/winserver2019-ps/remoteaccess/Set-VpnServerConfiguration.md +++ b/docset/winserver2019-ps/remoteaccess/Set-VpnServerConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnServerIPsecConfiguration_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-vpnserverconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-vpnserverconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VpnServerConfiguration --- diff --git a/docset/winserver2019-ps/remoteaccess/Set-VpnSstpProxyRule.md b/docset/winserver2019-ps/remoteaccess/Set-VpnSstpProxyRule.md index ca095d258f..fffe72854f 100644 --- a/docset/winserver2019-ps/remoteaccess/Set-VpnSstpProxyRule.md +++ b/docset/winserver2019-ps/remoteaccess/Set-VpnSstpProxyRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnSstpProxyRule_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-vpnsstpproxyrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-vpnsstpproxyrule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VpnSstpProxyRule --- diff --git a/docset/winserver2019-ps/remoteaccess/Start-BgpPeer.md b/docset/winserver2019-ps/remoteaccess/Start-BgpPeer.md index 91e649ab4a..b4cdcfd101 100644 --- a/docset/winserver2019-ps/remoteaccess/Start-BgpPeer.md +++ b/docset/winserver2019-ps/remoteaccess/Start-BgpPeer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpPeer_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/start-bgppeer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/start-bgppeer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-BgpPeer --- diff --git a/docset/winserver2019-ps/remoteaccess/Stop-BgpPeer.md b/docset/winserver2019-ps/remoteaccess/Stop-BgpPeer.md index 7615514dd4..2ccc370271 100644 --- a/docset/winserver2019-ps/remoteaccess/Stop-BgpPeer.md +++ b/docset/winserver2019-ps/remoteaccess/Stop-BgpPeer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpPeer_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/stop-bgppeer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/stop-bgppeer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-BgpPeer --- diff --git a/docset/winserver2019-ps/remoteaccess/Uninstall-RemoteAccess.md b/docset/winserver2019-ps/remoteaccess/Uninstall-RemoteAccess.md index 1c48e6ec26..ddfa6cc537 100644 --- a/docset/winserver2019-ps/remoteaccess/Uninstall-RemoteAccess.md +++ b/docset/winserver2019-ps/remoteaccess/Uninstall-RemoteAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccess_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/uninstall-remoteaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/uninstall-remoteaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-RemoteAccess --- diff --git a/docset/winserver2019-ps/remoteaccess/Update-DAMgmtServer.md b/docset/winserver2019-ps/remoteaccess/Update-DAMgmtServer.md index a13655d361..27fe67f961 100644 --- a/docset/winserver2019-ps/remoteaccess/Update-DAMgmtServer.md +++ b/docset/winserver2019-ps/remoteaccess/Update-DAMgmtServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAMgmtServer_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/update-damgmtserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/update-damgmtserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-DAMgmtServer --- diff --git a/docset/winserver2019-ps/remotedesktopservices/Convert-License.md b/docset/winserver2019-ps/remotedesktopservices/Convert-License.md index 89dbb54fd5..9071b50b7a 100644 --- a/docset/winserver2019-ps/remotedesktopservices/Convert-License.md +++ b/docset/winserver2019-ps/remotedesktopservices/Convert-License.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: TSPSCmdlets.dll-Help.xml Module Name: RemoteDesktopServices ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/remotedesktopservices/convert-license?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remotedesktopservices/convert-license?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Convert-License --- diff --git a/docset/winserver2019-ps/scheduledtasks/Disable-ScheduledTask.md b/docset/winserver2019-ps/scheduledtasks/Disable-ScheduledTask.md index 42ac635874..883975f031 100644 --- a/docset/winserver2019-ps/scheduledtasks/Disable-ScheduledTask.md +++ b/docset/winserver2019-ps/scheduledtasks/Disable-ScheduledTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/disable-scheduledtask?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/disable-scheduledtask?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-ScheduledTask --- diff --git a/docset/winserver2019-ps/scheduledtasks/Enable-ScheduledTask.md b/docset/winserver2019-ps/scheduledtasks/Enable-ScheduledTask.md index 2f655edc71..4b961a7e31 100644 --- a/docset/winserver2019-ps/scheduledtasks/Enable-ScheduledTask.md +++ b/docset/winserver2019-ps/scheduledtasks/Enable-ScheduledTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/enable-scheduledtask?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/enable-scheduledtask?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-ScheduledTask --- diff --git a/docset/winserver2019-ps/scheduledtasks/Export-ScheduledTask.md b/docset/winserver2019-ps/scheduledtasks/Export-ScheduledTask.md index c279738df9..81ff664c69 100644 --- a/docset/winserver2019-ps/scheduledtasks/Export-ScheduledTask.md +++ b/docset/winserver2019-ps/scheduledtasks/Export-ScheduledTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/export-scheduledtask?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/export-scheduledtask?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-ScheduledTask --- diff --git a/docset/winserver2019-ps/scheduledtasks/Get-ClusteredScheduledTask.md b/docset/winserver2019-ps/scheduledtasks/Get-ClusteredScheduledTask.md index 9fd1d501c7..9404c287a3 100644 --- a/docset/winserver2019-ps/scheduledtasks/Get-ClusteredScheduledTask.md +++ b/docset/winserver2019-ps/scheduledtasks/Get-ClusteredScheduledTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_ClusteredScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/get-clusteredscheduledtask?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/get-clusteredscheduledtask?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusteredScheduledTask --- diff --git a/docset/winserver2019-ps/scheduledtasks/Get-ScheduledTask.md b/docset/winserver2019-ps/scheduledtasks/Get-ScheduledTask.md index 5f816daa93..e234d5196e 100644 --- a/docset/winserver2019-ps/scheduledtasks/Get-ScheduledTask.md +++ b/docset/winserver2019-ps/scheduledtasks/Get-ScheduledTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/get-scheduledtask?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/get-scheduledtask?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ScheduledTask --- diff --git a/docset/winserver2019-ps/scheduledtasks/Get-ScheduledTaskInfo.md b/docset/winserver2019-ps/scheduledtasks/Get-ScheduledTaskInfo.md index 3c8c16b090..cd68660c2d 100644 --- a/docset/winserver2019-ps/scheduledtasks/Get-ScheduledTaskInfo.md +++ b/docset/winserver2019-ps/scheduledtasks/Get-ScheduledTaskInfo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/get-scheduledtaskinfo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/get-scheduledtaskinfo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ScheduledTaskInfo --- diff --git a/docset/winserver2019-ps/scheduledtasks/New-ScheduledTask.md b/docset/winserver2019-ps/scheduledtasks/New-ScheduledTask.md index 2304acfc7d..48a240c62b 100644 --- a/docset/winserver2019-ps/scheduledtasks/New-ScheduledTask.md +++ b/docset/winserver2019-ps/scheduledtasks/New-ScheduledTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/new-scheduledtask?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/new-scheduledtask?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ScheduledTask --- diff --git a/docset/winserver2019-ps/scheduledtasks/New-ScheduledTaskAction.md b/docset/winserver2019-ps/scheduledtasks/New-ScheduledTaskAction.md index 8d7fcfdf21..c34999b340 100644 --- a/docset/winserver2019-ps/scheduledtasks/New-ScheduledTaskAction.md +++ b/docset/winserver2019-ps/scheduledtasks/New-ScheduledTaskAction.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/new-scheduledtaskaction?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/new-scheduledtaskaction?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ScheduledTaskAction --- diff --git a/docset/winserver2019-ps/scheduledtasks/New-ScheduledTaskPrincipal.md b/docset/winserver2019-ps/scheduledtasks/New-ScheduledTaskPrincipal.md index 42adcbe5d2..65fc9f5cd8 100644 --- a/docset/winserver2019-ps/scheduledtasks/New-ScheduledTaskPrincipal.md +++ b/docset/winserver2019-ps/scheduledtasks/New-ScheduledTaskPrincipal.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/new-scheduledtaskprincipal?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/new-scheduledtaskprincipal?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ScheduledTaskPrincipal --- diff --git a/docset/winserver2019-ps/scheduledtasks/New-ScheduledTaskSettingsSet.md b/docset/winserver2019-ps/scheduledtasks/New-ScheduledTaskSettingsSet.md index 6da574459d..a5a1fe2712 100644 --- a/docset/winserver2019-ps/scheduledtasks/New-ScheduledTaskSettingsSet.md +++ b/docset/winserver2019-ps/scheduledtasks/New-ScheduledTaskSettingsSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/new-scheduledtasksettingsset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/new-scheduledtasksettingsset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ScheduledTaskSettingsSet --- diff --git a/docset/winserver2019-ps/scheduledtasks/New-ScheduledTaskTrigger.md b/docset/winserver2019-ps/scheduledtasks/New-ScheduledTaskTrigger.md index 088ba37815..4110bdb8c1 100644 --- a/docset/winserver2019-ps/scheduledtasks/New-ScheduledTaskTrigger.md +++ b/docset/winserver2019-ps/scheduledtasks/New-ScheduledTaskTrigger.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/new-scheduledtasktrigger?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/new-scheduledtasktrigger?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ScheduledTaskTrigger --- diff --git a/docset/winserver2019-ps/scheduledtasks/Register-ClusteredScheduledTask.md b/docset/winserver2019-ps/scheduledtasks/Register-ClusteredScheduledTask.md index c9396138b1..148f8f1fab 100644 --- a/docset/winserver2019-ps/scheduledtasks/Register-ClusteredScheduledTask.md +++ b/docset/winserver2019-ps/scheduledtasks/Register-ClusteredScheduledTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_ClusteredScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/register-clusteredscheduledtask?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/register-clusteredscheduledtask?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Register-ClusteredScheduledTask --- diff --git a/docset/winserver2019-ps/scheduledtasks/Register-ScheduledTask.md b/docset/winserver2019-ps/scheduledtasks/Register-ScheduledTask.md index b05619e2e8..e480cc0fd3 100644 --- a/docset/winserver2019-ps/scheduledtasks/Register-ScheduledTask.md +++ b/docset/winserver2019-ps/scheduledtasks/Register-ScheduledTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/register-scheduledtask?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/register-scheduledtask?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Register-ScheduledTask --- diff --git a/docset/winserver2019-ps/scheduledtasks/Set-ClusteredScheduledTask.md b/docset/winserver2019-ps/scheduledtasks/Set-ClusteredScheduledTask.md index c42c6dcca8..a89ab57b1e 100644 --- a/docset/winserver2019-ps/scheduledtasks/Set-ClusteredScheduledTask.md +++ b/docset/winserver2019-ps/scheduledtasks/Set-ClusteredScheduledTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_ClusteredScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/set-clusteredscheduledtask?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/set-clusteredscheduledtask?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusteredScheduledTask --- diff --git a/docset/winserver2019-ps/scheduledtasks/Set-ScheduledTask.md b/docset/winserver2019-ps/scheduledtasks/Set-ScheduledTask.md index 993fafbe6f..f1ae88e965 100644 --- a/docset/winserver2019-ps/scheduledtasks/Set-ScheduledTask.md +++ b/docset/winserver2019-ps/scheduledtasks/Set-ScheduledTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/set-scheduledtask?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/set-scheduledtask?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ScheduledTask --- diff --git a/docset/winserver2019-ps/scheduledtasks/Start-ScheduledTask.md b/docset/winserver2019-ps/scheduledtasks/Start-ScheduledTask.md index dc351b1e99..0279941477 100644 --- a/docset/winserver2019-ps/scheduledtasks/Start-ScheduledTask.md +++ b/docset/winserver2019-ps/scheduledtasks/Start-ScheduledTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/start-scheduledtask?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/start-scheduledtask?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-ScheduledTask --- diff --git a/docset/winserver2019-ps/scheduledtasks/Stop-ScheduledTask.md b/docset/winserver2019-ps/scheduledtasks/Stop-ScheduledTask.md index cbacc03a8d..1ccd29ee07 100644 --- a/docset/winserver2019-ps/scheduledtasks/Stop-ScheduledTask.md +++ b/docset/winserver2019-ps/scheduledtasks/Stop-ScheduledTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/stop-scheduledtask?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/stop-scheduledtask?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-ScheduledTask --- diff --git a/docset/winserver2019-ps/scheduledtasks/Unregister-ClusteredScheduledTask.md b/docset/winserver2019-ps/scheduledtasks/Unregister-ClusteredScheduledTask.md index efd336b933..7dc57cd628 100644 --- a/docset/winserver2019-ps/scheduledtasks/Unregister-ClusteredScheduledTask.md +++ b/docset/winserver2019-ps/scheduledtasks/Unregister-ClusteredScheduledTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_ClusteredScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/unregister-clusteredscheduledtask?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/unregister-clusteredscheduledtask?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unregister-ClusteredScheduledTask --- diff --git a/docset/winserver2019-ps/scheduledtasks/Unregister-ScheduledTask.md b/docset/winserver2019-ps/scheduledtasks/Unregister-ScheduledTask.md index 0a6d362140..4644a0d290 100644 --- a/docset/winserver2019-ps/scheduledtasks/Unregister-ScheduledTask.md +++ b/docset/winserver2019-ps/scheduledtasks/Unregister-ScheduledTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/unregister-scheduledtask?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/unregister-scheduledtask?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unregister-ScheduledTask --- diff --git a/docset/winserver2019-ps/secureboot/Confirm-SecureBootUEFI.md b/docset/winserver2019-ps/secureboot/Confirm-SecureBootUEFI.md index 5eed3a7b46..5b25606aac 100644 --- a/docset/winserver2019-ps/secureboot/Confirm-SecureBootUEFI.md +++ b/docset/winserver2019-ps/secureboot/Confirm-SecureBootUEFI.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.SecureBoot.Commands.dll-Help.xml Module Name: SecureBoot ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/secureboot/confirm-securebootuefi?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/secureboot/confirm-securebootuefi?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Confirm-SecureBootUEFI --- diff --git a/docset/winserver2019-ps/secureboot/Format-SecureBootUEFI.md b/docset/winserver2019-ps/secureboot/Format-SecureBootUEFI.md index 38341293b9..78dd62027c 100644 --- a/docset/winserver2019-ps/secureboot/Format-SecureBootUEFI.md +++ b/docset/winserver2019-ps/secureboot/Format-SecureBootUEFI.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.SecureBoot.Commands.dll-Help.xml Module Name: SecureBoot ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/secureboot/format-securebootuefi?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/secureboot/format-securebootuefi?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Format-SecureBootUEFI --- diff --git a/docset/winserver2019-ps/secureboot/Get-SecureBootPolicy.md b/docset/winserver2019-ps/secureboot/Get-SecureBootPolicy.md index b2108dcf7b..02a2f9e2a8 100644 --- a/docset/winserver2019-ps/secureboot/Get-SecureBootPolicy.md +++ b/docset/winserver2019-ps/secureboot/Get-SecureBootPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.SecureBoot.Commands.dll-Help.xml Module Name: SecureBoot ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/secureboot/get-securebootpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/secureboot/get-securebootpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SecureBootPolicy --- diff --git a/docset/winserver2019-ps/secureboot/Get-SecureBootUEFI.md b/docset/winserver2019-ps/secureboot/Get-SecureBootUEFI.md index 0f63f2fcfc..57ef6ec23d 100644 --- a/docset/winserver2019-ps/secureboot/Get-SecureBootUEFI.md +++ b/docset/winserver2019-ps/secureboot/Get-SecureBootUEFI.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.SecureBoot.Commands.dll-Help.xml Module Name: SecureBoot ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/secureboot/get-securebootuefi?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/secureboot/get-securebootuefi?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SecureBootUEFI --- diff --git a/docset/winserver2019-ps/secureboot/Set-SecureBootUEFI.md b/docset/winserver2019-ps/secureboot/Set-SecureBootUEFI.md index f01061257f..41e31c891a 100644 --- a/docset/winserver2019-ps/secureboot/Set-SecureBootUEFI.md +++ b/docset/winserver2019-ps/secureboot/Set-SecureBootUEFI.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.SecureBoot.Commands.dll-Help.xml Module Name: SecureBoot ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/secureboot/set-securebootuefi?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/secureboot/set-securebootuefi?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SecureBootUEFI --- diff --git a/docset/winserver2019-ps/servercore/Get-DisplayResolution.md b/docset/winserver2019-ps/servercore/Get-DisplayResolution.md index 1e8f3fc735..30f3083e97 100644 --- a/docset/winserver2019-ps/servercore/Get-DisplayResolution.md +++ b/docset/winserver2019-ps/servercore/Get-DisplayResolution.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ServerCore-help.xml Module Name: ServerCore ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/servercore/get-displayresolution?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servercore/get-displayresolution?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DisplayResolution --- diff --git a/docset/winserver2019-ps/servercore/Set-DisplayResolution.md b/docset/winserver2019-ps/servercore/Set-DisplayResolution.md index a2a3d92d40..052af4e1ee 100644 --- a/docset/winserver2019-ps/servercore/Set-DisplayResolution.md +++ b/docset/winserver2019-ps/servercore/Set-DisplayResolution.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ServerCore-help.xml Module Name: ServerCore ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/servercore/set-displayresolution?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servercore/set-displayresolution?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DisplayResolution --- diff --git a/docset/winserver2019-ps/servermanagertasks/Get-SMCounterSample.md b/docset/winserver2019-ps/servermanagertasks/Get-SMCounterSample.md index c9fa01afbb..abb86545f0 100644 --- a/docset/winserver2019-ps/servermanagertasks/Get-SMCounterSample.md +++ b/docset/winserver2019-ps/servermanagertasks/Get-SMCounterSample.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ServerManagerTasks.cdxml-help.xml Module Name: ServerManagerTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/servermanagertasks/get-smcountersample?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanagertasks/get-smcountersample?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SMCounterSample --- diff --git a/docset/winserver2019-ps/servermanagertasks/Get-SMPerformanceCollector.md b/docset/winserver2019-ps/servermanagertasks/Get-SMPerformanceCollector.md index 4969b0dbdf..9690013c16 100644 --- a/docset/winserver2019-ps/servermanagertasks/Get-SMPerformanceCollector.md +++ b/docset/winserver2019-ps/servermanagertasks/Get-SMPerformanceCollector.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ServerManagerTasks.cdxml-help.xml Module Name: ServerManagerTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/servermanagertasks/get-smperformancecollector?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanagertasks/get-smperformancecollector?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SMPerformanceCollector --- diff --git a/docset/winserver2019-ps/servermanagertasks/Get-SMServerBpaResult.md b/docset/winserver2019-ps/servermanagertasks/Get-SMServerBpaResult.md index 5ba18d7dfc..2b753ae489 100644 --- a/docset/winserver2019-ps/servermanagertasks/Get-SMServerBpaResult.md +++ b/docset/winserver2019-ps/servermanagertasks/Get-SMServerBpaResult.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ServerManagerTasks.cdxml-help.xml Module Name: ServerManagerTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/servermanagertasks/get-smserverbparesult?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanagertasks/get-smserverbparesult?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SMServerBpaResult --- diff --git a/docset/winserver2019-ps/servermanagertasks/Get-SMServerClusterName.md b/docset/winserver2019-ps/servermanagertasks/Get-SMServerClusterName.md index e4e24d0c89..a699e8ca6c 100644 --- a/docset/winserver2019-ps/servermanagertasks/Get-SMServerClusterName.md +++ b/docset/winserver2019-ps/servermanagertasks/Get-SMServerClusterName.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ServerManagerTasks.cdxml-help.xml Module Name: ServerManagerTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/servermanagertasks/get-smserverclustername?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanagertasks/get-smserverclustername?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SMServerClusterName --- diff --git a/docset/winserver2019-ps/servermanagertasks/Get-SMServerEvent.md b/docset/winserver2019-ps/servermanagertasks/Get-SMServerEvent.md index b5fe554e17..019abf42cd 100644 --- a/docset/winserver2019-ps/servermanagertasks/Get-SMServerEvent.md +++ b/docset/winserver2019-ps/servermanagertasks/Get-SMServerEvent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ServerManagerTasks.cdxml-help.xml Module Name: ServerManagerTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/servermanagertasks/get-smserverevent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanagertasks/get-smserverevent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SMServerEvent --- diff --git a/docset/winserver2019-ps/servermanagertasks/Get-SMServerFeature.md b/docset/winserver2019-ps/servermanagertasks/Get-SMServerFeature.md index 4a0d447c65..b2437d3463 100644 --- a/docset/winserver2019-ps/servermanagertasks/Get-SMServerFeature.md +++ b/docset/winserver2019-ps/servermanagertasks/Get-SMServerFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ServerManagerTasks.cdxml-help.xml Module Name: ServerManagerTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/servermanagertasks/get-smserverfeature?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanagertasks/get-smserverfeature?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SMServerFeature --- diff --git a/docset/winserver2019-ps/servermanagertasks/Get-SMServerInventory.md b/docset/winserver2019-ps/servermanagertasks/Get-SMServerInventory.md index bf1caccaeb..7f2460e515 100644 --- a/docset/winserver2019-ps/servermanagertasks/Get-SMServerInventory.md +++ b/docset/winserver2019-ps/servermanagertasks/Get-SMServerInventory.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ServerManagerTasks.cdxml-help.xml Module Name: ServerManagerTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/servermanagertasks/get-smserverinventory?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanagertasks/get-smserverinventory?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SMServerInventory --- diff --git a/docset/winserver2019-ps/servermanagertasks/Get-SMServerService.md b/docset/winserver2019-ps/servermanagertasks/Get-SMServerService.md index 668f284db6..a848888fe8 100644 --- a/docset/winserver2019-ps/servermanagertasks/Get-SMServerService.md +++ b/docset/winserver2019-ps/servermanagertasks/Get-SMServerService.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ServerManagerTasks.cdxml-help.xml Module Name: ServerManagerTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/servermanagertasks/get-smserverservice?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanagertasks/get-smserverservice?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SMServerService --- diff --git a/docset/winserver2019-ps/servermanagertasks/Remove-SMServerPerformanceLog.md b/docset/winserver2019-ps/servermanagertasks/Remove-SMServerPerformanceLog.md index 1fd480deee..91d48792ec 100644 --- a/docset/winserver2019-ps/servermanagertasks/Remove-SMServerPerformanceLog.md +++ b/docset/winserver2019-ps/servermanagertasks/Remove-SMServerPerformanceLog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ServerManagerTasks.cdxml-help.xml Module Name: ServerManagerTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/servermanagertasks/remove-smserverperformancelog?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanagertasks/remove-smserverperformancelog?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-SMServerPerformanceLog --- diff --git a/docset/winserver2019-ps/servermanagertasks/Start-SMPerformanceCollector.md b/docset/winserver2019-ps/servermanagertasks/Start-SMPerformanceCollector.md index 505288c6a9..5b3fbe1583 100644 --- a/docset/winserver2019-ps/servermanagertasks/Start-SMPerformanceCollector.md +++ b/docset/winserver2019-ps/servermanagertasks/Start-SMPerformanceCollector.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ServerManagerTasks.cdxml-help.xml Module Name: ServerManagerTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/servermanagertasks/start-smperformancecollector?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanagertasks/start-smperformancecollector?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-SMPerformanceCollector --- diff --git a/docset/winserver2019-ps/servermanagertasks/Stop-SMPerformanceCollector.md b/docset/winserver2019-ps/servermanagertasks/Stop-SMPerformanceCollector.md index 9f4d517172..04c29f7e88 100644 --- a/docset/winserver2019-ps/servermanagertasks/Stop-SMPerformanceCollector.md +++ b/docset/winserver2019-ps/servermanagertasks/Stop-SMPerformanceCollector.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ServerManagerTasks.cdxml-help.xml Module Name: ServerManagerTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/servermanagertasks/stop-smperformancecollector?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanagertasks/stop-smperformancecollector?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-SMPerformanceCollector --- diff --git a/docset/winserver2019-ps/shieldedvmcmdlets/Get-KeyProtectorFromShieldingDataFile.md b/docset/winserver2019-ps/shieldedvmcmdlets/Get-KeyProtectorFromShieldingDataFile.md index f6d50b4ab5..f440d1deb1 100644 --- a/docset/winserver2019-ps/shieldedvmcmdlets/Get-KeyProtectorFromShieldingDataFile.md +++ b/docset/winserver2019-ps/shieldedvmcmdlets/Get-KeyProtectorFromShieldingDataFile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ShieldedVmCmdlets-help.xml Module Name: ShieldedVmCmdlets ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/shieldedvmcmdlets/get-keyprotectorfromshieldingdatafile?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/shieldedvmcmdlets/get-keyprotectorfromshieldingdatafile?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-KeyProtectorFromShieldingDataFile --- diff --git a/docset/winserver2019-ps/shieldedvmcmdlets/Get-ShieldedVMProvisioningStatus.md b/docset/winserver2019-ps/shieldedvmcmdlets/Get-ShieldedVMProvisioningStatus.md index a2d60b8d6e..ca871861ed 100644 --- a/docset/winserver2019-ps/shieldedvmcmdlets/Get-ShieldedVMProvisioningStatus.md +++ b/docset/winserver2019-ps/shieldedvmcmdlets/Get-ShieldedVMProvisioningStatus.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ShieldedVmCmdlets-help.xml Module Name: ShieldedVmCmdlets ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/shieldedvmcmdlets/get-shieldedvmprovisioningstatus?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/shieldedvmcmdlets/get-shieldedvmprovisioningstatus?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ShieldedVMProvisioningStatus --- diff --git a/docset/winserver2019-ps/shieldedvmcmdlets/Initialize-ShieldedVM.md b/docset/winserver2019-ps/shieldedvmcmdlets/Initialize-ShieldedVM.md index 6de4c6bf23..f939249a75 100644 --- a/docset/winserver2019-ps/shieldedvmcmdlets/Initialize-ShieldedVM.md +++ b/docset/winserver2019-ps/shieldedvmcmdlets/Initialize-ShieldedVM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ShieldedVmCmdlets-help.xml Module Name: ShieldedVmCmdlets ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/shieldedvmcmdlets/initialize-shieldedvm?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/shieldedvmcmdlets/initialize-shieldedvm?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Initialize-ShieldedVM --- diff --git a/docset/winserver2019-ps/shieldedvmcmdlets/New-ShieldedVMSpecializationDataFile.md b/docset/winserver2019-ps/shieldedvmcmdlets/New-ShieldedVMSpecializationDataFile.md index 0bc9c74ab5..f331d0f1b8 100644 --- a/docset/winserver2019-ps/shieldedvmcmdlets/New-ShieldedVMSpecializationDataFile.md +++ b/docset/winserver2019-ps/shieldedvmcmdlets/New-ShieldedVMSpecializationDataFile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ShieldedVmCmdlets-help.xml Module Name: ShieldedVmCmdlets ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/shieldedvmcmdlets/new-shieldedvmspecializationdatafile?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/shieldedvmcmdlets/new-shieldedvmspecializationdatafile?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ShieldedVMSpecializationDataFile --- diff --git a/docset/winserver2019-ps/shieldedvmcmdlets/Test-ShieldingDataApplicability.md b/docset/winserver2019-ps/shieldedvmcmdlets/Test-ShieldingDataApplicability.md index 5d6c50191d..7117ed3a11 100644 --- a/docset/winserver2019-ps/shieldedvmcmdlets/Test-ShieldingDataApplicability.md +++ b/docset/winserver2019-ps/shieldedvmcmdlets/Test-ShieldingDataApplicability.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ShieldedVmCmdlets-help.xml Module Name: ShieldedVmCmdlets ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/shieldedvmcmdlets/test-shieldingdataapplicability?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/shieldedvmcmdlets/test-shieldingdataapplicability?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-ShieldingDataApplicability --- diff --git a/docset/winserver2019-ps/shieldedvmdatafile/Import-ShieldingDataFile.md b/docset/winserver2019-ps/shieldedvmdatafile/Import-ShieldingDataFile.md index c5d7ef7b6c..753077887d 100644 --- a/docset/winserver2019-ps/shieldedvmdatafile/Import-ShieldingDataFile.md +++ b/docset/winserver2019-ps/shieldedvmdatafile/Import-ShieldingDataFile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.HardenedFabric.Cmdlets.dll-Help.xml Module Name: ShieldedVMDataFile ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/shieldedvmdatafile/import-shieldingdatafile?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/shieldedvmdatafile/import-shieldingdatafile?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-ShieldingDataFile --- diff --git a/docset/winserver2019-ps/shieldedvmdatafile/New-ShieldingDataFile.md b/docset/winserver2019-ps/shieldedvmdatafile/New-ShieldingDataFile.md index ed032c584d..32a68272a9 100644 --- a/docset/winserver2019-ps/shieldedvmdatafile/New-ShieldingDataFile.md +++ b/docset/winserver2019-ps/shieldedvmdatafile/New-ShieldingDataFile.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Windows.HardenedFabric.Cmdlets.dll-Help.xml Module Name: ShieldedVMDataFile -online version: https://docs.microsoft.com/powershell/module/shieldedvmdatafile/new-shieldingdatafile?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/shieldedvmdatafile/new-shieldingdatafile?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ShieldingDataFile --- diff --git a/docset/winserver2019-ps/shieldedvmdatafile/New-VolumeIDQualifier.md b/docset/winserver2019-ps/shieldedvmdatafile/New-VolumeIDQualifier.md index e55322b689..6327ffc243 100644 --- a/docset/winserver2019-ps/shieldedvmdatafile/New-VolumeIDQualifier.md +++ b/docset/winserver2019-ps/shieldedvmdatafile/New-VolumeIDQualifier.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.HardenedFabric.Cmdlets.dll-Help.xml Module Name: ShieldedVMDataFile ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/shieldedvmdatafile/new-volumeidqualifier?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/shieldedvmdatafile/new-volumeidqualifier?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VolumeIDQualifier --- diff --git a/docset/winserver2019-ps/shieldedvmdatafile/Save-ShieldedVMRecoveryKey.md b/docset/winserver2019-ps/shieldedvmdatafile/Save-ShieldedVMRecoveryKey.md index 2fcc2732b7..ba89fe9ad0 100644 --- a/docset/winserver2019-ps/shieldedvmdatafile/Save-ShieldedVMRecoveryKey.md +++ b/docset/winserver2019-ps/shieldedvmdatafile/Save-ShieldedVMRecoveryKey.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Windows.HardenedFabric.Cmdlets.dll-Help.xml Module Name: ShieldedVMDataFile -online version: https://docs.microsoft.com/powershell/module/shieldedvmdatafile/save-shieldedvmrecoverykey?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/shieldedvmdatafile/save-shieldedvmrecoverykey?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Save-ShieldedVMRecoveryKey --- diff --git a/docset/winserver2019-ps/shieldedvmdatafile/Save-VolumeSignatureCatalog.md b/docset/winserver2019-ps/shieldedvmdatafile/Save-VolumeSignatureCatalog.md index 28c18a1391..caa19c49c1 100644 --- a/docset/winserver2019-ps/shieldedvmdatafile/Save-VolumeSignatureCatalog.md +++ b/docset/winserver2019-ps/shieldedvmdatafile/Save-VolumeSignatureCatalog.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Windows.HardenedFabric.Cmdlets.dll-Help.xml Module Name: ShieldedVMDataFile -online version: https://docs.microsoft.com/powershell/module/shieldedvmdatafile/save-volumesignaturecatalog?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/shieldedvmdatafile/save-volumesignaturecatalog?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Save-VolumeSignatureCatalog --- diff --git a/docset/winserver2019-ps/shieldedvmdatafile/Unprotect-ShieldedVMRecoveryKey.md b/docset/winserver2019-ps/shieldedvmdatafile/Unprotect-ShieldedVMRecoveryKey.md index db812ed598..e7cd3f881d 100644 --- a/docset/winserver2019-ps/shieldedvmdatafile/Unprotect-ShieldedVMRecoveryKey.md +++ b/docset/winserver2019-ps/shieldedvmdatafile/Unprotect-ShieldedVMRecoveryKey.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Windows.HardenedFabric.Cmdlets.dll-Help.xml Module Name: ShieldedVMDataFile -online version: https://docs.microsoft.com/powershell/module/shieldedvmdatafile/unprotect-shieldedvmrecoverykey?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/shieldedvmdatafile/unprotect-shieldedvmrecoverykey?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unprotect-ShieldedVMRecoveryKey --- diff --git a/docset/winserver2019-ps/shieldedvmtemplate/Initialize-VMShieldingHelperVHD.md b/docset/winserver2019-ps/shieldedvmtemplate/Initialize-VMShieldingHelperVHD.md index e3ff8e8058..ec434bd45c 100644 --- a/docset/winserver2019-ps/shieldedvmtemplate/Initialize-VMShieldingHelperVHD.md +++ b/docset/winserver2019-ps/shieldedvmtemplate/Initialize-VMShieldingHelperVHD.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.HardenedFabric.Cmdlets.dll-Help.xml Module Name: ShieldedVMTemplate ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/shieldedvmtemplate/initialize-vmshieldinghelpervhd?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/shieldedvmtemplate/initialize-vmshieldinghelpervhd?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Initialize-VMShieldingHelperVHD --- diff --git a/docset/winserver2019-ps/shieldedvmtemplate/Protect-TemplateDisk.md b/docset/winserver2019-ps/shieldedvmtemplate/Protect-TemplateDisk.md index 0aed41b9e3..c064e68a22 100644 --- a/docset/winserver2019-ps/shieldedvmtemplate/Protect-TemplateDisk.md +++ b/docset/winserver2019-ps/shieldedvmtemplate/Protect-TemplateDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.HardenedFabric.Cmdlets.dll-Help.xml Module Name: ShieldedVMTemplate ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/shieldedvmtemplate/protect-templatedisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/shieldedvmtemplate/protect-templatedisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Protect-TemplateDisk --- diff --git a/docset/winserver2019-ps/smbshare/Block-SmbShareAccess.md b/docset/winserver2019-ps/smbshare/Block-SmbShareAccess.md index 6559290ce4..4185fcb163 100644 --- a/docset/winserver2019-ps/smbshare/Block-SmbShareAccess.md +++ b/docset/winserver2019-ps/smbshare/Block-SmbShareAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbShare.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/block-smbshareaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/block-smbshareaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Block-SmbShareAccess --- diff --git a/docset/winserver2019-ps/smbshare/Close-SmbOpenFile.md b/docset/winserver2019-ps/smbshare/Close-SmbOpenFile.md index 6e16084a4e..bffa8b0001 100644 --- a/docset/winserver2019-ps/smbshare/Close-SmbOpenFile.md +++ b/docset/winserver2019-ps/smbshare/Close-SmbOpenFile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbOpenFile.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/close-smbopenfile?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/close-smbopenfile?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Close-SmbOpenFile --- diff --git a/docset/winserver2019-ps/smbshare/Close-SmbSession.md b/docset/winserver2019-ps/smbshare/Close-SmbSession.md index fd095e8aa3..095e94371c 100644 --- a/docset/winserver2019-ps/smbshare/Close-SmbSession.md +++ b/docset/winserver2019-ps/smbshare/Close-SmbSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbSession.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/close-smbsession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/close-smbsession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Close-SmbSession --- diff --git a/docset/winserver2019-ps/smbshare/Disable-SmbDelegation.md b/docset/winserver2019-ps/smbshare/Disable-SmbDelegation.md index 0e3c20d0cd..395583cf3d 100644 --- a/docset/winserver2019-ps/smbshare/Disable-SmbDelegation.md +++ b/docset/winserver2019-ps/smbshare/Disable-SmbDelegation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbScriptModule-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/disable-smbdelegation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/disable-smbdelegation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-SmbDelegation --- diff --git a/docset/winserver2019-ps/smbshare/Enable-SmbDelegation.md b/docset/winserver2019-ps/smbshare/Enable-SmbDelegation.md index b7137f4f9b..6e9db07530 100644 --- a/docset/winserver2019-ps/smbshare/Enable-SmbDelegation.md +++ b/docset/winserver2019-ps/smbshare/Enable-SmbDelegation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbScriptModule-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/enable-smbdelegation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/enable-smbdelegation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-SmbDelegation --- diff --git a/docset/winserver2019-ps/smbshare/Get-SmbBandwidthLimit.md b/docset/winserver2019-ps/smbshare/Get-SmbBandwidthLimit.md index f6956fdc60..3924822589 100644 --- a/docset/winserver2019-ps/smbshare/Get-SmbBandwidthLimit.md +++ b/docset/winserver2019-ps/smbshare/Get-SmbBandwidthLimit.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbBandwidthLimit.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbbandwidthlimit?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbbandwidthlimit?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbBandwidthLimit --- diff --git a/docset/winserver2019-ps/smbshare/Get-SmbClientConfiguration.md b/docset/winserver2019-ps/smbshare/Get-SmbClientConfiguration.md index 751ab98f01..4ce5282569 100644 --- a/docset/winserver2019-ps/smbshare/Get-SmbClientConfiguration.md +++ b/docset/winserver2019-ps/smbshare/Get-SmbClientConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbClientConfiguration.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbclientconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbclientconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbClientConfiguration --- diff --git a/docset/winserver2019-ps/smbshare/Get-SmbClientNetworkInterface.md b/docset/winserver2019-ps/smbshare/Get-SmbClientNetworkInterface.md index 2f52313a2f..47be5adfe4 100644 --- a/docset/winserver2019-ps/smbshare/Get-SmbClientNetworkInterface.md +++ b/docset/winserver2019-ps/smbshare/Get-SmbClientNetworkInterface.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbClientNetworkInterface.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbclientnetworkinterface?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbclientnetworkinterface?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbClientNetworkInterface --- diff --git a/docset/winserver2019-ps/smbshare/Get-SmbConnection.md b/docset/winserver2019-ps/smbshare/Get-SmbConnection.md index be4c17abab..9f351d7d7b 100644 --- a/docset/winserver2019-ps/smbshare/Get-SmbConnection.md +++ b/docset/winserver2019-ps/smbshare/Get-SmbConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbConnection.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbconnection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbconnection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbConnection --- diff --git a/docset/winserver2019-ps/smbshare/Get-SmbDelegation.md b/docset/winserver2019-ps/smbshare/Get-SmbDelegation.md index 4321940567..4d9e0f4aed 100644 --- a/docset/winserver2019-ps/smbshare/Get-SmbDelegation.md +++ b/docset/winserver2019-ps/smbshare/Get-SmbDelegation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbScriptModule-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbdelegation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbdelegation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbDelegation --- diff --git a/docset/winserver2019-ps/smbshare/Get-SmbMapping.md b/docset/winserver2019-ps/smbshare/Get-SmbMapping.md index 07aa2de498..a4577e88e8 100644 --- a/docset/winserver2019-ps/smbshare/Get-SmbMapping.md +++ b/docset/winserver2019-ps/smbshare/Get-SmbMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbMapping.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbmapping?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbmapping?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbMapping --- diff --git a/docset/winserver2019-ps/smbshare/Get-SmbMultichannelConnection.md b/docset/winserver2019-ps/smbshare/Get-SmbMultichannelConnection.md index e46826368f..b639220433 100644 --- a/docset/winserver2019-ps/smbshare/Get-SmbMultichannelConnection.md +++ b/docset/winserver2019-ps/smbshare/Get-SmbMultichannelConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbMultichannelConnection.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbmultichannelconnection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbmultichannelconnection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbMultichannelConnection --- diff --git a/docset/winserver2019-ps/smbshare/Get-SmbMultichannelConstraint.md b/docset/winserver2019-ps/smbshare/Get-SmbMultichannelConstraint.md index b0d59ff08f..d2e37030c4 100644 --- a/docset/winserver2019-ps/smbshare/Get-SmbMultichannelConstraint.md +++ b/docset/winserver2019-ps/smbshare/Get-SmbMultichannelConstraint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbMultichannelConstraint.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbmultichannelconstraint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbmultichannelconstraint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbMultichannelConstraint --- diff --git a/docset/winserver2019-ps/smbshare/Get-SmbOpenFile.md b/docset/winserver2019-ps/smbshare/Get-SmbOpenFile.md index 6ea8a65ef1..4e10bf5253 100644 --- a/docset/winserver2019-ps/smbshare/Get-SmbOpenFile.md +++ b/docset/winserver2019-ps/smbshare/Get-SmbOpenFile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbOpenFile.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbopenfile?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbopenfile?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbOpenFile --- diff --git a/docset/winserver2019-ps/smbshare/Get-SmbServerConfiguration.md b/docset/winserver2019-ps/smbshare/Get-SmbServerConfiguration.md index 6b676c8f83..0693603d6d 100644 --- a/docset/winserver2019-ps/smbshare/Get-SmbServerConfiguration.md +++ b/docset/winserver2019-ps/smbshare/Get-SmbServerConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbServerConfiguration.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbserverconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbserverconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbServerConfiguration --- diff --git a/docset/winserver2019-ps/smbshare/Get-SmbServerNetworkInterface.md b/docset/winserver2019-ps/smbshare/Get-SmbServerNetworkInterface.md index 3f564a5f5b..d28264acb5 100644 --- a/docset/winserver2019-ps/smbshare/Get-SmbServerNetworkInterface.md +++ b/docset/winserver2019-ps/smbshare/Get-SmbServerNetworkInterface.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbServerNetworkInterface.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbservernetworkinterface?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbservernetworkinterface?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbServerNetworkInterface --- diff --git a/docset/winserver2019-ps/smbshare/Get-SmbSession.md b/docset/winserver2019-ps/smbshare/Get-SmbSession.md index 95c3eb5b5e..66fc671f97 100644 --- a/docset/winserver2019-ps/smbshare/Get-SmbSession.md +++ b/docset/winserver2019-ps/smbshare/Get-SmbSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbSession.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbsession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbsession?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbSession --- diff --git a/docset/winserver2019-ps/smbshare/Get-SmbShare.md b/docset/winserver2019-ps/smbshare/Get-SmbShare.md index bc70a78a97..b2225e574c 100644 --- a/docset/winserver2019-ps/smbshare/Get-SmbShare.md +++ b/docset/winserver2019-ps/smbshare/Get-SmbShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbShare.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbshare?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbshare?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbShare --- diff --git a/docset/winserver2019-ps/smbshare/Get-SmbShareAccess.md b/docset/winserver2019-ps/smbshare/Get-SmbShareAccess.md index 4328fe8a79..59e85dc426 100644 --- a/docset/winserver2019-ps/smbshare/Get-SmbShareAccess.md +++ b/docset/winserver2019-ps/smbshare/Get-SmbShareAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbShare.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbshareaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbshareaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbShareAccess --- diff --git a/docset/winserver2019-ps/smbshare/Grant-SmbShareAccess.md b/docset/winserver2019-ps/smbshare/Grant-SmbShareAccess.md index 1c149c20d7..c026a4a464 100644 --- a/docset/winserver2019-ps/smbshare/Grant-SmbShareAccess.md +++ b/docset/winserver2019-ps/smbshare/Grant-SmbShareAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbShare.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/grant-smbshareaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/grant-smbshareaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Grant-SmbShareAccess --- diff --git a/docset/winserver2019-ps/smbshare/New-SmbMapping.md b/docset/winserver2019-ps/smbshare/New-SmbMapping.md index e065649434..f20b966cfe 100644 --- a/docset/winserver2019-ps/smbshare/New-SmbMapping.md +++ b/docset/winserver2019-ps/smbshare/New-SmbMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbMapping.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/new-smbmapping?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/new-smbmapping?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-SmbMapping --- diff --git a/docset/winserver2019-ps/smbshare/New-SmbMultichannelConstraint.md b/docset/winserver2019-ps/smbshare/New-SmbMultichannelConstraint.md index 6fa3ea84a1..be9a5d1d55 100644 --- a/docset/winserver2019-ps/smbshare/New-SmbMultichannelConstraint.md +++ b/docset/winserver2019-ps/smbshare/New-SmbMultichannelConstraint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbMultichannelConstraint.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/new-smbmultichannelconstraint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/new-smbmultichannelconstraint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-SmbMultichannelConstraint --- diff --git a/docset/winserver2019-ps/smbshare/New-SmbShare.md b/docset/winserver2019-ps/smbshare/New-SmbShare.md index 975baa0655..782c29dd0a 100644 --- a/docset/winserver2019-ps/smbshare/New-SmbShare.md +++ b/docset/winserver2019-ps/smbshare/New-SmbShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbShare.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/new-smbshare?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/new-smbshare?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-SmbShare --- diff --git a/docset/winserver2019-ps/smbshare/Remove-SmbBandwidthLimit.md b/docset/winserver2019-ps/smbshare/Remove-SmbBandwidthLimit.md index f75841298c..795cbf3ce9 100644 --- a/docset/winserver2019-ps/smbshare/Remove-SmbBandwidthLimit.md +++ b/docset/winserver2019-ps/smbshare/Remove-SmbBandwidthLimit.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbBandwidthLimit.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/remove-smbbandwidthlimit?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/remove-smbbandwidthlimit?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-SmbBandwidthLimit --- diff --git a/docset/winserver2019-ps/smbshare/Remove-SmbMapping.md b/docset/winserver2019-ps/smbshare/Remove-SmbMapping.md index 734c05392b..eb09be2863 100644 --- a/docset/winserver2019-ps/smbshare/Remove-SmbMapping.md +++ b/docset/winserver2019-ps/smbshare/Remove-SmbMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbMapping.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/remove-smbmapping?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/remove-smbmapping?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-SmbMapping --- diff --git a/docset/winserver2019-ps/smbshare/Remove-SmbMultichannelConstraint.md b/docset/winserver2019-ps/smbshare/Remove-SmbMultichannelConstraint.md index 765db53fca..5aed37922d 100644 --- a/docset/winserver2019-ps/smbshare/Remove-SmbMultichannelConstraint.md +++ b/docset/winserver2019-ps/smbshare/Remove-SmbMultichannelConstraint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbMultichannelConstraint.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/remove-smbmultichannelconstraint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/remove-smbmultichannelconstraint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-SmbMultichannelConstraint --- diff --git a/docset/winserver2019-ps/smbshare/Remove-SmbShare.md b/docset/winserver2019-ps/smbshare/Remove-SmbShare.md index cb9ab2a573..8bff096c4d 100644 --- a/docset/winserver2019-ps/smbshare/Remove-SmbShare.md +++ b/docset/winserver2019-ps/smbshare/Remove-SmbShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbShare.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/remove-smbshare?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/remove-smbshare?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-SmbShare --- diff --git a/docset/winserver2019-ps/smbshare/Revoke-SmbShareAccess.md b/docset/winserver2019-ps/smbshare/Revoke-SmbShareAccess.md index 5ace963649..a45cc470c3 100644 --- a/docset/winserver2019-ps/smbshare/Revoke-SmbShareAccess.md +++ b/docset/winserver2019-ps/smbshare/Revoke-SmbShareAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbShare.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/revoke-smbshareaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/revoke-smbshareaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Revoke-SmbShareAccess --- diff --git a/docset/winserver2019-ps/smbshare/Set-SmbBandwidthLimit.md b/docset/winserver2019-ps/smbshare/Set-SmbBandwidthLimit.md index fddbb16fc4..560cda959f 100644 --- a/docset/winserver2019-ps/smbshare/Set-SmbBandwidthLimit.md +++ b/docset/winserver2019-ps/smbshare/Set-SmbBandwidthLimit.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbBandwidthLimit.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/set-smbbandwidthlimit?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/set-smbbandwidthlimit?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SmbBandwidthLimit --- diff --git a/docset/winserver2019-ps/smbshare/Set-SmbClientConfiguration.md b/docset/winserver2019-ps/smbshare/Set-SmbClientConfiguration.md index f424767666..280c8b6f45 100644 --- a/docset/winserver2019-ps/smbshare/Set-SmbClientConfiguration.md +++ b/docset/winserver2019-ps/smbshare/Set-SmbClientConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbClientConfiguration.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/set-smbclientconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/set-smbclientconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SmbClientConfiguration --- diff --git a/docset/winserver2019-ps/smbshare/Set-SmbPathAcl.md b/docset/winserver2019-ps/smbshare/Set-SmbPathAcl.md index 1b820d03bb..0568143b61 100644 --- a/docset/winserver2019-ps/smbshare/Set-SmbPathAcl.md +++ b/docset/winserver2019-ps/smbshare/Set-SmbPathAcl.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbScriptModule-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/set-smbpathacl?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/set-smbpathacl?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SmbPathAcl --- diff --git a/docset/winserver2019-ps/smbshare/Set-SmbServerConfiguration.md b/docset/winserver2019-ps/smbshare/Set-SmbServerConfiguration.md index fb3b658015..d141bff908 100644 --- a/docset/winserver2019-ps/smbshare/Set-SmbServerConfiguration.md +++ b/docset/winserver2019-ps/smbshare/Set-SmbServerConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbServerConfiguration.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/set-smbserverconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/set-smbserverconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SmbServerConfiguration --- diff --git a/docset/winserver2019-ps/smbshare/Set-SmbShare.md b/docset/winserver2019-ps/smbshare/Set-SmbShare.md index 5ed3c9657b..3464e7a866 100644 --- a/docset/winserver2019-ps/smbshare/Set-SmbShare.md +++ b/docset/winserver2019-ps/smbshare/Set-SmbShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbShare.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/set-smbshare?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/set-smbshare?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SmbShare --- diff --git a/docset/winserver2019-ps/smbshare/Unblock-SmbShareAccess.md b/docset/winserver2019-ps/smbshare/Unblock-SmbShareAccess.md index 13416c7d59..b8169759c1 100644 --- a/docset/winserver2019-ps/smbshare/Unblock-SmbShareAccess.md +++ b/docset/winserver2019-ps/smbshare/Unblock-SmbShareAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbShare.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/unblock-smbshareaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/unblock-smbshareaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unblock-SmbShareAccess --- diff --git a/docset/winserver2019-ps/smbshare/Update-SmbMultichannelConnection.md b/docset/winserver2019-ps/smbshare/Update-SmbMultichannelConnection.md index 17fbc08377..6cbbe2035c 100644 --- a/docset/winserver2019-ps/smbshare/Update-SmbMultichannelConnection.md +++ b/docset/winserver2019-ps/smbshare/Update-SmbMultichannelConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbMultichannelConnection.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/update-smbmultichannelconnection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/update-smbmultichannelconnection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-SmbMultichannelConnection --- diff --git a/docset/winserver2019-ps/smbwitness/Get-SmbWitnessClient.md b/docset/winserver2019-ps/smbwitness/Get-SmbWitnessClient.md index 1cc2fcdff5..32e2bf3029 100644 --- a/docset/winserver2019-ps/smbwitness/Get-SmbWitnessClient.md +++ b/docset/winserver2019-ps/smbwitness/Get-SmbWitnessClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbWitnessWmiClient.cdxml-help.xml Module Name: SmbWitness ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbwitness/get-smbwitnessclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbwitness/get-smbwitnessclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbWitnessClient --- diff --git a/docset/winserver2019-ps/smbwitness/Move-SmbWitnessClient.md b/docset/winserver2019-ps/smbwitness/Move-SmbWitnessClient.md index 612d4a1414..c792bfee01 100644 --- a/docset/winserver2019-ps/smbwitness/Move-SmbWitnessClient.md +++ b/docset/winserver2019-ps/smbwitness/Move-SmbWitnessClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbWitnessWmiClient.cdxml-help.xml Module Name: SmbWitness ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbwitness/move-smbwitnessclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbwitness/move-smbwitnessclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-SmbWitnessClient --- diff --git a/docset/winserver2019-ps/smisconfig/Register-SmisProvider.md b/docset/winserver2019-ps/smisconfig/Register-SmisProvider.md index d5f735f3a3..7ba5a232ca 100644 --- a/docset/winserver2019-ps/smisconfig/Register-SmisProvider.md +++ b/docset/winserver2019-ps/smisconfig/Register-SmisProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.StorageManagementService.Configuration.Cmdlets.dll-Help.xml Module Name: SMISConfig ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/smisconfig/register-smisprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smisconfig/register-smisprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Register-SmisProvider --- diff --git a/docset/winserver2019-ps/smisconfig/Search-SmisProvider.md b/docset/winserver2019-ps/smisconfig/Search-SmisProvider.md index 971ce0d288..9d0c35f208 100644 --- a/docset/winserver2019-ps/smisconfig/Search-SmisProvider.md +++ b/docset/winserver2019-ps/smisconfig/Search-SmisProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_SmisProvider_v1.0.cdxml-help.xml Module Name: SMISConfig ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/smisconfig/search-smisprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smisconfig/search-smisprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Search-SmisProvider --- diff --git a/docset/winserver2019-ps/smisconfig/Unregister-SmisProvider.md b/docset/winserver2019-ps/smisconfig/Unregister-SmisProvider.md index 5e6eca5cc5..3b20143ce5 100644 --- a/docset/winserver2019-ps/smisconfig/Unregister-SmisProvider.md +++ b/docset/winserver2019-ps/smisconfig/Unregister-SmisProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_SmisProvider_v1.0.cdxml-help.xml Module Name: SMISConfig ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/smisconfig/unregister-smisprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smisconfig/unregister-smisprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unregister-SmisProvider --- diff --git a/docset/winserver2019-ps/softwareinventorylogging/Get-SilComputer.md b/docset/winserver2019-ps/softwareinventorylogging/Get-SilComputer.md index 61200af885..020d259282 100644 --- a/docset/winserver2019-ps/softwareinventorylogging/Get-SilComputer.md +++ b/docset/winserver2019-ps/softwareinventorylogging/Get-SilComputer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftSil_Computer.cdxml-help.xml Module Name: SoftwareInventoryLogging ms.date: 01/24/2017 -online version: https://docs.microsoft.com/powershell/module/softwareinventorylogging/get-silcomputer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/softwareinventorylogging/get-silcomputer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SilComputer --- diff --git a/docset/winserver2019-ps/softwareinventorylogging/Get-SilData.md b/docset/winserver2019-ps/softwareinventorylogging/Get-SilData.md index c2b4aa2e3d..f44d61edde 100644 --- a/docset/winserver2019-ps/softwareinventorylogging/Get-SilData.md +++ b/docset/winserver2019-ps/softwareinventorylogging/Get-SilData.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Msft_MiStreamTasks.cdxml-help.xml Module Name: SoftwareInventoryLogging ms.date: 01/24/2017 -online version: https://docs.microsoft.com/powershell/module/softwareinventorylogging/get-sildata?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/softwareinventorylogging/get-sildata?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SilData --- diff --git a/docset/winserver2019-ps/softwareinventorylogging/Get-SilLogging.md b/docset/winserver2019-ps/softwareinventorylogging/Get-SilLogging.md index 269220467b..b8260cf715 100644 --- a/docset/winserver2019-ps/softwareinventorylogging/Get-SilLogging.md +++ b/docset/winserver2019-ps/softwareinventorylogging/Get-SilLogging.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftSil_ManagementTasks-help.xml Module Name: SoftwareInventoryLogging ms.date: 01/24/2017 -online version: https://docs.microsoft.com/powershell/module/softwareinventorylogging/get-sillogging?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/softwareinventorylogging/get-sillogging?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SilLogging --- diff --git a/docset/winserver2019-ps/softwareinventorylogging/Get-SilSoftware.md b/docset/winserver2019-ps/softwareinventorylogging/Get-SilSoftware.md index 729b91782a..83b8d0c77c 100644 --- a/docset/winserver2019-ps/softwareinventorylogging/Get-SilSoftware.md +++ b/docset/winserver2019-ps/softwareinventorylogging/Get-SilSoftware.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftSil_Software.cdxml-help.xml Module Name: SoftwareInventoryLogging ms.date: 01/24/2017 -online version: https://docs.microsoft.com/powershell/module/softwareinventorylogging/get-silsoftware?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/softwareinventorylogging/get-silsoftware?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SilSoftware --- diff --git a/docset/winserver2019-ps/softwareinventorylogging/Get-SilUalAccess.md b/docset/winserver2019-ps/softwareinventorylogging/Get-SilUalAccess.md index 70e09a4467..316d078d5f 100644 --- a/docset/winserver2019-ps/softwareinventorylogging/Get-SilUalAccess.md +++ b/docset/winserver2019-ps/softwareinventorylogging/Get-SilUalAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftSil_UalAccess.cdxml-help.xml Module Name: SoftwareInventoryLogging ms.date: 01/24/2017 -online version: https://docs.microsoft.com/powershell/module/softwareinventorylogging/get-silualaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/softwareinventorylogging/get-silualaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SilUalAccess --- diff --git a/docset/winserver2019-ps/softwareinventorylogging/Get-SilWindowsUpdate.md b/docset/winserver2019-ps/softwareinventorylogging/Get-SilWindowsUpdate.md index f48bb81761..82ed390a46 100644 --- a/docset/winserver2019-ps/softwareinventorylogging/Get-SilWindowsUpdate.md +++ b/docset/winserver2019-ps/softwareinventorylogging/Get-SilWindowsUpdate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftSil_WindowsUpdate.cdxml-help.xml Module Name: SoftwareInventoryLogging ms.date: 01/24/2017 -online version: https://docs.microsoft.com/powershell/module/softwareinventorylogging/get-silwindowsupdate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/softwareinventorylogging/get-silwindowsupdate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SilWindowsUpdate --- diff --git a/docset/winserver2019-ps/softwareinventorylogging/Publish-SilData.md b/docset/winserver2019-ps/softwareinventorylogging/Publish-SilData.md index 9c031c498e..bbd3fcbe61 100644 --- a/docset/winserver2019-ps/softwareinventorylogging/Publish-SilData.md +++ b/docset/winserver2019-ps/softwareinventorylogging/Publish-SilData.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Msft_MiStreamTasks.cdxml-help.xml Module Name: SoftwareInventoryLogging ms.date: 01/24/2017 -online version: https://docs.microsoft.com/powershell/module/softwareinventorylogging/publish-sildata?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/softwareinventorylogging/publish-sildata?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Publish-SilData --- diff --git a/docset/winserver2019-ps/softwareinventorylogging/Set-SilLogging.md b/docset/winserver2019-ps/softwareinventorylogging/Set-SilLogging.md index 93d749472f..d7f84a803c 100644 --- a/docset/winserver2019-ps/softwareinventorylogging/Set-SilLogging.md +++ b/docset/winserver2019-ps/softwareinventorylogging/Set-SilLogging.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftSil_ManagementTasks-help.xml Module Name: SoftwareInventoryLogging ms.date: 01/24/2017 -online version: https://docs.microsoft.com/powershell/module/softwareinventorylogging/set-sillogging?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/softwareinventorylogging/set-sillogging?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SilLogging --- diff --git a/docset/winserver2019-ps/softwareinventorylogging/Start-SilLogging.md b/docset/winserver2019-ps/softwareinventorylogging/Start-SilLogging.md index 965d9ac9e3..a74fa16b62 100644 --- a/docset/winserver2019-ps/softwareinventorylogging/Start-SilLogging.md +++ b/docset/winserver2019-ps/softwareinventorylogging/Start-SilLogging.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftSil_ManagementTasks-help.xml Module Name: SoftwareInventoryLogging ms.date: 01/24/2017 -online version: https://docs.microsoft.com/powershell/module/softwareinventorylogging/start-sillogging?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/softwareinventorylogging/start-sillogging?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-SilLogging --- diff --git a/docset/winserver2019-ps/softwareinventorylogging/Stop-SilLogging.md b/docset/winserver2019-ps/softwareinventorylogging/Stop-SilLogging.md index f6522aa5e4..142399e32b 100644 --- a/docset/winserver2019-ps/softwareinventorylogging/Stop-SilLogging.md +++ b/docset/winserver2019-ps/softwareinventorylogging/Stop-SilLogging.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftSil_ManagementTasks-help.xml Module Name: SoftwareInventoryLogging ms.date: 01/24/2017 -online version: https://docs.microsoft.com/powershell/module/softwareinventorylogging/stop-sillogging?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/softwareinventorylogging/stop-sillogging?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-SilLogging --- diff --git a/docset/winserver2019-ps/startlayout/Export-StartLayout.md b/docset/winserver2019-ps/startlayout/Export-StartLayout.md index 2caf8a7704..3de4202e78 100644 --- a/docset/winserver2019-ps/startlayout/Export-StartLayout.md +++ b/docset/winserver2019-ps/startlayout/Export-StartLayout.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.StartLayout.Commands.dll-Help.xml Module Name: StartLayout ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/startlayout/export-startlayout?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/startlayout/export-startlayout?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-StartLayout --- diff --git a/docset/winserver2019-ps/startlayout/Get-StartApps.md b/docset/winserver2019-ps/startlayout/Get-StartApps.md index 5d31620090..d8fefbf3aa 100644 --- a/docset/winserver2019-ps/startlayout/Get-StartApps.md +++ b/docset/winserver2019-ps/startlayout/Get-StartApps.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.StartLayout.Commands.dll-help.xml Module Name: StartLayout ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/startlayout/get-startapps?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/startlayout/get-startapps?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StartApps --- diff --git a/docset/winserver2019-ps/startlayout/Import-StartLayout.md b/docset/winserver2019-ps/startlayout/Import-StartLayout.md index 03a4ab9a8c..81ab9e52ef 100644 --- a/docset/winserver2019-ps/startlayout/Import-StartLayout.md +++ b/docset/winserver2019-ps/startlayout/Import-StartLayout.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.StartLayout.Commands.dll-Help.xml Module Name: StartLayout ms.date: 09/13/2018 -online version: https://docs.microsoft.com/powershell/module/startlayout/import-startlayout?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/startlayout/import-startlayout?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-StartLayout --- diff --git a/docset/winserver2019-ps/storage/Add-InitiatorIdToMaskingSet.md b/docset/winserver2019-ps/storage/Add-InitiatorIdToMaskingSet.md index 618943625e..2c01d9caae 100644 --- a/docset/winserver2019-ps/storage/Add-InitiatorIdToMaskingSet.md +++ b/docset/winserver2019-ps/storage/Add-InitiatorIdToMaskingSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MaskingSet.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/add-initiatoridtomaskingset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/add-initiatoridtomaskingset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-InitiatorIdToMaskingSet --- diff --git a/docset/winserver2019-ps/storage/Add-PartitionAccessPath.md b/docset/winserver2019-ps/storage/Add-PartitionAccessPath.md index f8be4f13cc..afdeab17f3 100644 --- a/docset/winserver2019-ps/storage/Add-PartitionAccessPath.md +++ b/docset/winserver2019-ps/storage/Add-PartitionAccessPath.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Partition.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/add-partitionaccesspath?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/add-partitionaccesspath?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-PartitionAccessPath --- diff --git a/docset/winserver2019-ps/storage/Add-PhysicalDisk.md b/docset/winserver2019-ps/storage/Add-PhysicalDisk.md index 3f84cd8d73..d22796a0e7 100644 --- a/docset/winserver2019-ps/storage/Add-PhysicalDisk.md +++ b/docset/winserver2019-ps/storage/Add-PhysicalDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageCmdlets.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/add-physicaldisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/add-physicaldisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-PhysicalDisk --- diff --git a/docset/winserver2019-ps/storage/Add-TargetPortToMaskingSet.md b/docset/winserver2019-ps/storage/Add-TargetPortToMaskingSet.md index f3cfe84240..8ef2f234c1 100644 --- a/docset/winserver2019-ps/storage/Add-TargetPortToMaskingSet.md +++ b/docset/winserver2019-ps/storage/Add-TargetPortToMaskingSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MaskingSet.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/add-targetporttomaskingset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/add-targetporttomaskingset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-TargetPortToMaskingSet --- diff --git a/docset/winserver2019-ps/storage/Add-VirtualDiskToMaskingSet.md b/docset/winserver2019-ps/storage/Add-VirtualDiskToMaskingSet.md index 4f138f93b3..cf0c479b10 100644 --- a/docset/winserver2019-ps/storage/Add-VirtualDiskToMaskingSet.md +++ b/docset/winserver2019-ps/storage/Add-VirtualDiskToMaskingSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MaskingSet.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/add-virtualdisktomaskingset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/add-virtualdisktomaskingset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VirtualDiskToMaskingSet --- diff --git a/docset/winserver2019-ps/storage/Block-FileShareAccess.md b/docset/winserver2019-ps/storage/Block-FileShareAccess.md index e8ab153c42..e2d4d7de00 100644 --- a/docset/winserver2019-ps/storage/Block-FileShareAccess.md +++ b/docset/winserver2019-ps/storage/Block-FileShareAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FileShare.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/block-fileshareaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/block-fileshareaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Block-FileShareAccess --- diff --git a/docset/winserver2019-ps/storage/Clear-Disk.md b/docset/winserver2019-ps/storage/Clear-Disk.md index 7a36ac579d..9b9e3edc09 100644 --- a/docset/winserver2019-ps/storage/Clear-Disk.md +++ b/docset/winserver2019-ps/storage/Clear-Disk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Disk.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/clear-disk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/clear-disk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-Disk --- diff --git a/docset/winserver2019-ps/storage/Clear-FileStorageTier.md b/docset/winserver2019-ps/storage/Clear-FileStorageTier.md index 802dfee240..0519953d39 100644 --- a/docset/winserver2019-ps/storage/Clear-FileStorageTier.md +++ b/docset/winserver2019-ps/storage/Clear-FileStorageTier.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FileStorageTier.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/clear-filestoragetier?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/clear-filestoragetier?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-FileStorageTier --- diff --git a/docset/winserver2019-ps/storage/Connect-VirtualDisk.md b/docset/winserver2019-ps/storage/Connect-VirtualDisk.md index 7ac9473536..3bb4b96f5a 100644 --- a/docset/winserver2019-ps/storage/Connect-VirtualDisk.md +++ b/docset/winserver2019-ps/storage/Connect-VirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: VirtualDisk.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/connect-virtualdisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/connect-virtualdisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Connect-VirtualDisk --- diff --git a/docset/winserver2019-ps/storage/Debug-FileShare.md b/docset/winserver2019-ps/storage/Debug-FileShare.md index 49303e9fb1..5ae25223f0 100644 --- a/docset/winserver2019-ps/storage/Debug-FileShare.md +++ b/docset/winserver2019-ps/storage/Debug-FileShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/debug-fileshare?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/debug-fileshare?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Debug-FileShare --- diff --git a/docset/winserver2019-ps/storage/Debug-StorageSubSystem.md b/docset/winserver2019-ps/storage/Debug-StorageSubSystem.md index f72a4a0553..524529f888 100644 --- a/docset/winserver2019-ps/storage/Debug-StorageSubSystem.md +++ b/docset/winserver2019-ps/storage/Debug-StorageSubSystem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/debug-storagesubsystem?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/debug-storagesubsystem?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Debug-StorageSubSystem --- diff --git a/docset/winserver2019-ps/storage/Debug-Volume.md b/docset/winserver2019-ps/storage/Debug-Volume.md index f5043e297e..3443d32c06 100644 --- a/docset/winserver2019-ps/storage/Debug-Volume.md +++ b/docset/winserver2019-ps/storage/Debug-Volume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/debug-volume?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/debug-volume?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Debug-Volume --- diff --git a/docset/winserver2019-ps/storage/Disable-PhysicalDiskIdentification.md b/docset/winserver2019-ps/storage/Disable-PhysicalDiskIdentification.md index ec4e51e354..c308916268 100644 --- a/docset/winserver2019-ps/storage/Disable-PhysicalDiskIdentification.md +++ b/docset/winserver2019-ps/storage/Disable-PhysicalDiskIdentification.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/disable-physicaldiskidentification?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/disable-physicaldiskidentification?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-PhysicalDiskIdentification --- diff --git a/docset/winserver2019-ps/storage/Disable-StorageEnclosureIdentification.md b/docset/winserver2019-ps/storage/Disable-StorageEnclosureIdentification.md index d1b6874685..601fd552c5 100644 --- a/docset/winserver2019-ps/storage/Disable-StorageEnclosureIdentification.md +++ b/docset/winserver2019-ps/storage/Disable-StorageEnclosureIdentification.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageEnclosure.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/disable-storageenclosureidentification?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/disable-storageenclosureidentification?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-StorageEnclosureIdentification --- diff --git a/docset/winserver2019-ps/storage/Disable-StorageHighAvailability.md b/docset/winserver2019-ps/storage/Disable-StorageHighAvailability.md index f47edbf1a2..1d41f12064 100644 --- a/docset/winserver2019-ps/storage/Disable-StorageHighAvailability.md +++ b/docset/winserver2019-ps/storage/Disable-StorageHighAvailability.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Disk.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/disable-storagehighavailability?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/disable-storagehighavailability?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-StorageHighAvailability --- diff --git a/docset/winserver2019-ps/storage/Disable-StorageMaintenanceMode.md b/docset/winserver2019-ps/storage/Disable-StorageMaintenanceMode.md index 71b12184e8..dba2488de8 100644 --- a/docset/winserver2019-ps/storage/Disable-StorageMaintenanceMode.md +++ b/docset/winserver2019-ps/storage/Disable-StorageMaintenanceMode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/disable-storagemaintenancemode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/disable-storagemaintenancemode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-StorageMaintenanceMode --- diff --git a/docset/winserver2019-ps/storage/Disconnect-VirtualDisk.md b/docset/winserver2019-ps/storage/Disconnect-VirtualDisk.md index 1c8f3dd1a0..e34cea8ba2 100644 --- a/docset/winserver2019-ps/storage/Disconnect-VirtualDisk.md +++ b/docset/winserver2019-ps/storage/Disconnect-VirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: VirtualDisk.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/disconnect-virtualdisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/disconnect-virtualdisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disconnect-VirtualDisk --- diff --git a/docset/winserver2019-ps/storage/Dismount-DiskImage.md b/docset/winserver2019-ps/storage/Dismount-DiskImage.md index d4c94290a0..085953dee9 100644 --- a/docset/winserver2019-ps/storage/Dismount-DiskImage.md +++ b/docset/winserver2019-ps/storage/Dismount-DiskImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DiskImage.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/dismount-diskimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/dismount-diskimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Dismount-DiskImage --- diff --git a/docset/winserver2019-ps/storage/Enable-PhysicalDiskIdentification.md b/docset/winserver2019-ps/storage/Enable-PhysicalDiskIdentification.md index 7693ee40c7..9388507f0d 100644 --- a/docset/winserver2019-ps/storage/Enable-PhysicalDiskIdentification.md +++ b/docset/winserver2019-ps/storage/Enable-PhysicalDiskIdentification.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/enable-physicaldiskidentification?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/enable-physicaldiskidentification?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-PhysicalDiskIdentification --- diff --git a/docset/winserver2019-ps/storage/Enable-StorageEnclosureIdentification.md b/docset/winserver2019-ps/storage/Enable-StorageEnclosureIdentification.md index 17251dc067..c6d4e43bdf 100644 --- a/docset/winserver2019-ps/storage/Enable-StorageEnclosureIdentification.md +++ b/docset/winserver2019-ps/storage/Enable-StorageEnclosureIdentification.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageEnclosure.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/enable-storageenclosureidentification?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/enable-storageenclosureidentification?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-StorageEnclosureIdentification --- diff --git a/docset/winserver2019-ps/storage/Enable-StorageHighAvailability.md b/docset/winserver2019-ps/storage/Enable-StorageHighAvailability.md index 12f8410d0f..ae1eae85cf 100644 --- a/docset/winserver2019-ps/storage/Enable-StorageHighAvailability.md +++ b/docset/winserver2019-ps/storage/Enable-StorageHighAvailability.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Disk.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/enable-storagehighavailability?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/enable-storagehighavailability?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-StorageHighAvailability --- diff --git a/docset/winserver2019-ps/storage/Enable-StorageMaintenanceMode.md b/docset/winserver2019-ps/storage/Enable-StorageMaintenanceMode.md index 245cd2024a..5d5bb1ffb5 100644 --- a/docset/winserver2019-ps/storage/Enable-StorageMaintenanceMode.md +++ b/docset/winserver2019-ps/storage/Enable-StorageMaintenanceMode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/enable-storagemaintenancemode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/enable-storagemaintenancemode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-StorageMaintenanceMode --- diff --git a/docset/winserver2019-ps/storage/Format-Volume.md b/docset/winserver2019-ps/storage/Format-Volume.md index a768c87cc7..1c4b6a8c5f 100644 --- a/docset/winserver2019-ps/storage/Format-Volume.md +++ b/docset/winserver2019-ps/storage/Format-Volume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Volume.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/format-volume?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/format-volume?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Format-Volume --- diff --git a/docset/winserver2019-ps/storage/Get-DedupProperties.md b/docset/winserver2019-ps/storage/Get-DedupProperties.md index 2486dad3d7..4faa01742e 100644 --- a/docset/winserver2019-ps/storage/Get-DedupProperties.md +++ b/docset/winserver2019-ps/storage/Get-DedupProperties.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Volume.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-dedupproperties?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-dedupproperties?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DedupProperties --- diff --git a/docset/winserver2019-ps/storage/Get-Disk.md b/docset/winserver2019-ps/storage/Get-Disk.md index a492434d05..c5c50e9980 100644 --- a/docset/winserver2019-ps/storage/Get-Disk.md +++ b/docset/winserver2019-ps/storage/Get-Disk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Disk.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-disk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-disk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-Disk --- diff --git a/docset/winserver2019-ps/storage/Get-DiskImage.md b/docset/winserver2019-ps/storage/Get-DiskImage.md index 24f0bfed1b..895daee383 100644 --- a/docset/winserver2019-ps/storage/Get-DiskImage.md +++ b/docset/winserver2019-ps/storage/Get-DiskImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DiskImage.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-diskimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-diskimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DiskImage --- diff --git a/docset/winserver2019-ps/storage/Get-DiskStorageNodeView.md b/docset/winserver2019-ps/storage/Get-DiskStorageNodeView.md index d0cb843569..6bfa114786 100644 --- a/docset/winserver2019-ps/storage/Get-DiskStorageNodeView.md +++ b/docset/winserver2019-ps/storage/Get-DiskStorageNodeView.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-diskstoragenodeview?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-diskstoragenodeview?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DiskStorageNodeView --- diff --git a/docset/winserver2019-ps/storage/Get-FileIntegrity.md b/docset/winserver2019-ps/storage/Get-FileIntegrity.md index 6f04a1c190..9a1d85fbcd 100644 --- a/docset/winserver2019-ps/storage/Get-FileIntegrity.md +++ b/docset/winserver2019-ps/storage/Get-FileIntegrity.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FileIntegrity.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-fileintegrity?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-fileintegrity?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FileIntegrity --- diff --git a/docset/winserver2019-ps/storage/Get-FileShare.md b/docset/winserver2019-ps/storage/Get-FileShare.md index 0be3368d92..0c540d9657 100644 --- a/docset/winserver2019-ps/storage/Get-FileShare.md +++ b/docset/winserver2019-ps/storage/Get-FileShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FileShare.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-fileshare?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-fileshare?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FileShare --- diff --git a/docset/winserver2019-ps/storage/Get-FileShareAccessControlEntry.md b/docset/winserver2019-ps/storage/Get-FileShareAccessControlEntry.md index 5e01abdb77..1d857bb3e7 100644 --- a/docset/winserver2019-ps/storage/Get-FileShareAccessControlEntry.md +++ b/docset/winserver2019-ps/storage/Get-FileShareAccessControlEntry.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FileShare.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-fileshareaccesscontrolentry?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-fileshareaccesscontrolentry?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FileShareAccessControlEntry --- diff --git a/docset/winserver2019-ps/storage/Get-FileStorageTier.md b/docset/winserver2019-ps/storage/Get-FileStorageTier.md index c94ed78413..7a877372c6 100644 --- a/docset/winserver2019-ps/storage/Get-FileStorageTier.md +++ b/docset/winserver2019-ps/storage/Get-FileStorageTier.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FileStorageTier.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-filestoragetier?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-filestoragetier?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FileStorageTier --- diff --git a/docset/winserver2019-ps/storage/Get-InitiatorId.md b/docset/winserver2019-ps/storage/Get-InitiatorId.md index 9fd4f9cc49..dd010d73f7 100644 --- a/docset/winserver2019-ps/storage/Get-InitiatorId.md +++ b/docset/winserver2019-ps/storage/Get-InitiatorId.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: InitiatorId.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-initiatorid?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-initiatorid?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-InitiatorId --- diff --git a/docset/winserver2019-ps/storage/Get-InitiatorPort.md b/docset/winserver2019-ps/storage/Get-InitiatorPort.md index 10de6b2428..f636dadff7 100644 --- a/docset/winserver2019-ps/storage/Get-InitiatorPort.md +++ b/docset/winserver2019-ps/storage/Get-InitiatorPort.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: InitiatorPort.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-initiatorport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-initiatorport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-InitiatorPort --- diff --git a/docset/winserver2019-ps/storage/Get-MaskingSet.md b/docset/winserver2019-ps/storage/Get-MaskingSet.md index 6dfe484a60..d1062a62fa 100644 --- a/docset/winserver2019-ps/storage/Get-MaskingSet.md +++ b/docset/winserver2019-ps/storage/Get-MaskingSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MaskingSet.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-maskingset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-maskingset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MaskingSet --- diff --git a/docset/winserver2019-ps/storage/Get-OffloadDataTransferSetting.md b/docset/winserver2019-ps/storage/Get-OffloadDataTransferSetting.md index a9bad81747..a0f5ca6c28 100644 --- a/docset/winserver2019-ps/storage/Get-OffloadDataTransferSetting.md +++ b/docset/winserver2019-ps/storage/Get-OffloadDataTransferSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: OffloadDataTransferSetting.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-offloaddatatransfersetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-offloaddatatransfersetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-OffloadDataTransferSetting --- diff --git a/docset/winserver2019-ps/storage/Get-Partition.md b/docset/winserver2019-ps/storage/Get-Partition.md index cb7c57a7d6..55fdb43723 100644 --- a/docset/winserver2019-ps/storage/Get-Partition.md +++ b/docset/winserver2019-ps/storage/Get-Partition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Partition.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-partition?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-partition?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-Partition --- diff --git a/docset/winserver2019-ps/storage/Get-PartitionSupportedSize.md b/docset/winserver2019-ps/storage/Get-PartitionSupportedSize.md index e8db54400e..b15ef9e159 100644 --- a/docset/winserver2019-ps/storage/Get-PartitionSupportedSize.md +++ b/docset/winserver2019-ps/storage/Get-PartitionSupportedSize.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Partition.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-partitionsupportedsize?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-partitionsupportedsize?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PartitionSupportedSize --- diff --git a/docset/winserver2019-ps/storage/Get-PhysicalDisk.md b/docset/winserver2019-ps/storage/Get-PhysicalDisk.md index 9aac284222..44478fbd95 100644 --- a/docset/winserver2019-ps/storage/Get-PhysicalDisk.md +++ b/docset/winserver2019-ps/storage/Get-PhysicalDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-physicaldisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-physicaldisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PhysicalDisk --- diff --git a/docset/winserver2019-ps/storage/Get-PhysicalDiskStorageNodeView.md b/docset/winserver2019-ps/storage/Get-PhysicalDiskStorageNodeView.md index 1f7683a1fb..02c2feed7c 100644 --- a/docset/winserver2019-ps/storage/Get-PhysicalDiskStorageNodeView.md +++ b/docset/winserver2019-ps/storage/Get-PhysicalDiskStorageNodeView.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-physicaldiskstoragenodeview?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-physicaldiskstoragenodeview?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PhysicalDiskStorageNodeView --- diff --git a/docset/winserver2019-ps/storage/Get-PhysicalExtent.md b/docset/winserver2019-ps/storage/Get-PhysicalExtent.md index 10523dc2a2..4fc1a95bb7 100644 --- a/docset/winserver2019-ps/storage/Get-PhysicalExtent.md +++ b/docset/winserver2019-ps/storage/Get-PhysicalExtent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-physicalextent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-physicalextent?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PhysicalExtent --- diff --git a/docset/winserver2019-ps/storage/Get-PhysicalExtentAssociation.md b/docset/winserver2019-ps/storage/Get-PhysicalExtentAssociation.md index 85d0fad570..61f942fef6 100644 --- a/docset/winserver2019-ps/storage/Get-PhysicalExtentAssociation.md +++ b/docset/winserver2019-ps/storage/Get-PhysicalExtentAssociation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-physicalextentassociation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-physicalextentassociation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PhysicalExtentAssociation --- diff --git a/docset/winserver2019-ps/storage/Get-ResiliencySetting.md b/docset/winserver2019-ps/storage/Get-ResiliencySetting.md index 9038ff3f61..d4365c4d7a 100644 --- a/docset/winserver2019-ps/storage/Get-ResiliencySetting.md +++ b/docset/winserver2019-ps/storage/Get-ResiliencySetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ResiliencySetting.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-resiliencysetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-resiliencysetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ResiliencySetting --- diff --git a/docset/winserver2019-ps/storage/Get-StorageAdvancedProperty.md b/docset/winserver2019-ps/storage/Get-StorageAdvancedProperty.md index e6cafe3299..0d75b08920 100644 --- a/docset/winserver2019-ps/storage/Get-StorageAdvancedProperty.md +++ b/docset/winserver2019-ps/storage/Get-StorageAdvancedProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storageadvancedproperty?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storageadvancedproperty?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageAdvancedProperty --- diff --git a/docset/winserver2019-ps/storage/Get-StorageDiagnosticInfo.md b/docset/winserver2019-ps/storage/Get-StorageDiagnosticInfo.md index a1e7c2e275..888a5db86d 100644 --- a/docset/winserver2019-ps/storage/Get-StorageDiagnosticInfo.md +++ b/docset/winserver2019-ps/storage/Get-StorageDiagnosticInfo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storagediagnosticinfo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagediagnosticinfo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageDiagnosticInfo --- diff --git a/docset/winserver2019-ps/storage/Get-StorageEnclosure.md b/docset/winserver2019-ps/storage/Get-StorageEnclosure.md index f5226d1eec..b4129cb765 100644 --- a/docset/winserver2019-ps/storage/Get-StorageEnclosure.md +++ b/docset/winserver2019-ps/storage/Get-StorageEnclosure.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageEnclosure.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storageenclosure?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storageenclosure?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageEnclosure --- diff --git a/docset/winserver2019-ps/storage/Get-StorageEnclosureStorageNodeView.md b/docset/winserver2019-ps/storage/Get-StorageEnclosureStorageNodeView.md index 925635e932..d874193106 100644 --- a/docset/winserver2019-ps/storage/Get-StorageEnclosureStorageNodeView.md +++ b/docset/winserver2019-ps/storage/Get-StorageEnclosureStorageNodeView.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storageenclosurestoragenodeview?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storageenclosurestoragenodeview?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageEnclosureStorageNodeView --- diff --git a/docset/winserver2019-ps/storage/Get-StorageEnclosureVendorData.md b/docset/winserver2019-ps/storage/Get-StorageEnclosureVendorData.md index b7efbc0178..59e8afbc03 100644 --- a/docset/winserver2019-ps/storage/Get-StorageEnclosureVendorData.md +++ b/docset/winserver2019-ps/storage/Get-StorageEnclosureVendorData.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageEnclosure.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storageenclosurevendordata?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storageenclosurevendordata?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageEnclosureVendorData --- diff --git a/docset/winserver2019-ps/storage/Get-StorageFaultDomain.md b/docset/winserver2019-ps/storage/Get-StorageFaultDomain.md index a361a26130..1f0f2531b5 100644 --- a/docset/winserver2019-ps/storage/Get-StorageFaultDomain.md +++ b/docset/winserver2019-ps/storage/Get-StorageFaultDomain.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storagefaultdomain?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagefaultdomain?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageFaultDomain --- diff --git a/docset/winserver2019-ps/storage/Get-StorageFileServer.md b/docset/winserver2019-ps/storage/Get-StorageFileServer.md index 3d1e355cbf..a68bd0d831 100644 --- a/docset/winserver2019-ps/storage/Get-StorageFileServer.md +++ b/docset/winserver2019-ps/storage/Get-StorageFileServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FileServer.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storagefileserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagefileserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageFileServer --- diff --git a/docset/winserver2019-ps/storage/Get-StorageFirmwareInformation.md b/docset/winserver2019-ps/storage/Get-StorageFirmwareInformation.md index 895ed55a8a..50c461bedc 100644 --- a/docset/winserver2019-ps/storage/Get-StorageFirmwareInformation.md +++ b/docset/winserver2019-ps/storage/Get-StorageFirmwareInformation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storagefirmwareinformation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagefirmwareinformation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageFirmwareInformation --- diff --git a/docset/winserver2019-ps/storage/Get-StorageHealthAction.md b/docset/winserver2019-ps/storage/Get-StorageHealthAction.md index aced1aabdc..1299d1abc3 100644 --- a/docset/winserver2019-ps/storage/Get-StorageHealthAction.md +++ b/docset/winserver2019-ps/storage/Get-StorageHealthAction.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storagehealthaction?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagehealthaction?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageHealthAction --- diff --git a/docset/winserver2019-ps/storage/Get-StorageHealthReport.md b/docset/winserver2019-ps/storage/Get-StorageHealthReport.md index 617a360824..af06126253 100644 --- a/docset/winserver2019-ps/storage/Get-StorageHealthReport.md +++ b/docset/winserver2019-ps/storage/Get-StorageHealthReport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storagehealthreport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagehealthreport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageHealthReport --- diff --git a/docset/winserver2019-ps/storage/Get-StorageHealthSetting.md b/docset/winserver2019-ps/storage/Get-StorageHealthSetting.md index 844dbe4a21..ebf5e0e23b 100644 --- a/docset/winserver2019-ps/storage/Get-StorageHealthSetting.md +++ b/docset/winserver2019-ps/storage/Get-StorageHealthSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storagehealthsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagehealthsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageHealthSetting --- diff --git a/docset/winserver2019-ps/storage/Get-StorageJob.md b/docset/winserver2019-ps/storage/Get-StorageJob.md index 6e397ef0f0..a61a2e79f0 100644 --- a/docset/winserver2019-ps/storage/Get-StorageJob.md +++ b/docset/winserver2019-ps/storage/Get-StorageJob.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageJob.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storagejob?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagejob?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageJob --- diff --git a/docset/winserver2019-ps/storage/Get-StorageNode.md b/docset/winserver2019-ps/storage/Get-StorageNode.md index e2960e80ee..5285794151 100644 --- a/docset/winserver2019-ps/storage/Get-StorageNode.md +++ b/docset/winserver2019-ps/storage/Get-StorageNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageNode.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storagenode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagenode?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageNode --- diff --git a/docset/winserver2019-ps/storage/Get-StoragePool.md b/docset/winserver2019-ps/storage/Get-StoragePool.md index 2839ea7b20..7a7bb2e927 100644 --- a/docset/winserver2019-ps/storage/Get-StoragePool.md +++ b/docset/winserver2019-ps/storage/Get-StoragePool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StoragePool.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storagepool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagepool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StoragePool --- diff --git a/docset/winserver2019-ps/storage/Get-StorageProvider.md b/docset/winserver2019-ps/storage/Get-StorageProvider.md index b199b14648..32b2a24026 100644 --- a/docset/winserver2019-ps/storage/Get-StorageProvider.md +++ b/docset/winserver2019-ps/storage/Get-StorageProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageProvider.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storageprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storageprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageProvider --- diff --git a/docset/winserver2019-ps/storage/Get-StorageReliabilityCounter.md b/docset/winserver2019-ps/storage/Get-StorageReliabilityCounter.md index 53925161ce..316467fffc 100644 --- a/docset/winserver2019-ps/storage/Get-StorageReliabilityCounter.md +++ b/docset/winserver2019-ps/storage/Get-StorageReliabilityCounter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageCmdlets.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storagereliabilitycounter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagereliabilitycounter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageReliabilityCounter --- diff --git a/docset/winserver2019-ps/storage/Get-StorageSetting.md b/docset/winserver2019-ps/storage/Get-StorageSetting.md index 396c42cfb3..ad125940c1 100644 --- a/docset/winserver2019-ps/storage/Get-StorageSetting.md +++ b/docset/winserver2019-ps/storage/Get-StorageSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageSetting.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storagesetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagesetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageSetting --- diff --git a/docset/winserver2019-ps/storage/Get-StorageSubSystem.md b/docset/winserver2019-ps/storage/Get-StorageSubSystem.md index a7c82540c4..7b8168b91e 100644 --- a/docset/winserver2019-ps/storage/Get-StorageSubSystem.md +++ b/docset/winserver2019-ps/storage/Get-StorageSubSystem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageSubSystem.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storagesubsystem?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagesubsystem?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageSubSystem --- diff --git a/docset/winserver2019-ps/storage/Get-StorageTier.md b/docset/winserver2019-ps/storage/Get-StorageTier.md index 2c2ca721c7..3d6123ecff 100644 --- a/docset/winserver2019-ps/storage/Get-StorageTier.md +++ b/docset/winserver2019-ps/storage/Get-StorageTier.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageTier.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storagetier?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagetier?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageTier --- diff --git a/docset/winserver2019-ps/storage/Get-StorageTierSupportedSize.md b/docset/winserver2019-ps/storage/Get-StorageTierSupportedSize.md index 80d911f809..406f3b33b2 100644 --- a/docset/winserver2019-ps/storage/Get-StorageTierSupportedSize.md +++ b/docset/winserver2019-ps/storage/Get-StorageTierSupportedSize.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageTier.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storagetiersupportedsize?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagetiersupportedsize?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageTierSupportedSize --- diff --git a/docset/winserver2019-ps/storage/Get-SupportedClusterSizes.md b/docset/winserver2019-ps/storage/Get-SupportedClusterSizes.md index dbcfda7862..71a1c2df7b 100644 --- a/docset/winserver2019-ps/storage/Get-SupportedClusterSizes.md +++ b/docset/winserver2019-ps/storage/Get-SupportedClusterSizes.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Volume.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-supportedclustersizes?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-supportedclustersizes?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SupportedClusterSizes --- diff --git a/docset/winserver2019-ps/storage/Get-SupportedFileSystems.md b/docset/winserver2019-ps/storage/Get-SupportedFileSystems.md index 2ae0999ffa..a5f522fbe8 100644 --- a/docset/winserver2019-ps/storage/Get-SupportedFileSystems.md +++ b/docset/winserver2019-ps/storage/Get-SupportedFileSystems.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Volume.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-supportedfilesystems?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-supportedfilesystems?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SupportedFileSystems --- diff --git a/docset/winserver2019-ps/storage/Get-TargetPort.md b/docset/winserver2019-ps/storage/Get-TargetPort.md index 0b4a9138b3..0225031168 100644 --- a/docset/winserver2019-ps/storage/Get-TargetPort.md +++ b/docset/winserver2019-ps/storage/Get-TargetPort.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: TargetPort.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-targetport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-targetport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-TargetPort --- diff --git a/docset/winserver2019-ps/storage/Get-TargetPortal.md b/docset/winserver2019-ps/storage/Get-TargetPortal.md index 5d3a93055c..27251bb6ba 100644 --- a/docset/winserver2019-ps/storage/Get-TargetPortal.md +++ b/docset/winserver2019-ps/storage/Get-TargetPortal.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: TargetPortal.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-targetportal?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-targetportal?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-TargetPortal --- diff --git a/docset/winserver2019-ps/storage/Get-VirtualDisk.md b/docset/winserver2019-ps/storage/Get-VirtualDisk.md index 271f1b3e89..59f1e8fb4f 100644 --- a/docset/winserver2019-ps/storage/Get-VirtualDisk.md +++ b/docset/winserver2019-ps/storage/Get-VirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: VirtualDisk.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-virtualdisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-virtualdisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VirtualDisk --- diff --git a/docset/winserver2019-ps/storage/Get-VirtualDiskSupportedSize.md b/docset/winserver2019-ps/storage/Get-VirtualDiskSupportedSize.md index 9082a87341..e2c64b3f2f 100644 --- a/docset/winserver2019-ps/storage/Get-VirtualDiskSupportedSize.md +++ b/docset/winserver2019-ps/storage/Get-VirtualDiskSupportedSize.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StoragePool.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-virtualdisksupportedsize?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-virtualdisksupportedsize?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VirtualDiskSupportedSize --- diff --git a/docset/winserver2019-ps/storage/Get-Volume.md b/docset/winserver2019-ps/storage/Get-Volume.md index 8cadd5d4ad..fefdafb7bb 100644 --- a/docset/winserver2019-ps/storage/Get-Volume.md +++ b/docset/winserver2019-ps/storage/Get-Volume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Volume.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-volume?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-volume?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-Volume --- diff --git a/docset/winserver2019-ps/storage/Get-VolumeCorruptionCount.md b/docset/winserver2019-ps/storage/Get-VolumeCorruptionCount.md index 2012f88866..5f8b4ad08f 100644 --- a/docset/winserver2019-ps/storage/Get-VolumeCorruptionCount.md +++ b/docset/winserver2019-ps/storage/Get-VolumeCorruptionCount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Volume.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-volumecorruptioncount?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-volumecorruptioncount?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VolumeCorruptionCount --- diff --git a/docset/winserver2019-ps/storage/Get-VolumeScrubPolicy.md b/docset/winserver2019-ps/storage/Get-VolumeScrubPolicy.md index ee670c3b67..bd549486b8 100644 --- a/docset/winserver2019-ps/storage/Get-VolumeScrubPolicy.md +++ b/docset/winserver2019-ps/storage/Get-VolumeScrubPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Volume.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-volumescrubpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-volumescrubpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VolumeScrubPolicy --- diff --git a/docset/winserver2019-ps/storage/Grant-FileShareAccess.md b/docset/winserver2019-ps/storage/Grant-FileShareAccess.md index 69283d1274..b071a4b506 100644 --- a/docset/winserver2019-ps/storage/Grant-FileShareAccess.md +++ b/docset/winserver2019-ps/storage/Grant-FileShareAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FileShare.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/grant-fileshareaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/grant-fileshareaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Grant-FileShareAccess --- diff --git a/docset/winserver2019-ps/storage/Hide-VirtualDisk.md b/docset/winserver2019-ps/storage/Hide-VirtualDisk.md index 79f09f9481..496961aae7 100644 --- a/docset/winserver2019-ps/storage/Hide-VirtualDisk.md +++ b/docset/winserver2019-ps/storage/Hide-VirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: VirtualDisk.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/hide-virtualdisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/hide-virtualdisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Hide-VirtualDisk --- diff --git a/docset/winserver2019-ps/storage/Initialize-Disk.md b/docset/winserver2019-ps/storage/Initialize-Disk.md index 67ff221d82..0b7cb5bec6 100644 --- a/docset/winserver2019-ps/storage/Initialize-Disk.md +++ b/docset/winserver2019-ps/storage/Initialize-Disk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Disk.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/initialize-disk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/initialize-disk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Initialize-Disk --- diff --git a/docset/winserver2019-ps/storage/Mount-DiskImage.md b/docset/winserver2019-ps/storage/Mount-DiskImage.md index 49bf000c20..1fc39e5e9a 100644 --- a/docset/winserver2019-ps/storage/Mount-DiskImage.md +++ b/docset/winserver2019-ps/storage/Mount-DiskImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DiskImage.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/mount-diskimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/mount-diskimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Mount-DiskImage --- diff --git a/docset/winserver2019-ps/storage/New-FileShare.md b/docset/winserver2019-ps/storage/New-FileShare.md index 640aa8d32b..bca8f1f13b 100644 --- a/docset/winserver2019-ps/storage/New-FileShare.md +++ b/docset/winserver2019-ps/storage/New-FileShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FileServer.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/new-fileshare?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/new-fileshare?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FileShare --- diff --git a/docset/winserver2019-ps/storage/New-MaskingSet.md b/docset/winserver2019-ps/storage/New-MaskingSet.md index 8ef7896fe5..6b5934e761 100644 --- a/docset/winserver2019-ps/storage/New-MaskingSet.md +++ b/docset/winserver2019-ps/storage/New-MaskingSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageSubSystem.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/new-maskingset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/new-maskingset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-MaskingSet --- diff --git a/docset/winserver2019-ps/storage/New-Partition.md b/docset/winserver2019-ps/storage/New-Partition.md index 9f555567f7..58280e484a 100644 --- a/docset/winserver2019-ps/storage/New-Partition.md +++ b/docset/winserver2019-ps/storage/New-Partition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Disk.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/new-partition?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/new-partition?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-Partition --- diff --git a/docset/winserver2019-ps/storage/New-StorageFileServer.md b/docset/winserver2019-ps/storage/New-StorageFileServer.md index a339caefd6..9a6ef21b10 100644 --- a/docset/winserver2019-ps/storage/New-StorageFileServer.md +++ b/docset/winserver2019-ps/storage/New-StorageFileServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageSubSystem.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/new-storagefileserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/new-storagefileserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-StorageFileServer --- diff --git a/docset/winserver2019-ps/storage/New-StoragePool.md b/docset/winserver2019-ps/storage/New-StoragePool.md index fb62e0c23e..7b40dda5f6 100644 --- a/docset/winserver2019-ps/storage/New-StoragePool.md +++ b/docset/winserver2019-ps/storage/New-StoragePool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageSubSystem.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/new-storagepool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/new-storagepool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-StoragePool --- diff --git a/docset/winserver2019-ps/storage/New-StorageSubsystemVirtualDisk.md b/docset/winserver2019-ps/storage/New-StorageSubsystemVirtualDisk.md index 61b9ad4503..71c0cf0ab9 100644 --- a/docset/winserver2019-ps/storage/New-StorageSubsystemVirtualDisk.md +++ b/docset/winserver2019-ps/storage/New-StorageSubsystemVirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageSubSystem.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/new-storagesubsystemvirtualdisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/new-storagesubsystemvirtualdisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-StorageSubsystemVirtualDisk --- diff --git a/docset/winserver2019-ps/storage/New-StorageTier.md b/docset/winserver2019-ps/storage/New-StorageTier.md index cb80b5cd17..b073476e93 100644 --- a/docset/winserver2019-ps/storage/New-StorageTier.md +++ b/docset/winserver2019-ps/storage/New-StorageTier.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StoragePool.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/new-storagetier?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/new-storagetier?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-StorageTier --- diff --git a/docset/winserver2019-ps/storage/New-VirtualDisk.md b/docset/winserver2019-ps/storage/New-VirtualDisk.md index c819055e5a..aaf1b9e23d 100644 --- a/docset/winserver2019-ps/storage/New-VirtualDisk.md +++ b/docset/winserver2019-ps/storage/New-VirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StoragePool.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/new-virtualdisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/new-virtualdisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VirtualDisk --- diff --git a/docset/winserver2019-ps/storage/New-VirtualDiskClone.md b/docset/winserver2019-ps/storage/New-VirtualDiskClone.md index 67318f7b11..fdd7687c6d 100644 --- a/docset/winserver2019-ps/storage/New-VirtualDiskClone.md +++ b/docset/winserver2019-ps/storage/New-VirtualDiskClone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: VirtualDisk.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/new-virtualdiskclone?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/new-virtualdiskclone?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VirtualDiskClone --- diff --git a/docset/winserver2019-ps/storage/New-VirtualDiskSnapshot.md b/docset/winserver2019-ps/storage/New-VirtualDiskSnapshot.md index 759e528602..b717a1f1c9 100644 --- a/docset/winserver2019-ps/storage/New-VirtualDiskSnapshot.md +++ b/docset/winserver2019-ps/storage/New-VirtualDiskSnapshot.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: VirtualDisk.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/new-virtualdisksnapshot?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/new-virtualdisksnapshot?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VirtualDiskSnapshot --- diff --git a/docset/winserver2019-ps/storage/New-Volume.md b/docset/winserver2019-ps/storage/New-Volume.md index 32de47b9c0..f95f87584e 100644 --- a/docset/winserver2019-ps/storage/New-Volume.md +++ b/docset/winserver2019-ps/storage/New-Volume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/new-volume?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/new-volume?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-Volume --- diff --git a/docset/winserver2019-ps/storage/Optimize-StoragePool.md b/docset/winserver2019-ps/storage/Optimize-StoragePool.md index 173ad13f64..ee70074353 100644 --- a/docset/winserver2019-ps/storage/Optimize-StoragePool.md +++ b/docset/winserver2019-ps/storage/Optimize-StoragePool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StoragePool.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/optimize-storagepool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/optimize-storagepool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Optimize-StoragePool --- diff --git a/docset/winserver2019-ps/storage/Optimize-Volume.md b/docset/winserver2019-ps/storage/Optimize-Volume.md index a15274219c..b0fd70da09 100644 --- a/docset/winserver2019-ps/storage/Optimize-Volume.md +++ b/docset/winserver2019-ps/storage/Optimize-Volume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Volume.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/optimize-volume?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/optimize-volume?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Optimize-Volume --- diff --git a/docset/winserver2019-ps/storage/Register-StorageSubsystem.md b/docset/winserver2019-ps/storage/Register-StorageSubsystem.md index 118d1cf1c4..366d42a979 100644 --- a/docset/winserver2019-ps/storage/Register-StorageSubsystem.md +++ b/docset/winserver2019-ps/storage/Register-StorageSubsystem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageProvider.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/register-storagesubsystem?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/register-storagesubsystem?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Register-StorageSubsystem --- diff --git a/docset/winserver2019-ps/storage/Remove-FileShare.md b/docset/winserver2019-ps/storage/Remove-FileShare.md index 1eb972c774..f93dd7acf9 100644 --- a/docset/winserver2019-ps/storage/Remove-FileShare.md +++ b/docset/winserver2019-ps/storage/Remove-FileShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FileShare.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/remove-fileshare?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-fileshare?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-FileShare --- diff --git a/docset/winserver2019-ps/storage/Remove-InitiatorId.md b/docset/winserver2019-ps/storage/Remove-InitiatorId.md index 74b1d3b03b..9a3449cec5 100644 --- a/docset/winserver2019-ps/storage/Remove-InitiatorId.md +++ b/docset/winserver2019-ps/storage/Remove-InitiatorId.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: InitiatorId.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/remove-initiatorid?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-initiatorid?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-InitiatorId --- diff --git a/docset/winserver2019-ps/storage/Remove-InitiatorIdFromMaskingSet.md b/docset/winserver2019-ps/storage/Remove-InitiatorIdFromMaskingSet.md index 47d27e935c..e9721acd5b 100644 --- a/docset/winserver2019-ps/storage/Remove-InitiatorIdFromMaskingSet.md +++ b/docset/winserver2019-ps/storage/Remove-InitiatorIdFromMaskingSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MaskingSet.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/remove-initiatoridfrommaskingset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-initiatoridfrommaskingset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-InitiatorIdFromMaskingSet --- diff --git a/docset/winserver2019-ps/storage/Remove-MaskingSet.md b/docset/winserver2019-ps/storage/Remove-MaskingSet.md index 412ce39de1..974c51042e 100644 --- a/docset/winserver2019-ps/storage/Remove-MaskingSet.md +++ b/docset/winserver2019-ps/storage/Remove-MaskingSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MaskingSet.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/remove-maskingset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-maskingset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-MaskingSet --- diff --git a/docset/winserver2019-ps/storage/Remove-Partition.md b/docset/winserver2019-ps/storage/Remove-Partition.md index 53f253ab17..d5aa9a28b4 100644 --- a/docset/winserver2019-ps/storage/Remove-Partition.md +++ b/docset/winserver2019-ps/storage/Remove-Partition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Partition.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/remove-partition?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-partition?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-Partition --- diff --git a/docset/winserver2019-ps/storage/Remove-PartitionAccessPath.md b/docset/winserver2019-ps/storage/Remove-PartitionAccessPath.md index 2a1ad893f8..93247ef757 100644 --- a/docset/winserver2019-ps/storage/Remove-PartitionAccessPath.md +++ b/docset/winserver2019-ps/storage/Remove-PartitionAccessPath.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Partition.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/remove-partitionaccesspath?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-partitionaccesspath?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-PartitionAccessPath --- diff --git a/docset/winserver2019-ps/storage/Remove-PhysicalDisk.md b/docset/winserver2019-ps/storage/Remove-PhysicalDisk.md index c4ea321906..8530c3600f 100644 --- a/docset/winserver2019-ps/storage/Remove-PhysicalDisk.md +++ b/docset/winserver2019-ps/storage/Remove-PhysicalDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageCmdlets.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/remove-physicaldisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-physicaldisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-PhysicalDisk --- diff --git a/docset/winserver2019-ps/storage/Remove-StorageFileServer.md b/docset/winserver2019-ps/storage/Remove-StorageFileServer.md index bc588f2367..d125875db8 100644 --- a/docset/winserver2019-ps/storage/Remove-StorageFileServer.md +++ b/docset/winserver2019-ps/storage/Remove-StorageFileServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FileServer.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/remove-storagefileserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-storagefileserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-StorageFileServer --- diff --git a/docset/winserver2019-ps/storage/Remove-StorageHealthSetting.md b/docset/winserver2019-ps/storage/Remove-StorageHealthSetting.md index e8e414c40e..1db67dfbd1 100644 --- a/docset/winserver2019-ps/storage/Remove-StorageHealthSetting.md +++ b/docset/winserver2019-ps/storage/Remove-StorageHealthSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/remove-storagehealthsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-storagehealthsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-StorageHealthSetting --- diff --git a/docset/winserver2019-ps/storage/Remove-StoragePool.md b/docset/winserver2019-ps/storage/Remove-StoragePool.md index ef54d71fca..8f00b96c50 100644 --- a/docset/winserver2019-ps/storage/Remove-StoragePool.md +++ b/docset/winserver2019-ps/storage/Remove-StoragePool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StoragePool.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/remove-storagepool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-storagepool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-StoragePool --- diff --git a/docset/winserver2019-ps/storage/Remove-StorageTier.md b/docset/winserver2019-ps/storage/Remove-StorageTier.md index b2c08dc79a..0d3dbea054 100644 --- a/docset/winserver2019-ps/storage/Remove-StorageTier.md +++ b/docset/winserver2019-ps/storage/Remove-StorageTier.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageTier.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/remove-storagetier?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-storagetier?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-StorageTier --- diff --git a/docset/winserver2019-ps/storage/Remove-TargetPortFromMaskingSet.md b/docset/winserver2019-ps/storage/Remove-TargetPortFromMaskingSet.md index 63c3a8bb78..3b608348ca 100644 --- a/docset/winserver2019-ps/storage/Remove-TargetPortFromMaskingSet.md +++ b/docset/winserver2019-ps/storage/Remove-TargetPortFromMaskingSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MaskingSet.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/remove-targetportfrommaskingset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-targetportfrommaskingset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-TargetPortFromMaskingSet --- diff --git a/docset/winserver2019-ps/storage/Remove-VirtualDisk.md b/docset/winserver2019-ps/storage/Remove-VirtualDisk.md index 87fa4d821f..f09702ffae 100644 --- a/docset/winserver2019-ps/storage/Remove-VirtualDisk.md +++ b/docset/winserver2019-ps/storage/Remove-VirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: VirtualDisk.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/remove-virtualdisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-virtualdisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VirtualDisk --- diff --git a/docset/winserver2019-ps/storage/Remove-VirtualDiskFromMaskingSet.md b/docset/winserver2019-ps/storage/Remove-VirtualDiskFromMaskingSet.md index a9a4611993..c6f916ffea 100644 --- a/docset/winserver2019-ps/storage/Remove-VirtualDiskFromMaskingSet.md +++ b/docset/winserver2019-ps/storage/Remove-VirtualDiskFromMaskingSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MaskingSet.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/remove-virtualdiskfrommaskingset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-virtualdiskfrommaskingset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VirtualDiskFromMaskingSet --- diff --git a/docset/winserver2019-ps/storage/Rename-MaskingSet.md b/docset/winserver2019-ps/storage/Rename-MaskingSet.md index c94f3ce5ab..24a5e68b68 100644 --- a/docset/winserver2019-ps/storage/Rename-MaskingSet.md +++ b/docset/winserver2019-ps/storage/Rename-MaskingSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MaskingSet.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/rename-maskingset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/rename-maskingset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-MaskingSet --- diff --git a/docset/winserver2019-ps/storage/Repair-FileIntegrity.md b/docset/winserver2019-ps/storage/Repair-FileIntegrity.md index 60f169d3af..4be9cc93d4 100644 --- a/docset/winserver2019-ps/storage/Repair-FileIntegrity.md +++ b/docset/winserver2019-ps/storage/Repair-FileIntegrity.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FileIntegrity.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/repair-fileintegrity?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/repair-fileintegrity?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Repair-FileIntegrity --- diff --git a/docset/winserver2019-ps/storage/Repair-VirtualDisk.md b/docset/winserver2019-ps/storage/Repair-VirtualDisk.md index b3357da440..d726403e7d 100644 --- a/docset/winserver2019-ps/storage/Repair-VirtualDisk.md +++ b/docset/winserver2019-ps/storage/Repair-VirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: VirtualDisk.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/repair-virtualdisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/repair-virtualdisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Repair-VirtualDisk --- diff --git a/docset/winserver2019-ps/storage/Repair-Volume.md b/docset/winserver2019-ps/storage/Repair-Volume.md index 8acce436ee..112545cd88 100644 --- a/docset/winserver2019-ps/storage/Repair-Volume.md +++ b/docset/winserver2019-ps/storage/Repair-Volume.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Volume.cdxml-help.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/repair-volume?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/repair-volume?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Repair-Volume --- diff --git a/docset/winserver2019-ps/storage/Reset-PhysicalDisk.md b/docset/winserver2019-ps/storage/Reset-PhysicalDisk.md index 70832fef61..43c7d4519a 100644 --- a/docset/winserver2019-ps/storage/Reset-PhysicalDisk.md +++ b/docset/winserver2019-ps/storage/Reset-PhysicalDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/reset-physicaldisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/reset-physicaldisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-PhysicalDisk --- diff --git a/docset/winserver2019-ps/storage/Reset-StorageReliabilityCounter.md b/docset/winserver2019-ps/storage/Reset-StorageReliabilityCounter.md index 6b34d77fb8..1bf7135689 100644 --- a/docset/winserver2019-ps/storage/Reset-StorageReliabilityCounter.md +++ b/docset/winserver2019-ps/storage/Reset-StorageReliabilityCounter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageReliabilityCounter.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/reset-storagereliabilitycounter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/reset-storagereliabilitycounter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-StorageReliabilityCounter --- diff --git a/docset/winserver2019-ps/storage/Resize-Partition.md b/docset/winserver2019-ps/storage/Resize-Partition.md index c193eca6c8..c707b9e131 100644 --- a/docset/winserver2019-ps/storage/Resize-Partition.md +++ b/docset/winserver2019-ps/storage/Resize-Partition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Partition.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/resize-partition?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/resize-partition?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resize-Partition --- diff --git a/docset/winserver2019-ps/storage/Resize-StorageTier.md b/docset/winserver2019-ps/storage/Resize-StorageTier.md index 5e87dd020a..d72b4e3d69 100644 --- a/docset/winserver2019-ps/storage/Resize-StorageTier.md +++ b/docset/winserver2019-ps/storage/Resize-StorageTier.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageTier.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/resize-storagetier?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/resize-storagetier?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resize-StorageTier --- diff --git a/docset/winserver2019-ps/storage/Resize-VirtualDisk.md b/docset/winserver2019-ps/storage/Resize-VirtualDisk.md index 86bec317e7..d2c2cc0158 100644 --- a/docset/winserver2019-ps/storage/Resize-VirtualDisk.md +++ b/docset/winserver2019-ps/storage/Resize-VirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: VirtualDisk.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/resize-virtualdisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/resize-virtualdisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resize-VirtualDisk --- diff --git a/docset/winserver2019-ps/storage/Revoke-FileShareAccess.md b/docset/winserver2019-ps/storage/Revoke-FileShareAccess.md index 8fb8c3bc5f..721beacd86 100644 --- a/docset/winserver2019-ps/storage/Revoke-FileShareAccess.md +++ b/docset/winserver2019-ps/storage/Revoke-FileShareAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FileShare.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/revoke-fileshareaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/revoke-fileshareaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Revoke-FileShareAccess --- diff --git a/docset/winserver2019-ps/storage/Set-Disk.md b/docset/winserver2019-ps/storage/Set-Disk.md index 6f05b52dea..3e784877d8 100644 --- a/docset/winserver2019-ps/storage/Set-Disk.md +++ b/docset/winserver2019-ps/storage/Set-Disk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageCmdlets.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/set-disk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-disk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-Disk --- diff --git a/docset/winserver2019-ps/storage/Set-FileIntegrity.md b/docset/winserver2019-ps/storage/Set-FileIntegrity.md index 8655076937..58ed0a53d0 100644 --- a/docset/winserver2019-ps/storage/Set-FileIntegrity.md +++ b/docset/winserver2019-ps/storage/Set-FileIntegrity.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FileIntegrity.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/set-fileintegrity?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-fileintegrity?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FileIntegrity --- diff --git a/docset/winserver2019-ps/storage/Set-FileShare.md b/docset/winserver2019-ps/storage/Set-FileShare.md index 52d94c28b1..b9d05c9d35 100644 --- a/docset/winserver2019-ps/storage/Set-FileShare.md +++ b/docset/winserver2019-ps/storage/Set-FileShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageCmdlets.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/set-fileshare?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-fileshare?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FileShare --- diff --git a/docset/winserver2019-ps/storage/Set-FileStorageTier.md b/docset/winserver2019-ps/storage/Set-FileStorageTier.md index 7fcf51b1f5..1ff4ba5d7f 100644 --- a/docset/winserver2019-ps/storage/Set-FileStorageTier.md +++ b/docset/winserver2019-ps/storage/Set-FileStorageTier.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FileStorageTier.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/set-filestoragetier?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-filestoragetier?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FileStorageTier --- diff --git a/docset/winserver2019-ps/storage/Set-InitiatorPort.md b/docset/winserver2019-ps/storage/Set-InitiatorPort.md index 0a27ff8139..7df529110e 100644 --- a/docset/winserver2019-ps/storage/Set-InitiatorPort.md +++ b/docset/winserver2019-ps/storage/Set-InitiatorPort.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: InitiatorPort.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/set-initiatorport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-initiatorport?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-InitiatorPort --- diff --git a/docset/winserver2019-ps/storage/Set-Partition.md b/docset/winserver2019-ps/storage/Set-Partition.md index 32ca9fd289..36cac20357 100644 --- a/docset/winserver2019-ps/storage/Set-Partition.md +++ b/docset/winserver2019-ps/storage/Set-Partition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageCmdlets.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/set-partition?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-partition?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-Partition --- diff --git a/docset/winserver2019-ps/storage/Set-PhysicalDisk.md b/docset/winserver2019-ps/storage/Set-PhysicalDisk.md index 5ffff5e7b1..6fa346d3c1 100644 --- a/docset/winserver2019-ps/storage/Set-PhysicalDisk.md +++ b/docset/winserver2019-ps/storage/Set-PhysicalDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageCmdlets.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/set-physicaldisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-physicaldisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-PhysicalDisk --- diff --git a/docset/winserver2019-ps/storage/Set-ResiliencySetting.md b/docset/winserver2019-ps/storage/Set-ResiliencySetting.md index 4d9638020e..a1c5f01a87 100644 --- a/docset/winserver2019-ps/storage/Set-ResiliencySetting.md +++ b/docset/winserver2019-ps/storage/Set-ResiliencySetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ResiliencySetting.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/set-resiliencysetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-resiliencysetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ResiliencySetting --- diff --git a/docset/winserver2019-ps/storage/Set-StorageFileServer.md b/docset/winserver2019-ps/storage/Set-StorageFileServer.md index e459f37771..194870d737 100644 --- a/docset/winserver2019-ps/storage/Set-StorageFileServer.md +++ b/docset/winserver2019-ps/storage/Set-StorageFileServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FileServer.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/set-storagefileserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-storagefileserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-StorageFileServer --- diff --git a/docset/winserver2019-ps/storage/Set-StorageHealthSetting.md b/docset/winserver2019-ps/storage/Set-StorageHealthSetting.md index e1b4dfcfe5..39e6e0435a 100644 --- a/docset/winserver2019-ps/storage/Set-StorageHealthSetting.md +++ b/docset/winserver2019-ps/storage/Set-StorageHealthSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/set-storagehealthsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-storagehealthsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-StorageHealthSetting --- diff --git a/docset/winserver2019-ps/storage/Set-StoragePool.md b/docset/winserver2019-ps/storage/Set-StoragePool.md index e81e5c6ac3..c625a03d1a 100644 --- a/docset/winserver2019-ps/storage/Set-StoragePool.md +++ b/docset/winserver2019-ps/storage/Set-StoragePool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageCmdlets.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/set-storagepool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-storagepool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-StoragePool --- diff --git a/docset/winserver2019-ps/storage/Set-StorageProvider.md b/docset/winserver2019-ps/storage/Set-StorageProvider.md index 33682b42bb..55ddd4aae6 100644 --- a/docset/winserver2019-ps/storage/Set-StorageProvider.md +++ b/docset/winserver2019-ps/storage/Set-StorageProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageProvider.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/set-storageprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-storageprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-StorageProvider --- diff --git a/docset/winserver2019-ps/storage/Set-StorageSetting.md b/docset/winserver2019-ps/storage/Set-StorageSetting.md index b6efd53ba4..d658fb751c 100644 --- a/docset/winserver2019-ps/storage/Set-StorageSetting.md +++ b/docset/winserver2019-ps/storage/Set-StorageSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageSetting.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/set-storagesetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-storagesetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-StorageSetting --- diff --git a/docset/winserver2019-ps/storage/Set-StorageSubSystem.md b/docset/winserver2019-ps/storage/Set-StorageSubSystem.md index 178ffb3a2d..9a4b092c19 100644 --- a/docset/winserver2019-ps/storage/Set-StorageSubSystem.md +++ b/docset/winserver2019-ps/storage/Set-StorageSubSystem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageCmdlets.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/set-storagesubsystem?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-storagesubsystem?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-StorageSubSystem --- diff --git a/docset/winserver2019-ps/storage/Set-StorageTier.md b/docset/winserver2019-ps/storage/Set-StorageTier.md index 2ce00d652c..65b43ea882 100644 --- a/docset/winserver2019-ps/storage/Set-StorageTier.md +++ b/docset/winserver2019-ps/storage/Set-StorageTier.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageCmdlets.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/set-storagetier?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-storagetier?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-StorageTier --- diff --git a/docset/winserver2019-ps/storage/Set-VirtualDisk.md b/docset/winserver2019-ps/storage/Set-VirtualDisk.md index 82fd38c857..028076458a 100644 --- a/docset/winserver2019-ps/storage/Set-VirtualDisk.md +++ b/docset/winserver2019-ps/storage/Set-VirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageCmdlets.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/set-virtualdisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-virtualdisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VirtualDisk --- diff --git a/docset/winserver2019-ps/storage/Set-Volume.md b/docset/winserver2019-ps/storage/Set-Volume.md index 63168a0d05..9df433a25a 100644 --- a/docset/winserver2019-ps/storage/Set-Volume.md +++ b/docset/winserver2019-ps/storage/Set-Volume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageCmdlets.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/set-volume?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-volume?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-Volume --- diff --git a/docset/winserver2019-ps/storage/Set-VolumeScrubPolicy.md b/docset/winserver2019-ps/storage/Set-VolumeScrubPolicy.md index 68bf6766d4..826d3f5137 100644 --- a/docset/winserver2019-ps/storage/Set-VolumeScrubPolicy.md +++ b/docset/winserver2019-ps/storage/Set-VolumeScrubPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Volume.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/set-volumescrubpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-volumescrubpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VolumeScrubPolicy --- diff --git a/docset/winserver2019-ps/storage/Show-VirtualDisk.md b/docset/winserver2019-ps/storage/Show-VirtualDisk.md index 6107faf697..b166a2fca0 100644 --- a/docset/winserver2019-ps/storage/Show-VirtualDisk.md +++ b/docset/winserver2019-ps/storage/Show-VirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: VirtualDisk.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/show-virtualdisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/show-virtualdisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Show-VirtualDisk --- diff --git a/docset/winserver2019-ps/storage/Start-StorageDiagnosticLog.md b/docset/winserver2019-ps/storage/Start-StorageDiagnosticLog.md index 2db1ba4d74..f8efca816b 100644 --- a/docset/winserver2019-ps/storage/Start-StorageDiagnosticLog.md +++ b/docset/winserver2019-ps/storage/Start-StorageDiagnosticLog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageSubSystem.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/start-storagediagnosticlog?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/start-storagediagnosticlog?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-StorageDiagnosticLog --- diff --git a/docset/winserver2019-ps/storage/Stop-StorageDiagnosticLog.md b/docset/winserver2019-ps/storage/Stop-StorageDiagnosticLog.md index a47ae361cf..f5b721c914 100644 --- a/docset/winserver2019-ps/storage/Stop-StorageDiagnosticLog.md +++ b/docset/winserver2019-ps/storage/Stop-StorageDiagnosticLog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageSubSystem.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/stop-storagediagnosticlog?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/stop-storagediagnosticlog?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-StorageDiagnosticLog --- diff --git a/docset/winserver2019-ps/storage/Stop-StorageJob.md b/docset/winserver2019-ps/storage/Stop-StorageJob.md index 079331d390..ce034d13e5 100644 --- a/docset/winserver2019-ps/storage/Stop-StorageJob.md +++ b/docset/winserver2019-ps/storage/Stop-StorageJob.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageJob.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/stop-storagejob?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/stop-storagejob?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-StorageJob --- diff --git a/docset/winserver2019-ps/storage/Unblock-FileShareAccess.md b/docset/winserver2019-ps/storage/Unblock-FileShareAccess.md index 567b1bfcca..9a69a8470b 100644 --- a/docset/winserver2019-ps/storage/Unblock-FileShareAccess.md +++ b/docset/winserver2019-ps/storage/Unblock-FileShareAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FileShare.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/unblock-fileshareaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/unblock-fileshareaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unblock-FileShareAccess --- diff --git a/docset/winserver2019-ps/storage/Unregister-StorageSubsystem.md b/docset/winserver2019-ps/storage/Unregister-StorageSubsystem.md index b676d3dbba..adb4708f95 100644 --- a/docset/winserver2019-ps/storage/Unregister-StorageSubsystem.md +++ b/docset/winserver2019-ps/storage/Unregister-StorageSubsystem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageProvider.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/unregister-storagesubsystem?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/unregister-storagesubsystem?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unregister-StorageSubsystem --- diff --git a/docset/winserver2019-ps/storage/Update-Disk.md b/docset/winserver2019-ps/storage/Update-Disk.md index 6aa83f84b4..2fc550b378 100644 --- a/docset/winserver2019-ps/storage/Update-Disk.md +++ b/docset/winserver2019-ps/storage/Update-Disk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Disk.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/update-disk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/update-disk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-Disk --- diff --git a/docset/winserver2019-ps/storage/Update-HostStorageCache.md b/docset/winserver2019-ps/storage/Update-HostStorageCache.md index 67c31f9080..54b617f367 100644 --- a/docset/winserver2019-ps/storage/Update-HostStorageCache.md +++ b/docset/winserver2019-ps/storage/Update-HostStorageCache.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageSetting.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/update-hoststoragecache?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/update-hoststoragecache?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-HostStorageCache --- diff --git a/docset/winserver2019-ps/storage/Update-StorageFirmware.md b/docset/winserver2019-ps/storage/Update-StorageFirmware.md index cd03263dd7..07354c612c 100644 --- a/docset/winserver2019-ps/storage/Update-StorageFirmware.md +++ b/docset/winserver2019-ps/storage/Update-StorageFirmware.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/update-storagefirmware?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/update-storagefirmware?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-StorageFirmware --- diff --git a/docset/winserver2019-ps/storage/Update-StoragePool.md b/docset/winserver2019-ps/storage/Update-StoragePool.md index 83a4f075e1..d960abfb40 100644 --- a/docset/winserver2019-ps/storage/Update-StoragePool.md +++ b/docset/winserver2019-ps/storage/Update-StoragePool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StoragePool.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/update-storagepool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/update-storagepool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-StoragePool --- diff --git a/docset/winserver2019-ps/storage/Update-StorageProviderCache.md b/docset/winserver2019-ps/storage/Update-StorageProviderCache.md index a14723ec1b..aa7d59b9ec 100644 --- a/docset/winserver2019-ps/storage/Update-StorageProviderCache.md +++ b/docset/winserver2019-ps/storage/Update-StorageProviderCache.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageProvider.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/update-storageprovidercache?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/update-storageprovidercache?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-StorageProviderCache --- diff --git a/docset/winserver2019-ps/storage/Write-VolumeCache.md b/docset/winserver2019-ps/storage/Write-VolumeCache.md index 0863c05cb1..57795a3795 100644 --- a/docset/winserver2019-ps/storage/Write-VolumeCache.md +++ b/docset/winserver2019-ps/storage/Write-VolumeCache.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Volume.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/write-volumecache?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/write-volumecache?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Write-VolumeCache --- diff --git a/docset/winserver2019-ps/storageqos/Get-StorageQoSFlow.md b/docset/winserver2019-ps/storageqos/Get-StorageQoSFlow.md index 29c9dfde8e..e945c55e6c 100644 --- a/docset/winserver2019-ps/storageqos/Get-StorageQoSFlow.md +++ b/docset/winserver2019-ps/storageqos/Get-StorageQoSFlow.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Policy-help.xml Module Name: StorageQoS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storageqos/get-storageqosflow?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storageqos/get-storageqosflow?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageQoSFlow --- diff --git a/docset/winserver2019-ps/storageqos/Get-StorageQosPolicy.md b/docset/winserver2019-ps/storageqos/Get-StorageQosPolicy.md index f7eea61a2a..cb648c01cf 100644 --- a/docset/winserver2019-ps/storageqos/Get-StorageQosPolicy.md +++ b/docset/winserver2019-ps/storageqos/Get-StorageQosPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Policy.cdxml-help.xml Module Name: StorageQoS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storageqos/get-storageqospolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storageqos/get-storageqospolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageQosPolicy --- diff --git a/docset/winserver2019-ps/storageqos/Get-StorageQosPolicyStore.md b/docset/winserver2019-ps/storageqos/Get-StorageQosPolicyStore.md index 3cb483b8f5..c3c370bd4a 100644 --- a/docset/winserver2019-ps/storageqos/Get-StorageQosPolicyStore.md +++ b/docset/winserver2019-ps/storageqos/Get-StorageQosPolicyStore.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PolicyStore.cdxml-help.xml Module Name: StorageQoS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storageqos/get-storageqospolicystore?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storageqos/get-storageqospolicystore?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageQosPolicyStore --- diff --git a/docset/winserver2019-ps/storageqos/Get-StorageQosVolume.md b/docset/winserver2019-ps/storageqos/Get-StorageQosVolume.md index 953659350b..1f54f16f68 100644 --- a/docset/winserver2019-ps/storageqos/Get-StorageQosVolume.md +++ b/docset/winserver2019-ps/storageqos/Get-StorageQosVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: QosVolume.cdxml-help.xml Module Name: StorageQoS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storageqos/get-storageqosvolume?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storageqos/get-storageqosvolume?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageQosVolume --- diff --git a/docset/winserver2019-ps/storageqos/New-StorageQosPolicy.md b/docset/winserver2019-ps/storageqos/New-StorageQosPolicy.md index 3de1ba71b5..8da00e064a 100644 --- a/docset/winserver2019-ps/storageqos/New-StorageQosPolicy.md +++ b/docset/winserver2019-ps/storageqos/New-StorageQosPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Policy-help.xml Module Name: StorageQoS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storageqos/new-storageqospolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storageqos/new-storageqospolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-StorageQosPolicy --- diff --git a/docset/winserver2019-ps/storageqos/Remove-StorageQosPolicy.md b/docset/winserver2019-ps/storageqos/Remove-StorageQosPolicy.md index 7595ca9b34..8fe592cb6c 100644 --- a/docset/winserver2019-ps/storageqos/Remove-StorageQosPolicy.md +++ b/docset/winserver2019-ps/storageqos/Remove-StorageQosPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Policy.cdxml-help.xml Module Name: StorageQoS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storageqos/remove-storageqospolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storageqos/remove-storageqospolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-StorageQosPolicy --- diff --git a/docset/winserver2019-ps/storageqos/Set-StorageQosPolicy.md b/docset/winserver2019-ps/storageqos/Set-StorageQosPolicy.md index 567e187c06..66d4faa3c2 100644 --- a/docset/winserver2019-ps/storageqos/Set-StorageQosPolicy.md +++ b/docset/winserver2019-ps/storageqos/Set-StorageQosPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Policy.cdxml-help.xml Module Name: StorageQoS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storageqos/set-storageqospolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storageqos/set-storageqospolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-StorageQosPolicy --- diff --git a/docset/winserver2019-ps/storageqos/Set-StorageQosPolicyStore.md b/docset/winserver2019-ps/storageqos/Set-StorageQosPolicyStore.md index 1a0f9cad3c..8a69e3c0e6 100644 --- a/docset/winserver2019-ps/storageqos/Set-StorageQosPolicyStore.md +++ b/docset/winserver2019-ps/storageqos/Set-StorageQosPolicyStore.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PolicyStore.cdxml-help.xml Module Name: StorageQoS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storageqos/set-storageqospolicystore?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storageqos/set-storageqospolicystore?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-StorageQosPolicyStore --- diff --git a/docset/winserver2019-ps/storagereplica/Clear-SRMetadata.md b/docset/winserver2019-ps/storagereplica/Clear-SRMetadata.md index af973daa2f..d6dbb24add 100644 --- a/docset/winserver2019-ps/storagereplica/Clear-SRMetadata.md +++ b/docset/winserver2019-ps/storagereplica/Clear-SRMetadata.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/clear-srmetadata?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/clear-srmetadata?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-SRMetadata --- diff --git a/docset/winserver2019-ps/storagereplica/Export-SRConfiguration.md b/docset/winserver2019-ps/storagereplica/Export-SRConfiguration.md index 5408a0013f..b8a86d8d97 100644 --- a/docset/winserver2019-ps/storagereplica/Export-SRConfiguration.md +++ b/docset/winserver2019-ps/storagereplica/Export-SRConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageReplica-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/export-srconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/export-srconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-SRConfiguration --- diff --git a/docset/winserver2019-ps/storagereplica/Get-SRAccess.md b/docset/winserver2019-ps/storagereplica/Get-SRAccess.md index b26568dda4..ea46a72e6b 100644 --- a/docset/winserver2019-ps/storagereplica/Get-SRAccess.md +++ b/docset/winserver2019-ps/storagereplica/Get-SRAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/get-sraccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/get-sraccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SRAccess --- diff --git a/docset/winserver2019-ps/storagereplica/Get-SRDelegation.md b/docset/winserver2019-ps/storagereplica/Get-SRDelegation.md index 62b66b5d56..1b46d6ca04 100644 --- a/docset/winserver2019-ps/storagereplica/Get-SRDelegation.md +++ b/docset/winserver2019-ps/storagereplica/Get-SRDelegation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/get-srdelegation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/get-srdelegation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SRDelegation --- diff --git a/docset/winserver2019-ps/storagereplica/Get-SRGroup.md b/docset/winserver2019-ps/storagereplica/Get-SRGroup.md index 96dbb5acd0..152d8692cf 100644 --- a/docset/winserver2019-ps/storagereplica/Get-SRGroup.md +++ b/docset/winserver2019-ps/storagereplica/Get-SRGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/get-srgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/get-srgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SRGroup --- diff --git a/docset/winserver2019-ps/storagereplica/Get-SRNetworkConstraint.md b/docset/winserver2019-ps/storagereplica/Get-SRNetworkConstraint.md index 6470f2c7e3..5a742b22a8 100644 --- a/docset/winserver2019-ps/storagereplica/Get-SRNetworkConstraint.md +++ b/docset/winserver2019-ps/storagereplica/Get-SRNetworkConstraint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/get-srnetworkconstraint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/get-srnetworkconstraint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SRNetworkConstraint --- diff --git a/docset/winserver2019-ps/storagereplica/Get-SRPartnership.md b/docset/winserver2019-ps/storagereplica/Get-SRPartnership.md index 0491401ba4..b659a2fd9c 100644 --- a/docset/winserver2019-ps/storagereplica/Get-SRPartnership.md +++ b/docset/winserver2019-ps/storagereplica/Get-SRPartnership.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/get-srpartnership?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/get-srpartnership?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SRPartnership --- diff --git a/docset/winserver2019-ps/storagereplica/Grant-SRAccess.md b/docset/winserver2019-ps/storagereplica/Grant-SRAccess.md index 9de6236050..6aa0cdc9cd 100644 --- a/docset/winserver2019-ps/storagereplica/Grant-SRAccess.md +++ b/docset/winserver2019-ps/storagereplica/Grant-SRAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/grant-sraccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/grant-sraccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Grant-SRAccess --- diff --git a/docset/winserver2019-ps/storagereplica/Grant-SRDelegation.md b/docset/winserver2019-ps/storagereplica/Grant-SRDelegation.md index 817dd163b5..0c2f183326 100644 --- a/docset/winserver2019-ps/storagereplica/Grant-SRDelegation.md +++ b/docset/winserver2019-ps/storagereplica/Grant-SRDelegation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/grant-srdelegation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/grant-srdelegation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Grant-SRDelegation --- diff --git a/docset/winserver2019-ps/storagereplica/New-SRGroup.md b/docset/winserver2019-ps/storagereplica/New-SRGroup.md index ae5d455895..bff109d96f 100644 --- a/docset/winserver2019-ps/storagereplica/New-SRGroup.md +++ b/docset/winserver2019-ps/storagereplica/New-SRGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/new-srgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/new-srgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-SRGroup --- diff --git a/docset/winserver2019-ps/storagereplica/New-SRPartnership.md b/docset/winserver2019-ps/storagereplica/New-SRPartnership.md index 1f3401102b..776c74504b 100644 --- a/docset/winserver2019-ps/storagereplica/New-SRPartnership.md +++ b/docset/winserver2019-ps/storagereplica/New-SRPartnership.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/new-srpartnership?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/new-srpartnership?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-SRPartnership --- diff --git a/docset/winserver2019-ps/storagereplica/Remove-SRGroup.md b/docset/winserver2019-ps/storagereplica/Remove-SRGroup.md index c2d4f48085..f3cef371aa 100644 --- a/docset/winserver2019-ps/storagereplica/Remove-SRGroup.md +++ b/docset/winserver2019-ps/storagereplica/Remove-SRGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/remove-srgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/remove-srgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-SRGroup --- diff --git a/docset/winserver2019-ps/storagereplica/Remove-SRNetworkConstraint.md b/docset/winserver2019-ps/storagereplica/Remove-SRNetworkConstraint.md index 35390613a2..f1d9ca36fe 100644 --- a/docset/winserver2019-ps/storagereplica/Remove-SRNetworkConstraint.md +++ b/docset/winserver2019-ps/storagereplica/Remove-SRNetworkConstraint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/remove-srnetworkconstraint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/remove-srnetworkconstraint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-SRNetworkConstraint --- diff --git a/docset/winserver2019-ps/storagereplica/Remove-SRPartnership.md b/docset/winserver2019-ps/storagereplica/Remove-SRPartnership.md index 1a0e6bb103..cb8107d972 100644 --- a/docset/winserver2019-ps/storagereplica/Remove-SRPartnership.md +++ b/docset/winserver2019-ps/storagereplica/Remove-SRPartnership.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/remove-srpartnership?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/remove-srpartnership?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-SRPartnership --- diff --git a/docset/winserver2019-ps/storagereplica/Revoke-SRAccess.md b/docset/winserver2019-ps/storagereplica/Revoke-SRAccess.md index 475389304a..204fe9e9e7 100644 --- a/docset/winserver2019-ps/storagereplica/Revoke-SRAccess.md +++ b/docset/winserver2019-ps/storagereplica/Revoke-SRAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/revoke-sraccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/revoke-sraccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Revoke-SRAccess --- diff --git a/docset/winserver2019-ps/storagereplica/Revoke-SRDelegation.md b/docset/winserver2019-ps/storagereplica/Revoke-SRDelegation.md index 91e8c9c80b..3c62ce3321 100644 --- a/docset/winserver2019-ps/storagereplica/Revoke-SRDelegation.md +++ b/docset/winserver2019-ps/storagereplica/Revoke-SRDelegation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/revoke-srdelegation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/revoke-srdelegation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Revoke-SRDelegation --- diff --git a/docset/winserver2019-ps/storagereplica/Set-SRGroup.md b/docset/winserver2019-ps/storagereplica/Set-SRGroup.md index 8b79012903..994b204276 100644 --- a/docset/winserver2019-ps/storagereplica/Set-SRGroup.md +++ b/docset/winserver2019-ps/storagereplica/Set-SRGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/set-srgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/set-srgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SRGroup --- diff --git a/docset/winserver2019-ps/storagereplica/Set-SRNetworkConstraint.md b/docset/winserver2019-ps/storagereplica/Set-SRNetworkConstraint.md index aba6f2fb73..fbceb7f9af 100644 --- a/docset/winserver2019-ps/storagereplica/Set-SRNetworkConstraint.md +++ b/docset/winserver2019-ps/storagereplica/Set-SRNetworkConstraint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 07/28/2021 -online version: https://docs.microsoft.com/powershell/module/storagereplica/set-srnetworkconstraint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/set-srnetworkconstraint?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SRNetworkConstraint --- diff --git a/docset/winserver2019-ps/storagereplica/Set-SRPartnership.md b/docset/winserver2019-ps/storagereplica/Set-SRPartnership.md index a12b563cbc..cedab9d985 100644 --- a/docset/winserver2019-ps/storagereplica/Set-SRPartnership.md +++ b/docset/winserver2019-ps/storagereplica/Set-SRPartnership.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/set-srpartnership?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/set-srpartnership?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SRPartnership --- diff --git a/docset/winserver2019-ps/storagereplica/Suspend-SRGroup.md b/docset/winserver2019-ps/storagereplica/Suspend-SRGroup.md index cdafe6514c..c07c9e5faf 100644 --- a/docset/winserver2019-ps/storagereplica/Suspend-SRGroup.md +++ b/docset/winserver2019-ps/storagereplica/Suspend-SRGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/suspend-srgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/suspend-srgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-SRGroup --- diff --git a/docset/winserver2019-ps/storagereplica/Sync-SRGroup.md b/docset/winserver2019-ps/storagereplica/Sync-SRGroup.md index d2431fd6e3..1333197b31 100644 --- a/docset/winserver2019-ps/storagereplica/Sync-SRGroup.md +++ b/docset/winserver2019-ps/storagereplica/Sync-SRGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/sync-srgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/sync-srgroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Sync-SRGroup --- diff --git a/docset/winserver2019-ps/storagereplica/Test-SRTopology.md b/docset/winserver2019-ps/storagereplica/Test-SRTopology.md index 9864dc0bef..81a50a7fd5 100644 --- a/docset/winserver2019-ps/storagereplica/Test-SRTopology.md +++ b/docset/winserver2019-ps/storagereplica/Test-SRTopology.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FileServices.SR.Powershell.dll-Help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/test-srtopology?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/test-srtopology?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-SRTopology --- diff --git a/docset/winserver2019-ps/syncshare/Disable-SyncShare.md b/docset/winserver2019-ps/syncshare/Disable-SyncShare.md index 0a44d4bfc1..374553ed1b 100644 --- a/docset/winserver2019-ps/syncshare/Disable-SyncShare.md +++ b/docset/winserver2019-ps/syncshare/Disable-SyncShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SyncShare.cdxml-help.xml Module Name: SyncShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/syncshare/disable-syncshare?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/syncshare/disable-syncshare?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-SyncShare --- diff --git a/docset/winserver2019-ps/syncshare/Enable-SyncShare.md b/docset/winserver2019-ps/syncshare/Enable-SyncShare.md index ca50ff6a04..543d04bb71 100644 --- a/docset/winserver2019-ps/syncshare/Enable-SyncShare.md +++ b/docset/winserver2019-ps/syncshare/Enable-SyncShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SyncShare.cdxml-help.xml Module Name: SyncShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/syncshare/enable-syncshare?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/syncshare/enable-syncshare?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-SyncShare --- diff --git a/docset/winserver2019-ps/syncshare/Get-SyncServerSetting.md b/docset/winserver2019-ps/syncshare/Get-SyncServerSetting.md index 3258687409..d95c2870ae 100644 --- a/docset/winserver2019-ps/syncshare/Get-SyncServerSetting.md +++ b/docset/winserver2019-ps/syncshare/Get-SyncServerSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SyncServerSetting.cdxml-help.xml Module Name: SyncShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/syncshare/get-syncserversetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/syncshare/get-syncserversetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SyncServerSetting --- diff --git a/docset/winserver2019-ps/syncshare/Get-SyncShare.md b/docset/winserver2019-ps/syncshare/Get-SyncShare.md index 3c96752e5c..11edd736a6 100644 --- a/docset/winserver2019-ps/syncshare/Get-SyncShare.md +++ b/docset/winserver2019-ps/syncshare/Get-SyncShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SyncShare.cdxml-help.xml Module Name: SyncShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/syncshare/get-syncshare?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/syncshare/get-syncshare?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SyncShare --- diff --git a/docset/winserver2019-ps/syncshare/Get-SyncUserStatus.md b/docset/winserver2019-ps/syncshare/Get-SyncUserStatus.md index 8b78b50455..3e29787c54 100644 --- a/docset/winserver2019-ps/syncshare/Get-SyncUserStatus.md +++ b/docset/winserver2019-ps/syncshare/Get-SyncUserStatus.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SyncUserStatus.cdxml-help.xml Module Name: SyncShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/syncshare/get-syncuserstatus?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/syncshare/get-syncuserstatus?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SyncUserStatus --- diff --git a/docset/winserver2019-ps/syncshare/New-SyncShare.md b/docset/winserver2019-ps/syncshare/New-SyncShare.md index 82829742e8..456ecbd3c0 100644 --- a/docset/winserver2019-ps/syncshare/New-SyncShare.md +++ b/docset/winserver2019-ps/syncshare/New-SyncShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SyncShare.cdxml-help.xml Module Name: SyncShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/syncshare/new-syncshare?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/syncshare/new-syncshare?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-SyncShare --- diff --git a/docset/winserver2019-ps/syncshare/Remove-SyncShare.md b/docset/winserver2019-ps/syncshare/Remove-SyncShare.md index 48732a8bc9..f8b2ac0b8d 100644 --- a/docset/winserver2019-ps/syncshare/Remove-SyncShare.md +++ b/docset/winserver2019-ps/syncshare/Remove-SyncShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SyncShare.cdxml-help.xml Module Name: SyncShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/syncshare/remove-syncshare?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/syncshare/remove-syncshare?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-SyncShare --- diff --git a/docset/winserver2019-ps/syncshare/Repair-SyncShare.md b/docset/winserver2019-ps/syncshare/Repair-SyncShare.md index d25557e29e..8b1f9944b3 100644 --- a/docset/winserver2019-ps/syncshare/Repair-SyncShare.md +++ b/docset/winserver2019-ps/syncshare/Repair-SyncShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SyncShare.cdxml-help.xml Module Name: SyncShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/syncshare/repair-syncshare?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/syncshare/repair-syncshare?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Repair-SyncShare --- diff --git a/docset/winserver2019-ps/syncshare/Set-SyncServerSetting.md b/docset/winserver2019-ps/syncshare/Set-SyncServerSetting.md index 0336737c92..eb38bb720f 100644 --- a/docset/winserver2019-ps/syncshare/Set-SyncServerSetting.md +++ b/docset/winserver2019-ps/syncshare/Set-SyncServerSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SyncServerSetting.cdxml-help.xml Module Name: SyncShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/syncshare/set-syncserversetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/syncshare/set-syncserversetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SyncServerSetting --- diff --git a/docset/winserver2019-ps/syncshare/Set-SyncShare.md b/docset/winserver2019-ps/syncshare/Set-SyncShare.md index 36378964f1..97975d3b4a 100644 --- a/docset/winserver2019-ps/syncshare/Set-SyncShare.md +++ b/docset/winserver2019-ps/syncshare/Set-SyncShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SyncShare.cdxml-help.xml Module Name: SyncShare ms.date: 09/03/2017 -online version: https://docs.microsoft.com/powershell/module/syncshare/set-syncshare?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/syncshare/set-syncshare?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SyncShare --- diff --git a/docset/winserver2019-ps/systeminsights/Add-InsightsCapability.md b/docset/winserver2019-ps/systeminsights/Add-InsightsCapability.md index 657c4f287c..d60e3a5dbd 100644 --- a/docset/winserver2019-ps/systeminsights/Add-InsightsCapability.md +++ b/docset/winserver2019-ps/systeminsights/Add-InsightsCapability.md @@ -5,7 +5,7 @@ external help file: Microsoft.SystemInsights.Management.PowerShell.dll-help.xml Locale: en-US Module Name: SystemInsights ms.date: 06/18/2018 -online version: https://docs.microsoft.com/powershell/module/systeminsights/add-insightscapability?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/systeminsights/add-insightscapability?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-InsightsCapability --- diff --git a/docset/winserver2019-ps/systeminsights/Disable-InsightsCapability.md b/docset/winserver2019-ps/systeminsights/Disable-InsightsCapability.md index fd47c35211..b3a1bd5482 100644 --- a/docset/winserver2019-ps/systeminsights/Disable-InsightsCapability.md +++ b/docset/winserver2019-ps/systeminsights/Disable-InsightsCapability.md @@ -5,7 +5,7 @@ external help file: Microsoft.SystemInsights.Management.PowerShell.dll-help.xml Locale: en-US Module Name: SystemInsights ms.date: 06/18/2018 -online version: https://docs.microsoft.com/powershell/module/systeminsights/disable-insightscapability?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/systeminsights/disable-insightscapability?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-InsightsCapability --- diff --git a/docset/winserver2019-ps/systeminsights/Disable-InsightsCapabilitySchedule.md b/docset/winserver2019-ps/systeminsights/Disable-InsightsCapabilitySchedule.md index 6e3e4ac0af..288b562859 100644 --- a/docset/winserver2019-ps/systeminsights/Disable-InsightsCapabilitySchedule.md +++ b/docset/winserver2019-ps/systeminsights/Disable-InsightsCapabilitySchedule.md @@ -5,7 +5,7 @@ external help file: Microsoft.SystemInsights.Management.PowerShell.dll-help.xml Locale: en-US Module Name: SystemInsights ms.date: 06/18/2018 -online version: https://docs.microsoft.com/powershell/module/systeminsights/disable-insightscapabilityschedule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/systeminsights/disable-insightscapabilityschedule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-InsightsCapabilitySchedule --- diff --git a/docset/winserver2019-ps/systeminsights/Enable-InsightsCapability.md b/docset/winserver2019-ps/systeminsights/Enable-InsightsCapability.md index 95620b57c4..020f3694db 100644 --- a/docset/winserver2019-ps/systeminsights/Enable-InsightsCapability.md +++ b/docset/winserver2019-ps/systeminsights/Enable-InsightsCapability.md @@ -5,7 +5,7 @@ external help file: Microsoft.SystemInsights.Management.PowerShell.dll-help.xml Locale: en-US Module Name: SystemInsights ms.date: 06/18/2018 -online version: https://docs.microsoft.com/powershell/module/systeminsights/enable-insightscapability?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/systeminsights/enable-insightscapability?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-InsightsCapability --- diff --git a/docset/winserver2019-ps/systeminsights/Enable-InsightsCapabilitySchedule.md b/docset/winserver2019-ps/systeminsights/Enable-InsightsCapabilitySchedule.md index f5badccecb..8dd94c05a2 100644 --- a/docset/winserver2019-ps/systeminsights/Enable-InsightsCapabilitySchedule.md +++ b/docset/winserver2019-ps/systeminsights/Enable-InsightsCapabilitySchedule.md @@ -5,7 +5,7 @@ external help file: Microsoft.SystemInsights.Management.PowerShell.dll-help.xml Locale: en-US Module Name: SystemInsights ms.date: 06/18/2018 -online version: https://docs.microsoft.com/powershell/module/systeminsights/enable-insightscapabilityschedule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/systeminsights/enable-insightscapabilityschedule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-InsightsCapabilitySchedule --- diff --git a/docset/winserver2019-ps/systeminsights/Get-InsightsCapability.md b/docset/winserver2019-ps/systeminsights/Get-InsightsCapability.md index 6faf6d0d4a..fdcc57bcef 100644 --- a/docset/winserver2019-ps/systeminsights/Get-InsightsCapability.md +++ b/docset/winserver2019-ps/systeminsights/Get-InsightsCapability.md @@ -5,7 +5,7 @@ external help file: Microsoft.SystemInsights.Management.PowerShell.dll-help.xml Locale: en-US Module Name: SystemInsights ms.date: 06/18/2018 -online version: https://docs.microsoft.com/powershell/module/systeminsights/get-insightscapability?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/systeminsights/get-insightscapability?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-InsightsCapability --- diff --git a/docset/winserver2019-ps/systeminsights/Get-InsightsCapabilityAction.md b/docset/winserver2019-ps/systeminsights/Get-InsightsCapabilityAction.md index 220075cf81..3c5fc92161 100644 --- a/docset/winserver2019-ps/systeminsights/Get-InsightsCapabilityAction.md +++ b/docset/winserver2019-ps/systeminsights/Get-InsightsCapabilityAction.md @@ -5,7 +5,7 @@ external help file: Microsoft.SystemInsights.Management.PowerShell.dll-help.xml Locale: en-US Module Name: SystemInsights ms.date: 06/18/2018 -online version: https://docs.microsoft.com/powershell/module/systeminsights/get-insightscapabilityaction?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/systeminsights/get-insightscapabilityaction?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-InsightsCapabilityAction --- diff --git a/docset/winserver2019-ps/systeminsights/Get-InsightsCapabilityResult.md b/docset/winserver2019-ps/systeminsights/Get-InsightsCapabilityResult.md index 2d42eb2e7f..c76e01541a 100644 --- a/docset/winserver2019-ps/systeminsights/Get-InsightsCapabilityResult.md +++ b/docset/winserver2019-ps/systeminsights/Get-InsightsCapabilityResult.md @@ -5,7 +5,7 @@ external help file: Microsoft.SystemInsights.Management.PowerShell.dll-help.xml Locale: en-US Module Name: SystemInsights ms.date: 06/18/2018 -online version: https://docs.microsoft.com/powershell/module/systeminsights/get-insightscapabilityresult?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/systeminsights/get-insightscapabilityresult?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-InsightsCapabilityResult --- diff --git a/docset/winserver2019-ps/systeminsights/Get-InsightsCapabilitySchedule.md b/docset/winserver2019-ps/systeminsights/Get-InsightsCapabilitySchedule.md index a6c27d286c..0a60094ec5 100644 --- a/docset/winserver2019-ps/systeminsights/Get-InsightsCapabilitySchedule.md +++ b/docset/winserver2019-ps/systeminsights/Get-InsightsCapabilitySchedule.md @@ -5,7 +5,7 @@ external help file: Microsoft.SystemInsights.Management.PowerShell.dll-help.xml Locale: en-US Module Name: SystemInsights ms.date: 06/18/2018 -online version: https://docs.microsoft.com/powershell/module/systeminsights/get-insightscapabilityschedule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/systeminsights/get-insightscapabilityschedule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-InsightsCapabilitySchedule --- diff --git a/docset/winserver2019-ps/systeminsights/Invoke-InsightsCapability.md b/docset/winserver2019-ps/systeminsights/Invoke-InsightsCapability.md index 4a37fb9c48..64905c3b43 100644 --- a/docset/winserver2019-ps/systeminsights/Invoke-InsightsCapability.md +++ b/docset/winserver2019-ps/systeminsights/Invoke-InsightsCapability.md @@ -5,7 +5,7 @@ external help file: Microsoft.SystemInsights.Management.PowerShell.dll-help.xml Locale: en-US Module Name: SystemInsights ms.date: 06/18/2018 -online version: https://docs.microsoft.com/powershell/module/systeminsights/invoke-insightscapability?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/systeminsights/invoke-insightscapability?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-InsightsCapability --- diff --git a/docset/winserver2019-ps/systeminsights/Remove-InsightsCapability.md b/docset/winserver2019-ps/systeminsights/Remove-InsightsCapability.md index de43ca08fc..693c4db204 100644 --- a/docset/winserver2019-ps/systeminsights/Remove-InsightsCapability.md +++ b/docset/winserver2019-ps/systeminsights/Remove-InsightsCapability.md @@ -5,7 +5,7 @@ external help file: Microsoft.SystemInsights.Management.PowerShell.dll-help.xml Locale: en-US Module Name: SystemInsights ms.date: 06/18/2018 -online version: https://docs.microsoft.com/powershell/module/systeminsights/remove-insightscapability?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/systeminsights/remove-insightscapability?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-InsightsCapability --- diff --git a/docset/winserver2019-ps/systeminsights/Remove-InsightsCapabilityAction.md b/docset/winserver2019-ps/systeminsights/Remove-InsightsCapabilityAction.md index 233bf99de7..8fb1aca5f6 100644 --- a/docset/winserver2019-ps/systeminsights/Remove-InsightsCapabilityAction.md +++ b/docset/winserver2019-ps/systeminsights/Remove-InsightsCapabilityAction.md @@ -5,7 +5,7 @@ external help file: Microsoft.SystemInsights.Management.PowerShell.dll-help.xml Locale: en-US Module Name: SystemInsights ms.date: 06/18/2018 -online version: https://docs.microsoft.com/powershell/module/systeminsights/remove-insightscapabilityaction?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/systeminsights/remove-insightscapabilityaction?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-InsightsCapabilityAction --- diff --git a/docset/winserver2019-ps/systeminsights/Set-InsightsCapabilityAction.md b/docset/winserver2019-ps/systeminsights/Set-InsightsCapabilityAction.md index 1ebd0b0168..842064c276 100644 --- a/docset/winserver2019-ps/systeminsights/Set-InsightsCapabilityAction.md +++ b/docset/winserver2019-ps/systeminsights/Set-InsightsCapabilityAction.md @@ -5,7 +5,7 @@ external help file: Microsoft.SystemInsights.Management.PowerShell.dll-help.xml Locale: en-US Module Name: SystemInsights ms.date: 06/18/2018 -online version: https://docs.microsoft.com/powershell/module/systeminsights/set-insightscapabilityaction?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/systeminsights/set-insightscapabilityaction?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-InsightsCapabilityAction --- diff --git a/docset/winserver2019-ps/systeminsights/Set-InsightsCapabilitySchedule.md b/docset/winserver2019-ps/systeminsights/Set-InsightsCapabilitySchedule.md index 97690ddad2..ab58fd6f13 100644 --- a/docset/winserver2019-ps/systeminsights/Set-InsightsCapabilitySchedule.md +++ b/docset/winserver2019-ps/systeminsights/Set-InsightsCapabilitySchedule.md @@ -5,7 +5,7 @@ external help file: Microsoft.SystemInsights.Management.PowerShell.dll-help.xml Locale: en-US Module Name: SystemInsights ms.date: 06/18/2018 -online version: https://docs.microsoft.com/powershell/module/systeminsights/set-insightscapabilityschedule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/systeminsights/set-insightscapabilityschedule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-InsightsCapabilitySchedule --- diff --git a/docset/winserver2019-ps/systeminsights/Update-InsightsCapability.md b/docset/winserver2019-ps/systeminsights/Update-InsightsCapability.md index 8cf54d2b61..eaf136691c 100644 --- a/docset/winserver2019-ps/systeminsights/Update-InsightsCapability.md +++ b/docset/winserver2019-ps/systeminsights/Update-InsightsCapability.md @@ -5,7 +5,7 @@ external help file: Microsoft.SystemInsights.Management.PowerShell.dll-help.xml Locale: en-US Module Name: SystemInsights ms.date: 06/18/2018 -online version: https://docs.microsoft.com/powershell/module/systeminsights/update-insightscapability?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/systeminsights/update-insightscapability?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-InsightsCapability --- diff --git a/docset/winserver2019-ps/tls/Disable-TlsCipherSuite.md b/docset/winserver2019-ps/tls/Disable-TlsCipherSuite.md index 71efea0568..5a55a5f098 100644 --- a/docset/winserver2019-ps/tls/Disable-TlsCipherSuite.md +++ b/docset/winserver2019-ps/tls/Disable-TlsCipherSuite.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.WindowsAuthenticationProtocols.Commands.dll-Help.xml Module Name: TLS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/tls/disable-tlsciphersuite?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/tls/disable-tlsciphersuite?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-TlsCipherSuite --- diff --git a/docset/winserver2019-ps/tls/Disable-TlsEccCurve.md b/docset/winserver2019-ps/tls/Disable-TlsEccCurve.md index 5ff07b6fad..2662e9e498 100644 --- a/docset/winserver2019-ps/tls/Disable-TlsEccCurve.md +++ b/docset/winserver2019-ps/tls/Disable-TlsEccCurve.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.WindowsAuthenticationProtocols.Commands.dll-Help.xml Module Name: TLS ms.date: 05/09/2017 -online version: https://docs.microsoft.com/powershell/module/tls/disable-tlsecccurve?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/tls/disable-tlsecccurve?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-TlsEccCurve --- diff --git a/docset/winserver2019-ps/tls/Disable-TlsSessionTicketKey.md b/docset/winserver2019-ps/tls/Disable-TlsSessionTicketKey.md index 4dd034302e..f2503b80d4 100644 --- a/docset/winserver2019-ps/tls/Disable-TlsSessionTicketKey.md +++ b/docset/winserver2019-ps/tls/Disable-TlsSessionTicketKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.WindowsAuthenticationProtocols.Commands.dll-Help.xml Module Name: TLS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/tls/disable-tlssessionticketkey?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/tls/disable-tlssessionticketkey?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-TlsSessionTicketKey --- diff --git a/docset/winserver2019-ps/tls/Enable-TlsCipherSuite.md b/docset/winserver2019-ps/tls/Enable-TlsCipherSuite.md index fc089dbc92..a505f2ea87 100644 --- a/docset/winserver2019-ps/tls/Enable-TlsCipherSuite.md +++ b/docset/winserver2019-ps/tls/Enable-TlsCipherSuite.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.WindowsAuthenticationProtocols.Commands.dll-Help.xml Module Name: TLS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/tls/enable-tlsciphersuite?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/tls/enable-tlsciphersuite?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-TlsCipherSuite --- diff --git a/docset/winserver2019-ps/tls/Enable-TlsEccCurve.md b/docset/winserver2019-ps/tls/Enable-TlsEccCurve.md index a6d3523132..380efac5a0 100644 --- a/docset/winserver2019-ps/tls/Enable-TlsEccCurve.md +++ b/docset/winserver2019-ps/tls/Enable-TlsEccCurve.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.WindowsAuthenticationProtocols.Commands.dll-Help.xml Module Name: TLS ms.date: 05/09/2017 -online version: https://docs.microsoft.com/powershell/module/tls/enable-tlsecccurve?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/tls/enable-tlsecccurve?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-TlsEccCurve --- diff --git a/docset/winserver2019-ps/tls/Enable-TlsSessionTicketKey.md b/docset/winserver2019-ps/tls/Enable-TlsSessionTicketKey.md index 19ff8b7b8f..927e281af4 100644 --- a/docset/winserver2019-ps/tls/Enable-TlsSessionTicketKey.md +++ b/docset/winserver2019-ps/tls/Enable-TlsSessionTicketKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.WindowsAuthenticationProtocols.Commands.dll-Help.xml Module Name: TLS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/tls/enable-tlssessionticketkey?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/tls/enable-tlssessionticketkey?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-TlsSessionTicketKey --- diff --git a/docset/winserver2019-ps/tls/Export-TlsSessionTicketKey.md b/docset/winserver2019-ps/tls/Export-TlsSessionTicketKey.md index 944abdd318..b53d0e8dc8 100644 --- a/docset/winserver2019-ps/tls/Export-TlsSessionTicketKey.md +++ b/docset/winserver2019-ps/tls/Export-TlsSessionTicketKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.WindowsAuthenticationProtocols.Commands.dll-Help.xml Module Name: TLS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/tls/export-tlssessionticketkey?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/tls/export-tlssessionticketkey?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-TlsSessionTicketKey --- diff --git a/docset/winserver2019-ps/tls/Get-TlsCipherSuite.md b/docset/winserver2019-ps/tls/Get-TlsCipherSuite.md index 9205a6c92f..c3f379ca32 100644 --- a/docset/winserver2019-ps/tls/Get-TlsCipherSuite.md +++ b/docset/winserver2019-ps/tls/Get-TlsCipherSuite.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.WindowsAuthenticationProtocols.Commands.dll-Help.xml Module Name: TLS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/tls/get-tlsciphersuite?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/tls/get-tlsciphersuite?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-TlsCipherSuite --- diff --git a/docset/winserver2019-ps/tls/Get-TlsEccCurve.md b/docset/winserver2019-ps/tls/Get-TlsEccCurve.md index 6a3c07fca2..0be359a405 100644 --- a/docset/winserver2019-ps/tls/Get-TlsEccCurve.md +++ b/docset/winserver2019-ps/tls/Get-TlsEccCurve.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.WindowsAuthenticationProtocols.Commands.dll-Help.xml Module Name: TLS ms.date: 05/09/2017 -online version: https://docs.microsoft.com/powershell/module/tls/get-tlsecccurve?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/tls/get-tlsecccurve?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-TlsEccCurve --- diff --git a/docset/winserver2019-ps/tls/New-TlsSessionTicketKey.md b/docset/winserver2019-ps/tls/New-TlsSessionTicketKey.md index 4cc7062622..fc003a547f 100644 --- a/docset/winserver2019-ps/tls/New-TlsSessionTicketKey.md +++ b/docset/winserver2019-ps/tls/New-TlsSessionTicketKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.WindowsAuthenticationProtocols.Commands.dll-Help.xml Module Name: TLS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/tls/new-tlssessionticketkey?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/tls/new-tlssessionticketkey?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-TlsSessionTicketKey --- diff --git a/docset/winserver2019-ps/troubleshootingpack/Get-TroubleshootingPack.md b/docset/winserver2019-ps/troubleshootingpack/Get-TroubleshootingPack.md index 4d88c17c6c..c7f71659ea 100644 --- a/docset/winserver2019-ps/troubleshootingpack/Get-TroubleshootingPack.md +++ b/docset/winserver2019-ps/troubleshootingpack/Get-TroubleshootingPack.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Diagnosis.TroubleshootingPack.dll-Help.xml Module Name: TroubleshootingPack ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/troubleshootingpack/get-troubleshootingpack?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/troubleshootingpack/get-troubleshootingpack?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-TroubleshootingPack --- diff --git a/docset/winserver2019-ps/troubleshootingpack/Invoke-TroubleshootingPack.md b/docset/winserver2019-ps/troubleshootingpack/Invoke-TroubleshootingPack.md index 22e64b9cd3..ddb74f0015 100644 --- a/docset/winserver2019-ps/troubleshootingpack/Invoke-TroubleshootingPack.md +++ b/docset/winserver2019-ps/troubleshootingpack/Invoke-TroubleshootingPack.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Diagnosis.TroubleshootingPack.dll-Help.xml Module Name: TroubleshootingPack ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/troubleshootingpack/invoke-troubleshootingpack?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/troubleshootingpack/invoke-troubleshootingpack?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-TroubleshootingPack --- diff --git a/docset/winserver2019-ps/trustedplatformmodule/Clear-Tpm.md b/docset/winserver2019-ps/trustedplatformmodule/Clear-Tpm.md index 1512625640..378587fe4e 100644 --- a/docset/winserver2019-ps/trustedplatformmodule/Clear-Tpm.md +++ b/docset/winserver2019-ps/trustedplatformmodule/Clear-Tpm.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Tpm.Commands.dll-Help.xml Module Name: TrustedPlatformModule ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/trustedplatformmodule/clear-tpm?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/trustedplatformmodule/clear-tpm?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-Tpm --- diff --git a/docset/winserver2019-ps/trustedplatformmodule/ConvertTo-TpmOwnerAuth.md b/docset/winserver2019-ps/trustedplatformmodule/ConvertTo-TpmOwnerAuth.md index a5788db601..c4559cf0ad 100644 --- a/docset/winserver2019-ps/trustedplatformmodule/ConvertTo-TpmOwnerAuth.md +++ b/docset/winserver2019-ps/trustedplatformmodule/ConvertTo-TpmOwnerAuth.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Tpm.Commands.dll-Help.xml Module Name: TrustedPlatformModule ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/trustedplatformmodule/convertto-tpmownerauth?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/trustedplatformmodule/convertto-tpmownerauth?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: ConvertTo-TpmOwnerAuth --- diff --git a/docset/winserver2019-ps/trustedplatformmodule/Disable-TpmAutoProvisioning.md b/docset/winserver2019-ps/trustedplatformmodule/Disable-TpmAutoProvisioning.md index 1f1f3897ee..c4d93a997d 100644 --- a/docset/winserver2019-ps/trustedplatformmodule/Disable-TpmAutoProvisioning.md +++ b/docset/winserver2019-ps/trustedplatformmodule/Disable-TpmAutoProvisioning.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Tpm.Commands.dll-Help.xml Module Name: TrustedPlatformModule ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/trustedplatformmodule/disable-tpmautoprovisioning?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/trustedplatformmodule/disable-tpmautoprovisioning?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-TpmAutoProvisioning --- diff --git a/docset/winserver2019-ps/trustedplatformmodule/Enable-TpmAutoProvisioning.md b/docset/winserver2019-ps/trustedplatformmodule/Enable-TpmAutoProvisioning.md index e785e3c898..b14b289d30 100644 --- a/docset/winserver2019-ps/trustedplatformmodule/Enable-TpmAutoProvisioning.md +++ b/docset/winserver2019-ps/trustedplatformmodule/Enable-TpmAutoProvisioning.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Tpm.Commands.dll-Help.xml Module Name: TrustedPlatformModule ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/trustedplatformmodule/enable-tpmautoprovisioning?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/trustedplatformmodule/enable-tpmautoprovisioning?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-TpmAutoProvisioning --- diff --git a/docset/winserver2019-ps/trustedplatformmodule/Get-Tpm.md b/docset/winserver2019-ps/trustedplatformmodule/Get-Tpm.md index d2aa14a957..29c7098d3e 100644 --- a/docset/winserver2019-ps/trustedplatformmodule/Get-Tpm.md +++ b/docset/winserver2019-ps/trustedplatformmodule/Get-Tpm.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Tpm.Commands.dll-Help.xml Module Name: TrustedPlatformModule ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/trustedplatformmodule/get-tpm?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/trustedplatformmodule/get-tpm?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-Tpm --- diff --git a/docset/winserver2019-ps/trustedplatformmodule/Get-TpmEndorsementKeyInfo.md b/docset/winserver2019-ps/trustedplatformmodule/Get-TpmEndorsementKeyInfo.md index ec7d1d2bca..c38f27ba82 100644 --- a/docset/winserver2019-ps/trustedplatformmodule/Get-TpmEndorsementKeyInfo.md +++ b/docset/winserver2019-ps/trustedplatformmodule/Get-TpmEndorsementKeyInfo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Tpm.Commands.dll-Help.xml Module Name: TrustedPlatformModule ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/trustedplatformmodule/get-tpmendorsementkeyinfo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/trustedplatformmodule/get-tpmendorsementkeyinfo?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-TpmEndorsementKeyInfo --- diff --git a/docset/winserver2019-ps/trustedplatformmodule/Get-TpmSupportedFeature.md b/docset/winserver2019-ps/trustedplatformmodule/Get-TpmSupportedFeature.md index 4818d0b935..07e763a744 100644 --- a/docset/winserver2019-ps/trustedplatformmodule/Get-TpmSupportedFeature.md +++ b/docset/winserver2019-ps/trustedplatformmodule/Get-TpmSupportedFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Tpm.Commands.dll-Help.xml Module Name: TrustedPlatformModule ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/trustedplatformmodule/get-tpmsupportedfeature?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/trustedplatformmodule/get-tpmsupportedfeature?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-TpmSupportedFeature --- diff --git a/docset/winserver2019-ps/trustedplatformmodule/Import-TpmOwnerAuth.md b/docset/winserver2019-ps/trustedplatformmodule/Import-TpmOwnerAuth.md index 913e1ae0ee..9c594c068d 100644 --- a/docset/winserver2019-ps/trustedplatformmodule/Import-TpmOwnerAuth.md +++ b/docset/winserver2019-ps/trustedplatformmodule/Import-TpmOwnerAuth.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Tpm.Commands.dll-Help.xml Module Name: TrustedPlatformModule ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/trustedplatformmodule/import-tpmownerauth?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/trustedplatformmodule/import-tpmownerauth?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-TpmOwnerAuth --- diff --git a/docset/winserver2019-ps/trustedplatformmodule/Initialize-Tpm.md b/docset/winserver2019-ps/trustedplatformmodule/Initialize-Tpm.md index f1cc093c1f..c487dbb794 100644 --- a/docset/winserver2019-ps/trustedplatformmodule/Initialize-Tpm.md +++ b/docset/winserver2019-ps/trustedplatformmodule/Initialize-Tpm.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Tpm.Commands.dll-Help.xml Module Name: TrustedPlatformModule ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/trustedplatformmodule/initialize-tpm?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/trustedplatformmodule/initialize-tpm?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Initialize-Tpm --- diff --git a/docset/winserver2019-ps/trustedplatformmodule/Set-TpmOwnerAuth.md b/docset/winserver2019-ps/trustedplatformmodule/Set-TpmOwnerAuth.md index 25a69fb1ac..960e17fedb 100644 --- a/docset/winserver2019-ps/trustedplatformmodule/Set-TpmOwnerAuth.md +++ b/docset/winserver2019-ps/trustedplatformmodule/Set-TpmOwnerAuth.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Tpm.Commands.dll-Help.xml Module Name: TrustedPlatformModule ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/trustedplatformmodule/set-tpmownerauth?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/trustedplatformmodule/set-tpmownerauth?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-TpmOwnerAuth --- diff --git a/docset/winserver2019-ps/trustedplatformmodule/Unblock-Tpm.md b/docset/winserver2019-ps/trustedplatformmodule/Unblock-Tpm.md index d5e42a92a3..630ed5860e 100644 --- a/docset/winserver2019-ps/trustedplatformmodule/Unblock-Tpm.md +++ b/docset/winserver2019-ps/trustedplatformmodule/Unblock-Tpm.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Tpm.Commands.dll-Help.xml Module Name: TrustedPlatformModule ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/trustedplatformmodule/unblock-tpm?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/trustedplatformmodule/unblock-tpm?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unblock-Tpm --- diff --git a/docset/winserver2019-ps/uev/Clear-UevAppxPackage.md b/docset/winserver2019-ps/uev/Clear-UevAppxPackage.md index 2cb2e377fb..6fa8afbc2e 100644 --- a/docset/winserver2019-ps/uev/Clear-UevAppxPackage.md +++ b/docset/winserver2019-ps/uev/Clear-UevAppxPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/clear-uevappxpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/clear-uevappxpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-UevAppxPackage --- diff --git a/docset/winserver2019-ps/uev/Clear-UevConfiguration.md b/docset/winserver2019-ps/uev/Clear-UevConfiguration.md index 97accbc9d3..69822a63dd 100644 --- a/docset/winserver2019-ps/uev/Clear-UevConfiguration.md +++ b/docset/winserver2019-ps/uev/Clear-UevConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/clear-uevconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/clear-uevconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-UevConfiguration --- diff --git a/docset/winserver2019-ps/uev/Disable-Uev.md b/docset/winserver2019-ps/uev/Disable-Uev.md index e25d3c38c7..6f8f1a4051 100644 --- a/docset/winserver2019-ps/uev/Disable-Uev.md +++ b/docset/winserver2019-ps/uev/Disable-Uev.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/disable-uev?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/disable-uev?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-Uev --- diff --git a/docset/winserver2019-ps/uev/Disable-UevAppxPackage.md b/docset/winserver2019-ps/uev/Disable-UevAppxPackage.md index e8767c8362..ffc8bee02f 100644 --- a/docset/winserver2019-ps/uev/Disable-UevAppxPackage.md +++ b/docset/winserver2019-ps/uev/Disable-UevAppxPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/disable-uevappxpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/disable-uevappxpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-UevAppxPackage --- diff --git a/docset/winserver2019-ps/uev/Disable-UevTemplate.md b/docset/winserver2019-ps/uev/Disable-UevTemplate.md index 8e1ecbd3c7..6942ef0849 100644 --- a/docset/winserver2019-ps/uev/Disable-UevTemplate.md +++ b/docset/winserver2019-ps/uev/Disable-UevTemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/disable-uevtemplate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/disable-uevtemplate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-UevTemplate --- diff --git a/docset/winserver2019-ps/uev/Enable-Uev.md b/docset/winserver2019-ps/uev/Enable-Uev.md index b62b6893ea..52d5ffaf23 100644 --- a/docset/winserver2019-ps/uev/Enable-Uev.md +++ b/docset/winserver2019-ps/uev/Enable-Uev.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/enable-uev?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/enable-uev?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-Uev --- diff --git a/docset/winserver2019-ps/uev/Enable-UevAppxPackage.md b/docset/winserver2019-ps/uev/Enable-UevAppxPackage.md index d4dd4830fd..7e774513dd 100644 --- a/docset/winserver2019-ps/uev/Enable-UevAppxPackage.md +++ b/docset/winserver2019-ps/uev/Enable-UevAppxPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/enable-uevappxpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/enable-uevappxpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-UevAppxPackage --- diff --git a/docset/winserver2019-ps/uev/Enable-UevTemplate.md b/docset/winserver2019-ps/uev/Enable-UevTemplate.md index b315b763fb..7fb0b01f37 100644 --- a/docset/winserver2019-ps/uev/Enable-UevTemplate.md +++ b/docset/winserver2019-ps/uev/Enable-UevTemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/enable-uevtemplate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/enable-uevtemplate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-UevTemplate --- diff --git a/docset/winserver2019-ps/uev/Export-UevConfiguration.md b/docset/winserver2019-ps/uev/Export-UevConfiguration.md index c581239db8..8cd8dc8100 100644 --- a/docset/winserver2019-ps/uev/Export-UevConfiguration.md +++ b/docset/winserver2019-ps/uev/Export-UevConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/export-uevconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/export-uevconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-UevConfiguration --- diff --git a/docset/winserver2019-ps/uev/Export-UevPackage.md b/docset/winserver2019-ps/uev/Export-UevPackage.md index b45d158d65..e2bb249ad4 100644 --- a/docset/winserver2019-ps/uev/Export-UevPackage.md +++ b/docset/winserver2019-ps/uev/Export-UevPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/export-uevpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/export-uevpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-UevPackage --- diff --git a/docset/winserver2019-ps/uev/Get-UevAppxPackage.md b/docset/winserver2019-ps/uev/Get-UevAppxPackage.md index e224c1a96f..230487fd79 100644 --- a/docset/winserver2019-ps/uev/Get-UevAppxPackage.md +++ b/docset/winserver2019-ps/uev/Get-UevAppxPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/get-uevappxpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/get-uevappxpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UevAppxPackage --- diff --git a/docset/winserver2019-ps/uev/Get-UevConfiguration.md b/docset/winserver2019-ps/uev/Get-UevConfiguration.md index 1112141e38..1e4ba89d6a 100644 --- a/docset/winserver2019-ps/uev/Get-UevConfiguration.md +++ b/docset/winserver2019-ps/uev/Get-UevConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/get-uevconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/get-uevconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UevConfiguration --- diff --git a/docset/winserver2019-ps/uev/Get-UevStatus.md b/docset/winserver2019-ps/uev/Get-UevStatus.md index ba2700f387..d8d3bcee72 100644 --- a/docset/winserver2019-ps/uev/Get-UevStatus.md +++ b/docset/winserver2019-ps/uev/Get-UevStatus.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/get-uevstatus?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/get-uevstatus?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UevStatus --- diff --git a/docset/winserver2019-ps/uev/Get-UevTemplate.md b/docset/winserver2019-ps/uev/Get-UevTemplate.md index 437ca443f6..66b2d10eaa 100644 --- a/docset/winserver2019-ps/uev/Get-UevTemplate.md +++ b/docset/winserver2019-ps/uev/Get-UevTemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/get-uevtemplate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/get-uevtemplate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UevTemplate --- diff --git a/docset/winserver2019-ps/uev/Get-UevTemplateProgram.md b/docset/winserver2019-ps/uev/Get-UevTemplateProgram.md index e45f891cf1..65559d9ac3 100644 --- a/docset/winserver2019-ps/uev/Get-UevTemplateProgram.md +++ b/docset/winserver2019-ps/uev/Get-UevTemplateProgram.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/get-uevtemplateprogram?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/get-uevtemplateprogram?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UevTemplateProgram --- diff --git a/docset/winserver2019-ps/uev/Import-UevConfiguration.md b/docset/winserver2019-ps/uev/Import-UevConfiguration.md index 295307c080..6d50f827c8 100644 --- a/docset/winserver2019-ps/uev/Import-UevConfiguration.md +++ b/docset/winserver2019-ps/uev/Import-UevConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/import-uevconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/import-uevconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-UevConfiguration --- diff --git a/docset/winserver2019-ps/uev/Register-UevTemplate.md b/docset/winserver2019-ps/uev/Register-UevTemplate.md index d0250bf8cd..777ce65b22 100644 --- a/docset/winserver2019-ps/uev/Register-UevTemplate.md +++ b/docset/winserver2019-ps/uev/Register-UevTemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/register-uevtemplate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/register-uevtemplate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Register-UevTemplate --- diff --git a/docset/winserver2019-ps/uev/Repair-UevTemplateIndex.md b/docset/winserver2019-ps/uev/Repair-UevTemplateIndex.md index 8b0090b465..62f1d893a0 100644 --- a/docset/winserver2019-ps/uev/Repair-UevTemplateIndex.md +++ b/docset/winserver2019-ps/uev/Repair-UevTemplateIndex.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/repair-uevtemplateindex?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/repair-uevtemplateindex?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Repair-UevTemplateIndex --- diff --git a/docset/winserver2019-ps/uev/Restore-UevBackup.md b/docset/winserver2019-ps/uev/Restore-UevBackup.md index 825df22cb4..d23d48a475 100644 --- a/docset/winserver2019-ps/uev/Restore-UevBackup.md +++ b/docset/winserver2019-ps/uev/Restore-UevBackup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/restore-uevbackup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/restore-uevbackup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-UevBackup --- diff --git a/docset/winserver2019-ps/uev/Restore-UevUserSetting.md b/docset/winserver2019-ps/uev/Restore-UevUserSetting.md index 8089661ca5..af44f28117 100644 --- a/docset/winserver2019-ps/uev/Restore-UevUserSetting.md +++ b/docset/winserver2019-ps/uev/Restore-UevUserSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/restore-uevusersetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/restore-uevusersetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-UevUserSetting --- diff --git a/docset/winserver2019-ps/uev/Set-UevConfiguration.md b/docset/winserver2019-ps/uev/Set-UevConfiguration.md index c06dbaef8d..566cce7725 100644 --- a/docset/winserver2019-ps/uev/Set-UevConfiguration.md +++ b/docset/winserver2019-ps/uev/Set-UevConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/set-uevconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/set-uevconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-UevConfiguration --- diff --git a/docset/winserver2019-ps/uev/Set-UevTemplateProfile.md b/docset/winserver2019-ps/uev/Set-UevTemplateProfile.md index 434430fd62..00b196a91e 100644 --- a/docset/winserver2019-ps/uev/Set-UevTemplateProfile.md +++ b/docset/winserver2019-ps/uev/Set-UevTemplateProfile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/set-uevtemplateprofile?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/set-uevtemplateprofile?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-UevTemplateProfile --- diff --git a/docset/winserver2019-ps/uev/Test-UevTemplate.md b/docset/winserver2019-ps/uev/Test-UevTemplate.md index fbb1f81c7d..3334de450e 100644 --- a/docset/winserver2019-ps/uev/Test-UevTemplate.md +++ b/docset/winserver2019-ps/uev/Test-UevTemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/test-uevtemplate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/test-uevtemplate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-UevTemplate --- diff --git a/docset/winserver2019-ps/uev/Unregister-UevTemplate.md b/docset/winserver2019-ps/uev/Unregister-UevTemplate.md index 0355c75278..e6ee415827 100644 --- a/docset/winserver2019-ps/uev/Unregister-UevTemplate.md +++ b/docset/winserver2019-ps/uev/Unregister-UevTemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/unregister-uevtemplate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/unregister-uevtemplate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unregister-UevTemplate --- diff --git a/docset/winserver2019-ps/uev/Update-UevTemplate.md b/docset/winserver2019-ps/uev/Update-UevTemplate.md index 8e2f62aaf4..e221b7eb88 100644 --- a/docset/winserver2019-ps/uev/Update-UevTemplate.md +++ b/docset/winserver2019-ps/uev/Update-UevTemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/update-uevtemplate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/update-uevtemplate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-UevTemplate --- diff --git a/docset/winserver2019-ps/updateservices/Add-WsusComputer.md b/docset/winserver2019-ps/updateservices/Add-WsusComputer.md index 810dde23f3..c94ff66dc0 100644 --- a/docset/winserver2019-ps/updateservices/Add-WsusComputer.md +++ b/docset/winserver2019-ps/updateservices/Add-WsusComputer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/updateservices/add-wsuscomputer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/add-wsuscomputer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WsusComputer --- diff --git a/docset/winserver2019-ps/updateservices/Add-WsusDynamicCategory.md b/docset/winserver2019-ps/updateservices/Add-WsusDynamicCategory.md index a03b65b132..c1dba0535f 100644 --- a/docset/winserver2019-ps/updateservices/Add-WsusDynamicCategory.md +++ b/docset/winserver2019-ps/updateservices/Add-WsusDynamicCategory.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/updateservices/add-wsusdynamiccategory?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/add-wsusdynamiccategory?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WsusDynamicCategory --- diff --git a/docset/winserver2019-ps/updateservices/Approve-WsusUpdate.md b/docset/winserver2019-ps/updateservices/Approve-WsusUpdate.md index fde26009a9..25d911d4fb 100644 --- a/docset/winserver2019-ps/updateservices/Approve-WsusUpdate.md +++ b/docset/winserver2019-ps/updateservices/Approve-WsusUpdate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/updateservices/approve-wsusupdate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/approve-wsusupdate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Approve-WsusUpdate --- diff --git a/docset/winserver2019-ps/updateservices/Deny-WsusUpdate.md b/docset/winserver2019-ps/updateservices/Deny-WsusUpdate.md index c1f8737a06..aeebc3871a 100644 --- a/docset/winserver2019-ps/updateservices/Deny-WsusUpdate.md +++ b/docset/winserver2019-ps/updateservices/Deny-WsusUpdate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/updateservices/deny-wsusupdate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/deny-wsusupdate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Deny-WsusUpdate --- diff --git a/docset/winserver2019-ps/updateservices/Get-WsusClassification.md b/docset/winserver2019-ps/updateservices/Get-WsusClassification.md index 2cce81820c..df4148a3a6 100644 --- a/docset/winserver2019-ps/updateservices/Get-WsusClassification.md +++ b/docset/winserver2019-ps/updateservices/Get-WsusClassification.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/updateservices/get-wsusclassification?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/get-wsusclassification?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WsusClassification --- diff --git a/docset/winserver2019-ps/updateservices/Get-WsusComputer.md b/docset/winserver2019-ps/updateservices/Get-WsusComputer.md index 73a91ead5f..0c104c90e2 100644 --- a/docset/winserver2019-ps/updateservices/Get-WsusComputer.md +++ b/docset/winserver2019-ps/updateservices/Get-WsusComputer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/updateservices/get-wsuscomputer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/get-wsuscomputer?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WsusComputer --- diff --git a/docset/winserver2019-ps/updateservices/Get-WsusDynamicCategory.md b/docset/winserver2019-ps/updateservices/Get-WsusDynamicCategory.md index 4c305ab8dc..3242ab294b 100644 --- a/docset/winserver2019-ps/updateservices/Get-WsusDynamicCategory.md +++ b/docset/winserver2019-ps/updateservices/Get-WsusDynamicCategory.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/updateservices/get-wsusdynamiccategory?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/get-wsusdynamiccategory?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WsusDynamicCategory --- diff --git a/docset/winserver2019-ps/updateservices/Get-WsusProduct.md b/docset/winserver2019-ps/updateservices/Get-WsusProduct.md index b6594ff06f..8a078013fd 100644 --- a/docset/winserver2019-ps/updateservices/Get-WsusProduct.md +++ b/docset/winserver2019-ps/updateservices/Get-WsusProduct.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/updateservices/get-wsusproduct?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/get-wsusproduct?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WsusProduct --- diff --git a/docset/winserver2019-ps/updateservices/Get-WsusServer.md b/docset/winserver2019-ps/updateservices/Get-WsusServer.md index eeb6dab5e7..b1664e2b6d 100644 --- a/docset/winserver2019-ps/updateservices/Get-WsusServer.md +++ b/docset/winserver2019-ps/updateservices/Get-WsusServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/updateservices/get-wsusserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/get-wsusserver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WsusServer --- diff --git a/docset/winserver2019-ps/updateservices/Get-WsusUpdate.md b/docset/winserver2019-ps/updateservices/Get-WsusUpdate.md index 74b38930ba..70bbde8137 100644 --- a/docset/winserver2019-ps/updateservices/Get-WsusUpdate.md +++ b/docset/winserver2019-ps/updateservices/Get-WsusUpdate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/updateservices/get-wsusupdate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/get-wsusupdate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WsusUpdate --- diff --git a/docset/winserver2019-ps/updateservices/Invoke-WsusServerCleanup.md b/docset/winserver2019-ps/updateservices/Invoke-WsusServerCleanup.md index 9ad141c9ee..33e5af0574 100644 --- a/docset/winserver2019-ps/updateservices/Invoke-WsusServerCleanup.md +++ b/docset/winserver2019-ps/updateservices/Invoke-WsusServerCleanup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/updateservices/invoke-wsusservercleanup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/invoke-wsusservercleanup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-WsusServerCleanup --- diff --git a/docset/winserver2019-ps/updateservices/Remove-WsusDynamicCategory.md b/docset/winserver2019-ps/updateservices/Remove-WsusDynamicCategory.md index 72ad233ece..d5d93450aa 100644 --- a/docset/winserver2019-ps/updateservices/Remove-WsusDynamicCategory.md +++ b/docset/winserver2019-ps/updateservices/Remove-WsusDynamicCategory.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/updateservices/remove-wsusdynamiccategory?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/remove-wsusdynamiccategory?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WsusDynamicCategory --- diff --git a/docset/winserver2019-ps/updateservices/Set-WsusClassification.md b/docset/winserver2019-ps/updateservices/Set-WsusClassification.md index f88e2dd88a..3ec8dd6a97 100644 --- a/docset/winserver2019-ps/updateservices/Set-WsusClassification.md +++ b/docset/winserver2019-ps/updateservices/Set-WsusClassification.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/updateservices/set-wsusclassification?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/set-wsusclassification?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WsusClassification --- diff --git a/docset/winserver2019-ps/updateservices/Set-WsusDynamicCategory.md b/docset/winserver2019-ps/updateservices/Set-WsusDynamicCategory.md index 852b508599..9cd1783504 100644 --- a/docset/winserver2019-ps/updateservices/Set-WsusDynamicCategory.md +++ b/docset/winserver2019-ps/updateservices/Set-WsusDynamicCategory.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/updateservices/set-wsusdynamiccategory?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/set-wsusdynamiccategory?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WsusDynamicCategory --- diff --git a/docset/winserver2019-ps/updateservices/Set-WsusProduct.md b/docset/winserver2019-ps/updateservices/Set-WsusProduct.md index 4f4b80fcf9..d621f2af44 100644 --- a/docset/winserver2019-ps/updateservices/Set-WsusProduct.md +++ b/docset/winserver2019-ps/updateservices/Set-WsusProduct.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/updateservices/set-wsusproduct?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/set-wsusproduct?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WsusProduct --- diff --git a/docset/winserver2019-ps/updateservices/Set-WsusServerSynchronization.md b/docset/winserver2019-ps/updateservices/Set-WsusServerSynchronization.md index 579f495969..e1d2b03c19 100644 --- a/docset/winserver2019-ps/updateservices/Set-WsusServerSynchronization.md +++ b/docset/winserver2019-ps/updateservices/Set-WsusServerSynchronization.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/updateservices/set-wsusserversynchronization?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/set-wsusserversynchronization?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WsusServerSynchronization --- diff --git a/docset/winserver2019-ps/useraccesslogging/Disable-Ual.md b/docset/winserver2019-ps/useraccesslogging/Disable-Ual.md index 4cc2bbba52..35e387e822 100644 --- a/docset/winserver2019-ps/useraccesslogging/Disable-Ual.md +++ b/docset/winserver2019-ps/useraccesslogging/Disable-Ual.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftUal_Admin.cdxml-help.xml Module Name: UserAccessLogging ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/disable-ual?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/disable-ual?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-Ual --- diff --git a/docset/winserver2019-ps/useraccesslogging/Enable-Ual.md b/docset/winserver2019-ps/useraccesslogging/Enable-Ual.md index 03f9e4be08..228113f3f5 100644 --- a/docset/winserver2019-ps/useraccesslogging/Enable-Ual.md +++ b/docset/winserver2019-ps/useraccesslogging/Enable-Ual.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftUal_Admin.cdxml-help.xml Module Name: UserAccessLogging ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/enable-ual?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/enable-ual?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-Ual --- diff --git a/docset/winserver2019-ps/useraccesslogging/Get-Ual.md b/docset/winserver2019-ps/useraccesslogging/Get-Ual.md index ffde799173..6148b4d6f7 100644 --- a/docset/winserver2019-ps/useraccesslogging/Get-Ual.md +++ b/docset/winserver2019-ps/useraccesslogging/Get-Ual.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftUal_Admin.cdxml-help.xml Module Name: UserAccessLogging ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ual?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ual?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-Ual --- diff --git a/docset/winserver2019-ps/useraccesslogging/Get-UalDailyAccess.md b/docset/winserver2019-ps/useraccesslogging/Get-UalDailyAccess.md index 162f417abd..7a968e5f30 100644 --- a/docset/winserver2019-ps/useraccesslogging/Get-UalDailyAccess.md +++ b/docset/winserver2019-ps/useraccesslogging/Get-UalDailyAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftUal_DailyAccess.cdxml-help.xml Module Name: UserAccessLogging ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ualdailyaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ualdailyaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UalDailyAccess --- diff --git a/docset/winserver2019-ps/useraccesslogging/Get-UalDailyDeviceAccess.md b/docset/winserver2019-ps/useraccesslogging/Get-UalDailyDeviceAccess.md index d5500b47d4..229f86505a 100644 --- a/docset/winserver2019-ps/useraccesslogging/Get-UalDailyDeviceAccess.md +++ b/docset/winserver2019-ps/useraccesslogging/Get-UalDailyDeviceAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftUal_DailyDeviceAccess.cdxml-help.xml Module Name: UserAccessLogging ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ualdailydeviceaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ualdailydeviceaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UalDailyDeviceAccess --- diff --git a/docset/winserver2019-ps/useraccesslogging/Get-UalDailyUserAccess.md b/docset/winserver2019-ps/useraccesslogging/Get-UalDailyUserAccess.md index 73efaa2c3e..8a18146d78 100644 --- a/docset/winserver2019-ps/useraccesslogging/Get-UalDailyUserAccess.md +++ b/docset/winserver2019-ps/useraccesslogging/Get-UalDailyUserAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftUal_DailyUserAccess.cdxml-help.xml Module Name: UserAccessLogging ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ualdailyuseraccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ualdailyuseraccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UalDailyUserAccess --- diff --git a/docset/winserver2019-ps/useraccesslogging/Get-UalDeviceAccess.md b/docset/winserver2019-ps/useraccesslogging/Get-UalDeviceAccess.md index 6f112a5b5b..bcdce4319d 100644 --- a/docset/winserver2019-ps/useraccesslogging/Get-UalDeviceAccess.md +++ b/docset/winserver2019-ps/useraccesslogging/Get-UalDeviceAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftUal_DeviceAccess.cdxml-help.xml Module Name: UserAccessLogging ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ualdeviceaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ualdeviceaccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UalDeviceAccess --- diff --git a/docset/winserver2019-ps/useraccesslogging/Get-UalDns.md b/docset/winserver2019-ps/useraccesslogging/Get-UalDns.md index 03dd703494..c0bfd9e9f7 100644 --- a/docset/winserver2019-ps/useraccesslogging/Get-UalDns.md +++ b/docset/winserver2019-ps/useraccesslogging/Get-UalDns.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftUal_Dns.cdxml-help.xml Module Name: UserAccessLogging ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ualdns?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ualdns?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UalDns --- diff --git a/docset/winserver2019-ps/useraccesslogging/Get-UalHyperV.md b/docset/winserver2019-ps/useraccesslogging/Get-UalHyperV.md index 1458da9022..f4f2d411d8 100644 --- a/docset/winserver2019-ps/useraccesslogging/Get-UalHyperV.md +++ b/docset/winserver2019-ps/useraccesslogging/Get-UalHyperV.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftUal_HyperV.cdxml-help.xml Module Name: UserAccessLogging ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ualhyperv?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ualhyperv?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UalHyperV --- diff --git a/docset/winserver2019-ps/useraccesslogging/Get-UalOverview.md b/docset/winserver2019-ps/useraccesslogging/Get-UalOverview.md index 8c84cd3e64..a84b0d1580 100644 --- a/docset/winserver2019-ps/useraccesslogging/Get-UalOverview.md +++ b/docset/winserver2019-ps/useraccesslogging/Get-UalOverview.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftUal_Overview.cdxml-help.xml Module Name: UserAccessLogging ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ualoverview?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ualoverview?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UalOverview --- diff --git a/docset/winserver2019-ps/useraccesslogging/Get-UalServerDevice.md b/docset/winserver2019-ps/useraccesslogging/Get-UalServerDevice.md index e7d5a6132e..14011761e3 100644 --- a/docset/winserver2019-ps/useraccesslogging/Get-UalServerDevice.md +++ b/docset/winserver2019-ps/useraccesslogging/Get-UalServerDevice.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftUal_ServerDevice.cdxml-help.xml Module Name: UserAccessLogging ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ualserverdevice?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ualserverdevice?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UalServerDevice --- diff --git a/docset/winserver2019-ps/useraccesslogging/Get-UalServerUser.md b/docset/winserver2019-ps/useraccesslogging/Get-UalServerUser.md index f108f2563a..c931774439 100644 --- a/docset/winserver2019-ps/useraccesslogging/Get-UalServerUser.md +++ b/docset/winserver2019-ps/useraccesslogging/Get-UalServerUser.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftUal_ServerUser.cdxml-help.xml Module Name: UserAccessLogging ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ualserveruser?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ualserveruser?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UalServerUser --- diff --git a/docset/winserver2019-ps/useraccesslogging/Get-UalSystemId.md b/docset/winserver2019-ps/useraccesslogging/Get-UalSystemId.md index c94813ac32..6bfa847259 100644 --- a/docset/winserver2019-ps/useraccesslogging/Get-UalSystemId.md +++ b/docset/winserver2019-ps/useraccesslogging/Get-UalSystemId.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftUal_SystemId.cdxml-help.xml Module Name: UserAccessLogging ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ualsystemid?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ualsystemid?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UalSystemId --- diff --git a/docset/winserver2019-ps/useraccesslogging/Get-UalUserAccess.md b/docset/winserver2019-ps/useraccesslogging/Get-UalUserAccess.md index acf47f8f50..2e9c6117f4 100644 --- a/docset/winserver2019-ps/useraccesslogging/Get-UalUserAccess.md +++ b/docset/winserver2019-ps/useraccesslogging/Get-UalUserAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftUal_UserAccess.cdxml-help.xml Module Name: UserAccessLogging ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ualuseraccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ualuseraccess?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UalUserAccess --- diff --git a/docset/winserver2019-ps/vamt/Add-VamtProductKey.md b/docset/winserver2019-ps/vamt/Add-VamtProductKey.md index 63bb0d3faf..48d3c0d209 100644 --- a/docset/winserver2019-ps/vamt/Add-VamtProductKey.md +++ b/docset/winserver2019-ps/vamt/Add-VamtProductKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Licensing.VolumeActivation.Powershell.dll-Help.xml Module Name: VAMT ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vamt/add-vamtproductkey?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vamt/add-vamtproductkey?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VamtProductKey --- diff --git a/docset/winserver2019-ps/vamt/Export-VamtData.md b/docset/winserver2019-ps/vamt/Export-VamtData.md index 6b38c5462d..5a09f2cb13 100644 --- a/docset/winserver2019-ps/vamt/Export-VamtData.md +++ b/docset/winserver2019-ps/vamt/Export-VamtData.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Licensing.VolumeActivation.Powershell.dll-Help.xml Module Name: VAMT ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vamt/export-vamtdata?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vamt/export-vamtdata?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-VamtData --- diff --git a/docset/winserver2019-ps/vamt/Find-VamtManagedMachine.md b/docset/winserver2019-ps/vamt/Find-VamtManagedMachine.md index 5ec1d459de..640aad0b3f 100644 --- a/docset/winserver2019-ps/vamt/Find-VamtManagedMachine.md +++ b/docset/winserver2019-ps/vamt/Find-VamtManagedMachine.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Licensing.VolumeActivation.Powershell.dll-Help.xml Module Name: VAMT ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vamt/find-vamtmanagedmachine?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vamt/find-vamtmanagedmachine?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Find-VamtManagedMachine --- diff --git a/docset/winserver2019-ps/vamt/Get-VamtConfirmationId.md b/docset/winserver2019-ps/vamt/Get-VamtConfirmationId.md index 3f39812390..26a8d696aa 100644 --- a/docset/winserver2019-ps/vamt/Get-VamtConfirmationId.md +++ b/docset/winserver2019-ps/vamt/Get-VamtConfirmationId.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Licensing.VolumeActivation.Powershell.dll-Help.xml Module Name: VAMT ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vamt/get-vamtconfirmationid?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vamt/get-vamtconfirmationid?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VamtConfirmationId --- diff --git a/docset/winserver2019-ps/vamt/Get-VamtProduct.md b/docset/winserver2019-ps/vamt/Get-VamtProduct.md index f57feb0ceb..11b37b60f8 100644 --- a/docset/winserver2019-ps/vamt/Get-VamtProduct.md +++ b/docset/winserver2019-ps/vamt/Get-VamtProduct.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Licensing.VolumeActivation.Powershell.dll-Help.xml Module Name: VAMT ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vamt/get-vamtproduct?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vamt/get-vamtproduct?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VamtProduct --- diff --git a/docset/winserver2019-ps/vamt/Get-VamtProductKey.md b/docset/winserver2019-ps/vamt/Get-VamtProductKey.md index a168dc1520..d92bb1fce4 100644 --- a/docset/winserver2019-ps/vamt/Get-VamtProductKey.md +++ b/docset/winserver2019-ps/vamt/Get-VamtProductKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Licensing.VolumeActivation.Powershell.dll-Help.xml Module Name: VAMT ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vamt/get-vamtproductkey?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vamt/get-vamtproductkey?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VamtProductKey --- diff --git a/docset/winserver2019-ps/vamt/Import-VamtData.md b/docset/winserver2019-ps/vamt/Import-VamtData.md index e09d76dcf6..f0a078116f 100644 --- a/docset/winserver2019-ps/vamt/Import-VamtData.md +++ b/docset/winserver2019-ps/vamt/Import-VamtData.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Licensing.VolumeActivation.Powershell.dll-Help.xml Module Name: VAMT ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vamt/import-vamtdata?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vamt/import-vamtdata?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-VamtData --- diff --git a/docset/winserver2019-ps/vamt/Initialize-VamtData.md b/docset/winserver2019-ps/vamt/Initialize-VamtData.md index eea0720af2..766e9ab4ec 100644 --- a/docset/winserver2019-ps/vamt/Initialize-VamtData.md +++ b/docset/winserver2019-ps/vamt/Initialize-VamtData.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Licensing.VolumeActivation.Powershell.dll-Help.xml Module Name: VAMT ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vamt/initialize-vamtdata?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vamt/initialize-vamtdata?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Initialize-VamtData --- diff --git a/docset/winserver2019-ps/vamt/Install-VamtConfirmationId.md b/docset/winserver2019-ps/vamt/Install-VamtConfirmationId.md index aed4bb8bd4..95119381ec 100644 --- a/docset/winserver2019-ps/vamt/Install-VamtConfirmationId.md +++ b/docset/winserver2019-ps/vamt/Install-VamtConfirmationId.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Licensing.VolumeActivation.Powershell.dll-Help.xml Module Name: VAMT ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vamt/install-vamtconfirmationid?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vamt/install-vamtconfirmationid?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-VamtConfirmationId --- diff --git a/docset/winserver2019-ps/vamt/Install-VamtProductActivation.md b/docset/winserver2019-ps/vamt/Install-VamtProductActivation.md index 81bad67d7e..eaadfe0da5 100644 --- a/docset/winserver2019-ps/vamt/Install-VamtProductActivation.md +++ b/docset/winserver2019-ps/vamt/Install-VamtProductActivation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Licensing.VolumeActivation.Powershell.dll-Help.xml Module Name: VAMT ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vamt/install-vamtproductactivation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vamt/install-vamtproductactivation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-VamtProductActivation --- diff --git a/docset/winserver2019-ps/vamt/Install-VamtProductKey.md b/docset/winserver2019-ps/vamt/Install-VamtProductKey.md index d5f75f4ade..7a1cf290ce 100644 --- a/docset/winserver2019-ps/vamt/Install-VamtProductKey.md +++ b/docset/winserver2019-ps/vamt/Install-VamtProductKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Licensing.VolumeActivation.Powershell.dll-Help.xml Module Name: VAMT ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vamt/install-vamtproductkey?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vamt/install-vamtproductkey?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-VamtProductKey --- diff --git a/docset/winserver2019-ps/vamt/Update-VamtProduct.md b/docset/winserver2019-ps/vamt/Update-VamtProduct.md index 20591cc066..f80837e061 100644 --- a/docset/winserver2019-ps/vamt/Update-VamtProduct.md +++ b/docset/winserver2019-ps/vamt/Update-VamtProduct.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Licensing.VolumeActivation.Powershell.dll-Help.xml Module Name: VAMT ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vamt/update-vamtproduct?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vamt/update-vamtproduct?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-VamtProduct --- diff --git a/docset/winserver2019-ps/vpnclient/Add-VpnConnection.md b/docset/winserver2019-ps/vpnclient/Add-VpnConnection.md index e689b22321..26b8c7611f 100644 --- a/docset/winserver2019-ps/vpnclient/Add-VpnConnection.md +++ b/docset/winserver2019-ps/vpnclient/Add-VpnConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnConnection_v1.0.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/add-vpnconnection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/add-vpnconnection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VpnConnection --- diff --git a/docset/winserver2019-ps/vpnclient/Add-VpnConnectionRoute.md b/docset/winserver2019-ps/vpnclient/Add-VpnConnectionRoute.md index e9d109b735..1e151fce25 100644 --- a/docset/winserver2019-ps/vpnclient/Add-VpnConnectionRoute.md +++ b/docset/winserver2019-ps/vpnclient/Add-VpnConnectionRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnConnectionRoute_v1.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/add-vpnconnectionroute?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/add-vpnconnectionroute?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VpnConnectionRoute --- diff --git a/docset/winserver2019-ps/vpnclient/Add-VpnConnectionTriggerApplication.md b/docset/winserver2019-ps/vpnclient/Add-VpnConnectionTriggerApplication.md index 33d35668e6..5e0ce4dd3f 100644 --- a/docset/winserver2019-ps/vpnclient/Add-VpnConnectionTriggerApplication.md +++ b/docset/winserver2019-ps/vpnclient/Add-VpnConnectionTriggerApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnConnectionTriggerApplication_v1.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/add-vpnconnectiontriggerapplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/add-vpnconnectiontriggerapplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VpnConnectionTriggerApplication --- diff --git a/docset/winserver2019-ps/vpnclient/Add-VpnConnectionTriggerDnsConfiguration.md b/docset/winserver2019-ps/vpnclient/Add-VpnConnectionTriggerDnsConfiguration.md index 637429eb31..52e8dc3fc6 100644 --- a/docset/winserver2019-ps/vpnclient/Add-VpnConnectionTriggerDnsConfiguration.md +++ b/docset/winserver2019-ps/vpnclient/Add-VpnConnectionTriggerDnsConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnConnectionTriggerDnsConfiguration_v1.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/add-vpnconnectiontriggerdnsconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/add-vpnconnectiontriggerdnsconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VpnConnectionTriggerDnsConfiguration --- diff --git a/docset/winserver2019-ps/vpnclient/Add-VpnConnectionTriggerTrustedNetwork.md b/docset/winserver2019-ps/vpnclient/Add-VpnConnectionTriggerTrustedNetwork.md index b575df2a0d..e11afefda4 100644 --- a/docset/winserver2019-ps/vpnclient/Add-VpnConnectionTriggerTrustedNetwork.md +++ b/docset/winserver2019-ps/vpnclient/Add-VpnConnectionTriggerTrustedNetwork.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnConnectionTriggerTrustedNetwork_v1.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/add-vpnconnectiontriggertrustednetwork?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/add-vpnconnectiontriggertrustednetwork?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VpnConnectionTriggerTrustedNetwork --- diff --git a/docset/winserver2019-ps/vpnclient/Get-VpnConnection.md b/docset/winserver2019-ps/vpnclient/Get-VpnConnection.md index b557cb0e19..b2a425c58e 100644 --- a/docset/winserver2019-ps/vpnclient/Get-VpnConnection.md +++ b/docset/winserver2019-ps/vpnclient/Get-VpnConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnConnection_v1.0.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/get-vpnconnection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/get-vpnconnection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VpnConnection --- diff --git a/docset/winserver2019-ps/vpnclient/Get-VpnConnectionTrigger.md b/docset/winserver2019-ps/vpnclient/Get-VpnConnectionTrigger.md index 358531efac..7515fa23dc 100644 --- a/docset/winserver2019-ps/vpnclient/Get-VpnConnectionTrigger.md +++ b/docset/winserver2019-ps/vpnclient/Get-VpnConnectionTrigger.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnConnectionTrigger_v1.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/get-vpnconnectiontrigger?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/get-vpnconnectiontrigger?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VpnConnectionTrigger --- diff --git a/docset/winserver2019-ps/vpnclient/New-EapConfiguration.md b/docset/winserver2019-ps/vpnclient/New-EapConfiguration.md index 68297083de..a680d21c6a 100644 --- a/docset/winserver2019-ps/vpnclient/New-EapConfiguration.md +++ b/docset/winserver2019-ps/vpnclient/New-EapConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_EapConfiguration_v1.0.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/new-eapconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/new-eapconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-EapConfiguration --- diff --git a/docset/winserver2019-ps/vpnclient/New-VpnServerAddress.md b/docset/winserver2019-ps/vpnclient/New-VpnServerAddress.md index f574c1d396..d5bdddfa3c 100644 --- a/docset/winserver2019-ps/vpnclient/New-VpnServerAddress.md +++ b/docset/winserver2019-ps/vpnclient/New-VpnServerAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnServerAddress_v1.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/new-vpnserveraddress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/new-vpnserveraddress?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VpnServerAddress --- diff --git a/docset/winserver2019-ps/vpnclient/Remove-VpnConnection.md b/docset/winserver2019-ps/vpnclient/Remove-VpnConnection.md index 23c98ba4f4..a8ea2b03e9 100644 --- a/docset/winserver2019-ps/vpnclient/Remove-VpnConnection.md +++ b/docset/winserver2019-ps/vpnclient/Remove-VpnConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnConnection_v1.0.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/remove-vpnconnection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/remove-vpnconnection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VpnConnection --- diff --git a/docset/winserver2019-ps/vpnclient/Remove-VpnConnectionRoute.md b/docset/winserver2019-ps/vpnclient/Remove-VpnConnectionRoute.md index ae2eaf7cea..8b20b056d9 100644 --- a/docset/winserver2019-ps/vpnclient/Remove-VpnConnectionRoute.md +++ b/docset/winserver2019-ps/vpnclient/Remove-VpnConnectionRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnConnectionRoute_v1.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/remove-vpnconnectionroute?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/remove-vpnconnectionroute?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VpnConnectionRoute --- diff --git a/docset/winserver2019-ps/vpnclient/Remove-VpnConnectionTriggerApplication.md b/docset/winserver2019-ps/vpnclient/Remove-VpnConnectionTriggerApplication.md index f784ff8a9d..c24de82d6d 100644 --- a/docset/winserver2019-ps/vpnclient/Remove-VpnConnectionTriggerApplication.md +++ b/docset/winserver2019-ps/vpnclient/Remove-VpnConnectionTriggerApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnConnectionTriggerApplication_v1.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/remove-vpnconnectiontriggerapplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/remove-vpnconnectiontriggerapplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VpnConnectionTriggerApplication --- diff --git a/docset/winserver2019-ps/vpnclient/Remove-VpnConnectionTriggerDnsConfiguration.md b/docset/winserver2019-ps/vpnclient/Remove-VpnConnectionTriggerDnsConfiguration.md index fb1cbbdf62..cb539b41bd 100644 --- a/docset/winserver2019-ps/vpnclient/Remove-VpnConnectionTriggerDnsConfiguration.md +++ b/docset/winserver2019-ps/vpnclient/Remove-VpnConnectionTriggerDnsConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnConnectionTriggerDnsConfiguration_v1.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/remove-vpnconnectiontriggerdnsconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/remove-vpnconnectiontriggerdnsconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VpnConnectionTriggerDnsConfiguration --- diff --git a/docset/winserver2019-ps/vpnclient/Remove-VpnConnectionTriggerTrustedNetwork.md b/docset/winserver2019-ps/vpnclient/Remove-VpnConnectionTriggerTrustedNetwork.md index fa044bf7d7..52ae7529b4 100644 --- a/docset/winserver2019-ps/vpnclient/Remove-VpnConnectionTriggerTrustedNetwork.md +++ b/docset/winserver2019-ps/vpnclient/Remove-VpnConnectionTriggerTrustedNetwork.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnConnectionTriggerTrustedNetwork_v1.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/remove-vpnconnectiontriggertrustednetwork?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/remove-vpnconnectiontriggertrustednetwork?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VpnConnectionTriggerTrustedNetwork --- diff --git a/docset/winserver2019-ps/vpnclient/Set-VpnConnection.md b/docset/winserver2019-ps/vpnclient/Set-VpnConnection.md index 33054849c3..34b98195f4 100644 --- a/docset/winserver2019-ps/vpnclient/Set-VpnConnection.md +++ b/docset/winserver2019-ps/vpnclient/Set-VpnConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnConnection_v1.0.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/set-vpnconnection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/set-vpnconnection?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VpnConnection --- diff --git a/docset/winserver2019-ps/vpnclient/Set-VpnConnectionIPsecConfiguration.md b/docset/winserver2019-ps/vpnclient/Set-VpnConnectionIPsecConfiguration.md index 891bbd280a..df5796f2e0 100644 --- a/docset/winserver2019-ps/vpnclient/Set-VpnConnectionIPsecConfiguration.md +++ b/docset/winserver2019-ps/vpnclient/Set-VpnConnectionIPsecConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnConnectionIPsecConfiguration_v1.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/set-vpnconnectionipsecconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/set-vpnconnectionipsecconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VpnConnectionIPsecConfiguration --- diff --git a/docset/winserver2019-ps/vpnclient/Set-VpnConnectionProxy.md b/docset/winserver2019-ps/vpnclient/Set-VpnConnectionProxy.md index 4a8e4e42a3..8d6a968381 100644 --- a/docset/winserver2019-ps/vpnclient/Set-VpnConnectionProxy.md +++ b/docset/winserver2019-ps/vpnclient/Set-VpnConnectionProxy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnConnectionProxy_v1.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/set-vpnconnectionproxy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/set-vpnconnectionproxy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VpnConnectionProxy --- diff --git a/docset/winserver2019-ps/vpnclient/Set-VpnConnectionTriggerDnsConfiguration.md b/docset/winserver2019-ps/vpnclient/Set-VpnConnectionTriggerDnsConfiguration.md index c71abb0ed9..df1dc530ed 100644 --- a/docset/winserver2019-ps/vpnclient/Set-VpnConnectionTriggerDnsConfiguration.md +++ b/docset/winserver2019-ps/vpnclient/Set-VpnConnectionTriggerDnsConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnConnectionTriggerDnsConfiguration_v1.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/set-vpnconnectiontriggerdnsconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/set-vpnconnectiontriggerdnsconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VpnConnectionTriggerDnsConfiguration --- diff --git a/docset/winserver2019-ps/vpnclient/Set-VpnConnectionTriggerTrustedNetwork.md b/docset/winserver2019-ps/vpnclient/Set-VpnConnectionTriggerTrustedNetwork.md index e3a972f495..f2c3d1115d 100644 --- a/docset/winserver2019-ps/vpnclient/Set-VpnConnectionTriggerTrustedNetwork.md +++ b/docset/winserver2019-ps/vpnclient/Set-VpnConnectionTriggerTrustedNetwork.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnConnectionTriggerTrustedNetwork_v1.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/set-vpnconnectiontriggertrustednetwork?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/set-vpnconnectiontriggertrustednetwork?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VpnConnectionTriggerTrustedNetwork --- diff --git a/docset/winserver2019-ps/wdac/Add-OdbcDsn.md b/docset/winserver2019-ps/wdac/Add-OdbcDsn.md index aa693c84e2..46b159fb5f 100644 --- a/docset/winserver2019-ps/wdac/Add-OdbcDsn.md +++ b/docset/winserver2019-ps/wdac/Add-OdbcDsn.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_OdbcDsnTask_v1.0.cdxml-help.xml Module Name: Wdac ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/wdac/add-odbcdsn?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/add-odbcdsn?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-OdbcDsn --- diff --git a/docset/winserver2019-ps/wdac/Disable-OdbcPerfCounter.md b/docset/winserver2019-ps/wdac/Disable-OdbcPerfCounter.md index 0a3531a6e9..15828f29de 100644 --- a/docset/winserver2019-ps/wdac/Disable-OdbcPerfCounter.md +++ b/docset/winserver2019-ps/wdac/Disable-OdbcPerfCounter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_OdbcPerfCounterTask_v1.0.cdxml-help.xml Module Name: Wdac ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/wdac/disable-odbcperfcounter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/disable-odbcperfcounter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-OdbcPerfCounter --- diff --git a/docset/winserver2019-ps/wdac/Disable-WdacBidTrace.md b/docset/winserver2019-ps/wdac/Disable-WdacBidTrace.md index a0a874da03..6fe20affed 100644 --- a/docset/winserver2019-ps/wdac/Disable-WdacBidTrace.md +++ b/docset/winserver2019-ps/wdac/Disable-WdacBidTrace.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdacBidTraceTask_v1.0.cdxml-help.xml Module Name: Wdac ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/wdac/disable-wdacbidtrace?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/disable-wdacbidtrace?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WdacBidTrace --- diff --git a/docset/winserver2019-ps/wdac/Enable-OdbcPerfCounter.md b/docset/winserver2019-ps/wdac/Enable-OdbcPerfCounter.md index 992b80a035..0e42ed228a 100644 --- a/docset/winserver2019-ps/wdac/Enable-OdbcPerfCounter.md +++ b/docset/winserver2019-ps/wdac/Enable-OdbcPerfCounter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_OdbcPerfCounterTask_v1.0.cdxml-help.xml Module Name: Wdac ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/wdac/enable-odbcperfcounter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/enable-odbcperfcounter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-OdbcPerfCounter --- diff --git a/docset/winserver2019-ps/wdac/Enable-WdacBidTrace.md b/docset/winserver2019-ps/wdac/Enable-WdacBidTrace.md index 29262091ad..79c20742ed 100644 --- a/docset/winserver2019-ps/wdac/Enable-WdacBidTrace.md +++ b/docset/winserver2019-ps/wdac/Enable-WdacBidTrace.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdacBidTraceTask_v1.0.cdxml-help.xml Module Name: Wdac ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/wdac/enable-wdacbidtrace?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/enable-wdacbidtrace?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WdacBidTrace --- diff --git a/docset/winserver2019-ps/wdac/Get-OdbcDriver.md b/docset/winserver2019-ps/wdac/Get-OdbcDriver.md index b23f64ef37..c1590645b2 100644 --- a/docset/winserver2019-ps/wdac/Get-OdbcDriver.md +++ b/docset/winserver2019-ps/wdac/Get-OdbcDriver.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_OdbcDriverTask_v1.0.cdxml-help.xml Module Name: Wdac ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/wdac/get-odbcdriver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/get-odbcdriver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-OdbcDriver --- diff --git a/docset/winserver2019-ps/wdac/Get-OdbcDsn.md b/docset/winserver2019-ps/wdac/Get-OdbcDsn.md index 30bcb95635..a3481b7369 100644 --- a/docset/winserver2019-ps/wdac/Get-OdbcDsn.md +++ b/docset/winserver2019-ps/wdac/Get-OdbcDsn.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_OdbcDsnTask_v1.0.cdxml-help.xml Module Name: Wdac ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/wdac/get-odbcdsn?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/get-odbcdsn?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-OdbcDsn --- diff --git a/docset/winserver2019-ps/wdac/Get-OdbcPerfCounter.md b/docset/winserver2019-ps/wdac/Get-OdbcPerfCounter.md index a94d1094d7..a355f48561 100644 --- a/docset/winserver2019-ps/wdac/Get-OdbcPerfCounter.md +++ b/docset/winserver2019-ps/wdac/Get-OdbcPerfCounter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_OdbcPerfCounterTask_v1.0.cdxml-help.xml Module Name: Wdac ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/wdac/get-odbcperfcounter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/get-odbcperfcounter?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-OdbcPerfCounter --- diff --git a/docset/winserver2019-ps/wdac/Get-WdacBidTrace.md b/docset/winserver2019-ps/wdac/Get-WdacBidTrace.md index 1dcd9999ed..305cfa1f85 100644 --- a/docset/winserver2019-ps/wdac/Get-WdacBidTrace.md +++ b/docset/winserver2019-ps/wdac/Get-WdacBidTrace.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdacBidTraceTask_v1.0.cdxml-help.xml Module Name: Wdac ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/wdac/get-wdacbidtrace?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/get-wdacbidtrace?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WdacBidTrace --- diff --git a/docset/winserver2019-ps/wdac/Remove-OdbcDsn.md b/docset/winserver2019-ps/wdac/Remove-OdbcDsn.md index 588c1c7614..017295876d 100644 --- a/docset/winserver2019-ps/wdac/Remove-OdbcDsn.md +++ b/docset/winserver2019-ps/wdac/Remove-OdbcDsn.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_OdbcDsnTask_v1.0.cdxml-help.xml Module Name: Wdac ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/wdac/remove-odbcdsn?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/remove-odbcdsn?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-OdbcDsn --- diff --git a/docset/winserver2019-ps/wdac/Set-OdbcDriver.md b/docset/winserver2019-ps/wdac/Set-OdbcDriver.md index 5957bb8d1f..8de2d78409 100644 --- a/docset/winserver2019-ps/wdac/Set-OdbcDriver.md +++ b/docset/winserver2019-ps/wdac/Set-OdbcDriver.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_OdbcDriverTask_v1.0.cdxml-help.xml Module Name: Wdac ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/wdac/set-odbcdriver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/set-odbcdriver?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-OdbcDriver --- diff --git a/docset/winserver2019-ps/wdac/Set-OdbcDsn.md b/docset/winserver2019-ps/wdac/Set-OdbcDsn.md index 5a3456695e..98b1bba0ec 100644 --- a/docset/winserver2019-ps/wdac/Set-OdbcDsn.md +++ b/docset/winserver2019-ps/wdac/Set-OdbcDsn.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_OdbcDsnTask_v1.0.cdxml-help.xml Module Name: Wdac ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/wdac/set-odbcdsn?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/set-odbcdsn?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-OdbcDsn --- diff --git a/docset/winserver2019-ps/wds/Add-WdsDriverPackage.md b/docset/winserver2019-ps/wds/Add-WdsDriverPackage.md index 05223e090e..401c411dc6 100644 --- a/docset/winserver2019-ps/wds/Add-WdsDriverPackage.md +++ b/docset/winserver2019-ps/wds/Add-WdsDriverPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsDriverPackage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/add-wdsdriverpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/add-wdsdriverpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WdsDriverPackage --- diff --git a/docset/winserver2019-ps/wds/Approve-WdsClient.md b/docset/winserver2019-ps/wds/Approve-WdsClient.md index 617d89acbd..23c42ca7b4 100644 --- a/docset/winserver2019-ps/wds/Approve-WdsClient.md +++ b/docset/winserver2019-ps/wds/Approve-WdsClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsClient_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/approve-wdsclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/approve-wdsclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Approve-WdsClient --- diff --git a/docset/winserver2019-ps/wds/Copy-WdsInstallImage.md b/docset/winserver2019-ps/wds/Copy-WdsInstallImage.md index 48b8a0bee8..bab11f1180 100644 --- a/docset/winserver2019-ps/wds/Copy-WdsInstallImage.md +++ b/docset/winserver2019-ps/wds/Copy-WdsInstallImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsInstallImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/copy-wdsinstallimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/copy-wdsinstallimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Copy-WdsInstallImage --- diff --git a/docset/winserver2019-ps/wds/Deny-WdsClient.md b/docset/winserver2019-ps/wds/Deny-WdsClient.md index 9c2cac6043..ef3772eb1b 100644 --- a/docset/winserver2019-ps/wds/Deny-WdsClient.md +++ b/docset/winserver2019-ps/wds/Deny-WdsClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsClient_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/deny-wdsclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/deny-wdsclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Deny-WdsClient --- diff --git a/docset/winserver2019-ps/wds/Disable-WdsBootImage.md b/docset/winserver2019-ps/wds/Disable-WdsBootImage.md index 1c6eb78b0d..517a232035 100644 --- a/docset/winserver2019-ps/wds/Disable-WdsBootImage.md +++ b/docset/winserver2019-ps/wds/Disable-WdsBootImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsBootImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/disable-wdsbootimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/disable-wdsbootimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WdsBootImage --- diff --git a/docset/winserver2019-ps/wds/Disable-WdsDriverPackage.md b/docset/winserver2019-ps/wds/Disable-WdsDriverPackage.md index 323c335f79..0265acbf07 100644 --- a/docset/winserver2019-ps/wds/Disable-WdsDriverPackage.md +++ b/docset/winserver2019-ps/wds/Disable-WdsDriverPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsDriverPackage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/disable-wdsdriverpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/disable-wdsdriverpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WdsDriverPackage --- diff --git a/docset/winserver2019-ps/wds/Disable-WdsInstallImage.md b/docset/winserver2019-ps/wds/Disable-WdsInstallImage.md index 48fa9cf881..1f72354fb8 100644 --- a/docset/winserver2019-ps/wds/Disable-WdsInstallImage.md +++ b/docset/winserver2019-ps/wds/Disable-WdsInstallImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsInstallImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/disable-wdsinstallimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/disable-wdsinstallimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WdsInstallImage --- diff --git a/docset/winserver2019-ps/wds/Disconnect-WdsMulticastClient.md b/docset/winserver2019-ps/wds/Disconnect-WdsMulticastClient.md index b41f72ef06..f11cfbf42f 100644 --- a/docset/winserver2019-ps/wds/Disconnect-WdsMulticastClient.md +++ b/docset/winserver2019-ps/wds/Disconnect-WdsMulticastClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsMulticastClient_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/disconnect-wdsmulticastclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/disconnect-wdsmulticastclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disconnect-WdsMulticastClient --- diff --git a/docset/winserver2019-ps/wds/Enable-WdsBootImage.md b/docset/winserver2019-ps/wds/Enable-WdsBootImage.md index 9188bfc1c3..496bfb2770 100644 --- a/docset/winserver2019-ps/wds/Enable-WdsBootImage.md +++ b/docset/winserver2019-ps/wds/Enable-WdsBootImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsBootImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/enable-wdsbootimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/enable-wdsbootimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WdsBootImage --- diff --git a/docset/winserver2019-ps/wds/Enable-WdsDriverPackage.md b/docset/winserver2019-ps/wds/Enable-WdsDriverPackage.md index aa0ac93675..aa69142ddb 100644 --- a/docset/winserver2019-ps/wds/Enable-WdsDriverPackage.md +++ b/docset/winserver2019-ps/wds/Enable-WdsDriverPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsDriverPackage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/enable-wdsdriverpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/enable-wdsdriverpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WdsDriverPackage --- diff --git a/docset/winserver2019-ps/wds/Enable-WdsInstallImage.md b/docset/winserver2019-ps/wds/Enable-WdsInstallImage.md index 750cc4bdec..4ab43d82c1 100644 --- a/docset/winserver2019-ps/wds/Enable-WdsInstallImage.md +++ b/docset/winserver2019-ps/wds/Enable-WdsInstallImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsInstallImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/enable-wdsinstallimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/enable-wdsinstallimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WdsInstallImage --- diff --git a/docset/winserver2019-ps/wds/Export-WdsBootImage.md b/docset/winserver2019-ps/wds/Export-WdsBootImage.md index 69277f0896..00d35157b9 100644 --- a/docset/winserver2019-ps/wds/Export-WdsBootImage.md +++ b/docset/winserver2019-ps/wds/Export-WdsBootImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsBootImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/export-wdsbootimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/export-wdsbootimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-WdsBootImage --- diff --git a/docset/winserver2019-ps/wds/Export-WdsInstallImage.md b/docset/winserver2019-ps/wds/Export-WdsInstallImage.md index 8cee2e69ae..adc288cef2 100644 --- a/docset/winserver2019-ps/wds/Export-WdsInstallImage.md +++ b/docset/winserver2019-ps/wds/Export-WdsInstallImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsInstallImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/export-wdsinstallimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/export-wdsinstallimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-WdsInstallImage --- diff --git a/docset/winserver2019-ps/wds/Get-WdsBootImage.md b/docset/winserver2019-ps/wds/Get-WdsBootImage.md index 8d39e75a05..04df54b72b 100644 --- a/docset/winserver2019-ps/wds/Get-WdsBootImage.md +++ b/docset/winserver2019-ps/wds/Get-WdsBootImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsBootImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/get-wdsbootimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/get-wdsbootimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WdsBootImage --- diff --git a/docset/winserver2019-ps/wds/Get-WdsClient.md b/docset/winserver2019-ps/wds/Get-WdsClient.md index 2322e9809c..c9affd2e41 100644 --- a/docset/winserver2019-ps/wds/Get-WdsClient.md +++ b/docset/winserver2019-ps/wds/Get-WdsClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsClient_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/get-wdsclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/get-wdsclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WdsClient --- diff --git a/docset/winserver2019-ps/wds/Get-WdsDriverPackage.md b/docset/winserver2019-ps/wds/Get-WdsDriverPackage.md index f80696ca73..e8ff43021f 100644 --- a/docset/winserver2019-ps/wds/Get-WdsDriverPackage.md +++ b/docset/winserver2019-ps/wds/Get-WdsDriverPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsDriverPackage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/get-wdsdriverpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/get-wdsdriverpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WdsDriverPackage --- diff --git a/docset/winserver2019-ps/wds/Get-WdsInstallImage.md b/docset/winserver2019-ps/wds/Get-WdsInstallImage.md index 6b093a20b0..e884d910de 100644 --- a/docset/winserver2019-ps/wds/Get-WdsInstallImage.md +++ b/docset/winserver2019-ps/wds/Get-WdsInstallImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsInstallImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/get-wdsinstallimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/get-wdsinstallimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WdsInstallImage --- diff --git a/docset/winserver2019-ps/wds/Get-WdsInstallImageGroup.md b/docset/winserver2019-ps/wds/Get-WdsInstallImageGroup.md index b8f129b704..24011eb45c 100644 --- a/docset/winserver2019-ps/wds/Get-WdsInstallImageGroup.md +++ b/docset/winserver2019-ps/wds/Get-WdsInstallImageGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsInstallImageGroup_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/get-wdsinstallimagegroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/get-wdsinstallimagegroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WdsInstallImageGroup --- diff --git a/docset/winserver2019-ps/wds/Get-WdsMulticastClient.md b/docset/winserver2019-ps/wds/Get-WdsMulticastClient.md index 48205e010d..bc3d014fe5 100644 --- a/docset/winserver2019-ps/wds/Get-WdsMulticastClient.md +++ b/docset/winserver2019-ps/wds/Get-WdsMulticastClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsMulticastClient_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/get-wdsmulticastclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/get-wdsmulticastclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WdsMulticastClient --- diff --git a/docset/winserver2019-ps/wds/Import-WdsBootImage.md b/docset/winserver2019-ps/wds/Import-WdsBootImage.md index 878fd28676..94ffc18181 100644 --- a/docset/winserver2019-ps/wds/Import-WdsBootImage.md +++ b/docset/winserver2019-ps/wds/Import-WdsBootImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsBootImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/import-wdsbootimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/import-wdsbootimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-WdsBootImage --- diff --git a/docset/winserver2019-ps/wds/Import-WdsDriverPackage.md b/docset/winserver2019-ps/wds/Import-WdsDriverPackage.md index a38c6b3c99..b258eb5c34 100644 --- a/docset/winserver2019-ps/wds/Import-WdsDriverPackage.md +++ b/docset/winserver2019-ps/wds/Import-WdsDriverPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsDriverPackage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/import-wdsdriverpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/import-wdsdriverpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-WdsDriverPackage --- diff --git a/docset/winserver2019-ps/wds/Import-WdsInstallImage.md b/docset/winserver2019-ps/wds/Import-WdsInstallImage.md index e4d0f4ef6c..4d0994e4c2 100644 --- a/docset/winserver2019-ps/wds/Import-WdsInstallImage.md +++ b/docset/winserver2019-ps/wds/Import-WdsInstallImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsInstallImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/import-wdsinstallimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/import-wdsinstallimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-WdsInstallImage --- diff --git a/docset/winserver2019-ps/wds/New-WdsClient.md b/docset/winserver2019-ps/wds/New-WdsClient.md index c274cf1cba..c4923551b0 100644 --- a/docset/winserver2019-ps/wds/New-WdsClient.md +++ b/docset/winserver2019-ps/wds/New-WdsClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsClient_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/new-wdsclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/new-wdsclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WdsClient --- diff --git a/docset/winserver2019-ps/wds/New-WdsInstallImageGroup.md b/docset/winserver2019-ps/wds/New-WdsInstallImageGroup.md index dd772c0804..c599eaaa82 100644 --- a/docset/winserver2019-ps/wds/New-WdsInstallImageGroup.md +++ b/docset/winserver2019-ps/wds/New-WdsInstallImageGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsInstallImageGroup_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/new-wdsinstallimagegroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/new-wdsinstallimagegroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WdsInstallImageGroup --- diff --git a/docset/winserver2019-ps/wds/Remove-WdsBootImage.md b/docset/winserver2019-ps/wds/Remove-WdsBootImage.md index 196948a1b7..0eab137164 100644 --- a/docset/winserver2019-ps/wds/Remove-WdsBootImage.md +++ b/docset/winserver2019-ps/wds/Remove-WdsBootImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsBootImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/remove-wdsbootimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/remove-wdsbootimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WdsBootImage --- diff --git a/docset/winserver2019-ps/wds/Remove-WdsClient.md b/docset/winserver2019-ps/wds/Remove-WdsClient.md index 755523be71..4d4a513017 100644 --- a/docset/winserver2019-ps/wds/Remove-WdsClient.md +++ b/docset/winserver2019-ps/wds/Remove-WdsClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsClient_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/remove-wdsclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/remove-wdsclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WdsClient --- diff --git a/docset/winserver2019-ps/wds/Remove-WdsDriverPackage.md b/docset/winserver2019-ps/wds/Remove-WdsDriverPackage.md index 41d52319a2..e3b93261ed 100644 --- a/docset/winserver2019-ps/wds/Remove-WdsDriverPackage.md +++ b/docset/winserver2019-ps/wds/Remove-WdsDriverPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsDriverPackage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/remove-wdsdriverpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/remove-wdsdriverpackage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WdsDriverPackage --- diff --git a/docset/winserver2019-ps/wds/Remove-WdsInstallImage.md b/docset/winserver2019-ps/wds/Remove-WdsInstallImage.md index f8f421c5ab..103e37f9c7 100644 --- a/docset/winserver2019-ps/wds/Remove-WdsInstallImage.md +++ b/docset/winserver2019-ps/wds/Remove-WdsInstallImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsInstallImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/remove-wdsinstallimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/remove-wdsinstallimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WdsInstallImage --- diff --git a/docset/winserver2019-ps/wds/Remove-WdsInstallImageGroup.md b/docset/winserver2019-ps/wds/Remove-WdsInstallImageGroup.md index 25d0b9efce..dff31fa813 100644 --- a/docset/winserver2019-ps/wds/Remove-WdsInstallImageGroup.md +++ b/docset/winserver2019-ps/wds/Remove-WdsInstallImageGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsInstallImageGroup_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/remove-wdsinstallimagegroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/remove-wdsinstallimagegroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WdsInstallImageGroup --- diff --git a/docset/winserver2019-ps/wds/Set-WdsBootImage.md b/docset/winserver2019-ps/wds/Set-WdsBootImage.md index 1df909d314..d70079372b 100644 --- a/docset/winserver2019-ps/wds/Set-WdsBootImage.md +++ b/docset/winserver2019-ps/wds/Set-WdsBootImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsBootImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/set-wdsbootimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/set-wdsbootimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WdsBootImage --- diff --git a/docset/winserver2019-ps/wds/Set-WdsClient.md b/docset/winserver2019-ps/wds/Set-WdsClient.md index 304cf61ccd..7855c5f891 100644 --- a/docset/winserver2019-ps/wds/Set-WdsClient.md +++ b/docset/winserver2019-ps/wds/Set-WdsClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsClient_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/set-wdsclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/set-wdsclient?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WdsClient --- diff --git a/docset/winserver2019-ps/wds/Set-WdsInstallImage.md b/docset/winserver2019-ps/wds/Set-WdsInstallImage.md index 874ae54789..bbd37a815a 100644 --- a/docset/winserver2019-ps/wds/Set-WdsInstallImage.md +++ b/docset/winserver2019-ps/wds/Set-WdsInstallImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsInstallImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/set-wdsinstallimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/set-wdsinstallimage?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WdsInstallImage --- diff --git a/docset/winserver2019-ps/wds/Set-WdsInstallImageGroup.md b/docset/winserver2019-ps/wds/Set-WdsInstallImageGroup.md index 36bcfcba63..1d05c09586 100644 --- a/docset/winserver2019-ps/wds/Set-WdsInstallImageGroup.md +++ b/docset/winserver2019-ps/wds/Set-WdsInstallImageGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsInstallImageGroup_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/set-wdsinstallimagegroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/set-wdsinstallimagegroup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WdsInstallImageGroup --- diff --git a/docset/winserver2019-ps/webadministration/Add-WebConfiguration.md b/docset/winserver2019-ps/webadministration/Add-WebConfiguration.md index fef137b1f0..18fb313f81 100644 --- a/docset/winserver2019-ps/webadministration/Add-WebConfiguration.md +++ b/docset/winserver2019-ps/webadministration/Add-WebConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/add-webconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/add-webconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WebConfiguration --- diff --git a/docset/winserver2019-ps/webadministration/Add-WebConfigurationLock.md b/docset/winserver2019-ps/webadministration/Add-WebConfigurationLock.md index 8c78c25b15..c8edf493e4 100644 --- a/docset/winserver2019-ps/webadministration/Add-WebConfigurationLock.md +++ b/docset/winserver2019-ps/webadministration/Add-WebConfigurationLock.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/add-webconfigurationlock?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/add-webconfigurationlock?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WebConfigurationLock --- diff --git a/docset/winserver2019-ps/webadministration/Add-WebConfigurationProperty.md b/docset/winserver2019-ps/webadministration/Add-WebConfigurationProperty.md index 4f5e670951..41957ac77a 100644 --- a/docset/winserver2019-ps/webadministration/Add-WebConfigurationProperty.md +++ b/docset/winserver2019-ps/webadministration/Add-WebConfigurationProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/add-webconfigurationproperty?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/add-webconfigurationproperty?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WebConfigurationProperty --- diff --git a/docset/winserver2019-ps/webadministration/Backup-WebConfiguration.md b/docset/winserver2019-ps/webadministration/Backup-WebConfiguration.md index 9702ae9ee7..400885db64 100644 --- a/docset/winserver2019-ps/webadministration/Backup-WebConfiguration.md +++ b/docset/winserver2019-ps/webadministration/Backup-WebConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/backup-webconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/backup-webconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Backup-WebConfiguration --- diff --git a/docset/winserver2019-ps/webadministration/Clear-WebCentralCertProvider.md b/docset/winserver2019-ps/webadministration/Clear-WebCentralCertProvider.md index b4cbaefd3f..dd6d6d3e97 100644 --- a/docset/winserver2019-ps/webadministration/Clear-WebCentralCertProvider.md +++ b/docset/winserver2019-ps/webadministration/Clear-WebCentralCertProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/clear-webcentralcertprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/clear-webcentralcertprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-WebCentralCertProvider --- diff --git a/docset/winserver2019-ps/webadministration/Clear-WebConfiguration.md b/docset/winserver2019-ps/webadministration/Clear-WebConfiguration.md index b986bc8aec..910b2d4ab8 100644 --- a/docset/winserver2019-ps/webadministration/Clear-WebConfiguration.md +++ b/docset/winserver2019-ps/webadministration/Clear-WebConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/clear-webconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/clear-webconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-WebConfiguration --- diff --git a/docset/winserver2019-ps/webadministration/Clear-WebRequestTracingSetting.md b/docset/winserver2019-ps/webadministration/Clear-WebRequestTracingSetting.md index ac838ce86e..e285f41394 100644 --- a/docset/winserver2019-ps/webadministration/Clear-WebRequestTracingSetting.md +++ b/docset/winserver2019-ps/webadministration/Clear-WebRequestTracingSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/clear-webrequesttracingsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/clear-webrequesttracingsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-WebRequestTracingSetting --- diff --git a/docset/winserver2019-ps/webadministration/Clear-WebRequestTracingSettings.md b/docset/winserver2019-ps/webadministration/Clear-WebRequestTracingSettings.md index 77f4439f53..48b924f902 100644 --- a/docset/winserver2019-ps/webadministration/Clear-WebRequestTracingSettings.md +++ b/docset/winserver2019-ps/webadministration/Clear-WebRequestTracingSettings.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/clear-webrequesttracingsettings?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/clear-webrequesttracingsettings?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-WebRequestTracingSettings --- diff --git a/docset/winserver2019-ps/webadministration/ConvertTo-WebApplication.md b/docset/winserver2019-ps/webadministration/ConvertTo-WebApplication.md index 2f30849e4e..aa415129b2 100644 --- a/docset/winserver2019-ps/webadministration/ConvertTo-WebApplication.md +++ b/docset/winserver2019-ps/webadministration/ConvertTo-WebApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/convertto-webapplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/convertto-webapplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: ConvertTo-WebApplication --- diff --git a/docset/winserver2019-ps/webadministration/Disable-WebCentralCertProvider.md b/docset/winserver2019-ps/webadministration/Disable-WebCentralCertProvider.md index 017c1a8806..2415df3f4c 100644 --- a/docset/winserver2019-ps/webadministration/Disable-WebCentralCertProvider.md +++ b/docset/winserver2019-ps/webadministration/Disable-WebCentralCertProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/disable-webcentralcertprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/disable-webcentralcertprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WebCentralCertProvider --- diff --git a/docset/winserver2019-ps/webadministration/Disable-WebGlobalModule.md b/docset/winserver2019-ps/webadministration/Disable-WebGlobalModule.md index 2d848af71f..8cda648349 100644 --- a/docset/winserver2019-ps/webadministration/Disable-WebGlobalModule.md +++ b/docset/winserver2019-ps/webadministration/Disable-WebGlobalModule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/disable-webglobalmodule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/disable-webglobalmodule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WebGlobalModule --- diff --git a/docset/winserver2019-ps/webadministration/Disable-WebRequestTracing.md b/docset/winserver2019-ps/webadministration/Disable-WebRequestTracing.md index 8c43395c77..7052495ccb 100644 --- a/docset/winserver2019-ps/webadministration/Disable-WebRequestTracing.md +++ b/docset/winserver2019-ps/webadministration/Disable-WebRequestTracing.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/disable-webrequesttracing?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/disable-webrequesttracing?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WebRequestTracing --- diff --git a/docset/winserver2019-ps/webadministration/Enable-WebCentralCertProvider.md b/docset/winserver2019-ps/webadministration/Enable-WebCentralCertProvider.md index 284710fa9f..803f80ec4d 100644 --- a/docset/winserver2019-ps/webadministration/Enable-WebCentralCertProvider.md +++ b/docset/winserver2019-ps/webadministration/Enable-WebCentralCertProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/enable-webcentralcertprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/enable-webcentralcertprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WebCentralCertProvider --- diff --git a/docset/winserver2019-ps/webadministration/Enable-WebGlobalModule.md b/docset/winserver2019-ps/webadministration/Enable-WebGlobalModule.md index 7494543905..f42ff82094 100644 --- a/docset/winserver2019-ps/webadministration/Enable-WebGlobalModule.md +++ b/docset/winserver2019-ps/webadministration/Enable-WebGlobalModule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/enable-webglobalmodule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/enable-webglobalmodule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WebGlobalModule --- diff --git a/docset/winserver2019-ps/webadministration/Enable-WebRequestTracing.md b/docset/winserver2019-ps/webadministration/Enable-WebRequestTracing.md index f5de635c07..11b04fd8aa 100644 --- a/docset/winserver2019-ps/webadministration/Enable-WebRequestTracing.md +++ b/docset/winserver2019-ps/webadministration/Enable-WebRequestTracing.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/enable-webrequesttracing?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/enable-webrequesttracing?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WebRequestTracing --- diff --git a/docset/winserver2019-ps/webadministration/Get-WebAppDomain.md b/docset/winserver2019-ps/webadministration/Get-WebAppDomain.md index 19a0c6e11c..443e078807 100644 --- a/docset/winserver2019-ps/webadministration/Get-WebAppDomain.md +++ b/docset/winserver2019-ps/webadministration/Get-WebAppDomain.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webappdomain?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webappdomain?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebAppDomain --- diff --git a/docset/winserver2019-ps/webadministration/Get-WebAppPoolState.md b/docset/winserver2019-ps/webadministration/Get-WebAppPoolState.md index 33c3f4c5ab..37c21b9360 100644 --- a/docset/winserver2019-ps/webadministration/Get-WebAppPoolState.md +++ b/docset/winserver2019-ps/webadministration/Get-WebAppPoolState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webapppoolstate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webapppoolstate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebAppPoolState --- diff --git a/docset/winserver2019-ps/webadministration/Get-WebApplication.md b/docset/winserver2019-ps/webadministration/Get-WebApplication.md index a434f969ff..35f7a50f44 100644 --- a/docset/winserver2019-ps/webadministration/Get-WebApplication.md +++ b/docset/winserver2019-ps/webadministration/Get-WebApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webapplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webapplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebApplication --- diff --git a/docset/winserver2019-ps/webadministration/Get-WebBinding.md b/docset/winserver2019-ps/webadministration/Get-WebBinding.md index bf3d23b9a9..565a60b32f 100644 --- a/docset/winserver2019-ps/webadministration/Get-WebBinding.md +++ b/docset/winserver2019-ps/webadministration/Get-WebBinding.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webbinding?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webbinding?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebBinding --- diff --git a/docset/winserver2019-ps/webadministration/Get-WebCentralCertProvider.md b/docset/winserver2019-ps/webadministration/Get-WebCentralCertProvider.md index 4afb122d66..1e52dda591 100644 --- a/docset/winserver2019-ps/webadministration/Get-WebCentralCertProvider.md +++ b/docset/winserver2019-ps/webadministration/Get-WebCentralCertProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webcentralcertprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webcentralcertprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebCentralCertProvider --- diff --git a/docset/winserver2019-ps/webadministration/Get-WebConfigFile.md b/docset/winserver2019-ps/webadministration/Get-WebConfigFile.md index 89f0a4ec88..e850d0e1ee 100644 --- a/docset/winserver2019-ps/webadministration/Get-WebConfigFile.md +++ b/docset/winserver2019-ps/webadministration/Get-WebConfigFile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webconfigfile?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webconfigfile?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebConfigFile --- diff --git a/docset/winserver2019-ps/webadministration/Get-WebConfiguration.md b/docset/winserver2019-ps/webadministration/Get-WebConfiguration.md index a0501e41ac..73f7d67cfc 100644 --- a/docset/winserver2019-ps/webadministration/Get-WebConfiguration.md +++ b/docset/winserver2019-ps/webadministration/Get-WebConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebConfiguration --- diff --git a/docset/winserver2019-ps/webadministration/Get-WebConfigurationBackup.md b/docset/winserver2019-ps/webadministration/Get-WebConfigurationBackup.md index f0146d5fe3..fff7f07764 100644 --- a/docset/winserver2019-ps/webadministration/Get-WebConfigurationBackup.md +++ b/docset/winserver2019-ps/webadministration/Get-WebConfigurationBackup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webconfigurationbackup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webconfigurationbackup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebConfigurationBackup --- diff --git a/docset/winserver2019-ps/webadministration/Get-WebConfigurationLocation.md b/docset/winserver2019-ps/webadministration/Get-WebConfigurationLocation.md index b65502963b..5fd627d9fc 100644 --- a/docset/winserver2019-ps/webadministration/Get-WebConfigurationLocation.md +++ b/docset/winserver2019-ps/webadministration/Get-WebConfigurationLocation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webconfigurationlocation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webconfigurationlocation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebConfigurationLocation --- diff --git a/docset/winserver2019-ps/webadministration/Get-WebConfigurationLock.md b/docset/winserver2019-ps/webadministration/Get-WebConfigurationLock.md index 34b52e7365..ed8243e26c 100644 --- a/docset/winserver2019-ps/webadministration/Get-WebConfigurationLock.md +++ b/docset/winserver2019-ps/webadministration/Get-WebConfigurationLock.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webconfigurationlock?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webconfigurationlock?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebConfigurationLock --- diff --git a/docset/winserver2019-ps/webadministration/Get-WebConfigurationProperty.md b/docset/winserver2019-ps/webadministration/Get-WebConfigurationProperty.md index db98e40b29..03b1be3bd7 100644 --- a/docset/winserver2019-ps/webadministration/Get-WebConfigurationProperty.md +++ b/docset/winserver2019-ps/webadministration/Get-WebConfigurationProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webconfigurationproperty?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webconfigurationproperty?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebConfigurationProperty --- diff --git a/docset/winserver2019-ps/webadministration/Get-WebFilePath.md b/docset/winserver2019-ps/webadministration/Get-WebFilePath.md index 850ac02d7d..641c01e55a 100644 --- a/docset/winserver2019-ps/webadministration/Get-WebFilePath.md +++ b/docset/winserver2019-ps/webadministration/Get-WebFilePath.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webfilepath?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webfilepath?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebFilePath --- diff --git a/docset/winserver2019-ps/webadministration/Get-WebGlobalModule.md b/docset/winserver2019-ps/webadministration/Get-WebGlobalModule.md index 944ab4f3f7..1e4a5209bb 100644 --- a/docset/winserver2019-ps/webadministration/Get-WebGlobalModule.md +++ b/docset/winserver2019-ps/webadministration/Get-WebGlobalModule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webglobalmodule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webglobalmodule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebGlobalModule --- diff --git a/docset/winserver2019-ps/webadministration/Get-WebHandler.md b/docset/winserver2019-ps/webadministration/Get-WebHandler.md index edc3aa1a0e..54048e568b 100644 --- a/docset/winserver2019-ps/webadministration/Get-WebHandler.md +++ b/docset/winserver2019-ps/webadministration/Get-WebHandler.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webhandler?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webhandler?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebHandler --- diff --git a/docset/winserver2019-ps/webadministration/Get-WebItemState.md b/docset/winserver2019-ps/webadministration/Get-WebItemState.md index 6a54b1e27a..460f426c03 100644 --- a/docset/winserver2019-ps/webadministration/Get-WebItemState.md +++ b/docset/winserver2019-ps/webadministration/Get-WebItemState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webitemstate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webitemstate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebItemState --- diff --git a/docset/winserver2019-ps/webadministration/Get-WebManagedModule.md b/docset/winserver2019-ps/webadministration/Get-WebManagedModule.md index ca8cb11124..44a760e4e2 100644 --- a/docset/winserver2019-ps/webadministration/Get-WebManagedModule.md +++ b/docset/winserver2019-ps/webadministration/Get-WebManagedModule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webmanagedmodule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webmanagedmodule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebManagedModule --- diff --git a/docset/winserver2019-ps/webadministration/Get-WebRequest.md b/docset/winserver2019-ps/webadministration/Get-WebRequest.md index 1cb488bf8c..5118fe1be0 100644 --- a/docset/winserver2019-ps/webadministration/Get-WebRequest.md +++ b/docset/winserver2019-ps/webadministration/Get-WebRequest.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webrequest?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webrequest?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebRequest --- diff --git a/docset/winserver2019-ps/webadministration/Get-WebURL.md b/docset/winserver2019-ps/webadministration/Get-WebURL.md index acc34627f9..84418608fc 100644 --- a/docset/winserver2019-ps/webadministration/Get-WebURL.md +++ b/docset/winserver2019-ps/webadministration/Get-WebURL.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-weburl?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-weburl?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebURL --- diff --git a/docset/winserver2019-ps/webadministration/Get-WebVirtualDirectory.md b/docset/winserver2019-ps/webadministration/Get-WebVirtualDirectory.md index 56b8c68dc8..20da68887b 100644 --- a/docset/winserver2019-ps/webadministration/Get-WebVirtualDirectory.md +++ b/docset/winserver2019-ps/webadministration/Get-WebVirtualDirectory.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webvirtualdirectory?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webvirtualdirectory?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebVirtualDirectory --- diff --git a/docset/winserver2019-ps/webadministration/Get-Website.md b/docset/winserver2019-ps/webadministration/Get-Website.md index 0e52e102e8..7bc7c68f14 100644 --- a/docset/winserver2019-ps/webadministration/Get-Website.md +++ b/docset/winserver2019-ps/webadministration/Get-Website.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-website?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-website?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-Website --- diff --git a/docset/winserver2019-ps/webadministration/Get-WebsiteState.md b/docset/winserver2019-ps/webadministration/Get-WebsiteState.md index 09790b2ec2..2f07a5309a 100644 --- a/docset/winserver2019-ps/webadministration/Get-WebsiteState.md +++ b/docset/winserver2019-ps/webadministration/Get-WebsiteState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-websitestate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-websitestate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebsiteState --- diff --git a/docset/winserver2019-ps/webadministration/New-WebAppPool.md b/docset/winserver2019-ps/webadministration/New-WebAppPool.md index 386a267566..69d7d9b9fd 100644 --- a/docset/winserver2019-ps/webadministration/New-WebAppPool.md +++ b/docset/winserver2019-ps/webadministration/New-WebAppPool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/new-webapppool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/new-webapppool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WebAppPool --- diff --git a/docset/winserver2019-ps/webadministration/New-WebApplication.md b/docset/winserver2019-ps/webadministration/New-WebApplication.md index 945830d2bd..7ed3679c78 100644 --- a/docset/winserver2019-ps/webadministration/New-WebApplication.md +++ b/docset/winserver2019-ps/webadministration/New-WebApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/new-webapplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/new-webapplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WebApplication --- diff --git a/docset/winserver2019-ps/webadministration/New-WebBinding.md b/docset/winserver2019-ps/webadministration/New-WebBinding.md index 57801898ac..e2488d24b0 100644 --- a/docset/winserver2019-ps/webadministration/New-WebBinding.md +++ b/docset/winserver2019-ps/webadministration/New-WebBinding.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/new-webbinding?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/new-webbinding?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WebBinding --- diff --git a/docset/winserver2019-ps/webadministration/New-WebFtpSite.md b/docset/winserver2019-ps/webadministration/New-WebFtpSite.md index 8d0c9f78ba..4b5fd77a26 100644 --- a/docset/winserver2019-ps/webadministration/New-WebFtpSite.md +++ b/docset/winserver2019-ps/webadministration/New-WebFtpSite.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/new-webftpsite?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/new-webftpsite?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WebFtpSite --- diff --git a/docset/winserver2019-ps/webadministration/New-WebGlobalModule.md b/docset/winserver2019-ps/webadministration/New-WebGlobalModule.md index 74f3f62e88..4ac904ed82 100644 --- a/docset/winserver2019-ps/webadministration/New-WebGlobalModule.md +++ b/docset/winserver2019-ps/webadministration/New-WebGlobalModule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/new-webglobalmodule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/new-webglobalmodule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WebGlobalModule --- diff --git a/docset/winserver2019-ps/webadministration/New-WebHandler.md b/docset/winserver2019-ps/webadministration/New-WebHandler.md index 448596855c..f32ed847ea 100644 --- a/docset/winserver2019-ps/webadministration/New-WebHandler.md +++ b/docset/winserver2019-ps/webadministration/New-WebHandler.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/new-webhandler?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/new-webhandler?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WebHandler --- diff --git a/docset/winserver2019-ps/webadministration/New-WebManagedModule.md b/docset/winserver2019-ps/webadministration/New-WebManagedModule.md index 80d7666995..d6fafb4d08 100644 --- a/docset/winserver2019-ps/webadministration/New-WebManagedModule.md +++ b/docset/winserver2019-ps/webadministration/New-WebManagedModule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/new-webmanagedmodule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/new-webmanagedmodule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WebManagedModule --- diff --git a/docset/winserver2019-ps/webadministration/New-WebVirtualDirectory.md b/docset/winserver2019-ps/webadministration/New-WebVirtualDirectory.md index 48a5d72493..c76c34eb6d 100644 --- a/docset/winserver2019-ps/webadministration/New-WebVirtualDirectory.md +++ b/docset/winserver2019-ps/webadministration/New-WebVirtualDirectory.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/new-webvirtualdirectory?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/new-webvirtualdirectory?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WebVirtualDirectory --- diff --git a/docset/winserver2019-ps/webadministration/New-Website.md b/docset/winserver2019-ps/webadministration/New-Website.md index 788d81a744..c9a5c52166 100644 --- a/docset/winserver2019-ps/webadministration/New-Website.md +++ b/docset/winserver2019-ps/webadministration/New-Website.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/new-website?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/new-website?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-Website --- diff --git a/docset/winserver2019-ps/webadministration/Remove-WebAppPool.md b/docset/winserver2019-ps/webadministration/Remove-WebAppPool.md index b4ffefa19c..b78561d1d8 100644 --- a/docset/winserver2019-ps/webadministration/Remove-WebAppPool.md +++ b/docset/winserver2019-ps/webadministration/Remove-WebAppPool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-webapppool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-webapppool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WebAppPool --- diff --git a/docset/winserver2019-ps/webadministration/Remove-WebApplication.md b/docset/winserver2019-ps/webadministration/Remove-WebApplication.md index 4bc1876e5f..ebfdf0e6d9 100644 --- a/docset/winserver2019-ps/webadministration/Remove-WebApplication.md +++ b/docset/winserver2019-ps/webadministration/Remove-WebApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-webapplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-webapplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WebApplication --- diff --git a/docset/winserver2019-ps/webadministration/Remove-WebBinding.md b/docset/winserver2019-ps/webadministration/Remove-WebBinding.md index d7c474927b..f54e872362 100644 --- a/docset/winserver2019-ps/webadministration/Remove-WebBinding.md +++ b/docset/winserver2019-ps/webadministration/Remove-WebBinding.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-webbinding?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-webbinding?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WebBinding --- diff --git a/docset/winserver2019-ps/webadministration/Remove-WebConfigurationBackup.md b/docset/winserver2019-ps/webadministration/Remove-WebConfigurationBackup.md index 54cd1f2f87..0d820d4730 100644 --- a/docset/winserver2019-ps/webadministration/Remove-WebConfigurationBackup.md +++ b/docset/winserver2019-ps/webadministration/Remove-WebConfigurationBackup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-webconfigurationbackup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-webconfigurationbackup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WebConfigurationBackup --- diff --git a/docset/winserver2019-ps/webadministration/Remove-WebConfigurationLocation.md b/docset/winserver2019-ps/webadministration/Remove-WebConfigurationLocation.md index 41036542f9..d6e0d081db 100644 --- a/docset/winserver2019-ps/webadministration/Remove-WebConfigurationLocation.md +++ b/docset/winserver2019-ps/webadministration/Remove-WebConfigurationLocation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-webconfigurationlocation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-webconfigurationlocation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WebConfigurationLocation --- diff --git a/docset/winserver2019-ps/webadministration/Remove-WebConfigurationLock.md b/docset/winserver2019-ps/webadministration/Remove-WebConfigurationLock.md index 3ad84b9786..da965ac27d 100644 --- a/docset/winserver2019-ps/webadministration/Remove-WebConfigurationLock.md +++ b/docset/winserver2019-ps/webadministration/Remove-WebConfigurationLock.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-webconfigurationlock?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-webconfigurationlock?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WebConfigurationLock --- diff --git a/docset/winserver2019-ps/webadministration/Remove-WebConfigurationProperty.md b/docset/winserver2019-ps/webadministration/Remove-WebConfigurationProperty.md index 86a9ff4992..13c50abc70 100644 --- a/docset/winserver2019-ps/webadministration/Remove-WebConfigurationProperty.md +++ b/docset/winserver2019-ps/webadministration/Remove-WebConfigurationProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-webconfigurationproperty?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-webconfigurationproperty?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WebConfigurationProperty --- diff --git a/docset/winserver2019-ps/webadministration/Remove-WebGlobalModule.md b/docset/winserver2019-ps/webadministration/Remove-WebGlobalModule.md index 77da4b58cc..92e9ff7670 100644 --- a/docset/winserver2019-ps/webadministration/Remove-WebGlobalModule.md +++ b/docset/winserver2019-ps/webadministration/Remove-WebGlobalModule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-webglobalmodule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-webglobalmodule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WebGlobalModule --- diff --git a/docset/winserver2019-ps/webadministration/Remove-WebHandler.md b/docset/winserver2019-ps/webadministration/Remove-WebHandler.md index b22fdce064..da29fbd3f1 100644 --- a/docset/winserver2019-ps/webadministration/Remove-WebHandler.md +++ b/docset/winserver2019-ps/webadministration/Remove-WebHandler.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-webhandler?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-webhandler?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WebHandler --- diff --git a/docset/winserver2019-ps/webadministration/Remove-WebManagedModule.md b/docset/winserver2019-ps/webadministration/Remove-WebManagedModule.md index 251beb88ba..83f4540219 100644 --- a/docset/winserver2019-ps/webadministration/Remove-WebManagedModule.md +++ b/docset/winserver2019-ps/webadministration/Remove-WebManagedModule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-webmanagedmodule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-webmanagedmodule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WebManagedModule --- diff --git a/docset/winserver2019-ps/webadministration/Remove-WebVirtualDirectory.md b/docset/winserver2019-ps/webadministration/Remove-WebVirtualDirectory.md index 17921f3a09..e4525dfbfb 100644 --- a/docset/winserver2019-ps/webadministration/Remove-WebVirtualDirectory.md +++ b/docset/winserver2019-ps/webadministration/Remove-WebVirtualDirectory.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-webvirtualdirectory?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-webvirtualdirectory?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WebVirtualDirectory --- diff --git a/docset/winserver2019-ps/webadministration/Remove-Website.md b/docset/winserver2019-ps/webadministration/Remove-Website.md index ea63252ff9..d4b070f4e4 100644 --- a/docset/winserver2019-ps/webadministration/Remove-Website.md +++ b/docset/winserver2019-ps/webadministration/Remove-Website.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-website?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-website?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-Website --- diff --git a/docset/winserver2019-ps/webadministration/Rename-WebConfigurationLocation.md b/docset/winserver2019-ps/webadministration/Rename-WebConfigurationLocation.md index 648e00ea66..423bbfa9ce 100644 --- a/docset/winserver2019-ps/webadministration/Rename-WebConfigurationLocation.md +++ b/docset/winserver2019-ps/webadministration/Rename-WebConfigurationLocation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/rename-webconfigurationlocation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/rename-webconfigurationlocation?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-WebConfigurationLocation --- diff --git a/docset/winserver2019-ps/webadministration/Restart-WebAppPool.md b/docset/winserver2019-ps/webadministration/Restart-WebAppPool.md index 4d02bb9540..1c99a8692e 100644 --- a/docset/winserver2019-ps/webadministration/Restart-WebAppPool.md +++ b/docset/winserver2019-ps/webadministration/Restart-WebAppPool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/restart-webapppool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/restart-webapppool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restart-WebAppPool --- diff --git a/docset/winserver2019-ps/webadministration/Restart-WebItem.md b/docset/winserver2019-ps/webadministration/Restart-WebItem.md index bb19562275..27af5ff52e 100644 --- a/docset/winserver2019-ps/webadministration/Restart-WebItem.md +++ b/docset/winserver2019-ps/webadministration/Restart-WebItem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/restart-webitem?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/restart-webitem?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restart-WebItem --- diff --git a/docset/winserver2019-ps/webadministration/Restore-WebConfiguration.md b/docset/winserver2019-ps/webadministration/Restore-WebConfiguration.md index baa2c07a7f..a149c8e9c3 100644 --- a/docset/winserver2019-ps/webadministration/Restore-WebConfiguration.md +++ b/docset/winserver2019-ps/webadministration/Restore-WebConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/restore-webconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/restore-webconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-WebConfiguration --- diff --git a/docset/winserver2019-ps/webadministration/Select-WebConfiguration.md b/docset/winserver2019-ps/webadministration/Select-WebConfiguration.md index c077b825df..a6ec28ea97 100644 --- a/docset/winserver2019-ps/webadministration/Select-WebConfiguration.md +++ b/docset/winserver2019-ps/webadministration/Select-WebConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/select-webconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/select-webconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Select-WebConfiguration --- diff --git a/docset/winserver2019-ps/webadministration/Set-WebBinding.md b/docset/winserver2019-ps/webadministration/Set-WebBinding.md index eb73f21594..c1021b45cd 100644 --- a/docset/winserver2019-ps/webadministration/Set-WebBinding.md +++ b/docset/winserver2019-ps/webadministration/Set-WebBinding.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/set-webbinding?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/set-webbinding?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WebBinding --- diff --git a/docset/winserver2019-ps/webadministration/Set-WebCentralCertProvider.md b/docset/winserver2019-ps/webadministration/Set-WebCentralCertProvider.md index 43a364f037..4769770792 100644 --- a/docset/winserver2019-ps/webadministration/Set-WebCentralCertProvider.md +++ b/docset/winserver2019-ps/webadministration/Set-WebCentralCertProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/set-webcentralcertprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/set-webcentralcertprovider?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WebCentralCertProvider --- diff --git a/docset/winserver2019-ps/webadministration/Set-WebCentralCertProviderCredential.md b/docset/winserver2019-ps/webadministration/Set-WebCentralCertProviderCredential.md index b01ac13bac..ada761d369 100644 --- a/docset/winserver2019-ps/webadministration/Set-WebCentralCertProviderCredential.md +++ b/docset/winserver2019-ps/webadministration/Set-WebCentralCertProviderCredential.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/set-webcentralcertprovidercredential?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/set-webcentralcertprovidercredential?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WebCentralCertProviderCredential --- diff --git a/docset/winserver2019-ps/webadministration/Set-WebConfiguration.md b/docset/winserver2019-ps/webadministration/Set-WebConfiguration.md index 556866f6d6..fa631b0326 100644 --- a/docset/winserver2019-ps/webadministration/Set-WebConfiguration.md +++ b/docset/winserver2019-ps/webadministration/Set-WebConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/set-webconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/set-webconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WebConfiguration --- diff --git a/docset/winserver2019-ps/webadministration/Set-WebConfigurationProperty.md b/docset/winserver2019-ps/webadministration/Set-WebConfigurationProperty.md index 180b619197..8a75af7df6 100644 --- a/docset/winserver2019-ps/webadministration/Set-WebConfigurationProperty.md +++ b/docset/winserver2019-ps/webadministration/Set-WebConfigurationProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/set-webconfigurationproperty?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/set-webconfigurationproperty?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WebConfigurationProperty --- diff --git a/docset/winserver2019-ps/webadministration/Set-WebGlobalModule.md b/docset/winserver2019-ps/webadministration/Set-WebGlobalModule.md index c8f513071d..308e5ba491 100644 --- a/docset/winserver2019-ps/webadministration/Set-WebGlobalModule.md +++ b/docset/winserver2019-ps/webadministration/Set-WebGlobalModule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/set-webglobalmodule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/set-webglobalmodule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WebGlobalModule --- diff --git a/docset/winserver2019-ps/webadministration/Set-WebHandler.md b/docset/winserver2019-ps/webadministration/Set-WebHandler.md index be3f980a3e..d2d4d53cf3 100644 --- a/docset/winserver2019-ps/webadministration/Set-WebHandler.md +++ b/docset/winserver2019-ps/webadministration/Set-WebHandler.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/set-webhandler?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/set-webhandler?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WebHandler --- diff --git a/docset/winserver2019-ps/webadministration/Set-WebManagedModule.md b/docset/winserver2019-ps/webadministration/Set-WebManagedModule.md index ec22d07ac5..1b7187f4c6 100644 --- a/docset/winserver2019-ps/webadministration/Set-WebManagedModule.md +++ b/docset/winserver2019-ps/webadministration/Set-WebManagedModule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/set-webmanagedmodule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/set-webmanagedmodule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WebManagedModule --- diff --git a/docset/winserver2019-ps/webadministration/Start-WebAppPool.md b/docset/winserver2019-ps/webadministration/Start-WebAppPool.md index 59ba302a08..e4954eff9e 100644 --- a/docset/winserver2019-ps/webadministration/Start-WebAppPool.md +++ b/docset/winserver2019-ps/webadministration/Start-WebAppPool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/start-webapppool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/start-webapppool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-WebAppPool --- diff --git a/docset/winserver2019-ps/webadministration/Start-WebCommitDelay.md b/docset/winserver2019-ps/webadministration/Start-WebCommitDelay.md index 4555a65745..0b0d01784c 100644 --- a/docset/winserver2019-ps/webadministration/Start-WebCommitDelay.md +++ b/docset/winserver2019-ps/webadministration/Start-WebCommitDelay.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/start-webcommitdelay?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/start-webcommitdelay?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-WebCommitDelay --- diff --git a/docset/winserver2019-ps/webadministration/Start-WebItem.md b/docset/winserver2019-ps/webadministration/Start-WebItem.md index 0ea8eff363..a3a95b84e4 100644 --- a/docset/winserver2019-ps/webadministration/Start-WebItem.md +++ b/docset/winserver2019-ps/webadministration/Start-WebItem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/start-webitem?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/start-webitem?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-WebItem --- diff --git a/docset/winserver2019-ps/webadministration/Start-Website.md b/docset/winserver2019-ps/webadministration/Start-Website.md index 0e12816616..b4420e1abc 100644 --- a/docset/winserver2019-ps/webadministration/Start-Website.md +++ b/docset/winserver2019-ps/webadministration/Start-Website.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/start-website?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/start-website?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-Website --- diff --git a/docset/winserver2019-ps/webadministration/Stop-WebAppPool.md b/docset/winserver2019-ps/webadministration/Stop-WebAppPool.md index 778d5f4480..d37cca4098 100644 --- a/docset/winserver2019-ps/webadministration/Stop-WebAppPool.md +++ b/docset/winserver2019-ps/webadministration/Stop-WebAppPool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/stop-webapppool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/stop-webapppool?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-WebAppPool --- diff --git a/docset/winserver2019-ps/webadministration/Stop-WebCommitDelay.md b/docset/winserver2019-ps/webadministration/Stop-WebCommitDelay.md index 66dcf8f1ed..8448210336 100644 --- a/docset/winserver2019-ps/webadministration/Stop-WebCommitDelay.md +++ b/docset/winserver2019-ps/webadministration/Stop-WebCommitDelay.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/stop-webcommitdelay?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/stop-webcommitdelay?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-WebCommitDelay --- diff --git a/docset/winserver2019-ps/webadministration/Stop-WebItem.md b/docset/winserver2019-ps/webadministration/Stop-WebItem.md index eed0f7bc65..ca5d9d23bb 100644 --- a/docset/winserver2019-ps/webadministration/Stop-WebItem.md +++ b/docset/winserver2019-ps/webadministration/Stop-WebItem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/stop-webitem?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/stop-webitem?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-WebItem --- diff --git a/docset/winserver2019-ps/webadministration/Stop-Website.md b/docset/winserver2019-ps/webadministration/Stop-Website.md index d10506b12f..0974653b57 100644 --- a/docset/winserver2019-ps/webadministration/Stop-Website.md +++ b/docset/winserver2019-ps/webadministration/Stop-Website.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/stop-website?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/stop-website?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-Website --- diff --git a/docset/winserver2019-ps/webapplicationproxy/Add-WebApplicationProxyApplication.md b/docset/winserver2019-ps/webapplicationproxy/Add-WebApplicationProxyApplication.md index 94271ac0d9..b02df93267 100644 --- a/docset/winserver2019-ps/webapplicationproxy/Add-WebApplicationProxyApplication.md +++ b/docset/winserver2019-ps/webapplicationproxy/Add-WebApplicationProxyApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: WebApplicationProxy-help.xml Module Name: WebApplicationProxy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/webapplicationproxy/add-webapplicationproxyapplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webapplicationproxy/add-webapplicationproxyapplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WebApplicationProxyApplication --- diff --git a/docset/winserver2019-ps/webapplicationproxy/Get-WebApplicationProxyApplication.md b/docset/winserver2019-ps/webapplicationproxy/Get-WebApplicationProxyApplication.md index 3a9cf3867b..17fd1c81aa 100644 --- a/docset/winserver2019-ps/webapplicationproxy/Get-WebApplicationProxyApplication.md +++ b/docset/winserver2019-ps/webapplicationproxy/Get-WebApplicationProxyApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: WebApplicationProxy-help.xml Module Name: WebApplicationProxy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/webapplicationproxy/get-webapplicationproxyapplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webapplicationproxy/get-webapplicationproxyapplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebApplicationProxyApplication --- diff --git a/docset/winserver2019-ps/webapplicationproxy/Get-WebApplicationProxyAvailableADFSRelyingParty.md b/docset/winserver2019-ps/webapplicationproxy/Get-WebApplicationProxyAvailableADFSRelyingParty.md index 0b2630bebe..2e6639ecb4 100644 --- a/docset/winserver2019-ps/webapplicationproxy/Get-WebApplicationProxyAvailableADFSRelyingParty.md +++ b/docset/winserver2019-ps/webapplicationproxy/Get-WebApplicationProxyAvailableADFSRelyingParty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: WebApplicationProxy-help.xml Module Name: WebApplicationProxy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/webapplicationproxy/get-webapplicationproxyavailableadfsrelyingparty?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webapplicationproxy/get-webapplicationproxyavailableadfsrelyingparty?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebApplicationProxyAvailableADFSRelyingParty --- diff --git a/docset/winserver2019-ps/webapplicationproxy/Get-WebApplicationProxyConfiguration.md b/docset/winserver2019-ps/webapplicationproxy/Get-WebApplicationProxyConfiguration.md index 4b530cc822..b03fde09ba 100644 --- a/docset/winserver2019-ps/webapplicationproxy/Get-WebApplicationProxyConfiguration.md +++ b/docset/winserver2019-ps/webapplicationproxy/Get-WebApplicationProxyConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: WebApplicationProxy-help.xml Module Name: WebApplicationProxy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/webapplicationproxy/get-webapplicationproxyconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webapplicationproxy/get-webapplicationproxyconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebApplicationProxyConfiguration --- diff --git a/docset/winserver2019-ps/webapplicationproxy/Get-WebApplicationProxyHealth.md b/docset/winserver2019-ps/webapplicationproxy/Get-WebApplicationProxyHealth.md index e191ee908e..b58e309fc6 100644 --- a/docset/winserver2019-ps/webapplicationproxy/Get-WebApplicationProxyHealth.md +++ b/docset/winserver2019-ps/webapplicationproxy/Get-WebApplicationProxyHealth.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.ApplicationProxy.Management.PowerShell.dll-Help.xml Module Name: WebApplicationProxy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/webapplicationproxy/get-webapplicationproxyhealth?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webapplicationproxy/get-webapplicationproxyhealth?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebApplicationProxyHealth --- diff --git a/docset/winserver2019-ps/webapplicationproxy/Get-WebApplicationProxySslCertificate.md b/docset/winserver2019-ps/webapplicationproxy/Get-WebApplicationProxySslCertificate.md index 4a3394170d..b9f24a4083 100644 --- a/docset/winserver2019-ps/webapplicationproxy/Get-WebApplicationProxySslCertificate.md +++ b/docset/winserver2019-ps/webapplicationproxy/Get-WebApplicationProxySslCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.Proxy.dll-Help.xml Module Name: WebApplicationProxy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/webapplicationproxy/get-webapplicationproxysslcertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webapplicationproxy/get-webapplicationproxysslcertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebApplicationProxySslCertificate --- diff --git a/docset/winserver2019-ps/webapplicationproxy/Install-WebApplicationProxy.md b/docset/winserver2019-ps/webapplicationproxy/Install-WebApplicationProxy.md index bcd8b5332f..d603be3e00 100644 --- a/docset/winserver2019-ps/webapplicationproxy/Install-WebApplicationProxy.md +++ b/docset/winserver2019-ps/webapplicationproxy/Install-WebApplicationProxy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.Proxy.dll-Help.xml Module Name: WebApplicationProxy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/webapplicationproxy/install-webapplicationproxy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webapplicationproxy/install-webapplicationproxy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-WebApplicationProxy --- diff --git a/docset/winserver2019-ps/webapplicationproxy/Remove-WebApplicationProxyApplication.md b/docset/winserver2019-ps/webapplicationproxy/Remove-WebApplicationProxyApplication.md index 5972567b96..e463563d25 100644 --- a/docset/winserver2019-ps/webapplicationproxy/Remove-WebApplicationProxyApplication.md +++ b/docset/winserver2019-ps/webapplicationproxy/Remove-WebApplicationProxyApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: WebApplicationProxy-help.xml Module Name: WebApplicationProxy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/webapplicationproxy/remove-webapplicationproxyapplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webapplicationproxy/remove-webapplicationproxyapplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WebApplicationProxyApplication --- diff --git a/docset/winserver2019-ps/webapplicationproxy/Set-WebApplicationProxyApplication.md b/docset/winserver2019-ps/webapplicationproxy/Set-WebApplicationProxyApplication.md index d42d55d0fe..f29c1fed53 100644 --- a/docset/winserver2019-ps/webapplicationproxy/Set-WebApplicationProxyApplication.md +++ b/docset/winserver2019-ps/webapplicationproxy/Set-WebApplicationProxyApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: WebApplicationProxy-help.xml Module Name: WebApplicationProxy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/webapplicationproxy/set-webapplicationproxyapplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webapplicationproxy/set-webapplicationproxyapplication?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WebApplicationProxyApplication --- diff --git a/docset/winserver2019-ps/webapplicationproxy/Set-WebApplicationProxyConfiguration.md b/docset/winserver2019-ps/webapplicationproxy/Set-WebApplicationProxyConfiguration.md index 305b3777ad..e2ee83a7c2 100644 --- a/docset/winserver2019-ps/webapplicationproxy/Set-WebApplicationProxyConfiguration.md +++ b/docset/winserver2019-ps/webapplicationproxy/Set-WebApplicationProxyConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: WebApplicationProxy-help.xml Module Name: WebApplicationProxy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/webapplicationproxy/set-webapplicationproxyconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webapplicationproxy/set-webapplicationproxyconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WebApplicationProxyConfiguration --- diff --git a/docset/winserver2019-ps/webapplicationproxy/Set-WebApplicationProxySslCertificate.md b/docset/winserver2019-ps/webapplicationproxy/Set-WebApplicationProxySslCertificate.md index 83ad5342ae..eb8c627929 100644 --- a/docset/winserver2019-ps/webapplicationproxy/Set-WebApplicationProxySslCertificate.md +++ b/docset/winserver2019-ps/webapplicationproxy/Set-WebApplicationProxySslCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.Proxy.dll-Help.xml Module Name: WebApplicationProxy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/webapplicationproxy/set-webapplicationproxysslcertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webapplicationproxy/set-webapplicationproxysslcertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WebApplicationProxySslCertificate --- diff --git a/docset/winserver2019-ps/webapplicationproxy/Update-WebApplicationProxyDeviceRegistration.md b/docset/winserver2019-ps/webapplicationproxy/Update-WebApplicationProxyDeviceRegistration.md index 849a84485a..2812205e1a 100644 --- a/docset/winserver2019-ps/webapplicationproxy/Update-WebApplicationProxyDeviceRegistration.md +++ b/docset/winserver2019-ps/webapplicationproxy/Update-WebApplicationProxyDeviceRegistration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.Proxy.dll-Help.xml Module Name: WebApplicationProxy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/webapplicationproxy/update-webapplicationproxydeviceregistration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webapplicationproxy/update-webapplicationproxydeviceregistration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-WebApplicationProxyDeviceRegistration --- diff --git a/docset/winserver2019-ps/whea/Get-WheaMemoryPolicy.md b/docset/winserver2019-ps/whea/Get-WheaMemoryPolicy.md index f5f81ca766..ee36530ae6 100644 --- a/docset/winserver2019-ps/whea/Get-WheaMemoryPolicy.md +++ b/docset/winserver2019-ps/whea/Get-WheaMemoryPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Whea.WheaMemoryPolicy.dll-Help.xml Module Name: WHEA ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/whea/get-wheamemorypolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/whea/get-wheamemorypolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WheaMemoryPolicy --- diff --git a/docset/winserver2019-ps/whea/Set-WheaMemoryPolicy.md b/docset/winserver2019-ps/whea/Set-WheaMemoryPolicy.md index fde002afe8..2460e3d321 100644 --- a/docset/winserver2019-ps/whea/Set-WheaMemoryPolicy.md +++ b/docset/winserver2019-ps/whea/Set-WheaMemoryPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Whea.WheaMemoryPolicy.dll-Help.xml Module Name: WHEA ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/whea/set-wheamemorypolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/whea/set-wheamemorypolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WheaMemoryPolicy --- diff --git a/docset/winserver2019-ps/windowsdeveloperlicense/Get-WindowsDeveloperLicense.md b/docset/winserver2019-ps/windowsdeveloperlicense/Get-WindowsDeveloperLicense.md index 36521d7949..e686010123 100644 --- a/docset/winserver2019-ps/windowsdeveloperlicense/Get-WindowsDeveloperLicense.md +++ b/docset/winserver2019-ps/windowsdeveloperlicense/Get-WindowsDeveloperLicense.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.DeveloperLicense.Commands.dll-Help.xml Module Name: WindowsDeveloperLicense ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/windowsdeveloperlicense/get-windowsdeveloperlicense?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsdeveloperlicense/get-windowsdeveloperlicense?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WindowsDeveloperLicense --- diff --git a/docset/winserver2019-ps/windowsdeveloperlicense/Show-WindowsDeveloperLicenseRegistration.md b/docset/winserver2019-ps/windowsdeveloperlicense/Show-WindowsDeveloperLicenseRegistration.md index f0d103527e..a27aec5163 100644 --- a/docset/winserver2019-ps/windowsdeveloperlicense/Show-WindowsDeveloperLicenseRegistration.md +++ b/docset/winserver2019-ps/windowsdeveloperlicense/Show-WindowsDeveloperLicenseRegistration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.DeveloperLicense.Commands.dll-Help.xml Module Name: WindowsDeveloperLicense ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/windowsdeveloperlicense/show-windowsdeveloperlicenseregistration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsdeveloperlicense/show-windowsdeveloperlicenseregistration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Show-WindowsDeveloperLicenseRegistration --- diff --git a/docset/winserver2019-ps/windowsdeveloperlicense/Unregister-WindowsDeveloperLicense.md b/docset/winserver2019-ps/windowsdeveloperlicense/Unregister-WindowsDeveloperLicense.md index 68da5a9fac..00adb223c2 100644 --- a/docset/winserver2019-ps/windowsdeveloperlicense/Unregister-WindowsDeveloperLicense.md +++ b/docset/winserver2019-ps/windowsdeveloperlicense/Unregister-WindowsDeveloperLicense.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.DeveloperLicense.Commands.dll-Help.xml Module Name: WindowsDeveloperLicense ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/windowsdeveloperlicense/unregister-windowsdeveloperlicense?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsdeveloperlicense/unregister-windowsdeveloperlicense?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unregister-WindowsDeveloperLicense --- diff --git a/docset/winserver2019-ps/windowsdiagnosticdata/Clear-WindowsDiagnosticData.md b/docset/winserver2019-ps/windowsdiagnosticdata/Clear-WindowsDiagnosticData.md index 65b0352196..621b97cb00 100644 --- a/docset/winserver2019-ps/windowsdiagnosticdata/Clear-WindowsDiagnosticData.md +++ b/docset/winserver2019-ps/windowsdiagnosticdata/Clear-WindowsDiagnosticData.md @@ -1,7 +1,7 @@ --- external help file: ClearWindowsDiagnosticData.psm1-help.xml Module Name: WindowsDiagnosticData -online version: https://docs.microsoft.com/powershell/module/windowsdiagnosticdata/clear-windowsdiagnosticdata?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsdiagnosticdata/clear-windowsdiagnosticdata?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-WindowsDiagnosticData --- diff --git a/docset/winserver2019-ps/windowserrorreporting/Disable-WindowsErrorReporting.md b/docset/winserver2019-ps/windowserrorreporting/Disable-WindowsErrorReporting.md index 683a1a27ac..2e2ebc4163 100644 --- a/docset/winserver2019-ps/windowserrorreporting/Disable-WindowsErrorReporting.md +++ b/docset/winserver2019-ps/windowserrorreporting/Disable-WindowsErrorReporting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.WindowsErrorReporting.PowerShell.dll-Help.xml Module Name: WindowsErrorReporting ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/windowserrorreporting/disable-windowserrorreporting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowserrorreporting/disable-windowserrorreporting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WindowsErrorReporting --- diff --git a/docset/winserver2019-ps/windowserrorreporting/Enable-WindowsErrorReporting.md b/docset/winserver2019-ps/windowserrorreporting/Enable-WindowsErrorReporting.md index b8f1c0922f..5156e6b63d 100644 --- a/docset/winserver2019-ps/windowserrorreporting/Enable-WindowsErrorReporting.md +++ b/docset/winserver2019-ps/windowserrorreporting/Enable-WindowsErrorReporting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.WindowsErrorReporting.PowerShell.dll-Help.xml Module Name: WindowsErrorReporting ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/windowserrorreporting/enable-windowserrorreporting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowserrorreporting/enable-windowserrorreporting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WindowsErrorReporting --- diff --git a/docset/winserver2019-ps/windowserrorreporting/Get-WindowsErrorReporting.md b/docset/winserver2019-ps/windowserrorreporting/Get-WindowsErrorReporting.md index 0152f5de01..589c080ae7 100644 --- a/docset/winserver2019-ps/windowserrorreporting/Get-WindowsErrorReporting.md +++ b/docset/winserver2019-ps/windowserrorreporting/Get-WindowsErrorReporting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.WindowsErrorReporting.PowerShell.dll-Help.xml Module Name: WindowsErrorReporting ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/windowserrorreporting/get-windowserrorreporting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowserrorreporting/get-windowserrorreporting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WindowsErrorReporting --- diff --git a/docset/winserver2019-ps/windowssearch/Get-WindowsSearchSetting.md b/docset/winserver2019-ps/windowssearch/Get-WindowsSearchSetting.md index 200cff167b..a81115154a 100644 --- a/docset/winserver2019-ps/windowssearch/Get-WindowsSearchSetting.md +++ b/docset/winserver2019-ps/windowssearch/Get-WindowsSearchSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.WindowsSearch.Commands.dll-Help.xml Module Name: WindowsSearch ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/windowssearch/get-windowssearchsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowssearch/get-windowssearchsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WindowsSearchSetting --- diff --git a/docset/winserver2019-ps/windowssearch/Set-WindowsSearchSetting.md b/docset/winserver2019-ps/windowssearch/Set-WindowsSearchSetting.md index 504473f0d1..37bf7ce3c9 100644 --- a/docset/winserver2019-ps/windowssearch/Set-WindowsSearchSetting.md +++ b/docset/winserver2019-ps/windowssearch/Set-WindowsSearchSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.WindowsSearch.Commands.dll-Help.xml Module Name: WindowsSearch ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/windowssearch/set-windowssearchsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowssearch/set-windowssearchsetting?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WindowsSearchSetting --- diff --git a/docset/winserver2019-ps/windowsserverbackup/Add-WBBackupTarget.md b/docset/winserver2019-ps/windowsserverbackup/Add-WBBackupTarget.md index 9a265805b3..ea6502b221 100644 --- a/docset/winserver2019-ps/windowsserverbackup/Add-WBBackupTarget.md +++ b/docset/winserver2019-ps/windowsserverbackup/Add-WBBackupTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/add-wbbackuptarget?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/add-wbbackuptarget?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WBBackupTarget --- diff --git a/docset/winserver2019-ps/windowsserverbackup/Add-WBBareMetalRecovery.md b/docset/winserver2019-ps/windowsserverbackup/Add-WBBareMetalRecovery.md index b2aaecce5e..26218cbe8e 100644 --- a/docset/winserver2019-ps/windowsserverbackup/Add-WBBareMetalRecovery.md +++ b/docset/winserver2019-ps/windowsserverbackup/Add-WBBareMetalRecovery.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/add-wbbaremetalrecovery?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/add-wbbaremetalrecovery?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WBBareMetalRecovery --- diff --git a/docset/winserver2019-ps/windowsserverbackup/Add-WBFileSpec.md b/docset/winserver2019-ps/windowsserverbackup/Add-WBFileSpec.md index 27f735a824..a943c02c5a 100644 --- a/docset/winserver2019-ps/windowsserverbackup/Add-WBFileSpec.md +++ b/docset/winserver2019-ps/windowsserverbackup/Add-WBFileSpec.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/add-wbfilespec?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/add-wbfilespec?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WBFileSpec --- diff --git a/docset/winserver2019-ps/windowsserverbackup/Add-WBSystemState.md b/docset/winserver2019-ps/windowsserverbackup/Add-WBSystemState.md index af8da0d557..9a602d894c 100644 --- a/docset/winserver2019-ps/windowsserverbackup/Add-WBSystemState.md +++ b/docset/winserver2019-ps/windowsserverbackup/Add-WBSystemState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/add-wbsystemstate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/add-wbsystemstate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WBSystemState --- diff --git a/docset/winserver2019-ps/windowsserverbackup/Add-WBVirtualMachine.md b/docset/winserver2019-ps/windowsserverbackup/Add-WBVirtualMachine.md index d2e14a5f59..db10608ef7 100644 --- a/docset/winserver2019-ps/windowsserverbackup/Add-WBVirtualMachine.md +++ b/docset/winserver2019-ps/windowsserverbackup/Add-WBVirtualMachine.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/add-wbvirtualmachine?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/add-wbvirtualmachine?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WBVirtualMachine --- diff --git a/docset/winserver2019-ps/windowsserverbackup/Add-WBVolume.md b/docset/winserver2019-ps/windowsserverbackup/Add-WBVolume.md index 74878a9936..f8dc1bcda2 100644 --- a/docset/winserver2019-ps/windowsserverbackup/Add-WBVolume.md +++ b/docset/winserver2019-ps/windowsserverbackup/Add-WBVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/add-wbvolume?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/add-wbvolume?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WBVolume --- diff --git a/docset/winserver2019-ps/windowsserverbackup/Get-WBBackupSet.md b/docset/winserver2019-ps/windowsserverbackup/Get-WBBackupSet.md index 92afce4b5b..f25edf508f 100644 --- a/docset/winserver2019-ps/windowsserverbackup/Get-WBBackupSet.md +++ b/docset/winserver2019-ps/windowsserverbackup/Get-WBBackupSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbbackupset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbbackupset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBBackupSet --- diff --git a/docset/winserver2019-ps/windowsserverbackup/Get-WBBackupTarget.md b/docset/winserver2019-ps/windowsserverbackup/Get-WBBackupTarget.md index d0549b9358..93cb51657d 100644 --- a/docset/winserver2019-ps/windowsserverbackup/Get-WBBackupTarget.md +++ b/docset/winserver2019-ps/windowsserverbackup/Get-WBBackupTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbbackuptarget?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbbackuptarget?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBBackupTarget --- diff --git a/docset/winserver2019-ps/windowsserverbackup/Get-WBBackupVolumeBrowsePath.md b/docset/winserver2019-ps/windowsserverbackup/Get-WBBackupVolumeBrowsePath.md index cbbaaa6738..a9e6d8f80b 100644 --- a/docset/winserver2019-ps/windowsserverbackup/Get-WBBackupVolumeBrowsePath.md +++ b/docset/winserver2019-ps/windowsserverbackup/Get-WBBackupVolumeBrowsePath.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbbackupvolumebrowsepath?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbbackupvolumebrowsepath?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBBackupVolumeBrowsePath --- diff --git a/docset/winserver2019-ps/windowsserverbackup/Get-WBBareMetalRecovery.md b/docset/winserver2019-ps/windowsserverbackup/Get-WBBareMetalRecovery.md index 79a5f1713e..3a0c2422a9 100644 --- a/docset/winserver2019-ps/windowsserverbackup/Get-WBBareMetalRecovery.md +++ b/docset/winserver2019-ps/windowsserverbackup/Get-WBBareMetalRecovery.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbbaremetalrecovery?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbbaremetalrecovery?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBBareMetalRecovery --- diff --git a/docset/winserver2019-ps/windowsserverbackup/Get-WBDisk.md b/docset/winserver2019-ps/windowsserverbackup/Get-WBDisk.md index 1b7bb992f9..19916d7c20 100644 --- a/docset/winserver2019-ps/windowsserverbackup/Get-WBDisk.md +++ b/docset/winserver2019-ps/windowsserverbackup/Get-WBDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbdisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbdisk?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBDisk --- diff --git a/docset/winserver2019-ps/windowsserverbackup/Get-WBFileSpec.md b/docset/winserver2019-ps/windowsserverbackup/Get-WBFileSpec.md index e212758f11..6c6a957df2 100644 --- a/docset/winserver2019-ps/windowsserverbackup/Get-WBFileSpec.md +++ b/docset/winserver2019-ps/windowsserverbackup/Get-WBFileSpec.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbfilespec?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbfilespec?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBFileSpec --- diff --git a/docset/winserver2019-ps/windowsserverbackup/Get-WBJob.md b/docset/winserver2019-ps/windowsserverbackup/Get-WBJob.md index 9bff47b831..dba5ae2f46 100644 --- a/docset/winserver2019-ps/windowsserverbackup/Get-WBJob.md +++ b/docset/winserver2019-ps/windowsserverbackup/Get-WBJob.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbjob?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbjob?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBJob --- diff --git a/docset/winserver2019-ps/windowsserverbackup/Get-WBPerformanceConfiguration.md b/docset/winserver2019-ps/windowsserverbackup/Get-WBPerformanceConfiguration.md index c3b285fbb1..61abfd6e06 100644 --- a/docset/winserver2019-ps/windowsserverbackup/Get-WBPerformanceConfiguration.md +++ b/docset/winserver2019-ps/windowsserverbackup/Get-WBPerformanceConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbperformanceconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbperformanceconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBPerformanceConfiguration --- diff --git a/docset/winserver2019-ps/windowsserverbackup/Get-WBPolicy.md b/docset/winserver2019-ps/windowsserverbackup/Get-WBPolicy.md index 972d136eed..0d2449f7e5 100644 --- a/docset/winserver2019-ps/windowsserverbackup/Get-WBPolicy.md +++ b/docset/winserver2019-ps/windowsserverbackup/Get-WBPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBPolicy --- diff --git a/docset/winserver2019-ps/windowsserverbackup/Get-WBSchedule.md b/docset/winserver2019-ps/windowsserverbackup/Get-WBSchedule.md index df97f41c1d..41a9b6fcb9 100644 --- a/docset/winserver2019-ps/windowsserverbackup/Get-WBSchedule.md +++ b/docset/winserver2019-ps/windowsserverbackup/Get-WBSchedule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbschedule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbschedule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBSchedule --- diff --git a/docset/winserver2019-ps/windowsserverbackup/Get-WBSummary.md b/docset/winserver2019-ps/windowsserverbackup/Get-WBSummary.md index 41ab8c3502..1fd81d7dc8 100644 --- a/docset/winserver2019-ps/windowsserverbackup/Get-WBSummary.md +++ b/docset/winserver2019-ps/windowsserverbackup/Get-WBSummary.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbsummary?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbsummary?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBSummary --- diff --git a/docset/winserver2019-ps/windowsserverbackup/Get-WBSystemState.md b/docset/winserver2019-ps/windowsserverbackup/Get-WBSystemState.md index 4e6ea7a586..45c08ccfa9 100644 --- a/docset/winserver2019-ps/windowsserverbackup/Get-WBSystemState.md +++ b/docset/winserver2019-ps/windowsserverbackup/Get-WBSystemState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbsystemstate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbsystemstate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBSystemState --- diff --git a/docset/winserver2019-ps/windowsserverbackup/Get-WBVirtualMachine.md b/docset/winserver2019-ps/windowsserverbackup/Get-WBVirtualMachine.md index a877aacf17..b8324127fb 100644 --- a/docset/winserver2019-ps/windowsserverbackup/Get-WBVirtualMachine.md +++ b/docset/winserver2019-ps/windowsserverbackup/Get-WBVirtualMachine.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbvirtualmachine?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbvirtualmachine?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBVirtualMachine --- diff --git a/docset/winserver2019-ps/windowsserverbackup/Get-WBVolume.md b/docset/winserver2019-ps/windowsserverbackup/Get-WBVolume.md index 6fd40625bf..991a7b1a9d 100644 --- a/docset/winserver2019-ps/windowsserverbackup/Get-WBVolume.md +++ b/docset/winserver2019-ps/windowsserverbackup/Get-WBVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbvolume?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbvolume?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBVolume --- diff --git a/docset/winserver2019-ps/windowsserverbackup/Get-WBVssBackupOption.md b/docset/winserver2019-ps/windowsserverbackup/Get-WBVssBackupOption.md index 652a856f95..e93f082ca2 100644 --- a/docset/winserver2019-ps/windowsserverbackup/Get-WBVssBackupOption.md +++ b/docset/winserver2019-ps/windowsserverbackup/Get-WBVssBackupOption.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbvssbackupoption?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbvssbackupoption?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBVssBackupOption --- diff --git a/docset/winserver2019-ps/windowsserverbackup/New-WBBackupTarget.md b/docset/winserver2019-ps/windowsserverbackup/New-WBBackupTarget.md index 037efea6c6..67c9e42285 100644 --- a/docset/winserver2019-ps/windowsserverbackup/New-WBBackupTarget.md +++ b/docset/winserver2019-ps/windowsserverbackup/New-WBBackupTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/new-wbbackuptarget?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/new-wbbackuptarget?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WBBackupTarget --- diff --git a/docset/winserver2019-ps/windowsserverbackup/New-WBFileSpec.md b/docset/winserver2019-ps/windowsserverbackup/New-WBFileSpec.md index 02bbfb045d..274beccf22 100644 --- a/docset/winserver2019-ps/windowsserverbackup/New-WBFileSpec.md +++ b/docset/winserver2019-ps/windowsserverbackup/New-WBFileSpec.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/new-wbfilespec?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/new-wbfilespec?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WBFileSpec --- diff --git a/docset/winserver2019-ps/windowsserverbackup/New-WBPolicy.md b/docset/winserver2019-ps/windowsserverbackup/New-WBPolicy.md index 3c6c46aecb..a941b4b6e3 100644 --- a/docset/winserver2019-ps/windowsserverbackup/New-WBPolicy.md +++ b/docset/winserver2019-ps/windowsserverbackup/New-WBPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/new-wbpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/new-wbpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WBPolicy --- diff --git a/docset/winserver2019-ps/windowsserverbackup/Remove-WBBackupSet.md b/docset/winserver2019-ps/windowsserverbackup/Remove-WBBackupSet.md index 5a7a890804..89b40cfaf2 100644 --- a/docset/winserver2019-ps/windowsserverbackup/Remove-WBBackupSet.md +++ b/docset/winserver2019-ps/windowsserverbackup/Remove-WBBackupSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/remove-wbbackupset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/remove-wbbackupset?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WBBackupSet --- diff --git a/docset/winserver2019-ps/windowsserverbackup/Remove-WBBackupTarget.md b/docset/winserver2019-ps/windowsserverbackup/Remove-WBBackupTarget.md index 7b4e141c3f..3def16bd59 100644 --- a/docset/winserver2019-ps/windowsserverbackup/Remove-WBBackupTarget.md +++ b/docset/winserver2019-ps/windowsserverbackup/Remove-WBBackupTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/remove-wbbackuptarget?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/remove-wbbackuptarget?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WBBackupTarget --- diff --git a/docset/winserver2019-ps/windowsserverbackup/Remove-WBBareMetalRecovery.md b/docset/winserver2019-ps/windowsserverbackup/Remove-WBBareMetalRecovery.md index a538578fda..7732f8843d 100644 --- a/docset/winserver2019-ps/windowsserverbackup/Remove-WBBareMetalRecovery.md +++ b/docset/winserver2019-ps/windowsserverbackup/Remove-WBBareMetalRecovery.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/remove-wbbaremetalrecovery?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/remove-wbbaremetalrecovery?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WBBareMetalRecovery --- diff --git a/docset/winserver2019-ps/windowsserverbackup/Remove-WBCatalog.md b/docset/winserver2019-ps/windowsserverbackup/Remove-WBCatalog.md index bc5ad924e8..e42040364b 100644 --- a/docset/winserver2019-ps/windowsserverbackup/Remove-WBCatalog.md +++ b/docset/winserver2019-ps/windowsserverbackup/Remove-WBCatalog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/remove-wbcatalog?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/remove-wbcatalog?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WBCatalog --- diff --git a/docset/winserver2019-ps/windowsserverbackup/Remove-WBFileSpec.md b/docset/winserver2019-ps/windowsserverbackup/Remove-WBFileSpec.md index 6fc894cab8..3492d4e330 100644 --- a/docset/winserver2019-ps/windowsserverbackup/Remove-WBFileSpec.md +++ b/docset/winserver2019-ps/windowsserverbackup/Remove-WBFileSpec.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/remove-wbfilespec?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/remove-wbfilespec?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WBFileSpec --- diff --git a/docset/winserver2019-ps/windowsserverbackup/Remove-WBPolicy.md b/docset/winserver2019-ps/windowsserverbackup/Remove-WBPolicy.md index fe6b87f4ea..756d06bd9a 100644 --- a/docset/winserver2019-ps/windowsserverbackup/Remove-WBPolicy.md +++ b/docset/winserver2019-ps/windowsserverbackup/Remove-WBPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/remove-wbpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/remove-wbpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WBPolicy --- diff --git a/docset/winserver2019-ps/windowsserverbackup/Remove-WBSystemState.md b/docset/winserver2019-ps/windowsserverbackup/Remove-WBSystemState.md index 65db07a8e2..e692287e26 100644 --- a/docset/winserver2019-ps/windowsserverbackup/Remove-WBSystemState.md +++ b/docset/winserver2019-ps/windowsserverbackup/Remove-WBSystemState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/remove-wbsystemstate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/remove-wbsystemstate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WBSystemState --- diff --git a/docset/winserver2019-ps/windowsserverbackup/Remove-WBVirtualMachine.md b/docset/winserver2019-ps/windowsserverbackup/Remove-WBVirtualMachine.md index baea35e555..d5a3229958 100644 --- a/docset/winserver2019-ps/windowsserverbackup/Remove-WBVirtualMachine.md +++ b/docset/winserver2019-ps/windowsserverbackup/Remove-WBVirtualMachine.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/remove-wbvirtualmachine?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/remove-wbvirtualmachine?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WBVirtualMachine --- diff --git a/docset/winserver2019-ps/windowsserverbackup/Remove-WBVolume.md b/docset/winserver2019-ps/windowsserverbackup/Remove-WBVolume.md index 6086ceef74..3d8675d004 100644 --- a/docset/winserver2019-ps/windowsserverbackup/Remove-WBVolume.md +++ b/docset/winserver2019-ps/windowsserverbackup/Remove-WBVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/remove-wbvolume?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/remove-wbvolume?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WBVolume --- diff --git a/docset/winserver2019-ps/windowsserverbackup/Restore-WBCatalog.md b/docset/winserver2019-ps/windowsserverbackup/Restore-WBCatalog.md index 740f517fca..0a990accb7 100644 --- a/docset/winserver2019-ps/windowsserverbackup/Restore-WBCatalog.md +++ b/docset/winserver2019-ps/windowsserverbackup/Restore-WBCatalog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/restore-wbcatalog?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/restore-wbcatalog?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-WBCatalog --- diff --git a/docset/winserver2019-ps/windowsserverbackup/Resume-WBBackup.md b/docset/winserver2019-ps/windowsserverbackup/Resume-WBBackup.md index 0b9fb3a5f0..4e0018eee4 100644 --- a/docset/winserver2019-ps/windowsserverbackup/Resume-WBBackup.md +++ b/docset/winserver2019-ps/windowsserverbackup/Resume-WBBackup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/resume-wbbackup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/resume-wbbackup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-WBBackup --- diff --git a/docset/winserver2019-ps/windowsserverbackup/Resume-WBVolumeRecovery.md b/docset/winserver2019-ps/windowsserverbackup/Resume-WBVolumeRecovery.md index 32d391418b..4e8936e474 100644 --- a/docset/winserver2019-ps/windowsserverbackup/Resume-WBVolumeRecovery.md +++ b/docset/winserver2019-ps/windowsserverbackup/Resume-WBVolumeRecovery.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/resume-wbvolumerecovery?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/resume-wbvolumerecovery?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-WBVolumeRecovery --- diff --git a/docset/winserver2019-ps/windowsserverbackup/Set-WBPerformanceConfiguration.md b/docset/winserver2019-ps/windowsserverbackup/Set-WBPerformanceConfiguration.md index 4bbb82e62c..5b79e3af26 100644 --- a/docset/winserver2019-ps/windowsserverbackup/Set-WBPerformanceConfiguration.md +++ b/docset/winserver2019-ps/windowsserverbackup/Set-WBPerformanceConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/set-wbperformanceconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/set-wbperformanceconfiguration?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WBPerformanceConfiguration --- diff --git a/docset/winserver2019-ps/windowsserverbackup/Set-WBPolicy.md b/docset/winserver2019-ps/windowsserverbackup/Set-WBPolicy.md index c6abe2f71a..2a98b7ca85 100644 --- a/docset/winserver2019-ps/windowsserverbackup/Set-WBPolicy.md +++ b/docset/winserver2019-ps/windowsserverbackup/Set-WBPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/set-wbpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/set-wbpolicy?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WBPolicy --- diff --git a/docset/winserver2019-ps/windowsserverbackup/Set-WBSchedule.md b/docset/winserver2019-ps/windowsserverbackup/Set-WBSchedule.md index 512c007656..2829fd8637 100644 --- a/docset/winserver2019-ps/windowsserverbackup/Set-WBSchedule.md +++ b/docset/winserver2019-ps/windowsserverbackup/Set-WBSchedule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/set-wbschedule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/set-wbschedule?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WBSchedule --- diff --git a/docset/winserver2019-ps/windowsserverbackup/Set-WBVssBackupOption.md b/docset/winserver2019-ps/windowsserverbackup/Set-WBVssBackupOption.md index d15b81519e..8474573246 100644 --- a/docset/winserver2019-ps/windowsserverbackup/Set-WBVssBackupOption.md +++ b/docset/winserver2019-ps/windowsserverbackup/Set-WBVssBackupOption.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/set-wbvssbackupoption?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/set-wbvssbackupoption?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WBVssBackupOption --- diff --git a/docset/winserver2019-ps/windowsserverbackup/Start-WBApplicationRecovery.md b/docset/winserver2019-ps/windowsserverbackup/Start-WBApplicationRecovery.md index 3fcb3fd415..ae6ed9c395 100644 --- a/docset/winserver2019-ps/windowsserverbackup/Start-WBApplicationRecovery.md +++ b/docset/winserver2019-ps/windowsserverbackup/Start-WBApplicationRecovery.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/start-wbapplicationrecovery?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/start-wbapplicationrecovery?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-WBApplicationRecovery --- diff --git a/docset/winserver2019-ps/windowsserverbackup/Start-WBBackup.md b/docset/winserver2019-ps/windowsserverbackup/Start-WBBackup.md index 1519c1ca98..1b4d94ae6a 100644 --- a/docset/winserver2019-ps/windowsserverbackup/Start-WBBackup.md +++ b/docset/winserver2019-ps/windowsserverbackup/Start-WBBackup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/start-wbbackup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/start-wbbackup?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-WBBackup --- diff --git a/docset/winserver2019-ps/windowsserverbackup/Start-WBFileRecovery.md b/docset/winserver2019-ps/windowsserverbackup/Start-WBFileRecovery.md index 2cb1fd4a70..41656530af 100644 --- a/docset/winserver2019-ps/windowsserverbackup/Start-WBFileRecovery.md +++ b/docset/winserver2019-ps/windowsserverbackup/Start-WBFileRecovery.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/start-wbfilerecovery?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/start-wbfilerecovery?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-WBFileRecovery --- diff --git a/docset/winserver2019-ps/windowsserverbackup/Start-WBHyperVRecovery.md b/docset/winserver2019-ps/windowsserverbackup/Start-WBHyperVRecovery.md index 3fa693322e..541e9b4626 100644 --- a/docset/winserver2019-ps/windowsserverbackup/Start-WBHyperVRecovery.md +++ b/docset/winserver2019-ps/windowsserverbackup/Start-WBHyperVRecovery.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/start-wbhypervrecovery?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/start-wbhypervrecovery?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-WBHyperVRecovery --- diff --git a/docset/winserver2019-ps/windowsserverbackup/Start-WBSystemStateRecovery.md b/docset/winserver2019-ps/windowsserverbackup/Start-WBSystemStateRecovery.md index ff448a90fb..021aecf281 100644 --- a/docset/winserver2019-ps/windowsserverbackup/Start-WBSystemStateRecovery.md +++ b/docset/winserver2019-ps/windowsserverbackup/Start-WBSystemStateRecovery.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/start-wbsystemstaterecovery?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/start-wbsystemstaterecovery?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-WBSystemStateRecovery --- diff --git a/docset/winserver2019-ps/windowsserverbackup/Start-WBVolumeRecovery.md b/docset/winserver2019-ps/windowsserverbackup/Start-WBVolumeRecovery.md index c297850554..b33d37fbe6 100644 --- a/docset/winserver2019-ps/windowsserverbackup/Start-WBVolumeRecovery.md +++ b/docset/winserver2019-ps/windowsserverbackup/Start-WBVolumeRecovery.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/start-wbvolumerecovery?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/start-wbvolumerecovery?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-WBVolumeRecovery --- diff --git a/docset/winserver2019-ps/windowsserverbackup/Stop-WBJob.md b/docset/winserver2019-ps/windowsserverbackup/Stop-WBJob.md index 3e274f16b4..67b52b1c99 100644 --- a/docset/winserver2019-ps/windowsserverbackup/Stop-WBJob.md +++ b/docset/winserver2019-ps/windowsserverbackup/Stop-WBJob.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/stop-wbjob?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/stop-wbjob?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-WBJob --- diff --git a/docset/winserver2019-ps/windowsupdate/Get-WindowsUpdateLog.md b/docset/winserver2019-ps/windowsupdate/Get-WindowsUpdateLog.md index 5d29ff487c..4fd192bc4b 100644 --- a/docset/winserver2019-ps/windowsupdate/Get-WindowsUpdateLog.md +++ b/docset/winserver2019-ps/windowsupdate/Get-WindowsUpdateLog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: WindowsUpdateLog-help.xml Module Name: WindowsUpdate ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/windowsupdate/get-windowsupdatelog?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsupdate/get-windowsupdatelog?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WindowsUpdateLog --- From 4d6ed57c52e3e33fde29d2b2a8dcea00dd57e3ce Mon Sep 17 00:00:00 2001 From: Sean Wheeler Date: Tue, 20 Sep 2022 13:17:04 -0500 Subject: [PATCH 248/965] Update URLs for site rebrand --- README.md | 25 +++++++++++++------ .../Disable-DiagnosticDataViewing.md | 2 +- .../Enable-DiagnosticDataViewing.md | 2 +- .../Get-DiagnosticData.md | 2 +- .../Get-DiagnosticDataTypes.md | 2 +- .../Get-DiagnosticDataViewingSetting.md | 2 +- .../Get-DiagnosticStoreCapacity.md | 2 +- .../Set-DiagnosticStoreCapacity.md | 2 +- ...sable-ServerManagerStandardUserRemoting.md | 2 +- ...nable-ServerManagerStandardUserRemoting.md | 2 +- .../Export-SmigServerSetting.md | 2 +- .../Get-SmigServerFeature.md | 2 +- .../Get-WindowsFeature.md | 2 +- .../Import-SmigServerSetting.md | 2 +- .../Install-WindowsFeature.md | 2 +- .../Receive-SmigServerData.md | 2 +- .../Send-SmigServerData.md | 2 +- .../ServerManager.md | 2 +- .../Uninstall-WindowsFeature.md | 2 +- ...sable-ServerManagerStandardUserRemoting.md | 2 +- ...nable-ServerManagerStandardUserRemoting.md | 2 +- .../ServerManager/Get-WindowsFeature.md | 2 +- .../ServerManager/Install-WindowsFeature.md | 2 +- .../ServerManager/ServerManager.md | 4 +-- .../ServerManager/Uninstall-WindowsFeature.md | 2 +- .../Add-ADCentralAccessPolicyMember.md | 2 +- .../Add-ADComputerServiceAccount.md | 2 +- ...mainControllerPasswordReplicationPolicy.md | 2 +- .../Add-ADFineGrainedPasswordPolicySubject.md | 2 +- .../activedirectory/Add-ADGroupMember.md | 2 +- .../Add-ADPrincipalGroupMembership.md | 2 +- .../Add-ADResourcePropertyListMember.md | 2 +- .../Clear-ADAccountExpiration.md | 2 +- .../Clear-ADClaimTransformLink.md | 2 +- .../activedirectory/Disable-ADAccount.md | 2 +- .../Disable-ADOptionalFeature.md | 2 +- .../activedirectory/Enable-ADAccount.md | 2 +- .../Enable-ADOptionalFeature.md | 2 +- .../Get-ADAccountAuthorizationGroup.md | 2 +- ...countResultantPasswordReplicationPolicy.md | 2 +- .../Get-ADAuthenticationPolicy.md | 2 +- .../Get-ADAuthenticationPolicySilo.md | 2 +- .../Get-ADCentralAccessPolicy.md | 2 +- .../Get-ADCentralAccessRule.md | 2 +- .../Get-ADClaimTransformPolicy.md | 2 +- .../activedirectory/Get-ADClaimType.md | 2 +- .../activedirectory/Get-ADComputer.md | 2 +- .../Get-ADComputerServiceAccount.md | 2 +- .../Get-ADDCCloningExcludedApplicationList.md | 2 +- .../Get-ADDefaultDomainPasswordPolicy.md | 2 +- .../activedirectory/Get-ADDomain.md | 2 +- .../activedirectory/Get-ADDomainController.md | 2 +- ...mainControllerPasswordReplicationPolicy.md | 2 +- ...ontrollerPasswordReplicationPolicyUsage.md | 2 +- .../Get-ADFineGrainedPasswordPolicy.md | 2 +- .../Get-ADFineGrainedPasswordPolicySubject.md | 2 +- .../activedirectory/Get-ADForest.md | 2 +- .../activedirectory/Get-ADGroup.md | 2 +- .../activedirectory/Get-ADGroupMember.md | 2 +- .../activedirectory/Get-ADObject.md | 2 +- .../activedirectory/Get-ADOptionalFeature.md | 2 +- .../Get-ADOrganizationalUnit.md | 2 +- .../Get-ADPrincipalGroupMembership.md | 2 +- .../Get-ADReplicationAttributeMetadata.md | 2 +- .../Get-ADReplicationConnection.md | 2 +- .../Get-ADReplicationFailure.md | 2 +- .../Get-ADReplicationPartnerMetadata.md | 2 +- .../Get-ADReplicationQueueOperation.md | 2 +- .../activedirectory/Get-ADReplicationSite.md | 2 +- .../Get-ADReplicationSiteLink.md | 2 +- .../Get-ADReplicationSiteLinkBridge.md | 2 +- .../Get-ADReplicationSubnet.md | 2 +- ...et-ADReplicationUpToDatenessVectorTable.md | 2 +- .../activedirectory/Get-ADResourceProperty.md | 2 +- .../Get-ADResourcePropertyList.md | 2 +- .../Get-ADResourcePropertyValueType.md | 2 +- .../activedirectory/Get-ADRootDSE.md | 2 +- .../activedirectory/Get-ADServiceAccount.md | 2 +- .../activedirectory/Get-ADTrust.md | 2 +- .../activedirectory/Get-ADUser.md | 2 +- .../Get-ADUserResultantPasswordPolicy.md | 2 +- .../Grant-ADAuthenticationPolicySiloAccess.md | 2 +- .../Install-ADServiceAccount.md | 2 +- .../activedirectory/Move-ADDirectoryServer.md | 2 +- ...ve-ADDirectoryServerOperationMasterRole.md | 2 +- .../activedirectory/Move-ADObject.md | 2 +- .../New-ADAuthenticationPolicy.md | 2 +- .../New-ADAuthenticationPolicySilo.md | 2 +- .../New-ADCentralAccessPolicy.md | 2 +- .../New-ADCentralAccessRule.md | 2 +- .../New-ADClaimTransformPolicy.md | 2 +- .../activedirectory/New-ADClaimType.md | 2 +- .../activedirectory/New-ADComputer.md | 2 +- .../New-ADDCCloneConfigFile.md | 2 +- .../New-ADFineGrainedPasswordPolicy.md | 2 +- .../activedirectory/New-ADGroup.md | 2 +- .../activedirectory/New-ADObject.md | 2 +- .../New-ADOrganizationalUnit.md | 2 +- .../activedirectory/New-ADReplicationSite.md | 2 +- .../New-ADReplicationSiteLink.md | 2 +- .../New-ADReplicationSiteLinkBridge.md | 2 +- .../New-ADReplicationSubnet.md | 2 +- .../activedirectory/New-ADResourceProperty.md | 2 +- .../New-ADResourcePropertyList.md | 2 +- .../activedirectory/New-ADServiceAccount.md | 2 +- .../activedirectory/New-ADUser.md | 2 +- .../Remove-ADAuthenticationPolicy.md | 2 +- .../Remove-ADAuthenticationPolicySilo.md | 2 +- .../Remove-ADCentralAccessPolicy.md | 2 +- .../Remove-ADCentralAccessPolicyMember.md | 2 +- .../Remove-ADCentralAccessRule.md | 2 +- .../Remove-ADClaimTransformPolicy.md | 2 +- .../activedirectory/Remove-ADClaimType.md | 2 +- .../activedirectory/Remove-ADComputer.md | 2 +- .../Remove-ADComputerServiceAccount.md | 2 +- ...mainControllerPasswordReplicationPolicy.md | 2 +- .../Remove-ADFineGrainedPasswordPolicy.md | 2 +- ...move-ADFineGrainedPasswordPolicySubject.md | 2 +- .../activedirectory/Remove-ADGroup.md | 2 +- .../activedirectory/Remove-ADGroupMember.md | 2 +- .../activedirectory/Remove-ADObject.md | 2 +- .../Remove-ADOrganizationalUnit.md | 2 +- .../Remove-ADPrincipalGroupMembership.md | 2 +- .../Remove-ADReplicationSite.md | 2 +- .../Remove-ADReplicationSiteLink.md | 2 +- .../Remove-ADReplicationSiteLinkBridge.md | 2 +- .../Remove-ADReplicationSubnet.md | 2 +- .../Remove-ADResourceProperty.md | 2 +- .../Remove-ADResourcePropertyList.md | 2 +- .../Remove-ADResourcePropertyListMember.md | 2 +- .../Remove-ADServiceAccount.md | 2 +- .../activedirectory/Remove-ADUser.md | 2 +- .../activedirectory/Rename-ADObject.md | 2 +- .../Reset-ADServiceAccountPassword.md | 2 +- .../activedirectory/Restore-ADObject.md | 2 +- ...Revoke-ADAuthenticationPolicySiloAccess.md | 2 +- .../activedirectory/Search-ADAccount.md | 2 +- .../Set-ADAccountAuthenticationPolicySilo.md | 2 +- .../activedirectory/Set-ADAccountControl.md | 2 +- .../Set-ADAccountExpiration.md | 2 +- .../activedirectory/Set-ADAccountPassword.md | 2 +- .../Set-ADAuthenticationPolicy.md | 2 +- .../Set-ADAuthenticationPolicySilo.md | 2 +- .../Set-ADCentralAccessPolicy.md | 2 +- .../Set-ADCentralAccessRule.md | 2 +- .../Set-ADClaimTransformLink.md | 2 +- .../Set-ADClaimTransformPolicy.md | 2 +- .../activedirectory/Set-ADClaimType.md | 2 +- .../activedirectory/Set-ADComputer.md | 2 +- .../Set-ADDefaultDomainPasswordPolicy.md | 2 +- .../activedirectory/Set-ADDomain.md | 2 +- .../activedirectory/Set-ADDomainMode.md | 2 +- .../Set-ADFineGrainedPasswordPolicy.md | 2 +- .../activedirectory/Set-ADForest.md | 2 +- .../activedirectory/Set-ADForestMode.md | 2 +- .../activedirectory/Set-ADGroup.md | 2 +- .../activedirectory/Set-ADObject.md | 2 +- .../Set-ADOrganizationalUnit.md | 2 +- .../Set-ADReplicationConnection.md | 2 +- .../activedirectory/Set-ADReplicationSite.md | 2 +- .../Set-ADReplicationSiteLink.md | 2 +- .../Set-ADReplicationSiteLinkBridge.md | 2 +- .../Set-ADReplicationSubnet.md | 2 +- .../activedirectory/Set-ADResourceProperty.md | 2 +- .../Set-ADResourcePropertyList.md | 2 +- .../activedirectory/Set-ADServiceAccount.md | 2 +- .../activedirectory/Set-ADUser.md | 2 +- .../Show-ADAuthenticationPolicyExpression.md | 2 +- .../activedirectory/Sync-ADObject.md | 2 +- .../activedirectory/Test-ADServiceAccount.md | 2 +- .../Uninstall-ADServiceAccount.md | 2 +- .../activedirectory/Unlock-ADAccount.md | 2 +- .../Add-CAAuthorityInformationAccess.md | 2 +- .../Add-CACrlDistributionPoint.md | 2 +- .../adcsadministration/Add-CATemplate.md | 2 +- .../Backup-CARoleService.md | 2 +- .../Confirm-CAAttestationIdentityKeyInfo.md | 2 +- .../Confirm-CAEndorsementKeyInfo.md | 2 +- .../Get-CAAuthorityInformationAccess.md | 2 +- .../Get-CACrlDistributionPoint.md | 2 +- .../adcsadministration/Get-CATemplate.md | 2 +- .../Remove-CAAuthorityInformationAccess.md | 2 +- .../Remove-CACrlDistributionPoint.md | 2 +- .../adcsadministration/Remove-CATemplate.md | 2 +- .../Restore-CARoleService.md | 2 +- .../Install-AdcsCertificationAuthority.md | 2 +- .../Install-AdcsEnrollmentPolicyWebService.md | 2 +- .../Install-AdcsEnrollmentWebService.md | 2 +- ...tall-AdcsNetworkDeviceEnrollmentService.md | 2 +- .../Install-AdcsOnlineResponder.md | 2 +- .../Install-AdcsWebEnrollment.md | 2 +- .../Uninstall-AdcsCertificationAuthority.md | 2 +- ...ninstall-AdcsEnrollmentPolicyWebService.md | 2 +- .../Uninstall-AdcsEnrollmentWebService.md | 2 +- ...tall-AdcsNetworkDeviceEnrollmentService.md | 2 +- .../Uninstall-AdcsOnlineResponder.md | 2 +- .../Uninstall-AdcsWebEnrollment.md | 2 +- ...Add-ADDSReadOnlyDomainControllerAccount.md | 2 +- .../addsdeployment/Install-ADDSDomain.md | 2 +- .../Install-ADDSDomainController.md | 2 +- .../addsdeployment/Install-ADDSForest.md | 2 +- .../Test-ADDSDomainControllerInstallation.md | 2 +- ...Test-ADDSDomainControllerUninstallation.md | 2 +- .../Test-ADDSDomainInstallation.md | 2 +- .../Test-ADDSForestInstallation.md | 2 +- ...ReadOnlyDomainControllerAccountCreation.md | 2 +- .../Uninstall-ADDSDomainController.md | 2 +- .../adfs/Add-AdfsAttributeStore.md | 2 +- .../adfs/Add-AdfsCertificate.md | 2 +- .../adfs/Add-AdfsClaimDescription.md | 2 +- .../adfs/Add-AdfsClaimsProviderTrust.md | 2 +- .../adfs/Add-AdfsClaimsProviderTrustsGroup.md | 2 +- .../winserver2022-ps/adfs/Add-AdfsClient.md | 2 +- .../Add-AdfsDeviceRegistrationUpnSuffix.md | 2 +- .../winserver2022-ps/adfs/Add-AdfsFarmNode.md | 2 +- .../adfs/Add-AdfsLocalClaimsProviderTrust.md | 2 +- .../adfs/Add-AdfsNativeClientApplication.md | 2 +- ...Add-AdfsNonClaimsAwareRelyingPartyTrust.md | 2 +- .../adfs/Add-AdfsRelyingPartyTrust.md | 2 +- .../adfs/Add-AdfsRelyingPartyTrustsGroup.md | 2 +- .../adfs/Add-AdfsScopeDescription.md | 2 +- .../adfs/Add-AdfsServerApplication.md | 2 +- .../adfs/Add-AdfsTrustedFederationPartner.md | 2 +- .../adfs/Add-AdfsWebApiApplication.md | 2 +- ...dfsWebApplicationProxyRelyingPartyTrust.md | 2 +- .../adfs/Disable-AdfsApplicationGroup.md | 2 +- .../adfs/Disable-AdfsCertificateAuthority.md | 2 +- .../adfs/Disable-AdfsClaimsProviderTrust.md | 2 +- .../adfs/Disable-AdfsClient.md | 2 +- .../adfs/Disable-AdfsDeviceRegistration.md | 2 +- .../adfs/Disable-AdfsEndpoint.md | 2 +- .../Disable-AdfsLocalClaimsProviderTrust.md | 2 +- ...ble-AdfsNonClaimsAwareRelyingPartyTrust.md | 2 +- .../adfs/Disable-AdfsRelyingPartyTrust.md | 2 +- ...dfsWebApplicationProxyRelyingPartyTrust.md | 2 +- .../adfs/Enable-AdfsApplicationGroup.md | 2 +- .../adfs/Enable-AdfsClaimsProviderTrust.md | 2 +- .../adfs/Enable-AdfsClient.md | 2 +- .../adfs/Enable-AdfsDeviceRegistration.md | 2 +- .../adfs/Enable-AdfsEndpoint.md | 2 +- .../Enable-AdfsLocalClaimsProviderTrust.md | 2 +- ...ble-AdfsNonClaimsAwareRelyingPartyTrust.md | 2 +- .../adfs/Enable-AdfsRelyingPartyTrust.md | 2 +- ...dfsWebApplicationProxyRelyingPartyTrust.md | 2 +- ...AuthenticationProviderConfigurationData.md | 2 +- .../adfs/Export-AdfsDeploymentSQLScript.md | 2 +- .../adfs/Export-AdfsWebContent.md | 2 +- .../adfs/Export-AdfsWebTheme.md | 2 +- .../adfs/Get-AdfsAccessControlPolicy.md | 2 +- .../Get-AdfsAdditionalAuthenticationRule.md | 2 +- .../adfs/Get-AdfsApplicationGroup.md | 2 +- .../adfs/Get-AdfsApplicationPermission.md | 2 +- .../adfs/Get-AdfsAttributeStore.md | 2 +- .../adfs/Get-AdfsAuthenticationProvider.md | 2 +- ...et-AdfsAuthenticationProviderWebContent.md | 2 +- .../adfs/Get-AdfsAzureMfaConfigured.md | 2 +- .../adfs/Get-AdfsCertificate.md | 2 +- .../adfs/Get-AdfsCertificateAuthority.md | 2 +- .../adfs/Get-AdfsClaimDescription.md | 2 +- .../adfs/Get-AdfsClaimsProviderTrust.md | 2 +- .../adfs/Get-AdfsClaimsProviderTrustsGroup.md | 2 +- .../winserver2022-ps/adfs/Get-AdfsClient.md | 2 +- .../adfs/Get-AdfsDeviceRegistration.md | 2 +- .../Get-AdfsDeviceRegistrationUpnSuffix.md | 2 +- .../winserver2022-ps/adfs/Get-AdfsEndpoint.md | 2 +- .../adfs/Get-AdfsFarmInformation.md | 2 +- .../Get-AdfsGlobalAuthenticationPolicy.md | 2 +- .../adfs/Get-AdfsGlobalWebContent.md | 2 +- .../adfs/Get-AdfsLocalClaimsProviderTrust.md | 2 +- .../adfs/Get-AdfsNativeClientApplication.md | 2 +- ...Get-AdfsNonClaimsAwareRelyingPartyTrust.md | 2 +- .../adfs/Get-AdfsProperties.md | 2 +- .../adfs/Get-AdfsRegistrationHosts.md | 2 +- .../adfs/Get-AdfsRelyingPartyTrust.md | 2 +- .../adfs/Get-AdfsRelyingPartyTrustsGroup.md | 2 +- .../adfs/Get-AdfsRelyingPartyWebContent.md | 2 +- .../adfs/Get-AdfsRelyingPartyWebTheme.md | 2 +- .../adfs/Get-AdfsScopeDescription.md | 2 +- .../adfs/Get-AdfsServerApplication.md | 2 +- .../adfs/Get-AdfsSslCertificate.md | 2 +- .../adfs/Get-AdfsSyncProperties.md | 2 +- .../adfs/Get-AdfsTrustedFederationPartner.md | 2 +- .../adfs/Get-AdfsWebApiApplication.md | 2 +- ...dfsWebApplicationProxyRelyingPartyTrust.md | 2 +- .../adfs/Get-AdfsWebConfig.md | 2 +- .../winserver2022-ps/adfs/Get-AdfsWebTheme.md | 2 +- .../adfs/Grant-AdfsApplicationPermission.md | 2 +- ...AuthenticationProviderConfigurationData.md | 2 +- .../adfs/Import-AdfsWebContent.md | 2 +- .../adfs/Initialize-ADDeviceRegistration.md | 2 +- .../winserver2022-ps/adfs/Install-AdfsFarm.md | 2 +- .../adfs/Invoke-AdfsFarmBehaviorLevelRaise.md | 2 +- .../adfs/New-AdfsAccessControlPolicy.md | 2 +- .../adfs/New-AdfsApplicationGroup.md | 2 +- .../adfs/New-AdfsAzureMfaTenantCertificate.md | 2 +- .../adfs/New-AdfsClaimRuleSet.md | 2 +- .../adfs/New-AdfsContactPerson.md | 2 +- .../New-AdfsLdapAttributeToClaimMapping.md | 2 +- .../adfs/New-AdfsLdapServerConnection.md | 2 +- .../adfs/New-AdfsOrganization.md | 2 +- .../adfs/New-AdfsSamlEndpoint.md | 2 +- .../winserver2022-ps/adfs/New-AdfsWebTheme.md | 2 +- .../adfs/Publish-SslCertificate.md | 2 +- .../Register-AdfsAuthenticationProvider.md | 2 +- .../adfs/Remove-AdfsAccessControlPolicy.md | 2 +- .../adfs/Remove-AdfsApplicationGroup.md | 2 +- .../adfs/Remove-AdfsAttributeStore.md | 2 +- ...ve-AdfsAuthenticationProviderWebContent.md | 2 +- .../adfs/Remove-AdfsCertificate.md | 2 +- .../adfs/Remove-AdfsClaimDescription.md | 2 +- .../adfs/Remove-AdfsClaimsProviderTrust.md | 2 +- .../Remove-AdfsClaimsProviderTrustsGroup.md | 2 +- .../adfs/Remove-AdfsClient.md | 2 +- .../Remove-AdfsDeviceRegistrationUpnSuffix.md | 2 +- .../adfs/Remove-AdfsFarmNode.md | 2 +- .../adfs/Remove-AdfsGlobalWebContent.md | 2 +- .../Remove-AdfsLocalClaimsProviderTrust.md | 2 +- .../Remove-AdfsNativeClientApplication.md | 2 +- ...ove-AdfsNonClaimsAwareRelyingPartyTrust.md | 2 +- .../adfs/Remove-AdfsRelyingPartyTrust.md | 2 +- .../Remove-AdfsRelyingPartyTrustsGroup.md | 2 +- .../adfs/Remove-AdfsRelyingPartyWebContent.md | 2 +- .../adfs/Remove-AdfsRelyingPartyWebTheme.md | 2 +- .../adfs/Remove-AdfsScopeDescription.md | 2 +- .../adfs/Remove-AdfsServerApplication.md | 2 +- .../Remove-AdfsTrustedFederationPartner.md | 2 +- .../adfs/Remove-AdfsWebApiApplication.md | 2 +- ...dfsWebApplicationProxyRelyingPartyTrust.md | 2 +- .../adfs/Remove-AdfsWebTheme.md | 2 +- .../adfs/Restore-AdfsFarmBehaviorLevel.md | 2 +- .../adfs/Revoke-AdfsApplicationPermission.md | 2 +- .../adfs/Revoke-AdfsProxyTrust.md | 2 +- .../adfs/Set-AdfsAccessControlPolicy.md | 2 +- .../Set-AdfsAdditionalAuthenticationRule.md | 2 +- .../adfs/Set-AdfsAlternateTlsClientBinding.md | 2 +- .../adfs/Set-AdfsApplicationGroup.md | 2 +- .../adfs/Set-AdfsApplicationPermission.md | 2 +- .../adfs/Set-AdfsAttributeStore.md | 2 +- ...et-AdfsAuthenticationProviderWebContent.md | 2 +- .../adfs/Set-AdfsAzureMfaTenant.md | 2 +- .../adfs/Set-AdfsCertSharingContainer.md | 2 +- .../adfs/Set-AdfsCertificate.md | 2 +- .../adfs/Set-AdfsCertificateAuthority.md | 2 +- .../adfs/Set-AdfsClaimDescription.md | 2 +- .../adfs/Set-AdfsClaimsProviderTrust.md | 2 +- .../winserver2022-ps/adfs/Set-AdfsClient.md | 2 +- .../adfs/Set-AdfsDeviceRegistration.md | 2 +- .../Set-AdfsDeviceRegistrationUpnSuffix.md | 2 +- .../winserver2022-ps/adfs/Set-AdfsEndpoint.md | 2 +- .../adfs/Set-AdfsFarmInformation.md | 2 +- .../Set-AdfsGlobalAuthenticationPolicy.md | 2 +- .../adfs/Set-AdfsGlobalWebContent.md | 2 +- .../adfs/Set-AdfsLocalClaimsProviderTrust.md | 2 +- .../adfs/Set-AdfsNativeClientApplication.md | 2 +- ...Set-AdfsNonClaimsAwareRelyingPartyTrust.md | 2 +- .../adfs/Set-AdfsProperties.md | 2 +- .../adfs/Set-AdfsRegistrationHosts.md | 2 +- .../adfs/Set-AdfsRelyingPartyTrust.md | 2 +- .../adfs/Set-AdfsRelyingPartyWebContent.md | 2 +- .../adfs/Set-AdfsRelyingPartyWebTheme.md | 2 +- .../adfs/Set-AdfsScopeDescription.md | 2 +- .../adfs/Set-AdfsServerApplication.md | 2 +- .../adfs/Set-AdfsSslCertificate.md | 2 +- .../adfs/Set-AdfsSyncProperties.md | 2 +- .../adfs/Set-AdfsTrustedFederationPartner.md | 2 +- .../adfs/Set-AdfsWebApiApplication.md | 2 +- ...dfsWebApplicationProxyRelyingPartyTrust.md | 2 +- .../adfs/Set-AdfsWebConfig.md | 2 +- .../winserver2022-ps/adfs/Set-AdfsWebTheme.md | 2 +- .../adfs/Test-AdfsFarmBehaviorLevelRaise.md | 2 +- .../adfs/Test-AdfsFarmBehaviorLevelRestore.md | 2 +- .../adfs/Test-AdfsFarmInstallation.md | 2 +- .../adfs/Test-AdfsFarmJoin.md | 2 +- .../Unregister-AdfsAuthenticationProvider.md | 2 +- .../adfs/Update-AdfsCertificate.md | 2 +- .../adfs/Update-AdfsClaimsProviderTrust.md | 2 +- .../adfs/Update-AdfsRelyingPartyTrust.md | 2 +- .../winserver2022-ps/adrms/Install-ADRMS.md | 2 +- .../winserver2022-ps/adrms/Uninstall-ADRMS.md | 2 +- docset/winserver2022-ps/adrms/Update-ADRMS.md | 2 +- .../Export-RmsReportDefinitionLanguage.md | 2 +- .../adrmsadmin/Export-RmsTPD.md | 2 +- .../adrmsadmin/Export-RmsTUD.md | 2 +- .../adrmsadmin/Get-RmsCertChain.md | 2 +- .../adrmsadmin/Get-RmsCertInfo.md | 2 +- .../adrmsadmin/Get-RmsChildCert.md | 2 +- .../adrmsadmin/Get-RmsEncryptedIL.md | 2 +- .../adrmsadmin/Get-RmsRequestInfo.md | 2 +- .../adrmsadmin/Get-RmsSvcAccount.md | 2 +- .../adrmsadmin/Get-RmsSystemHealthReport.md | 2 +- .../adrmsadmin/Get-RmsUserRequestReport.md | 2 +- .../adrmsadmin/Import-RmsTPD.md | 2 +- .../adrmsadmin/Import-RmsTUD.md | 2 +- .../adrmsadmin/Initialize-RmsCryptoMode2.md | 2 +- .../adrmsadmin/Install-RmsMfgEnrollment.md | 2 +- .../adrmsadmin/Install-RmsMfgSupport.md | 2 +- .../adrmsadmin/Set-RmsSvcAccount.md | 2 +- .../adrmsadmin/Uninstall-RmsMfgEnrollment.md | 2 +- .../adrmsadmin/Uninstall-RmsMfgSupport.md | 2 +- .../adrmsadmin/Update-RmsCluster.md | 2 +- .../adrmsadmin/Update-RmsMfgEnrollment.md | 2 +- .../Disable-AppBackgroundTaskDiagnosticLog.md | 2 +- .../Enable-AppBackgroundTaskDiagnosticLog.md | 2 +- .../Get-AppBackgroundTask.md | 2 +- .../Set-AppBackgroundTaskResourcePolicy.md | 2 +- .../Start-AppBackgroundTask.md | 2 +- .../Unregister-AppBackgroundTask.md | 2 +- .../applocker/Get-AppLockerFileInformation.md | 2 +- .../applocker/Get-AppLockerPolicy.md | 2 +- .../applocker/New-AppLockerPolicy.md | 2 +- .../applocker/Set-AppLockerPolicy.md | 2 +- .../applocker/Test-AppLockerPolicy.md | 2 +- .../Add-AppvClientConnectionGroup.md | 2 +- .../appvclient/Add-AppvClientPackage.md | 2 +- .../appvclient/Add-AppvPublishingServer.md | 2 +- .../appvclient/Disable-Appv.md | 2 +- .../Disable-AppvClientConnectionGroup.md | 2 +- .../appvclient/Enable-Appv.md | 2 +- .../Enable-AppvClientConnectionGroup.md | 2 +- .../appvclient/Get-AppvClientApplication.md | 2 +- .../appvclient/Get-AppvClientConfiguration.md | 2 +- .../Get-AppvClientConnectionGroup.md | 2 +- .../appvclient/Get-AppvClientMode.md | 2 +- .../appvclient/Get-AppvClientPackage.md | 2 +- .../appvclient/Get-AppvPublishingServer.md | 2 +- .../appvclient/Get-AppvStatus.md | 2 +- .../appvclient/Get-AppvVirtualProcess.md | 2 +- .../Mount-AppvClientConnectionGroup.md | 2 +- .../appvclient/Mount-AppvClientPackage.md | 2 +- .../appvclient/Publish-AppvClientPackage.md | 2 +- .../Remove-AppvClientConnectionGroup.md | 2 +- .../appvclient/Remove-AppvClientPackage.md | 2 +- .../appvclient/Remove-AppvPublishingServer.md | 2 +- .../Repair-AppvClientConnectionGroup.md | 2 +- .../appvclient/Repair-AppvClientPackage.md | 2 +- .../appvclient/Send-AppvClientReport.md | 2 +- .../appvclient/Set-AppvClientConfiguration.md | 2 +- .../appvclient/Set-AppvClientMode.md | 2 +- .../appvclient/Set-AppvClientPackage.md | 2 +- .../appvclient/Set-AppvPublishingServer.md | 2 +- .../appvclient/Start-AppvVirtualProcess.md | 2 +- .../Stop-AppvClientConnectionGroup.md | 2 +- .../appvclient/Stop-AppvClientPackage.md | 2 +- .../appvclient/Sync-AppvPublishingServer.md | 2 +- .../appvclient/Unpublish-AppvClientPackage.md | 2 +- .../Expand-AppvSequencerPackage.md | 4 +-- .../New-AppvPackageAccelerator.md | 2 +- .../appvsequencer/New-AppvSequencerPackage.md | 4 +-- .../Update-AppvSequencerPackage.md | 4 +-- .../appx/Add-AppSharedPackageContainer.md | 4 +-- .../winserver2022-ps/appx/Add-AppxPackage.md | 2 +- .../winserver2022-ps/appx/Add-AppxVolume.md | 2 +- .../appx/Dismount-AppxVolume.md | 2 +- .../appx/Get-AppSharedPackageContainer.md | 4 +-- .../appx/Get-AppxDefaultVolume.md | 2 +- .../appx/Get-AppxLastError.md | 2 +- docset/winserver2022-ps/appx/Get-AppxLog.md | 2 +- .../winserver2022-ps/appx/Get-AppxPackage.md | 2 +- .../appx/Get-AppxPackageAutoUpdateSettings.md | 2 +- .../appx/Get-AppxPackageManifest.md | 2 +- .../winserver2022-ps/appx/Get-AppxVolume.md | 2 +- .../appx/Invoke-CommandInDesktopPackage.md | 2 +- .../winserver2022-ps/appx/Mount-AppxVolume.md | 2 +- .../winserver2022-ps/appx/Move-AppxPackage.md | 2 +- .../appx/Remove-AppSharedPackageContainer.md | 4 +-- .../appx/Remove-AppxPackage.md | 2 +- .../appx/Remove-AppxVolume.md | 2 +- .../appx/Reset-AppSharedPackageContainer.md | 4 +-- .../appx/Reset-AppxPackage.md | 2 +- .../appx/Set-AppxDefaultVolume.md | 2 +- .../appx/Set-AppxPackageAutoUpdateSettings.md | 2 +- .../assignedaccess/Clear-AssignedAccess.md | 2 +- .../assignedaccess/Get-AssignedAccess.md | 2 +- .../assignedaccess/Set-AssignedAccess.md | 2 +- .../bestpractices/Get-BpaModel.md | 2 +- .../bestpractices/Get-BpaResult.md | 2 +- .../bestpractices/Invoke-BpaModel.md | 2 +- .../bestpractices/Set-BpaResult.md | 2 +- .../bitlocker/Add-BitLockerKeyProtector.md | 2 +- .../bitlocker/Backup-BitLockerKeyProtector.md | 2 +- .../BackupToAAD-BitLockerKeyProtector.md | 1 - .../bitlocker/Clear-BitLockerAutoUnlock.md | 2 +- .../bitlocker/Disable-BitLocker.md | 2 +- .../bitlocker/Disable-BitLockerAutoUnlock.md | 2 +- .../bitlocker/Enable-BitLocker.md | 2 +- .../bitlocker/Enable-BitLockerAutoUnlock.md | 2 +- .../bitlocker/Get-BitLockerVolume.md | 2 +- .../bitlocker/Lock-BitLocker.md | 2 +- .../bitlocker/Remove-BitLockerKeyProtector.md | 2 +- .../bitlocker/Resume-BitLocker.md | 2 +- .../bitlocker/Suspend-BitLocker.md | 2 +- .../bitlocker/Unlock-BitLocker.md | 2 +- .../bitstransfer/Add-BitsFile.md | 2 +- .../bitstransfer/Complete-BitsTransfer.md | 2 +- .../bitstransfer/Get-BitsTransfer.md | 2 +- .../bitstransfer/Remove-BitsTransfer.md | 2 +- .../bitstransfer/Resume-BitsTransfer.md | 2 +- .../bitstransfer/Set-BitsTransfer.md | 2 +- .../bitstransfer/Start-BitsTransfer.md | 2 +- .../bitstransfer/Suspend-BitsTransfer.md | 2 +- .../Checkpoint-SbecActiveConfig.md | 2 +- .../Clear-SbecProviderCache.md | 2 +- .../Disable-SbecAutologger.md | 2 +- .../booteventcollector/Disable-SbecBcd.md | 2 +- .../Enable-SbecAutologger.md | 2 +- .../booteventcollector/Enable-SbecBcd.md | 2 +- .../Enable-SbecBootImage.md | 2 +- .../booteventcollector/Enable-SbecWdsBcd.md | 2 +- .../Get-SbecActiveConfig.md | 2 +- .../Get-SbecBackupConfig.md | 2 +- .../booteventcollector/Get-SbecDestination.md | 2 +- .../booteventcollector/Get-SbecForwarding.md | 2 +- .../booteventcollector/Get-SbecHistory.md | 2 +- .../Get-SbecLocalizedMessage.md | 2 +- .../booteventcollector/Get-SbecLogSession.md | 2 +- .../Get-SbecTraceProviders.md | 2 +- .../New-SbecUnattendFragment.md | 2 +- .../Redo-SbecActiveConfig.md | 2 +- .../Restore-SbecBackupConfig.md | 2 +- .../booteventcollector/Save-SbecInstance.md | 2 +- .../booteventcollector/Save-SbecLogSession.md | 2 +- .../Set-SbecActiveConfig.md | 2 +- .../booteventcollector/Set-SbecLogSession.md | 2 +- .../booteventcollector/Start-SbecInstance.md | 2 +- .../Start-SbecLogSession.md | 2 +- .../Start-SbecNtKernelLogSession.md | 2 +- .../Start-SbecSimpleLogSession.md | 2 +- .../booteventcollector/Stop-SbecInstance.md | 2 +- .../booteventcollector/Stop-SbecLogSession.md | 2 +- .../Test-SbecActiveConfig.md | 2 +- .../booteventcollector/Test-SbecConfig.md | 2 +- .../Undo-SbecActiveConfig.md | 2 +- .../branchcache/Add-BCDataCacheExtension.md | 2 +- .../branchcache/Clear-BCCache.md | 2 +- .../branchcache/Disable-BC.md | 2 +- .../branchcache/Disable-BCDowngrading.md | 2 +- .../branchcache/Disable-BCServeOnBattery.md | 2 +- .../branchcache/Enable-BCDistributed.md | 2 +- .../branchcache/Enable-BCDowngrading.md | 2 +- .../branchcache/Enable-BCHostedClient.md | 2 +- .../branchcache/Enable-BCHostedServer.md | 2 +- .../branchcache/Enable-BCLocal.md | 2 +- .../branchcache/Enable-BCServeOnBattery.md | 2 +- .../branchcache/Export-BCCachePackage.md | 2 +- .../branchcache/Export-BCSecretKey.md | 2 +- .../branchcache/Get-BCClientConfiguration.md | 2 +- .../Get-BCContentServerConfiguration.md | 2 +- .../branchcache/Get-BCDataCache.md | 2 +- .../branchcache/Get-BCDataCacheExtension.md | 2 +- .../branchcache/Get-BCHashCache.md | 2 +- .../Get-BCHostedCacheServerConfiguration.md | 2 +- .../branchcache/Get-BCNetworkConfiguration.md | 2 +- .../branchcache/Get-BCStatus.md | 2 +- .../branchcache/Import-BCCachePackage.md | 2 +- .../branchcache/Import-BCSecretKey.md | 2 +- .../branchcache/Publish-BCFileContent.md | 2 +- .../branchcache/Publish-BCWebContent.md | 2 +- .../Remove-BCDataCacheExtension.md | 2 +- .../winserver2022-ps/branchcache/Reset-BC.md | 2 +- .../branchcache/Set-BCAuthentication.md | 2 +- .../branchcache/Set-BCCache.md | 2 +- .../branchcache/Set-BCDataCacheEntryMaxAge.md | 2 +- .../branchcache/Set-BCMinSMBLatency.md | 2 +- .../branchcache/Set-BCSecretKey.md | 2 +- .../Add-CauClusterRole.md | 2 +- .../Disable-CauClusterRole.md | 2 +- .../Enable-CauClusterRole.md | 2 +- .../clusterawareupdating/Export-CauReport.md | 2 +- .../Get-CauClusterRole.md | 2 +- .../clusterawareupdating/Get-CauPlugin.md | 2 +- .../clusterawareupdating/Get-CauReport.md | 2 +- .../clusterawareupdating/Get-CauRun.md | 2 +- .../clusterawareupdating/Invoke-CauRun.md | 2 +- .../clusterawareupdating/Invoke-CauScan.md | 2 +- .../Register-CauPlugin.md | 2 +- .../Remove-CauClusterRole.md | 2 +- .../Save-CauDebugTrace.md | 2 +- .../Set-CauClusterRole.md | 2 +- .../clusterawareupdating/Stop-CauRun.md | 2 +- .../clusterawareupdating/Test-CauSetup.md | 2 +- .../Unregister-CauPlugin.md | 2 +- .../configci/Add-SignerRule.md | 2 +- .../configci/ConvertFrom-CIPolicy.md | 2 +- .../configci/Edit-CIPolicyRule.md | 2 +- .../winserver2022-ps/configci/Get-CIPolicy.md | 2 +- .../configci/Get-CIPolicyIdInfo.md | 2 +- .../configci/Get-CIPolicyInfo.md | 2 +- .../configci/Get-SystemDriver.md | 2 +- .../configci/Merge-CIPolicy.md | 2 +- .../winserver2022-ps/configci/New-CIPolicy.md | 2 +- .../configci/New-CIPolicyRule.md | 2 +- .../configci/Remove-CIPolicyRule.md | 2 +- .../configci/Set-CIPolicyIdInfo.md | 2 +- .../configci/Set-CIPolicySetting.md | 2 +- .../configci/Set-CIPolicyVersion.md | 2 +- .../configci/Set-HVCIOptions.md | 2 +- .../configci/Set-RuleOption.md | 2 +- .../dcbqos/Disable-NetQosFlowControl.md | 2 +- .../dcbqos/Enable-NetQosFlowControl.md | 2 +- .../dcbqos/Get-NetQosDcbxSetting.md | 2 +- .../dcbqos/Get-NetQosFlowControl.md | 2 +- .../dcbqos/Get-NetQosTrafficClass.md | 2 +- .../dcbqos/New-NetQosTrafficClass.md | 2 +- .../dcbqos/Remove-NetQosTrafficClass.md | 2 +- .../dcbqos/Set-NetQosDcbxSetting.md | 2 +- .../dcbqos/Set-NetQosFlowControl.md | 2 +- .../dcbqos/Set-NetQosTrafficClass.md | 2 +- .../dcbqos/Switch-NetQosDcbxSetting.md | 2 +- .../dcbqos/Switch-NetQosFlowControl.md | 2 +- .../dcbqos/Switch-NetQosTrafficClass.md | 2 +- .../deduplication/Disable-DedupVolume.md | 2 +- .../deduplication/Enable-DedupVolume.md | 2 +- .../deduplication/Expand-DedupFile.md | 2 +- .../deduplication/Get-DedupJob.md | 2 +- .../deduplication/Get-DedupMetadata.md | 2 +- .../deduplication/Get-DedupSchedule.md | 2 +- .../deduplication/Get-DedupStatus.md | 2 +- .../deduplication/Get-DedupVolume.md | 2 +- .../Measure-DedupFileMetadata.md | 2 +- .../deduplication/New-DedupSchedule.md | 2 +- .../deduplication/Remove-DedupSchedule.md | 2 +- .../deduplication/Set-DedupSchedule.md | 2 +- .../deduplication/Set-DedupVolume.md | 2 +- .../deduplication/Start-DedupJob.md | 2 +- .../deduplication/Stop-DedupJob.md | 2 +- .../deduplication/Update-DedupStatus.md | 2 +- .../defender/Add-MpPreference.md | 2 +- .../defender/Get-MpComputerStatus.md | 2 +- .../defender/Get-MpPreference.md | 2 +- .../winserver2022-ps/defender/Get-MpThreat.md | 2 +- .../defender/Get-MpThreatCatalog.md | 2 +- .../defender/Get-MpThreatDetection.md | 2 +- .../defender/Remove-MpPreference.md | 2 +- .../defender/Remove-MpThreat.md | 2 +- .../defender/Set-MpPreference.md | 2 +- .../winserver2022-ps/defender/Start-MpScan.md | 2 +- .../defender/Start-MpWDOScan.md | 2 +- .../defender/Update-MpSignature.md | 2 +- .../Backup-DHASConfiguration.md | 2 +- .../Get-DHASActiveEncryptionCertificate.md | 2 +- .../Get-DHASActiveSigningCertificate.md | 2 +- .../Get-DHASCertificateChainPolicy.md | 2 +- .../Get-DHASInactiveEncryptionCertificate.md | 2 +- .../Get-DHASInactiveSigningCertificate.md | 2 +- .../Install-DeviceHealthAttestation.md | 2 +- ...emove-DHASInactiveEncryptionCertificate.md | 2 +- .../Remove-DHASInactiveSigningCertificate.md | 2 +- .../Restore-DHASConfiguration.md | 2 +- .../Set-DHASActiveEncryptionCertificate.md | 2 +- .../Set-DHASActiveSigningCertificate.md | 2 +- .../Set-DHASCertificateChainPolicy.md | 2 +- .../Set-DHASSupportedAuthenticationSchema.md | 2 +- .../Uninstall-DeviceHealthAttestation.md | 2 +- .../winserver2022-ps/dfsn/Get-DfsnAccess.md | 2 +- .../winserver2022-ps/dfsn/Get-DfsnFolder.md | 2 +- .../dfsn/Get-DfsnFolderTarget.md | 2 +- docset/winserver2022-ps/dfsn/Get-DfsnRoot.md | 2 +- .../dfsn/Get-DfsnRootTarget.md | 2 +- .../dfsn/Get-DfsnServerConfiguration.md | 2 +- .../winserver2022-ps/dfsn/Grant-DfsnAccess.md | 2 +- .../winserver2022-ps/dfsn/Move-DfsnFolder.md | 2 +- .../winserver2022-ps/dfsn/New-DfsnFolder.md | 2 +- .../dfsn/New-DfsnFolderTarget.md | 2 +- docset/winserver2022-ps/dfsn/New-DfsnRoot.md | 2 +- .../dfsn/New-DfsnRootTarget.md | 2 +- .../dfsn/Remove-DfsnAccess.md | 2 +- .../dfsn/Remove-DfsnFolder.md | 2 +- .../dfsn/Remove-DfsnFolderTarget.md | 2 +- .../winserver2022-ps/dfsn/Remove-DfsnRoot.md | 2 +- .../dfsn/Remove-DfsnRootTarget.md | 2 +- .../dfsn/Revoke-DfsnAccess.md | 2 +- .../winserver2022-ps/dfsn/Set-DfsnFolder.md | 2 +- .../dfsn/Set-DfsnFolderTarget.md | 2 +- docset/winserver2022-ps/dfsn/Set-DfsnRoot.md | 2 +- .../dfsn/Set-DfsnRootTarget.md | 2 +- .../dfsn/Set-DfsnServerConfiguration.md | 2 +- .../dfsr/Add-DfsrConnection.md | 2 +- .../winserver2022-ps/dfsr/Add-DfsrMember.md | 2 +- .../dfsr/ConvertFrom-DfsrGuid.md | 2 +- .../winserver2022-ps/dfsr/Export-DfsrClone.md | 2 +- .../dfsr/Get-DfsReplicatedFolder.md | 2 +- .../dfsr/Get-DfsReplicationGroup.md | 2 +- .../winserver2022-ps/dfsr/Get-DfsrBacklog.md | 2 +- .../dfsr/Get-DfsrCloneState.md | 2 +- .../dfsr/Get-DfsrConnection.md | 2 +- .../dfsr/Get-DfsrConnectionSchedule.md | 2 +- .../dfsr/Get-DfsrDelegation.md | 2 +- .../winserver2022-ps/dfsr/Get-DfsrFileHash.md | 2 +- .../dfsr/Get-DfsrGroupSchedule.md | 2 +- .../winserver2022-ps/dfsr/Get-DfsrIdRecord.md | 2 +- .../winserver2022-ps/dfsr/Get-DfsrMember.md | 2 +- .../dfsr/Get-DfsrMembership.md | 2 +- .../dfsr/Get-DfsrPreservedFiles.md | 2 +- .../dfsr/Get-DfsrServiceConfiguration.md | 2 +- docset/winserver2022-ps/dfsr/Get-DfsrState.md | 2 +- .../dfsr/Grant-DfsrDelegation.md | 2 +- .../winserver2022-ps/dfsr/Import-DfsrClone.md | 2 +- .../dfsr/New-DfsReplicatedFolder.md | 2 +- .../dfsr/New-DfsReplicationGroup.md | 2 +- .../dfsr/Remove-DfsReplicatedFolder.md | 2 +- .../dfsr/Remove-DfsReplicationGroup.md | 2 +- .../dfsr/Remove-DfsrConnection.md | 2 +- .../dfsr/Remove-DfsrMember.md | 2 +- .../dfsr/Remove-DfsrPropagationTestFile.md | 2 +- .../dfsr/Reset-DfsrCloneState.md | 2 +- .../dfsr/Restore-DfsrPreservedFiles.md | 2 +- .../dfsr/Revoke-DfsrDelegation.md | 2 +- .../dfsr/Set-DfsReplicatedFolder.md | 2 +- .../dfsr/Set-DfsReplicationGroup.md | 2 +- .../dfsr/Set-DfsrConnection.md | 2 +- .../dfsr/Set-DfsrConnectionSchedule.md | 2 +- .../dfsr/Set-DfsrGroupSchedule.md | 2 +- .../winserver2022-ps/dfsr/Set-DfsrMember.md | 2 +- .../dfsr/Set-DfsrMembership.md | 2 +- .../dfsr/Set-DfsrServiceConfiguration.md | 2 +- .../dfsr/Start-DfsrPropagationTest.md | 2 +- .../dfsr/Suspend-DfsReplicationGroup.md | 2 +- .../dfsr/Sync-DfsReplicationGroup.md | 2 +- .../dfsr/Update-DfsrConfigurationFromAD.md | 2 +- .../dfsr/Write-DfsrHealthReport.md | 2 +- .../dfsr/Write-DfsrPropagationReport.md | 2 +- .../dhcpserver/Add-DhcpServerInDC.md | 2 +- .../dhcpserver/Add-DhcpServerSecurityGroup.md | 2 +- .../dhcpserver/Add-DhcpServerv4Class.md | 2 +- .../Add-DhcpServerv4ExclusionRange.md | 2 +- .../dhcpserver/Add-DhcpServerv4Failover.md | 2 +- .../Add-DhcpServerv4FailoverScope.md | 2 +- .../dhcpserver/Add-DhcpServerv4Filter.md | 2 +- .../dhcpserver/Add-DhcpServerv4Lease.md | 2 +- ...Add-DhcpServerv4MulticastExclusionRange.md | 2 +- .../Add-DhcpServerv4MulticastScope.md | 2 +- .../Add-DhcpServerv4OptionDefinition.md | 2 +- .../dhcpserver/Add-DhcpServerv4Policy.md | 2 +- .../Add-DhcpServerv4PolicyIPRange.md | 2 +- .../dhcpserver/Add-DhcpServerv4Reservation.md | 2 +- .../dhcpserver/Add-DhcpServerv4Scope.md | 2 +- .../dhcpserver/Add-DhcpServerv4Superscope.md | 2 +- .../dhcpserver/Add-DhcpServerv6Class.md | 2 +- .../Add-DhcpServerv6ExclusionRange.md | 2 +- .../dhcpserver/Add-DhcpServerv6Lease.md | 2 +- .../Add-DhcpServerv6OptionDefinition.md | 2 +- .../dhcpserver/Add-DhcpServerv6Reservation.md | 2 +- .../dhcpserver/Add-DhcpServerv6Scope.md | 2 +- .../dhcpserver/Backup-DhcpServer.md | 2 +- .../dhcpserver/Export-DhcpServer.md | 2 +- .../dhcpserver/Get-DhcpServerAuditLog.md | 2 +- .../dhcpserver/Get-DhcpServerDatabase.md | 2 +- .../dhcpserver/Get-DhcpServerDnsCredential.md | 2 +- .../dhcpserver/Get-DhcpServerInDC.md | 2 +- .../dhcpserver/Get-DhcpServerSetting.md | 2 +- .../dhcpserver/Get-DhcpServerVersion.md | 2 +- .../dhcpserver/Get-DhcpServerv4Binding.md | 2 +- .../dhcpserver/Get-DhcpServerv4Class.md | 2 +- .../dhcpserver/Get-DhcpServerv4DnsSetting.md | 2 +- .../Get-DhcpServerv4ExclusionRange.md | 2 +- .../dhcpserver/Get-DhcpServerv4Failover.md | 2 +- .../dhcpserver/Get-DhcpServerv4Filter.md | 2 +- .../dhcpserver/Get-DhcpServerv4FilterList.md | 2 +- .../Get-DhcpServerv4FreeIPAddress.md | 2 +- .../dhcpserver/Get-DhcpServerv4Lease.md | 2 +- ...Get-DhcpServerv4MulticastExclusionRange.md | 2 +- .../Get-DhcpServerv4MulticastLease.md | 2 +- .../Get-DhcpServerv4MulticastScope.md | 2 +- ...et-DhcpServerv4MulticastScopeStatistics.md | 2 +- .../Get-DhcpServerv4OptionDefinition.md | 2 +- .../dhcpserver/Get-DhcpServerv4OptionValue.md | 2 +- .../dhcpserver/Get-DhcpServerv4Policy.md | 2 +- .../Get-DhcpServerv4PolicyIPRange.md | 2 +- .../dhcpserver/Get-DhcpServerv4Reservation.md | 2 +- .../dhcpserver/Get-DhcpServerv4Scope.md | 2 +- .../Get-DhcpServerv4ScopeStatistics.md | 2 +- .../dhcpserver/Get-DhcpServerv4Statistics.md | 2 +- .../dhcpserver/Get-DhcpServerv4Superscope.md | 2 +- .../Get-DhcpServerv4SuperscopeStatistics.md | 2 +- .../dhcpserver/Get-DhcpServerv6Binding.md | 2 +- .../dhcpserver/Get-DhcpServerv6Class.md | 2 +- .../dhcpserver/Get-DhcpServerv6DnsSetting.md | 2 +- .../Get-DhcpServerv6ExclusionRange.md | 2 +- .../Get-DhcpServerv6FreeIPAddress.md | 2 +- .../dhcpserver/Get-DhcpServerv6Lease.md | 2 +- .../Get-DhcpServerv6OptionDefinition.md | 2 +- .../dhcpserver/Get-DhcpServerv6OptionValue.md | 2 +- .../dhcpserver/Get-DhcpServerv6Reservation.md | 2 +- .../dhcpserver/Get-DhcpServerv6Scope.md | 2 +- .../Get-DhcpServerv6ScopeStatistics.md | 2 +- .../Get-DhcpServerv6StatelessStatistics.md | 2 +- .../Get-DhcpServerv6StatelessStore.md | 2 +- .../dhcpserver/Get-DhcpServerv6Statistics.md | 2 +- .../dhcpserver/Import-DhcpServer.md | 2 +- .../Invoke-DhcpServerv4FailoverReplication.md | 2 +- .../Remove-DhcpServerDnsCredential.md | 2 +- .../dhcpserver/Remove-DhcpServerInDC.md | 2 +- .../dhcpserver/Remove-DhcpServerv4Class.md | 2 +- .../Remove-DhcpServerv4ExclusionRange.md | 2 +- .../dhcpserver/Remove-DhcpServerv4Failover.md | 2 +- .../Remove-DhcpServerv4FailoverScope.md | 2 +- .../dhcpserver/Remove-DhcpServerv4Filter.md | 2 +- .../dhcpserver/Remove-DhcpServerv4Lease.md | 2 +- ...ove-DhcpServerv4MulticastExclusionRange.md | 2 +- .../Remove-DhcpServerv4MulticastLease.md | 2 +- .../Remove-DhcpServerv4MulticastScope.md | 2 +- .../Remove-DhcpServerv4OptionDefinition.md | 2 +- .../Remove-DhcpServerv4OptionValue.md | 2 +- .../dhcpserver/Remove-DhcpServerv4Policy.md | 2 +- .../Remove-DhcpServerv4PolicyIPRange.md | 2 +- .../Remove-DhcpServerv4Reservation.md | 2 +- .../dhcpserver/Remove-DhcpServerv4Scope.md | 2 +- .../Remove-DhcpServerv4Superscope.md | 2 +- .../dhcpserver/Remove-DhcpServerv6Class.md | 2 +- .../Remove-DhcpServerv6ExclusionRange.md | 2 +- .../dhcpserver/Remove-DhcpServerv6Lease.md | 2 +- .../Remove-DhcpServerv6OptionDefinition.md | 2 +- .../Remove-DhcpServerv6OptionValue.md | 2 +- .../Remove-DhcpServerv6Reservation.md | 2 +- .../dhcpserver/Remove-DhcpServerv6Scope.md | 2 +- .../Rename-DhcpServerv4Superscope.md | 2 +- .../dhcpserver/Repair-DhcpServerv4IPRecord.md | 2 +- .../dhcpserver/Restore-DhcpServer.md | 2 +- .../dhcpserver/Set-DhcpServerAuditLog.md | 2 +- .../dhcpserver/Set-DhcpServerDatabase.md | 2 +- .../dhcpserver/Set-DhcpServerDnsCredential.md | 2 +- .../dhcpserver/Set-DhcpServerSetting.md | 2 +- .../dhcpserver/Set-DhcpServerv4Binding.md | 2 +- .../dhcpserver/Set-DhcpServerv4Class.md | 2 +- .../dhcpserver/Set-DhcpServerv4DnsSetting.md | 2 +- .../dhcpserver/Set-DhcpServerv4Failover.md | 2 +- .../dhcpserver/Set-DhcpServerv4FilterList.md | 2 +- .../Set-DhcpServerv4MulticastScope.md | 2 +- .../Set-DhcpServerv4OptionDefinition.md | 2 +- .../dhcpserver/Set-DhcpServerv4OptionValue.md | 2 +- .../dhcpserver/Set-DhcpServerv4Policy.md | 2 +- .../dhcpserver/Set-DhcpServerv4Reservation.md | 2 +- .../dhcpserver/Set-DhcpServerv4Scope.md | 2 +- .../dhcpserver/Set-DhcpServerv6Binding.md | 2 +- .../dhcpserver/Set-DhcpServerv6Class.md | 2 +- .../dhcpserver/Set-DhcpServerv6DnsSetting.md | 2 +- .../Set-DhcpServerv6OptionDefinition.md | 2 +- .../dhcpserver/Set-DhcpServerv6OptionValue.md | 2 +- .../dhcpserver/Set-DhcpServerv6Reservation.md | 2 +- .../dhcpserver/Set-DhcpServerv6Scope.md | 2 +- .../Set-DhcpServerv6StatelessStore.md | 2 +- .../Disable-DAManualEntryPointSelection.md | 2 +- .../Enable-DAManualEntryPointSelection.md | 2 +- .../Get-DAClientExperienceConfiguration.md | 2 +- .../Get-DAEntryPointTableItem.md | 2 +- .../New-DAEntryPointTableItem.md | 2 +- .../Remove-DAEntryPointTableItem.md | 2 +- .../Rename-DAEntryPointTableItem.md | 2 +- .../Reset-DAClientExperienceConfiguration.md | 2 +- .../Reset-DAEntryPointTableItem.md | 2 +- .../Set-DAClientExperienceConfiguration.md | 2 +- .../Set-DAEntryPointTableItem.md | 2 +- .../dism/Add-AppxProvisionedPackage.md | 2 +- .../dism/Add-WindowsCapability.md | 2 +- .../dism/Add-WindowsDriver.md | 2 +- .../winserver2022-ps/dism/Add-WindowsImage.md | 2 +- .../dism/Add-WindowsPackage.md | 2 +- .../dism/Clear-WindowsCorruptMountPoint.md | 2 +- .../dism/Disable-WindowsOptionalFeature.md | 2 +- .../dism/Dismount-WindowsImage.md | 2 +- .../dism/Enable-WindowsOptionalFeature.md | 2 +- .../dism/Expand-WindowsCustomDataImage.md | 2 +- .../dism/Expand-WindowsImage.md | 2 +- .../dism/Export-WindowsCapabilitySource.md | 4 +-- .../dism/Export-WindowsDriver.md | 2 +- .../dism/Export-WindowsImage.md | 2 +- .../dism/Get-AppxProvisionedPackage.md | 2 +- .../dism/Get-NonRemovableAppsPolicy.md | 2 +- .../winserver2022-ps/dism/Get-WIMBootEntry.md | 2 +- .../dism/Get-WindowsCapability.md | 2 +- .../dism/Get-WindowsDriver.md | 2 +- .../dism/Get-WindowsEdition.md | 2 +- .../winserver2022-ps/dism/Get-WindowsImage.md | 2 +- .../dism/Get-WindowsImageContent.md | 2 +- .../dism/Get-WindowsOptionalFeature.md | 2 +- .../dism/Get-WindowsPackage.md | 2 +- .../dism/Get-WindowsReservedStorageState.md | 2 +- .../dism/Mount-WindowsImage.md | 2 +- .../dism/New-WindowsCustomImage.md | 2 +- .../winserver2022-ps/dism/New-WindowsImage.md | 2 +- .../dism/Optimize-AppXProvisionedPackages.md | 2 +- .../dism/Optimize-WindowsImage.md | 2 +- .../dism/Remove-AppxProvisionedPackage.md | 2 +- .../dism/Remove-WindowsCapability.md | 2 +- .../dism/Remove-WindowsDriver.md | 2 +- .../dism/Remove-WindowsImage.md | 2 +- .../dism/Remove-WindowsPackage.md | 2 +- .../dism/Repair-WindowsImage.md | 2 +- .../dism/Save-WindowsImage.md | 2 +- .../dism/Set-AppXProvisionedDataFile.md | 2 +- .../dism/Set-NonRemovableAppsPolicy.md | 2 +- .../dism/Set-WindowsEdition.md | 2 +- .../dism/Set-WindowsProductKey.md | 2 +- .../dism/Set-WindowsReservedStorageState.md | 2 +- .../dism/Split-WindowsImage.md | 2 +- .../dism/Start-OSUninstall.md | 2 +- .../dism/Update-WIMBootEntry.md | 2 +- .../dism/Use-WindowsUnattend.md | 2 +- .../Add-DnsClientDohServerAddress.md | 6 ++--- .../dnsclient/Add-DnsClientNrptRule.md | 2 +- .../dnsclient/Clear-DnsClientCache.md | 2 +- .../dnsclient/Get-DnsClient.md | 2 +- .../dnsclient/Get-DnsClientCache.md | 2 +- .../Get-DnsClientDohServerAddress.md | 6 ++--- .../dnsclient/Get-DnsClientGlobalSetting.md | 2 +- .../dnsclient/Get-DnsClientNrptGlobal.md | 2 +- .../dnsclient/Get-DnsClientNrptPolicy.md | 2 +- .../dnsclient/Get-DnsClientNrptRule.md | 2 +- .../dnsclient/Get-DnsClientServerAddress.md | 2 +- .../dnsclient/Register-DnsClient.md | 2 +- .../Remove-DnsClientDohServerAddress.md | 6 ++--- .../dnsclient/Remove-DnsClientNrptRule.md | 2 +- .../dnsclient/Resolve-DnsName.md | 2 +- .../dnsclient/Set-DnsClient.md | 2 +- .../Set-DnsClientDohServerAddress.md | 6 ++--- .../dnsclient/Set-DnsClientGlobalSetting.md | 2 +- .../dnsclient/Set-DnsClientNrptGlobal.md | 2 +- .../dnsclient/Set-DnsClientNrptRule.md | 2 +- .../dnsclient/Set-DnsClientServerAddress.md | 2 +- .../dnsserver/Add-DnsServerClientSubnet.md | 2 +- .../Add-DnsServerConditionalForwarderZone.md | 2 +- .../Add-DnsServerDirectoryPartition.md | 2 +- .../dnsserver/Add-DnsServerForwarder.md | 2 +- .../dnsserver/Add-DnsServerPrimaryZone.md | 2 +- .../Add-DnsServerQueryResolutionPolicy.md | 2 +- .../dnsserver/Add-DnsServerRecursionScope.md | 2 +- .../dnsserver/Add-DnsServerResourceRecord.md | 2 +- .../dnsserver/Add-DnsServerResourceRecordA.md | 2 +- .../Add-DnsServerResourceRecordAAAA.md | 2 +- .../Add-DnsServerResourceRecordCName.md | 2 +- .../Add-DnsServerResourceRecordDS.md | 2 +- .../Add-DnsServerResourceRecordDnsKey.md | 2 +- .../Add-DnsServerResourceRecordMX.md | 2 +- .../Add-DnsServerResourceRecordPtr.md | 2 +- ...ServerResponseRateLimitingExceptionlist.md | 2 +- .../dnsserver/Add-DnsServerRootHint.md | 2 +- .../dnsserver/Add-DnsServerSecondaryZone.md | 2 +- .../dnsserver/Add-DnsServerSigningKey.md | 2 +- .../dnsserver/Add-DnsServerStubZone.md | 2 +- .../dnsserver/Add-DnsServerTrustAnchor.md | 2 +- .../Add-DnsServerVirtualizationInstance.md | 2 +- .../dnsserver/Add-DnsServerZoneDelegation.md | 2 +- .../dnsserver/Add-DnsServerZoneScope.md | 2 +- .../Add-DnsServerZoneTransferPolicy.md | 2 +- .../dnsserver/Clear-DnsServerCache.md | 2 +- .../dnsserver/Clear-DnsServerStatistics.md | 2 +- .../ConvertTo-DnsServerPrimaryZone.md | 2 +- .../ConvertTo-DnsServerSecondaryZone.md | 2 +- .../dnsserver/Disable-DnsServerPolicy.md | 2 +- .../Disable-DnsServerSigningKeyRollover.md | 2 +- .../dnsserver/Enable-DnsServerPolicy.md | 2 +- .../Enable-DnsServerSigningKeyRollover.md | 2 +- .../Export-DnsServerDnsSecPublicKey.md | 2 +- .../dnsserver/Export-DnsServerZone.md | 2 +- .../dnsserver/Get-DnsServer.md | 2 +- .../dnsserver/Get-DnsServerCache.md | 2 +- .../dnsserver/Get-DnsServerClientSubnet.md | 2 +- .../dnsserver/Get-DnsServerDiagnostics.md | 2 +- .../Get-DnsServerDirectoryPartition.md | 2 +- .../Get-DnsServerDnsSecZoneSetting.md | 2 +- .../dnsserver/Get-DnsServerDsSetting.md | 2 +- .../dnsserver/Get-DnsServerEDns.md | 2 +- .../dnsserver/Get-DnsServerForwarder.md | 2 +- .../dnsserver/Get-DnsServerGlobalNameZone.md | 2 +- .../Get-DnsServerGlobalQueryBlockList.md | 2 +- .../Get-DnsServerQueryResolutionPolicy.md | 2 +- .../dnsserver/Get-DnsServerRecursion.md | 2 +- .../dnsserver/Get-DnsServerRecursionScope.md | 2 +- .../dnsserver/Get-DnsServerResourceRecord.md | 2 +- .../Get-DnsServerResponseRateLimiting.md | 2 +- ...ServerResponseRateLimitingExceptionlist.md | 2 +- .../dnsserver/Get-DnsServerRootHint.md | 2 +- .../dnsserver/Get-DnsServerScavenging.md | 2 +- .../dnsserver/Get-DnsServerSetting.md | 2 +- .../dnsserver/Get-DnsServerSigningKey.md | 2 +- .../dnsserver/Get-DnsServerStatistics.md | 2 +- .../dnsserver/Get-DnsServerTrustAnchor.md | 2 +- .../dnsserver/Get-DnsServerTrustPoint.md | 2 +- .../Get-DnsServerVirtualizationInstance.md | 2 +- .../dnsserver/Get-DnsServerZone.md | 2 +- .../dnsserver/Get-DnsServerZoneAging.md | 2 +- .../dnsserver/Get-DnsServerZoneDelegation.md | 2 +- .../dnsserver/Get-DnsServerZoneScope.md | 2 +- .../Get-DnsServerZoneTransferPolicy.md | 2 +- .../Import-DnsServerResourceRecordDS.md | 2 +- .../dnsserver/Import-DnsServerRootHint.md | 2 +- .../dnsserver/Import-DnsServerTrustAnchor.md | 2 +- .../Invoke-DnsServerSigningKeyRollover.md | 2 +- .../dnsserver/Invoke-DnsServerZoneSign.md | 2 +- .../dnsserver/Invoke-DnsServerZoneUnsign.md | 2 +- .../Register-DnsServerDirectoryPartition.md | 2 +- .../dnsserver/Remove-DnsServerClientSubnet.md | 2 +- .../Remove-DnsServerDirectoryPartition.md | 2 +- .../dnsserver/Remove-DnsServerForwarder.md | 2 +- .../Remove-DnsServerQueryResolutionPolicy.md | 2 +- .../Remove-DnsServerRecursionScope.md | 2 +- .../Remove-DnsServerResourceRecord.md | 2 +- ...ServerResponseRateLimitingExceptionlist.md | 2 +- .../dnsserver/Remove-DnsServerRootHint.md | 2 +- .../dnsserver/Remove-DnsServerSigningKey.md | 2 +- .../dnsserver/Remove-DnsServerTrustAnchor.md | 2 +- .../Remove-DnsServerVirtualizationInstance.md | 2 +- .../dnsserver/Remove-DnsServerZone.md | 2 +- .../Remove-DnsServerZoneDelegation.md | 2 +- .../dnsserver/Remove-DnsServerZoneScope.md | 2 +- .../Remove-DnsServerZoneTransferPolicy.md | 2 +- .../Reset-DnsServerZoneKeyMasterRole.md | 2 +- .../dnsserver/Restore-DnsServerPrimaryZone.md | 2 +- .../Restore-DnsServerSecondaryZone.md | 2 +- .../dnsserver/Resume-DnsServerZone.md | 2 +- .../dnsserver/Set-DnsServer.md | 2 +- .../dnsserver/Set-DnsServerCache.md | 2 +- .../dnsserver/Set-DnsServerClientSubnet.md | 2 +- .../Set-DnsServerConditionalForwarderZone.md | 2 +- .../dnsserver/Set-DnsServerDiagnostics.md | 2 +- .../Set-DnsServerDnsSecZoneSetting.md | 2 +- .../dnsserver/Set-DnsServerDsSetting.md | 2 +- .../dnsserver/Set-DnsServerEDns.md | 2 +- .../dnsserver/Set-DnsServerForwarder.md | 2 +- .../dnsserver/Set-DnsServerGlobalNameZone.md | 2 +- .../Set-DnsServerGlobalQueryBlockList.md | 2 +- .../dnsserver/Set-DnsServerPrimaryZone.md | 2 +- .../Set-DnsServerQueryResolutionPolicy.md | 2 +- .../dnsserver/Set-DnsServerRecursion.md | 2 +- .../dnsserver/Set-DnsServerRecursionScope.md | 2 +- .../dnsserver/Set-DnsServerResourceRecord.md | 2 +- .../Set-DnsServerResourceRecordAging.md | 2 +- .../Set-DnsServerResponseRateLimiting.md | 2 +- ...ServerResponseRateLimitingExceptionlist.md | 2 +- .../dnsserver/Set-DnsServerRootHint.md | 2 +- .../dnsserver/Set-DnsServerScavenging.md | 2 +- .../dnsserver/Set-DnsServerSecondaryZone.md | 2 +- .../dnsserver/Set-DnsServerSetting.md | 2 +- .../dnsserver/Set-DnsServerSigningKey.md | 2 +- .../dnsserver/Set-DnsServerStubZone.md | 2 +- .../Set-DnsServerVirtualizationInstance.md | 2 +- .../dnsserver/Set-DnsServerZoneAging.md | 2 +- .../dnsserver/Set-DnsServerZoneDelegation.md | 2 +- .../Set-DnsServerZoneTransferPolicy.md | 2 +- .../dnsserver/Show-DnsServerCache.md | 2 +- .../Show-DnsServerKeyStorageProvider.md | 2 +- .../dnsserver/Start-DnsServerScavenging.md | 2 +- .../dnsserver/Start-DnsServerZoneTransfer.md | 2 +- .../Step-DnsServerSigningKeyRollover.md | 2 +- .../dnsserver/Suspend-DnsServerZone.md | 2 +- .../dnsserver/Sync-DnsServerZone.md | 2 +- .../dnsserver/Test-DnsServer.md | 2 +- .../Test-DnsServerDnsSecZoneSetting.md | 2 +- .../Unregister-DnsServerDirectoryPartition.md | 2 +- .../dnsserver/Update-DnsServerTrustPoint.md | 2 +- .../Add-EtwTraceProvider.md | 2 +- .../Get-AutologgerConfig.md | 2 +- .../Get-EtwTraceProvider.md | 2 +- .../Get-EtwTraceSession.md | 2 +- .../New-AutologgerConfig.md | 2 +- .../New-EtwTraceSession.md | 2 +- .../Remove-AutologgerConfig.md | 2 +- .../Remove-EtwTraceProvider.md | 2 +- .../Save-EtwTraceSession.md | 2 +- .../Send-EtwTraceSession.md | 2 +- .../Set-EtwTraceProvider.md | 2 +- .../Start-EtwTraceSession.md | 2 +- .../Stop-EtwTraceSession.md | 2 +- .../Update-AutologgerConfig.md | 2 +- .../Update-EtwTraceSession.md | 2 +- .../failoverclusters/Add-ClusterCheckpoint.md | 2 +- .../failoverclusters/Add-ClusterDisk.md | 2 +- .../Add-ClusterFileServerRole.md | 2 +- .../Add-ClusterGenericApplicationRole.md | 2 +- .../Add-ClusterGenericScriptRole.md | 2 +- .../Add-ClusterGenericServiceRole.md | 2 +- .../failoverclusters/Add-ClusterGroup.md | 2 +- .../Add-ClusterGroupSetDependency.md | 2 +- .../failoverclusters/Add-ClusterGroupToSet.md | 2 +- .../failoverclusters/Add-ClusterNode.md | 2 +- .../failoverclusters/Add-ClusterResource.md | 2 +- .../Add-ClusterResourceDependency.md | 2 +- .../Add-ClusterResourceType.md | 2 +- .../Add-ClusterScaleOutFileServerRole.md | 2 +- .../Add-ClusterSharedVolume.md | 2 +- .../Add-ClusterVMMonitoredItem.md | 2 +- .../Add-ClusterVirtualMachineRole.md | 2 +- .../Add-ClusteriSCSITargetServerRole.md | 2 +- .../failoverclusters/Block-ClusterAccess.md | 2 +- .../Clear-ClusterDiskReservation.md | 2 +- .../failoverclusters/Clear-ClusterNode.md | 2 +- .../Disable-ClusterStorageSpacesDirect.md | 2 +- .../Enable-ClusterStorageSpacesDirect.md | 2 +- .../failoverclusters/Get-Cluster.md | 2 +- .../failoverclusters/Get-ClusterAccess.md | 2 +- .../Get-ClusterAvailableDisk.md | 2 +- .../failoverclusters/Get-ClusterCheckpoint.md | 2 +- .../Get-ClusterDiagnosticInfo.md | 2 +- .../Get-ClusterFaultDomain.md | 2 +- .../Get-ClusterFaultDomainXML.md | 2 +- .../failoverclusters/Get-ClusterGroup.md | 2 +- .../failoverclusters/Get-ClusterGroupSet.md | 2 +- .../Get-ClusterGroupSetDependency.md | 2 +- .../failoverclusters/Get-ClusterLog.md | 2 +- .../failoverclusters/Get-ClusterNetwork.md | 2 +- .../Get-ClusterNetworkInterface.md | 2 +- .../failoverclusters/Get-ClusterNode.md | 2 +- .../failoverclusters/Get-ClusterOwnerNode.md | 2 +- .../failoverclusters/Get-ClusterParameter.md | 2 +- .../failoverclusters/Get-ClusterQuorum.md | 2 +- .../failoverclusters/Get-ClusterResource.md | 2 +- .../Get-ClusterResourceDependency.md | 2 +- .../Get-ClusterResourceDependencyReport.md | 2 +- .../Get-ClusterResourceType.md | 2 +- .../Get-ClusterSharedVolume.md | 2 +- .../Get-ClusterSharedVolumeState.md | 2 +- .../Get-ClusterStorageSpacesDirect.md | 2 +- .../Get-ClusterVMMonitoredItem.md | 2 +- .../failoverclusters/Grant-ClusterAccess.md | 2 +- .../failoverclusters/Move-ClusterGroup.md | 2 +- .../failoverclusters/Move-ClusterResource.md | 2 +- .../Move-ClusterSharedVolume.md | 2 +- .../Move-ClusterVirtualMachineRole.md | 2 +- .../failoverclusters/New-Cluster.md | 2 +- .../New-ClusterFaultDomain.md | 2 +- .../failoverclusters/New-ClusterGroupSet.md | 2 +- .../New-ClusterNameAccount.md | 2 +- .../failoverclusters/Remove-Cluster.md | 2 +- .../failoverclusters/Remove-ClusterAccess.md | 2 +- .../Remove-ClusterCheckpoint.md | 2 +- .../Remove-ClusterFaultDomain.md | 2 +- .../failoverclusters/Remove-ClusterGroup.md | 2 +- .../Remove-ClusterGroupFromSet.md | 2 +- .../Remove-ClusterGroupSet.md | 2 +- .../Remove-ClusterGroupSetDependency.md | 2 +- .../failoverclusters/Remove-ClusterNode.md | 2 +- .../Remove-ClusterResource.md | 2 +- .../Remove-ClusterResourceDependency.md | 2 +- .../Remove-ClusterResourceType.md | 2 +- .../Remove-ClusterSharedVolume.md | 2 +- .../Remove-ClusterVMMonitoredItem.md | 2 +- .../Repair-ClusterStorageSpacesDirect.md | 2 +- .../Reset-ClusterVMMonitoredState.md | 2 +- .../failoverclusters/Resume-ClusterNode.md | 2 +- .../Resume-ClusterResource.md | 2 +- .../Set-ClusterFaultDomain.md | 2 +- .../Set-ClusterFaultDomainXML.md | 2 +- .../failoverclusters/Set-ClusterGroupSet.md | 2 +- .../failoverclusters/Set-ClusterLog.md | 2 +- .../failoverclusters/Set-ClusterOwnerNode.md | 2 +- .../failoverclusters/Set-ClusterParameter.md | 2 +- .../failoverclusters/Set-ClusterQuorum.md | 2 +- .../Set-ClusterResourceDependency.md | 2 +- .../Set-ClusterStorageSpacesDirect.md | 2 +- .../Set-ClusterStorageSpacesDirectDisk.md | 2 +- .../failoverclusters/Start-Cluster.md | 2 +- .../failoverclusters/Start-ClusterGroup.md | 2 +- .../failoverclusters/Start-ClusterNode.md | 2 +- .../failoverclusters/Start-ClusterResource.md | 2 +- .../failoverclusters/Stop-Cluster.md | 2 +- .../failoverclusters/Stop-ClusterGroup.md | 2 +- .../failoverclusters/Stop-ClusterNode.md | 2 +- .../failoverclusters/Stop-ClusterResource.md | 2 +- .../failoverclusters/Suspend-ClusterNode.md | 2 +- .../Suspend-ClusterResource.md | 2 +- .../failoverclusters/Test-Cluster.md | 2 +- .../Test-ClusterResourceFailure.md | 2 +- .../Update-ClusterFunctionalLevel.md | 2 +- .../Update-ClusterIPResource.md | 2 +- .../Update-ClusterNetworkNameResource.md | 2 +- ...date-ClusterVirtualMachineConfiguration.md | 2 +- .../Get-FsrmAdrSetting.md | 2 +- .../Get-FsrmAutoQuota.md | 2 +- .../Get-FsrmClassification.md | 2 +- ...et-FsrmClassificationPropertyDefinition.md | 2 +- .../Get-FsrmClassificationRule.md | 2 +- .../Get-FsrmEffectiveNamespace.md | 2 +- .../Get-FsrmFileGroup.md | 2 +- .../Get-FsrmFileManagementJob.md | 2 +- .../Get-FsrmFileScreen.md | 2 +- .../Get-FsrmFileScreenException.md | 2 +- .../Get-FsrmFileScreenTemplate.md | 2 +- .../Get-FsrmMacro.md | 2 +- .../Get-FsrmMgmtProperty.md | 2 +- .../Get-FsrmQuota.md | 2 +- .../Get-FsrmQuotaTemplate.md | 2 +- .../Get-FsrmRmsTemplate.md | 2 +- .../Get-FsrmSetting.md | 2 +- .../Get-FsrmStorageReport.md | 2 +- .../New-FsrmAction.md | 2 +- .../New-FsrmAutoQuota.md | 2 +- ...ew-FsrmClassificationPropertyDefinition.md | 2 +- .../New-FsrmClassificationPropertyValue.md | 2 +- .../New-FsrmClassificationRule.md | 2 +- .../New-FsrmFMJNotification.md | 2 +- .../New-FsrmFileGroup.md | 2 +- .../New-FsrmFileManagementJob.md | 2 +- .../New-FsrmFileScreen.md | 2 +- .../New-FsrmFileScreenException.md | 2 +- .../New-FsrmFileScreenTemplate.md | 2 +- .../New-FsrmFmjAction.md | 2 +- .../New-FsrmFmjCondition.md | 2 +- .../New-FsrmFmjNotificationAction.md | 2 +- .../New-FsrmQuota.md | 2 +- .../New-FsrmQuotaTemplate.md | 2 +- .../New-FsrmQuotaThreshold.md | 2 +- .../New-FsrmScheduledTask.md | 2 +- .../New-FsrmStorageReport.md | 2 +- .../Remove-FsrmAutoQuota.md | 2 +- ...ve-FsrmClassificationPropertyDefinition.md | 2 +- .../Remove-FsrmClassificationRule.md | 2 +- .../Remove-FsrmFileGroup.md | 2 +- .../Remove-FsrmFileManagementJob.md | 2 +- .../Remove-FsrmFileScreen.md | 2 +- .../Remove-FsrmFileScreenException.md | 2 +- .../Remove-FsrmFileScreenTemplate.md | 2 +- .../Remove-FsrmMgmtProperty.md | 2 +- .../Remove-FsrmQuota.md | 2 +- .../Remove-FsrmQuotaTemplate.md | 2 +- .../Remove-FsrmStorageReport.md | 2 +- .../Reset-FsrmFileScreen.md | 2 +- .../Reset-FsrmQuota.md | 2 +- .../Send-FsrmTestEmail.md | 2 +- .../Set-FsrmAdrSetting.md | 2 +- .../Set-FsrmAutoQuota.md | 2 +- .../Set-FsrmClassification.md | 2 +- ...et-FsrmClassificationPropertyDefinition.md | 2 +- .../Set-FsrmClassificationRule.md | 2 +- .../Set-FsrmFileGroup.md | 2 +- .../Set-FsrmFileManagementJob.md | 2 +- .../Set-FsrmFileScreen.md | 2 +- .../Set-FsrmFileScreenException.md | 2 +- .../Set-FsrmFileScreenTemplate.md | 2 +- .../Set-FsrmMgmtProperty.md | 2 +- .../Set-FsrmQuota.md | 2 +- .../Set-FsrmQuotaTemplate.md | 2 +- .../Set-FsrmSetting.md | 2 +- .../Set-FsrmStorageReport.md | 2 +- .../Start-FsrmClassification.md | 2 +- .../Start-FsrmFileManagementJob.md | 2 +- .../Start-FsrmStorageReport.md | 2 +- .../Stop-FsrmClassification.md | 2 +- .../Stop-FsrmFileManagementJob.md | 2 +- .../Stop-FsrmStorageReport.md | 2 +- .../Update-FsrmAutoQuota.md | 2 +- ...te-FsrmClassificationPropertyDefinition.md | 2 +- .../Update-FsrmQuota.md | 2 +- .../Wait-FsrmClassification.md | 2 +- .../Wait-FsrmFileManagementJob.md | 2 +- .../Wait-FsrmStorageReport.md | 2 +- .../grouppolicy/Backup-GPO.md | 2 +- .../winserver2022-ps/grouppolicy/Copy-GPO.md | 2 +- .../grouppolicy/Get-GPInheritance.md | 2 +- .../winserver2022-ps/grouppolicy/Get-GPO.md | 2 +- .../grouppolicy/Get-GPOReport.md | 2 +- .../grouppolicy/Get-GPPermission.md | 2 +- .../grouppolicy/Get-GPPrefRegistryValue.md | 2 +- .../grouppolicy/Get-GPRegistryValue.md | 2 +- .../grouppolicy/Get-GPResultantSetOfPolicy.md | 2 +- .../grouppolicy/Get-GPStarterGPO.md | 2 +- .../grouppolicy/Import-GPO.md | 2 +- .../grouppolicy/Invoke-GPUpdate.md | 2 +- .../grouppolicy/New-GPLink.md | 2 +- .../winserver2022-ps/grouppolicy/New-GPO.md | 2 +- .../grouppolicy/New-GPStarterGPO.md | 2 +- .../grouppolicy/Remove-GPLink.md | 2 +- .../grouppolicy/Remove-GPO.md | 2 +- .../grouppolicy/Remove-GPPrefRegistryValue.md | 2 +- .../grouppolicy/Remove-GPRegistryValue.md | 2 +- .../grouppolicy/Rename-GPO.md | 2 +- .../grouppolicy/Restore-GPO.md | 2 +- .../grouppolicy/Set-GPInheritance.md | 2 +- .../grouppolicy/Set-GPLink.md | 2 +- .../grouppolicy/Set-GPPermission.md | 2 +- .../grouppolicy/Set-GPPrefRegistryValue.md | 2 +- .../grouppolicy/Set-GPRegistryValue.md | 2 +- .../Export-HwCertTestCollectionToXml.md | 2 +- .../Import-HwCertTestCollectionFromXml.md | 2 +- .../Merge-HwCertTestCollectionFromPackage.md | 2 +- .../Merge-HwCertTestCollectionFromXml.md | 2 +- .../New-HwCertProjectDefinitionFile.md | 2 +- .../New-HwCertTestCollection.md | 2 +- .../New-HwCertTestCollectionExcelReport.md | 2 +- .../Add-HgsAttestationCIPolicy.md | 2 +- .../Add-HgsAttestationDumpPolicy.md | 2 +- .../Add-HgsAttestationHostGroup.md | 2 +- .../Add-HgsAttestationTpmHost.md | 2 +- .../Add-HgsAttestationTpmPolicy.md | 2 +- .../Disable-HgsAttestationPolicy.md | 2 +- .../Enable-HgsAttestationPolicy.md | 2 +- .../Get-HgsAttestationHostGroup.md | 2 +- .../Get-HgsAttestationPolicy.md | 2 +- .../Get-HgsAttestationSignerCertificate.md | 2 +- .../Get-HgsAttestationTpmHost.md | 2 +- .../Remove-HgsAttestationHostGroup.md | 2 +- .../Remove-HgsAttestationPolicy.md | 2 +- .../Remove-HgsAttestationTpmHost.md | 2 +- .../hgsclient/ConvertTo-HgsKeyProtector.md | 2 +- .../hgsclient/Export-HgsGuardian.md | 2 +- .../Get-HgsAttestationBaselinePolicy.md | 2 +- .../hgsclient/Get-HgsClientConfiguration.md | 2 +- .../hgsclient/Get-HgsGuardian.md | 2 +- .../hgsclient/Grant-HgsKeyProtectorAccess.md | 2 +- .../hgsclient/Import-HgsGuardian.md | 2 +- .../hgsclient/New-HgsGuardian.md | 2 +- .../hgsclient/New-HgsKeyProtector.md | 2 +- .../hgsclient/Remove-HgsGuardian.md | 2 +- .../hgsclient/Revoke-HgsKeyProtectorAccess.md | 2 +- .../hgsclient/Set-HgsClientConfiguration.md | 2 +- .../hgsclient/Test-HgsClientConfiguration.md | 2 +- .../hgsdiagnostics/Get-HgsTrace.md | 2 +- .../hgsdiagnostics/Get-HgsTraceFileData.md | 2 +- .../hgsdiagnostics/New-HgsTraceTarget.md | 2 +- .../hgsdiagnostics/Test-HgsTraceTarget.md | 2 +- ...yProtectionAttestationSignerCertificate.md | 2 +- .../Add-HgsKeyProtectionCertificate.md | 2 +- .../Export-HgsKeyProtectionState.md | 2 +- ...yProtectionAttestationSignerCertificate.md | 2 +- .../Get-HgsKeyProtectionCertificate.md | 2 +- .../Get-HgsKeyProtectionConfiguration.md | 2 +- .../Import-HgsKeyProtectionState.md | 2 +- ...yProtectionAttestationSignerCertificate.md | 2 +- .../Remove-HgsKeyProtectionCertificate.md | 2 +- ...ctionAttestationSignerCertificatePolicy.md | 2 +- .../Set-HgsKeyProtectionCertificate.md | 2 +- .../Set-HgsKeyProtectionConfiguration.md | 2 +- .../hgsserver/Clear-HgsServer.md | 2 +- .../hgsserver/Export-HgsServerState.md | 2 +- .../hgsserver/Get-HgsServer.md | 2 +- .../hgsserver/Import-HgsServerState.md | 2 +- .../hgsserver/Initialize-HgsServer.md | 2 +- .../hgsserver/Install-HgsServer.md | 2 +- .../hgsserver/Set-HgsServer.md | 2 +- .../hgsserver/Test-HgsServer.md | 2 +- .../hgsserver/Uninstall-HgsServer.md | 2 +- .../hnvdiagnostics/Debug-SlbDatapath.md | 2 +- .../Debug-VirtualMachineQueueOperation.md | 2 +- .../Disable-MuxEchoResponder.md | 2 +- .../hnvdiagnostics/Enable-MuxEchoResponder.md | 2 +- .../hnvdiagnostics/Get-CustomerRoute.md | 2 +- .../Get-NetworkControllerVipResource.md | 2 +- .../hnvdiagnostics/Get-PACAMapping.md | 2 +- .../hnvdiagnostics/Get-ProviderAddress.md | 2 +- .../Get-VMNetworkAdapterPortId.md | 2 +- .../Get-VMSwitchExternalPortId.md | 2 +- .../hnvdiagnostics/Get-VipHostMapping.md | 2 +- .../Test-DipHostReachability.md | 2 +- .../Test-EncapOverheadSettings.md | 2 +- .../Test-LogicalNetworkConnection.md | 2 +- .../Test-LogicalNetworkSupportsJumboPacket.md | 2 +- .../hnvdiagnostics/Test-VipReachability.md | 2 +- .../Test-VirtualNetworkConnection.md | 2 +- .../hostcomputeservice/Get-ComputeProcess.md | 2 +- .../hostcomputeservice/Stop-ComputeProcess.md | 2 +- .../hyper-v/Add-VMDvdDrive.md | 2 +- .../hyper-v/Add-VMFibreChannelHba.md | 2 +- .../hyper-v/Add-VMGroupMember.md | 2 +- .../hyper-v/Add-VMHardDiskDrive.md | 2 +- .../hyper-v/Add-VMMigrationNetwork.md | 2 +- .../hyper-v/Add-VMNetworkAdapter.md | 2 +- .../hyper-v/Add-VMNetworkAdapterAcl.md | 2 +- .../Add-VMNetworkAdapterExtendedAcl.md | 2 +- .../hyper-v/Add-VMRemoteFx3dVideoAdapter.md | 2 +- .../hyper-v/Add-VMScsiController.md | 2 +- .../hyper-v/Add-VMStoragePath.md | 2 +- .../winserver2022-ps/hyper-v/Add-VMSwitch.md | 2 +- .../Add-VMSwitchExtensionPortFeature.md | 2 +- .../Add-VMSwitchExtensionSwitchFeature.md | 2 +- .../hyper-v/Add-VMSwitchTeamMember.md | 2 +- ...dd-VmNetworkAdapterRoutingDomainMapping.md | 2 +- .../winserver2022-ps/hyper-v/Checkpoint-VM.md | 2 +- docset/winserver2022-ps/hyper-v/Compare-VM.md | 2 +- .../hyper-v/Complete-VMFailover.md | 2 +- .../hyper-v/Connect-VMNetworkAdapter.md | 2 +- .../winserver2022-ps/hyper-v/Connect-VMSan.md | 2 +- .../winserver2022-ps/hyper-v/Convert-VHD.md | 2 +- .../winserver2022-ps/hyper-v/Copy-VMFile.md | 2 +- docset/winserver2022-ps/hyper-v/Debug-VM.md | 2 +- .../hyper-v/Disable-VMConsoleSupport.md | 2 +- .../hyper-v/Disable-VMEventing.md | 2 +- .../hyper-v/Disable-VMIntegrationService.md | 2 +- .../hyper-v/Disable-VMMigration.md | 2 +- .../Disable-VMRemoteFXPhysicalVideoAdapter.md | 2 +- .../hyper-v/Disable-VMResourceMetering.md | 2 +- .../hyper-v/Disable-VMSwitchExtension.md | 2 +- .../winserver2022-ps/hyper-v/Disable-VMTPM.md | 2 +- .../hyper-v/Disconnect-VMNetworkAdapter.md | 2 +- .../hyper-v/Disconnect-VMSan.md | 2 +- .../winserver2022-ps/hyper-v/Dismount-VHD.md | 2 +- .../hyper-v/Enable-VMConsoleSupport.md | 2 +- .../hyper-v/Enable-VMEventing.md | 2 +- .../hyper-v/Enable-VMIntegrationService.md | 2 +- .../hyper-v/Enable-VMMigration.md | 2 +- .../Enable-VMRemoteFXPhysicalVideoAdapter.md | 2 +- .../hyper-v/Enable-VMReplication.md | 2 +- .../hyper-v/Enable-VMResourceMetering.md | 2 +- .../hyper-v/Enable-VMSwitchExtension.md | 2 +- .../winserver2022-ps/hyper-v/Enable-VMTPM.md | 2 +- docset/winserver2022-ps/hyper-v/Export-VM.md | 2 +- .../hyper-v/Export-VMSnapshot.md | 2 +- docset/winserver2022-ps/hyper-v/Get-VHD.md | 2 +- docset/winserver2022-ps/hyper-v/Get-VHDSet.md | 2 +- .../hyper-v/Get-VHDSnapshot.md | 2 +- docset/winserver2022-ps/hyper-v/Get-VM.md | 2 +- docset/winserver2022-ps/hyper-v/Get-VMBios.md | 2 +- .../winserver2022-ps/hyper-v/Get-VMComPort.md | 2 +- .../hyper-v/Get-VMConnectAccess.md | 2 +- .../hyper-v/Get-VMDvdDrive.md | 2 +- .../hyper-v/Get-VMFibreChannelHba.md | 2 +- .../hyper-v/Get-VMFirmware.md | 2 +- .../hyper-v/Get-VMFloppyDiskDrive.md | 2 +- .../winserver2022-ps/hyper-v/Get-VMGroup.md | 2 +- .../hyper-v/Get-VMHardDiskDrive.md | 2 +- docset/winserver2022-ps/hyper-v/Get-VMHost.md | 2 +- .../hyper-v/Get-VMHostCluster.md | 2 +- .../hyper-v/Get-VMHostNumaNode.md | 2 +- .../hyper-v/Get-VMHostNumaNodeStatus.md | 2 +- .../hyper-v/Get-VMHostSupportedVersion.md | 2 +- .../hyper-v/Get-VMIdeController.md | 2 +- .../hyper-v/Get-VMIntegrationService.md | 2 +- .../hyper-v/Get-VMKeyProtector.md | 2 +- .../winserver2022-ps/hyper-v/Get-VMMemory.md | 2 +- .../hyper-v/Get-VMMigrationNetwork.md | 2 +- .../hyper-v/Get-VMNetworkAdapter.md | 2 +- .../hyper-v/Get-VMNetworkAdapterAcl.md | 2 +- .../Get-VMNetworkAdapterExtendedAcl.md | 2 +- ...t-VMNetworkAdapterFailoverConfiguration.md | 2 +- ...et-VMNetworkAdapterRoutingDomainMapping.md | 2 +- .../Get-VMNetworkAdapterTeamMapping.md | 2 +- .../hyper-v/Get-VMNetworkAdapterVlan.md | 2 +- .../hyper-v/Get-VMProcessor.md | 2 +- .../Get-VMRemoteFXPhysicalVideoAdapter.md | 2 +- .../hyper-v/Get-VMRemoteFx3dVideoAdapter.md | 2 +- .../hyper-v/Get-VMReplication.md | 2 +- .../Get-VMReplicationAuthorizationEntry.md | 2 +- .../hyper-v/Get-VMReplicationServer.md | 2 +- .../hyper-v/Get-VMResourcePool.md | 2 +- docset/winserver2022-ps/hyper-v/Get-VMSan.md | 2 +- .../hyper-v/Get-VMScsiController.md | 2 +- .../hyper-v/Get-VMSecurity.md | 2 +- .../hyper-v/Get-VMSnapshot.md | 2 +- .../hyper-v/Get-VMStoragePath.md | 2 +- .../winserver2022-ps/hyper-v/Get-VMSwitch.md | 2 +- .../hyper-v/Get-VMSwitchExtension.md | 2 +- .../hyper-v/Get-VMSwitchExtensionPortData.md | 2 +- .../Get-VMSwitchExtensionPortFeature.md | 2 +- .../Get-VMSwitchExtensionSwitchData.md | 2 +- .../Get-VMSwitchExtensionSwitchFeature.md | 2 +- .../hyper-v/Get-VMSwitchTeam.md | 2 +- .../hyper-v/Get-VMSystemSwitchExtension.md | 2 +- .../Get-VMSystemSwitchExtensionPortFeature.md | 2 +- ...et-VMSystemSwitchExtensionSwitchFeature.md | 2 +- .../winserver2022-ps/hyper-v/Get-VMVideo.md | 2 +- .../hyper-v/Get-VmNetworkAdapterIsolation.md | 2 +- .../hyper-v/Grant-VMConnectAccess.md | 2 +- docset/winserver2022-ps/hyper-v/Import-VM.md | 2 +- .../hyper-v/Import-VMInitialReplication.md | 2 +- docset/winserver2022-ps/hyper-v/Measure-VM.md | 2 +- .../hyper-v/Measure-VMReplication.md | 2 +- .../hyper-v/Measure-VMResourcePool.md | 2 +- docset/winserver2022-ps/hyper-v/Merge-VHD.md | 2 +- docset/winserver2022-ps/hyper-v/Mount-VHD.md | 2 +- docset/winserver2022-ps/hyper-v/Move-VM.md | 2 +- .../hyper-v/Move-VMStorage.md | 2 +- docset/winserver2022-ps/hyper-v/New-VFD.md | 2 +- docset/winserver2022-ps/hyper-v/New-VHD.md | 2 +- docset/winserver2022-ps/hyper-v/New-VM.md | 2 +- .../winserver2022-ps/hyper-v/New-VMGroup.md | 2 +- .../New-VMReplicationAuthorizationEntry.md | 2 +- .../hyper-v/New-VMResourcePool.md | 2 +- docset/winserver2022-ps/hyper-v/New-VMSan.md | 2 +- .../winserver2022-ps/hyper-v/New-VMSwitch.md | 2 +- .../winserver2022-ps/hyper-v/Optimize-VHD.md | 2 +- .../hyper-v/Optimize-VHDSet.md | 2 +- .../hyper-v/Remove-VHDSnapshot.md | 2 +- docset/winserver2022-ps/hyper-v/Remove-VM.md | 2 +- .../hyper-v/Remove-VMDvdDrive.md | 2 +- .../hyper-v/Remove-VMFibreChannelHba.md | 2 +- .../hyper-v/Remove-VMGroup.md | 2 +- .../hyper-v/Remove-VMGroupMember.md | 2 +- .../hyper-v/Remove-VMHardDiskDrive.md | 2 +- .../hyper-v/Remove-VMMigrationNetwork.md | 2 +- .../hyper-v/Remove-VMNetworkAdapter.md | 2 +- .../hyper-v/Remove-VMNetworkAdapterAcl.md | 2 +- .../Remove-VMNetworkAdapterExtendedAcl.md | 2 +- ...ve-VMNetworkAdapterRoutingDomainMapping.md | 2 +- .../Remove-VMNetworkAdapterTeamMapping.md | 2 +- .../Remove-VMRemoteFx3dVideoAdapter.md | 2 +- .../hyper-v/Remove-VMReplication.md | 2 +- .../Remove-VMReplicationAuthorizationEntry.md | 2 +- .../hyper-v/Remove-VMResourcePool.md | 2 +- .../winserver2022-ps/hyper-v/Remove-VMSan.md | 2 +- .../hyper-v/Remove-VMSavedState.md | 2 +- .../hyper-v/Remove-VMScsiController.md | 2 +- .../hyper-v/Remove-VMSnapshot.md | 2 +- .../hyper-v/Remove-VMStoragePath.md | 2 +- .../hyper-v/Remove-VMSwitch.md | 2 +- .../Remove-VMSwitchExtensionPortFeature.md | 2 +- .../Remove-VMSwitchExtensionSwitchFeature.md | 2 +- .../hyper-v/Remove-VMSwitchTeamMember.md | 2 +- docset/winserver2022-ps/hyper-v/Rename-VM.md | 2 +- .../hyper-v/Rename-VMGroup.md | 2 +- .../hyper-v/Rename-VMNetworkAdapter.md | 2 +- .../hyper-v/Rename-VMResourcePool.md | 2 +- .../winserver2022-ps/hyper-v/Rename-VMSan.md | 2 +- .../hyper-v/Rename-VMSnapshot.md | 2 +- .../hyper-v/Rename-VMSwitch.md | 2 +- docset/winserver2022-ps/hyper-v/Repair-VM.md | 2 +- .../hyper-v/Reset-VMReplicationStatistics.md | 2 +- .../hyper-v/Reset-VMResourceMetering.md | 2 +- docset/winserver2022-ps/hyper-v/Resize-VHD.md | 2 +- docset/winserver2022-ps/hyper-v/Restart-VM.md | 2 +- .../hyper-v/Restore-VMSnapshot.md | 2 +- docset/winserver2022-ps/hyper-v/Resume-VM.md | 2 +- .../hyper-v/Resume-VMReplication.md | 2 +- .../hyper-v/Revoke-VMConnectAccess.md | 2 +- docset/winserver2022-ps/hyper-v/Save-VM.md | 2 +- docset/winserver2022-ps/hyper-v/Set-VHD.md | 2 +- docset/winserver2022-ps/hyper-v/Set-VM.md | 2 +- docset/winserver2022-ps/hyper-v/Set-VMBios.md | 2 +- .../winserver2022-ps/hyper-v/Set-VMComPort.md | 2 +- .../hyper-v/Set-VMDvdDrive.md | 2 +- .../hyper-v/Set-VMFibreChannelHba.md | 2 +- .../hyper-v/Set-VMFirmware.md | 2 +- .../hyper-v/Set-VMFloppyDiskDrive.md | 2 +- .../hyper-v/Set-VMHardDiskDrive.md | 2 +- docset/winserver2022-ps/hyper-v/Set-VMHost.md | 2 +- .../hyper-v/Set-VMHostCluster.md | 2 +- .../hyper-v/Set-VMKeyProtector.md | 2 +- .../winserver2022-ps/hyper-v/Set-VMMemory.md | 2 +- .../hyper-v/Set-VMMigrationNetwork.md | 2 +- .../hyper-v/Set-VMNetworkAdapter.md | 2 +- ...t-VMNetworkAdapterFailoverConfiguration.md | 2 +- .../Set-VMNetworkAdapterTeamMapping.md | 2 +- .../hyper-v/Set-VMNetworkAdapterVlan.md | 2 +- .../hyper-v/Set-VMProcessor.md | 2 +- .../hyper-v/Set-VMRemoteFx3dVideoAdapter.md | 2 +- .../hyper-v/Set-VMReplication.md | 2 +- .../Set-VMReplicationAuthorizationEntry.md | 2 +- .../hyper-v/Set-VMReplicationServer.md | 2 +- .../hyper-v/Set-VMResourcePool.md | 2 +- docset/winserver2022-ps/hyper-v/Set-VMSan.md | 2 +- .../hyper-v/Set-VMSecurity.md | 2 +- .../hyper-v/Set-VMSecurityPolicy.md | 2 +- .../winserver2022-ps/hyper-v/Set-VMSwitch.md | 2 +- .../Set-VMSwitchExtensionPortFeature.md | 2 +- .../Set-VMSwitchExtensionSwitchFeature.md | 2 +- .../hyper-v/Set-VMSwitchTeam.md | 2 +- .../winserver2022-ps/hyper-v/Set-VMVideo.md | 2 +- .../hyper-v/Set-VmNetworkAdapterIsolation.md | 2 +- ...et-VmNetworkAdapterRoutingDomainMapping.md | 2 +- docset/winserver2022-ps/hyper-v/Start-VM.md | 2 +- .../hyper-v/Start-VMFailover.md | 2 +- .../hyper-v/Start-VMInitialReplication.md | 2 +- .../winserver2022-ps/hyper-v/Start-VMTrace.md | 2 +- docset/winserver2022-ps/hyper-v/Stop-VM.md | 2 +- .../hyper-v/Stop-VMFailover.md | 2 +- .../hyper-v/Stop-VMInitialReplication.md | 2 +- .../hyper-v/Stop-VMReplication.md | 2 +- .../winserver2022-ps/hyper-v/Stop-VMTrace.md | 2 +- docset/winserver2022-ps/hyper-v/Suspend-VM.md | 2 +- .../hyper-v/Suspend-VMReplication.md | 2 +- docset/winserver2022-ps/hyper-v/Test-VHD.md | 2 +- .../hyper-v/Test-VMNetworkAdapter.md | 2 +- .../hyper-v/Test-VMReplicationConnection.md | 2 +- .../hyper-v/Update-VMVersion.md | 2 +- .../Clear-IISCentralCertProvider.md | 2 +- .../Clear-IISConfigCollection.md | 2 +- .../Disable-IISCentralCertProvider.md | 2 +- .../Disable-IISSharedConfig.md | 2 +- .../Enable-IISCentralCertProvider.md | 2 +- .../Enable-IISSharedConfig.md | 2 +- .../Export-IISConfiguration.md | 2 +- .../iisadministration/Get-IISAppPool.md | 2 +- .../Get-IISCentralCertProvider.md | 2 +- .../Get-IISConfigAttributeValue.md | 2 +- .../Get-IISConfigCollection.md | 2 +- .../Get-IISConfigCollectionElement.md | 2 +- .../iisadministration/Get-IISConfigElement.md | 2 +- .../iisadministration/Get-IISConfigSection.md | 2 +- .../iisadministration/Get-IISServerManager.md | 2 +- .../iisadministration/Get-IISSharedConfig.md | 2 +- .../iisadministration/Get-IISSite.md | 2 +- .../iisadministration/Get-IISSiteBinding.md | 2 +- .../New-IISConfigCollectionElement.md | 2 +- .../iisadministration/New-IISSite.md | 2 +- .../iisadministration/New-IISSiteBinding.md | 2 +- .../Remove-IISConfigAttribute.md | 2 +- .../Remove-IISConfigCollectionElement.md | 2 +- .../Remove-IISConfigElement.md | 2 +- .../iisadministration/Remove-IISSite.md | 2 +- .../Remove-IISSiteBinding.md | 2 +- .../Reset-IISServerManager.md | 2 +- .../Set-IISCentralCertProvider.md | 2 +- .../Set-IISCentralCertProviderCredential.md | 2 +- .../Set-IISConfigAttributeValue.md | 2 +- .../iisadministration/Start-IISCommitDelay.md | 2 +- .../iisadministration/Start-IISSite.md | 2 +- .../iisadministration/Stop-IISCommitDelay.md | 2 +- .../iisadministration/Stop-IISSite.md | 2 +- .../Copy-UserInternationalSettingsToSystem.md | 13 +++------- ...WinAcceptLanguageFromLanguageListOptOut.md | 2 +- .../Get-WinCultureFromLanguageListOptOut.md | 2 +- .../Get-WinDefaultInputMethodOverride.md | 2 +- .../international/Get-WinHomeLocation.md | 2 +- .../international/Get-WinLanguageBarOption.md | 2 +- .../international/Get-WinSystemLocale.md | 2 +- .../Get-WinUILanguageOverride.md | 2 +- .../international/Get-WinUserLanguageList.md | 2 +- .../international/International.md | 2 +- .../international/New-WinUserLanguageList.md | 2 +- .../international/Set-Culture.md | 2 +- ...WinAcceptLanguageFromLanguageListOptOut.md | 2 +- .../Set-WinCultureFromLanguageListOptOut.md | 2 +- .../Set-WinDefaultInputMethodOverride.md | 2 +- .../international/Set-WinHomeLocation.md | 2 +- .../international/Set-WinLanguageBarOption.md | 2 +- .../international/Set-WinSystemLocale.md | 2 +- .../Set-WinUILanguageOverride.md | 2 +- .../international/Set-WinUserLanguageList.md | 2 +- .../ipamserver/Add-IpamAddress.md | 2 +- .../ipamserver/Add-IpamAddressSpace.md | 2 +- .../ipamserver/Add-IpamBlock.md | 2 +- .../ipamserver/Add-IpamCustomField.md | 2 +- .../Add-IpamCustomFieldAssociation.md | 2 +- .../ipamserver/Add-IpamCustomValue.md | 2 +- .../ipamserver/Add-IpamDiscoveryDomain.md | 2 +- .../ipamserver/Add-IpamRange.md | 2 +- .../ipamserver/Add-IpamServerInventory.md | 2 +- .../ipamserver/Add-IpamSubnet.md | 2 +- .../ipamserver/Disable-IpamCapability.md | 2 +- .../ipamserver/Enable-IpamCapability.md | 2 +- .../ipamserver/Export-IpamAddress.md | 2 +- .../ipamserver/Export-IpamRange.md | 2 +- .../ipamserver/Export-IpamSubnet.md | 2 +- .../ipamserver/Find-IpamFreeAddress.md | 2 +- .../ipamserver/Find-IpamFreeRange.md | 2 +- .../ipamserver/Find-IpamFreeSubnet.md | 2 +- .../ipamserver/Get-IpamAddress.md | 2 +- .../ipamserver/Get-IpamAddressSpace.md | 2 +- .../Get-IpamAddressUtilizationThreshold.md | 2 +- .../ipamserver/Get-IpamBlock.md | 2 +- .../ipamserver/Get-IpamCapability.md | 2 +- .../ipamserver/Get-IpamConfiguration.md | 2 +- .../ipamserver/Get-IpamConfigurationEvent.md | 2 +- .../ipamserver/Get-IpamCustomField.md | 2 +- .../Get-IpamCustomFieldAssociation.md | 2 +- .../ipamserver/Get-IpamDatabase.md | 2 +- .../Get-IpamDhcpConfigurationEvent.md | 2 +- .../ipamserver/Get-IpamDhcpScope.md | 2 +- .../ipamserver/Get-IpamDhcpServer.md | 2 +- .../ipamserver/Get-IpamDhcpSuperscope.md | 2 +- .../ipamserver/Get-IpamDiscoveryDomain.md | 2 +- .../Get-IpamDnsConditionalForwarder.md | 2 +- .../ipamserver/Get-IpamDnsResourceRecord.md | 2 +- .../ipamserver/Get-IpamDnsServer.md | 2 +- .../ipamserver/Get-IpamDnsZone.md | 2 +- .../ipamserver/Get-IpamIpAddressAuditEvent.md | 2 +- .../ipamserver/Get-IpamRange.md | 2 +- .../ipamserver/Get-IpamServerInventory.md | 2 +- .../ipamserver/Get-IpamSubnet.md | 2 +- .../ipamserver/Import-IpamAddress.md | 2 +- .../ipamserver/Import-IpamRange.md | 2 +- .../ipamserver/Import-IpamSubnet.md | 2 +- .../ipamserver/Invoke-IpamGpoProvisioning.md | 2 +- .../Invoke-IpamServerProvisioning.md | 2 +- .../ipamserver/Move-IpamDatabase.md | 2 +- .../ipamserver/Remove-IpamAddress.md | 2 +- .../ipamserver/Remove-IpamAddressSpace.md | 2 +- .../ipamserver/Remove-IpamBlock.md | 2 +- .../Remove-IpamConfigurationEvent.md | 2 +- .../ipamserver/Remove-IpamCustomField.md | 2 +- .../Remove-IpamCustomFieldAssociation.md | 2 +- .../ipamserver/Remove-IpamCustomValue.md | 2 +- .../Remove-IpamDhcpConfigurationEvent.md | 2 +- .../ipamserver/Remove-IpamDiscoveryDomain.md | 2 +- .../Remove-IpamIpAddressAuditEvent.md | 2 +- .../ipamserver/Remove-IpamRange.md | 2 +- .../ipamserver/Remove-IpamServerInventory.md | 2 +- .../ipamserver/Remove-IpamSubnet.md | 2 +- .../ipamserver/Remove-IpamUtilizationData.md | 2 +- .../ipamserver/Rename-IpamCustomField.md | 2 +- .../ipamserver/Rename-IpamCustomValue.md | 2 +- .../ipamserver/Set-IpamAccessScope.md | 2 +- .../ipamserver/Set-IpamAddress.md | 2 +- .../ipamserver/Set-IpamAddressSpace.md | 2 +- .../Set-IpamAddressUtilizationThreshold.md | 2 +- .../ipamserver/Set-IpamBlock.md | 2 +- .../ipamserver/Set-IpamConfiguration.md | 2 +- .../Set-IpamCustomFieldAssociation.md | 2 +- .../ipamserver/Set-IpamDatabase.md | 2 +- .../ipamserver/Set-IpamDiscoveryDomain.md | 2 +- .../ipamserver/Set-IpamRange.md | 2 +- .../ipamserver/Set-IpamServerInventory.md | 2 +- .../ipamserver/Set-IpamSubnet.md | 2 +- .../ipamserver/Update-IpamServer.md | 2 +- .../iscsi/Connect-IscsiTarget.md | 2 +- .../iscsi/Disconnect-IscsiTarget.md | 2 +- .../iscsi/Get-IscsiConnection.md | 2 +- .../iscsi/Get-IscsiSession.md | 2 +- .../winserver2022-ps/iscsi/Get-IscsiTarget.md | 2 +- .../iscsi/Get-IscsiTargetPortal.md | 2 +- .../iscsi/New-IscsiTargetPortal.md | 2 +- .../iscsi/Register-IscsiSession.md | 2 +- .../iscsi/Remove-IscsiTargetPortal.md | 2 +- .../iscsi/Set-IscsiChapSecret.md | 2 +- .../iscsi/Unregister-IscsiSession.md | 2 +- .../iscsi/Update-IscsiTarget.md | 2 +- .../iscsi/Update-IscsiTargetPortal.md | 2 +- .../Add-IscsiVirtualDiskTargetMapping.md | 2 +- .../Checkpoint-IscsiVirtualDisk.md | 2 +- .../iscsitarget/Convert-IscsiVirtualDisk.md | 2 +- .../Dismount-IscsiVirtualDiskSnapshot.md | 2 +- .../Export-IscsiTargetServerConfiguration.md | 2 +- .../Export-IscsiVirtualDiskSnapshot.md | 2 +- .../iscsitarget/Get-IscsiServerTarget.md | 2 +- .../Get-IscsiTargetServerSetting.md | 2 +- .../iscsitarget/Get-IscsiVirtualDisk.md | 2 +- .../Get-IscsiVirtualDiskSnapshot.md | 2 +- .../Import-IscsiTargetServerConfiguration.md | 2 +- .../iscsitarget/Import-IscsiVirtualDisk.md | 2 +- .../Mount-IscsiVirtualDiskSnapshot.md | 2 +- .../iscsitarget/New-IscsiServerTarget.md | 2 +- .../iscsitarget/New-IscsiVirtualDisk.md | 2 +- .../iscsitarget/Remove-IscsiServerTarget.md | 2 +- .../iscsitarget/Remove-IscsiVirtualDisk.md | 2 +- .../Remove-IscsiVirtualDiskSnapshot.md | 2 +- .../Remove-IscsiVirtualDiskTargetMapping.md | 2 +- .../iscsitarget/Resize-IscsiVirtualDisk.md | 2 +- .../iscsitarget/Restore-IscsiVirtualDisk.md | 2 +- .../iscsitarget/Set-IscsiServerTarget.md | 2 +- .../Set-IscsiTargetServerSetting.md | 2 +- .../iscsitarget/Set-IscsiVirtualDisk.md | 2 +- .../Set-IscsiVirtualDiskSnapshot.md | 2 +- .../Stop-IscsiVirtualDiskOperation.md | 2 +- docset/winserver2022-ps/kds/Add-KdsRootKey.md | 2 +- docset/winserver2022-ps/kds/Clear-KdsCache.md | 2 +- .../kds/Get-KdsConfiguration.md | 2 +- docset/winserver2022-ps/kds/Get-KdsRootKey.md | 2 +- .../kds/Set-KdsConfiguration.md | 2 +- .../winserver2022-ps/kds/Test-KdsRootKey.md | 2 +- .../Get-InstalledLanguage.md | 6 ++--- .../Get-SystemPreferredUILanguage.md | 6 ++--- .../Install-Language.md | 6 ++--- .../LanguagePackManagement.md | 8 +++--- .../Set-SystemPreferredUILanguage.md | 6 ++--- .../Uninstall-Language.md | 6 ++--- .../mmagent/Debug-MMAppPrelaunch.md | 2 +- .../mmagent/Disable-MMAgent.md | 2 +- .../mmagent/Enable-MMAgent.md | 2 +- .../winserver2022-ps/mmagent/Get-MMAgent.md | 2 +- .../winserver2022-ps/mmagent/Set-MMAgent.md | 2 +- .../mpio/Clear-MSDSMSupportedHW.md | 2 +- .../mpio/Disable-MSDSMAutomaticClaim.md | 2 +- .../mpio/Enable-MSDSMAutomaticClaim.md | 2 +- .../mpio/Get-MPIOAvailableHW.md | 2 +- .../winserver2022-ps/mpio/Get-MPIOSetting.md | 2 +- .../mpio/Get-MSDSMAutomaticClaimSettings.md | 2 +- ...Get-MSDSMGlobalDefaultLoadBalancePolicy.md | 2 +- .../mpio/Get-MSDSMSupportedHW.md | 2 +- .../mpio/New-MSDSMSupportedHW.md | 2 +- .../mpio/Remove-MSDSMSupportedHW.md | 2 +- .../winserver2022-ps/mpio/Set-MPIOSetting.md | 2 +- ...Set-MSDSMGlobalDefaultLoadBalancePolicy.md | 2 +- .../mpio/Update-MPIOClaimedHW.md | 2 +- .../msdtc/Add-DtcClusterTMMapping.md | 2 +- .../Complete-DtcDiagnosticTransaction.md | 2 +- docset/winserver2022-ps/msdtc/Get-Dtc.md | 2 +- .../msdtc/Get-DtcAdvancedHostSetting.md | 2 +- .../msdtc/Get-DtcAdvancedSetting.md | 2 +- .../msdtc/Get-DtcClusterDefault.md | 2 +- .../msdtc/Get-DtcClusterTMMapping.md | 2 +- .../winserver2022-ps/msdtc/Get-DtcDefault.md | 2 +- docset/winserver2022-ps/msdtc/Get-DtcLog.md | 2 +- .../msdtc/Get-DtcNetworkSetting.md | 2 +- .../msdtc/Get-DtcTransaction.md | 2 +- .../msdtc/Get-DtcTransactionsStatistics.md | 2 +- .../msdtc/Get-DtcTransactionsTraceSession.md | 2 +- .../msdtc/Get-DtcTransactionsTraceSetting.md | 2 +- docset/winserver2022-ps/msdtc/Install-Dtc.md | 2 +- .../Join-DtcDiagnosticResourceManager.md | 2 +- .../msdtc/New-DtcDiagnosticTransaction.md | 2 +- .../msdtc/Receive-DtcDiagnosticTransaction.md | 2 +- .../msdtc/Remove-DtcClusterTMMapping.md | 2 +- docset/winserver2022-ps/msdtc/Reset-DtcLog.md | 2 +- .../msdtc/Send-DtcDiagnosticTransaction.md | 2 +- .../msdtc/Set-DtcAdvancedHostSetting.md | 2 +- .../msdtc/Set-DtcAdvancedSetting.md | 2 +- .../msdtc/Set-DtcClusterDefault.md | 2 +- .../msdtc/Set-DtcClusterTMMapping.md | 2 +- .../winserver2022-ps/msdtc/Set-DtcDefault.md | 2 +- docset/winserver2022-ps/msdtc/Set-DtcLog.md | 2 +- .../msdtc/Set-DtcNetworkSetting.md | 2 +- .../msdtc/Set-DtcTransaction.md | 2 +- .../msdtc/Set-DtcTransactionsTraceSession.md | 2 +- .../msdtc/Set-DtcTransactionsTraceSetting.md | 2 +- docset/winserver2022-ps/msdtc/Start-Dtc.md | 2 +- .../Start-DtcDiagnosticResourceManager.md | 2 +- .../Start-DtcTransactionsTraceSession.md | 2 +- docset/winserver2022-ps/msdtc/Stop-Dtc.md | 2 +- .../Stop-DtcDiagnosticResourceManager.md | 2 +- .../msdtc/Stop-DtcTransactionsTraceSession.md | 2 +- docset/winserver2022-ps/msdtc/Test-Dtc.md | 2 +- .../msdtc/Undo-DtcDiagnosticTransaction.md | 2 +- .../winserver2022-ps/msdtc/Uninstall-Dtc.md | 2 +- .../Write-DtcTransactionsTraceSession.md | 2 +- .../msmq/Clear-MSMQOutgoingQueue.md | 2 +- .../winserver2022-ps/msmq/Clear-MSMQQueue.md | 2 +- .../msmq/Enable-MSMQCertificate.md | 2 +- .../msmq/Get-MSMQCertificate.md | 2 +- .../msmq/Get-MSMQOutgoingQueue.md | 2 +- docset/winserver2022-ps/msmq/Get-MsmqQueue.md | 2 +- .../winserver2022-ps/msmq/Get-MsmqQueueACL.md | 2 +- .../msmq/Get-MsmqQueueManager.md | 2 +- .../msmq/Get-MsmqQueueManagerACL.md | 2 +- .../winserver2022-ps/msmq/Move-MsmqMessage.md | 2 +- .../winserver2022-ps/msmq/New-MsmqMessage.md | 2 +- docset/winserver2022-ps/msmq/New-MsmqQueue.md | 2 +- .../msmq/Receive-MsmqQueue.md | 2 +- .../msmq/Remove-MsmqCertificate.md | 2 +- .../winserver2022-ps/msmq/Remove-MsmqQueue.md | 2 +- .../msmq/Resume-MsmqOutgoingQueue.md | 2 +- .../winserver2022-ps/msmq/Send-MsmqQueue.md | 2 +- docset/winserver2022-ps/msmq/Set-MsmqQueue.md | 2 +- .../winserver2022-ps/msmq/Set-MsmqQueueACL.md | 2 +- .../msmq/Set-MsmqQueueManager.md | 2 +- .../msmq/Set-MsmqQueueManagerACL.md | 2 +- .../msmq/Suspend-MsmqOutgoingQueue.md | 2 +- .../multipoint/Add-WmsSystem.md | 2 +- .../multipoint/Clear-WmsStation.md | 2 +- .../multipoint/Close-WmsApp.md | 2 +- .../multipoint/Close-WmsSession.md | 2 +- .../multipoint/Disable-WmsDiskProtection.md | 2 +- .../multipoint/Disable-WmsScheduledUpdate.md | 2 +- .../multipoint/Disable-WmsWebLimiting.md | 2 +- .../multipoint/Disconnect-WmsSession.md | 2 +- .../multipoint/Enable-WmsDiskProtection.md | 2 +- .../multipoint/Enable-WmsScheduledUpdate.md | 2 +- .../multipoint/Enable-WmsWebLimiting.md | 2 +- .../multipoint/Get-WmsAlert.md | 2 +- .../winserver2022-ps/multipoint/Get-WmsApp.md | 2 +- .../multipoint/Get-WmsDiskProtection.md | 2 +- .../multipoint/Get-WmsScheduledUpdate.md | 2 +- .../multipoint/Get-WmsSession.md | 2 +- .../multipoint/Get-WmsStation.md | 2 +- .../multipoint/Get-WmsSystem.md | 2 +- .../multipoint/Get-WmsUser.md | 2 +- .../multipoint/Get-WmsVersion.md | 2 +- .../multipoint/Get-WmsWebLimiting.md | 2 +- .../multipoint/Hide-WmsIdentifier.md | 2 +- .../multipoint/Join-WmsStation.md | 2 +- .../multipoint/Lock-WmsSession.md | 2 +- .../multipoint/Lock-WmsUsbStorage.md | 2 +- .../multipoint/New-WmsUser.md | 2 +- .../multipoint/Open-WmsApp.md | 2 +- .../multipoint/Publish-WmsDesktop.md | 2 +- .../multipoint/Remove-WmsSystem.md | 2 +- .../multipoint/Remove-WmsUser.md | 2 +- .../multipoint/Restart-WmsSystem.md | 2 +- .../multipoint/Resume-WmsDiskProtection.md | 2 +- .../multipoint/Search-WmsSystem.md | 2 +- .../multipoint/Set-WmsScheduledUpdate.md | 2 +- .../multipoint/Set-WmsStation.md | 2 +- .../multipoint/Set-WmsSystem.md | 2 +- .../multipoint/Set-WmsUser.md | 2 +- .../multipoint/Set-WmsWebLimiting.md | 2 +- .../multipoint/Show-WmsDesktop.md | 2 +- .../multipoint/Show-WmsIdentifier.md | 2 +- .../multipoint/Split-WmsStation.md | 2 +- .../multipoint/Stop-WmsSystem.md | 2 +- .../multipoint/Suspend-WmsDiskProtection.md | 2 +- .../multipoint/Unlock-WmsSession.md | 2 +- .../multipoint/Unlock-WmsUsbStorage.md | 2 +- .../multipoint/Unpublish-WmsDesktop.md | 2 +- .../multipoint/Update-WmsStation.md | 2 +- .../Disable-WmsVirtualDesktopRole.md | 2 +- .../Enable-WmsVirtualDesktopRole.md | 2 +- .../multipointvdi/Get-WmsVirtualDesktop.md | 2 +- .../multipointvdi/Import-WmsVirtualDesktop.md | 2 +- .../multipointvdi/New-WmsVirtualDesktop.md | 2 +- .../New-WmsVirtualDesktopTemplate.md | 2 +- .../multipointvdi/Open-WmsVirtualDesktop.md | 2 +- .../Edit-NanoServerImage.md | 2 +- .../Get-NanoServerPackage.md | 2 +- .../New-NanoServerImage.md | 2 +- .../netadapter/Disable-NetAdapter.md | 2 +- .../netadapter/Disable-NetAdapterBinding.md | 2 +- .../Disable-NetAdapterChecksumOffload.md | 2 +- ...NetAdapterEncapsulatedPacketTaskOffload.md | 2 +- .../Disable-NetAdapterIPsecOffload.md | 2 +- .../netadapter/Disable-NetAdapterLso.md | 2 +- .../Disable-NetAdapterPowerManagement.md | 2 +- .../netadapter/Disable-NetAdapterQos.md | 2 +- .../netadapter/Disable-NetAdapterRdma.md | 2 +- .../netadapter/Disable-NetAdapterRsc.md | 2 +- .../netadapter/Disable-NetAdapterRss.md | 2 +- .../netadapter/Disable-NetAdapterSriov.md | 2 +- .../netadapter/Disable-NetAdapterUso.md | 4 +-- .../netadapter/Disable-NetAdapterVmq.md | 2 +- .../netadapter/Enable-NetAdapter.md | 2 +- .../netadapter/Enable-NetAdapterBinding.md | 2 +- .../Enable-NetAdapterChecksumOffload.md | 2 +- ...NetAdapterEncapsulatedPacketTaskOffload.md | 2 +- .../Enable-NetAdapterIPsecOffload.md | 2 +- .../netadapter/Enable-NetAdapterLso.md | 2 +- .../Enable-NetAdapterPowerManagement.md | 2 +- .../netadapter/Enable-NetAdapterQos.md | 2 +- .../netadapter/Enable-NetAdapterRdma.md | 2 +- .../netadapter/Enable-NetAdapterRsc.md | 2 +- .../netadapter/Enable-NetAdapterRss.md | 2 +- .../netadapter/Enable-NetAdapterSriov.md | 2 +- .../netadapter/Enable-NetAdapterUso.md | 4 +-- .../netadapter/Enable-NetAdapterVmq.md | 2 +- .../netadapter/Get-NetAdapter.md | 2 +- .../Get-NetAdapterAdvancedProperty.md | 2 +- .../netadapter/Get-NetAdapterBinding.md | 2 +- .../Get-NetAdapterChecksumOffload.md | 2 +- .../Get-NetAdapterDataPathConfiguration.md | 4 +-- ...NetAdapterEncapsulatedPacketTaskOffload.md | 2 +- .../netadapter/Get-NetAdapterHardwareInfo.md | 2 +- .../netadapter/Get-NetAdapterIPsecOffload.md | 2 +- .../netadapter/Get-NetAdapterLso.md | 2 +- .../Get-NetAdapterPowerManagement.md | 2 +- .../netadapter/Get-NetAdapterQos.md | 2 +- .../netadapter/Get-NetAdapterRdma.md | 2 +- .../netadapter/Get-NetAdapterRsc.md | 2 +- .../netadapter/Get-NetAdapterRss.md | 2 +- .../netadapter/Get-NetAdapterSriov.md | 2 +- .../netadapter/Get-NetAdapterSriovVf.md | 2 +- .../netadapter/Get-NetAdapterStatistics.md | 2 +- .../netadapter/Get-NetAdapterUso.md | 4 +-- .../netadapter/Get-NetAdapterVPort.md | 2 +- .../netadapter/Get-NetAdapterVmq.md | 2 +- .../netadapter/Get-NetAdapterVmqQueue.md | 2 +- .../New-NetAdapterAdvancedProperty.md | 2 +- .../Remove-NetAdapterAdvancedProperty.md | 2 +- .../netadapter/Rename-NetAdapter.md | 2 +- .../Reset-NetAdapterAdvancedProperty.md | 2 +- .../netadapter/Restart-NetAdapter.md | 2 +- .../netadapter/Set-NetAdapter.md | 2 +- .../Set-NetAdapterAdvancedProperty.md | 2 +- .../netadapter/Set-NetAdapterBinding.md | 2 +- .../Set-NetAdapterChecksumOffload.md | 2 +- .../Set-NetAdapterDataPathConfiguration.md | 4 +-- ...NetAdapterEncapsulatedPacketTaskOffload.md | 2 +- .../netadapter/Set-NetAdapterIPsecOffload.md | 2 +- .../netadapter/Set-NetAdapterLso.md | 2 +- .../Set-NetAdapterPowerManagement.md | 2 +- .../netadapter/Set-NetAdapterQos.md | 2 +- .../netadapter/Set-NetAdapterRdma.md | 2 +- .../netadapter/Set-NetAdapterRsc.md | 2 +- .../netadapter/Set-NetAdapterRss.md | 2 +- .../netadapter/Set-NetAdapterSriov.md | 2 +- .../netadapter/Set-NetAdapterUso.md | 4 +-- .../netadapter/Set-NetAdapterVmq.md | 2 +- .../netconnection/Get-NetConnectionProfile.md | 2 +- .../netconnection/Set-NetConnectionProfile.md | 2 +- .../Add-NetEventNetworkAdapter.md | 2 +- .../Add-NetEventPacketCaptureProvider.md | 2 +- .../Add-NetEventProvider.md | 2 +- .../Add-NetEventVFPProvider.md | 2 +- .../Add-NetEventVmNetworkAdapter.md | 2 +- .../Add-NetEventVmSwitch.md | 2 +- .../Add-NetEventVmSwitchProvider.md | 2 +- .../Add-NetEventWFPCaptureProvider.md | 2 +- .../Get-NetEventNetworkAdapter.md | 2 +- .../Get-NetEventPacketCaptureProvider.md | 2 +- .../Get-NetEventProvider.md | 2 +- .../Get-NetEventSession.md | 2 +- .../Get-NetEventVFPProvider.md | 2 +- .../Get-NetEventVmNetworkAdapter.md | 2 +- .../Get-NetEventVmSwitch.md | 2 +- .../Get-NetEventVmSwitchProvider.md | 2 +- .../Get-NetEventWFPCaptureProvider.md | 2 +- .../New-NetEventSession.md | 2 +- .../Remove-NetEventNetworkAdapter.md | 2 +- .../Remove-NetEventPacketCaptureProvider.md | 2 +- .../Remove-NetEventProvider.md | 2 +- .../Remove-NetEventSession.md | 2 +- .../Remove-NetEventVFPProvider.md | 2 +- .../Remove-NetEventVmNetworkAdapter.md | 2 +- .../Remove-NetEventVmSwitch.md | 2 +- .../Remove-NetEventVmSwitchProvider.md | 2 +- .../Remove-NetEventWFPCaptureProvider.md | 2 +- .../Set-NetEventPacketCaptureProvider.md | 2 +- .../Set-NetEventProvider.md | 2 +- .../Set-NetEventSession.md | 2 +- .../Set-NetEventVFPProvider.md | 2 +- .../Set-NetEventVmSwitchProvider.md | 2 +- .../Set-NetEventWFPCaptureProvider.md | 2 +- .../Start-NetEventSession.md | 2 +- .../Stop-NetEventSession.md | 2 +- .../netlbfo/Add-NetLbfoTeamMember.md | 2 +- .../netlbfo/Add-NetLbfoTeamNic.md | 2 +- .../netlbfo/Get-NetLbfoTeam.md | 2 +- .../netlbfo/Get-NetLbfoTeamMember.md | 2 +- .../netlbfo/Get-NetLbfoTeamNic.md | 2 +- .../netlbfo/New-NetLbfoTeam.md | 2 +- .../netlbfo/Remove-NetLbfoTeam.md | 2 +- .../netlbfo/Remove-NetLbfoTeamMember.md | 2 +- .../netlbfo/Remove-NetLbfoTeamNic.md | 2 +- .../netlbfo/Rename-NetLbfoTeam.md | 2 +- .../netlbfo/Set-NetLbfoTeam.md | 2 +- .../netlbfo/Set-NetLbfoTeamMember.md | 2 +- .../netlbfo/Set-NetLbfoTeamNic.md | 2 +- .../netlldpagent/Disable-NetLldpAgent.md | 2 +- .../netlldpagent/Enable-NetLldpAgent.md | 2 +- .../netlldpagent/Get-NetLldpAgent.md | 2 +- .../netnat/Add-NetNatExternalAddress.md | 2 +- .../netnat/Add-NetNatStaticMapping.md | 2 +- docset/winserver2022-ps/netnat/Get-NetNat.md | 2 +- .../netnat/Get-NetNatExternalAddress.md | 2 +- .../netnat/Get-NetNatGlobal.md | 2 +- .../netnat/Get-NetNatSession.md | 2 +- .../netnat/Get-NetNatStaticMapping.md | 2 +- docset/winserver2022-ps/netnat/New-NetNat.md | 2 +- .../winserver2022-ps/netnat/Remove-NetNat.md | 2 +- .../netnat/Remove-NetNatExternalAddress.md | 2 +- .../netnat/Remove-NetNatStaticMapping.md | 2 +- docset/winserver2022-ps/netnat/Set-NetNat.md | 2 +- .../netnat/Set-NetNatGlobal.md | 2 +- .../netqos/Get-NetQosPolicy.md | 2 +- .../netqos/New-NetQosPolicy.md | 2 +- .../netqos/Remove-NetQosPolicy.md | 2 +- .../netqos/Set-NetQosPolicy.md | 2 +- .../netsecurity/Copy-NetFirewallRule.md | 2 +- .../Copy-NetIPsecMainModeCryptoSet.md | 2 +- .../netsecurity/Copy-NetIPsecMainModeRule.md | 2 +- .../netsecurity/Copy-NetIPsecPhase1AuthSet.md | 2 +- .../netsecurity/Copy-NetIPsecPhase2AuthSet.md | 2 +- .../Copy-NetIPsecQuickModeCryptoSet.md | 2 +- .../netsecurity/Copy-NetIPsecRule.md | 2 +- .../netsecurity/Disable-NetFirewallRule.md | 2 +- .../Disable-NetIPsecMainModeRule.md | 2 +- .../netsecurity/Disable-NetIPsecRule.md | 2 +- .../netsecurity/Enable-NetFirewallRule.md | 2 +- .../Enable-NetIPsecMainModeRule.md | 2 +- .../netsecurity/Enable-NetIPsecRule.md | 2 +- .../netsecurity/Find-NetIPsecRule.md | 2 +- .../netsecurity/Get-DAPolicyChange.md | 2 +- .../Get-NetFirewallAddressFilter.md | 2 +- .../Get-NetFirewallApplicationFilter.md | 2 +- .../Get-NetFirewallDynamicKeywordAddress.md | 2 +- .../Get-NetFirewallInterfaceFilter.md | 2 +- .../Get-NetFirewallInterfaceTypeFilter.md | 2 +- .../netsecurity/Get-NetFirewallPortFilter.md | 2 +- .../netsecurity/Get-NetFirewallProfile.md | 2 +- .../netsecurity/Get-NetFirewallRule.md | 2 +- .../Get-NetFirewallSecurityFilter.md | 2 +- .../Get-NetFirewallServiceFilter.md | 2 +- .../netsecurity/Get-NetFirewallSetting.md | 2 +- .../netsecurity/Get-NetIPsecDospSetting.md | 2 +- .../Get-NetIPsecMainModeCryptoSet.md | 2 +- .../netsecurity/Get-NetIPsecMainModeRule.md | 2 +- .../netsecurity/Get-NetIPsecMainModeSA.md | 2 +- .../netsecurity/Get-NetIPsecPhase1AuthSet.md | 2 +- .../netsecurity/Get-NetIPsecPhase2AuthSet.md | 2 +- .../Get-NetIPsecQuickModeCryptoSet.md | 2 +- .../netsecurity/Get-NetIPsecQuickModeSA.md | 2 +- .../netsecurity/Get-NetIPsecRule.md | 2 +- .../New-NetFirewallDynamicKeywordAddress.md | 2 +- .../netsecurity/New-NetFirewallRule.md | 2 +- .../netsecurity/New-NetIPsecAuthProposal.md | 2 +- .../netsecurity/New-NetIPsecDospSetting.md | 2 +- .../New-NetIPsecMainModeCryptoProposal.md | 2 +- .../New-NetIPsecMainModeCryptoSet.md | 2 +- .../netsecurity/New-NetIPsecMainModeRule.md | 2 +- .../netsecurity/New-NetIPsecPhase1AuthSet.md | 2 +- .../netsecurity/New-NetIPsecPhase2AuthSet.md | 2 +- .../New-NetIPsecQuickModeCryptoProposal.md | 2 +- .../New-NetIPsecQuickModeCryptoSet.md | 2 +- .../netsecurity/New-NetIPsecRule.md | 2 +- .../netsecurity/Open-NetGPO.md | 2 +- ...Remove-NetFirewallDynamicKeywordAddress.md | 2 +- .../netsecurity/Remove-NetFirewallRule.md | 2 +- .../netsecurity/Remove-NetIPsecDospSetting.md | 2 +- .../Remove-NetIPsecMainModeCryptoSet.md | 2 +- .../Remove-NetIPsecMainModeRule.md | 2 +- .../netsecurity/Remove-NetIPsecMainModeSA.md | 2 +- .../Remove-NetIPsecPhase1AuthSet.md | 2 +- .../Remove-NetIPsecPhase2AuthSet.md | 2 +- .../Remove-NetIPsecQuickModeCryptoSet.md | 2 +- .../netsecurity/Remove-NetIPsecQuickModeSA.md | 2 +- .../netsecurity/Remove-NetIPsecRule.md | 2 +- .../netsecurity/Rename-NetFirewallRule.md | 2 +- .../Rename-NetIPsecMainModeCryptoSet.md | 2 +- .../Rename-NetIPsecMainModeRule.md | 2 +- .../Rename-NetIPsecPhase1AuthSet.md | 2 +- .../Rename-NetIPsecPhase2AuthSet.md | 2 +- .../Rename-NetIPsecQuickModeCryptoSet.md | 2 +- .../netsecurity/Rename-NetIPsecRule.md | 2 +- .../netsecurity/Save-NetGPO.md | 2 +- .../Set-NetFirewallAddressFilter.md | 2 +- .../Set-NetFirewallApplicationFilter.md | 2 +- .../Set-NetFirewallInterfaceFilter.md | 2 +- .../Set-NetFirewallInterfaceTypeFilter.md | 2 +- .../netsecurity/Set-NetFirewallPortFilter.md | 2 +- .../netsecurity/Set-NetFirewallProfile.md | 2 +- .../netsecurity/Set-NetFirewallRule.md | 2 +- .../Set-NetFirewallSecurityFilter.md | 2 +- .../Set-NetFirewallServiceFilter.md | 2 +- .../netsecurity/Set-NetFirewallSetting.md | 2 +- .../netsecurity/Set-NetIPsecDospSetting.md | 2 +- .../Set-NetIPsecMainModeCryptoSet.md | 2 +- .../netsecurity/Set-NetIPsecMainModeRule.md | 2 +- .../netsecurity/Set-NetIPsecPhase1AuthSet.md | 2 +- .../netsecurity/Set-NetIPsecPhase2AuthSet.md | 2 +- .../Set-NetIPsecQuickModeCryptoSet.md | 2 +- .../netsecurity/Set-NetIPsecRule.md | 2 +- .../netsecurity/Show-NetFirewallRule.md | 2 +- .../netsecurity/Show-NetIPsecRule.md | 2 +- .../netsecurity/Sync-NetIPsecRule.md | 2 +- ...Update-NetFirewallDynamicKeywordAddress.md | 2 +- .../netsecurity/Update-NetIPsecRule.md | 2 +- .../netswitchteam/Add-NetSwitchTeamMember.md | 2 +- .../netswitchteam/Get-NetSwitchTeam.md | 2 +- .../netswitchteam/Get-NetSwitchTeamMember.md | 2 +- .../netswitchteam/New-NetSwitchTeam.md | 2 +- .../netswitchteam/Remove-NetSwitchTeam.md | 2 +- .../Remove-NetSwitchTeamMember.md | 2 +- .../netswitchteam/Rename-NetSwitchTeam.md | 2 +- .../nettcpip/Find-NetRoute.md | 2 +- .../nettcpip/Get-NetCompartment.md | 2 +- .../nettcpip/Get-NetIPAddress.md | 2 +- .../nettcpip/Get-NetIPConfiguration.md | 2 +- .../nettcpip/Get-NetIPInterface.md | 2 +- .../nettcpip/Get-NetIPv4Protocol.md | 2 +- .../nettcpip/Get-NetIPv6Protocol.md | 2 +- .../nettcpip/Get-NetNeighbor.md | 2 +- .../nettcpip/Get-NetOffloadGlobalSetting.md | 2 +- .../nettcpip/Get-NetPrefixPolicy.md | 2 +- .../winserver2022-ps/nettcpip/Get-NetRoute.md | 2 +- .../nettcpip/Get-NetTCPConnection.md | 2 +- .../nettcpip/Get-NetTCPSetting.md | 2 +- .../nettcpip/Get-NetTransportFilter.md | 2 +- .../nettcpip/Get-NetUDPEndpoint.md | 2 +- .../nettcpip/Get-NetUDPSetting.md | 2 +- .../nettcpip/New-NetIPAddress.md | 2 +- .../nettcpip/New-NetNeighbor.md | 2 +- .../winserver2022-ps/nettcpip/New-NetRoute.md | 2 +- .../nettcpip/New-NetTransportFilter.md | 2 +- .../nettcpip/Remove-NetIPAddress.md | 2 +- .../nettcpip/Remove-NetNeighbor.md | 2 +- .../nettcpip/Remove-NetRoute.md | 2 +- .../nettcpip/Remove-NetTransportFilter.md | 2 +- .../nettcpip/Set-NetIPAddress.md | 2 +- .../nettcpip/Set-NetIPInterface.md | 2 +- .../nettcpip/Set-NetIPv4Protocol.md | 2 +- .../nettcpip/Set-NetIPv6Protocol.md | 2 +- .../nettcpip/Set-NetNeighbor.md | 2 +- .../nettcpip/Set-NetOffloadGlobalSetting.md | 2 +- .../winserver2022-ps/nettcpip/Set-NetRoute.md | 2 +- .../nettcpip/Set-NetTCPSetting.md | 2 +- .../nettcpip/Set-NetUDPSetting.md | 2 +- .../nettcpip/Test-NetConnection.md | 2 +- .../Get-NetVirtualizationCustomerRoute.md | 2 +- .../netwnv/Get-NetVirtualizationGlobal.md | 2 +- .../Get-NetVirtualizationLookupRecord.md | 2 +- .../Get-NetVirtualizationProviderAddress.md | 2 +- .../Get-NetVirtualizationProviderRoute.md | 2 +- .../New-NetVirtualizationCustomerRoute.md | 2 +- .../New-NetVirtualizationLookupRecord.md | 2 +- .../New-NetVirtualizationProviderAddress.md | 2 +- .../New-NetVirtualizationProviderRoute.md | 2 +- .../Remove-NetVirtualizationCustomerRoute.md | 2 +- .../Remove-NetVirtualizationLookupRecord.md | 2 +- ...Remove-NetVirtualizationProviderAddress.md | 2 +- .../Remove-NetVirtualizationProviderRoute.md | 2 +- .../netwnv/Select-NetVirtualizationNextHop.md | 2 +- .../Set-NetVirtualizationCustomerRoute.md | 2 +- .../netwnv/Set-NetVirtualizationGlobal.md | 2 +- .../Set-NetVirtualizationLookupRecord.md | 2 +- .../Set-NetVirtualizationProviderAddress.md | 2 +- .../Set-NetVirtualizationProviderRoute.md | 2 +- .../Get-DAConnectionStatus.md | 2 +- .../Get-NCSIPolicyConfiguration.md | 2 +- .../Reset-NCSIPolicyConfiguration.md | 2 +- .../Set-NCSIPolicyConfiguration.md | 2 +- .../Add-NetworkControllerNode.md | 2 +- .../Clear-NetworkControllerNodeContent.md | 2 +- .../Disable-NetworkControllerNode.md | 2 +- .../Enable-NetworkControllerNode.md | 2 +- .../Get-NetworkController.md | 2 +- .../Get-NetworkControllerAccessControlList.md | 2 +- ...-NetworkControllerAccessControlListRule.md | 2 +- ...ControllerAuditingSettingsConfiguration.md | 2 +- .../Get-NetworkControllerBackup.md | 2 +- .../Get-NetworkControllerCluster.md | 2 +- .../Get-NetworkControllerConnectivityCheck.md | 2 +- ...etworkControllerConnectivityCheckResult.md | 2 +- .../Get-NetworkControllerCredential.md | 2 +- .../Get-NetworkControllerDiagnostic.md | 2 +- .../Get-NetworkControllerDiscovery.md | 2 +- .../Get-NetworkControllerFabricRoute.md | 2 +- .../Get-NetworkControllerGateway.md | 2 +- .../Get-NetworkControllerGatewayPool.md | 2 +- ...etworkControllerIDnsServerConfiguration.md | 2 +- ...workControllerInternalResourceInstances.md | 2 +- .../Get-NetworkControllerIpPool.md | 2 +- .../Get-NetworkControllerIpReservation.md | 2 +- .../Get-NetworkControllerLoadBalancer.md | 2 +- ...ontrollerLoadBalancerBackendAddressPool.md | 2 +- ...workControllerLoadBalancerConfiguration.md | 2 +- ...llerLoadBalancerFrontendIpConfiguration.md | 2 +- ...orkControllerLoadBalancerInboundNatRule.md | 2 +- .../Get-NetworkControllerLoadBalancerMux.md | 2 +- ...rkControllerLoadBalancerOutboundNatRule.md | 2 +- .../Get-NetworkControllerLoadBalancerProbe.md | 2 +- .../Get-NetworkControllerLoadBalancingRule.md | 2 +- .../Get-NetworkControllerLogicalNetwork.md | 2 +- .../Get-NetworkControllerLogicalSubnet.md | 2 +- .../Get-NetworkControllerMacPool.md | 2 +- .../Get-NetworkControllerNetworkInterface.md | 2 +- ...ntrollerNetworkInterfaceIpConfiguration.md | 2 +- .../Get-NetworkControllerNode.md | 2 +- .../Get-NetworkControllerPublicIpAddress.md | 2 +- .../Get-NetworkControllerRestore.md | 4 +-- .../Get-NetworkControllerRoute.md | 2 +- .../Get-NetworkControllerRouteTable.md | 2 +- .../Get-NetworkControllerServer.md | 2 +- .../Get-NetworkControllerServerInterface.md | 2 +- .../Get-NetworkControllerServiceInsertion.md | 2 +- .../Get-NetworkControllerState.md | 2 +- .../Get-NetworkControllerStatistics.md | 2 +- .../Get-NetworkControllerSubnetEgressReset.md | 2 +- .../Get-NetworkControllerVirtualGateway.md | 2 +- ...-NetworkControllerVirtualGatewayBgpPeer.md | 2 +- ...etworkControllerVirtualGatewayBgpRouter.md | 2 +- ...ntrollerVirtualGatewayNetworkConnection.md | 2 +- ...etworkControllerVirtualGatewayPolicyMap.md | 2 +- .../Get-NetworkControllerVirtualNetwork.md | 2 +- ...rkControllerVirtualNetworkConfiguration.md | 2 +- ...-NetworkControllerVirtualNetworkPeering.md | 2 +- .../Get-NetworkControllerVirtualServer.md | 2 +- .../Get-NetworkControllerVirtualSubnet.md | 2 +- ...orkControllerVirtualSwitchConfiguration.md | 2 +- .../Install-NetworkController.md | 2 +- .../Install-NetworkControllerCluster.md | 2 +- ...voke-NetworkControllerConnectivityCheck.md | 2 +- .../Invoke-NetworkControllerState.md | 2 +- ...voke-NetworkControllerSubnetEgressReset.md | 2 +- .../New-NetworkControllerAccessControlList.md | 2 +- ...-NetworkControllerAccessControlListRule.md | 2 +- .../New-NetworkControllerBackup.md | 2 +- .../New-NetworkControllerCredential.md | 2 +- .../New-NetworkControllerFabricRoute.md | 2 +- .../New-NetworkControllerGateway.md | 2 +- .../New-NetworkControllerGatewayPool.md | 2 +- ...etworkControllerIDnsServerConfiguration.md | 2 +- .../New-NetworkControllerIpPool.md | 2 +- .../New-NetworkControllerIpReservation.md | 2 +- .../New-NetworkControllerLoadBalancer.md | 2 +- ...ontrollerLoadBalancerBackendAddressPool.md | 2 +- ...workControllerLoadBalancerConfiguration.md | 2 +- ...llerLoadBalancerFrontendIpConfiguration.md | 2 +- ...orkControllerLoadBalancerInboundNatRule.md | 2 +- .../New-NetworkControllerLoadBalancerMux.md | 2 +- ...rkControllerLoadBalancerOutboundNatRule.md | 2 +- .../New-NetworkControllerLoadBalancerProbe.md | 2 +- .../New-NetworkControllerLoadBalancingRule.md | 2 +- .../New-NetworkControllerLogicalNetwork.md | 2 +- .../New-NetworkControllerLogicalSubnet.md | 2 +- .../New-NetworkControllerMacPool.md | 2 +- .../New-NetworkControllerNetworkInterface.md | 2 +- ...ntrollerNetworkInterfaceIpConfiguration.md | 2 +- .../New-NetworkControllerNodeObject.md | 2 +- .../New-NetworkControllerPublicIpAddress.md | 2 +- .../New-NetworkControllerRestore.md | 2 +- .../New-NetworkControllerRoute.md | 2 +- .../New-NetworkControllerRouteTable.md | 2 +- .../New-NetworkControllerServer.md | 2 +- .../New-NetworkControllerServerInterface.md | 2 +- .../New-NetworkControllerServiceInsertion.md | 2 +- .../New-NetworkControllerVirtualGateway.md | 2 +- ...-NetworkControllerVirtualGatewayBgpPeer.md | 2 +- ...etworkControllerVirtualGatewayBgpRouter.md | 2 +- ...ntrollerVirtualGatewayNetworkConnection.md | 2 +- ...etworkControllerVirtualGatewayPolicyMap.md | 2 +- .../New-NetworkControllerVirtualNetwork.md | 2 +- ...-NetworkControllerVirtualNetworkPeering.md | 2 +- .../New-NetworkControllerVirtualServer.md | 2 +- .../New-NetworkControllerVirtualSubnet.md | 2 +- ...move-NetworkControllerAccessControlList.md | 2 +- ...-NetworkControllerAccessControlListRule.md | 2 +- .../Remove-NetworkControllerBackup.md | 2 +- .../Remove-NetworkControllerCredential.md | 2 +- .../Remove-NetworkControllerFabricRoute.md | 2 +- .../Remove-NetworkControllerGateway.md | 2 +- .../Remove-NetworkControllerGatewayPool.md | 2 +- .../Remove-NetworkControllerIpPool.md | 2 +- .../Remove-NetworkControllerIpReservation.md | 2 +- .../Remove-NetworkControllerLoadBalancer.md | 2 +- ...ontrollerLoadBalancerBackendAddressPool.md | 2 +- ...workControllerLoadBalancerConfiguration.md | 2 +- ...llerLoadBalancerFrontendIpConfiguration.md | 2 +- ...orkControllerLoadBalancerInboundNatRule.md | 2 +- ...Remove-NetworkControllerLoadBalancerMux.md | 2 +- ...rkControllerLoadBalancerOutboundNatRule.md | 2 +- ...move-NetworkControllerLoadBalancerProbe.md | 2 +- ...move-NetworkControllerLoadBalancingRule.md | 2 +- .../Remove-NetworkControllerLogicalNetwork.md | 2 +- .../Remove-NetworkControllerLogicalSubnet.md | 2 +- .../Remove-NetworkControllerMacPool.md | 2 +- ...emove-NetworkControllerNetworkInterface.md | 2 +- ...ntrollerNetworkInterfaceIpConfiguration.md | 2 +- .../Remove-NetworkControllerNode.md | 2 +- ...Remove-NetworkControllerPublicIpAddress.md | 2 +- .../Remove-NetworkControllerRestore.md | 2 +- .../Remove-NetworkControllerRoute.md | 2 +- .../Remove-NetworkControllerRouteTable.md | 2 +- .../Remove-NetworkControllerServer.md | 2 +- ...Remove-NetworkControllerServerInterface.md | 2 +- ...emove-NetworkControllerServiceInsertion.md | 2 +- .../Remove-NetworkControllerVirtualGateway.md | 2 +- ...-NetworkControllerVirtualGatewayBgpPeer.md | 2 +- ...etworkControllerVirtualGatewayBgpRouter.md | 2 +- ...ntrollerVirtualGatewayNetworkConnection.md | 2 +- ...etworkControllerVirtualGatewayPolicyMap.md | 2 +- .../Remove-NetworkControllerVirtualNetwork.md | 2 +- ...-NetworkControllerVirtualNetworkPeering.md | 2 +- .../Remove-NetworkControllerVirtualServer.md | 2 +- .../Remove-NetworkControllerVirtualSubnet.md | 2 +- .../Repair-NetworkControllerCluster.md | 2 +- .../Set-NetworkController.md | 2 +- ...ControllerAuditingSettingsConfiguration.md | 2 +- .../Set-NetworkControllerCluster.md | 2 +- .../Set-NetworkControllerDiagnostic.md | 2 +- .../Set-NetworkControllerNode.md | 2 +- ...rkControllerVirtualNetworkConfiguration.md | 2 +- ...orkControllerVirtualSwitchConfiguration.md | 2 +- .../Uninstall-NetworkController.md | 2 +- .../Uninstall-NetworkControllerCluster.md | 2 +- .../Update-NetworkController.md | 2 +- .../Debug-NetworkController.md | 2 +- ...bug-NetworkControllerConfigurationState.md | 2 +- .../Debug-ServiceFabricNodeStatus.md | 2 +- .../Get-NetworkControllerDeploymentInfo.md | 2 +- .../Get-NetworkControllerManagedDevices.md | 2 +- .../Get-NetworkControllerReplica.md | 2 +- .../Add-NlbClusterNode.md | 2 +- .../Add-NlbClusterNodeDip.md | 2 +- .../Add-NlbClusterPortRule.md | 2 +- .../Add-NlbClusterVip.md | 2 +- .../Disable-NlbClusterPortRule.md | 2 +- .../Enable-NlbClusterPortRule.md | 2 +- .../Get-NlbCluster.md | 2 +- .../Get-NlbClusterDriverInfo.md | 2 +- .../Get-NlbClusterNode.md | 2 +- .../Get-NlbClusterNodeDip.md | 2 +- .../Get-NlbClusterNodeNetworkInterface.md | 2 +- .../Get-NlbClusterPortRule.md | 2 +- .../Get-NlbClusterVip.md | 2 +- .../New-NlbCluster.md | 2 +- .../New-NlbClusterIpv6Address.md | 2 +- .../Remove-NlbCluster.md | 2 +- .../Remove-NlbClusterNode.md | 2 +- .../Remove-NlbClusterNodeDip.md | 2 +- .../Remove-NlbClusterPortRule.md | 2 +- .../Remove-NlbClusterVip.md | 2 +- .../Resume-NlbCluster.md | 2 +- .../Resume-NlbClusterNode.md | 2 +- .../Set-NlbCluster.md | 2 +- .../Set-NlbClusterNode.md | 2 +- .../Set-NlbClusterNodeDip.md | 2 +- .../Set-NlbClusterPortRule.md | 2 +- ...-NlbClusterPortRuleNodeHandlingPriority.md | 2 +- .../Set-NlbClusterPortRuleNodeWeight.md | 2 +- .../Set-NlbClusterVip.md | 2 +- .../Start-NlbCluster.md | 2 +- .../Start-NlbClusterNode.md | 2 +- .../Stop-NlbCluster.md | 2 +- .../Stop-NlbClusterNode.md | 2 +- .../Suspend-NlbCluster.md | 2 +- .../Suspend-NlbClusterNode.md | 2 +- .../Disable-NetworkSwitchEthernetPort.md | 2 +- .../Disable-NetworkSwitchFeature.md | 2 +- .../Disable-NetworkSwitchVlan.md | 2 +- .../Enable-NetworkSwitchEthernetPort.md | 2 +- .../Enable-NetworkSwitchFeature.md | 2 +- .../Enable-NetworkSwitchVlan.md | 2 +- .../Get-NetworkSwitchEthernetPort.md | 2 +- .../Get-NetworkSwitchFeature.md | 2 +- .../Get-NetworkSwitchGlobalData.md | 2 +- .../Get-NetworkSwitchVlan.md | 2 +- .../New-NetworkSwitchVlan.md | 2 +- ...move-NetworkSwitchEthernetPortIPAddress.md | 2 +- .../Remove-NetworkSwitchVlan.md | 2 +- .../Restore-NetworkSwitchConfiguration.md | 2 +- .../Save-NetworkSwitchConfiguration.md | 2 +- .../Set-NetworkSwitchEthernetPortIPAddress.md | 2 +- .../Set-NetworkSwitchPortMode.md | 2 +- .../Set-NetworkSwitchPortProperty.md | 2 +- .../Set-NetworkSwitchVlanProperty.md | 2 +- .../Add-NetIPHttpsCertBinding.md | 2 +- .../Disable-NetDnsTransitionConfiguration.md | 2 +- .../Disable-NetIPHttpsProfile.md | 2 +- .../Disable-NetNatTransitionConfiguration.md | 2 +- .../Enable-NetDnsTransitionConfiguration.md | 2 +- .../Enable-NetIPHttpsProfile.md | 2 +- .../Enable-NetNatTransitionConfiguration.md | 2 +- .../Get-Net6to4Configuration.md | 2 +- .../Get-NetDnsTransitionConfiguration.md | 2 +- .../Get-NetDnsTransitionMonitoring.md | 2 +- .../Get-NetIPHttpsConfiguration.md | 2 +- .../networktransition/Get-NetIPHttpsState.md | 2 +- .../Get-NetIsatapConfiguration.md | 2 +- .../Get-NetNatTransitionConfiguration.md | 2 +- .../Get-NetNatTransitionMonitoring.md | 2 +- .../Get-NetTeredoConfiguration.md | 2 +- .../networktransition/Get-NetTeredoState.md | 2 +- .../New-NetIPHttpsConfiguration.md | 2 +- .../New-NetNatTransitionConfiguration.md | 2 +- .../Remove-NetIPHttpsCertBinding.md | 2 +- .../Remove-NetIPHttpsConfiguration.md | 2 +- .../Remove-NetNatTransitionConfiguration.md | 2 +- .../Rename-NetIPHttpsConfiguration.md | 2 +- .../Reset-Net6to4Configuration.md | 2 +- .../Reset-NetDnsTransitionConfiguration.md | 2 +- .../Reset-NetIPHttpsConfiguration.md | 2 +- .../Reset-NetIsatapConfiguration.md | 2 +- .../Reset-NetTeredoConfiguration.md | 2 +- .../Set-Net6to4Configuration.md | 2 +- .../Set-NetDnsTransitionConfiguration.md | 2 +- .../Set-NetIPHttpsConfiguration.md | 2 +- .../Set-NetIsatapConfiguration.md | 2 +- .../Set-NetNatTransitionConfiguration.md | 2 +- .../Set-NetTeredoConfiguration.md | 2 +- .../nfs/Disconnect-NfsSession.md | 2 +- .../nfs/Get-NfsClientConfiguration.md | 2 +- .../winserver2022-ps/nfs/Get-NfsClientLock.md | 2 +- .../nfs/Get-NfsClientgroup.md | 2 +- .../nfs/Get-NfsMappedIdentity.md | 2 +- .../nfs/Get-NfsMappingStore.md | 2 +- .../nfs/Get-NfsMountedClient.md | 2 +- .../winserver2022-ps/nfs/Get-NfsNetgroup.md | 2 +- .../nfs/Get-NfsNetgroupStore.md | 2 +- .../winserver2022-ps/nfs/Get-NfsOpenFile.md | 2 +- .../nfs/Get-NfsServerConfiguration.md | 2 +- docset/winserver2022-ps/nfs/Get-NfsSession.md | 2 +- docset/winserver2022-ps/nfs/Get-NfsShare.md | 2 +- .../nfs/Get-NfsSharePermission.md | 2 +- .../winserver2022-ps/nfs/Get-NfsStatistics.md | 2 +- .../nfs/Grant-NfsSharePermission.md | 2 +- .../nfs/Install-NfsMappingStore.md | 2 +- .../nfs/New-NfsClientgroup.md | 2 +- .../nfs/New-NfsMappedIdentity.md | 2 +- .../winserver2022-ps/nfs/New-NfsNetgroup.md | 2 +- docset/winserver2022-ps/nfs/New-NfsShare.md | 2 +- .../nfs/Remove-NfsClientgroup.md | 2 +- .../nfs/Remove-NfsMappedIdentity.md | 2 +- .../nfs/Remove-NfsNetgroup.md | 2 +- .../winserver2022-ps/nfs/Remove-NfsShare.md | 2 +- .../nfs/Rename-NfsClientgroup.md | 2 +- .../nfs/Reset-NfsStatistics.md | 2 +- .../nfs/Resolve-NfsMappedIdentity.md | 2 +- .../nfs/Revoke-NfsClientLock.md | 2 +- .../nfs/Revoke-NfsMountedClient.md | 2 +- .../nfs/Revoke-NfsOpenFile.md | 2 +- .../nfs/Revoke-NfsSharePermission.md | 2 +- .../nfs/Set-NfsClientConfiguration.md | 2 +- .../nfs/Set-NfsClientgroup.md | 2 +- .../nfs/Set-NfsMappedIdentity.md | 2 +- .../nfs/Set-NfsMappingStore.md | 2 +- .../winserver2022-ps/nfs/Set-NfsNetgroup.md | 2 +- .../nfs/Set-NfsNetgroupStore.md | 2 +- .../nfs/Set-NfsServerConfiguration.md | 2 +- docset/winserver2022-ps/nfs/Set-NfsShare.md | 2 +- .../nfs/Test-NfsMappedIdentity.md | 2 +- .../nfs/Test-NfsMappingStore.md | 2 +- .../nps/Export-NpsConfiguration.md | 2 +- .../nps/Get-NpsRadiusClient.md | 2 +- .../nps/Get-NpsSharedSecretTemplate.md | 2 +- .../nps/Import-NpsConfiguration.md | 2 +- .../nps/New-NpsRadiusClient.md | 2 +- .../nps/Remove-NpsRadiusClient.md | 2 +- .../nps/Set-NpsRadiusClient.md | 2 +- .../pcsvdevice/Clear-PcsvDeviceLog.md | 2 +- .../pcsvdevice/Get-PcsvDevice.md | 2 +- .../pcsvdevice/Get-PcsvDeviceLog.md | 2 +- .../pcsvdevice/Restart-PcsvDevice.md | 2 +- .../Set-PcsvDeviceBootConfiguration.md | 2 +- .../Set-PcsvDeviceNetworkConfiguration.md | 2 +- .../pcsvdevice/Set-PcsvDeviceUserPassword.md | 2 +- .../pcsvdevice/Start-PcsvDevice.md | 2 +- .../pcsvdevice/Stop-PcsvDevice.md | 2 +- .../Get-PmemDedicatedMemory.md | 4 +-- .../persistentmemory/Get-PmemDisk.md | 4 +-- .../Get-PmemPhysicalDevice.md | 4 +-- .../persistentmemory/Get-PmemUnusedRegion.md | 4 +-- .../Initialize-PmemPhysicalDevice.md | 4 +-- .../New-PmemDedicatedMemory.md | 4 +-- .../persistentmemory/New-PmemDisk.md | 4 +-- .../persistentmemory/PersistentMemory.md | 4 +-- .../Remove-PmemDedicatedMemory.md | 4 +-- .../persistentmemory/Remove-PmemDisk.md | 4 +-- .../Add-CertificateEnrollmentPolicyServer.md | 2 +- .../pki/Export-Certificate.md | 2 +- .../pki/Export-PfxCertificate.md | 2 +- .../winserver2022-ps/pki/Get-Certificate.md | 2 +- .../Get-CertificateAutoEnrollmentPolicy.md | 2 +- .../Get-CertificateEnrollmentPolicyServer.md | 2 +- .../pki/Get-CertificateNotificationTask.md | 2 +- docset/winserver2022-ps/pki/Get-PfxData.md | 2 +- .../pki/Import-Certificate.md | 2 +- .../pki/Import-PfxCertificate.md | 2 +- .../pki/New-CertificateNotificationTask.md | 2 +- .../pki/New-SelfSignedCertificate.md | 2 +- ...emove-CertificateEnrollmentPolicyServer.md | 2 +- .../pki/Remove-CertificateNotificationTask.md | 2 +- .../Set-CertificateAutoEnrollmentPolicy.md | 2 +- .../pki/Switch-Certificate.md | 2 +- .../winserver2022-ps/pki/Test-Certificate.md | 2 +- .../Get-PlatformIdentifier.md | 2 +- .../pnpdevice/Disable-PnpDevice.md | 2 +- .../pnpdevice/Enable-PnpDevice.md | 2 +- .../pnpdevice/Get-PnpDevice.md | 2 +- .../pnpdevice/Get-PnpDeviceProperty.md | 2 +- .../printmanagement/Add-Printer.md | 4 +-- .../printmanagement/Add-PrinterDriver.md | 4 +-- .../printmanagement/Add-PrinterPort.md | 4 +-- .../printmanagement/Get-PrintConfiguration.md | 4 +-- .../printmanagement/Get-PrintJob.md | 4 +-- .../printmanagement/Get-Printer.md | 4 +-- .../printmanagement/Get-PrinterDriver.md | 4 +-- .../printmanagement/Get-PrinterPort.md | 4 +-- .../printmanagement/Get-PrinterProperty.md | 4 +-- .../printmanagement/PrintManagement.md | 2 +- .../printmanagement/Read-PrinterNfcTag.md | 4 +-- .../printmanagement/Remove-PrintJob.md | 4 +-- .../printmanagement/Remove-Printer.md | 4 +-- .../printmanagement/Remove-PrinterDriver.md | 4 +-- .../printmanagement/Remove-PrinterPort.md | 4 +-- .../printmanagement/Rename-Printer.md | 4 +-- .../printmanagement/Restart-PrintJob.md | 4 +-- .../printmanagement/Resume-PrintJob.md | 4 +-- .../printmanagement/Set-PrintConfiguration.md | 4 +-- .../printmanagement/Set-Printer.md | 4 +-- .../printmanagement/Set-PrinterProperty.md | 4 +-- .../printmanagement/Suspend-PrintJob.md | 4 +-- .../printmanagement/Write-PrinterNfcTag.md | 4 +-- .../ConvertTo-ProcessMitigationPolicy.md | 2 +- .../Get-ProcessMitigation.md | 2 +- .../Set-ProcessMitigation.md | 2 +- .../Export-ProvisioningPackage.md | 2 +- .../provisioning/Export-Trace.md | 4 +-- .../provisioning/Get-ProvisioningPackage.md | 2 +- .../Get-TrustedProvisioningCertificate.md | 4 +-- .../Install-ProvisioningPackage.md | 2 +- .../Install-TrustedProvisioningCertificate.md | 4 +-- .../Uninstall-ProvisioningPackage.md | 2 +- ...ninstall-TrustedProvisioningCertificate.md | 4 +-- .../winserver2022-ps/rdmgmt/Add-RDServer.md | 2 +- .../rdmgmt/Add-RDSessionHost.md | 2 +- .../Add-RDVirtualDesktopToCollection.md | 2 +- ...e-RDVirtualDesktopADMachineAccountReuse.md | 2 +- .../rdmgmt/Disconnect-RDUser.md | 2 +- ...e-RDVirtualDesktopADMachineAccountReuse.md | 2 +- ...port-RDPersonalSessionDesktopAssignment.md | 2 +- ...port-RDPersonalVirtualDesktopAssignment.md | 2 +- .../rdmgmt/Get-RDAvailableApp.md | 2 +- .../rdmgmt/Get-RDCertificate.md | 2 +- .../Get-RDConnectionBrokerHighAvailability.md | 2 +- .../Get-RDDeploymentGatewayConfiguration.md | 2 +- .../rdmgmt/Get-RDFileTypeAssociation.md | 2 +- .../rdmgmt/Get-RDLicenseConfiguration.md | 2 +- .../Get-RDPersonalSessionDesktopAssignment.md | 2 +- .../Get-RDPersonalVirtualDesktopAssignment.md | 2 +- ...t-RDPersonalVirtualDesktopPatchSchedule.md | 2 +- .../rdmgmt/Get-RDRemoteApp.md | 2 +- .../rdmgmt/Get-RDRemoteDesktop.md | 2 +- .../winserver2022-ps/rdmgmt/Get-RDServer.md | 2 +- .../rdmgmt/Get-RDSessionCollection.md | 2 +- .../Get-RDSessionCollectionConfiguration.md | 2 +- .../rdmgmt/Get-RDSessionHost.md | 2 +- .../rdmgmt/Get-RDUserSession.md | 2 +- .../rdmgmt/Get-RDVirtualDesktop.md | 2 +- .../rdmgmt/Get-RDVirtualDesktopCollection.md | 2 +- ...RDVirtualDesktopCollectionConfiguration.md | 2 +- ...Get-RDVirtualDesktopCollectionJobStatus.md | 2 +- .../rdmgmt/Get-RDVirtualDesktopConcurrency.md | 2 +- .../rdmgmt/Get-RDVirtualDesktopIdleCount.md | 2 +- .../Get-RDVirtualDesktopTemplateExportPath.md | 2 +- .../rdmgmt/Get-RDWorkspace.md | 2 +- .../rdmgmt/Grant-RDOUAccess.md | 2 +- ...port-RDPersonalSessionDesktopAssignment.md | 2 +- ...port-RDPersonalVirtualDesktopAssignment.md | 2 +- .../rdmgmt/Invoke-RDUserLogoff.md | 2 +- .../rdmgmt/Move-RDVirtualDesktop.md | 2 +- .../rdmgmt/New-RDCertificate.md | 2 +- ...w-RDPersonalVirtualDesktopPatchSchedule.md | 2 +- .../rdmgmt/New-RDRemoteApp.md | 2 +- .../rdmgmt/New-RDSessionCollection.md | 2 +- .../rdmgmt/New-RDSessionDeployment.md | 2 +- .../rdmgmt/New-RDVirtualDesktopCollection.md | 2 +- .../rdmgmt/New-RDVirtualDesktopDeployment.md | 2 +- .../Remove-RDDatabaseConnectionString.md | 2 +- ...move-RDPersonalSessionDesktopAssignment.md | 2 +- ...move-RDPersonalVirtualDesktopAssignment.md | 2 +- ...e-RDPersonalVirtualDesktopPatchSchedule.md | 2 +- .../rdmgmt/Remove-RDRemoteApp.md | 2 +- .../rdmgmt/Remove-RDServer.md | 2 +- .../rdmgmt/Remove-RDSessionCollection.md | 2 +- .../rdmgmt/Remove-RDSessionHost.md | 2 +- .../Remove-RDVirtualDesktopCollection.md | 2 +- .../Remove-RDVirtualDesktopFromCollection.md | 2 +- .../rdmgmt/Send-RDUserMessage.md | 2 +- .../rdmgmt/Set-RDActiveManagementServer.md | 2 +- .../rdmgmt/Set-RDCertificate.md | 2 +- .../rdmgmt/Set-RDClientAccessName.md | 2 +- .../Set-RDConnectionBrokerHighAvailability.md | 2 +- .../rdmgmt/Set-RDDatabaseConnectionString.md | 2 +- .../Set-RDDeploymentGatewayConfiguration.md | 2 +- .../rdmgmt/Set-RDFileTypeAssociation.md | 2 +- .../rdmgmt/Set-RDLicenseConfiguration.md | 2 +- .../Set-RDPersonalSessionDesktopAssignment.md | 2 +- .../Set-RDPersonalVirtualDesktopAssignment.md | 2 +- ...t-RDPersonalVirtualDesktopPatchSchedule.md | 2 +- .../rdmgmt/Set-RDRemoteApp.md | 2 +- .../rdmgmt/Set-RDRemoteDesktop.md | 2 +- .../Set-RDSessionCollectionConfiguration.md | 2 +- .../rdmgmt/Set-RDSessionHost.md | 2 +- ...RDVirtualDesktopCollectionConfiguration.md | 2 +- .../rdmgmt/Set-RDVirtualDesktopConcurrency.md | 2 +- .../rdmgmt/Set-RDVirtualDesktopIdleCount.md | 2 +- .../Set-RDVirtualDesktopTemplateExportPath.md | 2 +- .../rdmgmt/Set-RDWorkspace.md | 2 +- .../Stop-RDVirtualDesktopCollectionJob.md | 2 +- .../rdmgmt/Test-RDOUAccess.md | 2 +- ...t-RDVirtualDesktopADMachineAccountReuse.md | 2 +- .../Update-RDVirtualDesktopCollection.md | 2 +- .../remoteaccess/Add-BgpCustomRoute.md | 2 +- .../remoteaccess/Add-BgpPeer.md | 2 +- .../remoteaccess/Add-BgpRouteAggregate.md | 2 +- .../remoteaccess/Add-BgpRouter.md | 2 +- .../remoteaccess/Add-BgpRoutingPolicy.md | 2 +- .../Add-BgpRoutingPolicyForPeer.md | 2 +- .../remoteaccess/Add-DAAppServer.md | 2 +- .../remoteaccess/Add-DAClient.md | 2 +- .../Add-DAClientDnsConfiguration.md | 2 +- .../remoteaccess/Add-DAEntryPoint.md | 2 +- .../remoteaccess/Add-DAMgmtServer.md | 2 +- .../remoteaccess/Add-RemoteAccessIpFilter.md | 2 +- .../Add-RemoteAccessLoadBalancerNode.md | 2 +- .../remoteaccess/Add-RemoteAccessRadius.md | 2 +- .../remoteaccess/Add-VpnIPAddressRange.md | 2 +- .../remoteaccess/Add-VpnS2SInterface.md | 2 +- .../remoteaccess/Add-VpnSstpProxyRule.md | 2 +- .../Clear-BgpRouteFlapDampening.md | 2 +- .../Clear-RemoteAccessInboxAccountingStore.md | 2 +- .../Clear-VpnS2SInterfaceStatistics.md | 2 +- .../remoteaccess/Connect-VpnS2SInterface.md | 2 +- .../Disable-BgpRouteFlapDampening.md | 2 +- .../remoteaccess/Disable-DAMultiSite.md | 2 +- .../Disable-DAOtpAuthentication.md | 2 +- .../Disable-RemoteAccessRoutingDomain.md | 2 +- .../Disconnect-VpnS2SInterface.md | 2 +- .../remoteaccess/Disconnect-VpnUser.md | 2 +- .../Enable-BgpRouteFlapDampening.md | 2 +- .../remoteaccess/Enable-DAMultiSite.md | 2 +- .../Enable-DAOtpAuthentication.md | 2 +- .../Enable-RemoteAccessRoutingDomain.md | 2 +- .../remoteaccess/Get-BgpCustomRoute.md | 2 +- .../remoteaccess/Get-BgpPeer.md | 2 +- .../remoteaccess/Get-BgpRouteAggregate.md | 2 +- .../remoteaccess/Get-BgpRouteFlapDampening.md | 2 +- .../remoteaccess/Get-BgpRouteInformation.md | 2 +- .../remoteaccess/Get-BgpRouter.md | 2 +- .../remoteaccess/Get-BgpRoutingPolicy.md | 2 +- .../remoteaccess/Get-BgpStatistics.md | 2 +- .../remoteaccess/Get-DAAppServer.md | 2 +- .../remoteaccess/Get-DAClient.md | 2 +- .../Get-DAClientDnsConfiguration.md | 2 +- .../remoteaccess/Get-DAEntryPoint.md | 2 +- .../remoteaccess/Get-DAEntryPointDC.md | 2 +- .../remoteaccess/Get-DAMgmtServer.md | 2 +- .../remoteaccess/Get-DAMultiSite.md | 2 +- .../Get-DANetworkLocationServer.md | 2 +- .../remoteaccess/Get-DAOtpAuthentication.md | 2 +- .../remoteaccess/Get-DAServer.md | 2 +- .../remoteaccess/Get-RemoteAccess.md | 2 +- .../Get-RemoteAccessAccounting.md | 2 +- .../Get-RemoteAccessConfiguration.md | 2 +- .../Get-RemoteAccessConnectionStatistics.md | 2 +- ...RemoteAccessConnectionStatisticsSummary.md | 2 +- .../remoteaccess/Get-RemoteAccessHealth.md | 2 +- .../remoteaccess/Get-RemoteAccessIpFilter.md | 2 +- .../Get-RemoteAccessLoadBalancer.md | 2 +- .../remoteaccess/Get-RemoteAccessRadius.md | 2 +- .../Get-RemoteAccessRoutingDomain.md | 2 +- .../Get-RemoteAccessUserActivity.md | 2 +- .../Get-RoutingProtocolPreference.md | 2 +- .../remoteaccess/Get-VpnAuthProtocol.md | 2 +- .../remoteaccess/Get-VpnS2SInterface.md | 2 +- .../Get-VpnS2SInterfaceStatistics.md | 2 +- .../Get-VpnServerConfiguration.md | 2 +- .../remoteaccess/Get-VpnSstpProxyRule.md | 2 +- .../remoteaccess/Install-RemoteAccess.md | 2 +- .../remoteaccess/New-VpnSstpProxyRule.md | 2 +- .../remoteaccess/New-VpnTrafficSelector.md | 2 +- .../remoteaccess/Remove-BgpCustomRoute.md | 2 +- .../remoteaccess/Remove-BgpPeer.md | 2 +- .../remoteaccess/Remove-BgpRouteAggregate.md | 2 +- .../remoteaccess/Remove-BgpRouter.md | 2 +- .../remoteaccess/Remove-BgpRoutingPolicy.md | 2 +- .../Remove-BgpRoutingPolicyForPeer.md | 2 +- .../remoteaccess/Remove-DAAppServer.md | 2 +- .../remoteaccess/Remove-DAClient.md | 2 +- .../Remove-DAClientDnsConfiguration.md | 2 +- .../remoteaccess/Remove-DAEntryPoint.md | 2 +- .../remoteaccess/Remove-DAMgmtServer.md | 2 +- .../Remove-RemoteAccessIpFilter.md | 2 +- .../Remove-RemoteAccessLoadBalancerNode.md | 2 +- .../remoteaccess/Remove-RemoteAccessRadius.md | 2 +- .../remoteaccess/Remove-VpnIPAddressRange.md | 2 +- .../remoteaccess/Remove-VpnS2SInterface.md | 2 +- .../remoteaccess/Remove-VpnSstpProxyRule.md | 2 +- .../remoteaccess/Set-BgpPeer.md | 2 +- .../remoteaccess/Set-BgpRouteAggregate.md | 2 +- .../remoteaccess/Set-BgpRouteFlapDampening.md | 2 +- .../remoteaccess/Set-BgpRouter.md | 2 +- .../remoteaccess/Set-BgpRoutingPolicy.md | 2 +- .../Set-BgpRoutingPolicyForPeer.md | 2 +- .../remoteaccess/Set-DAAppServerConnection.md | 2 +- .../remoteaccess/Set-DAClient.md | 2 +- .../Set-DAClientDnsConfiguration.md | 2 +- .../remoteaccess/Set-DAEntryPoint.md | 2 +- .../remoteaccess/Set-DAEntryPointDC.md | 2 +- .../remoteaccess/Set-DAMultiSite.md | 2 +- .../Set-DANetworkLocationServer.md | 2 +- .../remoteaccess/Set-DAOtpAuthentication.md | 2 +- .../remoteaccess/Set-DAServer.md | 2 +- .../remoteaccess/Set-RemoteAccess.md | 2 +- .../Set-RemoteAccessAccounting.md | 2 +- .../Set-RemoteAccessConfiguration.md | 2 +- .../Set-RemoteAccessInboxAccountingStore.md | 2 +- .../remoteaccess/Set-RemoteAccessIpFilter.md | 2 +- .../Set-RemoteAccessLoadBalancer.md | 2 +- .../remoteaccess/Set-RemoteAccessRadius.md | 2 +- .../Set-RemoteAccessRoutingDomain.md | 2 +- .../Set-RoutingProtocolPreference.md | 2 +- .../remoteaccess/Set-VpnAuthProtocol.md | 2 +- .../remoteaccess/Set-VpnAuthType.md | 2 +- .../Set-VpnIPAddressAssignment.md | 2 +- .../remoteaccess/Set-VpnS2SInterface.md | 2 +- .../Set-VpnServerConfiguration.md | 2 +- .../remoteaccess/Set-VpnSstpProxyRule.md | 2 +- .../remoteaccess/Start-BgpPeer.md | 2 +- .../remoteaccess/Stop-BgpPeer.md | 2 +- .../remoteaccess/Uninstall-RemoteAccess.md | 2 +- .../remoteaccess/Update-DAMgmtServer.md | 2 +- .../remotedesktopservices/Convert-License.md | 2 +- .../scheduledtasks/Disable-ScheduledTask.md | 2 +- .../scheduledtasks/Enable-ScheduledTask.md | 2 +- .../scheduledtasks/Export-ScheduledTask.md | 2 +- .../Get-ClusteredScheduledTask.md | 2 +- .../scheduledtasks/Get-ScheduledTask.md | 2 +- .../scheduledtasks/Get-ScheduledTaskInfo.md | 2 +- .../scheduledtasks/New-ScheduledTask.md | 2 +- .../scheduledtasks/New-ScheduledTaskAction.md | 2 +- .../New-ScheduledTaskPrincipal.md | 2 +- .../New-ScheduledTaskSettingsSet.md | 2 +- .../New-ScheduledTaskTrigger.md | 2 +- .../Register-ClusteredScheduledTask.md | 2 +- .../scheduledtasks/Register-ScheduledTask.md | 2 +- .../Set-ClusteredScheduledTask.md | 2 +- .../scheduledtasks/Set-ScheduledTask.md | 2 +- .../scheduledtasks/Start-ScheduledTask.md | 2 +- .../scheduledtasks/Stop-ScheduledTask.md | 2 +- .../Unregister-ClusteredScheduledTask.md | 2 +- .../Unregister-ScheduledTask.md | 2 +- .../secureboot/Confirm-SecureBootUEFI.md | 2 +- .../secureboot/Format-SecureBootUEFI.md | 2 +- .../secureboot/Get-SecureBootPolicy.md | 2 +- .../secureboot/Get-SecureBootUEFI.md | 2 +- .../secureboot/Set-SecureBootUEFI.md | 2 +- .../servercore/Get-DisplayResolution.md | 2 +- .../servercore/Set-DisplayResolution.md | 2 +- .../servermanagertasks/Get-SMCounterSample.md | 2 +- .../Get-SMPerformanceCollector.md | 2 +- .../Get-SMServerBpaResult.md | 2 +- .../Get-SMServerClusterName.md | 2 +- .../servermanagertasks/Get-SMServerEvent.md | 2 +- .../servermanagertasks/Get-SMServerFeature.md | 2 +- .../Get-SMServerInventory.md | 2 +- .../servermanagertasks/Get-SMServerService.md | 2 +- .../Remove-SMServerPerformanceLog.md | 2 +- .../Start-SMPerformanceCollector.md | 2 +- .../Stop-SMPerformanceCollector.md | 2 +- .../Get-KeyProtectorFromShieldingDataFile.md | 2 +- .../Get-ShieldedVMProvisioningStatus.md | 2 +- .../Initialize-ShieldedVM.md | 2 +- .../New-ShieldedVMSpecializationDataFile.md | 2 +- .../Test-ShieldingDataApplicability.md | 2 +- .../Import-ShieldingDataFile.md | 2 +- .../New-ShieldingDataFile.md | 2 +- .../New-VolumeIDQualifier.md | 2 +- .../Save-ShieldedVMRecoveryKey.md | 2 +- .../Save-VolumeSignatureCatalog.md | 2 +- .../Unprotect-ShieldedVMRecoveryKey.md | 2 +- .../Initialize-VMShieldingHelperVHD.md | 2 +- .../Protect-TemplateDisk.md | 2 +- .../smbshare/Block-SmbShareAccess.md | 2 +- .../smbshare/Close-SmbOpenFile.md | 2 +- .../smbshare/Close-SmbSession.md | 2 +- .../smbshare/Disable-SmbDelegation.md | 2 +- .../smbshare/Enable-SmbDelegation.md | 2 +- .../smbshare/Get-SmbBandwidthLimit.md | 2 +- .../smbshare/Get-SmbClientConfiguration.md | 2 +- .../smbshare/Get-SmbClientNetworkInterface.md | 2 +- .../smbshare/Get-SmbConnection.md | 2 +- .../smbshare/Get-SmbDelegation.md | 2 +- .../smbshare/Get-SmbGlobalMapping.md | 4 +-- .../smbshare/Get-SmbMapping.md | 2 +- .../smbshare/Get-SmbMultichannelConnection.md | 2 +- .../smbshare/Get-SmbMultichannelConstraint.md | 2 +- .../smbshare/Get-SmbOpenFile.md | 2 +- .../smbshare/Get-SmbServerCertProps.md | 2 +- .../Get-SmbServerCertificateMapping.md | 2 +- .../smbshare/Get-SmbServerConfiguration.md | 2 +- .../smbshare/Get-SmbServerNetworkInterface.md | 2 +- .../smbshare/Get-SmbSession.md | 2 +- .../winserver2022-ps/smbshare/Get-SmbShare.md | 2 +- .../smbshare/Get-SmbShareAccess.md | 2 +- .../smbshare/Grant-SmbShareAccess.md | 2 +- .../smbshare/New-SmbGlobalMapping.md | 2 +- .../smbshare/New-SmbMapping.md | 2 +- .../smbshare/New-SmbMultichannelConstraint.md | 2 +- .../New-SmbServerCertificateMapping.md | 4 +-- .../winserver2022-ps/smbshare/New-SmbShare.md | 2 +- .../smbshare/Remove-SmbBandwidthLimit.md | 2 +- .../smbshare/Remove-SmbComponent.md | 2 +- .../smbshare/Remove-SmbGlobalMapping.md | 2 +- .../smbshare/Remove-SmbMapping.md | 2 +- .../Remove-SmbMultichannelConstraint.md | 2 +- .../Remove-SmbServerCertificateMapping.md | 2 +- .../smbshare/Remove-SmbShare.md | 2 +- .../smbshare/Revoke-SmbShareAccess.md | 2 +- .../smbshare/Set-SmbBandwidthLimit.md | 2 +- .../smbshare/Set-SmbClientConfiguration.md | 2 +- .../smbshare/Set-SmbPathAcl.md | 2 +- .../Set-SmbServerCertificateMapping.md | 2 +- .../winserver2022-ps/smbshare/Set-SmbShare.md | 2 +- .../smbshare/Unblock-SmbShareAccess.md | 2 +- .../Update-SmbMultichannelConnection.md | 2 +- .../smbwitness/Get-SmbWitnessClient.md | 2 +- .../smbwitness/Move-SmbWitnessClient.md | 2 +- .../smisconfig/Register-SmisProvider.md | 2 +- .../smisconfig/Search-SmisProvider.md | 2 +- .../smisconfig/Unregister-SmisProvider.md | 2 +- .../Get-SilComputer.md | 2 +- .../Get-SilComputerIdentity.md | 2 +- .../softwareinventorylogging/Get-SilData.md | 2 +- .../Get-SilLogging.md | 2 +- .../Get-SilSoftware.md | 2 +- .../Get-SilUalAccess.md | 2 +- .../Get-SilWindowsUpdate.md | 2 +- .../Publish-SilData.md | 2 +- .../Set-SilLogging.md | 2 +- .../Start-SilLogging.md | 2 +- .../Stop-SilLogging.md | 2 +- .../startlayout/Export-StartLayout.md | 2 +- .../Export-StartLayoutEdgeAssets.md | 2 +- .../startlayout/Get-StartApps.md | 2 +- .../startlayout/Import-StartLayout.md | 2 +- .../storage/Add-InitiatorIdToMaskingSet.md | 2 +- .../storage/Add-PartitionAccessPath.md | 2 +- .../storage/Add-PhysicalDisk.md | 2 +- .../storage/Add-TargetPortToMaskingSet.md | 2 +- .../storage/Add-VirtualDiskToMaskingSet.md | 2 +- .../storage/Block-FileShareAccess.md | 2 +- docset/winserver2022-ps/storage/Clear-Disk.md | 2 +- .../storage/Clear-FileStorageTier.md | 2 +- .../storage/Connect-VirtualDisk.md | 2 +- .../storage/Debug-FileShare.md | 2 +- .../storage/Debug-StorageSubSystem.md | 2 +- .../winserver2022-ps/storage/Debug-Volume.md | 2 +- .../Disable-PhysicalDiskIdentification.md | 2 +- .../Disable-StorageEnclosureIdentification.md | 2 +- .../Disable-StorageHighAvailability.md | 2 +- .../storage/Disable-StorageMaintenanceMode.md | 2 +- .../storage/Disconnect-VirtualDisk.md | 2 +- .../storage/Dismount-DiskImage.md | 2 +- .../Enable-PhysicalDiskIdentification.md | 2 +- .../Enable-StorageEnclosureIdentification.md | 2 +- .../storage/Enable-StorageHighAvailability.md | 2 +- .../storage/Enable-StorageMaintenanceMode.md | 2 +- .../winserver2022-ps/storage/Format-Volume.md | 2 +- .../storage/Get-DedupProperties.md | 2 +- docset/winserver2022-ps/storage/Get-Disk.md | 2 +- .../winserver2022-ps/storage/Get-DiskImage.md | 2 +- .../storage/Get-DiskStorageNodeView.md | 2 +- .../storage/Get-FileIntegrity.md | 2 +- .../winserver2022-ps/storage/Get-FileShare.md | 2 +- .../Get-FileShareAccessControlEntry.md | 2 +- .../storage/Get-FileStorageTier.md | 2 +- .../storage/Get-InitiatorId.md | 2 +- .../storage/Get-InitiatorPort.md | 2 +- .../storage/Get-MaskingSet.md | 2 +- .../storage/Get-OffloadDataTransferSetting.md | 2 +- .../winserver2022-ps/storage/Get-Partition.md | 2 +- .../storage/Get-PartitionSupportedSize.md | 2 +- .../storage/Get-PhysicalDisk.md | 2 +- .../Get-PhysicalDiskStorageNodeView.md | 2 +- .../storage/Get-PhysicalExtent.md | 2 +- .../storage/Get-PhysicalExtentAssociation.md | 2 +- .../storage/Get-ResiliencySetting.md | 2 +- .../storage/Get-StorageAdvancedProperty.md | 2 +- .../storage/Get-StorageDiagnosticInfo.md | 2 +- .../storage/Get-StorageEnclosure.md | 2 +- .../Get-StorageEnclosureStorageNodeView.md | 2 +- .../storage/Get-StorageEnclosureVendorData.md | 2 +- .../storage/Get-StorageFaultDomain.md | 2 +- .../storage/Get-StorageFileServer.md | 2 +- .../storage/Get-StorageFirmwareInformation.md | 2 +- .../storage/Get-StorageHealthAction.md | 2 +- .../storage/Get-StorageHealthReport.md | 2 +- .../storage/Get-StorageHealthSetting.md | 2 +- .../storage/Get-StorageJob.md | 2 +- .../storage/Get-StorageNode.md | 2 +- .../storage/Get-StoragePool.md | 2 +- .../storage/Get-StorageProvider.md | 2 +- .../storage/Get-StorageReliabilityCounter.md | 2 +- .../storage/Get-StorageSetting.md | 2 +- .../storage/Get-StorageSubSystem.md | 2 +- .../storage/Get-StorageTier.md | 2 +- .../storage/Get-StorageTierSupportedSize.md | 2 +- .../storage/Get-SupportedClusterSizes.md | 2 +- .../storage/Get-SupportedFileSystems.md | 2 +- .../storage/Get-TargetPort.md | 2 +- .../storage/Get-TargetPortal.md | 2 +- .../storage/Get-VirtualDisk.md | 2 +- .../storage/Get-VirtualDiskSupportedSize.md | 2 +- docset/winserver2022-ps/storage/Get-Volume.md | 2 +- .../storage/Get-VolumeCorruptionCount.md | 2 +- .../storage/Get-VolumeScrubPolicy.md | 2 +- .../storage/Grant-FileShareAccess.md | 2 +- .../storage/Hide-VirtualDisk.md | 2 +- .../storage/Initialize-Disk.md | 2 +- .../storage/Mount-DiskImage.md | 2 +- .../winserver2022-ps/storage/New-FileShare.md | 2 +- .../storage/New-MaskingSet.md | 2 +- .../winserver2022-ps/storage/New-Partition.md | 2 +- .../storage/New-StorageFileServer.md | 2 +- .../storage/New-StoragePool.md | 2 +- .../New-StorageSubsystemVirtualDisk.md | 2 +- .../storage/New-StorageTier.md | 2 +- .../storage/New-VirtualDisk.md | 2 +- .../storage/New-VirtualDiskClone.md | 2 +- .../storage/New-VirtualDiskSnapshot.md | 2 +- docset/winserver2022-ps/storage/New-Volume.md | 2 +- .../storage/Optimize-StoragePool.md | 2 +- .../storage/Optimize-Volume.md | 2 +- .../storage/Register-StorageSubsystem.md | 2 +- .../storage/Remove-FileShare.md | 2 +- .../storage/Remove-InitiatorId.md | 2 +- .../Remove-InitiatorIdFromMaskingSet.md | 2 +- .../storage/Remove-MaskingSet.md | 2 +- .../storage/Remove-Partition.md | 2 +- .../storage/Remove-PartitionAccessPath.md | 2 +- .../storage/Remove-PhysicalDisk.md | 2 +- .../storage/Remove-StorageFileServer.md | 2 +- .../storage/Remove-StorageHealthSetting.md | 2 +- .../storage/Remove-StoragePool.md | 2 +- .../storage/Remove-StorageTier.md | 2 +- .../Remove-TargetPortFromMaskingSet.md | 2 +- .../storage/Remove-VirtualDisk.md | 2 +- .../Remove-VirtualDiskFromMaskingSet.md | 2 +- .../storage/Rename-MaskingSet.md | 2 +- .../storage/Repair-FileIntegrity.md | 2 +- .../storage/Repair-VirtualDisk.md | 2 +- .../winserver2022-ps/storage/Repair-Volume.md | 2 +- .../storage/Reset-PhysicalDisk.md | 2 +- .../Reset-StorageReliabilityCounter.md | 2 +- .../storage/Resize-Partition.md | 2 +- .../storage/Resize-StorageTier.md | 2 +- .../storage/Resize-VirtualDisk.md | 2 +- .../storage/Revoke-FileShareAccess.md | 2 +- docset/winserver2022-ps/storage/Set-Disk.md | 2 +- .../storage/Set-FileIntegrity.md | 2 +- .../winserver2022-ps/storage/Set-FileShare.md | 2 +- .../storage/Set-FileStorageTier.md | 2 +- .../storage/Set-InitiatorPort.md | 2 +- .../winserver2022-ps/storage/Set-Partition.md | 2 +- .../storage/Set-PhysicalDisk.md | 2 +- .../storage/Set-ResiliencySetting.md | 2 +- .../storage/Set-StorageFileServer.md | 2 +- .../storage/Set-StorageHealthSetting.md | 2 +- .../storage/Set-StoragePool.md | 2 +- .../storage/Set-StorageProvider.md | 2 +- .../storage/Set-StorageSetting.md | 2 +- .../storage/Set-StorageSubSystem.md | 2 +- .../storage/Set-StorageTier.md | 2 +- .../storage/Set-VirtualDisk.md | 2 +- docset/winserver2022-ps/storage/Set-Volume.md | 2 +- .../storage/Set-VolumeScrubPolicy.md | 2 +- .../storage/Show-VirtualDisk.md | 2 +- .../storage/Start-StorageDiagnosticLog.md | 2 +- .../storage/Stop-StorageDiagnosticLog.md | 2 +- .../storage/Stop-StorageJob.md | 2 +- .../storage/Unblock-FileShareAccess.md | 2 +- .../storage/Unregister-StorageSubsystem.md | 2 +- .../winserver2022-ps/storage/Update-Disk.md | 2 +- .../storage/Update-HostStorageCache.md | 2 +- .../storage/Update-StorageFirmware.md | 2 +- .../storage/Update-StoragePool.md | 2 +- .../storage/Update-StorageProviderCache.md | 2 +- .../storage/Write-VolumeCache.md | 2 +- .../storageqos/Get-StorageQoSFlow.md | 2 +- .../storageqos/Get-StorageQosPolicy.md | 2 +- .../storageqos/Get-StorageQosPolicyStore.md | 2 +- .../storageqos/Get-StorageQosVolume.md | 2 +- .../storageqos/New-StorageQosPolicy.md | 2 +- .../storageqos/Remove-StorageQosPolicy.md | 2 +- .../storageqos/Set-StorageQosPolicy.md | 2 +- .../storageqos/Set-StorageQosPolicyStore.md | 2 +- .../storagereplica/Clear-SRMetadata.md | 2 +- .../storagereplica/Dismount-SRDestination.md | 2 +- .../storagereplica/Export-SRConfiguration.md | 2 +- .../storagereplica/Get-SRAccess.md | 2 +- .../storagereplica/Get-SRDelegation.md | 2 +- .../storagereplica/Get-SRGroup.md | 2 +- .../storagereplica/Get-SRNetworkConstraint.md | 2 +- .../storagereplica/Get-SRPartnership.md | 2 +- .../storagereplica/Grant-SRAccess.md | 2 +- .../storagereplica/Grant-SRDelegation.md | 2 +- .../storagereplica/Mount-SRDestination.md | 2 +- .../storagereplica/New-SRGroup.md | 2 +- .../storagereplica/New-SRPartnership.md | 2 +- .../storagereplica/Remove-SRGroup.md | 2 +- .../Remove-SRNetworkConstraint.md | 2 +- .../storagereplica/Remove-SRPartnership.md | 2 +- .../storagereplica/Revoke-SRAccess.md | 2 +- .../storagereplica/Revoke-SRDelegation.md | 2 +- .../storagereplica/Set-SRGroup.md | 2 +- .../storagereplica/Set-SRNetworkConstraint.md | 2 +- .../storagereplica/Set-SRPartnership.md | 2 +- .../storagereplica/Suspend-SRGroup.md | 2 +- .../storagereplica/Sync-SRGroup.md | 2 +- .../storagereplica/Test-SRTopology.md | 2 +- .../syncshare/Disable-SyncShare.md | 2 +- .../syncshare/Enable-SyncShare.md | 2 +- .../syncshare/Get-SyncServerSetting.md | 2 +- .../syncshare/Get-SyncShare.md | 2 +- .../syncshare/Get-SyncUserStatus.md | 2 +- .../syncshare/New-SyncShare.md | 2 +- .../syncshare/Remove-SyncShare.md | 2 +- .../syncshare/Repair-SyncShare.md | 2 +- .../syncshare/Set-SyncServerSetting.md | 2 +- .../syncshare/Set-SyncShare.md | 2 +- .../systeminsights/Add-InsightsCapability.md | 2 +- .../Disable-InsightsCapability.md | 2 +- .../Disable-InsightsCapabilitySchedule.md | 2 +- .../Enable-InsightsCapability.md | 2 +- .../Enable-InsightsCapabilitySchedule.md | 2 +- .../systeminsights/Get-InsightsCapability.md | 2 +- .../Get-InsightsCapabilityAction.md | 2 +- .../Get-InsightsCapabilityResult.md | 2 +- .../Get-InsightsCapabilitySchedule.md | 2 +- .../Invoke-InsightsCapability.md | 2 +- .../Remove-InsightsCapability.md | 2 +- .../Remove-InsightsCapabilityAction.md | 2 +- .../Set-InsightsCapabilityAction.md | 2 +- .../Set-InsightsCapabilitySchedule.md | 2 +- .../Update-InsightsCapability.md | 2 +- .../tls/Disable-TlsCipherSuite.md | 2 +- .../tls/Disable-TlsEccCurve.md | 2 +- .../tls/Disable-TlsSessionTicketKey.md | 2 +- .../tls/Enable-TlsCipherSuite.md | 2 +- .../tls/Enable-TlsEccCurve.md | 2 +- .../tls/Enable-TlsSessionTicketKey.md | 2 +- .../tls/Export-TlsSessionTicketKey.md | 2 +- .../tls/Get-TlsCipherSuite.md | 2 +- .../winserver2022-ps/tls/Get-TlsEccCurve.md | 2 +- .../tls/New-TlsSessionTicketKey.md | 2 +- .../Get-TroubleshootingPack.md | 2 +- .../Invoke-TroubleshootingPack.md | 2 +- .../trustedplatformmodule/Clear-Tpm.md | 2 +- .../ConvertTo-TpmOwnerAuth.md | 2 +- .../Disable-TpmAutoProvisioning.md | 2 +- .../Enable-TpmAutoProvisioning.md | 2 +- .../trustedplatformmodule/Get-Tpm.md | 2 +- .../Get-TpmEndorsementKeyInfo.md | 2 +- .../Get-TpmSupportedFeature.md | 2 +- .../Import-TpmOwnerAuth.md | 2 +- .../trustedplatformmodule/Initialize-Tpm.md | 2 +- .../trustedplatformmodule/Set-TpmOwnerAuth.md | 2 +- .../trustedplatformmodule/Unblock-Tpm.md | 2 +- .../uev/Clear-UevAppxPackage.md | 2 +- .../uev/Clear-UevConfiguration.md | 2 +- docset/winserver2022-ps/uev/Disable-Uev.md | 2 +- .../uev/Disable-UevAppxPackage.md | 2 +- .../uev/Disable-UevTemplate.md | 2 +- docset/winserver2022-ps/uev/Enable-Uev.md | 2 +- .../uev/Enable-UevAppxPackage.md | 2 +- .../uev/Enable-UevTemplate.md | 2 +- .../uev/Export-UevConfiguration.md | 2 +- .../winserver2022-ps/uev/Export-UevPackage.md | 2 +- .../uev/Get-UevAppxPackage.md | 2 +- .../uev/Get-UevConfiguration.md | 2 +- docset/winserver2022-ps/uev/Get-UevStatus.md | 2 +- .../winserver2022-ps/uev/Get-UevTemplate.md | 2 +- .../uev/Get-UevTemplateProgram.md | 2 +- .../uev/Import-UevConfiguration.md | 2 +- .../uev/Register-UevTemplate.md | 2 +- .../uev/Repair-UevTemplateIndex.md | 2 +- .../winserver2022-ps/uev/Restore-UevBackup.md | 2 +- .../uev/Restore-UevUserSetting.md | 2 +- .../uev/Set-UevConfiguration.md | 2 +- .../uev/Set-UevTemplateProfile.md | 2 +- .../winserver2022-ps/uev/Test-UevTemplate.md | 2 +- .../uev/Unregister-UevTemplate.md | 2 +- .../uev/Update-UevTemplate.md | 2 +- .../updateservices/Add-WsusComputer.md | 2 +- .../updateservices/Add-WsusDynamicCategory.md | 2 +- .../updateservices/Approve-WsusUpdate.md | 2 +- .../updateservices/Deny-WsusUpdate.md | 2 +- .../updateservices/Get-WsusClassification.md | 2 +- .../updateservices/Get-WsusComputer.md | 2 +- .../updateservices/Get-WsusDynamicCategory.md | 2 +- .../updateservices/Get-WsusProduct.md | 2 +- .../updateservices/Get-WsusServer.md | 2 +- .../updateservices/Get-WsusUpdate.md | 2 +- .../Invoke-WsusServerCleanup.md | 2 +- .../Remove-WsusDynamicCategory.md | 2 +- .../updateservices/Set-WsusClassification.md | 2 +- .../updateservices/Set-WsusDynamicCategory.md | 2 +- .../updateservices/Set-WsusProduct.md | 2 +- .../Set-WsusServerSynchronization.md | 2 +- .../useraccesslogging/Disable-Ual.md | 2 +- .../useraccesslogging/Enable-Ual.md | 2 +- .../useraccesslogging/Get-Ual.md | 2 +- .../useraccesslogging/Get-UalDailyAccess.md | 2 +- .../Get-UalDailyDeviceAccess.md | 2 +- .../Get-UalDailyUserAccess.md | 2 +- .../useraccesslogging/Get-UalDeviceAccess.md | 2 +- .../useraccesslogging/Get-UalDns.md | 2 +- .../useraccesslogging/Get-UalHyperV.md | 2 +- .../useraccesslogging/Get-UalOverview.md | 2 +- .../useraccesslogging/Get-UalServerDevice.md | 2 +- .../useraccesslogging/Get-UalServerUser.md | 2 +- .../useraccesslogging/Get-UalSystemId.md | 2 +- .../useraccesslogging/Get-UalUserAccess.md | 2 +- .../vamt/Add-VamtProductKey.md | 2 +- .../winserver2022-ps/vamt/Export-VamtData.md | 2 +- .../vamt/Find-VamtManagedMachine.md | 2 +- .../vamt/Get-VamtConfirmationId.md | 2 +- .../winserver2022-ps/vamt/Get-VamtProduct.md | 2 +- .../vamt/Get-VamtProductKey.md | 2 +- .../winserver2022-ps/vamt/Import-VamtData.md | 2 +- .../vamt/Initialize-VamtData.md | 2 +- .../vamt/Install-VamtConfirmationId.md | 2 +- .../vamt/Install-VamtProductActivation.md | 2 +- .../vamt/Install-VamtProductKey.md | 2 +- .../vamt/Update-VamtProduct.md | 2 +- .../vpnclient/Add-VpnConnection.md | 2 +- .../vpnclient/Add-VpnConnectionRoute.md | 2 +- .../Add-VpnConnectionTriggerApplication.md | 2 +- ...dd-VpnConnectionTriggerDnsConfiguration.md | 2 +- .../Add-VpnConnectionTriggerTrustedNetwork.md | 2 +- .../vpnclient/Get-VpnConnection.md | 2 +- .../vpnclient/Get-VpnConnectionTrigger.md | 2 +- .../vpnclient/New-EapConfiguration.md | 2 +- .../vpnclient/New-VpnServerAddress.md | 2 +- .../vpnclient/Remove-VpnConnection.md | 2 +- .../vpnclient/Remove-VpnConnectionRoute.md | 2 +- .../Remove-VpnConnectionTriggerApplication.md | 2 +- ...ve-VpnConnectionTriggerDnsConfiguration.md | 2 +- ...move-VpnConnectionTriggerTrustedNetwork.md | 2 +- .../vpnclient/Set-VpnConnection.md | 2 +- .../Set-VpnConnectionIPsecConfiguration.md | 2 +- .../vpnclient/Set-VpnConnectionProxy.md | 2 +- ...et-VpnConnectionTriggerDnsConfiguration.md | 2 +- .../Set-VpnConnectionTriggerTrustedNetwork.md | 2 +- docset/winserver2022-ps/wdac/Add-OdbcDsn.md | 2 +- .../wdac/Disable-OdbcPerfCounter.md | 2 +- .../wdac/Disable-WdacBidTrace.md | 2 +- .../wdac/Enable-OdbcPerfCounter.md | 2 +- .../wdac/Enable-WdacBidTrace.md | 2 +- .../winserver2022-ps/wdac/Get-OdbcDriver.md | 2 +- docset/winserver2022-ps/wdac/Get-OdbcDsn.md | 2 +- .../wdac/Get-OdbcPerfCounter.md | 2 +- .../winserver2022-ps/wdac/Get-WdacBidTrace.md | 2 +- .../winserver2022-ps/wdac/Remove-OdbcDsn.md | 2 +- .../winserver2022-ps/wdac/Set-OdbcDriver.md | 2 +- docset/winserver2022-ps/wdac/Set-OdbcDsn.md | 2 +- .../wds/Add-WdsDriverPackage.md | 2 +- .../winserver2022-ps/wds/Approve-WdsClient.md | 2 +- .../wds/Copy-WdsInstallImage.md | 2 +- docset/winserver2022-ps/wds/Deny-WdsClient.md | 2 +- .../wds/Disable-WdsBootImage.md | 2 +- .../wds/Disable-WdsDriverPackage.md | 2 +- .../wds/Disable-WdsInstallImage.md | 2 +- .../wds/Disconnect-WdsMulticastClient.md | 2 +- .../wds/Enable-WdsBootImage.md | 2 +- .../wds/Enable-WdsDriverPackage.md | 2 +- .../wds/Enable-WdsInstallImage.md | 2 +- .../wds/Export-WdsBootImage.md | 2 +- .../wds/Export-WdsInstallImage.md | 2 +- .../winserver2022-ps/wds/Get-WdsBootImage.md | 2 +- docset/winserver2022-ps/wds/Get-WdsClient.md | 2 +- .../wds/Get-WdsDriverPackage.md | 2 +- .../wds/Get-WdsInstallImage.md | 2 +- .../wds/Get-WdsInstallImageGroup.md | 2 +- .../wds/Get-WdsMulticastClient.md | 2 +- .../wds/Import-WdsBootImage.md | 2 +- .../wds/Import-WdsDriverPackage.md | 2 +- .../wds/Import-WdsInstallImage.md | 2 +- docset/winserver2022-ps/wds/New-WdsClient.md | 2 +- .../wds/New-WdsInstallImageGroup.md | 2 +- .../wds/Remove-WdsBootImage.md | 2 +- .../winserver2022-ps/wds/Remove-WdsClient.md | 2 +- .../wds/Remove-WdsDriverPackage.md | 2 +- .../wds/Remove-WdsInstallImage.md | 2 +- .../wds/Remove-WdsInstallImageGroup.md | 2 +- .../winserver2022-ps/wds/Set-WdsBootImage.md | 2 +- docset/winserver2022-ps/wds/Set-WdsClient.md | 2 +- .../wds/Set-WdsInstallImage.md | 2 +- .../wds/Set-WdsInstallImageGroup.md | 2 +- .../webadministration/Add-WebConfiguration.md | 2 +- .../Add-WebConfigurationLock.md | 2 +- .../Add-WebConfigurationProperty.md | 2 +- .../Backup-WebConfiguration.md | 2 +- .../Clear-WebCentralCertProvider.md | 2 +- .../Clear-WebConfiguration.md | 2 +- .../Clear-WebRequestTracingSetting.md | 2 +- .../Clear-WebRequestTracingSettings.md | 2 +- .../ConvertTo-WebApplication.md | 2 +- .../Disable-WebCentralCertProvider.md | 2 +- .../Disable-WebGlobalModule.md | 2 +- .../Disable-WebRequestTracing.md | 2 +- .../Enable-WebCentralCertProvider.md | 2 +- .../Enable-WebGlobalModule.md | 2 +- .../Enable-WebRequestTracing.md | 2 +- .../webadministration/Get-WebAppDomain.md | 2 +- .../webadministration/Get-WebAppPoolState.md | 2 +- .../webadministration/Get-WebApplication.md | 2 +- .../webadministration/Get-WebBinding.md | 2 +- .../Get-WebCentralCertProvider.md | 2 +- .../webadministration/Get-WebConfigFile.md | 2 +- .../webadministration/Get-WebConfiguration.md | 2 +- .../Get-WebConfigurationBackup.md | 2 +- .../Get-WebConfigurationLocation.md | 2 +- .../Get-WebConfigurationLock.md | 2 +- .../Get-WebConfigurationProperty.md | 2 +- .../webadministration/Get-WebFilePath.md | 2 +- .../webadministration/Get-WebGlobalModule.md | 2 +- .../webadministration/Get-WebHandler.md | 2 +- .../webadministration/Get-WebItemState.md | 2 +- .../webadministration/Get-WebManagedModule.md | 2 +- .../webadministration/Get-WebRequest.md | 2 +- .../webadministration/Get-WebURL.md | 2 +- .../Get-WebVirtualDirectory.md | 2 +- .../webadministration/Get-Website.md | 2 +- .../webadministration/Get-WebsiteState.md | 2 +- .../webadministration/New-WebAppPool.md | 2 +- .../webadministration/New-WebApplication.md | 2 +- .../webadministration/New-WebBinding.md | 2 +- .../webadministration/New-WebFtpSite.md | 2 +- .../webadministration/New-WebGlobalModule.md | 2 +- .../webadministration/New-WebHandler.md | 2 +- .../webadministration/New-WebManagedModule.md | 2 +- .../New-WebVirtualDirectory.md | 2 +- .../webadministration/New-Website.md | 2 +- .../webadministration/Remove-WebAppPool.md | 2 +- .../Remove-WebApplication.md | 2 +- .../webadministration/Remove-WebBinding.md | 2 +- .../Remove-WebConfigurationBackup.md | 2 +- .../Remove-WebConfigurationLocation.md | 2 +- .../Remove-WebConfigurationLock.md | 2 +- .../Remove-WebConfigurationProperty.md | 2 +- .../Remove-WebGlobalModule.md | 2 +- .../webadministration/Remove-WebHandler.md | 2 +- .../Remove-WebManagedModule.md | 2 +- .../Remove-WebVirtualDirectory.md | 2 +- .../webadministration/Remove-Website.md | 2 +- .../Rename-WebConfigurationLocation.md | 2 +- .../webadministration/Restart-WebAppPool.md | 2 +- .../webadministration/Restart-WebItem.md | 2 +- .../Restore-WebConfiguration.md | 2 +- .../Select-WebConfiguration.md | 2 +- .../webadministration/Set-WebBinding.md | 2 +- .../Set-WebCentralCertProvider.md | 2 +- .../Set-WebCentralCertProviderCredential.md | 2 +- .../webadministration/Set-WebConfiguration.md | 2 +- .../Set-WebConfigurationProperty.md | 2 +- .../webadministration/Set-WebGlobalModule.md | 2 +- .../webadministration/Set-WebHandler.md | 2 +- .../webadministration/Set-WebManagedModule.md | 2 +- .../webadministration/Start-WebAppPool.md | 2 +- .../webadministration/Start-WebCommitDelay.md | 2 +- .../webadministration/Start-WebItem.md | 2 +- .../webadministration/Start-Website.md | 2 +- .../webadministration/Stop-WebAppPool.md | 2 +- .../webadministration/Stop-WebCommitDelay.md | 2 +- .../webadministration/Stop-WebItem.md | 2 +- .../webadministration/Stop-Website.md | 2 +- .../Add-WebApplicationProxyApplication.md | 2 +- .../Get-WebApplicationProxyApplication.md | 2 +- ...plicationProxyAvailableADFSRelyingParty.md | 2 +- .../Get-WebApplicationProxyConfiguration.md | 2 +- .../Get-WebApplicationProxyHealth.md | 2 +- .../Get-WebApplicationProxySslCertificate.md | 2 +- .../Install-WebApplicationProxy.md | 2 +- .../Remove-WebApplicationProxyApplication.md | 2 +- .../Set-WebApplicationProxyApplication.md | 2 +- .../Set-WebApplicationProxyConfiguration.md | 2 +- .../Set-WebApplicationProxySslCertificate.md | 2 +- ...e-WebApplicationProxyDeviceRegistration.md | 2 +- .../whea/Get-WheaMemoryPolicy.md | 2 +- .../whea/Set-WheaMemoryPolicy.md | 2 +- .../Get-WindowsDeveloperLicense.md | 2 +- ...how-WindowsDeveloperLicenseRegistration.md | 2 +- .../Unregister-WindowsDeveloperLicense.md | 2 +- .../Clear-WindowsDiagnosticData.md | 2 +- .../Disable-WindowsErrorReporting.md | 2 +- .../Enable-WindowsErrorReporting.md | 2 +- .../Get-WindowsErrorReporting.md | 2 +- .../windowssearch/Get-WindowsSearchSetting.md | 2 +- .../windowssearch/Set-WindowsSearchSetting.md | 2 +- .../windowsserverbackup/Add-WBBackupTarget.md | 2 +- .../Add-WBBareMetalRecovery.md | 2 +- .../windowsserverbackup/Add-WBFileSpec.md | 2 +- .../windowsserverbackup/Add-WBSystemState.md | 2 +- .../Add-WBVirtualMachine.md | 2 +- .../windowsserverbackup/Add-WBVolume.md | 2 +- .../windowsserverbackup/Backup-ACL.md | 2 +- .../windowsserverbackup/Get-WBBackupSet.md | 2 +- .../windowsserverbackup/Get-WBBackupTarget.md | 2 +- .../Get-WBBackupVolumeBrowsePath.md | 2 +- .../Get-WBBareMetalRecovery.md | 2 +- .../windowsserverbackup/Get-WBDisk.md | 2 +- .../windowsserverbackup/Get-WBFileSpec.md | 2 +- .../windowsserverbackup/Get-WBJob.md | 2 +- .../Get-WBPerformanceConfiguration.md | 2 +- .../windowsserverbackup/Get-WBPolicy.md | 2 +- .../windowsserverbackup/Get-WBSchedule.md | 2 +- .../windowsserverbackup/Get-WBSummary.md | 2 +- .../windowsserverbackup/Get-WBSystemState.md | 2 +- .../Get-WBVirtualMachine.md | 2 +- .../windowsserverbackup/Get-WBVolume.md | 2 +- .../Get-WBVssBackupOption.md | 2 +- .../windowsserverbackup/New-WBBackupTarget.md | 2 +- .../windowsserverbackup/New-WBFileSpec.md | 2 +- .../windowsserverbackup/New-WBPolicy.md | 2 +- .../windowsserverbackup/Remove-WBBackupSet.md | 2 +- .../Remove-WBBackupTarget.md | 2 +- .../Remove-WBBareMetalRecovery.md | 2 +- .../windowsserverbackup/Remove-WBCatalog.md | 2 +- .../windowsserverbackup/Remove-WBFileSpec.md | 2 +- .../windowsserverbackup/Remove-WBPolicy.md | 2 +- .../Remove-WBSystemState.md | 2 +- .../Remove-WBVirtualMachine.md | 2 +- .../windowsserverbackup/Remove-WBVolume.md | 2 +- .../windowsserverbackup/Restore-ACL.md | 2 +- .../windowsserverbackup/Restore-WBCatalog.md | 2 +- .../windowsserverbackup/Resume-WBBackup.md | 2 +- .../Resume-WBVolumeRecovery.md | 2 +- .../Set-WBPerformanceConfiguration.md | 2 +- .../windowsserverbackup/Set-WBPolicy.md | 2 +- .../windowsserverbackup/Set-WBSchedule.md | 2 +- .../Set-WBVssBackupOption.md | 2 +- .../Start-WBApplicationRecovery.md | 2 +- .../windowsserverbackup/Start-WBBackup.md | 2 +- .../Start-WBFileRecovery.md | 2 +- .../Start-WBHyperVRecovery.md | 2 +- .../Start-WBSystemStateRecovery.md | 2 +- .../Start-WBVolumeRecovery.md | 2 +- .../windowsserverbackup/Stop-WBJob.md | 2 +- .../windowsupdate/Get-WindowsUpdateLog.md | 2 +- 3364 files changed, 3458 insertions(+), 3453 deletions(-) diff --git a/README.md b/README.md index a6bc74039b..ef82113286 100644 --- a/README.md +++ b/README.md @@ -4,18 +4,29 @@ Welcome! This repository houses the Windows 10, Windows Server 2016, and MDOP Po Edits to this content are published in the following places: -- [Windows 10 and Windows Server 2016](https://docs.microsoft.com/powershell/windows/get-started?view=win10-ps&preserve-view=true) -- [Microsoft Desktop Optimization Pack](https://docs.microsoft.com/powershell/mdop/get-started) +- [Windows 10 and Windows Server 2016][1] +- [Microsoft Desktop Optimization Pack][2] ## PowerShell Updatable Help (CabGen) CI Build Status -[![Build Status](https://apidrop.visualstudio.com/Content%20CI/_apis/build/status/PROD/CabGen(PowerShell_Updatable_Help)/GitHub_MicrosoftDocs_windows-powershell-docs/46a32786-a1f6-1250-e1e1-2a4554025dc9_cabgen_Publish-Updatable-Help?repoName=MicrosoftDocs%2Fwindows-powershell-docs&branchName=live)](https://apidrop.visualstudio.com/Content%20CI/_build/latest?definitionId=5077&repoName=MicrosoftDocs%2Fwindows-powershell-docs&branchName=live) +[![Build Status][3]/GitHub_MicrosoftDocs_windows-powershell-docs/46a32786-a1f6-1250-e1e1-2a4554025dc9_cabgen_Publish-Updatable-Help?repoName=MicrosoftDocs%2Fwindows-powershell-docs&branchName=live)](https://apidrop.visualstudio.com/Content%20CI/_build/latest?definitionId=5077&repoName=MicrosoftDocs%2Fwindows-powershell-docs&branchName=live) ## Contributing -We actively merge contributions into this repository via [pull request](https://help.github.com/articles/using-pull-requests/) into the *main* branch. -If you are not a Microsoft employee, before you submit a pull request you must [sign a Contribution License Agreement](https://cla.microsoft.com/) to ensure that the community is free to use your submissions. -For more information on contributing, read our [contributions guide](CONTRIBUTING.md). +We actively merge contributions into this repository via [pull request][4] into the *main* branch. +If you are not a Microsoft employee, before you submit a pull request you must [sign a Contribution License Agreement][5] to ensure that the community is free to use your submissions. +For more information on contributing, read our [contributions guide][6]. -This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information, see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments. +This project has adopted the [Microsoft Open Source Code of Conduct][7]. For more information, see the [Code of Conduct FAQ][8] or contact [opencode@microsoft.com][9] with any additional questions or comments. + + +[1]: https://docs.microsoft.com/powershell/windows/get-started?view=win10-ps&preserve-view=true +[2]: https://docs.microsoft.com/powershell/mdop/get-started +[3]: https://apidrop.visualstudio.com/Content%20CI/_apis/build/status/PROD/CabGen(PowerShell_Updatable_Help +[4]: https://help.github.com/articles/using-pull-requests/ +[5]: https://cla.microsoft.com/ +[6]: CONTRIBUTING.md +[7]: https://opensource.microsoft.com/codeofconduct/ +[8]: https://opensource.microsoft.com/codeofconduct/faq/ +[9]: mailto:opencode@microsoft.com diff --git a/docset/winserver2022-ps/Microsoft.DiagnosticDataViewer/Disable-DiagnosticDataViewing.md b/docset/winserver2022-ps/Microsoft.DiagnosticDataViewer/Disable-DiagnosticDataViewing.md index 7a16fe736d..f0eef98fad 100644 --- a/docset/winserver2022-ps/Microsoft.DiagnosticDataViewer/Disable-DiagnosticDataViewing.md +++ b/docset/winserver2022-ps/Microsoft.DiagnosticDataViewer/Disable-DiagnosticDataViewing.md @@ -1,7 +1,7 @@ --- external help file: DDVCmdlets.dll-Help.xml Module Name: Microsoft.DiagnosticDataViewer -online version: https://docs.microsoft.com/powershell/module/microsoft.diagnosticdataviewer/disable-diagnosticdataviewing?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/microsoft.diagnosticdataviewer/disable-diagnosticdataviewing?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-DiagnosticDataViewing --- diff --git a/docset/winserver2022-ps/Microsoft.DiagnosticDataViewer/Enable-DiagnosticDataViewing.md b/docset/winserver2022-ps/Microsoft.DiagnosticDataViewer/Enable-DiagnosticDataViewing.md index 1fcc2c48b7..279a3c854b 100644 --- a/docset/winserver2022-ps/Microsoft.DiagnosticDataViewer/Enable-DiagnosticDataViewing.md +++ b/docset/winserver2022-ps/Microsoft.DiagnosticDataViewer/Enable-DiagnosticDataViewing.md @@ -1,7 +1,7 @@ --- external help file: DDVCmdlets.dll-Help.xml Module Name: Microsoft.DiagnosticDataViewer -online version: https://docs.microsoft.com/powershell/module/microsoft.diagnosticdataviewer/enable-diagnosticdataviewing?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/microsoft.diagnosticdataviewer/enable-diagnosticdataviewing?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-DiagnosticDataViewing --- diff --git a/docset/winserver2022-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticData.md b/docset/winserver2022-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticData.md index 8c5e6fe729..9f37c58dd8 100644 --- a/docset/winserver2022-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticData.md +++ b/docset/winserver2022-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticData.md @@ -1,7 +1,7 @@ --- external help file: DDVCmdlets.dll-Help.xml Module Name: Microsoft.DiagnosticDataViewer -online version: https://docs.microsoft.com/powershell/module/microsoft.diagnosticdataviewer/get-diagnosticdata?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/microsoft.diagnosticdataviewer/get-diagnosticdata?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DiagnosticData --- diff --git a/docset/winserver2022-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticDataTypes.md b/docset/winserver2022-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticDataTypes.md index c953b78301..25271b5e9a 100644 --- a/docset/winserver2022-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticDataTypes.md +++ b/docset/winserver2022-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticDataTypes.md @@ -1,7 +1,7 @@ --- external help file: DDVCmdlets.dll-Help.xml Module Name: Microsoft.DiagnosticDataViewer -online version: https://docs.microsoft.com/powershell/module/microsoft.diagnosticdataviewer/get-diagnosticdatatypes?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/microsoft.diagnosticdataviewer/get-diagnosticdatatypes?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DiagnosticDataTypes --- diff --git a/docset/winserver2022-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticDataViewingSetting.md b/docset/winserver2022-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticDataViewingSetting.md index a06c845af5..50c9527cca 100644 --- a/docset/winserver2022-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticDataViewingSetting.md +++ b/docset/winserver2022-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticDataViewingSetting.md @@ -1,7 +1,7 @@ --- external help file: DDVCmdlets.dll-Help.xml Module Name: Microsoft.DiagnosticDataViewer -online version: https://docs.microsoft.com/powershell/module/microsoft.diagnosticdataviewer/get-diagnosticdataviewingsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/microsoft.diagnosticdataviewer/get-diagnosticdataviewingsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DiagnosticDataViewingSetting --- diff --git a/docset/winserver2022-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticStoreCapacity.md b/docset/winserver2022-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticStoreCapacity.md index 13244e1b37..7ae04eb688 100644 --- a/docset/winserver2022-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticStoreCapacity.md +++ b/docset/winserver2022-ps/Microsoft.DiagnosticDataViewer/Get-DiagnosticStoreCapacity.md @@ -1,7 +1,7 @@ --- external help file: DDVCmdlets.dll-Help.xml Module Name: Microsoft.DiagnosticDataViewer -online version: https://docs.microsoft.com/powershell/module/microsoft.diagnosticdataviewer/get-diagnosticstorecapacity?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/microsoft.diagnosticdataviewer/get-diagnosticstorecapacity?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DiagnosticStoreCapacity --- diff --git a/docset/winserver2022-ps/Microsoft.DiagnosticDataViewer/Set-DiagnosticStoreCapacity.md b/docset/winserver2022-ps/Microsoft.DiagnosticDataViewer/Set-DiagnosticStoreCapacity.md index bf9fdbcd6b..77a1bc6fab 100644 --- a/docset/winserver2022-ps/Microsoft.DiagnosticDataViewer/Set-DiagnosticStoreCapacity.md +++ b/docset/winserver2022-ps/Microsoft.DiagnosticDataViewer/Set-DiagnosticStoreCapacity.md @@ -1,7 +1,7 @@ --- external help file: DDVCmdlets.dll-Help.xml Module Name: Microsoft.DiagnosticDataViewer -online version: https://docs.microsoft.com/powershell/module/microsoft.diagnosticdataviewer/set-diagnosticstorecapacity?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/microsoft.diagnosticdataviewer/set-diagnosticstorecapacity?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DiagnosticStoreCapacity --- diff --git a/docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration/Disable-ServerManagerStandardUserRemoting.md b/docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration/Disable-ServerManagerStandardUserRemoting.md index ac04facf6f..3719ed1760 100644 --- a/docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration/Disable-ServerManagerStandardUserRemoting.md +++ b/docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration/Disable-ServerManagerStandardUserRemoting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ServerManager-help.xml Module Name: Microsoft.Windows.ServerManager.Migration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/disable-servermanagerstandarduserremoting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/disable-servermanagerstandarduserremoting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-ServerManagerStandardUserRemoting --- diff --git a/docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration/Enable-ServerManagerStandardUserRemoting.md b/docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration/Enable-ServerManagerStandardUserRemoting.md index 0665ef5d00..4d2897bccc 100644 --- a/docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration/Enable-ServerManagerStandardUserRemoting.md +++ b/docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration/Enable-ServerManagerStandardUserRemoting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ServerManager-help.xml Module Name: Microsoft.Windows.ServerManager.Migration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/enable-servermanagerstandarduserremoting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/enable-servermanagerstandarduserremoting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-ServerManagerStandardUserRemoting --- diff --git a/docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration/Export-SmigServerSetting.md b/docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration/Export-SmigServerSetting.md index ee2401495f..986826f5ee 100644 --- a/docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration/Export-SmigServerSetting.md +++ b/docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration/Export-SmigServerSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.ServerManager.PowerShell.dll-Help.xml Module Name: Microsoft.Windows.ServerManager.Migration ms.date: 01/03/2017 -online version: https://docs.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/export-smigserversetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/export-smigserversetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-SmigServerSetting --- diff --git a/docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration/Get-SmigServerFeature.md b/docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration/Get-SmigServerFeature.md index e7d3412dcd..ff02fed7db 100644 --- a/docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration/Get-SmigServerFeature.md +++ b/docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration/Get-SmigServerFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.ServerManager.PowerShell.dll-Help.xml Module Name: Microsoft.Windows.ServerManager.Migration ms.date: 01/03/2017 -online version: https://docs.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/get-smigserverfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/get-smigserverfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmigServerFeature --- diff --git a/docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration/Get-WindowsFeature.md b/docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration/Get-WindowsFeature.md index 12c16263b2..8990c29da1 100644 --- a/docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration/Get-WindowsFeature.md +++ b/docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration/Get-WindowsFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.ServerManager.PowerShell.dll-Help.xml Module Name: Microsoft.Windows.ServerManager.Migration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/get-windowsfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/get-windowsfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WindowsFeature --- diff --git a/docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration/Import-SmigServerSetting.md b/docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration/Import-SmigServerSetting.md index ee512d6f7f..e224baedb1 100644 --- a/docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration/Import-SmigServerSetting.md +++ b/docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration/Import-SmigServerSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.ServerManager.PowerShell.dll-Help.xml Module Name: Microsoft.Windows.ServerManager.Migration ms.date: 01/03/2017 -online version: https://docs.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/import-smigserversetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/import-smigserversetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-SmigServerSetting --- diff --git a/docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration/Install-WindowsFeature.md b/docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration/Install-WindowsFeature.md index af06f90da5..0b644efc58 100644 --- a/docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration/Install-WindowsFeature.md +++ b/docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration/Install-WindowsFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.ServerManager.PowerShell.dll-Help.xml Module Name: Microsoft.Windows.ServerManager.Migration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/install-windowsfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/install-windowsfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-WindowsFeature --- diff --git a/docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration/Receive-SmigServerData.md b/docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration/Receive-SmigServerData.md index 1121206f2c..099dd2ecf9 100644 --- a/docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration/Receive-SmigServerData.md +++ b/docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration/Receive-SmigServerData.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.ServerManager.PowerShell.dll-Help.xml Module Name: Microsoft.Windows.ServerManager.Migration ms.date: 01/03/2017 -online version: https://docs.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/receive-smigserverdata?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/receive-smigserverdata?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Receive-SmigServerData --- diff --git a/docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration/Send-SmigServerData.md b/docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration/Send-SmigServerData.md index 8b5e1cee84..74c3e48677 100644 --- a/docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration/Send-SmigServerData.md +++ b/docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration/Send-SmigServerData.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.ServerManager.PowerShell.dll-Help.xml Module Name: Microsoft.Windows.ServerManager.Migration ms.date: 01/03/2017 -online version: https://docs.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/send-smigserverdata?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/send-smigserverdata?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Send-SmigServerData --- diff --git a/docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration/ServerManager.md b/docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration/ServerManager.md index c8072d16ef..1f79e9e066 100644 --- a/docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration/ServerManager.md +++ b/docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration/ServerManager.md @@ -5,7 +5,7 @@ Help Version: 5.0.0.1 Locale: en-US Module Name: Microsoft.Windows.ServerManager.Migration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/servermanager?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/servermanager?view=windowsserver2022-ps&wt.mc_id=ps-gethelp title: ServerManager --- diff --git a/docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration/Uninstall-WindowsFeature.md b/docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration/Uninstall-WindowsFeature.md index f3ab84f15a..d16ee2f67d 100644 --- a/docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration/Uninstall-WindowsFeature.md +++ b/docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration/Uninstall-WindowsFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.ServerManager.PowerShell.dll-Help.xml Module Name: Microsoft.Windows.ServerManager.Migration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/uninstall-windowsfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/microsoft.windows.servermanager.migration/uninstall-windowsfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-WindowsFeature --- diff --git a/docset/winserver2022-ps/ServerManager/Disable-ServerManagerStandardUserRemoting.md b/docset/winserver2022-ps/ServerManager/Disable-ServerManagerStandardUserRemoting.md index 9e72f7ecb9..425e762d18 100644 --- a/docset/winserver2022-ps/ServerManager/Disable-ServerManagerStandardUserRemoting.md +++ b/docset/winserver2022-ps/ServerManager/Disable-ServerManagerStandardUserRemoting.md @@ -3,7 +3,7 @@ description: Disables access for specified standard users to event, service, per external help file: ServerManager-help.xml Module Name: ServerManager ms.date: 09/15/2021 -online version: https://docs.microsoft.com/powershell/module/servermanager/disable-servermanagerstandarduserremoting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanager/disable-servermanagerstandarduserremoting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-ServerManagerStandardUserRemoting --- diff --git a/docset/winserver2022-ps/ServerManager/Enable-ServerManagerStandardUserRemoting.md b/docset/winserver2022-ps/ServerManager/Enable-ServerManagerStandardUserRemoting.md index b68cb32f8e..7b39cba245 100644 --- a/docset/winserver2022-ps/ServerManager/Enable-ServerManagerStandardUserRemoting.md +++ b/docset/winserver2022-ps/ServerManager/Enable-ServerManagerStandardUserRemoting.md @@ -3,7 +3,7 @@ description: Provides one or more standard, non-Administrator users access to ev external help file: ServerManager-help.xml Module Name: ServerManager ms.date: 09/08/2021 -online version: https://docs.microsoft.com/powershell/module/servermanager/enable-servermanagerstandarduserremoting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanager/enable-servermanagerstandarduserremoting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-ServerManagerStandardUserRemoting --- diff --git a/docset/winserver2022-ps/ServerManager/Get-WindowsFeature.md b/docset/winserver2022-ps/ServerManager/Get-WindowsFeature.md index 98eea2b41c..2cde727771 100644 --- a/docset/winserver2022-ps/ServerManager/Get-WindowsFeature.md +++ b/docset/winserver2022-ps/ServerManager/Get-WindowsFeature.md @@ -3,7 +3,7 @@ description: Gets information about Windows Server roles, role services, and fea external help file: Microsoft.Windows.ServerManager.PowerShell.dll-Help.xml Module Name: ServerManager ms.date: 09/08/2021 -online version: https://docs.microsoft.com/powershell/module/servermanager/get-windowsfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanager/get-windowsfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WindowsFeature --- diff --git a/docset/winserver2022-ps/ServerManager/Install-WindowsFeature.md b/docset/winserver2022-ps/ServerManager/Install-WindowsFeature.md index fb83fc615d..261f9bffb8 100644 --- a/docset/winserver2022-ps/ServerManager/Install-WindowsFeature.md +++ b/docset/winserver2022-ps/ServerManager/Install-WindowsFeature.md @@ -3,7 +3,7 @@ description: Installs one or more roles, role services, or features on either th external help file: Microsoft.Windows.ServerManager.PowerShell.dll-Help.xml Module Name: ServerManager ms.date: 09/08/2021 -online version: https://docs.microsoft.com/powershell/module/servermanager/install-windowsfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanager/install-windowsfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-WindowsFeature --- diff --git a/docset/winserver2022-ps/ServerManager/ServerManager.md b/docset/winserver2022-ps/ServerManager/ServerManager.md index 1c9899a879..25a3063080 100644 --- a/docset/winserver2022-ps/ServerManager/ServerManager.md +++ b/docset/winserver2022-ps/ServerManager/ServerManager.md @@ -1,10 +1,10 @@ --- description: Server Manager-specific PowerShell cmdlet descriptions and syntax. -Module Name: ServerManager -Module Guid: d8e0cae9-8e9b-45bc-bfed-0aad50938af0 Download Help Link: https://aka.ms/winsvr-2022-pshelp Help Version: 5.0.0.1 Locale: en-US +Module Guid: d8e0cae9-8e9b-45bc-bfed-0aad50938af0 +Module Name: ServerManager ms.date: 09/15/2021 title: ServerManager --- diff --git a/docset/winserver2022-ps/ServerManager/Uninstall-WindowsFeature.md b/docset/winserver2022-ps/ServerManager/Uninstall-WindowsFeature.md index 420aefc53a..aea16d4696 100644 --- a/docset/winserver2022-ps/ServerManager/Uninstall-WindowsFeature.md +++ b/docset/winserver2022-ps/ServerManager/Uninstall-WindowsFeature.md @@ -3,7 +3,7 @@ description: Uninstalls specified Windows Server roles, role services, and featu external help file: Microsoft.Windows.ServerManager.PowerShell.dll-Help.xml Module Name: ServerManager ms.date: 09/08/2021 -online version: https://docs.microsoft.com/powershell/module/servermanager/uninstall-windowsfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanager/uninstall-windowsfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-WindowsFeature --- diff --git a/docset/winserver2022-ps/activedirectory/Add-ADCentralAccessPolicyMember.md b/docset/winserver2022-ps/activedirectory/Add-ADCentralAccessPolicyMember.md index 58a95bbdca..f4a63c922b 100644 --- a/docset/winserver2022-ps/activedirectory/Add-ADCentralAccessPolicyMember.md +++ b/docset/winserver2022-ps/activedirectory/Add-ADCentralAccessPolicyMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/add-adcentralaccesspolicymember?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/add-adcentralaccesspolicymember?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ADCentralAccessPolicyMember --- diff --git a/docset/winserver2022-ps/activedirectory/Add-ADComputerServiceAccount.md b/docset/winserver2022-ps/activedirectory/Add-ADComputerServiceAccount.md index 266fc55c4a..570e428871 100644 --- a/docset/winserver2022-ps/activedirectory/Add-ADComputerServiceAccount.md +++ b/docset/winserver2022-ps/activedirectory/Add-ADComputerServiceAccount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/add-adcomputerserviceaccount?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/add-adcomputerserviceaccount?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ADComputerServiceAccount --- diff --git a/docset/winserver2022-ps/activedirectory/Add-ADDomainControllerPasswordReplicationPolicy.md b/docset/winserver2022-ps/activedirectory/Add-ADDomainControllerPasswordReplicationPolicy.md index af6eebcc6b..ef5db9e042 100644 --- a/docset/winserver2022-ps/activedirectory/Add-ADDomainControllerPasswordReplicationPolicy.md +++ b/docset/winserver2022-ps/activedirectory/Add-ADDomainControllerPasswordReplicationPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/add-addomaincontrollerpasswordreplicationpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/add-addomaincontrollerpasswordreplicationpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ADDomainControllerPasswordReplicationPolicy --- diff --git a/docset/winserver2022-ps/activedirectory/Add-ADFineGrainedPasswordPolicySubject.md b/docset/winserver2022-ps/activedirectory/Add-ADFineGrainedPasswordPolicySubject.md index 6bd7d81996..19c74cc223 100644 --- a/docset/winserver2022-ps/activedirectory/Add-ADFineGrainedPasswordPolicySubject.md +++ b/docset/winserver2022-ps/activedirectory/Add-ADFineGrainedPasswordPolicySubject.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/add-adfinegrainedpasswordpolicysubject?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/add-adfinegrainedpasswordpolicysubject?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ADFineGrainedPasswordPolicySubject --- diff --git a/docset/winserver2022-ps/activedirectory/Add-ADGroupMember.md b/docset/winserver2022-ps/activedirectory/Add-ADGroupMember.md index 50d670db18..ccb0af15b4 100644 --- a/docset/winserver2022-ps/activedirectory/Add-ADGroupMember.md +++ b/docset/winserver2022-ps/activedirectory/Add-ADGroupMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/add-adgroupmember?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/add-adgroupmember?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ADGroupMember --- diff --git a/docset/winserver2022-ps/activedirectory/Add-ADPrincipalGroupMembership.md b/docset/winserver2022-ps/activedirectory/Add-ADPrincipalGroupMembership.md index a2a4260409..3717a2f00a 100644 --- a/docset/winserver2022-ps/activedirectory/Add-ADPrincipalGroupMembership.md +++ b/docset/winserver2022-ps/activedirectory/Add-ADPrincipalGroupMembership.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/add-adprincipalgroupmembership?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/add-adprincipalgroupmembership?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ADPrincipalGroupMembership --- diff --git a/docset/winserver2022-ps/activedirectory/Add-ADResourcePropertyListMember.md b/docset/winserver2022-ps/activedirectory/Add-ADResourcePropertyListMember.md index f79a6879f1..524ea97c91 100644 --- a/docset/winserver2022-ps/activedirectory/Add-ADResourcePropertyListMember.md +++ b/docset/winserver2022-ps/activedirectory/Add-ADResourcePropertyListMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/add-adresourcepropertylistmember?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/add-adresourcepropertylistmember?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ADResourcePropertyListMember --- diff --git a/docset/winserver2022-ps/activedirectory/Clear-ADAccountExpiration.md b/docset/winserver2022-ps/activedirectory/Clear-ADAccountExpiration.md index 6bce71da81..4bfd5190dd 100644 --- a/docset/winserver2022-ps/activedirectory/Clear-ADAccountExpiration.md +++ b/docset/winserver2022-ps/activedirectory/Clear-ADAccountExpiration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/clear-adaccountexpiration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/clear-adaccountexpiration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-ADAccountExpiration --- diff --git a/docset/winserver2022-ps/activedirectory/Clear-ADClaimTransformLink.md b/docset/winserver2022-ps/activedirectory/Clear-ADClaimTransformLink.md index e93dc346d0..e3e58d3483 100644 --- a/docset/winserver2022-ps/activedirectory/Clear-ADClaimTransformLink.md +++ b/docset/winserver2022-ps/activedirectory/Clear-ADClaimTransformLink.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/clear-adclaimtransformlink?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/clear-adclaimtransformlink?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-ADClaimTransformLink --- diff --git a/docset/winserver2022-ps/activedirectory/Disable-ADAccount.md b/docset/winserver2022-ps/activedirectory/Disable-ADAccount.md index de06b1e502..76ae0f3778 100644 --- a/docset/winserver2022-ps/activedirectory/Disable-ADAccount.md +++ b/docset/winserver2022-ps/activedirectory/Disable-ADAccount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/disable-adaccount?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/disable-adaccount?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-ADAccount --- diff --git a/docset/winserver2022-ps/activedirectory/Disable-ADOptionalFeature.md b/docset/winserver2022-ps/activedirectory/Disable-ADOptionalFeature.md index 76a97e72b8..440fcb02a8 100644 --- a/docset/winserver2022-ps/activedirectory/Disable-ADOptionalFeature.md +++ b/docset/winserver2022-ps/activedirectory/Disable-ADOptionalFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/disable-adoptionalfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/disable-adoptionalfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-ADOptionalFeature --- diff --git a/docset/winserver2022-ps/activedirectory/Enable-ADAccount.md b/docset/winserver2022-ps/activedirectory/Enable-ADAccount.md index 3a044d0327..c9cf92ad87 100644 --- a/docset/winserver2022-ps/activedirectory/Enable-ADAccount.md +++ b/docset/winserver2022-ps/activedirectory/Enable-ADAccount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/enable-adaccount?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/enable-adaccount?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-ADAccount --- diff --git a/docset/winserver2022-ps/activedirectory/Enable-ADOptionalFeature.md b/docset/winserver2022-ps/activedirectory/Enable-ADOptionalFeature.md index c4811db3b6..2214a1bb1b 100644 --- a/docset/winserver2022-ps/activedirectory/Enable-ADOptionalFeature.md +++ b/docset/winserver2022-ps/activedirectory/Enable-ADOptionalFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/enable-adoptionalfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/enable-adoptionalfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-ADOptionalFeature --- diff --git a/docset/winserver2022-ps/activedirectory/Get-ADAccountAuthorizationGroup.md b/docset/winserver2022-ps/activedirectory/Get-ADAccountAuthorizationGroup.md index 604a8dfae8..1267d42fe9 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADAccountAuthorizationGroup.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADAccountAuthorizationGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adaccountauthorizationgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adaccountauthorizationgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADAccountAuthorizationGroup --- diff --git a/docset/winserver2022-ps/activedirectory/Get-ADAccountResultantPasswordReplicationPolicy.md b/docset/winserver2022-ps/activedirectory/Get-ADAccountResultantPasswordReplicationPolicy.md index 2a2f7a0b7c..7880f478fa 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADAccountResultantPasswordReplicationPolicy.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADAccountResultantPasswordReplicationPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adaccountresultantpasswordreplicationpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adaccountresultantpasswordreplicationpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADAccountResultantPasswordReplicationPolicy --- diff --git a/docset/winserver2022-ps/activedirectory/Get-ADAuthenticationPolicy.md b/docset/winserver2022-ps/activedirectory/Get-ADAuthenticationPolicy.md index 0543669dbe..bdb5c663f6 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADAuthenticationPolicy.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADAuthenticationPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adauthenticationpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adauthenticationpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADAuthenticationPolicy --- diff --git a/docset/winserver2022-ps/activedirectory/Get-ADAuthenticationPolicySilo.md b/docset/winserver2022-ps/activedirectory/Get-ADAuthenticationPolicySilo.md index 3e48e49b8b..664dcf861a 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADAuthenticationPolicySilo.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADAuthenticationPolicySilo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adauthenticationpolicysilo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adauthenticationpolicysilo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADAuthenticationPolicySilo --- diff --git a/docset/winserver2022-ps/activedirectory/Get-ADCentralAccessPolicy.md b/docset/winserver2022-ps/activedirectory/Get-ADCentralAccessPolicy.md index 779a5ae19f..84f93ecb53 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADCentralAccessPolicy.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADCentralAccessPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adcentralaccesspolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adcentralaccesspolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADCentralAccessPolicy --- diff --git a/docset/winserver2022-ps/activedirectory/Get-ADCentralAccessRule.md b/docset/winserver2022-ps/activedirectory/Get-ADCentralAccessRule.md index 5a23a667e1..935c92524c 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADCentralAccessRule.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADCentralAccessRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adcentralaccessrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adcentralaccessrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADCentralAccessRule --- diff --git a/docset/winserver2022-ps/activedirectory/Get-ADClaimTransformPolicy.md b/docset/winserver2022-ps/activedirectory/Get-ADClaimTransformPolicy.md index 5defa0dffa..8408ad6dde 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADClaimTransformPolicy.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADClaimTransformPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adclaimtransformpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adclaimtransformpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADClaimTransformPolicy --- diff --git a/docset/winserver2022-ps/activedirectory/Get-ADClaimType.md b/docset/winserver2022-ps/activedirectory/Get-ADClaimType.md index b085e19bea..04d46fec4c 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADClaimType.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADClaimType.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adclaimtype?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adclaimtype?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADClaimType --- diff --git a/docset/winserver2022-ps/activedirectory/Get-ADComputer.md b/docset/winserver2022-ps/activedirectory/Get-ADComputer.md index 26a5f39c7a..d8920e3020 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADComputer.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADComputer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adcomputer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adcomputer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADComputer --- diff --git a/docset/winserver2022-ps/activedirectory/Get-ADComputerServiceAccount.md b/docset/winserver2022-ps/activedirectory/Get-ADComputerServiceAccount.md index bde541fac8..757f217cac 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADComputerServiceAccount.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADComputerServiceAccount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adcomputerserviceaccount?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adcomputerserviceaccount?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADComputerServiceAccount --- diff --git a/docset/winserver2022-ps/activedirectory/Get-ADDCCloningExcludedApplicationList.md b/docset/winserver2022-ps/activedirectory/Get-ADDCCloningExcludedApplicationList.md index f208ad7256..b11ed74e34 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADDCCloningExcludedApplicationList.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADDCCloningExcludedApplicationList.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-addccloningexcludedapplicationlist?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-addccloningexcludedapplicationlist?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADDCCloningExcludedApplicationList --- diff --git a/docset/winserver2022-ps/activedirectory/Get-ADDefaultDomainPasswordPolicy.md b/docset/winserver2022-ps/activedirectory/Get-ADDefaultDomainPasswordPolicy.md index fa68ac9522..c7e8fcf81b 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADDefaultDomainPasswordPolicy.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADDefaultDomainPasswordPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-addefaultdomainpasswordpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-addefaultdomainpasswordpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADDefaultDomainPasswordPolicy --- diff --git a/docset/winserver2022-ps/activedirectory/Get-ADDomain.md b/docset/winserver2022-ps/activedirectory/Get-ADDomain.md index 3c07cc0641..3f30d2b347 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADDomain.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADDomain.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-addomain?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-addomain?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADDomain --- diff --git a/docset/winserver2022-ps/activedirectory/Get-ADDomainController.md b/docset/winserver2022-ps/activedirectory/Get-ADDomainController.md index be0bf654ce..e034ab4d7b 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADDomainController.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADDomainController.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-addomaincontroller?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-addomaincontroller?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADDomainController --- diff --git a/docset/winserver2022-ps/activedirectory/Get-ADDomainControllerPasswordReplicationPolicy.md b/docset/winserver2022-ps/activedirectory/Get-ADDomainControllerPasswordReplicationPolicy.md index 046f34718e..acc4d3078a 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADDomainControllerPasswordReplicationPolicy.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADDomainControllerPasswordReplicationPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-addomaincontrollerpasswordreplicationpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-addomaincontrollerpasswordreplicationpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADDomainControllerPasswordReplicationPolicy --- diff --git a/docset/winserver2022-ps/activedirectory/Get-ADDomainControllerPasswordReplicationPolicyUsage.md b/docset/winserver2022-ps/activedirectory/Get-ADDomainControllerPasswordReplicationPolicyUsage.md index 02ee194a11..1631cc1057 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADDomainControllerPasswordReplicationPolicyUsage.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADDomainControllerPasswordReplicationPolicyUsage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-addomaincontrollerpasswordreplicationpolicyusage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-addomaincontrollerpasswordreplicationpolicyusage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADDomainControllerPasswordReplicationPolicyUsage --- diff --git a/docset/winserver2022-ps/activedirectory/Get-ADFineGrainedPasswordPolicy.md b/docset/winserver2022-ps/activedirectory/Get-ADFineGrainedPasswordPolicy.md index 360652e2e8..a9a1d9c9b6 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADFineGrainedPasswordPolicy.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADFineGrainedPasswordPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adfinegrainedpasswordpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adfinegrainedpasswordpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADFineGrainedPasswordPolicy --- diff --git a/docset/winserver2022-ps/activedirectory/Get-ADFineGrainedPasswordPolicySubject.md b/docset/winserver2022-ps/activedirectory/Get-ADFineGrainedPasswordPolicySubject.md index ba3c8119ec..4fb115251a 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADFineGrainedPasswordPolicySubject.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADFineGrainedPasswordPolicySubject.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adfinegrainedpasswordpolicysubject?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adfinegrainedpasswordpolicysubject?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADFineGrainedPasswordPolicySubject --- diff --git a/docset/winserver2022-ps/activedirectory/Get-ADForest.md b/docset/winserver2022-ps/activedirectory/Get-ADForest.md index a895b480c4..f54e09f755 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADForest.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADForest.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adforest?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adforest?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADForest --- diff --git a/docset/winserver2022-ps/activedirectory/Get-ADGroup.md b/docset/winserver2022-ps/activedirectory/Get-ADGroup.md index c84a01bfe7..67e3fc8991 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADGroup.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADGroup --- diff --git a/docset/winserver2022-ps/activedirectory/Get-ADGroupMember.md b/docset/winserver2022-ps/activedirectory/Get-ADGroupMember.md index 968d9de784..cf4985bbba 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADGroupMember.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADGroupMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adgroupmember?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adgroupmember?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADGroupMember --- diff --git a/docset/winserver2022-ps/activedirectory/Get-ADObject.md b/docset/winserver2022-ps/activedirectory/Get-ADObject.md index 2b5be8a920..8a71e81636 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADObject.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADObject.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adobject?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adobject?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADObject --- diff --git a/docset/winserver2022-ps/activedirectory/Get-ADOptionalFeature.md b/docset/winserver2022-ps/activedirectory/Get-ADOptionalFeature.md index 7c1ad5a31f..8afaa4037d 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADOptionalFeature.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADOptionalFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adoptionalfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adoptionalfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADOptionalFeature --- diff --git a/docset/winserver2022-ps/activedirectory/Get-ADOrganizationalUnit.md b/docset/winserver2022-ps/activedirectory/Get-ADOrganizationalUnit.md index 41ea9d5e5b..70ef9bddc1 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADOrganizationalUnit.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADOrganizationalUnit.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adorganizationalunit?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adorganizationalunit?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADOrganizationalUnit --- diff --git a/docset/winserver2022-ps/activedirectory/Get-ADPrincipalGroupMembership.md b/docset/winserver2022-ps/activedirectory/Get-ADPrincipalGroupMembership.md index 37bbed050c..cb4a561a04 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADPrincipalGroupMembership.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADPrincipalGroupMembership.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adprincipalgroupmembership?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adprincipalgroupmembership?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADPrincipalGroupMembership --- diff --git a/docset/winserver2022-ps/activedirectory/Get-ADReplicationAttributeMetadata.md b/docset/winserver2022-ps/activedirectory/Get-ADReplicationAttributeMetadata.md index 52ae436f50..aae4970c08 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADReplicationAttributeMetadata.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADReplicationAttributeMetadata.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adreplicationattributemetadata?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adreplicationattributemetadata?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADReplicationAttributeMetadata --- diff --git a/docset/winserver2022-ps/activedirectory/Get-ADReplicationConnection.md b/docset/winserver2022-ps/activedirectory/Get-ADReplicationConnection.md index ed38084b0f..9da80012c1 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADReplicationConnection.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADReplicationConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adreplicationconnection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adreplicationconnection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADReplicationConnection --- diff --git a/docset/winserver2022-ps/activedirectory/Get-ADReplicationFailure.md b/docset/winserver2022-ps/activedirectory/Get-ADReplicationFailure.md index ba7c1da7b6..2d0e9c0f8c 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADReplicationFailure.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADReplicationFailure.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adreplicationfailure?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adreplicationfailure?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADReplicationFailure --- diff --git a/docset/winserver2022-ps/activedirectory/Get-ADReplicationPartnerMetadata.md b/docset/winserver2022-ps/activedirectory/Get-ADReplicationPartnerMetadata.md index 195d809428..40d71091d4 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADReplicationPartnerMetadata.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADReplicationPartnerMetadata.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adreplicationpartnermetadata?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adreplicationpartnermetadata?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADReplicationPartnerMetadata --- diff --git a/docset/winserver2022-ps/activedirectory/Get-ADReplicationQueueOperation.md b/docset/winserver2022-ps/activedirectory/Get-ADReplicationQueueOperation.md index af3c75a905..212b3a4ac6 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADReplicationQueueOperation.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADReplicationQueueOperation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adreplicationqueueoperation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adreplicationqueueoperation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADReplicationQueueOperation --- diff --git a/docset/winserver2022-ps/activedirectory/Get-ADReplicationSite.md b/docset/winserver2022-ps/activedirectory/Get-ADReplicationSite.md index 25aa9f0969..4f22b40a51 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADReplicationSite.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADReplicationSite.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adreplicationsite?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adreplicationsite?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADReplicationSite --- diff --git a/docset/winserver2022-ps/activedirectory/Get-ADReplicationSiteLink.md b/docset/winserver2022-ps/activedirectory/Get-ADReplicationSiteLink.md index 019eb29863..d9ecd7b10a 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADReplicationSiteLink.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADReplicationSiteLink.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adreplicationsitelink?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adreplicationsitelink?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADReplicationSiteLink --- diff --git a/docset/winserver2022-ps/activedirectory/Get-ADReplicationSiteLinkBridge.md b/docset/winserver2022-ps/activedirectory/Get-ADReplicationSiteLinkBridge.md index 04a7068fa3..366ed4fb95 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADReplicationSiteLinkBridge.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADReplicationSiteLinkBridge.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adreplicationsitelinkbridge?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adreplicationsitelinkbridge?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADReplicationSiteLinkBridge --- diff --git a/docset/winserver2022-ps/activedirectory/Get-ADReplicationSubnet.md b/docset/winserver2022-ps/activedirectory/Get-ADReplicationSubnet.md index bd9f9276bc..7af6c2f09c 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADReplicationSubnet.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADReplicationSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adreplicationsubnet?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adreplicationsubnet?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADReplicationSubnet --- diff --git a/docset/winserver2022-ps/activedirectory/Get-ADReplicationUpToDatenessVectorTable.md b/docset/winserver2022-ps/activedirectory/Get-ADReplicationUpToDatenessVectorTable.md index 1191ecce70..16593b0c0a 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADReplicationUpToDatenessVectorTable.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADReplicationUpToDatenessVectorTable.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adreplicationuptodatenessvectortable?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adreplicationuptodatenessvectortable?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADReplicationUpToDatenessVectorTable --- diff --git a/docset/winserver2022-ps/activedirectory/Get-ADResourceProperty.md b/docset/winserver2022-ps/activedirectory/Get-ADResourceProperty.md index e4cd6030bd..77e65b8ee9 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADResourceProperty.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADResourceProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adresourceproperty?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adresourceproperty?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADResourceProperty --- diff --git a/docset/winserver2022-ps/activedirectory/Get-ADResourcePropertyList.md b/docset/winserver2022-ps/activedirectory/Get-ADResourcePropertyList.md index 5f102b11af..ea9412e489 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADResourcePropertyList.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADResourcePropertyList.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adresourcepropertylist?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adresourcepropertylist?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADResourcePropertyList --- diff --git a/docset/winserver2022-ps/activedirectory/Get-ADResourcePropertyValueType.md b/docset/winserver2022-ps/activedirectory/Get-ADResourcePropertyValueType.md index 7b1813ee4b..1a5b49f12c 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADResourcePropertyValueType.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADResourcePropertyValueType.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adresourcepropertyvaluetype?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adresourcepropertyvaluetype?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADResourcePropertyValueType --- diff --git a/docset/winserver2022-ps/activedirectory/Get-ADRootDSE.md b/docset/winserver2022-ps/activedirectory/Get-ADRootDSE.md index 927edc2974..3efb66cd8c 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADRootDSE.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADRootDSE.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adrootdse?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adrootdse?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADRootDSE --- diff --git a/docset/winserver2022-ps/activedirectory/Get-ADServiceAccount.md b/docset/winserver2022-ps/activedirectory/Get-ADServiceAccount.md index da29918df6..39c7eb1710 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADServiceAccount.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADServiceAccount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adserviceaccount?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adserviceaccount?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADServiceAccount --- diff --git a/docset/winserver2022-ps/activedirectory/Get-ADTrust.md b/docset/winserver2022-ps/activedirectory/Get-ADTrust.md index 7d3607e0b1..4cf2744a5f 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADTrust.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-adtrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-adtrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADTrust --- diff --git a/docset/winserver2022-ps/activedirectory/Get-ADUser.md b/docset/winserver2022-ps/activedirectory/Get-ADUser.md index dbb23e62e2..2d9f05a7fb 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADUser.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADUser.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-aduser?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-aduser?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADUser --- diff --git a/docset/winserver2022-ps/activedirectory/Get-ADUserResultantPasswordPolicy.md b/docset/winserver2022-ps/activedirectory/Get-ADUserResultantPasswordPolicy.md index b490d701b0..84ee3fe7bb 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADUserResultantPasswordPolicy.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADUserResultantPasswordPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/get-aduserresultantpasswordpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/get-aduserresultantpasswordpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ADUserResultantPasswordPolicy --- diff --git a/docset/winserver2022-ps/activedirectory/Grant-ADAuthenticationPolicySiloAccess.md b/docset/winserver2022-ps/activedirectory/Grant-ADAuthenticationPolicySiloAccess.md index b54a27460e..bccb85d2bd 100644 --- a/docset/winserver2022-ps/activedirectory/Grant-ADAuthenticationPolicySiloAccess.md +++ b/docset/winserver2022-ps/activedirectory/Grant-ADAuthenticationPolicySiloAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/grant-adauthenticationpolicysiloaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/grant-adauthenticationpolicysiloaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Grant-ADAuthenticationPolicySiloAccess --- diff --git a/docset/winserver2022-ps/activedirectory/Install-ADServiceAccount.md b/docset/winserver2022-ps/activedirectory/Install-ADServiceAccount.md index d8678508f9..e41a40224c 100644 --- a/docset/winserver2022-ps/activedirectory/Install-ADServiceAccount.md +++ b/docset/winserver2022-ps/activedirectory/Install-ADServiceAccount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/install-adserviceaccount?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/install-adserviceaccount?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-ADServiceAccount --- diff --git a/docset/winserver2022-ps/activedirectory/Move-ADDirectoryServer.md b/docset/winserver2022-ps/activedirectory/Move-ADDirectoryServer.md index 2b410bfe8f..24c5ce03ad 100644 --- a/docset/winserver2022-ps/activedirectory/Move-ADDirectoryServer.md +++ b/docset/winserver2022-ps/activedirectory/Move-ADDirectoryServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/move-addirectoryserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/move-addirectoryserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-ADDirectoryServer --- diff --git a/docset/winserver2022-ps/activedirectory/Move-ADDirectoryServerOperationMasterRole.md b/docset/winserver2022-ps/activedirectory/Move-ADDirectoryServerOperationMasterRole.md index f64102c46a..c24401c78e 100644 --- a/docset/winserver2022-ps/activedirectory/Move-ADDirectoryServerOperationMasterRole.md +++ b/docset/winserver2022-ps/activedirectory/Move-ADDirectoryServerOperationMasterRole.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/move-addirectoryserveroperationmasterrole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/move-addirectoryserveroperationmasterrole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-ADDirectoryServerOperationMasterRole --- diff --git a/docset/winserver2022-ps/activedirectory/Move-ADObject.md b/docset/winserver2022-ps/activedirectory/Move-ADObject.md index a524e591b3..066ed4638c 100644 --- a/docset/winserver2022-ps/activedirectory/Move-ADObject.md +++ b/docset/winserver2022-ps/activedirectory/Move-ADObject.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/move-adobject?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/move-adobject?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-ADObject --- diff --git a/docset/winserver2022-ps/activedirectory/New-ADAuthenticationPolicy.md b/docset/winserver2022-ps/activedirectory/New-ADAuthenticationPolicy.md index c2aa5bc30c..f19170e3e6 100644 --- a/docset/winserver2022-ps/activedirectory/New-ADAuthenticationPolicy.md +++ b/docset/winserver2022-ps/activedirectory/New-ADAuthenticationPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adauthenticationpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adauthenticationpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADAuthenticationPolicy --- diff --git a/docset/winserver2022-ps/activedirectory/New-ADAuthenticationPolicySilo.md b/docset/winserver2022-ps/activedirectory/New-ADAuthenticationPolicySilo.md index 2c2dcb729a..50893e9fad 100644 --- a/docset/winserver2022-ps/activedirectory/New-ADAuthenticationPolicySilo.md +++ b/docset/winserver2022-ps/activedirectory/New-ADAuthenticationPolicySilo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adauthenticationpolicysilo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adauthenticationpolicysilo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADAuthenticationPolicySilo --- diff --git a/docset/winserver2022-ps/activedirectory/New-ADCentralAccessPolicy.md b/docset/winserver2022-ps/activedirectory/New-ADCentralAccessPolicy.md index 56feb636ff..9b0e229855 100644 --- a/docset/winserver2022-ps/activedirectory/New-ADCentralAccessPolicy.md +++ b/docset/winserver2022-ps/activedirectory/New-ADCentralAccessPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adcentralaccesspolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adcentralaccesspolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADCentralAccessPolicy --- diff --git a/docset/winserver2022-ps/activedirectory/New-ADCentralAccessRule.md b/docset/winserver2022-ps/activedirectory/New-ADCentralAccessRule.md index 408bf94091..bb32ddf5ab 100644 --- a/docset/winserver2022-ps/activedirectory/New-ADCentralAccessRule.md +++ b/docset/winserver2022-ps/activedirectory/New-ADCentralAccessRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adcentralaccessrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adcentralaccessrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADCentralAccessRule --- diff --git a/docset/winserver2022-ps/activedirectory/New-ADClaimTransformPolicy.md b/docset/winserver2022-ps/activedirectory/New-ADClaimTransformPolicy.md index 1de27256b8..ebabfdb295 100644 --- a/docset/winserver2022-ps/activedirectory/New-ADClaimTransformPolicy.md +++ b/docset/winserver2022-ps/activedirectory/New-ADClaimTransformPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adclaimtransformpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adclaimtransformpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADClaimTransformPolicy --- diff --git a/docset/winserver2022-ps/activedirectory/New-ADClaimType.md b/docset/winserver2022-ps/activedirectory/New-ADClaimType.md index 0ac03c0933..00f6349860 100644 --- a/docset/winserver2022-ps/activedirectory/New-ADClaimType.md +++ b/docset/winserver2022-ps/activedirectory/New-ADClaimType.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adclaimtype?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adclaimtype?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADClaimType --- diff --git a/docset/winserver2022-ps/activedirectory/New-ADComputer.md b/docset/winserver2022-ps/activedirectory/New-ADComputer.md index c67ea89741..afab39bc4f 100644 --- a/docset/winserver2022-ps/activedirectory/New-ADComputer.md +++ b/docset/winserver2022-ps/activedirectory/New-ADComputer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adcomputer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adcomputer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADComputer --- diff --git a/docset/winserver2022-ps/activedirectory/New-ADDCCloneConfigFile.md b/docset/winserver2022-ps/activedirectory/New-ADDCCloneConfigFile.md index 818c15684c..3a479748b3 100644 --- a/docset/winserver2022-ps/activedirectory/New-ADDCCloneConfigFile.md +++ b/docset/winserver2022-ps/activedirectory/New-ADDCCloneConfigFile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-addccloneconfigfile?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-addccloneconfigfile?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADDCCloneConfigFile --- diff --git a/docset/winserver2022-ps/activedirectory/New-ADFineGrainedPasswordPolicy.md b/docset/winserver2022-ps/activedirectory/New-ADFineGrainedPasswordPolicy.md index 4103493e45..6517995ce1 100644 --- a/docset/winserver2022-ps/activedirectory/New-ADFineGrainedPasswordPolicy.md +++ b/docset/winserver2022-ps/activedirectory/New-ADFineGrainedPasswordPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adfinegrainedpasswordpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adfinegrainedpasswordpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADFineGrainedPasswordPolicy --- diff --git a/docset/winserver2022-ps/activedirectory/New-ADGroup.md b/docset/winserver2022-ps/activedirectory/New-ADGroup.md index 2ba33ecd59..6f02bfd482 100644 --- a/docset/winserver2022-ps/activedirectory/New-ADGroup.md +++ b/docset/winserver2022-ps/activedirectory/New-ADGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADGroup --- diff --git a/docset/winserver2022-ps/activedirectory/New-ADObject.md b/docset/winserver2022-ps/activedirectory/New-ADObject.md index 9459f1aff3..40617fd2ea 100644 --- a/docset/winserver2022-ps/activedirectory/New-ADObject.md +++ b/docset/winserver2022-ps/activedirectory/New-ADObject.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adobject?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adobject?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADObject --- diff --git a/docset/winserver2022-ps/activedirectory/New-ADOrganizationalUnit.md b/docset/winserver2022-ps/activedirectory/New-ADOrganizationalUnit.md index b5cbe47c6f..64ab989595 100644 --- a/docset/winserver2022-ps/activedirectory/New-ADOrganizationalUnit.md +++ b/docset/winserver2022-ps/activedirectory/New-ADOrganizationalUnit.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adorganizationalunit?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adorganizationalunit?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADOrganizationalUnit --- diff --git a/docset/winserver2022-ps/activedirectory/New-ADReplicationSite.md b/docset/winserver2022-ps/activedirectory/New-ADReplicationSite.md index 6107a44bdd..4ca659924b 100644 --- a/docset/winserver2022-ps/activedirectory/New-ADReplicationSite.md +++ b/docset/winserver2022-ps/activedirectory/New-ADReplicationSite.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adreplicationsite?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adreplicationsite?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADReplicationSite --- diff --git a/docset/winserver2022-ps/activedirectory/New-ADReplicationSiteLink.md b/docset/winserver2022-ps/activedirectory/New-ADReplicationSiteLink.md index fbf4d8c028..6e7d7e4c62 100644 --- a/docset/winserver2022-ps/activedirectory/New-ADReplicationSiteLink.md +++ b/docset/winserver2022-ps/activedirectory/New-ADReplicationSiteLink.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adreplicationsitelink?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adreplicationsitelink?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADReplicationSiteLink --- diff --git a/docset/winserver2022-ps/activedirectory/New-ADReplicationSiteLinkBridge.md b/docset/winserver2022-ps/activedirectory/New-ADReplicationSiteLinkBridge.md index d95668f6f4..9a2a275734 100644 --- a/docset/winserver2022-ps/activedirectory/New-ADReplicationSiteLinkBridge.md +++ b/docset/winserver2022-ps/activedirectory/New-ADReplicationSiteLinkBridge.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adreplicationsitelinkbridge?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adreplicationsitelinkbridge?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADReplicationSiteLinkBridge --- diff --git a/docset/winserver2022-ps/activedirectory/New-ADReplicationSubnet.md b/docset/winserver2022-ps/activedirectory/New-ADReplicationSubnet.md index 19a7a1df1b..03b0e63376 100644 --- a/docset/winserver2022-ps/activedirectory/New-ADReplicationSubnet.md +++ b/docset/winserver2022-ps/activedirectory/New-ADReplicationSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adreplicationsubnet?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adreplicationsubnet?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADReplicationSubnet --- diff --git a/docset/winserver2022-ps/activedirectory/New-ADResourceProperty.md b/docset/winserver2022-ps/activedirectory/New-ADResourceProperty.md index 9d20272fba..7047433fd1 100644 --- a/docset/winserver2022-ps/activedirectory/New-ADResourceProperty.md +++ b/docset/winserver2022-ps/activedirectory/New-ADResourceProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adresourceproperty?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adresourceproperty?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADResourceProperty --- diff --git a/docset/winserver2022-ps/activedirectory/New-ADResourcePropertyList.md b/docset/winserver2022-ps/activedirectory/New-ADResourcePropertyList.md index a91f39c3ce..0107f88651 100644 --- a/docset/winserver2022-ps/activedirectory/New-ADResourcePropertyList.md +++ b/docset/winserver2022-ps/activedirectory/New-ADResourcePropertyList.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adresourcepropertylist?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adresourcepropertylist?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADResourcePropertyList --- diff --git a/docset/winserver2022-ps/activedirectory/New-ADServiceAccount.md b/docset/winserver2022-ps/activedirectory/New-ADServiceAccount.md index d80f6dcac7..2456f3f596 100644 --- a/docset/winserver2022-ps/activedirectory/New-ADServiceAccount.md +++ b/docset/winserver2022-ps/activedirectory/New-ADServiceAccount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-adserviceaccount?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-adserviceaccount?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADServiceAccount --- diff --git a/docset/winserver2022-ps/activedirectory/New-ADUser.md b/docset/winserver2022-ps/activedirectory/New-ADUser.md index ec5aaa3baf..58104af6b3 100644 --- a/docset/winserver2022-ps/activedirectory/New-ADUser.md +++ b/docset/winserver2022-ps/activedirectory/New-ADUser.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/new-aduser?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/new-aduser?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ADUser --- diff --git a/docset/winserver2022-ps/activedirectory/Remove-ADAuthenticationPolicy.md b/docset/winserver2022-ps/activedirectory/Remove-ADAuthenticationPolicy.md index bf982b05c1..8bd2ba1a46 100644 --- a/docset/winserver2022-ps/activedirectory/Remove-ADAuthenticationPolicy.md +++ b/docset/winserver2022-ps/activedirectory/Remove-ADAuthenticationPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adauthenticationpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adauthenticationpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADAuthenticationPolicy --- diff --git a/docset/winserver2022-ps/activedirectory/Remove-ADAuthenticationPolicySilo.md b/docset/winserver2022-ps/activedirectory/Remove-ADAuthenticationPolicySilo.md index 31221e87f4..a17e3862f7 100644 --- a/docset/winserver2022-ps/activedirectory/Remove-ADAuthenticationPolicySilo.md +++ b/docset/winserver2022-ps/activedirectory/Remove-ADAuthenticationPolicySilo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adauthenticationpolicysilo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adauthenticationpolicysilo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADAuthenticationPolicySilo --- diff --git a/docset/winserver2022-ps/activedirectory/Remove-ADCentralAccessPolicy.md b/docset/winserver2022-ps/activedirectory/Remove-ADCentralAccessPolicy.md index da1a2cf7f4..dc456eb1ab 100644 --- a/docset/winserver2022-ps/activedirectory/Remove-ADCentralAccessPolicy.md +++ b/docset/winserver2022-ps/activedirectory/Remove-ADCentralAccessPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adcentralaccesspolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adcentralaccesspolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADCentralAccessPolicy --- diff --git a/docset/winserver2022-ps/activedirectory/Remove-ADCentralAccessPolicyMember.md b/docset/winserver2022-ps/activedirectory/Remove-ADCentralAccessPolicyMember.md index 568b701c5c..0d9eed2457 100644 --- a/docset/winserver2022-ps/activedirectory/Remove-ADCentralAccessPolicyMember.md +++ b/docset/winserver2022-ps/activedirectory/Remove-ADCentralAccessPolicyMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adcentralaccesspolicymember?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adcentralaccesspolicymember?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADCentralAccessPolicyMember --- diff --git a/docset/winserver2022-ps/activedirectory/Remove-ADCentralAccessRule.md b/docset/winserver2022-ps/activedirectory/Remove-ADCentralAccessRule.md index c67f080278..59dcfbbc13 100644 --- a/docset/winserver2022-ps/activedirectory/Remove-ADCentralAccessRule.md +++ b/docset/winserver2022-ps/activedirectory/Remove-ADCentralAccessRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adcentralaccessrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adcentralaccessrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADCentralAccessRule --- diff --git a/docset/winserver2022-ps/activedirectory/Remove-ADClaimTransformPolicy.md b/docset/winserver2022-ps/activedirectory/Remove-ADClaimTransformPolicy.md index 9a90a23df4..4b7b407e0f 100644 --- a/docset/winserver2022-ps/activedirectory/Remove-ADClaimTransformPolicy.md +++ b/docset/winserver2022-ps/activedirectory/Remove-ADClaimTransformPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adclaimtransformpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adclaimtransformpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADClaimTransformPolicy --- diff --git a/docset/winserver2022-ps/activedirectory/Remove-ADClaimType.md b/docset/winserver2022-ps/activedirectory/Remove-ADClaimType.md index f369bec63a..2aa87b1578 100644 --- a/docset/winserver2022-ps/activedirectory/Remove-ADClaimType.md +++ b/docset/winserver2022-ps/activedirectory/Remove-ADClaimType.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adclaimtype?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adclaimtype?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADClaimType --- diff --git a/docset/winserver2022-ps/activedirectory/Remove-ADComputer.md b/docset/winserver2022-ps/activedirectory/Remove-ADComputer.md index e93dc6e166..e081ccd18c 100644 --- a/docset/winserver2022-ps/activedirectory/Remove-ADComputer.md +++ b/docset/winserver2022-ps/activedirectory/Remove-ADComputer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adcomputer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adcomputer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADComputer --- diff --git a/docset/winserver2022-ps/activedirectory/Remove-ADComputerServiceAccount.md b/docset/winserver2022-ps/activedirectory/Remove-ADComputerServiceAccount.md index 9bd67a4dbe..4726504981 100644 --- a/docset/winserver2022-ps/activedirectory/Remove-ADComputerServiceAccount.md +++ b/docset/winserver2022-ps/activedirectory/Remove-ADComputerServiceAccount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adcomputerserviceaccount?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adcomputerserviceaccount?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADComputerServiceAccount --- diff --git a/docset/winserver2022-ps/activedirectory/Remove-ADDomainControllerPasswordReplicationPolicy.md b/docset/winserver2022-ps/activedirectory/Remove-ADDomainControllerPasswordReplicationPolicy.md index c20ac0728a..aec9575e51 100644 --- a/docset/winserver2022-ps/activedirectory/Remove-ADDomainControllerPasswordReplicationPolicy.md +++ b/docset/winserver2022-ps/activedirectory/Remove-ADDomainControllerPasswordReplicationPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-addomaincontrollerpasswordreplicationpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-addomaincontrollerpasswordreplicationpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADDomainControllerPasswordReplicationPolicy --- diff --git a/docset/winserver2022-ps/activedirectory/Remove-ADFineGrainedPasswordPolicy.md b/docset/winserver2022-ps/activedirectory/Remove-ADFineGrainedPasswordPolicy.md index fed823fd73..331fe0402c 100644 --- a/docset/winserver2022-ps/activedirectory/Remove-ADFineGrainedPasswordPolicy.md +++ b/docset/winserver2022-ps/activedirectory/Remove-ADFineGrainedPasswordPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adfinegrainedpasswordpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adfinegrainedpasswordpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADFineGrainedPasswordPolicy --- diff --git a/docset/winserver2022-ps/activedirectory/Remove-ADFineGrainedPasswordPolicySubject.md b/docset/winserver2022-ps/activedirectory/Remove-ADFineGrainedPasswordPolicySubject.md index 841c745ff2..8c0933d31c 100644 --- a/docset/winserver2022-ps/activedirectory/Remove-ADFineGrainedPasswordPolicySubject.md +++ b/docset/winserver2022-ps/activedirectory/Remove-ADFineGrainedPasswordPolicySubject.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adfinegrainedpasswordpolicysubject?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adfinegrainedpasswordpolicysubject?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADFineGrainedPasswordPolicySubject --- diff --git a/docset/winserver2022-ps/activedirectory/Remove-ADGroup.md b/docset/winserver2022-ps/activedirectory/Remove-ADGroup.md index 1903b4eb7c..99bd10bc30 100644 --- a/docset/winserver2022-ps/activedirectory/Remove-ADGroup.md +++ b/docset/winserver2022-ps/activedirectory/Remove-ADGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADGroup --- diff --git a/docset/winserver2022-ps/activedirectory/Remove-ADGroupMember.md b/docset/winserver2022-ps/activedirectory/Remove-ADGroupMember.md index bc50b08e40..025158c980 100644 --- a/docset/winserver2022-ps/activedirectory/Remove-ADGroupMember.md +++ b/docset/winserver2022-ps/activedirectory/Remove-ADGroupMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 06/11/2021 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adgroupmember?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adgroupmember?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADGroupMember --- diff --git a/docset/winserver2022-ps/activedirectory/Remove-ADObject.md b/docset/winserver2022-ps/activedirectory/Remove-ADObject.md index d36b0618fb..75d32131c9 100644 --- a/docset/winserver2022-ps/activedirectory/Remove-ADObject.md +++ b/docset/winserver2022-ps/activedirectory/Remove-ADObject.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adobject?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adobject?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADObject --- diff --git a/docset/winserver2022-ps/activedirectory/Remove-ADOrganizationalUnit.md b/docset/winserver2022-ps/activedirectory/Remove-ADOrganizationalUnit.md index 0463b2ef08..efa25c4e02 100644 --- a/docset/winserver2022-ps/activedirectory/Remove-ADOrganizationalUnit.md +++ b/docset/winserver2022-ps/activedirectory/Remove-ADOrganizationalUnit.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adorganizationalunit?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adorganizationalunit?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADOrganizationalUnit --- diff --git a/docset/winserver2022-ps/activedirectory/Remove-ADPrincipalGroupMembership.md b/docset/winserver2022-ps/activedirectory/Remove-ADPrincipalGroupMembership.md index e555f71913..8f8d5c53b9 100644 --- a/docset/winserver2022-ps/activedirectory/Remove-ADPrincipalGroupMembership.md +++ b/docset/winserver2022-ps/activedirectory/Remove-ADPrincipalGroupMembership.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adprincipalgroupmembership?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adprincipalgroupmembership?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADPrincipalGroupMembership --- diff --git a/docset/winserver2022-ps/activedirectory/Remove-ADReplicationSite.md b/docset/winserver2022-ps/activedirectory/Remove-ADReplicationSite.md index a1fb37ad71..8244391f54 100644 --- a/docset/winserver2022-ps/activedirectory/Remove-ADReplicationSite.md +++ b/docset/winserver2022-ps/activedirectory/Remove-ADReplicationSite.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adreplicationsite?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adreplicationsite?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADReplicationSite --- diff --git a/docset/winserver2022-ps/activedirectory/Remove-ADReplicationSiteLink.md b/docset/winserver2022-ps/activedirectory/Remove-ADReplicationSiteLink.md index bfabb1660f..c7b949f534 100644 --- a/docset/winserver2022-ps/activedirectory/Remove-ADReplicationSiteLink.md +++ b/docset/winserver2022-ps/activedirectory/Remove-ADReplicationSiteLink.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adreplicationsitelink?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adreplicationsitelink?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADReplicationSiteLink --- diff --git a/docset/winserver2022-ps/activedirectory/Remove-ADReplicationSiteLinkBridge.md b/docset/winserver2022-ps/activedirectory/Remove-ADReplicationSiteLinkBridge.md index e0f1732535..87ad9210cb 100644 --- a/docset/winserver2022-ps/activedirectory/Remove-ADReplicationSiteLinkBridge.md +++ b/docset/winserver2022-ps/activedirectory/Remove-ADReplicationSiteLinkBridge.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adreplicationsitelinkbridge?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adreplicationsitelinkbridge?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADReplicationSiteLinkBridge --- diff --git a/docset/winserver2022-ps/activedirectory/Remove-ADReplicationSubnet.md b/docset/winserver2022-ps/activedirectory/Remove-ADReplicationSubnet.md index b99167cc45..3426bd316c 100644 --- a/docset/winserver2022-ps/activedirectory/Remove-ADReplicationSubnet.md +++ b/docset/winserver2022-ps/activedirectory/Remove-ADReplicationSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adreplicationsubnet?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adreplicationsubnet?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADReplicationSubnet --- diff --git a/docset/winserver2022-ps/activedirectory/Remove-ADResourceProperty.md b/docset/winserver2022-ps/activedirectory/Remove-ADResourceProperty.md index cd477aafec..28311037e3 100644 --- a/docset/winserver2022-ps/activedirectory/Remove-ADResourceProperty.md +++ b/docset/winserver2022-ps/activedirectory/Remove-ADResourceProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adresourceproperty?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adresourceproperty?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADResourceProperty --- diff --git a/docset/winserver2022-ps/activedirectory/Remove-ADResourcePropertyList.md b/docset/winserver2022-ps/activedirectory/Remove-ADResourcePropertyList.md index 1e92958fa7..073bfc7cef 100644 --- a/docset/winserver2022-ps/activedirectory/Remove-ADResourcePropertyList.md +++ b/docset/winserver2022-ps/activedirectory/Remove-ADResourcePropertyList.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adresourcepropertylist?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adresourcepropertylist?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADResourcePropertyList --- diff --git a/docset/winserver2022-ps/activedirectory/Remove-ADResourcePropertyListMember.md b/docset/winserver2022-ps/activedirectory/Remove-ADResourcePropertyListMember.md index c7ae8bb67b..5941cf91dc 100644 --- a/docset/winserver2022-ps/activedirectory/Remove-ADResourcePropertyListMember.md +++ b/docset/winserver2022-ps/activedirectory/Remove-ADResourcePropertyListMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adresourcepropertylistmember?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adresourcepropertylistmember?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADResourcePropertyListMember --- diff --git a/docset/winserver2022-ps/activedirectory/Remove-ADServiceAccount.md b/docset/winserver2022-ps/activedirectory/Remove-ADServiceAccount.md index 3b71006ba7..033958327b 100644 --- a/docset/winserver2022-ps/activedirectory/Remove-ADServiceAccount.md +++ b/docset/winserver2022-ps/activedirectory/Remove-ADServiceAccount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-adserviceaccount?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-adserviceaccount?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADServiceAccount --- diff --git a/docset/winserver2022-ps/activedirectory/Remove-ADUser.md b/docset/winserver2022-ps/activedirectory/Remove-ADUser.md index afb5339882..e274e48955 100644 --- a/docset/winserver2022-ps/activedirectory/Remove-ADUser.md +++ b/docset/winserver2022-ps/activedirectory/Remove-ADUser.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/remove-aduser?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/remove-aduser?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ADUser --- diff --git a/docset/winserver2022-ps/activedirectory/Rename-ADObject.md b/docset/winserver2022-ps/activedirectory/Rename-ADObject.md index 0c4aad1f5e..0231d504a6 100644 --- a/docset/winserver2022-ps/activedirectory/Rename-ADObject.md +++ b/docset/winserver2022-ps/activedirectory/Rename-ADObject.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/rename-adobject?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/rename-adobject?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-ADObject --- diff --git a/docset/winserver2022-ps/activedirectory/Reset-ADServiceAccountPassword.md b/docset/winserver2022-ps/activedirectory/Reset-ADServiceAccountPassword.md index 4cb651a395..7ea0e1e7d6 100644 --- a/docset/winserver2022-ps/activedirectory/Reset-ADServiceAccountPassword.md +++ b/docset/winserver2022-ps/activedirectory/Reset-ADServiceAccountPassword.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/reset-adserviceaccountpassword?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/reset-adserviceaccountpassword?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-ADServiceAccountPassword --- diff --git a/docset/winserver2022-ps/activedirectory/Restore-ADObject.md b/docset/winserver2022-ps/activedirectory/Restore-ADObject.md index b87d0d59d1..f07a0777bf 100644 --- a/docset/winserver2022-ps/activedirectory/Restore-ADObject.md +++ b/docset/winserver2022-ps/activedirectory/Restore-ADObject.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/restore-adobject?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/restore-adobject?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-ADObject --- diff --git a/docset/winserver2022-ps/activedirectory/Revoke-ADAuthenticationPolicySiloAccess.md b/docset/winserver2022-ps/activedirectory/Revoke-ADAuthenticationPolicySiloAccess.md index 2cda2320ea..e278f09d0c 100644 --- a/docset/winserver2022-ps/activedirectory/Revoke-ADAuthenticationPolicySiloAccess.md +++ b/docset/winserver2022-ps/activedirectory/Revoke-ADAuthenticationPolicySiloAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/revoke-adauthenticationpolicysiloaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/revoke-adauthenticationpolicysiloaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Revoke-ADAuthenticationPolicySiloAccess --- diff --git a/docset/winserver2022-ps/activedirectory/Search-ADAccount.md b/docset/winserver2022-ps/activedirectory/Search-ADAccount.md index 59f028bd16..d200299faa 100644 --- a/docset/winserver2022-ps/activedirectory/Search-ADAccount.md +++ b/docset/winserver2022-ps/activedirectory/Search-ADAccount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/search-adaccount?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/search-adaccount?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Search-ADAccount --- diff --git a/docset/winserver2022-ps/activedirectory/Set-ADAccountAuthenticationPolicySilo.md b/docset/winserver2022-ps/activedirectory/Set-ADAccountAuthenticationPolicySilo.md index 6464a24b6f..e90b21eec8 100644 --- a/docset/winserver2022-ps/activedirectory/Set-ADAccountAuthenticationPolicySilo.md +++ b/docset/winserver2022-ps/activedirectory/Set-ADAccountAuthenticationPolicySilo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adaccountauthenticationpolicysilo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adaccountauthenticationpolicysilo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADAccountAuthenticationPolicySilo --- diff --git a/docset/winserver2022-ps/activedirectory/Set-ADAccountControl.md b/docset/winserver2022-ps/activedirectory/Set-ADAccountControl.md index 258324c99b..2bf4982247 100644 --- a/docset/winserver2022-ps/activedirectory/Set-ADAccountControl.md +++ b/docset/winserver2022-ps/activedirectory/Set-ADAccountControl.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adaccountcontrol?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adaccountcontrol?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADAccountControl --- diff --git a/docset/winserver2022-ps/activedirectory/Set-ADAccountExpiration.md b/docset/winserver2022-ps/activedirectory/Set-ADAccountExpiration.md index 897f7024d8..e44010641c 100644 --- a/docset/winserver2022-ps/activedirectory/Set-ADAccountExpiration.md +++ b/docset/winserver2022-ps/activedirectory/Set-ADAccountExpiration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adaccountexpiration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adaccountexpiration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADAccountExpiration --- diff --git a/docset/winserver2022-ps/activedirectory/Set-ADAccountPassword.md b/docset/winserver2022-ps/activedirectory/Set-ADAccountPassword.md index 98c41e7548..11c32b11bf 100644 --- a/docset/winserver2022-ps/activedirectory/Set-ADAccountPassword.md +++ b/docset/winserver2022-ps/activedirectory/Set-ADAccountPassword.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adaccountpassword?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adaccountpassword?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADAccountPassword --- diff --git a/docset/winserver2022-ps/activedirectory/Set-ADAuthenticationPolicy.md b/docset/winserver2022-ps/activedirectory/Set-ADAuthenticationPolicy.md index 29eb8590c0..7a199fe477 100644 --- a/docset/winserver2022-ps/activedirectory/Set-ADAuthenticationPolicy.md +++ b/docset/winserver2022-ps/activedirectory/Set-ADAuthenticationPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adauthenticationpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adauthenticationpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADAuthenticationPolicy --- diff --git a/docset/winserver2022-ps/activedirectory/Set-ADAuthenticationPolicySilo.md b/docset/winserver2022-ps/activedirectory/Set-ADAuthenticationPolicySilo.md index bd152f100e..9d65d58afc 100644 --- a/docset/winserver2022-ps/activedirectory/Set-ADAuthenticationPolicySilo.md +++ b/docset/winserver2022-ps/activedirectory/Set-ADAuthenticationPolicySilo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adauthenticationpolicysilo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adauthenticationpolicysilo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADAuthenticationPolicySilo --- diff --git a/docset/winserver2022-ps/activedirectory/Set-ADCentralAccessPolicy.md b/docset/winserver2022-ps/activedirectory/Set-ADCentralAccessPolicy.md index 51cd1c85b9..eaf83e001b 100644 --- a/docset/winserver2022-ps/activedirectory/Set-ADCentralAccessPolicy.md +++ b/docset/winserver2022-ps/activedirectory/Set-ADCentralAccessPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adcentralaccesspolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adcentralaccesspolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADCentralAccessPolicy --- diff --git a/docset/winserver2022-ps/activedirectory/Set-ADCentralAccessRule.md b/docset/winserver2022-ps/activedirectory/Set-ADCentralAccessRule.md index fc5146beae..6b87452760 100644 --- a/docset/winserver2022-ps/activedirectory/Set-ADCentralAccessRule.md +++ b/docset/winserver2022-ps/activedirectory/Set-ADCentralAccessRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adcentralaccessrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adcentralaccessrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADCentralAccessRule --- diff --git a/docset/winserver2022-ps/activedirectory/Set-ADClaimTransformLink.md b/docset/winserver2022-ps/activedirectory/Set-ADClaimTransformLink.md index e025140386..c358eee59c 100644 --- a/docset/winserver2022-ps/activedirectory/Set-ADClaimTransformLink.md +++ b/docset/winserver2022-ps/activedirectory/Set-ADClaimTransformLink.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adclaimtransformlink?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adclaimtransformlink?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADClaimTransformLink --- diff --git a/docset/winserver2022-ps/activedirectory/Set-ADClaimTransformPolicy.md b/docset/winserver2022-ps/activedirectory/Set-ADClaimTransformPolicy.md index ae0fc724e7..5185fd6ce1 100644 --- a/docset/winserver2022-ps/activedirectory/Set-ADClaimTransformPolicy.md +++ b/docset/winserver2022-ps/activedirectory/Set-ADClaimTransformPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adclaimtransformpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adclaimtransformpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADClaimTransformPolicy --- diff --git a/docset/winserver2022-ps/activedirectory/Set-ADClaimType.md b/docset/winserver2022-ps/activedirectory/Set-ADClaimType.md index d5f6c1167e..74cf1434ab 100644 --- a/docset/winserver2022-ps/activedirectory/Set-ADClaimType.md +++ b/docset/winserver2022-ps/activedirectory/Set-ADClaimType.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adclaimtype?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adclaimtype?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADClaimType --- diff --git a/docset/winserver2022-ps/activedirectory/Set-ADComputer.md b/docset/winserver2022-ps/activedirectory/Set-ADComputer.md index d423fcd68f..a52e7aaade 100644 --- a/docset/winserver2022-ps/activedirectory/Set-ADComputer.md +++ b/docset/winserver2022-ps/activedirectory/Set-ADComputer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adcomputer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adcomputer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADComputer --- diff --git a/docset/winserver2022-ps/activedirectory/Set-ADDefaultDomainPasswordPolicy.md b/docset/winserver2022-ps/activedirectory/Set-ADDefaultDomainPasswordPolicy.md index 7f76105e88..94a0ae74d1 100644 --- a/docset/winserver2022-ps/activedirectory/Set-ADDefaultDomainPasswordPolicy.md +++ b/docset/winserver2022-ps/activedirectory/Set-ADDefaultDomainPasswordPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-addefaultdomainpasswordpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-addefaultdomainpasswordpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADDefaultDomainPasswordPolicy --- diff --git a/docset/winserver2022-ps/activedirectory/Set-ADDomain.md b/docset/winserver2022-ps/activedirectory/Set-ADDomain.md index 185bc0d03b..88ac8ca829 100644 --- a/docset/winserver2022-ps/activedirectory/Set-ADDomain.md +++ b/docset/winserver2022-ps/activedirectory/Set-ADDomain.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-addomain?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-addomain?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADDomain --- diff --git a/docset/winserver2022-ps/activedirectory/Set-ADDomainMode.md b/docset/winserver2022-ps/activedirectory/Set-ADDomainMode.md index 00edd6891d..b04768c201 100644 --- a/docset/winserver2022-ps/activedirectory/Set-ADDomainMode.md +++ b/docset/winserver2022-ps/activedirectory/Set-ADDomainMode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-addomainmode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-addomainmode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADDomainMode --- diff --git a/docset/winserver2022-ps/activedirectory/Set-ADFineGrainedPasswordPolicy.md b/docset/winserver2022-ps/activedirectory/Set-ADFineGrainedPasswordPolicy.md index cb472b4754..449d40a713 100644 --- a/docset/winserver2022-ps/activedirectory/Set-ADFineGrainedPasswordPolicy.md +++ b/docset/winserver2022-ps/activedirectory/Set-ADFineGrainedPasswordPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adfinegrainedpasswordpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adfinegrainedpasswordpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADFineGrainedPasswordPolicy --- diff --git a/docset/winserver2022-ps/activedirectory/Set-ADForest.md b/docset/winserver2022-ps/activedirectory/Set-ADForest.md index 0fdc4a6e5f..712a734cdc 100644 --- a/docset/winserver2022-ps/activedirectory/Set-ADForest.md +++ b/docset/winserver2022-ps/activedirectory/Set-ADForest.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adforest?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adforest?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADForest --- diff --git a/docset/winserver2022-ps/activedirectory/Set-ADForestMode.md b/docset/winserver2022-ps/activedirectory/Set-ADForestMode.md index 01952d4367..804c9398d8 100644 --- a/docset/winserver2022-ps/activedirectory/Set-ADForestMode.md +++ b/docset/winserver2022-ps/activedirectory/Set-ADForestMode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adforestmode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adforestmode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADForestMode --- diff --git a/docset/winserver2022-ps/activedirectory/Set-ADGroup.md b/docset/winserver2022-ps/activedirectory/Set-ADGroup.md index 16bb0345b7..03b5fbe695 100644 --- a/docset/winserver2022-ps/activedirectory/Set-ADGroup.md +++ b/docset/winserver2022-ps/activedirectory/Set-ADGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADGroup --- diff --git a/docset/winserver2022-ps/activedirectory/Set-ADObject.md b/docset/winserver2022-ps/activedirectory/Set-ADObject.md index 401b360c2d..7590981211 100644 --- a/docset/winserver2022-ps/activedirectory/Set-ADObject.md +++ b/docset/winserver2022-ps/activedirectory/Set-ADObject.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adobject?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adobject?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADObject --- diff --git a/docset/winserver2022-ps/activedirectory/Set-ADOrganizationalUnit.md b/docset/winserver2022-ps/activedirectory/Set-ADOrganizationalUnit.md index 54896d9c29..2b625225fd 100644 --- a/docset/winserver2022-ps/activedirectory/Set-ADOrganizationalUnit.md +++ b/docset/winserver2022-ps/activedirectory/Set-ADOrganizationalUnit.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adorganizationalunit?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adorganizationalunit?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADOrganizationalUnit --- diff --git a/docset/winserver2022-ps/activedirectory/Set-ADReplicationConnection.md b/docset/winserver2022-ps/activedirectory/Set-ADReplicationConnection.md index d370e4d1f2..4b4b2ba31f 100644 --- a/docset/winserver2022-ps/activedirectory/Set-ADReplicationConnection.md +++ b/docset/winserver2022-ps/activedirectory/Set-ADReplicationConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adreplicationconnection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adreplicationconnection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADReplicationConnection --- diff --git a/docset/winserver2022-ps/activedirectory/Set-ADReplicationSite.md b/docset/winserver2022-ps/activedirectory/Set-ADReplicationSite.md index ad1322bf2d..75510ab7dc 100644 --- a/docset/winserver2022-ps/activedirectory/Set-ADReplicationSite.md +++ b/docset/winserver2022-ps/activedirectory/Set-ADReplicationSite.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adreplicationsite?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adreplicationsite?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADReplicationSite --- diff --git a/docset/winserver2022-ps/activedirectory/Set-ADReplicationSiteLink.md b/docset/winserver2022-ps/activedirectory/Set-ADReplicationSiteLink.md index 23280ba75c..7c8bb46cbe 100644 --- a/docset/winserver2022-ps/activedirectory/Set-ADReplicationSiteLink.md +++ b/docset/winserver2022-ps/activedirectory/Set-ADReplicationSiteLink.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adreplicationsitelink?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adreplicationsitelink?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADReplicationSiteLink --- diff --git a/docset/winserver2022-ps/activedirectory/Set-ADReplicationSiteLinkBridge.md b/docset/winserver2022-ps/activedirectory/Set-ADReplicationSiteLinkBridge.md index 95616455cc..0e456bfdb0 100644 --- a/docset/winserver2022-ps/activedirectory/Set-ADReplicationSiteLinkBridge.md +++ b/docset/winserver2022-ps/activedirectory/Set-ADReplicationSiteLinkBridge.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adreplicationsitelinkbridge?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adreplicationsitelinkbridge?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADReplicationSiteLinkBridge --- diff --git a/docset/winserver2022-ps/activedirectory/Set-ADReplicationSubnet.md b/docset/winserver2022-ps/activedirectory/Set-ADReplicationSubnet.md index 6983120853..8a434f4cf1 100644 --- a/docset/winserver2022-ps/activedirectory/Set-ADReplicationSubnet.md +++ b/docset/winserver2022-ps/activedirectory/Set-ADReplicationSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adreplicationsubnet?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adreplicationsubnet?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADReplicationSubnet --- diff --git a/docset/winserver2022-ps/activedirectory/Set-ADResourceProperty.md b/docset/winserver2022-ps/activedirectory/Set-ADResourceProperty.md index ae72cb76ec..dabba0b312 100644 --- a/docset/winserver2022-ps/activedirectory/Set-ADResourceProperty.md +++ b/docset/winserver2022-ps/activedirectory/Set-ADResourceProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adresourceproperty?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adresourceproperty?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADResourceProperty --- diff --git a/docset/winserver2022-ps/activedirectory/Set-ADResourcePropertyList.md b/docset/winserver2022-ps/activedirectory/Set-ADResourcePropertyList.md index c053c4434d..8d8f591e80 100644 --- a/docset/winserver2022-ps/activedirectory/Set-ADResourcePropertyList.md +++ b/docset/winserver2022-ps/activedirectory/Set-ADResourcePropertyList.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adresourcepropertylist?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adresourcepropertylist?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADResourcePropertyList --- diff --git a/docset/winserver2022-ps/activedirectory/Set-ADServiceAccount.md b/docset/winserver2022-ps/activedirectory/Set-ADServiceAccount.md index be0c758e5f..b78eaefe26 100644 --- a/docset/winserver2022-ps/activedirectory/Set-ADServiceAccount.md +++ b/docset/winserver2022-ps/activedirectory/Set-ADServiceAccount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-adserviceaccount?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-adserviceaccount?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADServiceAccount --- diff --git a/docset/winserver2022-ps/activedirectory/Set-ADUser.md b/docset/winserver2022-ps/activedirectory/Set-ADUser.md index 91dabdf769..42e7f3940e 100644 --- a/docset/winserver2022-ps/activedirectory/Set-ADUser.md +++ b/docset/winserver2022-ps/activedirectory/Set-ADUser.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/set-aduser?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/set-aduser?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ADUser --- diff --git a/docset/winserver2022-ps/activedirectory/Show-ADAuthenticationPolicyExpression.md b/docset/winserver2022-ps/activedirectory/Show-ADAuthenticationPolicyExpression.md index d4698df9af..61833ed290 100644 --- a/docset/winserver2022-ps/activedirectory/Show-ADAuthenticationPolicyExpression.md +++ b/docset/winserver2022-ps/activedirectory/Show-ADAuthenticationPolicyExpression.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/show-adauthenticationpolicyexpression?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/show-adauthenticationpolicyexpression?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Show-ADAuthenticationPolicyExpression --- diff --git a/docset/winserver2022-ps/activedirectory/Sync-ADObject.md b/docset/winserver2022-ps/activedirectory/Sync-ADObject.md index 24114db336..e25bec66be 100644 --- a/docset/winserver2022-ps/activedirectory/Sync-ADObject.md +++ b/docset/winserver2022-ps/activedirectory/Sync-ADObject.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/sync-adobject?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/sync-adobject?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Sync-ADObject --- diff --git a/docset/winserver2022-ps/activedirectory/Test-ADServiceAccount.md b/docset/winserver2022-ps/activedirectory/Test-ADServiceAccount.md index e86dfa321e..2dbb7d6e89 100644 --- a/docset/winserver2022-ps/activedirectory/Test-ADServiceAccount.md +++ b/docset/winserver2022-ps/activedirectory/Test-ADServiceAccount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/test-adserviceaccount?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/test-adserviceaccount?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-ADServiceAccount --- diff --git a/docset/winserver2022-ps/activedirectory/Uninstall-ADServiceAccount.md b/docset/winserver2022-ps/activedirectory/Uninstall-ADServiceAccount.md index fc12476298..31242af52d 100644 --- a/docset/winserver2022-ps/activedirectory/Uninstall-ADServiceAccount.md +++ b/docset/winserver2022-ps/activedirectory/Uninstall-ADServiceAccount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/uninstall-adserviceaccount?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/uninstall-adserviceaccount?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-ADServiceAccount --- diff --git a/docset/winserver2022-ps/activedirectory/Unlock-ADAccount.md b/docset/winserver2022-ps/activedirectory/Unlock-ADAccount.md index ff24067e33..34e717733f 100644 --- a/docset/winserver2022-ps/activedirectory/Unlock-ADAccount.md +++ b/docset/winserver2022-ps/activedirectory/Unlock-ADAccount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ActiveDirectory.Management.dll-Help.xml Module Name: ActiveDirectory ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/activedirectory/unlock-adaccount?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/activedirectory/unlock-adaccount?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unlock-ADAccount --- diff --git a/docset/winserver2022-ps/adcsadministration/Add-CAAuthorityInformationAccess.md b/docset/winserver2022-ps/adcsadministration/Add-CAAuthorityInformationAccess.md index 4af9633bdb..47fbb01a14 100644 --- a/docset/winserver2022-ps/adcsadministration/Add-CAAuthorityInformationAccess.md +++ b/docset/winserver2022-ps/adcsadministration/Add-CAAuthorityInformationAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: ADCSAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsadministration/add-caauthorityinformationaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/add-caauthorityinformationaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-CAAuthorityInformationAccess --- diff --git a/docset/winserver2022-ps/adcsadministration/Add-CACrlDistributionPoint.md b/docset/winserver2022-ps/adcsadministration/Add-CACrlDistributionPoint.md index 886dc57d00..3ecce5c1db 100644 --- a/docset/winserver2022-ps/adcsadministration/Add-CACrlDistributionPoint.md +++ b/docset/winserver2022-ps/adcsadministration/Add-CACrlDistributionPoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: ADCSAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsadministration/add-cacrldistributionpoint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/add-cacrldistributionpoint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-CACrlDistributionPoint --- diff --git a/docset/winserver2022-ps/adcsadministration/Add-CATemplate.md b/docset/winserver2022-ps/adcsadministration/Add-CATemplate.md index e92f52284a..e71f414606 100644 --- a/docset/winserver2022-ps/adcsadministration/Add-CATemplate.md +++ b/docset/winserver2022-ps/adcsadministration/Add-CATemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: ADCSAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsadministration/add-catemplate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/add-catemplate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-CATemplate --- diff --git a/docset/winserver2022-ps/adcsadministration/Backup-CARoleService.md b/docset/winserver2022-ps/adcsadministration/Backup-CARoleService.md index 44f15001d7..5812dd0ae3 100644 --- a/docset/winserver2022-ps/adcsadministration/Backup-CARoleService.md +++ b/docset/winserver2022-ps/adcsadministration/Backup-CARoleService.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: ADCSAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsadministration/backup-caroleservice?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/backup-caroleservice?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Backup-CARoleService --- diff --git a/docset/winserver2022-ps/adcsadministration/Confirm-CAAttestationIdentityKeyInfo.md b/docset/winserver2022-ps/adcsadministration/Confirm-CAAttestationIdentityKeyInfo.md index 01981a0c9c..8ba840d07d 100644 --- a/docset/winserver2022-ps/adcsadministration/Confirm-CAAttestationIdentityKeyInfo.md +++ b/docset/winserver2022-ps/adcsadministration/Confirm-CAAttestationIdentityKeyInfo.md @@ -2,7 +2,7 @@ description: Checks whether the local CA trusts secure hardware for identity key attestation. external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: ADCSAdministration -online version: https://docs.microsoft.com/powershell/module/adcsadministration/confirm-caattestationidentitykeyinfo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/confirm-caattestationidentitykeyinfo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Confirm-CAAttestationIdentityKeyInfo --- diff --git a/docset/winserver2022-ps/adcsadministration/Confirm-CAEndorsementKeyInfo.md b/docset/winserver2022-ps/adcsadministration/Confirm-CAEndorsementKeyInfo.md index 4297d48c2a..26363afc71 100644 --- a/docset/winserver2022-ps/adcsadministration/Confirm-CAEndorsementKeyInfo.md +++ b/docset/winserver2022-ps/adcsadministration/Confirm-CAEndorsementKeyInfo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: ADCSAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsadministration/confirm-caendorsementkeyinfo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/confirm-caendorsementkeyinfo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Confirm-CAEndorsementKeyInfo --- diff --git a/docset/winserver2022-ps/adcsadministration/Get-CAAuthorityInformationAccess.md b/docset/winserver2022-ps/adcsadministration/Get-CAAuthorityInformationAccess.md index c9a9fabd8b..9079eab945 100644 --- a/docset/winserver2022-ps/adcsadministration/Get-CAAuthorityInformationAccess.md +++ b/docset/winserver2022-ps/adcsadministration/Get-CAAuthorityInformationAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: ADCSAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsadministration/get-caauthorityinformationaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/get-caauthorityinformationaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CAAuthorityInformationAccess --- diff --git a/docset/winserver2022-ps/adcsadministration/Get-CACrlDistributionPoint.md b/docset/winserver2022-ps/adcsadministration/Get-CACrlDistributionPoint.md index 06b2cc3718..ca6cfad4a6 100644 --- a/docset/winserver2022-ps/adcsadministration/Get-CACrlDistributionPoint.md +++ b/docset/winserver2022-ps/adcsadministration/Get-CACrlDistributionPoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: ADCSAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsadministration/get-cacrldistributionpoint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/get-cacrldistributionpoint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CACrlDistributionPoint --- diff --git a/docset/winserver2022-ps/adcsadministration/Get-CATemplate.md b/docset/winserver2022-ps/adcsadministration/Get-CATemplate.md index 2440c21651..bb6cac7c39 100644 --- a/docset/winserver2022-ps/adcsadministration/Get-CATemplate.md +++ b/docset/winserver2022-ps/adcsadministration/Get-CATemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: ADCSAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsadministration/get-catemplate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/get-catemplate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CATemplate --- diff --git a/docset/winserver2022-ps/adcsadministration/Remove-CAAuthorityInformationAccess.md b/docset/winserver2022-ps/adcsadministration/Remove-CAAuthorityInformationAccess.md index d33f3de742..528f65cb7c 100644 --- a/docset/winserver2022-ps/adcsadministration/Remove-CAAuthorityInformationAccess.md +++ b/docset/winserver2022-ps/adcsadministration/Remove-CAAuthorityInformationAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: ADCSAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsadministration/remove-caauthorityinformationaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/remove-caauthorityinformationaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-CAAuthorityInformationAccess --- diff --git a/docset/winserver2022-ps/adcsadministration/Remove-CACrlDistributionPoint.md b/docset/winserver2022-ps/adcsadministration/Remove-CACrlDistributionPoint.md index 3a469f8fb2..2179e51296 100644 --- a/docset/winserver2022-ps/adcsadministration/Remove-CACrlDistributionPoint.md +++ b/docset/winserver2022-ps/adcsadministration/Remove-CACrlDistributionPoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: ADCSAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsadministration/remove-cacrldistributionpoint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/remove-cacrldistributionpoint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-CACrlDistributionPoint --- diff --git a/docset/winserver2022-ps/adcsadministration/Remove-CATemplate.md b/docset/winserver2022-ps/adcsadministration/Remove-CATemplate.md index 82c3bf9392..eba3bddb2c 100644 --- a/docset/winserver2022-ps/adcsadministration/Remove-CATemplate.md +++ b/docset/winserver2022-ps/adcsadministration/Remove-CATemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: ADCSAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsadministration/remove-catemplate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/remove-catemplate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-CATemplate --- diff --git a/docset/winserver2022-ps/adcsadministration/Restore-CARoleService.md b/docset/winserver2022-ps/adcsadministration/Restore-CARoleService.md index 67c9ceaccd..276bcd67ca 100644 --- a/docset/winserver2022-ps/adcsadministration/Restore-CARoleService.md +++ b/docset/winserver2022-ps/adcsadministration/Restore-CARoleService.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Administration.Commands.dll-Help.xml Module Name: ADCSAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsadministration/restore-caroleservice?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsadministration/restore-caroleservice?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-CARoleService --- diff --git a/docset/winserver2022-ps/adcsdeployment/Install-AdcsCertificationAuthority.md b/docset/winserver2022-ps/adcsdeployment/Install-AdcsCertificationAuthority.md index d6416ba17d..450e657cb3 100644 --- a/docset/winserver2022-ps/adcsdeployment/Install-AdcsCertificationAuthority.md +++ b/docset/winserver2022-ps/adcsdeployment/Install-AdcsCertificationAuthority.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: ADCSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/install-adcscertificationauthority?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/install-adcscertificationauthority?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-AdcsCertificationAuthority --- diff --git a/docset/winserver2022-ps/adcsdeployment/Install-AdcsEnrollmentPolicyWebService.md b/docset/winserver2022-ps/adcsdeployment/Install-AdcsEnrollmentPolicyWebService.md index f5b45674a9..10cd13901e 100644 --- a/docset/winserver2022-ps/adcsdeployment/Install-AdcsEnrollmentPolicyWebService.md +++ b/docset/winserver2022-ps/adcsdeployment/Install-AdcsEnrollmentPolicyWebService.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: ADCSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/install-adcsenrollmentpolicywebservice?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/install-adcsenrollmentpolicywebservice?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-AdcsEnrollmentPolicyWebService --- diff --git a/docset/winserver2022-ps/adcsdeployment/Install-AdcsEnrollmentWebService.md b/docset/winserver2022-ps/adcsdeployment/Install-AdcsEnrollmentWebService.md index 7f5ed4f10e..fc002127dc 100644 --- a/docset/winserver2022-ps/adcsdeployment/Install-AdcsEnrollmentWebService.md +++ b/docset/winserver2022-ps/adcsdeployment/Install-AdcsEnrollmentWebService.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: ADCSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/install-adcsenrollmentwebservice?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/install-adcsenrollmentwebservice?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-AdcsEnrollmentWebService --- diff --git a/docset/winserver2022-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md b/docset/winserver2022-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md index 2a334f2375..2e00333a74 100644 --- a/docset/winserver2022-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md +++ b/docset/winserver2022-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: ADCSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/install-adcsnetworkdeviceenrollmentservice?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/install-adcsnetworkdeviceenrollmentservice?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-AdcsNetworkDeviceEnrollmentService --- diff --git a/docset/winserver2022-ps/adcsdeployment/Install-AdcsOnlineResponder.md b/docset/winserver2022-ps/adcsdeployment/Install-AdcsOnlineResponder.md index dc710f40d8..7b3fd3a601 100644 --- a/docset/winserver2022-ps/adcsdeployment/Install-AdcsOnlineResponder.md +++ b/docset/winserver2022-ps/adcsdeployment/Install-AdcsOnlineResponder.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: ADCSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/install-adcsonlineresponder?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/install-adcsonlineresponder?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-AdcsOnlineResponder --- diff --git a/docset/winserver2022-ps/adcsdeployment/Install-AdcsWebEnrollment.md b/docset/winserver2022-ps/adcsdeployment/Install-AdcsWebEnrollment.md index ef31aacc33..926740034d 100644 --- a/docset/winserver2022-ps/adcsdeployment/Install-AdcsWebEnrollment.md +++ b/docset/winserver2022-ps/adcsdeployment/Install-AdcsWebEnrollment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: ADCSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/install-adcswebenrollment?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/install-adcswebenrollment?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-AdcsWebEnrollment --- diff --git a/docset/winserver2022-ps/adcsdeployment/Uninstall-AdcsCertificationAuthority.md b/docset/winserver2022-ps/adcsdeployment/Uninstall-AdcsCertificationAuthority.md index fcb31dc461..c742f5bd18 100644 --- a/docset/winserver2022-ps/adcsdeployment/Uninstall-AdcsCertificationAuthority.md +++ b/docset/winserver2022-ps/adcsdeployment/Uninstall-AdcsCertificationAuthority.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: ADCSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/uninstall-adcscertificationauthority?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/uninstall-adcscertificationauthority?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-AdcsCertificationAuthority --- diff --git a/docset/winserver2022-ps/adcsdeployment/Uninstall-AdcsEnrollmentPolicyWebService.md b/docset/winserver2022-ps/adcsdeployment/Uninstall-AdcsEnrollmentPolicyWebService.md index b8351b77d1..08cb12cd6f 100644 --- a/docset/winserver2022-ps/adcsdeployment/Uninstall-AdcsEnrollmentPolicyWebService.md +++ b/docset/winserver2022-ps/adcsdeployment/Uninstall-AdcsEnrollmentPolicyWebService.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: ADCSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/uninstall-adcsenrollmentpolicywebservice?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/uninstall-adcsenrollmentpolicywebservice?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-AdcsEnrollmentPolicyWebService --- diff --git a/docset/winserver2022-ps/adcsdeployment/Uninstall-AdcsEnrollmentWebService.md b/docset/winserver2022-ps/adcsdeployment/Uninstall-AdcsEnrollmentWebService.md index 39818680a6..4453069bd0 100644 --- a/docset/winserver2022-ps/adcsdeployment/Uninstall-AdcsEnrollmentWebService.md +++ b/docset/winserver2022-ps/adcsdeployment/Uninstall-AdcsEnrollmentWebService.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: ADCSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/uninstall-adcsenrollmentwebservice?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/uninstall-adcsenrollmentwebservice?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-AdcsEnrollmentWebService --- diff --git a/docset/winserver2022-ps/adcsdeployment/Uninstall-AdcsNetworkDeviceEnrollmentService.md b/docset/winserver2022-ps/adcsdeployment/Uninstall-AdcsNetworkDeviceEnrollmentService.md index 8af8282c3e..9f3b2e778c 100644 --- a/docset/winserver2022-ps/adcsdeployment/Uninstall-AdcsNetworkDeviceEnrollmentService.md +++ b/docset/winserver2022-ps/adcsdeployment/Uninstall-AdcsNetworkDeviceEnrollmentService.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: ADCSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/uninstall-adcsnetworkdeviceenrollmentservice?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/uninstall-adcsnetworkdeviceenrollmentservice?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-AdcsNetworkDeviceEnrollmentService --- diff --git a/docset/winserver2022-ps/adcsdeployment/Uninstall-AdcsOnlineResponder.md b/docset/winserver2022-ps/adcsdeployment/Uninstall-AdcsOnlineResponder.md index f14a2309e7..966c1f06a7 100644 --- a/docset/winserver2022-ps/adcsdeployment/Uninstall-AdcsOnlineResponder.md +++ b/docset/winserver2022-ps/adcsdeployment/Uninstall-AdcsOnlineResponder.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: ADCSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/uninstall-adcsonlineresponder?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/uninstall-adcsonlineresponder?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-AdcsOnlineResponder --- diff --git a/docset/winserver2022-ps/adcsdeployment/Uninstall-AdcsWebEnrollment.md b/docset/winserver2022-ps/adcsdeployment/Uninstall-AdcsWebEnrollment.md index 70e5c5960b..71f7303ed9 100644 --- a/docset/winserver2022-ps/adcsdeployment/Uninstall-AdcsWebEnrollment.md +++ b/docset/winserver2022-ps/adcsdeployment/Uninstall-AdcsWebEnrollment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.Deployment.Commands.dll-Help.xml Module Name: ADCSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/adcsdeployment/uninstall-adcswebenrollment?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adcsdeployment/uninstall-adcswebenrollment?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-AdcsWebEnrollment --- diff --git a/docset/winserver2022-ps/addsdeployment/Add-ADDSReadOnlyDomainControllerAccount.md b/docset/winserver2022-ps/addsdeployment/Add-ADDSReadOnlyDomainControllerAccount.md index 60b15bb74e..c098c40090 100644 --- a/docset/winserver2022-ps/addsdeployment/Add-ADDSReadOnlyDomainControllerAccount.md +++ b/docset/winserver2022-ps/addsdeployment/Add-ADDSReadOnlyDomainControllerAccount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.DirectoryServices.Deployment.dll-Help.xml Module Name: ADDSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/addsdeployment/add-addsreadonlydomaincontrolleraccount?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/addsdeployment/add-addsreadonlydomaincontrolleraccount?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ADDSReadOnlyDomainControllerAccount --- diff --git a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md index 7c5ef8c60a..0f1e46292d 100644 --- a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md +++ b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.DirectoryServices.Deployment.dll-Help.xml Module Name: ADDSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/addsdeployment/install-addsdomain?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/addsdeployment/install-addsdomain?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-ADDSDomain --- diff --git a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md index b1b179a797..3d859faf15 100644 --- a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md +++ b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.DirectoryServices.Deployment.dll-Help.xml Module Name: ADDSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/addsdeployment/install-addsdomaincontroller?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/addsdeployment/install-addsdomaincontroller?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-ADDSDomainController --- diff --git a/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md b/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md index e68a11be9c..8459cae94a 100644 --- a/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md +++ b/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.DirectoryServices.Deployment.dll-Help.xml Module Name: ADDSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/addsdeployment/install-addsforest?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/addsdeployment/install-addsforest?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-ADDSForest --- diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md index 695714e3b1..0a64bebc17 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.DirectoryServices.Deployment.dll-Help.xml Module Name: ADDSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/addsdeployment/test-addsdomaincontrollerinstallation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/addsdeployment/test-addsdomaincontrollerinstallation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-ADDSDomainControllerInstallation --- diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md index 4af84dd8fd..322c2dc461 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.DirectoryServices.Deployment.dll-Help.xml Module Name: ADDSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/addsdeployment/test-addsdomaincontrolleruninstallation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/addsdeployment/test-addsdomaincontrolleruninstallation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-ADDSDomainControllerUninstallation --- diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainInstallation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainInstallation.md index e721933736..e2d0562c05 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainInstallation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainInstallation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.DirectoryServices.Deployment.dll-Help.xml Module Name: ADDSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/addsdeployment/test-addsdomaininstallation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/addsdeployment/test-addsdomaininstallation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-ADDSDomainInstallation --- diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md index bccae5d1d4..9680c6ae05 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.DirectoryServices.Deployment.dll-Help.xml Module Name: ADDSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/addsdeployment/test-addsforestinstallation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/addsdeployment/test-addsforestinstallation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-ADDSForestInstallation --- diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSReadOnlyDomainControllerAccountCreation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSReadOnlyDomainControllerAccountCreation.md index e7acafa02e..3a8c7df17a 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSReadOnlyDomainControllerAccountCreation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSReadOnlyDomainControllerAccountCreation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.DirectoryServices.Deployment.dll-Help.xml Module Name: ADDSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/addsdeployment/test-addsreadonlydomaincontrolleraccountcreation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/addsdeployment/test-addsreadonlydomaincontrolleraccountcreation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-ADDSReadOnlyDomainControllerAccountCreation --- diff --git a/docset/winserver2022-ps/addsdeployment/Uninstall-ADDSDomainController.md b/docset/winserver2022-ps/addsdeployment/Uninstall-ADDSDomainController.md index d44a287c0d..ae4074f990 100644 --- a/docset/winserver2022-ps/addsdeployment/Uninstall-ADDSDomainController.md +++ b/docset/winserver2022-ps/addsdeployment/Uninstall-ADDSDomainController.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.DirectoryServices.Deployment.dll-Help.xml Module Name: ADDSDeployment ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/addsdeployment/uninstall-addsdomaincontroller?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/addsdeployment/uninstall-addsdomaincontroller?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-ADDSDomainController --- diff --git a/docset/winserver2022-ps/adfs/Add-AdfsAttributeStore.md b/docset/winserver2022-ps/adfs/Add-AdfsAttributeStore.md index 9116405c4f..dd46ec777f 100644 --- a/docset/winserver2022-ps/adfs/Add-AdfsAttributeStore.md +++ b/docset/winserver2022-ps/adfs/Add-AdfsAttributeStore.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfsattributestore?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfsattributestore?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsAttributeStore --- diff --git a/docset/winserver2022-ps/adfs/Add-AdfsCertificate.md b/docset/winserver2022-ps/adfs/Add-AdfsCertificate.md index 239d610488..216615b39a 100644 --- a/docset/winserver2022-ps/adfs/Add-AdfsCertificate.md +++ b/docset/winserver2022-ps/adfs/Add-AdfsCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfscertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfscertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsCertificate --- diff --git a/docset/winserver2022-ps/adfs/Add-AdfsClaimDescription.md b/docset/winserver2022-ps/adfs/Add-AdfsClaimDescription.md index 589e9c1210..23ee3ab27a 100644 --- a/docset/winserver2022-ps/adfs/Add-AdfsClaimDescription.md +++ b/docset/winserver2022-ps/adfs/Add-AdfsClaimDescription.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfsclaimdescription?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfsclaimdescription?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsClaimDescription --- diff --git a/docset/winserver2022-ps/adfs/Add-AdfsClaimsProviderTrust.md b/docset/winserver2022-ps/adfs/Add-AdfsClaimsProviderTrust.md index 976770923b..c88aa43970 100644 --- a/docset/winserver2022-ps/adfs/Add-AdfsClaimsProviderTrust.md +++ b/docset/winserver2022-ps/adfs/Add-AdfsClaimsProviderTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfsclaimsprovidertrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfsclaimsprovidertrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsClaimsProviderTrust --- diff --git a/docset/winserver2022-ps/adfs/Add-AdfsClaimsProviderTrustsGroup.md b/docset/winserver2022-ps/adfs/Add-AdfsClaimsProviderTrustsGroup.md index edd58a8d8d..997e8f676f 100644 --- a/docset/winserver2022-ps/adfs/Add-AdfsClaimsProviderTrustsGroup.md +++ b/docset/winserver2022-ps/adfs/Add-AdfsClaimsProviderTrustsGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfsclaimsprovidertrustsgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfsclaimsprovidertrustsgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsClaimsProviderTrustsGroup --- diff --git a/docset/winserver2022-ps/adfs/Add-AdfsClient.md b/docset/winserver2022-ps/adfs/Add-AdfsClient.md index 2a90abb969..f40988241c 100644 --- a/docset/winserver2022-ps/adfs/Add-AdfsClient.md +++ b/docset/winserver2022-ps/adfs/Add-AdfsClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 09/19/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfsclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfsclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsClient --- diff --git a/docset/winserver2022-ps/adfs/Add-AdfsDeviceRegistrationUpnSuffix.md b/docset/winserver2022-ps/adfs/Add-AdfsDeviceRegistrationUpnSuffix.md index 4a035cda6a..6a83e94421 100644 --- a/docset/winserver2022-ps/adfs/Add-AdfsDeviceRegistrationUpnSuffix.md +++ b/docset/winserver2022-ps/adfs/Add-AdfsDeviceRegistrationUpnSuffix.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfsdeviceregistrationupnsuffix?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfsdeviceregistrationupnsuffix?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsDeviceRegistrationUpnSuffix --- diff --git a/docset/winserver2022-ps/adfs/Add-AdfsFarmNode.md b/docset/winserver2022-ps/adfs/Add-AdfsFarmNode.md index 78660bbb22..ae266bfdc0 100644 --- a/docset/winserver2022-ps/adfs/Add-AdfsFarmNode.md +++ b/docset/winserver2022-ps/adfs/Add-AdfsFarmNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Deployment.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfsfarmnode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfsfarmnode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsFarmNode --- diff --git a/docset/winserver2022-ps/adfs/Add-AdfsLocalClaimsProviderTrust.md b/docset/winserver2022-ps/adfs/Add-AdfsLocalClaimsProviderTrust.md index ee73f23688..dcf4439287 100644 --- a/docset/winserver2022-ps/adfs/Add-AdfsLocalClaimsProviderTrust.md +++ b/docset/winserver2022-ps/adfs/Add-AdfsLocalClaimsProviderTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfslocalclaimsprovidertrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfslocalclaimsprovidertrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsLocalClaimsProviderTrust --- diff --git a/docset/winserver2022-ps/adfs/Add-AdfsNativeClientApplication.md b/docset/winserver2022-ps/adfs/Add-AdfsNativeClientApplication.md index 59ca01ec72..a170178bd1 100644 --- a/docset/winserver2022-ps/adfs/Add-AdfsNativeClientApplication.md +++ b/docset/winserver2022-ps/adfs/Add-AdfsNativeClientApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 09/19/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfsnativeclientapplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfsnativeclientapplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsNativeClientApplication --- diff --git a/docset/winserver2022-ps/adfs/Add-AdfsNonClaimsAwareRelyingPartyTrust.md b/docset/winserver2022-ps/adfs/Add-AdfsNonClaimsAwareRelyingPartyTrust.md index e2285de588..7dfa80a4c8 100644 --- a/docset/winserver2022-ps/adfs/Add-AdfsNonClaimsAwareRelyingPartyTrust.md +++ b/docset/winserver2022-ps/adfs/Add-AdfsNonClaimsAwareRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfsnonclaimsawarerelyingpartytrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfsnonclaimsawarerelyingpartytrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsNonClaimsAwareRelyingPartyTrust --- diff --git a/docset/winserver2022-ps/adfs/Add-AdfsRelyingPartyTrust.md b/docset/winserver2022-ps/adfs/Add-AdfsRelyingPartyTrust.md index 2a30a0b2dc..cba5ed5512 100644 --- a/docset/winserver2022-ps/adfs/Add-AdfsRelyingPartyTrust.md +++ b/docset/winserver2022-ps/adfs/Add-AdfsRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfsrelyingpartytrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfsrelyingpartytrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsRelyingPartyTrust --- diff --git a/docset/winserver2022-ps/adfs/Add-AdfsRelyingPartyTrustsGroup.md b/docset/winserver2022-ps/adfs/Add-AdfsRelyingPartyTrustsGroup.md index fe27da07c7..a2674421cc 100644 --- a/docset/winserver2022-ps/adfs/Add-AdfsRelyingPartyTrustsGroup.md +++ b/docset/winserver2022-ps/adfs/Add-AdfsRelyingPartyTrustsGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfsrelyingpartytrustsgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfsrelyingpartytrustsgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsRelyingPartyTrustsGroup --- diff --git a/docset/winserver2022-ps/adfs/Add-AdfsScopeDescription.md b/docset/winserver2022-ps/adfs/Add-AdfsScopeDescription.md index c716a11dcf..22b26360a6 100644 --- a/docset/winserver2022-ps/adfs/Add-AdfsScopeDescription.md +++ b/docset/winserver2022-ps/adfs/Add-AdfsScopeDescription.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfsscopedescription?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfsscopedescription?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsScopeDescription --- diff --git a/docset/winserver2022-ps/adfs/Add-AdfsServerApplication.md b/docset/winserver2022-ps/adfs/Add-AdfsServerApplication.md index 1daef07680..e8a694223e 100644 --- a/docset/winserver2022-ps/adfs/Add-AdfsServerApplication.md +++ b/docset/winserver2022-ps/adfs/Add-AdfsServerApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 09/19/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfsserverapplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfsserverapplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsServerApplication --- diff --git a/docset/winserver2022-ps/adfs/Add-AdfsTrustedFederationPartner.md b/docset/winserver2022-ps/adfs/Add-AdfsTrustedFederationPartner.md index 03f3ac8c88..f916ffc370 100644 --- a/docset/winserver2022-ps/adfs/Add-AdfsTrustedFederationPartner.md +++ b/docset/winserver2022-ps/adfs/Add-AdfsTrustedFederationPartner.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfstrustedfederationpartner?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfstrustedfederationpartner?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsTrustedFederationPartner --- diff --git a/docset/winserver2022-ps/adfs/Add-AdfsWebApiApplication.md b/docset/winserver2022-ps/adfs/Add-AdfsWebApiApplication.md index 65748ecbe6..de7d9e760d 100644 --- a/docset/winserver2022-ps/adfs/Add-AdfsWebApiApplication.md +++ b/docset/winserver2022-ps/adfs/Add-AdfsWebApiApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfswebapiapplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfswebapiapplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsWebApiApplication --- diff --git a/docset/winserver2022-ps/adfs/Add-AdfsWebApplicationProxyRelyingPartyTrust.md b/docset/winserver2022-ps/adfs/Add-AdfsWebApplicationProxyRelyingPartyTrust.md index 8ec0e03840..4dbe711f96 100644 --- a/docset/winserver2022-ps/adfs/Add-AdfsWebApplicationProxyRelyingPartyTrust.md +++ b/docset/winserver2022-ps/adfs/Add-AdfsWebApplicationProxyRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/add-adfswebapplicationproxyrelyingpartytrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/add-adfswebapplicationproxyrelyingpartytrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AdfsWebApplicationProxyRelyingPartyTrust --- diff --git a/docset/winserver2022-ps/adfs/Disable-AdfsApplicationGroup.md b/docset/winserver2022-ps/adfs/Disable-AdfsApplicationGroup.md index 21a27de571..1dd82f19fc 100644 --- a/docset/winserver2022-ps/adfs/Disable-AdfsApplicationGroup.md +++ b/docset/winserver2022-ps/adfs/Disable-AdfsApplicationGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/disable-adfsapplicationgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/disable-adfsapplicationgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-AdfsApplicationGroup --- diff --git a/docset/winserver2022-ps/adfs/Disable-AdfsCertificateAuthority.md b/docset/winserver2022-ps/adfs/Disable-AdfsCertificateAuthority.md index fbf7c3927f..709f07b512 100644 --- a/docset/winserver2022-ps/adfs/Disable-AdfsCertificateAuthority.md +++ b/docset/winserver2022-ps/adfs/Disable-AdfsCertificateAuthority.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/disable-adfscertificateauthority?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/disable-adfscertificateauthority?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-AdfsCertificateAuthority --- diff --git a/docset/winserver2022-ps/adfs/Disable-AdfsClaimsProviderTrust.md b/docset/winserver2022-ps/adfs/Disable-AdfsClaimsProviderTrust.md index 1e62ecda9e..41e1edfa62 100644 --- a/docset/winserver2022-ps/adfs/Disable-AdfsClaimsProviderTrust.md +++ b/docset/winserver2022-ps/adfs/Disable-AdfsClaimsProviderTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/disable-adfsclaimsprovidertrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/disable-adfsclaimsprovidertrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-AdfsClaimsProviderTrust --- diff --git a/docset/winserver2022-ps/adfs/Disable-AdfsClient.md b/docset/winserver2022-ps/adfs/Disable-AdfsClient.md index f752b61e9b..7f03f28ef2 100644 --- a/docset/winserver2022-ps/adfs/Disable-AdfsClient.md +++ b/docset/winserver2022-ps/adfs/Disable-AdfsClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/disable-adfsclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/disable-adfsclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-AdfsClient --- diff --git a/docset/winserver2022-ps/adfs/Disable-AdfsDeviceRegistration.md b/docset/winserver2022-ps/adfs/Disable-AdfsDeviceRegistration.md index 4d333d1789..d72a746e9f 100644 --- a/docset/winserver2022-ps/adfs/Disable-AdfsDeviceRegistration.md +++ b/docset/winserver2022-ps/adfs/Disable-AdfsDeviceRegistration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Deployment.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/disable-adfsdeviceregistration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/disable-adfsdeviceregistration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-AdfsDeviceRegistration --- diff --git a/docset/winserver2022-ps/adfs/Disable-AdfsEndpoint.md b/docset/winserver2022-ps/adfs/Disable-AdfsEndpoint.md index 8055cedfdc..1f4a2e6b27 100644 --- a/docset/winserver2022-ps/adfs/Disable-AdfsEndpoint.md +++ b/docset/winserver2022-ps/adfs/Disable-AdfsEndpoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/disable-adfsendpoint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/disable-adfsendpoint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-AdfsEndpoint --- diff --git a/docset/winserver2022-ps/adfs/Disable-AdfsLocalClaimsProviderTrust.md b/docset/winserver2022-ps/adfs/Disable-AdfsLocalClaimsProviderTrust.md index 6ace740cd4..8a723d333a 100644 --- a/docset/winserver2022-ps/adfs/Disable-AdfsLocalClaimsProviderTrust.md +++ b/docset/winserver2022-ps/adfs/Disable-AdfsLocalClaimsProviderTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/disable-adfslocalclaimsprovidertrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/disable-adfslocalclaimsprovidertrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-AdfsLocalClaimsProviderTrust --- diff --git a/docset/winserver2022-ps/adfs/Disable-AdfsNonClaimsAwareRelyingPartyTrust.md b/docset/winserver2022-ps/adfs/Disable-AdfsNonClaimsAwareRelyingPartyTrust.md index c35ddc8773..5c309333c2 100644 --- a/docset/winserver2022-ps/adfs/Disable-AdfsNonClaimsAwareRelyingPartyTrust.md +++ b/docset/winserver2022-ps/adfs/Disable-AdfsNonClaimsAwareRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/disable-adfsnonclaimsawarerelyingpartytrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/disable-adfsnonclaimsawarerelyingpartytrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-AdfsNonClaimsAwareRelyingPartyTrust --- diff --git a/docset/winserver2022-ps/adfs/Disable-AdfsRelyingPartyTrust.md b/docset/winserver2022-ps/adfs/Disable-AdfsRelyingPartyTrust.md index c7b038eaa9..cddf0a1891 100644 --- a/docset/winserver2022-ps/adfs/Disable-AdfsRelyingPartyTrust.md +++ b/docset/winserver2022-ps/adfs/Disable-AdfsRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/disable-adfsrelyingpartytrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/disable-adfsrelyingpartytrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-AdfsRelyingPartyTrust --- diff --git a/docset/winserver2022-ps/adfs/Disable-AdfsWebApplicationProxyRelyingPartyTrust.md b/docset/winserver2022-ps/adfs/Disable-AdfsWebApplicationProxyRelyingPartyTrust.md index b2ccb4cb08..11d7603899 100644 --- a/docset/winserver2022-ps/adfs/Disable-AdfsWebApplicationProxyRelyingPartyTrust.md +++ b/docset/winserver2022-ps/adfs/Disable-AdfsWebApplicationProxyRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/disable-adfswebapplicationproxyrelyingpartytrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/disable-adfswebapplicationproxyrelyingpartytrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-AdfsWebApplicationProxyRelyingPartyTrust --- diff --git a/docset/winserver2022-ps/adfs/Enable-AdfsApplicationGroup.md b/docset/winserver2022-ps/adfs/Enable-AdfsApplicationGroup.md index f58eaab7fd..61c3ed2608 100644 --- a/docset/winserver2022-ps/adfs/Enable-AdfsApplicationGroup.md +++ b/docset/winserver2022-ps/adfs/Enable-AdfsApplicationGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/enable-adfsapplicationgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/enable-adfsapplicationgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-AdfsApplicationGroup --- diff --git a/docset/winserver2022-ps/adfs/Enable-AdfsClaimsProviderTrust.md b/docset/winserver2022-ps/adfs/Enable-AdfsClaimsProviderTrust.md index bc7041b858..f466e8f229 100644 --- a/docset/winserver2022-ps/adfs/Enable-AdfsClaimsProviderTrust.md +++ b/docset/winserver2022-ps/adfs/Enable-AdfsClaimsProviderTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/enable-adfsclaimsprovidertrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/enable-adfsclaimsprovidertrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-AdfsClaimsProviderTrust --- diff --git a/docset/winserver2022-ps/adfs/Enable-AdfsClient.md b/docset/winserver2022-ps/adfs/Enable-AdfsClient.md index a944c5b8c0..c075306a06 100644 --- a/docset/winserver2022-ps/adfs/Enable-AdfsClient.md +++ b/docset/winserver2022-ps/adfs/Enable-AdfsClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/enable-adfsclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/enable-adfsclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-AdfsClient --- diff --git a/docset/winserver2022-ps/adfs/Enable-AdfsDeviceRegistration.md b/docset/winserver2022-ps/adfs/Enable-AdfsDeviceRegistration.md index 2343afc4cf..ea1bfdbf19 100644 --- a/docset/winserver2022-ps/adfs/Enable-AdfsDeviceRegistration.md +++ b/docset/winserver2022-ps/adfs/Enable-AdfsDeviceRegistration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Deployment.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/enable-adfsdeviceregistration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/enable-adfsdeviceregistration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-AdfsDeviceRegistration --- diff --git a/docset/winserver2022-ps/adfs/Enable-AdfsEndpoint.md b/docset/winserver2022-ps/adfs/Enable-AdfsEndpoint.md index c2767f032a..7c0a47e22c 100644 --- a/docset/winserver2022-ps/adfs/Enable-AdfsEndpoint.md +++ b/docset/winserver2022-ps/adfs/Enable-AdfsEndpoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/enable-adfsendpoint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/enable-adfsendpoint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-AdfsEndpoint --- diff --git a/docset/winserver2022-ps/adfs/Enable-AdfsLocalClaimsProviderTrust.md b/docset/winserver2022-ps/adfs/Enable-AdfsLocalClaimsProviderTrust.md index f3dc2e1ed0..8c5f2ea437 100644 --- a/docset/winserver2022-ps/adfs/Enable-AdfsLocalClaimsProviderTrust.md +++ b/docset/winserver2022-ps/adfs/Enable-AdfsLocalClaimsProviderTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/enable-adfslocalclaimsprovidertrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/enable-adfslocalclaimsprovidertrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-AdfsLocalClaimsProviderTrust --- diff --git a/docset/winserver2022-ps/adfs/Enable-AdfsNonClaimsAwareRelyingPartyTrust.md b/docset/winserver2022-ps/adfs/Enable-AdfsNonClaimsAwareRelyingPartyTrust.md index 1adfdc98d0..6445a9a3bf 100644 --- a/docset/winserver2022-ps/adfs/Enable-AdfsNonClaimsAwareRelyingPartyTrust.md +++ b/docset/winserver2022-ps/adfs/Enable-AdfsNonClaimsAwareRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/enable-adfsnonclaimsawarerelyingpartytrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/enable-adfsnonclaimsawarerelyingpartytrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-AdfsNonClaimsAwareRelyingPartyTrust --- diff --git a/docset/winserver2022-ps/adfs/Enable-AdfsRelyingPartyTrust.md b/docset/winserver2022-ps/adfs/Enable-AdfsRelyingPartyTrust.md index bb0f4485ad..ba82b9a1a9 100644 --- a/docset/winserver2022-ps/adfs/Enable-AdfsRelyingPartyTrust.md +++ b/docset/winserver2022-ps/adfs/Enable-AdfsRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/enable-adfsrelyingpartytrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/enable-adfsrelyingpartytrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-AdfsRelyingPartyTrust --- diff --git a/docset/winserver2022-ps/adfs/Enable-AdfsWebApplicationProxyRelyingPartyTrust.md b/docset/winserver2022-ps/adfs/Enable-AdfsWebApplicationProxyRelyingPartyTrust.md index 8995f2292e..c1c87a65fb 100644 --- a/docset/winserver2022-ps/adfs/Enable-AdfsWebApplicationProxyRelyingPartyTrust.md +++ b/docset/winserver2022-ps/adfs/Enable-AdfsWebApplicationProxyRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/enable-adfswebapplicationproxyrelyingpartytrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/enable-adfswebapplicationproxyrelyingpartytrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-AdfsWebApplicationProxyRelyingPartyTrust --- diff --git a/docset/winserver2022-ps/adfs/Export-AdfsAuthenticationProviderConfigurationData.md b/docset/winserver2022-ps/adfs/Export-AdfsAuthenticationProviderConfigurationData.md index bae244dbc8..1cf37ad0b9 100644 --- a/docset/winserver2022-ps/adfs/Export-AdfsAuthenticationProviderConfigurationData.md +++ b/docset/winserver2022-ps/adfs/Export-AdfsAuthenticationProviderConfigurationData.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/export-adfsauthenticationproviderconfigurationdata?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/export-adfsauthenticationproviderconfigurationdata?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-AdfsAuthenticationProviderConfigurationData --- diff --git a/docset/winserver2022-ps/adfs/Export-AdfsDeploymentSQLScript.md b/docset/winserver2022-ps/adfs/Export-AdfsDeploymentSQLScript.md index b20d42c44b..67fdb6f570 100644 --- a/docset/winserver2022-ps/adfs/Export-AdfsDeploymentSQLScript.md +++ b/docset/winserver2022-ps/adfs/Export-AdfsDeploymentSQLScript.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Deployment.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/export-adfsdeploymentsqlscript?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/export-adfsdeploymentsqlscript?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-AdfsDeploymentSQLScript --- diff --git a/docset/winserver2022-ps/adfs/Export-AdfsWebContent.md b/docset/winserver2022-ps/adfs/Export-AdfsWebContent.md index a4e7d8f249..4c5b85def8 100644 --- a/docset/winserver2022-ps/adfs/Export-AdfsWebContent.md +++ b/docset/winserver2022-ps/adfs/Export-AdfsWebContent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/export-adfswebcontent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/export-adfswebcontent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-AdfsWebContent --- diff --git a/docset/winserver2022-ps/adfs/Export-AdfsWebTheme.md b/docset/winserver2022-ps/adfs/Export-AdfsWebTheme.md index 4f8ac9e726..87c1f79b3b 100644 --- a/docset/winserver2022-ps/adfs/Export-AdfsWebTheme.md +++ b/docset/winserver2022-ps/adfs/Export-AdfsWebTheme.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/export-adfswebtheme?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/export-adfswebtheme?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-AdfsWebTheme --- diff --git a/docset/winserver2022-ps/adfs/Get-AdfsAccessControlPolicy.md b/docset/winserver2022-ps/adfs/Get-AdfsAccessControlPolicy.md index ed19e8d050..ab98d262fa 100644 --- a/docset/winserver2022-ps/adfs/Get-AdfsAccessControlPolicy.md +++ b/docset/winserver2022-ps/adfs/Get-AdfsAccessControlPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsaccesscontrolpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsaccesscontrolpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsAccessControlPolicy --- diff --git a/docset/winserver2022-ps/adfs/Get-AdfsAdditionalAuthenticationRule.md b/docset/winserver2022-ps/adfs/Get-AdfsAdditionalAuthenticationRule.md index 8446cd3ff9..df92d5cb19 100644 --- a/docset/winserver2022-ps/adfs/Get-AdfsAdditionalAuthenticationRule.md +++ b/docset/winserver2022-ps/adfs/Get-AdfsAdditionalAuthenticationRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsadditionalauthenticationrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsadditionalauthenticationrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsAdditionalAuthenticationRule --- diff --git a/docset/winserver2022-ps/adfs/Get-AdfsApplicationGroup.md b/docset/winserver2022-ps/adfs/Get-AdfsApplicationGroup.md index 9a22538964..52fd7863cd 100644 --- a/docset/winserver2022-ps/adfs/Get-AdfsApplicationGroup.md +++ b/docset/winserver2022-ps/adfs/Get-AdfsApplicationGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsapplicationgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsapplicationgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsApplicationGroup --- diff --git a/docset/winserver2022-ps/adfs/Get-AdfsApplicationPermission.md b/docset/winserver2022-ps/adfs/Get-AdfsApplicationPermission.md index 8e7e5036d8..3345b47d3f 100644 --- a/docset/winserver2022-ps/adfs/Get-AdfsApplicationPermission.md +++ b/docset/winserver2022-ps/adfs/Get-AdfsApplicationPermission.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsapplicationpermission?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsapplicationpermission?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsApplicationPermission --- diff --git a/docset/winserver2022-ps/adfs/Get-AdfsAttributeStore.md b/docset/winserver2022-ps/adfs/Get-AdfsAttributeStore.md index d29451efc2..d5e8529670 100644 --- a/docset/winserver2022-ps/adfs/Get-AdfsAttributeStore.md +++ b/docset/winserver2022-ps/adfs/Get-AdfsAttributeStore.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsattributestore?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsattributestore?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsAttributeStore --- diff --git a/docset/winserver2022-ps/adfs/Get-AdfsAuthenticationProvider.md b/docset/winserver2022-ps/adfs/Get-AdfsAuthenticationProvider.md index e01080ef77..5eb0c2f477 100644 --- a/docset/winserver2022-ps/adfs/Get-AdfsAuthenticationProvider.md +++ b/docset/winserver2022-ps/adfs/Get-AdfsAuthenticationProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsauthenticationprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsauthenticationprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsAuthenticationProvider --- diff --git a/docset/winserver2022-ps/adfs/Get-AdfsAuthenticationProviderWebContent.md b/docset/winserver2022-ps/adfs/Get-AdfsAuthenticationProviderWebContent.md index 5eea65c191..2ec9ca4e0e 100644 --- a/docset/winserver2022-ps/adfs/Get-AdfsAuthenticationProviderWebContent.md +++ b/docset/winserver2022-ps/adfs/Get-AdfsAuthenticationProviderWebContent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsauthenticationproviderwebcontent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsauthenticationproviderwebcontent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsAuthenticationProviderWebContent --- diff --git a/docset/winserver2022-ps/adfs/Get-AdfsAzureMfaConfigured.md b/docset/winserver2022-ps/adfs/Get-AdfsAzureMfaConfigured.md index d4dbca7fc9..a3219939cc 100644 --- a/docset/winserver2022-ps/adfs/Get-AdfsAzureMfaConfigured.md +++ b/docset/winserver2022-ps/adfs/Get-AdfsAzureMfaConfigured.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsazuremfaconfigured?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsazuremfaconfigured?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsAzureMfaConfigured --- diff --git a/docset/winserver2022-ps/adfs/Get-AdfsCertificate.md b/docset/winserver2022-ps/adfs/Get-AdfsCertificate.md index bc464c0da7..ae009def20 100644 --- a/docset/winserver2022-ps/adfs/Get-AdfsCertificate.md +++ b/docset/winserver2022-ps/adfs/Get-AdfsCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfscertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfscertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsCertificate --- diff --git a/docset/winserver2022-ps/adfs/Get-AdfsCertificateAuthority.md b/docset/winserver2022-ps/adfs/Get-AdfsCertificateAuthority.md index 249a76abc1..9518809f25 100644 --- a/docset/winserver2022-ps/adfs/Get-AdfsCertificateAuthority.md +++ b/docset/winserver2022-ps/adfs/Get-AdfsCertificateAuthority.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfscertificateauthority?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfscertificateauthority?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsCertificateAuthority --- diff --git a/docset/winserver2022-ps/adfs/Get-AdfsClaimDescription.md b/docset/winserver2022-ps/adfs/Get-AdfsClaimDescription.md index 59383e612c..743d0b16e5 100644 --- a/docset/winserver2022-ps/adfs/Get-AdfsClaimDescription.md +++ b/docset/winserver2022-ps/adfs/Get-AdfsClaimDescription.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsclaimdescription?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsclaimdescription?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsClaimDescription --- diff --git a/docset/winserver2022-ps/adfs/Get-AdfsClaimsProviderTrust.md b/docset/winserver2022-ps/adfs/Get-AdfsClaimsProviderTrust.md index c5c072ad0d..f124d88f3a 100644 --- a/docset/winserver2022-ps/adfs/Get-AdfsClaimsProviderTrust.md +++ b/docset/winserver2022-ps/adfs/Get-AdfsClaimsProviderTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsclaimsprovidertrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsclaimsprovidertrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsClaimsProviderTrust --- diff --git a/docset/winserver2022-ps/adfs/Get-AdfsClaimsProviderTrustsGroup.md b/docset/winserver2022-ps/adfs/Get-AdfsClaimsProviderTrustsGroup.md index 39857818eb..ecb1ea6f30 100644 --- a/docset/winserver2022-ps/adfs/Get-AdfsClaimsProviderTrustsGroup.md +++ b/docset/winserver2022-ps/adfs/Get-AdfsClaimsProviderTrustsGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsclaimsprovidertrustsgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsclaimsprovidertrustsgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsClaimsProviderTrustsGroup --- diff --git a/docset/winserver2022-ps/adfs/Get-AdfsClient.md b/docset/winserver2022-ps/adfs/Get-AdfsClient.md index db6c0749c4..46fd190c7d 100644 --- a/docset/winserver2022-ps/adfs/Get-AdfsClient.md +++ b/docset/winserver2022-ps/adfs/Get-AdfsClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsClient --- diff --git a/docset/winserver2022-ps/adfs/Get-AdfsDeviceRegistration.md b/docset/winserver2022-ps/adfs/Get-AdfsDeviceRegistration.md index 760f0cd46e..20f170b4d0 100644 --- a/docset/winserver2022-ps/adfs/Get-AdfsDeviceRegistration.md +++ b/docset/winserver2022-ps/adfs/Get-AdfsDeviceRegistration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsdeviceregistration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsdeviceregistration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsDeviceRegistration --- diff --git a/docset/winserver2022-ps/adfs/Get-AdfsDeviceRegistrationUpnSuffix.md b/docset/winserver2022-ps/adfs/Get-AdfsDeviceRegistrationUpnSuffix.md index 3feb51ec64..d9b9378347 100644 --- a/docset/winserver2022-ps/adfs/Get-AdfsDeviceRegistrationUpnSuffix.md +++ b/docset/winserver2022-ps/adfs/Get-AdfsDeviceRegistrationUpnSuffix.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsdeviceregistrationupnsuffix?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsdeviceregistrationupnsuffix?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsDeviceRegistrationUpnSuffix --- diff --git a/docset/winserver2022-ps/adfs/Get-AdfsEndpoint.md b/docset/winserver2022-ps/adfs/Get-AdfsEndpoint.md index 50afd954a8..5a958e365c 100644 --- a/docset/winserver2022-ps/adfs/Get-AdfsEndpoint.md +++ b/docset/winserver2022-ps/adfs/Get-AdfsEndpoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsendpoint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsendpoint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsEndpoint --- diff --git a/docset/winserver2022-ps/adfs/Get-AdfsFarmInformation.md b/docset/winserver2022-ps/adfs/Get-AdfsFarmInformation.md index 56eebf3bcb..ab434d3402 100644 --- a/docset/winserver2022-ps/adfs/Get-AdfsFarmInformation.md +++ b/docset/winserver2022-ps/adfs/Get-AdfsFarmInformation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsfarminformation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsfarminformation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsFarmInformation --- diff --git a/docset/winserver2022-ps/adfs/Get-AdfsGlobalAuthenticationPolicy.md b/docset/winserver2022-ps/adfs/Get-AdfsGlobalAuthenticationPolicy.md index 1beb6ee094..067ede33fa 100644 --- a/docset/winserver2022-ps/adfs/Get-AdfsGlobalAuthenticationPolicy.md +++ b/docset/winserver2022-ps/adfs/Get-AdfsGlobalAuthenticationPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsglobalauthenticationpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsglobalauthenticationpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsGlobalAuthenticationPolicy --- diff --git a/docset/winserver2022-ps/adfs/Get-AdfsGlobalWebContent.md b/docset/winserver2022-ps/adfs/Get-AdfsGlobalWebContent.md index c950fced5e..739e9fd531 100644 --- a/docset/winserver2022-ps/adfs/Get-AdfsGlobalWebContent.md +++ b/docset/winserver2022-ps/adfs/Get-AdfsGlobalWebContent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsglobalwebcontent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsglobalwebcontent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsGlobalWebContent --- diff --git a/docset/winserver2022-ps/adfs/Get-AdfsLocalClaimsProviderTrust.md b/docset/winserver2022-ps/adfs/Get-AdfsLocalClaimsProviderTrust.md index 7e2314ddc9..43f58017be 100644 --- a/docset/winserver2022-ps/adfs/Get-AdfsLocalClaimsProviderTrust.md +++ b/docset/winserver2022-ps/adfs/Get-AdfsLocalClaimsProviderTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfslocalclaimsprovidertrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfslocalclaimsprovidertrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsLocalClaimsProviderTrust --- diff --git a/docset/winserver2022-ps/adfs/Get-AdfsNativeClientApplication.md b/docset/winserver2022-ps/adfs/Get-AdfsNativeClientApplication.md index 8529da3118..b220414076 100644 --- a/docset/winserver2022-ps/adfs/Get-AdfsNativeClientApplication.md +++ b/docset/winserver2022-ps/adfs/Get-AdfsNativeClientApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsnativeclientapplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsnativeclientapplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsNativeClientApplication --- diff --git a/docset/winserver2022-ps/adfs/Get-AdfsNonClaimsAwareRelyingPartyTrust.md b/docset/winserver2022-ps/adfs/Get-AdfsNonClaimsAwareRelyingPartyTrust.md index 1e935760c1..922b9777e0 100644 --- a/docset/winserver2022-ps/adfs/Get-AdfsNonClaimsAwareRelyingPartyTrust.md +++ b/docset/winserver2022-ps/adfs/Get-AdfsNonClaimsAwareRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsnonclaimsawarerelyingpartytrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsnonclaimsawarerelyingpartytrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsNonClaimsAwareRelyingPartyTrust --- diff --git a/docset/winserver2022-ps/adfs/Get-AdfsProperties.md b/docset/winserver2022-ps/adfs/Get-AdfsProperties.md index 8409fe8639..4ef6ef13c4 100644 --- a/docset/winserver2022-ps/adfs/Get-AdfsProperties.md +++ b/docset/winserver2022-ps/adfs/Get-AdfsProperties.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsproperties?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsproperties?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsProperties --- diff --git a/docset/winserver2022-ps/adfs/Get-AdfsRegistrationHosts.md b/docset/winserver2022-ps/adfs/Get-AdfsRegistrationHosts.md index 4c39c1aadc..6d1f333381 100644 --- a/docset/winserver2022-ps/adfs/Get-AdfsRegistrationHosts.md +++ b/docset/winserver2022-ps/adfs/Get-AdfsRegistrationHosts.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsregistrationhosts?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsregistrationhosts?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsRegistrationHosts --- diff --git a/docset/winserver2022-ps/adfs/Get-AdfsRelyingPartyTrust.md b/docset/winserver2022-ps/adfs/Get-AdfsRelyingPartyTrust.md index ad60186a42..da6246c494 100644 --- a/docset/winserver2022-ps/adfs/Get-AdfsRelyingPartyTrust.md +++ b/docset/winserver2022-ps/adfs/Get-AdfsRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsrelyingpartytrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsrelyingpartytrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsRelyingPartyTrust --- diff --git a/docset/winserver2022-ps/adfs/Get-AdfsRelyingPartyTrustsGroup.md b/docset/winserver2022-ps/adfs/Get-AdfsRelyingPartyTrustsGroup.md index 27103b5e21..524d050e12 100644 --- a/docset/winserver2022-ps/adfs/Get-AdfsRelyingPartyTrustsGroup.md +++ b/docset/winserver2022-ps/adfs/Get-AdfsRelyingPartyTrustsGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsrelyingpartytrustsgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsrelyingpartytrustsgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsRelyingPartyTrustsGroup --- diff --git a/docset/winserver2022-ps/adfs/Get-AdfsRelyingPartyWebContent.md b/docset/winserver2022-ps/adfs/Get-AdfsRelyingPartyWebContent.md index 4893ace17b..ac30f73fe9 100644 --- a/docset/winserver2022-ps/adfs/Get-AdfsRelyingPartyWebContent.md +++ b/docset/winserver2022-ps/adfs/Get-AdfsRelyingPartyWebContent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsrelyingpartywebcontent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsrelyingpartywebcontent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsRelyingPartyWebContent --- diff --git a/docset/winserver2022-ps/adfs/Get-AdfsRelyingPartyWebTheme.md b/docset/winserver2022-ps/adfs/Get-AdfsRelyingPartyWebTheme.md index e61507c7ce..a46d729272 100644 --- a/docset/winserver2022-ps/adfs/Get-AdfsRelyingPartyWebTheme.md +++ b/docset/winserver2022-ps/adfs/Get-AdfsRelyingPartyWebTheme.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsrelyingpartywebtheme?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsrelyingpartywebtheme?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsRelyingPartyWebTheme --- diff --git a/docset/winserver2022-ps/adfs/Get-AdfsScopeDescription.md b/docset/winserver2022-ps/adfs/Get-AdfsScopeDescription.md index e89315c1c9..44be878adc 100644 --- a/docset/winserver2022-ps/adfs/Get-AdfsScopeDescription.md +++ b/docset/winserver2022-ps/adfs/Get-AdfsScopeDescription.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsscopedescription?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsscopedescription?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsScopeDescription --- diff --git a/docset/winserver2022-ps/adfs/Get-AdfsServerApplication.md b/docset/winserver2022-ps/adfs/Get-AdfsServerApplication.md index 2dbd67bd9e..fedbeaf1fa 100644 --- a/docset/winserver2022-ps/adfs/Get-AdfsServerApplication.md +++ b/docset/winserver2022-ps/adfs/Get-AdfsServerApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfsserverapplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfsserverapplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsServerApplication --- diff --git a/docset/winserver2022-ps/adfs/Get-AdfsSslCertificate.md b/docset/winserver2022-ps/adfs/Get-AdfsSslCertificate.md index 421d1b8d6f..061019d228 100644 --- a/docset/winserver2022-ps/adfs/Get-AdfsSslCertificate.md +++ b/docset/winserver2022-ps/adfs/Get-AdfsSslCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfssslcertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfssslcertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsSslCertificate --- diff --git a/docset/winserver2022-ps/adfs/Get-AdfsSyncProperties.md b/docset/winserver2022-ps/adfs/Get-AdfsSyncProperties.md index a04384df9c..22dbc1fc9d 100644 --- a/docset/winserver2022-ps/adfs/Get-AdfsSyncProperties.md +++ b/docset/winserver2022-ps/adfs/Get-AdfsSyncProperties.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfssyncproperties?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfssyncproperties?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsSyncProperties --- diff --git a/docset/winserver2022-ps/adfs/Get-AdfsTrustedFederationPartner.md b/docset/winserver2022-ps/adfs/Get-AdfsTrustedFederationPartner.md index affadcbf78..3579f4c5fc 100644 --- a/docset/winserver2022-ps/adfs/Get-AdfsTrustedFederationPartner.md +++ b/docset/winserver2022-ps/adfs/Get-AdfsTrustedFederationPartner.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfstrustedfederationpartner?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfstrustedfederationpartner?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsTrustedFederationPartner --- diff --git a/docset/winserver2022-ps/adfs/Get-AdfsWebApiApplication.md b/docset/winserver2022-ps/adfs/Get-AdfsWebApiApplication.md index dc10b7aa07..93774a51cb 100644 --- a/docset/winserver2022-ps/adfs/Get-AdfsWebApiApplication.md +++ b/docset/winserver2022-ps/adfs/Get-AdfsWebApiApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfswebapiapplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfswebapiapplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsWebApiApplication --- diff --git a/docset/winserver2022-ps/adfs/Get-AdfsWebApplicationProxyRelyingPartyTrust.md b/docset/winserver2022-ps/adfs/Get-AdfsWebApplicationProxyRelyingPartyTrust.md index 0561017215..b80af3d579 100644 --- a/docset/winserver2022-ps/adfs/Get-AdfsWebApplicationProxyRelyingPartyTrust.md +++ b/docset/winserver2022-ps/adfs/Get-AdfsWebApplicationProxyRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfswebapplicationproxyrelyingpartytrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfswebapplicationproxyrelyingpartytrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsWebApplicationProxyRelyingPartyTrust --- diff --git a/docset/winserver2022-ps/adfs/Get-AdfsWebConfig.md b/docset/winserver2022-ps/adfs/Get-AdfsWebConfig.md index 98f839e30d..feac0b27d8 100644 --- a/docset/winserver2022-ps/adfs/Get-AdfsWebConfig.md +++ b/docset/winserver2022-ps/adfs/Get-AdfsWebConfig.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfswebconfig?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfswebconfig?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsWebConfig --- diff --git a/docset/winserver2022-ps/adfs/Get-AdfsWebTheme.md b/docset/winserver2022-ps/adfs/Get-AdfsWebTheme.md index 3c96085dab..3df82e55a8 100644 --- a/docset/winserver2022-ps/adfs/Get-AdfsWebTheme.md +++ b/docset/winserver2022-ps/adfs/Get-AdfsWebTheme.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/get-adfswebtheme?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/get-adfswebtheme?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AdfsWebTheme --- diff --git a/docset/winserver2022-ps/adfs/Grant-AdfsApplicationPermission.md b/docset/winserver2022-ps/adfs/Grant-AdfsApplicationPermission.md index e1b327d027..9ff145d44a 100644 --- a/docset/winserver2022-ps/adfs/Grant-AdfsApplicationPermission.md +++ b/docset/winserver2022-ps/adfs/Grant-AdfsApplicationPermission.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/grant-adfsapplicationpermission?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/grant-adfsapplicationpermission?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Grant-AdfsApplicationPermission --- diff --git a/docset/winserver2022-ps/adfs/Import-AdfsAuthenticationProviderConfigurationData.md b/docset/winserver2022-ps/adfs/Import-AdfsAuthenticationProviderConfigurationData.md index 1db12583c8..83326857b4 100644 --- a/docset/winserver2022-ps/adfs/Import-AdfsAuthenticationProviderConfigurationData.md +++ b/docset/winserver2022-ps/adfs/Import-AdfsAuthenticationProviderConfigurationData.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/import-adfsauthenticationproviderconfigurationdata?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/import-adfsauthenticationproviderconfigurationdata?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-AdfsAuthenticationProviderConfigurationData --- diff --git a/docset/winserver2022-ps/adfs/Import-AdfsWebContent.md b/docset/winserver2022-ps/adfs/Import-AdfsWebContent.md index c8b78c22f9..8461080916 100644 --- a/docset/winserver2022-ps/adfs/Import-AdfsWebContent.md +++ b/docset/winserver2022-ps/adfs/Import-AdfsWebContent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/import-adfswebcontent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/import-adfswebcontent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-AdfsWebContent --- diff --git a/docset/winserver2022-ps/adfs/Initialize-ADDeviceRegistration.md b/docset/winserver2022-ps/adfs/Initialize-ADDeviceRegistration.md index bb13642a2f..84b9b6e265 100644 --- a/docset/winserver2022-ps/adfs/Initialize-ADDeviceRegistration.md +++ b/docset/winserver2022-ps/adfs/Initialize-ADDeviceRegistration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Deployment.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/initialize-addeviceregistration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/initialize-addeviceregistration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Initialize-ADDeviceRegistration --- diff --git a/docset/winserver2022-ps/adfs/Install-AdfsFarm.md b/docset/winserver2022-ps/adfs/Install-AdfsFarm.md index 407cde7355..2702e9f0f2 100644 --- a/docset/winserver2022-ps/adfs/Install-AdfsFarm.md +++ b/docset/winserver2022-ps/adfs/Install-AdfsFarm.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Deployment.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/install-adfsfarm?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/install-adfsfarm?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-AdfsFarm --- diff --git a/docset/winserver2022-ps/adfs/Invoke-AdfsFarmBehaviorLevelRaise.md b/docset/winserver2022-ps/adfs/Invoke-AdfsFarmBehaviorLevelRaise.md index 52f4fc34c1..84f4b0189d 100644 --- a/docset/winserver2022-ps/adfs/Invoke-AdfsFarmBehaviorLevelRaise.md +++ b/docset/winserver2022-ps/adfs/Invoke-AdfsFarmBehaviorLevelRaise.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Deployment.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/invoke-adfsfarmbehaviorlevelraise?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/invoke-adfsfarmbehaviorlevelraise?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-AdfsFarmBehaviorLevelRaise --- diff --git a/docset/winserver2022-ps/adfs/New-AdfsAccessControlPolicy.md b/docset/winserver2022-ps/adfs/New-AdfsAccessControlPolicy.md index cef1aff872..68c8cbd5c2 100644 --- a/docset/winserver2022-ps/adfs/New-AdfsAccessControlPolicy.md +++ b/docset/winserver2022-ps/adfs/New-AdfsAccessControlPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/new-adfsaccesscontrolpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/new-adfsaccesscontrolpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-AdfsAccessControlPolicy --- diff --git a/docset/winserver2022-ps/adfs/New-AdfsApplicationGroup.md b/docset/winserver2022-ps/adfs/New-AdfsApplicationGroup.md index c6bc764a43..20747455c6 100644 --- a/docset/winserver2022-ps/adfs/New-AdfsApplicationGroup.md +++ b/docset/winserver2022-ps/adfs/New-AdfsApplicationGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/new-adfsapplicationgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/new-adfsapplicationgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-AdfsApplicationGroup --- diff --git a/docset/winserver2022-ps/adfs/New-AdfsAzureMfaTenantCertificate.md b/docset/winserver2022-ps/adfs/New-AdfsAzureMfaTenantCertificate.md index 85d4390309..ca5e889898 100644 --- a/docset/winserver2022-ps/adfs/New-AdfsAzureMfaTenantCertificate.md +++ b/docset/winserver2022-ps/adfs/New-AdfsAzureMfaTenantCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/new-adfsazuremfatenantcertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/new-adfsazuremfatenantcertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-AdfsAzureMfaTenantCertificate --- diff --git a/docset/winserver2022-ps/adfs/New-AdfsClaimRuleSet.md b/docset/winserver2022-ps/adfs/New-AdfsClaimRuleSet.md index 6db40636a9..19882d4e15 100644 --- a/docset/winserver2022-ps/adfs/New-AdfsClaimRuleSet.md +++ b/docset/winserver2022-ps/adfs/New-AdfsClaimRuleSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/new-adfsclaimruleset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/new-adfsclaimruleset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-AdfsClaimRuleSet --- diff --git a/docset/winserver2022-ps/adfs/New-AdfsContactPerson.md b/docset/winserver2022-ps/adfs/New-AdfsContactPerson.md index 4aacaa6216..085afd8119 100644 --- a/docset/winserver2022-ps/adfs/New-AdfsContactPerson.md +++ b/docset/winserver2022-ps/adfs/New-AdfsContactPerson.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/new-adfscontactperson?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/new-adfscontactperson?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-AdfsContactPerson --- diff --git a/docset/winserver2022-ps/adfs/New-AdfsLdapAttributeToClaimMapping.md b/docset/winserver2022-ps/adfs/New-AdfsLdapAttributeToClaimMapping.md index f245b6bd6c..0e72703bc1 100644 --- a/docset/winserver2022-ps/adfs/New-AdfsLdapAttributeToClaimMapping.md +++ b/docset/winserver2022-ps/adfs/New-AdfsLdapAttributeToClaimMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/new-adfsldapattributetoclaimmapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/new-adfsldapattributetoclaimmapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-AdfsLdapAttributeToClaimMapping --- diff --git a/docset/winserver2022-ps/adfs/New-AdfsLdapServerConnection.md b/docset/winserver2022-ps/adfs/New-AdfsLdapServerConnection.md index f1254a4276..70c409e79c 100644 --- a/docset/winserver2022-ps/adfs/New-AdfsLdapServerConnection.md +++ b/docset/winserver2022-ps/adfs/New-AdfsLdapServerConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/new-adfsldapserverconnection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/new-adfsldapserverconnection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-AdfsLdapServerConnection --- diff --git a/docset/winserver2022-ps/adfs/New-AdfsOrganization.md b/docset/winserver2022-ps/adfs/New-AdfsOrganization.md index 69a4eeb328..c0baddca8f 100644 --- a/docset/winserver2022-ps/adfs/New-AdfsOrganization.md +++ b/docset/winserver2022-ps/adfs/New-AdfsOrganization.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/new-adfsorganization?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/new-adfsorganization?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-AdfsOrganization --- diff --git a/docset/winserver2022-ps/adfs/New-AdfsSamlEndpoint.md b/docset/winserver2022-ps/adfs/New-AdfsSamlEndpoint.md index cc69c0b2fe..f1c86bd13a 100644 --- a/docset/winserver2022-ps/adfs/New-AdfsSamlEndpoint.md +++ b/docset/winserver2022-ps/adfs/New-AdfsSamlEndpoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/new-adfssamlendpoint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/new-adfssamlendpoint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-AdfsSamlEndpoint --- diff --git a/docset/winserver2022-ps/adfs/New-AdfsWebTheme.md b/docset/winserver2022-ps/adfs/New-AdfsWebTheme.md index b0f4b66527..fa2dac7c31 100644 --- a/docset/winserver2022-ps/adfs/New-AdfsWebTheme.md +++ b/docset/winserver2022-ps/adfs/New-AdfsWebTheme.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/new-adfswebtheme?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/new-adfswebtheme?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-AdfsWebTheme --- diff --git a/docset/winserver2022-ps/adfs/Publish-SslCertificate.md b/docset/winserver2022-ps/adfs/Publish-SslCertificate.md index 0f48d18074..b8198f85a7 100644 --- a/docset/winserver2022-ps/adfs/Publish-SslCertificate.md +++ b/docset/winserver2022-ps/adfs/Publish-SslCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Deployment.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/publish-sslcertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/publish-sslcertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Publish-SslCertificate --- diff --git a/docset/winserver2022-ps/adfs/Register-AdfsAuthenticationProvider.md b/docset/winserver2022-ps/adfs/Register-AdfsAuthenticationProvider.md index d589ac2ddc..a55407a6ad 100644 --- a/docset/winserver2022-ps/adfs/Register-AdfsAuthenticationProvider.md +++ b/docset/winserver2022-ps/adfs/Register-AdfsAuthenticationProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/register-adfsauthenticationprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/register-adfsauthenticationprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Register-AdfsAuthenticationProvider --- diff --git a/docset/winserver2022-ps/adfs/Remove-AdfsAccessControlPolicy.md b/docset/winserver2022-ps/adfs/Remove-AdfsAccessControlPolicy.md index 7c3bb33a68..0801b2b2c1 100644 --- a/docset/winserver2022-ps/adfs/Remove-AdfsAccessControlPolicy.md +++ b/docset/winserver2022-ps/adfs/Remove-AdfsAccessControlPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsaccesscontrolpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsaccesscontrolpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsAccessControlPolicy --- diff --git a/docset/winserver2022-ps/adfs/Remove-AdfsApplicationGroup.md b/docset/winserver2022-ps/adfs/Remove-AdfsApplicationGroup.md index 6055689b2b..384a948bc0 100644 --- a/docset/winserver2022-ps/adfs/Remove-AdfsApplicationGroup.md +++ b/docset/winserver2022-ps/adfs/Remove-AdfsApplicationGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsapplicationgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsapplicationgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsApplicationGroup --- diff --git a/docset/winserver2022-ps/adfs/Remove-AdfsAttributeStore.md b/docset/winserver2022-ps/adfs/Remove-AdfsAttributeStore.md index f87e1051d2..2cc546ae00 100644 --- a/docset/winserver2022-ps/adfs/Remove-AdfsAttributeStore.md +++ b/docset/winserver2022-ps/adfs/Remove-AdfsAttributeStore.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsattributestore?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsattributestore?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsAttributeStore --- diff --git a/docset/winserver2022-ps/adfs/Remove-AdfsAuthenticationProviderWebContent.md b/docset/winserver2022-ps/adfs/Remove-AdfsAuthenticationProviderWebContent.md index 37668b47c9..8c8dcdfdca 100644 --- a/docset/winserver2022-ps/adfs/Remove-AdfsAuthenticationProviderWebContent.md +++ b/docset/winserver2022-ps/adfs/Remove-AdfsAuthenticationProviderWebContent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsauthenticationproviderwebcontent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsauthenticationproviderwebcontent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsAuthenticationProviderWebContent --- diff --git a/docset/winserver2022-ps/adfs/Remove-AdfsCertificate.md b/docset/winserver2022-ps/adfs/Remove-AdfsCertificate.md index 79e01b0d36..83f65d9722 100644 --- a/docset/winserver2022-ps/adfs/Remove-AdfsCertificate.md +++ b/docset/winserver2022-ps/adfs/Remove-AdfsCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfscertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfscertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsCertificate --- diff --git a/docset/winserver2022-ps/adfs/Remove-AdfsClaimDescription.md b/docset/winserver2022-ps/adfs/Remove-AdfsClaimDescription.md index d6d3c29186..29d3b8343e 100644 --- a/docset/winserver2022-ps/adfs/Remove-AdfsClaimDescription.md +++ b/docset/winserver2022-ps/adfs/Remove-AdfsClaimDescription.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsclaimdescription?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsclaimdescription?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsClaimDescription --- diff --git a/docset/winserver2022-ps/adfs/Remove-AdfsClaimsProviderTrust.md b/docset/winserver2022-ps/adfs/Remove-AdfsClaimsProviderTrust.md index 93016a113c..10f10e9c6f 100644 --- a/docset/winserver2022-ps/adfs/Remove-AdfsClaimsProviderTrust.md +++ b/docset/winserver2022-ps/adfs/Remove-AdfsClaimsProviderTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsclaimsprovidertrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsclaimsprovidertrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsClaimsProviderTrust --- diff --git a/docset/winserver2022-ps/adfs/Remove-AdfsClaimsProviderTrustsGroup.md b/docset/winserver2022-ps/adfs/Remove-AdfsClaimsProviderTrustsGroup.md index 2edf30aa15..15642c7808 100644 --- a/docset/winserver2022-ps/adfs/Remove-AdfsClaimsProviderTrustsGroup.md +++ b/docset/winserver2022-ps/adfs/Remove-AdfsClaimsProviderTrustsGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsclaimsprovidertrustsgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsclaimsprovidertrustsgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsClaimsProviderTrustsGroup --- diff --git a/docset/winserver2022-ps/adfs/Remove-AdfsClient.md b/docset/winserver2022-ps/adfs/Remove-AdfsClient.md index 6e990d97bd..5ba3d40493 100644 --- a/docset/winserver2022-ps/adfs/Remove-AdfsClient.md +++ b/docset/winserver2022-ps/adfs/Remove-AdfsClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsClient --- diff --git a/docset/winserver2022-ps/adfs/Remove-AdfsDeviceRegistrationUpnSuffix.md b/docset/winserver2022-ps/adfs/Remove-AdfsDeviceRegistrationUpnSuffix.md index 6d497b53af..f686ce60a6 100644 --- a/docset/winserver2022-ps/adfs/Remove-AdfsDeviceRegistrationUpnSuffix.md +++ b/docset/winserver2022-ps/adfs/Remove-AdfsDeviceRegistrationUpnSuffix.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsdeviceregistrationupnsuffix?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsdeviceregistrationupnsuffix?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsDeviceRegistrationUpnSuffix --- diff --git a/docset/winserver2022-ps/adfs/Remove-AdfsFarmNode.md b/docset/winserver2022-ps/adfs/Remove-AdfsFarmNode.md index 686f42707a..de4f79006f 100644 --- a/docset/winserver2022-ps/adfs/Remove-AdfsFarmNode.md +++ b/docset/winserver2022-ps/adfs/Remove-AdfsFarmNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Deployment.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsfarmnode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsfarmnode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsFarmNode --- diff --git a/docset/winserver2022-ps/adfs/Remove-AdfsGlobalWebContent.md b/docset/winserver2022-ps/adfs/Remove-AdfsGlobalWebContent.md index ad7857bae3..b99d7b51d1 100644 --- a/docset/winserver2022-ps/adfs/Remove-AdfsGlobalWebContent.md +++ b/docset/winserver2022-ps/adfs/Remove-AdfsGlobalWebContent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsglobalwebcontent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsglobalwebcontent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsGlobalWebContent --- diff --git a/docset/winserver2022-ps/adfs/Remove-AdfsLocalClaimsProviderTrust.md b/docset/winserver2022-ps/adfs/Remove-AdfsLocalClaimsProviderTrust.md index 00c003041b..70be22ddf1 100644 --- a/docset/winserver2022-ps/adfs/Remove-AdfsLocalClaimsProviderTrust.md +++ b/docset/winserver2022-ps/adfs/Remove-AdfsLocalClaimsProviderTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfslocalclaimsprovidertrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfslocalclaimsprovidertrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsLocalClaimsProviderTrust --- diff --git a/docset/winserver2022-ps/adfs/Remove-AdfsNativeClientApplication.md b/docset/winserver2022-ps/adfs/Remove-AdfsNativeClientApplication.md index 57aa99cca1..900078457b 100644 --- a/docset/winserver2022-ps/adfs/Remove-AdfsNativeClientApplication.md +++ b/docset/winserver2022-ps/adfs/Remove-AdfsNativeClientApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsnativeclientapplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsnativeclientapplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsNativeClientApplication --- diff --git a/docset/winserver2022-ps/adfs/Remove-AdfsNonClaimsAwareRelyingPartyTrust.md b/docset/winserver2022-ps/adfs/Remove-AdfsNonClaimsAwareRelyingPartyTrust.md index 214108c7f2..6acc1e9070 100644 --- a/docset/winserver2022-ps/adfs/Remove-AdfsNonClaimsAwareRelyingPartyTrust.md +++ b/docset/winserver2022-ps/adfs/Remove-AdfsNonClaimsAwareRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsnonclaimsawarerelyingpartytrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsnonclaimsawarerelyingpartytrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsNonClaimsAwareRelyingPartyTrust --- diff --git a/docset/winserver2022-ps/adfs/Remove-AdfsRelyingPartyTrust.md b/docset/winserver2022-ps/adfs/Remove-AdfsRelyingPartyTrust.md index 1e01505f17..9d560610d9 100644 --- a/docset/winserver2022-ps/adfs/Remove-AdfsRelyingPartyTrust.md +++ b/docset/winserver2022-ps/adfs/Remove-AdfsRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsrelyingpartytrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsrelyingpartytrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsRelyingPartyTrust --- diff --git a/docset/winserver2022-ps/adfs/Remove-AdfsRelyingPartyTrustsGroup.md b/docset/winserver2022-ps/adfs/Remove-AdfsRelyingPartyTrustsGroup.md index 919de0b6f7..532f61db0f 100644 --- a/docset/winserver2022-ps/adfs/Remove-AdfsRelyingPartyTrustsGroup.md +++ b/docset/winserver2022-ps/adfs/Remove-AdfsRelyingPartyTrustsGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsrelyingpartytrustsgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsrelyingpartytrustsgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsRelyingPartyTrustsGroup --- diff --git a/docset/winserver2022-ps/adfs/Remove-AdfsRelyingPartyWebContent.md b/docset/winserver2022-ps/adfs/Remove-AdfsRelyingPartyWebContent.md index 584862b7fb..3307bd0acd 100644 --- a/docset/winserver2022-ps/adfs/Remove-AdfsRelyingPartyWebContent.md +++ b/docset/winserver2022-ps/adfs/Remove-AdfsRelyingPartyWebContent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsrelyingpartywebcontent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsrelyingpartywebcontent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsRelyingPartyWebContent --- diff --git a/docset/winserver2022-ps/adfs/Remove-AdfsRelyingPartyWebTheme.md b/docset/winserver2022-ps/adfs/Remove-AdfsRelyingPartyWebTheme.md index f7d553c804..f04c25c1c1 100644 --- a/docset/winserver2022-ps/adfs/Remove-AdfsRelyingPartyWebTheme.md +++ b/docset/winserver2022-ps/adfs/Remove-AdfsRelyingPartyWebTheme.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsrelyingpartywebtheme?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsrelyingpartywebtheme?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsRelyingPartyWebTheme --- diff --git a/docset/winserver2022-ps/adfs/Remove-AdfsScopeDescription.md b/docset/winserver2022-ps/adfs/Remove-AdfsScopeDescription.md index 173f5fecad..e59b2a719f 100644 --- a/docset/winserver2022-ps/adfs/Remove-AdfsScopeDescription.md +++ b/docset/winserver2022-ps/adfs/Remove-AdfsScopeDescription.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsscopedescription?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsscopedescription?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsScopeDescription --- diff --git a/docset/winserver2022-ps/adfs/Remove-AdfsServerApplication.md b/docset/winserver2022-ps/adfs/Remove-AdfsServerApplication.md index b724d07099..d408e00443 100644 --- a/docset/winserver2022-ps/adfs/Remove-AdfsServerApplication.md +++ b/docset/winserver2022-ps/adfs/Remove-AdfsServerApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfsserverapplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfsserverapplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsServerApplication --- diff --git a/docset/winserver2022-ps/adfs/Remove-AdfsTrustedFederationPartner.md b/docset/winserver2022-ps/adfs/Remove-AdfsTrustedFederationPartner.md index 6ff361ddbe..a19ed9da85 100644 --- a/docset/winserver2022-ps/adfs/Remove-AdfsTrustedFederationPartner.md +++ b/docset/winserver2022-ps/adfs/Remove-AdfsTrustedFederationPartner.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfstrustedfederationpartner?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfstrustedfederationpartner?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsTrustedFederationPartner --- diff --git a/docset/winserver2022-ps/adfs/Remove-AdfsWebApiApplication.md b/docset/winserver2022-ps/adfs/Remove-AdfsWebApiApplication.md index b97f6a77d5..cb16adb99c 100644 --- a/docset/winserver2022-ps/adfs/Remove-AdfsWebApiApplication.md +++ b/docset/winserver2022-ps/adfs/Remove-AdfsWebApiApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfswebapiapplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfswebapiapplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsWebApiApplication --- diff --git a/docset/winserver2022-ps/adfs/Remove-AdfsWebApplicationProxyRelyingPartyTrust.md b/docset/winserver2022-ps/adfs/Remove-AdfsWebApplicationProxyRelyingPartyTrust.md index c166089ce2..8c5bb3fa6f 100644 --- a/docset/winserver2022-ps/adfs/Remove-AdfsWebApplicationProxyRelyingPartyTrust.md +++ b/docset/winserver2022-ps/adfs/Remove-AdfsWebApplicationProxyRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfswebapplicationproxyrelyingpartytrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfswebapplicationproxyrelyingpartytrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsWebApplicationProxyRelyingPartyTrust --- diff --git a/docset/winserver2022-ps/adfs/Remove-AdfsWebTheme.md b/docset/winserver2022-ps/adfs/Remove-AdfsWebTheme.md index 00e6ca5e7e..3ef7b1b2b2 100644 --- a/docset/winserver2022-ps/adfs/Remove-AdfsWebTheme.md +++ b/docset/winserver2022-ps/adfs/Remove-AdfsWebTheme.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/remove-adfswebtheme?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/remove-adfswebtheme?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AdfsWebTheme --- diff --git a/docset/winserver2022-ps/adfs/Restore-AdfsFarmBehaviorLevel.md b/docset/winserver2022-ps/adfs/Restore-AdfsFarmBehaviorLevel.md index 4befc75b3e..d48dd254d3 100644 --- a/docset/winserver2022-ps/adfs/Restore-AdfsFarmBehaviorLevel.md +++ b/docset/winserver2022-ps/adfs/Restore-AdfsFarmBehaviorLevel.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Deployment.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/restore-adfsfarmbehaviorlevel?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/restore-adfsfarmbehaviorlevel?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-AdfsFarmBehaviorLevel --- diff --git a/docset/winserver2022-ps/adfs/Revoke-AdfsApplicationPermission.md b/docset/winserver2022-ps/adfs/Revoke-AdfsApplicationPermission.md index 13a668879b..7ac6adecb6 100644 --- a/docset/winserver2022-ps/adfs/Revoke-AdfsApplicationPermission.md +++ b/docset/winserver2022-ps/adfs/Revoke-AdfsApplicationPermission.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/revoke-adfsapplicationpermission?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/revoke-adfsapplicationpermission?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Revoke-AdfsApplicationPermission --- diff --git a/docset/winserver2022-ps/adfs/Revoke-AdfsProxyTrust.md b/docset/winserver2022-ps/adfs/Revoke-AdfsProxyTrust.md index 2596113afc..bcec3ffa5b 100644 --- a/docset/winserver2022-ps/adfs/Revoke-AdfsProxyTrust.md +++ b/docset/winserver2022-ps/adfs/Revoke-AdfsProxyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/revoke-adfsproxytrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/revoke-adfsproxytrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Revoke-AdfsProxyTrust --- diff --git a/docset/winserver2022-ps/adfs/Set-AdfsAccessControlPolicy.md b/docset/winserver2022-ps/adfs/Set-AdfsAccessControlPolicy.md index 03d1e57107..c3f748b222 100644 --- a/docset/winserver2022-ps/adfs/Set-AdfsAccessControlPolicy.md +++ b/docset/winserver2022-ps/adfs/Set-AdfsAccessControlPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsaccesscontrolpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsaccesscontrolpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsAccessControlPolicy --- diff --git a/docset/winserver2022-ps/adfs/Set-AdfsAdditionalAuthenticationRule.md b/docset/winserver2022-ps/adfs/Set-AdfsAdditionalAuthenticationRule.md index 6f7f13427b..eca7ba5d57 100644 --- a/docset/winserver2022-ps/adfs/Set-AdfsAdditionalAuthenticationRule.md +++ b/docset/winserver2022-ps/adfs/Set-AdfsAdditionalAuthenticationRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsadditionalauthenticationrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsadditionalauthenticationrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsAdditionalAuthenticationRule --- diff --git a/docset/winserver2022-ps/adfs/Set-AdfsAlternateTlsClientBinding.md b/docset/winserver2022-ps/adfs/Set-AdfsAlternateTlsClientBinding.md index 3b48075daa..64f35ef6fa 100644 --- a/docset/winserver2022-ps/adfs/Set-AdfsAlternateTlsClientBinding.md +++ b/docset/winserver2022-ps/adfs/Set-AdfsAlternateTlsClientBinding.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsalternatetlsclientbinding?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsalternatetlsclientbinding?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsAlternateTlsClientBinding --- diff --git a/docset/winserver2022-ps/adfs/Set-AdfsApplicationGroup.md b/docset/winserver2022-ps/adfs/Set-AdfsApplicationGroup.md index 12cf1a2f28..2e6cc4bf60 100644 --- a/docset/winserver2022-ps/adfs/Set-AdfsApplicationGroup.md +++ b/docset/winserver2022-ps/adfs/Set-AdfsApplicationGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsapplicationgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsapplicationgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsApplicationGroup --- diff --git a/docset/winserver2022-ps/adfs/Set-AdfsApplicationPermission.md b/docset/winserver2022-ps/adfs/Set-AdfsApplicationPermission.md index 4611610e4e..68c201dc3a 100644 --- a/docset/winserver2022-ps/adfs/Set-AdfsApplicationPermission.md +++ b/docset/winserver2022-ps/adfs/Set-AdfsApplicationPermission.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsapplicationpermission?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsapplicationpermission?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsApplicationPermission --- diff --git a/docset/winserver2022-ps/adfs/Set-AdfsAttributeStore.md b/docset/winserver2022-ps/adfs/Set-AdfsAttributeStore.md index 200a6ddf91..27e0841ee4 100644 --- a/docset/winserver2022-ps/adfs/Set-AdfsAttributeStore.md +++ b/docset/winserver2022-ps/adfs/Set-AdfsAttributeStore.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsattributestore?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsattributestore?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsAttributeStore --- diff --git a/docset/winserver2022-ps/adfs/Set-AdfsAuthenticationProviderWebContent.md b/docset/winserver2022-ps/adfs/Set-AdfsAuthenticationProviderWebContent.md index e0b4383b71..2951110932 100644 --- a/docset/winserver2022-ps/adfs/Set-AdfsAuthenticationProviderWebContent.md +++ b/docset/winserver2022-ps/adfs/Set-AdfsAuthenticationProviderWebContent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsauthenticationproviderwebcontent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsauthenticationproviderwebcontent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsAuthenticationProviderWebContent --- diff --git a/docset/winserver2022-ps/adfs/Set-AdfsAzureMfaTenant.md b/docset/winserver2022-ps/adfs/Set-AdfsAzureMfaTenant.md index fd2f46da88..b1dc8e0757 100644 --- a/docset/winserver2022-ps/adfs/Set-AdfsAzureMfaTenant.md +++ b/docset/winserver2022-ps/adfs/Set-AdfsAzureMfaTenant.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsazuremfatenant?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsazuremfatenant?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsAzureMfaTenant --- diff --git a/docset/winserver2022-ps/adfs/Set-AdfsCertSharingContainer.md b/docset/winserver2022-ps/adfs/Set-AdfsCertSharingContainer.md index 4c31cc1f9c..4df28ddb1c 100644 --- a/docset/winserver2022-ps/adfs/Set-AdfsCertSharingContainer.md +++ b/docset/winserver2022-ps/adfs/Set-AdfsCertSharingContainer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfscertsharingcontainer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfscertsharingcontainer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsCertSharingContainer --- diff --git a/docset/winserver2022-ps/adfs/Set-AdfsCertificate.md b/docset/winserver2022-ps/adfs/Set-AdfsCertificate.md index 7247e41bfc..7c24faf3f2 100644 --- a/docset/winserver2022-ps/adfs/Set-AdfsCertificate.md +++ b/docset/winserver2022-ps/adfs/Set-AdfsCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfscertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfscertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsCertificate --- diff --git a/docset/winserver2022-ps/adfs/Set-AdfsCertificateAuthority.md b/docset/winserver2022-ps/adfs/Set-AdfsCertificateAuthority.md index 1dcbfc0331..06a4751ff2 100644 --- a/docset/winserver2022-ps/adfs/Set-AdfsCertificateAuthority.md +++ b/docset/winserver2022-ps/adfs/Set-AdfsCertificateAuthority.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfscertificateauthority?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfscertificateauthority?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsCertificateAuthority --- diff --git a/docset/winserver2022-ps/adfs/Set-AdfsClaimDescription.md b/docset/winserver2022-ps/adfs/Set-AdfsClaimDescription.md index b340be5a78..1366dd01dd 100644 --- a/docset/winserver2022-ps/adfs/Set-AdfsClaimDescription.md +++ b/docset/winserver2022-ps/adfs/Set-AdfsClaimDescription.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsclaimdescription?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsclaimdescription?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsClaimDescription --- diff --git a/docset/winserver2022-ps/adfs/Set-AdfsClaimsProviderTrust.md b/docset/winserver2022-ps/adfs/Set-AdfsClaimsProviderTrust.md index 289b7423ca..a0f13a6ac0 100644 --- a/docset/winserver2022-ps/adfs/Set-AdfsClaimsProviderTrust.md +++ b/docset/winserver2022-ps/adfs/Set-AdfsClaimsProviderTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsclaimsprovidertrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsclaimsprovidertrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsClaimsProviderTrust --- diff --git a/docset/winserver2022-ps/adfs/Set-AdfsClient.md b/docset/winserver2022-ps/adfs/Set-AdfsClient.md index 2b4db931f1..266f3fbea1 100644 --- a/docset/winserver2022-ps/adfs/Set-AdfsClient.md +++ b/docset/winserver2022-ps/adfs/Set-AdfsClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 09/19/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsClient --- diff --git a/docset/winserver2022-ps/adfs/Set-AdfsDeviceRegistration.md b/docset/winserver2022-ps/adfs/Set-AdfsDeviceRegistration.md index fec588d6f4..b7baf91c54 100644 --- a/docset/winserver2022-ps/adfs/Set-AdfsDeviceRegistration.md +++ b/docset/winserver2022-ps/adfs/Set-AdfsDeviceRegistration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsdeviceregistration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsdeviceregistration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsDeviceRegistration --- diff --git a/docset/winserver2022-ps/adfs/Set-AdfsDeviceRegistrationUpnSuffix.md b/docset/winserver2022-ps/adfs/Set-AdfsDeviceRegistrationUpnSuffix.md index a2b2d2600e..b8186ba9a3 100644 --- a/docset/winserver2022-ps/adfs/Set-AdfsDeviceRegistrationUpnSuffix.md +++ b/docset/winserver2022-ps/adfs/Set-AdfsDeviceRegistrationUpnSuffix.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsdeviceregistrationupnsuffix?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsdeviceregistrationupnsuffix?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsDeviceRegistrationUpnSuffix --- diff --git a/docset/winserver2022-ps/adfs/Set-AdfsEndpoint.md b/docset/winserver2022-ps/adfs/Set-AdfsEndpoint.md index 7fa298f378..beed7b2b85 100644 --- a/docset/winserver2022-ps/adfs/Set-AdfsEndpoint.md +++ b/docset/winserver2022-ps/adfs/Set-AdfsEndpoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsendpoint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsendpoint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsEndpoint --- diff --git a/docset/winserver2022-ps/adfs/Set-AdfsFarmInformation.md b/docset/winserver2022-ps/adfs/Set-AdfsFarmInformation.md index 1ec2b7219d..836a805d0c 100644 --- a/docset/winserver2022-ps/adfs/Set-AdfsFarmInformation.md +++ b/docset/winserver2022-ps/adfs/Set-AdfsFarmInformation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsfarminformation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsfarminformation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsFarmInformation --- diff --git a/docset/winserver2022-ps/adfs/Set-AdfsGlobalAuthenticationPolicy.md b/docset/winserver2022-ps/adfs/Set-AdfsGlobalAuthenticationPolicy.md index 7e47236771..b8fba649dd 100644 --- a/docset/winserver2022-ps/adfs/Set-AdfsGlobalAuthenticationPolicy.md +++ b/docset/winserver2022-ps/adfs/Set-AdfsGlobalAuthenticationPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsglobalauthenticationpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsglobalauthenticationpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsGlobalAuthenticationPolicy --- diff --git a/docset/winserver2022-ps/adfs/Set-AdfsGlobalWebContent.md b/docset/winserver2022-ps/adfs/Set-AdfsGlobalWebContent.md index ba36d36fb7..9b71137f29 100644 --- a/docset/winserver2022-ps/adfs/Set-AdfsGlobalWebContent.md +++ b/docset/winserver2022-ps/adfs/Set-AdfsGlobalWebContent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsglobalwebcontent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsglobalwebcontent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsGlobalWebContent --- diff --git a/docset/winserver2022-ps/adfs/Set-AdfsLocalClaimsProviderTrust.md b/docset/winserver2022-ps/adfs/Set-AdfsLocalClaimsProviderTrust.md index f19a1d4a0e..c3318f4a88 100644 --- a/docset/winserver2022-ps/adfs/Set-AdfsLocalClaimsProviderTrust.md +++ b/docset/winserver2022-ps/adfs/Set-AdfsLocalClaimsProviderTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfslocalclaimsprovidertrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfslocalclaimsprovidertrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsLocalClaimsProviderTrust --- diff --git a/docset/winserver2022-ps/adfs/Set-AdfsNativeClientApplication.md b/docset/winserver2022-ps/adfs/Set-AdfsNativeClientApplication.md index a3fdebcf9c..706953d758 100644 --- a/docset/winserver2022-ps/adfs/Set-AdfsNativeClientApplication.md +++ b/docset/winserver2022-ps/adfs/Set-AdfsNativeClientApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 09/19/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsnativeclientapplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsnativeclientapplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsNativeClientApplication --- diff --git a/docset/winserver2022-ps/adfs/Set-AdfsNonClaimsAwareRelyingPartyTrust.md b/docset/winserver2022-ps/adfs/Set-AdfsNonClaimsAwareRelyingPartyTrust.md index 84a438e7dd..38baaffe84 100644 --- a/docset/winserver2022-ps/adfs/Set-AdfsNonClaimsAwareRelyingPartyTrust.md +++ b/docset/winserver2022-ps/adfs/Set-AdfsNonClaimsAwareRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsnonclaimsawarerelyingpartytrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsnonclaimsawarerelyingpartytrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsNonClaimsAwareRelyingPartyTrust --- diff --git a/docset/winserver2022-ps/adfs/Set-AdfsProperties.md b/docset/winserver2022-ps/adfs/Set-AdfsProperties.md index cd05905908..e143c888ae 100644 --- a/docset/winserver2022-ps/adfs/Set-AdfsProperties.md +++ b/docset/winserver2022-ps/adfs/Set-AdfsProperties.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 10/02/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsproperties?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsproperties?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsProperties --- diff --git a/docset/winserver2022-ps/adfs/Set-AdfsRegistrationHosts.md b/docset/winserver2022-ps/adfs/Set-AdfsRegistrationHosts.md index 0c37781b64..e4fbdafc16 100644 --- a/docset/winserver2022-ps/adfs/Set-AdfsRegistrationHosts.md +++ b/docset/winserver2022-ps/adfs/Set-AdfsRegistrationHosts.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsregistrationhosts?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsregistrationhosts?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsRegistrationHosts --- diff --git a/docset/winserver2022-ps/adfs/Set-AdfsRelyingPartyTrust.md b/docset/winserver2022-ps/adfs/Set-AdfsRelyingPartyTrust.md index ed015a0d86..a6bdcb70a3 100644 --- a/docset/winserver2022-ps/adfs/Set-AdfsRelyingPartyTrust.md +++ b/docset/winserver2022-ps/adfs/Set-AdfsRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsrelyingpartytrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsrelyingpartytrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsRelyingPartyTrust --- diff --git a/docset/winserver2022-ps/adfs/Set-AdfsRelyingPartyWebContent.md b/docset/winserver2022-ps/adfs/Set-AdfsRelyingPartyWebContent.md index e6e4ce261f..3847021a14 100644 --- a/docset/winserver2022-ps/adfs/Set-AdfsRelyingPartyWebContent.md +++ b/docset/winserver2022-ps/adfs/Set-AdfsRelyingPartyWebContent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsrelyingpartywebcontent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsrelyingpartywebcontent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsRelyingPartyWebContent --- diff --git a/docset/winserver2022-ps/adfs/Set-AdfsRelyingPartyWebTheme.md b/docset/winserver2022-ps/adfs/Set-AdfsRelyingPartyWebTheme.md index 87e1ab372f..1dedfc3422 100644 --- a/docset/winserver2022-ps/adfs/Set-AdfsRelyingPartyWebTheme.md +++ b/docset/winserver2022-ps/adfs/Set-AdfsRelyingPartyWebTheme.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsrelyingpartywebtheme?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsrelyingpartywebtheme?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsRelyingPartyWebTheme --- diff --git a/docset/winserver2022-ps/adfs/Set-AdfsScopeDescription.md b/docset/winserver2022-ps/adfs/Set-AdfsScopeDescription.md index 170596dea3..b16ee2d89c 100644 --- a/docset/winserver2022-ps/adfs/Set-AdfsScopeDescription.md +++ b/docset/winserver2022-ps/adfs/Set-AdfsScopeDescription.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsscopedescription?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsscopedescription?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsScopeDescription --- diff --git a/docset/winserver2022-ps/adfs/Set-AdfsServerApplication.md b/docset/winserver2022-ps/adfs/Set-AdfsServerApplication.md index 589bcf29c4..e144531158 100644 --- a/docset/winserver2022-ps/adfs/Set-AdfsServerApplication.md +++ b/docset/winserver2022-ps/adfs/Set-AdfsServerApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 09/19/2017 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfsserverapplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsserverapplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsServerApplication --- diff --git a/docset/winserver2022-ps/adfs/Set-AdfsSslCertificate.md b/docset/winserver2022-ps/adfs/Set-AdfsSslCertificate.md index f7e6ff14bb..77df42b51a 100644 --- a/docset/winserver2022-ps/adfs/Set-AdfsSslCertificate.md +++ b/docset/winserver2022-ps/adfs/Set-AdfsSslCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfssslcertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfssslcertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsSslCertificate --- diff --git a/docset/winserver2022-ps/adfs/Set-AdfsSyncProperties.md b/docset/winserver2022-ps/adfs/Set-AdfsSyncProperties.md index ed423e84bd..0c2339c14f 100644 --- a/docset/winserver2022-ps/adfs/Set-AdfsSyncProperties.md +++ b/docset/winserver2022-ps/adfs/Set-AdfsSyncProperties.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfssyncproperties?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfssyncproperties?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsSyncProperties --- diff --git a/docset/winserver2022-ps/adfs/Set-AdfsTrustedFederationPartner.md b/docset/winserver2022-ps/adfs/Set-AdfsTrustedFederationPartner.md index 3d81eaf7b0..72d56d6713 100644 --- a/docset/winserver2022-ps/adfs/Set-AdfsTrustedFederationPartner.md +++ b/docset/winserver2022-ps/adfs/Set-AdfsTrustedFederationPartner.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfstrustedfederationpartner?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfstrustedfederationpartner?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsTrustedFederationPartner --- diff --git a/docset/winserver2022-ps/adfs/Set-AdfsWebApiApplication.md b/docset/winserver2022-ps/adfs/Set-AdfsWebApiApplication.md index 4927ccaad1..7be0d876d3 100644 --- a/docset/winserver2022-ps/adfs/Set-AdfsWebApiApplication.md +++ b/docset/winserver2022-ps/adfs/Set-AdfsWebApiApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfswebapiapplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfswebapiapplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsWebApiApplication --- diff --git a/docset/winserver2022-ps/adfs/Set-AdfsWebApplicationProxyRelyingPartyTrust.md b/docset/winserver2022-ps/adfs/Set-AdfsWebApplicationProxyRelyingPartyTrust.md index 38a680c15b..2abc66eeb4 100644 --- a/docset/winserver2022-ps/adfs/Set-AdfsWebApplicationProxyRelyingPartyTrust.md +++ b/docset/winserver2022-ps/adfs/Set-AdfsWebApplicationProxyRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfswebapplicationproxyrelyingpartytrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfswebapplicationproxyrelyingpartytrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsWebApplicationProxyRelyingPartyTrust --- diff --git a/docset/winserver2022-ps/adfs/Set-AdfsWebConfig.md b/docset/winserver2022-ps/adfs/Set-AdfsWebConfig.md index a0a1aea04a..c60c366a2d 100644 --- a/docset/winserver2022-ps/adfs/Set-AdfsWebConfig.md +++ b/docset/winserver2022-ps/adfs/Set-AdfsWebConfig.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfswebconfig?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfswebconfig?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsWebConfig --- diff --git a/docset/winserver2022-ps/adfs/Set-AdfsWebTheme.md b/docset/winserver2022-ps/adfs/Set-AdfsWebTheme.md index ffa5d99f88..239ceec82c 100644 --- a/docset/winserver2022-ps/adfs/Set-AdfsWebTheme.md +++ b/docset/winserver2022-ps/adfs/Set-AdfsWebTheme.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/set-adfswebtheme?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/set-adfswebtheme?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsWebTheme --- diff --git a/docset/winserver2022-ps/adfs/Test-AdfsFarmBehaviorLevelRaise.md b/docset/winserver2022-ps/adfs/Test-AdfsFarmBehaviorLevelRaise.md index 5b55a9cadb..cbd60c9b30 100644 --- a/docset/winserver2022-ps/adfs/Test-AdfsFarmBehaviorLevelRaise.md +++ b/docset/winserver2022-ps/adfs/Test-AdfsFarmBehaviorLevelRaise.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Deployment.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/test-adfsfarmbehaviorlevelraise?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/test-adfsfarmbehaviorlevelraise?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-AdfsFarmBehaviorLevelRaise --- diff --git a/docset/winserver2022-ps/adfs/Test-AdfsFarmBehaviorLevelRestore.md b/docset/winserver2022-ps/adfs/Test-AdfsFarmBehaviorLevelRestore.md index f731b869c6..22830988c1 100644 --- a/docset/winserver2022-ps/adfs/Test-AdfsFarmBehaviorLevelRestore.md +++ b/docset/winserver2022-ps/adfs/Test-AdfsFarmBehaviorLevelRestore.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Deployment.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/test-adfsfarmbehaviorlevelrestore?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/test-adfsfarmbehaviorlevelrestore?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-AdfsFarmBehaviorLevelRestore --- diff --git a/docset/winserver2022-ps/adfs/Test-AdfsFarmInstallation.md b/docset/winserver2022-ps/adfs/Test-AdfsFarmInstallation.md index 991063ccac..a506b58a81 100644 --- a/docset/winserver2022-ps/adfs/Test-AdfsFarmInstallation.md +++ b/docset/winserver2022-ps/adfs/Test-AdfsFarmInstallation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Deployment.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/test-adfsfarminstallation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/test-adfsfarminstallation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-AdfsFarmInstallation --- diff --git a/docset/winserver2022-ps/adfs/Test-AdfsFarmJoin.md b/docset/winserver2022-ps/adfs/Test-AdfsFarmJoin.md index f6be12f3d7..2fc5bc9e77 100644 --- a/docset/winserver2022-ps/adfs/Test-AdfsFarmJoin.md +++ b/docset/winserver2022-ps/adfs/Test-AdfsFarmJoin.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Deployment.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/test-adfsfarmjoin?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/test-adfsfarmjoin?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-AdfsFarmJoin --- diff --git a/docset/winserver2022-ps/adfs/Unregister-AdfsAuthenticationProvider.md b/docset/winserver2022-ps/adfs/Unregister-AdfsAuthenticationProvider.md index 2b182e6f35..0afe407627 100644 --- a/docset/winserver2022-ps/adfs/Unregister-AdfsAuthenticationProvider.md +++ b/docset/winserver2022-ps/adfs/Unregister-AdfsAuthenticationProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/unregister-adfsauthenticationprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/unregister-adfsauthenticationprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unregister-AdfsAuthenticationProvider --- diff --git a/docset/winserver2022-ps/adfs/Update-AdfsCertificate.md b/docset/winserver2022-ps/adfs/Update-AdfsCertificate.md index 0b80357ad8..f50f381471 100644 --- a/docset/winserver2022-ps/adfs/Update-AdfsCertificate.md +++ b/docset/winserver2022-ps/adfs/Update-AdfsCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/update-adfscertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/update-adfscertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-AdfsCertificate --- diff --git a/docset/winserver2022-ps/adfs/Update-AdfsClaimsProviderTrust.md b/docset/winserver2022-ps/adfs/Update-AdfsClaimsProviderTrust.md index 7b21fd0ddc..8d64484014 100644 --- a/docset/winserver2022-ps/adfs/Update-AdfsClaimsProviderTrust.md +++ b/docset/winserver2022-ps/adfs/Update-AdfsClaimsProviderTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/update-adfsclaimsprovidertrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/update-adfsclaimsprovidertrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-AdfsClaimsProviderTrust --- diff --git a/docset/winserver2022-ps/adfs/Update-AdfsRelyingPartyTrust.md b/docset/winserver2022-ps/adfs/Update-AdfsRelyingPartyTrust.md index 88fe113362..bb3668f12b 100644 --- a/docset/winserver2022-ps/adfs/Update-AdfsRelyingPartyTrust.md +++ b/docset/winserver2022-ps/adfs/Update-AdfsRelyingPartyTrust.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adfs/update-adfsrelyingpartytrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adfs/update-adfsrelyingpartytrust?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-AdfsRelyingPartyTrust --- diff --git a/docset/winserver2022-ps/adrms/Install-ADRMS.md b/docset/winserver2022-ps/adrms/Install-ADRMS.md index 0f9a5a1729..94623a8146 100644 --- a/docset/winserver2022-ps/adrms/Install-ADRMS.md +++ b/docset/winserver2022-ps/adrms/Install-ADRMS.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Configuration.dll-Help.xml Module Name: ADRMS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrms/install-adrms?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrms/install-adrms?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-ADRMS --- diff --git a/docset/winserver2022-ps/adrms/Uninstall-ADRMS.md b/docset/winserver2022-ps/adrms/Uninstall-ADRMS.md index 07d44ba7be..084339d1e3 100644 --- a/docset/winserver2022-ps/adrms/Uninstall-ADRMS.md +++ b/docset/winserver2022-ps/adrms/Uninstall-ADRMS.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Configuration.dll-Help.xml Module Name: ADRMS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrms/uninstall-adrms?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrms/uninstall-adrms?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-ADRMS --- diff --git a/docset/winserver2022-ps/adrms/Update-ADRMS.md b/docset/winserver2022-ps/adrms/Update-ADRMS.md index f800f3bc2c..159c784aa0 100644 --- a/docset/winserver2022-ps/adrms/Update-ADRMS.md +++ b/docset/winserver2022-ps/adrms/Update-ADRMS.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Configuration.dll-Help.xml Module Name: ADRMS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrms/update-adrms?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrms/update-adrms?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-ADRMS --- diff --git a/docset/winserver2022-ps/adrmsadmin/Export-RmsReportDefinitionLanguage.md b/docset/winserver2022-ps/adrmsadmin/Export-RmsReportDefinitionLanguage.md index ee31638993..20d12cf973 100644 --- a/docset/winserver2022-ps/adrmsadmin/Export-RmsReportDefinitionLanguage.md +++ b/docset/winserver2022-ps/adrmsadmin/Export-RmsReportDefinitionLanguage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/export-rmsreportdefinitionlanguage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/export-rmsreportdefinitionlanguage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-RmsReportDefinitionLanguage --- diff --git a/docset/winserver2022-ps/adrmsadmin/Export-RmsTPD.md b/docset/winserver2022-ps/adrmsadmin/Export-RmsTPD.md index 90037c4080..ee96710cec 100644 --- a/docset/winserver2022-ps/adrmsadmin/Export-RmsTPD.md +++ b/docset/winserver2022-ps/adrmsadmin/Export-RmsTPD.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/export-rmstpd?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/export-rmstpd?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-RmsTPD --- diff --git a/docset/winserver2022-ps/adrmsadmin/Export-RmsTUD.md b/docset/winserver2022-ps/adrmsadmin/Export-RmsTUD.md index 83b3be08ff..859424cee2 100644 --- a/docset/winserver2022-ps/adrmsadmin/Export-RmsTUD.md +++ b/docset/winserver2022-ps/adrmsadmin/Export-RmsTUD.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/export-rmstud?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/export-rmstud?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-RmsTUD --- diff --git a/docset/winserver2022-ps/adrmsadmin/Get-RmsCertChain.md b/docset/winserver2022-ps/adrmsadmin/Get-RmsCertChain.md index 5c24b89ff0..329900cc75 100644 --- a/docset/winserver2022-ps/adrmsadmin/Get-RmsCertChain.md +++ b/docset/winserver2022-ps/adrmsadmin/Get-RmsCertChain.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/get-rmscertchain?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/get-rmscertchain?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RmsCertChain --- diff --git a/docset/winserver2022-ps/adrmsadmin/Get-RmsCertInfo.md b/docset/winserver2022-ps/adrmsadmin/Get-RmsCertInfo.md index b3ef5b2edc..e2212c3abf 100644 --- a/docset/winserver2022-ps/adrmsadmin/Get-RmsCertInfo.md +++ b/docset/winserver2022-ps/adrmsadmin/Get-RmsCertInfo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/get-rmscertinfo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/get-rmscertinfo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RmsCertInfo --- diff --git a/docset/winserver2022-ps/adrmsadmin/Get-RmsChildCert.md b/docset/winserver2022-ps/adrmsadmin/Get-RmsChildCert.md index 7c6057f2d2..b44aebbf44 100644 --- a/docset/winserver2022-ps/adrmsadmin/Get-RmsChildCert.md +++ b/docset/winserver2022-ps/adrmsadmin/Get-RmsChildCert.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/get-rmschildcert?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/get-rmschildcert?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RmsChildCert --- diff --git a/docset/winserver2022-ps/adrmsadmin/Get-RmsEncryptedIL.md b/docset/winserver2022-ps/adrmsadmin/Get-RmsEncryptedIL.md index 281c2ba032..b64dffc496 100644 --- a/docset/winserver2022-ps/adrmsadmin/Get-RmsEncryptedIL.md +++ b/docset/winserver2022-ps/adrmsadmin/Get-RmsEncryptedIL.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/get-rmsencryptedil?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/get-rmsencryptedil?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RmsEncryptedIL --- diff --git a/docset/winserver2022-ps/adrmsadmin/Get-RmsRequestInfo.md b/docset/winserver2022-ps/adrmsadmin/Get-RmsRequestInfo.md index 5f683560fe..9fa854f360 100644 --- a/docset/winserver2022-ps/adrmsadmin/Get-RmsRequestInfo.md +++ b/docset/winserver2022-ps/adrmsadmin/Get-RmsRequestInfo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/get-rmsrequestinfo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/get-rmsrequestinfo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RmsRequestInfo --- diff --git a/docset/winserver2022-ps/adrmsadmin/Get-RmsSvcAccount.md b/docset/winserver2022-ps/adrmsadmin/Get-RmsSvcAccount.md index e05f1f24ea..73cfa0932e 100644 --- a/docset/winserver2022-ps/adrmsadmin/Get-RmsSvcAccount.md +++ b/docset/winserver2022-ps/adrmsadmin/Get-RmsSvcAccount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/get-rmssvcaccount?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/get-rmssvcaccount?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RmsSvcAccount --- diff --git a/docset/winserver2022-ps/adrmsadmin/Get-RmsSystemHealthReport.md b/docset/winserver2022-ps/adrmsadmin/Get-RmsSystemHealthReport.md index 882548828b..a81d064316 100644 --- a/docset/winserver2022-ps/adrmsadmin/Get-RmsSystemHealthReport.md +++ b/docset/winserver2022-ps/adrmsadmin/Get-RmsSystemHealthReport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/get-rmssystemhealthreport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/get-rmssystemhealthreport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RmsSystemHealthReport --- diff --git a/docset/winserver2022-ps/adrmsadmin/Get-RmsUserRequestReport.md b/docset/winserver2022-ps/adrmsadmin/Get-RmsUserRequestReport.md index bd4c06d37b..71a2483ee6 100644 --- a/docset/winserver2022-ps/adrmsadmin/Get-RmsUserRequestReport.md +++ b/docset/winserver2022-ps/adrmsadmin/Get-RmsUserRequestReport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/get-rmsuserrequestreport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/get-rmsuserrequestreport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RmsUserRequestReport --- diff --git a/docset/winserver2022-ps/adrmsadmin/Import-RmsTPD.md b/docset/winserver2022-ps/adrmsadmin/Import-RmsTPD.md index 662dac38ff..7e94ef1ae3 100644 --- a/docset/winserver2022-ps/adrmsadmin/Import-RmsTPD.md +++ b/docset/winserver2022-ps/adrmsadmin/Import-RmsTPD.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/import-rmstpd?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/import-rmstpd?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-RmsTPD --- diff --git a/docset/winserver2022-ps/adrmsadmin/Import-RmsTUD.md b/docset/winserver2022-ps/adrmsadmin/Import-RmsTUD.md index 4836ac92f3..d0d0fbaeee 100644 --- a/docset/winserver2022-ps/adrmsadmin/Import-RmsTUD.md +++ b/docset/winserver2022-ps/adrmsadmin/Import-RmsTUD.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/import-rmstud?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/import-rmstud?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-RmsTUD --- diff --git a/docset/winserver2022-ps/adrmsadmin/Initialize-RmsCryptoMode2.md b/docset/winserver2022-ps/adrmsadmin/Initialize-RmsCryptoMode2.md index 64bb0bf5a3..de982a5b07 100644 --- a/docset/winserver2022-ps/adrmsadmin/Initialize-RmsCryptoMode2.md +++ b/docset/winserver2022-ps/adrmsadmin/Initialize-RmsCryptoMode2.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/initialize-rmscryptomode2?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/initialize-rmscryptomode2?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Initialize-RmsCryptoMode2 --- diff --git a/docset/winserver2022-ps/adrmsadmin/Install-RmsMfgEnrollment.md b/docset/winserver2022-ps/adrmsadmin/Install-RmsMfgEnrollment.md index 9444c82208..1e8f071867 100644 --- a/docset/winserver2022-ps/adrmsadmin/Install-RmsMfgEnrollment.md +++ b/docset/winserver2022-ps/adrmsadmin/Install-RmsMfgEnrollment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/install-rmsmfgenrollment?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/install-rmsmfgenrollment?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-RmsMfgEnrollment --- diff --git a/docset/winserver2022-ps/adrmsadmin/Install-RmsMfgSupport.md b/docset/winserver2022-ps/adrmsadmin/Install-RmsMfgSupport.md index 7509c8680a..fc015d6019 100644 --- a/docset/winserver2022-ps/adrmsadmin/Install-RmsMfgSupport.md +++ b/docset/winserver2022-ps/adrmsadmin/Install-RmsMfgSupport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/install-rmsmfgsupport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/install-rmsmfgsupport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-RmsMfgSupport --- diff --git a/docset/winserver2022-ps/adrmsadmin/Set-RmsSvcAccount.md b/docset/winserver2022-ps/adrmsadmin/Set-RmsSvcAccount.md index d2d5078f52..6a2d244f05 100644 --- a/docset/winserver2022-ps/adrmsadmin/Set-RmsSvcAccount.md +++ b/docset/winserver2022-ps/adrmsadmin/Set-RmsSvcAccount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/set-rmssvcaccount?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/set-rmssvcaccount?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RmsSvcAccount --- diff --git a/docset/winserver2022-ps/adrmsadmin/Uninstall-RmsMfgEnrollment.md b/docset/winserver2022-ps/adrmsadmin/Uninstall-RmsMfgEnrollment.md index 311bfb2e6b..b4ab41b3f7 100644 --- a/docset/winserver2022-ps/adrmsadmin/Uninstall-RmsMfgEnrollment.md +++ b/docset/winserver2022-ps/adrmsadmin/Uninstall-RmsMfgEnrollment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/uninstall-rmsmfgenrollment?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/uninstall-rmsmfgenrollment?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-RmsMfgEnrollment --- diff --git a/docset/winserver2022-ps/adrmsadmin/Uninstall-RmsMfgSupport.md b/docset/winserver2022-ps/adrmsadmin/Uninstall-RmsMfgSupport.md index a85aec2454..1b3fe6032f 100644 --- a/docset/winserver2022-ps/adrmsadmin/Uninstall-RmsMfgSupport.md +++ b/docset/winserver2022-ps/adrmsadmin/Uninstall-RmsMfgSupport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/uninstall-rmsmfgsupport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/uninstall-rmsmfgsupport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-RmsMfgSupport --- diff --git a/docset/winserver2022-ps/adrmsadmin/Update-RmsCluster.md b/docset/winserver2022-ps/adrmsadmin/Update-RmsCluster.md index b9f0d4e31a..0b795a9ba5 100644 --- a/docset/winserver2022-ps/adrmsadmin/Update-RmsCluster.md +++ b/docset/winserver2022-ps/adrmsadmin/Update-RmsCluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/update-rmscluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/update-rmscluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-RmsCluster --- diff --git a/docset/winserver2022-ps/adrmsadmin/Update-RmsMfgEnrollment.md b/docset/winserver2022-ps/adrmsadmin/Update-RmsMfgEnrollment.md index b2f865ac16..7aa6a224e0 100644 --- a/docset/winserver2022-ps/adrmsadmin/Update-RmsMfgEnrollment.md +++ b/docset/winserver2022-ps/adrmsadmin/Update-RmsMfgEnrollment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.RightsManagementServices.Admin.dll-Help.xml Module Name: ADRMSAdmin ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/adrmsadmin/update-rmsmfgenrollment?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/adrmsadmin/update-rmsmfgenrollment?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-RmsMfgEnrollment --- diff --git a/docset/winserver2022-ps/appbackgroundtask/Disable-AppBackgroundTaskDiagnosticLog.md b/docset/winserver2022-ps/appbackgroundtask/Disable-AppBackgroundTaskDiagnosticLog.md index 53020cf188..d2ff4d6563 100644 --- a/docset/winserver2022-ps/appbackgroundtask/Disable-AppBackgroundTaskDiagnosticLog.md +++ b/docset/winserver2022-ps/appbackgroundtask/Disable-AppBackgroundTaskDiagnosticLog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: microsoft.windows.appbackgroundtask.commands.dll-Help.xml Module Name: AppBackgroundTask ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appbackgroundtask/disable-appbackgroundtaskdiagnosticlog?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appbackgroundtask/disable-appbackgroundtaskdiagnosticlog?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-AppBackgroundTaskDiagnosticLog --- diff --git a/docset/winserver2022-ps/appbackgroundtask/Enable-AppBackgroundTaskDiagnosticLog.md b/docset/winserver2022-ps/appbackgroundtask/Enable-AppBackgroundTaskDiagnosticLog.md index 0494e11cde..e8a659e860 100644 --- a/docset/winserver2022-ps/appbackgroundtask/Enable-AppBackgroundTaskDiagnosticLog.md +++ b/docset/winserver2022-ps/appbackgroundtask/Enable-AppBackgroundTaskDiagnosticLog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: microsoft.windows.appbackgroundtask.commands.dll-Help.xml Module Name: AppBackgroundTask ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appbackgroundtask/enable-appbackgroundtaskdiagnosticlog?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appbackgroundtask/enable-appbackgroundtaskdiagnosticlog?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-AppBackgroundTaskDiagnosticLog --- diff --git a/docset/winserver2022-ps/appbackgroundtask/Get-AppBackgroundTask.md b/docset/winserver2022-ps/appbackgroundtask/Get-AppBackgroundTask.md index 6707d4165b..65809cb954 100644 --- a/docset/winserver2022-ps/appbackgroundtask/Get-AppBackgroundTask.md +++ b/docset/winserver2022-ps/appbackgroundtask/Get-AppBackgroundTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BackgroundTask.cdxml-help.xml Module Name: AppBackgroundTask ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appbackgroundtask/get-appbackgroundtask?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appbackgroundtask/get-appbackgroundtask?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppBackgroundTask --- diff --git a/docset/winserver2022-ps/appbackgroundtask/Set-AppBackgroundTaskResourcePolicy.md b/docset/winserver2022-ps/appbackgroundtask/Set-AppBackgroundTaskResourcePolicy.md index de41b24925..f980e3eece 100644 --- a/docset/winserver2022-ps/appbackgroundtask/Set-AppBackgroundTaskResourcePolicy.md +++ b/docset/winserver2022-ps/appbackgroundtask/Set-AppBackgroundTaskResourcePolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: microsoft.windows.appbackgroundtask.commands.dll-Help.xml Module Name: AppBackgroundTask ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appbackgroundtask/set-appbackgroundtaskresourcepolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appbackgroundtask/set-appbackgroundtaskresourcepolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AppBackgroundTaskResourcePolicy --- diff --git a/docset/winserver2022-ps/appbackgroundtask/Start-AppBackgroundTask.md b/docset/winserver2022-ps/appbackgroundtask/Start-AppBackgroundTask.md index e22e8a313a..29452b772b 100644 --- a/docset/winserver2022-ps/appbackgroundtask/Start-AppBackgroundTask.md +++ b/docset/winserver2022-ps/appbackgroundtask/Start-AppBackgroundTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BackgroundTask.cdxml-help.xml Module Name: AppBackgroundTask ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appbackgroundtask/start-appbackgroundtask?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appbackgroundtask/start-appbackgroundtask?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-AppBackgroundTask --- diff --git a/docset/winserver2022-ps/appbackgroundtask/Unregister-AppBackgroundTask.md b/docset/winserver2022-ps/appbackgroundtask/Unregister-AppBackgroundTask.md index 41831a55cc..a8b05ac05a 100644 --- a/docset/winserver2022-ps/appbackgroundtask/Unregister-AppBackgroundTask.md +++ b/docset/winserver2022-ps/appbackgroundtask/Unregister-AppBackgroundTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BackgroundTask.cdxml-help.xml Module Name: AppBackgroundTask ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appbackgroundtask/unregister-appbackgroundtask?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appbackgroundtask/unregister-appbackgroundtask?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unregister-AppBackgroundTask --- diff --git a/docset/winserver2022-ps/applocker/Get-AppLockerFileInformation.md b/docset/winserver2022-ps/applocker/Get-AppLockerFileInformation.md index 6f7183466e..0d076b2db2 100644 --- a/docset/winserver2022-ps/applocker/Get-AppLockerFileInformation.md +++ b/docset/winserver2022-ps/applocker/Get-AppLockerFileInformation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Security.ApplicationId.PolicyManagement.Cmdlets.dll-Help.xml Module Name: AppLocker ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/applocker/get-applockerfileinformation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/applocker/get-applockerfileinformation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppLockerFileInformation --- diff --git a/docset/winserver2022-ps/applocker/Get-AppLockerPolicy.md b/docset/winserver2022-ps/applocker/Get-AppLockerPolicy.md index 236a7a80cc..426509ac20 100644 --- a/docset/winserver2022-ps/applocker/Get-AppLockerPolicy.md +++ b/docset/winserver2022-ps/applocker/Get-AppLockerPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Security.ApplicationId.PolicyManagement.Cmdlets.dll-Help.xml Module Name: AppLocker ms.date: 09/28/2020 -online version: https://docs.microsoft.com/powershell/module/applocker/get-applockerpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/applocker/get-applockerpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppLockerPolicy --- diff --git a/docset/winserver2022-ps/applocker/New-AppLockerPolicy.md b/docset/winserver2022-ps/applocker/New-AppLockerPolicy.md index 15e7233c9f..d8bc20e915 100644 --- a/docset/winserver2022-ps/applocker/New-AppLockerPolicy.md +++ b/docset/winserver2022-ps/applocker/New-AppLockerPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Security.ApplicationId.PolicyManagement.Cmdlets.dll-Help.xml Module Name: AppLocker ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/applocker/new-applockerpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/applocker/new-applockerpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-AppLockerPolicy --- diff --git a/docset/winserver2022-ps/applocker/Set-AppLockerPolicy.md b/docset/winserver2022-ps/applocker/Set-AppLockerPolicy.md index 62e0270504..0e3d085465 100644 --- a/docset/winserver2022-ps/applocker/Set-AppLockerPolicy.md +++ b/docset/winserver2022-ps/applocker/Set-AppLockerPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Security.ApplicationId.PolicyManagement.Cmdlets.dll-Help.xml Module Name: AppLocker ms.date: 09/28/2020 -online version: https://docs.microsoft.com/powershell/module/applocker/set-applockerpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/applocker/set-applockerpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AppLockerPolicy --- diff --git a/docset/winserver2022-ps/applocker/Test-AppLockerPolicy.md b/docset/winserver2022-ps/applocker/Test-AppLockerPolicy.md index 055eed5247..7da1ce11b5 100644 --- a/docset/winserver2022-ps/applocker/Test-AppLockerPolicy.md +++ b/docset/winserver2022-ps/applocker/Test-AppLockerPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Security.ApplicationId.PolicyManagement.Cmdlets.dll-Help.xml Module Name: AppLocker ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/applocker/test-applockerpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/applocker/test-applockerpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-AppLockerPolicy --- diff --git a/docset/winserver2022-ps/appvclient/Add-AppvClientConnectionGroup.md b/docset/winserver2022-ps/appvclient/Add-AppvClientConnectionGroup.md index 107518af9e..0d7a0da0dc 100644 --- a/docset/winserver2022-ps/appvclient/Add-AppvClientConnectionGroup.md +++ b/docset/winserver2022-ps/appvclient/Add-AppvClientConnectionGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/add-appvclientconnectiongroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/add-appvclientconnectiongroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AppvClientConnectionGroup --- diff --git a/docset/winserver2022-ps/appvclient/Add-AppvClientPackage.md b/docset/winserver2022-ps/appvclient/Add-AppvClientPackage.md index a69691cdf0..edee3ed97a 100644 --- a/docset/winserver2022-ps/appvclient/Add-AppvClientPackage.md +++ b/docset/winserver2022-ps/appvclient/Add-AppvClientPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/add-appvclientpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/add-appvclientpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AppvClientPackage --- diff --git a/docset/winserver2022-ps/appvclient/Add-AppvPublishingServer.md b/docset/winserver2022-ps/appvclient/Add-AppvPublishingServer.md index ba84f3b341..fbdf1956be 100644 --- a/docset/winserver2022-ps/appvclient/Add-AppvPublishingServer.md +++ b/docset/winserver2022-ps/appvclient/Add-AppvPublishingServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/add-appvpublishingserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/add-appvpublishingserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AppvPublishingServer --- diff --git a/docset/winserver2022-ps/appvclient/Disable-Appv.md b/docset/winserver2022-ps/appvclient/Disable-Appv.md index 114eb64a4a..c728282aa5 100644 --- a/docset/winserver2022-ps/appvclient/Disable-Appv.md +++ b/docset/winserver2022-ps/appvclient/Disable-Appv.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/disable-appv?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/disable-appv?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-Appv --- diff --git a/docset/winserver2022-ps/appvclient/Disable-AppvClientConnectionGroup.md b/docset/winserver2022-ps/appvclient/Disable-AppvClientConnectionGroup.md index 342d321739..4a6b8e7268 100644 --- a/docset/winserver2022-ps/appvclient/Disable-AppvClientConnectionGroup.md +++ b/docset/winserver2022-ps/appvclient/Disable-AppvClientConnectionGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/disable-appvclientconnectiongroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/disable-appvclientconnectiongroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-AppvClientConnectionGroup --- diff --git a/docset/winserver2022-ps/appvclient/Enable-Appv.md b/docset/winserver2022-ps/appvclient/Enable-Appv.md index 5150cf1d59..7e8a1ff3c8 100644 --- a/docset/winserver2022-ps/appvclient/Enable-Appv.md +++ b/docset/winserver2022-ps/appvclient/Enable-Appv.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/enable-appv?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/enable-appv?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-Appv --- diff --git a/docset/winserver2022-ps/appvclient/Enable-AppvClientConnectionGroup.md b/docset/winserver2022-ps/appvclient/Enable-AppvClientConnectionGroup.md index 08be8ac4db..730f59389c 100644 --- a/docset/winserver2022-ps/appvclient/Enable-AppvClientConnectionGroup.md +++ b/docset/winserver2022-ps/appvclient/Enable-AppvClientConnectionGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/enable-appvclientconnectiongroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/enable-appvclientconnectiongroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-AppvClientConnectionGroup --- diff --git a/docset/winserver2022-ps/appvclient/Get-AppvClientApplication.md b/docset/winserver2022-ps/appvclient/Get-AppvClientApplication.md index 5beb0d5d62..f7da56a8d5 100644 --- a/docset/winserver2022-ps/appvclient/Get-AppvClientApplication.md +++ b/docset/winserver2022-ps/appvclient/Get-AppvClientApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/get-appvclientapplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/get-appvclientapplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppvClientApplication --- diff --git a/docset/winserver2022-ps/appvclient/Get-AppvClientConfiguration.md b/docset/winserver2022-ps/appvclient/Get-AppvClientConfiguration.md index b4a84973dc..42265cd6df 100644 --- a/docset/winserver2022-ps/appvclient/Get-AppvClientConfiguration.md +++ b/docset/winserver2022-ps/appvclient/Get-AppvClientConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/get-appvclientconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/get-appvclientconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppvClientConfiguration --- diff --git a/docset/winserver2022-ps/appvclient/Get-AppvClientConnectionGroup.md b/docset/winserver2022-ps/appvclient/Get-AppvClientConnectionGroup.md index 956420ecdc..4454218cda 100644 --- a/docset/winserver2022-ps/appvclient/Get-AppvClientConnectionGroup.md +++ b/docset/winserver2022-ps/appvclient/Get-AppvClientConnectionGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/get-appvclientconnectiongroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/get-appvclientconnectiongroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppvClientConnectionGroup --- diff --git a/docset/winserver2022-ps/appvclient/Get-AppvClientMode.md b/docset/winserver2022-ps/appvclient/Get-AppvClientMode.md index 77dd9be1a8..f771923404 100644 --- a/docset/winserver2022-ps/appvclient/Get-AppvClientMode.md +++ b/docset/winserver2022-ps/appvclient/Get-AppvClientMode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/get-appvclientmode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/get-appvclientmode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppvClientMode --- diff --git a/docset/winserver2022-ps/appvclient/Get-AppvClientPackage.md b/docset/winserver2022-ps/appvclient/Get-AppvClientPackage.md index 224cbf6a7d..748183d22b 100644 --- a/docset/winserver2022-ps/appvclient/Get-AppvClientPackage.md +++ b/docset/winserver2022-ps/appvclient/Get-AppvClientPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/get-appvclientpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/get-appvclientpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppvClientPackage --- diff --git a/docset/winserver2022-ps/appvclient/Get-AppvPublishingServer.md b/docset/winserver2022-ps/appvclient/Get-AppvPublishingServer.md index c502ebc57c..b77f6ce54c 100644 --- a/docset/winserver2022-ps/appvclient/Get-AppvPublishingServer.md +++ b/docset/winserver2022-ps/appvclient/Get-AppvPublishingServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/get-appvpublishingserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/get-appvpublishingserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppvPublishingServer --- diff --git a/docset/winserver2022-ps/appvclient/Get-AppvStatus.md b/docset/winserver2022-ps/appvclient/Get-AppvStatus.md index b64002e702..30a753aa6a 100644 --- a/docset/winserver2022-ps/appvclient/Get-AppvStatus.md +++ b/docset/winserver2022-ps/appvclient/Get-AppvStatus.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/get-appvstatus?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/get-appvstatus?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppvStatus --- diff --git a/docset/winserver2022-ps/appvclient/Get-AppvVirtualProcess.md b/docset/winserver2022-ps/appvclient/Get-AppvVirtualProcess.md index db9e5707c7..bc9e1f3fcc 100644 --- a/docset/winserver2022-ps/appvclient/Get-AppvVirtualProcess.md +++ b/docset/winserver2022-ps/appvclient/Get-AppvVirtualProcess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: AppVClientCmdlets-help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/get-appvvirtualprocess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/get-appvvirtualprocess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppvVirtualProcess --- diff --git a/docset/winserver2022-ps/appvclient/Mount-AppvClientConnectionGroup.md b/docset/winserver2022-ps/appvclient/Mount-AppvClientConnectionGroup.md index 9da2094776..0bf928ed71 100644 --- a/docset/winserver2022-ps/appvclient/Mount-AppvClientConnectionGroup.md +++ b/docset/winserver2022-ps/appvclient/Mount-AppvClientConnectionGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/mount-appvclientconnectiongroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/mount-appvclientconnectiongroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Mount-AppvClientConnectionGroup --- diff --git a/docset/winserver2022-ps/appvclient/Mount-AppvClientPackage.md b/docset/winserver2022-ps/appvclient/Mount-AppvClientPackage.md index 27c3b2c465..8528c67064 100644 --- a/docset/winserver2022-ps/appvclient/Mount-AppvClientPackage.md +++ b/docset/winserver2022-ps/appvclient/Mount-AppvClientPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/mount-appvclientpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/mount-appvclientpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Mount-AppvClientPackage --- diff --git a/docset/winserver2022-ps/appvclient/Publish-AppvClientPackage.md b/docset/winserver2022-ps/appvclient/Publish-AppvClientPackage.md index 731b920b10..d8f4f2669c 100644 --- a/docset/winserver2022-ps/appvclient/Publish-AppvClientPackage.md +++ b/docset/winserver2022-ps/appvclient/Publish-AppvClientPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/publish-appvclientpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/publish-appvclientpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Publish-AppvClientPackage --- diff --git a/docset/winserver2022-ps/appvclient/Remove-AppvClientConnectionGroup.md b/docset/winserver2022-ps/appvclient/Remove-AppvClientConnectionGroup.md index 8d30075aed..80b8ebf60b 100644 --- a/docset/winserver2022-ps/appvclient/Remove-AppvClientConnectionGroup.md +++ b/docset/winserver2022-ps/appvclient/Remove-AppvClientConnectionGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/remove-appvclientconnectiongroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/remove-appvclientconnectiongroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AppvClientConnectionGroup --- diff --git a/docset/winserver2022-ps/appvclient/Remove-AppvClientPackage.md b/docset/winserver2022-ps/appvclient/Remove-AppvClientPackage.md index 05af6463df..f8aaed03c2 100644 --- a/docset/winserver2022-ps/appvclient/Remove-AppvClientPackage.md +++ b/docset/winserver2022-ps/appvclient/Remove-AppvClientPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/remove-appvclientpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/remove-appvclientpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AppvClientPackage --- diff --git a/docset/winserver2022-ps/appvclient/Remove-AppvPublishingServer.md b/docset/winserver2022-ps/appvclient/Remove-AppvPublishingServer.md index fd6a9fd392..5027ddf970 100644 --- a/docset/winserver2022-ps/appvclient/Remove-AppvPublishingServer.md +++ b/docset/winserver2022-ps/appvclient/Remove-AppvPublishingServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/remove-appvpublishingserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/remove-appvpublishingserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AppvPublishingServer --- diff --git a/docset/winserver2022-ps/appvclient/Repair-AppvClientConnectionGroup.md b/docset/winserver2022-ps/appvclient/Repair-AppvClientConnectionGroup.md index 06eda98f06..515ecfe728 100644 --- a/docset/winserver2022-ps/appvclient/Repair-AppvClientConnectionGroup.md +++ b/docset/winserver2022-ps/appvclient/Repair-AppvClientConnectionGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/repair-appvclientconnectiongroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/repair-appvclientconnectiongroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Repair-AppvClientConnectionGroup --- diff --git a/docset/winserver2022-ps/appvclient/Repair-AppvClientPackage.md b/docset/winserver2022-ps/appvclient/Repair-AppvClientPackage.md index 311caa5e29..b4756e898b 100644 --- a/docset/winserver2022-ps/appvclient/Repair-AppvClientPackage.md +++ b/docset/winserver2022-ps/appvclient/Repair-AppvClientPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/repair-appvclientpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/repair-appvclientpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Repair-AppvClientPackage --- diff --git a/docset/winserver2022-ps/appvclient/Send-AppvClientReport.md b/docset/winserver2022-ps/appvclient/Send-AppvClientReport.md index 227939174b..90ca2bd1de 100644 --- a/docset/winserver2022-ps/appvclient/Send-AppvClientReport.md +++ b/docset/winserver2022-ps/appvclient/Send-AppvClientReport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/send-appvclientreport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/send-appvclientreport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Send-AppvClientReport --- diff --git a/docset/winserver2022-ps/appvclient/Set-AppvClientConfiguration.md b/docset/winserver2022-ps/appvclient/Set-AppvClientConfiguration.md index 56b8160b47..3af67d4c93 100644 --- a/docset/winserver2022-ps/appvclient/Set-AppvClientConfiguration.md +++ b/docset/winserver2022-ps/appvclient/Set-AppvClientConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/set-appvclientconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/set-appvclientconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AppvClientConfiguration --- diff --git a/docset/winserver2022-ps/appvclient/Set-AppvClientMode.md b/docset/winserver2022-ps/appvclient/Set-AppvClientMode.md index ba2b2cd891..247cbaece2 100644 --- a/docset/winserver2022-ps/appvclient/Set-AppvClientMode.md +++ b/docset/winserver2022-ps/appvclient/Set-AppvClientMode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/set-appvclientmode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/set-appvclientmode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AppvClientMode --- diff --git a/docset/winserver2022-ps/appvclient/Set-AppvClientPackage.md b/docset/winserver2022-ps/appvclient/Set-AppvClientPackage.md index dc95f4bae2..3551e2b7fa 100644 --- a/docset/winserver2022-ps/appvclient/Set-AppvClientPackage.md +++ b/docset/winserver2022-ps/appvclient/Set-AppvClientPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/set-appvclientpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/set-appvclientpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AppvClientPackage --- diff --git a/docset/winserver2022-ps/appvclient/Set-AppvPublishingServer.md b/docset/winserver2022-ps/appvclient/Set-AppvPublishingServer.md index 784763a628..87fa4fc595 100644 --- a/docset/winserver2022-ps/appvclient/Set-AppvPublishingServer.md +++ b/docset/winserver2022-ps/appvclient/Set-AppvPublishingServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/set-appvpublishingserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/set-appvpublishingserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AppvPublishingServer --- diff --git a/docset/winserver2022-ps/appvclient/Start-AppvVirtualProcess.md b/docset/winserver2022-ps/appvclient/Start-AppvVirtualProcess.md index 6e9b0fff65..1b89022977 100644 --- a/docset/winserver2022-ps/appvclient/Start-AppvVirtualProcess.md +++ b/docset/winserver2022-ps/appvclient/Start-AppvVirtualProcess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: AppVClientCmdlets-help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/start-appvvirtualprocess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/start-appvvirtualprocess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-AppvVirtualProcess --- diff --git a/docset/winserver2022-ps/appvclient/Stop-AppvClientConnectionGroup.md b/docset/winserver2022-ps/appvclient/Stop-AppvClientConnectionGroup.md index 2be093e895..2d895d62df 100644 --- a/docset/winserver2022-ps/appvclient/Stop-AppvClientConnectionGroup.md +++ b/docset/winserver2022-ps/appvclient/Stop-AppvClientConnectionGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/stop-appvclientconnectiongroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/stop-appvclientconnectiongroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-AppvClientConnectionGroup --- diff --git a/docset/winserver2022-ps/appvclient/Stop-AppvClientPackage.md b/docset/winserver2022-ps/appvclient/Stop-AppvClientPackage.md index 3173f5e896..6297dd3d3c 100644 --- a/docset/winserver2022-ps/appvclient/Stop-AppvClientPackage.md +++ b/docset/winserver2022-ps/appvclient/Stop-AppvClientPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/stop-appvclientpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/stop-appvclientpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-AppvClientPackage --- diff --git a/docset/winserver2022-ps/appvclient/Sync-AppvPublishingServer.md b/docset/winserver2022-ps/appvclient/Sync-AppvPublishingServer.md index 0ac1e78420..f235e980b0 100644 --- a/docset/winserver2022-ps/appvclient/Sync-AppvPublishingServer.md +++ b/docset/winserver2022-ps/appvclient/Sync-AppvPublishingServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/sync-appvpublishingserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/sync-appvpublishingserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Sync-AppvPublishingServer --- diff --git a/docset/winserver2022-ps/appvclient/Unpublish-AppvClientPackage.md b/docset/winserver2022-ps/appvclient/Unpublish-AppvClientPackage.md index 78cda520fd..b8da3f6338 100644 --- a/docset/winserver2022-ps/appvclient/Unpublish-AppvClientPackage.md +++ b/docset/winserver2022-ps/appvclient/Unpublish-AppvClientPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.AppVClientPowerShell.dll-Help.xml Module Name: AppvClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvclient/unpublish-appvclientpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvclient/unpublish-appvclientpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unpublish-AppvClientPackage --- diff --git a/docset/winserver2022-ps/appvsequencer/Expand-AppvSequencerPackage.md b/docset/winserver2022-ps/appvsequencer/Expand-AppvSequencerPackage.md index a689514b53..a18560ab61 100644 --- a/docset/winserver2022-ps/appvsequencer/Expand-AppvSequencerPackage.md +++ b/docset/winserver2022-ps/appvsequencer/Expand-AppvSequencerPackage.md @@ -1,9 +1,9 @@ ---- +--- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.AppV.Modernizer.Cmdlets.dll-Help.xml Module Name: AppvSequencer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvsequencer/expand-appvsequencerpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvsequencer/expand-appvsequencerpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Expand-AppvSequencerPackage --- diff --git a/docset/winserver2022-ps/appvsequencer/New-AppvPackageAccelerator.md b/docset/winserver2022-ps/appvsequencer/New-AppvPackageAccelerator.md index 865e0bf31c..8fdb3aa198 100644 --- a/docset/winserver2022-ps/appvsequencer/New-AppvPackageAccelerator.md +++ b/docset/winserver2022-ps/appvsequencer/New-AppvPackageAccelerator.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.AppV.Modernizer.Cmdlets.dll-Help.xml Module Name: AppvSequencer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvsequencer/new-appvpackageaccelerator?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvsequencer/new-appvpackageaccelerator?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-AppvPackageAccelerator --- diff --git a/docset/winserver2022-ps/appvsequencer/New-AppvSequencerPackage.md b/docset/winserver2022-ps/appvsequencer/New-AppvSequencerPackage.md index be041df198..931372a1d0 100644 --- a/docset/winserver2022-ps/appvsequencer/New-AppvSequencerPackage.md +++ b/docset/winserver2022-ps/appvsequencer/New-AppvSequencerPackage.md @@ -1,9 +1,9 @@ ---- +--- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.AppV.Modernizer.Cmdlets.dll-Help.xml Module Name: AppvSequencer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvsequencer/new-appvsequencerpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvsequencer/new-appvsequencerpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-AppvSequencerPackage --- diff --git a/docset/winserver2022-ps/appvsequencer/Update-AppvSequencerPackage.md b/docset/winserver2022-ps/appvsequencer/Update-AppvSequencerPackage.md index 45f501e984..eb10e42b3d 100644 --- a/docset/winserver2022-ps/appvsequencer/Update-AppvSequencerPackage.md +++ b/docset/winserver2022-ps/appvsequencer/Update-AppvSequencerPackage.md @@ -1,9 +1,9 @@ ---- +--- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.AppV.Modernizer.Cmdlets.dll-Help.xml Module Name: AppvSequencer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appvsequencer/update-appvsequencerpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appvsequencer/update-appvsequencerpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-AppvSequencerPackage --- diff --git a/docset/winserver2022-ps/appx/Add-AppSharedPackageContainer.md b/docset/winserver2022-ps/appx/Add-AppSharedPackageContainer.md index c0fcac18cf..008d4131e7 100644 --- a/docset/winserver2022-ps/appx/Add-AppSharedPackageContainer.md +++ b/docset/winserver2022-ps/appx/Add-AppSharedPackageContainer.md @@ -1,7 +1,7 @@ ---- +--- external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: appx -online version: https://docs.microsoft.com/powershell/module/appx/add-appsharedpackagecontainer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/add-appsharedpackagecontainer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2022-ps/appx/Add-AppxPackage.md b/docset/winserver2022-ps/appx/Add-AppxPackage.md index 7b83a21eaf..ddf5efa53c 100644 --- a/docset/winserver2022-ps/appx/Add-AppxPackage.md +++ b/docset/winserver2022-ps/appx/Add-AppxPackage.md @@ -3,7 +3,7 @@ description: Adds a signed app package to a user account. external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-help.xml Module Name: Appx ms.date: 01/31/2022 -online version: https://docs.microsoft.com/powershell/module/appx/add-appxpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/add-appxpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AppxPackage --- diff --git a/docset/winserver2022-ps/appx/Add-AppxVolume.md b/docset/winserver2022-ps/appx/Add-AppxVolume.md index 936b5e2ec1..4ee0d3af6a 100644 --- a/docset/winserver2022-ps/appx/Add-AppxVolume.md +++ b/docset/winserver2022-ps/appx/Add-AppxVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: Appx ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appx/add-appxvolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/add-appxvolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AppxVolume --- diff --git a/docset/winserver2022-ps/appx/Dismount-AppxVolume.md b/docset/winserver2022-ps/appx/Dismount-AppxVolume.md index cbc34c0b9b..214abd4447 100644 --- a/docset/winserver2022-ps/appx/Dismount-AppxVolume.md +++ b/docset/winserver2022-ps/appx/Dismount-AppxVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: Appx ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appx/dismount-appxvolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/dismount-appxvolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Dismount-AppxVolume --- diff --git a/docset/winserver2022-ps/appx/Get-AppSharedPackageContainer.md b/docset/winserver2022-ps/appx/Get-AppSharedPackageContainer.md index 2788fd4c73..a5e5bb283d 100644 --- a/docset/winserver2022-ps/appx/Get-AppSharedPackageContainer.md +++ b/docset/winserver2022-ps/appx/Get-AppSharedPackageContainer.md @@ -1,7 +1,7 @@ ---- +--- external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: appx -online version: https://docs.microsoft.com/powershell/module/appx/get-appsharedpackagecontainer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/get-appsharedpackagecontainer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2022-ps/appx/Get-AppxDefaultVolume.md b/docset/winserver2022-ps/appx/Get-AppxDefaultVolume.md index 18f0bdd5ed..b2ef82e7a6 100644 --- a/docset/winserver2022-ps/appx/Get-AppxDefaultVolume.md +++ b/docset/winserver2022-ps/appx/Get-AppxDefaultVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: Appx ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appx/get-appxdefaultvolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/get-appxdefaultvolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppxDefaultVolume --- diff --git a/docset/winserver2022-ps/appx/Get-AppxLastError.md b/docset/winserver2022-ps/appx/Get-AppxLastError.md index 4f510d78e5..b2f4ab35b3 100644 --- a/docset/winserver2022-ps/appx/Get-AppxLastError.md +++ b/docset/winserver2022-ps/appx/Get-AppxLastError.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-help.xml Module Name: Appx ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appx/get-appxlasterror?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/get-appxlasterror?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppxLastError --- diff --git a/docset/winserver2022-ps/appx/Get-AppxLog.md b/docset/winserver2022-ps/appx/Get-AppxLog.md index edbca32b02..f0c55eee1f 100644 --- a/docset/winserver2022-ps/appx/Get-AppxLog.md +++ b/docset/winserver2022-ps/appx/Get-AppxLog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-help.xml Module Name: Appx ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appx/get-appxlog?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/get-appxlog?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppxLog --- diff --git a/docset/winserver2022-ps/appx/Get-AppxPackage.md b/docset/winserver2022-ps/appx/Get-AppxPackage.md index a182e57f56..c08ccc6e45 100644 --- a/docset/winserver2022-ps/appx/Get-AppxPackage.md +++ b/docset/winserver2022-ps/appx/Get-AppxPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: Appx ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appx/get-appxpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/get-appxpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppxPackage --- diff --git a/docset/winserver2022-ps/appx/Get-AppxPackageAutoUpdateSettings.md b/docset/winserver2022-ps/appx/Get-AppxPackageAutoUpdateSettings.md index 8fa84b81dc..3f0c0419cb 100644 --- a/docset/winserver2022-ps/appx/Get-AppxPackageAutoUpdateSettings.md +++ b/docset/winserver2022-ps/appx/Get-AppxPackageAutoUpdateSettings.md @@ -3,7 +3,7 @@ description: Provides guidance on how to view the auto-update and repair setting external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-help.xml Module Name: Appx ms.date: 06/07/2021 -online version: https://docs.microsoft.com/powershell/module/appx/Get-AppxPackageAutoUpdateSettings?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/Get-AppxPackageAutoUpdateSettings?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2022-ps/appx/Get-AppxPackageManifest.md b/docset/winserver2022-ps/appx/Get-AppxPackageManifest.md index 4a04e10dee..47abf4730b 100644 --- a/docset/winserver2022-ps/appx/Get-AppxPackageManifest.md +++ b/docset/winserver2022-ps/appx/Get-AppxPackageManifest.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: Appx ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appx/get-appxpackagemanifest?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/get-appxpackagemanifest?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppxPackageManifest --- diff --git a/docset/winserver2022-ps/appx/Get-AppxVolume.md b/docset/winserver2022-ps/appx/Get-AppxVolume.md index b3ba62f414..f8cbc9ffa1 100644 --- a/docset/winserver2022-ps/appx/Get-AppxVolume.md +++ b/docset/winserver2022-ps/appx/Get-AppxVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: Appx ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appx/get-appxvolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/get-appxvolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppxVolume --- diff --git a/docset/winserver2022-ps/appx/Invoke-CommandInDesktopPackage.md b/docset/winserver2022-ps/appx/Invoke-CommandInDesktopPackage.md index 5c4a0e47e8..223ec48381 100644 --- a/docset/winserver2022-ps/appx/Invoke-CommandInDesktopPackage.md +++ b/docset/winserver2022-ps/appx/Invoke-CommandInDesktopPackage.md @@ -3,7 +3,7 @@ description: A debugging tool that creates a new process in the context of a pac external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: Appx ms.date: 05/19/2017 -online version: https://docs.microsoft.com/powershell/module/appx/invoke-commandindesktoppackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/invoke-commandindesktoppackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-CommandInDesktopPackage --- diff --git a/docset/winserver2022-ps/appx/Mount-AppxVolume.md b/docset/winserver2022-ps/appx/Mount-AppxVolume.md index 99802c324d..7bfcea228f 100644 --- a/docset/winserver2022-ps/appx/Mount-AppxVolume.md +++ b/docset/winserver2022-ps/appx/Mount-AppxVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: Appx ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appx/mount-appxvolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/mount-appxvolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Mount-AppxVolume --- diff --git a/docset/winserver2022-ps/appx/Move-AppxPackage.md b/docset/winserver2022-ps/appx/Move-AppxPackage.md index c5f02ec502..780b629543 100644 --- a/docset/winserver2022-ps/appx/Move-AppxPackage.md +++ b/docset/winserver2022-ps/appx/Move-AppxPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: Appx ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appx/move-appxpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/move-appxpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-AppxPackage --- diff --git a/docset/winserver2022-ps/appx/Remove-AppSharedPackageContainer.md b/docset/winserver2022-ps/appx/Remove-AppSharedPackageContainer.md index 3b44e52221..cd186a5d53 100644 --- a/docset/winserver2022-ps/appx/Remove-AppSharedPackageContainer.md +++ b/docset/winserver2022-ps/appx/Remove-AppSharedPackageContainer.md @@ -1,7 +1,7 @@ ---- +--- external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: appx -online version: https://docs.microsoft.com/powershell/module/appx/remove-appsharedpackagecontainer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/remove-appsharedpackagecontainer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2022-ps/appx/Remove-AppxPackage.md b/docset/winserver2022-ps/appx/Remove-AppxPackage.md index f91f4a33b1..8998d930a8 100644 --- a/docset/winserver2022-ps/appx/Remove-AppxPackage.md +++ b/docset/winserver2022-ps/appx/Remove-AppxPackage.md @@ -3,7 +3,7 @@ description: Removes an app package from one or more user accounts. external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: Appx ms.date: 09/01/2021 -online version: https://docs.microsoft.com/powershell/module/appx/remove-appxpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/remove-appxpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AppxPackage --- diff --git a/docset/winserver2022-ps/appx/Remove-AppxVolume.md b/docset/winserver2022-ps/appx/Remove-AppxVolume.md index e4dea15624..733f938604 100644 --- a/docset/winserver2022-ps/appx/Remove-AppxVolume.md +++ b/docset/winserver2022-ps/appx/Remove-AppxVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: Appx ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appx/remove-appxvolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/remove-appxvolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AppxVolume --- diff --git a/docset/winserver2022-ps/appx/Reset-AppSharedPackageContainer.md b/docset/winserver2022-ps/appx/Reset-AppSharedPackageContainer.md index 1465c0afdf..4ba00e3105 100644 --- a/docset/winserver2022-ps/appx/Reset-AppSharedPackageContainer.md +++ b/docset/winserver2022-ps/appx/Reset-AppSharedPackageContainer.md @@ -1,7 +1,7 @@ ---- +--- external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: appx -online version: https://docs.microsoft.com/powershell/module/appx/reset-appsharedpackagecontainer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/reset-appsharedpackagecontainer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2022-ps/appx/Reset-AppxPackage.md b/docset/winserver2022-ps/appx/Reset-AppxPackage.md index 59407c4524..84ea78a76c 100644 --- a/docset/winserver2022-ps/appx/Reset-AppxPackage.md +++ b/docset/winserver2022-ps/appx/Reset-AppxPackage.md @@ -3,7 +3,7 @@ description: Restores the Windows app to its initial configuration. external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-help.xml Module Name: Appx ms.date: 09/01/2021 -online version: https://docs.microsoft.com/powershell/module/appx/reset-appxpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/reset-appxpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-AppxPackage --- diff --git a/docset/winserver2022-ps/appx/Set-AppxDefaultVolume.md b/docset/winserver2022-ps/appx/Set-AppxDefaultVolume.md index d6a6f190f1..2f886a9014 100644 --- a/docset/winserver2022-ps/appx/Set-AppxDefaultVolume.md +++ b/docset/winserver2022-ps/appx/Set-AppxDefaultVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: Appx ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/appx/set-appxdefaultvolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/set-appxdefaultvolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AppxDefaultVolume --- diff --git a/docset/winserver2022-ps/appx/Set-AppxPackageAutoUpdateSettings.md b/docset/winserver2022-ps/appx/Set-AppxPackageAutoUpdateSettings.md index 62446e4ea9..b23f3c0096 100644 --- a/docset/winserver2022-ps/appx/Set-AppxPackageAutoUpdateSettings.md +++ b/docset/winserver2022-ps/appx/Set-AppxPackageAutoUpdateSettings.md @@ -3,7 +3,7 @@ description: Provides guidance on how to configure the auto-update and repair se external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-help.xml Module Name: Appx ms.date: 06/07/2021 -online version: https://docs.microsoft.com/powershell/module/appx/reset-appxpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/appx/reset-appxpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AppxPackageAutoUpdateSettings --- diff --git a/docset/winserver2022-ps/assignedaccess/Clear-AssignedAccess.md b/docset/winserver2022-ps/assignedaccess/Clear-AssignedAccess.md index 1708642bc0..45c442b2e6 100644 --- a/docset/winserver2022-ps/assignedaccess/Clear-AssignedAccess.md +++ b/docset/winserver2022-ps/assignedaccess/Clear-AssignedAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: AssignedAccess-help.xml Module Name: AssignedAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/assignedaccess/clear-assignedaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/assignedaccess/clear-assignedaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-AssignedAccess --- diff --git a/docset/winserver2022-ps/assignedaccess/Get-AssignedAccess.md b/docset/winserver2022-ps/assignedaccess/Get-AssignedAccess.md index acb598c6d8..3fb913e3c6 100644 --- a/docset/winserver2022-ps/assignedaccess/Get-AssignedAccess.md +++ b/docset/winserver2022-ps/assignedaccess/Get-AssignedAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: AssignedAccess-help.xml Module Name: AssignedAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/assignedaccess/get-assignedaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/assignedaccess/get-assignedaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AssignedAccess --- diff --git a/docset/winserver2022-ps/assignedaccess/Set-AssignedAccess.md b/docset/winserver2022-ps/assignedaccess/Set-AssignedAccess.md index 7a37bd5b0b..968909e43d 100644 --- a/docset/winserver2022-ps/assignedaccess/Set-AssignedAccess.md +++ b/docset/winserver2022-ps/assignedaccess/Set-AssignedAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: AssignedAccess-help.xml Module Name: AssignedAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/assignedaccess/set-assignedaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/assignedaccess/set-assignedaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AssignedAccess --- diff --git a/docset/winserver2022-ps/bestpractices/Get-BpaModel.md b/docset/winserver2022-ps/bestpractices/Get-BpaModel.md index dbb266c1a4..0b7c8e6547 100644 --- a/docset/winserver2022-ps/bestpractices/Get-BpaModel.md +++ b/docset/winserver2022-ps/bestpractices/Get-BpaModel.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.BestPractices.Cmdlets.dll-Help.xml Module Name: BestPractices ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/bestpractices/get-bpamodel?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bestpractices/get-bpamodel?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BpaModel --- diff --git a/docset/winserver2022-ps/bestpractices/Get-BpaResult.md b/docset/winserver2022-ps/bestpractices/Get-BpaResult.md index 347836c31b..1765b2db4a 100644 --- a/docset/winserver2022-ps/bestpractices/Get-BpaResult.md +++ b/docset/winserver2022-ps/bestpractices/Get-BpaResult.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.BestPractices.Cmdlets.dll-Help.xml Module Name: BestPractices ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/bestpractices/get-bparesult?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bestpractices/get-bparesult?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BpaResult --- diff --git a/docset/winserver2022-ps/bestpractices/Invoke-BpaModel.md b/docset/winserver2022-ps/bestpractices/Invoke-BpaModel.md index 126b0bb8f1..f763cb84c6 100644 --- a/docset/winserver2022-ps/bestpractices/Invoke-BpaModel.md +++ b/docset/winserver2022-ps/bestpractices/Invoke-BpaModel.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.BestPractices.Cmdlets.dll-Help.xml Module Name: BestPractices ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/bestpractices/invoke-bpamodel?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bestpractices/invoke-bpamodel?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-BpaModel --- diff --git a/docset/winserver2022-ps/bestpractices/Set-BpaResult.md b/docset/winserver2022-ps/bestpractices/Set-BpaResult.md index a06982a44b..3306f31388 100644 --- a/docset/winserver2022-ps/bestpractices/Set-BpaResult.md +++ b/docset/winserver2022-ps/bestpractices/Set-BpaResult.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.BestPractices.Cmdlets.dll-Help.xml Module Name: BestPractices ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/bestpractices/set-bparesult?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bestpractices/set-bparesult?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-BpaResult --- diff --git a/docset/winserver2022-ps/bitlocker/Add-BitLockerKeyProtector.md b/docset/winserver2022-ps/bitlocker/Add-BitLockerKeyProtector.md index d8b1065d6e..8c3aec7fa9 100644 --- a/docset/winserver2022-ps/bitlocker/Add-BitLockerKeyProtector.md +++ b/docset/winserver2022-ps/bitlocker/Add-BitLockerKeyProtector.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BitLocker-help.xml Module Name: BitLocker ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitlocker/add-bitlockerkeyprotector?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/add-bitlockerkeyprotector?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-BitLockerKeyProtector --- diff --git a/docset/winserver2022-ps/bitlocker/Backup-BitLockerKeyProtector.md b/docset/winserver2022-ps/bitlocker/Backup-BitLockerKeyProtector.md index dfa5b63e70..c7e9e44e74 100644 --- a/docset/winserver2022-ps/bitlocker/Backup-BitLockerKeyProtector.md +++ b/docset/winserver2022-ps/bitlocker/Backup-BitLockerKeyProtector.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BitLocker-help.xml Module Name: BitLocker ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitlocker/backup-bitlockerkeyprotector?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/backup-bitlockerkeyprotector?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Backup-BitLockerKeyProtector --- diff --git a/docset/winserver2022-ps/bitlocker/BackupToAAD-BitLockerKeyProtector.md b/docset/winserver2022-ps/bitlocker/BackupToAAD-BitLockerKeyProtector.md index 32206a1b04..f5ad8318a3 100644 --- a/docset/winserver2022-ps/bitlocker/BackupToAAD-BitLockerKeyProtector.md +++ b/docset/winserver2022-ps/bitlocker/BackupToAAD-BitLockerKeyProtector.md @@ -1,7 +1,6 @@ --- external help file: BitLocker-help.xml Module Name: bitlocker -online version: schema: 2.0.0 --- diff --git a/docset/winserver2022-ps/bitlocker/Clear-BitLockerAutoUnlock.md b/docset/winserver2022-ps/bitlocker/Clear-BitLockerAutoUnlock.md index c1116b7f03..89cad7d11e 100644 --- a/docset/winserver2022-ps/bitlocker/Clear-BitLockerAutoUnlock.md +++ b/docset/winserver2022-ps/bitlocker/Clear-BitLockerAutoUnlock.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BitLocker-help.xml Module Name: BitLocker ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitlocker/clear-bitlockerautounlock?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/clear-bitlockerautounlock?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-BitLockerAutoUnlock --- diff --git a/docset/winserver2022-ps/bitlocker/Disable-BitLocker.md b/docset/winserver2022-ps/bitlocker/Disable-BitLocker.md index e3864d5081..dc936b75bb 100644 --- a/docset/winserver2022-ps/bitlocker/Disable-BitLocker.md +++ b/docset/winserver2022-ps/bitlocker/Disable-BitLocker.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BitLocker-help.xml Module Name: BitLocker ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitlocker/disable-bitlocker?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/disable-bitlocker?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-BitLocker --- diff --git a/docset/winserver2022-ps/bitlocker/Disable-BitLockerAutoUnlock.md b/docset/winserver2022-ps/bitlocker/Disable-BitLockerAutoUnlock.md index b564ae8c6c..51267f885d 100644 --- a/docset/winserver2022-ps/bitlocker/Disable-BitLockerAutoUnlock.md +++ b/docset/winserver2022-ps/bitlocker/Disable-BitLockerAutoUnlock.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BitLocker-help.xml Module Name: BitLocker ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitlocker/disable-bitlockerautounlock?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/disable-bitlockerautounlock?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-BitLockerAutoUnlock --- diff --git a/docset/winserver2022-ps/bitlocker/Enable-BitLocker.md b/docset/winserver2022-ps/bitlocker/Enable-BitLocker.md index d2b4ab071f..eecff8ce70 100644 --- a/docset/winserver2022-ps/bitlocker/Enable-BitLocker.md +++ b/docset/winserver2022-ps/bitlocker/Enable-BitLocker.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BitLocker-help.xml Module Name: BitLocker ms.date: 12/14/2021 -online version: https://docs.microsoft.com/powershell/module/bitlocker/enable-bitlocker?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/enable-bitlocker?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-BitLocker --- diff --git a/docset/winserver2022-ps/bitlocker/Enable-BitLockerAutoUnlock.md b/docset/winserver2022-ps/bitlocker/Enable-BitLockerAutoUnlock.md index 9af8966cfd..eef616056e 100644 --- a/docset/winserver2022-ps/bitlocker/Enable-BitLockerAutoUnlock.md +++ b/docset/winserver2022-ps/bitlocker/Enable-BitLockerAutoUnlock.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BitLocker-help.xml Module Name: BitLocker ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitlocker/enable-bitlockerautounlock?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/enable-bitlockerautounlock?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-BitLockerAutoUnlock --- diff --git a/docset/winserver2022-ps/bitlocker/Get-BitLockerVolume.md b/docset/winserver2022-ps/bitlocker/Get-BitLockerVolume.md index f474ef1e8d..599c985c6a 100644 --- a/docset/winserver2022-ps/bitlocker/Get-BitLockerVolume.md +++ b/docset/winserver2022-ps/bitlocker/Get-BitLockerVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BitLocker-help.xml Module Name: BitLocker ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitlocker/get-bitlockervolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/get-bitlockervolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BitLockerVolume --- diff --git a/docset/winserver2022-ps/bitlocker/Lock-BitLocker.md b/docset/winserver2022-ps/bitlocker/Lock-BitLocker.md index 77ad58157b..508d895a72 100644 --- a/docset/winserver2022-ps/bitlocker/Lock-BitLocker.md +++ b/docset/winserver2022-ps/bitlocker/Lock-BitLocker.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BitLocker-help.xml Module Name: BitLocker ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitlocker/lock-bitlocker?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/lock-bitlocker?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Lock-BitLocker --- diff --git a/docset/winserver2022-ps/bitlocker/Remove-BitLockerKeyProtector.md b/docset/winserver2022-ps/bitlocker/Remove-BitLockerKeyProtector.md index 49ba0b7b48..2b32309953 100644 --- a/docset/winserver2022-ps/bitlocker/Remove-BitLockerKeyProtector.md +++ b/docset/winserver2022-ps/bitlocker/Remove-BitLockerKeyProtector.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BitLocker-help.xml Module Name: BitLocker ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitlocker/remove-bitlockerkeyprotector?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/remove-bitlockerkeyprotector?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-BitLockerKeyProtector --- diff --git a/docset/winserver2022-ps/bitlocker/Resume-BitLocker.md b/docset/winserver2022-ps/bitlocker/Resume-BitLocker.md index aa979a5c64..466a38044a 100644 --- a/docset/winserver2022-ps/bitlocker/Resume-BitLocker.md +++ b/docset/winserver2022-ps/bitlocker/Resume-BitLocker.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BitLocker-help.xml Module Name: BitLocker ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitlocker/resume-bitlocker?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/resume-bitlocker?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-BitLocker --- diff --git a/docset/winserver2022-ps/bitlocker/Suspend-BitLocker.md b/docset/winserver2022-ps/bitlocker/Suspend-BitLocker.md index ae7902c48b..c2bce6d54a 100644 --- a/docset/winserver2022-ps/bitlocker/Suspend-BitLocker.md +++ b/docset/winserver2022-ps/bitlocker/Suspend-BitLocker.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BitLocker-help.xml Module Name: BitLocker ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitlocker/suspend-bitlocker?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/suspend-bitlocker?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-BitLocker --- diff --git a/docset/winserver2022-ps/bitlocker/Unlock-BitLocker.md b/docset/winserver2022-ps/bitlocker/Unlock-BitLocker.md index f0013b17ab..cfb145f21c 100644 --- a/docset/winserver2022-ps/bitlocker/Unlock-BitLocker.md +++ b/docset/winserver2022-ps/bitlocker/Unlock-BitLocker.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BitLocker-help.xml Module Name: BitLocker ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitlocker/unlock-bitlocker?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitlocker/unlock-bitlocker?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unlock-BitLocker --- diff --git a/docset/winserver2022-ps/bitstransfer/Add-BitsFile.md b/docset/winserver2022-ps/bitstransfer/Add-BitsFile.md index a354f3c313..f380d43e1a 100644 --- a/docset/winserver2022-ps/bitstransfer/Add-BitsFile.md +++ b/docset/winserver2022-ps/bitstransfer/Add-BitsFile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.BackgroundIntelligentTransfer.Management.dll-Help.xml Module Name: BitsTransfer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitstransfer/add-bitsfile?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitstransfer/add-bitsfile?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-BitsFile --- diff --git a/docset/winserver2022-ps/bitstransfer/Complete-BitsTransfer.md b/docset/winserver2022-ps/bitstransfer/Complete-BitsTransfer.md index c6bf922fe2..d13641ae02 100644 --- a/docset/winserver2022-ps/bitstransfer/Complete-BitsTransfer.md +++ b/docset/winserver2022-ps/bitstransfer/Complete-BitsTransfer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.BackgroundIntelligentTransfer.Management.dll-Help.xml Module Name: BitsTransfer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitstransfer/complete-bitstransfer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitstransfer/complete-bitstransfer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Complete-BitsTransfer --- diff --git a/docset/winserver2022-ps/bitstransfer/Get-BitsTransfer.md b/docset/winserver2022-ps/bitstransfer/Get-BitsTransfer.md index d700998c61..3a1f4a1062 100644 --- a/docset/winserver2022-ps/bitstransfer/Get-BitsTransfer.md +++ b/docset/winserver2022-ps/bitstransfer/Get-BitsTransfer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.BackgroundIntelligentTransfer.Management.dll-Help.xml Module Name: BitsTransfer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitstransfer/get-bitstransfer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitstransfer/get-bitstransfer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BitsTransfer --- diff --git a/docset/winserver2022-ps/bitstransfer/Remove-BitsTransfer.md b/docset/winserver2022-ps/bitstransfer/Remove-BitsTransfer.md index 729e8cdec7..9b398f547c 100644 --- a/docset/winserver2022-ps/bitstransfer/Remove-BitsTransfer.md +++ b/docset/winserver2022-ps/bitstransfer/Remove-BitsTransfer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.BackgroundIntelligentTransfer.Management.dll-Help.xml Module Name: BitsTransfer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitstransfer/remove-bitstransfer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitstransfer/remove-bitstransfer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-BitsTransfer --- diff --git a/docset/winserver2022-ps/bitstransfer/Resume-BitsTransfer.md b/docset/winserver2022-ps/bitstransfer/Resume-BitsTransfer.md index ae7432c9a9..7b1efde275 100644 --- a/docset/winserver2022-ps/bitstransfer/Resume-BitsTransfer.md +++ b/docset/winserver2022-ps/bitstransfer/Resume-BitsTransfer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.BackgroundIntelligentTransfer.Management.dll-Help.xml Module Name: BitsTransfer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitstransfer/resume-bitstransfer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitstransfer/resume-bitstransfer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-BitsTransfer --- diff --git a/docset/winserver2022-ps/bitstransfer/Set-BitsTransfer.md b/docset/winserver2022-ps/bitstransfer/Set-BitsTransfer.md index e511e72f69..962bb2c75a 100644 --- a/docset/winserver2022-ps/bitstransfer/Set-BitsTransfer.md +++ b/docset/winserver2022-ps/bitstransfer/Set-BitsTransfer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.BackgroundIntelligentTransfer.Management.dll-Help.xml Module Name: BitsTransfer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitstransfer/set-bitstransfer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitstransfer/set-bitstransfer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-BitsTransfer --- diff --git a/docset/winserver2022-ps/bitstransfer/Start-BitsTransfer.md b/docset/winserver2022-ps/bitstransfer/Start-BitsTransfer.md index 7d343a2874..1b6f6d745a 100644 --- a/docset/winserver2022-ps/bitstransfer/Start-BitsTransfer.md +++ b/docset/winserver2022-ps/bitstransfer/Start-BitsTransfer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.BackgroundIntelligentTransfer.Management.dll-Help.xml Module Name: BitsTransfer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitstransfer/start-bitstransfer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitstransfer/start-bitstransfer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-BitsTransfer --- diff --git a/docset/winserver2022-ps/bitstransfer/Suspend-BitsTransfer.md b/docset/winserver2022-ps/bitstransfer/Suspend-BitsTransfer.md index b79c95d5af..d7ad8ee3ea 100644 --- a/docset/winserver2022-ps/bitstransfer/Suspend-BitsTransfer.md +++ b/docset/winserver2022-ps/bitstransfer/Suspend-BitsTransfer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.BackgroundIntelligentTransfer.Management.dll-Help.xml Module Name: BitsTransfer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/bitstransfer/suspend-bitstransfer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/bitstransfer/suspend-bitstransfer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-BitsTransfer --- diff --git a/docset/winserver2022-ps/booteventcollector/Checkpoint-SbecActiveConfig.md b/docset/winserver2022-ps/booteventcollector/Checkpoint-SbecActiveConfig.md index f6a1e4acab..2565660bfb 100644 --- a/docset/winserver2022-ps/booteventcollector/Checkpoint-SbecActiveConfig.md +++ b/docset/winserver2022-ps/booteventcollector/Checkpoint-SbecActiveConfig.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/checkpoint-sbecactiveconfig?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/checkpoint-sbecactiveconfig?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Checkpoint-SbecActiveConfig --- diff --git a/docset/winserver2022-ps/booteventcollector/Clear-SbecProviderCache.md b/docset/winserver2022-ps/booteventcollector/Clear-SbecProviderCache.md index 20ab703be5..9f6a6ac6a8 100644 --- a/docset/winserver2022-ps/booteventcollector/Clear-SbecProviderCache.md +++ b/docset/winserver2022-ps/booteventcollector/Clear-SbecProviderCache.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/clear-sbecprovidercache?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/clear-sbecprovidercache?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-SbecProviderCache --- diff --git a/docset/winserver2022-ps/booteventcollector/Disable-SbecAutologger.md b/docset/winserver2022-ps/booteventcollector/Disable-SbecAutologger.md index 68c8092d00..1cc2336663 100644 --- a/docset/winserver2022-ps/booteventcollector/Disable-SbecAutologger.md +++ b/docset/winserver2022-ps/booteventcollector/Disable-SbecAutologger.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/disable-sbecautologger?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/disable-sbecautologger?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-SbecAutologger --- diff --git a/docset/winserver2022-ps/booteventcollector/Disable-SbecBcd.md b/docset/winserver2022-ps/booteventcollector/Disable-SbecBcd.md index 65f253ae0b..a60968cd42 100644 --- a/docset/winserver2022-ps/booteventcollector/Disable-SbecBcd.md +++ b/docset/winserver2022-ps/booteventcollector/Disable-SbecBcd.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/disable-sbecbcd?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/disable-sbecbcd?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-SbecBcd --- diff --git a/docset/winserver2022-ps/booteventcollector/Enable-SbecAutologger.md b/docset/winserver2022-ps/booteventcollector/Enable-SbecAutologger.md index 6feae95978..11273ec288 100644 --- a/docset/winserver2022-ps/booteventcollector/Enable-SbecAutologger.md +++ b/docset/winserver2022-ps/booteventcollector/Enable-SbecAutologger.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/enable-sbecautologger?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/enable-sbecautologger?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-SbecAutologger --- diff --git a/docset/winserver2022-ps/booteventcollector/Enable-SbecBcd.md b/docset/winserver2022-ps/booteventcollector/Enable-SbecBcd.md index cd9d629ffa..2f364eacfb 100644 --- a/docset/winserver2022-ps/booteventcollector/Enable-SbecBcd.md +++ b/docset/winserver2022-ps/booteventcollector/Enable-SbecBcd.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/enable-sbecbcd?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/enable-sbecbcd?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-SbecBcd --- diff --git a/docset/winserver2022-ps/booteventcollector/Enable-SbecBootImage.md b/docset/winserver2022-ps/booteventcollector/Enable-SbecBootImage.md index ff068dfa85..fee97a6d45 100644 --- a/docset/winserver2022-ps/booteventcollector/Enable-SbecBootImage.md +++ b/docset/winserver2022-ps/booteventcollector/Enable-SbecBootImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/enable-sbecbootimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/enable-sbecbootimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-SbecBootImage --- diff --git a/docset/winserver2022-ps/booteventcollector/Enable-SbecWdsBcd.md b/docset/winserver2022-ps/booteventcollector/Enable-SbecWdsBcd.md index b57fd31d24..bd1a4b80de 100644 --- a/docset/winserver2022-ps/booteventcollector/Enable-SbecWdsBcd.md +++ b/docset/winserver2022-ps/booteventcollector/Enable-SbecWdsBcd.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/enable-sbecwdsbcd?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/enable-sbecwdsbcd?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-SbecWdsBcd --- diff --git a/docset/winserver2022-ps/booteventcollector/Get-SbecActiveConfig.md b/docset/winserver2022-ps/booteventcollector/Get-SbecActiveConfig.md index 9f6f89e34e..9636a949a7 100644 --- a/docset/winserver2022-ps/booteventcollector/Get-SbecActiveConfig.md +++ b/docset/winserver2022-ps/booteventcollector/Get-SbecActiveConfig.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/get-sbecactiveconfig?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/get-sbecactiveconfig?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SbecActiveConfig --- diff --git a/docset/winserver2022-ps/booteventcollector/Get-SbecBackupConfig.md b/docset/winserver2022-ps/booteventcollector/Get-SbecBackupConfig.md index 6cf967e743..2d3a6aa476 100644 --- a/docset/winserver2022-ps/booteventcollector/Get-SbecBackupConfig.md +++ b/docset/winserver2022-ps/booteventcollector/Get-SbecBackupConfig.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/get-sbecbackupconfig?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/get-sbecbackupconfig?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SbecBackupConfig --- diff --git a/docset/winserver2022-ps/booteventcollector/Get-SbecDestination.md b/docset/winserver2022-ps/booteventcollector/Get-SbecDestination.md index 09664e2967..cef4d18091 100644 --- a/docset/winserver2022-ps/booteventcollector/Get-SbecDestination.md +++ b/docset/winserver2022-ps/booteventcollector/Get-SbecDestination.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/get-sbecdestination?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/get-sbecdestination?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SbecDestination --- diff --git a/docset/winserver2022-ps/booteventcollector/Get-SbecForwarding.md b/docset/winserver2022-ps/booteventcollector/Get-SbecForwarding.md index fc078226cc..822293198d 100644 --- a/docset/winserver2022-ps/booteventcollector/Get-SbecForwarding.md +++ b/docset/winserver2022-ps/booteventcollector/Get-SbecForwarding.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/get-sbecforwarding?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/get-sbecforwarding?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SbecForwarding --- diff --git a/docset/winserver2022-ps/booteventcollector/Get-SbecHistory.md b/docset/winserver2022-ps/booteventcollector/Get-SbecHistory.md index 1eda0d6420..21558e5388 100644 --- a/docset/winserver2022-ps/booteventcollector/Get-SbecHistory.md +++ b/docset/winserver2022-ps/booteventcollector/Get-SbecHistory.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/get-sbechistory?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/get-sbechistory?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SbecHistory --- diff --git a/docset/winserver2022-ps/booteventcollector/Get-SbecLocalizedMessage.md b/docset/winserver2022-ps/booteventcollector/Get-SbecLocalizedMessage.md index 7f99b5fad5..cf5bf8c9b5 100644 --- a/docset/winserver2022-ps/booteventcollector/Get-SbecLocalizedMessage.md +++ b/docset/winserver2022-ps/booteventcollector/Get-SbecLocalizedMessage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/get-sbeclocalizedmessage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/get-sbeclocalizedmessage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SbecLocalizedMessage --- diff --git a/docset/winserver2022-ps/booteventcollector/Get-SbecLogSession.md b/docset/winserver2022-ps/booteventcollector/Get-SbecLogSession.md index 3c9bf6c8e8..9da5117392 100644 --- a/docset/winserver2022-ps/booteventcollector/Get-SbecLogSession.md +++ b/docset/winserver2022-ps/booteventcollector/Get-SbecLogSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/get-sbeclogsession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/get-sbeclogsession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SbecLogSession --- diff --git a/docset/winserver2022-ps/booteventcollector/Get-SbecTraceProviders.md b/docset/winserver2022-ps/booteventcollector/Get-SbecTraceProviders.md index ef408ae9f0..4ce84f8a0d 100644 --- a/docset/winserver2022-ps/booteventcollector/Get-SbecTraceProviders.md +++ b/docset/winserver2022-ps/booteventcollector/Get-SbecTraceProviders.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/get-sbectraceproviders?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/get-sbectraceproviders?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SbecTraceProviders --- diff --git a/docset/winserver2022-ps/booteventcollector/New-SbecUnattendFragment.md b/docset/winserver2022-ps/booteventcollector/New-SbecUnattendFragment.md index 169af54c69..2990e7d098 100644 --- a/docset/winserver2022-ps/booteventcollector/New-SbecUnattendFragment.md +++ b/docset/winserver2022-ps/booteventcollector/New-SbecUnattendFragment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/new-sbecunattendfragment?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/new-sbecunattendfragment?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-SbecUnattendFragment --- diff --git a/docset/winserver2022-ps/booteventcollector/Redo-SbecActiveConfig.md b/docset/winserver2022-ps/booteventcollector/Redo-SbecActiveConfig.md index 0da851caff..1735251fd6 100644 --- a/docset/winserver2022-ps/booteventcollector/Redo-SbecActiveConfig.md +++ b/docset/winserver2022-ps/booteventcollector/Redo-SbecActiveConfig.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/redo-sbecactiveconfig?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/redo-sbecactiveconfig?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Redo-SbecActiveConfig --- diff --git a/docset/winserver2022-ps/booteventcollector/Restore-SbecBackupConfig.md b/docset/winserver2022-ps/booteventcollector/Restore-SbecBackupConfig.md index 777f470293..9524abf873 100644 --- a/docset/winserver2022-ps/booteventcollector/Restore-SbecBackupConfig.md +++ b/docset/winserver2022-ps/booteventcollector/Restore-SbecBackupConfig.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/restore-sbecbackupconfig?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/restore-sbecbackupconfig?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-SbecBackupConfig --- diff --git a/docset/winserver2022-ps/booteventcollector/Save-SbecInstance.md b/docset/winserver2022-ps/booteventcollector/Save-SbecInstance.md index a2a28f16fc..4584188c2a 100644 --- a/docset/winserver2022-ps/booteventcollector/Save-SbecInstance.md +++ b/docset/winserver2022-ps/booteventcollector/Save-SbecInstance.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/save-sbecinstance?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/save-sbecinstance?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Save-SbecInstance --- diff --git a/docset/winserver2022-ps/booteventcollector/Save-SbecLogSession.md b/docset/winserver2022-ps/booteventcollector/Save-SbecLogSession.md index 4a39fcd27b..6df956d71e 100644 --- a/docset/winserver2022-ps/booteventcollector/Save-SbecLogSession.md +++ b/docset/winserver2022-ps/booteventcollector/Save-SbecLogSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/save-sbeclogsession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/save-sbeclogsession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Save-SbecLogSession --- diff --git a/docset/winserver2022-ps/booteventcollector/Set-SbecActiveConfig.md b/docset/winserver2022-ps/booteventcollector/Set-SbecActiveConfig.md index f5da07f0ab..8f1e04d477 100644 --- a/docset/winserver2022-ps/booteventcollector/Set-SbecActiveConfig.md +++ b/docset/winserver2022-ps/booteventcollector/Set-SbecActiveConfig.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/set-sbecactiveconfig?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/set-sbecactiveconfig?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SbecActiveConfig --- diff --git a/docset/winserver2022-ps/booteventcollector/Set-SbecLogSession.md b/docset/winserver2022-ps/booteventcollector/Set-SbecLogSession.md index 7404e598a2..2393d36252 100644 --- a/docset/winserver2022-ps/booteventcollector/Set-SbecLogSession.md +++ b/docset/winserver2022-ps/booteventcollector/Set-SbecLogSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/set-sbeclogsession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/set-sbeclogsession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SbecLogSession --- diff --git a/docset/winserver2022-ps/booteventcollector/Start-SbecInstance.md b/docset/winserver2022-ps/booteventcollector/Start-SbecInstance.md index 6cf505142e..7b267b1c65 100644 --- a/docset/winserver2022-ps/booteventcollector/Start-SbecInstance.md +++ b/docset/winserver2022-ps/booteventcollector/Start-SbecInstance.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/start-sbecinstance?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/start-sbecinstance?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-SbecInstance --- diff --git a/docset/winserver2022-ps/booteventcollector/Start-SbecLogSession.md b/docset/winserver2022-ps/booteventcollector/Start-SbecLogSession.md index af9982da56..028504bef6 100644 --- a/docset/winserver2022-ps/booteventcollector/Start-SbecLogSession.md +++ b/docset/winserver2022-ps/booteventcollector/Start-SbecLogSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/start-sbeclogsession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/start-sbeclogsession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-SbecLogSession --- diff --git a/docset/winserver2022-ps/booteventcollector/Start-SbecNtKernelLogSession.md b/docset/winserver2022-ps/booteventcollector/Start-SbecNtKernelLogSession.md index 27da4c9cd8..86c1df2c9c 100644 --- a/docset/winserver2022-ps/booteventcollector/Start-SbecNtKernelLogSession.md +++ b/docset/winserver2022-ps/booteventcollector/Start-SbecNtKernelLogSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/start-sbecntkernellogsession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/start-sbecntkernellogsession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-SbecNtKernelLogSession --- diff --git a/docset/winserver2022-ps/booteventcollector/Start-SbecSimpleLogSession.md b/docset/winserver2022-ps/booteventcollector/Start-SbecSimpleLogSession.md index e3db32f972..b663ffc4f1 100644 --- a/docset/winserver2022-ps/booteventcollector/Start-SbecSimpleLogSession.md +++ b/docset/winserver2022-ps/booteventcollector/Start-SbecSimpleLogSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/start-sbecsimplelogsession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/start-sbecsimplelogsession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-SbecSimpleLogSession --- diff --git a/docset/winserver2022-ps/booteventcollector/Stop-SbecInstance.md b/docset/winserver2022-ps/booteventcollector/Stop-SbecInstance.md index 73161ea48c..7b9c6b8a59 100644 --- a/docset/winserver2022-ps/booteventcollector/Stop-SbecInstance.md +++ b/docset/winserver2022-ps/booteventcollector/Stop-SbecInstance.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/stop-sbecinstance?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/stop-sbecinstance?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-SbecInstance --- diff --git a/docset/winserver2022-ps/booteventcollector/Stop-SbecLogSession.md b/docset/winserver2022-ps/booteventcollector/Stop-SbecLogSession.md index 27404c364d..d17783281b 100644 --- a/docset/winserver2022-ps/booteventcollector/Stop-SbecLogSession.md +++ b/docset/winserver2022-ps/booteventcollector/Stop-SbecLogSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/stop-sbeclogsession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/stop-sbeclogsession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-SbecLogSession --- diff --git a/docset/winserver2022-ps/booteventcollector/Test-SbecActiveConfig.md b/docset/winserver2022-ps/booteventcollector/Test-SbecActiveConfig.md index e38f4c3205..88936b828b 100644 --- a/docset/winserver2022-ps/booteventcollector/Test-SbecActiveConfig.md +++ b/docset/winserver2022-ps/booteventcollector/Test-SbecActiveConfig.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/test-sbecactiveconfig?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/test-sbecactiveconfig?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-SbecActiveConfig --- diff --git a/docset/winserver2022-ps/booteventcollector/Test-SbecConfig.md b/docset/winserver2022-ps/booteventcollector/Test-SbecConfig.md index 216d379761..04ca770ab5 100644 --- a/docset/winserver2022-ps/booteventcollector/Test-SbecConfig.md +++ b/docset/winserver2022-ps/booteventcollector/Test-SbecConfig.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/test-sbecconfig?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/test-sbecconfig?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-SbecConfig --- diff --git a/docset/winserver2022-ps/booteventcollector/Undo-SbecActiveConfig.md b/docset/winserver2022-ps/booteventcollector/Undo-SbecActiveConfig.md index ad50f4ff92..faa4093dec 100644 --- a/docset/winserver2022-ps/booteventcollector/Undo-SbecActiveConfig.md +++ b/docset/winserver2022-ps/booteventcollector/Undo-SbecActiveConfig.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BootEventCollector-help.xml Module Name: BootEventCollector ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/booteventcollector/undo-sbecactiveconfig?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/booteventcollector/undo-sbecactiveconfig?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Undo-SbecActiveConfig --- diff --git a/docset/winserver2022-ps/branchcache/Add-BCDataCacheExtension.md b/docset/winserver2022-ps/branchcache/Add-BCDataCacheExtension.md index e191358895..60b975b7ab 100644 --- a/docset/winserver2022-ps/branchcache/Add-BCDataCacheExtension.md +++ b/docset/winserver2022-ps/branchcache/Add-BCDataCacheExtension.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/add-bcdatacacheextension?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/add-bcdatacacheextension?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-BCDataCacheExtension --- diff --git a/docset/winserver2022-ps/branchcache/Clear-BCCache.md b/docset/winserver2022-ps/branchcache/Clear-BCCache.md index de18d3b495..f0ab1b16b2 100644 --- a/docset/winserver2022-ps/branchcache/Clear-BCCache.md +++ b/docset/winserver2022-ps/branchcache/Clear-BCCache.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/clear-bccache?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/clear-bccache?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-BCCache --- diff --git a/docset/winserver2022-ps/branchcache/Disable-BC.md b/docset/winserver2022-ps/branchcache/Disable-BC.md index cbb9310fe8..5cf92cfdc7 100644 --- a/docset/winserver2022-ps/branchcache/Disable-BC.md +++ b/docset/winserver2022-ps/branchcache/Disable-BC.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/disable-bc?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/disable-bc?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-BC --- diff --git a/docset/winserver2022-ps/branchcache/Disable-BCDowngrading.md b/docset/winserver2022-ps/branchcache/Disable-BCDowngrading.md index fdc8d35d73..ff38c26e00 100644 --- a/docset/winserver2022-ps/branchcache/Disable-BCDowngrading.md +++ b/docset/winserver2022-ps/branchcache/Disable-BCDowngrading.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/disable-bcdowngrading?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/disable-bcdowngrading?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-BCDowngrading --- diff --git a/docset/winserver2022-ps/branchcache/Disable-BCServeOnBattery.md b/docset/winserver2022-ps/branchcache/Disable-BCServeOnBattery.md index ab8bc5803b..62c0786331 100644 --- a/docset/winserver2022-ps/branchcache/Disable-BCServeOnBattery.md +++ b/docset/winserver2022-ps/branchcache/Disable-BCServeOnBattery.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/disable-bcserveonbattery?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/disable-bcserveonbattery?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-BCServeOnBattery --- diff --git a/docset/winserver2022-ps/branchcache/Enable-BCDistributed.md b/docset/winserver2022-ps/branchcache/Enable-BCDistributed.md index b9fc4769d4..7d74266c44 100644 --- a/docset/winserver2022-ps/branchcache/Enable-BCDistributed.md +++ b/docset/winserver2022-ps/branchcache/Enable-BCDistributed.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/enable-bcdistributed?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/enable-bcdistributed?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-BCDistributed --- diff --git a/docset/winserver2022-ps/branchcache/Enable-BCDowngrading.md b/docset/winserver2022-ps/branchcache/Enable-BCDowngrading.md index 8cab9d5801..c753a79d6d 100644 --- a/docset/winserver2022-ps/branchcache/Enable-BCDowngrading.md +++ b/docset/winserver2022-ps/branchcache/Enable-BCDowngrading.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/enable-bcdowngrading?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/enable-bcdowngrading?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-BCDowngrading --- diff --git a/docset/winserver2022-ps/branchcache/Enable-BCHostedClient.md b/docset/winserver2022-ps/branchcache/Enable-BCHostedClient.md index 801822c8ba..ad34148cb5 100644 --- a/docset/winserver2022-ps/branchcache/Enable-BCHostedClient.md +++ b/docset/winserver2022-ps/branchcache/Enable-BCHostedClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/enable-bchostedclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/enable-bchostedclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-BCHostedClient --- diff --git a/docset/winserver2022-ps/branchcache/Enable-BCHostedServer.md b/docset/winserver2022-ps/branchcache/Enable-BCHostedServer.md index 04c0e39fa0..f4a0083ed9 100644 --- a/docset/winserver2022-ps/branchcache/Enable-BCHostedServer.md +++ b/docset/winserver2022-ps/branchcache/Enable-BCHostedServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/enable-bchostedserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/enable-bchostedserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-BCHostedServer --- diff --git a/docset/winserver2022-ps/branchcache/Enable-BCLocal.md b/docset/winserver2022-ps/branchcache/Enable-BCLocal.md index 60bfe7e331..a57b84de46 100644 --- a/docset/winserver2022-ps/branchcache/Enable-BCLocal.md +++ b/docset/winserver2022-ps/branchcache/Enable-BCLocal.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/enable-bclocal?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/enable-bclocal?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-BCLocal --- diff --git a/docset/winserver2022-ps/branchcache/Enable-BCServeOnBattery.md b/docset/winserver2022-ps/branchcache/Enable-BCServeOnBattery.md index 4f312e8b25..94677d9b2a 100644 --- a/docset/winserver2022-ps/branchcache/Enable-BCServeOnBattery.md +++ b/docset/winserver2022-ps/branchcache/Enable-BCServeOnBattery.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/enable-bcserveonbattery?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/enable-bcserveonbattery?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-BCServeOnBattery --- diff --git a/docset/winserver2022-ps/branchcache/Export-BCCachePackage.md b/docset/winserver2022-ps/branchcache/Export-BCCachePackage.md index 0b0100c969..c67c4986f5 100644 --- a/docset/winserver2022-ps/branchcache/Export-BCCachePackage.md +++ b/docset/winserver2022-ps/branchcache/Export-BCCachePackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/export-bccachepackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/export-bccachepackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-BCCachePackage --- diff --git a/docset/winserver2022-ps/branchcache/Export-BCSecretKey.md b/docset/winserver2022-ps/branchcache/Export-BCSecretKey.md index cf9a16d20e..425ea19f0f 100644 --- a/docset/winserver2022-ps/branchcache/Export-BCSecretKey.md +++ b/docset/winserver2022-ps/branchcache/Export-BCSecretKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/export-bcsecretkey?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/export-bcsecretkey?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-BCSecretKey --- diff --git a/docset/winserver2022-ps/branchcache/Get-BCClientConfiguration.md b/docset/winserver2022-ps/branchcache/Get-BCClientConfiguration.md index 7b890831ca..537ac91a30 100644 --- a/docset/winserver2022-ps/branchcache/Get-BCClientConfiguration.md +++ b/docset/winserver2022-ps/branchcache/Get-BCClientConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheClientSettingData.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/get-bcclientconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/get-bcclientconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BCClientConfiguration --- diff --git a/docset/winserver2022-ps/branchcache/Get-BCContentServerConfiguration.md b/docset/winserver2022-ps/branchcache/Get-BCContentServerConfiguration.md index 36047e8c41..6fb6280df0 100644 --- a/docset/winserver2022-ps/branchcache/Get-BCContentServerConfiguration.md +++ b/docset/winserver2022-ps/branchcache/Get-BCContentServerConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheContentServerSettingData.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/get-bccontentserverconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/get-bccontentserverconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BCContentServerConfiguration --- diff --git a/docset/winserver2022-ps/branchcache/Get-BCDataCache.md b/docset/winserver2022-ps/branchcache/Get-BCDataCache.md index 69a2cacd98..452ce4263b 100644 --- a/docset/winserver2022-ps/branchcache/Get-BCDataCache.md +++ b/docset/winserver2022-ps/branchcache/Get-BCDataCache.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCachePrimaryRepublicationCacheFile.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/get-bcdatacache?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/get-bcdatacache?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BCDataCache --- diff --git a/docset/winserver2022-ps/branchcache/Get-BCDataCacheExtension.md b/docset/winserver2022-ps/branchcache/Get-BCDataCacheExtension.md index 433fb6b5b3..f07e1c2b87 100644 --- a/docset/winserver2022-ps/branchcache/Get-BCDataCacheExtension.md +++ b/docset/winserver2022-ps/branchcache/Get-BCDataCacheExtension.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheSecondaryRepublicationCacheFile.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/get-bcdatacacheextension?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/get-bcdatacacheextension?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BCDataCacheExtension --- diff --git a/docset/winserver2022-ps/branchcache/Get-BCHashCache.md b/docset/winserver2022-ps/branchcache/Get-BCHashCache.md index 7fa07fc4c7..38bb64b5b1 100644 --- a/docset/winserver2022-ps/branchcache/Get-BCHashCache.md +++ b/docset/winserver2022-ps/branchcache/Get-BCHashCache.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCachePrimaryPublicationCacheFile.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/get-bchashcache?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/get-bchashcache?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BCHashCache --- diff --git a/docset/winserver2022-ps/branchcache/Get-BCHostedCacheServerConfiguration.md b/docset/winserver2022-ps/branchcache/Get-BCHostedCacheServerConfiguration.md index e1aeba0974..313192a4a2 100644 --- a/docset/winserver2022-ps/branchcache/Get-BCHostedCacheServerConfiguration.md +++ b/docset/winserver2022-ps/branchcache/Get-BCHostedCacheServerConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheHostedCacheServerSettingData.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/get-bchostedcacheserverconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/get-bchostedcacheserverconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BCHostedCacheServerConfiguration --- diff --git a/docset/winserver2022-ps/branchcache/Get-BCNetworkConfiguration.md b/docset/winserver2022-ps/branchcache/Get-BCNetworkConfiguration.md index 99597e98a9..d87284ee97 100644 --- a/docset/winserver2022-ps/branchcache/Get-BCNetworkConfiguration.md +++ b/docset/winserver2022-ps/branchcache/Get-BCNetworkConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheNetworkSettingData.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/get-bcnetworkconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/get-bcnetworkconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BCNetworkConfiguration --- diff --git a/docset/winserver2022-ps/branchcache/Get-BCStatus.md b/docset/winserver2022-ps/branchcache/Get-BCStatus.md index 912070b962..5b8cac0a0e 100644 --- a/docset/winserver2022-ps/branchcache/Get-BCStatus.md +++ b/docset/winserver2022-ps/branchcache/Get-BCStatus.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheStatus.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/get-bcstatus?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/get-bcstatus?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BCStatus --- diff --git a/docset/winserver2022-ps/branchcache/Import-BCCachePackage.md b/docset/winserver2022-ps/branchcache/Import-BCCachePackage.md index 625ca27be6..90eed9631b 100644 --- a/docset/winserver2022-ps/branchcache/Import-BCCachePackage.md +++ b/docset/winserver2022-ps/branchcache/Import-BCCachePackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/import-bccachepackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/import-bccachepackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-BCCachePackage --- diff --git a/docset/winserver2022-ps/branchcache/Import-BCSecretKey.md b/docset/winserver2022-ps/branchcache/Import-BCSecretKey.md index 6b3d7d6a7e..d484dcb301 100644 --- a/docset/winserver2022-ps/branchcache/Import-BCSecretKey.md +++ b/docset/winserver2022-ps/branchcache/Import-BCSecretKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/import-bcsecretkey?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/import-bcsecretkey?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-BCSecretKey --- diff --git a/docset/winserver2022-ps/branchcache/Publish-BCFileContent.md b/docset/winserver2022-ps/branchcache/Publish-BCFileContent.md index b0fab5ebca..a33e29aa06 100644 --- a/docset/winserver2022-ps/branchcache/Publish-BCFileContent.md +++ b/docset/winserver2022-ps/branchcache/Publish-BCFileContent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/publish-bcfilecontent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/publish-bcfilecontent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Publish-BCFileContent --- diff --git a/docset/winserver2022-ps/branchcache/Publish-BCWebContent.md b/docset/winserver2022-ps/branchcache/Publish-BCWebContent.md index 8167f4d35d..65a1e61dbc 100644 --- a/docset/winserver2022-ps/branchcache/Publish-BCWebContent.md +++ b/docset/winserver2022-ps/branchcache/Publish-BCWebContent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/publish-bcwebcontent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/publish-bcwebcontent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Publish-BCWebContent --- diff --git a/docset/winserver2022-ps/branchcache/Remove-BCDataCacheExtension.md b/docset/winserver2022-ps/branchcache/Remove-BCDataCacheExtension.md index 14d46f2b5e..32cdf13030 100644 --- a/docset/winserver2022-ps/branchcache/Remove-BCDataCacheExtension.md +++ b/docset/winserver2022-ps/branchcache/Remove-BCDataCacheExtension.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/remove-bcdatacacheextension?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/remove-bcdatacacheextension?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-BCDataCacheExtension --- diff --git a/docset/winserver2022-ps/branchcache/Reset-BC.md b/docset/winserver2022-ps/branchcache/Reset-BC.md index bf9e324607..2fa83a18d0 100644 --- a/docset/winserver2022-ps/branchcache/Reset-BC.md +++ b/docset/winserver2022-ps/branchcache/Reset-BC.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/reset-bc?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/reset-bc?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-BC --- diff --git a/docset/winserver2022-ps/branchcache/Set-BCAuthentication.md b/docset/winserver2022-ps/branchcache/Set-BCAuthentication.md index c56a9c1891..5214b89ae2 100644 --- a/docset/winserver2022-ps/branchcache/Set-BCAuthentication.md +++ b/docset/winserver2022-ps/branchcache/Set-BCAuthentication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/set-bcauthentication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/set-bcauthentication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-BCAuthentication --- diff --git a/docset/winserver2022-ps/branchcache/Set-BCCache.md b/docset/winserver2022-ps/branchcache/Set-BCCache.md index 507fbec86c..49e0352c89 100644 --- a/docset/winserver2022-ps/branchcache/Set-BCCache.md +++ b/docset/winserver2022-ps/branchcache/Set-BCCache.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/set-bccache?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/set-bccache?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-BCCache --- diff --git a/docset/winserver2022-ps/branchcache/Set-BCDataCacheEntryMaxAge.md b/docset/winserver2022-ps/branchcache/Set-BCDataCacheEntryMaxAge.md index 30e4f02792..eb18b3e4b5 100644 --- a/docset/winserver2022-ps/branchcache/Set-BCDataCacheEntryMaxAge.md +++ b/docset/winserver2022-ps/branchcache/Set-BCDataCacheEntryMaxAge.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/set-bcdatacacheentrymaxage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/set-bcdatacacheentrymaxage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-BCDataCacheEntryMaxAge --- diff --git a/docset/winserver2022-ps/branchcache/Set-BCMinSMBLatency.md b/docset/winserver2022-ps/branchcache/Set-BCMinSMBLatency.md index bbaaad7b60..a4bba41595 100644 --- a/docset/winserver2022-ps/branchcache/Set-BCMinSMBLatency.md +++ b/docset/winserver2022-ps/branchcache/Set-BCMinSMBLatency.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/set-bcminsmblatency?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/set-bcminsmblatency?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-BCMinSMBLatency --- diff --git a/docset/winserver2022-ps/branchcache/Set-BCSecretKey.md b/docset/winserver2022-ps/branchcache/Set-BCSecretKey.md index 8723576744..0fe706adc5 100644 --- a/docset/winserver2022-ps/branchcache/Set-BCSecretKey.md +++ b/docset/winserver2022-ps/branchcache/Set-BCSecretKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: BranchCacheOrchestrator.cdxml-help.xml Module Name: BranchCache ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/branchcache/set-bcsecretkey?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/branchcache/set-bcsecretkey?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-BCSecretKey --- diff --git a/docset/winserver2022-ps/clusterawareupdating/Add-CauClusterRole.md b/docset/winserver2022-ps/clusterawareupdating/Add-CauClusterRole.md index b5528fe7ad..da61571269 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Add-CauClusterRole.md +++ b/docset/winserver2022-ps/clusterawareupdating/Add-CauClusterRole.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/add-cauclusterrole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/add-cauclusterrole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-CauClusterRole --- diff --git a/docset/winserver2022-ps/clusterawareupdating/Disable-CauClusterRole.md b/docset/winserver2022-ps/clusterawareupdating/Disable-CauClusterRole.md index ba2a01b74b..ce7a7a8fd7 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Disable-CauClusterRole.md +++ b/docset/winserver2022-ps/clusterawareupdating/Disable-CauClusterRole.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/disable-cauclusterrole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/disable-cauclusterrole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-CauClusterRole --- diff --git a/docset/winserver2022-ps/clusterawareupdating/Enable-CauClusterRole.md b/docset/winserver2022-ps/clusterawareupdating/Enable-CauClusterRole.md index 216616fdf8..a768c9b259 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Enable-CauClusterRole.md +++ b/docset/winserver2022-ps/clusterawareupdating/Enable-CauClusterRole.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/enable-cauclusterrole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/enable-cauclusterrole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-CauClusterRole --- diff --git a/docset/winserver2022-ps/clusterawareupdating/Export-CauReport.md b/docset/winserver2022-ps/clusterawareupdating/Export-CauReport.md index 38e05f12dc..56673ed63d 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Export-CauReport.md +++ b/docset/winserver2022-ps/clusterawareupdating/Export-CauReport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/export-caureport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/export-caureport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-CauReport --- diff --git a/docset/winserver2022-ps/clusterawareupdating/Get-CauClusterRole.md b/docset/winserver2022-ps/clusterawareupdating/Get-CauClusterRole.md index 26fe90e671..c6d5457cbe 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Get-CauClusterRole.md +++ b/docset/winserver2022-ps/clusterawareupdating/Get-CauClusterRole.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/get-cauclusterrole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/get-cauclusterrole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CauClusterRole --- diff --git a/docset/winserver2022-ps/clusterawareupdating/Get-CauPlugin.md b/docset/winserver2022-ps/clusterawareupdating/Get-CauPlugin.md index b62068ee88..6598bd136b 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Get-CauPlugin.md +++ b/docset/winserver2022-ps/clusterawareupdating/Get-CauPlugin.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/get-cauplugin?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/get-cauplugin?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CauPlugin --- diff --git a/docset/winserver2022-ps/clusterawareupdating/Get-CauReport.md b/docset/winserver2022-ps/clusterawareupdating/Get-CauReport.md index 511c50a1c4..2fd9585109 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Get-CauReport.md +++ b/docset/winserver2022-ps/clusterawareupdating/Get-CauReport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/get-caureport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/get-caureport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CauReport --- diff --git a/docset/winserver2022-ps/clusterawareupdating/Get-CauRun.md b/docset/winserver2022-ps/clusterawareupdating/Get-CauRun.md index ff63328eef..7f1d162fe0 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Get-CauRun.md +++ b/docset/winserver2022-ps/clusterawareupdating/Get-CauRun.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/get-caurun?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/get-caurun?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CauRun --- diff --git a/docset/winserver2022-ps/clusterawareupdating/Invoke-CauRun.md b/docset/winserver2022-ps/clusterawareupdating/Invoke-CauRun.md index 3978529595..613beaaa8f 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Invoke-CauRun.md +++ b/docset/winserver2022-ps/clusterawareupdating/Invoke-CauRun.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/invoke-caurun?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/invoke-caurun?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-CauRun --- diff --git a/docset/winserver2022-ps/clusterawareupdating/Invoke-CauScan.md b/docset/winserver2022-ps/clusterawareupdating/Invoke-CauScan.md index 7d530eaaf8..3e3e4ba6ed 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Invoke-CauScan.md +++ b/docset/winserver2022-ps/clusterawareupdating/Invoke-CauScan.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/invoke-causcan?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/invoke-causcan?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-CauScan --- diff --git a/docset/winserver2022-ps/clusterawareupdating/Register-CauPlugin.md b/docset/winserver2022-ps/clusterawareupdating/Register-CauPlugin.md index 885590f45c..a72a1a77a9 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Register-CauPlugin.md +++ b/docset/winserver2022-ps/clusterawareupdating/Register-CauPlugin.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/register-cauplugin?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/register-cauplugin?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Register-CauPlugin --- diff --git a/docset/winserver2022-ps/clusterawareupdating/Remove-CauClusterRole.md b/docset/winserver2022-ps/clusterawareupdating/Remove-CauClusterRole.md index 4130ef513e..5ea5fd66c7 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Remove-CauClusterRole.md +++ b/docset/winserver2022-ps/clusterawareupdating/Remove-CauClusterRole.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/remove-cauclusterrole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/remove-cauclusterrole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-CauClusterRole --- diff --git a/docset/winserver2022-ps/clusterawareupdating/Save-CauDebugTrace.md b/docset/winserver2022-ps/clusterawareupdating/Save-CauDebugTrace.md index 88ee03ab85..51a27c509c 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Save-CauDebugTrace.md +++ b/docset/winserver2022-ps/clusterawareupdating/Save-CauDebugTrace.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/save-caudebugtrace?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/save-caudebugtrace?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Save-CauDebugTrace --- diff --git a/docset/winserver2022-ps/clusterawareupdating/Set-CauClusterRole.md b/docset/winserver2022-ps/clusterawareupdating/Set-CauClusterRole.md index fe32880cc0..d1da6252dc 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Set-CauClusterRole.md +++ b/docset/winserver2022-ps/clusterawareupdating/Set-CauClusterRole.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/set-cauclusterrole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/set-cauclusterrole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-CauClusterRole --- diff --git a/docset/winserver2022-ps/clusterawareupdating/Stop-CauRun.md b/docset/winserver2022-ps/clusterawareupdating/Stop-CauRun.md index 9e413e2cf0..4ec0a8a51e 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Stop-CauRun.md +++ b/docset/winserver2022-ps/clusterawareupdating/Stop-CauRun.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/stop-caurun?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/stop-caurun?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-CauRun --- diff --git a/docset/winserver2022-ps/clusterawareupdating/Test-CauSetup.md b/docset/winserver2022-ps/clusterawareupdating/Test-CauSetup.md index 16e7f1c47a..ebcb74e27b 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Test-CauSetup.md +++ b/docset/winserver2022-ps/clusterawareupdating/Test-CauSetup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/test-causetup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/test-causetup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-CauSetup --- diff --git a/docset/winserver2022-ps/clusterawareupdating/Unregister-CauPlugin.md b/docset/winserver2022-ps/clusterawareupdating/Unregister-CauPlugin.md index 05584b0ed5..1621668c1d 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Unregister-CauPlugin.md +++ b/docset/winserver2022-ps/clusterawareupdating/Unregister-CauPlugin.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/clusterawareupdating/unregister-cauplugin?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/unregister-cauplugin?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unregister-CauPlugin --- diff --git a/docset/winserver2022-ps/configci/Add-SignerRule.md b/docset/winserver2022-ps/configci/Add-SignerRule.md index dcdd6eab9c..6f7a147ec1 100644 --- a/docset/winserver2022-ps/configci/Add-SignerRule.md +++ b/docset/winserver2022-ps/configci/Add-SignerRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ConfigCI.Commands.dll-Help.xml Module Name: ConfigCI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/configci/add-signerrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/configci/add-signerrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-SignerRule --- diff --git a/docset/winserver2022-ps/configci/ConvertFrom-CIPolicy.md b/docset/winserver2022-ps/configci/ConvertFrom-CIPolicy.md index 5868b2f22c..9f4b4079e3 100644 --- a/docset/winserver2022-ps/configci/ConvertFrom-CIPolicy.md +++ b/docset/winserver2022-ps/configci/ConvertFrom-CIPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ConfigCI.Commands.dll-Help.xml Module Name: ConfigCI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/configci/convertfrom-cipolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/configci/convertfrom-cipolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: ConvertFrom-CIPolicy --- diff --git a/docset/winserver2022-ps/configci/Edit-CIPolicyRule.md b/docset/winserver2022-ps/configci/Edit-CIPolicyRule.md index 31acd90094..50f91778eb 100644 --- a/docset/winserver2022-ps/configci/Edit-CIPolicyRule.md +++ b/docset/winserver2022-ps/configci/Edit-CIPolicyRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ConfigCI.Commands.dll-Help.xml Module Name: ConfigCI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/configci/edit-cipolicyrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/configci/edit-cipolicyrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Edit-CIPolicyRule --- diff --git a/docset/winserver2022-ps/configci/Get-CIPolicy.md b/docset/winserver2022-ps/configci/Get-CIPolicy.md index 95fb9f2185..f9629e4648 100644 --- a/docset/winserver2022-ps/configci/Get-CIPolicy.md +++ b/docset/winserver2022-ps/configci/Get-CIPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ConfigCI.Commands.dll-Help.xml Module Name: ConfigCI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/configci/get-cipolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/configci/get-cipolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CIPolicy --- diff --git a/docset/winserver2022-ps/configci/Get-CIPolicyIdInfo.md b/docset/winserver2022-ps/configci/Get-CIPolicyIdInfo.md index cd40c56fa4..a6064fbf9f 100644 --- a/docset/winserver2022-ps/configci/Get-CIPolicyIdInfo.md +++ b/docset/winserver2022-ps/configci/Get-CIPolicyIdInfo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ConfigCI.Commands.dll-Help.xml Module Name: ConfigCI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/configci/get-cipolicyidinfo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/configci/get-cipolicyidinfo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CIPolicyIdInfo --- diff --git a/docset/winserver2022-ps/configci/Get-CIPolicyInfo.md b/docset/winserver2022-ps/configci/Get-CIPolicyInfo.md index 8a733468dd..8e43a6afcf 100644 --- a/docset/winserver2022-ps/configci/Get-CIPolicyInfo.md +++ b/docset/winserver2022-ps/configci/Get-CIPolicyInfo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ConfigCI.Commands.dll-Help.xml Module Name: ConfigCI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/configci/get-cipolicyinfo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/configci/get-cipolicyinfo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CIPolicyInfo --- diff --git a/docset/winserver2022-ps/configci/Get-SystemDriver.md b/docset/winserver2022-ps/configci/Get-SystemDriver.md index fae2b3129c..38be462725 100644 --- a/docset/winserver2022-ps/configci/Get-SystemDriver.md +++ b/docset/winserver2022-ps/configci/Get-SystemDriver.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ConfigCI.Commands.dll-Help.xml Module Name: ConfigCI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/configci/get-systemdriver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/configci/get-systemdriver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SystemDriver --- diff --git a/docset/winserver2022-ps/configci/Merge-CIPolicy.md b/docset/winserver2022-ps/configci/Merge-CIPolicy.md index d085636368..a3dcf5fa27 100644 --- a/docset/winserver2022-ps/configci/Merge-CIPolicy.md +++ b/docset/winserver2022-ps/configci/Merge-CIPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ConfigCI.Commands.dll-Help.xml Module Name: ConfigCI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/configci/merge-cipolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/configci/merge-cipolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Merge-CIPolicy --- diff --git a/docset/winserver2022-ps/configci/New-CIPolicy.md b/docset/winserver2022-ps/configci/New-CIPolicy.md index e9f04bb9d6..87b1b0492d 100644 --- a/docset/winserver2022-ps/configci/New-CIPolicy.md +++ b/docset/winserver2022-ps/configci/New-CIPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ConfigCI.Commands.dll-Help.xml Module Name: ConfigCI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/configci/new-cipolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/configci/new-cipolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-CIPolicy --- diff --git a/docset/winserver2022-ps/configci/New-CIPolicyRule.md b/docset/winserver2022-ps/configci/New-CIPolicyRule.md index 14223d2166..6666aa3e06 100644 --- a/docset/winserver2022-ps/configci/New-CIPolicyRule.md +++ b/docset/winserver2022-ps/configci/New-CIPolicyRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ConfigCI.Commands.dll-Help.xml Module Name: ConfigCI ms.date: 05/23/2022 -online version: https://docs.microsoft.com/powershell/module/configci/new-cipolicyrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/configci/new-cipolicyrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-CIPolicyRule --- diff --git a/docset/winserver2022-ps/configci/Remove-CIPolicyRule.md b/docset/winserver2022-ps/configci/Remove-CIPolicyRule.md index 9c7029133b..0dd8a16db6 100644 --- a/docset/winserver2022-ps/configci/Remove-CIPolicyRule.md +++ b/docset/winserver2022-ps/configci/Remove-CIPolicyRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ConfigCI.Commands.dll-Help.xml Module Name: ConfigCI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/configci/remove-cipolicyrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/configci/remove-cipolicyrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-CIPolicyRule --- diff --git a/docset/winserver2022-ps/configci/Set-CIPolicyIdInfo.md b/docset/winserver2022-ps/configci/Set-CIPolicyIdInfo.md index 372ed5e4bb..7afda419fe 100644 --- a/docset/winserver2022-ps/configci/Set-CIPolicyIdInfo.md +++ b/docset/winserver2022-ps/configci/Set-CIPolicyIdInfo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ConfigCI.Commands.dll-Help.xml Module Name: ConfigCI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/configci/set-cipolicyidinfo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/configci/set-cipolicyidinfo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-CIPolicyIdInfo --- diff --git a/docset/winserver2022-ps/configci/Set-CIPolicySetting.md b/docset/winserver2022-ps/configci/Set-CIPolicySetting.md index 037adb842b..7cc82cda7d 100644 --- a/docset/winserver2022-ps/configci/Set-CIPolicySetting.md +++ b/docset/winserver2022-ps/configci/Set-CIPolicySetting.md @@ -3,7 +3,7 @@ description: The Set-CIPolicySetting cmdlet modifies the SecureSettings within t external help file: Microsoft.ConfigCI.Commands.dll-Help.xml Module Name: ConfigCI ms.date: 10/20/2021 -online version: https://docs.microsoft.com/powershell/module/configci/set-cipolicysetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/configci/set-cipolicysetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-CIPolicySetting --- diff --git a/docset/winserver2022-ps/configci/Set-CIPolicyVersion.md b/docset/winserver2022-ps/configci/Set-CIPolicyVersion.md index b338bf0aa3..323bb634f7 100644 --- a/docset/winserver2022-ps/configci/Set-CIPolicyVersion.md +++ b/docset/winserver2022-ps/configci/Set-CIPolicyVersion.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ConfigCI.Commands.dll-Help.xml Module Name: ConfigCI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/configci/set-cipolicyversion?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/configci/set-cipolicyversion?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-CIPolicyVersion --- diff --git a/docset/winserver2022-ps/configci/Set-HVCIOptions.md b/docset/winserver2022-ps/configci/Set-HVCIOptions.md index d8fa21ffb9..fdf4513485 100644 --- a/docset/winserver2022-ps/configci/Set-HVCIOptions.md +++ b/docset/winserver2022-ps/configci/Set-HVCIOptions.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ConfigCI.Commands.dll-Help.xml Module Name: ConfigCI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/configci/set-hvcioptions?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/configci/set-hvcioptions?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-HVCIOptions --- diff --git a/docset/winserver2022-ps/configci/Set-RuleOption.md b/docset/winserver2022-ps/configci/Set-RuleOption.md index 4d00bb45e2..a3b88fc68e 100644 --- a/docset/winserver2022-ps/configci/Set-RuleOption.md +++ b/docset/winserver2022-ps/configci/Set-RuleOption.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ConfigCI.Commands.dll-Help.xml Module Name: ConfigCI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/configci/set-ruleoption?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/configci/set-ruleoption?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RuleOption --- diff --git a/docset/winserver2022-ps/dcbqos/Disable-NetQosFlowControl.md b/docset/winserver2022-ps/dcbqos/Disable-NetQosFlowControl.md index 323b91def5..32d06a8084 100644 --- a/docset/winserver2022-ps/dcbqos/Disable-NetQosFlowControl.md +++ b/docset/winserver2022-ps/dcbqos/Disable-NetQosFlowControl.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetQosFlowControl.cdxml-help.xml Module Name: DcbQoS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/dcbqos/disable-netqosflowcontrol?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/disable-netqosflowcontrol?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetQosFlowControl --- diff --git a/docset/winserver2022-ps/dcbqos/Enable-NetQosFlowControl.md b/docset/winserver2022-ps/dcbqos/Enable-NetQosFlowControl.md index ced5cf0f65..164fb03a01 100644 --- a/docset/winserver2022-ps/dcbqos/Enable-NetQosFlowControl.md +++ b/docset/winserver2022-ps/dcbqos/Enable-NetQosFlowControl.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetQosFlowControl.cdxml-help.xml Module Name: DcbQoS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/dcbqos/enable-netqosflowcontrol?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/enable-netqosflowcontrol?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetQosFlowControl --- diff --git a/docset/winserver2022-ps/dcbqos/Get-NetQosDcbxSetting.md b/docset/winserver2022-ps/dcbqos/Get-NetQosDcbxSetting.md index e26fd061c5..8d521041cd 100644 --- a/docset/winserver2022-ps/dcbqos/Get-NetQosDcbxSetting.md +++ b/docset/winserver2022-ps/dcbqos/Get-NetQosDcbxSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetQosDcbxSetting.cdxml-help.xml Module Name: DcbQoS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/dcbqos/get-netqosdcbxsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/get-netqosdcbxsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetQosDcbxSetting --- diff --git a/docset/winserver2022-ps/dcbqos/Get-NetQosFlowControl.md b/docset/winserver2022-ps/dcbqos/Get-NetQosFlowControl.md index 7ac5dd72aa..a6064d30aa 100644 --- a/docset/winserver2022-ps/dcbqos/Get-NetQosFlowControl.md +++ b/docset/winserver2022-ps/dcbqos/Get-NetQosFlowControl.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetQosFlowControl.cdxml-help.xml Module Name: DcbQoS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/dcbqos/get-netqosflowcontrol?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/get-netqosflowcontrol?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetQosFlowControl --- diff --git a/docset/winserver2022-ps/dcbqos/Get-NetQosTrafficClass.md b/docset/winserver2022-ps/dcbqos/Get-NetQosTrafficClass.md index 81ade84a63..b27aac8744 100644 --- a/docset/winserver2022-ps/dcbqos/Get-NetQosTrafficClass.md +++ b/docset/winserver2022-ps/dcbqos/Get-NetQosTrafficClass.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetQosTrafficClass.cdxml-help.xml Module Name: DcbQoS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/dcbqos/get-netqostrafficclass?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/get-netqostrafficclass?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetQosTrafficClass --- diff --git a/docset/winserver2022-ps/dcbqos/New-NetQosTrafficClass.md b/docset/winserver2022-ps/dcbqos/New-NetQosTrafficClass.md index 1b91808fff..2a42e1b9c8 100644 --- a/docset/winserver2022-ps/dcbqos/New-NetQosTrafficClass.md +++ b/docset/winserver2022-ps/dcbqos/New-NetQosTrafficClass.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetQosTrafficClass.cdxml-help.xml Module Name: DcbQoS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/dcbqos/new-netqostrafficclass?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/new-netqostrafficclass?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetQosTrafficClass --- diff --git a/docset/winserver2022-ps/dcbqos/Remove-NetQosTrafficClass.md b/docset/winserver2022-ps/dcbqos/Remove-NetQosTrafficClass.md index e7face3424..1b1befdd8f 100644 --- a/docset/winserver2022-ps/dcbqos/Remove-NetQosTrafficClass.md +++ b/docset/winserver2022-ps/dcbqos/Remove-NetQosTrafficClass.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetQosTrafficClass.cdxml-help.xml Module Name: DcbQoS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/dcbqos/remove-netqostrafficclass?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/remove-netqostrafficclass?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetQosTrafficClass --- diff --git a/docset/winserver2022-ps/dcbqos/Set-NetQosDcbxSetting.md b/docset/winserver2022-ps/dcbqos/Set-NetQosDcbxSetting.md index f626bf0172..5904e4cba8 100644 --- a/docset/winserver2022-ps/dcbqos/Set-NetQosDcbxSetting.md +++ b/docset/winserver2022-ps/dcbqos/Set-NetQosDcbxSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetQosDcbxSetting.cdxml-help.xml Module Name: DcbQoS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/dcbqos/set-netqosdcbxsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/set-netqosdcbxsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetQosDcbxSetting --- diff --git a/docset/winserver2022-ps/dcbqos/Set-NetQosFlowControl.md b/docset/winserver2022-ps/dcbqos/Set-NetQosFlowControl.md index 9c2c0b1245..936f6d4fb2 100644 --- a/docset/winserver2022-ps/dcbqos/Set-NetQosFlowControl.md +++ b/docset/winserver2022-ps/dcbqos/Set-NetQosFlowControl.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetQosFlowControl.cdxml-help.xml Module Name: DcbQoS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/dcbqos/set-netqosflowcontrol?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/set-netqosflowcontrol?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetQosFlowControl --- diff --git a/docset/winserver2022-ps/dcbqos/Set-NetQosTrafficClass.md b/docset/winserver2022-ps/dcbqos/Set-NetQosTrafficClass.md index 0b7e67aee4..bd8e77a3b6 100644 --- a/docset/winserver2022-ps/dcbqos/Set-NetQosTrafficClass.md +++ b/docset/winserver2022-ps/dcbqos/Set-NetQosTrafficClass.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetQosTrafficClass.cdxml-help.xml Module Name: DcbQoS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/dcbqos/set-netqostrafficclass?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/set-netqostrafficclass?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetQosTrafficClass --- diff --git a/docset/winserver2022-ps/dcbqos/Switch-NetQosDcbxSetting.md b/docset/winserver2022-ps/dcbqos/Switch-NetQosDcbxSetting.md index e769ea18cd..ead8b86205 100644 --- a/docset/winserver2022-ps/dcbqos/Switch-NetQosDcbxSetting.md +++ b/docset/winserver2022-ps/dcbqos/Switch-NetQosDcbxSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetQosDcbxSetting.cdxml-help.xml Module Name: DcbQoS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/dcbqos/switch-netqosdcbxsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/switch-netqosdcbxsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Switch-NetQosDcbxSetting --- diff --git a/docset/winserver2022-ps/dcbqos/Switch-NetQosFlowControl.md b/docset/winserver2022-ps/dcbqos/Switch-NetQosFlowControl.md index 906864e230..45c019354c 100644 --- a/docset/winserver2022-ps/dcbqos/Switch-NetQosFlowControl.md +++ b/docset/winserver2022-ps/dcbqos/Switch-NetQosFlowControl.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetQosFlowControl.cdxml-help.xml Module Name: DcbQoS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/dcbqos/switch-netqosflowcontrol?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/switch-netqosflowcontrol?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Switch-NetQosFlowControl --- diff --git a/docset/winserver2022-ps/dcbqos/Switch-NetQosTrafficClass.md b/docset/winserver2022-ps/dcbqos/Switch-NetQosTrafficClass.md index 9d47d90ae2..0011996173 100644 --- a/docset/winserver2022-ps/dcbqos/Switch-NetQosTrafficClass.md +++ b/docset/winserver2022-ps/dcbqos/Switch-NetQosTrafficClass.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetQosTrafficClass.cdxml-help.xml Module Name: DcbQoS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/dcbqos/switch-netqostrafficclass?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dcbqos/switch-netqostrafficclass?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Switch-NetQosTrafficClass --- diff --git a/docset/winserver2022-ps/deduplication/Disable-DedupVolume.md b/docset/winserver2022-ps/deduplication/Disable-DedupVolume.md index 44366fda0c..2405fa410d 100644 --- a/docset/winserver2022-ps/deduplication/Disable-DedupVolume.md +++ b/docset/winserver2022-ps/deduplication/Disable-DedupVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DedupVolume.cdxml-help.xml Module Name: Deduplication ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/deduplication/disable-dedupvolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/disable-dedupvolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-DedupVolume --- diff --git a/docset/winserver2022-ps/deduplication/Enable-DedupVolume.md b/docset/winserver2022-ps/deduplication/Enable-DedupVolume.md index 761a2f4927..920b43fade 100644 --- a/docset/winserver2022-ps/deduplication/Enable-DedupVolume.md +++ b/docset/winserver2022-ps/deduplication/Enable-DedupVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DedupVolume.cdxml-help.xml Module Name: Deduplication ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/deduplication/enable-dedupvolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/enable-dedupvolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-DedupVolume --- diff --git a/docset/winserver2022-ps/deduplication/Expand-DedupFile.md b/docset/winserver2022-ps/deduplication/Expand-DedupFile.md index c73ee9c107..6d8c9aaebc 100644 --- a/docset/winserver2022-ps/deduplication/Expand-DedupFile.md +++ b/docset/winserver2022-ps/deduplication/Expand-DedupFile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DedupVolume.cdxml-help.xml Module Name: Deduplication ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/deduplication/expand-dedupfile?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/expand-dedupfile?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Expand-DedupFile --- diff --git a/docset/winserver2022-ps/deduplication/Get-DedupJob.md b/docset/winserver2022-ps/deduplication/Get-DedupJob.md index c922f5b7b8..dc152bfce1 100644 --- a/docset/winserver2022-ps/deduplication/Get-DedupJob.md +++ b/docset/winserver2022-ps/deduplication/Get-DedupJob.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DedupJob.cdxml-help.xml Module Name: Deduplication ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/deduplication/get-dedupjob?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/get-dedupjob?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DedupJob --- diff --git a/docset/winserver2022-ps/deduplication/Get-DedupMetadata.md b/docset/winserver2022-ps/deduplication/Get-DedupMetadata.md index 6e25f630ae..b09fd7a536 100644 --- a/docset/winserver2022-ps/deduplication/Get-DedupMetadata.md +++ b/docset/winserver2022-ps/deduplication/Get-DedupMetadata.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DedupMetadata.cdxml-help.xml Module Name: Deduplication ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/deduplication/get-dedupmetadata?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/get-dedupmetadata?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DedupMetadata --- diff --git a/docset/winserver2022-ps/deduplication/Get-DedupSchedule.md b/docset/winserver2022-ps/deduplication/Get-DedupSchedule.md index 65b38fd518..393fe64e10 100644 --- a/docset/winserver2022-ps/deduplication/Get-DedupSchedule.md +++ b/docset/winserver2022-ps/deduplication/Get-DedupSchedule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DedupSchedule.cdxml-help.xml Module Name: Deduplication ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/deduplication/get-dedupschedule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/get-dedupschedule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DedupSchedule --- diff --git a/docset/winserver2022-ps/deduplication/Get-DedupStatus.md b/docset/winserver2022-ps/deduplication/Get-DedupStatus.md index 1e517d0623..1e7a53e841 100644 --- a/docset/winserver2022-ps/deduplication/Get-DedupStatus.md +++ b/docset/winserver2022-ps/deduplication/Get-DedupStatus.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DedupStatus.cdxml-help.xml Module Name: Deduplication ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/deduplication/get-dedupstatus?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/get-dedupstatus?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DedupStatus --- diff --git a/docset/winserver2022-ps/deduplication/Get-DedupVolume.md b/docset/winserver2022-ps/deduplication/Get-DedupVolume.md index 3955abc4d5..792daf39b8 100644 --- a/docset/winserver2022-ps/deduplication/Get-DedupVolume.md +++ b/docset/winserver2022-ps/deduplication/Get-DedupVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DedupVolume.cdxml-help.xml Module Name: Deduplication ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/deduplication/get-dedupvolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/get-dedupvolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DedupVolume --- diff --git a/docset/winserver2022-ps/deduplication/Measure-DedupFileMetadata.md b/docset/winserver2022-ps/deduplication/Measure-DedupFileMetadata.md index b7159ab772..b16cd29fb8 100644 --- a/docset/winserver2022-ps/deduplication/Measure-DedupFileMetadata.md +++ b/docset/winserver2022-ps/deduplication/Measure-DedupFileMetadata.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DedupFileMetadata.cdxml-help.xml Module Name: Deduplication ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/deduplication/measure-dedupfilemetadata?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/measure-dedupfilemetadata?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Measure-DedupFileMetadata --- diff --git a/docset/winserver2022-ps/deduplication/New-DedupSchedule.md b/docset/winserver2022-ps/deduplication/New-DedupSchedule.md index 5aa6665bc8..a00cc1d085 100644 --- a/docset/winserver2022-ps/deduplication/New-DedupSchedule.md +++ b/docset/winserver2022-ps/deduplication/New-DedupSchedule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DedupSchedule.cdxml-help.xml Module Name: Deduplication ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/deduplication/new-dedupschedule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/new-dedupschedule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-DedupSchedule --- diff --git a/docset/winserver2022-ps/deduplication/Remove-DedupSchedule.md b/docset/winserver2022-ps/deduplication/Remove-DedupSchedule.md index d46e258510..0933223865 100644 --- a/docset/winserver2022-ps/deduplication/Remove-DedupSchedule.md +++ b/docset/winserver2022-ps/deduplication/Remove-DedupSchedule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DedupSchedule.cdxml-help.xml Module Name: Deduplication ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/deduplication/remove-dedupschedule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/remove-dedupschedule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DedupSchedule --- diff --git a/docset/winserver2022-ps/deduplication/Set-DedupSchedule.md b/docset/winserver2022-ps/deduplication/Set-DedupSchedule.md index fb9ed5737e..2d59f0d640 100644 --- a/docset/winserver2022-ps/deduplication/Set-DedupSchedule.md +++ b/docset/winserver2022-ps/deduplication/Set-DedupSchedule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DedupSchedule.cdxml-help.xml Module Name: Deduplication ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/deduplication/set-dedupschedule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/set-dedupschedule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DedupSchedule --- diff --git a/docset/winserver2022-ps/deduplication/Set-DedupVolume.md b/docset/winserver2022-ps/deduplication/Set-DedupVolume.md index dd1e2153b8..d0b5c96acb 100644 --- a/docset/winserver2022-ps/deduplication/Set-DedupVolume.md +++ b/docset/winserver2022-ps/deduplication/Set-DedupVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DedupVolume.cdxml-help.xml Module Name: Deduplication ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/deduplication/set-dedupvolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/set-dedupvolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DedupVolume --- diff --git a/docset/winserver2022-ps/deduplication/Start-DedupJob.md b/docset/winserver2022-ps/deduplication/Start-DedupJob.md index 5f8f04be2c..82d4f4b3ff 100644 --- a/docset/winserver2022-ps/deduplication/Start-DedupJob.md +++ b/docset/winserver2022-ps/deduplication/Start-DedupJob.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DedupJob.cdxml-help.xml Module Name: Deduplication ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/deduplication/start-dedupjob?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/start-dedupjob?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-DedupJob --- diff --git a/docset/winserver2022-ps/deduplication/Stop-DedupJob.md b/docset/winserver2022-ps/deduplication/Stop-DedupJob.md index 0dba274879..bf1a8635e5 100644 --- a/docset/winserver2022-ps/deduplication/Stop-DedupJob.md +++ b/docset/winserver2022-ps/deduplication/Stop-DedupJob.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DedupJob.cdxml-help.xml Module Name: Deduplication ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/deduplication/stop-dedupjob?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/stop-dedupjob?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-DedupJob --- diff --git a/docset/winserver2022-ps/deduplication/Update-DedupStatus.md b/docset/winserver2022-ps/deduplication/Update-DedupStatus.md index c63258e09b..eb197898da 100644 --- a/docset/winserver2022-ps/deduplication/Update-DedupStatus.md +++ b/docset/winserver2022-ps/deduplication/Update-DedupStatus.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DedupStatus.cdxml-help.xml Module Name: Deduplication ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/deduplication/update-dedupstatus?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/deduplication/update-dedupstatus?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-DedupStatus --- diff --git a/docset/winserver2022-ps/defender/Add-MpPreference.md b/docset/winserver2022-ps/defender/Add-MpPreference.md index 82fd5b825e..993db0e5ed 100644 --- a/docset/winserver2022-ps/defender/Add-MpPreference.md +++ b/docset/winserver2022-ps/defender/Add-MpPreference.md @@ -3,7 +3,7 @@ description: The Add-MpPreference cmdlet modifies settings for Windows Defender. external help file: MSFT_MpPreference.cdxml-help.xml Module Name: Defender ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/defender/add-mppreference?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/defender/add-mppreference?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-MpPreference --- diff --git a/docset/winserver2022-ps/defender/Get-MpComputerStatus.md b/docset/winserver2022-ps/defender/Get-MpComputerStatus.md index 51c1226894..3b839ac75c 100644 --- a/docset/winserver2022-ps/defender/Get-MpComputerStatus.md +++ b/docset/winserver2022-ps/defender/Get-MpComputerStatus.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_MpComputerStatus.cdxml-help.xml Module Name: Defender ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/defender/get-mpcomputerstatus?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/defender/get-mpcomputerstatus?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MpComputerStatus --- diff --git a/docset/winserver2022-ps/defender/Get-MpPreference.md b/docset/winserver2022-ps/defender/Get-MpPreference.md index 4bfde0d521..f37d733b47 100644 --- a/docset/winserver2022-ps/defender/Get-MpPreference.md +++ b/docset/winserver2022-ps/defender/Get-MpPreference.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_MpPreference.cdxml-help.xml Module Name: Defender ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/defender/get-mppreference?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/defender/get-mppreference?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MpPreference --- diff --git a/docset/winserver2022-ps/defender/Get-MpThreat.md b/docset/winserver2022-ps/defender/Get-MpThreat.md index a72883be82..289d13177f 100644 --- a/docset/winserver2022-ps/defender/Get-MpThreat.md +++ b/docset/winserver2022-ps/defender/Get-MpThreat.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_MpThreat.cdxml-help.xml Module Name: Defender ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/defender/get-mpthreat?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/defender/get-mpthreat?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MpThreat --- diff --git a/docset/winserver2022-ps/defender/Get-MpThreatCatalog.md b/docset/winserver2022-ps/defender/Get-MpThreatCatalog.md index a8a3ed8c77..ec4adeab88 100644 --- a/docset/winserver2022-ps/defender/Get-MpThreatCatalog.md +++ b/docset/winserver2022-ps/defender/Get-MpThreatCatalog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_MpThreatCatalog.cdxml-help.xml Module Name: Defender ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/defender/get-mpthreatcatalog?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/defender/get-mpthreatcatalog?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MpThreatCatalog --- diff --git a/docset/winserver2022-ps/defender/Get-MpThreatDetection.md b/docset/winserver2022-ps/defender/Get-MpThreatDetection.md index 3c28d27f75..3db6f72ffb 100644 --- a/docset/winserver2022-ps/defender/Get-MpThreatDetection.md +++ b/docset/winserver2022-ps/defender/Get-MpThreatDetection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_MpThreatDetection.cdxml-help.xml Module Name: Defender ms.date: 09/19/2018 -online version: https://docs.microsoft.com/powershell/module/defender/get-mpthreatdetection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/defender/get-mpthreatdetection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MpThreatDetection --- diff --git a/docset/winserver2022-ps/defender/Remove-MpPreference.md b/docset/winserver2022-ps/defender/Remove-MpPreference.md index d86824e9b7..c10d0138f9 100644 --- a/docset/winserver2022-ps/defender/Remove-MpPreference.md +++ b/docset/winserver2022-ps/defender/Remove-MpPreference.md @@ -3,7 +3,7 @@ description: The Remove-MpPreference cmdlet removes exclusions for file name ext external help file: MSFT_MpPreference.cdxml-help.xml Module Name: Defender ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/defender/remove-mppreference?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/defender/remove-mppreference?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-MpPreference --- diff --git a/docset/winserver2022-ps/defender/Remove-MpThreat.md b/docset/winserver2022-ps/defender/Remove-MpThreat.md index a9357e7b20..368db9410d 100644 --- a/docset/winserver2022-ps/defender/Remove-MpThreat.md +++ b/docset/winserver2022-ps/defender/Remove-MpThreat.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_MpThreat.cdxml-help.xml Module Name: Defender ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/defender/remove-mpthreat?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/defender/remove-mpthreat?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-MpThreat --- diff --git a/docset/winserver2022-ps/defender/Set-MpPreference.md b/docset/winserver2022-ps/defender/Set-MpPreference.md index 11b44d275c..01f1026103 100644 --- a/docset/winserver2022-ps/defender/Set-MpPreference.md +++ b/docset/winserver2022-ps/defender/Set-MpPreference.md @@ -3,7 +3,7 @@ description: The Set-MpPreference cmdlet configures preferences for Windows Defe external help file: MSFT_MpPreference.cdxml-help.xml Module Name: Defender ms.date: 09/20/2022 -online version: https://docs.microsoft.com/powershell/module/defender/set-mppreference?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/defender/set-mppreference?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-MpPreference --- diff --git a/docset/winserver2022-ps/defender/Start-MpScan.md b/docset/winserver2022-ps/defender/Start-MpScan.md index 3a5b2aa8d0..6048dd4b75 100644 --- a/docset/winserver2022-ps/defender/Start-MpScan.md +++ b/docset/winserver2022-ps/defender/Start-MpScan.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_MpScan.cdxml-help.xml Module Name: Defender ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/defender/start-mpscan?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/defender/start-mpscan?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-MpScan --- diff --git a/docset/winserver2022-ps/defender/Start-MpWDOScan.md b/docset/winserver2022-ps/defender/Start-MpWDOScan.md index 93c8dfd530..372430fc11 100644 --- a/docset/winserver2022-ps/defender/Start-MpWDOScan.md +++ b/docset/winserver2022-ps/defender/Start-MpWDOScan.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_MpWDOScan.cdxml-help.xml Module Name: Defender ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/defender/start-mpwdoscan?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/defender/start-mpwdoscan?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-MpWDOScan --- diff --git a/docset/winserver2022-ps/defender/Update-MpSignature.md b/docset/winserver2022-ps/defender/Update-MpSignature.md index 55e56d6c92..4431dece9a 100644 --- a/docset/winserver2022-ps/defender/Update-MpSignature.md +++ b/docset/winserver2022-ps/defender/Update-MpSignature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_MpSignature.cdxml-help.xml Module Name: Defender ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/defender/update-mpsignature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/defender/update-mpsignature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-MpSignature --- diff --git a/docset/winserver2022-ps/devicehealthattestation/Backup-DHASConfiguration.md b/docset/winserver2022-ps/devicehealthattestation/Backup-DHASConfiguration.md index df30a2a9b9..778fcdb4d1 100644 --- a/docset/winserver2022-ps/devicehealthattestation/Backup-DHASConfiguration.md +++ b/docset/winserver2022-ps/devicehealthattestation/Backup-DHASConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.DeviceHealthAttestation.PowerShell.dll-Help.xml Module Name: DeviceHealthAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/devicehealthattestation/backup-dhasconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/devicehealthattestation/backup-dhasconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Backup-DHASConfiguration --- diff --git a/docset/winserver2022-ps/devicehealthattestation/Get-DHASActiveEncryptionCertificate.md b/docset/winserver2022-ps/devicehealthattestation/Get-DHASActiveEncryptionCertificate.md index c461b1883e..e68fa657df 100644 --- a/docset/winserver2022-ps/devicehealthattestation/Get-DHASActiveEncryptionCertificate.md +++ b/docset/winserver2022-ps/devicehealthattestation/Get-DHASActiveEncryptionCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.DeviceHealthAttestation.PowerShell.dll-Help.xml Module Name: DeviceHealthAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/devicehealthattestation/get-dhasactiveencryptioncertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/devicehealthattestation/get-dhasactiveencryptioncertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DHASActiveEncryptionCertificate --- diff --git a/docset/winserver2022-ps/devicehealthattestation/Get-DHASActiveSigningCertificate.md b/docset/winserver2022-ps/devicehealthattestation/Get-DHASActiveSigningCertificate.md index dd1644e608..58fee0851e 100644 --- a/docset/winserver2022-ps/devicehealthattestation/Get-DHASActiveSigningCertificate.md +++ b/docset/winserver2022-ps/devicehealthattestation/Get-DHASActiveSigningCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.DeviceHealthAttestation.PowerShell.dll-Help.xml Module Name: DeviceHealthAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/devicehealthattestation/get-dhasactivesigningcertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/devicehealthattestation/get-dhasactivesigningcertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DHASActiveSigningCertificate --- diff --git a/docset/winserver2022-ps/devicehealthattestation/Get-DHASCertificateChainPolicy.md b/docset/winserver2022-ps/devicehealthattestation/Get-DHASCertificateChainPolicy.md index 4d3c5feb64..ded96116db 100644 --- a/docset/winserver2022-ps/devicehealthattestation/Get-DHASCertificateChainPolicy.md +++ b/docset/winserver2022-ps/devicehealthattestation/Get-DHASCertificateChainPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.DeviceHealthAttestation.PowerShell.dll-Help.xml Module Name: DeviceHealthAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/devicehealthattestation/get-dhascertificatechainpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/devicehealthattestation/get-dhascertificatechainpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DHASCertificateChainPolicy --- diff --git a/docset/winserver2022-ps/devicehealthattestation/Get-DHASInactiveEncryptionCertificate.md b/docset/winserver2022-ps/devicehealthattestation/Get-DHASInactiveEncryptionCertificate.md index 5b424865d7..3a136c6f67 100644 --- a/docset/winserver2022-ps/devicehealthattestation/Get-DHASInactiveEncryptionCertificate.md +++ b/docset/winserver2022-ps/devicehealthattestation/Get-DHASInactiveEncryptionCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.DeviceHealthAttestation.PowerShell.dll-Help.xml Module Name: DeviceHealthAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/devicehealthattestation/get-dhasinactiveencryptioncertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/devicehealthattestation/get-dhasinactiveencryptioncertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DHASInactiveEncryptionCertificate --- diff --git a/docset/winserver2022-ps/devicehealthattestation/Get-DHASInactiveSigningCertificate.md b/docset/winserver2022-ps/devicehealthattestation/Get-DHASInactiveSigningCertificate.md index 88ccf96c4d..8747dab5c6 100644 --- a/docset/winserver2022-ps/devicehealthattestation/Get-DHASInactiveSigningCertificate.md +++ b/docset/winserver2022-ps/devicehealthattestation/Get-DHASInactiveSigningCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.DeviceHealthAttestation.PowerShell.dll-Help.xml Module Name: DeviceHealthAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/devicehealthattestation/get-dhasinactivesigningcertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/devicehealthattestation/get-dhasinactivesigningcertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DHASInactiveSigningCertificate --- diff --git a/docset/winserver2022-ps/devicehealthattestation/Install-DeviceHealthAttestation.md b/docset/winserver2022-ps/devicehealthattestation/Install-DeviceHealthAttestation.md index 0ff02452fd..721adde0e6 100644 --- a/docset/winserver2022-ps/devicehealthattestation/Install-DeviceHealthAttestation.md +++ b/docset/winserver2022-ps/devicehealthattestation/Install-DeviceHealthAttestation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.DeviceHealthAttestation.PowerShell.dll-Help.xml Module Name: DeviceHealthAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/devicehealthattestation/install-devicehealthattestation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/devicehealthattestation/install-devicehealthattestation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-DeviceHealthAttestation --- diff --git a/docset/winserver2022-ps/devicehealthattestation/Remove-DHASInactiveEncryptionCertificate.md b/docset/winserver2022-ps/devicehealthattestation/Remove-DHASInactiveEncryptionCertificate.md index def5c363d5..07fb4e2543 100644 --- a/docset/winserver2022-ps/devicehealthattestation/Remove-DHASInactiveEncryptionCertificate.md +++ b/docset/winserver2022-ps/devicehealthattestation/Remove-DHASInactiveEncryptionCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.DeviceHealthAttestation.PowerShell.dll-Help.xml Module Name: DeviceHealthAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/devicehealthattestation/remove-dhasinactiveencryptioncertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/devicehealthattestation/remove-dhasinactiveencryptioncertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DHASInactiveEncryptionCertificate --- diff --git a/docset/winserver2022-ps/devicehealthattestation/Remove-DHASInactiveSigningCertificate.md b/docset/winserver2022-ps/devicehealthattestation/Remove-DHASInactiveSigningCertificate.md index 3f58571752..b954a12340 100644 --- a/docset/winserver2022-ps/devicehealthattestation/Remove-DHASInactiveSigningCertificate.md +++ b/docset/winserver2022-ps/devicehealthattestation/Remove-DHASInactiveSigningCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.DeviceHealthAttestation.PowerShell.dll-Help.xml Module Name: DeviceHealthAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/devicehealthattestation/remove-dhasinactivesigningcertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/devicehealthattestation/remove-dhasinactivesigningcertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DHASInactiveSigningCertificate --- diff --git a/docset/winserver2022-ps/devicehealthattestation/Restore-DHASConfiguration.md b/docset/winserver2022-ps/devicehealthattestation/Restore-DHASConfiguration.md index 69e8a830c8..79c936bcc0 100644 --- a/docset/winserver2022-ps/devicehealthattestation/Restore-DHASConfiguration.md +++ b/docset/winserver2022-ps/devicehealthattestation/Restore-DHASConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.DeviceHealthAttestation.PowerShell.dll-Help.xml Module Name: DeviceHealthAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/devicehealthattestation/restore-dhasconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/devicehealthattestation/restore-dhasconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-DHASConfiguration --- diff --git a/docset/winserver2022-ps/devicehealthattestation/Set-DHASActiveEncryptionCertificate.md b/docset/winserver2022-ps/devicehealthattestation/Set-DHASActiveEncryptionCertificate.md index ae70e6798b..7d484d9c26 100644 --- a/docset/winserver2022-ps/devicehealthattestation/Set-DHASActiveEncryptionCertificate.md +++ b/docset/winserver2022-ps/devicehealthattestation/Set-DHASActiveEncryptionCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.DeviceHealthAttestation.PowerShell.dll-Help.xml Module Name: DeviceHealthAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/devicehealthattestation/set-dhasactiveencryptioncertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/devicehealthattestation/set-dhasactiveencryptioncertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DHASActiveEncryptionCertificate --- diff --git a/docset/winserver2022-ps/devicehealthattestation/Set-DHASActiveSigningCertificate.md b/docset/winserver2022-ps/devicehealthattestation/Set-DHASActiveSigningCertificate.md index be1dce912e..b8ed415f16 100644 --- a/docset/winserver2022-ps/devicehealthattestation/Set-DHASActiveSigningCertificate.md +++ b/docset/winserver2022-ps/devicehealthattestation/Set-DHASActiveSigningCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.DeviceHealthAttestation.PowerShell.dll-Help.xml Module Name: DeviceHealthAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/devicehealthattestation/set-dhasactivesigningcertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/devicehealthattestation/set-dhasactivesigningcertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DHASActiveSigningCertificate --- diff --git a/docset/winserver2022-ps/devicehealthattestation/Set-DHASCertificateChainPolicy.md b/docset/winserver2022-ps/devicehealthattestation/Set-DHASCertificateChainPolicy.md index 0473605717..63e1b7e2b1 100644 --- a/docset/winserver2022-ps/devicehealthattestation/Set-DHASCertificateChainPolicy.md +++ b/docset/winserver2022-ps/devicehealthattestation/Set-DHASCertificateChainPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.DeviceHealthAttestation.PowerShell.dll-Help.xml Module Name: DeviceHealthAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/devicehealthattestation/set-dhascertificatechainpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/devicehealthattestation/set-dhascertificatechainpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DHASCertificateChainPolicy --- diff --git a/docset/winserver2022-ps/devicehealthattestation/Set-DHASSupportedAuthenticationSchema.md b/docset/winserver2022-ps/devicehealthattestation/Set-DHASSupportedAuthenticationSchema.md index 3ba8859fc6..3428533c4b 100644 --- a/docset/winserver2022-ps/devicehealthattestation/Set-DHASSupportedAuthenticationSchema.md +++ b/docset/winserver2022-ps/devicehealthattestation/Set-DHASSupportedAuthenticationSchema.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.DeviceHealthAttestation.PowerShell.dll-Help.xml Module Name: DeviceHealthAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/devicehealthattestation/set-dhassupportedauthenticationschema?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/devicehealthattestation/set-dhassupportedauthenticationschema?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DHASSupportedAuthenticationSchema --- diff --git a/docset/winserver2022-ps/devicehealthattestation/Uninstall-DeviceHealthAttestation.md b/docset/winserver2022-ps/devicehealthattestation/Uninstall-DeviceHealthAttestation.md index 346e13e3af..7e8aa36a5b 100644 --- a/docset/winserver2022-ps/devicehealthattestation/Uninstall-DeviceHealthAttestation.md +++ b/docset/winserver2022-ps/devicehealthattestation/Uninstall-DeviceHealthAttestation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.DeviceHealthAttestation.PowerShell.dll-Help.xml Module Name: DeviceHealthAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/devicehealthattestation/uninstall-devicehealthattestation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/devicehealthattestation/uninstall-devicehealthattestation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-DeviceHealthAttestation --- diff --git a/docset/winserver2022-ps/dfsn/Get-DfsnAccess.md b/docset/winserver2022-ps/dfsn/Get-DfsnAccess.md index c96ca8990e..cecc0e7287 100644 --- a/docset/winserver2022-ps/dfsn/Get-DfsnAccess.md +++ b/docset/winserver2022-ps/dfsn/Get-DfsnAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceAccess.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/get-dfsnaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/get-dfsnaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsnAccess --- diff --git a/docset/winserver2022-ps/dfsn/Get-DfsnFolder.md b/docset/winserver2022-ps/dfsn/Get-DfsnFolder.md index edc0d0b0f8..011a41e7e9 100644 --- a/docset/winserver2022-ps/dfsn/Get-DfsnFolder.md +++ b/docset/winserver2022-ps/dfsn/Get-DfsnFolder.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceFolder.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/get-dfsnfolder?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/get-dfsnfolder?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsnFolder --- diff --git a/docset/winserver2022-ps/dfsn/Get-DfsnFolderTarget.md b/docset/winserver2022-ps/dfsn/Get-DfsnFolderTarget.md index d9168c8da6..5dab3b971c 100644 --- a/docset/winserver2022-ps/dfsn/Get-DfsnFolderTarget.md +++ b/docset/winserver2022-ps/dfsn/Get-DfsnFolderTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceFolderTarget.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/get-dfsnfoldertarget?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/get-dfsnfoldertarget?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsnFolderTarget --- diff --git a/docset/winserver2022-ps/dfsn/Get-DfsnRoot.md b/docset/winserver2022-ps/dfsn/Get-DfsnRoot.md index ccad0f33e6..4b1553bf0a 100644 --- a/docset/winserver2022-ps/dfsn/Get-DfsnRoot.md +++ b/docset/winserver2022-ps/dfsn/Get-DfsnRoot.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespace.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/get-dfsnroot?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/get-dfsnroot?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsnRoot --- diff --git a/docset/winserver2022-ps/dfsn/Get-DfsnRootTarget.md b/docset/winserver2022-ps/dfsn/Get-DfsnRootTarget.md index 1fdc732bc2..61972a1a6a 100644 --- a/docset/winserver2022-ps/dfsn/Get-DfsnRootTarget.md +++ b/docset/winserver2022-ps/dfsn/Get-DfsnRootTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceRootTarget.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/get-dfsnroottarget?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/get-dfsnroottarget?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsnRootTarget --- diff --git a/docset/winserver2022-ps/dfsn/Get-DfsnServerConfiguration.md b/docset/winserver2022-ps/dfsn/Get-DfsnServerConfiguration.md index 66bdaa2523..ec6607a6e1 100644 --- a/docset/winserver2022-ps/dfsn/Get-DfsnServerConfiguration.md +++ b/docset/winserver2022-ps/dfsn/Get-DfsnServerConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceServerConfig.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/get-dfsnserverconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/get-dfsnserverconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsnServerConfiguration --- diff --git a/docset/winserver2022-ps/dfsn/Grant-DfsnAccess.md b/docset/winserver2022-ps/dfsn/Grant-DfsnAccess.md index d2e2b78333..18bba3095d 100644 --- a/docset/winserver2022-ps/dfsn/Grant-DfsnAccess.md +++ b/docset/winserver2022-ps/dfsn/Grant-DfsnAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceAccess.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/grant-dfsnaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/grant-dfsnaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Grant-DfsnAccess --- diff --git a/docset/winserver2022-ps/dfsn/Move-DfsnFolder.md b/docset/winserver2022-ps/dfsn/Move-DfsnFolder.md index 9f261bfd66..06db0e719e 100644 --- a/docset/winserver2022-ps/dfsn/Move-DfsnFolder.md +++ b/docset/winserver2022-ps/dfsn/Move-DfsnFolder.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceFolder.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/move-dfsnfolder?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/move-dfsnfolder?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-DfsnFolder --- diff --git a/docset/winserver2022-ps/dfsn/New-DfsnFolder.md b/docset/winserver2022-ps/dfsn/New-DfsnFolder.md index e67fbc16c3..3afd766b12 100644 --- a/docset/winserver2022-ps/dfsn/New-DfsnFolder.md +++ b/docset/winserver2022-ps/dfsn/New-DfsnFolder.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceFolder.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/new-dfsnfolder?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/new-dfsnfolder?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-DfsnFolder --- diff --git a/docset/winserver2022-ps/dfsn/New-DfsnFolderTarget.md b/docset/winserver2022-ps/dfsn/New-DfsnFolderTarget.md index cd8d2abe5f..09e578faa6 100644 --- a/docset/winserver2022-ps/dfsn/New-DfsnFolderTarget.md +++ b/docset/winserver2022-ps/dfsn/New-DfsnFolderTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceFolderTarget.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/new-dfsnfoldertarget?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/new-dfsnfoldertarget?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-DfsnFolderTarget --- diff --git a/docset/winserver2022-ps/dfsn/New-DfsnRoot.md b/docset/winserver2022-ps/dfsn/New-DfsnRoot.md index a614e965f7..f4d4e99ce7 100644 --- a/docset/winserver2022-ps/dfsn/New-DfsnRoot.md +++ b/docset/winserver2022-ps/dfsn/New-DfsnRoot.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespace.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/new-dfsnroot?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/new-dfsnroot?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-DfsnRoot --- diff --git a/docset/winserver2022-ps/dfsn/New-DfsnRootTarget.md b/docset/winserver2022-ps/dfsn/New-DfsnRootTarget.md index d8c0e90953..f9186adb3a 100644 --- a/docset/winserver2022-ps/dfsn/New-DfsnRootTarget.md +++ b/docset/winserver2022-ps/dfsn/New-DfsnRootTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceRootTarget.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/new-dfsnroottarget?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/new-dfsnroottarget?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-DfsnRootTarget --- diff --git a/docset/winserver2022-ps/dfsn/Remove-DfsnAccess.md b/docset/winserver2022-ps/dfsn/Remove-DfsnAccess.md index b4e42838d6..206b590ea8 100644 --- a/docset/winserver2022-ps/dfsn/Remove-DfsnAccess.md +++ b/docset/winserver2022-ps/dfsn/Remove-DfsnAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceAccess.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/remove-dfsnaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/remove-dfsnaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DfsnAccess --- diff --git a/docset/winserver2022-ps/dfsn/Remove-DfsnFolder.md b/docset/winserver2022-ps/dfsn/Remove-DfsnFolder.md index 32d166711e..df39182c2c 100644 --- a/docset/winserver2022-ps/dfsn/Remove-DfsnFolder.md +++ b/docset/winserver2022-ps/dfsn/Remove-DfsnFolder.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceFolder.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/remove-dfsnfolder?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/remove-dfsnfolder?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DfsnFolder --- diff --git a/docset/winserver2022-ps/dfsn/Remove-DfsnFolderTarget.md b/docset/winserver2022-ps/dfsn/Remove-DfsnFolderTarget.md index c306c1e020..f6f6d33d66 100644 --- a/docset/winserver2022-ps/dfsn/Remove-DfsnFolderTarget.md +++ b/docset/winserver2022-ps/dfsn/Remove-DfsnFolderTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceFolderTarget.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/remove-dfsnfoldertarget?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/remove-dfsnfoldertarget?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DfsnFolderTarget --- diff --git a/docset/winserver2022-ps/dfsn/Remove-DfsnRoot.md b/docset/winserver2022-ps/dfsn/Remove-DfsnRoot.md index 2ad59ae531..33d686f055 100644 --- a/docset/winserver2022-ps/dfsn/Remove-DfsnRoot.md +++ b/docset/winserver2022-ps/dfsn/Remove-DfsnRoot.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespace.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/remove-dfsnroot?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/remove-dfsnroot?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DfsnRoot --- diff --git a/docset/winserver2022-ps/dfsn/Remove-DfsnRootTarget.md b/docset/winserver2022-ps/dfsn/Remove-DfsnRootTarget.md index b70905d1b6..a159b60d0c 100644 --- a/docset/winserver2022-ps/dfsn/Remove-DfsnRootTarget.md +++ b/docset/winserver2022-ps/dfsn/Remove-DfsnRootTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceRootTarget.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/remove-dfsnroottarget?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/remove-dfsnroottarget?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DfsnRootTarget --- diff --git a/docset/winserver2022-ps/dfsn/Revoke-DfsnAccess.md b/docset/winserver2022-ps/dfsn/Revoke-DfsnAccess.md index 885f9cdf37..17e27152da 100644 --- a/docset/winserver2022-ps/dfsn/Revoke-DfsnAccess.md +++ b/docset/winserver2022-ps/dfsn/Revoke-DfsnAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceAccess.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/revoke-dfsnaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/revoke-dfsnaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Revoke-DfsnAccess --- diff --git a/docset/winserver2022-ps/dfsn/Set-DfsnFolder.md b/docset/winserver2022-ps/dfsn/Set-DfsnFolder.md index 8253769645..a81308bb93 100644 --- a/docset/winserver2022-ps/dfsn/Set-DfsnFolder.md +++ b/docset/winserver2022-ps/dfsn/Set-DfsnFolder.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceFolder.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/set-dfsnfolder?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/set-dfsnfolder?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DfsnFolder --- diff --git a/docset/winserver2022-ps/dfsn/Set-DfsnFolderTarget.md b/docset/winserver2022-ps/dfsn/Set-DfsnFolderTarget.md index bdeeaa3237..b4300312c3 100644 --- a/docset/winserver2022-ps/dfsn/Set-DfsnFolderTarget.md +++ b/docset/winserver2022-ps/dfsn/Set-DfsnFolderTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceFolderTarget.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/set-dfsnfoldertarget?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/set-dfsnfoldertarget?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DfsnFolderTarget --- diff --git a/docset/winserver2022-ps/dfsn/Set-DfsnRoot.md b/docset/winserver2022-ps/dfsn/Set-DfsnRoot.md index 057a77770a..530190146c 100644 --- a/docset/winserver2022-ps/dfsn/Set-DfsnRoot.md +++ b/docset/winserver2022-ps/dfsn/Set-DfsnRoot.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespace.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/set-dfsnroot?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/set-dfsnroot?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DfsnRoot --- diff --git a/docset/winserver2022-ps/dfsn/Set-DfsnRootTarget.md b/docset/winserver2022-ps/dfsn/Set-DfsnRootTarget.md index 1ab24e9227..7e8401fd43 100644 --- a/docset/winserver2022-ps/dfsn/Set-DfsnRootTarget.md +++ b/docset/winserver2022-ps/dfsn/Set-DfsnRootTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceRootTarget.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/set-dfsnroottarget?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/set-dfsnroottarget?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DfsnRootTarget --- diff --git a/docset/winserver2022-ps/dfsn/Set-DfsnServerConfiguration.md b/docset/winserver2022-ps/dfsn/Set-DfsnServerConfiguration.md index a8b1b22f50..f54113bbcb 100644 --- a/docset/winserver2022-ps/dfsn/Set-DfsnServerConfiguration.md +++ b/docset/winserver2022-ps/dfsn/Set-DfsnServerConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsNamespaceServerConfig.cdxml-help.xml Module Name: DFSN ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsn/set-dfsnserverconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsn/set-dfsnserverconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DfsnServerConfiguration --- diff --git a/docset/winserver2022-ps/dfsr/Add-DfsrConnection.md b/docset/winserver2022-ps/dfsr/Add-DfsrConnection.md index 0becb446ff..58dd2ef920 100644 --- a/docset/winserver2022-ps/dfsr/Add-DfsrConnection.md +++ b/docset/winserver2022-ps/dfsr/Add-DfsrConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/add-dfsrconnection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/add-dfsrconnection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DfsrConnection --- diff --git a/docset/winserver2022-ps/dfsr/Add-DfsrMember.md b/docset/winserver2022-ps/dfsr/Add-DfsrMember.md index 27c0046944..ec9fe10757 100644 --- a/docset/winserver2022-ps/dfsr/Add-DfsrMember.md +++ b/docset/winserver2022-ps/dfsr/Add-DfsrMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/add-dfsrmember?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/add-dfsrmember?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DfsrMember --- diff --git a/docset/winserver2022-ps/dfsr/ConvertFrom-DfsrGuid.md b/docset/winserver2022-ps/dfsr/ConvertFrom-DfsrGuid.md index bf4e7041f7..02487fd5c0 100644 --- a/docset/winserver2022-ps/dfsr/ConvertFrom-DfsrGuid.md +++ b/docset/winserver2022-ps/dfsr/ConvertFrom-DfsrGuid.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/convertfrom-dfsrguid?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/convertfrom-dfsrguid?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: ConvertFrom-DfsrGuid --- diff --git a/docset/winserver2022-ps/dfsr/Export-DfsrClone.md b/docset/winserver2022-ps/dfsr/Export-DfsrClone.md index 50d94197b4..be357ceff8 100644 --- a/docset/winserver2022-ps/dfsr/Export-DfsrClone.md +++ b/docset/winserver2022-ps/dfsr/Export-DfsrClone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/export-dfsrclone?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/export-dfsrclone?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-DfsrClone --- diff --git a/docset/winserver2022-ps/dfsr/Get-DfsReplicatedFolder.md b/docset/winserver2022-ps/dfsr/Get-DfsReplicatedFolder.md index 6a812bc7a2..0b60c5daf7 100644 --- a/docset/winserver2022-ps/dfsr/Get-DfsReplicatedFolder.md +++ b/docset/winserver2022-ps/dfsr/Get-DfsReplicatedFolder.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsreplicatedfolder?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsreplicatedfolder?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsReplicatedFolder --- diff --git a/docset/winserver2022-ps/dfsr/Get-DfsReplicationGroup.md b/docset/winserver2022-ps/dfsr/Get-DfsReplicationGroup.md index e4ff5aa610..f1269baa65 100644 --- a/docset/winserver2022-ps/dfsr/Get-DfsReplicationGroup.md +++ b/docset/winserver2022-ps/dfsr/Get-DfsReplicationGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsreplicationgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsreplicationgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsReplicationGroup --- diff --git a/docset/winserver2022-ps/dfsr/Get-DfsrBacklog.md b/docset/winserver2022-ps/dfsr/Get-DfsrBacklog.md index 8186f23136..fe85cb45ea 100644 --- a/docset/winserver2022-ps/dfsr/Get-DfsrBacklog.md +++ b/docset/winserver2022-ps/dfsr/Get-DfsrBacklog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsrbacklog?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsrbacklog?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsrBacklog --- diff --git a/docset/winserver2022-ps/dfsr/Get-DfsrCloneState.md b/docset/winserver2022-ps/dfsr/Get-DfsrCloneState.md index 8b174b02da..e3892bcb85 100644 --- a/docset/winserver2022-ps/dfsr/Get-DfsrCloneState.md +++ b/docset/winserver2022-ps/dfsr/Get-DfsrCloneState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsrclonestate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsrclonestate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsrCloneState --- diff --git a/docset/winserver2022-ps/dfsr/Get-DfsrConnection.md b/docset/winserver2022-ps/dfsr/Get-DfsrConnection.md index 4fb100c072..f0a3daa5db 100644 --- a/docset/winserver2022-ps/dfsr/Get-DfsrConnection.md +++ b/docset/winserver2022-ps/dfsr/Get-DfsrConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsrconnection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsrconnection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsrConnection --- diff --git a/docset/winserver2022-ps/dfsr/Get-DfsrConnectionSchedule.md b/docset/winserver2022-ps/dfsr/Get-DfsrConnectionSchedule.md index 0f33d96002..c146f97b14 100644 --- a/docset/winserver2022-ps/dfsr/Get-DfsrConnectionSchedule.md +++ b/docset/winserver2022-ps/dfsr/Get-DfsrConnectionSchedule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsrconnectionschedule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsrconnectionschedule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsrConnectionSchedule --- diff --git a/docset/winserver2022-ps/dfsr/Get-DfsrDelegation.md b/docset/winserver2022-ps/dfsr/Get-DfsrDelegation.md index 3dc2a7f875..5671452741 100644 --- a/docset/winserver2022-ps/dfsr/Get-DfsrDelegation.md +++ b/docset/winserver2022-ps/dfsr/Get-DfsrDelegation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsrdelegation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsrdelegation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsrDelegation --- diff --git a/docset/winserver2022-ps/dfsr/Get-DfsrFileHash.md b/docset/winserver2022-ps/dfsr/Get-DfsrFileHash.md index e19ba579e7..82ea9bd520 100644 --- a/docset/winserver2022-ps/dfsr/Get-DfsrFileHash.md +++ b/docset/winserver2022-ps/dfsr/Get-DfsrFileHash.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsrfilehash?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsrfilehash?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsrFileHash --- diff --git a/docset/winserver2022-ps/dfsr/Get-DfsrGroupSchedule.md b/docset/winserver2022-ps/dfsr/Get-DfsrGroupSchedule.md index 4a0f78e114..c1a9194cb8 100644 --- a/docset/winserver2022-ps/dfsr/Get-DfsrGroupSchedule.md +++ b/docset/winserver2022-ps/dfsr/Get-DfsrGroupSchedule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsrgroupschedule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsrgroupschedule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsrGroupSchedule --- diff --git a/docset/winserver2022-ps/dfsr/Get-DfsrIdRecord.md b/docset/winserver2022-ps/dfsr/Get-DfsrIdRecord.md index e3f6a2cbee..1b5502b9f0 100644 --- a/docset/winserver2022-ps/dfsr/Get-DfsrIdRecord.md +++ b/docset/winserver2022-ps/dfsr/Get-DfsrIdRecord.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsridrecord?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsridrecord?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsrIdRecord --- diff --git a/docset/winserver2022-ps/dfsr/Get-DfsrMember.md b/docset/winserver2022-ps/dfsr/Get-DfsrMember.md index 301121fb05..82d7df8a14 100644 --- a/docset/winserver2022-ps/dfsr/Get-DfsrMember.md +++ b/docset/winserver2022-ps/dfsr/Get-DfsrMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsrmember?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsrmember?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsrMember --- diff --git a/docset/winserver2022-ps/dfsr/Get-DfsrMembership.md b/docset/winserver2022-ps/dfsr/Get-DfsrMembership.md index 0e076a6b08..00869dbebb 100644 --- a/docset/winserver2022-ps/dfsr/Get-DfsrMembership.md +++ b/docset/winserver2022-ps/dfsr/Get-DfsrMembership.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsrmembership?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsrmembership?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsrMembership --- diff --git a/docset/winserver2022-ps/dfsr/Get-DfsrPreservedFiles.md b/docset/winserver2022-ps/dfsr/Get-DfsrPreservedFiles.md index 5dccc3b5e8..de2d84e690 100644 --- a/docset/winserver2022-ps/dfsr/Get-DfsrPreservedFiles.md +++ b/docset/winserver2022-ps/dfsr/Get-DfsrPreservedFiles.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsrpreservedfiles?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsrpreservedfiles?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsrPreservedFiles --- diff --git a/docset/winserver2022-ps/dfsr/Get-DfsrServiceConfiguration.md b/docset/winserver2022-ps/dfsr/Get-DfsrServiceConfiguration.md index d0db9620fb..943ec6a957 100644 --- a/docset/winserver2022-ps/dfsr/Get-DfsrServiceConfiguration.md +++ b/docset/winserver2022-ps/dfsr/Get-DfsrServiceConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsrserviceconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsrserviceconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsrServiceConfiguration --- diff --git a/docset/winserver2022-ps/dfsr/Get-DfsrState.md b/docset/winserver2022-ps/dfsr/Get-DfsrState.md index e491862000..c6dfbd8e26 100644 --- a/docset/winserver2022-ps/dfsr/Get-DfsrState.md +++ b/docset/winserver2022-ps/dfsr/Get-DfsrState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/get-dfsrstate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/get-dfsrstate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DfsrState --- diff --git a/docset/winserver2022-ps/dfsr/Grant-DfsrDelegation.md b/docset/winserver2022-ps/dfsr/Grant-DfsrDelegation.md index c1e21c70a1..78676a6918 100644 --- a/docset/winserver2022-ps/dfsr/Grant-DfsrDelegation.md +++ b/docset/winserver2022-ps/dfsr/Grant-DfsrDelegation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/grant-dfsrdelegation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/grant-dfsrdelegation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Grant-DfsrDelegation --- diff --git a/docset/winserver2022-ps/dfsr/Import-DfsrClone.md b/docset/winserver2022-ps/dfsr/Import-DfsrClone.md index f5940565b8..3a89a573de 100644 --- a/docset/winserver2022-ps/dfsr/Import-DfsrClone.md +++ b/docset/winserver2022-ps/dfsr/Import-DfsrClone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/import-dfsrclone?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/import-dfsrclone?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-DfsrClone --- diff --git a/docset/winserver2022-ps/dfsr/New-DfsReplicatedFolder.md b/docset/winserver2022-ps/dfsr/New-DfsReplicatedFolder.md index 79006ec29a..72295cc65f 100644 --- a/docset/winserver2022-ps/dfsr/New-DfsReplicatedFolder.md +++ b/docset/winserver2022-ps/dfsr/New-DfsReplicatedFolder.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/new-dfsreplicatedfolder?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/new-dfsreplicatedfolder?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-DfsReplicatedFolder --- diff --git a/docset/winserver2022-ps/dfsr/New-DfsReplicationGroup.md b/docset/winserver2022-ps/dfsr/New-DfsReplicationGroup.md index d7c87f39b4..5f65d5936f 100644 --- a/docset/winserver2022-ps/dfsr/New-DfsReplicationGroup.md +++ b/docset/winserver2022-ps/dfsr/New-DfsReplicationGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/new-dfsreplicationgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/new-dfsreplicationgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-DfsReplicationGroup --- diff --git a/docset/winserver2022-ps/dfsr/Remove-DfsReplicatedFolder.md b/docset/winserver2022-ps/dfsr/Remove-DfsReplicatedFolder.md index 886a9d8f9b..4e0331f5ba 100644 --- a/docset/winserver2022-ps/dfsr/Remove-DfsReplicatedFolder.md +++ b/docset/winserver2022-ps/dfsr/Remove-DfsReplicatedFolder.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/remove-dfsreplicatedfolder?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/remove-dfsreplicatedfolder?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DfsReplicatedFolder --- diff --git a/docset/winserver2022-ps/dfsr/Remove-DfsReplicationGroup.md b/docset/winserver2022-ps/dfsr/Remove-DfsReplicationGroup.md index ed87dfeb11..b7060b4483 100644 --- a/docset/winserver2022-ps/dfsr/Remove-DfsReplicationGroup.md +++ b/docset/winserver2022-ps/dfsr/Remove-DfsReplicationGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/remove-dfsreplicationgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/remove-dfsreplicationgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DfsReplicationGroup --- diff --git a/docset/winserver2022-ps/dfsr/Remove-DfsrConnection.md b/docset/winserver2022-ps/dfsr/Remove-DfsrConnection.md index 2b34ae5f09..1bdd0c6e24 100644 --- a/docset/winserver2022-ps/dfsr/Remove-DfsrConnection.md +++ b/docset/winserver2022-ps/dfsr/Remove-DfsrConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/remove-dfsrconnection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/remove-dfsrconnection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DfsrConnection --- diff --git a/docset/winserver2022-ps/dfsr/Remove-DfsrMember.md b/docset/winserver2022-ps/dfsr/Remove-DfsrMember.md index d75513b961..62d3a04d5e 100644 --- a/docset/winserver2022-ps/dfsr/Remove-DfsrMember.md +++ b/docset/winserver2022-ps/dfsr/Remove-DfsrMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/remove-dfsrmember?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/remove-dfsrmember?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DfsrMember --- diff --git a/docset/winserver2022-ps/dfsr/Remove-DfsrPropagationTestFile.md b/docset/winserver2022-ps/dfsr/Remove-DfsrPropagationTestFile.md index 0a72522971..da37ed8660 100644 --- a/docset/winserver2022-ps/dfsr/Remove-DfsrPropagationTestFile.md +++ b/docset/winserver2022-ps/dfsr/Remove-DfsrPropagationTestFile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/remove-dfsrpropagationtestfile?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/remove-dfsrpropagationtestfile?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DfsrPropagationTestFile --- diff --git a/docset/winserver2022-ps/dfsr/Reset-DfsrCloneState.md b/docset/winserver2022-ps/dfsr/Reset-DfsrCloneState.md index 0fc28ce80f..cd88c39d23 100644 --- a/docset/winserver2022-ps/dfsr/Reset-DfsrCloneState.md +++ b/docset/winserver2022-ps/dfsr/Reset-DfsrCloneState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/reset-dfsrclonestate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/reset-dfsrclonestate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-DfsrCloneState --- diff --git a/docset/winserver2022-ps/dfsr/Restore-DfsrPreservedFiles.md b/docset/winserver2022-ps/dfsr/Restore-DfsrPreservedFiles.md index 1050e48fc6..d6b83912eb 100644 --- a/docset/winserver2022-ps/dfsr/Restore-DfsrPreservedFiles.md +++ b/docset/winserver2022-ps/dfsr/Restore-DfsrPreservedFiles.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/restore-dfsrpreservedfiles?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/restore-dfsrpreservedfiles?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-DfsrPreservedFiles --- diff --git a/docset/winserver2022-ps/dfsr/Revoke-DfsrDelegation.md b/docset/winserver2022-ps/dfsr/Revoke-DfsrDelegation.md index f0733378a2..e5ecf70449 100644 --- a/docset/winserver2022-ps/dfsr/Revoke-DfsrDelegation.md +++ b/docset/winserver2022-ps/dfsr/Revoke-DfsrDelegation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/revoke-dfsrdelegation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/revoke-dfsrdelegation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Revoke-DfsrDelegation --- diff --git a/docset/winserver2022-ps/dfsr/Set-DfsReplicatedFolder.md b/docset/winserver2022-ps/dfsr/Set-DfsReplicatedFolder.md index b71078ab9a..cb329cfdb0 100644 --- a/docset/winserver2022-ps/dfsr/Set-DfsReplicatedFolder.md +++ b/docset/winserver2022-ps/dfsr/Set-DfsReplicatedFolder.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/set-dfsreplicatedfolder?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/set-dfsreplicatedfolder?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DfsReplicatedFolder --- diff --git a/docset/winserver2022-ps/dfsr/Set-DfsReplicationGroup.md b/docset/winserver2022-ps/dfsr/Set-DfsReplicationGroup.md index 0f9c622f23..490129a37f 100644 --- a/docset/winserver2022-ps/dfsr/Set-DfsReplicationGroup.md +++ b/docset/winserver2022-ps/dfsr/Set-DfsReplicationGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/set-dfsreplicationgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/set-dfsreplicationgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DfsReplicationGroup --- diff --git a/docset/winserver2022-ps/dfsr/Set-DfsrConnection.md b/docset/winserver2022-ps/dfsr/Set-DfsrConnection.md index c009a5d0a5..089754042a 100644 --- a/docset/winserver2022-ps/dfsr/Set-DfsrConnection.md +++ b/docset/winserver2022-ps/dfsr/Set-DfsrConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/set-dfsrconnection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/set-dfsrconnection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DfsrConnection --- diff --git a/docset/winserver2022-ps/dfsr/Set-DfsrConnectionSchedule.md b/docset/winserver2022-ps/dfsr/Set-DfsrConnectionSchedule.md index 199a6744fd..1d88a4470a 100644 --- a/docset/winserver2022-ps/dfsr/Set-DfsrConnectionSchedule.md +++ b/docset/winserver2022-ps/dfsr/Set-DfsrConnectionSchedule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/set-dfsrconnectionschedule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/set-dfsrconnectionschedule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DfsrConnectionSchedule --- diff --git a/docset/winserver2022-ps/dfsr/Set-DfsrGroupSchedule.md b/docset/winserver2022-ps/dfsr/Set-DfsrGroupSchedule.md index e7ffd90476..4711818c65 100644 --- a/docset/winserver2022-ps/dfsr/Set-DfsrGroupSchedule.md +++ b/docset/winserver2022-ps/dfsr/Set-DfsrGroupSchedule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/set-dfsrgroupschedule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/set-dfsrgroupschedule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DfsrGroupSchedule --- diff --git a/docset/winserver2022-ps/dfsr/Set-DfsrMember.md b/docset/winserver2022-ps/dfsr/Set-DfsrMember.md index a06495386c..937962d0c0 100644 --- a/docset/winserver2022-ps/dfsr/Set-DfsrMember.md +++ b/docset/winserver2022-ps/dfsr/Set-DfsrMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/set-dfsrmember?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/set-dfsrmember?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DfsrMember --- diff --git a/docset/winserver2022-ps/dfsr/Set-DfsrMembership.md b/docset/winserver2022-ps/dfsr/Set-DfsrMembership.md index 798a90b351..356084a540 100644 --- a/docset/winserver2022-ps/dfsr/Set-DfsrMembership.md +++ b/docset/winserver2022-ps/dfsr/Set-DfsrMembership.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/set-dfsrmembership?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/set-dfsrmembership?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DfsrMembership --- diff --git a/docset/winserver2022-ps/dfsr/Set-DfsrServiceConfiguration.md b/docset/winserver2022-ps/dfsr/Set-DfsrServiceConfiguration.md index 1818b974ab..d74c606b8a 100644 --- a/docset/winserver2022-ps/dfsr/Set-DfsrServiceConfiguration.md +++ b/docset/winserver2022-ps/dfsr/Set-DfsrServiceConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/set-dfsrserviceconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/set-dfsrserviceconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DfsrServiceConfiguration --- diff --git a/docset/winserver2022-ps/dfsr/Start-DfsrPropagationTest.md b/docset/winserver2022-ps/dfsr/Start-DfsrPropagationTest.md index 7f63c25b47..c49e8c2215 100644 --- a/docset/winserver2022-ps/dfsr/Start-DfsrPropagationTest.md +++ b/docset/winserver2022-ps/dfsr/Start-DfsrPropagationTest.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/start-dfsrpropagationtest?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/start-dfsrpropagationtest?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-DfsrPropagationTest --- diff --git a/docset/winserver2022-ps/dfsr/Suspend-DfsReplicationGroup.md b/docset/winserver2022-ps/dfsr/Suspend-DfsReplicationGroup.md index 262ad4cd0a..a2fe469ba8 100644 --- a/docset/winserver2022-ps/dfsr/Suspend-DfsReplicationGroup.md +++ b/docset/winserver2022-ps/dfsr/Suspend-DfsReplicationGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/suspend-dfsreplicationgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/suspend-dfsreplicationgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-DfsReplicationGroup --- diff --git a/docset/winserver2022-ps/dfsr/Sync-DfsReplicationGroup.md b/docset/winserver2022-ps/dfsr/Sync-DfsReplicationGroup.md index 61441202f9..04a4e9ee34 100644 --- a/docset/winserver2022-ps/dfsr/Sync-DfsReplicationGroup.md +++ b/docset/winserver2022-ps/dfsr/Sync-DfsReplicationGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/sync-dfsreplicationgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/sync-dfsreplicationgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Sync-DfsReplicationGroup --- diff --git a/docset/winserver2022-ps/dfsr/Update-DfsrConfigurationFromAD.md b/docset/winserver2022-ps/dfsr/Update-DfsrConfigurationFromAD.md index 1691c7e941..7b181da78b 100644 --- a/docset/winserver2022-ps/dfsr/Update-DfsrConfigurationFromAD.md +++ b/docset/winserver2022-ps/dfsr/Update-DfsrConfigurationFromAD.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/update-dfsrconfigurationfromad?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/update-dfsrconfigurationfromad?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-DfsrConfigurationFromAD --- diff --git a/docset/winserver2022-ps/dfsr/Write-DfsrHealthReport.md b/docset/winserver2022-ps/dfsr/Write-DfsrHealthReport.md index a81ad98cc2..304b0e1a40 100644 --- a/docset/winserver2022-ps/dfsr/Write-DfsrHealthReport.md +++ b/docset/winserver2022-ps/dfsr/Write-DfsrHealthReport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/write-dfsrhealthreport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/write-dfsrhealthreport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Write-DfsrHealthReport --- diff --git a/docset/winserver2022-ps/dfsr/Write-DfsrPropagationReport.md b/docset/winserver2022-ps/dfsr/Write-DfsrPropagationReport.md index 6bcac6e133..35c1ee8956 100644 --- a/docset/winserver2022-ps/dfsr/Write-DfsrPropagationReport.md +++ b/docset/winserver2022-ps/dfsr/Write-DfsrPropagationReport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DfsrPowerShell.dll-Help.xml Module Name: DFSR ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dfsr/write-dfsrpropagationreport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dfsr/write-dfsrpropagationreport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Write-DfsrPropagationReport --- diff --git a/docset/winserver2022-ps/dhcpserver/Add-DhcpServerInDC.md b/docset/winserver2022-ps/dhcpserver/Add-DhcpServerInDC.md index fcbb697ce3..ca2c06a45a 100644 --- a/docset/winserver2022-ps/dhcpserver/Add-DhcpServerInDC.md +++ b/docset/winserver2022-ps/dhcpserver/Add-DhcpServerInDC.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerInDC_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverindc?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverindc?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerInDC --- diff --git a/docset/winserver2022-ps/dhcpserver/Add-DhcpServerSecurityGroup.md b/docset/winserver2022-ps/dhcpserver/Add-DhcpServerSecurityGroup.md index b8ce1447c7..52bcfc3489 100644 --- a/docset/winserver2022-ps/dhcpserver/Add-DhcpServerSecurityGroup.md +++ b/docset/winserver2022-ps/dhcpserver/Add-DhcpServerSecurityGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerSecurityGroup_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserversecuritygroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserversecuritygroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerSecurityGroup --- diff --git a/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4Class.md b/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4Class.md index 875ac3223a..a1eea8ac8b 100644 --- a/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4Class.md +++ b/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4Class.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Class_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4class?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4class?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4Class --- diff --git a/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4ExclusionRange.md b/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4ExclusionRange.md index 978a263f65..e3c329a004 100644 --- a/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4ExclusionRange.md +++ b/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4ExclusionRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4ExclusionRange_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4exclusionrange?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4exclusionrange?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4ExclusionRange --- diff --git a/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4Failover.md b/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4Failover.md index 7b933a1ff0..e6d0450813 100644 --- a/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4Failover.md +++ b/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4Failover.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Failover_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4failover?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4failover?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4Failover --- diff --git a/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4FailoverScope.md b/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4FailoverScope.md index d8993a8553..8ec7dd5d23 100644 --- a/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4FailoverScope.md +++ b/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4FailoverScope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4FailoverScope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4failoverscope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4failoverscope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4FailoverScope --- diff --git a/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4Filter.md b/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4Filter.md index d34bd1a9b4..c7075d5ae3 100644 --- a/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4Filter.md +++ b/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4Filter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Filter_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4filter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4filter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4Filter --- diff --git a/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4Lease.md b/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4Lease.md index 7dfe1b8783..de528f7dff 100644 --- a/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4Lease.md +++ b/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4Lease.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Lease_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4lease?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4lease?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4Lease --- diff --git a/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4MulticastExclusionRange.md b/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4MulticastExclusionRange.md index 991f6718f2..b94f42e6e2 100644 --- a/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4MulticastExclusionRange.md +++ b/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4MulticastExclusionRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4MulticastExclusionRange_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4multicastexclusionrange?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4multicastexclusionrange?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4MulticastExclusionRange --- diff --git a/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4MulticastScope.md b/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4MulticastScope.md index 3f35c935cc..03eb09804c 100644 --- a/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4MulticastScope.md +++ b/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4MulticastScope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4MulticastScope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4multicastscope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4multicastscope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4MulticastScope --- diff --git a/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4OptionDefinition.md b/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4OptionDefinition.md index 9f4d936ce4..baf86f8530 100644 --- a/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4OptionDefinition.md +++ b/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4OptionDefinition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4OptionDefinition_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4optiondefinition?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4optiondefinition?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4OptionDefinition --- diff --git a/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4Policy.md b/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4Policy.md index 12f6bf4bfe..d3fd97e2b9 100644 --- a/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4Policy.md +++ b/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4Policy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Policy_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4policy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4policy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4Policy --- diff --git a/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4PolicyIPRange.md b/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4PolicyIPRange.md index 045e54f66f..fdaf4735ef 100644 --- a/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4PolicyIPRange.md +++ b/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4PolicyIPRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4PolicyIPRange_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4policyiprange?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4policyiprange?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4PolicyIPRange --- diff --git a/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4Reservation.md b/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4Reservation.md index 896457cea1..4c756a451b 100644 --- a/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4Reservation.md +++ b/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4Reservation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4Reservation_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4reservation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4reservation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4Reservation --- diff --git a/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4Scope.md b/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4Scope.md index 58cfceb10e..12d328c105 100644 --- a/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4Scope.md +++ b/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4Scope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4Scope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4scope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4scope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4Scope --- diff --git a/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4Superscope.md b/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4Superscope.md index 0c76656fd5..d93e4ec95e 100644 --- a/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4Superscope.md +++ b/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv4Superscope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4Superscope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4superscope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv4superscope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv4Superscope --- diff --git a/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv6Class.md b/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv6Class.md index 56d15d9256..9ba5557201 100644 --- a/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv6Class.md +++ b/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv6Class.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv6Class_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6class?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6class?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv6Class --- diff --git a/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv6ExclusionRange.md b/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv6ExclusionRange.md index 6998bf381b..3ee5d18618 100644 --- a/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv6ExclusionRange.md +++ b/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv6ExclusionRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6ExclusionRange_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6exclusionrange?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6exclusionrange?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv6ExclusionRange --- diff --git a/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv6Lease.md b/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv6Lease.md index fdca0eccf8..a19a3c1ce4 100644 --- a/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv6Lease.md +++ b/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv6Lease.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv6Lease_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6lease?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6lease?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv6Lease --- diff --git a/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv6OptionDefinition.md b/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv6OptionDefinition.md index 25c56700e4..ce1f2417f7 100644 --- a/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv6OptionDefinition.md +++ b/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv6OptionDefinition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6OptionDefinition_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6optiondefinition?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6optiondefinition?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv6OptionDefinition --- diff --git a/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv6Reservation.md b/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv6Reservation.md index 355de2e32d..ba3b44f831 100644 --- a/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv6Reservation.md +++ b/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv6Reservation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6Reservation_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6reservation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6reservation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv6Reservation --- diff --git a/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv6Scope.md b/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv6Scope.md index 725bcb1dde..4382d4bee2 100644 --- a/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv6Scope.md +++ b/docset/winserver2022-ps/dhcpserver/Add-DhcpServerv6Scope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6Scope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6scope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/add-dhcpserverv6scope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DhcpServerv6Scope --- diff --git a/docset/winserver2022-ps/dhcpserver/Backup-DhcpServer.md b/docset/winserver2022-ps/dhcpserver/Backup-DhcpServer.md index b05f324060..eb2c108c26 100644 --- a/docset/winserver2022-ps/dhcpserver/Backup-DhcpServer.md +++ b/docset/winserver2022-ps/dhcpserver/Backup-DhcpServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServer_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/backup-dhcpserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/backup-dhcpserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Backup-DhcpServer --- diff --git a/docset/winserver2022-ps/dhcpserver/Export-DhcpServer.md b/docset/winserver2022-ps/dhcpserver/Export-DhcpServer.md index 78e9f36b1e..8818422e86 100644 --- a/docset/winserver2022-ps/dhcpserver/Export-DhcpServer.md +++ b/docset/winserver2022-ps/dhcpserver/Export-DhcpServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DhcpServerMigration-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/export-dhcpserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/export-dhcpserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-DhcpServer --- diff --git a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerAuditLog.md b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerAuditLog.md index 894849e434..b29554cfa6 100644 --- a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerAuditLog.md +++ b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerAuditLog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerAuditLog_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverauditlog?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverauditlog?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerAuditLog --- diff --git a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerDatabase.md b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerDatabase.md index bc81d83dfd..c3fdf75ae8 100644 --- a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerDatabase.md +++ b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerDatabase.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerDatabase_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverdatabase?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverdatabase?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerDatabase --- diff --git a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerDnsCredential.md b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerDnsCredential.md index 1a2afc7b92..6f87673c63 100644 --- a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerDnsCredential.md +++ b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerDnsCredential.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerDnsCredential_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverdnscredential?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverdnscredential?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerDnsCredential --- diff --git a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerInDC.md b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerInDC.md index 18a2181be5..59485c3068 100644 --- a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerInDC.md +++ b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerInDC.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerInDC_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverindc?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverindc?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerInDC --- diff --git a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerSetting.md b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerSetting.md index ace9805698..06efd0741d 100644 --- a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerSetting.md +++ b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerSetting_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserversetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserversetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerSetting --- diff --git a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerVersion.md b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerVersion.md index 04e9c8464d..af039f2bc0 100644 --- a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerVersion.md +++ b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerVersion.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerVersion_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverversion?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverversion?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerVersion --- diff --git a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4Binding.md b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4Binding.md index f6912e069e..96d2221258 100644 --- a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4Binding.md +++ b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4Binding.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4Binding_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4binding?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4binding?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4Binding --- diff --git a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4Class.md b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4Class.md index 8d0179cfe9..530a45feae 100644 --- a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4Class.md +++ b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4Class.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Class_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4class?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4class?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4Class --- diff --git a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4DnsSetting.md b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4DnsSetting.md index f5a624005c..e1579a651d 100644 --- a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4DnsSetting.md +++ b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4DnsSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4DnsSetting_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4dnssetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4dnssetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4DnsSetting --- diff --git a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4ExclusionRange.md b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4ExclusionRange.md index 16d2975be3..0cca800c52 100644 --- a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4ExclusionRange.md +++ b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4ExclusionRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4ExclusionRange_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4exclusionrange?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4exclusionrange?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4ExclusionRange --- diff --git a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4Failover.md b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4Failover.md index 2218d7569c..5d792b0d9c 100644 --- a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4Failover.md +++ b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4Failover.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Failover_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4failover?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4failover?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4Failover --- diff --git a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4Filter.md b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4Filter.md index 96ecacfa6a..a11ed59c22 100644 --- a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4Filter.md +++ b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4Filter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Filter_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4filter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4filter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4Filter --- diff --git a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4FilterList.md b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4FilterList.md index c90d05c394..bd6c9cd41e 100644 --- a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4FilterList.md +++ b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4FilterList.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4FilterList_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4filterlist?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4filterlist?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4FilterList --- diff --git a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4FreeIPAddress.md b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4FreeIPAddress.md index e96897747c..0d2109d9af 100644 --- a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4FreeIPAddress.md +++ b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4FreeIPAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4FreeIPAddress_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4freeipaddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4freeipaddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4FreeIPAddress --- diff --git a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4Lease.md b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4Lease.md index 75911f0bf9..3fc3f61436 100644 --- a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4Lease.md +++ b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4Lease.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Lease_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4lease?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4lease?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4Lease --- diff --git a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4MulticastExclusionRange.md b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4MulticastExclusionRange.md index b3cc9d4348..b5dba5a4b3 100644 --- a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4MulticastExclusionRange.md +++ b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4MulticastExclusionRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4MulticastExclusionRange_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4multicastexclusionrange?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4multicastexclusionrange?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4MulticastExclusionRange --- diff --git a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4MulticastLease.md b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4MulticastLease.md index 4062a128d3..80f63b65bf 100644 --- a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4MulticastLease.md +++ b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4MulticastLease.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4MulticastLease_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4multicastlease?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4multicastlease?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4MulticastLease --- diff --git a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4MulticastScope.md b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4MulticastScope.md index f4f2696ac2..fbdb15567d 100644 --- a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4MulticastScope.md +++ b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4MulticastScope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4MulticastScope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4multicastscope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4multicastscope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4MulticastScope --- diff --git a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4MulticastScopeStatistics.md b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4MulticastScopeStatistics.md index 75a74321bb..f53b141218 100644 --- a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4MulticastScopeStatistics.md +++ b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4MulticastScopeStatistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4MulticastScopeStatistics_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4multicastscopestatistics?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4multicastscopestatistics?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4MulticastScopeStatistics --- diff --git a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4OptionDefinition.md b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4OptionDefinition.md index 5ea16dc789..5eeeea2c87 100644 --- a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4OptionDefinition.md +++ b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4OptionDefinition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4OptionDefinition_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4optiondefinition?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4optiondefinition?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4OptionDefinition --- diff --git a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4OptionValue.md b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4OptionValue.md index a89f68c6ff..f998847c32 100644 --- a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4OptionValue.md +++ b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4OptionValue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4OptionValue_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4optionvalue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4optionvalue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4OptionValue --- diff --git a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4Policy.md b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4Policy.md index 1c0796c05c..679858ae3d 100644 --- a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4Policy.md +++ b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4Policy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Policy_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4policy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4policy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4Policy --- diff --git a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4PolicyIPRange.md b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4PolicyIPRange.md index c299350c37..bcb45f9d0a 100644 --- a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4PolicyIPRange.md +++ b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4PolicyIPRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4PolicyIPRange_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4policyiprange?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4policyiprange?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4PolicyIPRange --- diff --git a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4Reservation.md b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4Reservation.md index 901fcb39f4..ee0e9f3bb4 100644 --- a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4Reservation.md +++ b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4Reservation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4Reservation_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4reservation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4reservation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4Reservation --- diff --git a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4Scope.md b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4Scope.md index 5f8b6375d0..f5331d0631 100644 --- a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4Scope.md +++ b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4Scope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4Scope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4scope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4scope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4Scope --- diff --git a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4ScopeStatistics.md b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4ScopeStatistics.md index e5a26036cd..9dbedd269c 100644 --- a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4ScopeStatistics.md +++ b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4ScopeStatistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4ScopeStatistics_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4scopestatistics?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4scopestatistics?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4ScopeStatistics --- diff --git a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4Statistics.md b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4Statistics.md index f250f79046..fcc9cbb47b 100644 --- a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4Statistics.md +++ b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4Statistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Statistics_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4statistics?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4statistics?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4Statistics --- diff --git a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4Superscope.md b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4Superscope.md index 2668335db7..cb114c4dde 100644 --- a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4Superscope.md +++ b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4Superscope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4Superscope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4superscope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4superscope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4Superscope --- diff --git a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4SuperscopeStatistics.md b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4SuperscopeStatistics.md index 4d1bb0ecfb..e843da5e0f 100644 --- a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4SuperscopeStatistics.md +++ b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv4SuperscopeStatistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4SuperScopeStatistics_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4superscopestatistics?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv4superscopestatistics?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv4SuperscopeStatistics --- diff --git a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6Binding.md b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6Binding.md index e8b3069ed1..fcd208ad96 100644 --- a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6Binding.md +++ b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6Binding.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6Binding_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6binding?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6binding?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6Binding --- diff --git a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6Class.md b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6Class.md index a301e3c2ea..1dd013f039 100644 --- a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6Class.md +++ b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6Class.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv6Class_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6class?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6class?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6Class --- diff --git a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6DnsSetting.md b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6DnsSetting.md index d8c3715187..54db8a7b64 100644 --- a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6DnsSetting.md +++ b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6DnsSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv6DnsSetting_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6dnssetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6dnssetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6DnsSetting --- diff --git a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6ExclusionRange.md b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6ExclusionRange.md index 17ab6ac587..069ef11530 100644 --- a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6ExclusionRange.md +++ b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6ExclusionRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6ExclusionRange_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6exclusionrange?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6exclusionrange?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6ExclusionRange --- diff --git a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6FreeIPAddress.md b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6FreeIPAddress.md index 8345712753..6dd8ac9cd9 100644 --- a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6FreeIPAddress.md +++ b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6FreeIPAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv6FreeIPAddress_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6freeipaddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6freeipaddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6FreeIPAddress --- diff --git a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6Lease.md b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6Lease.md index 33c5047679..704cd5c070 100644 --- a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6Lease.md +++ b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6Lease.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv6Lease_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6lease?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6lease?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6Lease --- diff --git a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6OptionDefinition.md b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6OptionDefinition.md index ca869d7ccf..959b3aea7d 100644 --- a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6OptionDefinition.md +++ b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6OptionDefinition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6OptionDefinition_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6optiondefinition?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6optiondefinition?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6OptionDefinition --- diff --git a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6OptionValue.md b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6OptionValue.md index b602654237..48fb7558c1 100644 --- a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6OptionValue.md +++ b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6OptionValue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6OptionValue_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6optionvalue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6optionvalue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6OptionValue --- diff --git a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6Reservation.md b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6Reservation.md index 19f1555ebc..edc06e5afe 100644 --- a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6Reservation.md +++ b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6Reservation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6Reservation_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6reservation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6reservation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6Reservation --- diff --git a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6Scope.md b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6Scope.md index ead0c2ae9b..a22aa114c0 100644 --- a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6Scope.md +++ b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6Scope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6Scope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6scope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6scope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6Scope --- diff --git a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6ScopeStatistics.md b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6ScopeStatistics.md index 2ac3c37f4b..a20a1d43c9 100644 --- a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6ScopeStatistics.md +++ b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6ScopeStatistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6ScopeStatistics_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6scopestatistics?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6scopestatistics?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6ScopeStatistics --- diff --git a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6StatelessStatistics.md b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6StatelessStatistics.md index a59d2b8e2b..89dac2e622 100644 --- a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6StatelessStatistics.md +++ b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6StatelessStatistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv6StatelessStatistics_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6statelessstatistics?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6statelessstatistics?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6StatelessStatistics --- diff --git a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6StatelessStore.md b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6StatelessStore.md index 0aef0ea009..d9b6414737 100644 --- a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6StatelessStore.md +++ b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6StatelessStore.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv6StatelessStore_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6statelessstore?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6statelessstore?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6StatelessStore --- diff --git a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6Statistics.md b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6Statistics.md index 2a650a309d..0ba2294e63 100644 --- a/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6Statistics.md +++ b/docset/winserver2022-ps/dhcpserver/Get-DhcpServerv6Statistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv6Statistics_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6statistics?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/get-dhcpserverv6statistics?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DhcpServerv6Statistics --- diff --git a/docset/winserver2022-ps/dhcpserver/Import-DhcpServer.md b/docset/winserver2022-ps/dhcpserver/Import-DhcpServer.md index 315a1da020..9906b7c9d7 100644 --- a/docset/winserver2022-ps/dhcpserver/Import-DhcpServer.md +++ b/docset/winserver2022-ps/dhcpserver/Import-DhcpServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DhcpServerMigration-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/import-dhcpserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/import-dhcpserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-DhcpServer --- diff --git a/docset/winserver2022-ps/dhcpserver/Invoke-DhcpServerv4FailoverReplication.md b/docset/winserver2022-ps/dhcpserver/Invoke-DhcpServerv4FailoverReplication.md index 190984b54d..47bfed59da 100644 --- a/docset/winserver2022-ps/dhcpserver/Invoke-DhcpServerv4FailoverReplication.md +++ b/docset/winserver2022-ps/dhcpserver/Invoke-DhcpServerv4FailoverReplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4FailoverReplication_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/invoke-dhcpserverv4failoverreplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/invoke-dhcpserverv4failoverreplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-DhcpServerv4FailoverReplication --- diff --git a/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerDnsCredential.md b/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerDnsCredential.md index c731d9f35e..a46a72cb7e 100644 --- a/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerDnsCredential.md +++ b/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerDnsCredential.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerDnsCredential_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverdnscredential?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverdnscredential?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerDnsCredential --- diff --git a/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerInDC.md b/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerInDC.md index bb5c2989df..0fb05f79e4 100644 --- a/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerInDC.md +++ b/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerInDC.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerInDC_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverindc?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverindc?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerInDC --- diff --git a/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4Class.md b/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4Class.md index ede1086a43..89d9f7e82d 100644 --- a/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4Class.md +++ b/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4Class.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Class_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4class?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4class?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4Class --- diff --git a/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4ExclusionRange.md b/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4ExclusionRange.md index c5f2b052e1..b047c17b27 100644 --- a/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4ExclusionRange.md +++ b/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4ExclusionRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4ExclusionRange_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4exclusionrange?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4exclusionrange?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4ExclusionRange --- diff --git a/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4Failover.md b/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4Failover.md index 7246e9a7ec..a91b73456b 100644 --- a/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4Failover.md +++ b/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4Failover.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Failover_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4failover?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4failover?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4Failover --- diff --git a/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4FailoverScope.md b/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4FailoverScope.md index fbcb9dee9b..020dc6cf8f 100644 --- a/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4FailoverScope.md +++ b/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4FailoverScope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4FailoverScope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4failoverscope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4failoverscope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4FailoverScope --- diff --git a/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4Filter.md b/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4Filter.md index 5a02cc463b..830a7747c9 100644 --- a/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4Filter.md +++ b/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4Filter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Filter_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4filter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4filter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4Filter --- diff --git a/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4Lease.md b/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4Lease.md index 5838e63b44..402b3baaca 100644 --- a/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4Lease.md +++ b/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4Lease.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Lease_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4lease?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4lease?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4Lease --- diff --git a/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4MulticastExclusionRange.md b/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4MulticastExclusionRange.md index 97abb6c6ec..7ca3498c2a 100644 --- a/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4MulticastExclusionRange.md +++ b/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4MulticastExclusionRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4MulticastExclusionRange_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4multicastexclusionrange?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4multicastexclusionrange?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4MulticastExclusionRange --- diff --git a/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4MulticastLease.md b/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4MulticastLease.md index d0fe8f66de..1f8ab04c6c 100644 --- a/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4MulticastLease.md +++ b/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4MulticastLease.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4MulticastLease_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4multicastlease?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4multicastlease?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4MulticastLease --- diff --git a/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4MulticastScope.md b/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4MulticastScope.md index 85d0327f4b..26f1058b80 100644 --- a/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4MulticastScope.md +++ b/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4MulticastScope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4MulticastScope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4multicastscope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4multicastscope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4MulticastScope --- diff --git a/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4OptionDefinition.md b/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4OptionDefinition.md index eb89b4af7a..05753538e3 100644 --- a/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4OptionDefinition.md +++ b/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4OptionDefinition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4OptionDefinition_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4optiondefinition?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4optiondefinition?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4OptionDefinition --- diff --git a/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4OptionValue.md b/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4OptionValue.md index 27960faaa8..54fcae51cf 100644 --- a/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4OptionValue.md +++ b/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4OptionValue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4OptionValue_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4optionvalue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4optionvalue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4OptionValue --- diff --git a/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4Policy.md b/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4Policy.md index 6708b40b9b..6bd4e7d2a5 100644 --- a/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4Policy.md +++ b/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4Policy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Policy_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4policy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4policy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4Policy --- diff --git a/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4PolicyIPRange.md b/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4PolicyIPRange.md index 02b145cf52..0cab6bcc3c 100644 --- a/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4PolicyIPRange.md +++ b/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4PolicyIPRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4PolicyIPRange_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4policyiprange?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4policyiprange?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4PolicyIPRange --- diff --git a/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4Reservation.md b/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4Reservation.md index 7b7ec4ff95..e6ae7ee1ef 100644 --- a/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4Reservation.md +++ b/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4Reservation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4Reservation_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4reservation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4reservation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4Reservation --- diff --git a/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4Scope.md b/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4Scope.md index 9cb6dbf944..fe1524473e 100644 --- a/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4Scope.md +++ b/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4Scope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4Scope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4scope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4scope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4Scope --- diff --git a/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4Superscope.md b/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4Superscope.md index 019d30d9fd..bab26cfc02 100644 --- a/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4Superscope.md +++ b/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv4Superscope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4Superscope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4superscope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv4superscope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv4Superscope --- diff --git a/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv6Class.md b/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv6Class.md index ba4c644ed8..7c693a8039 100644 --- a/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv6Class.md +++ b/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv6Class.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv6Class_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6class?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6class?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv6Class --- diff --git a/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv6ExclusionRange.md b/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv6ExclusionRange.md index d1658288b4..bc4af3e9c2 100644 --- a/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv6ExclusionRange.md +++ b/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv6ExclusionRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6ExclusionRange_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6exclusionrange?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6exclusionrange?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv6ExclusionRange --- diff --git a/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv6Lease.md b/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv6Lease.md index d115be2e86..8b6c8a58d6 100644 --- a/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv6Lease.md +++ b/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv6Lease.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv6Lease_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6lease?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6lease?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv6Lease --- diff --git a/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv6OptionDefinition.md b/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv6OptionDefinition.md index 742c38aeb3..f7adfd8033 100644 --- a/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv6OptionDefinition.md +++ b/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv6OptionDefinition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6OptionDefinition_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6optiondefinition?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6optiondefinition?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv6OptionDefinition --- diff --git a/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv6OptionValue.md b/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv6OptionValue.md index a978c2c19a..e775e6d880 100644 --- a/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv6OptionValue.md +++ b/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv6OptionValue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6OptionValue_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6optionvalue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6optionvalue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv6OptionValue --- diff --git a/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv6Reservation.md b/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv6Reservation.md index e6e447096c..672b94f329 100644 --- a/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv6Reservation.md +++ b/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv6Reservation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6Reservation_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6reservation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6reservation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv6Reservation --- diff --git a/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv6Scope.md b/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv6Scope.md index f9648756e1..da0a43794f 100644 --- a/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv6Scope.md +++ b/docset/winserver2022-ps/dhcpserver/Remove-DhcpServerv6Scope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6Scope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6scope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/remove-dhcpserverv6scope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DhcpServerv6Scope --- diff --git a/docset/winserver2022-ps/dhcpserver/Rename-DhcpServerv4Superscope.md b/docset/winserver2022-ps/dhcpserver/Rename-DhcpServerv4Superscope.md index fd9fc5d901..34841e65df 100644 --- a/docset/winserver2022-ps/dhcpserver/Rename-DhcpServerv4Superscope.md +++ b/docset/winserver2022-ps/dhcpserver/Rename-DhcpServerv4Superscope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4Superscope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/rename-dhcpserverv4superscope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/rename-dhcpserverv4superscope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-DhcpServerv4Superscope --- diff --git a/docset/winserver2022-ps/dhcpserver/Repair-DhcpServerv4IPRecord.md b/docset/winserver2022-ps/dhcpserver/Repair-DhcpServerv4IPRecord.md index f88d002663..ec8f132b53 100644 --- a/docset/winserver2022-ps/dhcpserver/Repair-DhcpServerv4IPRecord.md +++ b/docset/winserver2022-ps/dhcpserver/Repair-DhcpServerv4IPRecord.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4IPRecord_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/repair-dhcpserverv4iprecord?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/repair-dhcpserverv4iprecord?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Repair-DhcpServerv4IPRecord --- diff --git a/docset/winserver2022-ps/dhcpserver/Restore-DhcpServer.md b/docset/winserver2022-ps/dhcpserver/Restore-DhcpServer.md index 61dddcc690..9ff0ef96c6 100644 --- a/docset/winserver2022-ps/dhcpserver/Restore-DhcpServer.md +++ b/docset/winserver2022-ps/dhcpserver/Restore-DhcpServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServer_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/restore-dhcpserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/restore-dhcpserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-DhcpServer --- diff --git a/docset/winserver2022-ps/dhcpserver/Set-DhcpServerAuditLog.md b/docset/winserver2022-ps/dhcpserver/Set-DhcpServerAuditLog.md index 2f2a4c8429..8993525bc6 100644 --- a/docset/winserver2022-ps/dhcpserver/Set-DhcpServerAuditLog.md +++ b/docset/winserver2022-ps/dhcpserver/Set-DhcpServerAuditLog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerAuditLog_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverauditlog?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverauditlog?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerAuditLog --- diff --git a/docset/winserver2022-ps/dhcpserver/Set-DhcpServerDatabase.md b/docset/winserver2022-ps/dhcpserver/Set-DhcpServerDatabase.md index 50e3a7380a..ff8ab53d83 100644 --- a/docset/winserver2022-ps/dhcpserver/Set-DhcpServerDatabase.md +++ b/docset/winserver2022-ps/dhcpserver/Set-DhcpServerDatabase.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerDatabase_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverdatabase?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverdatabase?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerDatabase --- diff --git a/docset/winserver2022-ps/dhcpserver/Set-DhcpServerDnsCredential.md b/docset/winserver2022-ps/dhcpserver/Set-DhcpServerDnsCredential.md index de8d3e7f24..25bd0b5d3c 100644 --- a/docset/winserver2022-ps/dhcpserver/Set-DhcpServerDnsCredential.md +++ b/docset/winserver2022-ps/dhcpserver/Set-DhcpServerDnsCredential.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerDnsCredential_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverdnscredential?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverdnscredential?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerDnsCredential --- diff --git a/docset/winserver2022-ps/dhcpserver/Set-DhcpServerSetting.md b/docset/winserver2022-ps/dhcpserver/Set-DhcpServerSetting.md index 9f7b5e5d37..1f04e121be 100644 --- a/docset/winserver2022-ps/dhcpserver/Set-DhcpServerSetting.md +++ b/docset/winserver2022-ps/dhcpserver/Set-DhcpServerSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerSetting_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserversetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserversetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerSetting --- diff --git a/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv4Binding.md b/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv4Binding.md index 36dec0c68f..b04999b2f3 100644 --- a/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv4Binding.md +++ b/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv4Binding.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4Binding_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4binding?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4binding?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv4Binding --- diff --git a/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv4Class.md b/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv4Class.md index 4de23e9feb..f97e56eb1f 100644 --- a/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv4Class.md +++ b/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv4Class.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Class_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4class?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4class?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv4Class --- diff --git a/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv4DnsSetting.md b/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv4DnsSetting.md index 591c1daaaf..115d22fd48 100644 --- a/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv4DnsSetting.md +++ b/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv4DnsSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4DnsSetting_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4dnssetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4dnssetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv4DnsSetting --- diff --git a/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv4Failover.md b/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv4Failover.md index b6d3188ea5..44b668fce3 100644 --- a/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv4Failover.md +++ b/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv4Failover.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Failover_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4failover?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4failover?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv4Failover --- diff --git a/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv4FilterList.md b/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv4FilterList.md index 05a94367ea..340e7b5a81 100644 --- a/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv4FilterList.md +++ b/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv4FilterList.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4FilterList_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4filterlist?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4filterlist?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv4FilterList --- diff --git a/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv4MulticastScope.md b/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv4MulticastScope.md index 237479e25d..fb5b34a333 100644 --- a/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv4MulticastScope.md +++ b/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv4MulticastScope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4MulticastScope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4multicastscope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4multicastscope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv4MulticastScope --- diff --git a/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv4OptionDefinition.md b/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv4OptionDefinition.md index 06f29de51f..a89a2f6d3b 100644 --- a/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv4OptionDefinition.md +++ b/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv4OptionDefinition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4OptionDefinition_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4optiondefinition?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4optiondefinition?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv4OptionDefinition --- diff --git a/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv4OptionValue.md b/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv4OptionValue.md index e43a45db25..d281d009de 100644 --- a/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv4OptionValue.md +++ b/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv4OptionValue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4OptionValue_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4optionvalue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4optionvalue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv4OptionValue --- diff --git a/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv4Policy.md b/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv4Policy.md index b5ec41e719..ded2a267a6 100644 --- a/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv4Policy.md +++ b/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv4Policy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv4Policy_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4policy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4policy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv4Policy --- diff --git a/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv4Reservation.md b/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv4Reservation.md index f899e3bb2a..b6fd9f25dc 100644 --- a/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv4Reservation.md +++ b/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv4Reservation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4Reservation_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4reservation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4reservation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv4Reservation --- diff --git a/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv4Scope.md b/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv4Scope.md index cf74ef5c14..cc870e7d35 100644 --- a/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv4Scope.md +++ b/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv4Scope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV4Scope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4scope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv4scope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv4Scope --- diff --git a/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv6Binding.md b/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv6Binding.md index e34728247f..1f1cb255c0 100644 --- a/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv6Binding.md +++ b/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv6Binding.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6Binding_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6binding?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6binding?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv6Binding --- diff --git a/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv6Class.md b/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv6Class.md index a5950f5bba..2ba7fdcc81 100644 --- a/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv6Class.md +++ b/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv6Class.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv6Class_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6class?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6class?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv6Class --- diff --git a/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv6DnsSetting.md b/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv6DnsSetting.md index 40451d8188..d16b415fbb 100644 --- a/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv6DnsSetting.md +++ b/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv6DnsSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv6DnsSetting_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6dnssetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6dnssetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv6DnsSetting --- diff --git a/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv6OptionDefinition.md b/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv6OptionDefinition.md index 3d41eec735..2af2a1a271 100644 --- a/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv6OptionDefinition.md +++ b/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv6OptionDefinition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6OptionDefinition_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6optiondefinition?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6optiondefinition?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv6OptionDefinition --- diff --git a/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv6OptionValue.md b/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv6OptionValue.md index 7209d8fcec..6e8c4269ea 100644 --- a/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv6OptionValue.md +++ b/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv6OptionValue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6OptionValue_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6optionvalue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6optionvalue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv6OptionValue --- diff --git a/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv6Reservation.md b/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv6Reservation.md index 80d0f14c91..f4b0273cab 100644 --- a/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv6Reservation.md +++ b/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv6Reservation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6Reservation_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6reservation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6reservation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv6Reservation --- diff --git a/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv6Scope.md b/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv6Scope.md index 22f908abf0..ac19e2ae59 100644 --- a/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv6Scope.md +++ b/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv6Scope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerV6Scope_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6scope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6scope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv6Scope --- diff --git a/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv6StatelessStore.md b/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv6StatelessStore.md index efd715ec84..ff83882a45 100644 --- a/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv6StatelessStore.md +++ b/docset/winserver2022-ps/dhcpserver/Set-DhcpServerv6StatelessStore.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DhcpServerv6StatelessStore_v1.0.0.cdxml-help.xml Module Name: DhcpServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6statelessstore?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dhcpserver/set-dhcpserverv6statelessstore?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DhcpServerv6StatelessStore --- diff --git a/docset/winserver2022-ps/directaccessclientcomponents/Disable-DAManualEntryPointSelection.md b/docset/winserver2022-ps/directaccessclientcomponents/Disable-DAManualEntryPointSelection.md index a1e7798a12..5d5682d5d5 100644 --- a/docset/winserver2022-ps/directaccessclientcomponents/Disable-DAManualEntryPointSelection.md +++ b/docset/winserver2022-ps/directaccessclientcomponents/Disable-DAManualEntryPointSelection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DASiteTableEntry.cdxml-help.xml Module Name: DirectAccessClientComponents ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/directaccessclientcomponents/disable-damanualentrypointselection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/directaccessclientcomponents/disable-damanualentrypointselection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-DAManualEntryPointSelection --- diff --git a/docset/winserver2022-ps/directaccessclientcomponents/Enable-DAManualEntryPointSelection.md b/docset/winserver2022-ps/directaccessclientcomponents/Enable-DAManualEntryPointSelection.md index 0ec5e43340..8fc2536b05 100644 --- a/docset/winserver2022-ps/directaccessclientcomponents/Enable-DAManualEntryPointSelection.md +++ b/docset/winserver2022-ps/directaccessclientcomponents/Enable-DAManualEntryPointSelection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DASiteTableEntry.cdxml-help.xml Module Name: DirectAccessClientComponents ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/directaccessclientcomponents/enable-damanualentrypointselection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/directaccessclientcomponents/enable-damanualentrypointselection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-DAManualEntryPointSelection --- diff --git a/docset/winserver2022-ps/directaccessclientcomponents/Get-DAClientExperienceConfiguration.md b/docset/winserver2022-ps/directaccessclientcomponents/Get-DAClientExperienceConfiguration.md index 73818b23c7..2acf9d20e7 100644 --- a/docset/winserver2022-ps/directaccessclientcomponents/Get-DAClientExperienceConfiguration.md +++ b/docset/winserver2022-ps/directaccessclientcomponents/Get-DAClientExperienceConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DAClientExperienceConfiguration.cdxml-help.xml Module Name: DirectAccessClientComponents ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/directaccessclientcomponents/get-daclientexperienceconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/directaccessclientcomponents/get-daclientexperienceconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DAClientExperienceConfiguration --- diff --git a/docset/winserver2022-ps/directaccessclientcomponents/Get-DAEntryPointTableItem.md b/docset/winserver2022-ps/directaccessclientcomponents/Get-DAEntryPointTableItem.md index b238f7e62c..db98b60e24 100644 --- a/docset/winserver2022-ps/directaccessclientcomponents/Get-DAEntryPointTableItem.md +++ b/docset/winserver2022-ps/directaccessclientcomponents/Get-DAEntryPointTableItem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DASiteTableEntry.cdxml-help.xml Module Name: DirectAccessClientComponents ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/directaccessclientcomponents/get-daentrypointtableitem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/directaccessclientcomponents/get-daentrypointtableitem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DAEntryPointTableItem --- diff --git a/docset/winserver2022-ps/directaccessclientcomponents/New-DAEntryPointTableItem.md b/docset/winserver2022-ps/directaccessclientcomponents/New-DAEntryPointTableItem.md index 3cb9006e4d..5494604026 100644 --- a/docset/winserver2022-ps/directaccessclientcomponents/New-DAEntryPointTableItem.md +++ b/docset/winserver2022-ps/directaccessclientcomponents/New-DAEntryPointTableItem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DASiteTableEntry.cdxml-help.xml Module Name: DirectAccessClientComponents ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/directaccessclientcomponents/new-daentrypointtableitem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/directaccessclientcomponents/new-daentrypointtableitem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-DAEntryPointTableItem --- diff --git a/docset/winserver2022-ps/directaccessclientcomponents/Remove-DAEntryPointTableItem.md b/docset/winserver2022-ps/directaccessclientcomponents/Remove-DAEntryPointTableItem.md index bef0eb3e47..42b7a88122 100644 --- a/docset/winserver2022-ps/directaccessclientcomponents/Remove-DAEntryPointTableItem.md +++ b/docset/winserver2022-ps/directaccessclientcomponents/Remove-DAEntryPointTableItem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DASiteTableEntry.cdxml-help.xml Module Name: DirectAccessClientComponents ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/directaccessclientcomponents/remove-daentrypointtableitem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/directaccessclientcomponents/remove-daentrypointtableitem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DAEntryPointTableItem --- diff --git a/docset/winserver2022-ps/directaccessclientcomponents/Rename-DAEntryPointTableItem.md b/docset/winserver2022-ps/directaccessclientcomponents/Rename-DAEntryPointTableItem.md index 32a27e5293..c42cabff1c 100644 --- a/docset/winserver2022-ps/directaccessclientcomponents/Rename-DAEntryPointTableItem.md +++ b/docset/winserver2022-ps/directaccessclientcomponents/Rename-DAEntryPointTableItem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DASiteTableEntry.cdxml-help.xml Module Name: DirectAccessClientComponents ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/directaccessclientcomponents/rename-daentrypointtableitem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/directaccessclientcomponents/rename-daentrypointtableitem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-DAEntryPointTableItem --- diff --git a/docset/winserver2022-ps/directaccessclientcomponents/Reset-DAClientExperienceConfiguration.md b/docset/winserver2022-ps/directaccessclientcomponents/Reset-DAClientExperienceConfiguration.md index f32de15e5f..0229058217 100644 --- a/docset/winserver2022-ps/directaccessclientcomponents/Reset-DAClientExperienceConfiguration.md +++ b/docset/winserver2022-ps/directaccessclientcomponents/Reset-DAClientExperienceConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DAClientExperienceConfiguration.cdxml-help.xml Module Name: DirectAccessClientComponents ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/directaccessclientcomponents/reset-daclientexperienceconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/directaccessclientcomponents/reset-daclientexperienceconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-DAClientExperienceConfiguration --- diff --git a/docset/winserver2022-ps/directaccessclientcomponents/Reset-DAEntryPointTableItem.md b/docset/winserver2022-ps/directaccessclientcomponents/Reset-DAEntryPointTableItem.md index baf5fb9cbf..91d0e7b0bf 100644 --- a/docset/winserver2022-ps/directaccessclientcomponents/Reset-DAEntryPointTableItem.md +++ b/docset/winserver2022-ps/directaccessclientcomponents/Reset-DAEntryPointTableItem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DASiteTableEntry.cdxml-help.xml Module Name: DirectAccessClientComponents ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/directaccessclientcomponents/reset-daentrypointtableitem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/directaccessclientcomponents/reset-daentrypointtableitem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-DAEntryPointTableItem --- diff --git a/docset/winserver2022-ps/directaccessclientcomponents/Set-DAClientExperienceConfiguration.md b/docset/winserver2022-ps/directaccessclientcomponents/Set-DAClientExperienceConfiguration.md index cad50729d7..1e5c35eabb 100644 --- a/docset/winserver2022-ps/directaccessclientcomponents/Set-DAClientExperienceConfiguration.md +++ b/docset/winserver2022-ps/directaccessclientcomponents/Set-DAClientExperienceConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DAClientExperienceConfiguration.cdxml-help.xml Module Name: DirectAccessClientComponents ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/directaccessclientcomponents/set-daclientexperienceconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/directaccessclientcomponents/set-daclientexperienceconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DAClientExperienceConfiguration --- diff --git a/docset/winserver2022-ps/directaccessclientcomponents/Set-DAEntryPointTableItem.md b/docset/winserver2022-ps/directaccessclientcomponents/Set-DAEntryPointTableItem.md index 0150652d30..535537d33c 100644 --- a/docset/winserver2022-ps/directaccessclientcomponents/Set-DAEntryPointTableItem.md +++ b/docset/winserver2022-ps/directaccessclientcomponents/Set-DAEntryPointTableItem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DASiteTableEntry.cdxml-help.xml Module Name: DirectAccessClientComponents ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/directaccessclientcomponents/set-daentrypointtableitem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/directaccessclientcomponents/set-daentrypointtableitem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DAEntryPointTableItem --- diff --git a/docset/winserver2022-ps/dism/Add-AppxProvisionedPackage.md b/docset/winserver2022-ps/dism/Add-AppxProvisionedPackage.md index e988fc11f5..de473bb4b0 100644 --- a/docset/winserver2022-ps/dism/Add-AppxProvisionedPackage.md +++ b/docset/winserver2022-ps/dism/Add-AppxProvisionedPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 10/07/2021 -online version: https://docs.microsoft.com/powershell/module/dism/add-appxprovisionedpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/add-appxprovisionedpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AppxProvisionedPackage --- diff --git a/docset/winserver2022-ps/dism/Add-WindowsCapability.md b/docset/winserver2022-ps/dism/Add-WindowsCapability.md index 5ecf72c9cd..fe0e6c7dfe 100644 --- a/docset/winserver2022-ps/dism/Add-WindowsCapability.md +++ b/docset/winserver2022-ps/dism/Add-WindowsCapability.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 08/24/2021 -online version: https://docs.microsoft.com/powershell/module/dism/add-windowscapability?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/add-windowscapability?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WindowsCapability --- diff --git a/docset/winserver2022-ps/dism/Add-WindowsDriver.md b/docset/winserver2022-ps/dism/Add-WindowsDriver.md index 0392293db0..dd6a6f9c49 100644 --- a/docset/winserver2022-ps/dism/Add-WindowsDriver.md +++ b/docset/winserver2022-ps/dism/Add-WindowsDriver.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/add-windowsdriver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/add-windowsdriver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WindowsDriver --- diff --git a/docset/winserver2022-ps/dism/Add-WindowsImage.md b/docset/winserver2022-ps/dism/Add-WindowsImage.md index 5a83e326b0..54eaae8459 100644 --- a/docset/winserver2022-ps/dism/Add-WindowsImage.md +++ b/docset/winserver2022-ps/dism/Add-WindowsImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 08/25/2021 -online version: https://docs.microsoft.com/powershell/module/dism/add-windowsimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/add-windowsimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WindowsImage --- diff --git a/docset/winserver2022-ps/dism/Add-WindowsPackage.md b/docset/winserver2022-ps/dism/Add-WindowsPackage.md index 6100fbd4b2..1f6e1dd32b 100644 --- a/docset/winserver2022-ps/dism/Add-WindowsPackage.md +++ b/docset/winserver2022-ps/dism/Add-WindowsPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/add-windowspackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/add-windowspackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WindowsPackage --- diff --git a/docset/winserver2022-ps/dism/Clear-WindowsCorruptMountPoint.md b/docset/winserver2022-ps/dism/Clear-WindowsCorruptMountPoint.md index 519b43fbc7..f7b9daa01a 100644 --- a/docset/winserver2022-ps/dism/Clear-WindowsCorruptMountPoint.md +++ b/docset/winserver2022-ps/dism/Clear-WindowsCorruptMountPoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/clear-windowscorruptmountpoint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/clear-windowscorruptmountpoint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-WindowsCorruptMountPoint --- diff --git a/docset/winserver2022-ps/dism/Disable-WindowsOptionalFeature.md b/docset/winserver2022-ps/dism/Disable-WindowsOptionalFeature.md index e8b8ef5f6e..1d107e28ac 100644 --- a/docset/winserver2022-ps/dism/Disable-WindowsOptionalFeature.md +++ b/docset/winserver2022-ps/dism/Disable-WindowsOptionalFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/disable-windowsoptionalfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/disable-windowsoptionalfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WindowsOptionalFeature --- diff --git a/docset/winserver2022-ps/dism/Dismount-WindowsImage.md b/docset/winserver2022-ps/dism/Dismount-WindowsImage.md index 9611779fdc..26a0eca9ea 100644 --- a/docset/winserver2022-ps/dism/Dismount-WindowsImage.md +++ b/docset/winserver2022-ps/dism/Dismount-WindowsImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/dismount-windowsimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/dismount-windowsimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Dismount-WindowsImage --- diff --git a/docset/winserver2022-ps/dism/Enable-WindowsOptionalFeature.md b/docset/winserver2022-ps/dism/Enable-WindowsOptionalFeature.md index 27ff735330..2aa9463964 100644 --- a/docset/winserver2022-ps/dism/Enable-WindowsOptionalFeature.md +++ b/docset/winserver2022-ps/dism/Enable-WindowsOptionalFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/enable-windowsoptionalfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/enable-windowsoptionalfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WindowsOptionalFeature --- diff --git a/docset/winserver2022-ps/dism/Expand-WindowsCustomDataImage.md b/docset/winserver2022-ps/dism/Expand-WindowsCustomDataImage.md index 097d2e313c..a94d5f02b2 100644 --- a/docset/winserver2022-ps/dism/Expand-WindowsCustomDataImage.md +++ b/docset/winserver2022-ps/dism/Expand-WindowsCustomDataImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/expand-windowscustomdataimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/expand-windowscustomdataimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Expand-WindowsCustomDataImage --- diff --git a/docset/winserver2022-ps/dism/Expand-WindowsImage.md b/docset/winserver2022-ps/dism/Expand-WindowsImage.md index 948f373cfc..287d76c746 100644 --- a/docset/winserver2022-ps/dism/Expand-WindowsImage.md +++ b/docset/winserver2022-ps/dism/Expand-WindowsImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 08/25/2021 -online version: https://docs.microsoft.com/powershell/module/dism/expand-windowsimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/expand-windowsimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Expand-WindowsImage --- diff --git a/docset/winserver2022-ps/dism/Export-WindowsCapabilitySource.md b/docset/winserver2022-ps/dism/Export-WindowsCapabilitySource.md index 8ab2ea1881..1229631fe2 100644 --- a/docset/winserver2022-ps/dism/Export-WindowsCapabilitySource.md +++ b/docset/winserver2022-ps/dism/Export-WindowsCapabilitySource.md @@ -1,9 +1,9 @@ --- -description: Creates a custom FOD repository that includes packages that support the installation of the specified capabilities. +description: Creates a custom FOD repository that includes packages that support the installation of the specified capabilities. external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: Dism ms.date: 10/07/2021 -online version: https://docs.microsoft.com/powershell/module/dism/export-windowscapabilitysource?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/export-windowscapabilitysource?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-WindowsCapabilitySource --- diff --git a/docset/winserver2022-ps/dism/Export-WindowsDriver.md b/docset/winserver2022-ps/dism/Export-WindowsDriver.md index aa0f7cfc74..6d10201b84 100644 --- a/docset/winserver2022-ps/dism/Export-WindowsDriver.md +++ b/docset/winserver2022-ps/dism/Export-WindowsDriver.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/export-windowsdriver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/export-windowsdriver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-WindowsDriver --- diff --git a/docset/winserver2022-ps/dism/Export-WindowsImage.md b/docset/winserver2022-ps/dism/Export-WindowsImage.md index c01e18e0e4..68ec955c5f 100644 --- a/docset/winserver2022-ps/dism/Export-WindowsImage.md +++ b/docset/winserver2022-ps/dism/Export-WindowsImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/export-windowsimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/export-windowsimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-WindowsImage --- diff --git a/docset/winserver2022-ps/dism/Get-AppxProvisionedPackage.md b/docset/winserver2022-ps/dism/Get-AppxProvisionedPackage.md index a6282e2039..68ec7ddb83 100644 --- a/docset/winserver2022-ps/dism/Get-AppxProvisionedPackage.md +++ b/docset/winserver2022-ps/dism/Get-AppxProvisionedPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/get-appxprovisionedpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/get-appxprovisionedpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppxProvisionedPackage --- diff --git a/docset/winserver2022-ps/dism/Get-NonRemovableAppsPolicy.md b/docset/winserver2022-ps/dism/Get-NonRemovableAppsPolicy.md index b383e0a5ee..f46fa1b9fa 100644 --- a/docset/winserver2022-ps/dism/Get-NonRemovableAppsPolicy.md +++ b/docset/winserver2022-ps/dism/Get-NonRemovableAppsPolicy.md @@ -3,7 +3,7 @@ description: Returns a list of the app packages that are installed and configure external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: Dism ms.date: 10/07/2021 -online version: https://docs.microsoft.com/powershell/module/dism/get-nonremovableappspolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/get-nonremovableappspolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NonRemovableAppsPolicy --- diff --git a/docset/winserver2022-ps/dism/Get-WIMBootEntry.md b/docset/winserver2022-ps/dism/Get-WIMBootEntry.md index eb4316b8d1..d2e15b16db 100644 --- a/docset/winserver2022-ps/dism/Get-WIMBootEntry.md +++ b/docset/winserver2022-ps/dism/Get-WIMBootEntry.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/get-wimbootentry?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/get-wimbootentry?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WIMBootEntry --- diff --git a/docset/winserver2022-ps/dism/Get-WindowsCapability.md b/docset/winserver2022-ps/dism/Get-WindowsCapability.md index cc70652424..52be33009b 100644 --- a/docset/winserver2022-ps/dism/Get-WindowsCapability.md +++ b/docset/winserver2022-ps/dism/Get-WindowsCapability.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/get-windowscapability?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/get-windowscapability?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WindowsCapability --- diff --git a/docset/winserver2022-ps/dism/Get-WindowsDriver.md b/docset/winserver2022-ps/dism/Get-WindowsDriver.md index 9ada58cc37..4dd23f0b88 100644 --- a/docset/winserver2022-ps/dism/Get-WindowsDriver.md +++ b/docset/winserver2022-ps/dism/Get-WindowsDriver.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/get-windowsdriver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/get-windowsdriver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WindowsDriver --- diff --git a/docset/winserver2022-ps/dism/Get-WindowsEdition.md b/docset/winserver2022-ps/dism/Get-WindowsEdition.md index a9a587923d..ce1085c0a7 100644 --- a/docset/winserver2022-ps/dism/Get-WindowsEdition.md +++ b/docset/winserver2022-ps/dism/Get-WindowsEdition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/get-windowsedition?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/get-windowsedition?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WindowsEdition --- diff --git a/docset/winserver2022-ps/dism/Get-WindowsImage.md b/docset/winserver2022-ps/dism/Get-WindowsImage.md index 42a181fdbc..d026c4f078 100644 --- a/docset/winserver2022-ps/dism/Get-WindowsImage.md +++ b/docset/winserver2022-ps/dism/Get-WindowsImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/get-windowsimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/get-windowsimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WindowsImage --- diff --git a/docset/winserver2022-ps/dism/Get-WindowsImageContent.md b/docset/winserver2022-ps/dism/Get-WindowsImageContent.md index 4bf7dec144..2786bc60bc 100644 --- a/docset/winserver2022-ps/dism/Get-WindowsImageContent.md +++ b/docset/winserver2022-ps/dism/Get-WindowsImageContent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/get-windowsimagecontent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/get-windowsimagecontent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WindowsImageContent --- diff --git a/docset/winserver2022-ps/dism/Get-WindowsOptionalFeature.md b/docset/winserver2022-ps/dism/Get-WindowsOptionalFeature.md index 10ed69e711..bb70051f5e 100644 --- a/docset/winserver2022-ps/dism/Get-WindowsOptionalFeature.md +++ b/docset/winserver2022-ps/dism/Get-WindowsOptionalFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/get-windowsoptionalfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/get-windowsoptionalfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WindowsOptionalFeature --- diff --git a/docset/winserver2022-ps/dism/Get-WindowsPackage.md b/docset/winserver2022-ps/dism/Get-WindowsPackage.md index c06af449c8..8c194efef5 100644 --- a/docset/winserver2022-ps/dism/Get-WindowsPackage.md +++ b/docset/winserver2022-ps/dism/Get-WindowsPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/get-windowspackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/get-windowspackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WindowsPackage --- diff --git a/docset/winserver2022-ps/dism/Get-WindowsReservedStorageState.md b/docset/winserver2022-ps/dism/Get-WindowsReservedStorageState.md index d8868f8ff8..ed7c3ff534 100644 --- a/docset/winserver2022-ps/dism/Get-WindowsReservedStorageState.md +++ b/docset/winserver2022-ps/dism/Get-WindowsReservedStorageState.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] -online version: https://docs.microsoft.com/powershell/module/dism/get-windowsreservedstoragestate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/get-windowsreservedstoragestate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2022-ps/dism/Mount-WindowsImage.md b/docset/winserver2022-ps/dism/Mount-WindowsImage.md index 943be1265a..7d96ea2b32 100644 --- a/docset/winserver2022-ps/dism/Mount-WindowsImage.md +++ b/docset/winserver2022-ps/dism/Mount-WindowsImage.md @@ -3,7 +3,7 @@ description: Mounts a Windows image in a WIM or VHD file to a directory on the l external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 10/06/2021 -online version: https://docs.microsoft.com/powershell/module/dism/mount-windowsimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/mount-windowsimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Mount-WindowsImage --- diff --git a/docset/winserver2022-ps/dism/New-WindowsCustomImage.md b/docset/winserver2022-ps/dism/New-WindowsCustomImage.md index a649a87c05..4382da730a 100644 --- a/docset/winserver2022-ps/dism/New-WindowsCustomImage.md +++ b/docset/winserver2022-ps/dism/New-WindowsCustomImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/new-windowscustomimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/new-windowscustomimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WindowsCustomImage --- diff --git a/docset/winserver2022-ps/dism/New-WindowsImage.md b/docset/winserver2022-ps/dism/New-WindowsImage.md index 6a565776d2..14757541f9 100644 --- a/docset/winserver2022-ps/dism/New-WindowsImage.md +++ b/docset/winserver2022-ps/dism/New-WindowsImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/new-windowsimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/new-windowsimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WindowsImage --- diff --git a/docset/winserver2022-ps/dism/Optimize-AppXProvisionedPackages.md b/docset/winserver2022-ps/dism/Optimize-AppXProvisionedPackages.md index def852d0ac..372bc47d5a 100644 --- a/docset/winserver2022-ps/dism/Optimize-AppXProvisionedPackages.md +++ b/docset/winserver2022-ps/dism/Optimize-AppXProvisionedPackages.md @@ -3,7 +3,7 @@ description: Optimizes the total file size of provisioned packages on the image external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: Dism ms.date: 10/13/2021 -online version: https://docs.microsoft.com/powershell/module/dism/optimize-appxprovisionedpackages?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/optimize-appxprovisionedpackages?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Optimize-AppXProvisionedPackages --- diff --git a/docset/winserver2022-ps/dism/Optimize-WindowsImage.md b/docset/winserver2022-ps/dism/Optimize-WindowsImage.md index 8bb7119e1c..a509f0dc2c 100644 --- a/docset/winserver2022-ps/dism/Optimize-WindowsImage.md +++ b/docset/winserver2022-ps/dism/Optimize-WindowsImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/optimize-windowsimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/optimize-windowsimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Optimize-WindowsImage --- diff --git a/docset/winserver2022-ps/dism/Remove-AppxProvisionedPackage.md b/docset/winserver2022-ps/dism/Remove-AppxProvisionedPackage.md index de21797552..3f1a68cc33 100644 --- a/docset/winserver2022-ps/dism/Remove-AppxProvisionedPackage.md +++ b/docset/winserver2022-ps/dism/Remove-AppxProvisionedPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/remove-appxprovisionedpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/remove-appxprovisionedpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AppxProvisionedPackage --- diff --git a/docset/winserver2022-ps/dism/Remove-WindowsCapability.md b/docset/winserver2022-ps/dism/Remove-WindowsCapability.md index 263ef4f329..07903c88d1 100644 --- a/docset/winserver2022-ps/dism/Remove-WindowsCapability.md +++ b/docset/winserver2022-ps/dism/Remove-WindowsCapability.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/remove-windowscapability?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/remove-windowscapability?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WindowsCapability --- diff --git a/docset/winserver2022-ps/dism/Remove-WindowsDriver.md b/docset/winserver2022-ps/dism/Remove-WindowsDriver.md index 3e4a6d6dbf..b7cca69442 100644 --- a/docset/winserver2022-ps/dism/Remove-WindowsDriver.md +++ b/docset/winserver2022-ps/dism/Remove-WindowsDriver.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/remove-windowsdriver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/remove-windowsdriver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WindowsDriver --- diff --git a/docset/winserver2022-ps/dism/Remove-WindowsImage.md b/docset/winserver2022-ps/dism/Remove-WindowsImage.md index 834b27adf6..8148d7956a 100644 --- a/docset/winserver2022-ps/dism/Remove-WindowsImage.md +++ b/docset/winserver2022-ps/dism/Remove-WindowsImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/remove-windowsimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/remove-windowsimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WindowsImage --- diff --git a/docset/winserver2022-ps/dism/Remove-WindowsPackage.md b/docset/winserver2022-ps/dism/Remove-WindowsPackage.md index 3ae2a9ac23..49cc81be66 100644 --- a/docset/winserver2022-ps/dism/Remove-WindowsPackage.md +++ b/docset/winserver2022-ps/dism/Remove-WindowsPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/remove-windowspackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/remove-windowspackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WindowsPackage --- diff --git a/docset/winserver2022-ps/dism/Repair-WindowsImage.md b/docset/winserver2022-ps/dism/Repair-WindowsImage.md index d068c7259a..6b32a8afd9 100644 --- a/docset/winserver2022-ps/dism/Repair-WindowsImage.md +++ b/docset/winserver2022-ps/dism/Repair-WindowsImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/repair-windowsimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/repair-windowsimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Repair-WindowsImage --- diff --git a/docset/winserver2022-ps/dism/Save-WindowsImage.md b/docset/winserver2022-ps/dism/Save-WindowsImage.md index fb97dcb0ef..c9a05dd8b7 100644 --- a/docset/winserver2022-ps/dism/Save-WindowsImage.md +++ b/docset/winserver2022-ps/dism/Save-WindowsImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 10/06/2021 -online version: https://docs.microsoft.com/powershell/module/dism/save-windowsimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/save-windowsimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Save-WindowsImage --- diff --git a/docset/winserver2022-ps/dism/Set-AppXProvisionedDataFile.md b/docset/winserver2022-ps/dism/Set-AppXProvisionedDataFile.md index 7e77410710..fbbb052aa1 100644 --- a/docset/winserver2022-ps/dism/Set-AppXProvisionedDataFile.md +++ b/docset/winserver2022-ps/dism/Set-AppXProvisionedDataFile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/set-appxprovisioneddatafile?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/set-appxprovisioneddatafile?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AppXProvisionedDataFile --- diff --git a/docset/winserver2022-ps/dism/Set-NonRemovableAppsPolicy.md b/docset/winserver2022-ps/dism/Set-NonRemovableAppsPolicy.md index b3695f4399..f8a6b3f871 100644 --- a/docset/winserver2022-ps/dism/Set-NonRemovableAppsPolicy.md +++ b/docset/winserver2022-ps/dism/Set-NonRemovableAppsPolicy.md @@ -3,7 +3,7 @@ description: Sets an app package as non-removable (can not be uninstalled). external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: Dism ms.date: 10/07/2021 -online version: https://docs.microsoft.com/powershell/module/dism/set-nonremovableappspolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/set-nonremovableappspolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NonRemovableAppsPolicy --- diff --git a/docset/winserver2022-ps/dism/Set-WindowsEdition.md b/docset/winserver2022-ps/dism/Set-WindowsEdition.md index c766b687d6..a9482a42d2 100644 --- a/docset/winserver2022-ps/dism/Set-WindowsEdition.md +++ b/docset/winserver2022-ps/dism/Set-WindowsEdition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/set-windowsedition?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/set-windowsedition?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WindowsEdition --- diff --git a/docset/winserver2022-ps/dism/Set-WindowsProductKey.md b/docset/winserver2022-ps/dism/Set-WindowsProductKey.md index 8e20e1afa6..d9cd3ac6c0 100644 --- a/docset/winserver2022-ps/dism/Set-WindowsProductKey.md +++ b/docset/winserver2022-ps/dism/Set-WindowsProductKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/set-windowsproductkey?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/set-windowsproductkey?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WindowsProductKey --- diff --git a/docset/winserver2022-ps/dism/Set-WindowsReservedStorageState.md b/docset/winserver2022-ps/dism/Set-WindowsReservedStorageState.md index bd920faf92..b11b7168fa 100644 --- a/docset/winserver2022-ps/dism/Set-WindowsReservedStorageState.md +++ b/docset/winserver2022-ps/dism/Set-WindowsReservedStorageState.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] -online version: https://docs.microsoft.com/powershell/module/dism/set-windowsreservedstoragestate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/set-windowsreservedstoragestate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2022-ps/dism/Split-WindowsImage.md b/docset/winserver2022-ps/dism/Split-WindowsImage.md index e02f0eaef2..62a7090af1 100644 --- a/docset/winserver2022-ps/dism/Split-WindowsImage.md +++ b/docset/winserver2022-ps/dism/Split-WindowsImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/split-windowsimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/split-windowsimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Split-WindowsImage --- diff --git a/docset/winserver2022-ps/dism/Start-OSUninstall.md b/docset/winserver2022-ps/dism/Start-OSUninstall.md index 133c1ede45..0944ddb175 100644 --- a/docset/winserver2022-ps/dism/Start-OSUninstall.md +++ b/docset/winserver2022-ps/dism/Start-OSUninstall.md @@ -3,7 +3,7 @@ description: Windows gives a user the ability to uninstall and roll back to a pr external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: Dism ms.date: 10/07/2021 -online version: https://docs.microsoft.com/powershell/module/dism/start-osuninstall?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/start-osuninstall?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-OSUninstall --- diff --git a/docset/winserver2022-ps/dism/Update-WIMBootEntry.md b/docset/winserver2022-ps/dism/Update-WIMBootEntry.md index 704741c3f7..0a4a33907c 100644 --- a/docset/winserver2022-ps/dism/Update-WIMBootEntry.md +++ b/docset/winserver2022-ps/dism/Update-WIMBootEntry.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/update-wimbootentry?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/update-wimbootentry?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-WIMBootEntry --- diff --git a/docset/winserver2022-ps/dism/Use-WindowsUnattend.md b/docset/winserver2022-ps/dism/Use-WindowsUnattend.md index ee1d196398..c5fcd158b0 100644 --- a/docset/winserver2022-ps/dism/Use-WindowsUnattend.md +++ b/docset/winserver2022-ps/dism/Use-WindowsUnattend.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dism.PowerShell.dll-Help.xml Module Name: System.Object[] ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/dism/use-windowsunattend?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dism/use-windowsunattend?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Use-WindowsUnattend --- diff --git a/docset/winserver2022-ps/dnsclient/Add-DnsClientDohServerAddress.md b/docset/winserver2022-ps/dnsclient/Add-DnsClientDohServerAddress.md index 391646622d..8675344880 100644 --- a/docset/winserver2022-ps/dnsclient/Add-DnsClientDohServerAddress.md +++ b/docset/winserver2022-ps/dnsclient/Add-DnsClientDohServerAddress.md @@ -1,11 +1,11 @@ --- -title: Add-DnsClientDohServerAddress description: The Add-DnsClientDohServerAddress cmdlet adds a DNS-over-HTTPS (DoH) server configuration to the supported DoH servers. external help file: MSFT_DnsClientDohServerAddress.cdxml-help.xml Module Name: DnsClient -online version: https://docs.microsoft.com/powershell/module/dnsclient/add-dnsclientdohserveraddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp -schema: 2.0.0 ms.date: 08/31/2021 +online version: https://learn.microsoft.com/powershell/module/dnsclient/add-dnsclientdohserveraddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +title: Add-DnsClientDohServerAddress --- # Add-DnsClientDohServerAddress diff --git a/docset/winserver2022-ps/dnsclient/Add-DnsClientNrptRule.md b/docset/winserver2022-ps/dnsclient/Add-DnsClientNrptRule.md index 75d31c7c29..df08b9b880 100644 --- a/docset/winserver2022-ps/dnsclient/Add-DnsClientNrptRule.md +++ b/docset/winserver2022-ps/dnsclient/Add-DnsClientNrptRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsClientNRPTRule_v1.0.0.cdxml-help.xml Module Name: DnsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsclient/add-dnsclientnrptrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/add-dnsclientnrptrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsClientNrptRule --- diff --git a/docset/winserver2022-ps/dnsclient/Clear-DnsClientCache.md b/docset/winserver2022-ps/dnsclient/Clear-DnsClientCache.md index 6588a04bc9..c3262de8a6 100644 --- a/docset/winserver2022-ps/dnsclient/Clear-DnsClientCache.md +++ b/docset/winserver2022-ps/dnsclient/Clear-DnsClientCache.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DnsClientCache.cdxml-help.xml Module Name: DnsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsclient/clear-dnsclientcache?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/clear-dnsclientcache?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-DnsClientCache --- diff --git a/docset/winserver2022-ps/dnsclient/Get-DnsClient.md b/docset/winserver2022-ps/dnsclient/Get-DnsClient.md index e966bfa598..eb31362e11 100644 --- a/docset/winserver2022-ps/dnsclient/Get-DnsClient.md +++ b/docset/winserver2022-ps/dnsclient/Get-DnsClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DnsClient.cdxml-help.xml Module Name: DnsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsclient/get-dnsclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/get-dnsclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsClient --- diff --git a/docset/winserver2022-ps/dnsclient/Get-DnsClientCache.md b/docset/winserver2022-ps/dnsclient/Get-DnsClientCache.md index b25370e65c..f04ee7f78f 100644 --- a/docset/winserver2022-ps/dnsclient/Get-DnsClientCache.md +++ b/docset/winserver2022-ps/dnsclient/Get-DnsClientCache.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DnsClientCache.cdxml-help.xml Module Name: DnsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsclient/get-dnsclientcache?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/get-dnsclientcache?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsClientCache --- diff --git a/docset/winserver2022-ps/dnsclient/Get-DnsClientDohServerAddress.md b/docset/winserver2022-ps/dnsclient/Get-DnsClientDohServerAddress.md index eb045ceec0..95fb4c4190 100644 --- a/docset/winserver2022-ps/dnsclient/Get-DnsClientDohServerAddress.md +++ b/docset/winserver2022-ps/dnsclient/Get-DnsClientDohServerAddress.md @@ -1,11 +1,11 @@ --- -title: Get-DnsClientDohServerAddress description: The Get-DnsClientDohServerAddress cmdlet gets the DNS-over-HTTPS (DoH) server configuration from the supported DoH servers. external help file: MSFT_DnsClientDohServerAddress.cdxml-help.xml Module Name: DnsClient -online version: https://docs.microsoft.com/powershell/module/dnsclient/get-dnsclientdohserveraddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp -schema: 2.0.0 ms.date: 08/31/2021 +online version: https://learn.microsoft.com/powershell/module/dnsclient/get-dnsclientdohserveraddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +title: Get-DnsClientDohServerAddress --- # Get-DnsClientDohServerAddress diff --git a/docset/winserver2022-ps/dnsclient/Get-DnsClientGlobalSetting.md b/docset/winserver2022-ps/dnsclient/Get-DnsClientGlobalSetting.md index b1de6c216e..4300388da4 100644 --- a/docset/winserver2022-ps/dnsclient/Get-DnsClientGlobalSetting.md +++ b/docset/winserver2022-ps/dnsclient/Get-DnsClientGlobalSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DnsClientGlobalSetting.cdxml-help.xml Module Name: DnsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsclient/get-dnsclientglobalsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/get-dnsclientglobalsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsClientGlobalSetting --- diff --git a/docset/winserver2022-ps/dnsclient/Get-DnsClientNrptGlobal.md b/docset/winserver2022-ps/dnsclient/Get-DnsClientNrptGlobal.md index 873ec7d961..63e013a070 100644 --- a/docset/winserver2022-ps/dnsclient/Get-DnsClientNrptGlobal.md +++ b/docset/winserver2022-ps/dnsclient/Get-DnsClientNrptGlobal.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsClientNRPTGlobal_v1.0.0.cdxml-help.xml Module Name: DnsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsclient/get-dnsclientnrptglobal?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/get-dnsclientnrptglobal?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsClientNrptGlobal --- diff --git a/docset/winserver2022-ps/dnsclient/Get-DnsClientNrptPolicy.md b/docset/winserver2022-ps/dnsclient/Get-DnsClientNrptPolicy.md index cd7d6a45a1..0fcf52b0ad 100644 --- a/docset/winserver2022-ps/dnsclient/Get-DnsClientNrptPolicy.md +++ b/docset/winserver2022-ps/dnsclient/Get-DnsClientNrptPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsClientNrptPolicy_v1.0.0.cdxml-help.xml Module Name: DnsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsclient/get-dnsclientnrptpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/get-dnsclientnrptpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsClientNrptPolicy --- diff --git a/docset/winserver2022-ps/dnsclient/Get-DnsClientNrptRule.md b/docset/winserver2022-ps/dnsclient/Get-DnsClientNrptRule.md index 039302595a..cc39791ff8 100644 --- a/docset/winserver2022-ps/dnsclient/Get-DnsClientNrptRule.md +++ b/docset/winserver2022-ps/dnsclient/Get-DnsClientNrptRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsClientNRPTRule_v1.0.0.cdxml-help.xml Module Name: DnsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsclient/get-dnsclientnrptrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/get-dnsclientnrptrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsClientNrptRule --- diff --git a/docset/winserver2022-ps/dnsclient/Get-DnsClientServerAddress.md b/docset/winserver2022-ps/dnsclient/Get-DnsClientServerAddress.md index 0bcbb0252b..9715e18311 100644 --- a/docset/winserver2022-ps/dnsclient/Get-DnsClientServerAddress.md +++ b/docset/winserver2022-ps/dnsclient/Get-DnsClientServerAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DnsClientServerAddress.cdxml-help.xml Module Name: DnsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsclient/get-dnsclientserveraddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/get-dnsclientserveraddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsClientServerAddress --- diff --git a/docset/winserver2022-ps/dnsclient/Register-DnsClient.md b/docset/winserver2022-ps/dnsclient/Register-DnsClient.md index b7be5232fb..ac4baed6c0 100644 --- a/docset/winserver2022-ps/dnsclient/Register-DnsClient.md +++ b/docset/winserver2022-ps/dnsclient/Register-DnsClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DnsClient.cdxml-help.xml Module Name: DnsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsclient/register-dnsclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/register-dnsclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Register-DnsClient --- diff --git a/docset/winserver2022-ps/dnsclient/Remove-DnsClientDohServerAddress.md b/docset/winserver2022-ps/dnsclient/Remove-DnsClientDohServerAddress.md index dfad7e484e..4475ae26da 100644 --- a/docset/winserver2022-ps/dnsclient/Remove-DnsClientDohServerAddress.md +++ b/docset/winserver2022-ps/dnsclient/Remove-DnsClientDohServerAddress.md @@ -1,11 +1,11 @@ --- -title: Remove-DnsClientDohServerAddress description: The Remove-DnsClientDohServerAddress cmdlet removes a DNS-over-HTTPS (DoH) server configuration from the supported DoH servers. external help file: MSFT_DnsClientDohServerAddress.cdxml-help.xml Module Name: DnsClient -online version: https://docs.microsoft.com/powershell/module/dnsclient/remove-dnsclientdohserveraddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp -schema: 2.0.0 ms.date: 08/31/2021 +online version: https://learn.microsoft.com/powershell/module/dnsclient/remove-dnsclientdohserveraddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +title: Remove-DnsClientDohServerAddress --- # Remove-DnsClientDohServerAddress diff --git a/docset/winserver2022-ps/dnsclient/Remove-DnsClientNrptRule.md b/docset/winserver2022-ps/dnsclient/Remove-DnsClientNrptRule.md index 1eb20bea47..0fe2a7feb5 100644 --- a/docset/winserver2022-ps/dnsclient/Remove-DnsClientNrptRule.md +++ b/docset/winserver2022-ps/dnsclient/Remove-DnsClientNrptRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsClientNRPTRule_v1.0.0.cdxml-help.xml Module Name: DnsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsclient/remove-dnsclientnrptrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/remove-dnsclientnrptrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsClientNrptRule --- diff --git a/docset/winserver2022-ps/dnsclient/Resolve-DnsName.md b/docset/winserver2022-ps/dnsclient/Resolve-DnsName.md index ef8eaaded9..6fbb3620bb 100644 --- a/docset/winserver2022-ps/dnsclient/Resolve-DnsName.md +++ b/docset/winserver2022-ps/dnsclient/Resolve-DnsName.md @@ -2,7 +2,7 @@ external help file: dnslookup.dll-Help.xml Module Name: DnsClient ms.date: 05/20/2019 -online version: https://docs.microsoft.com/powershell/module/dnsclient/resolve-dnsname?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/resolve-dnsname?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resolve-DnsName --- diff --git a/docset/winserver2022-ps/dnsclient/Set-DnsClient.md b/docset/winserver2022-ps/dnsclient/Set-DnsClient.md index c2a63bee5e..d83ae4489f 100644 --- a/docset/winserver2022-ps/dnsclient/Set-DnsClient.md +++ b/docset/winserver2022-ps/dnsclient/Set-DnsClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DnsClient.cdxml-help.xml Module Name: DnsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsclient/set-dnsclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/set-dnsclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsClient --- diff --git a/docset/winserver2022-ps/dnsclient/Set-DnsClientDohServerAddress.md b/docset/winserver2022-ps/dnsclient/Set-DnsClientDohServerAddress.md index 1522976dd5..45d8323033 100644 --- a/docset/winserver2022-ps/dnsclient/Set-DnsClientDohServerAddress.md +++ b/docset/winserver2022-ps/dnsclient/Set-DnsClientDohServerAddress.md @@ -1,11 +1,11 @@ --- -title: Set-DnsClientDohServerAddress description: The Set-DnsClientDohServerAddress cmdlet modifies an existing DNS-over-HTTPS (DoH) server configuration. external help file: MSFT_DnsClientDohServerAddress.cdxml-help.xml Module Name: DnsClient -online version: https://docs.microsoft.com/powershell/module/dnsclient/set-dnsclientdohserveraddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp -schema: 2.0.0 ms.date: 08/31/2021 +online version: https://learn.microsoft.com/powershell/module/dnsclient/set-dnsclientdohserveraddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +title: Set-DnsClientDohServerAddress --- # Set-DnsClientDohServerAddress diff --git a/docset/winserver2022-ps/dnsclient/Set-DnsClientGlobalSetting.md b/docset/winserver2022-ps/dnsclient/Set-DnsClientGlobalSetting.md index 342d0e57b9..5d84bdd6a5 100644 --- a/docset/winserver2022-ps/dnsclient/Set-DnsClientGlobalSetting.md +++ b/docset/winserver2022-ps/dnsclient/Set-DnsClientGlobalSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DnsClientGlobalSetting.cdxml-help.xml Module Name: DnsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsclient/set-dnsclientglobalsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/set-dnsclientglobalsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsClientGlobalSetting --- diff --git a/docset/winserver2022-ps/dnsclient/Set-DnsClientNrptGlobal.md b/docset/winserver2022-ps/dnsclient/Set-DnsClientNrptGlobal.md index ef53a98e3c..2a64f12194 100644 --- a/docset/winserver2022-ps/dnsclient/Set-DnsClientNrptGlobal.md +++ b/docset/winserver2022-ps/dnsclient/Set-DnsClientNrptGlobal.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsClientNRPTGlobal_v1.0.0.cdxml-help.xml Module Name: DnsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsclient/set-dnsclientnrptglobal?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/set-dnsclientnrptglobal?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsClientNrptGlobal --- diff --git a/docset/winserver2022-ps/dnsclient/Set-DnsClientNrptRule.md b/docset/winserver2022-ps/dnsclient/Set-DnsClientNrptRule.md index fd962752d1..c2e0552e4a 100644 --- a/docset/winserver2022-ps/dnsclient/Set-DnsClientNrptRule.md +++ b/docset/winserver2022-ps/dnsclient/Set-DnsClientNrptRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsClientNRPTRule_v1.0.0.cdxml-help.xml Module Name: DnsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsclient/set-dnsclientnrptrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/set-dnsclientnrptrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsClientNrptRule --- diff --git a/docset/winserver2022-ps/dnsclient/Set-DnsClientServerAddress.md b/docset/winserver2022-ps/dnsclient/Set-DnsClientServerAddress.md index 3265fdc140..c5cc16017c 100644 --- a/docset/winserver2022-ps/dnsclient/Set-DnsClientServerAddress.md +++ b/docset/winserver2022-ps/dnsclient/Set-DnsClientServerAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DnsClientServerAddress.cdxml-help.xml Module Name: DnsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsclient/set-dnsclientserveraddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsclient/set-dnsclientserveraddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsClientServerAddress --- diff --git a/docset/winserver2022-ps/dnsserver/Add-DnsServerClientSubnet.md b/docset/winserver2022-ps/dnsserver/Add-DnsServerClientSubnet.md index 865c2aed10..8b6ba2be5a 100644 --- a/docset/winserver2022-ps/dnsserver/Add-DnsServerClientSubnet.md +++ b/docset/winserver2022-ps/dnsserver/Add-DnsServerClientSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerClientSubnet_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverclientsubnet?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverclientsubnet?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerClientSubnet --- diff --git a/docset/winserver2022-ps/dnsserver/Add-DnsServerConditionalForwarderZone.md b/docset/winserver2022-ps/dnsserver/Add-DnsServerConditionalForwarderZone.md index b7c6454bb8..b09bedab51 100644 --- a/docset/winserver2022-ps/dnsserver/Add-DnsServerConditionalForwarderZone.md +++ b/docset/winserver2022-ps/dnsserver/Add-DnsServerConditionalForwarderZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerConditionalForwarder_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverconditionalforwarderzone?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverconditionalforwarderzone?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerConditionalForwarderZone --- diff --git a/docset/winserver2022-ps/dnsserver/Add-DnsServerDirectoryPartition.md b/docset/winserver2022-ps/dnsserver/Add-DnsServerDirectoryPartition.md index c5cd49e92c..dd8103b088 100644 --- a/docset/winserver2022-ps/dnsserver/Add-DnsServerDirectoryPartition.md +++ b/docset/winserver2022-ps/dnsserver/Add-DnsServerDirectoryPartition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerDirectoryPartition_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverdirectorypartition?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverdirectorypartition?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerDirectoryPartition --- diff --git a/docset/winserver2022-ps/dnsserver/Add-DnsServerForwarder.md b/docset/winserver2022-ps/dnsserver/Add-DnsServerForwarder.md index 69f9cffa1b..96a7cf68fa 100644 --- a/docset/winserver2022-ps/dnsserver/Add-DnsServerForwarder.md +++ b/docset/winserver2022-ps/dnsserver/Add-DnsServerForwarder.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerForwarder_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverforwarder?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverforwarder?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerForwarder --- diff --git a/docset/winserver2022-ps/dnsserver/Add-DnsServerPrimaryZone.md b/docset/winserver2022-ps/dnsserver/Add-DnsServerPrimaryZone.md index 2512859c95..32bad38a95 100644 --- a/docset/winserver2022-ps/dnsserver/Add-DnsServerPrimaryZone.md +++ b/docset/winserver2022-ps/dnsserver/Add-DnsServerPrimaryZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerPrimaryZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverprimaryzone?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverprimaryzone?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerPrimaryZone --- diff --git a/docset/winserver2022-ps/dnsserver/Add-DnsServerQueryResolutionPolicy.md b/docset/winserver2022-ps/dnsserver/Add-DnsServerQueryResolutionPolicy.md index 2c1ca01bee..1c0db58043 100644 --- a/docset/winserver2022-ps/dnsserver/Add-DnsServerQueryResolutionPolicy.md +++ b/docset/winserver2022-ps/dnsserver/Add-DnsServerQueryResolutionPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerQueryResolutionPolicy_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 01/03/2022 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverqueryresolutionpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverqueryresolutionpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerQueryResolutionPolicy --- diff --git a/docset/winserver2022-ps/dnsserver/Add-DnsServerRecursionScope.md b/docset/winserver2022-ps/dnsserver/Add-DnsServerRecursionScope.md index e974191061..926e4993ee 100644 --- a/docset/winserver2022-ps/dnsserver/Add-DnsServerRecursionScope.md +++ b/docset/winserver2022-ps/dnsserver/Add-DnsServerRecursionScope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerRecursionScope_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverrecursionscope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverrecursionscope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerRecursionScope --- diff --git a/docset/winserver2022-ps/dnsserver/Add-DnsServerResourceRecord.md b/docset/winserver2022-ps/dnsserver/Add-DnsServerResourceRecord.md index 45c7717878..a648034ec4 100644 --- a/docset/winserver2022-ps/dnsserver/Add-DnsServerResourceRecord.md +++ b/docset/winserver2022-ps/dnsserver/Add-DnsServerResourceRecord.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResourceRecord_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecord?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecord?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerResourceRecord --- diff --git a/docset/winserver2022-ps/dnsserver/Add-DnsServerResourceRecordA.md b/docset/winserver2022-ps/dnsserver/Add-DnsServerResourceRecordA.md index e892c33f35..31150e2c82 100644 --- a/docset/winserver2022-ps/dnsserver/Add-DnsServerResourceRecordA.md +++ b/docset/winserver2022-ps/dnsserver/Add-DnsServerResourceRecordA.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResourceRecordA_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecorda?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecorda?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerResourceRecordA --- diff --git a/docset/winserver2022-ps/dnsserver/Add-DnsServerResourceRecordAAAA.md b/docset/winserver2022-ps/dnsserver/Add-DnsServerResourceRecordAAAA.md index 59e483484f..6f043aaa50 100644 --- a/docset/winserver2022-ps/dnsserver/Add-DnsServerResourceRecordAAAA.md +++ b/docset/winserver2022-ps/dnsserver/Add-DnsServerResourceRecordAAAA.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResourceRecordAAAA_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecordaaaa?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecordaaaa?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerResourceRecordAAAA --- diff --git a/docset/winserver2022-ps/dnsserver/Add-DnsServerResourceRecordCName.md b/docset/winserver2022-ps/dnsserver/Add-DnsServerResourceRecordCName.md index 4d08204ae8..454b484283 100644 --- a/docset/winserver2022-ps/dnsserver/Add-DnsServerResourceRecordCName.md +++ b/docset/winserver2022-ps/dnsserver/Add-DnsServerResourceRecordCName.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResourceRecordCNAME_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecordcname?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecordcname?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerResourceRecordCName --- diff --git a/docset/winserver2022-ps/dnsserver/Add-DnsServerResourceRecordDS.md b/docset/winserver2022-ps/dnsserver/Add-DnsServerResourceRecordDS.md index 94071e04ee..6385edce8c 100644 --- a/docset/winserver2022-ps/dnsserver/Add-DnsServerResourceRecordDS.md +++ b/docset/winserver2022-ps/dnsserver/Add-DnsServerResourceRecordDS.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResourceRecordDS_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecordds?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecordds?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerResourceRecordDS --- diff --git a/docset/winserver2022-ps/dnsserver/Add-DnsServerResourceRecordDnsKey.md b/docset/winserver2022-ps/dnsserver/Add-DnsServerResourceRecordDnsKey.md index df3aea8568..1a5be52397 100644 --- a/docset/winserver2022-ps/dnsserver/Add-DnsServerResourceRecordDnsKey.md +++ b/docset/winserver2022-ps/dnsserver/Add-DnsServerResourceRecordDnsKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResourceRecordDnsKey_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecorddnskey?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecorddnskey?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerResourceRecordDnsKey --- diff --git a/docset/winserver2022-ps/dnsserver/Add-DnsServerResourceRecordMX.md b/docset/winserver2022-ps/dnsserver/Add-DnsServerResourceRecordMX.md index 9b13592c97..8781503112 100644 --- a/docset/winserver2022-ps/dnsserver/Add-DnsServerResourceRecordMX.md +++ b/docset/winserver2022-ps/dnsserver/Add-DnsServerResourceRecordMX.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResourceRecordMX_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecordmx?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecordmx?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerResourceRecordMX --- diff --git a/docset/winserver2022-ps/dnsserver/Add-DnsServerResourceRecordPtr.md b/docset/winserver2022-ps/dnsserver/Add-DnsServerResourceRecordPtr.md index c47ffb2d08..64832be9ea 100644 --- a/docset/winserver2022-ps/dnsserver/Add-DnsServerResourceRecordPtr.md +++ b/docset/winserver2022-ps/dnsserver/Add-DnsServerResourceRecordPtr.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResourceRecordPTR_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecordptr?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverresourcerecordptr?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerResourceRecordPtr --- diff --git a/docset/winserver2022-ps/dnsserver/Add-DnsServerResponseRateLimitingExceptionlist.md b/docset/winserver2022-ps/dnsserver/Add-DnsServerResponseRateLimitingExceptionlist.md index 09e1e93081..3f9259ffbc 100644 --- a/docset/winserver2022-ps/dnsserver/Add-DnsServerResponseRateLimitingExceptionlist.md +++ b/docset/winserver2022-ps/dnsserver/Add-DnsServerResponseRateLimitingExceptionlist.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResponseRateLimitingExceptionlist_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverresponseratelimitingexceptionlist?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverresponseratelimitingexceptionlist?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerResponseRateLimitingExceptionlist --- diff --git a/docset/winserver2022-ps/dnsserver/Add-DnsServerRootHint.md b/docset/winserver2022-ps/dnsserver/Add-DnsServerRootHint.md index 174e9951dd..94cc72959f 100644 --- a/docset/winserver2022-ps/dnsserver/Add-DnsServerRootHint.md +++ b/docset/winserver2022-ps/dnsserver/Add-DnsServerRootHint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerRootHint_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverroothint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverroothint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerRootHint --- diff --git a/docset/winserver2022-ps/dnsserver/Add-DnsServerSecondaryZone.md b/docset/winserver2022-ps/dnsserver/Add-DnsServerSecondaryZone.md index b4df0e2a29..74eede0350 100644 --- a/docset/winserver2022-ps/dnsserver/Add-DnsServerSecondaryZone.md +++ b/docset/winserver2022-ps/dnsserver/Add-DnsServerSecondaryZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerSecondaryZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserversecondaryzone?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserversecondaryzone?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerSecondaryZone --- diff --git a/docset/winserver2022-ps/dnsserver/Add-DnsServerSigningKey.md b/docset/winserver2022-ps/dnsserver/Add-DnsServerSigningKey.md index 9c7ac4455f..68a378865d 100644 --- a/docset/winserver2022-ps/dnsserver/Add-DnsServerSigningKey.md +++ b/docset/winserver2022-ps/dnsserver/Add-DnsServerSigningKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerSigningKey_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserversigningkey?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserversigningkey?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerSigningKey --- diff --git a/docset/winserver2022-ps/dnsserver/Add-DnsServerStubZone.md b/docset/winserver2022-ps/dnsserver/Add-DnsServerStubZone.md index 78c512975c..e342503d4c 100644 --- a/docset/winserver2022-ps/dnsserver/Add-DnsServerStubZone.md +++ b/docset/winserver2022-ps/dnsserver/Add-DnsServerStubZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerStubZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverstubzone?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverstubzone?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerStubZone --- diff --git a/docset/winserver2022-ps/dnsserver/Add-DnsServerTrustAnchor.md b/docset/winserver2022-ps/dnsserver/Add-DnsServerTrustAnchor.md index 4b8fb62fa6..4e25b37a4b 100644 --- a/docset/winserver2022-ps/dnsserver/Add-DnsServerTrustAnchor.md +++ b/docset/winserver2022-ps/dnsserver/Add-DnsServerTrustAnchor.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerTrustAnchor_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsservertrustanchor?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsservertrustanchor?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerTrustAnchor --- diff --git a/docset/winserver2022-ps/dnsserver/Add-DnsServerVirtualizationInstance.md b/docset/winserver2022-ps/dnsserver/Add-DnsServerVirtualizationInstance.md index f12d8f25cb..44bf697a2d 100644 --- a/docset/winserver2022-ps/dnsserver/Add-DnsServerVirtualizationInstance.md +++ b/docset/winserver2022-ps/dnsserver/Add-DnsServerVirtualizationInstance.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerVirtualizationInstance_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsservervirtualizationinstance?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsservervirtualizationinstance?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerVirtualizationInstance --- diff --git a/docset/winserver2022-ps/dnsserver/Add-DnsServerZoneDelegation.md b/docset/winserver2022-ps/dnsserver/Add-DnsServerZoneDelegation.md index 6f31c507f8..bfcb52a973 100644 --- a/docset/winserver2022-ps/dnsserver/Add-DnsServerZoneDelegation.md +++ b/docset/winserver2022-ps/dnsserver/Add-DnsServerZoneDelegation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZoneDelegation_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverzonedelegation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverzonedelegation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerZoneDelegation --- diff --git a/docset/winserver2022-ps/dnsserver/Add-DnsServerZoneScope.md b/docset/winserver2022-ps/dnsserver/Add-DnsServerZoneScope.md index 645839f3a2..8ff1f2fa05 100644 --- a/docset/winserver2022-ps/dnsserver/Add-DnsServerZoneScope.md +++ b/docset/winserver2022-ps/dnsserver/Add-DnsServerZoneScope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZoneScope_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverzonescope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverzonescope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerZoneScope --- diff --git a/docset/winserver2022-ps/dnsserver/Add-DnsServerZoneTransferPolicy.md b/docset/winserver2022-ps/dnsserver/Add-DnsServerZoneTransferPolicy.md index 1c44eaeaf5..e03425f966 100644 --- a/docset/winserver2022-ps/dnsserver/Add-DnsServerZoneTransferPolicy.md +++ b/docset/winserver2022-ps/dnsserver/Add-DnsServerZoneTransferPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZoneTransferPolicy_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/add-dnsserverzonetransferpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/add-dnsserverzonetransferpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DnsServerZoneTransferPolicy --- diff --git a/docset/winserver2022-ps/dnsserver/Clear-DnsServerCache.md b/docset/winserver2022-ps/dnsserver/Clear-DnsServerCache.md index 2428321d9e..fca22b4c2a 100644 --- a/docset/winserver2022-ps/dnsserver/Clear-DnsServerCache.md +++ b/docset/winserver2022-ps/dnsserver/Clear-DnsServerCache.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerCache_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/clear-dnsservercache?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/clear-dnsservercache?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-DnsServerCache --- diff --git a/docset/winserver2022-ps/dnsserver/Clear-DnsServerStatistics.md b/docset/winserver2022-ps/dnsserver/Clear-DnsServerStatistics.md index 3185524562..4ad6677553 100644 --- a/docset/winserver2022-ps/dnsserver/Clear-DnsServerStatistics.md +++ b/docset/winserver2022-ps/dnsserver/Clear-DnsServerStatistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerStatistics_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/clear-dnsserverstatistics?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/clear-dnsserverstatistics?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-DnsServerStatistics --- diff --git a/docset/winserver2022-ps/dnsserver/ConvertTo-DnsServerPrimaryZone.md b/docset/winserver2022-ps/dnsserver/ConvertTo-DnsServerPrimaryZone.md index aab75bf30f..203483c2a4 100644 --- a/docset/winserver2022-ps/dnsserver/ConvertTo-DnsServerPrimaryZone.md +++ b/docset/winserver2022-ps/dnsserver/ConvertTo-DnsServerPrimaryZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerPrimaryZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/convertto-dnsserverprimaryzone?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/convertto-dnsserverprimaryzone?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: ConvertTo-DnsServerPrimaryZone --- diff --git a/docset/winserver2022-ps/dnsserver/ConvertTo-DnsServerSecondaryZone.md b/docset/winserver2022-ps/dnsserver/ConvertTo-DnsServerSecondaryZone.md index f6602efbd4..9da9ed9ad4 100644 --- a/docset/winserver2022-ps/dnsserver/ConvertTo-DnsServerSecondaryZone.md +++ b/docset/winserver2022-ps/dnsserver/ConvertTo-DnsServerSecondaryZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerSecondaryZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/convertto-dnsserversecondaryzone?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/convertto-dnsserversecondaryzone?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: ConvertTo-DnsServerSecondaryZone --- diff --git a/docset/winserver2022-ps/dnsserver/Disable-DnsServerPolicy.md b/docset/winserver2022-ps/dnsserver/Disable-DnsServerPolicy.md index 65a98d1bfd..f7e9c3fe95 100644 --- a/docset/winserver2022-ps/dnsserver/Disable-DnsServerPolicy.md +++ b/docset/winserver2022-ps/dnsserver/Disable-DnsServerPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerPolicy_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/disable-dnsserverpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/disable-dnsserverpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-DnsServerPolicy --- diff --git a/docset/winserver2022-ps/dnsserver/Disable-DnsServerSigningKeyRollover.md b/docset/winserver2022-ps/dnsserver/Disable-DnsServerSigningKeyRollover.md index d474882924..9e34df8ef2 100644 --- a/docset/winserver2022-ps/dnsserver/Disable-DnsServerSigningKeyRollover.md +++ b/docset/winserver2022-ps/dnsserver/Disable-DnsServerSigningKeyRollover.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerSigningKeyRollover_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/disable-dnsserversigningkeyrollover?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/disable-dnsserversigningkeyrollover?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-DnsServerSigningKeyRollover --- diff --git a/docset/winserver2022-ps/dnsserver/Enable-DnsServerPolicy.md b/docset/winserver2022-ps/dnsserver/Enable-DnsServerPolicy.md index 60ef5e942a..3c243fedfe 100644 --- a/docset/winserver2022-ps/dnsserver/Enable-DnsServerPolicy.md +++ b/docset/winserver2022-ps/dnsserver/Enable-DnsServerPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerPolicy_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/enable-dnsserverpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/enable-dnsserverpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-DnsServerPolicy --- diff --git a/docset/winserver2022-ps/dnsserver/Enable-DnsServerSigningKeyRollover.md b/docset/winserver2022-ps/dnsserver/Enable-DnsServerSigningKeyRollover.md index e8d559c2d0..01e8eb8b01 100644 --- a/docset/winserver2022-ps/dnsserver/Enable-DnsServerSigningKeyRollover.md +++ b/docset/winserver2022-ps/dnsserver/Enable-DnsServerSigningKeyRollover.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerSigningKeyRollover_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/enable-dnsserversigningkeyrollover?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/enable-dnsserversigningkeyrollover?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-DnsServerSigningKeyRollover --- diff --git a/docset/winserver2022-ps/dnsserver/Export-DnsServerDnsSecPublicKey.md b/docset/winserver2022-ps/dnsserver/Export-DnsServerDnsSecPublicKey.md index 878dcc46bc..1ac901cf65 100644 --- a/docset/winserver2022-ps/dnsserver/Export-DnsServerDnsSecPublicKey.md +++ b/docset/winserver2022-ps/dnsserver/Export-DnsServerDnsSecPublicKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerDnsSecPublicKey_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/export-dnsserverdnssecpublickey?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/export-dnsserverdnssecpublickey?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-DnsServerDnsSecPublicKey --- diff --git a/docset/winserver2022-ps/dnsserver/Export-DnsServerZone.md b/docset/winserver2022-ps/dnsserver/Export-DnsServerZone.md index 6d2b19f119..2a9b6b7c0b 100644 --- a/docset/winserver2022-ps/dnsserver/Export-DnsServerZone.md +++ b/docset/winserver2022-ps/dnsserver/Export-DnsServerZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/export-dnsserverzone?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/export-dnsserverzone?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-DnsServerZone --- diff --git a/docset/winserver2022-ps/dnsserver/Get-DnsServer.md b/docset/winserver2022-ps/dnsserver/Get-DnsServer.md index ba30826f8c..8ff645d8ec 100644 --- a/docset/winserver2022-ps/dnsserver/Get-DnsServer.md +++ b/docset/winserver2022-ps/dnsserver/Get-DnsServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServer_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServer --- diff --git a/docset/winserver2022-ps/dnsserver/Get-DnsServerCache.md b/docset/winserver2022-ps/dnsserver/Get-DnsServerCache.md index b32f2f509d..3a497386a2 100644 --- a/docset/winserver2022-ps/dnsserver/Get-DnsServerCache.md +++ b/docset/winserver2022-ps/dnsserver/Get-DnsServerCache.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerCache_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsservercache?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsservercache?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerCache --- diff --git a/docset/winserver2022-ps/dnsserver/Get-DnsServerClientSubnet.md b/docset/winserver2022-ps/dnsserver/Get-DnsServerClientSubnet.md index 999d591843..041770186c 100644 --- a/docset/winserver2022-ps/dnsserver/Get-DnsServerClientSubnet.md +++ b/docset/winserver2022-ps/dnsserver/Get-DnsServerClientSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerClientSubnet_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverclientsubnet?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverclientsubnet?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerClientSubnet --- diff --git a/docset/winserver2022-ps/dnsserver/Get-DnsServerDiagnostics.md b/docset/winserver2022-ps/dnsserver/Get-DnsServerDiagnostics.md index 4f3c9e8e4b..0200381df2 100644 --- a/docset/winserver2022-ps/dnsserver/Get-DnsServerDiagnostics.md +++ b/docset/winserver2022-ps/dnsserver/Get-DnsServerDiagnostics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerDiagnostics_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverdiagnostics?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverdiagnostics?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerDiagnostics --- diff --git a/docset/winserver2022-ps/dnsserver/Get-DnsServerDirectoryPartition.md b/docset/winserver2022-ps/dnsserver/Get-DnsServerDirectoryPartition.md index 6d3c055677..b422b7e06a 100644 --- a/docset/winserver2022-ps/dnsserver/Get-DnsServerDirectoryPartition.md +++ b/docset/winserver2022-ps/dnsserver/Get-DnsServerDirectoryPartition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerDirectoryPartition_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverdirectorypartition?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverdirectorypartition?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerDirectoryPartition --- diff --git a/docset/winserver2022-ps/dnsserver/Get-DnsServerDnsSecZoneSetting.md b/docset/winserver2022-ps/dnsserver/Get-DnsServerDnsSecZoneSetting.md index 2b2134f8b1..56afba9cac 100644 --- a/docset/winserver2022-ps/dnsserver/Get-DnsServerDnsSecZoneSetting.md +++ b/docset/winserver2022-ps/dnsserver/Get-DnsServerDnsSecZoneSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerDnsSecZoneSetting_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverdnsseczonesetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverdnsseczonesetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerDnsSecZoneSetting --- diff --git a/docset/winserver2022-ps/dnsserver/Get-DnsServerDsSetting.md b/docset/winserver2022-ps/dnsserver/Get-DnsServerDsSetting.md index c35a9c147b..96eec7bcf4 100644 --- a/docset/winserver2022-ps/dnsserver/Get-DnsServerDsSetting.md +++ b/docset/winserver2022-ps/dnsserver/Get-DnsServerDsSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerDsSetting_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverdssetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverdssetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerDsSetting --- diff --git a/docset/winserver2022-ps/dnsserver/Get-DnsServerEDns.md b/docset/winserver2022-ps/dnsserver/Get-DnsServerEDns.md index 4701fd5cc1..fde9e49de0 100644 --- a/docset/winserver2022-ps/dnsserver/Get-DnsServerEDns.md +++ b/docset/winserver2022-ps/dnsserver/Get-DnsServerEDns.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerEdns_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserveredns?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserveredns?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerEDns --- diff --git a/docset/winserver2022-ps/dnsserver/Get-DnsServerForwarder.md b/docset/winserver2022-ps/dnsserver/Get-DnsServerForwarder.md index 109d76852f..28eb487840 100644 --- a/docset/winserver2022-ps/dnsserver/Get-DnsServerForwarder.md +++ b/docset/winserver2022-ps/dnsserver/Get-DnsServerForwarder.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerForwarder_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverforwarder?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverforwarder?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerForwarder --- diff --git a/docset/winserver2022-ps/dnsserver/Get-DnsServerGlobalNameZone.md b/docset/winserver2022-ps/dnsserver/Get-DnsServerGlobalNameZone.md index 3c81294cf5..706c90c71c 100644 --- a/docset/winserver2022-ps/dnsserver/Get-DnsServerGlobalNameZone.md +++ b/docset/winserver2022-ps/dnsserver/Get-DnsServerGlobalNameZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerGlobalNameZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverglobalnamezone?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverglobalnamezone?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerGlobalNameZone --- diff --git a/docset/winserver2022-ps/dnsserver/Get-DnsServerGlobalQueryBlockList.md b/docset/winserver2022-ps/dnsserver/Get-DnsServerGlobalQueryBlockList.md index c349658262..756e3c8556 100644 --- a/docset/winserver2022-ps/dnsserver/Get-DnsServerGlobalQueryBlockList.md +++ b/docset/winserver2022-ps/dnsserver/Get-DnsServerGlobalQueryBlockList.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerGlobalQueryBlockList_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverglobalqueryblocklist?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverglobalqueryblocklist?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerGlobalQueryBlockList --- diff --git a/docset/winserver2022-ps/dnsserver/Get-DnsServerQueryResolutionPolicy.md b/docset/winserver2022-ps/dnsserver/Get-DnsServerQueryResolutionPolicy.md index effac26ab2..2b9e170002 100644 --- a/docset/winserver2022-ps/dnsserver/Get-DnsServerQueryResolutionPolicy.md +++ b/docset/winserver2022-ps/dnsserver/Get-DnsServerQueryResolutionPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerQueryResolutionPolicy_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverqueryresolutionpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverqueryresolutionpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerQueryResolutionPolicy --- diff --git a/docset/winserver2022-ps/dnsserver/Get-DnsServerRecursion.md b/docset/winserver2022-ps/dnsserver/Get-DnsServerRecursion.md index 70aa659097..ee28e14009 100644 --- a/docset/winserver2022-ps/dnsserver/Get-DnsServerRecursion.md +++ b/docset/winserver2022-ps/dnsserver/Get-DnsServerRecursion.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerRecursion_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverrecursion?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverrecursion?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerRecursion --- diff --git a/docset/winserver2022-ps/dnsserver/Get-DnsServerRecursionScope.md b/docset/winserver2022-ps/dnsserver/Get-DnsServerRecursionScope.md index e4310e8150..df31ace470 100644 --- a/docset/winserver2022-ps/dnsserver/Get-DnsServerRecursionScope.md +++ b/docset/winserver2022-ps/dnsserver/Get-DnsServerRecursionScope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerRecursionScope_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverrecursionscope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverrecursionscope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerRecursionScope --- diff --git a/docset/winserver2022-ps/dnsserver/Get-DnsServerResourceRecord.md b/docset/winserver2022-ps/dnsserver/Get-DnsServerResourceRecord.md index cfb0557fdb..6f48bd290a 100644 --- a/docset/winserver2022-ps/dnsserver/Get-DnsServerResourceRecord.md +++ b/docset/winserver2022-ps/dnsserver/Get-DnsServerResourceRecord.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResourceRecord_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverresourcerecord?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverresourcerecord?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerResourceRecord --- diff --git a/docset/winserver2022-ps/dnsserver/Get-DnsServerResponseRateLimiting.md b/docset/winserver2022-ps/dnsserver/Get-DnsServerResponseRateLimiting.md index 7b861a8908..943b648a87 100644 --- a/docset/winserver2022-ps/dnsserver/Get-DnsServerResponseRateLimiting.md +++ b/docset/winserver2022-ps/dnsserver/Get-DnsServerResponseRateLimiting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResponseRateLimiting_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverresponseratelimiting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverresponseratelimiting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerResponseRateLimiting --- diff --git a/docset/winserver2022-ps/dnsserver/Get-DnsServerResponseRateLimitingExceptionlist.md b/docset/winserver2022-ps/dnsserver/Get-DnsServerResponseRateLimitingExceptionlist.md index cb6371f003..4f30b7f857 100644 --- a/docset/winserver2022-ps/dnsserver/Get-DnsServerResponseRateLimitingExceptionlist.md +++ b/docset/winserver2022-ps/dnsserver/Get-DnsServerResponseRateLimitingExceptionlist.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResponseRateLimitingExceptionlist_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverresponseratelimitingexceptionlist?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverresponseratelimitingexceptionlist?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerResponseRateLimitingExceptionlist --- diff --git a/docset/winserver2022-ps/dnsserver/Get-DnsServerRootHint.md b/docset/winserver2022-ps/dnsserver/Get-DnsServerRootHint.md index 3d2eead5f2..49eecdaf76 100644 --- a/docset/winserver2022-ps/dnsserver/Get-DnsServerRootHint.md +++ b/docset/winserver2022-ps/dnsserver/Get-DnsServerRootHint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerRootHint_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverroothint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverroothint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerRootHint --- diff --git a/docset/winserver2022-ps/dnsserver/Get-DnsServerScavenging.md b/docset/winserver2022-ps/dnsserver/Get-DnsServerScavenging.md index bf97eebf45..b60ecf3d8f 100644 --- a/docset/winserver2022-ps/dnsserver/Get-DnsServerScavenging.md +++ b/docset/winserver2022-ps/dnsserver/Get-DnsServerScavenging.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerScavenging_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverscavenging?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverscavenging?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerScavenging --- diff --git a/docset/winserver2022-ps/dnsserver/Get-DnsServerSetting.md b/docset/winserver2022-ps/dnsserver/Get-DnsServerSetting.md index f18f7f52bf..142bb2c57d 100644 --- a/docset/winserver2022-ps/dnsserver/Get-DnsServerSetting.md +++ b/docset/winserver2022-ps/dnsserver/Get-DnsServerSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerSetting_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserversetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserversetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerSetting --- diff --git a/docset/winserver2022-ps/dnsserver/Get-DnsServerSigningKey.md b/docset/winserver2022-ps/dnsserver/Get-DnsServerSigningKey.md index 52c464c6bf..d888e4a2eb 100644 --- a/docset/winserver2022-ps/dnsserver/Get-DnsServerSigningKey.md +++ b/docset/winserver2022-ps/dnsserver/Get-DnsServerSigningKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerSigningKey_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserversigningkey?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserversigningkey?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerSigningKey --- diff --git a/docset/winserver2022-ps/dnsserver/Get-DnsServerStatistics.md b/docset/winserver2022-ps/dnsserver/Get-DnsServerStatistics.md index 8ebb9c293e..ac478068b2 100644 --- a/docset/winserver2022-ps/dnsserver/Get-DnsServerStatistics.md +++ b/docset/winserver2022-ps/dnsserver/Get-DnsServerStatistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerStatistics_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverstatistics?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverstatistics?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerStatistics --- diff --git a/docset/winserver2022-ps/dnsserver/Get-DnsServerTrustAnchor.md b/docset/winserver2022-ps/dnsserver/Get-DnsServerTrustAnchor.md index 3eb87bcc56..e0563cc7b8 100644 --- a/docset/winserver2022-ps/dnsserver/Get-DnsServerTrustAnchor.md +++ b/docset/winserver2022-ps/dnsserver/Get-DnsServerTrustAnchor.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerTrustAnchor_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsservertrustanchor?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsservertrustanchor?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerTrustAnchor --- diff --git a/docset/winserver2022-ps/dnsserver/Get-DnsServerTrustPoint.md b/docset/winserver2022-ps/dnsserver/Get-DnsServerTrustPoint.md index 8289d1543b..02d5dafb3a 100644 --- a/docset/winserver2022-ps/dnsserver/Get-DnsServerTrustPoint.md +++ b/docset/winserver2022-ps/dnsserver/Get-DnsServerTrustPoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerTrustPoint_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsservertrustpoint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsservertrustpoint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerTrustPoint --- diff --git a/docset/winserver2022-ps/dnsserver/Get-DnsServerVirtualizationInstance.md b/docset/winserver2022-ps/dnsserver/Get-DnsServerVirtualizationInstance.md index f07d7f8b71..70b3716e18 100644 --- a/docset/winserver2022-ps/dnsserver/Get-DnsServerVirtualizationInstance.md +++ b/docset/winserver2022-ps/dnsserver/Get-DnsServerVirtualizationInstance.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerVirtualizationInstance_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsservervirtualizationinstance?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsservervirtualizationinstance?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerVirtualizationInstance --- diff --git a/docset/winserver2022-ps/dnsserver/Get-DnsServerZone.md b/docset/winserver2022-ps/dnsserver/Get-DnsServerZone.md index 9048ee4c69..481281528b 100644 --- a/docset/winserver2022-ps/dnsserver/Get-DnsServerZone.md +++ b/docset/winserver2022-ps/dnsserver/Get-DnsServerZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverzone?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverzone?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerZone --- diff --git a/docset/winserver2022-ps/dnsserver/Get-DnsServerZoneAging.md b/docset/winserver2022-ps/dnsserver/Get-DnsServerZoneAging.md index 69097e05db..122c4377be 100644 --- a/docset/winserver2022-ps/dnsserver/Get-DnsServerZoneAging.md +++ b/docset/winserver2022-ps/dnsserver/Get-DnsServerZoneAging.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZoneAging_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverzoneaging?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverzoneaging?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerZoneAging --- diff --git a/docset/winserver2022-ps/dnsserver/Get-DnsServerZoneDelegation.md b/docset/winserver2022-ps/dnsserver/Get-DnsServerZoneDelegation.md index 199dc13cca..dd74b9748a 100644 --- a/docset/winserver2022-ps/dnsserver/Get-DnsServerZoneDelegation.md +++ b/docset/winserver2022-ps/dnsserver/Get-DnsServerZoneDelegation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZoneDelegation_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverzonedelegation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverzonedelegation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerZoneDelegation --- diff --git a/docset/winserver2022-ps/dnsserver/Get-DnsServerZoneScope.md b/docset/winserver2022-ps/dnsserver/Get-DnsServerZoneScope.md index ba6db2ebb3..75d65e3c33 100644 --- a/docset/winserver2022-ps/dnsserver/Get-DnsServerZoneScope.md +++ b/docset/winserver2022-ps/dnsserver/Get-DnsServerZoneScope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZoneScope_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverzonescope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverzonescope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerZoneScope --- diff --git a/docset/winserver2022-ps/dnsserver/Get-DnsServerZoneTransferPolicy.md b/docset/winserver2022-ps/dnsserver/Get-DnsServerZoneTransferPolicy.md index 51c63b0bf2..c36c002bc2 100644 --- a/docset/winserver2022-ps/dnsserver/Get-DnsServerZoneTransferPolicy.md +++ b/docset/winserver2022-ps/dnsserver/Get-DnsServerZoneTransferPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZoneTransferPolicy_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/get-dnsserverzonetransferpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/get-dnsserverzonetransferpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DnsServerZoneTransferPolicy --- diff --git a/docset/winserver2022-ps/dnsserver/Import-DnsServerResourceRecordDS.md b/docset/winserver2022-ps/dnsserver/Import-DnsServerResourceRecordDS.md index 929933552f..8377728f98 100644 --- a/docset/winserver2022-ps/dnsserver/Import-DnsServerResourceRecordDS.md +++ b/docset/winserver2022-ps/dnsserver/Import-DnsServerResourceRecordDS.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResourceRecordDS_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/import-dnsserverresourcerecordds?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/import-dnsserverresourcerecordds?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-DnsServerResourceRecordDS --- diff --git a/docset/winserver2022-ps/dnsserver/Import-DnsServerRootHint.md b/docset/winserver2022-ps/dnsserver/Import-DnsServerRootHint.md index 27820aaa7f..e0fb36d26e 100644 --- a/docset/winserver2022-ps/dnsserver/Import-DnsServerRootHint.md +++ b/docset/winserver2022-ps/dnsserver/Import-DnsServerRootHint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerRootHint_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/import-dnsserverroothint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/import-dnsserverroothint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-DnsServerRootHint --- diff --git a/docset/winserver2022-ps/dnsserver/Import-DnsServerTrustAnchor.md b/docset/winserver2022-ps/dnsserver/Import-DnsServerTrustAnchor.md index 2d176c9239..c600716dd6 100644 --- a/docset/winserver2022-ps/dnsserver/Import-DnsServerTrustAnchor.md +++ b/docset/winserver2022-ps/dnsserver/Import-DnsServerTrustAnchor.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerTrustAnchor_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/import-dnsservertrustanchor?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/import-dnsservertrustanchor?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-DnsServerTrustAnchor --- diff --git a/docset/winserver2022-ps/dnsserver/Invoke-DnsServerSigningKeyRollover.md b/docset/winserver2022-ps/dnsserver/Invoke-DnsServerSigningKeyRollover.md index 5619281f92..abb1483e7b 100644 --- a/docset/winserver2022-ps/dnsserver/Invoke-DnsServerSigningKeyRollover.md +++ b/docset/winserver2022-ps/dnsserver/Invoke-DnsServerSigningKeyRollover.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerSigningKeyRollover_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/invoke-dnsserversigningkeyrollover?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/invoke-dnsserversigningkeyrollover?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-DnsServerSigningKeyRollover --- diff --git a/docset/winserver2022-ps/dnsserver/Invoke-DnsServerZoneSign.md b/docset/winserver2022-ps/dnsserver/Invoke-DnsServerZoneSign.md index 8de3ab560f..fb645c0ca0 100644 --- a/docset/winserver2022-ps/dnsserver/Invoke-DnsServerZoneSign.md +++ b/docset/winserver2022-ps/dnsserver/Invoke-DnsServerZoneSign.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZoneSign_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/invoke-dnsserverzonesign?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/invoke-dnsserverzonesign?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-DnsServerZoneSign --- diff --git a/docset/winserver2022-ps/dnsserver/Invoke-DnsServerZoneUnsign.md b/docset/winserver2022-ps/dnsserver/Invoke-DnsServerZoneUnsign.md index dd9d5bf0c7..0090bb86fd 100644 --- a/docset/winserver2022-ps/dnsserver/Invoke-DnsServerZoneUnsign.md +++ b/docset/winserver2022-ps/dnsserver/Invoke-DnsServerZoneUnsign.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZoneUnsign_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/invoke-dnsserverzoneunsign?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/invoke-dnsserverzoneunsign?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-DnsServerZoneUnsign --- diff --git a/docset/winserver2022-ps/dnsserver/Register-DnsServerDirectoryPartition.md b/docset/winserver2022-ps/dnsserver/Register-DnsServerDirectoryPartition.md index 9f087bcdb4..a26c7d4842 100644 --- a/docset/winserver2022-ps/dnsserver/Register-DnsServerDirectoryPartition.md +++ b/docset/winserver2022-ps/dnsserver/Register-DnsServerDirectoryPartition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerDirectoryPartition_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/register-dnsserverdirectorypartition?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/register-dnsserverdirectorypartition?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Register-DnsServerDirectoryPartition --- diff --git a/docset/winserver2022-ps/dnsserver/Remove-DnsServerClientSubnet.md b/docset/winserver2022-ps/dnsserver/Remove-DnsServerClientSubnet.md index db2153dbb3..57e91b42ad 100644 --- a/docset/winserver2022-ps/dnsserver/Remove-DnsServerClientSubnet.md +++ b/docset/winserver2022-ps/dnsserver/Remove-DnsServerClientSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerClientSubnet_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsserverclientsubnet?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsserverclientsubnet?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsServerClientSubnet --- diff --git a/docset/winserver2022-ps/dnsserver/Remove-DnsServerDirectoryPartition.md b/docset/winserver2022-ps/dnsserver/Remove-DnsServerDirectoryPartition.md index 8a3f1752f9..6efa5deafc 100644 --- a/docset/winserver2022-ps/dnsserver/Remove-DnsServerDirectoryPartition.md +++ b/docset/winserver2022-ps/dnsserver/Remove-DnsServerDirectoryPartition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerDirectoryPartition_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsserverdirectorypartition?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsserverdirectorypartition?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsServerDirectoryPartition --- diff --git a/docset/winserver2022-ps/dnsserver/Remove-DnsServerForwarder.md b/docset/winserver2022-ps/dnsserver/Remove-DnsServerForwarder.md index 283b7ee3e6..d48f7b7466 100644 --- a/docset/winserver2022-ps/dnsserver/Remove-DnsServerForwarder.md +++ b/docset/winserver2022-ps/dnsserver/Remove-DnsServerForwarder.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerForwarder_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsserverforwarder?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsserverforwarder?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsServerForwarder --- diff --git a/docset/winserver2022-ps/dnsserver/Remove-DnsServerQueryResolutionPolicy.md b/docset/winserver2022-ps/dnsserver/Remove-DnsServerQueryResolutionPolicy.md index 3a64c13534..976eeb4513 100644 --- a/docset/winserver2022-ps/dnsserver/Remove-DnsServerQueryResolutionPolicy.md +++ b/docset/winserver2022-ps/dnsserver/Remove-DnsServerQueryResolutionPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerQueryResolutionPolicy_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsserverqueryresolutionpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsserverqueryresolutionpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsServerQueryResolutionPolicy --- diff --git a/docset/winserver2022-ps/dnsserver/Remove-DnsServerRecursionScope.md b/docset/winserver2022-ps/dnsserver/Remove-DnsServerRecursionScope.md index 21aef6fd7e..1769056e2f 100644 --- a/docset/winserver2022-ps/dnsserver/Remove-DnsServerRecursionScope.md +++ b/docset/winserver2022-ps/dnsserver/Remove-DnsServerRecursionScope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerRecursionScope_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsserverrecursionscope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsserverrecursionscope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsServerRecursionScope --- diff --git a/docset/winserver2022-ps/dnsserver/Remove-DnsServerResourceRecord.md b/docset/winserver2022-ps/dnsserver/Remove-DnsServerResourceRecord.md index e607876f79..544aa7dbd4 100644 --- a/docset/winserver2022-ps/dnsserver/Remove-DnsServerResourceRecord.md +++ b/docset/winserver2022-ps/dnsserver/Remove-DnsServerResourceRecord.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResourceRecord_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsserverresourcerecord?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsserverresourcerecord?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsServerResourceRecord --- diff --git a/docset/winserver2022-ps/dnsserver/Remove-DnsServerResponseRateLimitingExceptionlist.md b/docset/winserver2022-ps/dnsserver/Remove-DnsServerResponseRateLimitingExceptionlist.md index 7f0d3877df..adde663888 100644 --- a/docset/winserver2022-ps/dnsserver/Remove-DnsServerResponseRateLimitingExceptionlist.md +++ b/docset/winserver2022-ps/dnsserver/Remove-DnsServerResponseRateLimitingExceptionlist.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResponseRateLimitingExceptionlist_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsserverresponseratelimitingexceptionlist?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsserverresponseratelimitingexceptionlist?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsServerResponseRateLimitingExceptionlist --- diff --git a/docset/winserver2022-ps/dnsserver/Remove-DnsServerRootHint.md b/docset/winserver2022-ps/dnsserver/Remove-DnsServerRootHint.md index ba3c25584e..39c6dfa395 100644 --- a/docset/winserver2022-ps/dnsserver/Remove-DnsServerRootHint.md +++ b/docset/winserver2022-ps/dnsserver/Remove-DnsServerRootHint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerRootHint_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsserverroothint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsserverroothint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsServerRootHint --- diff --git a/docset/winserver2022-ps/dnsserver/Remove-DnsServerSigningKey.md b/docset/winserver2022-ps/dnsserver/Remove-DnsServerSigningKey.md index cbb9a85b3e..0b6b0cc2db 100644 --- a/docset/winserver2022-ps/dnsserver/Remove-DnsServerSigningKey.md +++ b/docset/winserver2022-ps/dnsserver/Remove-DnsServerSigningKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerSigningKey_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsserversigningkey?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsserversigningkey?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsServerSigningKey --- diff --git a/docset/winserver2022-ps/dnsserver/Remove-DnsServerTrustAnchor.md b/docset/winserver2022-ps/dnsserver/Remove-DnsServerTrustAnchor.md index 2e9a027025..4a9aa8bb81 100644 --- a/docset/winserver2022-ps/dnsserver/Remove-DnsServerTrustAnchor.md +++ b/docset/winserver2022-ps/dnsserver/Remove-DnsServerTrustAnchor.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerTrustAnchor_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsservertrustanchor?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsservertrustanchor?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsServerTrustAnchor --- diff --git a/docset/winserver2022-ps/dnsserver/Remove-DnsServerVirtualizationInstance.md b/docset/winserver2022-ps/dnsserver/Remove-DnsServerVirtualizationInstance.md index 9760a80031..070ad9deb7 100644 --- a/docset/winserver2022-ps/dnsserver/Remove-DnsServerVirtualizationInstance.md +++ b/docset/winserver2022-ps/dnsserver/Remove-DnsServerVirtualizationInstance.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerVirtualizationInstance_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsservervirtualizationinstance?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsservervirtualizationinstance?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsServerVirtualizationInstance --- diff --git a/docset/winserver2022-ps/dnsserver/Remove-DnsServerZone.md b/docset/winserver2022-ps/dnsserver/Remove-DnsServerZone.md index 58b7a67a63..b76d1e1dd4 100644 --- a/docset/winserver2022-ps/dnsserver/Remove-DnsServerZone.md +++ b/docset/winserver2022-ps/dnsserver/Remove-DnsServerZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsserverzone?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsserverzone?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsServerZone --- diff --git a/docset/winserver2022-ps/dnsserver/Remove-DnsServerZoneDelegation.md b/docset/winserver2022-ps/dnsserver/Remove-DnsServerZoneDelegation.md index a5262c523d..dce2942a48 100644 --- a/docset/winserver2022-ps/dnsserver/Remove-DnsServerZoneDelegation.md +++ b/docset/winserver2022-ps/dnsserver/Remove-DnsServerZoneDelegation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZoneDelegation_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsserverzonedelegation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsserverzonedelegation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsServerZoneDelegation --- diff --git a/docset/winserver2022-ps/dnsserver/Remove-DnsServerZoneScope.md b/docset/winserver2022-ps/dnsserver/Remove-DnsServerZoneScope.md index 363cb99ca3..c725684b88 100644 --- a/docset/winserver2022-ps/dnsserver/Remove-DnsServerZoneScope.md +++ b/docset/winserver2022-ps/dnsserver/Remove-DnsServerZoneScope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZoneScope_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsserverzonescope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsserverzonescope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsServerZoneScope --- diff --git a/docset/winserver2022-ps/dnsserver/Remove-DnsServerZoneTransferPolicy.md b/docset/winserver2022-ps/dnsserver/Remove-DnsServerZoneTransferPolicy.md index 89aec19e26..0a8089e402 100644 --- a/docset/winserver2022-ps/dnsserver/Remove-DnsServerZoneTransferPolicy.md +++ b/docset/winserver2022-ps/dnsserver/Remove-DnsServerZoneTransferPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZoneTransferPolicy_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/remove-dnsserverzonetransferpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/remove-dnsserverzonetransferpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DnsServerZoneTransferPolicy --- diff --git a/docset/winserver2022-ps/dnsserver/Reset-DnsServerZoneKeyMasterRole.md b/docset/winserver2022-ps/dnsserver/Reset-DnsServerZoneKeyMasterRole.md index cc145e3e3c..ebd9f82adf 100644 --- a/docset/winserver2022-ps/dnsserver/Reset-DnsServerZoneKeyMasterRole.md +++ b/docset/winserver2022-ps/dnsserver/Reset-DnsServerZoneKeyMasterRole.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZoneKeyMasterRole_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/reset-dnsserverzonekeymasterrole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/reset-dnsserverzonekeymasterrole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-DnsServerZoneKeyMasterRole --- diff --git a/docset/winserver2022-ps/dnsserver/Restore-DnsServerPrimaryZone.md b/docset/winserver2022-ps/dnsserver/Restore-DnsServerPrimaryZone.md index fdc8356e31..529d824103 100644 --- a/docset/winserver2022-ps/dnsserver/Restore-DnsServerPrimaryZone.md +++ b/docset/winserver2022-ps/dnsserver/Restore-DnsServerPrimaryZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerPrimaryZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/restore-dnsserverprimaryzone?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/restore-dnsserverprimaryzone?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-DnsServerPrimaryZone --- diff --git a/docset/winserver2022-ps/dnsserver/Restore-DnsServerSecondaryZone.md b/docset/winserver2022-ps/dnsserver/Restore-DnsServerSecondaryZone.md index 0a702ac68b..a54d932787 100644 --- a/docset/winserver2022-ps/dnsserver/Restore-DnsServerSecondaryZone.md +++ b/docset/winserver2022-ps/dnsserver/Restore-DnsServerSecondaryZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerSecondaryZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/restore-dnsserversecondaryzone?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/restore-dnsserversecondaryzone?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-DnsServerSecondaryZone --- diff --git a/docset/winserver2022-ps/dnsserver/Resume-DnsServerZone.md b/docset/winserver2022-ps/dnsserver/Resume-DnsServerZone.md index f25d6a5875..e0cd855403 100644 --- a/docset/winserver2022-ps/dnsserver/Resume-DnsServerZone.md +++ b/docset/winserver2022-ps/dnsserver/Resume-DnsServerZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/resume-dnsserverzone?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/resume-dnsserverzone?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-DnsServerZone --- diff --git a/docset/winserver2022-ps/dnsserver/Set-DnsServer.md b/docset/winserver2022-ps/dnsserver/Set-DnsServer.md index 6b46af9782..7854253fc8 100644 --- a/docset/winserver2022-ps/dnsserver/Set-DnsServer.md +++ b/docset/winserver2022-ps/dnsserver/Set-DnsServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServer_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServer --- diff --git a/docset/winserver2022-ps/dnsserver/Set-DnsServerCache.md b/docset/winserver2022-ps/dnsserver/Set-DnsServerCache.md index 8bc2af7782..5b7a1c58c8 100644 --- a/docset/winserver2022-ps/dnsserver/Set-DnsServerCache.md +++ b/docset/winserver2022-ps/dnsserver/Set-DnsServerCache.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerCache_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsservercache?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsservercache?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerCache --- diff --git a/docset/winserver2022-ps/dnsserver/Set-DnsServerClientSubnet.md b/docset/winserver2022-ps/dnsserver/Set-DnsServerClientSubnet.md index a741ed3489..8136cb5457 100644 --- a/docset/winserver2022-ps/dnsserver/Set-DnsServerClientSubnet.md +++ b/docset/winserver2022-ps/dnsserver/Set-DnsServerClientSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerClientSubnet_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverclientsubnet?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverclientsubnet?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerClientSubnet --- diff --git a/docset/winserver2022-ps/dnsserver/Set-DnsServerConditionalForwarderZone.md b/docset/winserver2022-ps/dnsserver/Set-DnsServerConditionalForwarderZone.md index 23acc57628..e9654e32da 100644 --- a/docset/winserver2022-ps/dnsserver/Set-DnsServerConditionalForwarderZone.md +++ b/docset/winserver2022-ps/dnsserver/Set-DnsServerConditionalForwarderZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerConditionalForwarder_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverconditionalforwarderzone?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverconditionalforwarderzone?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerConditionalForwarderZone --- diff --git a/docset/winserver2022-ps/dnsserver/Set-DnsServerDiagnostics.md b/docset/winserver2022-ps/dnsserver/Set-DnsServerDiagnostics.md index 928e5465bb..ccc070fd2d 100644 --- a/docset/winserver2022-ps/dnsserver/Set-DnsServerDiagnostics.md +++ b/docset/winserver2022-ps/dnsserver/Set-DnsServerDiagnostics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerDiagnostics_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverdiagnostics?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverdiagnostics?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerDiagnostics --- diff --git a/docset/winserver2022-ps/dnsserver/Set-DnsServerDnsSecZoneSetting.md b/docset/winserver2022-ps/dnsserver/Set-DnsServerDnsSecZoneSetting.md index a0e45d744e..f86a9caa0b 100644 --- a/docset/winserver2022-ps/dnsserver/Set-DnsServerDnsSecZoneSetting.md +++ b/docset/winserver2022-ps/dnsserver/Set-DnsServerDnsSecZoneSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerDnsSecZoneSetting_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverdnsseczonesetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverdnsseczonesetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerDnsSecZoneSetting --- diff --git a/docset/winserver2022-ps/dnsserver/Set-DnsServerDsSetting.md b/docset/winserver2022-ps/dnsserver/Set-DnsServerDsSetting.md index 51d1c0cccc..4a1209df34 100644 --- a/docset/winserver2022-ps/dnsserver/Set-DnsServerDsSetting.md +++ b/docset/winserver2022-ps/dnsserver/Set-DnsServerDsSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerDsSetting_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverdssetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverdssetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerDsSetting --- diff --git a/docset/winserver2022-ps/dnsserver/Set-DnsServerEDns.md b/docset/winserver2022-ps/dnsserver/Set-DnsServerEDns.md index 3d9b102c0f..51b6e4d411 100644 --- a/docset/winserver2022-ps/dnsserver/Set-DnsServerEDns.md +++ b/docset/winserver2022-ps/dnsserver/Set-DnsServerEDns.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerEdns_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserveredns?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserveredns?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerEDns --- diff --git a/docset/winserver2022-ps/dnsserver/Set-DnsServerForwarder.md b/docset/winserver2022-ps/dnsserver/Set-DnsServerForwarder.md index 296961b01f..957af65e7c 100644 --- a/docset/winserver2022-ps/dnsserver/Set-DnsServerForwarder.md +++ b/docset/winserver2022-ps/dnsserver/Set-DnsServerForwarder.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerForwarder_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverforwarder?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverforwarder?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerForwarder --- diff --git a/docset/winserver2022-ps/dnsserver/Set-DnsServerGlobalNameZone.md b/docset/winserver2022-ps/dnsserver/Set-DnsServerGlobalNameZone.md index 342fd53134..6c4f4f764a 100644 --- a/docset/winserver2022-ps/dnsserver/Set-DnsServerGlobalNameZone.md +++ b/docset/winserver2022-ps/dnsserver/Set-DnsServerGlobalNameZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerGlobalNameZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverglobalnamezone?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverglobalnamezone?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerGlobalNameZone --- diff --git a/docset/winserver2022-ps/dnsserver/Set-DnsServerGlobalQueryBlockList.md b/docset/winserver2022-ps/dnsserver/Set-DnsServerGlobalQueryBlockList.md index 1e1b2ea374..efcef571ba 100644 --- a/docset/winserver2022-ps/dnsserver/Set-DnsServerGlobalQueryBlockList.md +++ b/docset/winserver2022-ps/dnsserver/Set-DnsServerGlobalQueryBlockList.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerGlobalQueryBlockList_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverglobalqueryblocklist?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverglobalqueryblocklist?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerGlobalQueryBlockList --- diff --git a/docset/winserver2022-ps/dnsserver/Set-DnsServerPrimaryZone.md b/docset/winserver2022-ps/dnsserver/Set-DnsServerPrimaryZone.md index 15323badda..77886f20e5 100644 --- a/docset/winserver2022-ps/dnsserver/Set-DnsServerPrimaryZone.md +++ b/docset/winserver2022-ps/dnsserver/Set-DnsServerPrimaryZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerPrimaryZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverprimaryzone?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverprimaryzone?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerPrimaryZone --- diff --git a/docset/winserver2022-ps/dnsserver/Set-DnsServerQueryResolutionPolicy.md b/docset/winserver2022-ps/dnsserver/Set-DnsServerQueryResolutionPolicy.md index 0d30ff8e11..ef62a60eaf 100644 --- a/docset/winserver2022-ps/dnsserver/Set-DnsServerQueryResolutionPolicy.md +++ b/docset/winserver2022-ps/dnsserver/Set-DnsServerQueryResolutionPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerQueryResolutionPolicy_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverqueryresolutionpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverqueryresolutionpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerQueryResolutionPolicy --- diff --git a/docset/winserver2022-ps/dnsserver/Set-DnsServerRecursion.md b/docset/winserver2022-ps/dnsserver/Set-DnsServerRecursion.md index dff0381daf..a37b5b25b4 100644 --- a/docset/winserver2022-ps/dnsserver/Set-DnsServerRecursion.md +++ b/docset/winserver2022-ps/dnsserver/Set-DnsServerRecursion.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerRecursion_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverrecursion?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverrecursion?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerRecursion --- diff --git a/docset/winserver2022-ps/dnsserver/Set-DnsServerRecursionScope.md b/docset/winserver2022-ps/dnsserver/Set-DnsServerRecursionScope.md index 8f212dc14a..73000a5d37 100644 --- a/docset/winserver2022-ps/dnsserver/Set-DnsServerRecursionScope.md +++ b/docset/winserver2022-ps/dnsserver/Set-DnsServerRecursionScope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerRecursionScope_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverrecursionscope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverrecursionscope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerRecursionScope --- diff --git a/docset/winserver2022-ps/dnsserver/Set-DnsServerResourceRecord.md b/docset/winserver2022-ps/dnsserver/Set-DnsServerResourceRecord.md index 3dc637124e..386ac09fcb 100644 --- a/docset/winserver2022-ps/dnsserver/Set-DnsServerResourceRecord.md +++ b/docset/winserver2022-ps/dnsserver/Set-DnsServerResourceRecord.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResourceRecord_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverresourcerecord?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverresourcerecord?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerResourceRecord --- diff --git a/docset/winserver2022-ps/dnsserver/Set-DnsServerResourceRecordAging.md b/docset/winserver2022-ps/dnsserver/Set-DnsServerResourceRecordAging.md index a1b625b3d7..d9f5e2f0a3 100644 --- a/docset/winserver2022-ps/dnsserver/Set-DnsServerResourceRecordAging.md +++ b/docset/winserver2022-ps/dnsserver/Set-DnsServerResourceRecordAging.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResourceRecordAging_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverresourcerecordaging?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverresourcerecordaging?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerResourceRecordAging --- diff --git a/docset/winserver2022-ps/dnsserver/Set-DnsServerResponseRateLimiting.md b/docset/winserver2022-ps/dnsserver/Set-DnsServerResponseRateLimiting.md index 167dabfadc..46bf3a6983 100644 --- a/docset/winserver2022-ps/dnsserver/Set-DnsServerResponseRateLimiting.md +++ b/docset/winserver2022-ps/dnsserver/Set-DnsServerResponseRateLimiting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResponseRateLimiting_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverresponseratelimiting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverresponseratelimiting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerResponseRateLimiting --- diff --git a/docset/winserver2022-ps/dnsserver/Set-DnsServerResponseRateLimitingExceptionlist.md b/docset/winserver2022-ps/dnsserver/Set-DnsServerResponseRateLimitingExceptionlist.md index d70a432bd7..50979f6d82 100644 --- a/docset/winserver2022-ps/dnsserver/Set-DnsServerResponseRateLimitingExceptionlist.md +++ b/docset/winserver2022-ps/dnsserver/Set-DnsServerResponseRateLimitingExceptionlist.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerResponseRateLimitingExceptionlist_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverresponseratelimitingexceptionlist?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverresponseratelimitingexceptionlist?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerResponseRateLimitingExceptionlist --- diff --git a/docset/winserver2022-ps/dnsserver/Set-DnsServerRootHint.md b/docset/winserver2022-ps/dnsserver/Set-DnsServerRootHint.md index c26ff8a056..709cd99f77 100644 --- a/docset/winserver2022-ps/dnsserver/Set-DnsServerRootHint.md +++ b/docset/winserver2022-ps/dnsserver/Set-DnsServerRootHint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerRootHint_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverroothint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverroothint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerRootHint --- diff --git a/docset/winserver2022-ps/dnsserver/Set-DnsServerScavenging.md b/docset/winserver2022-ps/dnsserver/Set-DnsServerScavenging.md index 6cba611572..b447aa0a57 100644 --- a/docset/winserver2022-ps/dnsserver/Set-DnsServerScavenging.md +++ b/docset/winserver2022-ps/dnsserver/Set-DnsServerScavenging.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerScavenging_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverscavenging?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverscavenging?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerScavenging --- diff --git a/docset/winserver2022-ps/dnsserver/Set-DnsServerSecondaryZone.md b/docset/winserver2022-ps/dnsserver/Set-DnsServerSecondaryZone.md index b946acf36e..39952511ca 100644 --- a/docset/winserver2022-ps/dnsserver/Set-DnsServerSecondaryZone.md +++ b/docset/winserver2022-ps/dnsserver/Set-DnsServerSecondaryZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerSecondaryZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserversecondaryzone?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserversecondaryzone?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerSecondaryZone --- diff --git a/docset/winserver2022-ps/dnsserver/Set-DnsServerSetting.md b/docset/winserver2022-ps/dnsserver/Set-DnsServerSetting.md index bad9a8a7b1..5e5338b565 100644 --- a/docset/winserver2022-ps/dnsserver/Set-DnsServerSetting.md +++ b/docset/winserver2022-ps/dnsserver/Set-DnsServerSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerSetting_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserversetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserversetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerSetting --- diff --git a/docset/winserver2022-ps/dnsserver/Set-DnsServerSigningKey.md b/docset/winserver2022-ps/dnsserver/Set-DnsServerSigningKey.md index db2b82a731..3c88f137aa 100644 --- a/docset/winserver2022-ps/dnsserver/Set-DnsServerSigningKey.md +++ b/docset/winserver2022-ps/dnsserver/Set-DnsServerSigningKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerSigningKey_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserversigningkey?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserversigningkey?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerSigningKey --- diff --git a/docset/winserver2022-ps/dnsserver/Set-DnsServerStubZone.md b/docset/winserver2022-ps/dnsserver/Set-DnsServerStubZone.md index c8ac82ab39..8c41d35ec9 100644 --- a/docset/winserver2022-ps/dnsserver/Set-DnsServerStubZone.md +++ b/docset/winserver2022-ps/dnsserver/Set-DnsServerStubZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerStubZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverstubzone?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverstubzone?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerStubZone --- diff --git a/docset/winserver2022-ps/dnsserver/Set-DnsServerVirtualizationInstance.md b/docset/winserver2022-ps/dnsserver/Set-DnsServerVirtualizationInstance.md index 153e14cc0f..9890622cd8 100644 --- a/docset/winserver2022-ps/dnsserver/Set-DnsServerVirtualizationInstance.md +++ b/docset/winserver2022-ps/dnsserver/Set-DnsServerVirtualizationInstance.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerVirtualizationInstance_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsservervirtualizationinstance?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsservervirtualizationinstance?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerVirtualizationInstance --- diff --git a/docset/winserver2022-ps/dnsserver/Set-DnsServerZoneAging.md b/docset/winserver2022-ps/dnsserver/Set-DnsServerZoneAging.md index 7f0a17e8d4..59ebfecc19 100644 --- a/docset/winserver2022-ps/dnsserver/Set-DnsServerZoneAging.md +++ b/docset/winserver2022-ps/dnsserver/Set-DnsServerZoneAging.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZoneAging_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverzoneaging?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverzoneaging?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerZoneAging --- diff --git a/docset/winserver2022-ps/dnsserver/Set-DnsServerZoneDelegation.md b/docset/winserver2022-ps/dnsserver/Set-DnsServerZoneDelegation.md index 9077eb790d..ea94d5d132 100644 --- a/docset/winserver2022-ps/dnsserver/Set-DnsServerZoneDelegation.md +++ b/docset/winserver2022-ps/dnsserver/Set-DnsServerZoneDelegation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZoneDelegation_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverzonedelegation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverzonedelegation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerZoneDelegation --- diff --git a/docset/winserver2022-ps/dnsserver/Set-DnsServerZoneTransferPolicy.md b/docset/winserver2022-ps/dnsserver/Set-DnsServerZoneTransferPolicy.md index 49c99d1022..af3bb976fe 100644 --- a/docset/winserver2022-ps/dnsserver/Set-DnsServerZoneTransferPolicy.md +++ b/docset/winserver2022-ps/dnsserver/Set-DnsServerZoneTransferPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZoneTransferPolicy_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/set-dnsserverzonetransferpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/set-dnsserverzonetransferpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DnsServerZoneTransferPolicy --- diff --git a/docset/winserver2022-ps/dnsserver/Show-DnsServerCache.md b/docset/winserver2022-ps/dnsserver/Show-DnsServerCache.md index 3e4306fae1..bcbfbab375 100644 --- a/docset/winserver2022-ps/dnsserver/Show-DnsServerCache.md +++ b/docset/winserver2022-ps/dnsserver/Show-DnsServerCache.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerCache_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/show-dnsservercache?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/show-dnsservercache?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Show-DnsServerCache --- diff --git a/docset/winserver2022-ps/dnsserver/Show-DnsServerKeyStorageProvider.md b/docset/winserver2022-ps/dnsserver/Show-DnsServerKeyStorageProvider.md index 0178052a13..34ecadc572 100644 --- a/docset/winserver2022-ps/dnsserver/Show-DnsServerKeyStorageProvider.md +++ b/docset/winserver2022-ps/dnsserver/Show-DnsServerKeyStorageProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerKeyStorageProvider_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/show-dnsserverkeystorageprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/show-dnsserverkeystorageprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Show-DnsServerKeyStorageProvider --- diff --git a/docset/winserver2022-ps/dnsserver/Start-DnsServerScavenging.md b/docset/winserver2022-ps/dnsserver/Start-DnsServerScavenging.md index 0c6f3f602e..472a84fdc7 100644 --- a/docset/winserver2022-ps/dnsserver/Start-DnsServerScavenging.md +++ b/docset/winserver2022-ps/dnsserver/Start-DnsServerScavenging.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerScavenging_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/start-dnsserverscavenging?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/start-dnsserverscavenging?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-DnsServerScavenging --- diff --git a/docset/winserver2022-ps/dnsserver/Start-DnsServerZoneTransfer.md b/docset/winserver2022-ps/dnsserver/Start-DnsServerZoneTransfer.md index 762ecc61d5..6db4e0e44e 100644 --- a/docset/winserver2022-ps/dnsserver/Start-DnsServerZoneTransfer.md +++ b/docset/winserver2022-ps/dnsserver/Start-DnsServerZoneTransfer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZoneTransfer_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/start-dnsserverzonetransfer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/start-dnsserverzonetransfer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-DnsServerZoneTransfer --- diff --git a/docset/winserver2022-ps/dnsserver/Step-DnsServerSigningKeyRollover.md b/docset/winserver2022-ps/dnsserver/Step-DnsServerSigningKeyRollover.md index 9472408ede..56cef42d64 100644 --- a/docset/winserver2022-ps/dnsserver/Step-DnsServerSigningKeyRollover.md +++ b/docset/winserver2022-ps/dnsserver/Step-DnsServerSigningKeyRollover.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerSigningKeyRollover_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/step-dnsserversigningkeyrollover?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/step-dnsserversigningkeyrollover?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Step-DnsServerSigningKeyRollover --- diff --git a/docset/winserver2022-ps/dnsserver/Suspend-DnsServerZone.md b/docset/winserver2022-ps/dnsserver/Suspend-DnsServerZone.md index 64bab85abe..d9a9cdd9cf 100644 --- a/docset/winserver2022-ps/dnsserver/Suspend-DnsServerZone.md +++ b/docset/winserver2022-ps/dnsserver/Suspend-DnsServerZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/suspend-dnsserverzone?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/suspend-dnsserverzone?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-DnsServerZone --- diff --git a/docset/winserver2022-ps/dnsserver/Sync-DnsServerZone.md b/docset/winserver2022-ps/dnsserver/Sync-DnsServerZone.md index 44dd3e8b3c..1b59253790 100644 --- a/docset/winserver2022-ps/dnsserver/Sync-DnsServerZone.md +++ b/docset/winserver2022-ps/dnsserver/Sync-DnsServerZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerZone_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/sync-dnsserverzone?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/sync-dnsserverzone?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Sync-DnsServerZone --- diff --git a/docset/winserver2022-ps/dnsserver/Test-DnsServer.md b/docset/winserver2022-ps/dnsserver/Test-DnsServer.md index c884010f05..5798d39eb3 100644 --- a/docset/winserver2022-ps/dnsserver/Test-DnsServer.md +++ b/docset/winserver2022-ps/dnsserver/Test-DnsServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServer_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/test-dnsserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/test-dnsserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-DnsServer --- diff --git a/docset/winserver2022-ps/dnsserver/Test-DnsServerDnsSecZoneSetting.md b/docset/winserver2022-ps/dnsserver/Test-DnsServerDnsSecZoneSetting.md index 08cfd08d56..fa1cda7336 100644 --- a/docset/winserver2022-ps/dnsserver/Test-DnsServerDnsSecZoneSetting.md +++ b/docset/winserver2022-ps/dnsserver/Test-DnsServerDnsSecZoneSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerDnsSecZoneSetting_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/test-dnsserverdnsseczonesetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/test-dnsserverdnsseczonesetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-DnsServerDnsSecZoneSetting --- diff --git a/docset/winserver2022-ps/dnsserver/Unregister-DnsServerDirectoryPartition.md b/docset/winserver2022-ps/dnsserver/Unregister-DnsServerDirectoryPartition.md index 7c7261d7b3..0f17c81590 100644 --- a/docset/winserver2022-ps/dnsserver/Unregister-DnsServerDirectoryPartition.md +++ b/docset/winserver2022-ps/dnsserver/Unregister-DnsServerDirectoryPartition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerDirectoryPartition_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/unregister-dnsserverdirectorypartition?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/unregister-dnsserverdirectorypartition?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unregister-DnsServerDirectoryPartition --- diff --git a/docset/winserver2022-ps/dnsserver/Update-DnsServerTrustPoint.md b/docset/winserver2022-ps/dnsserver/Update-DnsServerTrustPoint.md index d60d42cc5b..9a2cf81d2f 100644 --- a/docset/winserver2022-ps/dnsserver/Update-DnsServerTrustPoint.md +++ b/docset/winserver2022-ps/dnsserver/Update-DnsServerTrustPoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DnsServerTrustPoint_v1.0.0.cdxml-help.xml Module Name: DnsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/dnsserver/update-dnsservertrustpoint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/dnsserver/update-dnsservertrustpoint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-DnsServerTrustPoint --- diff --git a/docset/winserver2022-ps/eventtracingmanagement/Add-EtwTraceProvider.md b/docset/winserver2022-ps/eventtracingmanagement/Add-EtwTraceProvider.md index ce3b10f675..15f4e2d980 100644 --- a/docset/winserver2022-ps/eventtracingmanagement/Add-EtwTraceProvider.md +++ b/docset/winserver2022-ps/eventtracingmanagement/Add-EtwTraceProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_EtwTraceProvider_v1.0.cdxml-help.xml Module Name: EventTracingManagement ms.date: 01/05/2017 -online version: https://docs.microsoft.com/powershell/module/eventtracingmanagement/add-etwtraceprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/eventtracingmanagement/add-etwtraceprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-EtwTraceProvider --- diff --git a/docset/winserver2022-ps/eventtracingmanagement/Get-AutologgerConfig.md b/docset/winserver2022-ps/eventtracingmanagement/Get-AutologgerConfig.md index 60d5d34ecf..6628afcf19 100644 --- a/docset/winserver2022-ps/eventtracingmanagement/Get-AutologgerConfig.md +++ b/docset/winserver2022-ps/eventtracingmanagement/Get-AutologgerConfig.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_AutologgerConfig_v1.0.cdxml-help.xml Module Name: EventTracingManagement ms.date: 01/05/2017 -online version: https://docs.microsoft.com/powershell/module/eventtracingmanagement/get-autologgerconfig?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/eventtracingmanagement/get-autologgerconfig?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AutologgerConfig --- diff --git a/docset/winserver2022-ps/eventtracingmanagement/Get-EtwTraceProvider.md b/docset/winserver2022-ps/eventtracingmanagement/Get-EtwTraceProvider.md index 991744522a..26b0959fba 100644 --- a/docset/winserver2022-ps/eventtracingmanagement/Get-EtwTraceProvider.md +++ b/docset/winserver2022-ps/eventtracingmanagement/Get-EtwTraceProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_EtwTraceProvider_v1.0.cdxml-help.xml Module Name: EventTracingManagement ms.date: 01/05/2017 -online version: https://docs.microsoft.com/powershell/module/eventtracingmanagement/get-etwtraceprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/eventtracingmanagement/get-etwtraceprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-EtwTraceProvider --- diff --git a/docset/winserver2022-ps/eventtracingmanagement/Get-EtwTraceSession.md b/docset/winserver2022-ps/eventtracingmanagement/Get-EtwTraceSession.md index 6d862fca1b..2a9efcfc73 100644 --- a/docset/winserver2022-ps/eventtracingmanagement/Get-EtwTraceSession.md +++ b/docset/winserver2022-ps/eventtracingmanagement/Get-EtwTraceSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_EtwTraceSession_v1.0.cdxml-help.xml Module Name: EventTracingManagement ms.date: 01/05/2017 -online version: https://docs.microsoft.com/powershell/module/eventtracingmanagement/get-etwtracesession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/eventtracingmanagement/get-etwtracesession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-EtwTraceSession --- diff --git a/docset/winserver2022-ps/eventtracingmanagement/New-AutologgerConfig.md b/docset/winserver2022-ps/eventtracingmanagement/New-AutologgerConfig.md index 3521c435c8..cbccdcc9b2 100644 --- a/docset/winserver2022-ps/eventtracingmanagement/New-AutologgerConfig.md +++ b/docset/winserver2022-ps/eventtracingmanagement/New-AutologgerConfig.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_AutologgerConfig_v1.0.cdxml-help.xml Module Name: EventTracingManagement ms.date: 01/05/2017 -online version: https://docs.microsoft.com/powershell/module/eventtracingmanagement/new-autologgerconfig?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/eventtracingmanagement/new-autologgerconfig?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-AutologgerConfig --- diff --git a/docset/winserver2022-ps/eventtracingmanagement/New-EtwTraceSession.md b/docset/winserver2022-ps/eventtracingmanagement/New-EtwTraceSession.md index 2838a0e870..5744f21025 100644 --- a/docset/winserver2022-ps/eventtracingmanagement/New-EtwTraceSession.md +++ b/docset/winserver2022-ps/eventtracingmanagement/New-EtwTraceSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_EtwTraceSession_v1.0.cdxml-help.xml Module Name: EventTracingManagement ms.date: 01/05/2017 -online version: https://docs.microsoft.com/powershell/module/eventtracingmanagement/new-etwtracesession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/eventtracingmanagement/new-etwtracesession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-EtwTraceSession --- diff --git a/docset/winserver2022-ps/eventtracingmanagement/Remove-AutologgerConfig.md b/docset/winserver2022-ps/eventtracingmanagement/Remove-AutologgerConfig.md index 4f6546b280..2773f1c57f 100644 --- a/docset/winserver2022-ps/eventtracingmanagement/Remove-AutologgerConfig.md +++ b/docset/winserver2022-ps/eventtracingmanagement/Remove-AutologgerConfig.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_AutologgerConfig_v1.0.cdxml-help.xml Module Name: EventTracingManagement ms.date: 01/05/2017 -online version: https://docs.microsoft.com/powershell/module/eventtracingmanagement/remove-autologgerconfig?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/eventtracingmanagement/remove-autologgerconfig?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AutologgerConfig --- diff --git a/docset/winserver2022-ps/eventtracingmanagement/Remove-EtwTraceProvider.md b/docset/winserver2022-ps/eventtracingmanagement/Remove-EtwTraceProvider.md index b33ca8de1e..bc46f4560f 100644 --- a/docset/winserver2022-ps/eventtracingmanagement/Remove-EtwTraceProvider.md +++ b/docset/winserver2022-ps/eventtracingmanagement/Remove-EtwTraceProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_EtwTraceProvider_v1.0.cdxml-help.xml Module Name: EventTracingManagement ms.date: 01/05/2017 -online version: https://docs.microsoft.com/powershell/module/eventtracingmanagement/remove-etwtraceprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/eventtracingmanagement/remove-etwtraceprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-EtwTraceProvider --- diff --git a/docset/winserver2022-ps/eventtracingmanagement/Save-EtwTraceSession.md b/docset/winserver2022-ps/eventtracingmanagement/Save-EtwTraceSession.md index 4c252b0438..03e19b60b9 100644 --- a/docset/winserver2022-ps/eventtracingmanagement/Save-EtwTraceSession.md +++ b/docset/winserver2022-ps/eventtracingmanagement/Save-EtwTraceSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: EventTracingManagement-help.xml Module Name: EventTracingManagement ms.date: 01/05/2017 -online version: https://docs.microsoft.com/powershell/module/eventtracingmanagement/save-etwtracesession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/eventtracingmanagement/save-etwtracesession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Save-EtwTraceSession --- diff --git a/docset/winserver2022-ps/eventtracingmanagement/Send-EtwTraceSession.md b/docset/winserver2022-ps/eventtracingmanagement/Send-EtwTraceSession.md index 17c688b9fb..9e7cac740b 100644 --- a/docset/winserver2022-ps/eventtracingmanagement/Send-EtwTraceSession.md +++ b/docset/winserver2022-ps/eventtracingmanagement/Send-EtwTraceSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_EtwTraceSession_v1.0.cdxml-help.xml Module Name: EventTracingManagement ms.date: 01/05/2017 -online version: https://docs.microsoft.com/powershell/module/eventtracingmanagement/send-etwtracesession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/eventtracingmanagement/send-etwtracesession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Send-EtwTraceSession --- diff --git a/docset/winserver2022-ps/eventtracingmanagement/Set-EtwTraceProvider.md b/docset/winserver2022-ps/eventtracingmanagement/Set-EtwTraceProvider.md index 0bfe7acc8c..3eb39dc10d 100644 --- a/docset/winserver2022-ps/eventtracingmanagement/Set-EtwTraceProvider.md +++ b/docset/winserver2022-ps/eventtracingmanagement/Set-EtwTraceProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_EtwTraceProvider_v1.0.cdxml-help.xml Module Name: EventTracingManagement ms.date: 01/05/2017 -online version: https://docs.microsoft.com/powershell/module/eventtracingmanagement/set-etwtraceprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/eventtracingmanagement/set-etwtraceprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-EtwTraceProvider --- diff --git a/docset/winserver2022-ps/eventtracingmanagement/Start-EtwTraceSession.md b/docset/winserver2022-ps/eventtracingmanagement/Start-EtwTraceSession.md index 62b4b954d0..439813d3e3 100644 --- a/docset/winserver2022-ps/eventtracingmanagement/Start-EtwTraceSession.md +++ b/docset/winserver2022-ps/eventtracingmanagement/Start-EtwTraceSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: EventTracingManagement-help.xml Module Name: EventTracingManagement ms.date: 01/05/2017 -online version: https://docs.microsoft.com/powershell/module/eventtracingmanagement/start-etwtracesession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/eventtracingmanagement/start-etwtracesession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-EtwTraceSession --- diff --git a/docset/winserver2022-ps/eventtracingmanagement/Stop-EtwTraceSession.md b/docset/winserver2022-ps/eventtracingmanagement/Stop-EtwTraceSession.md index 1b4d56b6ae..ba7d349b2e 100644 --- a/docset/winserver2022-ps/eventtracingmanagement/Stop-EtwTraceSession.md +++ b/docset/winserver2022-ps/eventtracingmanagement/Stop-EtwTraceSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_EtwTraceSession_v1.0.cdxml-help.xml Module Name: EventTracingManagement ms.date: 01/05/2017 -online version: https://docs.microsoft.com/powershell/module/eventtracingmanagement/stop-etwtracesession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/eventtracingmanagement/stop-etwtracesession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-EtwTraceSession --- diff --git a/docset/winserver2022-ps/eventtracingmanagement/Update-AutologgerConfig.md b/docset/winserver2022-ps/eventtracingmanagement/Update-AutologgerConfig.md index af99cfde66..00f8a60558 100644 --- a/docset/winserver2022-ps/eventtracingmanagement/Update-AutologgerConfig.md +++ b/docset/winserver2022-ps/eventtracingmanagement/Update-AutologgerConfig.md @@ -3,7 +3,7 @@ description: Modifies an existing AutoLogger session configuration. external help file: MSFT_AutologgerConfig_v1.0.cdxml-help.xml Module Name: EventTracingManagement ms.date: 10/01/2021 -online version: https://docs.microsoft.com/powershell/module/eventtracingmanagement/update-autologgerconfig?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/eventtracingmanagement/update-autologgerconfig?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-AutologgerConfig --- diff --git a/docset/winserver2022-ps/eventtracingmanagement/Update-EtwTraceSession.md b/docset/winserver2022-ps/eventtracingmanagement/Update-EtwTraceSession.md index ef972c4461..c70b43a9da 100644 --- a/docset/winserver2022-ps/eventtracingmanagement/Update-EtwTraceSession.md +++ b/docset/winserver2022-ps/eventtracingmanagement/Update-EtwTraceSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_EtwTraceSession_v1.0.cdxml-help.xml Module Name: EventTracingManagement ms.date: 01/05/2017 -online version: https://docs.microsoft.com/powershell/module/eventtracingmanagement/update-etwtracesession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/eventtracingmanagement/update-etwtracesession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-EtwTraceSession --- diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterCheckpoint.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterCheckpoint.md index 4cb4d9450a..4e91b69019 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterCheckpoint.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterCheckpoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clustercheckpoint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustercheckpoint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterCheckpoint --- diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterDisk.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterDisk.md index 66ad928f7f..945e0d0c77 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterDisk.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clusterdisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusterdisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterDisk --- diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterFileServerRole.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterFileServerRole.md index dd50b23033..562e4a407a 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterFileServerRole.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterFileServerRole.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clusterfileserverrole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusterfileserverrole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterFileServerRole --- diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericApplicationRole.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericApplicationRole.md index 49d0b68e82..ea59bbb712 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericApplicationRole.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericApplicationRole.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clustergenericapplicationrole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustergenericapplicationrole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterGenericApplicationRole --- diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericScriptRole.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericScriptRole.md index 295ce651ec..861ef6c97d 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericScriptRole.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericScriptRole.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clustergenericscriptrole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustergenericscriptrole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterGenericScriptRole --- diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericServiceRole.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericServiceRole.md index 3a6c15ad0e..8cc669470a 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericServiceRole.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericServiceRole.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clustergenericservicerole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustergenericservicerole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterGenericServiceRole --- diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterGroup.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterGroup.md index cc405195ec..d9d58ae158 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterGroup.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clustergroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustergroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterGroup --- diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupSetDependency.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupSetDependency.md index 2a7cddde7a..4b8f46dfdc 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupSetDependency.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupSetDependency.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterCollection.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clustergroupsetdependency?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustergroupsetdependency?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterGroupSetDependency --- diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupToSet.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupToSet.md index b20024cb98..73c9ecb6d8 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupToSet.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupToSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterCollection.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clustergrouptoset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustergrouptoset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterGroupToSet --- diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterNode.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterNode.md index bf74e8cd5b..40711e1763 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterNode.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clusternode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusternode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterNode --- diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterResource.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterResource.md index 9c6ad42ba9..4b07704edb 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterResource.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterResource.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clusterresource?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusterresource?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterResource --- diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterResourceDependency.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterResourceDependency.md index f61e8d3474..a9e94edfa8 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterResourceDependency.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterResourceDependency.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clusterresourcedependency?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusterresourcedependency?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterResourceDependency --- diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterResourceType.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterResourceType.md index a5d4e03390..3805e79cfa 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterResourceType.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterResourceType.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clusterresourcetype?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusterresourcetype?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterResourceType --- diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md index 62eaeb9af2..2d62de7f37 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clusterscaleoutfileserverrole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusterscaleoutfileserverrole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterScaleOutFileServerRole --- diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolume.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolume.md index 360f2a68f5..e4aa14a8e3 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolume.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clustersharedvolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustersharedvolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterSharedVolume --- diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterVMMonitoredItem.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterVMMonitoredItem.md index 145814c379..954c0f69c2 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterVMMonitoredItem.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterVMMonitoredItem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clustervmmonitoreditem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustervmmonitoreditem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterVMMonitoredItem --- diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterVirtualMachineRole.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterVirtualMachineRole.md index bd2cc30b5a..e49f088ece 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterVirtualMachineRole.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterVirtualMachineRole.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clustervirtualmachinerole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustervirtualmachinerole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterVirtualMachineRole --- diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusteriSCSITargetServerRole.md b/docset/winserver2022-ps/failoverclusters/Add-ClusteriSCSITargetServerRole.md index bd12cbf386..87fab02c6b 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusteriSCSITargetServerRole.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusteriSCSITargetServerRole.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clusteriscsitargetserverrole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusteriscsitargetserverrole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusteriSCSITargetServerRole --- diff --git a/docset/winserver2022-ps/failoverclusters/Block-ClusterAccess.md b/docset/winserver2022-ps/failoverclusters/Block-ClusterAccess.md index facdf2c3a3..e9a81c8ec3 100644 --- a/docset/winserver2022-ps/failoverclusters/Block-ClusterAccess.md +++ b/docset/winserver2022-ps/failoverclusters/Block-ClusterAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/block-clusteraccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/block-clusteraccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Block-ClusterAccess --- diff --git a/docset/winserver2022-ps/failoverclusters/Clear-ClusterDiskReservation.md b/docset/winserver2022-ps/failoverclusters/Clear-ClusterDiskReservation.md index 5a4bf793e5..685a1a663d 100644 --- a/docset/winserver2022-ps/failoverclusters/Clear-ClusterDiskReservation.md +++ b/docset/winserver2022-ps/failoverclusters/Clear-ClusterDiskReservation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/clear-clusterdiskreservation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/clear-clusterdiskreservation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-ClusterDiskReservation --- diff --git a/docset/winserver2022-ps/failoverclusters/Clear-ClusterNode.md b/docset/winserver2022-ps/failoverclusters/Clear-ClusterNode.md index 84e1ab168d..81ea8646b3 100644 --- a/docset/winserver2022-ps/failoverclusters/Clear-ClusterNode.md +++ b/docset/winserver2022-ps/failoverclusters/Clear-ClusterNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/clear-clusternode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/clear-clusternode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-ClusterNode --- diff --git a/docset/winserver2022-ps/failoverclusters/Disable-ClusterStorageSpacesDirect.md b/docset/winserver2022-ps/failoverclusters/Disable-ClusterStorageSpacesDirect.md index 3d10be3b65..e921e4e5b4 100644 --- a/docset/winserver2022-ps/failoverclusters/Disable-ClusterStorageSpacesDirect.md +++ b/docset/winserver2022-ps/failoverclusters/Disable-ClusterStorageSpacesDirect.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterStorageSpacesDirect.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/disable-clusterstoragespacesdirect?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/disable-clusterstoragespacesdirect?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-ClusterStorageSpacesDirect --- diff --git a/docset/winserver2022-ps/failoverclusters/Enable-ClusterStorageSpacesDirect.md b/docset/winserver2022-ps/failoverclusters/Enable-ClusterStorageSpacesDirect.md index 48fa133ccb..9715574c01 100644 --- a/docset/winserver2022-ps/failoverclusters/Enable-ClusterStorageSpacesDirect.md +++ b/docset/winserver2022-ps/failoverclusters/Enable-ClusterStorageSpacesDirect.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Storage Spaces Direct with Windows Po external help file: ClusterStorageSpacesDirect.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/enable-clusterstoragespacesdirect?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/enable-clusterstoragespacesdirect?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-ClusterStorageSpacesDirect --- diff --git a/docset/winserver2022-ps/failoverclusters/Get-Cluster.md b/docset/winserver2022-ps/failoverclusters/Get-Cluster.md index ac282e01ab..0ffc06b628 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-Cluster.md +++ b/docset/winserver2022-ps/failoverclusters/Get-Cluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-cluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-cluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-Cluster --- diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterAccess.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterAccess.md index 85dc57e457..6b56607691 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterAccess.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusteraccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusteraccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterAccess --- diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterAvailableDisk.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterAvailableDisk.md index 86b9a1eb07..d0f3e12bd9 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterAvailableDisk.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterAvailableDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusteravailabledisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusteravailabledisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterAvailableDisk --- diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterCheckpoint.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterCheckpoint.md index efc37865b6..f30a341120 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterCheckpoint.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterCheckpoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clustercheckpoint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clustercheckpoint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterCheckpoint --- diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterDiagnosticInfo.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterDiagnosticInfo.md index 965d234d74..f1fe171bc6 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterDiagnosticInfo.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterDiagnosticInfo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusterdiagnosticinfo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterdiagnosticinfo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterDiagnosticInfo --- diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterFaultDomain.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterFaultDomain.md index 9d90997209..22db116f65 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterFaultDomain.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterFaultDomain.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterFaultDomain.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusterfaultdomain?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterfaultdomain?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterFaultDomain --- diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterFaultDomainXML.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterFaultDomainXML.md index 00ffa8de6e..e71baa7161 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterFaultDomainXML.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterFaultDomainXML.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterFaultDomain.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusterfaultdomainxml?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterfaultdomainxml?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterFaultDomainXML --- diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterGroup.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterGroup.md index f8039b420f..c9faca543e 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterGroup.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clustergroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clustergroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterGroup --- diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterGroupSet.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterGroupSet.md index 3007c87698..4387d90b18 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterGroupSet.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterGroupSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterCollection.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clustergroupset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clustergroupset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterGroupSet --- diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterGroupSetDependency.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterGroupSetDependency.md index fa56ece7c6..e0664e2a8d 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterGroupSetDependency.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterGroupSetDependency.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterCollection.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clustergroupsetdependency?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clustergroupsetdependency?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterGroupSetDependency --- diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterLog.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterLog.md index 1be5ca3252..c0140bdfdf 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterLog.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterLog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusterlog?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterlog?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterLog --- diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterNetwork.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterNetwork.md index b0efb66fb5..a2d11c2f15 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterNetwork.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterNetwork.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusternetwork?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusternetwork?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterNetwork --- diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterNetworkInterface.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterNetworkInterface.md index b428841ec8..e17120fca5 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterNetworkInterface.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterNetworkInterface.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusternetworkinterface?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusternetworkinterface?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterNetworkInterface --- diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterNode.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterNode.md index 4831fd6b7e..2b6d4ce75e 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterNode.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusternode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusternode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterNode --- diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterOwnerNode.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterOwnerNode.md index 01eefc2edf..93100d8397 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterOwnerNode.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterOwnerNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusterownernode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterownernode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterOwnerNode --- diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterParameter.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterParameter.md index b2c2d07fed..89a7b5c23d 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterParameter.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterParameter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusterparameter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterparameter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterParameter --- diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterQuorum.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterQuorum.md index a5c67c1670..bc01317e57 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterQuorum.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterQuorum.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusterquorum?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterquorum?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterQuorum --- diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterResource.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterResource.md index e22c479514..6707042c3e 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterResource.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterResource.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusterresource?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterresource?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterResource --- diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceDependency.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceDependency.md index 44df42e369..e1d280424c 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceDependency.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceDependency.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusterresourcedependency?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterresourcedependency?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterResourceDependency --- diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceDependencyReport.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceDependencyReport.md index c9f736a685..93f55ab38c 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceDependencyReport.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceDependencyReport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusterresourcedependencyreport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterresourcedependencyreport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterResourceDependencyReport --- diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceType.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceType.md index 2b716f03b0..2c2f8271ce 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceType.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceType.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusterresourcetype?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterresourcetype?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterResourceType --- diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterSharedVolume.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterSharedVolume.md index 0fb8601e53..44226c6602 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterSharedVolume.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterSharedVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clustersharedvolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clustersharedvolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterSharedVolume --- diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterSharedVolumeState.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterSharedVolumeState.md index f20a2ff791..b7f0638743 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterSharedVolumeState.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterSharedVolumeState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clustersharedvolumestate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clustersharedvolumestate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterSharedVolumeState --- diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterStorageSpacesDirect.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterStorageSpacesDirect.md index 674405ddf2..cfa4373309 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterStorageSpacesDirect.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterStorageSpacesDirect.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterStorageSpacesDirect.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusterstoragespacesdirect?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterstoragespacesdirect?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterStorageSpacesDirect --- diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterVMMonitoredItem.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterVMMonitoredItem.md index 574c88fd2f..465f7f070b 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterVMMonitoredItem.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterVMMonitoredItem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clustervmmonitoreditem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clustervmmonitoreditem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterVMMonitoredItem --- diff --git a/docset/winserver2022-ps/failoverclusters/Grant-ClusterAccess.md b/docset/winserver2022-ps/failoverclusters/Grant-ClusterAccess.md index f5be702f5f..0d684fdf03 100644 --- a/docset/winserver2022-ps/failoverclusters/Grant-ClusterAccess.md +++ b/docset/winserver2022-ps/failoverclusters/Grant-ClusterAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/grant-clusteraccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/grant-clusteraccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Grant-ClusterAccess --- diff --git a/docset/winserver2022-ps/failoverclusters/Move-ClusterGroup.md b/docset/winserver2022-ps/failoverclusters/Move-ClusterGroup.md index 95c1337951..4fe4efe301 100644 --- a/docset/winserver2022-ps/failoverclusters/Move-ClusterGroup.md +++ b/docset/winserver2022-ps/failoverclusters/Move-ClusterGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/move-clustergroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/move-clustergroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-ClusterGroup --- diff --git a/docset/winserver2022-ps/failoverclusters/Move-ClusterResource.md b/docset/winserver2022-ps/failoverclusters/Move-ClusterResource.md index 7a15ed18f0..df3c3dbf7e 100644 --- a/docset/winserver2022-ps/failoverclusters/Move-ClusterResource.md +++ b/docset/winserver2022-ps/failoverclusters/Move-ClusterResource.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/move-clusterresource?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/move-clusterresource?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-ClusterResource --- diff --git a/docset/winserver2022-ps/failoverclusters/Move-ClusterSharedVolume.md b/docset/winserver2022-ps/failoverclusters/Move-ClusterSharedVolume.md index 7c7cc68439..40ac288e16 100644 --- a/docset/winserver2022-ps/failoverclusters/Move-ClusterSharedVolume.md +++ b/docset/winserver2022-ps/failoverclusters/Move-ClusterSharedVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/move-clustersharedvolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/move-clustersharedvolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-ClusterSharedVolume --- diff --git a/docset/winserver2022-ps/failoverclusters/Move-ClusterVirtualMachineRole.md b/docset/winserver2022-ps/failoverclusters/Move-ClusterVirtualMachineRole.md index 56c6260ad3..712c56f3ab 100644 --- a/docset/winserver2022-ps/failoverclusters/Move-ClusterVirtualMachineRole.md +++ b/docset/winserver2022-ps/failoverclusters/Move-ClusterVirtualMachineRole.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/move-clustervirtualmachinerole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/move-clustervirtualmachinerole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-ClusterVirtualMachineRole --- diff --git a/docset/winserver2022-ps/failoverclusters/New-Cluster.md b/docset/winserver2022-ps/failoverclusters/New-Cluster.md index 4ec867d8ea..900eb79051 100644 --- a/docset/winserver2022-ps/failoverclusters/New-Cluster.md +++ b/docset/winserver2022-ps/failoverclusters/New-Cluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/new-cluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/new-cluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-Cluster --- diff --git a/docset/winserver2022-ps/failoverclusters/New-ClusterFaultDomain.md b/docset/winserver2022-ps/failoverclusters/New-ClusterFaultDomain.md index eb903e4f5d..2cc1d355ba 100644 --- a/docset/winserver2022-ps/failoverclusters/New-ClusterFaultDomain.md +++ b/docset/winserver2022-ps/failoverclusters/New-ClusterFaultDomain.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterFaultDomain.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/new-clusterfaultdomain?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/new-clusterfaultdomain?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ClusterFaultDomain --- diff --git a/docset/winserver2022-ps/failoverclusters/New-ClusterGroupSet.md b/docset/winserver2022-ps/failoverclusters/New-ClusterGroupSet.md index c551fb03eb..01354029ff 100644 --- a/docset/winserver2022-ps/failoverclusters/New-ClusterGroupSet.md +++ b/docset/winserver2022-ps/failoverclusters/New-ClusterGroupSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterCollection.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/new-clustergroupset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/new-clustergroupset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ClusterGroupSet --- diff --git a/docset/winserver2022-ps/failoverclusters/New-ClusterNameAccount.md b/docset/winserver2022-ps/failoverclusters/New-ClusterNameAccount.md index 4dacb48a9c..b868a6ab16 100644 --- a/docset/winserver2022-ps/failoverclusters/New-ClusterNameAccount.md +++ b/docset/winserver2022-ps/failoverclusters/New-ClusterNameAccount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/new-clusternameaccount?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/new-clusternameaccount?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ClusterNameAccount --- diff --git a/docset/winserver2022-ps/failoverclusters/Remove-Cluster.md b/docset/winserver2022-ps/failoverclusters/Remove-Cluster.md index e4cbf5d6e0..28e56c942d 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-Cluster.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-Cluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-cluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-cluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-Cluster --- diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterAccess.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterAccess.md index ca81fd75ad..df24d32dbf 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterAccess.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clusteraccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clusteraccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterAccess --- diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterCheckpoint.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterCheckpoint.md index a486877c3d..938a0d7c9c 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterCheckpoint.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterCheckpoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clustercheckpoint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clustercheckpoint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterCheckpoint --- diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterFaultDomain.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterFaultDomain.md index 10a8e85eaa..905eb16822 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterFaultDomain.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterFaultDomain.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterFaultDomain.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clusterfaultdomain?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clusterfaultdomain?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterFaultDomain --- diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroup.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroup.md index a258c28834..fbfb45ecd3 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroup.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clustergroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clustergroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterGroup --- diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromSet.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromSet.md index a71fa109d3..9760c731dc 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromSet.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterCollection.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clustergroupfromset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clustergroupfromset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterGroupFromSet --- diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupSet.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupSet.md index af7ac9e981..b52bd0feeb 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupSet.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterCollection.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clustergroupset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clustergroupset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterGroupSet --- diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupSetDependency.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupSetDependency.md index 8131e4e6c3..d4ad269498 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupSetDependency.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupSetDependency.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterCollection.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clustergroupsetdependency?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clustergroupsetdependency?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterGroupSetDependency --- diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterNode.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterNode.md index 49dd7b1131..e91f25678d 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterNode.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clusternode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clusternode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterNode --- diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterResource.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterResource.md index 10b1402132..d6ad342ac3 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterResource.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterResource.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clusterresource?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clusterresource?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterResource --- diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterResourceDependency.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterResourceDependency.md index 216edb6aa6..f951e47499 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterResourceDependency.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterResourceDependency.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clusterresourcedependency?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clusterresourcedependency?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterResourceDependency --- diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterResourceType.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterResourceType.md index c4567463a7..a66657aeb9 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterResourceType.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterResourceType.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clusterresourcetype?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clusterresourcetype?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterResourceType --- diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolume.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolume.md index 66a54b0850..9cd409b2a5 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolume.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clustersharedvolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clustersharedvolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterSharedVolume --- diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterVMMonitoredItem.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterVMMonitoredItem.md index d767e51242..e982935bee 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterVMMonitoredItem.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterVMMonitoredItem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clustervmmonitoreditem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clustervmmonitoreditem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterVMMonitoredItem --- diff --git a/docset/winserver2022-ps/failoverclusters/Repair-ClusterStorageSpacesDirect.md b/docset/winserver2022-ps/failoverclusters/Repair-ClusterStorageSpacesDirect.md index 93a350e3aa..6ea637e49c 100644 --- a/docset/winserver2022-ps/failoverclusters/Repair-ClusterStorageSpacesDirect.md +++ b/docset/winserver2022-ps/failoverclusters/Repair-ClusterStorageSpacesDirect.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterStorageSpacesDirect.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/repair-clusterstoragespacesdirect?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/repair-clusterstoragespacesdirect?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Repair-ClusterStorageSpacesDirect --- diff --git a/docset/winserver2022-ps/failoverclusters/Reset-ClusterVMMonitoredState.md b/docset/winserver2022-ps/failoverclusters/Reset-ClusterVMMonitoredState.md index 43f0edb9ea..7715054208 100644 --- a/docset/winserver2022-ps/failoverclusters/Reset-ClusterVMMonitoredState.md +++ b/docset/winserver2022-ps/failoverclusters/Reset-ClusterVMMonitoredState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/reset-clustervmmonitoredstate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/reset-clustervmmonitoredstate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-ClusterVMMonitoredState --- diff --git a/docset/winserver2022-ps/failoverclusters/Resume-ClusterNode.md b/docset/winserver2022-ps/failoverclusters/Resume-ClusterNode.md index 53cb7228eb..d6c4d983c1 100644 --- a/docset/winserver2022-ps/failoverclusters/Resume-ClusterNode.md +++ b/docset/winserver2022-ps/failoverclusters/Resume-ClusterNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/resume-clusternode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/resume-clusternode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-ClusterNode --- diff --git a/docset/winserver2022-ps/failoverclusters/Resume-ClusterResource.md b/docset/winserver2022-ps/failoverclusters/Resume-ClusterResource.md index af71c4a37a..692dc65be4 100644 --- a/docset/winserver2022-ps/failoverclusters/Resume-ClusterResource.md +++ b/docset/winserver2022-ps/failoverclusters/Resume-ClusterResource.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/resume-clusterresource?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/resume-clusterresource?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-ClusterResource --- diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterFaultDomain.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterFaultDomain.md index 12a9e5f6c3..491ad3a65f 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterFaultDomain.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterFaultDomain.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterFaultDomain.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/set-clusterfaultdomain?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterfaultdomain?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterFaultDomain --- diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterFaultDomainXML.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterFaultDomainXML.md index a33e135bba..b200595d89 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterFaultDomainXML.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterFaultDomainXML.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterFaultDomain.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/set-clusterfaultdomainxml?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterfaultdomainxml?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterFaultDomainXML --- diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterGroupSet.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterGroupSet.md index f5959b8a6a..29baa7e43f 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterGroupSet.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterGroupSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterCollection.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/set-clustergroupset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clustergroupset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterGroupSet --- diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterLog.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterLog.md index 4cfe1682d3..bd2874083d 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterLog.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterLog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/set-clusterlog?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterlog?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterLog --- diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterOwnerNode.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterOwnerNode.md index 2f2032134b..1797cd8229 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterOwnerNode.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterOwnerNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/set-clusterownernode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterownernode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterOwnerNode --- diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterParameter.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterParameter.md index 923d21e59c..7c448cd618 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterParameter.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterParameter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/set-clusterparameter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterparameter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterParameter --- diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterQuorum.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterQuorum.md index b625691f3e..5c30644023 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterQuorum.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterQuorum.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/set-clusterquorum?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterquorum?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterQuorum --- diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterResourceDependency.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterResourceDependency.md index 174bd7fc89..932103165a 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterResourceDependency.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterResourceDependency.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/set-clusterresourcedependency?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterresourcedependency?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterResourceDependency --- diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterStorageSpacesDirect.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterStorageSpacesDirect.md index c93418bae8..29905728fd 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterStorageSpacesDirect.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterStorageSpacesDirect.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterStorageSpacesDirect.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/set-clusterstoragespacesdirect?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterstoragespacesdirect?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterStorageSpacesDirect --- diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterStorageSpacesDirectDisk.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterStorageSpacesDirectDisk.md index c9038951df..fa6dc7ed7e 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterStorageSpacesDirectDisk.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterStorageSpacesDirectDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ClusterStorageSpacesDirect.cdxml-help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/set-clusterstoragespacesdirectdisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterstoragespacesdirectdisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterStorageSpacesDirectDisk --- diff --git a/docset/winserver2022-ps/failoverclusters/Start-Cluster.md b/docset/winserver2022-ps/failoverclusters/Start-Cluster.md index 12fefb43f2..20022adfc7 100644 --- a/docset/winserver2022-ps/failoverclusters/Start-Cluster.md +++ b/docset/winserver2022-ps/failoverclusters/Start-Cluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/start-cluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/start-cluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-Cluster --- diff --git a/docset/winserver2022-ps/failoverclusters/Start-ClusterGroup.md b/docset/winserver2022-ps/failoverclusters/Start-ClusterGroup.md index 3b51b9d3f2..237c1053b1 100644 --- a/docset/winserver2022-ps/failoverclusters/Start-ClusterGroup.md +++ b/docset/winserver2022-ps/failoverclusters/Start-ClusterGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/start-clustergroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/start-clustergroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-ClusterGroup --- diff --git a/docset/winserver2022-ps/failoverclusters/Start-ClusterNode.md b/docset/winserver2022-ps/failoverclusters/Start-ClusterNode.md index 1c13834ea0..7774a00867 100644 --- a/docset/winserver2022-ps/failoverclusters/Start-ClusterNode.md +++ b/docset/winserver2022-ps/failoverclusters/Start-ClusterNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/start-clusternode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/start-clusternode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-ClusterNode --- diff --git a/docset/winserver2022-ps/failoverclusters/Start-ClusterResource.md b/docset/winserver2022-ps/failoverclusters/Start-ClusterResource.md index e62d8c8652..f552b74e5f 100644 --- a/docset/winserver2022-ps/failoverclusters/Start-ClusterResource.md +++ b/docset/winserver2022-ps/failoverclusters/Start-ClusterResource.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/start-clusterresource?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/start-clusterresource?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-ClusterResource --- diff --git a/docset/winserver2022-ps/failoverclusters/Stop-Cluster.md b/docset/winserver2022-ps/failoverclusters/Stop-Cluster.md index e7fcba5b50..4fc1f66f47 100644 --- a/docset/winserver2022-ps/failoverclusters/Stop-Cluster.md +++ b/docset/winserver2022-ps/failoverclusters/Stop-Cluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/stop-cluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/stop-cluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-Cluster --- diff --git a/docset/winserver2022-ps/failoverclusters/Stop-ClusterGroup.md b/docset/winserver2022-ps/failoverclusters/Stop-ClusterGroup.md index 9c6c955f9f..2a8f374b29 100644 --- a/docset/winserver2022-ps/failoverclusters/Stop-ClusterGroup.md +++ b/docset/winserver2022-ps/failoverclusters/Stop-ClusterGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/stop-clustergroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/stop-clustergroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-ClusterGroup --- diff --git a/docset/winserver2022-ps/failoverclusters/Stop-ClusterNode.md b/docset/winserver2022-ps/failoverclusters/Stop-ClusterNode.md index 506572250a..5f057095d4 100644 --- a/docset/winserver2022-ps/failoverclusters/Stop-ClusterNode.md +++ b/docset/winserver2022-ps/failoverclusters/Stop-ClusterNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/stop-clusternode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/stop-clusternode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-ClusterNode --- diff --git a/docset/winserver2022-ps/failoverclusters/Stop-ClusterResource.md b/docset/winserver2022-ps/failoverclusters/Stop-ClusterResource.md index 6603d49a0c..29fd42b821 100644 --- a/docset/winserver2022-ps/failoverclusters/Stop-ClusterResource.md +++ b/docset/winserver2022-ps/failoverclusters/Stop-ClusterResource.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/stop-clusterresource?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/stop-clusterresource?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-ClusterResource --- diff --git a/docset/winserver2022-ps/failoverclusters/Suspend-ClusterNode.md b/docset/winserver2022-ps/failoverclusters/Suspend-ClusterNode.md index d4210d87d5..e6f2a5ee54 100644 --- a/docset/winserver2022-ps/failoverclusters/Suspend-ClusterNode.md +++ b/docset/winserver2022-ps/failoverclusters/Suspend-ClusterNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/suspend-clusternode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/suspend-clusternode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-ClusterNode --- diff --git a/docset/winserver2022-ps/failoverclusters/Suspend-ClusterResource.md b/docset/winserver2022-ps/failoverclusters/Suspend-ClusterResource.md index 1e600cbacb..34373aa195 100644 --- a/docset/winserver2022-ps/failoverclusters/Suspend-ClusterResource.md +++ b/docset/winserver2022-ps/failoverclusters/Suspend-ClusterResource.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/suspend-clusterresource?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/suspend-clusterresource?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-ClusterResource --- diff --git a/docset/winserver2022-ps/failoverclusters/Test-Cluster.md b/docset/winserver2022-ps/failoverclusters/Test-Cluster.md index 1b206171ae..31b6e1744d 100644 --- a/docset/winserver2022-ps/failoverclusters/Test-Cluster.md +++ b/docset/winserver2022-ps/failoverclusters/Test-Cluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/test-cluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/test-cluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-Cluster --- diff --git a/docset/winserver2022-ps/failoverclusters/Test-ClusterResourceFailure.md b/docset/winserver2022-ps/failoverclusters/Test-ClusterResourceFailure.md index 98afe841c4..f74061921c 100644 --- a/docset/winserver2022-ps/failoverclusters/Test-ClusterResourceFailure.md +++ b/docset/winserver2022-ps/failoverclusters/Test-ClusterResourceFailure.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/test-clusterresourcefailure?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/test-clusterresourcefailure?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-ClusterResourceFailure --- diff --git a/docset/winserver2022-ps/failoverclusters/Update-ClusterFunctionalLevel.md b/docset/winserver2022-ps/failoverclusters/Update-ClusterFunctionalLevel.md index e23bd010c2..3b61c8e40e 100644 --- a/docset/winserver2022-ps/failoverclusters/Update-ClusterFunctionalLevel.md +++ b/docset/winserver2022-ps/failoverclusters/Update-ClusterFunctionalLevel.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/update-clusterfunctionallevel?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/update-clusterfunctionallevel?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-ClusterFunctionalLevel --- diff --git a/docset/winserver2022-ps/failoverclusters/Update-ClusterIPResource.md b/docset/winserver2022-ps/failoverclusters/Update-ClusterIPResource.md index 3d9f52c9b9..3cb5538e22 100644 --- a/docset/winserver2022-ps/failoverclusters/Update-ClusterIPResource.md +++ b/docset/winserver2022-ps/failoverclusters/Update-ClusterIPResource.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/update-clusteripresource?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/update-clusteripresource?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-ClusterIPResource --- diff --git a/docset/winserver2022-ps/failoverclusters/Update-ClusterNetworkNameResource.md b/docset/winserver2022-ps/failoverclusters/Update-ClusterNetworkNameResource.md index 0984e2cc79..ea11656e3b 100644 --- a/docset/winserver2022-ps/failoverclusters/Update-ClusterNetworkNameResource.md +++ b/docset/winserver2022-ps/failoverclusters/Update-ClusterNetworkNameResource.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/update-clusternetworknameresource?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/update-clusternetworknameresource?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-ClusterNetworkNameResource --- diff --git a/docset/winserver2022-ps/failoverclusters/Update-ClusterVirtualMachineConfiguration.md b/docset/winserver2022-ps/failoverclusters/Update-ClusterVirtualMachineConfiguration.md index 0cd6d55918..8ba82cf648 100644 --- a/docset/winserver2022-ps/failoverclusters/Update-ClusterVirtualMachineConfiguration.md +++ b/docset/winserver2022-ps/failoverclusters/Update-ClusterVirtualMachineConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/update-clustervirtualmachineconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/update-clustervirtualmachineconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-ClusterVirtualMachineConfiguration --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmAdrSetting.md b/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmAdrSetting.md index e60a11d356..c79ca25921 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmAdrSetting.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmAdrSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmAdrSetting.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmadrsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmadrsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmAdrSetting --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmAutoQuota.md b/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmAutoQuota.md index 55ff66586e..3022914f70 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmAutoQuota.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmAutoQuota.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMAutoQuota.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmautoquota?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmautoquota?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmAutoQuota --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmClassification.md b/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmClassification.md index 409dd7799e..807c2a6fbf 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmClassification.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmClassification.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMClassification.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmclassification?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmclassification?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmClassification --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmClassificationPropertyDefinition.md b/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmClassificationPropertyDefinition.md index ae951869e6..372c3e4087 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmClassificationPropertyDefinition.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmClassificationPropertyDefinition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMClassificationPropertyDefinition.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmclassificationpropertydefinition?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmclassificationpropertydefinition?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmClassificationPropertyDefinition --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmClassificationRule.md b/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmClassificationRule.md index a6e4ea05ba..e7c3e9a7a9 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmClassificationRule.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmClassificationRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMClassificationRule.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmclassificationrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmclassificationrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmClassificationRule --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmEffectiveNamespace.md b/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmEffectiveNamespace.md index df3e02def6..652919cefc 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmEffectiveNamespace.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmEffectiveNamespace.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMEffectiveNamespace.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmeffectivenamespace?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmeffectivenamespace?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmEffectiveNamespace --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmFileGroup.md b/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmFileGroup.md index 5263b54338..e6e4c67140 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmFileGroup.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmFileGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFileGroup.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmfilegroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmfilegroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmFileGroup --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmFileManagementJob.md b/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmFileManagementJob.md index 9b4ec4ffa6..f0b8851390 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmFileManagementJob.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmFileManagementJob.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMFileManagementJob.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmfilemanagementjob?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmfilemanagementjob?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmFileManagementJob --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmFileScreen.md b/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmFileScreen.md index 190f3e62a7..f0086a1c2e 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmFileScreen.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmFileScreen.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFileScreen.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmfilescreen?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmfilescreen?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmFileScreen --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmFileScreenException.md b/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmFileScreenException.md index a00aa7f4f4..2c6cbbc23c 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmFileScreenException.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmFileScreenException.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFileScreenException.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmfilescreenexception?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmfilescreenexception?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmFileScreenException --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmFileScreenTemplate.md b/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmFileScreenTemplate.md index c1a98215e4..2e4b1f7f32 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmFileScreenTemplate.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmFileScreenTemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFileScreenTemplate.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmfilescreentemplate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmfilescreentemplate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmFileScreenTemplate --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmMacro.md b/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmMacro.md index 26ab000118..ea80e9fb75 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmMacro.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmMacro.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmMacro.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmmacro?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmmacro?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmMacro --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmMgmtProperty.md b/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmMgmtProperty.md index bba6f094cf..b36a2e20b1 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmMgmtProperty.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmMgmtProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmMgmtProperty.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmmgmtproperty?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmmgmtproperty?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmMgmtProperty --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmQuota.md b/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmQuota.md index 1741b9981a..0307301d18 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmQuota.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmQuota.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmQuota.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmquota?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmquota?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmQuota --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmQuotaTemplate.md b/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmQuotaTemplate.md index 3922ac383c..f678c94213 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmQuotaTemplate.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmQuotaTemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmQuotaTemplate.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmquotatemplate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmquotatemplate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmQuotaTemplate --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmRmsTemplate.md b/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmRmsTemplate.md index 6089555b9d..6592ce0bca 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmRmsTemplate.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmRmsTemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmRmsTemplate.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmrmstemplate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmrmstemplate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmRmsTemplate --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmSetting.md b/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmSetting.md index cb2dce771a..d5ad5335cc 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmSetting.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmSetting.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmSetting --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmStorageReport.md b/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmStorageReport.md index 3d35032bbe..928a1682a2 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmStorageReport.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Get-FsrmStorageReport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmStorageReport.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmstoragereport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/get-fsrmstoragereport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FsrmStorageReport --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmAction.md b/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmAction.md index 5c0d4d1d95..ebc19e39f2 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmAction.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmAction.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmAction.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmaction?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmaction?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmAction --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmAutoQuota.md b/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmAutoQuota.md index 11fd93ffc4..b56512e527 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmAutoQuota.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmAutoQuota.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMAutoQuota.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmautoquota?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmautoquota?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmAutoQuota --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmClassificationPropertyDefinition.md b/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmClassificationPropertyDefinition.md index ce83e12821..b26f708998 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmClassificationPropertyDefinition.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmClassificationPropertyDefinition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMClassificationPropertyDefinition.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmclassificationpropertydefinition?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmclassificationpropertydefinition?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmClassificationPropertyDefinition --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmClassificationPropertyValue.md b/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmClassificationPropertyValue.md index 9e1a90075d..66f440588c 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmClassificationPropertyValue.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmClassificationPropertyValue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmClassificationPropertyValue.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmclassificationpropertyvalue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmclassificationpropertyvalue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmClassificationPropertyValue --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmClassificationRule.md b/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmClassificationRule.md index 4c64bab5c4..0ddbc6b22c 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmClassificationRule.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmClassificationRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMClassificationRule.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmclassificationrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmclassificationrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmClassificationRule --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmFMJNotification.md b/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmFMJNotification.md index f566ef9b1b..d9f8e42e86 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmFMJNotification.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmFMJNotification.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMFmjNotification.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfmjnotification?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfmjnotification?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmFMJNotification --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmFileGroup.md b/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmFileGroup.md index 27bc895f9f..18c8851671 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmFileGroup.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmFileGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFileGroup.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfilegroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfilegroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmFileGroup --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmFileManagementJob.md b/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmFileManagementJob.md index 80c11818b5..cb9cf31f85 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmFileManagementJob.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmFileManagementJob.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMFileManagementJob.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfilemanagementjob?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfilemanagementjob?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmFileManagementJob --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmFileScreen.md b/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmFileScreen.md index 5157999d41..598d313f52 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmFileScreen.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmFileScreen.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFileScreen.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfilescreen?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfilescreen?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmFileScreen --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmFileScreenException.md b/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmFileScreenException.md index 7a7287ff42..9b70b81f7a 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmFileScreenException.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmFileScreenException.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFileScreenException.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfilescreenexception?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfilescreenexception?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmFileScreenException --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmFileScreenTemplate.md b/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmFileScreenTemplate.md index 6da0fd7640..2876f9fd3b 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmFileScreenTemplate.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmFileScreenTemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFileScreenTemplate.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfilescreentemplate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfilescreentemplate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmFileScreenTemplate --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmFmjAction.md b/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmFmjAction.md index 9325b160c9..3b58242734 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmFmjAction.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmFmjAction.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFmjAction.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfmjaction?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfmjaction?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmFmjAction --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmFmjCondition.md b/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmFmjCondition.md index f3bba4ef9c..b2159c8740 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmFmjCondition.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmFmjCondition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMFmjCondition.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfmjcondition?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfmjcondition?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmFmjCondition --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmFmjNotificationAction.md b/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmFmjNotificationAction.md index 72912dac6e..147ae7cc46 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmFmjNotificationAction.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmFmjNotificationAction.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFmjNotificationAction.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfmjnotificationaction?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmfmjnotificationaction?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmFmjNotificationAction --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmQuota.md b/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmQuota.md index 195cda2f7c..a822c65833 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmQuota.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmQuota.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmQuota.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmquota?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmquota?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmQuota --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmQuotaTemplate.md b/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmQuotaTemplate.md index 78a76ce9b4..46b5cc236e 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmQuotaTemplate.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmQuotaTemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmQuotaTemplate.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmquotatemplate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmquotatemplate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmQuotaTemplate --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmQuotaThreshold.md b/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmQuotaThreshold.md index 9993f50778..46d4fa3041 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmQuotaThreshold.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmQuotaThreshold.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMQuotaThreshold.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmquotathreshold?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmquotathreshold?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmQuotaThreshold --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmScheduledTask.md b/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmScheduledTask.md index 0097328bfd..31342ce8d5 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmScheduledTask.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmScheduledTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmScheduledTask.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmscheduledtask?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmscheduledtask?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmScheduledTask --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmStorageReport.md b/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmStorageReport.md index b192acd723..40eb225310 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmStorageReport.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/New-FsrmStorageReport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmStorageReport.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmstoragereport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/new-fsrmstoragereport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FsrmStorageReport --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Remove-FsrmAutoQuota.md b/docset/winserver2022-ps/fileserverresourcemanager/Remove-FsrmAutoQuota.md index 889cc6d5d1..bab090c771 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Remove-FsrmAutoQuota.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Remove-FsrmAutoQuota.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMAutoQuota.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmautoquota?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmautoquota?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-FsrmAutoQuota --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Remove-FsrmClassificationPropertyDefinition.md b/docset/winserver2022-ps/fileserverresourcemanager/Remove-FsrmClassificationPropertyDefinition.md index 326447228d..97e5e2877c 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Remove-FsrmClassificationPropertyDefinition.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Remove-FsrmClassificationPropertyDefinition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMClassificationPropertyDefinition.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmclassificationpropertydefinition?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmclassificationpropertydefinition?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-FsrmClassificationPropertyDefinition --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Remove-FsrmClassificationRule.md b/docset/winserver2022-ps/fileserverresourcemanager/Remove-FsrmClassificationRule.md index 16d01e9c1e..2aaf436846 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Remove-FsrmClassificationRule.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Remove-FsrmClassificationRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMClassificationRule.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmclassificationrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmclassificationrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-FsrmClassificationRule --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Remove-FsrmFileGroup.md b/docset/winserver2022-ps/fileserverresourcemanager/Remove-FsrmFileGroup.md index 83bac76517..90c814a737 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Remove-FsrmFileGroup.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Remove-FsrmFileGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFileGroup.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmfilegroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmfilegroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-FsrmFileGroup --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Remove-FsrmFileManagementJob.md b/docset/winserver2022-ps/fileserverresourcemanager/Remove-FsrmFileManagementJob.md index 9198585158..1304ee6949 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Remove-FsrmFileManagementJob.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Remove-FsrmFileManagementJob.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMFileManagementJob.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmfilemanagementjob?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmfilemanagementjob?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-FsrmFileManagementJob --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Remove-FsrmFileScreen.md b/docset/winserver2022-ps/fileserverresourcemanager/Remove-FsrmFileScreen.md index 9fba814282..e570bb02a1 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Remove-FsrmFileScreen.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Remove-FsrmFileScreen.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFileScreen.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmfilescreen?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmfilescreen?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-FsrmFileScreen --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Remove-FsrmFileScreenException.md b/docset/winserver2022-ps/fileserverresourcemanager/Remove-FsrmFileScreenException.md index 246654e6be..087da1a2c3 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Remove-FsrmFileScreenException.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Remove-FsrmFileScreenException.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFileScreenException.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmfilescreenexception?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmfilescreenexception?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-FsrmFileScreenException --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Remove-FsrmFileScreenTemplate.md b/docset/winserver2022-ps/fileserverresourcemanager/Remove-FsrmFileScreenTemplate.md index d29e48818c..95dc51e30d 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Remove-FsrmFileScreenTemplate.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Remove-FsrmFileScreenTemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFileScreenTemplate.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmfilescreentemplate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmfilescreentemplate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-FsrmFileScreenTemplate --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Remove-FsrmMgmtProperty.md b/docset/winserver2022-ps/fileserverresourcemanager/Remove-FsrmMgmtProperty.md index c7e9e924dd..4f44cedc68 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Remove-FsrmMgmtProperty.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Remove-FsrmMgmtProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmMgmtProperty.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmmgmtproperty?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmmgmtproperty?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-FsrmMgmtProperty --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Remove-FsrmQuota.md b/docset/winserver2022-ps/fileserverresourcemanager/Remove-FsrmQuota.md index 65cd47fb8a..31898cdf9a 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Remove-FsrmQuota.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Remove-FsrmQuota.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmQuota.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmquota?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmquota?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-FsrmQuota --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Remove-FsrmQuotaTemplate.md b/docset/winserver2022-ps/fileserverresourcemanager/Remove-FsrmQuotaTemplate.md index 08d8d0c11f..b82c08aa9a 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Remove-FsrmQuotaTemplate.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Remove-FsrmQuotaTemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmQuotaTemplate.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmquotatemplate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmquotatemplate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-FsrmQuotaTemplate --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Remove-FsrmStorageReport.md b/docset/winserver2022-ps/fileserverresourcemanager/Remove-FsrmStorageReport.md index ffb5b6a054..a16f7630b9 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Remove-FsrmStorageReport.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Remove-FsrmStorageReport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmStorageReport.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmstoragereport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/remove-fsrmstoragereport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-FsrmStorageReport --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Reset-FsrmFileScreen.md b/docset/winserver2022-ps/fileserverresourcemanager/Reset-FsrmFileScreen.md index cdcdf28ae2..55ff01a886 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Reset-FsrmFileScreen.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Reset-FsrmFileScreen.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFileScreen.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/reset-fsrmfilescreen?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/reset-fsrmfilescreen?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-FsrmFileScreen --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Reset-FsrmQuota.md b/docset/winserver2022-ps/fileserverresourcemanager/Reset-FsrmQuota.md index 1831e79f62..b1deff3258 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Reset-FsrmQuota.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Reset-FsrmQuota.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmQuota.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/reset-fsrmquota?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/reset-fsrmquota?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-FsrmQuota --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Send-FsrmTestEmail.md b/docset/winserver2022-ps/fileserverresourcemanager/Send-FsrmTestEmail.md index 4289fc06c3..6b28a28efb 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Send-FsrmTestEmail.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Send-FsrmTestEmail.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmTestEmail.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/send-fsrmtestemail?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/send-fsrmtestemail?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Send-FsrmTestEmail --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmAdrSetting.md b/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmAdrSetting.md index 5412cc279e..41c69b8c72 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmAdrSetting.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmAdrSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmAdrSetting.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmadrsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmadrsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmAdrSetting --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmAutoQuota.md b/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmAutoQuota.md index 511b63807e..3d101b98eb 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmAutoQuota.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmAutoQuota.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMAutoQuota.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmautoquota?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmautoquota?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmAutoQuota --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmClassification.md b/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmClassification.md index 29f63e1c99..fbd8899b94 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmClassification.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmClassification.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMClassification.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmclassification?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmclassification?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmClassification --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmClassificationPropertyDefinition.md b/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmClassificationPropertyDefinition.md index eace6a98b3..1eda392724 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmClassificationPropertyDefinition.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmClassificationPropertyDefinition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMClassificationPropertyDefinition.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmclassificationpropertydefinition?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmclassificationpropertydefinition?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmClassificationPropertyDefinition --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmClassificationRule.md b/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmClassificationRule.md index 7b8a2611c8..f804b7b500 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmClassificationRule.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmClassificationRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMClassificationRule.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmclassificationrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmclassificationrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmClassificationRule --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmFileGroup.md b/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmFileGroup.md index 7444858c9b..1e97c7ced6 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmFileGroup.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmFileGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFileGroup.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmfilegroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmfilegroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmFileGroup --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmFileManagementJob.md b/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmFileManagementJob.md index 641fc7818c..3a5d14e41e 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmFileManagementJob.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmFileManagementJob.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMFileManagementJob.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmfilemanagementjob?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmfilemanagementjob?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmFileManagementJob --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmFileScreen.md b/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmFileScreen.md index 6345bc3c3b..6840475594 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmFileScreen.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmFileScreen.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFileScreen.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmfilescreen?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmfilescreen?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmFileScreen --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmFileScreenException.md b/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmFileScreenException.md index 82e4668db4..f1556db98d 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmFileScreenException.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmFileScreenException.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFileScreenException.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmfilescreenexception?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmfilescreenexception?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmFileScreenException --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmFileScreenTemplate.md b/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmFileScreenTemplate.md index 9bc417b39a..53ce75c469 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmFileScreenTemplate.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmFileScreenTemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmFileScreenTemplate.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmfilescreentemplate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmfilescreentemplate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmFileScreenTemplate --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmMgmtProperty.md b/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmMgmtProperty.md index a1fe0b5398..cd97d93b98 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmMgmtProperty.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmMgmtProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmMgmtProperty.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmmgmtproperty?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmmgmtproperty?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmMgmtProperty --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmQuota.md b/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmQuota.md index ee76d9d12c..0d844f34e8 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmQuota.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmQuota.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmQuota.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmquota?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmquota?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmQuota --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmQuotaTemplate.md b/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmQuotaTemplate.md index 567330eef0..10d8d392ef 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmQuotaTemplate.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmQuotaTemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmQuotaTemplate.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmquotatemplate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmquotatemplate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmQuotaTemplate --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmSetting.md b/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmSetting.md index e16998403e..ae53c49776 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmSetting.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmSetting.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmSetting --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmStorageReport.md b/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmStorageReport.md index d04babb291..d3e3fd8d5c 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmStorageReport.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Set-FsrmStorageReport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmStorageReport.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmstoragereport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/set-fsrmstoragereport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FsrmStorageReport --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Start-FsrmClassification.md b/docset/winserver2022-ps/fileserverresourcemanager/Start-FsrmClassification.md index 8c19e97338..4de89511ba 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Start-FsrmClassification.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Start-FsrmClassification.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMClassification.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/start-fsrmclassification?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/start-fsrmclassification?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-FsrmClassification --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Start-FsrmFileManagementJob.md b/docset/winserver2022-ps/fileserverresourcemanager/Start-FsrmFileManagementJob.md index e3c8056229..458715a240 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Start-FsrmFileManagementJob.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Start-FsrmFileManagementJob.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMFileManagementJob.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/start-fsrmfilemanagementjob?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/start-fsrmfilemanagementjob?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-FsrmFileManagementJob --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Start-FsrmStorageReport.md b/docset/winserver2022-ps/fileserverresourcemanager/Start-FsrmStorageReport.md index 8648d7c457..5b3795b0ef 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Start-FsrmStorageReport.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Start-FsrmStorageReport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmStorageReport.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/start-fsrmstoragereport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/start-fsrmstoragereport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-FsrmStorageReport --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Stop-FsrmClassification.md b/docset/winserver2022-ps/fileserverresourcemanager/Stop-FsrmClassification.md index fa4298a78d..5434b2a7eb 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Stop-FsrmClassification.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Stop-FsrmClassification.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMClassification.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/stop-fsrmclassification?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/stop-fsrmclassification?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-FsrmClassification --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Stop-FsrmFileManagementJob.md b/docset/winserver2022-ps/fileserverresourcemanager/Stop-FsrmFileManagementJob.md index 98a3c54c82..58d1e30659 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Stop-FsrmFileManagementJob.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Stop-FsrmFileManagementJob.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMFileManagementJob.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/stop-fsrmfilemanagementjob?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/stop-fsrmfilemanagementjob?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-FsrmFileManagementJob --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Stop-FsrmStorageReport.md b/docset/winserver2022-ps/fileserverresourcemanager/Stop-FsrmStorageReport.md index f7c79086d9..80ce7652b8 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Stop-FsrmStorageReport.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Stop-FsrmStorageReport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmStorageReport.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/stop-fsrmstoragereport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/stop-fsrmstoragereport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-FsrmStorageReport --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Update-FsrmAutoQuota.md b/docset/winserver2022-ps/fileserverresourcemanager/Update-FsrmAutoQuota.md index 2f55d0e129..5f577a272b 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Update-FsrmAutoQuota.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Update-FsrmAutoQuota.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMAutoQuota.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/update-fsrmautoquota?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/update-fsrmautoquota?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-FsrmAutoQuota --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Update-FsrmClassificationPropertyDefinition.md b/docset/winserver2022-ps/fileserverresourcemanager/Update-FsrmClassificationPropertyDefinition.md index ca40a00f03..4568298c1a 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Update-FsrmClassificationPropertyDefinition.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Update-FsrmClassificationPropertyDefinition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMClassificationPropertyDefinition.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/update-fsrmclassificationpropertydefinition?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/update-fsrmclassificationpropertydefinition?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-FsrmClassificationPropertyDefinition --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Update-FsrmQuota.md b/docset/winserver2022-ps/fileserverresourcemanager/Update-FsrmQuota.md index 479316639d..f916c395ab 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Update-FsrmQuota.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Update-FsrmQuota.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmQuota.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/update-fsrmquota?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/update-fsrmquota?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-FsrmQuota --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Wait-FsrmClassification.md b/docset/winserver2022-ps/fileserverresourcemanager/Wait-FsrmClassification.md index 3aaf42e511..da7c014e5d 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Wait-FsrmClassification.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Wait-FsrmClassification.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMClassification.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/wait-fsrmclassification?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/wait-fsrmclassification?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Wait-FsrmClassification --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Wait-FsrmFileManagementJob.md b/docset/winserver2022-ps/fileserverresourcemanager/Wait-FsrmFileManagementJob.md index 9619b2bb7f..732a6b9b19 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Wait-FsrmFileManagementJob.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Wait-FsrmFileManagementJob.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FSRMFileManagementJob.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/wait-fsrmfilemanagementjob?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/wait-fsrmfilemanagementjob?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Wait-FsrmFileManagementJob --- diff --git a/docset/winserver2022-ps/fileserverresourcemanager/Wait-FsrmStorageReport.md b/docset/winserver2022-ps/fileserverresourcemanager/Wait-FsrmStorageReport.md index 0637645ae0..06365a5785 100644 --- a/docset/winserver2022-ps/fileserverresourcemanager/Wait-FsrmStorageReport.md +++ b/docset/winserver2022-ps/fileserverresourcemanager/Wait-FsrmStorageReport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FsrmStorageReport.cdxml-help.xml Module Name: FileServerResourceManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/fileserverresourcemanager/wait-fsrmstoragereport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/fileserverresourcemanager/wait-fsrmstoragereport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Wait-FsrmStorageReport --- diff --git a/docset/winserver2022-ps/grouppolicy/Backup-GPO.md b/docset/winserver2022-ps/grouppolicy/Backup-GPO.md index a29378c990..a97f3ac027 100644 --- a/docset/winserver2022-ps/grouppolicy/Backup-GPO.md +++ b/docset/winserver2022-ps/grouppolicy/Backup-GPO.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/backup-gpo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/backup-gpo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Backup-GPO --- diff --git a/docset/winserver2022-ps/grouppolicy/Copy-GPO.md b/docset/winserver2022-ps/grouppolicy/Copy-GPO.md index 9c6908ec51..525a1af1b3 100644 --- a/docset/winserver2022-ps/grouppolicy/Copy-GPO.md +++ b/docset/winserver2022-ps/grouppolicy/Copy-GPO.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/copy-gpo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/copy-gpo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Copy-GPO --- diff --git a/docset/winserver2022-ps/grouppolicy/Get-GPInheritance.md b/docset/winserver2022-ps/grouppolicy/Get-GPInheritance.md index d1eb2376bc..6596bb565a 100644 --- a/docset/winserver2022-ps/grouppolicy/Get-GPInheritance.md +++ b/docset/winserver2022-ps/grouppolicy/Get-GPInheritance.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/get-gpinheritance?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/get-gpinheritance?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-GPInheritance --- diff --git a/docset/winserver2022-ps/grouppolicy/Get-GPO.md b/docset/winserver2022-ps/grouppolicy/Get-GPO.md index 4335787c4e..1c955208c6 100644 --- a/docset/winserver2022-ps/grouppolicy/Get-GPO.md +++ b/docset/winserver2022-ps/grouppolicy/Get-GPO.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/get-gpo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/get-gpo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-GPO --- diff --git a/docset/winserver2022-ps/grouppolicy/Get-GPOReport.md b/docset/winserver2022-ps/grouppolicy/Get-GPOReport.md index be5d5fa8bf..9baf2d109e 100644 --- a/docset/winserver2022-ps/grouppolicy/Get-GPOReport.md +++ b/docset/winserver2022-ps/grouppolicy/Get-GPOReport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/get-gporeport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/get-gporeport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-GPOReport --- diff --git a/docset/winserver2022-ps/grouppolicy/Get-GPPermission.md b/docset/winserver2022-ps/grouppolicy/Get-GPPermission.md index 5db7d90c75..f34e9fe4e5 100644 --- a/docset/winserver2022-ps/grouppolicy/Get-GPPermission.md +++ b/docset/winserver2022-ps/grouppolicy/Get-GPPermission.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/get-gppermission?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/get-gppermission?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-GPPermission --- diff --git a/docset/winserver2022-ps/grouppolicy/Get-GPPrefRegistryValue.md b/docset/winserver2022-ps/grouppolicy/Get-GPPrefRegistryValue.md index 4c49362280..c39a536324 100644 --- a/docset/winserver2022-ps/grouppolicy/Get-GPPrefRegistryValue.md +++ b/docset/winserver2022-ps/grouppolicy/Get-GPPrefRegistryValue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/get-gpprefregistryvalue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/get-gpprefregistryvalue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-GPPrefRegistryValue --- diff --git a/docset/winserver2022-ps/grouppolicy/Get-GPRegistryValue.md b/docset/winserver2022-ps/grouppolicy/Get-GPRegistryValue.md index 2343e499b6..39c70eb80e 100644 --- a/docset/winserver2022-ps/grouppolicy/Get-GPRegistryValue.md +++ b/docset/winserver2022-ps/grouppolicy/Get-GPRegistryValue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/get-gpregistryvalue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/get-gpregistryvalue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-GPRegistryValue --- diff --git a/docset/winserver2022-ps/grouppolicy/Get-GPResultantSetOfPolicy.md b/docset/winserver2022-ps/grouppolicy/Get-GPResultantSetOfPolicy.md index bc1e03ff86..1c6d3749f1 100644 --- a/docset/winserver2022-ps/grouppolicy/Get-GPResultantSetOfPolicy.md +++ b/docset/winserver2022-ps/grouppolicy/Get-GPResultantSetOfPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/get-gpresultantsetofpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/get-gpresultantsetofpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-GPResultantSetOfPolicy --- diff --git a/docset/winserver2022-ps/grouppolicy/Get-GPStarterGPO.md b/docset/winserver2022-ps/grouppolicy/Get-GPStarterGPO.md index e0a27320c7..e72606c58e 100644 --- a/docset/winserver2022-ps/grouppolicy/Get-GPStarterGPO.md +++ b/docset/winserver2022-ps/grouppolicy/Get-GPStarterGPO.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/get-gpstartergpo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/get-gpstartergpo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-GPStarterGPO --- diff --git a/docset/winserver2022-ps/grouppolicy/Import-GPO.md b/docset/winserver2022-ps/grouppolicy/Import-GPO.md index d8dec660d9..3b8bbdf63a 100644 --- a/docset/winserver2022-ps/grouppolicy/Import-GPO.md +++ b/docset/winserver2022-ps/grouppolicy/Import-GPO.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/import-gpo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/import-gpo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-GPO --- diff --git a/docset/winserver2022-ps/grouppolicy/Invoke-GPUpdate.md b/docset/winserver2022-ps/grouppolicy/Invoke-GPUpdate.md index 83f32e5db2..546f059eca 100644 --- a/docset/winserver2022-ps/grouppolicy/Invoke-GPUpdate.md +++ b/docset/winserver2022-ps/grouppolicy/Invoke-GPUpdate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/invoke-gpupdate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/invoke-gpupdate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-GPUpdate --- diff --git a/docset/winserver2022-ps/grouppolicy/New-GPLink.md b/docset/winserver2022-ps/grouppolicy/New-GPLink.md index 7d9f1fb2b4..ec429931b1 100644 --- a/docset/winserver2022-ps/grouppolicy/New-GPLink.md +++ b/docset/winserver2022-ps/grouppolicy/New-GPLink.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/new-gplink?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/new-gplink?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-GPLink --- diff --git a/docset/winserver2022-ps/grouppolicy/New-GPO.md b/docset/winserver2022-ps/grouppolicy/New-GPO.md index 8424f1f7f2..20fef85fe3 100644 --- a/docset/winserver2022-ps/grouppolicy/New-GPO.md +++ b/docset/winserver2022-ps/grouppolicy/New-GPO.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/new-gpo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/new-gpo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-GPO --- diff --git a/docset/winserver2022-ps/grouppolicy/New-GPStarterGPO.md b/docset/winserver2022-ps/grouppolicy/New-GPStarterGPO.md index f86041cdbe..89e2dd5812 100644 --- a/docset/winserver2022-ps/grouppolicy/New-GPStarterGPO.md +++ b/docset/winserver2022-ps/grouppolicy/New-GPStarterGPO.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/new-gpstartergpo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/new-gpstartergpo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-GPStarterGPO --- diff --git a/docset/winserver2022-ps/grouppolicy/Remove-GPLink.md b/docset/winserver2022-ps/grouppolicy/Remove-GPLink.md index 63f924b4e4..eab0ff3518 100644 --- a/docset/winserver2022-ps/grouppolicy/Remove-GPLink.md +++ b/docset/winserver2022-ps/grouppolicy/Remove-GPLink.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/remove-gplink?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/remove-gplink?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-GPLink --- diff --git a/docset/winserver2022-ps/grouppolicy/Remove-GPO.md b/docset/winserver2022-ps/grouppolicy/Remove-GPO.md index 64c0d349a4..9d1833d5f9 100644 --- a/docset/winserver2022-ps/grouppolicy/Remove-GPO.md +++ b/docset/winserver2022-ps/grouppolicy/Remove-GPO.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/remove-gpo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/remove-gpo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-GPO --- diff --git a/docset/winserver2022-ps/grouppolicy/Remove-GPPrefRegistryValue.md b/docset/winserver2022-ps/grouppolicy/Remove-GPPrefRegistryValue.md index 5d6c0a639b..a25862a870 100644 --- a/docset/winserver2022-ps/grouppolicy/Remove-GPPrefRegistryValue.md +++ b/docset/winserver2022-ps/grouppolicy/Remove-GPPrefRegistryValue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/remove-gpprefregistryvalue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/remove-gpprefregistryvalue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-GPPrefRegistryValue --- diff --git a/docset/winserver2022-ps/grouppolicy/Remove-GPRegistryValue.md b/docset/winserver2022-ps/grouppolicy/Remove-GPRegistryValue.md index 9486421a3d..ed4f76e7fc 100644 --- a/docset/winserver2022-ps/grouppolicy/Remove-GPRegistryValue.md +++ b/docset/winserver2022-ps/grouppolicy/Remove-GPRegistryValue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/remove-gpregistryvalue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/remove-gpregistryvalue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-GPRegistryValue --- diff --git a/docset/winserver2022-ps/grouppolicy/Rename-GPO.md b/docset/winserver2022-ps/grouppolicy/Rename-GPO.md index 22e6440e92..1ddf05409b 100644 --- a/docset/winserver2022-ps/grouppolicy/Rename-GPO.md +++ b/docset/winserver2022-ps/grouppolicy/Rename-GPO.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/rename-gpo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/rename-gpo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-GPO --- diff --git a/docset/winserver2022-ps/grouppolicy/Restore-GPO.md b/docset/winserver2022-ps/grouppolicy/Restore-GPO.md index 48c0214c60..7a4dce9dfe 100644 --- a/docset/winserver2022-ps/grouppolicy/Restore-GPO.md +++ b/docset/winserver2022-ps/grouppolicy/Restore-GPO.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/restore-gpo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/restore-gpo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-GPO --- diff --git a/docset/winserver2022-ps/grouppolicy/Set-GPInheritance.md b/docset/winserver2022-ps/grouppolicy/Set-GPInheritance.md index 255fe77a95..95f813e267 100644 --- a/docset/winserver2022-ps/grouppolicy/Set-GPInheritance.md +++ b/docset/winserver2022-ps/grouppolicy/Set-GPInheritance.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/set-gpinheritance?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/set-gpinheritance?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-GPInheritance --- diff --git a/docset/winserver2022-ps/grouppolicy/Set-GPLink.md b/docset/winserver2022-ps/grouppolicy/Set-GPLink.md index ed73e7f9a3..fb4de3f6d6 100644 --- a/docset/winserver2022-ps/grouppolicy/Set-GPLink.md +++ b/docset/winserver2022-ps/grouppolicy/Set-GPLink.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/set-gplink?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/set-gplink?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-GPLink --- diff --git a/docset/winserver2022-ps/grouppolicy/Set-GPPermission.md b/docset/winserver2022-ps/grouppolicy/Set-GPPermission.md index 17575a715b..cacf142074 100644 --- a/docset/winserver2022-ps/grouppolicy/Set-GPPermission.md +++ b/docset/winserver2022-ps/grouppolicy/Set-GPPermission.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/set-gppermission?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/set-gppermission?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-GPPermission --- diff --git a/docset/winserver2022-ps/grouppolicy/Set-GPPrefRegistryValue.md b/docset/winserver2022-ps/grouppolicy/Set-GPPrefRegistryValue.md index 0cb3150fdb..b84ce1fa3d 100644 --- a/docset/winserver2022-ps/grouppolicy/Set-GPPrefRegistryValue.md +++ b/docset/winserver2022-ps/grouppolicy/Set-GPPrefRegistryValue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/set-gpprefregistryvalue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/set-gpprefregistryvalue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-GPPrefRegistryValue --- diff --git a/docset/winserver2022-ps/grouppolicy/Set-GPRegistryValue.md b/docset/winserver2022-ps/grouppolicy/Set-GPRegistryValue.md index 7864248862..2b70c0f4fd 100644 --- a/docset/winserver2022-ps/grouppolicy/Set-GPRegistryValue.md +++ b/docset/winserver2022-ps/grouppolicy/Set-GPRegistryValue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.GroupPolicy.Commands.dll-Help.xml Module Name: GroupPolicy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/grouppolicy/set-gpregistryvalue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/grouppolicy/set-gpregistryvalue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-GPRegistryValue --- diff --git a/docset/winserver2022-ps/hardwarecertification/Export-HwCertTestCollectionToXml.md b/docset/winserver2022-ps/hardwarecertification/Export-HwCertTestCollectionToXml.md index c69bed6dc8..42562216e8 100644 --- a/docset/winserver2022-ps/hardwarecertification/Export-HwCertTestCollectionToXml.md +++ b/docset/winserver2022-ps/hardwarecertification/Export-HwCertTestCollectionToXml.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: microsoft.windows.kits.hardware.certification.management.dll-Help.xml Module Name: HardwareCertification ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hardwarecertification/export-hwcerttestcollectiontoxml?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hardwarecertification/export-hwcerttestcollectiontoxml?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-HwCertTestCollectionToXml --- diff --git a/docset/winserver2022-ps/hardwarecertification/Import-HwCertTestCollectionFromXml.md b/docset/winserver2022-ps/hardwarecertification/Import-HwCertTestCollectionFromXml.md index 02c947dc74..22f41a4543 100644 --- a/docset/winserver2022-ps/hardwarecertification/Import-HwCertTestCollectionFromXml.md +++ b/docset/winserver2022-ps/hardwarecertification/Import-HwCertTestCollectionFromXml.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: microsoft.windows.kits.hardware.certification.management.dll-Help.xml Module Name: HardwareCertification ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hardwarecertification/import-hwcerttestcollectionfromxml?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hardwarecertification/import-hwcerttestcollectionfromxml?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-HwCertTestCollectionFromXml --- diff --git a/docset/winserver2022-ps/hardwarecertification/Merge-HwCertTestCollectionFromPackage.md b/docset/winserver2022-ps/hardwarecertification/Merge-HwCertTestCollectionFromPackage.md index a08827cd8f..8cc2e31bbf 100644 --- a/docset/winserver2022-ps/hardwarecertification/Merge-HwCertTestCollectionFromPackage.md +++ b/docset/winserver2022-ps/hardwarecertification/Merge-HwCertTestCollectionFromPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: microsoft.windows.kits.hardware.certification.management.dll-Help.xml Module Name: HardwareCertification ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hardwarecertification/merge-hwcerttestcollectionfrompackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hardwarecertification/merge-hwcerttestcollectionfrompackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Merge-HwCertTestCollectionFromPackage --- diff --git a/docset/winserver2022-ps/hardwarecertification/Merge-HwCertTestCollectionFromXml.md b/docset/winserver2022-ps/hardwarecertification/Merge-HwCertTestCollectionFromXml.md index a92ca12537..ff6aab0b2f 100644 --- a/docset/winserver2022-ps/hardwarecertification/Merge-HwCertTestCollectionFromXml.md +++ b/docset/winserver2022-ps/hardwarecertification/Merge-HwCertTestCollectionFromXml.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: microsoft.windows.kits.hardware.certification.management.dll-Help.xml Module Name: HardwareCertification ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hardwarecertification/merge-hwcerttestcollectionfromxml?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hardwarecertification/merge-hwcerttestcollectionfromxml?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Merge-HwCertTestCollectionFromXml --- diff --git a/docset/winserver2022-ps/hardwarecertification/New-HwCertProjectDefinitionFile.md b/docset/winserver2022-ps/hardwarecertification/New-HwCertProjectDefinitionFile.md index 4137ec3b6e..4032fe61af 100644 --- a/docset/winserver2022-ps/hardwarecertification/New-HwCertProjectDefinitionFile.md +++ b/docset/winserver2022-ps/hardwarecertification/New-HwCertProjectDefinitionFile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: microsoft.windows.kits.hardware.certification.management.dll-Help.xml Module Name: HardwareCertification ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hardwarecertification/new-hwcertprojectdefinitionfile?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hardwarecertification/new-hwcertprojectdefinitionfile?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-HwCertProjectDefinitionFile --- diff --git a/docset/winserver2022-ps/hardwarecertification/New-HwCertTestCollection.md b/docset/winserver2022-ps/hardwarecertification/New-HwCertTestCollection.md index 7ae778d6ea..f2cbc9bad1 100644 --- a/docset/winserver2022-ps/hardwarecertification/New-HwCertTestCollection.md +++ b/docset/winserver2022-ps/hardwarecertification/New-HwCertTestCollection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: microsoft.windows.kits.hardware.certification.management.dll-Help.xml Module Name: HardwareCertification ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hardwarecertification/new-hwcerttestcollection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hardwarecertification/new-hwcerttestcollection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-HwCertTestCollection --- diff --git a/docset/winserver2022-ps/hardwarecertification/New-HwCertTestCollectionExcelReport.md b/docset/winserver2022-ps/hardwarecertification/New-HwCertTestCollectionExcelReport.md index 3085b3f977..725971ca17 100644 --- a/docset/winserver2022-ps/hardwarecertification/New-HwCertTestCollectionExcelReport.md +++ b/docset/winserver2022-ps/hardwarecertification/New-HwCertTestCollectionExcelReport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: microsoft.windows.kits.hardware.certification.management.dll-Help.xml Module Name: HardwareCertification ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hardwarecertification/new-hwcerttestcollectionexcelreport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hardwarecertification/new-hwcerttestcollectionexcelreport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-HwCertTestCollectionExcelReport --- diff --git a/docset/winserver2022-ps/hgsattestation/Add-HgsAttestationCIPolicy.md b/docset/winserver2022-ps/hgsattestation/Add-HgsAttestationCIPolicy.md index f6cbd39eb3..5ce10fa3c6 100644 --- a/docset/winserver2022-ps/hgsattestation/Add-HgsAttestationCIPolicy.md +++ b/docset/winserver2022-ps/hgsattestation/Add-HgsAttestationCIPolicy.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Windows.RemoteAttestation.Server.PowerShell.dll-Help.xml Module Name: HgsAttestation -online version: https://docs.microsoft.com/powershell/module/hgsattestation/add-hgsattestationcipolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsattestation/add-hgsattestationcipolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-HgsAttestationCIPolicy --- diff --git a/docset/winserver2022-ps/hgsattestation/Add-HgsAttestationDumpPolicy.md b/docset/winserver2022-ps/hgsattestation/Add-HgsAttestationDumpPolicy.md index f09ab539a5..5e43e518f9 100644 --- a/docset/winserver2022-ps/hgsattestation/Add-HgsAttestationDumpPolicy.md +++ b/docset/winserver2022-ps/hgsattestation/Add-HgsAttestationDumpPolicy.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Windows.RemoteAttestation.Server.PowerShell.dll-Help.xml Module Name: HgsAttestation -online version: https://docs.microsoft.com/powershell/module/hgsattestation/add-hgsattestationdumppolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsattestation/add-hgsattestationdumppolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-HgsAttestationDumpPolicy --- diff --git a/docset/winserver2022-ps/hgsattestation/Add-HgsAttestationHostGroup.md b/docset/winserver2022-ps/hgsattestation/Add-HgsAttestationHostGroup.md index 2c5451b694..078283fa8e 100644 --- a/docset/winserver2022-ps/hgsattestation/Add-HgsAttestationHostGroup.md +++ b/docset/winserver2022-ps/hgsattestation/Add-HgsAttestationHostGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.RemoteAttestation.Server.PowerShell.dll-Help.xml Module Name: HgsAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsattestation/add-hgsattestationhostgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsattestation/add-hgsattestationhostgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-HgsAttestationHostGroup --- diff --git a/docset/winserver2022-ps/hgsattestation/Add-HgsAttestationTpmHost.md b/docset/winserver2022-ps/hgsattestation/Add-HgsAttestationTpmHost.md index 5865949413..284be008bf 100644 --- a/docset/winserver2022-ps/hgsattestation/Add-HgsAttestationTpmHost.md +++ b/docset/winserver2022-ps/hgsattestation/Add-HgsAttestationTpmHost.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.RemoteAttestation.Server.PowerShell.dll-Help.xml Module Name: HgsAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsattestation/add-hgsattestationtpmhost?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsattestation/add-hgsattestationtpmhost?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-HgsAttestationTpmHost --- diff --git a/docset/winserver2022-ps/hgsattestation/Add-HgsAttestationTpmPolicy.md b/docset/winserver2022-ps/hgsattestation/Add-HgsAttestationTpmPolicy.md index c67e687d56..a3675e6731 100644 --- a/docset/winserver2022-ps/hgsattestation/Add-HgsAttestationTpmPolicy.md +++ b/docset/winserver2022-ps/hgsattestation/Add-HgsAttestationTpmPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.RemoteAttestation.Server.PowerShell.dll-Help.xml Module Name: HgsAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsattestation/add-hgsattestationtpmpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsattestation/add-hgsattestationtpmpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-HgsAttestationTpmPolicy --- diff --git a/docset/winserver2022-ps/hgsattestation/Disable-HgsAttestationPolicy.md b/docset/winserver2022-ps/hgsattestation/Disable-HgsAttestationPolicy.md index d26b010359..95af629ee5 100644 --- a/docset/winserver2022-ps/hgsattestation/Disable-HgsAttestationPolicy.md +++ b/docset/winserver2022-ps/hgsattestation/Disable-HgsAttestationPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.RemoteAttestation.Server.PowerShell.dll-Help.xml Module Name: HgsAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsattestation/disable-hgsattestationpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsattestation/disable-hgsattestationpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-HgsAttestationPolicy --- diff --git a/docset/winserver2022-ps/hgsattestation/Enable-HgsAttestationPolicy.md b/docset/winserver2022-ps/hgsattestation/Enable-HgsAttestationPolicy.md index 778c61ae9c..889b160e54 100644 --- a/docset/winserver2022-ps/hgsattestation/Enable-HgsAttestationPolicy.md +++ b/docset/winserver2022-ps/hgsattestation/Enable-HgsAttestationPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.RemoteAttestation.Server.PowerShell.dll-Help.xml Module Name: HgsAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsattestation/enable-hgsattestationpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsattestation/enable-hgsattestationpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-HgsAttestationPolicy --- diff --git a/docset/winserver2022-ps/hgsattestation/Get-HgsAttestationHostGroup.md b/docset/winserver2022-ps/hgsattestation/Get-HgsAttestationHostGroup.md index 74afc8e133..86aad75263 100644 --- a/docset/winserver2022-ps/hgsattestation/Get-HgsAttestationHostGroup.md +++ b/docset/winserver2022-ps/hgsattestation/Get-HgsAttestationHostGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.RemoteAttestation.Server.PowerShell.dll-Help.xml Module Name: HgsAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsattestation/get-hgsattestationhostgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsattestation/get-hgsattestationhostgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HgsAttestationHostGroup --- diff --git a/docset/winserver2022-ps/hgsattestation/Get-HgsAttestationPolicy.md b/docset/winserver2022-ps/hgsattestation/Get-HgsAttestationPolicy.md index 81f7e45232..c912efdcad 100644 --- a/docset/winserver2022-ps/hgsattestation/Get-HgsAttestationPolicy.md +++ b/docset/winserver2022-ps/hgsattestation/Get-HgsAttestationPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.RemoteAttestation.Server.PowerShell.dll-Help.xml Module Name: HgsAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsattestation/get-hgsattestationpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsattestation/get-hgsattestationpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HgsAttestationPolicy --- diff --git a/docset/winserver2022-ps/hgsattestation/Get-HgsAttestationSignerCertificate.md b/docset/winserver2022-ps/hgsattestation/Get-HgsAttestationSignerCertificate.md index eee9cd3eb3..a9d83a856f 100644 --- a/docset/winserver2022-ps/hgsattestation/Get-HgsAttestationSignerCertificate.md +++ b/docset/winserver2022-ps/hgsattestation/Get-HgsAttestationSignerCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.RemoteAttestation.Server.PowerShell.dll-Help.xml Module Name: HgsAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsattestation/get-hgsattestationsignercertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsattestation/get-hgsattestationsignercertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HgsAttestationSignerCertificate --- diff --git a/docset/winserver2022-ps/hgsattestation/Get-HgsAttestationTpmHost.md b/docset/winserver2022-ps/hgsattestation/Get-HgsAttestationTpmHost.md index 264597f8de..3654dc0914 100644 --- a/docset/winserver2022-ps/hgsattestation/Get-HgsAttestationTpmHost.md +++ b/docset/winserver2022-ps/hgsattestation/Get-HgsAttestationTpmHost.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.RemoteAttestation.Server.PowerShell.dll-Help.xml Module Name: HgsAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsattestation/get-hgsattestationtpmhost?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsattestation/get-hgsattestationtpmhost?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HgsAttestationTpmHost --- diff --git a/docset/winserver2022-ps/hgsattestation/Remove-HgsAttestationHostGroup.md b/docset/winserver2022-ps/hgsattestation/Remove-HgsAttestationHostGroup.md index 1e769bc584..6cbfbb57a1 100644 --- a/docset/winserver2022-ps/hgsattestation/Remove-HgsAttestationHostGroup.md +++ b/docset/winserver2022-ps/hgsattestation/Remove-HgsAttestationHostGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.RemoteAttestation.Server.PowerShell.dll-Help.xml Module Name: HgsAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsattestation/remove-hgsattestationhostgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsattestation/remove-hgsattestationhostgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-HgsAttestationHostGroup --- diff --git a/docset/winserver2022-ps/hgsattestation/Remove-HgsAttestationPolicy.md b/docset/winserver2022-ps/hgsattestation/Remove-HgsAttestationPolicy.md index f5363b9cfb..038f0e67bc 100644 --- a/docset/winserver2022-ps/hgsattestation/Remove-HgsAttestationPolicy.md +++ b/docset/winserver2022-ps/hgsattestation/Remove-HgsAttestationPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.RemoteAttestation.Server.PowerShell.dll-Help.xml Module Name: HgsAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsattestation/remove-hgsattestationpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsattestation/remove-hgsattestationpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-HgsAttestationPolicy --- diff --git a/docset/winserver2022-ps/hgsattestation/Remove-HgsAttestationTpmHost.md b/docset/winserver2022-ps/hgsattestation/Remove-HgsAttestationTpmHost.md index 32b62c02a7..9a2b8e2745 100644 --- a/docset/winserver2022-ps/hgsattestation/Remove-HgsAttestationTpmHost.md +++ b/docset/winserver2022-ps/hgsattestation/Remove-HgsAttestationTpmHost.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.RemoteAttestation.Server.PowerShell.dll-Help.xml Module Name: HgsAttestation ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsattestation/remove-hgsattestationtpmhost?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsattestation/remove-hgsattestationtpmhost?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-HgsAttestationTpmHost --- diff --git a/docset/winserver2022-ps/hgsclient/ConvertTo-HgsKeyProtector.md b/docset/winserver2022-ps/hgsclient/ConvertTo-HgsKeyProtector.md index 8419f39cce..3bdff425d8 100644 --- a/docset/winserver2022-ps/hgsclient/ConvertTo-HgsKeyProtector.md +++ b/docset/winserver2022-ps/hgsclient/ConvertTo-HgsKeyProtector.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_HgsKeyProtector_v1.0.cdxml-help.xml Module Name: HgsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsclient/convertto-hgskeyprotector?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsclient/convertto-hgskeyprotector?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: ConvertTo-HgsKeyProtector --- diff --git a/docset/winserver2022-ps/hgsclient/Export-HgsGuardian.md b/docset/winserver2022-ps/hgsclient/Export-HgsGuardian.md index f3ae5ea8dd..0da9f3fd5f 100644 --- a/docset/winserver2022-ps/hgsclient/Export-HgsGuardian.md +++ b/docset/winserver2022-ps/hgsclient/Export-HgsGuardian.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: HgsClient-help.xml Module Name: HgsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsclient/export-hgsguardian?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsclient/export-hgsguardian?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-HgsGuardian --- diff --git a/docset/winserver2022-ps/hgsclient/Get-HgsAttestationBaselinePolicy.md b/docset/winserver2022-ps/hgsclient/Get-HgsAttestationBaselinePolicy.md index 2cee5e0930..fa8b295e29 100644 --- a/docset/winserver2022-ps/hgsclient/Get-HgsAttestationBaselinePolicy.md +++ b/docset/winserver2022-ps/hgsclient/Get-HgsAttestationBaselinePolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.RemoteAttestation.Client.PowerShell.dll-Help.xml Module Name: HgsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsclient/get-hgsattestationbaselinepolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsclient/get-hgsattestationbaselinepolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HgsAttestationBaselinePolicy --- diff --git a/docset/winserver2022-ps/hgsclient/Get-HgsClientConfiguration.md b/docset/winserver2022-ps/hgsclient/Get-HgsClientConfiguration.md index 3ef14ab314..aabf41fd10 100644 --- a/docset/winserver2022-ps/hgsclient/Get-HgsClientConfiguration.md +++ b/docset/winserver2022-ps/hgsclient/Get-HgsClientConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_HgsClientConfiguration_v1.0.cdxml-help.xml Module Name: HgsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsclient/get-hgsclientconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsclient/get-hgsclientconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HgsClientConfiguration --- diff --git a/docset/winserver2022-ps/hgsclient/Get-HgsGuardian.md b/docset/winserver2022-ps/hgsclient/Get-HgsGuardian.md index 218c2e9c86..57044caab4 100644 --- a/docset/winserver2022-ps/hgsclient/Get-HgsGuardian.md +++ b/docset/winserver2022-ps/hgsclient/Get-HgsGuardian.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_HgsGuardian_v1.0.cdxml-help.xml Module Name: HgsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsclient/get-hgsguardian?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsclient/get-hgsguardian?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HgsGuardian --- diff --git a/docset/winserver2022-ps/hgsclient/Grant-HgsKeyProtectorAccess.md b/docset/winserver2022-ps/hgsclient/Grant-HgsKeyProtectorAccess.md index b5e618580f..948f9e3b82 100644 --- a/docset/winserver2022-ps/hgsclient/Grant-HgsKeyProtectorAccess.md +++ b/docset/winserver2022-ps/hgsclient/Grant-HgsKeyProtectorAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: HgsClient-help.xml Module Name: HgsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsclient/grant-hgskeyprotectoraccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsclient/grant-hgskeyprotectoraccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Grant-HgsKeyProtectorAccess --- diff --git a/docset/winserver2022-ps/hgsclient/Import-HgsGuardian.md b/docset/winserver2022-ps/hgsclient/Import-HgsGuardian.md index 8acdf64e2f..add47de27f 100644 --- a/docset/winserver2022-ps/hgsclient/Import-HgsGuardian.md +++ b/docset/winserver2022-ps/hgsclient/Import-HgsGuardian.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: HgsClient-help.xml Module Name: HgsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsclient/import-hgsguardian?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsclient/import-hgsguardian?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-HgsGuardian --- diff --git a/docset/winserver2022-ps/hgsclient/New-HgsGuardian.md b/docset/winserver2022-ps/hgsclient/New-HgsGuardian.md index cb00dc3c2b..456a7e403d 100644 --- a/docset/winserver2022-ps/hgsclient/New-HgsGuardian.md +++ b/docset/winserver2022-ps/hgsclient/New-HgsGuardian.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: HgsClient-help.xml Module Name: HgsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsclient/new-hgsguardian?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsclient/new-hgsguardian?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-HgsGuardian --- diff --git a/docset/winserver2022-ps/hgsclient/New-HgsKeyProtector.md b/docset/winserver2022-ps/hgsclient/New-HgsKeyProtector.md index 15c1ab8dfd..f44550e6c4 100644 --- a/docset/winserver2022-ps/hgsclient/New-HgsKeyProtector.md +++ b/docset/winserver2022-ps/hgsclient/New-HgsKeyProtector.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: HgsClient-help.xml Module Name: HgsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsclient/new-hgskeyprotector?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsclient/new-hgskeyprotector?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-HgsKeyProtector --- diff --git a/docset/winserver2022-ps/hgsclient/Remove-HgsGuardian.md b/docset/winserver2022-ps/hgsclient/Remove-HgsGuardian.md index aa64e0a4e3..2bebe40b1f 100644 --- a/docset/winserver2022-ps/hgsclient/Remove-HgsGuardian.md +++ b/docset/winserver2022-ps/hgsclient/Remove-HgsGuardian.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: HgsClient-help.xml Module Name: HgsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsclient/remove-hgsguardian?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsclient/remove-hgsguardian?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-HgsGuardian --- diff --git a/docset/winserver2022-ps/hgsclient/Revoke-HgsKeyProtectorAccess.md b/docset/winserver2022-ps/hgsclient/Revoke-HgsKeyProtectorAccess.md index bc645ee1eb..f5a1580e44 100644 --- a/docset/winserver2022-ps/hgsclient/Revoke-HgsKeyProtectorAccess.md +++ b/docset/winserver2022-ps/hgsclient/Revoke-HgsKeyProtectorAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: HgsClient-help.xml Module Name: HgsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsclient/revoke-hgskeyprotectoraccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsclient/revoke-hgskeyprotectoraccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Revoke-HgsKeyProtectorAccess --- diff --git a/docset/winserver2022-ps/hgsclient/Set-HgsClientConfiguration.md b/docset/winserver2022-ps/hgsclient/Set-HgsClientConfiguration.md index 6b067194ac..938cf954e6 100644 --- a/docset/winserver2022-ps/hgsclient/Set-HgsClientConfiguration.md +++ b/docset/winserver2022-ps/hgsclient/Set-HgsClientConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: HgsClient-help.xml Module Name: HgsClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsclient/set-hgsclientconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsclient/set-hgsclientconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-HgsClientConfiguration --- diff --git a/docset/winserver2022-ps/hgsclient/Test-HgsClientConfiguration.md b/docset/winserver2022-ps/hgsclient/Test-HgsClientConfiguration.md index a6a7817334..f2a3aab4bc 100644 --- a/docset/winserver2022-ps/hgsclient/Test-HgsClientConfiguration.md +++ b/docset/winserver2022-ps/hgsclient/Test-HgsClientConfiguration.md @@ -1,7 +1,7 @@ --- external help file: HgsClient-help.xml Module Name: HgsClient -online version: https://docs.microsoft.com/powershell/module/hgsclient/test-hgsclientconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsclient/test-hgsclientconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-HgsClientConfiguration --- diff --git a/docset/winserver2022-ps/hgsdiagnostics/Get-HgsTrace.md b/docset/winserver2022-ps/hgsdiagnostics/Get-HgsTrace.md index b20a19c669..bff3c7ec5c 100644 --- a/docset/winserver2022-ps/hgsdiagnostics/Get-HgsTrace.md +++ b/docset/winserver2022-ps/hgsdiagnostics/Get-HgsTrace.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.HostGuardianService.Diagnostics.Payload.dll-Help.xml Module Name: HgsDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsdiagnostics/get-hgstrace?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsdiagnostics/get-hgstrace?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HgsTrace --- diff --git a/docset/winserver2022-ps/hgsdiagnostics/Get-HgsTraceFileData.md b/docset/winserver2022-ps/hgsdiagnostics/Get-HgsTraceFileData.md index 8e59efa6c0..ca8727a6da 100644 --- a/docset/winserver2022-ps/hgsdiagnostics/Get-HgsTraceFileData.md +++ b/docset/winserver2022-ps/hgsdiagnostics/Get-HgsTraceFileData.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.HostGuardianService.Diagnostics.Payload.dll-Help.xml Module Name: HgsDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsdiagnostics/get-hgstracefiledata?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsdiagnostics/get-hgstracefiledata?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HgsTraceFileData --- diff --git a/docset/winserver2022-ps/hgsdiagnostics/New-HgsTraceTarget.md b/docset/winserver2022-ps/hgsdiagnostics/New-HgsTraceTarget.md index d7e5ebc680..0fd2d3a119 100644 --- a/docset/winserver2022-ps/hgsdiagnostics/New-HgsTraceTarget.md +++ b/docset/winserver2022-ps/hgsdiagnostics/New-HgsTraceTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.HostGuardianService.Diagnostics.Payload.dll-Help.xml Module Name: HgsDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsdiagnostics/new-hgstracetarget?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsdiagnostics/new-hgstracetarget?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-HgsTraceTarget --- diff --git a/docset/winserver2022-ps/hgsdiagnostics/Test-HgsTraceTarget.md b/docset/winserver2022-ps/hgsdiagnostics/Test-HgsTraceTarget.md index 4192b851b9..7311e6ced1 100644 --- a/docset/winserver2022-ps/hgsdiagnostics/Test-HgsTraceTarget.md +++ b/docset/winserver2022-ps/hgsdiagnostics/Test-HgsTraceTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.HostGuardianService.Diagnostics.Payload.dll-Help.xml Module Name: HgsDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsdiagnostics/test-hgstracetarget?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsdiagnostics/test-hgstracetarget?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-HgsTraceTarget --- diff --git a/docset/winserver2022-ps/hgskeyprotection/Add-HgsKeyProtectionAttestationSignerCertificate.md b/docset/winserver2022-ps/hgskeyprotection/Add-HgsKeyProtectionAttestationSignerCertificate.md index a9c3d06690..6db72dd17e 100644 --- a/docset/winserver2022-ps/hgskeyprotection/Add-HgsKeyProtectionAttestationSignerCertificate.md +++ b/docset/winserver2022-ps/hgskeyprotection/Add-HgsKeyProtectionAttestationSignerCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.KpsServer.Administration.dll-Help.xml Module Name: HgsKeyProtection ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgskeyprotection/add-hgskeyprotectionattestationsignercertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgskeyprotection/add-hgskeyprotectionattestationsignercertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-HgsKeyProtectionAttestationSignerCertificate --- diff --git a/docset/winserver2022-ps/hgskeyprotection/Add-HgsKeyProtectionCertificate.md b/docset/winserver2022-ps/hgskeyprotection/Add-HgsKeyProtectionCertificate.md index 4d81379bbb..c207c70e68 100644 --- a/docset/winserver2022-ps/hgskeyprotection/Add-HgsKeyProtectionCertificate.md +++ b/docset/winserver2022-ps/hgskeyprotection/Add-HgsKeyProtectionCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.KpsServer.Administration.dll-Help.xml Module Name: HgsKeyProtection ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgskeyprotection/add-hgskeyprotectioncertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgskeyprotection/add-hgskeyprotectioncertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-HgsKeyProtectionCertificate --- diff --git a/docset/winserver2022-ps/hgskeyprotection/Export-HgsKeyProtectionState.md b/docset/winserver2022-ps/hgskeyprotection/Export-HgsKeyProtectionState.md index 198476ba98..02e664c5fa 100644 --- a/docset/winserver2022-ps/hgskeyprotection/Export-HgsKeyProtectionState.md +++ b/docset/winserver2022-ps/hgskeyprotection/Export-HgsKeyProtectionState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.KpsServer.Administration.dll-Help.xml Module Name: HgsKeyProtection ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgskeyprotection/export-hgskeyprotectionstate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgskeyprotection/export-hgskeyprotectionstate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-HgsKeyProtectionState --- diff --git a/docset/winserver2022-ps/hgskeyprotection/Get-HgsKeyProtectionAttestationSignerCertificate.md b/docset/winserver2022-ps/hgskeyprotection/Get-HgsKeyProtectionAttestationSignerCertificate.md index d33e20be37..6971b2e375 100644 --- a/docset/winserver2022-ps/hgskeyprotection/Get-HgsKeyProtectionAttestationSignerCertificate.md +++ b/docset/winserver2022-ps/hgskeyprotection/Get-HgsKeyProtectionAttestationSignerCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.KpsServer.Administration.dll-Help.xml Module Name: HgsKeyProtection ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgskeyprotection/get-hgskeyprotectionattestationsignercertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgskeyprotection/get-hgskeyprotectionattestationsignercertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HgsKeyProtectionAttestationSignerCertificate --- diff --git a/docset/winserver2022-ps/hgskeyprotection/Get-HgsKeyProtectionCertificate.md b/docset/winserver2022-ps/hgskeyprotection/Get-HgsKeyProtectionCertificate.md index 7b8bc66f58..941e097a44 100644 --- a/docset/winserver2022-ps/hgskeyprotection/Get-HgsKeyProtectionCertificate.md +++ b/docset/winserver2022-ps/hgskeyprotection/Get-HgsKeyProtectionCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.KpsServer.Administration.dll-Help.xml Module Name: HgsKeyProtection ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgskeyprotection/get-hgskeyprotectioncertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgskeyprotection/get-hgskeyprotectioncertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HgsKeyProtectionCertificate --- diff --git a/docset/winserver2022-ps/hgskeyprotection/Get-HgsKeyProtectionConfiguration.md b/docset/winserver2022-ps/hgskeyprotection/Get-HgsKeyProtectionConfiguration.md index 31eda999f7..bfdc1ed2fb 100644 --- a/docset/winserver2022-ps/hgskeyprotection/Get-HgsKeyProtectionConfiguration.md +++ b/docset/winserver2022-ps/hgskeyprotection/Get-HgsKeyProtectionConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.KpsServer.Administration.dll-Help.xml Module Name: HgsKeyProtection ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgskeyprotection/get-hgskeyprotectionconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgskeyprotection/get-hgskeyprotectionconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HgsKeyProtectionConfiguration --- diff --git a/docset/winserver2022-ps/hgskeyprotection/Import-HgsKeyProtectionState.md b/docset/winserver2022-ps/hgskeyprotection/Import-HgsKeyProtectionState.md index 9bb9dc77d2..3d7402bafb 100644 --- a/docset/winserver2022-ps/hgskeyprotection/Import-HgsKeyProtectionState.md +++ b/docset/winserver2022-ps/hgskeyprotection/Import-HgsKeyProtectionState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.KpsServer.Administration.dll-Help.xml Module Name: HgsKeyProtection ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgskeyprotection/import-hgskeyprotectionstate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgskeyprotection/import-hgskeyprotectionstate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-HgsKeyProtectionState --- diff --git a/docset/winserver2022-ps/hgskeyprotection/Remove-HgsKeyProtectionAttestationSignerCertificate.md b/docset/winserver2022-ps/hgskeyprotection/Remove-HgsKeyProtectionAttestationSignerCertificate.md index a6dbaef441..2cd5c01ef0 100644 --- a/docset/winserver2022-ps/hgskeyprotection/Remove-HgsKeyProtectionAttestationSignerCertificate.md +++ b/docset/winserver2022-ps/hgskeyprotection/Remove-HgsKeyProtectionAttestationSignerCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.KpsServer.Administration.dll-Help.xml Module Name: HgsKeyProtection ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgskeyprotection/remove-hgskeyprotectionattestationsignercertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgskeyprotection/remove-hgskeyprotectionattestationsignercertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-HgsKeyProtectionAttestationSignerCertificate --- diff --git a/docset/winserver2022-ps/hgskeyprotection/Remove-HgsKeyProtectionCertificate.md b/docset/winserver2022-ps/hgskeyprotection/Remove-HgsKeyProtectionCertificate.md index 947b3ddb7d..1d07e3d162 100644 --- a/docset/winserver2022-ps/hgskeyprotection/Remove-HgsKeyProtectionCertificate.md +++ b/docset/winserver2022-ps/hgskeyprotection/Remove-HgsKeyProtectionCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.KpsServer.Administration.dll-Help.xml Module Name: HgsKeyProtection ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgskeyprotection/remove-hgskeyprotectioncertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgskeyprotection/remove-hgskeyprotectioncertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-HgsKeyProtectionCertificate --- diff --git a/docset/winserver2022-ps/hgskeyprotection/Set-HgsKeyProtectionAttestationSignerCertificatePolicy.md b/docset/winserver2022-ps/hgskeyprotection/Set-HgsKeyProtectionAttestationSignerCertificatePolicy.md index 54d447e571..f118e54e45 100644 --- a/docset/winserver2022-ps/hgskeyprotection/Set-HgsKeyProtectionAttestationSignerCertificatePolicy.md +++ b/docset/winserver2022-ps/hgskeyprotection/Set-HgsKeyProtectionAttestationSignerCertificatePolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.KpsServer.Administration.dll-Help.xml Module Name: HgsKeyProtection ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgskeyprotection/set-hgskeyprotectionattestationsignercertificatepolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgskeyprotection/set-hgskeyprotectionattestationsignercertificatepolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-HgsKeyProtectionAttestationSignerCertificatePolicy --- diff --git a/docset/winserver2022-ps/hgskeyprotection/Set-HgsKeyProtectionCertificate.md b/docset/winserver2022-ps/hgskeyprotection/Set-HgsKeyProtectionCertificate.md index 10a36c0959..994fb2aca5 100644 --- a/docset/winserver2022-ps/hgskeyprotection/Set-HgsKeyProtectionCertificate.md +++ b/docset/winserver2022-ps/hgskeyprotection/Set-HgsKeyProtectionCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.KpsServer.Administration.dll-Help.xml Module Name: HgsKeyProtection ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgskeyprotection/set-hgskeyprotectioncertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgskeyprotection/set-hgskeyprotectioncertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-HgsKeyProtectionCertificate --- diff --git a/docset/winserver2022-ps/hgskeyprotection/Set-HgsKeyProtectionConfiguration.md b/docset/winserver2022-ps/hgskeyprotection/Set-HgsKeyProtectionConfiguration.md index 93df2e8a5f..3625e57fa8 100644 --- a/docset/winserver2022-ps/hgskeyprotection/Set-HgsKeyProtectionConfiguration.md +++ b/docset/winserver2022-ps/hgskeyprotection/Set-HgsKeyProtectionConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.KpsServer.Administration.dll-Help.xml Module Name: HgsKeyProtection ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgskeyprotection/set-hgskeyprotectionconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgskeyprotection/set-hgskeyprotectionconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-HgsKeyProtectionConfiguration --- diff --git a/docset/winserver2022-ps/hgsserver/Clear-HgsServer.md b/docset/winserver2022-ps/hgsserver/Clear-HgsServer.md index ef414b5732..7358ae4bfe 100644 --- a/docset/winserver2022-ps/hgsserver/Clear-HgsServer.md +++ b/docset/winserver2022-ps/hgsserver/Clear-HgsServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: HgsServer-help.xml Module Name: HgsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsserver/clear-hgsserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsserver/clear-hgsserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-HgsServer --- diff --git a/docset/winserver2022-ps/hgsserver/Export-HgsServerState.md b/docset/winserver2022-ps/hgsserver/Export-HgsServerState.md index 805795c9d8..53b8a0fd1c 100644 --- a/docset/winserver2022-ps/hgsserver/Export-HgsServerState.md +++ b/docset/winserver2022-ps/hgsserver/Export-HgsServerState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: HgsServer-help.xml Module Name: HgsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsserver/export-hgsserverstate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsserver/export-hgsserverstate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-HgsServerState --- diff --git a/docset/winserver2022-ps/hgsserver/Get-HgsServer.md b/docset/winserver2022-ps/hgsserver/Get-HgsServer.md index b2a0d4d30f..b9e6210f67 100644 --- a/docset/winserver2022-ps/hgsserver/Get-HgsServer.md +++ b/docset/winserver2022-ps/hgsserver/Get-HgsServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: HgsServer-help.xml Module Name: HgsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsserver/get-hgsserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsserver/get-hgsserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-HgsServer --- diff --git a/docset/winserver2022-ps/hgsserver/Import-HgsServerState.md b/docset/winserver2022-ps/hgsserver/Import-HgsServerState.md index 90f39f7373..920b3141c9 100644 --- a/docset/winserver2022-ps/hgsserver/Import-HgsServerState.md +++ b/docset/winserver2022-ps/hgsserver/Import-HgsServerState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: HgsServer-help.xml Module Name: HgsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsserver/import-hgsserverstate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsserver/import-hgsserverstate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-HgsServerState --- diff --git a/docset/winserver2022-ps/hgsserver/Initialize-HgsServer.md b/docset/winserver2022-ps/hgsserver/Initialize-HgsServer.md index e2e83afb28..9f69e7311a 100644 --- a/docset/winserver2022-ps/hgsserver/Initialize-HgsServer.md +++ b/docset/winserver2022-ps/hgsserver/Initialize-HgsServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: HgsServer-help.xml Module Name: HgsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsserver/initialize-hgsserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsserver/initialize-hgsserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Initialize-HgsServer --- diff --git a/docset/winserver2022-ps/hgsserver/Install-HgsServer.md b/docset/winserver2022-ps/hgsserver/Install-HgsServer.md index 308242f410..e2e73e6a60 100644 --- a/docset/winserver2022-ps/hgsserver/Install-HgsServer.md +++ b/docset/winserver2022-ps/hgsserver/Install-HgsServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: HgsServer-help.xml Module Name: HgsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsserver/install-hgsserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsserver/install-hgsserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-HgsServer --- diff --git a/docset/winserver2022-ps/hgsserver/Set-HgsServer.md b/docset/winserver2022-ps/hgsserver/Set-HgsServer.md index 1cc938c9b2..1308d6dcba 100644 --- a/docset/winserver2022-ps/hgsserver/Set-HgsServer.md +++ b/docset/winserver2022-ps/hgsserver/Set-HgsServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: HgsServer-help.xml Module Name: HgsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsserver/set-hgsserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsserver/set-hgsserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-HgsServer --- diff --git a/docset/winserver2022-ps/hgsserver/Test-HgsServer.md b/docset/winserver2022-ps/hgsserver/Test-HgsServer.md index a2449eed02..a3d95aa5c6 100644 --- a/docset/winserver2022-ps/hgsserver/Test-HgsServer.md +++ b/docset/winserver2022-ps/hgsserver/Test-HgsServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: HgsServer-help.xml Module Name: HgsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsserver/test-hgsserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsserver/test-hgsserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-HgsServer --- diff --git a/docset/winserver2022-ps/hgsserver/Uninstall-HgsServer.md b/docset/winserver2022-ps/hgsserver/Uninstall-HgsServer.md index 9fa77b391d..9b4c0b0e56 100644 --- a/docset/winserver2022-ps/hgsserver/Uninstall-HgsServer.md +++ b/docset/winserver2022-ps/hgsserver/Uninstall-HgsServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: HgsServer-help.xml Module Name: HgsServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hgsserver/uninstall-hgsserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hgsserver/uninstall-hgsserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-HgsServer --- diff --git a/docset/winserver2022-ps/hnvdiagnostics/Debug-SlbDatapath.md b/docset/winserver2022-ps/hnvdiagnostics/Debug-SlbDatapath.md index a8321fcb09..17e9f1bbf1 100644 --- a/docset/winserver2022-ps/hnvdiagnostics/Debug-SlbDatapath.md +++ b/docset/winserver2022-ps/hnvdiagnostics/Debug-SlbDatapath.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SlbDatapathTracing.psm1-help.xml Module Name: HNVDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hnvdiagnostics/debug-slbdatapath?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hnvdiagnostics/debug-slbdatapath?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Debug-SlbDatapath --- diff --git a/docset/winserver2022-ps/hnvdiagnostics/Debug-VirtualMachineQueueOperation.md b/docset/winserver2022-ps/hnvdiagnostics/Debug-VirtualMachineQueueOperation.md index 92a6e83e5f..d0c1d5f626 100644 --- a/docset/winserver2022-ps/hnvdiagnostics/Debug-VirtualMachineQueueOperation.md +++ b/docset/winserver2022-ps/hnvdiagnostics/Debug-VirtualMachineQueueOperation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Debug-VirtualMachineQueueOperation.psm1-help.xml Module Name: HNVDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hnvdiagnostics/debug-virtualmachinequeueoperation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hnvdiagnostics/debug-virtualmachinequeueoperation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Debug-VirtualMachineQueueOperation --- diff --git a/docset/winserver2022-ps/hnvdiagnostics/Disable-MuxEchoResponder.md b/docset/winserver2022-ps/hnvdiagnostics/Disable-MuxEchoResponder.md index 5942b5d4b4..d2f5d08198 100644 --- a/docset/winserver2022-ps/hnvdiagnostics/Disable-MuxEchoResponder.md +++ b/docset/winserver2022-ps/hnvdiagnostics/Disable-MuxEchoResponder.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MuxEchoResponder.psm1-help.xml Module Name: HNVDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hnvdiagnostics/disable-muxechoresponder?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hnvdiagnostics/disable-muxechoresponder?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-MuxEchoResponder --- diff --git a/docset/winserver2022-ps/hnvdiagnostics/Enable-MuxEchoResponder.md b/docset/winserver2022-ps/hnvdiagnostics/Enable-MuxEchoResponder.md index d2604d47e8..525cc0b6f8 100644 --- a/docset/winserver2022-ps/hnvdiagnostics/Enable-MuxEchoResponder.md +++ b/docset/winserver2022-ps/hnvdiagnostics/Enable-MuxEchoResponder.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MuxEchoResponder.psm1-help.xml Module Name: HNVDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hnvdiagnostics/enable-muxechoresponder?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hnvdiagnostics/enable-muxechoresponder?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-MuxEchoResponder --- diff --git a/docset/winserver2022-ps/hnvdiagnostics/Get-CustomerRoute.md b/docset/winserver2022-ps/hnvdiagnostics/Get-CustomerRoute.md index 2ce2711e0b..c4a3f986de 100644 --- a/docset/winserver2022-ps/hnvdiagnostics/Get-CustomerRoute.md +++ b/docset/winserver2022-ps/hnvdiagnostics/Get-CustomerRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Get-CustomerRoute.psm1-help.xml Module Name: HNVDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hnvdiagnostics/get-customerroute?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hnvdiagnostics/get-customerroute?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CustomerRoute --- diff --git a/docset/winserver2022-ps/hnvdiagnostics/Get-NetworkControllerVipResource.md b/docset/winserver2022-ps/hnvdiagnostics/Get-NetworkControllerVipResource.md index 31b60d39c3..0568c7b794 100644 --- a/docset/winserver2022-ps/hnvdiagnostics/Get-NetworkControllerVipResource.md +++ b/docset/winserver2022-ps/hnvdiagnostics/Get-NetworkControllerVipResource.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Get-VipConnectivityInfo.psm1-help.xml Module Name: HNVDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hnvdiagnostics/get-networkcontrollervipresource?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hnvdiagnostics/get-networkcontrollervipresource?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerVipResource --- diff --git a/docset/winserver2022-ps/hnvdiagnostics/Get-PACAMapping.md b/docset/winserver2022-ps/hnvdiagnostics/Get-PACAMapping.md index f8409e0e56..054d1197a7 100644 --- a/docset/winserver2022-ps/hnvdiagnostics/Get-PACAMapping.md +++ b/docset/winserver2022-ps/hnvdiagnostics/Get-PACAMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Get-PACAMapping.psm1-help.xml Module Name: HNVDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hnvdiagnostics/get-pacamapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hnvdiagnostics/get-pacamapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PACAMapping --- diff --git a/docset/winserver2022-ps/hnvdiagnostics/Get-ProviderAddress.md b/docset/winserver2022-ps/hnvdiagnostics/Get-ProviderAddress.md index bda53d9b27..aade060767 100644 --- a/docset/winserver2022-ps/hnvdiagnostics/Get-ProviderAddress.md +++ b/docset/winserver2022-ps/hnvdiagnostics/Get-ProviderAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Get-ProviderAddress.psm1-help.xml Module Name: HNVDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hnvdiagnostics/get-provideraddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hnvdiagnostics/get-provideraddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ProviderAddress --- diff --git a/docset/winserver2022-ps/hnvdiagnostics/Get-VMNetworkAdapterPortId.md b/docset/winserver2022-ps/hnvdiagnostics/Get-VMNetworkAdapterPortId.md index 508f4ecf4d..a3a7d2a97e 100644 --- a/docset/winserver2022-ps/hnvdiagnostics/Get-VMNetworkAdapterPortId.md +++ b/docset/winserver2022-ps/hnvdiagnostics/Get-VMNetworkAdapterPortId.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Get-VMNetworkAdapterPortId.psm1-help.xml Module Name: HNVDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hnvdiagnostics/get-vmnetworkadapterportid?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hnvdiagnostics/get-vmnetworkadapterportid?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMNetworkAdapterPortId --- diff --git a/docset/winserver2022-ps/hnvdiagnostics/Get-VMSwitchExternalPortId.md b/docset/winserver2022-ps/hnvdiagnostics/Get-VMSwitchExternalPortId.md index b903c298d3..2b553cf6a7 100644 --- a/docset/winserver2022-ps/hnvdiagnostics/Get-VMSwitchExternalPortId.md +++ b/docset/winserver2022-ps/hnvdiagnostics/Get-VMSwitchExternalPortId.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Get-VMSwitchExternalPortId.psm1-help.xml Module Name: HNVDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hnvdiagnostics/get-vmswitchexternalportid?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hnvdiagnostics/get-vmswitchexternalportid?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMSwitchExternalPortId --- diff --git a/docset/winserver2022-ps/hnvdiagnostics/Get-VipHostMapping.md b/docset/winserver2022-ps/hnvdiagnostics/Get-VipHostMapping.md index 11ccd63b53..86cb28b4e1 100644 --- a/docset/winserver2022-ps/hnvdiagnostics/Get-VipHostMapping.md +++ b/docset/winserver2022-ps/hnvdiagnostics/Get-VipHostMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Get-VipConnectivityInfo.psm1-help.xml Module Name: HNVDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hnvdiagnostics/get-viphostmapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hnvdiagnostics/get-viphostmapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VipHostMapping --- diff --git a/docset/winserver2022-ps/hnvdiagnostics/Test-DipHostReachability.md b/docset/winserver2022-ps/hnvdiagnostics/Test-DipHostReachability.md index 07dd135587..86dc3c03a6 100644 --- a/docset/winserver2022-ps/hnvdiagnostics/Test-DipHostReachability.md +++ b/docset/winserver2022-ps/hnvdiagnostics/Test-DipHostReachability.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DipHostReachability.psm1-help.xml Module Name: HNVDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hnvdiagnostics/test-diphostreachability?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hnvdiagnostics/test-diphostreachability?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-DipHostReachability --- diff --git a/docset/winserver2022-ps/hnvdiagnostics/Test-EncapOverheadSettings.md b/docset/winserver2022-ps/hnvdiagnostics/Test-EncapOverheadSettings.md index 2b4ab04ef8..770b592480 100644 --- a/docset/winserver2022-ps/hnvdiagnostics/Test-EncapOverheadSettings.md +++ b/docset/winserver2022-ps/hnvdiagnostics/Test-EncapOverheadSettings.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Test-EncapOverheadValue.psm1-help.xml Module Name: HNVDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hnvdiagnostics/test-encapoverheadsettings?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hnvdiagnostics/test-encapoverheadsettings?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-EncapOverheadSettings --- diff --git a/docset/winserver2022-ps/hnvdiagnostics/Test-LogicalNetworkConnection.md b/docset/winserver2022-ps/hnvdiagnostics/Test-LogicalNetworkConnection.md index 4d9f978b3f..a54fbc8fae 100644 --- a/docset/winserver2022-ps/hnvdiagnostics/Test-LogicalNetworkConnection.md +++ b/docset/winserver2022-ps/hnvdiagnostics/Test-LogicalNetworkConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PaPing.psm1-help.xml Module Name: HNVDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hnvdiagnostics/test-logicalnetworkconnection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hnvdiagnostics/test-logicalnetworkconnection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-LogicalNetworkConnection --- diff --git a/docset/winserver2022-ps/hnvdiagnostics/Test-LogicalNetworkSupportsJumboPacket.md b/docset/winserver2022-ps/hnvdiagnostics/Test-LogicalNetworkSupportsJumboPacket.md index 234dcaa357..9b6e82ff81 100644 --- a/docset/winserver2022-ps/hnvdiagnostics/Test-LogicalNetworkSupportsJumboPacket.md +++ b/docset/winserver2022-ps/hnvdiagnostics/Test-LogicalNetworkSupportsJumboPacket.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Test-LogicalNetworkSupportsJumboPacket.psm1-help.xml Module Name: HNVDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hnvdiagnostics/test-logicalnetworksupportsjumbopacket?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hnvdiagnostics/test-logicalnetworksupportsjumbopacket?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-LogicalNetworkSupportsJumboPacket --- diff --git a/docset/winserver2022-ps/hnvdiagnostics/Test-VipReachability.md b/docset/winserver2022-ps/hnvdiagnostics/Test-VipReachability.md index b6e5db0782..e86ce475de 100644 --- a/docset/winserver2022-ps/hnvdiagnostics/Test-VipReachability.md +++ b/docset/winserver2022-ps/hnvdiagnostics/Test-VipReachability.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: VipReachability.psm1-help.xml Module Name: HNVDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hnvdiagnostics/test-vipreachability?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hnvdiagnostics/test-vipreachability?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-VipReachability --- diff --git a/docset/winserver2022-ps/hnvdiagnostics/Test-VirtualNetworkConnection.md b/docset/winserver2022-ps/hnvdiagnostics/Test-VirtualNetworkConnection.md index bcaab48ad9..89802d88c3 100644 --- a/docset/winserver2022-ps/hnvdiagnostics/Test-VirtualNetworkConnection.md +++ b/docset/winserver2022-ps/hnvdiagnostics/Test-VirtualNetworkConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Test-VirtualNetworkConnection.psm1-help.xml Module Name: HNVDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hnvdiagnostics/test-virtualnetworkconnection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hnvdiagnostics/test-virtualnetworkconnection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-VirtualNetworkConnection --- diff --git a/docset/winserver2022-ps/hostcomputeservice/Get-ComputeProcess.md b/docset/winserver2022-ps/hostcomputeservice/Get-ComputeProcess.md index b23372c6b7..8425dccfab 100644 --- a/docset/winserver2022-ps/hostcomputeservice/Get-ComputeProcess.md +++ b/docset/winserver2022-ps/hostcomputeservice/Get-ComputeProcess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HostCompute.PowerShell.Cmdlets.dll-Help.xml Module Name: HostComputeService ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/hostcomputeservice/get-computeprocess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hostcomputeservice/get-computeprocess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ComputeProcess --- diff --git a/docset/winserver2022-ps/hostcomputeservice/Stop-ComputeProcess.md b/docset/winserver2022-ps/hostcomputeservice/Stop-ComputeProcess.md index 90b053d6cf..e19eb8a657 100644 --- a/docset/winserver2022-ps/hostcomputeservice/Stop-ComputeProcess.md +++ b/docset/winserver2022-ps/hostcomputeservice/Stop-ComputeProcess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HostCompute.PowerShell.Cmdlets.dll-Help.xml Module Name: HostComputeService ms.date: 12/21/2016 -online version: https://docs.microsoft.com/powershell/module/hostcomputeservice/stop-computeprocess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hostcomputeservice/stop-computeprocess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-ComputeProcess --- diff --git a/docset/winserver2022-ps/hyper-v/Add-VMDvdDrive.md b/docset/winserver2022-ps/hyper-v/Add-VMDvdDrive.md index ff0527db21..04764bf137 100644 --- a/docset/winserver2022-ps/hyper-v/Add-VMDvdDrive.md +++ b/docset/winserver2022-ps/hyper-v/Add-VMDvdDrive.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmdvddrive?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmdvddrive?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMDvdDrive --- diff --git a/docset/winserver2022-ps/hyper-v/Add-VMFibreChannelHba.md b/docset/winserver2022-ps/hyper-v/Add-VMFibreChannelHba.md index 957dc96588..de1b4c016e 100644 --- a/docset/winserver2022-ps/hyper-v/Add-VMFibreChannelHba.md +++ b/docset/winserver2022-ps/hyper-v/Add-VMFibreChannelHba.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmfibrechannelhba?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmfibrechannelhba?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMFibreChannelHba --- diff --git a/docset/winserver2022-ps/hyper-v/Add-VMGroupMember.md b/docset/winserver2022-ps/hyper-v/Add-VMGroupMember.md index df5fd0cf32..99ff0f463f 100644 --- a/docset/winserver2022-ps/hyper-v/Add-VMGroupMember.md +++ b/docset/winserver2022-ps/hyper-v/Add-VMGroupMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmgroupmember?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmgroupmember?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMGroupMember --- diff --git a/docset/winserver2022-ps/hyper-v/Add-VMHardDiskDrive.md b/docset/winserver2022-ps/hyper-v/Add-VMHardDiskDrive.md index 5f7e63486b..f091678028 100644 --- a/docset/winserver2022-ps/hyper-v/Add-VMHardDiskDrive.md +++ b/docset/winserver2022-ps/hyper-v/Add-VMHardDiskDrive.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmharddiskdrive?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmharddiskdrive?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMHardDiskDrive --- diff --git a/docset/winserver2022-ps/hyper-v/Add-VMMigrationNetwork.md b/docset/winserver2022-ps/hyper-v/Add-VMMigrationNetwork.md index 704a7ec29e..b0f229744f 100644 --- a/docset/winserver2022-ps/hyper-v/Add-VMMigrationNetwork.md +++ b/docset/winserver2022-ps/hyper-v/Add-VMMigrationNetwork.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmmigrationnetwork?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmmigrationnetwork?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMMigrationNetwork --- diff --git a/docset/winserver2022-ps/hyper-v/Add-VMNetworkAdapter.md b/docset/winserver2022-ps/hyper-v/Add-VMNetworkAdapter.md index 11ce2a36c9..61c13b3525 100644 --- a/docset/winserver2022-ps/hyper-v/Add-VMNetworkAdapter.md +++ b/docset/winserver2022-ps/hyper-v/Add-VMNetworkAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmnetworkadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmnetworkadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMNetworkAdapter --- diff --git a/docset/winserver2022-ps/hyper-v/Add-VMNetworkAdapterAcl.md b/docset/winserver2022-ps/hyper-v/Add-VMNetworkAdapterAcl.md index 16edf23757..0a91e51df3 100644 --- a/docset/winserver2022-ps/hyper-v/Add-VMNetworkAdapterAcl.md +++ b/docset/winserver2022-ps/hyper-v/Add-VMNetworkAdapterAcl.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmnetworkadapteracl?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmnetworkadapteracl?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMNetworkAdapterAcl --- diff --git a/docset/winserver2022-ps/hyper-v/Add-VMNetworkAdapterExtendedAcl.md b/docset/winserver2022-ps/hyper-v/Add-VMNetworkAdapterExtendedAcl.md index 54224b830a..20e34634b3 100644 --- a/docset/winserver2022-ps/hyper-v/Add-VMNetworkAdapterExtendedAcl.md +++ b/docset/winserver2022-ps/hyper-v/Add-VMNetworkAdapterExtendedAcl.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmnetworkadapterextendedacl?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmnetworkadapterextendedacl?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMNetworkAdapterExtendedAcl --- diff --git a/docset/winserver2022-ps/hyper-v/Add-VMRemoteFx3dVideoAdapter.md b/docset/winserver2022-ps/hyper-v/Add-VMRemoteFx3dVideoAdapter.md index 94384c84bb..e87f095019 100644 --- a/docset/winserver2022-ps/hyper-v/Add-VMRemoteFx3dVideoAdapter.md +++ b/docset/winserver2022-ps/hyper-v/Add-VMRemoteFx3dVideoAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmremotefx3dvideoadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmremotefx3dvideoadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMRemoteFx3dVideoAdapter --- diff --git a/docset/winserver2022-ps/hyper-v/Add-VMScsiController.md b/docset/winserver2022-ps/hyper-v/Add-VMScsiController.md index 30b4c1403d..d680d78d52 100644 --- a/docset/winserver2022-ps/hyper-v/Add-VMScsiController.md +++ b/docset/winserver2022-ps/hyper-v/Add-VMScsiController.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmscsicontroller?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmscsicontroller?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMScsiController --- diff --git a/docset/winserver2022-ps/hyper-v/Add-VMStoragePath.md b/docset/winserver2022-ps/hyper-v/Add-VMStoragePath.md index bef03156ed..f14e4eaabc 100644 --- a/docset/winserver2022-ps/hyper-v/Add-VMStoragePath.md +++ b/docset/winserver2022-ps/hyper-v/Add-VMStoragePath.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmstoragepath?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmstoragepath?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMStoragePath --- diff --git a/docset/winserver2022-ps/hyper-v/Add-VMSwitch.md b/docset/winserver2022-ps/hyper-v/Add-VMSwitch.md index a6a00231f5..33d58a9973 100644 --- a/docset/winserver2022-ps/hyper-v/Add-VMSwitch.md +++ b/docset/winserver2022-ps/hyper-v/Add-VMSwitch.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmswitch?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmswitch?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMSwitch --- diff --git a/docset/winserver2022-ps/hyper-v/Add-VMSwitchExtensionPortFeature.md b/docset/winserver2022-ps/hyper-v/Add-VMSwitchExtensionPortFeature.md index 31098f9351..3279f3532b 100644 --- a/docset/winserver2022-ps/hyper-v/Add-VMSwitchExtensionPortFeature.md +++ b/docset/winserver2022-ps/hyper-v/Add-VMSwitchExtensionPortFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmswitchextensionportfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmswitchextensionportfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMSwitchExtensionPortFeature --- diff --git a/docset/winserver2022-ps/hyper-v/Add-VMSwitchExtensionSwitchFeature.md b/docset/winserver2022-ps/hyper-v/Add-VMSwitchExtensionSwitchFeature.md index 83011fa588..da1ddd567e 100644 --- a/docset/winserver2022-ps/hyper-v/Add-VMSwitchExtensionSwitchFeature.md +++ b/docset/winserver2022-ps/hyper-v/Add-VMSwitchExtensionSwitchFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmswitchextensionswitchfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmswitchextensionswitchfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMSwitchExtensionSwitchFeature --- diff --git a/docset/winserver2022-ps/hyper-v/Add-VMSwitchTeamMember.md b/docset/winserver2022-ps/hyper-v/Add-VMSwitchTeamMember.md index 69bb969044..bb4bdf40bc 100644 --- a/docset/winserver2022-ps/hyper-v/Add-VMSwitchTeamMember.md +++ b/docset/winserver2022-ps/hyper-v/Add-VMSwitchTeamMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmswitchteammember?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmswitchteammember?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMSwitchTeamMember --- diff --git a/docset/winserver2022-ps/hyper-v/Add-VmNetworkAdapterRoutingDomainMapping.md b/docset/winserver2022-ps/hyper-v/Add-VmNetworkAdapterRoutingDomainMapping.md index 7ed0e3829e..2575b572f2 100644 --- a/docset/winserver2022-ps/hyper-v/Add-VmNetworkAdapterRoutingDomainMapping.md +++ b/docset/winserver2022-ps/hyper-v/Add-VmNetworkAdapterRoutingDomainMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/add-vmnetworkadapterroutingdomainmapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmnetworkadapterroutingdomainmapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VmNetworkAdapterRoutingDomainMapping --- diff --git a/docset/winserver2022-ps/hyper-v/Checkpoint-VM.md b/docset/winserver2022-ps/hyper-v/Checkpoint-VM.md index 29e0465ec2..582fa4cd2b 100644 --- a/docset/winserver2022-ps/hyper-v/Checkpoint-VM.md +++ b/docset/winserver2022-ps/hyper-v/Checkpoint-VM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/checkpoint-vm?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/checkpoint-vm?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Checkpoint-VM --- diff --git a/docset/winserver2022-ps/hyper-v/Compare-VM.md b/docset/winserver2022-ps/hyper-v/Compare-VM.md index 1234a20133..df02e13efe 100644 --- a/docset/winserver2022-ps/hyper-v/Compare-VM.md +++ b/docset/winserver2022-ps/hyper-v/Compare-VM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/compare-vm?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/compare-vm?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Compare-VM --- diff --git a/docset/winserver2022-ps/hyper-v/Complete-VMFailover.md b/docset/winserver2022-ps/hyper-v/Complete-VMFailover.md index 679863aba8..3e94258ca6 100644 --- a/docset/winserver2022-ps/hyper-v/Complete-VMFailover.md +++ b/docset/winserver2022-ps/hyper-v/Complete-VMFailover.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/complete-vmfailover?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/complete-vmfailover?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Complete-VMFailover --- diff --git a/docset/winserver2022-ps/hyper-v/Connect-VMNetworkAdapter.md b/docset/winserver2022-ps/hyper-v/Connect-VMNetworkAdapter.md index faefee7216..9b2e428b43 100644 --- a/docset/winserver2022-ps/hyper-v/Connect-VMNetworkAdapter.md +++ b/docset/winserver2022-ps/hyper-v/Connect-VMNetworkAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/connect-vmnetworkadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/connect-vmnetworkadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Connect-VMNetworkAdapter --- diff --git a/docset/winserver2022-ps/hyper-v/Connect-VMSan.md b/docset/winserver2022-ps/hyper-v/Connect-VMSan.md index 5d3c294c4d..bc4c6ecdaa 100644 --- a/docset/winserver2022-ps/hyper-v/Connect-VMSan.md +++ b/docset/winserver2022-ps/hyper-v/Connect-VMSan.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/connect-vmsan?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/connect-vmsan?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Connect-VMSan --- diff --git a/docset/winserver2022-ps/hyper-v/Convert-VHD.md b/docset/winserver2022-ps/hyper-v/Convert-VHD.md index 4aca48bbe2..fc8bc05e9c 100644 --- a/docset/winserver2022-ps/hyper-v/Convert-VHD.md +++ b/docset/winserver2022-ps/hyper-v/Convert-VHD.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/convert-vhd?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/convert-vhd?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Convert-VHD --- diff --git a/docset/winserver2022-ps/hyper-v/Copy-VMFile.md b/docset/winserver2022-ps/hyper-v/Copy-VMFile.md index 5ced95ee1c..a0984ff069 100644 --- a/docset/winserver2022-ps/hyper-v/Copy-VMFile.md +++ b/docset/winserver2022-ps/hyper-v/Copy-VMFile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/copy-vmfile?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/copy-vmfile?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Copy-VMFile --- diff --git a/docset/winserver2022-ps/hyper-v/Debug-VM.md b/docset/winserver2022-ps/hyper-v/Debug-VM.md index fec713f1c5..356e27b826 100644 --- a/docset/winserver2022-ps/hyper-v/Debug-VM.md +++ b/docset/winserver2022-ps/hyper-v/Debug-VM.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V -online version: https://docs.microsoft.com/powershell/module/hyper-v/debug-vm?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/debug-vm?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Debug-VM --- diff --git a/docset/winserver2022-ps/hyper-v/Disable-VMConsoleSupport.md b/docset/winserver2022-ps/hyper-v/Disable-VMConsoleSupport.md index 219ae41ce0..243e6cc578 100644 --- a/docset/winserver2022-ps/hyper-v/Disable-VMConsoleSupport.md +++ b/docset/winserver2022-ps/hyper-v/Disable-VMConsoleSupport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/disable-vmconsolesupport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/disable-vmconsolesupport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-VMConsoleSupport --- diff --git a/docset/winserver2022-ps/hyper-v/Disable-VMEventing.md b/docset/winserver2022-ps/hyper-v/Disable-VMEventing.md index 48f9e1883f..2043c898fb 100644 --- a/docset/winserver2022-ps/hyper-v/Disable-VMEventing.md +++ b/docset/winserver2022-ps/hyper-v/Disable-VMEventing.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/disable-vmeventing?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/disable-vmeventing?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-VMEventing --- diff --git a/docset/winserver2022-ps/hyper-v/Disable-VMIntegrationService.md b/docset/winserver2022-ps/hyper-v/Disable-VMIntegrationService.md index dbcdd9731a..e778c09de8 100644 --- a/docset/winserver2022-ps/hyper-v/Disable-VMIntegrationService.md +++ b/docset/winserver2022-ps/hyper-v/Disable-VMIntegrationService.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/disable-vmintegrationservice?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/disable-vmintegrationservice?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-VMIntegrationService --- diff --git a/docset/winserver2022-ps/hyper-v/Disable-VMMigration.md b/docset/winserver2022-ps/hyper-v/Disable-VMMigration.md index e73c5c65e6..2918e31f2c 100644 --- a/docset/winserver2022-ps/hyper-v/Disable-VMMigration.md +++ b/docset/winserver2022-ps/hyper-v/Disable-VMMigration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/disable-vmmigration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/disable-vmmigration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-VMMigration --- diff --git a/docset/winserver2022-ps/hyper-v/Disable-VMRemoteFXPhysicalVideoAdapter.md b/docset/winserver2022-ps/hyper-v/Disable-VMRemoteFXPhysicalVideoAdapter.md index 6af79070ff..fff17e3b17 100644 --- a/docset/winserver2022-ps/hyper-v/Disable-VMRemoteFXPhysicalVideoAdapter.md +++ b/docset/winserver2022-ps/hyper-v/Disable-VMRemoteFXPhysicalVideoAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/disable-vmremotefxphysicalvideoadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/disable-vmremotefxphysicalvideoadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-VMRemoteFXPhysicalVideoAdapter --- diff --git a/docset/winserver2022-ps/hyper-v/Disable-VMResourceMetering.md b/docset/winserver2022-ps/hyper-v/Disable-VMResourceMetering.md index 088be8948e..ed376b9b1b 100644 --- a/docset/winserver2022-ps/hyper-v/Disable-VMResourceMetering.md +++ b/docset/winserver2022-ps/hyper-v/Disable-VMResourceMetering.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/disable-vmresourcemetering?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/disable-vmresourcemetering?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-VMResourceMetering --- diff --git a/docset/winserver2022-ps/hyper-v/Disable-VMSwitchExtension.md b/docset/winserver2022-ps/hyper-v/Disable-VMSwitchExtension.md index 3000358811..edec165f7f 100644 --- a/docset/winserver2022-ps/hyper-v/Disable-VMSwitchExtension.md +++ b/docset/winserver2022-ps/hyper-v/Disable-VMSwitchExtension.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/disable-vmswitchextension?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/disable-vmswitchextension?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-VMSwitchExtension --- diff --git a/docset/winserver2022-ps/hyper-v/Disable-VMTPM.md b/docset/winserver2022-ps/hyper-v/Disable-VMTPM.md index ee3aeaa8ad..877f0d824d 100644 --- a/docset/winserver2022-ps/hyper-v/Disable-VMTPM.md +++ b/docset/winserver2022-ps/hyper-v/Disable-VMTPM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/disable-vmtpm?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/disable-vmtpm?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-VMTPM --- diff --git a/docset/winserver2022-ps/hyper-v/Disconnect-VMNetworkAdapter.md b/docset/winserver2022-ps/hyper-v/Disconnect-VMNetworkAdapter.md index 8266b31f64..0accf4fe50 100644 --- a/docset/winserver2022-ps/hyper-v/Disconnect-VMNetworkAdapter.md +++ b/docset/winserver2022-ps/hyper-v/Disconnect-VMNetworkAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/disconnect-vmnetworkadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/disconnect-vmnetworkadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disconnect-VMNetworkAdapter --- diff --git a/docset/winserver2022-ps/hyper-v/Disconnect-VMSan.md b/docset/winserver2022-ps/hyper-v/Disconnect-VMSan.md index 6d850a84f9..b69b81527a 100644 --- a/docset/winserver2022-ps/hyper-v/Disconnect-VMSan.md +++ b/docset/winserver2022-ps/hyper-v/Disconnect-VMSan.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/disconnect-vmsan?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/disconnect-vmsan?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disconnect-VMSan --- diff --git a/docset/winserver2022-ps/hyper-v/Dismount-VHD.md b/docset/winserver2022-ps/hyper-v/Dismount-VHD.md index c5f008cd9e..c55044fcde 100644 --- a/docset/winserver2022-ps/hyper-v/Dismount-VHD.md +++ b/docset/winserver2022-ps/hyper-v/Dismount-VHD.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/dismount-vhd?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/dismount-vhd?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Dismount-VHD --- diff --git a/docset/winserver2022-ps/hyper-v/Enable-VMConsoleSupport.md b/docset/winserver2022-ps/hyper-v/Enable-VMConsoleSupport.md index 7ef665fb90..2ecd3b1f36 100644 --- a/docset/winserver2022-ps/hyper-v/Enable-VMConsoleSupport.md +++ b/docset/winserver2022-ps/hyper-v/Enable-VMConsoleSupport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/enable-vmconsolesupport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/enable-vmconsolesupport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-VMConsoleSupport --- diff --git a/docset/winserver2022-ps/hyper-v/Enable-VMEventing.md b/docset/winserver2022-ps/hyper-v/Enable-VMEventing.md index 0390bf1353..05dfdabc58 100644 --- a/docset/winserver2022-ps/hyper-v/Enable-VMEventing.md +++ b/docset/winserver2022-ps/hyper-v/Enable-VMEventing.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/enable-vmeventing?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/enable-vmeventing?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-VMEventing --- diff --git a/docset/winserver2022-ps/hyper-v/Enable-VMIntegrationService.md b/docset/winserver2022-ps/hyper-v/Enable-VMIntegrationService.md index ab7792f8bb..06ea14bea7 100644 --- a/docset/winserver2022-ps/hyper-v/Enable-VMIntegrationService.md +++ b/docset/winserver2022-ps/hyper-v/Enable-VMIntegrationService.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/enable-vmintegrationservice?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/enable-vmintegrationservice?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-VMIntegrationService --- diff --git a/docset/winserver2022-ps/hyper-v/Enable-VMMigration.md b/docset/winserver2022-ps/hyper-v/Enable-VMMigration.md index 635eb08a34..d2baa7265b 100644 --- a/docset/winserver2022-ps/hyper-v/Enable-VMMigration.md +++ b/docset/winserver2022-ps/hyper-v/Enable-VMMigration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/enable-vmmigration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/enable-vmmigration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-VMMigration --- diff --git a/docset/winserver2022-ps/hyper-v/Enable-VMRemoteFXPhysicalVideoAdapter.md b/docset/winserver2022-ps/hyper-v/Enable-VMRemoteFXPhysicalVideoAdapter.md index c9502c86d1..14fe77f198 100644 --- a/docset/winserver2022-ps/hyper-v/Enable-VMRemoteFXPhysicalVideoAdapter.md +++ b/docset/winserver2022-ps/hyper-v/Enable-VMRemoteFXPhysicalVideoAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/enable-vmremotefxphysicalvideoadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/enable-vmremotefxphysicalvideoadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-VMRemoteFXPhysicalVideoAdapter --- diff --git a/docset/winserver2022-ps/hyper-v/Enable-VMReplication.md b/docset/winserver2022-ps/hyper-v/Enable-VMReplication.md index 7f5cdbf872..564c648854 100644 --- a/docset/winserver2022-ps/hyper-v/Enable-VMReplication.md +++ b/docset/winserver2022-ps/hyper-v/Enable-VMReplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/enable-vmreplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/enable-vmreplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-VMReplication --- diff --git a/docset/winserver2022-ps/hyper-v/Enable-VMResourceMetering.md b/docset/winserver2022-ps/hyper-v/Enable-VMResourceMetering.md index 11b1b1502e..bb2fb10b54 100644 --- a/docset/winserver2022-ps/hyper-v/Enable-VMResourceMetering.md +++ b/docset/winserver2022-ps/hyper-v/Enable-VMResourceMetering.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/enable-vmresourcemetering?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/enable-vmresourcemetering?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-VMResourceMetering --- diff --git a/docset/winserver2022-ps/hyper-v/Enable-VMSwitchExtension.md b/docset/winserver2022-ps/hyper-v/Enable-VMSwitchExtension.md index 4d09b8b0dc..fc7752c40b 100644 --- a/docset/winserver2022-ps/hyper-v/Enable-VMSwitchExtension.md +++ b/docset/winserver2022-ps/hyper-v/Enable-VMSwitchExtension.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/enable-vmswitchextension?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/enable-vmswitchextension?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-VMSwitchExtension --- diff --git a/docset/winserver2022-ps/hyper-v/Enable-VMTPM.md b/docset/winserver2022-ps/hyper-v/Enable-VMTPM.md index 02a12e1f46..32ea4dd2ba 100644 --- a/docset/winserver2022-ps/hyper-v/Enable-VMTPM.md +++ b/docset/winserver2022-ps/hyper-v/Enable-VMTPM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/enable-vmtpm?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/enable-vmtpm?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-VMTPM --- diff --git a/docset/winserver2022-ps/hyper-v/Export-VM.md b/docset/winserver2022-ps/hyper-v/Export-VM.md index 8a1d84d65d..846d5764a2 100644 --- a/docset/winserver2022-ps/hyper-v/Export-VM.md +++ b/docset/winserver2022-ps/hyper-v/Export-VM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/export-vm?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/export-vm?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-VM --- diff --git a/docset/winserver2022-ps/hyper-v/Export-VMSnapshot.md b/docset/winserver2022-ps/hyper-v/Export-VMSnapshot.md index b28909c458..daabc30341 100644 --- a/docset/winserver2022-ps/hyper-v/Export-VMSnapshot.md +++ b/docset/winserver2022-ps/hyper-v/Export-VMSnapshot.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/export-vmsnapshot?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/export-vmsnapshot?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-VMSnapshot --- diff --git a/docset/winserver2022-ps/hyper-v/Get-VHD.md b/docset/winserver2022-ps/hyper-v/Get-VHD.md index 3d9188f0ed..6e0991324d 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VHD.md +++ b/docset/winserver2022-ps/hyper-v/Get-VHD.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vhd?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vhd?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VHD --- diff --git a/docset/winserver2022-ps/hyper-v/Get-VHDSet.md b/docset/winserver2022-ps/hyper-v/Get-VHDSet.md index af399d6785..bfe72a4c9a 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VHDSet.md +++ b/docset/winserver2022-ps/hyper-v/Get-VHDSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vhdset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vhdset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VHDSet --- diff --git a/docset/winserver2022-ps/hyper-v/Get-VHDSnapshot.md b/docset/winserver2022-ps/hyper-v/Get-VHDSnapshot.md index 7b25903957..0ac2930603 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VHDSnapshot.md +++ b/docset/winserver2022-ps/hyper-v/Get-VHDSnapshot.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vhdsnapshot?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vhdsnapshot?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VHDSnapshot --- diff --git a/docset/winserver2022-ps/hyper-v/Get-VM.md b/docset/winserver2022-ps/hyper-v/Get-VM.md index aebe16f2dc..7064bf88f1 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VM.md +++ b/docset/winserver2022-ps/hyper-v/Get-VM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vm?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vm?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VM --- diff --git a/docset/winserver2022-ps/hyper-v/Get-VMBios.md b/docset/winserver2022-ps/hyper-v/Get-VMBios.md index 90068e5cf5..ede013169a 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMBios.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMBios.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmbios?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmbios?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMBios --- diff --git a/docset/winserver2022-ps/hyper-v/Get-VMComPort.md b/docset/winserver2022-ps/hyper-v/Get-VMComPort.md index cf7d7b1873..13be27b496 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMComPort.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMComPort.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmcomport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmcomport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMComPort --- diff --git a/docset/winserver2022-ps/hyper-v/Get-VMConnectAccess.md b/docset/winserver2022-ps/hyper-v/Get-VMConnectAccess.md index 99b165d89b..f925223b54 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMConnectAccess.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMConnectAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmconnectaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmconnectaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMConnectAccess --- diff --git a/docset/winserver2022-ps/hyper-v/Get-VMDvdDrive.md b/docset/winserver2022-ps/hyper-v/Get-VMDvdDrive.md index fba5807f4d..f9ba37fc3a 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMDvdDrive.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMDvdDrive.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmdvddrive?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmdvddrive?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMDvdDrive --- diff --git a/docset/winserver2022-ps/hyper-v/Get-VMFibreChannelHba.md b/docset/winserver2022-ps/hyper-v/Get-VMFibreChannelHba.md index cad3a0df83..222332dcea 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMFibreChannelHba.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMFibreChannelHba.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmfibrechannelhba?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmfibrechannelhba?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMFibreChannelHba --- diff --git a/docset/winserver2022-ps/hyper-v/Get-VMFirmware.md b/docset/winserver2022-ps/hyper-v/Get-VMFirmware.md index ceb169518a..a9a5d56d8c 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMFirmware.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMFirmware.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmfirmware?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmfirmware?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMFirmware --- diff --git a/docset/winserver2022-ps/hyper-v/Get-VMFloppyDiskDrive.md b/docset/winserver2022-ps/hyper-v/Get-VMFloppyDiskDrive.md index 96c8f3c80b..09e8e6927e 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMFloppyDiskDrive.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMFloppyDiskDrive.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmfloppydiskdrive?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmfloppydiskdrive?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMFloppyDiskDrive --- diff --git a/docset/winserver2022-ps/hyper-v/Get-VMGroup.md b/docset/winserver2022-ps/hyper-v/Get-VMGroup.md index 0a41bef31c..d9c81ebf10 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMGroup.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMGroup --- diff --git a/docset/winserver2022-ps/hyper-v/Get-VMHardDiskDrive.md b/docset/winserver2022-ps/hyper-v/Get-VMHardDiskDrive.md index 498ea87aa3..9b5d4449c4 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMHardDiskDrive.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMHardDiskDrive.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmharddiskdrive?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmharddiskdrive?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMHardDiskDrive --- diff --git a/docset/winserver2022-ps/hyper-v/Get-VMHost.md b/docset/winserver2022-ps/hyper-v/Get-VMHost.md index cb6c0b0ba8..b705f8bda4 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMHost.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMHost.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmhost?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmhost?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMHost --- diff --git a/docset/winserver2022-ps/hyper-v/Get-VMHostCluster.md b/docset/winserver2022-ps/hyper-v/Get-VMHostCluster.md index 949b8936e8..4bc5fee72c 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMHostCluster.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMHostCluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmhostcluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmhostcluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMHostCluster --- diff --git a/docset/winserver2022-ps/hyper-v/Get-VMHostNumaNode.md b/docset/winserver2022-ps/hyper-v/Get-VMHostNumaNode.md index 6226436c61..3842ef3158 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMHostNumaNode.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMHostNumaNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmhostnumanode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmhostnumanode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMHostNumaNode --- diff --git a/docset/winserver2022-ps/hyper-v/Get-VMHostNumaNodeStatus.md b/docset/winserver2022-ps/hyper-v/Get-VMHostNumaNodeStatus.md index f9f85269d0..b05d4aaaf6 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMHostNumaNodeStatus.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMHostNumaNodeStatus.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmhostnumanodestatus?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmhostnumanodestatus?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMHostNumaNodeStatus --- diff --git a/docset/winserver2022-ps/hyper-v/Get-VMHostSupportedVersion.md b/docset/winserver2022-ps/hyper-v/Get-VMHostSupportedVersion.md index f313016fc9..4744312c63 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMHostSupportedVersion.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMHostSupportedVersion.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmhostsupportedversion?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmhostsupportedversion?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMHostSupportedVersion --- diff --git a/docset/winserver2022-ps/hyper-v/Get-VMIdeController.md b/docset/winserver2022-ps/hyper-v/Get-VMIdeController.md index b0e82ab3e2..89921b9ac9 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMIdeController.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMIdeController.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmidecontroller?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmidecontroller?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMIdeController --- diff --git a/docset/winserver2022-ps/hyper-v/Get-VMIntegrationService.md b/docset/winserver2022-ps/hyper-v/Get-VMIntegrationService.md index 0989ff0d0c..f3bc66d39f 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMIntegrationService.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMIntegrationService.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmintegrationservice?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmintegrationservice?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMIntegrationService --- diff --git a/docset/winserver2022-ps/hyper-v/Get-VMKeyProtector.md b/docset/winserver2022-ps/hyper-v/Get-VMKeyProtector.md index 3c40e73ba3..665a32d445 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMKeyProtector.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMKeyProtector.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmkeyprotector?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmkeyprotector?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMKeyProtector --- diff --git a/docset/winserver2022-ps/hyper-v/Get-VMMemory.md b/docset/winserver2022-ps/hyper-v/Get-VMMemory.md index 86181865cc..9f79c503af 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMMemory.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMMemory.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmmemory?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmmemory?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMMemory --- diff --git a/docset/winserver2022-ps/hyper-v/Get-VMMigrationNetwork.md b/docset/winserver2022-ps/hyper-v/Get-VMMigrationNetwork.md index d2195b1c8a..39ca111c10 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMMigrationNetwork.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMMigrationNetwork.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmmigrationnetwork?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmmigrationnetwork?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMMigrationNetwork --- diff --git a/docset/winserver2022-ps/hyper-v/Get-VMNetworkAdapter.md b/docset/winserver2022-ps/hyper-v/Get-VMNetworkAdapter.md index b32baec4cb..42f8d2c5ae 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMNetworkAdapter.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMNetworkAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMNetworkAdapter --- diff --git a/docset/winserver2022-ps/hyper-v/Get-VMNetworkAdapterAcl.md b/docset/winserver2022-ps/hyper-v/Get-VMNetworkAdapterAcl.md index 0dc386acbe..296f175cfd 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMNetworkAdapterAcl.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMNetworkAdapterAcl.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapteracl?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapteracl?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMNetworkAdapterAcl --- diff --git a/docset/winserver2022-ps/hyper-v/Get-VMNetworkAdapterExtendedAcl.md b/docset/winserver2022-ps/hyper-v/Get-VMNetworkAdapterExtendedAcl.md index fbdacf18e6..ab55f36759 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMNetworkAdapterExtendedAcl.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMNetworkAdapterExtendedAcl.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapterextendedacl?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapterextendedacl?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMNetworkAdapterExtendedAcl --- diff --git a/docset/winserver2022-ps/hyper-v/Get-VMNetworkAdapterFailoverConfiguration.md b/docset/winserver2022-ps/hyper-v/Get-VMNetworkAdapterFailoverConfiguration.md index 4f718e9b8d..6e1b7fd5ea 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMNetworkAdapterFailoverConfiguration.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMNetworkAdapterFailoverConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapterfailoverconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapterfailoverconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMNetworkAdapterFailoverConfiguration --- diff --git a/docset/winserver2022-ps/hyper-v/Get-VMNetworkAdapterRoutingDomainMapping.md b/docset/winserver2022-ps/hyper-v/Get-VMNetworkAdapterRoutingDomainMapping.md index 69a5d824bd..af5f3acf84 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMNetworkAdapterRoutingDomainMapping.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMNetworkAdapterRoutingDomainMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapterroutingdomainmapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapterroutingdomainmapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMNetworkAdapterRoutingDomainMapping --- diff --git a/docset/winserver2022-ps/hyper-v/Get-VMNetworkAdapterTeamMapping.md b/docset/winserver2022-ps/hyper-v/Get-VMNetworkAdapterTeamMapping.md index 1e9b79ab78..abc5ef9aa7 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMNetworkAdapterTeamMapping.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMNetworkAdapterTeamMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapterteammapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapterteammapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMNetworkAdapterTeamMapping --- diff --git a/docset/winserver2022-ps/hyper-v/Get-VMNetworkAdapterVlan.md b/docset/winserver2022-ps/hyper-v/Get-VMNetworkAdapterVlan.md index a9e985424b..452988efec 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMNetworkAdapterVlan.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMNetworkAdapterVlan.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmnetworkadaptervlan?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmnetworkadaptervlan?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMNetworkAdapterVlan --- diff --git a/docset/winserver2022-ps/hyper-v/Get-VMProcessor.md b/docset/winserver2022-ps/hyper-v/Get-VMProcessor.md index c60ae1be25..4d1871b37b 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMProcessor.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMProcessor.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmprocessor?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmprocessor?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMProcessor --- diff --git a/docset/winserver2022-ps/hyper-v/Get-VMRemoteFXPhysicalVideoAdapter.md b/docset/winserver2022-ps/hyper-v/Get-VMRemoteFXPhysicalVideoAdapter.md index 6c98b171b9..a5420cd33d 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMRemoteFXPhysicalVideoAdapter.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMRemoteFXPhysicalVideoAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmremotefxphysicalvideoadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmremotefxphysicalvideoadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMRemoteFXPhysicalVideoAdapter --- diff --git a/docset/winserver2022-ps/hyper-v/Get-VMRemoteFx3dVideoAdapter.md b/docset/winserver2022-ps/hyper-v/Get-VMRemoteFx3dVideoAdapter.md index 8ced691b1a..98565fd111 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMRemoteFx3dVideoAdapter.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMRemoteFx3dVideoAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmremotefx3dvideoadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmremotefx3dvideoadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMRemoteFx3dVideoAdapter --- diff --git a/docset/winserver2022-ps/hyper-v/Get-VMReplication.md b/docset/winserver2022-ps/hyper-v/Get-VMReplication.md index b4b2521ec6..191233c91e 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMReplication.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMReplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmreplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmreplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMReplication --- diff --git a/docset/winserver2022-ps/hyper-v/Get-VMReplicationAuthorizationEntry.md b/docset/winserver2022-ps/hyper-v/Get-VMReplicationAuthorizationEntry.md index 6f56bfe9e9..fb7ff770d5 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMReplicationAuthorizationEntry.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMReplicationAuthorizationEntry.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmreplicationauthorizationentry?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmreplicationauthorizationentry?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMReplicationAuthorizationEntry --- diff --git a/docset/winserver2022-ps/hyper-v/Get-VMReplicationServer.md b/docset/winserver2022-ps/hyper-v/Get-VMReplicationServer.md index 05ec1c96fb..3c005832f9 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMReplicationServer.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMReplicationServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmreplicationserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmreplicationserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMReplicationServer --- diff --git a/docset/winserver2022-ps/hyper-v/Get-VMResourcePool.md b/docset/winserver2022-ps/hyper-v/Get-VMResourcePool.md index 3df6786891..4b207a7612 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMResourcePool.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMResourcePool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmresourcepool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmresourcepool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMResourcePool --- diff --git a/docset/winserver2022-ps/hyper-v/Get-VMSan.md b/docset/winserver2022-ps/hyper-v/Get-VMSan.md index cf625191a2..4ccc5c9167 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMSan.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMSan.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmsan?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmsan?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMSan --- diff --git a/docset/winserver2022-ps/hyper-v/Get-VMScsiController.md b/docset/winserver2022-ps/hyper-v/Get-VMScsiController.md index ed74df45e2..be0596dd03 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMScsiController.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMScsiController.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmscsicontroller?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmscsicontroller?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMScsiController --- diff --git a/docset/winserver2022-ps/hyper-v/Get-VMSecurity.md b/docset/winserver2022-ps/hyper-v/Get-VMSecurity.md index 2ef7f8665e..228e974d9d 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMSecurity.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMSecurity.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmsecurity?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmsecurity?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMSecurity --- diff --git a/docset/winserver2022-ps/hyper-v/Get-VMSnapshot.md b/docset/winserver2022-ps/hyper-v/Get-VMSnapshot.md index f735b784e0..f16e05b809 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMSnapshot.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMSnapshot.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmsnapshot?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmsnapshot?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMSnapshot --- diff --git a/docset/winserver2022-ps/hyper-v/Get-VMStoragePath.md b/docset/winserver2022-ps/hyper-v/Get-VMStoragePath.md index f9edb8bf60..f5885bdb8e 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMStoragePath.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMStoragePath.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmstoragepath?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmstoragepath?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMStoragePath --- diff --git a/docset/winserver2022-ps/hyper-v/Get-VMSwitch.md b/docset/winserver2022-ps/hyper-v/Get-VMSwitch.md index 3fa49c6876..dc1ba44320 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMSwitch.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMSwitch.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmswitch?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmswitch?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMSwitch --- diff --git a/docset/winserver2022-ps/hyper-v/Get-VMSwitchExtension.md b/docset/winserver2022-ps/hyper-v/Get-VMSwitchExtension.md index a896592dc9..86c1ff3614 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMSwitchExtension.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMSwitchExtension.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmswitchextension?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmswitchextension?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMSwitchExtension --- diff --git a/docset/winserver2022-ps/hyper-v/Get-VMSwitchExtensionPortData.md b/docset/winserver2022-ps/hyper-v/Get-VMSwitchExtensionPortData.md index a018cf4a01..eb00cb771d 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMSwitchExtensionPortData.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMSwitchExtensionPortData.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmswitchextensionportdata?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmswitchextensionportdata?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMSwitchExtensionPortData --- diff --git a/docset/winserver2022-ps/hyper-v/Get-VMSwitchExtensionPortFeature.md b/docset/winserver2022-ps/hyper-v/Get-VMSwitchExtensionPortFeature.md index a553427195..4dcdaf5334 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMSwitchExtensionPortFeature.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMSwitchExtensionPortFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmswitchextensionportfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmswitchextensionportfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMSwitchExtensionPortFeature --- diff --git a/docset/winserver2022-ps/hyper-v/Get-VMSwitchExtensionSwitchData.md b/docset/winserver2022-ps/hyper-v/Get-VMSwitchExtensionSwitchData.md index 89a2f90e37..f3885b3d4f 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMSwitchExtensionSwitchData.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMSwitchExtensionSwitchData.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmswitchextensionswitchdata?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmswitchextensionswitchdata?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMSwitchExtensionSwitchData --- diff --git a/docset/winserver2022-ps/hyper-v/Get-VMSwitchExtensionSwitchFeature.md b/docset/winserver2022-ps/hyper-v/Get-VMSwitchExtensionSwitchFeature.md index f37a2be28f..a8271a46f2 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMSwitchExtensionSwitchFeature.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMSwitchExtensionSwitchFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmswitchextensionswitchfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmswitchextensionswitchfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMSwitchExtensionSwitchFeature --- diff --git a/docset/winserver2022-ps/hyper-v/Get-VMSwitchTeam.md b/docset/winserver2022-ps/hyper-v/Get-VMSwitchTeam.md index 1f92af735f..4617bd516c 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMSwitchTeam.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMSwitchTeam.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmswitchteam?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmswitchteam?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMSwitchTeam --- diff --git a/docset/winserver2022-ps/hyper-v/Get-VMSystemSwitchExtension.md b/docset/winserver2022-ps/hyper-v/Get-VMSystemSwitchExtension.md index 9a9d9e4661..1166d91cfd 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMSystemSwitchExtension.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMSystemSwitchExtension.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmsystemswitchextension?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmsystemswitchextension?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMSystemSwitchExtension --- diff --git a/docset/winserver2022-ps/hyper-v/Get-VMSystemSwitchExtensionPortFeature.md b/docset/winserver2022-ps/hyper-v/Get-VMSystemSwitchExtensionPortFeature.md index 16ad9cf4e8..c3a31e51ac 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMSystemSwitchExtensionPortFeature.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMSystemSwitchExtensionPortFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmsystemswitchextensionportfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmsystemswitchextensionportfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMSystemSwitchExtensionPortFeature --- diff --git a/docset/winserver2022-ps/hyper-v/Get-VMSystemSwitchExtensionSwitchFeature.md b/docset/winserver2022-ps/hyper-v/Get-VMSystemSwitchExtensionSwitchFeature.md index d6773d6cd4..504c52eada 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMSystemSwitchExtensionSwitchFeature.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMSystemSwitchExtensionSwitchFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmsystemswitchextensionswitchfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmsystemswitchextensionswitchfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMSystemSwitchExtensionSwitchFeature --- diff --git a/docset/winserver2022-ps/hyper-v/Get-VMVideo.md b/docset/winserver2022-ps/hyper-v/Get-VMVideo.md index a57f1fc6bb..81c3fe7ade 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMVideo.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMVideo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmvideo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmvideo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMVideo --- diff --git a/docset/winserver2022-ps/hyper-v/Get-VmNetworkAdapterIsolation.md b/docset/winserver2022-ps/hyper-v/Get-VmNetworkAdapterIsolation.md index 2008dd50c2..8f2bae3e6d 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VmNetworkAdapterIsolation.md +++ b/docset/winserver2022-ps/hyper-v/Get-VmNetworkAdapterIsolation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapterisolation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapterisolation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VmNetworkAdapterIsolation --- diff --git a/docset/winserver2022-ps/hyper-v/Grant-VMConnectAccess.md b/docset/winserver2022-ps/hyper-v/Grant-VMConnectAccess.md index 91aa113c57..6e8452ce91 100644 --- a/docset/winserver2022-ps/hyper-v/Grant-VMConnectAccess.md +++ b/docset/winserver2022-ps/hyper-v/Grant-VMConnectAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/grant-vmconnectaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/grant-vmconnectaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Grant-VMConnectAccess --- diff --git a/docset/winserver2022-ps/hyper-v/Import-VM.md b/docset/winserver2022-ps/hyper-v/Import-VM.md index 7f68446c5a..a4f8cf0399 100644 --- a/docset/winserver2022-ps/hyper-v/Import-VM.md +++ b/docset/winserver2022-ps/hyper-v/Import-VM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/import-vm?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/import-vm?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-VM --- diff --git a/docset/winserver2022-ps/hyper-v/Import-VMInitialReplication.md b/docset/winserver2022-ps/hyper-v/Import-VMInitialReplication.md index f9200a9a5d..8d7e38de09 100644 --- a/docset/winserver2022-ps/hyper-v/Import-VMInitialReplication.md +++ b/docset/winserver2022-ps/hyper-v/Import-VMInitialReplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/import-vminitialreplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/import-vminitialreplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-VMInitialReplication --- diff --git a/docset/winserver2022-ps/hyper-v/Measure-VM.md b/docset/winserver2022-ps/hyper-v/Measure-VM.md index 5fa2d35444..2690e9e8dc 100644 --- a/docset/winserver2022-ps/hyper-v/Measure-VM.md +++ b/docset/winserver2022-ps/hyper-v/Measure-VM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/measure-vm?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/measure-vm?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Measure-VM --- diff --git a/docset/winserver2022-ps/hyper-v/Measure-VMReplication.md b/docset/winserver2022-ps/hyper-v/Measure-VMReplication.md index e03a32d9d7..084fb5e9ef 100644 --- a/docset/winserver2022-ps/hyper-v/Measure-VMReplication.md +++ b/docset/winserver2022-ps/hyper-v/Measure-VMReplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/measure-vmreplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/measure-vmreplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Measure-VMReplication --- diff --git a/docset/winserver2022-ps/hyper-v/Measure-VMResourcePool.md b/docset/winserver2022-ps/hyper-v/Measure-VMResourcePool.md index a32e314c9c..cec78f19fe 100644 --- a/docset/winserver2022-ps/hyper-v/Measure-VMResourcePool.md +++ b/docset/winserver2022-ps/hyper-v/Measure-VMResourcePool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/measure-vmresourcepool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/measure-vmresourcepool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Measure-VMResourcePool --- diff --git a/docset/winserver2022-ps/hyper-v/Merge-VHD.md b/docset/winserver2022-ps/hyper-v/Merge-VHD.md index aa6777a630..45e3d3d8cf 100644 --- a/docset/winserver2022-ps/hyper-v/Merge-VHD.md +++ b/docset/winserver2022-ps/hyper-v/Merge-VHD.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/merge-vhd?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/merge-vhd?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Merge-VHD --- diff --git a/docset/winserver2022-ps/hyper-v/Mount-VHD.md b/docset/winserver2022-ps/hyper-v/Mount-VHD.md index 2bc3fd7147..43c1d6eb99 100644 --- a/docset/winserver2022-ps/hyper-v/Mount-VHD.md +++ b/docset/winserver2022-ps/hyper-v/Mount-VHD.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/mount-vhd?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/mount-vhd?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Mount-VHD --- diff --git a/docset/winserver2022-ps/hyper-v/Move-VM.md b/docset/winserver2022-ps/hyper-v/Move-VM.md index 3137f47f96..656b04c3cd 100644 --- a/docset/winserver2022-ps/hyper-v/Move-VM.md +++ b/docset/winserver2022-ps/hyper-v/Move-VM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/move-vm?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/move-vm?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-VM --- diff --git a/docset/winserver2022-ps/hyper-v/Move-VMStorage.md b/docset/winserver2022-ps/hyper-v/Move-VMStorage.md index 19fb0024f5..7a1dc76fae 100644 --- a/docset/winserver2022-ps/hyper-v/Move-VMStorage.md +++ b/docset/winserver2022-ps/hyper-v/Move-VMStorage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/move-vmstorage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/move-vmstorage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-VMStorage --- diff --git a/docset/winserver2022-ps/hyper-v/New-VFD.md b/docset/winserver2022-ps/hyper-v/New-VFD.md index ef0468051f..0c9af0b9a8 100644 --- a/docset/winserver2022-ps/hyper-v/New-VFD.md +++ b/docset/winserver2022-ps/hyper-v/New-VFD.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/new-vfd?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/new-vfd?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VFD --- diff --git a/docset/winserver2022-ps/hyper-v/New-VHD.md b/docset/winserver2022-ps/hyper-v/New-VHD.md index e830bc045f..3fa9f4ebed 100644 --- a/docset/winserver2022-ps/hyper-v/New-VHD.md +++ b/docset/winserver2022-ps/hyper-v/New-VHD.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/new-vhd?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/new-vhd?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VHD --- diff --git a/docset/winserver2022-ps/hyper-v/New-VM.md b/docset/winserver2022-ps/hyper-v/New-VM.md index a3f5081602..e4d5bdd7d8 100644 --- a/docset/winserver2022-ps/hyper-v/New-VM.md +++ b/docset/winserver2022-ps/hyper-v/New-VM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/new-vm?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/new-vm?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VM --- diff --git a/docset/winserver2022-ps/hyper-v/New-VMGroup.md b/docset/winserver2022-ps/hyper-v/New-VMGroup.md index e0e474413a..e3d884df2d 100644 --- a/docset/winserver2022-ps/hyper-v/New-VMGroup.md +++ b/docset/winserver2022-ps/hyper-v/New-VMGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/new-vmgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/new-vmgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VMGroup --- diff --git a/docset/winserver2022-ps/hyper-v/New-VMReplicationAuthorizationEntry.md b/docset/winserver2022-ps/hyper-v/New-VMReplicationAuthorizationEntry.md index c03066421e..60a9ecd10c 100644 --- a/docset/winserver2022-ps/hyper-v/New-VMReplicationAuthorizationEntry.md +++ b/docset/winserver2022-ps/hyper-v/New-VMReplicationAuthorizationEntry.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/new-vmreplicationauthorizationentry?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/new-vmreplicationauthorizationentry?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VMReplicationAuthorizationEntry --- diff --git a/docset/winserver2022-ps/hyper-v/New-VMResourcePool.md b/docset/winserver2022-ps/hyper-v/New-VMResourcePool.md index 5335131a4f..a4f399d33a 100644 --- a/docset/winserver2022-ps/hyper-v/New-VMResourcePool.md +++ b/docset/winserver2022-ps/hyper-v/New-VMResourcePool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/new-vmresourcepool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/new-vmresourcepool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VMResourcePool --- diff --git a/docset/winserver2022-ps/hyper-v/New-VMSan.md b/docset/winserver2022-ps/hyper-v/New-VMSan.md index 939c144069..f3eb354e0b 100644 --- a/docset/winserver2022-ps/hyper-v/New-VMSan.md +++ b/docset/winserver2022-ps/hyper-v/New-VMSan.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/new-vmsan?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/new-vmsan?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VMSan --- diff --git a/docset/winserver2022-ps/hyper-v/New-VMSwitch.md b/docset/winserver2022-ps/hyper-v/New-VMSwitch.md index 6318d7e0ba..4ed0b571f5 100644 --- a/docset/winserver2022-ps/hyper-v/New-VMSwitch.md +++ b/docset/winserver2022-ps/hyper-v/New-VMSwitch.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/new-vmswitch?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/new-vmswitch?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VMSwitch --- diff --git a/docset/winserver2022-ps/hyper-v/Optimize-VHD.md b/docset/winserver2022-ps/hyper-v/Optimize-VHD.md index bcbb677b89..04cad74c2f 100644 --- a/docset/winserver2022-ps/hyper-v/Optimize-VHD.md +++ b/docset/winserver2022-ps/hyper-v/Optimize-VHD.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/optimize-vhd?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/optimize-vhd?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Optimize-VHD --- diff --git a/docset/winserver2022-ps/hyper-v/Optimize-VHDSet.md b/docset/winserver2022-ps/hyper-v/Optimize-VHDSet.md index 32127a631a..5865b60216 100644 --- a/docset/winserver2022-ps/hyper-v/Optimize-VHDSet.md +++ b/docset/winserver2022-ps/hyper-v/Optimize-VHDSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/optimize-vhdset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/optimize-vhdset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Optimize-VHDSet --- diff --git a/docset/winserver2022-ps/hyper-v/Remove-VHDSnapshot.md b/docset/winserver2022-ps/hyper-v/Remove-VHDSnapshot.md index 17dcfd877c..a7eade58cb 100644 --- a/docset/winserver2022-ps/hyper-v/Remove-VHDSnapshot.md +++ b/docset/winserver2022-ps/hyper-v/Remove-VHDSnapshot.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vhdsnapshot?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vhdsnapshot?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VHDSnapshot --- diff --git a/docset/winserver2022-ps/hyper-v/Remove-VM.md b/docset/winserver2022-ps/hyper-v/Remove-VM.md index a5762ee77a..faf23cdb2f 100644 --- a/docset/winserver2022-ps/hyper-v/Remove-VM.md +++ b/docset/winserver2022-ps/hyper-v/Remove-VM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vm?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vm?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VM --- diff --git a/docset/winserver2022-ps/hyper-v/Remove-VMDvdDrive.md b/docset/winserver2022-ps/hyper-v/Remove-VMDvdDrive.md index 3a0fd97065..91a653a994 100644 --- a/docset/winserver2022-ps/hyper-v/Remove-VMDvdDrive.md +++ b/docset/winserver2022-ps/hyper-v/Remove-VMDvdDrive.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmdvddrive?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmdvddrive?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMDvdDrive --- diff --git a/docset/winserver2022-ps/hyper-v/Remove-VMFibreChannelHba.md b/docset/winserver2022-ps/hyper-v/Remove-VMFibreChannelHba.md index 437f420920..7c0849c750 100644 --- a/docset/winserver2022-ps/hyper-v/Remove-VMFibreChannelHba.md +++ b/docset/winserver2022-ps/hyper-v/Remove-VMFibreChannelHba.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmfibrechannelhba?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmfibrechannelhba?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMFibreChannelHba --- diff --git a/docset/winserver2022-ps/hyper-v/Remove-VMGroup.md b/docset/winserver2022-ps/hyper-v/Remove-VMGroup.md index 764cb37334..c9ff600e9a 100644 --- a/docset/winserver2022-ps/hyper-v/Remove-VMGroup.md +++ b/docset/winserver2022-ps/hyper-v/Remove-VMGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMGroup --- diff --git a/docset/winserver2022-ps/hyper-v/Remove-VMGroupMember.md b/docset/winserver2022-ps/hyper-v/Remove-VMGroupMember.md index 634e1293a6..42b2982630 100644 --- a/docset/winserver2022-ps/hyper-v/Remove-VMGroupMember.md +++ b/docset/winserver2022-ps/hyper-v/Remove-VMGroupMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmgroupmember?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmgroupmember?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMGroupMember --- diff --git a/docset/winserver2022-ps/hyper-v/Remove-VMHardDiskDrive.md b/docset/winserver2022-ps/hyper-v/Remove-VMHardDiskDrive.md index 4481559315..1f1c9b7ca9 100644 --- a/docset/winserver2022-ps/hyper-v/Remove-VMHardDiskDrive.md +++ b/docset/winserver2022-ps/hyper-v/Remove-VMHardDiskDrive.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmharddiskdrive?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmharddiskdrive?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMHardDiskDrive --- diff --git a/docset/winserver2022-ps/hyper-v/Remove-VMMigrationNetwork.md b/docset/winserver2022-ps/hyper-v/Remove-VMMigrationNetwork.md index 9605eb35e1..fb32d8a4fb 100644 --- a/docset/winserver2022-ps/hyper-v/Remove-VMMigrationNetwork.md +++ b/docset/winserver2022-ps/hyper-v/Remove-VMMigrationNetwork.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmmigrationnetwork?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmmigrationnetwork?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMMigrationNetwork --- diff --git a/docset/winserver2022-ps/hyper-v/Remove-VMNetworkAdapter.md b/docset/winserver2022-ps/hyper-v/Remove-VMNetworkAdapter.md index 4edb46c439..ba87b8b217 100644 --- a/docset/winserver2022-ps/hyper-v/Remove-VMNetworkAdapter.md +++ b/docset/winserver2022-ps/hyper-v/Remove-VMNetworkAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmnetworkadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmnetworkadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMNetworkAdapter --- diff --git a/docset/winserver2022-ps/hyper-v/Remove-VMNetworkAdapterAcl.md b/docset/winserver2022-ps/hyper-v/Remove-VMNetworkAdapterAcl.md index cff777943f..e0892e23d8 100644 --- a/docset/winserver2022-ps/hyper-v/Remove-VMNetworkAdapterAcl.md +++ b/docset/winserver2022-ps/hyper-v/Remove-VMNetworkAdapterAcl.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmnetworkadapteracl?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmnetworkadapteracl?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMNetworkAdapterAcl --- diff --git a/docset/winserver2022-ps/hyper-v/Remove-VMNetworkAdapterExtendedAcl.md b/docset/winserver2022-ps/hyper-v/Remove-VMNetworkAdapterExtendedAcl.md index b0f5b99945..676f5b000a 100644 --- a/docset/winserver2022-ps/hyper-v/Remove-VMNetworkAdapterExtendedAcl.md +++ b/docset/winserver2022-ps/hyper-v/Remove-VMNetworkAdapterExtendedAcl.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmnetworkadapterextendedacl?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmnetworkadapterextendedacl?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMNetworkAdapterExtendedAcl --- diff --git a/docset/winserver2022-ps/hyper-v/Remove-VMNetworkAdapterRoutingDomainMapping.md b/docset/winserver2022-ps/hyper-v/Remove-VMNetworkAdapterRoutingDomainMapping.md index 48ef653168..23d68d4f5e 100644 --- a/docset/winserver2022-ps/hyper-v/Remove-VMNetworkAdapterRoutingDomainMapping.md +++ b/docset/winserver2022-ps/hyper-v/Remove-VMNetworkAdapterRoutingDomainMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmnetworkadapterroutingdomainmapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmnetworkadapterroutingdomainmapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMNetworkAdapterRoutingDomainMapping --- diff --git a/docset/winserver2022-ps/hyper-v/Remove-VMNetworkAdapterTeamMapping.md b/docset/winserver2022-ps/hyper-v/Remove-VMNetworkAdapterTeamMapping.md index 7696c22e69..5090b0150d 100644 --- a/docset/winserver2022-ps/hyper-v/Remove-VMNetworkAdapterTeamMapping.md +++ b/docset/winserver2022-ps/hyper-v/Remove-VMNetworkAdapterTeamMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmnetworkadapterteammapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmnetworkadapterteammapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMNetworkAdapterTeamMapping --- diff --git a/docset/winserver2022-ps/hyper-v/Remove-VMRemoteFx3dVideoAdapter.md b/docset/winserver2022-ps/hyper-v/Remove-VMRemoteFx3dVideoAdapter.md index ebe7b4e0ce..c7710a4d9e 100644 --- a/docset/winserver2022-ps/hyper-v/Remove-VMRemoteFx3dVideoAdapter.md +++ b/docset/winserver2022-ps/hyper-v/Remove-VMRemoteFx3dVideoAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmremotefx3dvideoadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmremotefx3dvideoadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMRemoteFx3dVideoAdapter --- diff --git a/docset/winserver2022-ps/hyper-v/Remove-VMReplication.md b/docset/winserver2022-ps/hyper-v/Remove-VMReplication.md index de9d33a253..2e0a8bb2a2 100644 --- a/docset/winserver2022-ps/hyper-v/Remove-VMReplication.md +++ b/docset/winserver2022-ps/hyper-v/Remove-VMReplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmreplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmreplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMReplication --- diff --git a/docset/winserver2022-ps/hyper-v/Remove-VMReplicationAuthorizationEntry.md b/docset/winserver2022-ps/hyper-v/Remove-VMReplicationAuthorizationEntry.md index 3fa65c363a..cabc745c5e 100644 --- a/docset/winserver2022-ps/hyper-v/Remove-VMReplicationAuthorizationEntry.md +++ b/docset/winserver2022-ps/hyper-v/Remove-VMReplicationAuthorizationEntry.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmreplicationauthorizationentry?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmreplicationauthorizationentry?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMReplicationAuthorizationEntry --- diff --git a/docset/winserver2022-ps/hyper-v/Remove-VMResourcePool.md b/docset/winserver2022-ps/hyper-v/Remove-VMResourcePool.md index 91c228d8c4..47c06f9422 100644 --- a/docset/winserver2022-ps/hyper-v/Remove-VMResourcePool.md +++ b/docset/winserver2022-ps/hyper-v/Remove-VMResourcePool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmresourcepool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmresourcepool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMResourcePool --- diff --git a/docset/winserver2022-ps/hyper-v/Remove-VMSan.md b/docset/winserver2022-ps/hyper-v/Remove-VMSan.md index f35c990bf7..b093a54efb 100644 --- a/docset/winserver2022-ps/hyper-v/Remove-VMSan.md +++ b/docset/winserver2022-ps/hyper-v/Remove-VMSan.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmsan?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmsan?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMSan --- diff --git a/docset/winserver2022-ps/hyper-v/Remove-VMSavedState.md b/docset/winserver2022-ps/hyper-v/Remove-VMSavedState.md index 4261949c9d..a06f901052 100644 --- a/docset/winserver2022-ps/hyper-v/Remove-VMSavedState.md +++ b/docset/winserver2022-ps/hyper-v/Remove-VMSavedState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmsavedstate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmsavedstate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMSavedState --- diff --git a/docset/winserver2022-ps/hyper-v/Remove-VMScsiController.md b/docset/winserver2022-ps/hyper-v/Remove-VMScsiController.md index aa826eb3be..c2d4ffa231 100644 --- a/docset/winserver2022-ps/hyper-v/Remove-VMScsiController.md +++ b/docset/winserver2022-ps/hyper-v/Remove-VMScsiController.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmscsicontroller?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmscsicontroller?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMScsiController --- diff --git a/docset/winserver2022-ps/hyper-v/Remove-VMSnapshot.md b/docset/winserver2022-ps/hyper-v/Remove-VMSnapshot.md index 8f2814fe42..b0470932d1 100644 --- a/docset/winserver2022-ps/hyper-v/Remove-VMSnapshot.md +++ b/docset/winserver2022-ps/hyper-v/Remove-VMSnapshot.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmsnapshot?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmsnapshot?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMSnapshot --- diff --git a/docset/winserver2022-ps/hyper-v/Remove-VMStoragePath.md b/docset/winserver2022-ps/hyper-v/Remove-VMStoragePath.md index ae8b95b5ee..b745391cb0 100644 --- a/docset/winserver2022-ps/hyper-v/Remove-VMStoragePath.md +++ b/docset/winserver2022-ps/hyper-v/Remove-VMStoragePath.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmstoragepath?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmstoragepath?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMStoragePath --- diff --git a/docset/winserver2022-ps/hyper-v/Remove-VMSwitch.md b/docset/winserver2022-ps/hyper-v/Remove-VMSwitch.md index 5741fee983..3a8e75a3df 100644 --- a/docset/winserver2022-ps/hyper-v/Remove-VMSwitch.md +++ b/docset/winserver2022-ps/hyper-v/Remove-VMSwitch.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmswitch?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmswitch?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMSwitch --- diff --git a/docset/winserver2022-ps/hyper-v/Remove-VMSwitchExtensionPortFeature.md b/docset/winserver2022-ps/hyper-v/Remove-VMSwitchExtensionPortFeature.md index 6721312780..855fe19053 100644 --- a/docset/winserver2022-ps/hyper-v/Remove-VMSwitchExtensionPortFeature.md +++ b/docset/winserver2022-ps/hyper-v/Remove-VMSwitchExtensionPortFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmswitchextensionportfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmswitchextensionportfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMSwitchExtensionPortFeature --- diff --git a/docset/winserver2022-ps/hyper-v/Remove-VMSwitchExtensionSwitchFeature.md b/docset/winserver2022-ps/hyper-v/Remove-VMSwitchExtensionSwitchFeature.md index 8180858185..ea22e444e3 100644 --- a/docset/winserver2022-ps/hyper-v/Remove-VMSwitchExtensionSwitchFeature.md +++ b/docset/winserver2022-ps/hyper-v/Remove-VMSwitchExtensionSwitchFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmswitchextensionswitchfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmswitchextensionswitchfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMSwitchExtensionSwitchFeature --- diff --git a/docset/winserver2022-ps/hyper-v/Remove-VMSwitchTeamMember.md b/docset/winserver2022-ps/hyper-v/Remove-VMSwitchTeamMember.md index b8750bf700..9e7130fd81 100644 --- a/docset/winserver2022-ps/hyper-v/Remove-VMSwitchTeamMember.md +++ b/docset/winserver2022-ps/hyper-v/Remove-VMSwitchTeamMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/remove-vmswitchteammember?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmswitchteammember?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMSwitchTeamMember --- diff --git a/docset/winserver2022-ps/hyper-v/Rename-VM.md b/docset/winserver2022-ps/hyper-v/Rename-VM.md index 2374331947..aca0cee7b0 100644 --- a/docset/winserver2022-ps/hyper-v/Rename-VM.md +++ b/docset/winserver2022-ps/hyper-v/Rename-VM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/rename-vm?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/rename-vm?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-VM --- diff --git a/docset/winserver2022-ps/hyper-v/Rename-VMGroup.md b/docset/winserver2022-ps/hyper-v/Rename-VMGroup.md index 011c297386..6bc713db32 100644 --- a/docset/winserver2022-ps/hyper-v/Rename-VMGroup.md +++ b/docset/winserver2022-ps/hyper-v/Rename-VMGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/rename-vmgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/rename-vmgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-VMGroup --- diff --git a/docset/winserver2022-ps/hyper-v/Rename-VMNetworkAdapter.md b/docset/winserver2022-ps/hyper-v/Rename-VMNetworkAdapter.md index 0570672015..93e861976f 100644 --- a/docset/winserver2022-ps/hyper-v/Rename-VMNetworkAdapter.md +++ b/docset/winserver2022-ps/hyper-v/Rename-VMNetworkAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/rename-vmnetworkadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/rename-vmnetworkadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-VMNetworkAdapter --- diff --git a/docset/winserver2022-ps/hyper-v/Rename-VMResourcePool.md b/docset/winserver2022-ps/hyper-v/Rename-VMResourcePool.md index 2273d25e71..0a373546bf 100644 --- a/docset/winserver2022-ps/hyper-v/Rename-VMResourcePool.md +++ b/docset/winserver2022-ps/hyper-v/Rename-VMResourcePool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/rename-vmresourcepool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/rename-vmresourcepool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-VMResourcePool --- diff --git a/docset/winserver2022-ps/hyper-v/Rename-VMSan.md b/docset/winserver2022-ps/hyper-v/Rename-VMSan.md index 620dfff045..a0ea9616d6 100644 --- a/docset/winserver2022-ps/hyper-v/Rename-VMSan.md +++ b/docset/winserver2022-ps/hyper-v/Rename-VMSan.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/rename-vmsan?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/rename-vmsan?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-VMSan --- diff --git a/docset/winserver2022-ps/hyper-v/Rename-VMSnapshot.md b/docset/winserver2022-ps/hyper-v/Rename-VMSnapshot.md index 8604bfc8b2..a441f6ed70 100644 --- a/docset/winserver2022-ps/hyper-v/Rename-VMSnapshot.md +++ b/docset/winserver2022-ps/hyper-v/Rename-VMSnapshot.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/rename-vmsnapshot?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/rename-vmsnapshot?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-VMSnapshot --- diff --git a/docset/winserver2022-ps/hyper-v/Rename-VMSwitch.md b/docset/winserver2022-ps/hyper-v/Rename-VMSwitch.md index aeb3f63f5f..d507f6b815 100644 --- a/docset/winserver2022-ps/hyper-v/Rename-VMSwitch.md +++ b/docset/winserver2022-ps/hyper-v/Rename-VMSwitch.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/rename-vmswitch?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/rename-vmswitch?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-VMSwitch --- diff --git a/docset/winserver2022-ps/hyper-v/Repair-VM.md b/docset/winserver2022-ps/hyper-v/Repair-VM.md index 8a447fd779..1112624ec2 100644 --- a/docset/winserver2022-ps/hyper-v/Repair-VM.md +++ b/docset/winserver2022-ps/hyper-v/Repair-VM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/repair-vm?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/repair-vm?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Repair-VM --- diff --git a/docset/winserver2022-ps/hyper-v/Reset-VMReplicationStatistics.md b/docset/winserver2022-ps/hyper-v/Reset-VMReplicationStatistics.md index 0eeb8f7f43..83bbbb80cb 100644 --- a/docset/winserver2022-ps/hyper-v/Reset-VMReplicationStatistics.md +++ b/docset/winserver2022-ps/hyper-v/Reset-VMReplicationStatistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/reset-vmreplicationstatistics?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/reset-vmreplicationstatistics?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-VMReplicationStatistics --- diff --git a/docset/winserver2022-ps/hyper-v/Reset-VMResourceMetering.md b/docset/winserver2022-ps/hyper-v/Reset-VMResourceMetering.md index 6a5a39fa1a..4cb9cf1d1d 100644 --- a/docset/winserver2022-ps/hyper-v/Reset-VMResourceMetering.md +++ b/docset/winserver2022-ps/hyper-v/Reset-VMResourceMetering.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/reset-vmresourcemetering?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/reset-vmresourcemetering?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-VMResourceMetering --- diff --git a/docset/winserver2022-ps/hyper-v/Resize-VHD.md b/docset/winserver2022-ps/hyper-v/Resize-VHD.md index 96348602c1..875cdb5c33 100644 --- a/docset/winserver2022-ps/hyper-v/Resize-VHD.md +++ b/docset/winserver2022-ps/hyper-v/Resize-VHD.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/resize-vhd?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/resize-vhd?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resize-VHD --- diff --git a/docset/winserver2022-ps/hyper-v/Restart-VM.md b/docset/winserver2022-ps/hyper-v/Restart-VM.md index d17a075128..ffdacf06fe 100644 --- a/docset/winserver2022-ps/hyper-v/Restart-VM.md +++ b/docset/winserver2022-ps/hyper-v/Restart-VM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/restart-vm?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/restart-vm?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restart-VM --- diff --git a/docset/winserver2022-ps/hyper-v/Restore-VMSnapshot.md b/docset/winserver2022-ps/hyper-v/Restore-VMSnapshot.md index 80f3fe070d..072c81e967 100644 --- a/docset/winserver2022-ps/hyper-v/Restore-VMSnapshot.md +++ b/docset/winserver2022-ps/hyper-v/Restore-VMSnapshot.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/restore-vmsnapshot?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/restore-vmsnapshot?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-VMSnapshot --- diff --git a/docset/winserver2022-ps/hyper-v/Resume-VM.md b/docset/winserver2022-ps/hyper-v/Resume-VM.md index 9542c4a8b5..934df40a25 100644 --- a/docset/winserver2022-ps/hyper-v/Resume-VM.md +++ b/docset/winserver2022-ps/hyper-v/Resume-VM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/resume-vm?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/resume-vm?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-VM --- diff --git a/docset/winserver2022-ps/hyper-v/Resume-VMReplication.md b/docset/winserver2022-ps/hyper-v/Resume-VMReplication.md index 76f0afa045..8d68ad46a6 100644 --- a/docset/winserver2022-ps/hyper-v/Resume-VMReplication.md +++ b/docset/winserver2022-ps/hyper-v/Resume-VMReplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/resume-vmreplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/resume-vmreplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-VMReplication --- diff --git a/docset/winserver2022-ps/hyper-v/Revoke-VMConnectAccess.md b/docset/winserver2022-ps/hyper-v/Revoke-VMConnectAccess.md index 91de7e4955..c33e11e950 100644 --- a/docset/winserver2022-ps/hyper-v/Revoke-VMConnectAccess.md +++ b/docset/winserver2022-ps/hyper-v/Revoke-VMConnectAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/revoke-vmconnectaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/revoke-vmconnectaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Revoke-VMConnectAccess --- diff --git a/docset/winserver2022-ps/hyper-v/Save-VM.md b/docset/winserver2022-ps/hyper-v/Save-VM.md index 4f24c50948..3164fc3f87 100644 --- a/docset/winserver2022-ps/hyper-v/Save-VM.md +++ b/docset/winserver2022-ps/hyper-v/Save-VM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/save-vm?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/save-vm?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Save-VM --- diff --git a/docset/winserver2022-ps/hyper-v/Set-VHD.md b/docset/winserver2022-ps/hyper-v/Set-VHD.md index f38b7867ea..c82765f42b 100644 --- a/docset/winserver2022-ps/hyper-v/Set-VHD.md +++ b/docset/winserver2022-ps/hyper-v/Set-VHD.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vhd?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vhd?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VHD --- diff --git a/docset/winserver2022-ps/hyper-v/Set-VM.md b/docset/winserver2022-ps/hyper-v/Set-VM.md index ef353f209c..364eea5681 100644 --- a/docset/winserver2022-ps/hyper-v/Set-VM.md +++ b/docset/winserver2022-ps/hyper-v/Set-VM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vm?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vm?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VM --- diff --git a/docset/winserver2022-ps/hyper-v/Set-VMBios.md b/docset/winserver2022-ps/hyper-v/Set-VMBios.md index 0210c367b7..7343bf4a49 100644 --- a/docset/winserver2022-ps/hyper-v/Set-VMBios.md +++ b/docset/winserver2022-ps/hyper-v/Set-VMBios.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmbios?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmbios?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMBios --- diff --git a/docset/winserver2022-ps/hyper-v/Set-VMComPort.md b/docset/winserver2022-ps/hyper-v/Set-VMComPort.md index 28f4b9248a..1d8b32dfe1 100644 --- a/docset/winserver2022-ps/hyper-v/Set-VMComPort.md +++ b/docset/winserver2022-ps/hyper-v/Set-VMComPort.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmcomport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmcomport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMComPort --- diff --git a/docset/winserver2022-ps/hyper-v/Set-VMDvdDrive.md b/docset/winserver2022-ps/hyper-v/Set-VMDvdDrive.md index d53fd056f9..c340f55be1 100644 --- a/docset/winserver2022-ps/hyper-v/Set-VMDvdDrive.md +++ b/docset/winserver2022-ps/hyper-v/Set-VMDvdDrive.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmdvddrive?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmdvddrive?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMDvdDrive --- diff --git a/docset/winserver2022-ps/hyper-v/Set-VMFibreChannelHba.md b/docset/winserver2022-ps/hyper-v/Set-VMFibreChannelHba.md index f6f410c930..7ce2bf7e78 100644 --- a/docset/winserver2022-ps/hyper-v/Set-VMFibreChannelHba.md +++ b/docset/winserver2022-ps/hyper-v/Set-VMFibreChannelHba.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmfibrechannelhba?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmfibrechannelhba?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMFibreChannelHba --- diff --git a/docset/winserver2022-ps/hyper-v/Set-VMFirmware.md b/docset/winserver2022-ps/hyper-v/Set-VMFirmware.md index 9946ae2d8b..9448a4d44c 100644 --- a/docset/winserver2022-ps/hyper-v/Set-VMFirmware.md +++ b/docset/winserver2022-ps/hyper-v/Set-VMFirmware.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmfirmware?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmfirmware?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMFirmware --- diff --git a/docset/winserver2022-ps/hyper-v/Set-VMFloppyDiskDrive.md b/docset/winserver2022-ps/hyper-v/Set-VMFloppyDiskDrive.md index b2a0771685..bcaac0478a 100644 --- a/docset/winserver2022-ps/hyper-v/Set-VMFloppyDiskDrive.md +++ b/docset/winserver2022-ps/hyper-v/Set-VMFloppyDiskDrive.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmfloppydiskdrive?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmfloppydiskdrive?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMFloppyDiskDrive --- diff --git a/docset/winserver2022-ps/hyper-v/Set-VMHardDiskDrive.md b/docset/winserver2022-ps/hyper-v/Set-VMHardDiskDrive.md index 64dbbd6d40..1907307c5b 100644 --- a/docset/winserver2022-ps/hyper-v/Set-VMHardDiskDrive.md +++ b/docset/winserver2022-ps/hyper-v/Set-VMHardDiskDrive.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmharddiskdrive?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmharddiskdrive?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMHardDiskDrive --- diff --git a/docset/winserver2022-ps/hyper-v/Set-VMHost.md b/docset/winserver2022-ps/hyper-v/Set-VMHost.md index 492b3ded4a..af93a8d708 100644 --- a/docset/winserver2022-ps/hyper-v/Set-VMHost.md +++ b/docset/winserver2022-ps/hyper-v/Set-VMHost.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmhost?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmhost?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMHost --- diff --git a/docset/winserver2022-ps/hyper-v/Set-VMHostCluster.md b/docset/winserver2022-ps/hyper-v/Set-VMHostCluster.md index 0190b010fa..a4617d48ee 100644 --- a/docset/winserver2022-ps/hyper-v/Set-VMHostCluster.md +++ b/docset/winserver2022-ps/hyper-v/Set-VMHostCluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmhostcluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmhostcluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMHostCluster --- diff --git a/docset/winserver2022-ps/hyper-v/Set-VMKeyProtector.md b/docset/winserver2022-ps/hyper-v/Set-VMKeyProtector.md index e7ba5ffe84..6eef258d4a 100644 --- a/docset/winserver2022-ps/hyper-v/Set-VMKeyProtector.md +++ b/docset/winserver2022-ps/hyper-v/Set-VMKeyProtector.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmkeyprotector?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmkeyprotector?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMKeyProtector --- diff --git a/docset/winserver2022-ps/hyper-v/Set-VMMemory.md b/docset/winserver2022-ps/hyper-v/Set-VMMemory.md index a30eb88d4a..45d54924e1 100644 --- a/docset/winserver2022-ps/hyper-v/Set-VMMemory.md +++ b/docset/winserver2022-ps/hyper-v/Set-VMMemory.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmmemory?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmmemory?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMMemory --- diff --git a/docset/winserver2022-ps/hyper-v/Set-VMMigrationNetwork.md b/docset/winserver2022-ps/hyper-v/Set-VMMigrationNetwork.md index be41658b26..259f074af3 100644 --- a/docset/winserver2022-ps/hyper-v/Set-VMMigrationNetwork.md +++ b/docset/winserver2022-ps/hyper-v/Set-VMMigrationNetwork.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmmigrationnetwork?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmmigrationnetwork?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMMigrationNetwork --- diff --git a/docset/winserver2022-ps/hyper-v/Set-VMNetworkAdapter.md b/docset/winserver2022-ps/hyper-v/Set-VMNetworkAdapter.md index 72fb3beabf..9895013515 100644 --- a/docset/winserver2022-ps/hyper-v/Set-VMNetworkAdapter.md +++ b/docset/winserver2022-ps/hyper-v/Set-VMNetworkAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmnetworkadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmnetworkadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMNetworkAdapter --- diff --git a/docset/winserver2022-ps/hyper-v/Set-VMNetworkAdapterFailoverConfiguration.md b/docset/winserver2022-ps/hyper-v/Set-VMNetworkAdapterFailoverConfiguration.md index 0c96669bea..1370834574 100644 --- a/docset/winserver2022-ps/hyper-v/Set-VMNetworkAdapterFailoverConfiguration.md +++ b/docset/winserver2022-ps/hyper-v/Set-VMNetworkAdapterFailoverConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmnetworkadapterfailoverconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmnetworkadapterfailoverconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMNetworkAdapterFailoverConfiguration --- diff --git a/docset/winserver2022-ps/hyper-v/Set-VMNetworkAdapterTeamMapping.md b/docset/winserver2022-ps/hyper-v/Set-VMNetworkAdapterTeamMapping.md index fc14a70255..832bfd019a 100644 --- a/docset/winserver2022-ps/hyper-v/Set-VMNetworkAdapterTeamMapping.md +++ b/docset/winserver2022-ps/hyper-v/Set-VMNetworkAdapterTeamMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmnetworkadapterteammapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmnetworkadapterteammapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMNetworkAdapterTeamMapping --- diff --git a/docset/winserver2022-ps/hyper-v/Set-VMNetworkAdapterVlan.md b/docset/winserver2022-ps/hyper-v/Set-VMNetworkAdapterVlan.md index 49a6dfb7f0..22286c8b14 100644 --- a/docset/winserver2022-ps/hyper-v/Set-VMNetworkAdapterVlan.md +++ b/docset/winserver2022-ps/hyper-v/Set-VMNetworkAdapterVlan.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmnetworkadaptervlan?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmnetworkadaptervlan?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMNetworkAdapterVlan --- diff --git a/docset/winserver2022-ps/hyper-v/Set-VMProcessor.md b/docset/winserver2022-ps/hyper-v/Set-VMProcessor.md index 9099ca2985..b9c15b3a94 100644 --- a/docset/winserver2022-ps/hyper-v/Set-VMProcessor.md +++ b/docset/winserver2022-ps/hyper-v/Set-VMProcessor.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmprocessor?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmprocessor?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMProcessor --- diff --git a/docset/winserver2022-ps/hyper-v/Set-VMRemoteFx3dVideoAdapter.md b/docset/winserver2022-ps/hyper-v/Set-VMRemoteFx3dVideoAdapter.md index 651e066507..f04d0f8369 100644 --- a/docset/winserver2022-ps/hyper-v/Set-VMRemoteFx3dVideoAdapter.md +++ b/docset/winserver2022-ps/hyper-v/Set-VMRemoteFx3dVideoAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmremotefx3dvideoadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmremotefx3dvideoadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMRemoteFx3dVideoAdapter --- diff --git a/docset/winserver2022-ps/hyper-v/Set-VMReplication.md b/docset/winserver2022-ps/hyper-v/Set-VMReplication.md index 0670ac125a..9d09c74643 100644 --- a/docset/winserver2022-ps/hyper-v/Set-VMReplication.md +++ b/docset/winserver2022-ps/hyper-v/Set-VMReplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmreplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmreplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMReplication --- diff --git a/docset/winserver2022-ps/hyper-v/Set-VMReplicationAuthorizationEntry.md b/docset/winserver2022-ps/hyper-v/Set-VMReplicationAuthorizationEntry.md index f40419b422..0573a267d5 100644 --- a/docset/winserver2022-ps/hyper-v/Set-VMReplicationAuthorizationEntry.md +++ b/docset/winserver2022-ps/hyper-v/Set-VMReplicationAuthorizationEntry.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmreplicationauthorizationentry?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmreplicationauthorizationentry?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMReplicationAuthorizationEntry --- diff --git a/docset/winserver2022-ps/hyper-v/Set-VMReplicationServer.md b/docset/winserver2022-ps/hyper-v/Set-VMReplicationServer.md index 1ec65b61da..8389ab45fe 100644 --- a/docset/winserver2022-ps/hyper-v/Set-VMReplicationServer.md +++ b/docset/winserver2022-ps/hyper-v/Set-VMReplicationServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmreplicationserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmreplicationserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMReplicationServer --- diff --git a/docset/winserver2022-ps/hyper-v/Set-VMResourcePool.md b/docset/winserver2022-ps/hyper-v/Set-VMResourcePool.md index bde6318ff6..def0ab666e 100644 --- a/docset/winserver2022-ps/hyper-v/Set-VMResourcePool.md +++ b/docset/winserver2022-ps/hyper-v/Set-VMResourcePool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmresourcepool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmresourcepool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMResourcePool --- diff --git a/docset/winserver2022-ps/hyper-v/Set-VMSan.md b/docset/winserver2022-ps/hyper-v/Set-VMSan.md index feb13d073d..f7703dc151 100644 --- a/docset/winserver2022-ps/hyper-v/Set-VMSan.md +++ b/docset/winserver2022-ps/hyper-v/Set-VMSan.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmsan?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmsan?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMSan --- diff --git a/docset/winserver2022-ps/hyper-v/Set-VMSecurity.md b/docset/winserver2022-ps/hyper-v/Set-VMSecurity.md index bca541ac4f..630411756f 100644 --- a/docset/winserver2022-ps/hyper-v/Set-VMSecurity.md +++ b/docset/winserver2022-ps/hyper-v/Set-VMSecurity.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmsecurity?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmsecurity?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMSecurity --- diff --git a/docset/winserver2022-ps/hyper-v/Set-VMSecurityPolicy.md b/docset/winserver2022-ps/hyper-v/Set-VMSecurityPolicy.md index c10d5fd8d0..b370d46ef3 100644 --- a/docset/winserver2022-ps/hyper-v/Set-VMSecurityPolicy.md +++ b/docset/winserver2022-ps/hyper-v/Set-VMSecurityPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmsecuritypolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmsecuritypolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMSecurityPolicy --- diff --git a/docset/winserver2022-ps/hyper-v/Set-VMSwitch.md b/docset/winserver2022-ps/hyper-v/Set-VMSwitch.md index 2d86284193..d4232a5b9c 100644 --- a/docset/winserver2022-ps/hyper-v/Set-VMSwitch.md +++ b/docset/winserver2022-ps/hyper-v/Set-VMSwitch.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmswitch?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmswitch?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMSwitch --- diff --git a/docset/winserver2022-ps/hyper-v/Set-VMSwitchExtensionPortFeature.md b/docset/winserver2022-ps/hyper-v/Set-VMSwitchExtensionPortFeature.md index baf1a7c5e3..0bfdffe3cf 100644 --- a/docset/winserver2022-ps/hyper-v/Set-VMSwitchExtensionPortFeature.md +++ b/docset/winserver2022-ps/hyper-v/Set-VMSwitchExtensionPortFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmswitchextensionportfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmswitchextensionportfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMSwitchExtensionPortFeature --- diff --git a/docset/winserver2022-ps/hyper-v/Set-VMSwitchExtensionSwitchFeature.md b/docset/winserver2022-ps/hyper-v/Set-VMSwitchExtensionSwitchFeature.md index 4181e75a60..feedfd5a78 100644 --- a/docset/winserver2022-ps/hyper-v/Set-VMSwitchExtensionSwitchFeature.md +++ b/docset/winserver2022-ps/hyper-v/Set-VMSwitchExtensionSwitchFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmswitchextensionswitchfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmswitchextensionswitchfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMSwitchExtensionSwitchFeature --- diff --git a/docset/winserver2022-ps/hyper-v/Set-VMSwitchTeam.md b/docset/winserver2022-ps/hyper-v/Set-VMSwitchTeam.md index 9bea1116e3..9bcedaff9c 100644 --- a/docset/winserver2022-ps/hyper-v/Set-VMSwitchTeam.md +++ b/docset/winserver2022-ps/hyper-v/Set-VMSwitchTeam.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmswitchteam?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmswitchteam?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMSwitchTeam --- diff --git a/docset/winserver2022-ps/hyper-v/Set-VMVideo.md b/docset/winserver2022-ps/hyper-v/Set-VMVideo.md index 3d8e8319e8..a06cd5ad8b 100644 --- a/docset/winserver2022-ps/hyper-v/Set-VMVideo.md +++ b/docset/winserver2022-ps/hyper-v/Set-VMVideo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmvideo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmvideo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMVideo --- diff --git a/docset/winserver2022-ps/hyper-v/Set-VmNetworkAdapterIsolation.md b/docset/winserver2022-ps/hyper-v/Set-VmNetworkAdapterIsolation.md index 38199be5c9..2bfa22600b 100644 --- a/docset/winserver2022-ps/hyper-v/Set-VmNetworkAdapterIsolation.md +++ b/docset/winserver2022-ps/hyper-v/Set-VmNetworkAdapterIsolation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmnetworkadapterisolation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmnetworkadapterisolation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VmNetworkAdapterIsolation --- diff --git a/docset/winserver2022-ps/hyper-v/Set-VmNetworkAdapterRoutingDomainMapping.md b/docset/winserver2022-ps/hyper-v/Set-VmNetworkAdapterRoutingDomainMapping.md index 8415d5a017..096cc0b885 100644 --- a/docset/winserver2022-ps/hyper-v/Set-VmNetworkAdapterRoutingDomainMapping.md +++ b/docset/winserver2022-ps/hyper-v/Set-VmNetworkAdapterRoutingDomainMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/set-vmnetworkadapterroutingdomainmapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmnetworkadapterroutingdomainmapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VmNetworkAdapterRoutingDomainMapping --- diff --git a/docset/winserver2022-ps/hyper-v/Start-VM.md b/docset/winserver2022-ps/hyper-v/Start-VM.md index 2bca154f47..81db333efd 100644 --- a/docset/winserver2022-ps/hyper-v/Start-VM.md +++ b/docset/winserver2022-ps/hyper-v/Start-VM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/start-vm?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/start-vm?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-VM --- diff --git a/docset/winserver2022-ps/hyper-v/Start-VMFailover.md b/docset/winserver2022-ps/hyper-v/Start-VMFailover.md index d1fed49e52..35040242d8 100644 --- a/docset/winserver2022-ps/hyper-v/Start-VMFailover.md +++ b/docset/winserver2022-ps/hyper-v/Start-VMFailover.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/start-vmfailover?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/start-vmfailover?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-VMFailover --- diff --git a/docset/winserver2022-ps/hyper-v/Start-VMInitialReplication.md b/docset/winserver2022-ps/hyper-v/Start-VMInitialReplication.md index e3b0b489b9..e115cdaf61 100644 --- a/docset/winserver2022-ps/hyper-v/Start-VMInitialReplication.md +++ b/docset/winserver2022-ps/hyper-v/Start-VMInitialReplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/start-vminitialreplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/start-vminitialreplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-VMInitialReplication --- diff --git a/docset/winserver2022-ps/hyper-v/Start-VMTrace.md b/docset/winserver2022-ps/hyper-v/Start-VMTrace.md index f9877868d5..099212035b 100644 --- a/docset/winserver2022-ps/hyper-v/Start-VMTrace.md +++ b/docset/winserver2022-ps/hyper-v/Start-VMTrace.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/start-vmtrace?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/start-vmtrace?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-VMTrace --- diff --git a/docset/winserver2022-ps/hyper-v/Stop-VM.md b/docset/winserver2022-ps/hyper-v/Stop-VM.md index 4b683debf7..bef2ebbf0f 100644 --- a/docset/winserver2022-ps/hyper-v/Stop-VM.md +++ b/docset/winserver2022-ps/hyper-v/Stop-VM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/stop-vm?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/stop-vm?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-VM --- diff --git a/docset/winserver2022-ps/hyper-v/Stop-VMFailover.md b/docset/winserver2022-ps/hyper-v/Stop-VMFailover.md index 295a10472f..a68d9b1adb 100644 --- a/docset/winserver2022-ps/hyper-v/Stop-VMFailover.md +++ b/docset/winserver2022-ps/hyper-v/Stop-VMFailover.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/stop-vmfailover?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/stop-vmfailover?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-VMFailover --- diff --git a/docset/winserver2022-ps/hyper-v/Stop-VMInitialReplication.md b/docset/winserver2022-ps/hyper-v/Stop-VMInitialReplication.md index 9d53f652e5..8cd8629845 100644 --- a/docset/winserver2022-ps/hyper-v/Stop-VMInitialReplication.md +++ b/docset/winserver2022-ps/hyper-v/Stop-VMInitialReplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/stop-vminitialreplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/stop-vminitialreplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-VMInitialReplication --- diff --git a/docset/winserver2022-ps/hyper-v/Stop-VMReplication.md b/docset/winserver2022-ps/hyper-v/Stop-VMReplication.md index 85ded99adf..db67976734 100644 --- a/docset/winserver2022-ps/hyper-v/Stop-VMReplication.md +++ b/docset/winserver2022-ps/hyper-v/Stop-VMReplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/stop-vmreplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/stop-vmreplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-VMReplication --- diff --git a/docset/winserver2022-ps/hyper-v/Stop-VMTrace.md b/docset/winserver2022-ps/hyper-v/Stop-VMTrace.md index 8f872e09da..8488479091 100644 --- a/docset/winserver2022-ps/hyper-v/Stop-VMTrace.md +++ b/docset/winserver2022-ps/hyper-v/Stop-VMTrace.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/stop-vmtrace?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/stop-vmtrace?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-VMTrace --- diff --git a/docset/winserver2022-ps/hyper-v/Suspend-VM.md b/docset/winserver2022-ps/hyper-v/Suspend-VM.md index ad1de4b4a9..9685abfa14 100644 --- a/docset/winserver2022-ps/hyper-v/Suspend-VM.md +++ b/docset/winserver2022-ps/hyper-v/Suspend-VM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/suspend-vm?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/suspend-vm?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-VM --- diff --git a/docset/winserver2022-ps/hyper-v/Suspend-VMReplication.md b/docset/winserver2022-ps/hyper-v/Suspend-VMReplication.md index b2bbe20529..2ddc964d76 100644 --- a/docset/winserver2022-ps/hyper-v/Suspend-VMReplication.md +++ b/docset/winserver2022-ps/hyper-v/Suspend-VMReplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/suspend-vmreplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/suspend-vmreplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-VMReplication --- diff --git a/docset/winserver2022-ps/hyper-v/Test-VHD.md b/docset/winserver2022-ps/hyper-v/Test-VHD.md index 794e639c82..edcd880157 100644 --- a/docset/winserver2022-ps/hyper-v/Test-VHD.md +++ b/docset/winserver2022-ps/hyper-v/Test-VHD.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/test-vhd?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/test-vhd?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-VHD --- diff --git a/docset/winserver2022-ps/hyper-v/Test-VMNetworkAdapter.md b/docset/winserver2022-ps/hyper-v/Test-VMNetworkAdapter.md index 10f4af4025..8be16454b5 100644 --- a/docset/winserver2022-ps/hyper-v/Test-VMNetworkAdapter.md +++ b/docset/winserver2022-ps/hyper-v/Test-VMNetworkAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/test-vmnetworkadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/test-vmnetworkadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-VMNetworkAdapter --- diff --git a/docset/winserver2022-ps/hyper-v/Test-VMReplicationConnection.md b/docset/winserver2022-ps/hyper-v/Test-VMReplicationConnection.md index 65c6a63abd..ff14b21359 100644 --- a/docset/winserver2022-ps/hyper-v/Test-VMReplicationConnection.md +++ b/docset/winserver2022-ps/hyper-v/Test-VMReplicationConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/test-vmreplicationconnection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/test-vmreplicationconnection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-VMReplicationConnection --- diff --git a/docset/winserver2022-ps/hyper-v/Update-VMVersion.md b/docset/winserver2022-ps/hyper-v/Update-VMVersion.md index 9bf5d4d85c..6ae1332656 100644 --- a/docset/winserver2022-ps/hyper-v/Update-VMVersion.md +++ b/docset/winserver2022-ps/hyper-v/Update-VMVersion.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/hyper-v/update-vmversion?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/update-vmversion?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-VMVersion --- diff --git a/docset/winserver2022-ps/iisadministration/Clear-IISCentralCertProvider.md b/docset/winserver2022-ps/iisadministration/Clear-IISCentralCertProvider.md index 56012ac121..97bdc77859 100644 --- a/docset/winserver2022-ps/iisadministration/Clear-IISCentralCertProvider.md +++ b/docset/winserver2022-ps/iisadministration/Clear-IISCentralCertProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/clear-iiscentralcertprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/clear-iiscentralcertprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-IISCentralCertProvider --- diff --git a/docset/winserver2022-ps/iisadministration/Clear-IISConfigCollection.md b/docset/winserver2022-ps/iisadministration/Clear-IISConfigCollection.md index abeb479494..59c52f214d 100644 --- a/docset/winserver2022-ps/iisadministration/Clear-IISConfigCollection.md +++ b/docset/winserver2022-ps/iisadministration/Clear-IISConfigCollection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/clear-iisconfigcollection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/clear-iisconfigcollection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-IISConfigCollection --- diff --git a/docset/winserver2022-ps/iisadministration/Disable-IISCentralCertProvider.md b/docset/winserver2022-ps/iisadministration/Disable-IISCentralCertProvider.md index f4e1b629da..2bb40d8a29 100644 --- a/docset/winserver2022-ps/iisadministration/Disable-IISCentralCertProvider.md +++ b/docset/winserver2022-ps/iisadministration/Disable-IISCentralCertProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/disable-iiscentralcertprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/disable-iiscentralcertprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-IISCentralCertProvider --- diff --git a/docset/winserver2022-ps/iisadministration/Disable-IISSharedConfig.md b/docset/winserver2022-ps/iisadministration/Disable-IISSharedConfig.md index 4510431ece..23024a42f1 100644 --- a/docset/winserver2022-ps/iisadministration/Disable-IISSharedConfig.md +++ b/docset/winserver2022-ps/iisadministration/Disable-IISSharedConfig.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/disable-iissharedconfig?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/disable-iissharedconfig?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-IISSharedConfig --- diff --git a/docset/winserver2022-ps/iisadministration/Enable-IISCentralCertProvider.md b/docset/winserver2022-ps/iisadministration/Enable-IISCentralCertProvider.md index a4a3b40eb2..fc87e4e59b 100644 --- a/docset/winserver2022-ps/iisadministration/Enable-IISCentralCertProvider.md +++ b/docset/winserver2022-ps/iisadministration/Enable-IISCentralCertProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/enable-iiscentralcertprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/enable-iiscentralcertprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-IISCentralCertProvider --- diff --git a/docset/winserver2022-ps/iisadministration/Enable-IISSharedConfig.md b/docset/winserver2022-ps/iisadministration/Enable-IISSharedConfig.md index c7f928aede..4c999f31c9 100644 --- a/docset/winserver2022-ps/iisadministration/Enable-IISSharedConfig.md +++ b/docset/winserver2022-ps/iisadministration/Enable-IISSharedConfig.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/enable-iissharedconfig?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/enable-iissharedconfig?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-IISSharedConfig --- diff --git a/docset/winserver2022-ps/iisadministration/Export-IISConfiguration.md b/docset/winserver2022-ps/iisadministration/Export-IISConfiguration.md index f33ff825f1..e969f25e31 100644 --- a/docset/winserver2022-ps/iisadministration/Export-IISConfiguration.md +++ b/docset/winserver2022-ps/iisadministration/Export-IISConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/export-iisconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/export-iisconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-IISConfiguration --- diff --git a/docset/winserver2022-ps/iisadministration/Get-IISAppPool.md b/docset/winserver2022-ps/iisadministration/Get-IISAppPool.md index 29eea8a65d..5703f3b7d8 100644 --- a/docset/winserver2022-ps/iisadministration/Get-IISAppPool.md +++ b/docset/winserver2022-ps/iisadministration/Get-IISAppPool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/get-iisapppool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/get-iisapppool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IISAppPool --- diff --git a/docset/winserver2022-ps/iisadministration/Get-IISCentralCertProvider.md b/docset/winserver2022-ps/iisadministration/Get-IISCentralCertProvider.md index fba021ddee..7433835e5e 100644 --- a/docset/winserver2022-ps/iisadministration/Get-IISCentralCertProvider.md +++ b/docset/winserver2022-ps/iisadministration/Get-IISCentralCertProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/get-iiscentralcertprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/get-iiscentralcertprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IISCentralCertProvider --- diff --git a/docset/winserver2022-ps/iisadministration/Get-IISConfigAttributeValue.md b/docset/winserver2022-ps/iisadministration/Get-IISConfigAttributeValue.md index 9f5d34e0f3..e276b5d63f 100644 --- a/docset/winserver2022-ps/iisadministration/Get-IISConfigAttributeValue.md +++ b/docset/winserver2022-ps/iisadministration/Get-IISConfigAttributeValue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/get-iisconfigattributevalue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/get-iisconfigattributevalue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IISConfigAttributeValue --- diff --git a/docset/winserver2022-ps/iisadministration/Get-IISConfigCollection.md b/docset/winserver2022-ps/iisadministration/Get-IISConfigCollection.md index 74d2dbc744..794e2864dd 100644 --- a/docset/winserver2022-ps/iisadministration/Get-IISConfigCollection.md +++ b/docset/winserver2022-ps/iisadministration/Get-IISConfigCollection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/get-iisconfigcollection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/get-iisconfigcollection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IISConfigCollection --- diff --git a/docset/winserver2022-ps/iisadministration/Get-IISConfigCollectionElement.md b/docset/winserver2022-ps/iisadministration/Get-IISConfigCollectionElement.md index fa16f9faec..accb26b4b8 100644 --- a/docset/winserver2022-ps/iisadministration/Get-IISConfigCollectionElement.md +++ b/docset/winserver2022-ps/iisadministration/Get-IISConfigCollectionElement.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/get-iisconfigcollectionelement?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/get-iisconfigcollectionelement?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IISConfigCollectionElement --- diff --git a/docset/winserver2022-ps/iisadministration/Get-IISConfigElement.md b/docset/winserver2022-ps/iisadministration/Get-IISConfigElement.md index 3801e3ae7c..72b93b4892 100644 --- a/docset/winserver2022-ps/iisadministration/Get-IISConfigElement.md +++ b/docset/winserver2022-ps/iisadministration/Get-IISConfigElement.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/get-iisconfigelement?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/get-iisconfigelement?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IISConfigElement --- diff --git a/docset/winserver2022-ps/iisadministration/Get-IISConfigSection.md b/docset/winserver2022-ps/iisadministration/Get-IISConfigSection.md index c71da0edb9..ba15432231 100644 --- a/docset/winserver2022-ps/iisadministration/Get-IISConfigSection.md +++ b/docset/winserver2022-ps/iisadministration/Get-IISConfigSection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/get-iisconfigsection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/get-iisconfigsection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IISConfigSection --- diff --git a/docset/winserver2022-ps/iisadministration/Get-IISServerManager.md b/docset/winserver2022-ps/iisadministration/Get-IISServerManager.md index bbb50e5494..384020bb3a 100644 --- a/docset/winserver2022-ps/iisadministration/Get-IISServerManager.md +++ b/docset/winserver2022-ps/iisadministration/Get-IISServerManager.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/get-iisservermanager?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/get-iisservermanager?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IISServerManager --- diff --git a/docset/winserver2022-ps/iisadministration/Get-IISSharedConfig.md b/docset/winserver2022-ps/iisadministration/Get-IISSharedConfig.md index 60caedac4b..4960395dc6 100644 --- a/docset/winserver2022-ps/iisadministration/Get-IISSharedConfig.md +++ b/docset/winserver2022-ps/iisadministration/Get-IISSharedConfig.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/get-iissharedconfig?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/get-iissharedconfig?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IISSharedConfig --- diff --git a/docset/winserver2022-ps/iisadministration/Get-IISSite.md b/docset/winserver2022-ps/iisadministration/Get-IISSite.md index d06eaec0a4..1e44214dc4 100644 --- a/docset/winserver2022-ps/iisadministration/Get-IISSite.md +++ b/docset/winserver2022-ps/iisadministration/Get-IISSite.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/get-iissite?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/get-iissite?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IISSite --- diff --git a/docset/winserver2022-ps/iisadministration/Get-IISSiteBinding.md b/docset/winserver2022-ps/iisadministration/Get-IISSiteBinding.md index 84dac154c1..8eb4e87a64 100644 --- a/docset/winserver2022-ps/iisadministration/Get-IISSiteBinding.md +++ b/docset/winserver2022-ps/iisadministration/Get-IISSiteBinding.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration -online version: https://docs.microsoft.com/powershell/module/iisadministration/get-iissitebinding?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/get-iissitebinding?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IISSiteBinding --- diff --git a/docset/winserver2022-ps/iisadministration/New-IISConfigCollectionElement.md b/docset/winserver2022-ps/iisadministration/New-IISConfigCollectionElement.md index e3ca9387a6..a163e76b91 100644 --- a/docset/winserver2022-ps/iisadministration/New-IISConfigCollectionElement.md +++ b/docset/winserver2022-ps/iisadministration/New-IISConfigCollectionElement.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/new-iisconfigcollectionelement?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/new-iisconfigcollectionelement?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-IISConfigCollectionElement --- diff --git a/docset/winserver2022-ps/iisadministration/New-IISSite.md b/docset/winserver2022-ps/iisadministration/New-IISSite.md index 8213051d64..5a911379fb 100644 --- a/docset/winserver2022-ps/iisadministration/New-IISSite.md +++ b/docset/winserver2022-ps/iisadministration/New-IISSite.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/new-iissite?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/new-iissite?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-IISSite --- diff --git a/docset/winserver2022-ps/iisadministration/New-IISSiteBinding.md b/docset/winserver2022-ps/iisadministration/New-IISSiteBinding.md index 5fc639ce14..188541be81 100644 --- a/docset/winserver2022-ps/iisadministration/New-IISSiteBinding.md +++ b/docset/winserver2022-ps/iisadministration/New-IISSiteBinding.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration -online version: https://docs.microsoft.com/powershell/module/iisadministration/new-iissitebinding?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/new-iissitebinding?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-IISSiteBinding --- diff --git a/docset/winserver2022-ps/iisadministration/Remove-IISConfigAttribute.md b/docset/winserver2022-ps/iisadministration/Remove-IISConfigAttribute.md index 9ab78b80c3..df202c06dc 100644 --- a/docset/winserver2022-ps/iisadministration/Remove-IISConfigAttribute.md +++ b/docset/winserver2022-ps/iisadministration/Remove-IISConfigAttribute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/remove-iisconfigattribute?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/remove-iisconfigattribute?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IISConfigAttribute --- diff --git a/docset/winserver2022-ps/iisadministration/Remove-IISConfigCollectionElement.md b/docset/winserver2022-ps/iisadministration/Remove-IISConfigCollectionElement.md index 5516639b4e..e6a36c3346 100644 --- a/docset/winserver2022-ps/iisadministration/Remove-IISConfigCollectionElement.md +++ b/docset/winserver2022-ps/iisadministration/Remove-IISConfigCollectionElement.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/remove-iisconfigcollectionelement?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/remove-iisconfigcollectionelement?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IISConfigCollectionElement --- diff --git a/docset/winserver2022-ps/iisadministration/Remove-IISConfigElement.md b/docset/winserver2022-ps/iisadministration/Remove-IISConfigElement.md index 60010c1252..4bf578fb5e 100644 --- a/docset/winserver2022-ps/iisadministration/Remove-IISConfigElement.md +++ b/docset/winserver2022-ps/iisadministration/Remove-IISConfigElement.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/remove-iisconfigelement?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/remove-iisconfigelement?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IISConfigElement --- diff --git a/docset/winserver2022-ps/iisadministration/Remove-IISSite.md b/docset/winserver2022-ps/iisadministration/Remove-IISSite.md index e9a13185ad..26ce2486d1 100644 --- a/docset/winserver2022-ps/iisadministration/Remove-IISSite.md +++ b/docset/winserver2022-ps/iisadministration/Remove-IISSite.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/remove-iissite?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/remove-iissite?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IISSite --- diff --git a/docset/winserver2022-ps/iisadministration/Remove-IISSiteBinding.md b/docset/winserver2022-ps/iisadministration/Remove-IISSiteBinding.md index bc3f773863..8525f5f103 100644 --- a/docset/winserver2022-ps/iisadministration/Remove-IISSiteBinding.md +++ b/docset/winserver2022-ps/iisadministration/Remove-IISSiteBinding.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration -online version: https://docs.microsoft.com/powershell/module/iisadministration/remove-iissitebinding?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/remove-iissitebinding?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IISSiteBinding --- diff --git a/docset/winserver2022-ps/iisadministration/Reset-IISServerManager.md b/docset/winserver2022-ps/iisadministration/Reset-IISServerManager.md index ad1d375a63..9b5d679b56 100644 --- a/docset/winserver2022-ps/iisadministration/Reset-IISServerManager.md +++ b/docset/winserver2022-ps/iisadministration/Reset-IISServerManager.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/reset-iisservermanager?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/reset-iisservermanager?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-IISServerManager --- diff --git a/docset/winserver2022-ps/iisadministration/Set-IISCentralCertProvider.md b/docset/winserver2022-ps/iisadministration/Set-IISCentralCertProvider.md index 74cfd5bbaa..c6d8b0075b 100644 --- a/docset/winserver2022-ps/iisadministration/Set-IISCentralCertProvider.md +++ b/docset/winserver2022-ps/iisadministration/Set-IISCentralCertProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/set-iiscentralcertprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/set-iiscentralcertprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IISCentralCertProvider --- diff --git a/docset/winserver2022-ps/iisadministration/Set-IISCentralCertProviderCredential.md b/docset/winserver2022-ps/iisadministration/Set-IISCentralCertProviderCredential.md index 8a7949dc54..ba35a269b2 100644 --- a/docset/winserver2022-ps/iisadministration/Set-IISCentralCertProviderCredential.md +++ b/docset/winserver2022-ps/iisadministration/Set-IISCentralCertProviderCredential.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/set-iiscentralcertprovidercredential?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/set-iiscentralcertprovidercredential?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IISCentralCertProviderCredential --- diff --git a/docset/winserver2022-ps/iisadministration/Set-IISConfigAttributeValue.md b/docset/winserver2022-ps/iisadministration/Set-IISConfigAttributeValue.md index 48a98b0a5c..17a50aa4bf 100644 --- a/docset/winserver2022-ps/iisadministration/Set-IISConfigAttributeValue.md +++ b/docset/winserver2022-ps/iisadministration/Set-IISConfigAttributeValue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/set-iisconfigattributevalue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/set-iisconfigattributevalue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IISConfigAttributeValue --- diff --git a/docset/winserver2022-ps/iisadministration/Start-IISCommitDelay.md b/docset/winserver2022-ps/iisadministration/Start-IISCommitDelay.md index 7d0a6f3c5d..ad229b34a8 100644 --- a/docset/winserver2022-ps/iisadministration/Start-IISCommitDelay.md +++ b/docset/winserver2022-ps/iisadministration/Start-IISCommitDelay.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/start-iiscommitdelay?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/start-iiscommitdelay?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-IISCommitDelay --- diff --git a/docset/winserver2022-ps/iisadministration/Start-IISSite.md b/docset/winserver2022-ps/iisadministration/Start-IISSite.md index 98825129cc..6ccc56bf27 100644 --- a/docset/winserver2022-ps/iisadministration/Start-IISSite.md +++ b/docset/winserver2022-ps/iisadministration/Start-IISSite.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/start-iissite?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/start-iissite?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-IISSite --- diff --git a/docset/winserver2022-ps/iisadministration/Stop-IISCommitDelay.md b/docset/winserver2022-ps/iisadministration/Stop-IISCommitDelay.md index cc3340dff8..4e3f838954 100644 --- a/docset/winserver2022-ps/iisadministration/Stop-IISCommitDelay.md +++ b/docset/winserver2022-ps/iisadministration/Stop-IISCommitDelay.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/stop-iiscommitdelay?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/stop-iiscommitdelay?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-IISCommitDelay --- diff --git a/docset/winserver2022-ps/iisadministration/Stop-IISSite.md b/docset/winserver2022-ps/iisadministration/Stop-IISSite.md index 61caeac4ab..dd47cde96d 100644 --- a/docset/winserver2022-ps/iisadministration/Stop-IISSite.md +++ b/docset/winserver2022-ps/iisadministration/Stop-IISSite.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.Powershell.Commands.dll-Help.xml Module Name: IISAdministration ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iisadministration/stop-iissite?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iisadministration/stop-iissite?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-IISSite --- diff --git a/docset/winserver2022-ps/international/Copy-UserInternationalSettingsToSystem.md b/docset/winserver2022-ps/international/Copy-UserInternationalSettingsToSystem.md index 8ab51c9401..4514d8c2c7 100644 --- a/docset/winserver2022-ps/international/Copy-UserInternationalSettingsToSystem.md +++ b/docset/winserver2022-ps/international/Copy-UserInternationalSettingsToSystem.md @@ -1,21 +1,16 @@ --- -ms.mktglfcycl: manage -ms.sitesec: library -ms.author: ertorres author: erik0686 description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml -keywords: powershell, cmdlet manager: aandrejs +ms.author: ertorres ms.date: 09/08/2021 +ms.mktglfcycl: manage ms.prod: w11 -ms.technology: +ms.sitesec: library ms.topic: reference -online version: schema: 2.0.0 title: Copy-UserInternationalSettingsToSystem -ms.reviewer: -ms.assetid: --- # Copy-UserInternationalSettingsToSystem @@ -88,4 +83,4 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). \ No newline at end of file +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). diff --git a/docset/winserver2022-ps/international/Get-WinAcceptLanguageFromLanguageListOptOut.md b/docset/winserver2022-ps/international/Get-WinAcceptLanguageFromLanguageListOptOut.md index 94bbb19cb9..dc63e4e346 100644 --- a/docset/winserver2022-ps/international/Get-WinAcceptLanguageFromLanguageListOptOut.md +++ b/docset/winserver2022-ps/international/Get-WinAcceptLanguageFromLanguageListOptOut.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/international/get-winacceptlanguagefromlanguagelistoptout?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/get-winacceptlanguagefromlanguagelistoptout?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WinAcceptLanguageFromLanguageListOptOut --- diff --git a/docset/winserver2022-ps/international/Get-WinCultureFromLanguageListOptOut.md b/docset/winserver2022-ps/international/Get-WinCultureFromLanguageListOptOut.md index 8f7935691d..7102182097 100644 --- a/docset/winserver2022-ps/international/Get-WinCultureFromLanguageListOptOut.md +++ b/docset/winserver2022-ps/international/Get-WinCultureFromLanguageListOptOut.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/international/get-winculturefromlanguagelistoptout?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/get-winculturefromlanguagelistoptout?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WinCultureFromLanguageListOptOut --- diff --git a/docset/winserver2022-ps/international/Get-WinDefaultInputMethodOverride.md b/docset/winserver2022-ps/international/Get-WinDefaultInputMethodOverride.md index ce15fe6977..e10b3de4ed 100644 --- a/docset/winserver2022-ps/international/Get-WinDefaultInputMethodOverride.md +++ b/docset/winserver2022-ps/international/Get-WinDefaultInputMethodOverride.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/international/get-windefaultinputmethodoverride?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/get-windefaultinputmethodoverride?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WinDefaultInputMethodOverride --- diff --git a/docset/winserver2022-ps/international/Get-WinHomeLocation.md b/docset/winserver2022-ps/international/Get-WinHomeLocation.md index ba4aa0cb5a..690b7d4853 100644 --- a/docset/winserver2022-ps/international/Get-WinHomeLocation.md +++ b/docset/winserver2022-ps/international/Get-WinHomeLocation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/international/get-winhomelocation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/get-winhomelocation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WinHomeLocation --- diff --git a/docset/winserver2022-ps/international/Get-WinLanguageBarOption.md b/docset/winserver2022-ps/international/Get-WinLanguageBarOption.md index 80d2d3c945..75958fb35a 100644 --- a/docset/winserver2022-ps/international/Get-WinLanguageBarOption.md +++ b/docset/winserver2022-ps/international/Get-WinLanguageBarOption.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/international/get-winlanguagebaroption?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/get-winlanguagebaroption?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WinLanguageBarOption --- diff --git a/docset/winserver2022-ps/international/Get-WinSystemLocale.md b/docset/winserver2022-ps/international/Get-WinSystemLocale.md index 21ccbd13ec..47b8fafbdd 100644 --- a/docset/winserver2022-ps/international/Get-WinSystemLocale.md +++ b/docset/winserver2022-ps/international/Get-WinSystemLocale.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/international/get-winsystemlocale?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/get-winsystemlocale?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WinSystemLocale --- diff --git a/docset/winserver2022-ps/international/Get-WinUILanguageOverride.md b/docset/winserver2022-ps/international/Get-WinUILanguageOverride.md index f925de63ee..aaea1221cb 100644 --- a/docset/winserver2022-ps/international/Get-WinUILanguageOverride.md +++ b/docset/winserver2022-ps/international/Get-WinUILanguageOverride.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/international/get-winuilanguageoverride?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/get-winuilanguageoverride?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WinUILanguageOverride --- diff --git a/docset/winserver2022-ps/international/Get-WinUserLanguageList.md b/docset/winserver2022-ps/international/Get-WinUserLanguageList.md index 03d1c98e77..26eda660a5 100644 --- a/docset/winserver2022-ps/international/Get-WinUserLanguageList.md +++ b/docset/winserver2022-ps/international/Get-WinUserLanguageList.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/international/get-winuserlanguagelist?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/get-winuserlanguagelist?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WinUserLanguageList --- diff --git a/docset/winserver2022-ps/international/International.md b/docset/winserver2022-ps/international/International.md index 49d88e3db8..627d583bef 100644 --- a/docset/winserver2022-ps/international/International.md +++ b/docset/winserver2022-ps/international/International.md @@ -71,4 +71,4 @@ Sets the Windows UI language override setting for the current user account. Sets the language list and associated properties for the current user account. ### [Copy-UserInternationalSettingsToSystem](./Copy-UserInternationalSettingsToSystem.md) -Copies the current user's international settings to the Welcome screen and system accounts and/or new user accounts. \ No newline at end of file +Copies the current user's international settings to the Welcome screen and system accounts and/or new user accounts. diff --git a/docset/winserver2022-ps/international/New-WinUserLanguageList.md b/docset/winserver2022-ps/international/New-WinUserLanguageList.md index 663dbc2e2b..aacc7606bf 100644 --- a/docset/winserver2022-ps/international/New-WinUserLanguageList.md +++ b/docset/winserver2022-ps/international/New-WinUserLanguageList.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/international/new-winuserlanguagelist?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/new-winuserlanguagelist?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WinUserLanguageList --- diff --git a/docset/winserver2022-ps/international/Set-Culture.md b/docset/winserver2022-ps/international/Set-Culture.md index 8d782a9abf..519db63920 100644 --- a/docset/winserver2022-ps/international/Set-Culture.md +++ b/docset/winserver2022-ps/international/Set-Culture.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/international/set-culture?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/set-culture?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-Culture --- diff --git a/docset/winserver2022-ps/international/Set-WinAcceptLanguageFromLanguageListOptOut.md b/docset/winserver2022-ps/international/Set-WinAcceptLanguageFromLanguageListOptOut.md index 3b3ed21751..6942f6f17c 100644 --- a/docset/winserver2022-ps/international/Set-WinAcceptLanguageFromLanguageListOptOut.md +++ b/docset/winserver2022-ps/international/Set-WinAcceptLanguageFromLanguageListOptOut.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/international/set-winacceptlanguagefromlanguagelistoptout?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/set-winacceptlanguagefromlanguagelistoptout?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WinAcceptLanguageFromLanguageListOptOut --- diff --git a/docset/winserver2022-ps/international/Set-WinCultureFromLanguageListOptOut.md b/docset/winserver2022-ps/international/Set-WinCultureFromLanguageListOptOut.md index 1b7dd03d16..7286d2506a 100644 --- a/docset/winserver2022-ps/international/Set-WinCultureFromLanguageListOptOut.md +++ b/docset/winserver2022-ps/international/Set-WinCultureFromLanguageListOptOut.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/international/set-winculturefromlanguagelistoptout?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/set-winculturefromlanguagelistoptout?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WinCultureFromLanguageListOptOut --- diff --git a/docset/winserver2022-ps/international/Set-WinDefaultInputMethodOverride.md b/docset/winserver2022-ps/international/Set-WinDefaultInputMethodOverride.md index 2e787d5862..76ef229a3d 100644 --- a/docset/winserver2022-ps/international/Set-WinDefaultInputMethodOverride.md +++ b/docset/winserver2022-ps/international/Set-WinDefaultInputMethodOverride.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/international/set-windefaultinputmethodoverride?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/set-windefaultinputmethodoverride?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WinDefaultInputMethodOverride --- diff --git a/docset/winserver2022-ps/international/Set-WinHomeLocation.md b/docset/winserver2022-ps/international/Set-WinHomeLocation.md index 974704dfcc..efd1c5fcf6 100644 --- a/docset/winserver2022-ps/international/Set-WinHomeLocation.md +++ b/docset/winserver2022-ps/international/Set-WinHomeLocation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/international/set-winhomelocation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/set-winhomelocation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WinHomeLocation --- diff --git a/docset/winserver2022-ps/international/Set-WinLanguageBarOption.md b/docset/winserver2022-ps/international/Set-WinLanguageBarOption.md index 2db28df423..dcb496c298 100644 --- a/docset/winserver2022-ps/international/Set-WinLanguageBarOption.md +++ b/docset/winserver2022-ps/international/Set-WinLanguageBarOption.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/international/set-winlanguagebaroption?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/set-winlanguagebaroption?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WinLanguageBarOption --- diff --git a/docset/winserver2022-ps/international/Set-WinSystemLocale.md b/docset/winserver2022-ps/international/Set-WinSystemLocale.md index 55f27a4584..45956346a2 100644 --- a/docset/winserver2022-ps/international/Set-WinSystemLocale.md +++ b/docset/winserver2022-ps/international/Set-WinSystemLocale.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/international/set-winsystemlocale?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/set-winsystemlocale?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WinSystemLocale --- diff --git a/docset/winserver2022-ps/international/Set-WinUILanguageOverride.md b/docset/winserver2022-ps/international/Set-WinUILanguageOverride.md index d943185260..3475eeaa61 100644 --- a/docset/winserver2022-ps/international/Set-WinUILanguageOverride.md +++ b/docset/winserver2022-ps/international/Set-WinUILanguageOverride.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/international/set-winuilanguageoverride?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/set-winuilanguageoverride?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WinUILanguageOverride --- diff --git a/docset/winserver2022-ps/international/Set-WinUserLanguageList.md b/docset/winserver2022-ps/international/Set-WinUserLanguageList.md index abdf6277ad..4a823b406c 100644 --- a/docset/winserver2022-ps/international/Set-WinUserLanguageList.md +++ b/docset/winserver2022-ps/international/Set-WinUserLanguageList.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.InternationalSettings.Commands.dll-Help.xml Module Name: International ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/international/set-winuserlanguagelist?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/international/set-winuserlanguagelist?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WinUserLanguageList --- diff --git a/docset/winserver2022-ps/ipamserver/Add-IpamAddress.md b/docset/winserver2022-ps/ipamserver/Add-IpamAddress.md index 0bed704a7e..49d79e12ee 100644 --- a/docset/winserver2022-ps/ipamserver/Add-IpamAddress.md +++ b/docset/winserver2022-ps/ipamserver/Add-IpamAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamAddress.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/add-ipamaddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/add-ipamaddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-IpamAddress --- diff --git a/docset/winserver2022-ps/ipamserver/Add-IpamAddressSpace.md b/docset/winserver2022-ps/ipamserver/Add-IpamAddressSpace.md index 0f22a49a30..12edf6990f 100644 --- a/docset/winserver2022-ps/ipamserver/Add-IpamAddressSpace.md +++ b/docset/winserver2022-ps/ipamserver/Add-IpamAddressSpace.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamAddressSpace.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/add-ipamaddressspace?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/add-ipamaddressspace?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-IpamAddressSpace --- diff --git a/docset/winserver2022-ps/ipamserver/Add-IpamBlock.md b/docset/winserver2022-ps/ipamserver/Add-IpamBlock.md index 2d6789328f..90b06cfcee 100644 --- a/docset/winserver2022-ps/ipamserver/Add-IpamBlock.md +++ b/docset/winserver2022-ps/ipamserver/Add-IpamBlock.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamBlock.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/add-ipamblock?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/add-ipamblock?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-IpamBlock --- diff --git a/docset/winserver2022-ps/ipamserver/Add-IpamCustomField.md b/docset/winserver2022-ps/ipamserver/Add-IpamCustomField.md index 2f88db3453..8b2fd98ba5 100644 --- a/docset/winserver2022-ps/ipamserver/Add-IpamCustomField.md +++ b/docset/winserver2022-ps/ipamserver/Add-IpamCustomField.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamCustomField.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/add-ipamcustomfield?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/add-ipamcustomfield?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-IpamCustomField --- diff --git a/docset/winserver2022-ps/ipamserver/Add-IpamCustomFieldAssociation.md b/docset/winserver2022-ps/ipamserver/Add-IpamCustomFieldAssociation.md index 7d19580fcf..d3d8c5675d 100644 --- a/docset/winserver2022-ps/ipamserver/Add-IpamCustomFieldAssociation.md +++ b/docset/winserver2022-ps/ipamserver/Add-IpamCustomFieldAssociation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamCustomFieldAssociation.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/add-ipamcustomfieldassociation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/add-ipamcustomfieldassociation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-IpamCustomFieldAssociation --- diff --git a/docset/winserver2022-ps/ipamserver/Add-IpamCustomValue.md b/docset/winserver2022-ps/ipamserver/Add-IpamCustomValue.md index 5a35fff86e..d7525e886a 100644 --- a/docset/winserver2022-ps/ipamserver/Add-IpamCustomValue.md +++ b/docset/winserver2022-ps/ipamserver/Add-IpamCustomValue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamCustomValue.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/add-ipamcustomvalue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/add-ipamcustomvalue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-IpamCustomValue --- diff --git a/docset/winserver2022-ps/ipamserver/Add-IpamDiscoveryDomain.md b/docset/winserver2022-ps/ipamserver/Add-IpamDiscoveryDomain.md index eaa04f95fd..61b6fe450c 100644 --- a/docset/winserver2022-ps/ipamserver/Add-IpamDiscoveryDomain.md +++ b/docset/winserver2022-ps/ipamserver/Add-IpamDiscoveryDomain.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamDiscoveryDomain.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/add-ipamdiscoverydomain?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/add-ipamdiscoverydomain?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-IpamDiscoveryDomain --- diff --git a/docset/winserver2022-ps/ipamserver/Add-IpamRange.md b/docset/winserver2022-ps/ipamserver/Add-IpamRange.md index ebb1a0be9a..fc01b05ba1 100644 --- a/docset/winserver2022-ps/ipamserver/Add-IpamRange.md +++ b/docset/winserver2022-ps/ipamserver/Add-IpamRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamRange.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/add-ipamrange?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/add-ipamrange?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-IpamRange --- diff --git a/docset/winserver2022-ps/ipamserver/Add-IpamServerInventory.md b/docset/winserver2022-ps/ipamserver/Add-IpamServerInventory.md index c20d624075..1d2ffd6c68 100644 --- a/docset/winserver2022-ps/ipamserver/Add-IpamServerInventory.md +++ b/docset/winserver2022-ps/ipamserver/Add-IpamServerInventory.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamServerInventory.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/add-ipamserverinventory?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/add-ipamserverinventory?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-IpamServerInventory --- diff --git a/docset/winserver2022-ps/ipamserver/Add-IpamSubnet.md b/docset/winserver2022-ps/ipamserver/Add-IpamSubnet.md index 21c45687bd..4a3fa68fa8 100644 --- a/docset/winserver2022-ps/ipamserver/Add-IpamSubnet.md +++ b/docset/winserver2022-ps/ipamserver/Add-IpamSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamSubnet.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/add-ipamsubnet?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/add-ipamsubnet?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-IpamSubnet --- diff --git a/docset/winserver2022-ps/ipamserver/Disable-IpamCapability.md b/docset/winserver2022-ps/ipamserver/Disable-IpamCapability.md index a729b4e543..68427a519f 100644 --- a/docset/winserver2022-ps/ipamserver/Disable-IpamCapability.md +++ b/docset/winserver2022-ps/ipamserver/Disable-IpamCapability.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamCapabilities.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/disable-ipamcapability?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/disable-ipamcapability?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-IpamCapability --- diff --git a/docset/winserver2022-ps/ipamserver/Enable-IpamCapability.md b/docset/winserver2022-ps/ipamserver/Enable-IpamCapability.md index 5cf62cddf8..ddf577ea39 100644 --- a/docset/winserver2022-ps/ipamserver/Enable-IpamCapability.md +++ b/docset/winserver2022-ps/ipamserver/Enable-IpamCapability.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamCapabilities.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/enable-ipamcapability?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/enable-ipamcapability?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-IpamCapability --- diff --git a/docset/winserver2022-ps/ipamserver/Export-IpamAddress.md b/docset/winserver2022-ps/ipamserver/Export-IpamAddress.md index e8a330a0bd..9c0d6b623b 100644 --- a/docset/winserver2022-ps/ipamserver/Export-IpamAddress.md +++ b/docset/winserver2022-ps/ipamserver/Export-IpamAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamAddress.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/export-ipamaddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/export-ipamaddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-IpamAddress --- diff --git a/docset/winserver2022-ps/ipamserver/Export-IpamRange.md b/docset/winserver2022-ps/ipamserver/Export-IpamRange.md index e15ee1bbee..c4397b9a30 100644 --- a/docset/winserver2022-ps/ipamserver/Export-IpamRange.md +++ b/docset/winserver2022-ps/ipamserver/Export-IpamRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamRange.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/export-ipamrange?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/export-ipamrange?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-IpamRange --- diff --git a/docset/winserver2022-ps/ipamserver/Export-IpamSubnet.md b/docset/winserver2022-ps/ipamserver/Export-IpamSubnet.md index 3a54b694e1..68d3e5648c 100644 --- a/docset/winserver2022-ps/ipamserver/Export-IpamSubnet.md +++ b/docset/winserver2022-ps/ipamserver/Export-IpamSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamSubnet.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/export-ipamsubnet?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/export-ipamsubnet?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-IpamSubnet --- diff --git a/docset/winserver2022-ps/ipamserver/Find-IpamFreeAddress.md b/docset/winserver2022-ps/ipamserver/Find-IpamFreeAddress.md index 9327c881d5..7bcdcd16b2 100644 --- a/docset/winserver2022-ps/ipamserver/Find-IpamFreeAddress.md +++ b/docset/winserver2022-ps/ipamserver/Find-IpamFreeAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamAddress.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/find-ipamfreeaddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/find-ipamfreeaddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Find-IpamFreeAddress --- diff --git a/docset/winserver2022-ps/ipamserver/Find-IpamFreeRange.md b/docset/winserver2022-ps/ipamserver/Find-IpamFreeRange.md index 83ea40d855..97e4dcfa97 100644 --- a/docset/winserver2022-ps/ipamserver/Find-IpamFreeRange.md +++ b/docset/winserver2022-ps/ipamserver/Find-IpamFreeRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamRange.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/find-ipamfreerange?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/find-ipamfreerange?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Find-IpamFreeRange --- diff --git a/docset/winserver2022-ps/ipamserver/Find-IpamFreeSubnet.md b/docset/winserver2022-ps/ipamserver/Find-IpamFreeSubnet.md index c641a182fd..244bdf661b 100644 --- a/docset/winserver2022-ps/ipamserver/Find-IpamFreeSubnet.md +++ b/docset/winserver2022-ps/ipamserver/Find-IpamFreeSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamSubnet.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/find-ipamfreesubnet?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/find-ipamfreesubnet?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Find-IpamFreeSubnet --- diff --git a/docset/winserver2022-ps/ipamserver/Get-IpamAddress.md b/docset/winserver2022-ps/ipamserver/Get-IpamAddress.md index dda0d3fa85..95f0d41523 100644 --- a/docset/winserver2022-ps/ipamserver/Get-IpamAddress.md +++ b/docset/winserver2022-ps/ipamserver/Get-IpamAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamAddress.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamaddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamaddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamAddress --- diff --git a/docset/winserver2022-ps/ipamserver/Get-IpamAddressSpace.md b/docset/winserver2022-ps/ipamserver/Get-IpamAddressSpace.md index 023924815b..47485be290 100644 --- a/docset/winserver2022-ps/ipamserver/Get-IpamAddressSpace.md +++ b/docset/winserver2022-ps/ipamserver/Get-IpamAddressSpace.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamAddressSpace.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamaddressspace?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamaddressspace?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamAddressSpace --- diff --git a/docset/winserver2022-ps/ipamserver/Get-IpamAddressUtilizationThreshold.md b/docset/winserver2022-ps/ipamserver/Get-IpamAddressUtilizationThreshold.md index 1a56ef27a5..cf02779a12 100644 --- a/docset/winserver2022-ps/ipamserver/Get-IpamAddressUtilizationThreshold.md +++ b/docset/winserver2022-ps/ipamserver/Get-IpamAddressUtilizationThreshold.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamAddressUtilizationThreshold.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamaddressutilizationthreshold?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamaddressutilizationthreshold?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamAddressUtilizationThreshold --- diff --git a/docset/winserver2022-ps/ipamserver/Get-IpamBlock.md b/docset/winserver2022-ps/ipamserver/Get-IpamBlock.md index 336e2c739e..e23319efd7 100644 --- a/docset/winserver2022-ps/ipamserver/Get-IpamBlock.md +++ b/docset/winserver2022-ps/ipamserver/Get-IpamBlock.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamBlock.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamblock?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamblock?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamBlock --- diff --git a/docset/winserver2022-ps/ipamserver/Get-IpamCapability.md b/docset/winserver2022-ps/ipamserver/Get-IpamCapability.md index b92e4d17a5..d637af0743 100644 --- a/docset/winserver2022-ps/ipamserver/Get-IpamCapability.md +++ b/docset/winserver2022-ps/ipamserver/Get-IpamCapability.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamCapabilities.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamcapability?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamcapability?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamCapability --- diff --git a/docset/winserver2022-ps/ipamserver/Get-IpamConfiguration.md b/docset/winserver2022-ps/ipamserver/Get-IpamConfiguration.md index 46dfbf01c6..a6291acd5a 100644 --- a/docset/winserver2022-ps/ipamserver/Get-IpamConfiguration.md +++ b/docset/winserver2022-ps/ipamserver/Get-IpamConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamConfiguration.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamConfiguration --- diff --git a/docset/winserver2022-ps/ipamserver/Get-IpamConfigurationEvent.md b/docset/winserver2022-ps/ipamserver/Get-IpamConfigurationEvent.md index 3a41802c1b..8d6751b397 100644 --- a/docset/winserver2022-ps/ipamserver/Get-IpamConfigurationEvent.md +++ b/docset/winserver2022-ps/ipamserver/Get-IpamConfigurationEvent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamConfigurationEvent.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamconfigurationevent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamconfigurationevent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamConfigurationEvent --- diff --git a/docset/winserver2022-ps/ipamserver/Get-IpamCustomField.md b/docset/winserver2022-ps/ipamserver/Get-IpamCustomField.md index a67a96f4bb..835e0588ac 100644 --- a/docset/winserver2022-ps/ipamserver/Get-IpamCustomField.md +++ b/docset/winserver2022-ps/ipamserver/Get-IpamCustomField.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamCustomField.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamcustomfield?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamcustomfield?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamCustomField --- diff --git a/docset/winserver2022-ps/ipamserver/Get-IpamCustomFieldAssociation.md b/docset/winserver2022-ps/ipamserver/Get-IpamCustomFieldAssociation.md index cf3fba5b24..b687d050bc 100644 --- a/docset/winserver2022-ps/ipamserver/Get-IpamCustomFieldAssociation.md +++ b/docset/winserver2022-ps/ipamserver/Get-IpamCustomFieldAssociation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamCustomFieldAssociation.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamcustomfieldassociation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamcustomfieldassociation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamCustomFieldAssociation --- diff --git a/docset/winserver2022-ps/ipamserver/Get-IpamDatabase.md b/docset/winserver2022-ps/ipamserver/Get-IpamDatabase.md index 71960e3e4a..879861173e 100644 --- a/docset/winserver2022-ps/ipamserver/Get-IpamDatabase.md +++ b/docset/winserver2022-ps/ipamserver/Get-IpamDatabase.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamDatabase.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamdatabase?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamdatabase?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamDatabase --- diff --git a/docset/winserver2022-ps/ipamserver/Get-IpamDhcpConfigurationEvent.md b/docset/winserver2022-ps/ipamserver/Get-IpamDhcpConfigurationEvent.md index 444bb0fc99..8fac086bad 100644 --- a/docset/winserver2022-ps/ipamserver/Get-IpamDhcpConfigurationEvent.md +++ b/docset/winserver2022-ps/ipamserver/Get-IpamDhcpConfigurationEvent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamDhcpConfigurationEvent.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamdhcpconfigurationevent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamdhcpconfigurationevent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamDhcpConfigurationEvent --- diff --git a/docset/winserver2022-ps/ipamserver/Get-IpamDhcpScope.md b/docset/winserver2022-ps/ipamserver/Get-IpamDhcpScope.md index 0dc2e6a539..35faf9b5b4 100644 --- a/docset/winserver2022-ps/ipamserver/Get-IpamDhcpScope.md +++ b/docset/winserver2022-ps/ipamserver/Get-IpamDhcpScope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamDhcpScope.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamdhcpscope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamdhcpscope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamDhcpScope --- diff --git a/docset/winserver2022-ps/ipamserver/Get-IpamDhcpServer.md b/docset/winserver2022-ps/ipamserver/Get-IpamDhcpServer.md index 26d7903602..8cc3e48a2e 100644 --- a/docset/winserver2022-ps/ipamserver/Get-IpamDhcpServer.md +++ b/docset/winserver2022-ps/ipamserver/Get-IpamDhcpServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamDhcpServer.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamdhcpserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamdhcpserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamDhcpServer --- diff --git a/docset/winserver2022-ps/ipamserver/Get-IpamDhcpSuperscope.md b/docset/winserver2022-ps/ipamserver/Get-IpamDhcpSuperscope.md index 52c74f065c..6f83aaa21e 100644 --- a/docset/winserver2022-ps/ipamserver/Get-IpamDhcpSuperscope.md +++ b/docset/winserver2022-ps/ipamserver/Get-IpamDhcpSuperscope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamDhcpSuperscope.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamdhcpsuperscope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamdhcpsuperscope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamDhcpSuperscope --- diff --git a/docset/winserver2022-ps/ipamserver/Get-IpamDiscoveryDomain.md b/docset/winserver2022-ps/ipamserver/Get-IpamDiscoveryDomain.md index e24708f6e4..bae3c70a94 100644 --- a/docset/winserver2022-ps/ipamserver/Get-IpamDiscoveryDomain.md +++ b/docset/winserver2022-ps/ipamserver/Get-IpamDiscoveryDomain.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamDiscoveryDomain.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamdiscoverydomain?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamdiscoverydomain?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamDiscoveryDomain --- diff --git a/docset/winserver2022-ps/ipamserver/Get-IpamDnsConditionalForwarder.md b/docset/winserver2022-ps/ipamserver/Get-IpamDnsConditionalForwarder.md index df84a0e25b..5730cde466 100644 --- a/docset/winserver2022-ps/ipamserver/Get-IpamDnsConditionalForwarder.md +++ b/docset/winserver2022-ps/ipamserver/Get-IpamDnsConditionalForwarder.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamDnsConditionalForwarder.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamdnsconditionalforwarder?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamdnsconditionalforwarder?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamDnsConditionalForwarder --- diff --git a/docset/winserver2022-ps/ipamserver/Get-IpamDnsResourceRecord.md b/docset/winserver2022-ps/ipamserver/Get-IpamDnsResourceRecord.md index 6fc28d34da..e1a6ece6c9 100644 --- a/docset/winserver2022-ps/ipamserver/Get-IpamDnsResourceRecord.md +++ b/docset/winserver2022-ps/ipamserver/Get-IpamDnsResourceRecord.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamDnsResourceRecord.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamdnsresourcerecord?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamdnsresourcerecord?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamDnsResourceRecord --- diff --git a/docset/winserver2022-ps/ipamserver/Get-IpamDnsServer.md b/docset/winserver2022-ps/ipamserver/Get-IpamDnsServer.md index 51c3a26a78..df9fa820b7 100644 --- a/docset/winserver2022-ps/ipamserver/Get-IpamDnsServer.md +++ b/docset/winserver2022-ps/ipamserver/Get-IpamDnsServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamDnsServer.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamdnsserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamdnsserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamDnsServer --- diff --git a/docset/winserver2022-ps/ipamserver/Get-IpamDnsZone.md b/docset/winserver2022-ps/ipamserver/Get-IpamDnsZone.md index 86fe721d83..67dbd46c6a 100644 --- a/docset/winserver2022-ps/ipamserver/Get-IpamDnsZone.md +++ b/docset/winserver2022-ps/ipamserver/Get-IpamDnsZone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamDnsZone.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamdnszone?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamdnszone?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamDnsZone --- diff --git a/docset/winserver2022-ps/ipamserver/Get-IpamIpAddressAuditEvent.md b/docset/winserver2022-ps/ipamserver/Get-IpamIpAddressAuditEvent.md index 1366296111..6fc9c97f00 100644 --- a/docset/winserver2022-ps/ipamserver/Get-IpamIpAddressAuditEvent.md +++ b/docset/winserver2022-ps/ipamserver/Get-IpamIpAddressAuditEvent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamIpAuditEvent.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamipaddressauditevent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamipaddressauditevent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamIpAddressAuditEvent --- diff --git a/docset/winserver2022-ps/ipamserver/Get-IpamRange.md b/docset/winserver2022-ps/ipamserver/Get-IpamRange.md index 55ce057819..34dd837052 100644 --- a/docset/winserver2022-ps/ipamserver/Get-IpamRange.md +++ b/docset/winserver2022-ps/ipamserver/Get-IpamRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamRange.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamrange?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamrange?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamRange --- diff --git a/docset/winserver2022-ps/ipamserver/Get-IpamServerInventory.md b/docset/winserver2022-ps/ipamserver/Get-IpamServerInventory.md index 7c7638a80c..ffcbf92c59 100644 --- a/docset/winserver2022-ps/ipamserver/Get-IpamServerInventory.md +++ b/docset/winserver2022-ps/ipamserver/Get-IpamServerInventory.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamServerInventory.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamserverinventory?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamserverinventory?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamServerInventory --- diff --git a/docset/winserver2022-ps/ipamserver/Get-IpamSubnet.md b/docset/winserver2022-ps/ipamserver/Get-IpamSubnet.md index db943754f2..66b93398bc 100644 --- a/docset/winserver2022-ps/ipamserver/Get-IpamSubnet.md +++ b/docset/winserver2022-ps/ipamserver/Get-IpamSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamSubnet.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/get-ipamsubnet?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/get-ipamsubnet?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IpamSubnet --- diff --git a/docset/winserver2022-ps/ipamserver/Import-IpamAddress.md b/docset/winserver2022-ps/ipamserver/Import-IpamAddress.md index ad1890c285..b80c314a82 100644 --- a/docset/winserver2022-ps/ipamserver/Import-IpamAddress.md +++ b/docset/winserver2022-ps/ipamserver/Import-IpamAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamAddress.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/import-ipamaddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/import-ipamaddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-IpamAddress --- diff --git a/docset/winserver2022-ps/ipamserver/Import-IpamRange.md b/docset/winserver2022-ps/ipamserver/Import-IpamRange.md index c2df116890..f1262faca3 100644 --- a/docset/winserver2022-ps/ipamserver/Import-IpamRange.md +++ b/docset/winserver2022-ps/ipamserver/Import-IpamRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamRange.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/import-ipamrange?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/import-ipamrange?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-IpamRange --- diff --git a/docset/winserver2022-ps/ipamserver/Import-IpamSubnet.md b/docset/winserver2022-ps/ipamserver/Import-IpamSubnet.md index 00aa01da5f..e3d5b8d0e1 100644 --- a/docset/winserver2022-ps/ipamserver/Import-IpamSubnet.md +++ b/docset/winserver2022-ps/ipamserver/Import-IpamSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamSubnet.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/import-ipamsubnet?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/import-ipamsubnet?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-IpamSubnet --- diff --git a/docset/winserver2022-ps/ipamserver/Invoke-IpamGpoProvisioning.md b/docset/winserver2022-ps/ipamserver/Invoke-IpamGpoProvisioning.md index 20ec7f43ed..746ab63f34 100644 --- a/docset/winserver2022-ps/ipamserver/Invoke-IpamGpoProvisioning.md +++ b/docset/winserver2022-ps/ipamserver/Invoke-IpamGpoProvisioning.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamGpo.psm1-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/invoke-ipamgpoprovisioning?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/invoke-ipamgpoprovisioning?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-IpamGpoProvisioning --- diff --git a/docset/winserver2022-ps/ipamserver/Invoke-IpamServerProvisioning.md b/docset/winserver2022-ps/ipamserver/Invoke-IpamServerProvisioning.md index 856b97f856..752ae1d8c5 100644 --- a/docset/winserver2022-ps/ipamserver/Invoke-IpamServerProvisioning.md +++ b/docset/winserver2022-ps/ipamserver/Invoke-IpamServerProvisioning.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamServerProvisioning.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/invoke-ipamserverprovisioning?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/invoke-ipamserverprovisioning?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-IpamServerProvisioning --- diff --git a/docset/winserver2022-ps/ipamserver/Move-IpamDatabase.md b/docset/winserver2022-ps/ipamserver/Move-IpamDatabase.md index 292dcc332d..820aa77919 100644 --- a/docset/winserver2022-ps/ipamserver/Move-IpamDatabase.md +++ b/docset/winserver2022-ps/ipamserver/Move-IpamDatabase.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamDatabase.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/move-ipamdatabase?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/move-ipamdatabase?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-IpamDatabase --- diff --git a/docset/winserver2022-ps/ipamserver/Remove-IpamAddress.md b/docset/winserver2022-ps/ipamserver/Remove-IpamAddress.md index a23d7e6f0d..2e3338e35b 100644 --- a/docset/winserver2022-ps/ipamserver/Remove-IpamAddress.md +++ b/docset/winserver2022-ps/ipamserver/Remove-IpamAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamAddress.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/remove-ipamaddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/remove-ipamaddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IpamAddress --- diff --git a/docset/winserver2022-ps/ipamserver/Remove-IpamAddressSpace.md b/docset/winserver2022-ps/ipamserver/Remove-IpamAddressSpace.md index c961e75290..592312b5dc 100644 --- a/docset/winserver2022-ps/ipamserver/Remove-IpamAddressSpace.md +++ b/docset/winserver2022-ps/ipamserver/Remove-IpamAddressSpace.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamAddressSpace.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/remove-ipamaddressspace?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/remove-ipamaddressspace?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IpamAddressSpace --- diff --git a/docset/winserver2022-ps/ipamserver/Remove-IpamBlock.md b/docset/winserver2022-ps/ipamserver/Remove-IpamBlock.md index 931377b75e..a737ccb6cb 100644 --- a/docset/winserver2022-ps/ipamserver/Remove-IpamBlock.md +++ b/docset/winserver2022-ps/ipamserver/Remove-IpamBlock.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamBlock.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/remove-ipamblock?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/remove-ipamblock?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IpamBlock --- diff --git a/docset/winserver2022-ps/ipamserver/Remove-IpamConfigurationEvent.md b/docset/winserver2022-ps/ipamserver/Remove-IpamConfigurationEvent.md index 051dedc69f..591d03ae8d 100644 --- a/docset/winserver2022-ps/ipamserver/Remove-IpamConfigurationEvent.md +++ b/docset/winserver2022-ps/ipamserver/Remove-IpamConfigurationEvent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamConfigurationEvent.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/remove-ipamconfigurationevent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/remove-ipamconfigurationevent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IpamConfigurationEvent --- diff --git a/docset/winserver2022-ps/ipamserver/Remove-IpamCustomField.md b/docset/winserver2022-ps/ipamserver/Remove-IpamCustomField.md index 164a982e2c..09ce38e9fa 100644 --- a/docset/winserver2022-ps/ipamserver/Remove-IpamCustomField.md +++ b/docset/winserver2022-ps/ipamserver/Remove-IpamCustomField.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamCustomField.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/remove-ipamcustomfield?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/remove-ipamcustomfield?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IpamCustomField --- diff --git a/docset/winserver2022-ps/ipamserver/Remove-IpamCustomFieldAssociation.md b/docset/winserver2022-ps/ipamserver/Remove-IpamCustomFieldAssociation.md index 3af8e3865a..d70dadf6c2 100644 --- a/docset/winserver2022-ps/ipamserver/Remove-IpamCustomFieldAssociation.md +++ b/docset/winserver2022-ps/ipamserver/Remove-IpamCustomFieldAssociation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamCustomFieldAssociation.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/remove-ipamcustomfieldassociation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/remove-ipamcustomfieldassociation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IpamCustomFieldAssociation --- diff --git a/docset/winserver2022-ps/ipamserver/Remove-IpamCustomValue.md b/docset/winserver2022-ps/ipamserver/Remove-IpamCustomValue.md index b991203ba4..8f9a844ced 100644 --- a/docset/winserver2022-ps/ipamserver/Remove-IpamCustomValue.md +++ b/docset/winserver2022-ps/ipamserver/Remove-IpamCustomValue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamCustomValue.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/remove-ipamcustomvalue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/remove-ipamcustomvalue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IpamCustomValue --- diff --git a/docset/winserver2022-ps/ipamserver/Remove-IpamDhcpConfigurationEvent.md b/docset/winserver2022-ps/ipamserver/Remove-IpamDhcpConfigurationEvent.md index d4b4b272a9..19457b2cc3 100644 --- a/docset/winserver2022-ps/ipamserver/Remove-IpamDhcpConfigurationEvent.md +++ b/docset/winserver2022-ps/ipamserver/Remove-IpamDhcpConfigurationEvent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamDhcpConfigurationEvent.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/remove-ipamdhcpconfigurationevent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/remove-ipamdhcpconfigurationevent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IpamDhcpConfigurationEvent --- diff --git a/docset/winserver2022-ps/ipamserver/Remove-IpamDiscoveryDomain.md b/docset/winserver2022-ps/ipamserver/Remove-IpamDiscoveryDomain.md index 7eff2a54f3..8e175fe1e8 100644 --- a/docset/winserver2022-ps/ipamserver/Remove-IpamDiscoveryDomain.md +++ b/docset/winserver2022-ps/ipamserver/Remove-IpamDiscoveryDomain.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamDiscoveryDomain.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/remove-ipamdiscoverydomain?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/remove-ipamdiscoverydomain?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IpamDiscoveryDomain --- diff --git a/docset/winserver2022-ps/ipamserver/Remove-IpamIpAddressAuditEvent.md b/docset/winserver2022-ps/ipamserver/Remove-IpamIpAddressAuditEvent.md index f051fd4675..a9b02bc15b 100644 --- a/docset/winserver2022-ps/ipamserver/Remove-IpamIpAddressAuditEvent.md +++ b/docset/winserver2022-ps/ipamserver/Remove-IpamIpAddressAuditEvent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamIpAuditEvent.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/remove-ipamipaddressauditevent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/remove-ipamipaddressauditevent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IpamIpAddressAuditEvent --- diff --git a/docset/winserver2022-ps/ipamserver/Remove-IpamRange.md b/docset/winserver2022-ps/ipamserver/Remove-IpamRange.md index 7dd8b0d62d..e5060d783f 100644 --- a/docset/winserver2022-ps/ipamserver/Remove-IpamRange.md +++ b/docset/winserver2022-ps/ipamserver/Remove-IpamRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamRange.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/remove-ipamrange?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/remove-ipamrange?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IpamRange --- diff --git a/docset/winserver2022-ps/ipamserver/Remove-IpamServerInventory.md b/docset/winserver2022-ps/ipamserver/Remove-IpamServerInventory.md index 2399a28190..ca0aa6c8e8 100644 --- a/docset/winserver2022-ps/ipamserver/Remove-IpamServerInventory.md +++ b/docset/winserver2022-ps/ipamserver/Remove-IpamServerInventory.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamServerInventory.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/remove-ipamserverinventory?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/remove-ipamserverinventory?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IpamServerInventory --- diff --git a/docset/winserver2022-ps/ipamserver/Remove-IpamSubnet.md b/docset/winserver2022-ps/ipamserver/Remove-IpamSubnet.md index 6028cd8a8c..dd2021943d 100644 --- a/docset/winserver2022-ps/ipamserver/Remove-IpamSubnet.md +++ b/docset/winserver2022-ps/ipamserver/Remove-IpamSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamSubnet.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/remove-ipamsubnet?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/remove-ipamsubnet?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IpamSubnet --- diff --git a/docset/winserver2022-ps/ipamserver/Remove-IpamUtilizationData.md b/docset/winserver2022-ps/ipamserver/Remove-IpamUtilizationData.md index b195e4a567..27b94dc7f9 100644 --- a/docset/winserver2022-ps/ipamserver/Remove-IpamUtilizationData.md +++ b/docset/winserver2022-ps/ipamserver/Remove-IpamUtilizationData.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamUtilizationData.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/remove-ipamutilizationdata?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/remove-ipamutilizationdata?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IpamUtilizationData --- diff --git a/docset/winserver2022-ps/ipamserver/Rename-IpamCustomField.md b/docset/winserver2022-ps/ipamserver/Rename-IpamCustomField.md index d28b61e9b2..fd44ad2b72 100644 --- a/docset/winserver2022-ps/ipamserver/Rename-IpamCustomField.md +++ b/docset/winserver2022-ps/ipamserver/Rename-IpamCustomField.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamCustomField.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/rename-ipamcustomfield?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/rename-ipamcustomfield?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-IpamCustomField --- diff --git a/docset/winserver2022-ps/ipamserver/Rename-IpamCustomValue.md b/docset/winserver2022-ps/ipamserver/Rename-IpamCustomValue.md index 8191c79edc..8697a44405 100644 --- a/docset/winserver2022-ps/ipamserver/Rename-IpamCustomValue.md +++ b/docset/winserver2022-ps/ipamserver/Rename-IpamCustomValue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamCustomValue.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/rename-ipamcustomvalue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/rename-ipamcustomvalue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-IpamCustomValue --- diff --git a/docset/winserver2022-ps/ipamserver/Set-IpamAccessScope.md b/docset/winserver2022-ps/ipamserver/Set-IpamAccessScope.md index d0c0f80af8..670820c671 100644 --- a/docset/winserver2022-ps/ipamserver/Set-IpamAccessScope.md +++ b/docset/winserver2022-ps/ipamserver/Set-IpamAccessScope.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamAccessScope.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/set-ipamaccessscope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/set-ipamaccessscope?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IpamAccessScope --- diff --git a/docset/winserver2022-ps/ipamserver/Set-IpamAddress.md b/docset/winserver2022-ps/ipamserver/Set-IpamAddress.md index 6bcc4d2a64..993c6c2d00 100644 --- a/docset/winserver2022-ps/ipamserver/Set-IpamAddress.md +++ b/docset/winserver2022-ps/ipamserver/Set-IpamAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamAddress.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/set-ipamaddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/set-ipamaddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IpamAddress --- diff --git a/docset/winserver2022-ps/ipamserver/Set-IpamAddressSpace.md b/docset/winserver2022-ps/ipamserver/Set-IpamAddressSpace.md index fbc5e426a7..ecb998769e 100644 --- a/docset/winserver2022-ps/ipamserver/Set-IpamAddressSpace.md +++ b/docset/winserver2022-ps/ipamserver/Set-IpamAddressSpace.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamAddressSpace.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/set-ipamaddressspace?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/set-ipamaddressspace?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IpamAddressSpace --- diff --git a/docset/winserver2022-ps/ipamserver/Set-IpamAddressUtilizationThreshold.md b/docset/winserver2022-ps/ipamserver/Set-IpamAddressUtilizationThreshold.md index 0c4884d169..434219846e 100644 --- a/docset/winserver2022-ps/ipamserver/Set-IpamAddressUtilizationThreshold.md +++ b/docset/winserver2022-ps/ipamserver/Set-IpamAddressUtilizationThreshold.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamAddressUtilizationThreshold.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/set-ipamaddressutilizationthreshold?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/set-ipamaddressutilizationthreshold?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IpamAddressUtilizationThreshold --- diff --git a/docset/winserver2022-ps/ipamserver/Set-IpamBlock.md b/docset/winserver2022-ps/ipamserver/Set-IpamBlock.md index d09eef62e0..988b58da64 100644 --- a/docset/winserver2022-ps/ipamserver/Set-IpamBlock.md +++ b/docset/winserver2022-ps/ipamserver/Set-IpamBlock.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamBlock.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/set-ipamblock?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/set-ipamblock?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IpamBlock --- diff --git a/docset/winserver2022-ps/ipamserver/Set-IpamConfiguration.md b/docset/winserver2022-ps/ipamserver/Set-IpamConfiguration.md index c77ac12c44..ed11fb45be 100644 --- a/docset/winserver2022-ps/ipamserver/Set-IpamConfiguration.md +++ b/docset/winserver2022-ps/ipamserver/Set-IpamConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamConfiguration.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/set-ipamconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/set-ipamconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IpamConfiguration --- diff --git a/docset/winserver2022-ps/ipamserver/Set-IpamCustomFieldAssociation.md b/docset/winserver2022-ps/ipamserver/Set-IpamCustomFieldAssociation.md index f417d56ced..07b806555f 100644 --- a/docset/winserver2022-ps/ipamserver/Set-IpamCustomFieldAssociation.md +++ b/docset/winserver2022-ps/ipamserver/Set-IpamCustomFieldAssociation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamCustomFieldAssociation.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/set-ipamcustomfieldassociation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/set-ipamcustomfieldassociation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IpamCustomFieldAssociation --- diff --git a/docset/winserver2022-ps/ipamserver/Set-IpamDatabase.md b/docset/winserver2022-ps/ipamserver/Set-IpamDatabase.md index 7de69e0750..bcaf45406d 100644 --- a/docset/winserver2022-ps/ipamserver/Set-IpamDatabase.md +++ b/docset/winserver2022-ps/ipamserver/Set-IpamDatabase.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamDatabase.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/set-ipamdatabase?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/set-ipamdatabase?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IpamDatabase --- diff --git a/docset/winserver2022-ps/ipamserver/Set-IpamDiscoveryDomain.md b/docset/winserver2022-ps/ipamserver/Set-IpamDiscoveryDomain.md index 126a6f5cf9..5832ef46aa 100644 --- a/docset/winserver2022-ps/ipamserver/Set-IpamDiscoveryDomain.md +++ b/docset/winserver2022-ps/ipamserver/Set-IpamDiscoveryDomain.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamDiscoveryDomain.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/set-ipamdiscoverydomain?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/set-ipamdiscoverydomain?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IpamDiscoveryDomain --- diff --git a/docset/winserver2022-ps/ipamserver/Set-IpamRange.md b/docset/winserver2022-ps/ipamserver/Set-IpamRange.md index 4f020e0751..4334ce9b8a 100644 --- a/docset/winserver2022-ps/ipamserver/Set-IpamRange.md +++ b/docset/winserver2022-ps/ipamserver/Set-IpamRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamRange.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/set-ipamrange?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/set-ipamrange?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IpamRange --- diff --git a/docset/winserver2022-ps/ipamserver/Set-IpamServerInventory.md b/docset/winserver2022-ps/ipamserver/Set-IpamServerInventory.md index fb382e9991..168ee8882b 100644 --- a/docset/winserver2022-ps/ipamserver/Set-IpamServerInventory.md +++ b/docset/winserver2022-ps/ipamserver/Set-IpamServerInventory.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamServerInventory.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/set-ipamserverinventory?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/set-ipamserverinventory?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IpamServerInventory --- diff --git a/docset/winserver2022-ps/ipamserver/Set-IpamSubnet.md b/docset/winserver2022-ps/ipamserver/Set-IpamSubnet.md index e30fa41d14..00bee5ba9a 100644 --- a/docset/winserver2022-ps/ipamserver/Set-IpamSubnet.md +++ b/docset/winserver2022-ps/ipamserver/Set-IpamSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamSubnet.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/set-ipamsubnet?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/set-ipamsubnet?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IpamSubnet --- diff --git a/docset/winserver2022-ps/ipamserver/Update-IpamServer.md b/docset/winserver2022-ps/ipamserver/Update-IpamServer.md index 6289f8e662..04e01d8b97 100644 --- a/docset/winserver2022-ps/ipamserver/Update-IpamServer.md +++ b/docset/winserver2022-ps/ipamserver/Update-IpamServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: IpamServer.cdxml-help.xml Module Name: IpamServer ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/ipamserver/update-ipamserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/ipamserver/update-ipamserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-IpamServer --- diff --git a/docset/winserver2022-ps/iscsi/Connect-IscsiTarget.md b/docset/winserver2022-ps/iscsi/Connect-IscsiTarget.md index 42fb0970e2..98ddd885e6 100644 --- a/docset/winserver2022-ps/iscsi/Connect-IscsiTarget.md +++ b/docset/winserver2022-ps/iscsi/Connect-IscsiTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: iSCSITarget.cdxml-help.xml Module Name: iSCSI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsi/connect-iscsitarget?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/connect-iscsitarget?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Connect-IscsiTarget --- diff --git a/docset/winserver2022-ps/iscsi/Disconnect-IscsiTarget.md b/docset/winserver2022-ps/iscsi/Disconnect-IscsiTarget.md index 2538f87595..4b2a7af8f1 100644 --- a/docset/winserver2022-ps/iscsi/Disconnect-IscsiTarget.md +++ b/docset/winserver2022-ps/iscsi/Disconnect-IscsiTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: iSCSITarget.cdxml-help.xml Module Name: iSCSI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsi/disconnect-iscsitarget?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/disconnect-iscsitarget?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disconnect-IscsiTarget --- diff --git a/docset/winserver2022-ps/iscsi/Get-IscsiConnection.md b/docset/winserver2022-ps/iscsi/Get-IscsiConnection.md index 06e7864b69..333a2f6483 100644 --- a/docset/winserver2022-ps/iscsi/Get-IscsiConnection.md +++ b/docset/winserver2022-ps/iscsi/Get-IscsiConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: iSCSIConnection.cdxml-help.xml Module Name: iSCSI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsi/get-iscsiconnection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/get-iscsiconnection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IscsiConnection --- diff --git a/docset/winserver2022-ps/iscsi/Get-IscsiSession.md b/docset/winserver2022-ps/iscsi/Get-IscsiSession.md index c8c96ae358..b3945d8ae3 100644 --- a/docset/winserver2022-ps/iscsi/Get-IscsiSession.md +++ b/docset/winserver2022-ps/iscsi/Get-IscsiSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: iSCSISession.cdxml-help.xml Module Name: iSCSI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsi/get-iscsisession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/get-iscsisession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IscsiSession --- diff --git a/docset/winserver2022-ps/iscsi/Get-IscsiTarget.md b/docset/winserver2022-ps/iscsi/Get-IscsiTarget.md index 51b19b28b1..bd01c747d0 100644 --- a/docset/winserver2022-ps/iscsi/Get-IscsiTarget.md +++ b/docset/winserver2022-ps/iscsi/Get-IscsiTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: iSCSITarget.cdxml-help.xml Module Name: iSCSI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsi/get-iscsitarget?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/get-iscsitarget?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IscsiTarget --- diff --git a/docset/winserver2022-ps/iscsi/Get-IscsiTargetPortal.md b/docset/winserver2022-ps/iscsi/Get-IscsiTargetPortal.md index a51f59399b..40fac58cfb 100644 --- a/docset/winserver2022-ps/iscsi/Get-IscsiTargetPortal.md +++ b/docset/winserver2022-ps/iscsi/Get-IscsiTargetPortal.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: iSCSITargetPortal.cdxml-help.xml Module Name: iSCSI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsi/get-iscsitargetportal?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/get-iscsitargetportal?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IscsiTargetPortal --- diff --git a/docset/winserver2022-ps/iscsi/New-IscsiTargetPortal.md b/docset/winserver2022-ps/iscsi/New-IscsiTargetPortal.md index 8f71a988e5..3c0389c97c 100644 --- a/docset/winserver2022-ps/iscsi/New-IscsiTargetPortal.md +++ b/docset/winserver2022-ps/iscsi/New-IscsiTargetPortal.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: iSCSITargetPortal.cdxml-help.xml Module Name: iSCSI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsi/new-iscsitargetportal?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/new-iscsitargetportal?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-IscsiTargetPortal --- diff --git a/docset/winserver2022-ps/iscsi/Register-IscsiSession.md b/docset/winserver2022-ps/iscsi/Register-IscsiSession.md index 3348ffccb2..d0c9c8f447 100644 --- a/docset/winserver2022-ps/iscsi/Register-IscsiSession.md +++ b/docset/winserver2022-ps/iscsi/Register-IscsiSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: iSCSISession.cdxml-help.xml Module Name: iSCSI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsi/register-iscsisession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/register-iscsisession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Register-IscsiSession --- diff --git a/docset/winserver2022-ps/iscsi/Remove-IscsiTargetPortal.md b/docset/winserver2022-ps/iscsi/Remove-IscsiTargetPortal.md index c2163f6288..452d9cf957 100644 --- a/docset/winserver2022-ps/iscsi/Remove-IscsiTargetPortal.md +++ b/docset/winserver2022-ps/iscsi/Remove-IscsiTargetPortal.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: iSCSITargetPortal.cdxml-help.xml Module Name: iSCSI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsi/remove-iscsitargetportal?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/remove-iscsitargetportal?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IscsiTargetPortal --- diff --git a/docset/winserver2022-ps/iscsi/Set-IscsiChapSecret.md b/docset/winserver2022-ps/iscsi/Set-IscsiChapSecret.md index 78a494b709..e4c51f90f6 100644 --- a/docset/winserver2022-ps/iscsi/Set-IscsiChapSecret.md +++ b/docset/winserver2022-ps/iscsi/Set-IscsiChapSecret.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: iSCSISession.cdxml-help.xml Module Name: iSCSI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsi/set-iscsichapsecret?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/set-iscsichapsecret?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IscsiChapSecret --- diff --git a/docset/winserver2022-ps/iscsi/Unregister-IscsiSession.md b/docset/winserver2022-ps/iscsi/Unregister-IscsiSession.md index 62111881bc..2145e2cb7a 100644 --- a/docset/winserver2022-ps/iscsi/Unregister-IscsiSession.md +++ b/docset/winserver2022-ps/iscsi/Unregister-IscsiSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: iSCSISession.cdxml-help.xml Module Name: iSCSI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsi/unregister-iscsisession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/unregister-iscsisession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unregister-IscsiSession --- diff --git a/docset/winserver2022-ps/iscsi/Update-IscsiTarget.md b/docset/winserver2022-ps/iscsi/Update-IscsiTarget.md index 70a6771a17..524a008faa 100644 --- a/docset/winserver2022-ps/iscsi/Update-IscsiTarget.md +++ b/docset/winserver2022-ps/iscsi/Update-IscsiTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: iSCSITarget.cdxml-help.xml Module Name: iSCSI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsi/update-iscsitarget?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/update-iscsitarget?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-IscsiTarget --- diff --git a/docset/winserver2022-ps/iscsi/Update-IscsiTargetPortal.md b/docset/winserver2022-ps/iscsi/Update-IscsiTargetPortal.md index 1d0e032ff0..e2ede8f537 100644 --- a/docset/winserver2022-ps/iscsi/Update-IscsiTargetPortal.md +++ b/docset/winserver2022-ps/iscsi/Update-IscsiTargetPortal.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: iSCSITargetPortal.cdxml-help.xml Module Name: iSCSI ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsi/update-iscsitargetportal?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsi/update-iscsitargetportal?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-IscsiTargetPortal --- diff --git a/docset/winserver2022-ps/iscsitarget/Add-IscsiVirtualDiskTargetMapping.md b/docset/winserver2022-ps/iscsitarget/Add-IscsiVirtualDiskTargetMapping.md index 5f0608cfa5..0142a861d8 100644 --- a/docset/winserver2022-ps/iscsitarget/Add-IscsiVirtualDiskTargetMapping.md +++ b/docset/winserver2022-ps/iscsitarget/Add-IscsiVirtualDiskTargetMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/add-iscsivirtualdisktargetmapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/add-iscsivirtualdisktargetmapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-IscsiVirtualDiskTargetMapping --- diff --git a/docset/winserver2022-ps/iscsitarget/Checkpoint-IscsiVirtualDisk.md b/docset/winserver2022-ps/iscsitarget/Checkpoint-IscsiVirtualDisk.md index a95ea168c3..cab2788cf8 100644 --- a/docset/winserver2022-ps/iscsitarget/Checkpoint-IscsiVirtualDisk.md +++ b/docset/winserver2022-ps/iscsitarget/Checkpoint-IscsiVirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/checkpoint-iscsivirtualdisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/checkpoint-iscsivirtualdisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Checkpoint-IscsiVirtualDisk --- diff --git a/docset/winserver2022-ps/iscsitarget/Convert-IscsiVirtualDisk.md b/docset/winserver2022-ps/iscsitarget/Convert-IscsiVirtualDisk.md index 3d637da74f..be478c672e 100644 --- a/docset/winserver2022-ps/iscsitarget/Convert-IscsiVirtualDisk.md +++ b/docset/winserver2022-ps/iscsitarget/Convert-IscsiVirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/convert-iscsivirtualdisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/convert-iscsivirtualdisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Convert-IscsiVirtualDisk --- diff --git a/docset/winserver2022-ps/iscsitarget/Dismount-IscsiVirtualDiskSnapshot.md b/docset/winserver2022-ps/iscsitarget/Dismount-IscsiVirtualDiskSnapshot.md index baa015aab2..d7864eef8b 100644 --- a/docset/winserver2022-ps/iscsitarget/Dismount-IscsiVirtualDiskSnapshot.md +++ b/docset/winserver2022-ps/iscsitarget/Dismount-IscsiVirtualDiskSnapshot.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/dismount-iscsivirtualdisksnapshot?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/dismount-iscsivirtualdisksnapshot?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Dismount-IscsiVirtualDiskSnapshot --- diff --git a/docset/winserver2022-ps/iscsitarget/Export-IscsiTargetServerConfiguration.md b/docset/winserver2022-ps/iscsitarget/Export-IscsiTargetServerConfiguration.md index 8421072f62..f7a43eeb7f 100644 --- a/docset/winserver2022-ps/iscsitarget/Export-IscsiTargetServerConfiguration.md +++ b/docset/winserver2022-ps/iscsitarget/Export-IscsiTargetServerConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/export-iscsitargetserverconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/export-iscsitargetserverconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-IscsiTargetServerConfiguration --- diff --git a/docset/winserver2022-ps/iscsitarget/Export-IscsiVirtualDiskSnapshot.md b/docset/winserver2022-ps/iscsitarget/Export-IscsiVirtualDiskSnapshot.md index f40a6e663f..a13fbda35f 100644 --- a/docset/winserver2022-ps/iscsitarget/Export-IscsiVirtualDiskSnapshot.md +++ b/docset/winserver2022-ps/iscsitarget/Export-IscsiVirtualDiskSnapshot.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/export-iscsivirtualdisksnapshot?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/export-iscsivirtualdisksnapshot?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-IscsiVirtualDiskSnapshot --- diff --git a/docset/winserver2022-ps/iscsitarget/Get-IscsiServerTarget.md b/docset/winserver2022-ps/iscsitarget/Get-IscsiServerTarget.md index de55de9ad5..d9ebf44cc1 100644 --- a/docset/winserver2022-ps/iscsitarget/Get-IscsiServerTarget.md +++ b/docset/winserver2022-ps/iscsitarget/Get-IscsiServerTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/get-iscsiservertarget?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/get-iscsiservertarget?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IscsiServerTarget --- diff --git a/docset/winserver2022-ps/iscsitarget/Get-IscsiTargetServerSetting.md b/docset/winserver2022-ps/iscsitarget/Get-IscsiTargetServerSetting.md index e40ddf00c5..8bd1050403 100644 --- a/docset/winserver2022-ps/iscsitarget/Get-IscsiTargetServerSetting.md +++ b/docset/winserver2022-ps/iscsitarget/Get-IscsiTargetServerSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/get-iscsitargetserversetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/get-iscsitargetserversetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IscsiTargetServerSetting --- diff --git a/docset/winserver2022-ps/iscsitarget/Get-IscsiVirtualDisk.md b/docset/winserver2022-ps/iscsitarget/Get-IscsiVirtualDisk.md index c645205d93..2c944badab 100644 --- a/docset/winserver2022-ps/iscsitarget/Get-IscsiVirtualDisk.md +++ b/docset/winserver2022-ps/iscsitarget/Get-IscsiVirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/get-iscsivirtualdisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/get-iscsivirtualdisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IscsiVirtualDisk --- diff --git a/docset/winserver2022-ps/iscsitarget/Get-IscsiVirtualDiskSnapshot.md b/docset/winserver2022-ps/iscsitarget/Get-IscsiVirtualDiskSnapshot.md index cbc5e60103..37226901b7 100644 --- a/docset/winserver2022-ps/iscsitarget/Get-IscsiVirtualDiskSnapshot.md +++ b/docset/winserver2022-ps/iscsitarget/Get-IscsiVirtualDiskSnapshot.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/get-iscsivirtualdisksnapshot?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/get-iscsivirtualdisksnapshot?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-IscsiVirtualDiskSnapshot --- diff --git a/docset/winserver2022-ps/iscsitarget/Import-IscsiTargetServerConfiguration.md b/docset/winserver2022-ps/iscsitarget/Import-IscsiTargetServerConfiguration.md index c2496088ca..391631bb80 100644 --- a/docset/winserver2022-ps/iscsitarget/Import-IscsiTargetServerConfiguration.md +++ b/docset/winserver2022-ps/iscsitarget/Import-IscsiTargetServerConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/import-iscsitargetserverconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/import-iscsitargetserverconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-IscsiTargetServerConfiguration --- diff --git a/docset/winserver2022-ps/iscsitarget/Import-IscsiVirtualDisk.md b/docset/winserver2022-ps/iscsitarget/Import-IscsiVirtualDisk.md index a192d752eb..0bc479cb9f 100644 --- a/docset/winserver2022-ps/iscsitarget/Import-IscsiVirtualDisk.md +++ b/docset/winserver2022-ps/iscsitarget/Import-IscsiVirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/import-iscsivirtualdisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/import-iscsivirtualdisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-IscsiVirtualDisk --- diff --git a/docset/winserver2022-ps/iscsitarget/Mount-IscsiVirtualDiskSnapshot.md b/docset/winserver2022-ps/iscsitarget/Mount-IscsiVirtualDiskSnapshot.md index b9d6039790..b24e540e20 100644 --- a/docset/winserver2022-ps/iscsitarget/Mount-IscsiVirtualDiskSnapshot.md +++ b/docset/winserver2022-ps/iscsitarget/Mount-IscsiVirtualDiskSnapshot.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/mount-iscsivirtualdisksnapshot?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/mount-iscsivirtualdisksnapshot?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Mount-IscsiVirtualDiskSnapshot --- diff --git a/docset/winserver2022-ps/iscsitarget/New-IscsiServerTarget.md b/docset/winserver2022-ps/iscsitarget/New-IscsiServerTarget.md index 7ff8ee24bf..6cb590b2eb 100644 --- a/docset/winserver2022-ps/iscsitarget/New-IscsiServerTarget.md +++ b/docset/winserver2022-ps/iscsitarget/New-IscsiServerTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/new-iscsiservertarget?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/new-iscsiservertarget?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-IscsiServerTarget --- diff --git a/docset/winserver2022-ps/iscsitarget/New-IscsiVirtualDisk.md b/docset/winserver2022-ps/iscsitarget/New-IscsiVirtualDisk.md index e2a0eb9741..dced34f06e 100644 --- a/docset/winserver2022-ps/iscsitarget/New-IscsiVirtualDisk.md +++ b/docset/winserver2022-ps/iscsitarget/New-IscsiVirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/new-iscsivirtualdisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/new-iscsivirtualdisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-IscsiVirtualDisk --- diff --git a/docset/winserver2022-ps/iscsitarget/Remove-IscsiServerTarget.md b/docset/winserver2022-ps/iscsitarget/Remove-IscsiServerTarget.md index 6b53f53ae9..018769b77e 100644 --- a/docset/winserver2022-ps/iscsitarget/Remove-IscsiServerTarget.md +++ b/docset/winserver2022-ps/iscsitarget/Remove-IscsiServerTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/remove-iscsiservertarget?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/remove-iscsiservertarget?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IscsiServerTarget --- diff --git a/docset/winserver2022-ps/iscsitarget/Remove-IscsiVirtualDisk.md b/docset/winserver2022-ps/iscsitarget/Remove-IscsiVirtualDisk.md index 780186e1cf..c65fab8c37 100644 --- a/docset/winserver2022-ps/iscsitarget/Remove-IscsiVirtualDisk.md +++ b/docset/winserver2022-ps/iscsitarget/Remove-IscsiVirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/remove-iscsivirtualdisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/remove-iscsivirtualdisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IscsiVirtualDisk --- diff --git a/docset/winserver2022-ps/iscsitarget/Remove-IscsiVirtualDiskSnapshot.md b/docset/winserver2022-ps/iscsitarget/Remove-IscsiVirtualDiskSnapshot.md index e2776495de..0dad90986f 100644 --- a/docset/winserver2022-ps/iscsitarget/Remove-IscsiVirtualDiskSnapshot.md +++ b/docset/winserver2022-ps/iscsitarget/Remove-IscsiVirtualDiskSnapshot.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/remove-iscsivirtualdisksnapshot?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/remove-iscsivirtualdisksnapshot?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IscsiVirtualDiskSnapshot --- diff --git a/docset/winserver2022-ps/iscsitarget/Remove-IscsiVirtualDiskTargetMapping.md b/docset/winserver2022-ps/iscsitarget/Remove-IscsiVirtualDiskTargetMapping.md index edd0ca793e..ea3db05f16 100644 --- a/docset/winserver2022-ps/iscsitarget/Remove-IscsiVirtualDiskTargetMapping.md +++ b/docset/winserver2022-ps/iscsitarget/Remove-IscsiVirtualDiskTargetMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/remove-iscsivirtualdisktargetmapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/remove-iscsivirtualdisktargetmapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-IscsiVirtualDiskTargetMapping --- diff --git a/docset/winserver2022-ps/iscsitarget/Resize-IscsiVirtualDisk.md b/docset/winserver2022-ps/iscsitarget/Resize-IscsiVirtualDisk.md index 68d77a5aa9..f96c2a68cb 100644 --- a/docset/winserver2022-ps/iscsitarget/Resize-IscsiVirtualDisk.md +++ b/docset/winserver2022-ps/iscsitarget/Resize-IscsiVirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/resize-iscsivirtualdisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/resize-iscsivirtualdisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resize-IscsiVirtualDisk --- diff --git a/docset/winserver2022-ps/iscsitarget/Restore-IscsiVirtualDisk.md b/docset/winserver2022-ps/iscsitarget/Restore-IscsiVirtualDisk.md index 4dabff8621..779387d2df 100644 --- a/docset/winserver2022-ps/iscsitarget/Restore-IscsiVirtualDisk.md +++ b/docset/winserver2022-ps/iscsitarget/Restore-IscsiVirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/restore-iscsivirtualdisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/restore-iscsivirtualdisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-IscsiVirtualDisk --- diff --git a/docset/winserver2022-ps/iscsitarget/Set-IscsiServerTarget.md b/docset/winserver2022-ps/iscsitarget/Set-IscsiServerTarget.md index 6f808e9b93..ee68a01d9b 100644 --- a/docset/winserver2022-ps/iscsitarget/Set-IscsiServerTarget.md +++ b/docset/winserver2022-ps/iscsitarget/Set-IscsiServerTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/set-iscsiservertarget?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/set-iscsiservertarget?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IscsiServerTarget --- diff --git a/docset/winserver2022-ps/iscsitarget/Set-IscsiTargetServerSetting.md b/docset/winserver2022-ps/iscsitarget/Set-IscsiTargetServerSetting.md index 3a1312efc0..2a57006591 100644 --- a/docset/winserver2022-ps/iscsitarget/Set-IscsiTargetServerSetting.md +++ b/docset/winserver2022-ps/iscsitarget/Set-IscsiTargetServerSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/set-iscsitargetserversetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/set-iscsitargetserversetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IscsiTargetServerSetting --- diff --git a/docset/winserver2022-ps/iscsitarget/Set-IscsiVirtualDisk.md b/docset/winserver2022-ps/iscsitarget/Set-IscsiVirtualDisk.md index 9f6fc8fbb7..d7ff298164 100644 --- a/docset/winserver2022-ps/iscsitarget/Set-IscsiVirtualDisk.md +++ b/docset/winserver2022-ps/iscsitarget/Set-IscsiVirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/set-iscsivirtualdisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/set-iscsivirtualdisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IscsiVirtualDisk --- diff --git a/docset/winserver2022-ps/iscsitarget/Set-IscsiVirtualDiskSnapshot.md b/docset/winserver2022-ps/iscsitarget/Set-IscsiVirtualDiskSnapshot.md index e012d6a87d..a8170e5963 100644 --- a/docset/winserver2022-ps/iscsitarget/Set-IscsiVirtualDiskSnapshot.md +++ b/docset/winserver2022-ps/iscsitarget/Set-IscsiVirtualDiskSnapshot.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/set-iscsivirtualdisksnapshot?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/set-iscsivirtualdisksnapshot?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-IscsiVirtualDiskSnapshot --- diff --git a/docset/winserver2022-ps/iscsitarget/Stop-IscsiVirtualDiskOperation.md b/docset/winserver2022-ps/iscsitarget/Stop-IscsiVirtualDiskOperation.md index 49e3294dd7..9baabb91c8 100644 --- a/docset/winserver2022-ps/iscsitarget/Stop-IscsiVirtualDiskOperation.md +++ b/docset/winserver2022-ps/iscsitarget/Stop-IscsiVirtualDiskOperation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Iscsi.Target.Commands.dll-Help.xml Module Name: IscsiTarget ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/iscsitarget/stop-iscsivirtualdiskoperation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/iscsitarget/stop-iscsivirtualdiskoperation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-IscsiVirtualDiskOperation --- diff --git a/docset/winserver2022-ps/kds/Add-KdsRootKey.md b/docset/winserver2022-ps/kds/Add-KdsRootKey.md index b6a59acf91..5df3cbdb5b 100644 --- a/docset/winserver2022-ps/kds/Add-KdsRootKey.md +++ b/docset/winserver2022-ps/kds/Add-KdsRootKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.KeyDistributionService.Cmdlets.dll-Help.xml Module Name: KDS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/kds/add-kdsrootkey?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/kds/add-kdsrootkey?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-KdsRootKey --- diff --git a/docset/winserver2022-ps/kds/Clear-KdsCache.md b/docset/winserver2022-ps/kds/Clear-KdsCache.md index 7a4f35fdde..3bf617641b 100644 --- a/docset/winserver2022-ps/kds/Clear-KdsCache.md +++ b/docset/winserver2022-ps/kds/Clear-KdsCache.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.KeyDistributionService.Cmdlets.dll-Help.xml Module Name: KDS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/kds/clear-kdscache?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/kds/clear-kdscache?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-KdsCache --- diff --git a/docset/winserver2022-ps/kds/Get-KdsConfiguration.md b/docset/winserver2022-ps/kds/Get-KdsConfiguration.md index f686146555..d7aef6a4df 100644 --- a/docset/winserver2022-ps/kds/Get-KdsConfiguration.md +++ b/docset/winserver2022-ps/kds/Get-KdsConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.KeyDistributionService.Cmdlets.dll-Help.xml Module Name: KDS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/kds/get-kdsconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/kds/get-kdsconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-KdsConfiguration --- diff --git a/docset/winserver2022-ps/kds/Get-KdsRootKey.md b/docset/winserver2022-ps/kds/Get-KdsRootKey.md index 2a7da867bb..2cac049f27 100644 --- a/docset/winserver2022-ps/kds/Get-KdsRootKey.md +++ b/docset/winserver2022-ps/kds/Get-KdsRootKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.KeyDistributionService.Cmdlets.dll-Help.xml Module Name: KDS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/kds/get-kdsrootkey?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/kds/get-kdsrootkey?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-KdsRootKey --- diff --git a/docset/winserver2022-ps/kds/Set-KdsConfiguration.md b/docset/winserver2022-ps/kds/Set-KdsConfiguration.md index c70efda204..8c966c6c8a 100644 --- a/docset/winserver2022-ps/kds/Set-KdsConfiguration.md +++ b/docset/winserver2022-ps/kds/Set-KdsConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.KeyDistributionService.Cmdlets.dll-Help.xml Module Name: KDS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/kds/set-kdsconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/kds/set-kdsconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-KdsConfiguration --- diff --git a/docset/winserver2022-ps/kds/Test-KdsRootKey.md b/docset/winserver2022-ps/kds/Test-KdsRootKey.md index 3b3bcd879b..cb1fd8cbc8 100644 --- a/docset/winserver2022-ps/kds/Test-KdsRootKey.md +++ b/docset/winserver2022-ps/kds/Test-KdsRootKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.KeyDistributionService.Cmdlets.dll-Help.xml Module Name: KDS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/kds/test-kdsrootkey?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/kds/test-kdsrootkey?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-KdsRootKey --- diff --git a/docset/winserver2022-ps/languagepackmanagement/Get-InstalledLanguage.md b/docset/winserver2022-ps/languagepackmanagement/Get-InstalledLanguage.md index 1a241d46bb..8b45dd294f 100644 --- a/docset/winserver2022-ps/languagepackmanagement/Get-InstalledLanguage.md +++ b/docset/winserver2022-ps/languagepackmanagement/Get-InstalledLanguage.md @@ -1,11 +1,11 @@ --- +description: The Get-InstalledLanguage cmdlet lets you see which languages are installed in a running Windows installation external help file: Microsoft.LanguagePackManagement.Powershell.Commands.dll-Help.xml Module Name: LanguagePackManagement -online version: https://docs.microsoft.com/powershell/module/languagepackmanagement/get-installedlanguage?view=windowsserver2022-ps -schema: 2.0.0 ms.date: 08/15/2022 +online version: https://learn.microsoft.com/powershell/module/languagepackmanagement/get-installedlanguage?view=windowsserver2022-ps +schema: 2.0.0 title: Get-InstalledLanguage -description: The Get-InstalledLanguage cmdlet lets you see which languages are installed in a running Windows installation --- # Get-InstalledLanguage diff --git a/docset/winserver2022-ps/languagepackmanagement/Get-SystemPreferredUILanguage.md b/docset/winserver2022-ps/languagepackmanagement/Get-SystemPreferredUILanguage.md index a77a573d2e..9020ba0b24 100644 --- a/docset/winserver2022-ps/languagepackmanagement/Get-SystemPreferredUILanguage.md +++ b/docset/winserver2022-ps/languagepackmanagement/Get-SystemPreferredUILanguage.md @@ -1,11 +1,11 @@ --- +description: The Get-SystemPreferredUILanguage cmdlet lets you see which language is set as the System Preferred UI Language in a running Windows installation external help file: Microsoft.LanguagePackManagement.Powershell.Commands.dll-Help.xml Module Name: LanguagePackManagement -online version: https://docs.microsoft.com/powershell/module/languagepackmanagement/get-systempreferreduilanguage?view=windowsserver2022-ps -schema: 2.0.0 ms.date: 08/15/2022 +online version: https://learn.microsoft.com/powershell/module/languagepackmanagement/get-systempreferreduilanguage?view=windowsserver2022-ps +schema: 2.0.0 title: Get-SystemPreferredUILanguage -description: The Get-SystemPreferredUILanguage cmdlet lets you see which language is set as the System Preferred UI Language in a running Windows installation --- # Get-SystemPreferredUILanguage diff --git a/docset/winserver2022-ps/languagepackmanagement/Install-Language.md b/docset/winserver2022-ps/languagepackmanagement/Install-Language.md index da83efe76c..8ede6ada5d 100644 --- a/docset/winserver2022-ps/languagepackmanagement/Install-Language.md +++ b/docset/winserver2022-ps/languagepackmanagement/Install-Language.md @@ -1,11 +1,11 @@ --- +description: The Install-Language cmdlet lets you add a language to a running Windows installation external help file: Microsoft.LanguagePackManagement.Powershell.Commands.dll-Help.xml Module Name: LanguagePackManagement -online version: https://docs.microsoft.com/powershell/module/languagepackmanagement/install-language?view=windowsserver2022-ps -schema: 2.0.0 ms.date: 08/15/2022 +online version: https://learn.microsoft.com/powershell/module/languagepackmanagement/install-language?view=windowsserver2022-ps +schema: 2.0.0 title: Install-Language -description: The Install-Language cmdlet lets you add a language to a running Windows installation --- # Install-Language diff --git a/docset/winserver2022-ps/languagepackmanagement/LanguagePackManagement.md b/docset/winserver2022-ps/languagepackmanagement/LanguagePackManagement.md index b9cd71bcef..cb2ccfa0db 100644 --- a/docset/winserver2022-ps/languagepackmanagement/LanguagePackManagement.md +++ b/docset/winserver2022-ps/languagepackmanagement/LanguagePackManagement.md @@ -1,12 +1,12 @@ --- -Module Name: LanguagePackManagement -Module Guid: f42dbdd4-4358-4067-8155-a4567a0aaee5 +description: The LanguagePackManagement module includes cmdlets that help you easily manage languages and language settings on a running Windows installation Download Help Link: https://aka.ms/winsvr-2022-pshelp Help Version: 5.0.0.1 Locale: en-US +Module Guid: f42dbdd4-4358-4067-8155-a4567a0aaee5 +Module Name: LanguagePackManagement ms.date: 08/15/2022 title: LanguagePackManagement module -description: The LanguagePackManagement module includes cmdlets that help you easily manage languages and language settings on a running Windows installation --- # LanguagePackManagement Module @@ -33,4 +33,4 @@ Installs a language onto a device. Sets the provided language as the System Preferred UI Language. ### [Uninstall-Language](Uninstall-Language.md) -Removes a language from a device. \ No newline at end of file +Removes a language from a device. diff --git a/docset/winserver2022-ps/languagepackmanagement/Set-SystemPreferredUILanguage.md b/docset/winserver2022-ps/languagepackmanagement/Set-SystemPreferredUILanguage.md index 6d676f1a5d..c3bb57d6fc 100644 --- a/docset/winserver2022-ps/languagepackmanagement/Set-SystemPreferredUILanguage.md +++ b/docset/winserver2022-ps/languagepackmanagement/Set-SystemPreferredUILanguage.md @@ -1,11 +1,11 @@ --- +description: The Set-SystemPreferredUILanguage cmdlet lets you set an installed language as the System Preferred UI Language in a running Windows installation external help file: Microsoft.LanguagePackManagement.Powershell.Commands.dll-Help.xml Module Name: LanguagePackManagement -online version: https://docs.microsoft.com/powershell/module/languagepackmanagement/set-systempreferreduilanguage?view=windowsserver2022-ps -schema: 2.0.0 ms.date: 08/15/2022 +online version: https://learn.microsoft.com/powershell/module/languagepackmanagement/set-systempreferreduilanguage?view=windowsserver2022-ps +schema: 2.0.0 title: Set-SystemPreferredUILanguage -description: The Set-SystemPreferredUILanguage cmdlet lets you set an installed language as the System Preferred UI Language in a running Windows installation --- # Set-SystemPreferredUILanguage diff --git a/docset/winserver2022-ps/languagepackmanagement/Uninstall-Language.md b/docset/winserver2022-ps/languagepackmanagement/Uninstall-Language.md index e4e3c6282c..056c36e521 100644 --- a/docset/winserver2022-ps/languagepackmanagement/Uninstall-Language.md +++ b/docset/winserver2022-ps/languagepackmanagement/Uninstall-Language.md @@ -1,11 +1,11 @@ --- +description: The Uninstall-Language cmdlet lets you remove a language and its components from a running Windows installation external help file: Microsoft.LanguagePackManagement.Powershell.Commands.dll-Help.xml Module Name: LanguagePackManagement -online version: https://docs.microsoft.com/powershell/module/languagepackmanagement/uninstall-language?view=windowsserver2022-ps -schema: 2.0.0 ms.date: 08/15/2022 +online version: https://learn.microsoft.com/powershell/module/languagepackmanagement/uninstall-language?view=windowsserver2022-ps +schema: 2.0.0 title: Uninstall-Language -description: The Uninstall-Language cmdlet lets you remove a language and its components from a running Windows installation --- # Uninstall-Language diff --git a/docset/winserver2022-ps/mmagent/Debug-MMAppPrelaunch.md b/docset/winserver2022-ps/mmagent/Debug-MMAppPrelaunch.md index 54191c388e..031176aae3 100644 --- a/docset/winserver2022-ps/mmagent/Debug-MMAppPrelaunch.md +++ b/docset/winserver2022-ps/mmagent/Debug-MMAppPrelaunch.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ps_mmagent_v1.0.cdxml-help.xml Module Name: MMAgent ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/mmagent/debug-mmappprelaunch?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mmagent/debug-mmappprelaunch?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Debug-MMAppPrelaunch --- diff --git a/docset/winserver2022-ps/mmagent/Disable-MMAgent.md b/docset/winserver2022-ps/mmagent/Disable-MMAgent.md index ca8c0cfc9d..b2bf9c668f 100644 --- a/docset/winserver2022-ps/mmagent/Disable-MMAgent.md +++ b/docset/winserver2022-ps/mmagent/Disable-MMAgent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ps_mmagent_v1.0.cdxml-help.xml Module Name: MMAgent ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/mmagent/disable-mmagent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mmagent/disable-mmagent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-MMAgent --- diff --git a/docset/winserver2022-ps/mmagent/Enable-MMAgent.md b/docset/winserver2022-ps/mmagent/Enable-MMAgent.md index 0b6db106e5..544b927627 100644 --- a/docset/winserver2022-ps/mmagent/Enable-MMAgent.md +++ b/docset/winserver2022-ps/mmagent/Enable-MMAgent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ps_mmagent_v1.0.cdxml-help.xml Module Name: MMAgent ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/mmagent/enable-mmagent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mmagent/enable-mmagent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-MMAgent --- diff --git a/docset/winserver2022-ps/mmagent/Get-MMAgent.md b/docset/winserver2022-ps/mmagent/Get-MMAgent.md index 84985c0810..7fa266fd5a 100644 --- a/docset/winserver2022-ps/mmagent/Get-MMAgent.md +++ b/docset/winserver2022-ps/mmagent/Get-MMAgent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ps_mmagent_v1.0.cdxml-help.xml Module Name: MMAgent ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/mmagent/get-mmagent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mmagent/get-mmagent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MMAgent --- diff --git a/docset/winserver2022-ps/mmagent/Set-MMAgent.md b/docset/winserver2022-ps/mmagent/Set-MMAgent.md index 7b86347cad..4ae4b62f01 100644 --- a/docset/winserver2022-ps/mmagent/Set-MMAgent.md +++ b/docset/winserver2022-ps/mmagent/Set-MMAgent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ps_mmagent_v1.0.cdxml-help.xml Module Name: MMAgent ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/mmagent/set-mmagent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mmagent/set-mmagent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-MMAgent --- diff --git a/docset/winserver2022-ps/mpio/Clear-MSDSMSupportedHW.md b/docset/winserver2022-ps/mpio/Clear-MSDSMSupportedHW.md index be79829860..4595e5682c 100644 --- a/docset/winserver2022-ps/mpio/Clear-MSDSMSupportedHW.md +++ b/docset/winserver2022-ps/mpio/Clear-MSDSMSupportedHW.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSDSMSupportedHW.cdxml-help.xml Module Name: MPIO ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/mpio/clear-msdsmsupportedhw?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/clear-msdsmsupportedhw?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-MSDSMSupportedHW --- diff --git a/docset/winserver2022-ps/mpio/Disable-MSDSMAutomaticClaim.md b/docset/winserver2022-ps/mpio/Disable-MSDSMAutomaticClaim.md index 86a3ee7070..c62239ee4b 100644 --- a/docset/winserver2022-ps/mpio/Disable-MSDSMAutomaticClaim.md +++ b/docset/winserver2022-ps/mpio/Disable-MSDSMAutomaticClaim.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Mpio-help.xml Module Name: MPIO ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/mpio/disable-msdsmautomaticclaim?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/disable-msdsmautomaticclaim?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-MSDSMAutomaticClaim --- diff --git a/docset/winserver2022-ps/mpio/Enable-MSDSMAutomaticClaim.md b/docset/winserver2022-ps/mpio/Enable-MSDSMAutomaticClaim.md index b527611ade..e8a1313df7 100644 --- a/docset/winserver2022-ps/mpio/Enable-MSDSMAutomaticClaim.md +++ b/docset/winserver2022-ps/mpio/Enable-MSDSMAutomaticClaim.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Mpio-help.xml Module Name: MPIO ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/mpio/enable-msdsmautomaticclaim?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/enable-msdsmautomaticclaim?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-MSDSMAutomaticClaim --- diff --git a/docset/winserver2022-ps/mpio/Get-MPIOAvailableHW.md b/docset/winserver2022-ps/mpio/Get-MPIOAvailableHW.md index 7f54bb74dd..2e62ec1e38 100644 --- a/docset/winserver2022-ps/mpio/Get-MPIOAvailableHW.md +++ b/docset/winserver2022-ps/mpio/Get-MPIOAvailableHW.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MPIOAvailableHW.cdxml-help.xml Module Name: MPIO ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/mpio/get-mpioavailablehw?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/get-mpioavailablehw?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MPIOAvailableHW --- diff --git a/docset/winserver2022-ps/mpio/Get-MPIOSetting.md b/docset/winserver2022-ps/mpio/Get-MPIOSetting.md index 684f852652..5f742d596d 100644 --- a/docset/winserver2022-ps/mpio/Get-MPIOSetting.md +++ b/docset/winserver2022-ps/mpio/Get-MPIOSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Mpio-help.xml Module Name: MPIO ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/mpio/get-mpiosetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/get-mpiosetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MPIOSetting --- diff --git a/docset/winserver2022-ps/mpio/Get-MSDSMAutomaticClaimSettings.md b/docset/winserver2022-ps/mpio/Get-MSDSMAutomaticClaimSettings.md index 175aef3656..f492206a9e 100644 --- a/docset/winserver2022-ps/mpio/Get-MSDSMAutomaticClaimSettings.md +++ b/docset/winserver2022-ps/mpio/Get-MSDSMAutomaticClaimSettings.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Mpio-help.xml Module Name: MPIO ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/mpio/get-msdsmautomaticclaimsettings?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/get-msdsmautomaticclaimsettings?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MSDSMAutomaticClaimSettings --- diff --git a/docset/winserver2022-ps/mpio/Get-MSDSMGlobalDefaultLoadBalancePolicy.md b/docset/winserver2022-ps/mpio/Get-MSDSMGlobalDefaultLoadBalancePolicy.md index ecd880bfa8..438343534f 100644 --- a/docset/winserver2022-ps/mpio/Get-MSDSMGlobalDefaultLoadBalancePolicy.md +++ b/docset/winserver2022-ps/mpio/Get-MSDSMGlobalDefaultLoadBalancePolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Mpio-help.xml Module Name: MPIO ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/mpio/get-msdsmglobaldefaultloadbalancepolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/get-msdsmglobaldefaultloadbalancepolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MSDSMGlobalDefaultLoadBalancePolicy --- diff --git a/docset/winserver2022-ps/mpio/Get-MSDSMSupportedHW.md b/docset/winserver2022-ps/mpio/Get-MSDSMSupportedHW.md index e0a25c41af..a38f8f23ba 100644 --- a/docset/winserver2022-ps/mpio/Get-MSDSMSupportedHW.md +++ b/docset/winserver2022-ps/mpio/Get-MSDSMSupportedHW.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSDSMSupportedHW.cdxml-help.xml Module Name: MPIO ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/mpio/get-msdsmsupportedhw?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/get-msdsmsupportedhw?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MSDSMSupportedHW --- diff --git a/docset/winserver2022-ps/mpio/New-MSDSMSupportedHW.md b/docset/winserver2022-ps/mpio/New-MSDSMSupportedHW.md index 2317f8b6ba..3a7d57b506 100644 --- a/docset/winserver2022-ps/mpio/New-MSDSMSupportedHW.md +++ b/docset/winserver2022-ps/mpio/New-MSDSMSupportedHW.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSDSMSupportedHW.cdxml-help.xml Module Name: MPIO ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/mpio/new-msdsmsupportedhw?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/new-msdsmsupportedhw?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-MSDSMSupportedHW --- diff --git a/docset/winserver2022-ps/mpio/Remove-MSDSMSupportedHW.md b/docset/winserver2022-ps/mpio/Remove-MSDSMSupportedHW.md index 172b1ea00c..9d4669381b 100644 --- a/docset/winserver2022-ps/mpio/Remove-MSDSMSupportedHW.md +++ b/docset/winserver2022-ps/mpio/Remove-MSDSMSupportedHW.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSDSMSupportedHW.cdxml-help.xml Module Name: MPIO ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/mpio/remove-msdsmsupportedhw?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/remove-msdsmsupportedhw?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-MSDSMSupportedHW --- diff --git a/docset/winserver2022-ps/mpio/Set-MPIOSetting.md b/docset/winserver2022-ps/mpio/Set-MPIOSetting.md index 93eb4bd4d4..65a620dc54 100644 --- a/docset/winserver2022-ps/mpio/Set-MPIOSetting.md +++ b/docset/winserver2022-ps/mpio/Set-MPIOSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Mpio-help.xml Module Name: MPIO ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/mpio/set-mpiosetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/set-mpiosetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-MPIOSetting --- diff --git a/docset/winserver2022-ps/mpio/Set-MSDSMGlobalDefaultLoadBalancePolicy.md b/docset/winserver2022-ps/mpio/Set-MSDSMGlobalDefaultLoadBalancePolicy.md index 40d1331feb..2ad03eecce 100644 --- a/docset/winserver2022-ps/mpio/Set-MSDSMGlobalDefaultLoadBalancePolicy.md +++ b/docset/winserver2022-ps/mpio/Set-MSDSMGlobalDefaultLoadBalancePolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Mpio-help.xml Module Name: MPIO ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/mpio/set-msdsmglobaldefaultloadbalancepolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/set-msdsmglobaldefaultloadbalancepolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-MSDSMGlobalDefaultLoadBalancePolicy --- diff --git a/docset/winserver2022-ps/mpio/Update-MPIOClaimedHW.md b/docset/winserver2022-ps/mpio/Update-MPIOClaimedHW.md index d6a8688f29..6f7bbc46f4 100644 --- a/docset/winserver2022-ps/mpio/Update-MPIOClaimedHW.md +++ b/docset/winserver2022-ps/mpio/Update-MPIOClaimedHW.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MPIOClaimedHW.cdxml-help.xml Module Name: MPIO ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/mpio/update-mpioclaimedhw?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/mpio/update-mpioclaimedhw?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-MPIOClaimedHW --- diff --git a/docset/winserver2022-ps/msdtc/Add-DtcClusterTMMapping.md b/docset/winserver2022-ps/msdtc/Add-DtcClusterTMMapping.md index 439d196358..338a515912 100644 --- a/docset/winserver2022-ps/msdtc/Add-DtcClusterTMMapping.md +++ b/docset/winserver2022-ps/msdtc/Add-DtcClusterTMMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcClusterTMMappingTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/add-dtcclustertmmapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/add-dtcclustertmmapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DtcClusterTMMapping --- diff --git a/docset/winserver2022-ps/msdtc/Complete-DtcDiagnosticTransaction.md b/docset/winserver2022-ps/msdtc/Complete-DtcDiagnosticTransaction.md index 4d6cc78e94..3e2a590f36 100644 --- a/docset/winserver2022-ps/msdtc/Complete-DtcDiagnosticTransaction.md +++ b/docset/winserver2022-ps/msdtc/Complete-DtcDiagnosticTransaction.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dtc.PowerShell.dll-Help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/complete-dtcdiagnostictransaction?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/complete-dtcdiagnostictransaction?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Complete-DtcDiagnosticTransaction --- diff --git a/docset/winserver2022-ps/msdtc/Get-Dtc.md b/docset/winserver2022-ps/msdtc/Get-Dtc.md index bc22e271dd..d082217b03 100644 --- a/docset/winserver2022-ps/msdtc/Get-Dtc.md +++ b/docset/winserver2022-ps/msdtc/Get-Dtc.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtc?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtc?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-Dtc --- diff --git a/docset/winserver2022-ps/msdtc/Get-DtcAdvancedHostSetting.md b/docset/winserver2022-ps/msdtc/Get-DtcAdvancedHostSetting.md index 1392169401..401d40f527 100644 --- a/docset/winserver2022-ps/msdtc/Get-DtcAdvancedHostSetting.md +++ b/docset/winserver2022-ps/msdtc/Get-DtcAdvancedHostSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcAdvancedHostSettingTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtcadvancedhostsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtcadvancedhostsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DtcAdvancedHostSetting --- diff --git a/docset/winserver2022-ps/msdtc/Get-DtcAdvancedSetting.md b/docset/winserver2022-ps/msdtc/Get-DtcAdvancedSetting.md index c95decc819..08cfbb5f21 100644 --- a/docset/winserver2022-ps/msdtc/Get-DtcAdvancedSetting.md +++ b/docset/winserver2022-ps/msdtc/Get-DtcAdvancedSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcAdvancedSettingTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtcadvancedsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtcadvancedsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DtcAdvancedSetting --- diff --git a/docset/winserver2022-ps/msdtc/Get-DtcClusterDefault.md b/docset/winserver2022-ps/msdtc/Get-DtcClusterDefault.md index a305afbbda..c67224d49b 100644 --- a/docset/winserver2022-ps/msdtc/Get-DtcClusterDefault.md +++ b/docset/winserver2022-ps/msdtc/Get-DtcClusterDefault.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcClusterDefaultTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtcclusterdefault?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtcclusterdefault?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DtcClusterDefault --- diff --git a/docset/winserver2022-ps/msdtc/Get-DtcClusterTMMapping.md b/docset/winserver2022-ps/msdtc/Get-DtcClusterTMMapping.md index 138019bc9d..a7b1b21231 100644 --- a/docset/winserver2022-ps/msdtc/Get-DtcClusterTMMapping.md +++ b/docset/winserver2022-ps/msdtc/Get-DtcClusterTMMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcClusterTMMappingTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtcclustertmmapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtcclustertmmapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DtcClusterTMMapping --- diff --git a/docset/winserver2022-ps/msdtc/Get-DtcDefault.md b/docset/winserver2022-ps/msdtc/Get-DtcDefault.md index d936037793..b14f17ad8a 100644 --- a/docset/winserver2022-ps/msdtc/Get-DtcDefault.md +++ b/docset/winserver2022-ps/msdtc/Get-DtcDefault.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcDefaultTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtcdefault?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtcdefault?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DtcDefault --- diff --git a/docset/winserver2022-ps/msdtc/Get-DtcLog.md b/docset/winserver2022-ps/msdtc/Get-DtcLog.md index d925b36eb3..4df98ffc7f 100644 --- a/docset/winserver2022-ps/msdtc/Get-DtcLog.md +++ b/docset/winserver2022-ps/msdtc/Get-DtcLog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcLogTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtclog?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtclog?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DtcLog --- diff --git a/docset/winserver2022-ps/msdtc/Get-DtcNetworkSetting.md b/docset/winserver2022-ps/msdtc/Get-DtcNetworkSetting.md index a097fe236f..478453dbf0 100644 --- a/docset/winserver2022-ps/msdtc/Get-DtcNetworkSetting.md +++ b/docset/winserver2022-ps/msdtc/Get-DtcNetworkSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcNetworkSettingTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtcnetworksetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtcnetworksetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DtcNetworkSetting --- diff --git a/docset/winserver2022-ps/msdtc/Get-DtcTransaction.md b/docset/winserver2022-ps/msdtc/Get-DtcTransaction.md index 49e66242e7..ec174300e8 100644 --- a/docset/winserver2022-ps/msdtc/Get-DtcTransaction.md +++ b/docset/winserver2022-ps/msdtc/Get-DtcTransaction.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcTransactionTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtctransaction?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtctransaction?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DtcTransaction --- diff --git a/docset/winserver2022-ps/msdtc/Get-DtcTransactionsStatistics.md b/docset/winserver2022-ps/msdtc/Get-DtcTransactionsStatistics.md index 1a4002956c..4c4aea201f 100644 --- a/docset/winserver2022-ps/msdtc/Get-DtcTransactionsStatistics.md +++ b/docset/winserver2022-ps/msdtc/Get-DtcTransactionsStatistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcTransactionsStatisticsTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtctransactionsstatistics?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtctransactionsstatistics?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DtcTransactionsStatistics --- diff --git a/docset/winserver2022-ps/msdtc/Get-DtcTransactionsTraceSession.md b/docset/winserver2022-ps/msdtc/Get-DtcTransactionsTraceSession.md index 7d54753031..767d1b3592 100644 --- a/docset/winserver2022-ps/msdtc/Get-DtcTransactionsTraceSession.md +++ b/docset/winserver2022-ps/msdtc/Get-DtcTransactionsTraceSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcTransactionsTraceSessionTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtctransactionstracesession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtctransactionstracesession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DtcTransactionsTraceSession --- diff --git a/docset/winserver2022-ps/msdtc/Get-DtcTransactionsTraceSetting.md b/docset/winserver2022-ps/msdtc/Get-DtcTransactionsTraceSetting.md index 37c55479c5..fb9bb61391 100644 --- a/docset/winserver2022-ps/msdtc/Get-DtcTransactionsTraceSetting.md +++ b/docset/winserver2022-ps/msdtc/Get-DtcTransactionsTraceSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcTransactionsTraceSettingTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/get-dtctransactionstracesetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/get-dtctransactionstracesetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DtcTransactionsTraceSetting --- diff --git a/docset/winserver2022-ps/msdtc/Install-Dtc.md b/docset/winserver2022-ps/msdtc/Install-Dtc.md index a08ef1d0bc..86f41faa3e 100644 --- a/docset/winserver2022-ps/msdtc/Install-Dtc.md +++ b/docset/winserver2022-ps/msdtc/Install-Dtc.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/install-dtc?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/install-dtc?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-Dtc --- diff --git a/docset/winserver2022-ps/msdtc/Join-DtcDiagnosticResourceManager.md b/docset/winserver2022-ps/msdtc/Join-DtcDiagnosticResourceManager.md index 6352e82492..e23d1754d3 100644 --- a/docset/winserver2022-ps/msdtc/Join-DtcDiagnosticResourceManager.md +++ b/docset/winserver2022-ps/msdtc/Join-DtcDiagnosticResourceManager.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dtc.PowerShell.dll-Help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/join-dtcdiagnosticresourcemanager?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/join-dtcdiagnosticresourcemanager?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Join-DtcDiagnosticResourceManager --- diff --git a/docset/winserver2022-ps/msdtc/New-DtcDiagnosticTransaction.md b/docset/winserver2022-ps/msdtc/New-DtcDiagnosticTransaction.md index c9f44e41d0..37ec901656 100644 --- a/docset/winserver2022-ps/msdtc/New-DtcDiagnosticTransaction.md +++ b/docset/winserver2022-ps/msdtc/New-DtcDiagnosticTransaction.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dtc.PowerShell.dll-Help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/new-dtcdiagnostictransaction?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/new-dtcdiagnostictransaction?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-DtcDiagnosticTransaction --- diff --git a/docset/winserver2022-ps/msdtc/Receive-DtcDiagnosticTransaction.md b/docset/winserver2022-ps/msdtc/Receive-DtcDiagnosticTransaction.md index da34b4e8b7..2f740c75da 100644 --- a/docset/winserver2022-ps/msdtc/Receive-DtcDiagnosticTransaction.md +++ b/docset/winserver2022-ps/msdtc/Receive-DtcDiagnosticTransaction.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dtc.PowerShell.dll-Help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/receive-dtcdiagnostictransaction?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/receive-dtcdiagnostictransaction?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Receive-DtcDiagnosticTransaction --- diff --git a/docset/winserver2022-ps/msdtc/Remove-DtcClusterTMMapping.md b/docset/winserver2022-ps/msdtc/Remove-DtcClusterTMMapping.md index f8e4265059..b2a7654e7f 100644 --- a/docset/winserver2022-ps/msdtc/Remove-DtcClusterTMMapping.md +++ b/docset/winserver2022-ps/msdtc/Remove-DtcClusterTMMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcClusterTMMappingTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/remove-dtcclustertmmapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/remove-dtcclustertmmapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DtcClusterTMMapping --- diff --git a/docset/winserver2022-ps/msdtc/Reset-DtcLog.md b/docset/winserver2022-ps/msdtc/Reset-DtcLog.md index df761ad883..6f31b83b28 100644 --- a/docset/winserver2022-ps/msdtc/Reset-DtcLog.md +++ b/docset/winserver2022-ps/msdtc/Reset-DtcLog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcLogTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/reset-dtclog?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/reset-dtclog?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-DtcLog --- diff --git a/docset/winserver2022-ps/msdtc/Send-DtcDiagnosticTransaction.md b/docset/winserver2022-ps/msdtc/Send-DtcDiagnosticTransaction.md index 0a96668830..542a57f464 100644 --- a/docset/winserver2022-ps/msdtc/Send-DtcDiagnosticTransaction.md +++ b/docset/winserver2022-ps/msdtc/Send-DtcDiagnosticTransaction.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dtc.PowerShell.dll-Help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/send-dtcdiagnostictransaction?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/send-dtcdiagnostictransaction?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Send-DtcDiagnosticTransaction --- diff --git a/docset/winserver2022-ps/msdtc/Set-DtcAdvancedHostSetting.md b/docset/winserver2022-ps/msdtc/Set-DtcAdvancedHostSetting.md index 895a265443..5ad5854263 100644 --- a/docset/winserver2022-ps/msdtc/Set-DtcAdvancedHostSetting.md +++ b/docset/winserver2022-ps/msdtc/Set-DtcAdvancedHostSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcAdvancedHostSettingTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/set-dtcadvancedhostsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/set-dtcadvancedhostsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DtcAdvancedHostSetting --- diff --git a/docset/winserver2022-ps/msdtc/Set-DtcAdvancedSetting.md b/docset/winserver2022-ps/msdtc/Set-DtcAdvancedSetting.md index 077d015b2c..3a73dc5ca1 100644 --- a/docset/winserver2022-ps/msdtc/Set-DtcAdvancedSetting.md +++ b/docset/winserver2022-ps/msdtc/Set-DtcAdvancedSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcAdvancedSettingTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/set-dtcadvancedsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/set-dtcadvancedsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DtcAdvancedSetting --- diff --git a/docset/winserver2022-ps/msdtc/Set-DtcClusterDefault.md b/docset/winserver2022-ps/msdtc/Set-DtcClusterDefault.md index 004a07fdb4..3f43689b2a 100644 --- a/docset/winserver2022-ps/msdtc/Set-DtcClusterDefault.md +++ b/docset/winserver2022-ps/msdtc/Set-DtcClusterDefault.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcClusterDefaultTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/set-dtcclusterdefault?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/set-dtcclusterdefault?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DtcClusterDefault --- diff --git a/docset/winserver2022-ps/msdtc/Set-DtcClusterTMMapping.md b/docset/winserver2022-ps/msdtc/Set-DtcClusterTMMapping.md index 1ada98c6cd..9ed9bc18bb 100644 --- a/docset/winserver2022-ps/msdtc/Set-DtcClusterTMMapping.md +++ b/docset/winserver2022-ps/msdtc/Set-DtcClusterTMMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcClusterTMMappingTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/set-dtcclustertmmapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/set-dtcclustertmmapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DtcClusterTMMapping --- diff --git a/docset/winserver2022-ps/msdtc/Set-DtcDefault.md b/docset/winserver2022-ps/msdtc/Set-DtcDefault.md index 4cfa6b2584..54d1def74c 100644 --- a/docset/winserver2022-ps/msdtc/Set-DtcDefault.md +++ b/docset/winserver2022-ps/msdtc/Set-DtcDefault.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcDefaultTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/set-dtcdefault?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/set-dtcdefault?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DtcDefault --- diff --git a/docset/winserver2022-ps/msdtc/Set-DtcLog.md b/docset/winserver2022-ps/msdtc/Set-DtcLog.md index 6b1801228f..3ecbad481c 100644 --- a/docset/winserver2022-ps/msdtc/Set-DtcLog.md +++ b/docset/winserver2022-ps/msdtc/Set-DtcLog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcLogTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/set-dtclog?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/set-dtclog?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DtcLog --- diff --git a/docset/winserver2022-ps/msdtc/Set-DtcNetworkSetting.md b/docset/winserver2022-ps/msdtc/Set-DtcNetworkSetting.md index 9a024c0b0c..35f80361d6 100644 --- a/docset/winserver2022-ps/msdtc/Set-DtcNetworkSetting.md +++ b/docset/winserver2022-ps/msdtc/Set-DtcNetworkSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcNetworkSettingTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/set-dtcnetworksetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/set-dtcnetworksetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DtcNetworkSetting --- diff --git a/docset/winserver2022-ps/msdtc/Set-DtcTransaction.md b/docset/winserver2022-ps/msdtc/Set-DtcTransaction.md index d2dab38115..4d358625aa 100644 --- a/docset/winserver2022-ps/msdtc/Set-DtcTransaction.md +++ b/docset/winserver2022-ps/msdtc/Set-DtcTransaction.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcTransactionTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/set-dtctransaction?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/set-dtctransaction?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DtcTransaction --- diff --git a/docset/winserver2022-ps/msdtc/Set-DtcTransactionsTraceSession.md b/docset/winserver2022-ps/msdtc/Set-DtcTransactionsTraceSession.md index 094ac162ea..f77d5c2a27 100644 --- a/docset/winserver2022-ps/msdtc/Set-DtcTransactionsTraceSession.md +++ b/docset/winserver2022-ps/msdtc/Set-DtcTransactionsTraceSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcTransactionsTraceSessionTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/set-dtctransactionstracesession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/set-dtctransactionstracesession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DtcTransactionsTraceSession --- diff --git a/docset/winserver2022-ps/msdtc/Set-DtcTransactionsTraceSetting.md b/docset/winserver2022-ps/msdtc/Set-DtcTransactionsTraceSetting.md index 6d0ca92f9a..9803428e82 100644 --- a/docset/winserver2022-ps/msdtc/Set-DtcTransactionsTraceSetting.md +++ b/docset/winserver2022-ps/msdtc/Set-DtcTransactionsTraceSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcTransactionsTraceSettingTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/set-dtctransactionstracesetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/set-dtctransactionstracesetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DtcTransactionsTraceSetting --- diff --git a/docset/winserver2022-ps/msdtc/Start-Dtc.md b/docset/winserver2022-ps/msdtc/Start-Dtc.md index 50058999a4..4f0cfca03f 100644 --- a/docset/winserver2022-ps/msdtc/Start-Dtc.md +++ b/docset/winserver2022-ps/msdtc/Start-Dtc.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/start-dtc?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/start-dtc?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-Dtc --- diff --git a/docset/winserver2022-ps/msdtc/Start-DtcDiagnosticResourceManager.md b/docset/winserver2022-ps/msdtc/Start-DtcDiagnosticResourceManager.md index a7cb4a7374..919bcd7e84 100644 --- a/docset/winserver2022-ps/msdtc/Start-DtcDiagnosticResourceManager.md +++ b/docset/winserver2022-ps/msdtc/Start-DtcDiagnosticResourceManager.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dtc.PowerShell.dll-Help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/start-dtcdiagnosticresourcemanager?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/start-dtcdiagnosticresourcemanager?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-DtcDiagnosticResourceManager --- diff --git a/docset/winserver2022-ps/msdtc/Start-DtcTransactionsTraceSession.md b/docset/winserver2022-ps/msdtc/Start-DtcTransactionsTraceSession.md index a88b4ad6f2..f049bcafe0 100644 --- a/docset/winserver2022-ps/msdtc/Start-DtcTransactionsTraceSession.md +++ b/docset/winserver2022-ps/msdtc/Start-DtcTransactionsTraceSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcTransactionsTraceSessionTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/start-dtctransactionstracesession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/start-dtctransactionstracesession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-DtcTransactionsTraceSession --- diff --git a/docset/winserver2022-ps/msdtc/Stop-Dtc.md b/docset/winserver2022-ps/msdtc/Stop-Dtc.md index 90dd0866a1..1d05d6d104 100644 --- a/docset/winserver2022-ps/msdtc/Stop-Dtc.md +++ b/docset/winserver2022-ps/msdtc/Stop-Dtc.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/stop-dtc?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/stop-dtc?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-Dtc --- diff --git a/docset/winserver2022-ps/msdtc/Stop-DtcDiagnosticResourceManager.md b/docset/winserver2022-ps/msdtc/Stop-DtcDiagnosticResourceManager.md index 0fb890b34e..8898da5cc3 100644 --- a/docset/winserver2022-ps/msdtc/Stop-DtcDiagnosticResourceManager.md +++ b/docset/winserver2022-ps/msdtc/Stop-DtcDiagnosticResourceManager.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dtc.PowerShell.dll-Help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/stop-dtcdiagnosticresourcemanager?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/stop-dtcdiagnosticresourcemanager?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-DtcDiagnosticResourceManager --- diff --git a/docset/winserver2022-ps/msdtc/Stop-DtcTransactionsTraceSession.md b/docset/winserver2022-ps/msdtc/Stop-DtcTransactionsTraceSession.md index 022384f9de..e4460b221d 100644 --- a/docset/winserver2022-ps/msdtc/Stop-DtcTransactionsTraceSession.md +++ b/docset/winserver2022-ps/msdtc/Stop-DtcTransactionsTraceSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcTransactionsTraceSessionTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/stop-dtctransactionstracesession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/stop-dtctransactionstracesession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-DtcTransactionsTraceSession --- diff --git a/docset/winserver2022-ps/msdtc/Test-Dtc.md b/docset/winserver2022-ps/msdtc/Test-Dtc.md index feb5901368..7fc814ed2f 100644 --- a/docset/winserver2022-ps/msdtc/Test-Dtc.md +++ b/docset/winserver2022-ps/msdtc/Test-Dtc.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: TestDtc.psm1-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/test-dtc?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/test-dtc?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-Dtc --- diff --git a/docset/winserver2022-ps/msdtc/Undo-DtcDiagnosticTransaction.md b/docset/winserver2022-ps/msdtc/Undo-DtcDiagnosticTransaction.md index 1efd4cfc26..0b0aeab7fe 100644 --- a/docset/winserver2022-ps/msdtc/Undo-DtcDiagnosticTransaction.md +++ b/docset/winserver2022-ps/msdtc/Undo-DtcDiagnosticTransaction.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Dtc.PowerShell.dll-Help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/undo-dtcdiagnostictransaction?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/undo-dtcdiagnostictransaction?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Undo-DtcDiagnosticTransaction --- diff --git a/docset/winserver2022-ps/msdtc/Uninstall-Dtc.md b/docset/winserver2022-ps/msdtc/Uninstall-Dtc.md index 9b8d56df0b..7c075ecf09 100644 --- a/docset/winserver2022-ps/msdtc/Uninstall-Dtc.md +++ b/docset/winserver2022-ps/msdtc/Uninstall-Dtc.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/uninstall-dtc?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/uninstall-dtc?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-Dtc --- diff --git a/docset/winserver2022-ps/msdtc/Write-DtcTransactionsTraceSession.md b/docset/winserver2022-ps/msdtc/Write-DtcTransactionsTraceSession.md index 0da6d855e6..c548e7197a 100644 --- a/docset/winserver2022-ps/msdtc/Write-DtcTransactionsTraceSession.md +++ b/docset/winserver2022-ps/msdtc/Write-DtcTransactionsTraceSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DtcTransactionsTraceSessionTask_v1.0.cdxml-help.xml Module Name: MsDtc ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/msdtc/write-dtctransactionstracesession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msdtc/write-dtctransactionstracesession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Write-DtcTransactionsTraceSession --- diff --git a/docset/winserver2022-ps/msmq/Clear-MSMQOutgoingQueue.md b/docset/winserver2022-ps/msmq/Clear-MSMQOutgoingQueue.md index 71c4175391..be3a56add0 100644 --- a/docset/winserver2022-ps/msmq/Clear-MSMQOutgoingQueue.md +++ b/docset/winserver2022-ps/msmq/Clear-MSMQOutgoingQueue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/clear-msmqoutgoingqueue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/clear-msmqoutgoingqueue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-MSMQOutgoingQueue --- diff --git a/docset/winserver2022-ps/msmq/Clear-MSMQQueue.md b/docset/winserver2022-ps/msmq/Clear-MSMQQueue.md index da09da5ce1..9217193c98 100644 --- a/docset/winserver2022-ps/msmq/Clear-MSMQQueue.md +++ b/docset/winserver2022-ps/msmq/Clear-MSMQQueue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/clear-msmqqueue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/clear-msmqqueue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-MSMQQueue --- diff --git a/docset/winserver2022-ps/msmq/Enable-MSMQCertificate.md b/docset/winserver2022-ps/msmq/Enable-MSMQCertificate.md index 20fd2ad742..4a1b84c40a 100644 --- a/docset/winserver2022-ps/msmq/Enable-MSMQCertificate.md +++ b/docset/winserver2022-ps/msmq/Enable-MSMQCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/enable-msmqcertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/enable-msmqcertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-MSMQCertificate --- diff --git a/docset/winserver2022-ps/msmq/Get-MSMQCertificate.md b/docset/winserver2022-ps/msmq/Get-MSMQCertificate.md index 8168b11aa3..f5e53dbb9f 100644 --- a/docset/winserver2022-ps/msmq/Get-MSMQCertificate.md +++ b/docset/winserver2022-ps/msmq/Get-MSMQCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/get-msmqcertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/get-msmqcertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MSMQCertificate --- diff --git a/docset/winserver2022-ps/msmq/Get-MSMQOutgoingQueue.md b/docset/winserver2022-ps/msmq/Get-MSMQOutgoingQueue.md index 41a2d50e7c..1d5cd9b1ba 100644 --- a/docset/winserver2022-ps/msmq/Get-MSMQOutgoingQueue.md +++ b/docset/winserver2022-ps/msmq/Get-MSMQOutgoingQueue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/get-msmqoutgoingqueue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/get-msmqoutgoingqueue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MSMQOutgoingQueue --- diff --git a/docset/winserver2022-ps/msmq/Get-MsmqQueue.md b/docset/winserver2022-ps/msmq/Get-MsmqQueue.md index f694277b4e..3eda802a5b 100644 --- a/docset/winserver2022-ps/msmq/Get-MsmqQueue.md +++ b/docset/winserver2022-ps/msmq/Get-MsmqQueue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/get-msmqqueue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/get-msmqqueue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MsmqQueue --- diff --git a/docset/winserver2022-ps/msmq/Get-MsmqQueueACL.md b/docset/winserver2022-ps/msmq/Get-MsmqQueueACL.md index 9ad2c6aec6..3e8cbec51b 100644 --- a/docset/winserver2022-ps/msmq/Get-MsmqQueueACL.md +++ b/docset/winserver2022-ps/msmq/Get-MsmqQueueACL.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/get-msmqqueueacl?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/get-msmqqueueacl?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MsmqQueueACL --- diff --git a/docset/winserver2022-ps/msmq/Get-MsmqQueueManager.md b/docset/winserver2022-ps/msmq/Get-MsmqQueueManager.md index 5821b240b7..4f5c2e3636 100644 --- a/docset/winserver2022-ps/msmq/Get-MsmqQueueManager.md +++ b/docset/winserver2022-ps/msmq/Get-MsmqQueueManager.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/get-msmqqueuemanager?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/get-msmqqueuemanager?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MsmqQueueManager --- diff --git a/docset/winserver2022-ps/msmq/Get-MsmqQueueManagerACL.md b/docset/winserver2022-ps/msmq/Get-MsmqQueueManagerACL.md index f58183eeba..2e0cff26e4 100644 --- a/docset/winserver2022-ps/msmq/Get-MsmqQueueManagerACL.md +++ b/docset/winserver2022-ps/msmq/Get-MsmqQueueManagerACL.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/get-msmqqueuemanageracl?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/get-msmqqueuemanageracl?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MsmqQueueManagerACL --- diff --git a/docset/winserver2022-ps/msmq/Move-MsmqMessage.md b/docset/winserver2022-ps/msmq/Move-MsmqMessage.md index 0f80cbce46..a36108c8b8 100644 --- a/docset/winserver2022-ps/msmq/Move-MsmqMessage.md +++ b/docset/winserver2022-ps/msmq/Move-MsmqMessage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/move-msmqmessage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/move-msmqmessage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-MsmqMessage --- diff --git a/docset/winserver2022-ps/msmq/New-MsmqMessage.md b/docset/winserver2022-ps/msmq/New-MsmqMessage.md index b10f4f4188..cb74137c13 100644 --- a/docset/winserver2022-ps/msmq/New-MsmqMessage.md +++ b/docset/winserver2022-ps/msmq/New-MsmqMessage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/new-msmqmessage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/new-msmqmessage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-MsmqMessage --- diff --git a/docset/winserver2022-ps/msmq/New-MsmqQueue.md b/docset/winserver2022-ps/msmq/New-MsmqQueue.md index 5e0078bb77..8bf91ff43c 100644 --- a/docset/winserver2022-ps/msmq/New-MsmqQueue.md +++ b/docset/winserver2022-ps/msmq/New-MsmqQueue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/new-msmqqueue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/new-msmqqueue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-MsmqQueue --- diff --git a/docset/winserver2022-ps/msmq/Receive-MsmqQueue.md b/docset/winserver2022-ps/msmq/Receive-MsmqQueue.md index 85f373507d..d667eff482 100644 --- a/docset/winserver2022-ps/msmq/Receive-MsmqQueue.md +++ b/docset/winserver2022-ps/msmq/Receive-MsmqQueue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/receive-msmqqueue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/receive-msmqqueue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Receive-MsmqQueue --- diff --git a/docset/winserver2022-ps/msmq/Remove-MsmqCertificate.md b/docset/winserver2022-ps/msmq/Remove-MsmqCertificate.md index 74f5607de1..8bca4b878b 100644 --- a/docset/winserver2022-ps/msmq/Remove-MsmqCertificate.md +++ b/docset/winserver2022-ps/msmq/Remove-MsmqCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/remove-msmqcertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/remove-msmqcertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-MsmqCertificate --- diff --git a/docset/winserver2022-ps/msmq/Remove-MsmqQueue.md b/docset/winserver2022-ps/msmq/Remove-MsmqQueue.md index 5c400a9ea0..ead3c08f69 100644 --- a/docset/winserver2022-ps/msmq/Remove-MsmqQueue.md +++ b/docset/winserver2022-ps/msmq/Remove-MsmqQueue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/remove-msmqqueue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/remove-msmqqueue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-MsmqQueue --- diff --git a/docset/winserver2022-ps/msmq/Resume-MsmqOutgoingQueue.md b/docset/winserver2022-ps/msmq/Resume-MsmqOutgoingQueue.md index c5ad3c7ca4..8aee67b7a8 100644 --- a/docset/winserver2022-ps/msmq/Resume-MsmqOutgoingQueue.md +++ b/docset/winserver2022-ps/msmq/Resume-MsmqOutgoingQueue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/resume-msmqoutgoingqueue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/resume-msmqoutgoingqueue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-MsmqOutgoingQueue --- diff --git a/docset/winserver2022-ps/msmq/Send-MsmqQueue.md b/docset/winserver2022-ps/msmq/Send-MsmqQueue.md index 6e7bd0657f..01543ca2f5 100644 --- a/docset/winserver2022-ps/msmq/Send-MsmqQueue.md +++ b/docset/winserver2022-ps/msmq/Send-MsmqQueue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/send-msmqqueue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/send-msmqqueue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Send-MsmqQueue --- diff --git a/docset/winserver2022-ps/msmq/Set-MsmqQueue.md b/docset/winserver2022-ps/msmq/Set-MsmqQueue.md index 2fac1ea16a..7163b1c66a 100644 --- a/docset/winserver2022-ps/msmq/Set-MsmqQueue.md +++ b/docset/winserver2022-ps/msmq/Set-MsmqQueue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/set-msmqqueue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/set-msmqqueue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-MsmqQueue --- diff --git a/docset/winserver2022-ps/msmq/Set-MsmqQueueACL.md b/docset/winserver2022-ps/msmq/Set-MsmqQueueACL.md index 0ff68cbe5b..efcdd5ae15 100644 --- a/docset/winserver2022-ps/msmq/Set-MsmqQueueACL.md +++ b/docset/winserver2022-ps/msmq/Set-MsmqQueueACL.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/set-msmqqueueacl?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/set-msmqqueueacl?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-MsmqQueueACL --- diff --git a/docset/winserver2022-ps/msmq/Set-MsmqQueueManager.md b/docset/winserver2022-ps/msmq/Set-MsmqQueueManager.md index be804b2e61..6c5df5a663 100644 --- a/docset/winserver2022-ps/msmq/Set-MsmqQueueManager.md +++ b/docset/winserver2022-ps/msmq/Set-MsmqQueueManager.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/set-msmqqueuemanager?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/set-msmqqueuemanager?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-MsmqQueueManager --- diff --git a/docset/winserver2022-ps/msmq/Set-MsmqQueueManagerACL.md b/docset/winserver2022-ps/msmq/Set-MsmqQueueManagerACL.md index 812909758b..e53e1030b9 100644 --- a/docset/winserver2022-ps/msmq/Set-MsmqQueueManagerACL.md +++ b/docset/winserver2022-ps/msmq/Set-MsmqQueueManagerACL.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/set-msmqqueuemanageracl?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/set-msmqqueuemanageracl?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-MsmqQueueManagerACL --- diff --git a/docset/winserver2022-ps/msmq/Suspend-MsmqOutgoingQueue.md b/docset/winserver2022-ps/msmq/Suspend-MsmqOutgoingQueue.md index a9478d1b96..d940765740 100644 --- a/docset/winserver2022-ps/msmq/Suspend-MsmqOutgoingQueue.md +++ b/docset/winserver2022-ps/msmq/Suspend-MsmqOutgoingQueue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Msmq.PowerShell.Commands.dll-Help.xml Module Name: MSMQ ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/msmq/suspend-msmqoutgoingqueue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/msmq/suspend-msmqoutgoingqueue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-MsmqOutgoingQueue --- diff --git a/docset/winserver2022-ps/multipoint/Add-WmsSystem.md b/docset/winserver2022-ps/multipoint/Add-WmsSystem.md index 1f1482f318..b60c675103 100644 --- a/docset/winserver2022-ps/multipoint/Add-WmsSystem.md +++ b/docset/winserver2022-ps/multipoint/Add-WmsSystem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/add-wmssystem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/add-wmssystem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WmsSystem --- diff --git a/docset/winserver2022-ps/multipoint/Clear-WmsStation.md b/docset/winserver2022-ps/multipoint/Clear-WmsStation.md index ddb61442ee..e5dc09ff14 100644 --- a/docset/winserver2022-ps/multipoint/Clear-WmsStation.md +++ b/docset/winserver2022-ps/multipoint/Clear-WmsStation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/clear-wmsstation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/clear-wmsstation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-WmsStation --- diff --git a/docset/winserver2022-ps/multipoint/Close-WmsApp.md b/docset/winserver2022-ps/multipoint/Close-WmsApp.md index 34cbb4404c..68d80b8821 100644 --- a/docset/winserver2022-ps/multipoint/Close-WmsApp.md +++ b/docset/winserver2022-ps/multipoint/Close-WmsApp.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/close-wmsapp?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/close-wmsapp?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Close-WmsApp --- diff --git a/docset/winserver2022-ps/multipoint/Close-WmsSession.md b/docset/winserver2022-ps/multipoint/Close-WmsSession.md index c86e82d821..8a34c8ad0d 100644 --- a/docset/winserver2022-ps/multipoint/Close-WmsSession.md +++ b/docset/winserver2022-ps/multipoint/Close-WmsSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/close-wmssession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/close-wmssession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Close-WmsSession --- diff --git a/docset/winserver2022-ps/multipoint/Disable-WmsDiskProtection.md b/docset/winserver2022-ps/multipoint/Disable-WmsDiskProtection.md index 62635d194d..691273105a 100644 --- a/docset/winserver2022-ps/multipoint/Disable-WmsDiskProtection.md +++ b/docset/winserver2022-ps/multipoint/Disable-WmsDiskProtection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/disable-wmsdiskprotection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/disable-wmsdiskprotection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WmsDiskProtection --- diff --git a/docset/winserver2022-ps/multipoint/Disable-WmsScheduledUpdate.md b/docset/winserver2022-ps/multipoint/Disable-WmsScheduledUpdate.md index c947426404..9eb22369d3 100644 --- a/docset/winserver2022-ps/multipoint/Disable-WmsScheduledUpdate.md +++ b/docset/winserver2022-ps/multipoint/Disable-WmsScheduledUpdate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/disable-wmsscheduledupdate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/disable-wmsscheduledupdate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WmsScheduledUpdate --- diff --git a/docset/winserver2022-ps/multipoint/Disable-WmsWebLimiting.md b/docset/winserver2022-ps/multipoint/Disable-WmsWebLimiting.md index 9f31265519..a4f766fc4c 100644 --- a/docset/winserver2022-ps/multipoint/Disable-WmsWebLimiting.md +++ b/docset/winserver2022-ps/multipoint/Disable-WmsWebLimiting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/disable-wmsweblimiting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/disable-wmsweblimiting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WmsWebLimiting --- diff --git a/docset/winserver2022-ps/multipoint/Disconnect-WmsSession.md b/docset/winserver2022-ps/multipoint/Disconnect-WmsSession.md index 31b3098467..33699343be 100644 --- a/docset/winserver2022-ps/multipoint/Disconnect-WmsSession.md +++ b/docset/winserver2022-ps/multipoint/Disconnect-WmsSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/disconnect-wmssession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/disconnect-wmssession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disconnect-WmsSession --- diff --git a/docset/winserver2022-ps/multipoint/Enable-WmsDiskProtection.md b/docset/winserver2022-ps/multipoint/Enable-WmsDiskProtection.md index 2e4386b3fc..3783abbad8 100644 --- a/docset/winserver2022-ps/multipoint/Enable-WmsDiskProtection.md +++ b/docset/winserver2022-ps/multipoint/Enable-WmsDiskProtection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/enable-wmsdiskprotection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/enable-wmsdiskprotection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WmsDiskProtection --- diff --git a/docset/winserver2022-ps/multipoint/Enable-WmsScheduledUpdate.md b/docset/winserver2022-ps/multipoint/Enable-WmsScheduledUpdate.md index e712824c13..5359c1e0be 100644 --- a/docset/winserver2022-ps/multipoint/Enable-WmsScheduledUpdate.md +++ b/docset/winserver2022-ps/multipoint/Enable-WmsScheduledUpdate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/enable-wmsscheduledupdate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/enable-wmsscheduledupdate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WmsScheduledUpdate --- diff --git a/docset/winserver2022-ps/multipoint/Enable-WmsWebLimiting.md b/docset/winserver2022-ps/multipoint/Enable-WmsWebLimiting.md index 0d13162970..c56f95aafe 100644 --- a/docset/winserver2022-ps/multipoint/Enable-WmsWebLimiting.md +++ b/docset/winserver2022-ps/multipoint/Enable-WmsWebLimiting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/enable-wmsweblimiting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/enable-wmsweblimiting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WmsWebLimiting --- diff --git a/docset/winserver2022-ps/multipoint/Get-WmsAlert.md b/docset/winserver2022-ps/multipoint/Get-WmsAlert.md index c6b87ccc46..e96d9e0cfd 100644 --- a/docset/winserver2022-ps/multipoint/Get-WmsAlert.md +++ b/docset/winserver2022-ps/multipoint/Get-WmsAlert.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/get-wmsalert?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/get-wmsalert?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WmsAlert --- diff --git a/docset/winserver2022-ps/multipoint/Get-WmsApp.md b/docset/winserver2022-ps/multipoint/Get-WmsApp.md index b181544f85..f99c9c80cc 100644 --- a/docset/winserver2022-ps/multipoint/Get-WmsApp.md +++ b/docset/winserver2022-ps/multipoint/Get-WmsApp.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/get-wmsapp?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/get-wmsapp?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WmsApp --- diff --git a/docset/winserver2022-ps/multipoint/Get-WmsDiskProtection.md b/docset/winserver2022-ps/multipoint/Get-WmsDiskProtection.md index f49528f539..62b96c6bf2 100644 --- a/docset/winserver2022-ps/multipoint/Get-WmsDiskProtection.md +++ b/docset/winserver2022-ps/multipoint/Get-WmsDiskProtection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/get-wmsdiskprotection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/get-wmsdiskprotection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WmsDiskProtection --- diff --git a/docset/winserver2022-ps/multipoint/Get-WmsScheduledUpdate.md b/docset/winserver2022-ps/multipoint/Get-WmsScheduledUpdate.md index 1145da4cf8..d9252a95c1 100644 --- a/docset/winserver2022-ps/multipoint/Get-WmsScheduledUpdate.md +++ b/docset/winserver2022-ps/multipoint/Get-WmsScheduledUpdate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/get-wmsscheduledupdate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/get-wmsscheduledupdate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WmsScheduledUpdate --- diff --git a/docset/winserver2022-ps/multipoint/Get-WmsSession.md b/docset/winserver2022-ps/multipoint/Get-WmsSession.md index bb082f6184..5537c80b6a 100644 --- a/docset/winserver2022-ps/multipoint/Get-WmsSession.md +++ b/docset/winserver2022-ps/multipoint/Get-WmsSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/get-wmssession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/get-wmssession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WmsSession --- diff --git a/docset/winserver2022-ps/multipoint/Get-WmsStation.md b/docset/winserver2022-ps/multipoint/Get-WmsStation.md index 908ee9db01..d2cf9ffd35 100644 --- a/docset/winserver2022-ps/multipoint/Get-WmsStation.md +++ b/docset/winserver2022-ps/multipoint/Get-WmsStation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/get-wmsstation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/get-wmsstation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WmsStation --- diff --git a/docset/winserver2022-ps/multipoint/Get-WmsSystem.md b/docset/winserver2022-ps/multipoint/Get-WmsSystem.md index de1c1a3056..d724d60574 100644 --- a/docset/winserver2022-ps/multipoint/Get-WmsSystem.md +++ b/docset/winserver2022-ps/multipoint/Get-WmsSystem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/get-wmssystem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/get-wmssystem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WmsSystem --- diff --git a/docset/winserver2022-ps/multipoint/Get-WmsUser.md b/docset/winserver2022-ps/multipoint/Get-WmsUser.md index f3d197e7c4..fb86b3170c 100644 --- a/docset/winserver2022-ps/multipoint/Get-WmsUser.md +++ b/docset/winserver2022-ps/multipoint/Get-WmsUser.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/get-wmsuser?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/get-wmsuser?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WmsUser --- diff --git a/docset/winserver2022-ps/multipoint/Get-WmsVersion.md b/docset/winserver2022-ps/multipoint/Get-WmsVersion.md index 2fd5dcf515..32e9b69d58 100644 --- a/docset/winserver2022-ps/multipoint/Get-WmsVersion.md +++ b/docset/winserver2022-ps/multipoint/Get-WmsVersion.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/get-wmsversion?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/get-wmsversion?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WmsVersion --- diff --git a/docset/winserver2022-ps/multipoint/Get-WmsWebLimiting.md b/docset/winserver2022-ps/multipoint/Get-WmsWebLimiting.md index 9f1b5728d6..840cd37dd2 100644 --- a/docset/winserver2022-ps/multipoint/Get-WmsWebLimiting.md +++ b/docset/winserver2022-ps/multipoint/Get-WmsWebLimiting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/get-wmsweblimiting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/get-wmsweblimiting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WmsWebLimiting --- diff --git a/docset/winserver2022-ps/multipoint/Hide-WmsIdentifier.md b/docset/winserver2022-ps/multipoint/Hide-WmsIdentifier.md index 2785a8575b..dfbbe502d3 100644 --- a/docset/winserver2022-ps/multipoint/Hide-WmsIdentifier.md +++ b/docset/winserver2022-ps/multipoint/Hide-WmsIdentifier.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/hide-wmsidentifier?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/hide-wmsidentifier?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Hide-WmsIdentifier --- diff --git a/docset/winserver2022-ps/multipoint/Join-WmsStation.md b/docset/winserver2022-ps/multipoint/Join-WmsStation.md index f04b64850e..db0eccbf41 100644 --- a/docset/winserver2022-ps/multipoint/Join-WmsStation.md +++ b/docset/winserver2022-ps/multipoint/Join-WmsStation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/join-wmsstation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/join-wmsstation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Join-WmsStation --- diff --git a/docset/winserver2022-ps/multipoint/Lock-WmsSession.md b/docset/winserver2022-ps/multipoint/Lock-WmsSession.md index bcaf961453..cdcd698dc3 100644 --- a/docset/winserver2022-ps/multipoint/Lock-WmsSession.md +++ b/docset/winserver2022-ps/multipoint/Lock-WmsSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/lock-wmssession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/lock-wmssession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Lock-WmsSession --- diff --git a/docset/winserver2022-ps/multipoint/Lock-WmsUsbStorage.md b/docset/winserver2022-ps/multipoint/Lock-WmsUsbStorage.md index ec92fedf7e..ade17ba822 100644 --- a/docset/winserver2022-ps/multipoint/Lock-WmsUsbStorage.md +++ b/docset/winserver2022-ps/multipoint/Lock-WmsUsbStorage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/lock-wmsusbstorage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/lock-wmsusbstorage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Lock-WmsUsbStorage --- diff --git a/docset/winserver2022-ps/multipoint/New-WmsUser.md b/docset/winserver2022-ps/multipoint/New-WmsUser.md index cd37190a5c..2217f5948b 100644 --- a/docset/winserver2022-ps/multipoint/New-WmsUser.md +++ b/docset/winserver2022-ps/multipoint/New-WmsUser.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/new-wmsuser?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/new-wmsuser?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WmsUser --- diff --git a/docset/winserver2022-ps/multipoint/Open-WmsApp.md b/docset/winserver2022-ps/multipoint/Open-WmsApp.md index d1549572b2..bff9b44aac 100644 --- a/docset/winserver2022-ps/multipoint/Open-WmsApp.md +++ b/docset/winserver2022-ps/multipoint/Open-WmsApp.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/open-wmsapp?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/open-wmsapp?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Open-WmsApp --- diff --git a/docset/winserver2022-ps/multipoint/Publish-WmsDesktop.md b/docset/winserver2022-ps/multipoint/Publish-WmsDesktop.md index 334645922a..c6cf1034ea 100644 --- a/docset/winserver2022-ps/multipoint/Publish-WmsDesktop.md +++ b/docset/winserver2022-ps/multipoint/Publish-WmsDesktop.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/publish-wmsdesktop?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/publish-wmsdesktop?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Publish-WmsDesktop --- diff --git a/docset/winserver2022-ps/multipoint/Remove-WmsSystem.md b/docset/winserver2022-ps/multipoint/Remove-WmsSystem.md index f262e1a9a1..74a8d17a41 100644 --- a/docset/winserver2022-ps/multipoint/Remove-WmsSystem.md +++ b/docset/winserver2022-ps/multipoint/Remove-WmsSystem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/remove-wmssystem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/remove-wmssystem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WmsSystem --- diff --git a/docset/winserver2022-ps/multipoint/Remove-WmsUser.md b/docset/winserver2022-ps/multipoint/Remove-WmsUser.md index 23d5fe4446..9078e31e40 100644 --- a/docset/winserver2022-ps/multipoint/Remove-WmsUser.md +++ b/docset/winserver2022-ps/multipoint/Remove-WmsUser.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/remove-wmsuser?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/remove-wmsuser?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WmsUser --- diff --git a/docset/winserver2022-ps/multipoint/Restart-WmsSystem.md b/docset/winserver2022-ps/multipoint/Restart-WmsSystem.md index f55a0b94d5..b678f5ea82 100644 --- a/docset/winserver2022-ps/multipoint/Restart-WmsSystem.md +++ b/docset/winserver2022-ps/multipoint/Restart-WmsSystem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/restart-wmssystem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/restart-wmssystem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restart-WmsSystem --- diff --git a/docset/winserver2022-ps/multipoint/Resume-WmsDiskProtection.md b/docset/winserver2022-ps/multipoint/Resume-WmsDiskProtection.md index 40b27e1af9..b0ed34f9af 100644 --- a/docset/winserver2022-ps/multipoint/Resume-WmsDiskProtection.md +++ b/docset/winserver2022-ps/multipoint/Resume-WmsDiskProtection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/resume-wmsdiskprotection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/resume-wmsdiskprotection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-WmsDiskProtection --- diff --git a/docset/winserver2022-ps/multipoint/Search-WmsSystem.md b/docset/winserver2022-ps/multipoint/Search-WmsSystem.md index 6364b9762d..eb001ff2dd 100644 --- a/docset/winserver2022-ps/multipoint/Search-WmsSystem.md +++ b/docset/winserver2022-ps/multipoint/Search-WmsSystem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/search-wmssystem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/search-wmssystem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Search-WmsSystem --- diff --git a/docset/winserver2022-ps/multipoint/Set-WmsScheduledUpdate.md b/docset/winserver2022-ps/multipoint/Set-WmsScheduledUpdate.md index e6cfc3bcb9..e8f10751d3 100644 --- a/docset/winserver2022-ps/multipoint/Set-WmsScheduledUpdate.md +++ b/docset/winserver2022-ps/multipoint/Set-WmsScheduledUpdate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/set-wmsscheduledupdate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/set-wmsscheduledupdate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WmsScheduledUpdate --- diff --git a/docset/winserver2022-ps/multipoint/Set-WmsStation.md b/docset/winserver2022-ps/multipoint/Set-WmsStation.md index 439f44fd15..217ac3377a 100644 --- a/docset/winserver2022-ps/multipoint/Set-WmsStation.md +++ b/docset/winserver2022-ps/multipoint/Set-WmsStation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/set-wmsstation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/set-wmsstation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WmsStation --- diff --git a/docset/winserver2022-ps/multipoint/Set-WmsSystem.md b/docset/winserver2022-ps/multipoint/Set-WmsSystem.md index f7bc5cf7e6..48ddf5c6fb 100644 --- a/docset/winserver2022-ps/multipoint/Set-WmsSystem.md +++ b/docset/winserver2022-ps/multipoint/Set-WmsSystem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/set-wmssystem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/set-wmssystem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WmsSystem --- diff --git a/docset/winserver2022-ps/multipoint/Set-WmsUser.md b/docset/winserver2022-ps/multipoint/Set-WmsUser.md index 9deac87d1d..4f8db728c2 100644 --- a/docset/winserver2022-ps/multipoint/Set-WmsUser.md +++ b/docset/winserver2022-ps/multipoint/Set-WmsUser.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/set-wmsuser?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/set-wmsuser?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WmsUser --- diff --git a/docset/winserver2022-ps/multipoint/Set-WmsWebLimiting.md b/docset/winserver2022-ps/multipoint/Set-WmsWebLimiting.md index 4ee3dc5478..38404a1fc8 100644 --- a/docset/winserver2022-ps/multipoint/Set-WmsWebLimiting.md +++ b/docset/winserver2022-ps/multipoint/Set-WmsWebLimiting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/set-wmsweblimiting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/set-wmsweblimiting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WmsWebLimiting --- diff --git a/docset/winserver2022-ps/multipoint/Show-WmsDesktop.md b/docset/winserver2022-ps/multipoint/Show-WmsDesktop.md index 61d694c7df..17523cfdb9 100644 --- a/docset/winserver2022-ps/multipoint/Show-WmsDesktop.md +++ b/docset/winserver2022-ps/multipoint/Show-WmsDesktop.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/show-wmsdesktop?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/show-wmsdesktop?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Show-WmsDesktop --- diff --git a/docset/winserver2022-ps/multipoint/Show-WmsIdentifier.md b/docset/winserver2022-ps/multipoint/Show-WmsIdentifier.md index 52414b3bdd..ede63f8cd5 100644 --- a/docset/winserver2022-ps/multipoint/Show-WmsIdentifier.md +++ b/docset/winserver2022-ps/multipoint/Show-WmsIdentifier.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/show-wmsidentifier?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/show-wmsidentifier?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Show-WmsIdentifier --- diff --git a/docset/winserver2022-ps/multipoint/Split-WmsStation.md b/docset/winserver2022-ps/multipoint/Split-WmsStation.md index bd2fda07dc..f4441e164c 100644 --- a/docset/winserver2022-ps/multipoint/Split-WmsStation.md +++ b/docset/winserver2022-ps/multipoint/Split-WmsStation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/split-wmsstation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/split-wmsstation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Split-WmsStation --- diff --git a/docset/winserver2022-ps/multipoint/Stop-WmsSystem.md b/docset/winserver2022-ps/multipoint/Stop-WmsSystem.md index c20bd48369..50d93fd9e3 100644 --- a/docset/winserver2022-ps/multipoint/Stop-WmsSystem.md +++ b/docset/winserver2022-ps/multipoint/Stop-WmsSystem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/stop-wmssystem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/stop-wmssystem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-WmsSystem --- diff --git a/docset/winserver2022-ps/multipoint/Suspend-WmsDiskProtection.md b/docset/winserver2022-ps/multipoint/Suspend-WmsDiskProtection.md index 5eea057b44..e009de5639 100644 --- a/docset/winserver2022-ps/multipoint/Suspend-WmsDiskProtection.md +++ b/docset/winserver2022-ps/multipoint/Suspend-WmsDiskProtection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/suspend-wmsdiskprotection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/suspend-wmsdiskprotection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-WmsDiskProtection --- diff --git a/docset/winserver2022-ps/multipoint/Unlock-WmsSession.md b/docset/winserver2022-ps/multipoint/Unlock-WmsSession.md index 8776ab3832..e4895f7c01 100644 --- a/docset/winserver2022-ps/multipoint/Unlock-WmsSession.md +++ b/docset/winserver2022-ps/multipoint/Unlock-WmsSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/unlock-wmssession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/unlock-wmssession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unlock-WmsSession --- diff --git a/docset/winserver2022-ps/multipoint/Unlock-WmsUsbStorage.md b/docset/winserver2022-ps/multipoint/Unlock-WmsUsbStorage.md index 0eeebc1664..92187f4230 100644 --- a/docset/winserver2022-ps/multipoint/Unlock-WmsUsbStorage.md +++ b/docset/winserver2022-ps/multipoint/Unlock-WmsUsbStorage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/unlock-wmsusbstorage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/unlock-wmsusbstorage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unlock-WmsUsbStorage --- diff --git a/docset/winserver2022-ps/multipoint/Unpublish-WmsDesktop.md b/docset/winserver2022-ps/multipoint/Unpublish-WmsDesktop.md index 18fbc80447..3a0dda05b4 100644 --- a/docset/winserver2022-ps/multipoint/Unpublish-WmsDesktop.md +++ b/docset/winserver2022-ps/multipoint/Unpublish-WmsDesktop.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/unpublish-wmsdesktop?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/unpublish-wmsdesktop?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unpublish-WmsDesktop --- diff --git a/docset/winserver2022-ps/multipoint/Update-WmsStation.md b/docset/winserver2022-ps/multipoint/Update-WmsStation.md index d0cbd0f7c3..7b3a40ef05 100644 --- a/docset/winserver2022-ps/multipoint/Update-WmsStation.md +++ b/docset/winserver2022-ps/multipoint/Update-WmsStation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPoint.dll-Help.xml Module Name: MultiPoint ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipoint/update-wmsstation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipoint/update-wmsstation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-WmsStation --- diff --git a/docset/winserver2022-ps/multipointvdi/Disable-WmsVirtualDesktopRole.md b/docset/winserver2022-ps/multipointvdi/Disable-WmsVirtualDesktopRole.md index 8bed911f87..6114b24f63 100644 --- a/docset/winserver2022-ps/multipointvdi/Disable-WmsVirtualDesktopRole.md +++ b/docset/winserver2022-ps/multipointvdi/Disable-WmsVirtualDesktopRole.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPointVdi.dll-Help.xml Module Name: MultipointVdi ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipointvdi/disable-wmsvirtualdesktoprole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipointvdi/disable-wmsvirtualdesktoprole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WmsVirtualDesktopRole --- diff --git a/docset/winserver2022-ps/multipointvdi/Enable-WmsVirtualDesktopRole.md b/docset/winserver2022-ps/multipointvdi/Enable-WmsVirtualDesktopRole.md index 71527917b8..8200605fec 100644 --- a/docset/winserver2022-ps/multipointvdi/Enable-WmsVirtualDesktopRole.md +++ b/docset/winserver2022-ps/multipointvdi/Enable-WmsVirtualDesktopRole.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPointVdi.dll-Help.xml Module Name: MultipointVdi ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipointvdi/enable-wmsvirtualdesktoprole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipointvdi/enable-wmsvirtualdesktoprole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WmsVirtualDesktopRole --- diff --git a/docset/winserver2022-ps/multipointvdi/Get-WmsVirtualDesktop.md b/docset/winserver2022-ps/multipointvdi/Get-WmsVirtualDesktop.md index 1be7ecdf44..3b1ee01c3b 100644 --- a/docset/winserver2022-ps/multipointvdi/Get-WmsVirtualDesktop.md +++ b/docset/winserver2022-ps/multipointvdi/Get-WmsVirtualDesktop.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPointVdi.dll-Help.xml Module Name: MultipointVdi ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipointvdi/get-wmsvirtualdesktop?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipointvdi/get-wmsvirtualdesktop?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WmsVirtualDesktop --- diff --git a/docset/winserver2022-ps/multipointvdi/Import-WmsVirtualDesktop.md b/docset/winserver2022-ps/multipointvdi/Import-WmsVirtualDesktop.md index 4552fbb53b..1912a23984 100644 --- a/docset/winserver2022-ps/multipointvdi/Import-WmsVirtualDesktop.md +++ b/docset/winserver2022-ps/multipointvdi/Import-WmsVirtualDesktop.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPointVdi.dll-Help.xml Module Name: MultipointVdi ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipointvdi/import-wmsvirtualdesktop?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipointvdi/import-wmsvirtualdesktop?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-WmsVirtualDesktop --- diff --git a/docset/winserver2022-ps/multipointvdi/New-WmsVirtualDesktop.md b/docset/winserver2022-ps/multipointvdi/New-WmsVirtualDesktop.md index a8cc9b789b..77f5b4632c 100644 --- a/docset/winserver2022-ps/multipointvdi/New-WmsVirtualDesktop.md +++ b/docset/winserver2022-ps/multipointvdi/New-WmsVirtualDesktop.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPointVdi.dll-Help.xml Module Name: MultipointVdi ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipointvdi/new-wmsvirtualdesktop?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipointvdi/new-wmsvirtualdesktop?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WmsVirtualDesktop --- diff --git a/docset/winserver2022-ps/multipointvdi/New-WmsVirtualDesktopTemplate.md b/docset/winserver2022-ps/multipointvdi/New-WmsVirtualDesktopTemplate.md index d77fa9d9c4..562b00e38a 100644 --- a/docset/winserver2022-ps/multipointvdi/New-WmsVirtualDesktopTemplate.md +++ b/docset/winserver2022-ps/multipointvdi/New-WmsVirtualDesktopTemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPointVdi.dll-Help.xml Module Name: MultipointVdi ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipointvdi/new-wmsvirtualdesktoptemplate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipointvdi/new-wmsvirtualdesktoptemplate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WmsVirtualDesktopTemplate --- diff --git a/docset/winserver2022-ps/multipointvdi/Open-WmsVirtualDesktop.md b/docset/winserver2022-ps/multipointvdi/Open-WmsVirtualDesktop.md index b4954d9ea4..ef6b75edd6 100644 --- a/docset/winserver2022-ps/multipointvdi/Open-WmsVirtualDesktop.md +++ b/docset/winserver2022-ps/multipointvdi/Open-WmsVirtualDesktop.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MultiPointVdi.dll-Help.xml Module Name: MultipointVdi ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/multipointvdi/open-wmsvirtualdesktop?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/multipointvdi/open-wmsvirtualdesktop?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Open-WmsVirtualDesktop --- diff --git a/docset/winserver2022-ps/nanoserverimagegenerator/Edit-NanoServerImage.md b/docset/winserver2022-ps/nanoserverimagegenerator/Edit-NanoServerImage.md index 788aad69f3..c160cf2114 100644 --- a/docset/winserver2022-ps/nanoserverimagegenerator/Edit-NanoServerImage.md +++ b/docset/winserver2022-ps/nanoserverimagegenerator/Edit-NanoServerImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NanoServerImageGenerator-help.xml Module Name: NanoServerImageGenerator ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nanoserverimagegenerator/edit-nanoserverimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nanoserverimagegenerator/edit-nanoserverimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Edit-NanoServerImage --- diff --git a/docset/winserver2022-ps/nanoserverimagegenerator/Get-NanoServerPackage.md b/docset/winserver2022-ps/nanoserverimagegenerator/Get-NanoServerPackage.md index 42d94c95dd..26b48eb220 100644 --- a/docset/winserver2022-ps/nanoserverimagegenerator/Get-NanoServerPackage.md +++ b/docset/winserver2022-ps/nanoserverimagegenerator/Get-NanoServerPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NanoServerImageGenerator-help.xml Module Name: NanoServerImageGenerator ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nanoserverimagegenerator/get-nanoserverpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nanoserverimagegenerator/get-nanoserverpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NanoServerPackage --- diff --git a/docset/winserver2022-ps/nanoserverimagegenerator/New-NanoServerImage.md b/docset/winserver2022-ps/nanoserverimagegenerator/New-NanoServerImage.md index a0b8fefb0a..6a015df90d 100644 --- a/docset/winserver2022-ps/nanoserverimagegenerator/New-NanoServerImage.md +++ b/docset/winserver2022-ps/nanoserverimagegenerator/New-NanoServerImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NanoServerImageGenerator-help.xml Module Name: NanoServerImageGenerator ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nanoserverimagegenerator/new-nanoserverimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nanoserverimagegenerator/new-nanoserverimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NanoServerImage --- diff --git a/docset/winserver2022-ps/netadapter/Disable-NetAdapter.md b/docset/winserver2022-ps/netadapter/Disable-NetAdapter.md index 6ec50da3cc..2cbaab8e10 100644 --- a/docset/winserver2022-ps/netadapter/Disable-NetAdapter.md +++ b/docset/winserver2022-ps/netadapter/Disable-NetAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapter.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetAdapter --- diff --git a/docset/winserver2022-ps/netadapter/Disable-NetAdapterBinding.md b/docset/winserver2022-ps/netadapter/Disable-NetAdapterBinding.md index 1724f053fc..a781314a47 100644 --- a/docset/winserver2022-ps/netadapter/Disable-NetAdapterBinding.md +++ b/docset/winserver2022-ps/netadapter/Disable-NetAdapterBinding.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterBinding.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapterbinding?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapterbinding?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetAdapterBinding --- diff --git a/docset/winserver2022-ps/netadapter/Disable-NetAdapterChecksumOffload.md b/docset/winserver2022-ps/netadapter/Disable-NetAdapterChecksumOffload.md index 59d4c41555..d97cc0bd2c 100644 --- a/docset/winserver2022-ps/netadapter/Disable-NetAdapterChecksumOffload.md +++ b/docset/winserver2022-ps/netadapter/Disable-NetAdapterChecksumOffload.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterChecksumOffload.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapterchecksumoffload?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapterchecksumoffload?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetAdapterChecksumOffload --- diff --git a/docset/winserver2022-ps/netadapter/Disable-NetAdapterEncapsulatedPacketTaskOffload.md b/docset/winserver2022-ps/netadapter/Disable-NetAdapterEncapsulatedPacketTaskOffload.md index 43eba614ef..dbb111caa8 100644 --- a/docset/winserver2022-ps/netadapter/Disable-NetAdapterEncapsulatedPacketTaskOffload.md +++ b/docset/winserver2022-ps/netadapter/Disable-NetAdapterEncapsulatedPacketTaskOffload.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterEncapsulatedPacketTaskOffload.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapterencapsulatedpackettaskoffload?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapterencapsulatedpackettaskoffload?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetAdapterEncapsulatedPacketTaskOffload --- diff --git a/docset/winserver2022-ps/netadapter/Disable-NetAdapterIPsecOffload.md b/docset/winserver2022-ps/netadapter/Disable-NetAdapterIPsecOffload.md index 6ba22de8cb..98c0d04818 100644 --- a/docset/winserver2022-ps/netadapter/Disable-NetAdapterIPsecOffload.md +++ b/docset/winserver2022-ps/netadapter/Disable-NetAdapterIPsecOffload.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterIPsecOffload.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapteripsecoffload?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapteripsecoffload?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetAdapterIPsecOffload --- diff --git a/docset/winserver2022-ps/netadapter/Disable-NetAdapterLso.md b/docset/winserver2022-ps/netadapter/Disable-NetAdapterLso.md index f41cd11c10..dd02ff90ab 100644 --- a/docset/winserver2022-ps/netadapter/Disable-NetAdapterLso.md +++ b/docset/winserver2022-ps/netadapter/Disable-NetAdapterLso.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterLso.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapterlso?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapterlso?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetAdapterLso --- diff --git a/docset/winserver2022-ps/netadapter/Disable-NetAdapterPowerManagement.md b/docset/winserver2022-ps/netadapter/Disable-NetAdapterPowerManagement.md index 48fcad29f7..22e2030e47 100644 --- a/docset/winserver2022-ps/netadapter/Disable-NetAdapterPowerManagement.md +++ b/docset/winserver2022-ps/netadapter/Disable-NetAdapterPowerManagement.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterPowerManagement.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 02/14/2018 -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapterpowermanagement?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapterpowermanagement?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetAdapterPowerManagement --- diff --git a/docset/winserver2022-ps/netadapter/Disable-NetAdapterQos.md b/docset/winserver2022-ps/netadapter/Disable-NetAdapterQos.md index d3b08cfffa..d50a9a0445 100644 --- a/docset/winserver2022-ps/netadapter/Disable-NetAdapterQos.md +++ b/docset/winserver2022-ps/netadapter/Disable-NetAdapterQos.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterQos.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapterqos?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapterqos?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetAdapterQos --- diff --git a/docset/winserver2022-ps/netadapter/Disable-NetAdapterRdma.md b/docset/winserver2022-ps/netadapter/Disable-NetAdapterRdma.md index 62335cb163..b94051d193 100644 --- a/docset/winserver2022-ps/netadapter/Disable-NetAdapterRdma.md +++ b/docset/winserver2022-ps/netadapter/Disable-NetAdapterRdma.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterRdma.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapterrdma?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapterrdma?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetAdapterRdma --- diff --git a/docset/winserver2022-ps/netadapter/Disable-NetAdapterRsc.md b/docset/winserver2022-ps/netadapter/Disable-NetAdapterRsc.md index c09abca011..f16e7bfd1e 100644 --- a/docset/winserver2022-ps/netadapter/Disable-NetAdapterRsc.md +++ b/docset/winserver2022-ps/netadapter/Disable-NetAdapterRsc.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterRsc.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapterrsc?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapterrsc?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetAdapterRsc --- diff --git a/docset/winserver2022-ps/netadapter/Disable-NetAdapterRss.md b/docset/winserver2022-ps/netadapter/Disable-NetAdapterRss.md index 5bbe3d3a7d..cc10326ec2 100644 --- a/docset/winserver2022-ps/netadapter/Disable-NetAdapterRss.md +++ b/docset/winserver2022-ps/netadapter/Disable-NetAdapterRss.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterRss.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapterrss?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapterrss?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetAdapterRss --- diff --git a/docset/winserver2022-ps/netadapter/Disable-NetAdapterSriov.md b/docset/winserver2022-ps/netadapter/Disable-NetAdapterSriov.md index e97be69cb5..98a04eeb44 100644 --- a/docset/winserver2022-ps/netadapter/Disable-NetAdapterSriov.md +++ b/docset/winserver2022-ps/netadapter/Disable-NetAdapterSriov.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterSriov.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadaptersriov?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadaptersriov?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetAdapterSriov --- diff --git a/docset/winserver2022-ps/netadapter/Disable-NetAdapterUso.md b/docset/winserver2022-ps/netadapter/Disable-NetAdapterUso.md index 3adc4ab4db..bd4952b5a4 100644 --- a/docset/winserver2022-ps/netadapter/Disable-NetAdapterUso.md +++ b/docset/winserver2022-ps/netadapter/Disable-NetAdapterUso.md @@ -1,9 +1,9 @@ ---- +--- description: Disables USO properties of the network adapter. external help file: MSFT_NetAdapterUso.cdxml-help.xml Module Name: NetAdapter ms.date: 09/20/2021 -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadapteruso?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadapteruso?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetAdapterUso --- diff --git a/docset/winserver2022-ps/netadapter/Disable-NetAdapterVmq.md b/docset/winserver2022-ps/netadapter/Disable-NetAdapterVmq.md index 798357ba21..c4f1d9eb7e 100644 --- a/docset/winserver2022-ps/netadapter/Disable-NetAdapterVmq.md +++ b/docset/winserver2022-ps/netadapter/Disable-NetAdapterVmq.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterVmq.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/disable-netadaptervmq?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/disable-netadaptervmq?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetAdapterVmq --- diff --git a/docset/winserver2022-ps/netadapter/Enable-NetAdapter.md b/docset/winserver2022-ps/netadapter/Enable-NetAdapter.md index 83b75d886a..890bbdd37a 100644 --- a/docset/winserver2022-ps/netadapter/Enable-NetAdapter.md +++ b/docset/winserver2022-ps/netadapter/Enable-NetAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapter.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetAdapter --- diff --git a/docset/winserver2022-ps/netadapter/Enable-NetAdapterBinding.md b/docset/winserver2022-ps/netadapter/Enable-NetAdapterBinding.md index fad9df14c2..b909090cbb 100644 --- a/docset/winserver2022-ps/netadapter/Enable-NetAdapterBinding.md +++ b/docset/winserver2022-ps/netadapter/Enable-NetAdapterBinding.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterBinding.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapterbinding?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapterbinding?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetAdapterBinding --- diff --git a/docset/winserver2022-ps/netadapter/Enable-NetAdapterChecksumOffload.md b/docset/winserver2022-ps/netadapter/Enable-NetAdapterChecksumOffload.md index d89ee05a74..c6b428dd3b 100644 --- a/docset/winserver2022-ps/netadapter/Enable-NetAdapterChecksumOffload.md +++ b/docset/winserver2022-ps/netadapter/Enable-NetAdapterChecksumOffload.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterChecksumOffload.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapterchecksumoffload?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapterchecksumoffload?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetAdapterChecksumOffload --- diff --git a/docset/winserver2022-ps/netadapter/Enable-NetAdapterEncapsulatedPacketTaskOffload.md b/docset/winserver2022-ps/netadapter/Enable-NetAdapterEncapsulatedPacketTaskOffload.md index a61a6cb13f..97af7ef958 100644 --- a/docset/winserver2022-ps/netadapter/Enable-NetAdapterEncapsulatedPacketTaskOffload.md +++ b/docset/winserver2022-ps/netadapter/Enable-NetAdapterEncapsulatedPacketTaskOffload.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterEncapsulatedPacketTaskOffload.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapterencapsulatedpackettaskoffload?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapterencapsulatedpackettaskoffload?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetAdapterEncapsulatedPacketTaskOffload --- diff --git a/docset/winserver2022-ps/netadapter/Enable-NetAdapterIPsecOffload.md b/docset/winserver2022-ps/netadapter/Enable-NetAdapterIPsecOffload.md index 1abf4612ef..0eff0a9485 100644 --- a/docset/winserver2022-ps/netadapter/Enable-NetAdapterIPsecOffload.md +++ b/docset/winserver2022-ps/netadapter/Enable-NetAdapterIPsecOffload.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterIPsecOffload.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapteripsecoffload?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapteripsecoffload?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetAdapterIPsecOffload --- diff --git a/docset/winserver2022-ps/netadapter/Enable-NetAdapterLso.md b/docset/winserver2022-ps/netadapter/Enable-NetAdapterLso.md index 4fb0607fff..2f8eb9dcf6 100644 --- a/docset/winserver2022-ps/netadapter/Enable-NetAdapterLso.md +++ b/docset/winserver2022-ps/netadapter/Enable-NetAdapterLso.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterLso.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapterlso?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapterlso?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetAdapterLso --- diff --git a/docset/winserver2022-ps/netadapter/Enable-NetAdapterPowerManagement.md b/docset/winserver2022-ps/netadapter/Enable-NetAdapterPowerManagement.md index 056a6ac43f..f68f89895f 100644 --- a/docset/winserver2022-ps/netadapter/Enable-NetAdapterPowerManagement.md +++ b/docset/winserver2022-ps/netadapter/Enable-NetAdapterPowerManagement.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterPowerManagement.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapterpowermanagement?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapterpowermanagement?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetAdapterPowerManagement --- diff --git a/docset/winserver2022-ps/netadapter/Enable-NetAdapterQos.md b/docset/winserver2022-ps/netadapter/Enable-NetAdapterQos.md index 8fdac125c8..dc0e5ec7fc 100644 --- a/docset/winserver2022-ps/netadapter/Enable-NetAdapterQos.md +++ b/docset/winserver2022-ps/netadapter/Enable-NetAdapterQos.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterQos.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapterqos?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapterqos?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetAdapterQos --- diff --git a/docset/winserver2022-ps/netadapter/Enable-NetAdapterRdma.md b/docset/winserver2022-ps/netadapter/Enable-NetAdapterRdma.md index 6be3ff19a7..ed32aae60a 100644 --- a/docset/winserver2022-ps/netadapter/Enable-NetAdapterRdma.md +++ b/docset/winserver2022-ps/netadapter/Enable-NetAdapterRdma.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterRdma.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapterrdma?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapterrdma?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetAdapterRdma --- diff --git a/docset/winserver2022-ps/netadapter/Enable-NetAdapterRsc.md b/docset/winserver2022-ps/netadapter/Enable-NetAdapterRsc.md index f36086d53e..cc732cfc10 100644 --- a/docset/winserver2022-ps/netadapter/Enable-NetAdapterRsc.md +++ b/docset/winserver2022-ps/netadapter/Enable-NetAdapterRsc.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterRsc.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapterrsc?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapterrsc?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetAdapterRsc --- diff --git a/docset/winserver2022-ps/netadapter/Enable-NetAdapterRss.md b/docset/winserver2022-ps/netadapter/Enable-NetAdapterRss.md index 8918eb9fe5..da17f422cd 100644 --- a/docset/winserver2022-ps/netadapter/Enable-NetAdapterRss.md +++ b/docset/winserver2022-ps/netadapter/Enable-NetAdapterRss.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterRss.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapterrss?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapterrss?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetAdapterRss --- diff --git a/docset/winserver2022-ps/netadapter/Enable-NetAdapterSriov.md b/docset/winserver2022-ps/netadapter/Enable-NetAdapterSriov.md index 4926570d3c..730703bb46 100644 --- a/docset/winserver2022-ps/netadapter/Enable-NetAdapterSriov.md +++ b/docset/winserver2022-ps/netadapter/Enable-NetAdapterSriov.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterSriov.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadaptersriov?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadaptersriov?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetAdapterSriov --- diff --git a/docset/winserver2022-ps/netadapter/Enable-NetAdapterUso.md b/docset/winserver2022-ps/netadapter/Enable-NetAdapterUso.md index d500f3029f..a42452973c 100644 --- a/docset/winserver2022-ps/netadapter/Enable-NetAdapterUso.md +++ b/docset/winserver2022-ps/netadapter/Enable-NetAdapterUso.md @@ -1,9 +1,9 @@ ---- +--- description: Enables USO properties of the network adapter. external help file: MSFT_NetAdapterUso.cdxml-help.xml Module Name: NetAdapter ms.date: 09/20/2021 -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadapteruso?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadapteruso?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetAdapterUso --- diff --git a/docset/winserver2022-ps/netadapter/Enable-NetAdapterVmq.md b/docset/winserver2022-ps/netadapter/Enable-NetAdapterVmq.md index 580e07db5b..47a53b580d 100644 --- a/docset/winserver2022-ps/netadapter/Enable-NetAdapterVmq.md +++ b/docset/winserver2022-ps/netadapter/Enable-NetAdapterVmq.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterVmq.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/enable-netadaptervmq?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/enable-netadaptervmq?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetAdapterVmq --- diff --git a/docset/winserver2022-ps/netadapter/Get-NetAdapter.md b/docset/winserver2022-ps/netadapter/Get-NetAdapter.md index 2bd4bdbbe5..2ed620783e 100644 --- a/docset/winserver2022-ps/netadapter/Get-NetAdapter.md +++ b/docset/winserver2022-ps/netadapter/Get-NetAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapter.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapter --- diff --git a/docset/winserver2022-ps/netadapter/Get-NetAdapterAdvancedProperty.md b/docset/winserver2022-ps/netadapter/Get-NetAdapterAdvancedProperty.md index a62d6feb4f..3339db9ca5 100644 --- a/docset/winserver2022-ps/netadapter/Get-NetAdapterAdvancedProperty.md +++ b/docset/winserver2022-ps/netadapter/Get-NetAdapterAdvancedProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterAdvancedProperty.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapteradvancedproperty?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapteradvancedproperty?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterAdvancedProperty --- diff --git a/docset/winserver2022-ps/netadapter/Get-NetAdapterBinding.md b/docset/winserver2022-ps/netadapter/Get-NetAdapterBinding.md index 352ceea506..0e62db1c69 100644 --- a/docset/winserver2022-ps/netadapter/Get-NetAdapterBinding.md +++ b/docset/winserver2022-ps/netadapter/Get-NetAdapterBinding.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterBinding.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterbinding?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterbinding?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterBinding --- diff --git a/docset/winserver2022-ps/netadapter/Get-NetAdapterChecksumOffload.md b/docset/winserver2022-ps/netadapter/Get-NetAdapterChecksumOffload.md index fbb8d4b333..92ac8f66cd 100644 --- a/docset/winserver2022-ps/netadapter/Get-NetAdapterChecksumOffload.md +++ b/docset/winserver2022-ps/netadapter/Get-NetAdapterChecksumOffload.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterChecksumOffload.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterchecksumoffload?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterchecksumoffload?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterChecksumOffload --- diff --git a/docset/winserver2022-ps/netadapter/Get-NetAdapterDataPathConfiguration.md b/docset/winserver2022-ps/netadapter/Get-NetAdapterDataPathConfiguration.md index b1373615bc..827e3e96bd 100644 --- a/docset/winserver2022-ps/netadapter/Get-NetAdapterDataPathConfiguration.md +++ b/docset/winserver2022-ps/netadapter/Get-NetAdapterDataPathConfiguration.md @@ -1,9 +1,9 @@ ---- +--- description: Gets the name of the network adapter, profile, and the profile source. external help file: MSFT_NetAdapterDataPathConfiguration.cdxml-help.xml Module Name: NetAdapter ms.date: 09/23/2021 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterdatapathconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterdatapathconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterDataPathConfiguration --- diff --git a/docset/winserver2022-ps/netadapter/Get-NetAdapterEncapsulatedPacketTaskOffload.md b/docset/winserver2022-ps/netadapter/Get-NetAdapterEncapsulatedPacketTaskOffload.md index 29e435e17b..ea9f44f530 100644 --- a/docset/winserver2022-ps/netadapter/Get-NetAdapterEncapsulatedPacketTaskOffload.md +++ b/docset/winserver2022-ps/netadapter/Get-NetAdapterEncapsulatedPacketTaskOffload.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterEncapsulatedPacketTaskOffload.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterencapsulatedpackettaskoffload?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterencapsulatedpackettaskoffload?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterEncapsulatedPacketTaskOffload --- diff --git a/docset/winserver2022-ps/netadapter/Get-NetAdapterHardwareInfo.md b/docset/winserver2022-ps/netadapter/Get-NetAdapterHardwareInfo.md index 1a813eca77..cd3e133009 100644 --- a/docset/winserver2022-ps/netadapter/Get-NetAdapterHardwareInfo.md +++ b/docset/winserver2022-ps/netadapter/Get-NetAdapterHardwareInfo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterHardwareInfo.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterhardwareinfo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterhardwareinfo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterHardwareInfo --- diff --git a/docset/winserver2022-ps/netadapter/Get-NetAdapterIPsecOffload.md b/docset/winserver2022-ps/netadapter/Get-NetAdapterIPsecOffload.md index 977f1830d3..b1f3d098e4 100644 --- a/docset/winserver2022-ps/netadapter/Get-NetAdapterIPsecOffload.md +++ b/docset/winserver2022-ps/netadapter/Get-NetAdapterIPsecOffload.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterIPsecOffload.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapteripsecoffload?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapteripsecoffload?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterIPsecOffload --- diff --git a/docset/winserver2022-ps/netadapter/Get-NetAdapterLso.md b/docset/winserver2022-ps/netadapter/Get-NetAdapterLso.md index c47ec59dac..4875d13b63 100644 --- a/docset/winserver2022-ps/netadapter/Get-NetAdapterLso.md +++ b/docset/winserver2022-ps/netadapter/Get-NetAdapterLso.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterLso.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterlso?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterlso?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterLso --- diff --git a/docset/winserver2022-ps/netadapter/Get-NetAdapterPowerManagement.md b/docset/winserver2022-ps/netadapter/Get-NetAdapterPowerManagement.md index c32fe74b1b..cf9dc23a31 100644 --- a/docset/winserver2022-ps/netadapter/Get-NetAdapterPowerManagement.md +++ b/docset/winserver2022-ps/netadapter/Get-NetAdapterPowerManagement.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterPowerManagement.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterpowermanagement?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterpowermanagement?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterPowerManagement --- diff --git a/docset/winserver2022-ps/netadapter/Get-NetAdapterQos.md b/docset/winserver2022-ps/netadapter/Get-NetAdapterQos.md index 68159d1ae9..798fb5d5d0 100644 --- a/docset/winserver2022-ps/netadapter/Get-NetAdapterQos.md +++ b/docset/winserver2022-ps/netadapter/Get-NetAdapterQos.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterQos.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterqos?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterqos?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterQos --- diff --git a/docset/winserver2022-ps/netadapter/Get-NetAdapterRdma.md b/docset/winserver2022-ps/netadapter/Get-NetAdapterRdma.md index 9e85c775ca..ab9cace314 100644 --- a/docset/winserver2022-ps/netadapter/Get-NetAdapterRdma.md +++ b/docset/winserver2022-ps/netadapter/Get-NetAdapterRdma.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterRdma.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterrdma?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterrdma?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterRdma --- diff --git a/docset/winserver2022-ps/netadapter/Get-NetAdapterRsc.md b/docset/winserver2022-ps/netadapter/Get-NetAdapterRsc.md index 7e1dcc7b9a..3c5dd6303f 100644 --- a/docset/winserver2022-ps/netadapter/Get-NetAdapterRsc.md +++ b/docset/winserver2022-ps/netadapter/Get-NetAdapterRsc.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterRsc.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterrsc?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterrsc?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterRsc --- diff --git a/docset/winserver2022-ps/netadapter/Get-NetAdapterRss.md b/docset/winserver2022-ps/netadapter/Get-NetAdapterRss.md index 79ae602897..c9889fdd5e 100644 --- a/docset/winserver2022-ps/netadapter/Get-NetAdapterRss.md +++ b/docset/winserver2022-ps/netadapter/Get-NetAdapterRss.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterRss.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterrss?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterrss?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterRss --- diff --git a/docset/winserver2022-ps/netadapter/Get-NetAdapterSriov.md b/docset/winserver2022-ps/netadapter/Get-NetAdapterSriov.md index 0543b1bef3..9be9202303 100644 --- a/docset/winserver2022-ps/netadapter/Get-NetAdapterSriov.md +++ b/docset/winserver2022-ps/netadapter/Get-NetAdapterSriov.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterSriov.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadaptersriov?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadaptersriov?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterSriov --- diff --git a/docset/winserver2022-ps/netadapter/Get-NetAdapterSriovVf.md b/docset/winserver2022-ps/netadapter/Get-NetAdapterSriovVf.md index f2dc7ecde1..18bf2dc55f 100644 --- a/docset/winserver2022-ps/netadapter/Get-NetAdapterSriovVf.md +++ b/docset/winserver2022-ps/netadapter/Get-NetAdapterSriovVf.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterSriovVf.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadaptersriovvf?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadaptersriovvf?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterSriovVf --- diff --git a/docset/winserver2022-ps/netadapter/Get-NetAdapterStatistics.md b/docset/winserver2022-ps/netadapter/Get-NetAdapterStatistics.md index 75ddf28e9c..d07808873a 100644 --- a/docset/winserver2022-ps/netadapter/Get-NetAdapterStatistics.md +++ b/docset/winserver2022-ps/netadapter/Get-NetAdapterStatistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterStatistics.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapterstatistics?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapterstatistics?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterStatistics --- diff --git a/docset/winserver2022-ps/netadapter/Get-NetAdapterUso.md b/docset/winserver2022-ps/netadapter/Get-NetAdapterUso.md index df8f362f5e..a5436cad6e 100644 --- a/docset/winserver2022-ps/netadapter/Get-NetAdapterUso.md +++ b/docset/winserver2022-ps/netadapter/Get-NetAdapterUso.md @@ -1,9 +1,9 @@ ---- +--- description: Gets the USO properties of the network adapter. external help file: MSFT_NetAdapterUso.cdxml-help.xml Module Name: NetAdapter ms.date: 09/20/2021 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadapteruso?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadapteruso?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterUso --- diff --git a/docset/winserver2022-ps/netadapter/Get-NetAdapterVPort.md b/docset/winserver2022-ps/netadapter/Get-NetAdapterVPort.md index 576c160def..e4740583cf 100644 --- a/docset/winserver2022-ps/netadapter/Get-NetAdapterVPort.md +++ b/docset/winserver2022-ps/netadapter/Get-NetAdapterVPort.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterVPort.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadaptervport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadaptervport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterVPort --- diff --git a/docset/winserver2022-ps/netadapter/Get-NetAdapterVmq.md b/docset/winserver2022-ps/netadapter/Get-NetAdapterVmq.md index 96590961f9..2c41ea026c 100644 --- a/docset/winserver2022-ps/netadapter/Get-NetAdapterVmq.md +++ b/docset/winserver2022-ps/netadapter/Get-NetAdapterVmq.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterVmq.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadaptervmq?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadaptervmq?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterVmq --- diff --git a/docset/winserver2022-ps/netadapter/Get-NetAdapterVmqQueue.md b/docset/winserver2022-ps/netadapter/Get-NetAdapterVmqQueue.md index 38aaabc027..a786c33dd3 100644 --- a/docset/winserver2022-ps/netadapter/Get-NetAdapterVmqQueue.md +++ b/docset/winserver2022-ps/netadapter/Get-NetAdapterVmqQueue.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterVmqQueue.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/get-netadaptervmqqueue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/get-netadaptervmqqueue?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetAdapterVmqQueue --- diff --git a/docset/winserver2022-ps/netadapter/New-NetAdapterAdvancedProperty.md b/docset/winserver2022-ps/netadapter/New-NetAdapterAdvancedProperty.md index e53e5b614e..d5ade142c5 100644 --- a/docset/winserver2022-ps/netadapter/New-NetAdapterAdvancedProperty.md +++ b/docset/winserver2022-ps/netadapter/New-NetAdapterAdvancedProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterAdvancedProperty.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/new-netadapteradvancedproperty?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/new-netadapteradvancedproperty?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetAdapterAdvancedProperty --- diff --git a/docset/winserver2022-ps/netadapter/Remove-NetAdapterAdvancedProperty.md b/docset/winserver2022-ps/netadapter/Remove-NetAdapterAdvancedProperty.md index df4cd8cf00..70778a6a95 100644 --- a/docset/winserver2022-ps/netadapter/Remove-NetAdapterAdvancedProperty.md +++ b/docset/winserver2022-ps/netadapter/Remove-NetAdapterAdvancedProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterAdvancedProperty.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/remove-netadapteradvancedproperty?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/remove-netadapteradvancedproperty?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetAdapterAdvancedProperty --- diff --git a/docset/winserver2022-ps/netadapter/Rename-NetAdapter.md b/docset/winserver2022-ps/netadapter/Rename-NetAdapter.md index d3ef8fdd05..b9eb7d57a0 100644 --- a/docset/winserver2022-ps/netadapter/Rename-NetAdapter.md +++ b/docset/winserver2022-ps/netadapter/Rename-NetAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapter.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/rename-netadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/rename-netadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-NetAdapter --- diff --git a/docset/winserver2022-ps/netadapter/Reset-NetAdapterAdvancedProperty.md b/docset/winserver2022-ps/netadapter/Reset-NetAdapterAdvancedProperty.md index 8973429343..57a6e50708 100644 --- a/docset/winserver2022-ps/netadapter/Reset-NetAdapterAdvancedProperty.md +++ b/docset/winserver2022-ps/netadapter/Reset-NetAdapterAdvancedProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterAdvancedProperty.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/reset-netadapteradvancedproperty?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/reset-netadapteradvancedproperty?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-NetAdapterAdvancedProperty --- diff --git a/docset/winserver2022-ps/netadapter/Restart-NetAdapter.md b/docset/winserver2022-ps/netadapter/Restart-NetAdapter.md index c02e9a3c4a..ebda79ea07 100644 --- a/docset/winserver2022-ps/netadapter/Restart-NetAdapter.md +++ b/docset/winserver2022-ps/netadapter/Restart-NetAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapter.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/restart-netadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/restart-netadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restart-NetAdapter --- diff --git a/docset/winserver2022-ps/netadapter/Set-NetAdapter.md b/docset/winserver2022-ps/netadapter/Set-NetAdapter.md index ae8b2fcc0e..b9759ee5e5 100644 --- a/docset/winserver2022-ps/netadapter/Set-NetAdapter.md +++ b/docset/winserver2022-ps/netadapter/Set-NetAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapter.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapter --- diff --git a/docset/winserver2022-ps/netadapter/Set-NetAdapterAdvancedProperty.md b/docset/winserver2022-ps/netadapter/Set-NetAdapterAdvancedProperty.md index ed1f99e705..703ab13dc1 100644 --- a/docset/winserver2022-ps/netadapter/Set-NetAdapterAdvancedProperty.md +++ b/docset/winserver2022-ps/netadapter/Set-NetAdapterAdvancedProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterAdvancedProperty.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapteradvancedproperty?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapteradvancedproperty?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapterAdvancedProperty --- diff --git a/docset/winserver2022-ps/netadapter/Set-NetAdapterBinding.md b/docset/winserver2022-ps/netadapter/Set-NetAdapterBinding.md index 0107c2bce8..1740ca2add 100644 --- a/docset/winserver2022-ps/netadapter/Set-NetAdapterBinding.md +++ b/docset/winserver2022-ps/netadapter/Set-NetAdapterBinding.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterBinding.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapterbinding?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapterbinding?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapterBinding --- diff --git a/docset/winserver2022-ps/netadapter/Set-NetAdapterChecksumOffload.md b/docset/winserver2022-ps/netadapter/Set-NetAdapterChecksumOffload.md index b7c212ae2f..e1285df5d0 100644 --- a/docset/winserver2022-ps/netadapter/Set-NetAdapterChecksumOffload.md +++ b/docset/winserver2022-ps/netadapter/Set-NetAdapterChecksumOffload.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterChecksumOffload.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapterchecksumoffload?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapterchecksumoffload?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapterChecksumOffload --- diff --git a/docset/winserver2022-ps/netadapter/Set-NetAdapterDataPathConfiguration.md b/docset/winserver2022-ps/netadapter/Set-NetAdapterDataPathConfiguration.md index b05e7cd683..df81b00d73 100644 --- a/docset/winserver2022-ps/netadapter/Set-NetAdapterDataPathConfiguration.md +++ b/docset/winserver2022-ps/netadapter/Set-NetAdapterDataPathConfiguration.md @@ -1,9 +1,9 @@ ---- +--- description: Sets the name of the network adapter, profile, and the profile source. external help file: MSFT_NetAdapterDataPathConfiguration.cdxml-help.xml Module Name: NetAdapter ms.date: 09/22/2021 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapterdatapathconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapterdatapathconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapterDataPathConfiguration --- diff --git a/docset/winserver2022-ps/netadapter/Set-NetAdapterEncapsulatedPacketTaskOffload.md b/docset/winserver2022-ps/netadapter/Set-NetAdapterEncapsulatedPacketTaskOffload.md index f2a0576165..08567d4b07 100644 --- a/docset/winserver2022-ps/netadapter/Set-NetAdapterEncapsulatedPacketTaskOffload.md +++ b/docset/winserver2022-ps/netadapter/Set-NetAdapterEncapsulatedPacketTaskOffload.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterEncapsulatedPacketTaskOffload.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapterencapsulatedpackettaskoffload?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapterencapsulatedpackettaskoffload?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapterEncapsulatedPacketTaskOffload --- diff --git a/docset/winserver2022-ps/netadapter/Set-NetAdapterIPsecOffload.md b/docset/winserver2022-ps/netadapter/Set-NetAdapterIPsecOffload.md index c2735303eb..a615bb7735 100644 --- a/docset/winserver2022-ps/netadapter/Set-NetAdapterIPsecOffload.md +++ b/docset/winserver2022-ps/netadapter/Set-NetAdapterIPsecOffload.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterIPsecOffload.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapteripsecoffload?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapteripsecoffload?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapterIPsecOffload --- diff --git a/docset/winserver2022-ps/netadapter/Set-NetAdapterLso.md b/docset/winserver2022-ps/netadapter/Set-NetAdapterLso.md index 5456f5c09c..7565951f35 100644 --- a/docset/winserver2022-ps/netadapter/Set-NetAdapterLso.md +++ b/docset/winserver2022-ps/netadapter/Set-NetAdapterLso.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterLso.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapterlso?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapterlso?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapterLso --- diff --git a/docset/winserver2022-ps/netadapter/Set-NetAdapterPowerManagement.md b/docset/winserver2022-ps/netadapter/Set-NetAdapterPowerManagement.md index da243d556b..af748860f0 100644 --- a/docset/winserver2022-ps/netadapter/Set-NetAdapterPowerManagement.md +++ b/docset/winserver2022-ps/netadapter/Set-NetAdapterPowerManagement.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterPowerManagement.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapterpowermanagement?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapterpowermanagement?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapterPowerManagement --- diff --git a/docset/winserver2022-ps/netadapter/Set-NetAdapterQos.md b/docset/winserver2022-ps/netadapter/Set-NetAdapterQos.md index ae61e3600f..d1b4a816c6 100644 --- a/docset/winserver2022-ps/netadapter/Set-NetAdapterQos.md +++ b/docset/winserver2022-ps/netadapter/Set-NetAdapterQos.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterQos.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapterqos?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapterqos?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapterQos --- diff --git a/docset/winserver2022-ps/netadapter/Set-NetAdapterRdma.md b/docset/winserver2022-ps/netadapter/Set-NetAdapterRdma.md index 346aa310eb..f6db54485f 100644 --- a/docset/winserver2022-ps/netadapter/Set-NetAdapterRdma.md +++ b/docset/winserver2022-ps/netadapter/Set-NetAdapterRdma.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterRdma.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapterrdma?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapterrdma?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapterRdma --- diff --git a/docset/winserver2022-ps/netadapter/Set-NetAdapterRsc.md b/docset/winserver2022-ps/netadapter/Set-NetAdapterRsc.md index a3d3c498b3..6a2880b3a8 100644 --- a/docset/winserver2022-ps/netadapter/Set-NetAdapterRsc.md +++ b/docset/winserver2022-ps/netadapter/Set-NetAdapterRsc.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterRsc.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapterrsc?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapterrsc?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapterRsc --- diff --git a/docset/winserver2022-ps/netadapter/Set-NetAdapterRss.md b/docset/winserver2022-ps/netadapter/Set-NetAdapterRss.md index 51addcb331..d63372e108 100644 --- a/docset/winserver2022-ps/netadapter/Set-NetAdapterRss.md +++ b/docset/winserver2022-ps/netadapter/Set-NetAdapterRss.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterRss.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapterrss?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapterrss?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapterRss --- diff --git a/docset/winserver2022-ps/netadapter/Set-NetAdapterSriov.md b/docset/winserver2022-ps/netadapter/Set-NetAdapterSriov.md index 6f17ae9b82..962c209695 100644 --- a/docset/winserver2022-ps/netadapter/Set-NetAdapterSriov.md +++ b/docset/winserver2022-ps/netadapter/Set-NetAdapterSriov.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterSriov.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadaptersriov?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadaptersriov?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapterSriov --- diff --git a/docset/winserver2022-ps/netadapter/Set-NetAdapterUso.md b/docset/winserver2022-ps/netadapter/Set-NetAdapterUso.md index 36f164195f..6a98c1f7b8 100644 --- a/docset/winserver2022-ps/netadapter/Set-NetAdapterUso.md +++ b/docset/winserver2022-ps/netadapter/Set-NetAdapterUso.md @@ -1,9 +1,9 @@ ---- +--- description: Sets the USO properties of a network adapter. external help file: MSFT_NetAdapterUso.cdxml-help.xml Module Name: NetAdapter ms.date: 09/20/2021 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadapteruso?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadapteruso?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapterUso --- diff --git a/docset/winserver2022-ps/netadapter/Set-NetAdapterVmq.md b/docset/winserver2022-ps/netadapter/Set-NetAdapterVmq.md index 0ed2545003..69478557a6 100644 --- a/docset/winserver2022-ps/netadapter/Set-NetAdapterVmq.md +++ b/docset/winserver2022-ps/netadapter/Set-NetAdapterVmq.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetAdapterVmq.cmdletDefinition.cdxml-help.xml Module Name: NetAdapter ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netadapter/set-netadaptervmq?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netadapter/set-netadaptervmq?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetAdapterVmq --- diff --git a/docset/winserver2022-ps/netconnection/Get-NetConnectionProfile.md b/docset/winserver2022-ps/netconnection/Get-NetConnectionProfile.md index f525ff246a..70f0df72a7 100644 --- a/docset/winserver2022-ps/netconnection/Get-NetConnectionProfile.md +++ b/docset/winserver2022-ps/netconnection/Get-NetConnectionProfile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetConnectionProfile.cdxml-help.xml Module Name: NetConnection ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netconnectionprofile/get-netconnectionprofile?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netconnectionprofile/get-netconnectionprofile?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetConnectionProfile --- diff --git a/docset/winserver2022-ps/netconnection/Set-NetConnectionProfile.md b/docset/winserver2022-ps/netconnection/Set-NetConnectionProfile.md index fd0627cf7c..61c13c31dd 100644 --- a/docset/winserver2022-ps/netconnection/Set-NetConnectionProfile.md +++ b/docset/winserver2022-ps/netconnection/Set-NetConnectionProfile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetConnectionProfile.cdxml-help.xml Module Name: NetConnection ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netconnectionprofile/set-netconnectionprofile?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netconnectionprofile/set-netconnectionprofile?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetConnectionProfile --- diff --git a/docset/winserver2022-ps/neteventpacketcapture/Add-NetEventNetworkAdapter.md b/docset/winserver2022-ps/neteventpacketcapture/Add-NetEventNetworkAdapter.md index 1bbd2f4905..2150d68384 100644 --- a/docset/winserver2022-ps/neteventpacketcapture/Add-NetEventNetworkAdapter.md +++ b/docset/winserver2022-ps/neteventpacketcapture/Add-NetEventNetworkAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventNetworkAdapter.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/add-neteventnetworkadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/add-neteventnetworkadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NetEventNetworkAdapter --- diff --git a/docset/winserver2022-ps/neteventpacketcapture/Add-NetEventPacketCaptureProvider.md b/docset/winserver2022-ps/neteventpacketcapture/Add-NetEventPacketCaptureProvider.md index d013e0cb7e..065e5df548 100644 --- a/docset/winserver2022-ps/neteventpacketcapture/Add-NetEventPacketCaptureProvider.md +++ b/docset/winserver2022-ps/neteventpacketcapture/Add-NetEventPacketCaptureProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventPacketCaptureProvider.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/add-neteventpacketcaptureprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/add-neteventpacketcaptureprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NetEventPacketCaptureProvider --- diff --git a/docset/winserver2022-ps/neteventpacketcapture/Add-NetEventProvider.md b/docset/winserver2022-ps/neteventpacketcapture/Add-NetEventProvider.md index c139fa866b..e8050ffb63 100644 --- a/docset/winserver2022-ps/neteventpacketcapture/Add-NetEventProvider.md +++ b/docset/winserver2022-ps/neteventpacketcapture/Add-NetEventProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventProvider.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/add-neteventprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/add-neteventprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NetEventProvider --- diff --git a/docset/winserver2022-ps/neteventpacketcapture/Add-NetEventVFPProvider.md b/docset/winserver2022-ps/neteventpacketcapture/Add-NetEventVFPProvider.md index f27169c5f3..80809d31b4 100644 --- a/docset/winserver2022-ps/neteventpacketcapture/Add-NetEventVFPProvider.md +++ b/docset/winserver2022-ps/neteventpacketcapture/Add-NetEventVFPProvider.md @@ -3,7 +3,7 @@ description: The Add-NetEventVFPProvider cmdlet creates a Virtual Filtering Plat external help file: MSFT_NetEventVFPProvider.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 10/22/2021 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/add-neteventvfpprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/add-neteventvfpprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NetEventVFPProvider --- diff --git a/docset/winserver2022-ps/neteventpacketcapture/Add-NetEventVmNetworkAdapter.md b/docset/winserver2022-ps/neteventpacketcapture/Add-NetEventVmNetworkAdapter.md index 44660d005b..ca2abed58e 100644 --- a/docset/winserver2022-ps/neteventpacketcapture/Add-NetEventVmNetworkAdapter.md +++ b/docset/winserver2022-ps/neteventpacketcapture/Add-NetEventVmNetworkAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventVmNetworkAdatper.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/add-neteventvmnetworkadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/add-neteventvmnetworkadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NetEventVmNetworkAdapter --- diff --git a/docset/winserver2022-ps/neteventpacketcapture/Add-NetEventVmSwitch.md b/docset/winserver2022-ps/neteventpacketcapture/Add-NetEventVmSwitch.md index 9fac53e3ec..9c48a7a1d2 100644 --- a/docset/winserver2022-ps/neteventpacketcapture/Add-NetEventVmSwitch.md +++ b/docset/winserver2022-ps/neteventpacketcapture/Add-NetEventVmSwitch.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventVmSwitch.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/add-neteventvmswitch?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/add-neteventvmswitch?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NetEventVmSwitch --- diff --git a/docset/winserver2022-ps/neteventpacketcapture/Add-NetEventVmSwitchProvider.md b/docset/winserver2022-ps/neteventpacketcapture/Add-NetEventVmSwitchProvider.md index 269264f22b..8b4885f0c0 100644 --- a/docset/winserver2022-ps/neteventpacketcapture/Add-NetEventVmSwitchProvider.md +++ b/docset/winserver2022-ps/neteventpacketcapture/Add-NetEventVmSwitchProvider.md @@ -3,7 +3,7 @@ description: The Add-NetEventVmSwitchProvider cmdlet creates a virtual machine s external help file: MSFT_NetEventVmSwitchProvider.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 10/22/2021 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/add-neteventvmswitchprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/add-neteventvmswitchprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NetEventVmSwitchProvider --- diff --git a/docset/winserver2022-ps/neteventpacketcapture/Add-NetEventWFPCaptureProvider.md b/docset/winserver2022-ps/neteventpacketcapture/Add-NetEventWFPCaptureProvider.md index 3301ae7072..65b1a01400 100644 --- a/docset/winserver2022-ps/neteventpacketcapture/Add-NetEventWFPCaptureProvider.md +++ b/docset/winserver2022-ps/neteventpacketcapture/Add-NetEventWFPCaptureProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventWFPCaptureProvider.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/add-neteventwfpcaptureprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/add-neteventwfpcaptureprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NetEventWFPCaptureProvider --- diff --git a/docset/winserver2022-ps/neteventpacketcapture/Get-NetEventNetworkAdapter.md b/docset/winserver2022-ps/neteventpacketcapture/Get-NetEventNetworkAdapter.md index 6556266e4a..42b88ce44b 100644 --- a/docset/winserver2022-ps/neteventpacketcapture/Get-NetEventNetworkAdapter.md +++ b/docset/winserver2022-ps/neteventpacketcapture/Get-NetEventNetworkAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventNetworkAdapter.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/get-neteventnetworkadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/get-neteventnetworkadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetEventNetworkAdapter --- diff --git a/docset/winserver2022-ps/neteventpacketcapture/Get-NetEventPacketCaptureProvider.md b/docset/winserver2022-ps/neteventpacketcapture/Get-NetEventPacketCaptureProvider.md index 55c3723810..bac4e36e1a 100644 --- a/docset/winserver2022-ps/neteventpacketcapture/Get-NetEventPacketCaptureProvider.md +++ b/docset/winserver2022-ps/neteventpacketcapture/Get-NetEventPacketCaptureProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventPacketCaptureProvider.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/get-neteventpacketcaptureprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/get-neteventpacketcaptureprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetEventPacketCaptureProvider --- diff --git a/docset/winserver2022-ps/neteventpacketcapture/Get-NetEventProvider.md b/docset/winserver2022-ps/neteventpacketcapture/Get-NetEventProvider.md index 73224dd417..5c2c6c03d8 100644 --- a/docset/winserver2022-ps/neteventpacketcapture/Get-NetEventProvider.md +++ b/docset/winserver2022-ps/neteventpacketcapture/Get-NetEventProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventProvider.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/get-neteventprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/get-neteventprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetEventProvider --- diff --git a/docset/winserver2022-ps/neteventpacketcapture/Get-NetEventSession.md b/docset/winserver2022-ps/neteventpacketcapture/Get-NetEventSession.md index ad512b5cd2..293f6440fc 100644 --- a/docset/winserver2022-ps/neteventpacketcapture/Get-NetEventSession.md +++ b/docset/winserver2022-ps/neteventpacketcapture/Get-NetEventSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventSession.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/get-neteventsession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/get-neteventsession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetEventSession --- diff --git a/docset/winserver2022-ps/neteventpacketcapture/Get-NetEventVFPProvider.md b/docset/winserver2022-ps/neteventpacketcapture/Get-NetEventVFPProvider.md index 07fd851b0c..489af796db 100644 --- a/docset/winserver2022-ps/neteventpacketcapture/Get-NetEventVFPProvider.md +++ b/docset/winserver2022-ps/neteventpacketcapture/Get-NetEventVFPProvider.md @@ -3,7 +3,7 @@ description: The Get-NetEventVFPProvider cmdlet gets a Virtual Filtering Platfor external help file: MSFT_NetEventVFPProvider.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 10/22/2021 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/get-neteventvfpprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/get-neteventvfpprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetEventVFPProvider --- diff --git a/docset/winserver2022-ps/neteventpacketcapture/Get-NetEventVmNetworkAdapter.md b/docset/winserver2022-ps/neteventpacketcapture/Get-NetEventVmNetworkAdapter.md index 486943ed45..c64a84ef0e 100644 --- a/docset/winserver2022-ps/neteventpacketcapture/Get-NetEventVmNetworkAdapter.md +++ b/docset/winserver2022-ps/neteventpacketcapture/Get-NetEventVmNetworkAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventVmNetworkAdatper.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/get-neteventvmnetworkadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/get-neteventvmnetworkadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetEventVmNetworkAdapter --- diff --git a/docset/winserver2022-ps/neteventpacketcapture/Get-NetEventVmSwitch.md b/docset/winserver2022-ps/neteventpacketcapture/Get-NetEventVmSwitch.md index a750f78396..99ac0750bf 100644 --- a/docset/winserver2022-ps/neteventpacketcapture/Get-NetEventVmSwitch.md +++ b/docset/winserver2022-ps/neteventpacketcapture/Get-NetEventVmSwitch.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventVmSwitch.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/get-neteventvmswitch?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/get-neteventvmswitch?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetEventVmSwitch --- diff --git a/docset/winserver2022-ps/neteventpacketcapture/Get-NetEventVmSwitchProvider.md b/docset/winserver2022-ps/neteventpacketcapture/Get-NetEventVmSwitchProvider.md index f37fd966e5..9bfb1dfa82 100644 --- a/docset/winserver2022-ps/neteventpacketcapture/Get-NetEventVmSwitchProvider.md +++ b/docset/winserver2022-ps/neteventpacketcapture/Get-NetEventVmSwitchProvider.md @@ -3,7 +3,7 @@ description: The Get-NetEventVmSwitchProvider cmdlet gets a virtual machine swit external help file: MSFT_NetEventVmSwitchProvider.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 10/22/2021 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/get-neteventvmswitchprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/get-neteventvmswitchprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetEventVmSwitchProvider --- diff --git a/docset/winserver2022-ps/neteventpacketcapture/Get-NetEventWFPCaptureProvider.md b/docset/winserver2022-ps/neteventpacketcapture/Get-NetEventWFPCaptureProvider.md index 798e766664..d91fcfa092 100644 --- a/docset/winserver2022-ps/neteventpacketcapture/Get-NetEventWFPCaptureProvider.md +++ b/docset/winserver2022-ps/neteventpacketcapture/Get-NetEventWFPCaptureProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventWFPCaptureProvider.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/get-neteventwfpcaptureprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/get-neteventwfpcaptureprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetEventWFPCaptureProvider --- diff --git a/docset/winserver2022-ps/neteventpacketcapture/New-NetEventSession.md b/docset/winserver2022-ps/neteventpacketcapture/New-NetEventSession.md index 95e88a5477..f84b7ae2d4 100644 --- a/docset/winserver2022-ps/neteventpacketcapture/New-NetEventSession.md +++ b/docset/winserver2022-ps/neteventpacketcapture/New-NetEventSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventSession.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/new-neteventsession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/new-neteventsession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetEventSession --- diff --git a/docset/winserver2022-ps/neteventpacketcapture/Remove-NetEventNetworkAdapter.md b/docset/winserver2022-ps/neteventpacketcapture/Remove-NetEventNetworkAdapter.md index 04c7ae5ecf..5ab76cacd8 100644 --- a/docset/winserver2022-ps/neteventpacketcapture/Remove-NetEventNetworkAdapter.md +++ b/docset/winserver2022-ps/neteventpacketcapture/Remove-NetEventNetworkAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventNetworkAdapter.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventnetworkadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventnetworkadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetEventNetworkAdapter --- diff --git a/docset/winserver2022-ps/neteventpacketcapture/Remove-NetEventPacketCaptureProvider.md b/docset/winserver2022-ps/neteventpacketcapture/Remove-NetEventPacketCaptureProvider.md index a05c4bdd62..06d38cf186 100644 --- a/docset/winserver2022-ps/neteventpacketcapture/Remove-NetEventPacketCaptureProvider.md +++ b/docset/winserver2022-ps/neteventpacketcapture/Remove-NetEventPacketCaptureProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventPacketCaptureProvider.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventpacketcaptureprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventpacketcaptureprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetEventPacketCaptureProvider --- diff --git a/docset/winserver2022-ps/neteventpacketcapture/Remove-NetEventProvider.md b/docset/winserver2022-ps/neteventpacketcapture/Remove-NetEventProvider.md index dd35527c9a..b2c86b712d 100644 --- a/docset/winserver2022-ps/neteventpacketcapture/Remove-NetEventProvider.md +++ b/docset/winserver2022-ps/neteventpacketcapture/Remove-NetEventProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventProvider.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetEventProvider --- diff --git a/docset/winserver2022-ps/neteventpacketcapture/Remove-NetEventSession.md b/docset/winserver2022-ps/neteventpacketcapture/Remove-NetEventSession.md index dd7021c384..f39d975a6f 100644 --- a/docset/winserver2022-ps/neteventpacketcapture/Remove-NetEventSession.md +++ b/docset/winserver2022-ps/neteventpacketcapture/Remove-NetEventSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventSession.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventsession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventsession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetEventSession --- diff --git a/docset/winserver2022-ps/neteventpacketcapture/Remove-NetEventVFPProvider.md b/docset/winserver2022-ps/neteventpacketcapture/Remove-NetEventVFPProvider.md index d366cb7d80..36eb93d833 100644 --- a/docset/winserver2022-ps/neteventpacketcapture/Remove-NetEventVFPProvider.md +++ b/docset/winserver2022-ps/neteventpacketcapture/Remove-NetEventVFPProvider.md @@ -3,7 +3,7 @@ description: The Remove-NetEventVFPProvider cmdlet removes a Virtual Filtering P external help file: MSFT_NetEventVFPProvider.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 10/22/2021 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventvfpprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventvfpprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetEventVFPProvider --- diff --git a/docset/winserver2022-ps/neteventpacketcapture/Remove-NetEventVmNetworkAdapter.md b/docset/winserver2022-ps/neteventpacketcapture/Remove-NetEventVmNetworkAdapter.md index f64a6c8c6e..edd1870f98 100644 --- a/docset/winserver2022-ps/neteventpacketcapture/Remove-NetEventVmNetworkAdapter.md +++ b/docset/winserver2022-ps/neteventpacketcapture/Remove-NetEventVmNetworkAdapter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventVmNetworkAdatper.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventvmnetworkadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventvmnetworkadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetEventVmNetworkAdapter --- diff --git a/docset/winserver2022-ps/neteventpacketcapture/Remove-NetEventVmSwitch.md b/docset/winserver2022-ps/neteventpacketcapture/Remove-NetEventVmSwitch.md index 02d66d9e58..d02b7035df 100644 --- a/docset/winserver2022-ps/neteventpacketcapture/Remove-NetEventVmSwitch.md +++ b/docset/winserver2022-ps/neteventpacketcapture/Remove-NetEventVmSwitch.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventVmSwitch.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventvmswitch?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventvmswitch?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetEventVmSwitch --- diff --git a/docset/winserver2022-ps/neteventpacketcapture/Remove-NetEventVmSwitchProvider.md b/docset/winserver2022-ps/neteventpacketcapture/Remove-NetEventVmSwitchProvider.md index a7c372f9fd..867cc69030 100644 --- a/docset/winserver2022-ps/neteventpacketcapture/Remove-NetEventVmSwitchProvider.md +++ b/docset/winserver2022-ps/neteventpacketcapture/Remove-NetEventVmSwitchProvider.md @@ -3,7 +3,7 @@ description: The Remove-NetEventVmSwitchProvider cmdlet removes a virtual machin external help file: MSFT_NetEventVmSwitchProvider.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 10/22/2021 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventvmswitchprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventvmswitchprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetEventVmSwitchProvider --- diff --git a/docset/winserver2022-ps/neteventpacketcapture/Remove-NetEventWFPCaptureProvider.md b/docset/winserver2022-ps/neteventpacketcapture/Remove-NetEventWFPCaptureProvider.md index 5083b99fed..d050946429 100644 --- a/docset/winserver2022-ps/neteventpacketcapture/Remove-NetEventWFPCaptureProvider.md +++ b/docset/winserver2022-ps/neteventpacketcapture/Remove-NetEventWFPCaptureProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventWFPCaptureProvider.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventwfpcaptureprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/remove-neteventwfpcaptureprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetEventWFPCaptureProvider --- diff --git a/docset/winserver2022-ps/neteventpacketcapture/Set-NetEventPacketCaptureProvider.md b/docset/winserver2022-ps/neteventpacketcapture/Set-NetEventPacketCaptureProvider.md index bce772722a..a5d8a63ebe 100644 --- a/docset/winserver2022-ps/neteventpacketcapture/Set-NetEventPacketCaptureProvider.md +++ b/docset/winserver2022-ps/neteventpacketcapture/Set-NetEventPacketCaptureProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventPacketCaptureProvider.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/set-neteventpacketcaptureprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/set-neteventpacketcaptureprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetEventPacketCaptureProvider --- diff --git a/docset/winserver2022-ps/neteventpacketcapture/Set-NetEventProvider.md b/docset/winserver2022-ps/neteventpacketcapture/Set-NetEventProvider.md index 1ed52b6ac8..de65c26cfa 100644 --- a/docset/winserver2022-ps/neteventpacketcapture/Set-NetEventProvider.md +++ b/docset/winserver2022-ps/neteventpacketcapture/Set-NetEventProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventProvider.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/set-neteventprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/set-neteventprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetEventProvider --- diff --git a/docset/winserver2022-ps/neteventpacketcapture/Set-NetEventSession.md b/docset/winserver2022-ps/neteventpacketcapture/Set-NetEventSession.md index a99ceeb938..f77965cdae 100644 --- a/docset/winserver2022-ps/neteventpacketcapture/Set-NetEventSession.md +++ b/docset/winserver2022-ps/neteventpacketcapture/Set-NetEventSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventSession.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/set-neteventsession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/set-neteventsession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetEventSession --- diff --git a/docset/winserver2022-ps/neteventpacketcapture/Set-NetEventVFPProvider.md b/docset/winserver2022-ps/neteventpacketcapture/Set-NetEventVFPProvider.md index c242418704..8532bea951 100644 --- a/docset/winserver2022-ps/neteventpacketcapture/Set-NetEventVFPProvider.md +++ b/docset/winserver2022-ps/neteventpacketcapture/Set-NetEventVFPProvider.md @@ -3,7 +3,7 @@ description: The Set-NetEventVFPProvider cmdlet modifies a Virtual Filtering Pla external help file: MSFT_NetEventVFPProvider.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 10/22/2021 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/set-neteventvfpprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/set-neteventvfpprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetEventVFPProvider --- diff --git a/docset/winserver2022-ps/neteventpacketcapture/Set-NetEventVmSwitchProvider.md b/docset/winserver2022-ps/neteventpacketcapture/Set-NetEventVmSwitchProvider.md index 2b63b40111..d959e91f9d 100644 --- a/docset/winserver2022-ps/neteventpacketcapture/Set-NetEventVmSwitchProvider.md +++ b/docset/winserver2022-ps/neteventpacketcapture/Set-NetEventVmSwitchProvider.md @@ -3,7 +3,7 @@ description: The Set-NetEventVmSwitchProvider cmdlet modifies a virtual machine external help file: MSFT_NetEventVmSwitchProvider.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 10/22/2021 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/set-neteventvmswitchprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/set-neteventvmswitchprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetEventVmSwitchProvider --- diff --git a/docset/winserver2022-ps/neteventpacketcapture/Set-NetEventWFPCaptureProvider.md b/docset/winserver2022-ps/neteventpacketcapture/Set-NetEventWFPCaptureProvider.md index 2dc9de3551..c4daa2a234 100644 --- a/docset/winserver2022-ps/neteventpacketcapture/Set-NetEventWFPCaptureProvider.md +++ b/docset/winserver2022-ps/neteventpacketcapture/Set-NetEventWFPCaptureProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventWFPCaptureProvider.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/set-neteventwfpcaptureprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/set-neteventwfpcaptureprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetEventWFPCaptureProvider --- diff --git a/docset/winserver2022-ps/neteventpacketcapture/Start-NetEventSession.md b/docset/winserver2022-ps/neteventpacketcapture/Start-NetEventSession.md index bac1931ecd..7d37c9c8b5 100644 --- a/docset/winserver2022-ps/neteventpacketcapture/Start-NetEventSession.md +++ b/docset/winserver2022-ps/neteventpacketcapture/Start-NetEventSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventSession.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/start-neteventsession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/start-neteventsession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-NetEventSession --- diff --git a/docset/winserver2022-ps/neteventpacketcapture/Stop-NetEventSession.md b/docset/winserver2022-ps/neteventpacketcapture/Stop-NetEventSession.md index 63888693c1..148ded70a0 100644 --- a/docset/winserver2022-ps/neteventpacketcapture/Stop-NetEventSession.md +++ b/docset/winserver2022-ps/neteventpacketcapture/Stop-NetEventSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetEventSession.cdxml-help.xml Module Name: NetEventPacketCapture ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/neteventpacketcapture/stop-neteventsession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/neteventpacketcapture/stop-neteventsession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-NetEventSession --- diff --git a/docset/winserver2022-ps/netlbfo/Add-NetLbfoTeamMember.md b/docset/winserver2022-ps/netlbfo/Add-NetLbfoTeamMember.md index 4f52a17f00..9534261eab 100644 --- a/docset/winserver2022-ps/netlbfo/Add-NetLbfoTeamMember.md +++ b/docset/winserver2022-ps/netlbfo/Add-NetLbfoTeamMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetLbfoTeamMember.cdxml-help.xml Module Name: NetLbfo ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netlbfo/add-netlbfoteammember?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/add-netlbfoteammember?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NetLbfoTeamMember --- diff --git a/docset/winserver2022-ps/netlbfo/Add-NetLbfoTeamNic.md b/docset/winserver2022-ps/netlbfo/Add-NetLbfoTeamNic.md index 048e740095..e41c7a62ec 100644 --- a/docset/winserver2022-ps/netlbfo/Add-NetLbfoTeamNic.md +++ b/docset/winserver2022-ps/netlbfo/Add-NetLbfoTeamNic.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetLbfoTeamNic.cdxml-help.xml Module Name: NetLbfo ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netlbfo/add-netlbfoteamnic?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/add-netlbfoteamnic?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NetLbfoTeamNic --- diff --git a/docset/winserver2022-ps/netlbfo/Get-NetLbfoTeam.md b/docset/winserver2022-ps/netlbfo/Get-NetLbfoTeam.md index 4c89813def..3c67fc17a5 100644 --- a/docset/winserver2022-ps/netlbfo/Get-NetLbfoTeam.md +++ b/docset/winserver2022-ps/netlbfo/Get-NetLbfoTeam.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetLbfoTeam.cdxml-help.xml Module Name: NetLbfo ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netlbfo/get-netlbfoteam?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/get-netlbfoteam?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetLbfoTeam --- diff --git a/docset/winserver2022-ps/netlbfo/Get-NetLbfoTeamMember.md b/docset/winserver2022-ps/netlbfo/Get-NetLbfoTeamMember.md index 3212456d11..eff66df2e7 100644 --- a/docset/winserver2022-ps/netlbfo/Get-NetLbfoTeamMember.md +++ b/docset/winserver2022-ps/netlbfo/Get-NetLbfoTeamMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetLbfoTeamMember.cdxml-help.xml Module Name: NetLbfo ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netlbfo/get-netlbfoteammember?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/get-netlbfoteammember?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetLbfoTeamMember --- diff --git a/docset/winserver2022-ps/netlbfo/Get-NetLbfoTeamNic.md b/docset/winserver2022-ps/netlbfo/Get-NetLbfoTeamNic.md index 1e2eb37a03..7b15f0ccf8 100644 --- a/docset/winserver2022-ps/netlbfo/Get-NetLbfoTeamNic.md +++ b/docset/winserver2022-ps/netlbfo/Get-NetLbfoTeamNic.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetLbfoTeamNic.cdxml-help.xml Module Name: NetLbfo ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netlbfo/get-netlbfoteamnic?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/get-netlbfoteamnic?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetLbfoTeamNic --- diff --git a/docset/winserver2022-ps/netlbfo/New-NetLbfoTeam.md b/docset/winserver2022-ps/netlbfo/New-NetLbfoTeam.md index 61718198a5..92c4ff9711 100644 --- a/docset/winserver2022-ps/netlbfo/New-NetLbfoTeam.md +++ b/docset/winserver2022-ps/netlbfo/New-NetLbfoTeam.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetLbfoTeam.cdxml-help.xml Module Name: NetLbfo ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netlbfo/new-netlbfoteam?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/new-netlbfoteam?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetLbfoTeam --- diff --git a/docset/winserver2022-ps/netlbfo/Remove-NetLbfoTeam.md b/docset/winserver2022-ps/netlbfo/Remove-NetLbfoTeam.md index b3f0b670e0..9295adf574 100644 --- a/docset/winserver2022-ps/netlbfo/Remove-NetLbfoTeam.md +++ b/docset/winserver2022-ps/netlbfo/Remove-NetLbfoTeam.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetLbfoTeam.cdxml-help.xml Module Name: NetLbfo ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netlbfo/remove-netlbfoteam?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/remove-netlbfoteam?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetLbfoTeam --- diff --git a/docset/winserver2022-ps/netlbfo/Remove-NetLbfoTeamMember.md b/docset/winserver2022-ps/netlbfo/Remove-NetLbfoTeamMember.md index baea4bef78..1c6d16af8a 100644 --- a/docset/winserver2022-ps/netlbfo/Remove-NetLbfoTeamMember.md +++ b/docset/winserver2022-ps/netlbfo/Remove-NetLbfoTeamMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetLbfoTeamMember.cdxml-help.xml Module Name: NetLbfo ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netlbfo/remove-netlbfoteammember?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/remove-netlbfoteammember?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetLbfoTeamMember --- diff --git a/docset/winserver2022-ps/netlbfo/Remove-NetLbfoTeamNic.md b/docset/winserver2022-ps/netlbfo/Remove-NetLbfoTeamNic.md index e97d14ee32..8eda62739d 100644 --- a/docset/winserver2022-ps/netlbfo/Remove-NetLbfoTeamNic.md +++ b/docset/winserver2022-ps/netlbfo/Remove-NetLbfoTeamNic.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetLbfoTeamNic.cdxml-help.xml Module Name: NetLbfo ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netlbfo/remove-netlbfoteamnic?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/remove-netlbfoteamnic?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetLbfoTeamNic --- diff --git a/docset/winserver2022-ps/netlbfo/Rename-NetLbfoTeam.md b/docset/winserver2022-ps/netlbfo/Rename-NetLbfoTeam.md index 03a7fc655a..1515e33f52 100644 --- a/docset/winserver2022-ps/netlbfo/Rename-NetLbfoTeam.md +++ b/docset/winserver2022-ps/netlbfo/Rename-NetLbfoTeam.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetLbfoTeam.cdxml-help.xml Module Name: NetLbfo ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netlbfo/rename-netlbfoteam?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/rename-netlbfoteam?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-NetLbfoTeam --- diff --git a/docset/winserver2022-ps/netlbfo/Set-NetLbfoTeam.md b/docset/winserver2022-ps/netlbfo/Set-NetLbfoTeam.md index 50484c7804..0c2fd764b7 100644 --- a/docset/winserver2022-ps/netlbfo/Set-NetLbfoTeam.md +++ b/docset/winserver2022-ps/netlbfo/Set-NetLbfoTeam.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetLbfoTeam.cdxml-help.xml Module Name: NetLbfo ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netlbfo/set-netlbfoteam?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/set-netlbfoteam?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetLbfoTeam --- diff --git a/docset/winserver2022-ps/netlbfo/Set-NetLbfoTeamMember.md b/docset/winserver2022-ps/netlbfo/Set-NetLbfoTeamMember.md index c73e743cda..75b23f9db1 100644 --- a/docset/winserver2022-ps/netlbfo/Set-NetLbfoTeamMember.md +++ b/docset/winserver2022-ps/netlbfo/Set-NetLbfoTeamMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetLbfoTeamMember.cdxml-help.xml Module Name: NetLbfo ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netlbfo/set-netlbfoteammember?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/set-netlbfoteammember?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetLbfoTeamMember --- diff --git a/docset/winserver2022-ps/netlbfo/Set-NetLbfoTeamNic.md b/docset/winserver2022-ps/netlbfo/Set-NetLbfoTeamNic.md index 5fd923085f..288d89c8fc 100644 --- a/docset/winserver2022-ps/netlbfo/Set-NetLbfoTeamNic.md +++ b/docset/winserver2022-ps/netlbfo/Set-NetLbfoTeamNic.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetLbfoTeamNic.cdxml-help.xml Module Name: NetLbfo ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netlbfo/set-netlbfoteamnic?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlbfo/set-netlbfoteamnic?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetLbfoTeamNic --- diff --git a/docset/winserver2022-ps/netlldpagent/Disable-NetLldpAgent.md b/docset/winserver2022-ps/netlldpagent/Disable-NetLldpAgent.md index 3bc6c46765..d2b5b89f7a 100644 --- a/docset/winserver2022-ps/netlldpagent/Disable-NetLldpAgent.md +++ b/docset/winserver2022-ps/netlldpagent/Disable-NetLldpAgent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetLldpAgent.cdxml-help.xml Module Name: NetLldpAgent ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netlldpagent/disable-netlldpagent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlldpagent/disable-netlldpagent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetLldpAgent --- diff --git a/docset/winserver2022-ps/netlldpagent/Enable-NetLldpAgent.md b/docset/winserver2022-ps/netlldpagent/Enable-NetLldpAgent.md index d4d61a29c8..0390b84eca 100644 --- a/docset/winserver2022-ps/netlldpagent/Enable-NetLldpAgent.md +++ b/docset/winserver2022-ps/netlldpagent/Enable-NetLldpAgent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetLldpAgent.cdxml-help.xml Module Name: NetLldpAgent ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netlldpagent/enable-netlldpagent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlldpagent/enable-netlldpagent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetLldpAgent --- diff --git a/docset/winserver2022-ps/netlldpagent/Get-NetLldpAgent.md b/docset/winserver2022-ps/netlldpagent/Get-NetLldpAgent.md index 5a652d8a8c..dfd3cdd0e1 100644 --- a/docset/winserver2022-ps/netlldpagent/Get-NetLldpAgent.md +++ b/docset/winserver2022-ps/netlldpagent/Get-NetLldpAgent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetLldpAgent.cdxml-help.xml Module Name: NetLldpAgent ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netlldpagent/get-netlldpagent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netlldpagent/get-netlldpagent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetLldpAgent --- diff --git a/docset/winserver2022-ps/netnat/Add-NetNatExternalAddress.md b/docset/winserver2022-ps/netnat/Add-NetNatExternalAddress.md index 59f2380f6b..e1f7c34534 100644 --- a/docset/winserver2022-ps/netnat/Add-NetNatExternalAddress.md +++ b/docset/winserver2022-ps/netnat/Add-NetNatExternalAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNatExternalAddress.cdxml-help.xml Module Name: NetNat ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netnat/add-netnatexternaladdress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netnat/add-netnatexternaladdress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NetNatExternalAddress --- diff --git a/docset/winserver2022-ps/netnat/Add-NetNatStaticMapping.md b/docset/winserver2022-ps/netnat/Add-NetNatStaticMapping.md index 112eed51bd..197ff47320 100644 --- a/docset/winserver2022-ps/netnat/Add-NetNatStaticMapping.md +++ b/docset/winserver2022-ps/netnat/Add-NetNatStaticMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNatStaticMapping.cdxml-help.xml Module Name: NetNat ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netnat/add-netnatstaticmapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netnat/add-netnatstaticmapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NetNatStaticMapping --- diff --git a/docset/winserver2022-ps/netnat/Get-NetNat.md b/docset/winserver2022-ps/netnat/Get-NetNat.md index 73968153da..e24ea9d25b 100644 --- a/docset/winserver2022-ps/netnat/Get-NetNat.md +++ b/docset/winserver2022-ps/netnat/Get-NetNat.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNat.cdxml-help.xml Module Name: NetNat ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netnat/get-netnat?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netnat/get-netnat?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetNat --- diff --git a/docset/winserver2022-ps/netnat/Get-NetNatExternalAddress.md b/docset/winserver2022-ps/netnat/Get-NetNatExternalAddress.md index edf6e7f7a8..66b530d918 100644 --- a/docset/winserver2022-ps/netnat/Get-NetNatExternalAddress.md +++ b/docset/winserver2022-ps/netnat/Get-NetNatExternalAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNatExternalAddress.cdxml-help.xml Module Name: NetNat ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netnat/get-netnatexternaladdress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netnat/get-netnatexternaladdress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetNatExternalAddress --- diff --git a/docset/winserver2022-ps/netnat/Get-NetNatGlobal.md b/docset/winserver2022-ps/netnat/Get-NetNatGlobal.md index c91d242001..6cae00d857 100644 --- a/docset/winserver2022-ps/netnat/Get-NetNatGlobal.md +++ b/docset/winserver2022-ps/netnat/Get-NetNatGlobal.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNatGlobal.cdxml-help.xml Module Name: NetNat ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netnat/get-netnatglobal?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netnat/get-netnatglobal?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetNatGlobal --- diff --git a/docset/winserver2022-ps/netnat/Get-NetNatSession.md b/docset/winserver2022-ps/netnat/Get-NetNatSession.md index 8175c964e3..9f7ed3eaac 100644 --- a/docset/winserver2022-ps/netnat/Get-NetNatSession.md +++ b/docset/winserver2022-ps/netnat/Get-NetNatSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNatSession.cdxml-help.xml Module Name: NetNat ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netnat/get-netnatsession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netnat/get-netnatsession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetNatSession --- diff --git a/docset/winserver2022-ps/netnat/Get-NetNatStaticMapping.md b/docset/winserver2022-ps/netnat/Get-NetNatStaticMapping.md index 6db65f9c91..7dd1f904be 100644 --- a/docset/winserver2022-ps/netnat/Get-NetNatStaticMapping.md +++ b/docset/winserver2022-ps/netnat/Get-NetNatStaticMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNatStaticMapping.cdxml-help.xml Module Name: NetNat ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netnat/get-netnatstaticmapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netnat/get-netnatstaticmapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetNatStaticMapping --- diff --git a/docset/winserver2022-ps/netnat/New-NetNat.md b/docset/winserver2022-ps/netnat/New-NetNat.md index 0199983556..fcc540ee28 100644 --- a/docset/winserver2022-ps/netnat/New-NetNat.md +++ b/docset/winserver2022-ps/netnat/New-NetNat.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNat.cdxml-help.xml Module Name: NetNat ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netnat/new-netnat?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netnat/new-netnat?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetNat --- diff --git a/docset/winserver2022-ps/netnat/Remove-NetNat.md b/docset/winserver2022-ps/netnat/Remove-NetNat.md index 86f8f69530..5985df69b8 100644 --- a/docset/winserver2022-ps/netnat/Remove-NetNat.md +++ b/docset/winserver2022-ps/netnat/Remove-NetNat.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNat.cdxml-help.xml Module Name: NetNat ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netnat/remove-netnat?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netnat/remove-netnat?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetNat --- diff --git a/docset/winserver2022-ps/netnat/Remove-NetNatExternalAddress.md b/docset/winserver2022-ps/netnat/Remove-NetNatExternalAddress.md index 0c445802f5..5a6bc85d2d 100644 --- a/docset/winserver2022-ps/netnat/Remove-NetNatExternalAddress.md +++ b/docset/winserver2022-ps/netnat/Remove-NetNatExternalAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNatExternalAddress.cdxml-help.xml Module Name: NetNat ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netnat/remove-netnatexternaladdress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netnat/remove-netnatexternaladdress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetNatExternalAddress --- diff --git a/docset/winserver2022-ps/netnat/Remove-NetNatStaticMapping.md b/docset/winserver2022-ps/netnat/Remove-NetNatStaticMapping.md index a1e7a95a02..b1e4db9b83 100644 --- a/docset/winserver2022-ps/netnat/Remove-NetNatStaticMapping.md +++ b/docset/winserver2022-ps/netnat/Remove-NetNatStaticMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNatStaticMapping.cdxml-help.xml Module Name: NetNat ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netnat/remove-netnatstaticmapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netnat/remove-netnatstaticmapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetNatStaticMapping --- diff --git a/docset/winserver2022-ps/netnat/Set-NetNat.md b/docset/winserver2022-ps/netnat/Set-NetNat.md index e8c0f83f48..0908ba9fa6 100644 --- a/docset/winserver2022-ps/netnat/Set-NetNat.md +++ b/docset/winserver2022-ps/netnat/Set-NetNat.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNat.cdxml-help.xml Module Name: NetNat ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netnat/set-netnat?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netnat/set-netnat?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetNat --- diff --git a/docset/winserver2022-ps/netnat/Set-NetNatGlobal.md b/docset/winserver2022-ps/netnat/Set-NetNatGlobal.md index a8a22f6732..c959cd7f0a 100644 --- a/docset/winserver2022-ps/netnat/Set-NetNatGlobal.md +++ b/docset/winserver2022-ps/netnat/Set-NetNatGlobal.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNatGlobal.cdxml-help.xml Module Name: NetNat ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netnat/set-netnatglobal?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netnat/set-netnatglobal?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetNatGlobal --- diff --git a/docset/winserver2022-ps/netqos/Get-NetQosPolicy.md b/docset/winserver2022-ps/netqos/Get-NetQosPolicy.md index a0816c5d7b..84ae0b5c46 100644 --- a/docset/winserver2022-ps/netqos/Get-NetQosPolicy.md +++ b/docset/winserver2022-ps/netqos/Get-NetQosPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetQosPolicy.cdxml-help.xml Module Name: NetQoS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netqos/get-netqospolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netqos/get-netqospolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetQosPolicy --- diff --git a/docset/winserver2022-ps/netqos/New-NetQosPolicy.md b/docset/winserver2022-ps/netqos/New-NetQosPolicy.md index bbc37de517..30d124734c 100644 --- a/docset/winserver2022-ps/netqos/New-NetQosPolicy.md +++ b/docset/winserver2022-ps/netqos/New-NetQosPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetQosPolicy.cdxml-help.xml Module Name: NetQoS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netqos/new-netqospolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netqos/new-netqospolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetQosPolicy --- diff --git a/docset/winserver2022-ps/netqos/Remove-NetQosPolicy.md b/docset/winserver2022-ps/netqos/Remove-NetQosPolicy.md index 0c0cdd044c..ab60cc547b 100644 --- a/docset/winserver2022-ps/netqos/Remove-NetQosPolicy.md +++ b/docset/winserver2022-ps/netqos/Remove-NetQosPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetQosPolicy.cdxml-help.xml Module Name: NetQoS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netqos/remove-netqospolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netqos/remove-netqospolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetQosPolicy --- diff --git a/docset/winserver2022-ps/netqos/Set-NetQosPolicy.md b/docset/winserver2022-ps/netqos/Set-NetQosPolicy.md index 83b49b0aca..d4896a283a 100644 --- a/docset/winserver2022-ps/netqos/Set-NetQosPolicy.md +++ b/docset/winserver2022-ps/netqos/Set-NetQosPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetQosPolicy.cdxml-help.xml Module Name: NetQoS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netqos/set-netqospolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netqos/set-netqospolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetQosPolicy --- diff --git a/docset/winserver2022-ps/netsecurity/Copy-NetFirewallRule.md b/docset/winserver2022-ps/netsecurity/Copy-NetFirewallRule.md index c27cfe4df3..c3b0a95e3f 100644 --- a/docset/winserver2022-ps/netsecurity/Copy-NetFirewallRule.md +++ b/docset/winserver2022-ps/netsecurity/Copy-NetFirewallRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/copy-netfirewallrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/copy-netfirewallrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Copy-NetFirewallRule --- diff --git a/docset/winserver2022-ps/netsecurity/Copy-NetIPsecMainModeCryptoSet.md b/docset/winserver2022-ps/netsecurity/Copy-NetIPsecMainModeCryptoSet.md index aae8e11c4e..21523af139 100644 --- a/docset/winserver2022-ps/netsecurity/Copy-NetIPsecMainModeCryptoSet.md +++ b/docset/winserver2022-ps/netsecurity/Copy-NetIPsecMainModeCryptoSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecMainModeCryptoSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/copy-netipsecmainmodecryptoset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/copy-netipsecmainmodecryptoset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Copy-NetIPsecMainModeCryptoSet --- diff --git a/docset/winserver2022-ps/netsecurity/Copy-NetIPsecMainModeRule.md b/docset/winserver2022-ps/netsecurity/Copy-NetIPsecMainModeRule.md index 576f793980..17c587b73a 100644 --- a/docset/winserver2022-ps/netsecurity/Copy-NetIPsecMainModeRule.md +++ b/docset/winserver2022-ps/netsecurity/Copy-NetIPsecMainModeRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecMainModeRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/copy-netipsecmainmoderule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/copy-netipsecmainmoderule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Copy-NetIPsecMainModeRule --- diff --git a/docset/winserver2022-ps/netsecurity/Copy-NetIPsecPhase1AuthSet.md b/docset/winserver2022-ps/netsecurity/Copy-NetIPsecPhase1AuthSet.md index 2616a42eef..ce8f90592f 100644 --- a/docset/winserver2022-ps/netsecurity/Copy-NetIPsecPhase1AuthSet.md +++ b/docset/winserver2022-ps/netsecurity/Copy-NetIPsecPhase1AuthSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecPhase1AuthSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/copy-netipsecphase1authset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/copy-netipsecphase1authset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Copy-NetIPsecPhase1AuthSet --- diff --git a/docset/winserver2022-ps/netsecurity/Copy-NetIPsecPhase2AuthSet.md b/docset/winserver2022-ps/netsecurity/Copy-NetIPsecPhase2AuthSet.md index a95c65d77c..602c02eeac 100644 --- a/docset/winserver2022-ps/netsecurity/Copy-NetIPsecPhase2AuthSet.md +++ b/docset/winserver2022-ps/netsecurity/Copy-NetIPsecPhase2AuthSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecPhase2AuthSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/copy-netipsecphase2authset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/copy-netipsecphase2authset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Copy-NetIPsecPhase2AuthSet --- diff --git a/docset/winserver2022-ps/netsecurity/Copy-NetIPsecQuickModeCryptoSet.md b/docset/winserver2022-ps/netsecurity/Copy-NetIPsecQuickModeCryptoSet.md index e64a872d7e..392a8f74d5 100644 --- a/docset/winserver2022-ps/netsecurity/Copy-NetIPsecQuickModeCryptoSet.md +++ b/docset/winserver2022-ps/netsecurity/Copy-NetIPsecQuickModeCryptoSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecQuickModeCryptoSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/copy-netipsecquickmodecryptoset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/copy-netipsecquickmodecryptoset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Copy-NetIPsecQuickModeCryptoSet --- diff --git a/docset/winserver2022-ps/netsecurity/Copy-NetIPsecRule.md b/docset/winserver2022-ps/netsecurity/Copy-NetIPsecRule.md index f3c30fa723..8bb26418ea 100644 --- a/docset/winserver2022-ps/netsecurity/Copy-NetIPsecRule.md +++ b/docset/winserver2022-ps/netsecurity/Copy-NetIPsecRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/copy-netipsecrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/copy-netipsecrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Copy-NetIPsecRule --- diff --git a/docset/winserver2022-ps/netsecurity/Disable-NetFirewallRule.md b/docset/winserver2022-ps/netsecurity/Disable-NetFirewallRule.md index cfd0f4d12a..c45cb78d18 100644 --- a/docset/winserver2022-ps/netsecurity/Disable-NetFirewallRule.md +++ b/docset/winserver2022-ps/netsecurity/Disable-NetFirewallRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/disable-netfirewallrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/disable-netfirewallrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetFirewallRule --- diff --git a/docset/winserver2022-ps/netsecurity/Disable-NetIPsecMainModeRule.md b/docset/winserver2022-ps/netsecurity/Disable-NetIPsecMainModeRule.md index 5707ea2203..de1c9c317a 100644 --- a/docset/winserver2022-ps/netsecurity/Disable-NetIPsecMainModeRule.md +++ b/docset/winserver2022-ps/netsecurity/Disable-NetIPsecMainModeRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecMainModeRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/disable-netipsecmainmoderule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/disable-netipsecmainmoderule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetIPsecMainModeRule --- diff --git a/docset/winserver2022-ps/netsecurity/Disable-NetIPsecRule.md b/docset/winserver2022-ps/netsecurity/Disable-NetIPsecRule.md index e72584f671..067600c75b 100644 --- a/docset/winserver2022-ps/netsecurity/Disable-NetIPsecRule.md +++ b/docset/winserver2022-ps/netsecurity/Disable-NetIPsecRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/disable-netipsecrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/disable-netipsecrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetIPsecRule --- diff --git a/docset/winserver2022-ps/netsecurity/Enable-NetFirewallRule.md b/docset/winserver2022-ps/netsecurity/Enable-NetFirewallRule.md index 515346958d..5cddfe4d03 100644 --- a/docset/winserver2022-ps/netsecurity/Enable-NetFirewallRule.md +++ b/docset/winserver2022-ps/netsecurity/Enable-NetFirewallRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/enable-netfirewallrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/enable-netfirewallrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetFirewallRule --- diff --git a/docset/winserver2022-ps/netsecurity/Enable-NetIPsecMainModeRule.md b/docset/winserver2022-ps/netsecurity/Enable-NetIPsecMainModeRule.md index 31d09c1d41..4fd4ca9134 100644 --- a/docset/winserver2022-ps/netsecurity/Enable-NetIPsecMainModeRule.md +++ b/docset/winserver2022-ps/netsecurity/Enable-NetIPsecMainModeRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecMainModeRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/enable-netipsecmainmoderule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/enable-netipsecmainmoderule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetIPsecMainModeRule --- diff --git a/docset/winserver2022-ps/netsecurity/Enable-NetIPsecRule.md b/docset/winserver2022-ps/netsecurity/Enable-NetIPsecRule.md index e26192dfb4..7294328085 100644 --- a/docset/winserver2022-ps/netsecurity/Enable-NetIPsecRule.md +++ b/docset/winserver2022-ps/netsecurity/Enable-NetIPsecRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/enable-netipsecrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/enable-netipsecrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetIPsecRule --- diff --git a/docset/winserver2022-ps/netsecurity/Find-NetIPsecRule.md b/docset/winserver2022-ps/netsecurity/Find-NetIPsecRule.md index 4aa98dfbcf..91dae17822 100644 --- a/docset/winserver2022-ps/netsecurity/Find-NetIPsecRule.md +++ b/docset/winserver2022-ps/netsecurity/Find-NetIPsecRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/find-netipsecrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/find-netipsecrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Find-NetIPsecRule --- diff --git a/docset/winserver2022-ps/netsecurity/Get-DAPolicyChange.md b/docset/winserver2022-ps/netsecurity/Get-DAPolicyChange.md index 8c0b4f08d0..8e798724ab 100644 --- a/docset/winserver2022-ps/netsecurity/Get-DAPolicyChange.md +++ b/docset/winserver2022-ps/netsecurity/Get-DAPolicyChange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Firewall.Commands.dll-Help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-dapolicychange?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-dapolicychange?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DAPolicyChange --- diff --git a/docset/winserver2022-ps/netsecurity/Get-NetFirewallAddressFilter.md b/docset/winserver2022-ps/netsecurity/Get-NetFirewallAddressFilter.md index 82134eac20..2d13df6296 100644 --- a/docset/winserver2022-ps/netsecurity/Get-NetFirewallAddressFilter.md +++ b/docset/winserver2022-ps/netsecurity/Get-NetFirewallAddressFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallAddressFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewalladdressfilter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netfirewalladdressfilter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetFirewallAddressFilter --- diff --git a/docset/winserver2022-ps/netsecurity/Get-NetFirewallApplicationFilter.md b/docset/winserver2022-ps/netsecurity/Get-NetFirewallApplicationFilter.md index 84302dfd8f..8e2390c24a 100644 --- a/docset/winserver2022-ps/netsecurity/Get-NetFirewallApplicationFilter.md +++ b/docset/winserver2022-ps/netsecurity/Get-NetFirewallApplicationFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallApplicationFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewallapplicationfilter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netfirewallapplicationfilter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetFirewallApplicationFilter --- diff --git a/docset/winserver2022-ps/netsecurity/Get-NetFirewallDynamicKeywordAddress.md b/docset/winserver2022-ps/netsecurity/Get-NetFirewallDynamicKeywordAddress.md index a041a654c6..786273541a 100644 --- a/docset/winserver2022-ps/netsecurity/Get-NetFirewallDynamicKeywordAddress.md +++ b/docset/winserver2022-ps/netsecurity/Get-NetFirewallDynamicKeywordAddress.md @@ -3,7 +3,7 @@ description: The Get-NetFirewallDynamicKeywordAddress cmdlet gets dynamic keywor external help file: NetFirewallDynamicKeywordAddress.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/20/2021 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewalldynamickeywordaddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netfirewalldynamickeywordaddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetFirewallDynamicKeywordAddress --- diff --git a/docset/winserver2022-ps/netsecurity/Get-NetFirewallInterfaceFilter.md b/docset/winserver2022-ps/netsecurity/Get-NetFirewallInterfaceFilter.md index 1bb44c005f..a15141aa65 100644 --- a/docset/winserver2022-ps/netsecurity/Get-NetFirewallInterfaceFilter.md +++ b/docset/winserver2022-ps/netsecurity/Get-NetFirewallInterfaceFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallInterfaceFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewallinterfacefilter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netfirewallinterfacefilter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetFirewallInterfaceFilter --- diff --git a/docset/winserver2022-ps/netsecurity/Get-NetFirewallInterfaceTypeFilter.md b/docset/winserver2022-ps/netsecurity/Get-NetFirewallInterfaceTypeFilter.md index 3c22309174..3f4fc9b240 100644 --- a/docset/winserver2022-ps/netsecurity/Get-NetFirewallInterfaceTypeFilter.md +++ b/docset/winserver2022-ps/netsecurity/Get-NetFirewallInterfaceTypeFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallInterfaceTypeFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewallinterfacetypefilter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netfirewallinterfacetypefilter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetFirewallInterfaceTypeFilter --- diff --git a/docset/winserver2022-ps/netsecurity/Get-NetFirewallPortFilter.md b/docset/winserver2022-ps/netsecurity/Get-NetFirewallPortFilter.md index 2c9c1b228c..8bb82f9c1b 100644 --- a/docset/winserver2022-ps/netsecurity/Get-NetFirewallPortFilter.md +++ b/docset/winserver2022-ps/netsecurity/Get-NetFirewallPortFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallPortFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewallportfilter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netfirewallportfilter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetFirewallPortFilter --- diff --git a/docset/winserver2022-ps/netsecurity/Get-NetFirewallProfile.md b/docset/winserver2022-ps/netsecurity/Get-NetFirewallProfile.md index 94107beaf5..98a5274c7c 100644 --- a/docset/winserver2022-ps/netsecurity/Get-NetFirewallProfile.md +++ b/docset/winserver2022-ps/netsecurity/Get-NetFirewallProfile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallProfile.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewallprofile?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netfirewallprofile?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetFirewallProfile --- diff --git a/docset/winserver2022-ps/netsecurity/Get-NetFirewallRule.md b/docset/winserver2022-ps/netsecurity/Get-NetFirewallRule.md index 347f52e521..4585376bca 100644 --- a/docset/winserver2022-ps/netsecurity/Get-NetFirewallRule.md +++ b/docset/winserver2022-ps/netsecurity/Get-NetFirewallRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewallrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netfirewallrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetFirewallRule --- diff --git a/docset/winserver2022-ps/netsecurity/Get-NetFirewallSecurityFilter.md b/docset/winserver2022-ps/netsecurity/Get-NetFirewallSecurityFilter.md index 7a725bca2a..9bab2dfef9 100644 --- a/docset/winserver2022-ps/netsecurity/Get-NetFirewallSecurityFilter.md +++ b/docset/winserver2022-ps/netsecurity/Get-NetFirewallSecurityFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallSecurityFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewallsecurityfilter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netfirewallsecurityfilter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetFirewallSecurityFilter --- diff --git a/docset/winserver2022-ps/netsecurity/Get-NetFirewallServiceFilter.md b/docset/winserver2022-ps/netsecurity/Get-NetFirewallServiceFilter.md index d893623bd8..635017b7a1 100644 --- a/docset/winserver2022-ps/netsecurity/Get-NetFirewallServiceFilter.md +++ b/docset/winserver2022-ps/netsecurity/Get-NetFirewallServiceFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallServiceFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewallservicefilter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netfirewallservicefilter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetFirewallServiceFilter --- diff --git a/docset/winserver2022-ps/netsecurity/Get-NetFirewallSetting.md b/docset/winserver2022-ps/netsecurity/Get-NetFirewallSetting.md index ddd174daad..f9f90d1870 100644 --- a/docset/winserver2022-ps/netsecurity/Get-NetFirewallSetting.md +++ b/docset/winserver2022-ps/netsecurity/Get-NetFirewallSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallSetting.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewallsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netfirewallsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetFirewallSetting --- diff --git a/docset/winserver2022-ps/netsecurity/Get-NetIPsecDospSetting.md b/docset/winserver2022-ps/netsecurity/Get-NetIPsecDospSetting.md index b26f95138d..0c7af01b1f 100644 --- a/docset/winserver2022-ps/netsecurity/Get-NetIPsecDospSetting.md +++ b/docset/winserver2022-ps/netsecurity/Get-NetIPsecDospSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecDospSetting.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netipsecdospsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netipsecdospsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPsecDospSetting --- diff --git a/docset/winserver2022-ps/netsecurity/Get-NetIPsecMainModeCryptoSet.md b/docset/winserver2022-ps/netsecurity/Get-NetIPsecMainModeCryptoSet.md index b837f95512..9a7179b5a9 100644 --- a/docset/winserver2022-ps/netsecurity/Get-NetIPsecMainModeCryptoSet.md +++ b/docset/winserver2022-ps/netsecurity/Get-NetIPsecMainModeCryptoSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecMainModeCryptoSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netipsecmainmodecryptoset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netipsecmainmodecryptoset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPsecMainModeCryptoSet --- diff --git a/docset/winserver2022-ps/netsecurity/Get-NetIPsecMainModeRule.md b/docset/winserver2022-ps/netsecurity/Get-NetIPsecMainModeRule.md index 5c676bb8e2..e42e851edd 100644 --- a/docset/winserver2022-ps/netsecurity/Get-NetIPsecMainModeRule.md +++ b/docset/winserver2022-ps/netsecurity/Get-NetIPsecMainModeRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecMainModeRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netipsecmainmoderule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netipsecmainmoderule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPsecMainModeRule --- diff --git a/docset/winserver2022-ps/netsecurity/Get-NetIPsecMainModeSA.md b/docset/winserver2022-ps/netsecurity/Get-NetIPsecMainModeSA.md index 4d50fa831c..865ffe966e 100644 --- a/docset/winserver2022-ps/netsecurity/Get-NetIPsecMainModeSA.md +++ b/docset/winserver2022-ps/netsecurity/Get-NetIPsecMainModeSA.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecMainModeSA.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netipsecmainmodesa?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netipsecmainmodesa?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPsecMainModeSA --- diff --git a/docset/winserver2022-ps/netsecurity/Get-NetIPsecPhase1AuthSet.md b/docset/winserver2022-ps/netsecurity/Get-NetIPsecPhase1AuthSet.md index 3069671976..1bf0f4084b 100644 --- a/docset/winserver2022-ps/netsecurity/Get-NetIPsecPhase1AuthSet.md +++ b/docset/winserver2022-ps/netsecurity/Get-NetIPsecPhase1AuthSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecPhase1AuthSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netipsecphase1authset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netipsecphase1authset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPsecPhase1AuthSet --- diff --git a/docset/winserver2022-ps/netsecurity/Get-NetIPsecPhase2AuthSet.md b/docset/winserver2022-ps/netsecurity/Get-NetIPsecPhase2AuthSet.md index ea1300d79c..2c64f43cba 100644 --- a/docset/winserver2022-ps/netsecurity/Get-NetIPsecPhase2AuthSet.md +++ b/docset/winserver2022-ps/netsecurity/Get-NetIPsecPhase2AuthSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecPhase2AuthSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netipsecphase2authset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netipsecphase2authset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPsecPhase2AuthSet --- diff --git a/docset/winserver2022-ps/netsecurity/Get-NetIPsecQuickModeCryptoSet.md b/docset/winserver2022-ps/netsecurity/Get-NetIPsecQuickModeCryptoSet.md index 6cffab5489..de1b01c48a 100644 --- a/docset/winserver2022-ps/netsecurity/Get-NetIPsecQuickModeCryptoSet.md +++ b/docset/winserver2022-ps/netsecurity/Get-NetIPsecQuickModeCryptoSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecQuickModeCryptoSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netipsecquickmodecryptoset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netipsecquickmodecryptoset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPsecQuickModeCryptoSet --- diff --git a/docset/winserver2022-ps/netsecurity/Get-NetIPsecQuickModeSA.md b/docset/winserver2022-ps/netsecurity/Get-NetIPsecQuickModeSA.md index 7c47bf5911..fc6d720dfa 100644 --- a/docset/winserver2022-ps/netsecurity/Get-NetIPsecQuickModeSA.md +++ b/docset/winserver2022-ps/netsecurity/Get-NetIPsecQuickModeSA.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecQuickModeSA.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netipsecquickmodesa?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netipsecquickmodesa?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPsecQuickModeSA --- diff --git a/docset/winserver2022-ps/netsecurity/Get-NetIPsecRule.md b/docset/winserver2022-ps/netsecurity/Get-NetIPsecRule.md index a2e03d44b4..e024fbf11b 100644 --- a/docset/winserver2022-ps/netsecurity/Get-NetIPsecRule.md +++ b/docset/winserver2022-ps/netsecurity/Get-NetIPsecRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netipsecrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/get-netipsecrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPsecRule --- diff --git a/docset/winserver2022-ps/netsecurity/New-NetFirewallDynamicKeywordAddress.md b/docset/winserver2022-ps/netsecurity/New-NetFirewallDynamicKeywordAddress.md index 4a847db12a..37434bc7e3 100644 --- a/docset/winserver2022-ps/netsecurity/New-NetFirewallDynamicKeywordAddress.md +++ b/docset/winserver2022-ps/netsecurity/New-NetFirewallDynamicKeywordAddress.md @@ -3,7 +3,7 @@ description: The New-NetFirewallDynamicKeywordAddress cmdlet creates a dynamic k external help file: NetFirewallDynamicKeywordAddress.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/20/2021 -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netfirewalldynamickeywordaddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netfirewalldynamickeywordaddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetFirewallDynamicKeywordAddress --- diff --git a/docset/winserver2022-ps/netsecurity/New-NetFirewallRule.md b/docset/winserver2022-ps/netsecurity/New-NetFirewallRule.md index cf72bdf156..4d7f7604cd 100644 --- a/docset/winserver2022-ps/netsecurity/New-NetFirewallRule.md +++ b/docset/winserver2022-ps/netsecurity/New-NetFirewallRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netfirewallrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netfirewallrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetFirewallRule --- diff --git a/docset/winserver2022-ps/netsecurity/New-NetIPsecAuthProposal.md b/docset/winserver2022-ps/netsecurity/New-NetIPsecAuthProposal.md index 566f290794..7b4739bd4c 100644 --- a/docset/winserver2022-ps/netsecurity/New-NetIPsecAuthProposal.md +++ b/docset/winserver2022-ps/netsecurity/New-NetIPsecAuthProposal.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Firewall.Commands.dll-Help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netipsecauthproposal?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netipsecauthproposal?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetIPsecAuthProposal --- diff --git a/docset/winserver2022-ps/netsecurity/New-NetIPsecDospSetting.md b/docset/winserver2022-ps/netsecurity/New-NetIPsecDospSetting.md index 7156e909a2..c07b28d8aa 100644 --- a/docset/winserver2022-ps/netsecurity/New-NetIPsecDospSetting.md +++ b/docset/winserver2022-ps/netsecurity/New-NetIPsecDospSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecDospSetting.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netipsecdospsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netipsecdospsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetIPsecDospSetting --- diff --git a/docset/winserver2022-ps/netsecurity/New-NetIPsecMainModeCryptoProposal.md b/docset/winserver2022-ps/netsecurity/New-NetIPsecMainModeCryptoProposal.md index 7d8baa82a5..4f7da1b0ea 100644 --- a/docset/winserver2022-ps/netsecurity/New-NetIPsecMainModeCryptoProposal.md +++ b/docset/winserver2022-ps/netsecurity/New-NetIPsecMainModeCryptoProposal.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Firewall.Commands.dll-Help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netipsecmainmodecryptoproposal?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netipsecmainmodecryptoproposal?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetIPsecMainModeCryptoProposal --- diff --git a/docset/winserver2022-ps/netsecurity/New-NetIPsecMainModeCryptoSet.md b/docset/winserver2022-ps/netsecurity/New-NetIPsecMainModeCryptoSet.md index a515238d4c..831a256e49 100644 --- a/docset/winserver2022-ps/netsecurity/New-NetIPsecMainModeCryptoSet.md +++ b/docset/winserver2022-ps/netsecurity/New-NetIPsecMainModeCryptoSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecMainModeCryptoSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netipsecmainmodecryptoset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netipsecmainmodecryptoset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetIPsecMainModeCryptoSet --- diff --git a/docset/winserver2022-ps/netsecurity/New-NetIPsecMainModeRule.md b/docset/winserver2022-ps/netsecurity/New-NetIPsecMainModeRule.md index b07e03abab..ac42b3214d 100644 --- a/docset/winserver2022-ps/netsecurity/New-NetIPsecMainModeRule.md +++ b/docset/winserver2022-ps/netsecurity/New-NetIPsecMainModeRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecMainModeRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netipsecmainmoderule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netipsecmainmoderule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetIPsecMainModeRule --- diff --git a/docset/winserver2022-ps/netsecurity/New-NetIPsecPhase1AuthSet.md b/docset/winserver2022-ps/netsecurity/New-NetIPsecPhase1AuthSet.md index 97de59ffc6..299a574924 100644 --- a/docset/winserver2022-ps/netsecurity/New-NetIPsecPhase1AuthSet.md +++ b/docset/winserver2022-ps/netsecurity/New-NetIPsecPhase1AuthSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecPhase1AuthSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netipsecphase1authset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netipsecphase1authset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetIPsecPhase1AuthSet --- diff --git a/docset/winserver2022-ps/netsecurity/New-NetIPsecPhase2AuthSet.md b/docset/winserver2022-ps/netsecurity/New-NetIPsecPhase2AuthSet.md index 20525fb4bd..076bd3df95 100644 --- a/docset/winserver2022-ps/netsecurity/New-NetIPsecPhase2AuthSet.md +++ b/docset/winserver2022-ps/netsecurity/New-NetIPsecPhase2AuthSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecPhase2AuthSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netipsecphase2authset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netipsecphase2authset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetIPsecPhase2AuthSet --- diff --git a/docset/winserver2022-ps/netsecurity/New-NetIPsecQuickModeCryptoProposal.md b/docset/winserver2022-ps/netsecurity/New-NetIPsecQuickModeCryptoProposal.md index e28bd62789..6745dc4348 100644 --- a/docset/winserver2022-ps/netsecurity/New-NetIPsecQuickModeCryptoProposal.md +++ b/docset/winserver2022-ps/netsecurity/New-NetIPsecQuickModeCryptoProposal.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Firewall.Commands.dll-Help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netipsecquickmodecryptoproposal?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netipsecquickmodecryptoproposal?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetIPsecQuickModeCryptoProposal --- diff --git a/docset/winserver2022-ps/netsecurity/New-NetIPsecQuickModeCryptoSet.md b/docset/winserver2022-ps/netsecurity/New-NetIPsecQuickModeCryptoSet.md index e04f1ad267..9e9a6f185d 100644 --- a/docset/winserver2022-ps/netsecurity/New-NetIPsecQuickModeCryptoSet.md +++ b/docset/winserver2022-ps/netsecurity/New-NetIPsecQuickModeCryptoSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecQuickModeCryptoSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netipsecquickmodecryptoset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netipsecquickmodecryptoset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetIPsecQuickModeCryptoSet --- diff --git a/docset/winserver2022-ps/netsecurity/New-NetIPsecRule.md b/docset/winserver2022-ps/netsecurity/New-NetIPsecRule.md index 2d6b516ae6..57f2e6cc4d 100644 --- a/docset/winserver2022-ps/netsecurity/New-NetIPsecRule.md +++ b/docset/winserver2022-ps/netsecurity/New-NetIPsecRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netipsecrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/new-netipsecrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetIPsecRule --- diff --git a/docset/winserver2022-ps/netsecurity/Open-NetGPO.md b/docset/winserver2022-ps/netsecurity/Open-NetGPO.md index 07d39795ae..a1ee1266e0 100644 --- a/docset/winserver2022-ps/netsecurity/Open-NetGPO.md +++ b/docset/winserver2022-ps/netsecurity/Open-NetGPO.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetGPO.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/open-netgpo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/open-netgpo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Open-NetGPO --- diff --git a/docset/winserver2022-ps/netsecurity/Remove-NetFirewallDynamicKeywordAddress.md b/docset/winserver2022-ps/netsecurity/Remove-NetFirewallDynamicKeywordAddress.md index 93f9a28289..46387290c1 100644 --- a/docset/winserver2022-ps/netsecurity/Remove-NetFirewallDynamicKeywordAddress.md +++ b/docset/winserver2022-ps/netsecurity/Remove-NetFirewallDynamicKeywordAddress.md @@ -3,7 +3,7 @@ description: The Remove-NetFirewallDynamicKeywordAddress cmdlet removes dynamic external help file: NetFirewallDynamicKeywordAddress.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/20/2021 -online version: https://docs.microsoft.com/powershell/module/netsecurity/remove-netfirewalldynamickeywordaddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/remove-netfirewalldynamickeywordaddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetFirewallDynamicKeywordAddress --- diff --git a/docset/winserver2022-ps/netsecurity/Remove-NetFirewallRule.md b/docset/winserver2022-ps/netsecurity/Remove-NetFirewallRule.md index 7d5c983301..cf76a4e099 100644 --- a/docset/winserver2022-ps/netsecurity/Remove-NetFirewallRule.md +++ b/docset/winserver2022-ps/netsecurity/Remove-NetFirewallRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/remove-netfirewallrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/remove-netfirewallrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetFirewallRule --- diff --git a/docset/winserver2022-ps/netsecurity/Remove-NetIPsecDospSetting.md b/docset/winserver2022-ps/netsecurity/Remove-NetIPsecDospSetting.md index a4ed1362e5..000b1e1b7b 100644 --- a/docset/winserver2022-ps/netsecurity/Remove-NetIPsecDospSetting.md +++ b/docset/winserver2022-ps/netsecurity/Remove-NetIPsecDospSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecDospSetting.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/remove-netipsecdospsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/remove-netipsecdospsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetIPsecDospSetting --- diff --git a/docset/winserver2022-ps/netsecurity/Remove-NetIPsecMainModeCryptoSet.md b/docset/winserver2022-ps/netsecurity/Remove-NetIPsecMainModeCryptoSet.md index c4f8f97058..ce3bc724ff 100644 --- a/docset/winserver2022-ps/netsecurity/Remove-NetIPsecMainModeCryptoSet.md +++ b/docset/winserver2022-ps/netsecurity/Remove-NetIPsecMainModeCryptoSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecMainModeCryptoSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/remove-netipsecmainmodecryptoset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/remove-netipsecmainmodecryptoset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetIPsecMainModeCryptoSet --- diff --git a/docset/winserver2022-ps/netsecurity/Remove-NetIPsecMainModeRule.md b/docset/winserver2022-ps/netsecurity/Remove-NetIPsecMainModeRule.md index 42a6922a26..68cd214232 100644 --- a/docset/winserver2022-ps/netsecurity/Remove-NetIPsecMainModeRule.md +++ b/docset/winserver2022-ps/netsecurity/Remove-NetIPsecMainModeRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecMainModeRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/remove-netipsecmainmoderule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/remove-netipsecmainmoderule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetIPsecMainModeRule --- diff --git a/docset/winserver2022-ps/netsecurity/Remove-NetIPsecMainModeSA.md b/docset/winserver2022-ps/netsecurity/Remove-NetIPsecMainModeSA.md index 99be337992..b74c934127 100644 --- a/docset/winserver2022-ps/netsecurity/Remove-NetIPsecMainModeSA.md +++ b/docset/winserver2022-ps/netsecurity/Remove-NetIPsecMainModeSA.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecMainModeSA.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/remove-netipsecmainmodesa?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/remove-netipsecmainmodesa?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetIPsecMainModeSA --- diff --git a/docset/winserver2022-ps/netsecurity/Remove-NetIPsecPhase1AuthSet.md b/docset/winserver2022-ps/netsecurity/Remove-NetIPsecPhase1AuthSet.md index 7c70258f8c..c2bad50ed9 100644 --- a/docset/winserver2022-ps/netsecurity/Remove-NetIPsecPhase1AuthSet.md +++ b/docset/winserver2022-ps/netsecurity/Remove-NetIPsecPhase1AuthSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecPhase1AuthSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/remove-netipsecphase1authset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/remove-netipsecphase1authset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetIPsecPhase1AuthSet --- diff --git a/docset/winserver2022-ps/netsecurity/Remove-NetIPsecPhase2AuthSet.md b/docset/winserver2022-ps/netsecurity/Remove-NetIPsecPhase2AuthSet.md index eddee13720..d279f6f66a 100644 --- a/docset/winserver2022-ps/netsecurity/Remove-NetIPsecPhase2AuthSet.md +++ b/docset/winserver2022-ps/netsecurity/Remove-NetIPsecPhase2AuthSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecPhase2AuthSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/remove-netipsecphase2authset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/remove-netipsecphase2authset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetIPsecPhase2AuthSet --- diff --git a/docset/winserver2022-ps/netsecurity/Remove-NetIPsecQuickModeCryptoSet.md b/docset/winserver2022-ps/netsecurity/Remove-NetIPsecQuickModeCryptoSet.md index a8864ced8a..9217a92d0b 100644 --- a/docset/winserver2022-ps/netsecurity/Remove-NetIPsecQuickModeCryptoSet.md +++ b/docset/winserver2022-ps/netsecurity/Remove-NetIPsecQuickModeCryptoSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecQuickModeCryptoSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/remove-netipsecquickmodecryptoset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/remove-netipsecquickmodecryptoset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetIPsecQuickModeCryptoSet --- diff --git a/docset/winserver2022-ps/netsecurity/Remove-NetIPsecQuickModeSA.md b/docset/winserver2022-ps/netsecurity/Remove-NetIPsecQuickModeSA.md index 3f4ccba13b..f55e3d85af 100644 --- a/docset/winserver2022-ps/netsecurity/Remove-NetIPsecQuickModeSA.md +++ b/docset/winserver2022-ps/netsecurity/Remove-NetIPsecQuickModeSA.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecQuickModeSA.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/remove-netipsecquickmodesa?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/remove-netipsecquickmodesa?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetIPsecQuickModeSA --- diff --git a/docset/winserver2022-ps/netsecurity/Remove-NetIPsecRule.md b/docset/winserver2022-ps/netsecurity/Remove-NetIPsecRule.md index b30bec7049..2112a3f5df 100644 --- a/docset/winserver2022-ps/netsecurity/Remove-NetIPsecRule.md +++ b/docset/winserver2022-ps/netsecurity/Remove-NetIPsecRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/remove-netipsecrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/remove-netipsecrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetIPsecRule --- diff --git a/docset/winserver2022-ps/netsecurity/Rename-NetFirewallRule.md b/docset/winserver2022-ps/netsecurity/Rename-NetFirewallRule.md index 7756da50d6..7355e6f237 100644 --- a/docset/winserver2022-ps/netsecurity/Rename-NetFirewallRule.md +++ b/docset/winserver2022-ps/netsecurity/Rename-NetFirewallRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/rename-netfirewallrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/rename-netfirewallrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-NetFirewallRule --- diff --git a/docset/winserver2022-ps/netsecurity/Rename-NetIPsecMainModeCryptoSet.md b/docset/winserver2022-ps/netsecurity/Rename-NetIPsecMainModeCryptoSet.md index 9800001811..5d189e4ae9 100644 --- a/docset/winserver2022-ps/netsecurity/Rename-NetIPsecMainModeCryptoSet.md +++ b/docset/winserver2022-ps/netsecurity/Rename-NetIPsecMainModeCryptoSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecMainModeCryptoSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/rename-netipsecmainmodecryptoset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/rename-netipsecmainmodecryptoset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-NetIPsecMainModeCryptoSet --- diff --git a/docset/winserver2022-ps/netsecurity/Rename-NetIPsecMainModeRule.md b/docset/winserver2022-ps/netsecurity/Rename-NetIPsecMainModeRule.md index 8c846cacf6..386b0ec98f 100644 --- a/docset/winserver2022-ps/netsecurity/Rename-NetIPsecMainModeRule.md +++ b/docset/winserver2022-ps/netsecurity/Rename-NetIPsecMainModeRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecMainModeRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/rename-netipsecmainmoderule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/rename-netipsecmainmoderule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-NetIPsecMainModeRule --- diff --git a/docset/winserver2022-ps/netsecurity/Rename-NetIPsecPhase1AuthSet.md b/docset/winserver2022-ps/netsecurity/Rename-NetIPsecPhase1AuthSet.md index ca2290bd08..e9e34d8e7a 100644 --- a/docset/winserver2022-ps/netsecurity/Rename-NetIPsecPhase1AuthSet.md +++ b/docset/winserver2022-ps/netsecurity/Rename-NetIPsecPhase1AuthSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecPhase1AuthSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/rename-netipsecphase1authset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/rename-netipsecphase1authset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-NetIPsecPhase1AuthSet --- diff --git a/docset/winserver2022-ps/netsecurity/Rename-NetIPsecPhase2AuthSet.md b/docset/winserver2022-ps/netsecurity/Rename-NetIPsecPhase2AuthSet.md index 095c8588e6..5e4ed47c4f 100644 --- a/docset/winserver2022-ps/netsecurity/Rename-NetIPsecPhase2AuthSet.md +++ b/docset/winserver2022-ps/netsecurity/Rename-NetIPsecPhase2AuthSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecPhase2AuthSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/rename-netipsecphase2authset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/rename-netipsecphase2authset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-NetIPsecPhase2AuthSet --- diff --git a/docset/winserver2022-ps/netsecurity/Rename-NetIPsecQuickModeCryptoSet.md b/docset/winserver2022-ps/netsecurity/Rename-NetIPsecQuickModeCryptoSet.md index bc0050dbe7..2d6523a433 100644 --- a/docset/winserver2022-ps/netsecurity/Rename-NetIPsecQuickModeCryptoSet.md +++ b/docset/winserver2022-ps/netsecurity/Rename-NetIPsecQuickModeCryptoSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecQuickModeCryptoSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/rename-netipsecquickmodecryptoset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/rename-netipsecquickmodecryptoset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-NetIPsecQuickModeCryptoSet --- diff --git a/docset/winserver2022-ps/netsecurity/Rename-NetIPsecRule.md b/docset/winserver2022-ps/netsecurity/Rename-NetIPsecRule.md index 6d1ab94e42..214b6d2afd 100644 --- a/docset/winserver2022-ps/netsecurity/Rename-NetIPsecRule.md +++ b/docset/winserver2022-ps/netsecurity/Rename-NetIPsecRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/rename-netipsecrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/rename-netipsecrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-NetIPsecRule --- diff --git a/docset/winserver2022-ps/netsecurity/Save-NetGPO.md b/docset/winserver2022-ps/netsecurity/Save-NetGPO.md index 0ed3a774f8..45b3857a1e 100644 --- a/docset/winserver2022-ps/netsecurity/Save-NetGPO.md +++ b/docset/winserver2022-ps/netsecurity/Save-NetGPO.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetGPO.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/save-netgpo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/save-netgpo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Save-NetGPO --- diff --git a/docset/winserver2022-ps/netsecurity/Set-NetFirewallAddressFilter.md b/docset/winserver2022-ps/netsecurity/Set-NetFirewallAddressFilter.md index 375cd525e1..8c17d6ce00 100644 --- a/docset/winserver2022-ps/netsecurity/Set-NetFirewallAddressFilter.md +++ b/docset/winserver2022-ps/netsecurity/Set-NetFirewallAddressFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallAddressFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewalladdressfilter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netfirewalladdressfilter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetFirewallAddressFilter --- diff --git a/docset/winserver2022-ps/netsecurity/Set-NetFirewallApplicationFilter.md b/docset/winserver2022-ps/netsecurity/Set-NetFirewallApplicationFilter.md index e16145ccfd..1d1dd277af 100644 --- a/docset/winserver2022-ps/netsecurity/Set-NetFirewallApplicationFilter.md +++ b/docset/winserver2022-ps/netsecurity/Set-NetFirewallApplicationFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallApplicationFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewallapplicationfilter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netfirewallapplicationfilter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetFirewallApplicationFilter --- diff --git a/docset/winserver2022-ps/netsecurity/Set-NetFirewallInterfaceFilter.md b/docset/winserver2022-ps/netsecurity/Set-NetFirewallInterfaceFilter.md index 75d0c76636..e3eb0dbf2d 100644 --- a/docset/winserver2022-ps/netsecurity/Set-NetFirewallInterfaceFilter.md +++ b/docset/winserver2022-ps/netsecurity/Set-NetFirewallInterfaceFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallInterfaceFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewallinterfacefilter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netfirewallinterfacefilter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetFirewallInterfaceFilter --- diff --git a/docset/winserver2022-ps/netsecurity/Set-NetFirewallInterfaceTypeFilter.md b/docset/winserver2022-ps/netsecurity/Set-NetFirewallInterfaceTypeFilter.md index 46f2614796..5636b77e0b 100644 --- a/docset/winserver2022-ps/netsecurity/Set-NetFirewallInterfaceTypeFilter.md +++ b/docset/winserver2022-ps/netsecurity/Set-NetFirewallInterfaceTypeFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallInterfaceTypeFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewallinterfacetypefilter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netfirewallinterfacetypefilter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetFirewallInterfaceTypeFilter --- diff --git a/docset/winserver2022-ps/netsecurity/Set-NetFirewallPortFilter.md b/docset/winserver2022-ps/netsecurity/Set-NetFirewallPortFilter.md index 922af8c364..503bcfa201 100644 --- a/docset/winserver2022-ps/netsecurity/Set-NetFirewallPortFilter.md +++ b/docset/winserver2022-ps/netsecurity/Set-NetFirewallPortFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallPortFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewallportfilter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netfirewallportfilter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetFirewallPortFilter --- diff --git a/docset/winserver2022-ps/netsecurity/Set-NetFirewallProfile.md b/docset/winserver2022-ps/netsecurity/Set-NetFirewallProfile.md index 4877387262..5bcbabb0bf 100644 --- a/docset/winserver2022-ps/netsecurity/Set-NetFirewallProfile.md +++ b/docset/winserver2022-ps/netsecurity/Set-NetFirewallProfile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallProfile.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewallprofile?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netfirewallprofile?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetFirewallProfile --- diff --git a/docset/winserver2022-ps/netsecurity/Set-NetFirewallRule.md b/docset/winserver2022-ps/netsecurity/Set-NetFirewallRule.md index 08577f011b..5d173cf638 100644 --- a/docset/winserver2022-ps/netsecurity/Set-NetFirewallRule.md +++ b/docset/winserver2022-ps/netsecurity/Set-NetFirewallRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewallrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netfirewallrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetFirewallRule --- diff --git a/docset/winserver2022-ps/netsecurity/Set-NetFirewallSecurityFilter.md b/docset/winserver2022-ps/netsecurity/Set-NetFirewallSecurityFilter.md index f92ac4e400..afec3d298f 100644 --- a/docset/winserver2022-ps/netsecurity/Set-NetFirewallSecurityFilter.md +++ b/docset/winserver2022-ps/netsecurity/Set-NetFirewallSecurityFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallSecurityFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewallsecurityfilter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netfirewallsecurityfilter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetFirewallSecurityFilter --- diff --git a/docset/winserver2022-ps/netsecurity/Set-NetFirewallServiceFilter.md b/docset/winserver2022-ps/netsecurity/Set-NetFirewallServiceFilter.md index c782b41b59..ed66542e77 100644 --- a/docset/winserver2022-ps/netsecurity/Set-NetFirewallServiceFilter.md +++ b/docset/winserver2022-ps/netsecurity/Set-NetFirewallServiceFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallServiceFilter.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewallservicefilter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netfirewallservicefilter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetFirewallServiceFilter --- diff --git a/docset/winserver2022-ps/netsecurity/Set-NetFirewallSetting.md b/docset/winserver2022-ps/netsecurity/Set-NetFirewallSetting.md index 59eef93638..2a7327db43 100644 --- a/docset/winserver2022-ps/netsecurity/Set-NetFirewallSetting.md +++ b/docset/winserver2022-ps/netsecurity/Set-NetFirewallSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallSetting.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewallsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netfirewallsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetFirewallSetting --- diff --git a/docset/winserver2022-ps/netsecurity/Set-NetIPsecDospSetting.md b/docset/winserver2022-ps/netsecurity/Set-NetIPsecDospSetting.md index 6076e47e2e..909e2005ed 100644 --- a/docset/winserver2022-ps/netsecurity/Set-NetIPsecDospSetting.md +++ b/docset/winserver2022-ps/netsecurity/Set-NetIPsecDospSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecDospSetting.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netipsecdospsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netipsecdospsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetIPsecDospSetting --- diff --git a/docset/winserver2022-ps/netsecurity/Set-NetIPsecMainModeCryptoSet.md b/docset/winserver2022-ps/netsecurity/Set-NetIPsecMainModeCryptoSet.md index 8e0ab586a2..4c2a4299c9 100644 --- a/docset/winserver2022-ps/netsecurity/Set-NetIPsecMainModeCryptoSet.md +++ b/docset/winserver2022-ps/netsecurity/Set-NetIPsecMainModeCryptoSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecMainModeCryptoSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netipsecmainmodecryptoset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netipsecmainmodecryptoset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetIPsecMainModeCryptoSet --- diff --git a/docset/winserver2022-ps/netsecurity/Set-NetIPsecMainModeRule.md b/docset/winserver2022-ps/netsecurity/Set-NetIPsecMainModeRule.md index bfdf360c24..77745644e4 100644 --- a/docset/winserver2022-ps/netsecurity/Set-NetIPsecMainModeRule.md +++ b/docset/winserver2022-ps/netsecurity/Set-NetIPsecMainModeRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecMainModeRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netipsecmainmoderule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netipsecmainmoderule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetIPsecMainModeRule --- diff --git a/docset/winserver2022-ps/netsecurity/Set-NetIPsecPhase1AuthSet.md b/docset/winserver2022-ps/netsecurity/Set-NetIPsecPhase1AuthSet.md index 1c9b3a7a3b..a9219ccb5a 100644 --- a/docset/winserver2022-ps/netsecurity/Set-NetIPsecPhase1AuthSet.md +++ b/docset/winserver2022-ps/netsecurity/Set-NetIPsecPhase1AuthSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecPhase1AuthSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netipsecphase1authset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netipsecphase1authset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetIPsecPhase1AuthSet --- diff --git a/docset/winserver2022-ps/netsecurity/Set-NetIPsecPhase2AuthSet.md b/docset/winserver2022-ps/netsecurity/Set-NetIPsecPhase2AuthSet.md index e645a8efe8..d11c41a6a4 100644 --- a/docset/winserver2022-ps/netsecurity/Set-NetIPsecPhase2AuthSet.md +++ b/docset/winserver2022-ps/netsecurity/Set-NetIPsecPhase2AuthSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecPhase2AuthSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netipsecphase2authset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netipsecphase2authset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetIPsecPhase2AuthSet --- diff --git a/docset/winserver2022-ps/netsecurity/Set-NetIPsecQuickModeCryptoSet.md b/docset/winserver2022-ps/netsecurity/Set-NetIPsecQuickModeCryptoSet.md index 92be93e41d..75db52de0a 100644 --- a/docset/winserver2022-ps/netsecurity/Set-NetIPsecQuickModeCryptoSet.md +++ b/docset/winserver2022-ps/netsecurity/Set-NetIPsecQuickModeCryptoSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecQuickModeCryptoSet.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netipsecquickmodecryptoset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netipsecquickmodecryptoset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetIPsecQuickModeCryptoSet --- diff --git a/docset/winserver2022-ps/netsecurity/Set-NetIPsecRule.md b/docset/winserver2022-ps/netsecurity/Set-NetIPsecRule.md index 8c23f8dd03..2f37b70937 100644 --- a/docset/winserver2022-ps/netsecurity/Set-NetIPsecRule.md +++ b/docset/winserver2022-ps/netsecurity/Set-NetIPsecRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netipsecrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/set-netipsecrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetIPsecRule --- diff --git a/docset/winserver2022-ps/netsecurity/Show-NetFirewallRule.md b/docset/winserver2022-ps/netsecurity/Show-NetFirewallRule.md index 7c5e3a4b5d..92176511e0 100644 --- a/docset/winserver2022-ps/netsecurity/Show-NetFirewallRule.md +++ b/docset/winserver2022-ps/netsecurity/Show-NetFirewallRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetFirewallRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/show-netfirewallrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/show-netfirewallrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Show-NetFirewallRule --- diff --git a/docset/winserver2022-ps/netsecurity/Show-NetIPsecRule.md b/docset/winserver2022-ps/netsecurity/Show-NetIPsecRule.md index 452a3134eb..bf3b7b9a1c 100644 --- a/docset/winserver2022-ps/netsecurity/Show-NetIPsecRule.md +++ b/docset/winserver2022-ps/netsecurity/Show-NetIPsecRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/show-netipsecrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/show-netipsecrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Show-NetIPsecRule --- diff --git a/docset/winserver2022-ps/netsecurity/Sync-NetIPsecRule.md b/docset/winserver2022-ps/netsecurity/Sync-NetIPsecRule.md index 8bde3af50c..8e9c302443 100644 --- a/docset/winserver2022-ps/netsecurity/Sync-NetIPsecRule.md +++ b/docset/winserver2022-ps/netsecurity/Sync-NetIPsecRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/sync-netipsecrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/sync-netipsecrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Sync-NetIPsecRule --- diff --git a/docset/winserver2022-ps/netsecurity/Update-NetFirewallDynamicKeywordAddress.md b/docset/winserver2022-ps/netsecurity/Update-NetFirewallDynamicKeywordAddress.md index 684bdb7a0a..78ffc513c0 100644 --- a/docset/winserver2022-ps/netsecurity/Update-NetFirewallDynamicKeywordAddress.md +++ b/docset/winserver2022-ps/netsecurity/Update-NetFirewallDynamicKeywordAddress.md @@ -3,7 +3,7 @@ description: The Update-NetFirewallDynamicKeywordAddress cmdlet updates a dynami external help file: NetFirewallDynamicKeywordAddress.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 10/20/2021 -online version: https://docs.microsoft.com/powershell/module/netsecurity/update-netfirewalldynamickeywordaddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/update-netfirewalldynamickeywordaddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-NetFirewallDynamicKeywordAddress --- diff --git a/docset/winserver2022-ps/netsecurity/Update-NetIPsecRule.md b/docset/winserver2022-ps/netsecurity/Update-NetIPsecRule.md index 57178f05a7..aa6b26b68f 100644 --- a/docset/winserver2022-ps/netsecurity/Update-NetIPsecRule.md +++ b/docset/winserver2022-ps/netsecurity/Update-NetIPsecRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPsecRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/netsecurity/update-netipsecrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netsecurity/update-netipsecrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-NetIPsecRule --- diff --git a/docset/winserver2022-ps/netswitchteam/Add-NetSwitchTeamMember.md b/docset/winserver2022-ps/netswitchteam/Add-NetSwitchTeamMember.md index c5d185a7b8..0ccf50dd20 100644 --- a/docset/winserver2022-ps/netswitchteam/Add-NetSwitchTeamMember.md +++ b/docset/winserver2022-ps/netswitchteam/Add-NetSwitchTeamMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetSwitchTeam.cdxml-help.xml Module Name: NetSwitchTeam ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netswitchteam/add-netswitchteammember?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netswitchteam/add-netswitchteammember?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NetSwitchTeamMember --- diff --git a/docset/winserver2022-ps/netswitchteam/Get-NetSwitchTeam.md b/docset/winserver2022-ps/netswitchteam/Get-NetSwitchTeam.md index ee165b9081..9aa31a1ae5 100644 --- a/docset/winserver2022-ps/netswitchteam/Get-NetSwitchTeam.md +++ b/docset/winserver2022-ps/netswitchteam/Get-NetSwitchTeam.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetSwitchTeam.cdxml-help.xml Module Name: NetSwitchTeam ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netswitchteam/get-netswitchteam?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netswitchteam/get-netswitchteam?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetSwitchTeam --- diff --git a/docset/winserver2022-ps/netswitchteam/Get-NetSwitchTeamMember.md b/docset/winserver2022-ps/netswitchteam/Get-NetSwitchTeamMember.md index d91a92d2cd..8db44cc6dc 100644 --- a/docset/winserver2022-ps/netswitchteam/Get-NetSwitchTeamMember.md +++ b/docset/winserver2022-ps/netswitchteam/Get-NetSwitchTeamMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetSwitchTeamMember.cdxml-help.xml Module Name: NetSwitchTeam ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netswitchteam/get-netswitchteammember?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netswitchteam/get-netswitchteammember?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetSwitchTeamMember --- diff --git a/docset/winserver2022-ps/netswitchteam/New-NetSwitchTeam.md b/docset/winserver2022-ps/netswitchteam/New-NetSwitchTeam.md index e0f099b157..65f0356556 100644 --- a/docset/winserver2022-ps/netswitchteam/New-NetSwitchTeam.md +++ b/docset/winserver2022-ps/netswitchteam/New-NetSwitchTeam.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetSwitchTeam.cdxml-help.xml Module Name: NetSwitchTeam ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netswitchteam/new-netswitchteam?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netswitchteam/new-netswitchteam?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetSwitchTeam --- diff --git a/docset/winserver2022-ps/netswitchteam/Remove-NetSwitchTeam.md b/docset/winserver2022-ps/netswitchteam/Remove-NetSwitchTeam.md index ae2d6d3297..d19abb2b9d 100644 --- a/docset/winserver2022-ps/netswitchteam/Remove-NetSwitchTeam.md +++ b/docset/winserver2022-ps/netswitchteam/Remove-NetSwitchTeam.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetSwitchTeam.cdxml-help.xml Module Name: NetSwitchTeam ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netswitchteam/remove-netswitchteam?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netswitchteam/remove-netswitchteam?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetSwitchTeam --- diff --git a/docset/winserver2022-ps/netswitchteam/Remove-NetSwitchTeamMember.md b/docset/winserver2022-ps/netswitchteam/Remove-NetSwitchTeamMember.md index 4712f3e557..179b3829b1 100644 --- a/docset/winserver2022-ps/netswitchteam/Remove-NetSwitchTeamMember.md +++ b/docset/winserver2022-ps/netswitchteam/Remove-NetSwitchTeamMember.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetSwitchTeam.cdxml-help.xml Module Name: NetSwitchTeam ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netswitchteam/remove-netswitchteammember?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netswitchteam/remove-netswitchteammember?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetSwitchTeamMember --- diff --git a/docset/winserver2022-ps/netswitchteam/Rename-NetSwitchTeam.md b/docset/winserver2022-ps/netswitchteam/Rename-NetSwitchTeam.md index d64b748427..7a462f1fea 100644 --- a/docset/winserver2022-ps/netswitchteam/Rename-NetSwitchTeam.md +++ b/docset/winserver2022-ps/netswitchteam/Rename-NetSwitchTeam.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetSwitchTeam.cdxml-help.xml Module Name: NetSwitchTeam ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netswitchteam/rename-netswitchteam?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netswitchteam/rename-netswitchteam?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-NetSwitchTeam --- diff --git a/docset/winserver2022-ps/nettcpip/Find-NetRoute.md b/docset/winserver2022-ps/nettcpip/Find-NetRoute.md index a18db4c449..70fe851b21 100644 --- a/docset/winserver2022-ps/nettcpip/Find-NetRoute.md +++ b/docset/winserver2022-ps/nettcpip/Find-NetRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetRoute.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/find-netroute?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/find-netroute?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Find-NetRoute --- diff --git a/docset/winserver2022-ps/nettcpip/Get-NetCompartment.md b/docset/winserver2022-ps/nettcpip/Get-NetCompartment.md index 3524e104ae..dd035e7bdf 100644 --- a/docset/winserver2022-ps/nettcpip/Get-NetCompartment.md +++ b/docset/winserver2022-ps/nettcpip/Get-NetCompartment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetCompartment.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netcompartment?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netcompartment?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetCompartment --- diff --git a/docset/winserver2022-ps/nettcpip/Get-NetIPAddress.md b/docset/winserver2022-ps/nettcpip/Get-NetIPAddress.md index cddbb7113c..3ff845dda7 100644 --- a/docset/winserver2022-ps/nettcpip/Get-NetIPAddress.md +++ b/docset/winserver2022-ps/nettcpip/Get-NetIPAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIPAddress.cdxml-help.xml Module Name: NetTCPIP ms.date: 06/23/2021 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netipaddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netipaddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPAddress --- diff --git a/docset/winserver2022-ps/nettcpip/Get-NetIPConfiguration.md b/docset/winserver2022-ps/nettcpip/Get-NetIPConfiguration.md index da6b9f94ac..d6b822343a 100644 --- a/docset/winserver2022-ps/nettcpip/Get-NetIPConfiguration.md +++ b/docset/winserver2022-ps/nettcpip/Get-NetIPConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetIPConfiguration-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netipconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netipconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPConfiguration --- diff --git a/docset/winserver2022-ps/nettcpip/Get-NetIPInterface.md b/docset/winserver2022-ps/nettcpip/Get-NetIPInterface.md index f96eb2152c..c0a368544b 100644 --- a/docset/winserver2022-ps/nettcpip/Get-NetIPInterface.md +++ b/docset/winserver2022-ps/nettcpip/Get-NetIPInterface.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIPInterface.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netipinterface?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netipinterface?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPInterface --- diff --git a/docset/winserver2022-ps/nettcpip/Get-NetIPv4Protocol.md b/docset/winserver2022-ps/nettcpip/Get-NetIPv4Protocol.md index d78f83f495..3887483b29 100644 --- a/docset/winserver2022-ps/nettcpip/Get-NetIPv4Protocol.md +++ b/docset/winserver2022-ps/nettcpip/Get-NetIPv4Protocol.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIPv4Protocol.cdxml-help.xml Module Name: NetTCPIP ms.date: 06/23/2021 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netipv4protocol?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netipv4protocol?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPv4Protocol --- diff --git a/docset/winserver2022-ps/nettcpip/Get-NetIPv6Protocol.md b/docset/winserver2022-ps/nettcpip/Get-NetIPv6Protocol.md index fe9d839d1a..df4cf03f9c 100644 --- a/docset/winserver2022-ps/nettcpip/Get-NetIPv6Protocol.md +++ b/docset/winserver2022-ps/nettcpip/Get-NetIPv6Protocol.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIPv6Protocol.cdxml-help.xml Module Name: NetTCPIP ms.date: 06/23/2021 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netipv6protocol?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netipv6protocol?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPv6Protocol --- diff --git a/docset/winserver2022-ps/nettcpip/Get-NetNeighbor.md b/docset/winserver2022-ps/nettcpip/Get-NetNeighbor.md index d31cf045aa..038d9a49ee 100644 --- a/docset/winserver2022-ps/nettcpip/Get-NetNeighbor.md +++ b/docset/winserver2022-ps/nettcpip/Get-NetNeighbor.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNeighbor.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netneighbor?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netneighbor?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetNeighbor --- diff --git a/docset/winserver2022-ps/nettcpip/Get-NetOffloadGlobalSetting.md b/docset/winserver2022-ps/nettcpip/Get-NetOffloadGlobalSetting.md index 71596fe270..2ad0d9dbe4 100644 --- a/docset/winserver2022-ps/nettcpip/Get-NetOffloadGlobalSetting.md +++ b/docset/winserver2022-ps/nettcpip/Get-NetOffloadGlobalSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetOffloadGlobalSetting.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netoffloadglobalsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netoffloadglobalsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetOffloadGlobalSetting --- diff --git a/docset/winserver2022-ps/nettcpip/Get-NetPrefixPolicy.md b/docset/winserver2022-ps/nettcpip/Get-NetPrefixPolicy.md index e1f0a57408..6043dbb693 100644 --- a/docset/winserver2022-ps/nettcpip/Get-NetPrefixPolicy.md +++ b/docset/winserver2022-ps/nettcpip/Get-NetPrefixPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetPrefixPolicy.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netprefixpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netprefixpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetPrefixPolicy --- diff --git a/docset/winserver2022-ps/nettcpip/Get-NetRoute.md b/docset/winserver2022-ps/nettcpip/Get-NetRoute.md index e7fe75f096..5736d99b54 100644 --- a/docset/winserver2022-ps/nettcpip/Get-NetRoute.md +++ b/docset/winserver2022-ps/nettcpip/Get-NetRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetRoute.cdxml-help.xml Module Name: NetTCPIP ms.date: 06/23/2021 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netroute?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netroute?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetRoute --- diff --git a/docset/winserver2022-ps/nettcpip/Get-NetTCPConnection.md b/docset/winserver2022-ps/nettcpip/Get-NetTCPConnection.md index ce99e92f5d..488794ac08 100644 --- a/docset/winserver2022-ps/nettcpip/Get-NetTCPConnection.md +++ b/docset/winserver2022-ps/nettcpip/Get-NetTCPConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetTCPConnection.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-nettcpconnection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-nettcpconnection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetTCPConnection --- diff --git a/docset/winserver2022-ps/nettcpip/Get-NetTCPSetting.md b/docset/winserver2022-ps/nettcpip/Get-NetTCPSetting.md index d21ec51e0b..1bcbb6b8f5 100644 --- a/docset/winserver2022-ps/nettcpip/Get-NetTCPSetting.md +++ b/docset/winserver2022-ps/nettcpip/Get-NetTCPSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetTCPSetting.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-nettcpsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-nettcpsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetTCPSetting --- diff --git a/docset/winserver2022-ps/nettcpip/Get-NetTransportFilter.md b/docset/winserver2022-ps/nettcpip/Get-NetTransportFilter.md index b67223e8d9..b58d59e392 100644 --- a/docset/winserver2022-ps/nettcpip/Get-NetTransportFilter.md +++ b/docset/winserver2022-ps/nettcpip/Get-NetTransportFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetTransportFilter.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-nettransportfilter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-nettransportfilter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetTransportFilter --- diff --git a/docset/winserver2022-ps/nettcpip/Get-NetUDPEndpoint.md b/docset/winserver2022-ps/nettcpip/Get-NetUDPEndpoint.md index 6c2a878482..349330f87b 100644 --- a/docset/winserver2022-ps/nettcpip/Get-NetUDPEndpoint.md +++ b/docset/winserver2022-ps/nettcpip/Get-NetUDPEndpoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetUDPEndpoint.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netudpendpoint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netudpendpoint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetUDPEndpoint --- diff --git a/docset/winserver2022-ps/nettcpip/Get-NetUDPSetting.md b/docset/winserver2022-ps/nettcpip/Get-NetUDPSetting.md index 9719d53881..d87c61d89a 100644 --- a/docset/winserver2022-ps/nettcpip/Get-NetUDPSetting.md +++ b/docset/winserver2022-ps/nettcpip/Get-NetUDPSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetUDPSetting.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/get-netudpsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/get-netudpsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetUDPSetting --- diff --git a/docset/winserver2022-ps/nettcpip/New-NetIPAddress.md b/docset/winserver2022-ps/nettcpip/New-NetIPAddress.md index 68225337d5..123d474839 100644 --- a/docset/winserver2022-ps/nettcpip/New-NetIPAddress.md +++ b/docset/winserver2022-ps/nettcpip/New-NetIPAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIPAddress.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/new-netipaddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/new-netipaddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetIPAddress --- diff --git a/docset/winserver2022-ps/nettcpip/New-NetNeighbor.md b/docset/winserver2022-ps/nettcpip/New-NetNeighbor.md index b9e2646185..bf1715d49c 100644 --- a/docset/winserver2022-ps/nettcpip/New-NetNeighbor.md +++ b/docset/winserver2022-ps/nettcpip/New-NetNeighbor.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNeighbor.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/new-netneighbor?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/new-netneighbor?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetNeighbor --- diff --git a/docset/winserver2022-ps/nettcpip/New-NetRoute.md b/docset/winserver2022-ps/nettcpip/New-NetRoute.md index 0fe7e3e0da..0556455ea6 100644 --- a/docset/winserver2022-ps/nettcpip/New-NetRoute.md +++ b/docset/winserver2022-ps/nettcpip/New-NetRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetRoute.cdxml-help.xml Module Name: NetTCPIP ms.date: 05/30/2018 -online version: https://docs.microsoft.com/powershell/module/nettcpip/new-netroute?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/new-netroute?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetRoute --- diff --git a/docset/winserver2022-ps/nettcpip/New-NetTransportFilter.md b/docset/winserver2022-ps/nettcpip/New-NetTransportFilter.md index 891aaeefe8..5aaed0f999 100644 --- a/docset/winserver2022-ps/nettcpip/New-NetTransportFilter.md +++ b/docset/winserver2022-ps/nettcpip/New-NetTransportFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetTransportFilter.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/new-nettransportfilter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/new-nettransportfilter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetTransportFilter --- diff --git a/docset/winserver2022-ps/nettcpip/Remove-NetIPAddress.md b/docset/winserver2022-ps/nettcpip/Remove-NetIPAddress.md index b03d1c1521..1fd170056e 100644 --- a/docset/winserver2022-ps/nettcpip/Remove-NetIPAddress.md +++ b/docset/winserver2022-ps/nettcpip/Remove-NetIPAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIPAddress.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/remove-netipaddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/remove-netipaddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetIPAddress --- diff --git a/docset/winserver2022-ps/nettcpip/Remove-NetNeighbor.md b/docset/winserver2022-ps/nettcpip/Remove-NetNeighbor.md index c1a5c21b26..0bbfc4e295 100644 --- a/docset/winserver2022-ps/nettcpip/Remove-NetNeighbor.md +++ b/docset/winserver2022-ps/nettcpip/Remove-NetNeighbor.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNeighbor.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/remove-netneighbor?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/remove-netneighbor?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetNeighbor --- diff --git a/docset/winserver2022-ps/nettcpip/Remove-NetRoute.md b/docset/winserver2022-ps/nettcpip/Remove-NetRoute.md index 82364ba7b7..c308e72ab0 100644 --- a/docset/winserver2022-ps/nettcpip/Remove-NetRoute.md +++ b/docset/winserver2022-ps/nettcpip/Remove-NetRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetRoute.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/remove-netroute?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/remove-netroute?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetRoute --- diff --git a/docset/winserver2022-ps/nettcpip/Remove-NetTransportFilter.md b/docset/winserver2022-ps/nettcpip/Remove-NetTransportFilter.md index 90b3bcab3b..0744afe645 100644 --- a/docset/winserver2022-ps/nettcpip/Remove-NetTransportFilter.md +++ b/docset/winserver2022-ps/nettcpip/Remove-NetTransportFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetTransportFilter.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/remove-nettransportfilter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/remove-nettransportfilter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetTransportFilter --- diff --git a/docset/winserver2022-ps/nettcpip/Set-NetIPAddress.md b/docset/winserver2022-ps/nettcpip/Set-NetIPAddress.md index e3ae3e1b50..ceba8d2632 100644 --- a/docset/winserver2022-ps/nettcpip/Set-NetIPAddress.md +++ b/docset/winserver2022-ps/nettcpip/Set-NetIPAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIPAddress.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/set-netipaddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/set-netipaddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetIPAddress --- diff --git a/docset/winserver2022-ps/nettcpip/Set-NetIPInterface.md b/docset/winserver2022-ps/nettcpip/Set-NetIPInterface.md index 199d653bd4..766c03b95a 100644 --- a/docset/winserver2022-ps/nettcpip/Set-NetIPInterface.md +++ b/docset/winserver2022-ps/nettcpip/Set-NetIPInterface.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIPInterface.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/set-netipinterface?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/set-netipinterface?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetIPInterface --- diff --git a/docset/winserver2022-ps/nettcpip/Set-NetIPv4Protocol.md b/docset/winserver2022-ps/nettcpip/Set-NetIPv4Protocol.md index a81ff6c54f..0c522de0c9 100644 --- a/docset/winserver2022-ps/nettcpip/Set-NetIPv4Protocol.md +++ b/docset/winserver2022-ps/nettcpip/Set-NetIPv4Protocol.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIPv4Protocol.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/set-netipv4protocol?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/set-netipv4protocol?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetIPv4Protocol --- diff --git a/docset/winserver2022-ps/nettcpip/Set-NetIPv6Protocol.md b/docset/winserver2022-ps/nettcpip/Set-NetIPv6Protocol.md index 3f2be5aab3..d79b5f66e9 100644 --- a/docset/winserver2022-ps/nettcpip/Set-NetIPv6Protocol.md +++ b/docset/winserver2022-ps/nettcpip/Set-NetIPv6Protocol.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIPv6Protocol.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/set-netipv6protocol?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/set-netipv6protocol?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetIPv6Protocol --- diff --git a/docset/winserver2022-ps/nettcpip/Set-NetNeighbor.md b/docset/winserver2022-ps/nettcpip/Set-NetNeighbor.md index 8dfe7c266a..7805d0983d 100644 --- a/docset/winserver2022-ps/nettcpip/Set-NetNeighbor.md +++ b/docset/winserver2022-ps/nettcpip/Set-NetNeighbor.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNeighbor.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/set-netneighbor?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/set-netneighbor?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetNeighbor --- diff --git a/docset/winserver2022-ps/nettcpip/Set-NetOffloadGlobalSetting.md b/docset/winserver2022-ps/nettcpip/Set-NetOffloadGlobalSetting.md index a87bd33871..0cca6f04e9 100644 --- a/docset/winserver2022-ps/nettcpip/Set-NetOffloadGlobalSetting.md +++ b/docset/winserver2022-ps/nettcpip/Set-NetOffloadGlobalSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetOffloadGlobalSetting.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/set-netoffloadglobalsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/set-netoffloadglobalsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetOffloadGlobalSetting --- diff --git a/docset/winserver2022-ps/nettcpip/Set-NetRoute.md b/docset/winserver2022-ps/nettcpip/Set-NetRoute.md index 98f627bdc9..43fe28e7d8 100644 --- a/docset/winserver2022-ps/nettcpip/Set-NetRoute.md +++ b/docset/winserver2022-ps/nettcpip/Set-NetRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetRoute.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/set-netroute?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/set-netroute?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetRoute --- diff --git a/docset/winserver2022-ps/nettcpip/Set-NetTCPSetting.md b/docset/winserver2022-ps/nettcpip/Set-NetTCPSetting.md index 266062b0c0..4683d44548 100644 --- a/docset/winserver2022-ps/nettcpip/Set-NetTCPSetting.md +++ b/docset/winserver2022-ps/nettcpip/Set-NetTCPSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetTCPSetting.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/set-nettcpsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/set-nettcpsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetTCPSetting --- diff --git a/docset/winserver2022-ps/nettcpip/Set-NetUDPSetting.md b/docset/winserver2022-ps/nettcpip/Set-NetUDPSetting.md index dc398a7bcc..b2192ded85 100644 --- a/docset/winserver2022-ps/nettcpip/Set-NetUDPSetting.md +++ b/docset/winserver2022-ps/nettcpip/Set-NetUDPSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetUDPSetting.cdxml-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/set-netudpsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/set-netudpsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetUDPSetting --- diff --git a/docset/winserver2022-ps/nettcpip/Test-NetConnection.md b/docset/winserver2022-ps/nettcpip/Test-NetConnection.md index 64528db857..60d27cbf44 100644 --- a/docset/winserver2022-ps/nettcpip/Test-NetConnection.md +++ b/docset/winserver2022-ps/nettcpip/Test-NetConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Test-NetConnection-help.xml Module Name: NetTCPIP ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nettcpip/test-netconnection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nettcpip/test-netconnection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-NetConnection --- diff --git a/docset/winserver2022-ps/netwnv/Get-NetVirtualizationCustomerRoute.md b/docset/winserver2022-ps/netwnv/Get-NetVirtualizationCustomerRoute.md index fd6a8665e5..35877c5c5e 100644 --- a/docset/winserver2022-ps/netwnv/Get-NetVirtualizationCustomerRoute.md +++ b/docset/winserver2022-ps/netwnv/Get-NetVirtualizationCustomerRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationCustomerRouteSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/get-netvirtualizationcustomerroute?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/get-netvirtualizationcustomerroute?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetVirtualizationCustomerRoute --- diff --git a/docset/winserver2022-ps/netwnv/Get-NetVirtualizationGlobal.md b/docset/winserver2022-ps/netwnv/Get-NetVirtualizationGlobal.md index c3ae597067..d5b6fe9659 100644 --- a/docset/winserver2022-ps/netwnv/Get-NetVirtualizationGlobal.md +++ b/docset/winserver2022-ps/netwnv/Get-NetVirtualizationGlobal.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationGlobalSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/get-netvirtualizationglobal?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/get-netvirtualizationglobal?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetVirtualizationGlobal --- diff --git a/docset/winserver2022-ps/netwnv/Get-NetVirtualizationLookupRecord.md b/docset/winserver2022-ps/netwnv/Get-NetVirtualizationLookupRecord.md index a6653147be..b97488e48c 100644 --- a/docset/winserver2022-ps/netwnv/Get-NetVirtualizationLookupRecord.md +++ b/docset/winserver2022-ps/netwnv/Get-NetVirtualizationLookupRecord.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationLookupRecordSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/get-netvirtualizationlookuprecord?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/get-netvirtualizationlookuprecord?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetVirtualizationLookupRecord --- diff --git a/docset/winserver2022-ps/netwnv/Get-NetVirtualizationProviderAddress.md b/docset/winserver2022-ps/netwnv/Get-NetVirtualizationProviderAddress.md index 45fb833f7c..ae359a03ee 100644 --- a/docset/winserver2022-ps/netwnv/Get-NetVirtualizationProviderAddress.md +++ b/docset/winserver2022-ps/netwnv/Get-NetVirtualizationProviderAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationProviderAddressSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/get-netvirtualizationprovideraddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/get-netvirtualizationprovideraddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetVirtualizationProviderAddress --- diff --git a/docset/winserver2022-ps/netwnv/Get-NetVirtualizationProviderRoute.md b/docset/winserver2022-ps/netwnv/Get-NetVirtualizationProviderRoute.md index 2d9950092e..07f870661b 100644 --- a/docset/winserver2022-ps/netwnv/Get-NetVirtualizationProviderRoute.md +++ b/docset/winserver2022-ps/netwnv/Get-NetVirtualizationProviderRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationProviderRouteSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/get-netvirtualizationproviderroute?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/get-netvirtualizationproviderroute?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetVirtualizationProviderRoute --- diff --git a/docset/winserver2022-ps/netwnv/New-NetVirtualizationCustomerRoute.md b/docset/winserver2022-ps/netwnv/New-NetVirtualizationCustomerRoute.md index 7f37c3f216..d9774ec7df 100644 --- a/docset/winserver2022-ps/netwnv/New-NetVirtualizationCustomerRoute.md +++ b/docset/winserver2022-ps/netwnv/New-NetVirtualizationCustomerRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationCustomerRouteSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/new-netvirtualizationcustomerroute?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/new-netvirtualizationcustomerroute?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetVirtualizationCustomerRoute --- diff --git a/docset/winserver2022-ps/netwnv/New-NetVirtualizationLookupRecord.md b/docset/winserver2022-ps/netwnv/New-NetVirtualizationLookupRecord.md index 34834f85a3..2727bab5d2 100644 --- a/docset/winserver2022-ps/netwnv/New-NetVirtualizationLookupRecord.md +++ b/docset/winserver2022-ps/netwnv/New-NetVirtualizationLookupRecord.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationLookupRecordSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/new-netvirtualizationlookuprecord?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/new-netvirtualizationlookuprecord?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetVirtualizationLookupRecord --- diff --git a/docset/winserver2022-ps/netwnv/New-NetVirtualizationProviderAddress.md b/docset/winserver2022-ps/netwnv/New-NetVirtualizationProviderAddress.md index d67f0e5ff0..907c89b72b 100644 --- a/docset/winserver2022-ps/netwnv/New-NetVirtualizationProviderAddress.md +++ b/docset/winserver2022-ps/netwnv/New-NetVirtualizationProviderAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationProviderAddressSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/new-netvirtualizationprovideraddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/new-netvirtualizationprovideraddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetVirtualizationProviderAddress --- diff --git a/docset/winserver2022-ps/netwnv/New-NetVirtualizationProviderRoute.md b/docset/winserver2022-ps/netwnv/New-NetVirtualizationProviderRoute.md index c2c2f37104..2fb8d51fdc 100644 --- a/docset/winserver2022-ps/netwnv/New-NetVirtualizationProviderRoute.md +++ b/docset/winserver2022-ps/netwnv/New-NetVirtualizationProviderRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationProviderRouteSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/new-netvirtualizationproviderroute?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/new-netvirtualizationproviderroute?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetVirtualizationProviderRoute --- diff --git a/docset/winserver2022-ps/netwnv/Remove-NetVirtualizationCustomerRoute.md b/docset/winserver2022-ps/netwnv/Remove-NetVirtualizationCustomerRoute.md index 0c8f86f30c..22f4cb5b54 100644 --- a/docset/winserver2022-ps/netwnv/Remove-NetVirtualizationCustomerRoute.md +++ b/docset/winserver2022-ps/netwnv/Remove-NetVirtualizationCustomerRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationCustomerRouteSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/remove-netvirtualizationcustomerroute?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/remove-netvirtualizationcustomerroute?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetVirtualizationCustomerRoute --- diff --git a/docset/winserver2022-ps/netwnv/Remove-NetVirtualizationLookupRecord.md b/docset/winserver2022-ps/netwnv/Remove-NetVirtualizationLookupRecord.md index 9309fc617d..5d7fd027a6 100644 --- a/docset/winserver2022-ps/netwnv/Remove-NetVirtualizationLookupRecord.md +++ b/docset/winserver2022-ps/netwnv/Remove-NetVirtualizationLookupRecord.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationLookupRecordSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/remove-netvirtualizationlookuprecord?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/remove-netvirtualizationlookuprecord?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetVirtualizationLookupRecord --- diff --git a/docset/winserver2022-ps/netwnv/Remove-NetVirtualizationProviderAddress.md b/docset/winserver2022-ps/netwnv/Remove-NetVirtualizationProviderAddress.md index 1adda3f7d2..375fa36ede 100644 --- a/docset/winserver2022-ps/netwnv/Remove-NetVirtualizationProviderAddress.md +++ b/docset/winserver2022-ps/netwnv/Remove-NetVirtualizationProviderAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationProviderAddressSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/remove-netvirtualizationprovideraddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/remove-netvirtualizationprovideraddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetVirtualizationProviderAddress --- diff --git a/docset/winserver2022-ps/netwnv/Remove-NetVirtualizationProviderRoute.md b/docset/winserver2022-ps/netwnv/Remove-NetVirtualizationProviderRoute.md index 95b33e4704..55f71c77b3 100644 --- a/docset/winserver2022-ps/netwnv/Remove-NetVirtualizationProviderRoute.md +++ b/docset/winserver2022-ps/netwnv/Remove-NetVirtualizationProviderRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationProviderRouteSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/remove-netvirtualizationproviderroute?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/remove-netvirtualizationproviderroute?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetVirtualizationProviderRoute --- diff --git a/docset/winserver2022-ps/netwnv/Select-NetVirtualizationNextHop.md b/docset/winserver2022-ps/netwnv/Select-NetVirtualizationNextHop.md index a2d8a5c5cc..2e67d18ebb 100644 --- a/docset/winserver2022-ps/netwnv/Select-NetVirtualizationNextHop.md +++ b/docset/winserver2022-ps/netwnv/Select-NetVirtualizationNextHop.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationNextHopLookup.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/select-netvirtualizationnexthop?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/select-netvirtualizationnexthop?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Select-NetVirtualizationNextHop --- diff --git a/docset/winserver2022-ps/netwnv/Set-NetVirtualizationCustomerRoute.md b/docset/winserver2022-ps/netwnv/Set-NetVirtualizationCustomerRoute.md index fb1f2f4e1d..0ec1bcc9ca 100644 --- a/docset/winserver2022-ps/netwnv/Set-NetVirtualizationCustomerRoute.md +++ b/docset/winserver2022-ps/netwnv/Set-NetVirtualizationCustomerRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationCustomerRouteSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/set-netvirtualizationcustomerroute?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/set-netvirtualizationcustomerroute?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetVirtualizationCustomerRoute --- diff --git a/docset/winserver2022-ps/netwnv/Set-NetVirtualizationGlobal.md b/docset/winserver2022-ps/netwnv/Set-NetVirtualizationGlobal.md index e9932b72b9..96626b04d6 100644 --- a/docset/winserver2022-ps/netwnv/Set-NetVirtualizationGlobal.md +++ b/docset/winserver2022-ps/netwnv/Set-NetVirtualizationGlobal.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationGlobalSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/set-netvirtualizationglobal?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/set-netvirtualizationglobal?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetVirtualizationGlobal --- diff --git a/docset/winserver2022-ps/netwnv/Set-NetVirtualizationLookupRecord.md b/docset/winserver2022-ps/netwnv/Set-NetVirtualizationLookupRecord.md index 69f1ffe538..9acc5d15de 100644 --- a/docset/winserver2022-ps/netwnv/Set-NetVirtualizationLookupRecord.md +++ b/docset/winserver2022-ps/netwnv/Set-NetVirtualizationLookupRecord.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationLookupRecordSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/set-netvirtualizationlookuprecord?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/set-netvirtualizationlookuprecord?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetVirtualizationLookupRecord --- diff --git a/docset/winserver2022-ps/netwnv/Set-NetVirtualizationProviderAddress.md b/docset/winserver2022-ps/netwnv/Set-NetVirtualizationProviderAddress.md index 70df08513e..7ba6b77042 100644 --- a/docset/winserver2022-ps/netwnv/Set-NetVirtualizationProviderAddress.md +++ b/docset/winserver2022-ps/netwnv/Set-NetVirtualizationProviderAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationProviderAddressSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/set-netvirtualizationprovideraddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/set-netvirtualizationprovideraddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetVirtualizationProviderAddress --- diff --git a/docset/winserver2022-ps/netwnv/Set-NetVirtualizationProviderRoute.md b/docset/winserver2022-ps/netwnv/Set-NetVirtualizationProviderRoute.md index bc35c8a213..36571eb193 100644 --- a/docset/winserver2022-ps/netwnv/Set-NetVirtualizationProviderRoute.md +++ b/docset/winserver2022-ps/netwnv/Set-NetVirtualizationProviderRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetVirtualizationProviderRouteSettingData.cdxml-help.xml Module Name: NetWNV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/netwnv/set-netvirtualizationproviderroute?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/netwnv/set-netvirtualizationproviderroute?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetVirtualizationProviderRoute --- diff --git a/docset/winserver2022-ps/networkconnectivitystatus/Get-DAConnectionStatus.md b/docset/winserver2022-ps/networkconnectivitystatus/Get-DAConnectionStatus.md index 19cc79d23a..72a3cb1772 100644 --- a/docset/winserver2022-ps/networkconnectivitystatus/Get-DAConnectionStatus.md +++ b/docset/winserver2022-ps/networkconnectivitystatus/Get-DAConnectionStatus.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_DAConnectionStatus.cdxml-help.xml Module Name: NetworkConnectivityStatus ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkconnectivitystatus/get-daconnectionstatus?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkconnectivitystatus/get-daconnectionstatus?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DAConnectionStatus --- diff --git a/docset/winserver2022-ps/networkconnectivitystatus/Get-NCSIPolicyConfiguration.md b/docset/winserver2022-ps/networkconnectivitystatus/Get-NCSIPolicyConfiguration.md index af8a52a65b..6bb43a8295 100644 --- a/docset/winserver2022-ps/networkconnectivitystatus/Get-NCSIPolicyConfiguration.md +++ b/docset/winserver2022-ps/networkconnectivitystatus/Get-NCSIPolicyConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NCSIPolicyConfiguration.cdxml-help.xml Module Name: NetworkConnectivityStatus ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkconnectivitystatus/get-ncsipolicyconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkconnectivitystatus/get-ncsipolicyconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NCSIPolicyConfiguration --- diff --git a/docset/winserver2022-ps/networkconnectivitystatus/Reset-NCSIPolicyConfiguration.md b/docset/winserver2022-ps/networkconnectivitystatus/Reset-NCSIPolicyConfiguration.md index ce49561446..bc6c8b6b81 100644 --- a/docset/winserver2022-ps/networkconnectivitystatus/Reset-NCSIPolicyConfiguration.md +++ b/docset/winserver2022-ps/networkconnectivitystatus/Reset-NCSIPolicyConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NCSIPolicyConfiguration.cdxml-help.xml Module Name: NetworkConnectivityStatus ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkconnectivitystatus/reset-ncsipolicyconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkconnectivitystatus/reset-ncsipolicyconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-NCSIPolicyConfiguration --- diff --git a/docset/winserver2022-ps/networkconnectivitystatus/Set-NCSIPolicyConfiguration.md b/docset/winserver2022-ps/networkconnectivitystatus/Set-NCSIPolicyConfiguration.md index be611452ce..51e31eb948 100644 --- a/docset/winserver2022-ps/networkconnectivitystatus/Set-NCSIPolicyConfiguration.md +++ b/docset/winserver2022-ps/networkconnectivitystatus/Set-NCSIPolicyConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NCSIPolicyConfiguration.cdxml-help.xml Module Name: NetworkConnectivityStatus ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkconnectivitystatus/set-ncsipolicyconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkconnectivitystatus/set-ncsipolicyconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NCSIPolicyConfiguration --- diff --git a/docset/winserver2022-ps/networkcontroller/Add-NetworkControllerNode.md b/docset/winserver2022-ps/networkcontroller/Add-NetworkControllerNode.md index cadf8048c8..44d219080a 100644 --- a/docset/winserver2022-ps/networkcontroller/Add-NetworkControllerNode.md +++ b/docset/winserver2022-ps/networkcontroller/Add-NetworkControllerNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/add-networkcontrollernode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/add-networkcontrollernode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NetworkControllerNode --- diff --git a/docset/winserver2022-ps/networkcontroller/Clear-NetworkControllerNodeContent.md b/docset/winserver2022-ps/networkcontroller/Clear-NetworkControllerNodeContent.md index bdf4a92f10..7173e04fae 100644 --- a/docset/winserver2022-ps/networkcontroller/Clear-NetworkControllerNodeContent.md +++ b/docset/winserver2022-ps/networkcontroller/Clear-NetworkControllerNodeContent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/clear-networkcontrollernodecontent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/clear-networkcontrollernodecontent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-NetworkControllerNodeContent --- diff --git a/docset/winserver2022-ps/networkcontroller/Disable-NetworkControllerNode.md b/docset/winserver2022-ps/networkcontroller/Disable-NetworkControllerNode.md index e6ee606e89..02df2d9a76 100644 --- a/docset/winserver2022-ps/networkcontroller/Disable-NetworkControllerNode.md +++ b/docset/winserver2022-ps/networkcontroller/Disable-NetworkControllerNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/disable-networkcontrollernode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/disable-networkcontrollernode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetworkControllerNode --- diff --git a/docset/winserver2022-ps/networkcontroller/Enable-NetworkControllerNode.md b/docset/winserver2022-ps/networkcontroller/Enable-NetworkControllerNode.md index f14d116873..8caddffa9d 100644 --- a/docset/winserver2022-ps/networkcontroller/Enable-NetworkControllerNode.md +++ b/docset/winserver2022-ps/networkcontroller/Enable-NetworkControllerNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/enable-networkcontrollernode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/enable-networkcontrollernode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetworkControllerNode --- diff --git a/docset/winserver2022-ps/networkcontroller/Get-NetworkController.md b/docset/winserver2022-ps/networkcontroller/Get-NetworkController.md index 3fa7703626..06390d7738 100644 --- a/docset/winserver2022-ps/networkcontroller/Get-NetworkController.md +++ b/docset/winserver2022-ps/networkcontroller/Get-NetworkController.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontroller?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontroller?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkController --- diff --git a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerAccessControlList.md b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerAccessControlList.md index 53faf2d91c..35e56ae526 100644 --- a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerAccessControlList.md +++ b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerAccessControlList.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrolleraccesscontrollist?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrolleraccesscontrollist?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerAccessControlList --- diff --git a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerAccessControlListRule.md b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerAccessControlListRule.md index c3e84aa30b..9c20c99392 100644 --- a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerAccessControlListRule.md +++ b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerAccessControlListRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrolleraccesscontrollistrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrolleraccesscontrollistrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerAccessControlListRule --- diff --git a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerAuditingSettingsConfiguration.md b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerAuditingSettingsConfiguration.md index c05283f04b..c0ad3a01e3 100644 --- a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerAuditingSettingsConfiguration.md +++ b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerAuditingSettingsConfiguration.md @@ -3,7 +3,7 @@ description: The Get-NetworkControllerAuditingSettingsConfiguration cmdlet gets external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 09/27/2021 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerauditingsettingsconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerauditingsettingsconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerAuditingSettingsConfiguration --- diff --git a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerBackup.md b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerBackup.md index 6c0ad05768..41c5aa6383 100644 --- a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerBackup.md +++ b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerBackup.md @@ -3,7 +3,7 @@ description: The Get-NetworkControllerBackup cmdlet gets the status of a backup external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 09/27/2021 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerbackup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerbackup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerBackup --- diff --git a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerCluster.md b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerCluster.md index c05278819d..77f821b5b6 100644 --- a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerCluster.md +++ b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerCluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollercluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollercluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerCluster --- diff --git a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerConnectivityCheck.md b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerConnectivityCheck.md index daa896105f..031115e363 100644 --- a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerConnectivityCheck.md +++ b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerConnectivityCheck.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerconnectivitycheck?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerconnectivitycheck?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerConnectivityCheck --- diff --git a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerConnectivityCheckResult.md b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerConnectivityCheckResult.md index 181005ad7a..4b17ede330 100644 --- a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerConnectivityCheckResult.md +++ b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerConnectivityCheckResult.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerconnectivitycheckresult?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerconnectivitycheckresult?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerConnectivityCheckResult --- diff --git a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerCredential.md b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerCredential.md index f08481df91..6f07f2a10c 100644 --- a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerCredential.md +++ b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerCredential.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollercredential?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollercredential?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerCredential --- diff --git a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerDiagnostic.md b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerDiagnostic.md index b849c6efb8..5dc68a3f25 100644 --- a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerDiagnostic.md +++ b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerDiagnostic.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerdiagnostic?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerdiagnostic?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerDiagnostic --- diff --git a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerDiscovery.md b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerDiscovery.md index 22b9f7e5ba..a7b63e80f4 100644 --- a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerDiscovery.md +++ b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerDiscovery.md @@ -3,7 +3,7 @@ description: The Get-NetworkControllerDiscovery cmdlet gets the network controll external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 09/27/2021 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerdiscovery?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerdiscovery?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerDiscovery --- diff --git a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerFabricRoute.md b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerFabricRoute.md index aac88c3b5e..942896d0d3 100644 --- a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerFabricRoute.md +++ b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerFabricRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerfabricroute?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerfabricroute?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerFabricRoute --- diff --git a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerGateway.md b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerGateway.md index f40527b7db..9426d68ac3 100644 --- a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerGateway.md +++ b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerGateway.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollergateway?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollergateway?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerGateway --- diff --git a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerGatewayPool.md b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerGatewayPool.md index 81d8755406..b0b6c39bef 100644 --- a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerGatewayPool.md +++ b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerGatewayPool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollergatewaypool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollergatewaypool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerGatewayPool --- diff --git a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerIDnsServerConfiguration.md b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerIDnsServerConfiguration.md index a645b90918..eaa24dc183 100644 --- a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerIDnsServerConfiguration.md +++ b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerIDnsServerConfiguration.md @@ -3,7 +3,7 @@ description: The Get-NetworkControllerIDnsServerConfiguration cmdlet gets a conf external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 09/27/2021 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrolleridnsserverconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrolleridnsserverconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerIDnsServerConfiguration --- diff --git a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerInternalResourceInstances.md b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerInternalResourceInstances.md index 46f9052f3c..fd14e1e1ee 100644 --- a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerInternalResourceInstances.md +++ b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerInternalResourceInstances.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerinternalresourceinstances?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerinternalresourceinstances?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerInternalResourceInstances --- diff --git a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerIpPool.md b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerIpPool.md index 687bd57a05..fcd98cd81b 100644 --- a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerIpPool.md +++ b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerIpPool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerippool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerippool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerIpPool --- diff --git a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerIpReservation.md b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerIpReservation.md index 8d83b70228..8cd160730a 100644 --- a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerIpReservation.md +++ b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerIpReservation.md @@ -3,7 +3,7 @@ description: The Get-NetworkControllerIpReservation cmdlet gets the IP reservati external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 09/27/2021 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrolleripreservation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrolleripreservation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerIpReservation --- diff --git a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerLoadBalancer.md b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerLoadBalancer.md index d60eb83ce8..be3ea3fcf2 100644 --- a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerLoadBalancer.md +++ b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerLoadBalancer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerloadbalancer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerloadbalancer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerLoadBalancer --- diff --git a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerLoadBalancerBackendAddressPool.md b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerLoadBalancerBackendAddressPool.md index 8f6e54c7d2..0235323d0d 100644 --- a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerLoadBalancerBackendAddressPool.md +++ b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerLoadBalancerBackendAddressPool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerloadbalancerbackendaddresspool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerloadbalancerbackendaddresspool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerLoadBalancerBackendAddressPool --- diff --git a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerLoadBalancerConfiguration.md b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerLoadBalancerConfiguration.md index aa11308118..fd67ad48e3 100644 --- a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerLoadBalancerConfiguration.md +++ b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerLoadBalancerConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerloadbalancerconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerloadbalancerconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerLoadBalancerConfiguration --- diff --git a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerLoadBalancerFrontendIpConfiguration.md b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerLoadBalancerFrontendIpConfiguration.md index b527985e15..f7c8b0228c 100644 --- a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerLoadBalancerFrontendIpConfiguration.md +++ b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerLoadBalancerFrontendIpConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerloadbalancerfrontendipconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerloadbalancerfrontendipconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerLoadBalancerFrontendIpConfiguration --- diff --git a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerLoadBalancerInboundNatRule.md b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerLoadBalancerInboundNatRule.md index 46b158921f..8e9ab22a57 100644 --- a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerLoadBalancerInboundNatRule.md +++ b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerLoadBalancerInboundNatRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerloadbalancerinboundnatrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerloadbalancerinboundnatrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerLoadBalancerInboundNatRule --- diff --git a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerLoadBalancerMux.md b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerLoadBalancerMux.md index 1ea53068b9..af2f1528fb 100644 --- a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerLoadBalancerMux.md +++ b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerLoadBalancerMux.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerloadbalancermux?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerloadbalancermux?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerLoadBalancerMux --- diff --git a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerLoadBalancerOutboundNatRule.md b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerLoadBalancerOutboundNatRule.md index 4f8131e649..67ceb0c366 100644 --- a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerLoadBalancerOutboundNatRule.md +++ b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerLoadBalancerOutboundNatRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerloadbalanceroutboundnatrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerloadbalanceroutboundnatrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerLoadBalancerOutboundNatRule --- diff --git a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerLoadBalancerProbe.md b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerLoadBalancerProbe.md index a5f7f02cff..e844f87837 100644 --- a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerLoadBalancerProbe.md +++ b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerLoadBalancerProbe.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerloadbalancerprobe?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerloadbalancerprobe?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerLoadBalancerProbe --- diff --git a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerLoadBalancingRule.md b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerLoadBalancingRule.md index 6149bb4b6f..2ee4f32bb0 100644 --- a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerLoadBalancingRule.md +++ b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerLoadBalancingRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerloadbalancingrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerloadbalancingrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerLoadBalancingRule --- diff --git a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerLogicalNetwork.md b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerLogicalNetwork.md index 4eb89a960a..77aef4b575 100644 --- a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerLogicalNetwork.md +++ b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerLogicalNetwork.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerlogicalnetwork?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerlogicalnetwork?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerLogicalNetwork --- diff --git a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerLogicalSubnet.md b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerLogicalSubnet.md index 19e13db84a..9afa734904 100644 --- a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerLogicalSubnet.md +++ b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerLogicalSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerlogicalsubnet?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerlogicalsubnet?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerLogicalSubnet --- diff --git a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerMacPool.md b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerMacPool.md index 6ed9f4412f..6df0677762 100644 --- a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerMacPool.md +++ b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerMacPool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollermacpool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollermacpool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerMacPool --- diff --git a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerNetworkInterface.md b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerNetworkInterface.md index a510b3327b..99e4f65575 100644 --- a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerNetworkInterface.md +++ b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerNetworkInterface.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollernetworkinterface?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollernetworkinterface?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerNetworkInterface --- diff --git a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerNetworkInterfaceIpConfiguration.md b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerNetworkInterfaceIpConfiguration.md index fb7f3aa384..938a579269 100644 --- a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerNetworkInterfaceIpConfiguration.md +++ b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerNetworkInterfaceIpConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollernetworkinterfaceipconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollernetworkinterfaceipconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerNetworkInterfaceIpConfiguration --- diff --git a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerNode.md b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerNode.md index d9415d65e9..9f6c79f66b 100644 --- a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerNode.md +++ b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollernode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollernode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerNode --- diff --git a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerPublicIpAddress.md b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerPublicIpAddress.md index 0ce20f5744..c417ca70d7 100644 --- a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerPublicIpAddress.md +++ b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerPublicIpAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerpublicipaddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerpublicipaddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerPublicIpAddress --- diff --git a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerRestore.md b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerRestore.md index dcd510b2fd..880d929e21 100644 --- a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerRestore.md +++ b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerRestore.md @@ -1,9 +1,9 @@ --- -description: The Get-NetworkControllerRestore cmdlet gets a Network Controller database restore object. +description: The Get-NetworkControllerRestore cmdlet gets a Network Controller database restore object. external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 09/27/2021 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerrestore?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerrestore?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerRestore --- diff --git a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerRoute.md b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerRoute.md index c420aa0ccf..b7185c9b98 100644 --- a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerRoute.md +++ b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerroute?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerroute?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerRoute --- diff --git a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerRouteTable.md b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerRouteTable.md index 198992ba7d..a6d6c52771 100644 --- a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerRouteTable.md +++ b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerRouteTable.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerroutetable?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerroutetable?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerRouteTable --- diff --git a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerServer.md b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerServer.md index 8b6002e735..faff39dce0 100644 --- a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerServer.md +++ b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerServer --- diff --git a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerServerInterface.md b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerServerInterface.md index bcf64b7366..68778acc7f 100644 --- a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerServerInterface.md +++ b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerServerInterface.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerserverinterface?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerserverinterface?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerServerInterface --- diff --git a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerServiceInsertion.md b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerServiceInsertion.md index c7d8aeb9de..d5035daef4 100644 --- a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerServiceInsertion.md +++ b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerServiceInsertion.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerserviceinsertion?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerserviceinsertion?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerServiceInsertion --- diff --git a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerState.md b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerState.md index 38a5e653c5..073a9f4631 100644 --- a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerState.md +++ b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerstate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerstate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerState --- diff --git a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerStatistics.md b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerStatistics.md index 745c9dca97..29b619716a 100644 --- a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerStatistics.md +++ b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerStatistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerstatistics?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollerstatistics?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerStatistics --- diff --git a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerSubnetEgressReset.md b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerSubnetEgressReset.md index f07b529405..9d21b2d83a 100644 --- a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerSubnetEgressReset.md +++ b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerSubnetEgressReset.md @@ -3,7 +3,7 @@ description: The Get-NetworkControllerSubnetEgressReset cmdlet gets subnet egres external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 09/27/2021 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollersubnetegressreset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollersubnetegressreset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerSubnetEgressReset --- diff --git a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerVirtualGateway.md b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerVirtualGateway.md index f9722e4949..fffc754d2e 100644 --- a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerVirtualGateway.md +++ b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerVirtualGateway.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualgateway?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualgateway?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerVirtualGateway --- diff --git a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerVirtualGatewayBgpPeer.md b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerVirtualGatewayBgpPeer.md index 4c304ffe49..844fcd3968 100644 --- a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerVirtualGatewayBgpPeer.md +++ b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerVirtualGatewayBgpPeer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualgatewaybgppeer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualgatewaybgppeer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerVirtualGatewayBgpPeer --- diff --git a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerVirtualGatewayBgpRouter.md b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerVirtualGatewayBgpRouter.md index 55dc9229f8..22ee75dbe3 100644 --- a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerVirtualGatewayBgpRouter.md +++ b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerVirtualGatewayBgpRouter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualgatewaybgprouter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualgatewaybgprouter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerVirtualGatewayBgpRouter --- diff --git a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerVirtualGatewayNetworkConnection.md b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerVirtualGatewayNetworkConnection.md index 40cb3f10f7..9270d92f4f 100644 --- a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerVirtualGatewayNetworkConnection.md +++ b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerVirtualGatewayNetworkConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualgatewaynetworkconnection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualgatewaynetworkconnection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerVirtualGatewayNetworkConnection --- diff --git a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerVirtualGatewayPolicyMap.md b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerVirtualGatewayPolicyMap.md index 75ffa51bc1..f8f739cc40 100644 --- a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerVirtualGatewayPolicyMap.md +++ b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerVirtualGatewayPolicyMap.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualgatewaypolicymap?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualgatewaypolicymap?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerVirtualGatewayPolicyMap --- diff --git a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerVirtualNetwork.md b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerVirtualNetwork.md index 0ecf13024e..c6ede04e3c 100644 --- a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerVirtualNetwork.md +++ b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerVirtualNetwork.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualnetwork?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualnetwork?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerVirtualNetwork --- diff --git a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerVirtualNetworkConfiguration.md b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerVirtualNetworkConfiguration.md index ea45a3b8c9..77dc126108 100644 --- a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerVirtualNetworkConfiguration.md +++ b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerVirtualNetworkConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualnetworkconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualnetworkconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerVirtualNetworkConfiguration --- diff --git a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerVirtualNetworkPeering.md b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerVirtualNetworkPeering.md index e486fe0f49..e507cdf9fb 100644 --- a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerVirtualNetworkPeering.md +++ b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerVirtualNetworkPeering.md @@ -3,7 +3,7 @@ description: The Get-NetworkControllerVirtualNetworkPeering cmdlet gets a virtua external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 09/27/2021 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualnetworkpeering?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualnetworkpeering?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerVirtualNetworkPeering --- diff --git a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerVirtualServer.md b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerVirtualServer.md index a6057aa3d7..632fa0b32e 100644 --- a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerVirtualServer.md +++ b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerVirtualServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerVirtualServer --- diff --git a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerVirtualSubnet.md b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerVirtualSubnet.md index 8b9b89e630..7fad72f997 100644 --- a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerVirtualSubnet.md +++ b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerVirtualSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualsubnet?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualsubnet?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerVirtualSubnet --- diff --git a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerVirtualSwitchConfiguration.md b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerVirtualSwitchConfiguration.md index 9d6b28794d..4cd12ec69a 100644 --- a/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerVirtualSwitchConfiguration.md +++ b/docset/winserver2022-ps/networkcontroller/Get-NetworkControllerVirtualSwitchConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualswitchconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/get-networkcontrollervirtualswitchconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerVirtualSwitchConfiguration --- diff --git a/docset/winserver2022-ps/networkcontroller/Install-NetworkController.md b/docset/winserver2022-ps/networkcontroller/Install-NetworkController.md index 54c48d8bf0..46dd81f769 100644 --- a/docset/winserver2022-ps/networkcontroller/Install-NetworkController.md +++ b/docset/winserver2022-ps/networkcontroller/Install-NetworkController.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/install-networkcontroller?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/install-networkcontroller?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-NetworkController --- diff --git a/docset/winserver2022-ps/networkcontroller/Install-NetworkControllerCluster.md b/docset/winserver2022-ps/networkcontroller/Install-NetworkControllerCluster.md index dcbc0e9f2b..d91d55ef54 100644 --- a/docset/winserver2022-ps/networkcontroller/Install-NetworkControllerCluster.md +++ b/docset/winserver2022-ps/networkcontroller/Install-NetworkControllerCluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/install-networkcontrollercluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/install-networkcontrollercluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-NetworkControllerCluster --- diff --git a/docset/winserver2022-ps/networkcontroller/Invoke-NetworkControllerConnectivityCheck.md b/docset/winserver2022-ps/networkcontroller/Invoke-NetworkControllerConnectivityCheck.md index 79defb27eb..e6fefc172f 100644 --- a/docset/winserver2022-ps/networkcontroller/Invoke-NetworkControllerConnectivityCheck.md +++ b/docset/winserver2022-ps/networkcontroller/Invoke-NetworkControllerConnectivityCheck.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/invoke-networkcontrollerconnectivitycheck?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/invoke-networkcontrollerconnectivitycheck?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-NetworkControllerConnectivityCheck --- diff --git a/docset/winserver2022-ps/networkcontroller/Invoke-NetworkControllerState.md b/docset/winserver2022-ps/networkcontroller/Invoke-NetworkControllerState.md index c532939a1b..96e425466a 100644 --- a/docset/winserver2022-ps/networkcontroller/Invoke-NetworkControllerState.md +++ b/docset/winserver2022-ps/networkcontroller/Invoke-NetworkControllerState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/invoke-networkcontrollerstate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/invoke-networkcontrollerstate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-NetworkControllerState --- diff --git a/docset/winserver2022-ps/networkcontroller/Invoke-NetworkControllerSubnetEgressReset.md b/docset/winserver2022-ps/networkcontroller/Invoke-NetworkControllerSubnetEgressReset.md index 0e6b23aa9d..021c82e87d 100644 --- a/docset/winserver2022-ps/networkcontroller/Invoke-NetworkControllerSubnetEgressReset.md +++ b/docset/winserver2022-ps/networkcontroller/Invoke-NetworkControllerSubnetEgressReset.md @@ -3,7 +3,7 @@ description: The Invoke-NetworkControllerSubnetEgressReset cmdlet resets egress external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 09/27/2021 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/invoke-networkcontrollersubnetegressreset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/invoke-networkcontrollersubnetegressreset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-NetworkControllerSubnetEgressReset --- diff --git a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerAccessControlList.md b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerAccessControlList.md index d8179ec7bc..6198064140 100644 --- a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerAccessControlList.md +++ b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerAccessControlList.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrolleraccesscontrollist?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrolleraccesscontrollist?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerAccessControlList --- diff --git a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerAccessControlListRule.md b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerAccessControlListRule.md index 691422d02c..f78164cc84 100644 --- a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerAccessControlListRule.md +++ b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerAccessControlListRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrolleraccesscontrollistrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrolleraccesscontrollistrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerAccessControlListRule --- diff --git a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerBackup.md b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerBackup.md index e071488e70..45ca766170 100644 --- a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerBackup.md +++ b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerBackup.md @@ -3,7 +3,7 @@ description: The New-NetworkControllerBackup cmdlet backs up the Network Control external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 09/27/2021 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerbackup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerbackup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerBackup --- diff --git a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerCredential.md b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerCredential.md index e826c80f76..785b04ae3f 100644 --- a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerCredential.md +++ b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerCredential.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollercredential?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollercredential?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerCredential --- diff --git a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerFabricRoute.md b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerFabricRoute.md index ba5dfec3f8..7ee4dc15b0 100644 --- a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerFabricRoute.md +++ b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerFabricRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerfabricroute?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerfabricroute?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerFabricRoute --- diff --git a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerGateway.md b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerGateway.md index 573c076b06..c5fd236ce1 100644 --- a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerGateway.md +++ b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerGateway.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollergateway?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollergateway?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerGateway --- diff --git a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerGatewayPool.md b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerGatewayPool.md index e92b572148..27663735e9 100644 --- a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerGatewayPool.md +++ b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerGatewayPool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollergatewaypool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollergatewaypool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerGatewayPool --- diff --git a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerIDnsServerConfiguration.md b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerIDnsServerConfiguration.md index ec888caf73..707954fb5e 100644 --- a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerIDnsServerConfiguration.md +++ b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerIDnsServerConfiguration.md @@ -3,7 +3,7 @@ description: The New-NetworkControllerIDnsServerConfiguration cmdlet creates an external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 09/27/2021 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrolleridnsserverconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrolleridnsserverconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerIDnsServerConfiguration --- diff --git a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerIpPool.md b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerIpPool.md index f9d54a7fd1..90437bb5f7 100644 --- a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerIpPool.md +++ b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerIpPool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerippool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerippool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerIpPool --- diff --git a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerIpReservation.md b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerIpReservation.md index f18322072d..9fbdd70f98 100644 --- a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerIpReservation.md +++ b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerIpReservation.md @@ -3,7 +3,7 @@ description: The New-NetworkControllerIpReservation cmdlet creates an IP reserva external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 09/27/2021 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrolleripreservation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrolleripreservation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerIpReservation --- diff --git a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerLoadBalancer.md b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerLoadBalancer.md index 55733dfae6..cfaf8e28d1 100644 --- a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerLoadBalancer.md +++ b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerLoadBalancer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerloadbalancer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerloadbalancer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerLoadBalancer --- diff --git a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerLoadBalancerBackendAddressPool.md b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerLoadBalancerBackendAddressPool.md index 600d93027e..afa13840cf 100644 --- a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerLoadBalancerBackendAddressPool.md +++ b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerLoadBalancerBackendAddressPool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerloadbalancerbackendaddresspool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerloadbalancerbackendaddresspool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerLoadBalancerBackendAddressPool --- diff --git a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerLoadBalancerConfiguration.md b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerLoadBalancerConfiguration.md index cf80f4c9b2..d42eb09a04 100644 --- a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerLoadBalancerConfiguration.md +++ b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerLoadBalancerConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerloadbalancerconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerloadbalancerconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerLoadBalancerConfiguration --- diff --git a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerLoadBalancerFrontendIpConfiguration.md b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerLoadBalancerFrontendIpConfiguration.md index f98db0457b..a6687bf04a 100644 --- a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerLoadBalancerFrontendIpConfiguration.md +++ b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerLoadBalancerFrontendIpConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerloadbalancerfrontendipconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerloadbalancerfrontendipconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerLoadBalancerFrontendIpConfiguration --- diff --git a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerLoadBalancerInboundNatRule.md b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerLoadBalancerInboundNatRule.md index cbdc86f7ef..ed83bfac4f 100644 --- a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerLoadBalancerInboundNatRule.md +++ b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerLoadBalancerInboundNatRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerloadbalancerinboundnatrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerloadbalancerinboundnatrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerLoadBalancerInboundNatRule --- diff --git a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerLoadBalancerMux.md b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerLoadBalancerMux.md index 6f4d1c2ea4..1713ef290b 100644 --- a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerLoadBalancerMux.md +++ b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerLoadBalancerMux.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerloadbalancermux?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerloadbalancermux?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerLoadBalancerMux --- diff --git a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerLoadBalancerOutboundNatRule.md b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerLoadBalancerOutboundNatRule.md index d743345137..7c7ffbd910 100644 --- a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerLoadBalancerOutboundNatRule.md +++ b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerLoadBalancerOutboundNatRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerloadbalanceroutboundnatrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerloadbalanceroutboundnatrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerLoadBalancerOutboundNatRule --- diff --git a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerLoadBalancerProbe.md b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerLoadBalancerProbe.md index 5efa8a5926..3055723d59 100644 --- a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerLoadBalancerProbe.md +++ b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerLoadBalancerProbe.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerloadbalancerprobe?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerloadbalancerprobe?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerLoadBalancerProbe --- diff --git a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerLoadBalancingRule.md b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerLoadBalancingRule.md index 63c00b6e28..4825655805 100644 --- a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerLoadBalancingRule.md +++ b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerLoadBalancingRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerloadbalancingrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerloadbalancingrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerLoadBalancingRule --- diff --git a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerLogicalNetwork.md b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerLogicalNetwork.md index 335f60c92a..7fed48af06 100644 --- a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerLogicalNetwork.md +++ b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerLogicalNetwork.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerlogicalnetwork?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerlogicalnetwork?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerLogicalNetwork --- diff --git a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerLogicalSubnet.md b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerLogicalSubnet.md index ed3fbe3022..167d14135b 100644 --- a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerLogicalSubnet.md +++ b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerLogicalSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerlogicalsubnet?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerlogicalsubnet?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerLogicalSubnet --- diff --git a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerMacPool.md b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerMacPool.md index 46034b436b..4b83793187 100644 --- a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerMacPool.md +++ b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerMacPool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollermacpool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollermacpool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerMacPool --- diff --git a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerNetworkInterface.md b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerNetworkInterface.md index 772096b6e6..235764c150 100644 --- a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerNetworkInterface.md +++ b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerNetworkInterface.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollernetworkinterface?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollernetworkinterface?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerNetworkInterface --- diff --git a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerNetworkInterfaceIpConfiguration.md b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerNetworkInterfaceIpConfiguration.md index 873724f37e..bf2164943a 100644 --- a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerNetworkInterfaceIpConfiguration.md +++ b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerNetworkInterfaceIpConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollernetworkinterfaceipconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollernetworkinterfaceipconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerNetworkInterfaceIpConfiguration --- diff --git a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerNodeObject.md b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerNodeObject.md index 2a72d37b2a..47deaf3dba 100644 --- a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerNodeObject.md +++ b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerNodeObject.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollernodeobject?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollernodeobject?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerNodeObject --- diff --git a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerPublicIpAddress.md b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerPublicIpAddress.md index 9ad1445bb9..d57d921089 100644 --- a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerPublicIpAddress.md +++ b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerPublicIpAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerpublicipaddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerpublicipaddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerPublicIpAddress --- diff --git a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerRestore.md b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerRestore.md index 6b72b4e370..1012ac6c9c 100644 --- a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerRestore.md +++ b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerRestore.md @@ -3,7 +3,7 @@ description: The New-NetworkControllerRestore cmdlet restores the Network Contro external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 09/27/2021 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerrestore?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerrestore?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerRestore --- diff --git a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerRoute.md b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerRoute.md index 3caf1d5fe0..cc7a40275f 100644 --- a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerRoute.md +++ b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerroute?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerroute?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerRoute --- diff --git a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerRouteTable.md b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerRouteTable.md index 05d927bb57..1424c7adc0 100644 --- a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerRouteTable.md +++ b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerRouteTable.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerroutetable?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerroutetable?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerRouteTable --- diff --git a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerServer.md b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerServer.md index 33b6a38d29..06dfbddc8a 100644 --- a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerServer.md +++ b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerServer --- diff --git a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerServerInterface.md b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerServerInterface.md index 5003a4b7b7..931d6b0d76 100644 --- a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerServerInterface.md +++ b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerServerInterface.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerserverinterface?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerserverinterface?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerServerInterface --- diff --git a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerServiceInsertion.md b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerServiceInsertion.md index 0ca2c11b62..5c286a5f68 100644 --- a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerServiceInsertion.md +++ b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerServiceInsertion.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerserviceinsertion?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollerserviceinsertion?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerServiceInsertion --- diff --git a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerVirtualGateway.md b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerVirtualGateway.md index 8951cb6977..069a19d86f 100644 --- a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerVirtualGateway.md +++ b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerVirtualGateway.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollervirtualgateway?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollervirtualgateway?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerVirtualGateway --- diff --git a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerVirtualGatewayBgpPeer.md b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerVirtualGatewayBgpPeer.md index 6363cb993e..ae69ca8faa 100644 --- a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerVirtualGatewayBgpPeer.md +++ b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerVirtualGatewayBgpPeer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollervirtualgatewaybgppeer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollervirtualgatewaybgppeer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerVirtualGatewayBgpPeer --- diff --git a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerVirtualGatewayBgpRouter.md b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerVirtualGatewayBgpRouter.md index d367f54caf..ed727e7ebf 100644 --- a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerVirtualGatewayBgpRouter.md +++ b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerVirtualGatewayBgpRouter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollervirtualgatewaybgprouter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollervirtualgatewaybgprouter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerVirtualGatewayBgpRouter --- diff --git a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerVirtualGatewayNetworkConnection.md b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerVirtualGatewayNetworkConnection.md index dbf798eb12..7a62b99c98 100644 --- a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerVirtualGatewayNetworkConnection.md +++ b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerVirtualGatewayNetworkConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollervirtualgatewaynetworkconnection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollervirtualgatewaynetworkconnection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerVirtualGatewayNetworkConnection --- diff --git a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerVirtualGatewayPolicyMap.md b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerVirtualGatewayPolicyMap.md index a98c3201a8..eb398e280c 100644 --- a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerVirtualGatewayPolicyMap.md +++ b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerVirtualGatewayPolicyMap.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollervirtualgatewaypolicymap?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollervirtualgatewaypolicymap?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerVirtualGatewayPolicyMap --- diff --git a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerVirtualNetwork.md b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerVirtualNetwork.md index d265ac7158..f9067036e7 100644 --- a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerVirtualNetwork.md +++ b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerVirtualNetwork.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollervirtualnetwork?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollervirtualnetwork?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerVirtualNetwork --- diff --git a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerVirtualNetworkPeering.md b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerVirtualNetworkPeering.md index 38b50d4d9f..71f863bea4 100644 --- a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerVirtualNetworkPeering.md +++ b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerVirtualNetworkPeering.md @@ -3,7 +3,7 @@ description: The New-NetworkControllerVirtualNetworkPeering cmdlet configures a external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 09/27/2021 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollervirtualnetworkpeering?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollervirtualnetworkpeering?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerVirtualNetworkPeering --- diff --git a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerVirtualServer.md b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerVirtualServer.md index 28289f3d1e..8436daa2be 100644 --- a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerVirtualServer.md +++ b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerVirtualServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollervirtualserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollervirtualserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerVirtualServer --- diff --git a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerVirtualSubnet.md b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerVirtualSubnet.md index cbc38886ff..74ea032c44 100644 --- a/docset/winserver2022-ps/networkcontroller/New-NetworkControllerVirtualSubnet.md +++ b/docset/winserver2022-ps/networkcontroller/New-NetworkControllerVirtualSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/new-networkcontrollervirtualsubnet?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/new-networkcontrollervirtualsubnet?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkControllerVirtualSubnet --- diff --git a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerAccessControlList.md b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerAccessControlList.md index 757840848c..2e78922853 100644 --- a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerAccessControlList.md +++ b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerAccessControlList.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrolleraccesscontrollist?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrolleraccesscontrollist?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerAccessControlList --- diff --git a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerAccessControlListRule.md b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerAccessControlListRule.md index 03c7f87d25..431a527eb1 100644 --- a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerAccessControlListRule.md +++ b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerAccessControlListRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrolleraccesscontrollistrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrolleraccesscontrollistrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerAccessControlListRule --- diff --git a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerBackup.md b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerBackup.md index 3cd3f1eaad..dac5775774 100644 --- a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerBackup.md +++ b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerBackup.md @@ -3,7 +3,7 @@ description: The Remove-NetworkControllerBackup cmdlet removes a backup of the N external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 09/27/2021 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerbackup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerbackup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerBackup --- diff --git a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerCredential.md b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerCredential.md index 3cc40aed65..89a80647bd 100644 --- a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerCredential.md +++ b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerCredential.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollercredential?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollercredential?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerCredential --- diff --git a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerFabricRoute.md b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerFabricRoute.md index 2d8a2e8a51..18223ceaaa 100644 --- a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerFabricRoute.md +++ b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerFabricRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerfabricroute?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerfabricroute?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerFabricRoute --- diff --git a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerGateway.md b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerGateway.md index 9093e1afce..54374935f7 100644 --- a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerGateway.md +++ b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerGateway.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollergateway?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollergateway?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerGateway --- diff --git a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerGatewayPool.md b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerGatewayPool.md index c1360749a1..2e46f44f90 100644 --- a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerGatewayPool.md +++ b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerGatewayPool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollergatewaypool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollergatewaypool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerGatewayPool --- diff --git a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerIpPool.md b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerIpPool.md index 6e56db1fb7..bfa6f90862 100644 --- a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerIpPool.md +++ b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerIpPool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerippool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerippool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerIpPool --- diff --git a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerIpReservation.md b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerIpReservation.md index dd1436f2c4..580a7d1bb6 100644 --- a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerIpReservation.md +++ b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerIpReservation.md @@ -3,7 +3,7 @@ description: The Remove-NetworkControllerIpReservation cmdlet removes the IP res external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 09/27/2021 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrolleripreservation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrolleripreservation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerIpReservation --- diff --git a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerLoadBalancer.md b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerLoadBalancer.md index 41a7fe4976..436966cf59 100644 --- a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerLoadBalancer.md +++ b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerLoadBalancer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerloadbalancer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerloadbalancer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerLoadBalancer --- diff --git a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerLoadBalancerBackendAddressPool.md b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerLoadBalancerBackendAddressPool.md index 5a8c11bef2..bf8a84b322 100644 --- a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerLoadBalancerBackendAddressPool.md +++ b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerLoadBalancerBackendAddressPool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerloadbalancerbackendaddresspool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerloadbalancerbackendaddresspool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerLoadBalancerBackendAddressPool --- diff --git a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerLoadBalancerConfiguration.md b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerLoadBalancerConfiguration.md index a5be41310a..2e13c26933 100644 --- a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerLoadBalancerConfiguration.md +++ b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerLoadBalancerConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerloadbalancerconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerloadbalancerconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerLoadBalancerConfiguration --- diff --git a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerLoadBalancerFrontendIpConfiguration.md b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerLoadBalancerFrontendIpConfiguration.md index 95d2377f9d..3e461584f7 100644 --- a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerLoadBalancerFrontendIpConfiguration.md +++ b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerLoadBalancerFrontendIpConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerloadbalancerfrontendipconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerloadbalancerfrontendipconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerLoadBalancerFrontendIpConfiguration --- diff --git a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerLoadBalancerInboundNatRule.md b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerLoadBalancerInboundNatRule.md index dc2ac9ea64..179376287c 100644 --- a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerLoadBalancerInboundNatRule.md +++ b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerLoadBalancerInboundNatRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerloadbalancerinboundnatrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerloadbalancerinboundnatrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerLoadBalancerInboundNatRule --- diff --git a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerLoadBalancerMux.md b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerLoadBalancerMux.md index e1d2aad577..2bcf062196 100644 --- a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerLoadBalancerMux.md +++ b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerLoadBalancerMux.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerloadbalancermux?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerloadbalancermux?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerLoadBalancerMux --- diff --git a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerLoadBalancerOutboundNatRule.md b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerLoadBalancerOutboundNatRule.md index 251dfe7596..72ce2bbd1f 100644 --- a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerLoadBalancerOutboundNatRule.md +++ b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerLoadBalancerOutboundNatRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerloadbalanceroutboundnatrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerloadbalanceroutboundnatrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerLoadBalancerOutboundNatRule --- diff --git a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerLoadBalancerProbe.md b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerLoadBalancerProbe.md index 027fd37ab6..34a15dd9e5 100644 --- a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerLoadBalancerProbe.md +++ b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerLoadBalancerProbe.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerloadbalancerprobe?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerloadbalancerprobe?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerLoadBalancerProbe --- diff --git a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerLoadBalancingRule.md b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerLoadBalancingRule.md index 162d4e355f..493c98a31d 100644 --- a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerLoadBalancingRule.md +++ b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerLoadBalancingRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerloadbalancingrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerloadbalancingrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerLoadBalancingRule --- diff --git a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerLogicalNetwork.md b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerLogicalNetwork.md index 996b1ebdae..d8f709437b 100644 --- a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerLogicalNetwork.md +++ b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerLogicalNetwork.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerlogicalnetwork?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerlogicalnetwork?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerLogicalNetwork --- diff --git a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerLogicalSubnet.md b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerLogicalSubnet.md index 6f7a73b15d..25c8d0a4bd 100644 --- a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerLogicalSubnet.md +++ b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerLogicalSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerlogicalsubnet?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerlogicalsubnet?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerLogicalSubnet --- diff --git a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerMacPool.md b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerMacPool.md index 1def91ebf7..11aeab5ff3 100644 --- a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerMacPool.md +++ b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerMacPool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollermacpool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollermacpool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerMacPool --- diff --git a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerNetworkInterface.md b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerNetworkInterface.md index c7c7b028cd..d9ccd5a5f7 100644 --- a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerNetworkInterface.md +++ b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerNetworkInterface.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollernetworkinterface?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollernetworkinterface?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerNetworkInterface --- diff --git a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerNetworkInterfaceIpConfiguration.md b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerNetworkInterfaceIpConfiguration.md index 0a7d5acd2b..8a0cc96615 100644 --- a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerNetworkInterfaceIpConfiguration.md +++ b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerNetworkInterfaceIpConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollernetworkinterfaceipconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollernetworkinterfaceipconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerNetworkInterfaceIpConfiguration --- diff --git a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerNode.md b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerNode.md index 512037f394..28afa784b1 100644 --- a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerNode.md +++ b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollernode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollernode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerNode --- diff --git a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerPublicIpAddress.md b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerPublicIpAddress.md index 7652b50f67..71ab6f8447 100644 --- a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerPublicIpAddress.md +++ b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerPublicIpAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerpublicipaddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerpublicipaddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerPublicIpAddress --- diff --git a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerRestore.md b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerRestore.md index 5b5bb09aaa..429bd866d7 100644 --- a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerRestore.md +++ b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerRestore.md @@ -3,7 +3,7 @@ description: The Remove-NetworkControllerRestore cmdlet removes a Network Contro external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 09/27/2021 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerrestore?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerrestore?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerRestore --- diff --git a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerRoute.md b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerRoute.md index e5508cfc0d..cd8c1082b7 100644 --- a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerRoute.md +++ b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerroute?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerroute?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerRoute --- diff --git a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerRouteTable.md b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerRouteTable.md index 762ed38c13..837c34f0bd 100644 --- a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerRouteTable.md +++ b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerRouteTable.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerroutetable?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerroutetable?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerRouteTable --- diff --git a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerServer.md b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerServer.md index c67a3f3c62..23ef8a386c 100644 --- a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerServer.md +++ b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerServer --- diff --git a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerServerInterface.md b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerServerInterface.md index 4f7367c8eb..ee82f3cfba 100644 --- a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerServerInterface.md +++ b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerServerInterface.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerserverinterface?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerserverinterface?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerServerInterface --- diff --git a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerServiceInsertion.md b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerServiceInsertion.md index e475e55e81..b40fcb1b33 100644 --- a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerServiceInsertion.md +++ b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerServiceInsertion.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerserviceinsertion?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollerserviceinsertion?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerServiceInsertion --- diff --git a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerVirtualGateway.md b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerVirtualGateway.md index ef9db24e64..d55296e880 100644 --- a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerVirtualGateway.md +++ b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerVirtualGateway.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollervirtualgateway?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollervirtualgateway?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerVirtualGateway --- diff --git a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerVirtualGatewayBgpPeer.md b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerVirtualGatewayBgpPeer.md index 5003df6ab8..d9977a8fd3 100644 --- a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerVirtualGatewayBgpPeer.md +++ b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerVirtualGatewayBgpPeer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollervirtualgatewaybgppeer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollervirtualgatewaybgppeer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerVirtualGatewayBgpPeer --- diff --git a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerVirtualGatewayBgpRouter.md b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerVirtualGatewayBgpRouter.md index b5c7bfec89..ba488b7ff6 100644 --- a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerVirtualGatewayBgpRouter.md +++ b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerVirtualGatewayBgpRouter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollervirtualgatewaybgprouter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollervirtualgatewaybgprouter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerVirtualGatewayBgpRouter --- diff --git a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerVirtualGatewayNetworkConnection.md b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerVirtualGatewayNetworkConnection.md index 5ace775777..0037304c1d 100644 --- a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerVirtualGatewayNetworkConnection.md +++ b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerVirtualGatewayNetworkConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollervirtualgatewaynetworkconnection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollervirtualgatewaynetworkconnection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerVirtualGatewayNetworkConnection --- diff --git a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerVirtualGatewayPolicyMap.md b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerVirtualGatewayPolicyMap.md index 5d9bd9be48..b5f9441469 100644 --- a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerVirtualGatewayPolicyMap.md +++ b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerVirtualGatewayPolicyMap.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollervirtualgatewaypolicymap?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollervirtualgatewaypolicymap?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerVirtualGatewayPolicyMap --- diff --git a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerVirtualNetwork.md b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerVirtualNetwork.md index c37d21d1f1..443e61769e 100644 --- a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerVirtualNetwork.md +++ b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerVirtualNetwork.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollervirtualnetwork?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollervirtualnetwork?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerVirtualNetwork --- diff --git a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerVirtualNetworkPeering.md b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerVirtualNetworkPeering.md index c8418fe10e..e049799297 100644 --- a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerVirtualNetworkPeering.md +++ b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerVirtualNetworkPeering.md @@ -3,7 +3,7 @@ description: The Remove-NetworkControllerVirtualNetworkPeering cmdlet removes a external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 09/27/2021 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollervirtualnetworkpeering?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollervirtualnetworkpeering?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerVirtualNetworkPeering --- diff --git a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerVirtualServer.md b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerVirtualServer.md index 7bc5df9bed..fab063305a 100644 --- a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerVirtualServer.md +++ b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerVirtualServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollervirtualserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollervirtualserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerVirtualServer --- diff --git a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerVirtualSubnet.md b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerVirtualSubnet.md index 32942eb087..cc2129b8a9 100644 --- a/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerVirtualSubnet.md +++ b/docset/winserver2022-ps/networkcontroller/Remove-NetworkControllerVirtualSubnet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollervirtualsubnet?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/remove-networkcontrollervirtualsubnet?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkControllerVirtualSubnet --- diff --git a/docset/winserver2022-ps/networkcontroller/Repair-NetworkControllerCluster.md b/docset/winserver2022-ps/networkcontroller/Repair-NetworkControllerCluster.md index 307169e753..a128b0a362 100644 --- a/docset/winserver2022-ps/networkcontroller/Repair-NetworkControllerCluster.md +++ b/docset/winserver2022-ps/networkcontroller/Repair-NetworkControllerCluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/repair-networkcontrollercluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/repair-networkcontrollercluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Repair-NetworkControllerCluster --- diff --git a/docset/winserver2022-ps/networkcontroller/Set-NetworkController.md b/docset/winserver2022-ps/networkcontroller/Set-NetworkController.md index 3b36417dc4..0415271019 100644 --- a/docset/winserver2022-ps/networkcontroller/Set-NetworkController.md +++ b/docset/winserver2022-ps/networkcontroller/Set-NetworkController.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/set-networkcontroller?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/set-networkcontroller?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetworkController --- diff --git a/docset/winserver2022-ps/networkcontroller/Set-NetworkControllerAuditingSettingsConfiguration.md b/docset/winserver2022-ps/networkcontroller/Set-NetworkControllerAuditingSettingsConfiguration.md index c181c229ad..b4a1db29f4 100644 --- a/docset/winserver2022-ps/networkcontroller/Set-NetworkControllerAuditingSettingsConfiguration.md +++ b/docset/winserver2022-ps/networkcontroller/Set-NetworkControllerAuditingSettingsConfiguration.md @@ -3,7 +3,7 @@ description: The Set-NetworkControllerAuditingSettingsConfiguration cmdlet sets external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 09/27/2021 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/set-networkcontrollerauditingsettingsconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/set-networkcontrollerauditingsettingsconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetworkControllerAuditingSettingsConfiguration --- diff --git a/docset/winserver2022-ps/networkcontroller/Set-NetworkControllerCluster.md b/docset/winserver2022-ps/networkcontroller/Set-NetworkControllerCluster.md index 286a3b185c..bdb9f89ef3 100644 --- a/docset/winserver2022-ps/networkcontroller/Set-NetworkControllerCluster.md +++ b/docset/winserver2022-ps/networkcontroller/Set-NetworkControllerCluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/set-networkcontrollercluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/set-networkcontrollercluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetworkControllerCluster --- diff --git a/docset/winserver2022-ps/networkcontroller/Set-NetworkControllerDiagnostic.md b/docset/winserver2022-ps/networkcontroller/Set-NetworkControllerDiagnostic.md index 852883b098..dd40acc6cc 100644 --- a/docset/winserver2022-ps/networkcontroller/Set-NetworkControllerDiagnostic.md +++ b/docset/winserver2022-ps/networkcontroller/Set-NetworkControllerDiagnostic.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/set-networkcontrollerdiagnostic?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/set-networkcontrollerdiagnostic?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetworkControllerDiagnostic --- diff --git a/docset/winserver2022-ps/networkcontroller/Set-NetworkControllerNode.md b/docset/winserver2022-ps/networkcontroller/Set-NetworkControllerNode.md index 6e92033a2c..a4171ca586 100644 --- a/docset/winserver2022-ps/networkcontroller/Set-NetworkControllerNode.md +++ b/docset/winserver2022-ps/networkcontroller/Set-NetworkControllerNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/set-networkcontrollernode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/set-networkcontrollernode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetworkControllerNode --- diff --git a/docset/winserver2022-ps/networkcontroller/Set-NetworkControllerVirtualNetworkConfiguration.md b/docset/winserver2022-ps/networkcontroller/Set-NetworkControllerVirtualNetworkConfiguration.md index cdc3cd40e4..94dd437a53 100644 --- a/docset/winserver2022-ps/networkcontroller/Set-NetworkControllerVirtualNetworkConfiguration.md +++ b/docset/winserver2022-ps/networkcontroller/Set-NetworkControllerVirtualNetworkConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/set-networkcontrollervirtualnetworkconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/set-networkcontrollervirtualnetworkconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetworkControllerVirtualNetworkConfiguration --- diff --git a/docset/winserver2022-ps/networkcontroller/Set-NetworkControllerVirtualSwitchConfiguration.md b/docset/winserver2022-ps/networkcontroller/Set-NetworkControllerVirtualSwitchConfiguration.md index 3b30392174..695f7abe72 100644 --- a/docset/winserver2022-ps/networkcontroller/Set-NetworkControllerVirtualSwitchConfiguration.md +++ b/docset/winserver2022-ps/networkcontroller/Set-NetworkControllerVirtualSwitchConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/set-networkcontrollervirtualswitchconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/set-networkcontrollervirtualswitchconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetworkControllerVirtualSwitchConfiguration --- diff --git a/docset/winserver2022-ps/networkcontroller/Uninstall-NetworkController.md b/docset/winserver2022-ps/networkcontroller/Uninstall-NetworkController.md index 68bada4503..4049409d27 100644 --- a/docset/winserver2022-ps/networkcontroller/Uninstall-NetworkController.md +++ b/docset/winserver2022-ps/networkcontroller/Uninstall-NetworkController.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/uninstall-networkcontroller?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/uninstall-networkcontroller?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-NetworkController --- diff --git a/docset/winserver2022-ps/networkcontroller/Uninstall-NetworkControllerCluster.md b/docset/winserver2022-ps/networkcontroller/Uninstall-NetworkControllerCluster.md index 981d441d7a..3ca61ba42a 100644 --- a/docset/winserver2022-ps/networkcontroller/Uninstall-NetworkControllerCluster.md +++ b/docset/winserver2022-ps/networkcontroller/Uninstall-NetworkControllerCluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/uninstall-networkcontrollercluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/uninstall-networkcontrollercluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-NetworkControllerCluster --- diff --git a/docset/winserver2022-ps/networkcontroller/Update-NetworkController.md b/docset/winserver2022-ps/networkcontroller/Update-NetworkController.md index 69d98ba9b3..47a597d013 100644 --- a/docset/winserver2022-ps/networkcontroller/Update-NetworkController.md +++ b/docset/winserver2022-ps/networkcontroller/Update-NetworkController.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkController.Powershell.dll-Help.xml Module Name: NetworkController ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontroller/update-networkcontroller?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontroller/update-networkcontroller?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-NetworkController --- diff --git a/docset/winserver2022-ps/networkcontrollerdiagnostics/Debug-NetworkController.md b/docset/winserver2022-ps/networkcontrollerdiagnostics/Debug-NetworkController.md index 750667dc4a..067cac4572 100644 --- a/docset/winserver2022-ps/networkcontrollerdiagnostics/Debug-NetworkController.md +++ b/docset/winserver2022-ps/networkcontrollerdiagnostics/Debug-NetworkController.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Debug-NetworkController.psm1-help.xml Module Name: NetworkControllerDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontrollerdiagnostics/debug-networkcontroller?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontrollerdiagnostics/debug-networkcontroller?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Debug-NetworkController --- diff --git a/docset/winserver2022-ps/networkcontrollerdiagnostics/Debug-NetworkControllerConfigurationState.md b/docset/winserver2022-ps/networkcontrollerdiagnostics/Debug-NetworkControllerConfigurationState.md index c9a67b592a..3bdd08b450 100644 --- a/docset/winserver2022-ps/networkcontrollerdiagnostics/Debug-NetworkControllerConfigurationState.md +++ b/docset/winserver2022-ps/networkcontrollerdiagnostics/Debug-NetworkControllerConfigurationState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Debug-NetworkControllerConfigurationState.psm1-help.xml Module Name: NetworkControllerDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontrollerdiagnostics/debug-networkcontrollerconfigurationstate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontrollerdiagnostics/debug-networkcontrollerconfigurationstate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Debug-NetworkControllerConfigurationState --- diff --git a/docset/winserver2022-ps/networkcontrollerdiagnostics/Debug-ServiceFabricNodeStatus.md b/docset/winserver2022-ps/networkcontrollerdiagnostics/Debug-ServiceFabricNodeStatus.md index 8fbe7e4fca..499de9bd19 100644 --- a/docset/winserver2022-ps/networkcontrollerdiagnostics/Debug-ServiceFabricNodeStatus.md +++ b/docset/winserver2022-ps/networkcontrollerdiagnostics/Debug-ServiceFabricNodeStatus.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Debug-ServiceFabricNodeStatus.psm1-help.xml Module Name: NetworkControllerDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontrollerdiagnostics/debug-servicefabricnodestatus?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontrollerdiagnostics/debug-servicefabricnodestatus?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Debug-ServiceFabricNodeStatus --- diff --git a/docset/winserver2022-ps/networkcontrollerdiagnostics/Get-NetworkControllerDeploymentInfo.md b/docset/winserver2022-ps/networkcontrollerdiagnostics/Get-NetworkControllerDeploymentInfo.md index 361f7f3185..1938346bab 100644 --- a/docset/winserver2022-ps/networkcontrollerdiagnostics/Get-NetworkControllerDeploymentInfo.md +++ b/docset/winserver2022-ps/networkcontrollerdiagnostics/Get-NetworkControllerDeploymentInfo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Debug-NetworkController.psm1-help.xml Module Name: NetworkControllerDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontrollerdiagnostics/get-networkcontrollerdeploymentinfo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontrollerdiagnostics/get-networkcontrollerdeploymentinfo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerDeploymentInfo --- diff --git a/docset/winserver2022-ps/networkcontrollerdiagnostics/Get-NetworkControllerManagedDevices.md b/docset/winserver2022-ps/networkcontrollerdiagnostics/Get-NetworkControllerManagedDevices.md index ce28b8f528..3a67651d84 100644 --- a/docset/winserver2022-ps/networkcontrollerdiagnostics/Get-NetworkControllerManagedDevices.md +++ b/docset/winserver2022-ps/networkcontrollerdiagnostics/Get-NetworkControllerManagedDevices.md @@ -3,7 +3,7 @@ description: The Get-NetworkControllerManagedDevices cmdlet gets managed devices external help file: Debug-NetworkController.psm1-help.xml Module Name: NetworkControllerDiagnostics ms.date: 10/22/2021 -online version: https://docs.microsoft.com/powershell/module/networkcontrollerdiagnostics/get-networkcontrollermanageddevices?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontrollerdiagnostics/get-networkcontrollermanageddevices?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerManagedDevices --- diff --git a/docset/winserver2022-ps/networkcontrollerdiagnostics/Get-NetworkControllerReplica.md b/docset/winserver2022-ps/networkcontrollerdiagnostics/Get-NetworkControllerReplica.md index 3e9e6d5dbd..34d8657a43 100644 --- a/docset/winserver2022-ps/networkcontrollerdiagnostics/Get-NetworkControllerReplica.md +++ b/docset/winserver2022-ps/networkcontrollerdiagnostics/Get-NetworkControllerReplica.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Get-NetworkControllerReplica.psm1-help.xml Module Name: NetworkControllerDiagnostics ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkcontrollerdiagnostics/get-networkcontrollerreplica?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkcontrollerdiagnostics/get-networkcontrollerreplica?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkControllerReplica --- diff --git a/docset/winserver2022-ps/networkloadbalancingclusters/Add-NlbClusterNode.md b/docset/winserver2022-ps/networkloadbalancingclusters/Add-NlbClusterNode.md index 72bba948eb..181d3831bb 100644 --- a/docset/winserver2022-ps/networkloadbalancingclusters/Add-NlbClusterNode.md +++ b/docset/winserver2022-ps/networkloadbalancingclusters/Add-NlbClusterNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/add-nlbclusternode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/add-nlbclusternode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NlbClusterNode --- diff --git a/docset/winserver2022-ps/networkloadbalancingclusters/Add-NlbClusterNodeDip.md b/docset/winserver2022-ps/networkloadbalancingclusters/Add-NlbClusterNodeDip.md index 69011bcaad..0765fa60df 100644 --- a/docset/winserver2022-ps/networkloadbalancingclusters/Add-NlbClusterNodeDip.md +++ b/docset/winserver2022-ps/networkloadbalancingclusters/Add-NlbClusterNodeDip.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/add-nlbclusternodedip?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/add-nlbclusternodedip?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NlbClusterNodeDip --- diff --git a/docset/winserver2022-ps/networkloadbalancingclusters/Add-NlbClusterPortRule.md b/docset/winserver2022-ps/networkloadbalancingclusters/Add-NlbClusterPortRule.md index 9970e1cb94..9f9ef25de3 100644 --- a/docset/winserver2022-ps/networkloadbalancingclusters/Add-NlbClusterPortRule.md +++ b/docset/winserver2022-ps/networkloadbalancingclusters/Add-NlbClusterPortRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/add-nlbclusterportrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/add-nlbclusterportrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NlbClusterPortRule --- diff --git a/docset/winserver2022-ps/networkloadbalancingclusters/Add-NlbClusterVip.md b/docset/winserver2022-ps/networkloadbalancingclusters/Add-NlbClusterVip.md index de97a46aae..e291b6e2f3 100644 --- a/docset/winserver2022-ps/networkloadbalancingclusters/Add-NlbClusterVip.md +++ b/docset/winserver2022-ps/networkloadbalancingclusters/Add-NlbClusterVip.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/add-nlbclustervip?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/add-nlbclustervip?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NlbClusterVip --- diff --git a/docset/winserver2022-ps/networkloadbalancingclusters/Disable-NlbClusterPortRule.md b/docset/winserver2022-ps/networkloadbalancingclusters/Disable-NlbClusterPortRule.md index 85a846c225..e4e1b59018 100644 --- a/docset/winserver2022-ps/networkloadbalancingclusters/Disable-NlbClusterPortRule.md +++ b/docset/winserver2022-ps/networkloadbalancingclusters/Disable-NlbClusterPortRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/disable-nlbclusterportrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/disable-nlbclusterportrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NlbClusterPortRule --- diff --git a/docset/winserver2022-ps/networkloadbalancingclusters/Enable-NlbClusterPortRule.md b/docset/winserver2022-ps/networkloadbalancingclusters/Enable-NlbClusterPortRule.md index c856765066..66e4a09e06 100644 --- a/docset/winserver2022-ps/networkloadbalancingclusters/Enable-NlbClusterPortRule.md +++ b/docset/winserver2022-ps/networkloadbalancingclusters/Enable-NlbClusterPortRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/enable-nlbclusterportrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/enable-nlbclusterportrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NlbClusterPortRule --- diff --git a/docset/winserver2022-ps/networkloadbalancingclusters/Get-NlbCluster.md b/docset/winserver2022-ps/networkloadbalancingclusters/Get-NlbCluster.md index 5e66ab087d..a7adaf814e 100644 --- a/docset/winserver2022-ps/networkloadbalancingclusters/Get-NlbCluster.md +++ b/docset/winserver2022-ps/networkloadbalancingclusters/Get-NlbCluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbcluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbcluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NlbCluster --- diff --git a/docset/winserver2022-ps/networkloadbalancingclusters/Get-NlbClusterDriverInfo.md b/docset/winserver2022-ps/networkloadbalancingclusters/Get-NlbClusterDriverInfo.md index b66a257824..635a8ae26c 100644 --- a/docset/winserver2022-ps/networkloadbalancingclusters/Get-NlbClusterDriverInfo.md +++ b/docset/winserver2022-ps/networkloadbalancingclusters/Get-NlbClusterDriverInfo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclusterdriverinfo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclusterdriverinfo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NlbClusterDriverInfo --- diff --git a/docset/winserver2022-ps/networkloadbalancingclusters/Get-NlbClusterNode.md b/docset/winserver2022-ps/networkloadbalancingclusters/Get-NlbClusterNode.md index 8a9c0d85f1..75f927e5e3 100644 --- a/docset/winserver2022-ps/networkloadbalancingclusters/Get-NlbClusterNode.md +++ b/docset/winserver2022-ps/networkloadbalancingclusters/Get-NlbClusterNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclusternode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclusternode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NlbClusterNode --- diff --git a/docset/winserver2022-ps/networkloadbalancingclusters/Get-NlbClusterNodeDip.md b/docset/winserver2022-ps/networkloadbalancingclusters/Get-NlbClusterNodeDip.md index bdf4b535fc..f2b4cf4068 100644 --- a/docset/winserver2022-ps/networkloadbalancingclusters/Get-NlbClusterNodeDip.md +++ b/docset/winserver2022-ps/networkloadbalancingclusters/Get-NlbClusterNodeDip.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclusternodedip?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclusternodedip?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NlbClusterNodeDip --- diff --git a/docset/winserver2022-ps/networkloadbalancingclusters/Get-NlbClusterNodeNetworkInterface.md b/docset/winserver2022-ps/networkloadbalancingclusters/Get-NlbClusterNodeNetworkInterface.md index b9e2e46c65..e20902712a 100644 --- a/docset/winserver2022-ps/networkloadbalancingclusters/Get-NlbClusterNodeNetworkInterface.md +++ b/docset/winserver2022-ps/networkloadbalancingclusters/Get-NlbClusterNodeNetworkInterface.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclusternodenetworkinterface?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclusternodenetworkinterface?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NlbClusterNodeNetworkInterface --- diff --git a/docset/winserver2022-ps/networkloadbalancingclusters/Get-NlbClusterPortRule.md b/docset/winserver2022-ps/networkloadbalancingclusters/Get-NlbClusterPortRule.md index f678034a2c..452bba1ce7 100644 --- a/docset/winserver2022-ps/networkloadbalancingclusters/Get-NlbClusterPortRule.md +++ b/docset/winserver2022-ps/networkloadbalancingclusters/Get-NlbClusterPortRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclusterportrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclusterportrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NlbClusterPortRule --- diff --git a/docset/winserver2022-ps/networkloadbalancingclusters/Get-NlbClusterVip.md b/docset/winserver2022-ps/networkloadbalancingclusters/Get-NlbClusterVip.md index 52cfed6cd9..dc129bcfb0 100644 --- a/docset/winserver2022-ps/networkloadbalancingclusters/Get-NlbClusterVip.md +++ b/docset/winserver2022-ps/networkloadbalancingclusters/Get-NlbClusterVip.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclustervip?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/get-nlbclustervip?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NlbClusterVip --- diff --git a/docset/winserver2022-ps/networkloadbalancingclusters/New-NlbCluster.md b/docset/winserver2022-ps/networkloadbalancingclusters/New-NlbCluster.md index c71f2e3b29..f5b9a28182 100644 --- a/docset/winserver2022-ps/networkloadbalancingclusters/New-NlbCluster.md +++ b/docset/winserver2022-ps/networkloadbalancingclusters/New-NlbCluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/new-nlbcluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/new-nlbcluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NlbCluster --- diff --git a/docset/winserver2022-ps/networkloadbalancingclusters/New-NlbClusterIpv6Address.md b/docset/winserver2022-ps/networkloadbalancingclusters/New-NlbClusterIpv6Address.md index 5a6b86ded0..0405d7d43c 100644 --- a/docset/winserver2022-ps/networkloadbalancingclusters/New-NlbClusterIpv6Address.md +++ b/docset/winserver2022-ps/networkloadbalancingclusters/New-NlbClusterIpv6Address.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/new-nlbclusteripv6address?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/new-nlbclusteripv6address?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NlbClusterIpv6Address --- diff --git a/docset/winserver2022-ps/networkloadbalancingclusters/Remove-NlbCluster.md b/docset/winserver2022-ps/networkloadbalancingclusters/Remove-NlbCluster.md index 0c21be9c8d..6e4035cc5c 100644 --- a/docset/winserver2022-ps/networkloadbalancingclusters/Remove-NlbCluster.md +++ b/docset/winserver2022-ps/networkloadbalancingclusters/Remove-NlbCluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/remove-nlbcluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/remove-nlbcluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NlbCluster --- diff --git a/docset/winserver2022-ps/networkloadbalancingclusters/Remove-NlbClusterNode.md b/docset/winserver2022-ps/networkloadbalancingclusters/Remove-NlbClusterNode.md index 1f3fc948c9..598eadeae3 100644 --- a/docset/winserver2022-ps/networkloadbalancingclusters/Remove-NlbClusterNode.md +++ b/docset/winserver2022-ps/networkloadbalancingclusters/Remove-NlbClusterNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/remove-nlbclusternode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/remove-nlbclusternode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NlbClusterNode --- diff --git a/docset/winserver2022-ps/networkloadbalancingclusters/Remove-NlbClusterNodeDip.md b/docset/winserver2022-ps/networkloadbalancingclusters/Remove-NlbClusterNodeDip.md index f9b1dcf5e8..d89d30e85f 100644 --- a/docset/winserver2022-ps/networkloadbalancingclusters/Remove-NlbClusterNodeDip.md +++ b/docset/winserver2022-ps/networkloadbalancingclusters/Remove-NlbClusterNodeDip.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/remove-nlbclusternodedip?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/remove-nlbclusternodedip?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NlbClusterNodeDip --- diff --git a/docset/winserver2022-ps/networkloadbalancingclusters/Remove-NlbClusterPortRule.md b/docset/winserver2022-ps/networkloadbalancingclusters/Remove-NlbClusterPortRule.md index 2c81e43963..33f2468e85 100644 --- a/docset/winserver2022-ps/networkloadbalancingclusters/Remove-NlbClusterPortRule.md +++ b/docset/winserver2022-ps/networkloadbalancingclusters/Remove-NlbClusterPortRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/remove-nlbclusterportrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/remove-nlbclusterportrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NlbClusterPortRule --- diff --git a/docset/winserver2022-ps/networkloadbalancingclusters/Remove-NlbClusterVip.md b/docset/winserver2022-ps/networkloadbalancingclusters/Remove-NlbClusterVip.md index d89ca4698c..d70d187303 100644 --- a/docset/winserver2022-ps/networkloadbalancingclusters/Remove-NlbClusterVip.md +++ b/docset/winserver2022-ps/networkloadbalancingclusters/Remove-NlbClusterVip.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/remove-nlbclustervip?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/remove-nlbclustervip?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NlbClusterVip --- diff --git a/docset/winserver2022-ps/networkloadbalancingclusters/Resume-NlbCluster.md b/docset/winserver2022-ps/networkloadbalancingclusters/Resume-NlbCluster.md index 7987fd9c0f..806afe6815 100644 --- a/docset/winserver2022-ps/networkloadbalancingclusters/Resume-NlbCluster.md +++ b/docset/winserver2022-ps/networkloadbalancingclusters/Resume-NlbCluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/resume-nlbcluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/resume-nlbcluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-NlbCluster --- diff --git a/docset/winserver2022-ps/networkloadbalancingclusters/Resume-NlbClusterNode.md b/docset/winserver2022-ps/networkloadbalancingclusters/Resume-NlbClusterNode.md index 4ea0bd1954..1ea5e1b00f 100644 --- a/docset/winserver2022-ps/networkloadbalancingclusters/Resume-NlbClusterNode.md +++ b/docset/winserver2022-ps/networkloadbalancingclusters/Resume-NlbClusterNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/resume-nlbclusternode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/resume-nlbclusternode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-NlbClusterNode --- diff --git a/docset/winserver2022-ps/networkloadbalancingclusters/Set-NlbCluster.md b/docset/winserver2022-ps/networkloadbalancingclusters/Set-NlbCluster.md index eecbeb8fd4..2f60a15b40 100644 --- a/docset/winserver2022-ps/networkloadbalancingclusters/Set-NlbCluster.md +++ b/docset/winserver2022-ps/networkloadbalancingclusters/Set-NlbCluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbcluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbcluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NlbCluster --- diff --git a/docset/winserver2022-ps/networkloadbalancingclusters/Set-NlbClusterNode.md b/docset/winserver2022-ps/networkloadbalancingclusters/Set-NlbClusterNode.md index d12ffc9f1b..536177bdb7 100644 --- a/docset/winserver2022-ps/networkloadbalancingclusters/Set-NlbClusterNode.md +++ b/docset/winserver2022-ps/networkloadbalancingclusters/Set-NlbClusterNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclusternode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclusternode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NlbClusterNode --- diff --git a/docset/winserver2022-ps/networkloadbalancingclusters/Set-NlbClusterNodeDip.md b/docset/winserver2022-ps/networkloadbalancingclusters/Set-NlbClusterNodeDip.md index 4199c65a2a..f9065da889 100644 --- a/docset/winserver2022-ps/networkloadbalancingclusters/Set-NlbClusterNodeDip.md +++ b/docset/winserver2022-ps/networkloadbalancingclusters/Set-NlbClusterNodeDip.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclusternodedip?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclusternodedip?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NlbClusterNodeDip --- diff --git a/docset/winserver2022-ps/networkloadbalancingclusters/Set-NlbClusterPortRule.md b/docset/winserver2022-ps/networkloadbalancingclusters/Set-NlbClusterPortRule.md index 1ecf8a5fc5..07fa68a8ca 100644 --- a/docset/winserver2022-ps/networkloadbalancingclusters/Set-NlbClusterPortRule.md +++ b/docset/winserver2022-ps/networkloadbalancingclusters/Set-NlbClusterPortRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclusterportrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclusterportrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NlbClusterPortRule --- diff --git a/docset/winserver2022-ps/networkloadbalancingclusters/Set-NlbClusterPortRuleNodeHandlingPriority.md b/docset/winserver2022-ps/networkloadbalancingclusters/Set-NlbClusterPortRuleNodeHandlingPriority.md index 09cd729e97..7e9c66257d 100644 --- a/docset/winserver2022-ps/networkloadbalancingclusters/Set-NlbClusterPortRuleNodeHandlingPriority.md +++ b/docset/winserver2022-ps/networkloadbalancingclusters/Set-NlbClusterPortRuleNodeHandlingPriority.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclusterportrulenodehandlingpriority?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclusterportrulenodehandlingpriority?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NlbClusterPortRuleNodeHandlingPriority --- diff --git a/docset/winserver2022-ps/networkloadbalancingclusters/Set-NlbClusterPortRuleNodeWeight.md b/docset/winserver2022-ps/networkloadbalancingclusters/Set-NlbClusterPortRuleNodeWeight.md index bd43bcdb4e..13391f8330 100644 --- a/docset/winserver2022-ps/networkloadbalancingclusters/Set-NlbClusterPortRuleNodeWeight.md +++ b/docset/winserver2022-ps/networkloadbalancingclusters/Set-NlbClusterPortRuleNodeWeight.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclusterportrulenodeweight?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclusterportrulenodeweight?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NlbClusterPortRuleNodeWeight --- diff --git a/docset/winserver2022-ps/networkloadbalancingclusters/Set-NlbClusterVip.md b/docset/winserver2022-ps/networkloadbalancingclusters/Set-NlbClusterVip.md index c42e62e95f..4ef631bb67 100644 --- a/docset/winserver2022-ps/networkloadbalancingclusters/Set-NlbClusterVip.md +++ b/docset/winserver2022-ps/networkloadbalancingclusters/Set-NlbClusterVip.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclustervip?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/set-nlbclustervip?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NlbClusterVip --- diff --git a/docset/winserver2022-ps/networkloadbalancingclusters/Start-NlbCluster.md b/docset/winserver2022-ps/networkloadbalancingclusters/Start-NlbCluster.md index db0dba1a40..624135002f 100644 --- a/docset/winserver2022-ps/networkloadbalancingclusters/Start-NlbCluster.md +++ b/docset/winserver2022-ps/networkloadbalancingclusters/Start-NlbCluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/start-nlbcluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/start-nlbcluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-NlbCluster --- diff --git a/docset/winserver2022-ps/networkloadbalancingclusters/Start-NlbClusterNode.md b/docset/winserver2022-ps/networkloadbalancingclusters/Start-NlbClusterNode.md index 8d85445650..2498c721a1 100644 --- a/docset/winserver2022-ps/networkloadbalancingclusters/Start-NlbClusterNode.md +++ b/docset/winserver2022-ps/networkloadbalancingclusters/Start-NlbClusterNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/start-nlbclusternode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/start-nlbclusternode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-NlbClusterNode --- diff --git a/docset/winserver2022-ps/networkloadbalancingclusters/Stop-NlbCluster.md b/docset/winserver2022-ps/networkloadbalancingclusters/Stop-NlbCluster.md index fb81375097..ef40c1a1c9 100644 --- a/docset/winserver2022-ps/networkloadbalancingclusters/Stop-NlbCluster.md +++ b/docset/winserver2022-ps/networkloadbalancingclusters/Stop-NlbCluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/stop-nlbcluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/stop-nlbcluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-NlbCluster --- diff --git a/docset/winserver2022-ps/networkloadbalancingclusters/Stop-NlbClusterNode.md b/docset/winserver2022-ps/networkloadbalancingclusters/Stop-NlbClusterNode.md index 9e274b3275..8194578786 100644 --- a/docset/winserver2022-ps/networkloadbalancingclusters/Stop-NlbClusterNode.md +++ b/docset/winserver2022-ps/networkloadbalancingclusters/Stop-NlbClusterNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/stop-nlbclusternode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/stop-nlbclusternode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-NlbClusterNode --- diff --git a/docset/winserver2022-ps/networkloadbalancingclusters/Suspend-NlbCluster.md b/docset/winserver2022-ps/networkloadbalancingclusters/Suspend-NlbCluster.md index 90addeba10..5c902fdb97 100644 --- a/docset/winserver2022-ps/networkloadbalancingclusters/Suspend-NlbCluster.md +++ b/docset/winserver2022-ps/networkloadbalancingclusters/Suspend-NlbCluster.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/suspend-nlbcluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/suspend-nlbcluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-NlbCluster --- diff --git a/docset/winserver2022-ps/networkloadbalancingclusters/Suspend-NlbClusterNode.md b/docset/winserver2022-ps/networkloadbalancingclusters/Suspend-NlbClusterNode.md index b80b34dff7..7d636a8366 100644 --- a/docset/winserver2022-ps/networkloadbalancingclusters/Suspend-NlbClusterNode.md +++ b/docset/winserver2022-ps/networkloadbalancingclusters/Suspend-NlbClusterNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NetworkLoadBalancingClusters.PowerShell.dll-Help.xml Module Name: NetworkLoadBalancingClusters ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/networkloadbalancingclusters/suspend-nlbclusternode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkloadbalancingclusters/suspend-nlbclusternode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-NlbClusterNode --- diff --git a/docset/winserver2022-ps/networkswitchmanager/Disable-NetworkSwitchEthernetPort.md b/docset/winserver2022-ps/networkswitchmanager/Disable-NetworkSwitchEthernetPort.md index fcab0321ec..e446e62876 100644 --- a/docset/winserver2022-ps/networkswitchmanager/Disable-NetworkSwitchEthernetPort.md +++ b/docset/winserver2022-ps/networkswitchmanager/Disable-NetworkSwitchEthernetPort.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchEthernetPort.psm1-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/disable-networkswitchethernetport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/disable-networkswitchethernetport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetworkSwitchEthernetPort --- diff --git a/docset/winserver2022-ps/networkswitchmanager/Disable-NetworkSwitchFeature.md b/docset/winserver2022-ps/networkswitchmanager/Disable-NetworkSwitchFeature.md index f89515a466..ddcd53e034 100644 --- a/docset/winserver2022-ps/networkswitchmanager/Disable-NetworkSwitchFeature.md +++ b/docset/winserver2022-ps/networkswitchmanager/Disable-NetworkSwitchFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchFeature.psm1-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/disable-networkswitchfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/disable-networkswitchfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetworkSwitchFeature --- diff --git a/docset/winserver2022-ps/networkswitchmanager/Disable-NetworkSwitchVlan.md b/docset/winserver2022-ps/networkswitchmanager/Disable-NetworkSwitchVlan.md index 09f296a5d3..ec2efa5253 100644 --- a/docset/winserver2022-ps/networkswitchmanager/Disable-NetworkSwitchVlan.md +++ b/docset/winserver2022-ps/networkswitchmanager/Disable-NetworkSwitchVlan.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchVlan.psm1-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/disable-networkswitchvlan?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/disable-networkswitchvlan?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetworkSwitchVlan --- diff --git a/docset/winserver2022-ps/networkswitchmanager/Enable-NetworkSwitchEthernetPort.md b/docset/winserver2022-ps/networkswitchmanager/Enable-NetworkSwitchEthernetPort.md index 70aeb3f9a5..cf8817e8cc 100644 --- a/docset/winserver2022-ps/networkswitchmanager/Enable-NetworkSwitchEthernetPort.md +++ b/docset/winserver2022-ps/networkswitchmanager/Enable-NetworkSwitchEthernetPort.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchEthernetPort.psm1-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/enable-networkswitchethernetport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/enable-networkswitchethernetport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetworkSwitchEthernetPort --- diff --git a/docset/winserver2022-ps/networkswitchmanager/Enable-NetworkSwitchFeature.md b/docset/winserver2022-ps/networkswitchmanager/Enable-NetworkSwitchFeature.md index ef2255b6fe..6624c90488 100644 --- a/docset/winserver2022-ps/networkswitchmanager/Enable-NetworkSwitchFeature.md +++ b/docset/winserver2022-ps/networkswitchmanager/Enable-NetworkSwitchFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchFeature.psm1-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/enable-networkswitchfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/enable-networkswitchfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetworkSwitchFeature --- diff --git a/docset/winserver2022-ps/networkswitchmanager/Enable-NetworkSwitchVlan.md b/docset/winserver2022-ps/networkswitchmanager/Enable-NetworkSwitchVlan.md index 56ee4559a5..8c1bd83aa0 100644 --- a/docset/winserver2022-ps/networkswitchmanager/Enable-NetworkSwitchVlan.md +++ b/docset/winserver2022-ps/networkswitchmanager/Enable-NetworkSwitchVlan.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchVlan.psm1-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/enable-networkswitchvlan?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/enable-networkswitchvlan?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetworkSwitchVlan --- diff --git a/docset/winserver2022-ps/networkswitchmanager/Get-NetworkSwitchEthernetPort.md b/docset/winserver2022-ps/networkswitchmanager/Get-NetworkSwitchEthernetPort.md index 7c36297ff1..f0ffc39667 100644 --- a/docset/winserver2022-ps/networkswitchmanager/Get-NetworkSwitchEthernetPort.md +++ b/docset/winserver2022-ps/networkswitchmanager/Get-NetworkSwitchEthernetPort.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchEthernetPort.psm1-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/get-networkswitchethernetport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/get-networkswitchethernetport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkSwitchEthernetPort --- diff --git a/docset/winserver2022-ps/networkswitchmanager/Get-NetworkSwitchFeature.md b/docset/winserver2022-ps/networkswitchmanager/Get-NetworkSwitchFeature.md index c237970bd9..1e10bdc030 100644 --- a/docset/winserver2022-ps/networkswitchmanager/Get-NetworkSwitchFeature.md +++ b/docset/winserver2022-ps/networkswitchmanager/Get-NetworkSwitchFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchFeature.psm1-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/get-networkswitchfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/get-networkswitchfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkSwitchFeature --- diff --git a/docset/winserver2022-ps/networkswitchmanager/Get-NetworkSwitchGlobalData.md b/docset/winserver2022-ps/networkswitchmanager/Get-NetworkSwitchGlobalData.md index 9e7896fc78..ab140bdf8a 100644 --- a/docset/winserver2022-ps/networkswitchmanager/Get-NetworkSwitchGlobalData.md +++ b/docset/winserver2022-ps/networkswitchmanager/Get-NetworkSwitchGlobalData.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchGlobalSettingData.psm1-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/get-networkswitchglobaldata?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/get-networkswitchglobaldata?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkSwitchGlobalData --- diff --git a/docset/winserver2022-ps/networkswitchmanager/Get-NetworkSwitchVlan.md b/docset/winserver2022-ps/networkswitchmanager/Get-NetworkSwitchVlan.md index 7a2a5eb63a..7ddc9a4772 100644 --- a/docset/winserver2022-ps/networkswitchmanager/Get-NetworkSwitchVlan.md +++ b/docset/winserver2022-ps/networkswitchmanager/Get-NetworkSwitchVlan.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchVlan.psm1-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/get-networkswitchvlan?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/get-networkswitchvlan?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetworkSwitchVlan --- diff --git a/docset/winserver2022-ps/networkswitchmanager/New-NetworkSwitchVlan.md b/docset/winserver2022-ps/networkswitchmanager/New-NetworkSwitchVlan.md index b37c3db3ed..da4b763f76 100644 --- a/docset/winserver2022-ps/networkswitchmanager/New-NetworkSwitchVlan.md +++ b/docset/winserver2022-ps/networkswitchmanager/New-NetworkSwitchVlan.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchVlan.psm1-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/new-networkswitchvlan?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/new-networkswitchvlan?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetworkSwitchVlan --- diff --git a/docset/winserver2022-ps/networkswitchmanager/Remove-NetworkSwitchEthernetPortIPAddress.md b/docset/winserver2022-ps/networkswitchmanager/Remove-NetworkSwitchEthernetPortIPAddress.md index e86f2a7474..6ea220ed7b 100644 --- a/docset/winserver2022-ps/networkswitchmanager/Remove-NetworkSwitchEthernetPortIPAddress.md +++ b/docset/winserver2022-ps/networkswitchmanager/Remove-NetworkSwitchEthernetPortIPAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchEthernetPort.psm1-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/remove-networkswitchethernetportipaddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/remove-networkswitchethernetportipaddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkSwitchEthernetPortIPAddress --- diff --git a/docset/winserver2022-ps/networkswitchmanager/Remove-NetworkSwitchVlan.md b/docset/winserver2022-ps/networkswitchmanager/Remove-NetworkSwitchVlan.md index 8887c090ab..075bdee1b1 100644 --- a/docset/winserver2022-ps/networkswitchmanager/Remove-NetworkSwitchVlan.md +++ b/docset/winserver2022-ps/networkswitchmanager/Remove-NetworkSwitchVlan.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchVlan.psm1-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/remove-networkswitchvlan?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/remove-networkswitchvlan?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetworkSwitchVlan --- diff --git a/docset/winserver2022-ps/networkswitchmanager/Restore-NetworkSwitchConfiguration.md b/docset/winserver2022-ps/networkswitchmanager/Restore-NetworkSwitchConfiguration.md index 7e4fe1627b..3858e6c859 100644 --- a/docset/winserver2022-ps/networkswitchmanager/Restore-NetworkSwitchConfiguration.md +++ b/docset/winserver2022-ps/networkswitchmanager/Restore-NetworkSwitchConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchConfiguration.psm1-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/restore-networkswitchconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/restore-networkswitchconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-NetworkSwitchConfiguration --- diff --git a/docset/winserver2022-ps/networkswitchmanager/Save-NetworkSwitchConfiguration.md b/docset/winserver2022-ps/networkswitchmanager/Save-NetworkSwitchConfiguration.md index 31654a359a..186a790a63 100644 --- a/docset/winserver2022-ps/networkswitchmanager/Save-NetworkSwitchConfiguration.md +++ b/docset/winserver2022-ps/networkswitchmanager/Save-NetworkSwitchConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchConfiguration.psm1-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/save-networkswitchconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/save-networkswitchconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Save-NetworkSwitchConfiguration --- diff --git a/docset/winserver2022-ps/networkswitchmanager/Set-NetworkSwitchEthernetPortIPAddress.md b/docset/winserver2022-ps/networkswitchmanager/Set-NetworkSwitchEthernetPortIPAddress.md index cda4eaa8d9..332b8f224f 100644 --- a/docset/winserver2022-ps/networkswitchmanager/Set-NetworkSwitchEthernetPortIPAddress.md +++ b/docset/winserver2022-ps/networkswitchmanager/Set-NetworkSwitchEthernetPortIPAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchEthernetPort.psm1-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/set-networkswitchethernetportipaddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/set-networkswitchethernetportipaddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetworkSwitchEthernetPortIPAddress --- diff --git a/docset/winserver2022-ps/networkswitchmanager/Set-NetworkSwitchPortMode.md b/docset/winserver2022-ps/networkswitchmanager/Set-NetworkSwitchPortMode.md index 54dfc1beb9..7a969db115 100644 --- a/docset/winserver2022-ps/networkswitchmanager/Set-NetworkSwitchPortMode.md +++ b/docset/winserver2022-ps/networkswitchmanager/Set-NetworkSwitchPortMode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchEthernetPort.psm1-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/set-networkswitchportmode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/set-networkswitchportmode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetworkSwitchPortMode --- diff --git a/docset/winserver2022-ps/networkswitchmanager/Set-NetworkSwitchPortProperty.md b/docset/winserver2022-ps/networkswitchmanager/Set-NetworkSwitchPortProperty.md index e22d9fa456..5137e3b537 100644 --- a/docset/winserver2022-ps/networkswitchmanager/Set-NetworkSwitchPortProperty.md +++ b/docset/winserver2022-ps/networkswitchmanager/Set-NetworkSwitchPortProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchEthernetPort.psm1-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/set-networkswitchportproperty?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/set-networkswitchportproperty?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetworkSwitchPortProperty --- diff --git a/docset/winserver2022-ps/networkswitchmanager/Set-NetworkSwitchVlanProperty.md b/docset/winserver2022-ps/networkswitchmanager/Set-NetworkSwitchVlanProperty.md index 2aec60fb03..9013c95620 100644 --- a/docset/winserver2022-ps/networkswitchmanager/Set-NetworkSwitchVlanProperty.md +++ b/docset/winserver2022-ps/networkswitchmanager/Set-NetworkSwitchVlanProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: NetworkSwitchVlan.psm1-help.xml Module Name: NetworkSwitchManager ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networkswitchmanager/set-networkswitchvlanproperty?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networkswitchmanager/set-networkswitchvlanproperty?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetworkSwitchVlanProperty --- diff --git a/docset/winserver2022-ps/networktransition/Add-NetIPHttpsCertBinding.md b/docset/winserver2022-ps/networktransition/Add-NetIPHttpsCertBinding.md index 7af28d189c..2370f2924b 100644 --- a/docset/winserver2022-ps/networktransition/Add-NetIPHttpsCertBinding.md +++ b/docset/winserver2022-ps/networktransition/Add-NetIPHttpsCertBinding.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIpHTTPsConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/add-netiphttpscertbinding?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/add-netiphttpscertbinding?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-NetIPHttpsCertBinding --- diff --git a/docset/winserver2022-ps/networktransition/Disable-NetDnsTransitionConfiguration.md b/docset/winserver2022-ps/networktransition/Disable-NetDnsTransitionConfiguration.md index 03b14dfc85..8129be7196 100644 --- a/docset/winserver2022-ps/networktransition/Disable-NetDnsTransitionConfiguration.md +++ b/docset/winserver2022-ps/networktransition/Disable-NetDnsTransitionConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetDnsTransitionConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/disable-netdnstransitionconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/disable-netdnstransitionconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetDnsTransitionConfiguration --- diff --git a/docset/winserver2022-ps/networktransition/Disable-NetIPHttpsProfile.md b/docset/winserver2022-ps/networktransition/Disable-NetIPHttpsProfile.md index a1fc930534..c092dff443 100644 --- a/docset/winserver2022-ps/networktransition/Disable-NetIPHttpsProfile.md +++ b/docset/winserver2022-ps/networktransition/Disable-NetIPHttpsProfile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIpHTTPsConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/disable-netiphttpsprofile?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/disable-netiphttpsprofile?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetIPHttpsProfile --- diff --git a/docset/winserver2022-ps/networktransition/Disable-NetNatTransitionConfiguration.md b/docset/winserver2022-ps/networktransition/Disable-NetNatTransitionConfiguration.md index 99b035d6fc..f0f51b239c 100644 --- a/docset/winserver2022-ps/networktransition/Disable-NetNatTransitionConfiguration.md +++ b/docset/winserver2022-ps/networktransition/Disable-NetNatTransitionConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNatTransitionConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/disable-netnattransitionconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/disable-netnattransitionconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetNatTransitionConfiguration --- diff --git a/docset/winserver2022-ps/networktransition/Enable-NetDnsTransitionConfiguration.md b/docset/winserver2022-ps/networktransition/Enable-NetDnsTransitionConfiguration.md index a41f4a2563..b997043b15 100644 --- a/docset/winserver2022-ps/networktransition/Enable-NetDnsTransitionConfiguration.md +++ b/docset/winserver2022-ps/networktransition/Enable-NetDnsTransitionConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetDnsTransitionConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/enable-netdnstransitionconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/enable-netdnstransitionconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetDnsTransitionConfiguration --- diff --git a/docset/winserver2022-ps/networktransition/Enable-NetIPHttpsProfile.md b/docset/winserver2022-ps/networktransition/Enable-NetIPHttpsProfile.md index 743dabc9c6..ff0f20e184 100644 --- a/docset/winserver2022-ps/networktransition/Enable-NetIPHttpsProfile.md +++ b/docset/winserver2022-ps/networktransition/Enable-NetIPHttpsProfile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIpHTTPsConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/enable-netiphttpsprofile?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/enable-netiphttpsprofile?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetIPHttpsProfile --- diff --git a/docset/winserver2022-ps/networktransition/Enable-NetNatTransitionConfiguration.md b/docset/winserver2022-ps/networktransition/Enable-NetNatTransitionConfiguration.md index 4904ce48cc..b5d9ea2bba 100644 --- a/docset/winserver2022-ps/networktransition/Enable-NetNatTransitionConfiguration.md +++ b/docset/winserver2022-ps/networktransition/Enable-NetNatTransitionConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNatTransitionConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/enable-netnattransitionconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/enable-netnattransitionconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetNatTransitionConfiguration --- diff --git a/docset/winserver2022-ps/networktransition/Get-Net6to4Configuration.md b/docset/winserver2022-ps/networktransition/Get-Net6to4Configuration.md index d2298410be..dec90ee4aa 100644 --- a/docset/winserver2022-ps/networktransition/Get-Net6to4Configuration.md +++ b/docset/winserver2022-ps/networktransition/Get-Net6to4Configuration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_Net6to4Configuration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/get-net6to4configuration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/get-net6to4configuration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-Net6to4Configuration --- diff --git a/docset/winserver2022-ps/networktransition/Get-NetDnsTransitionConfiguration.md b/docset/winserver2022-ps/networktransition/Get-NetDnsTransitionConfiguration.md index 9b1843db89..b75265de96 100644 --- a/docset/winserver2022-ps/networktransition/Get-NetDnsTransitionConfiguration.md +++ b/docset/winserver2022-ps/networktransition/Get-NetDnsTransitionConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetDnsTransitionConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/get-netdnstransitionconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/get-netdnstransitionconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetDnsTransitionConfiguration --- diff --git a/docset/winserver2022-ps/networktransition/Get-NetDnsTransitionMonitoring.md b/docset/winserver2022-ps/networktransition/Get-NetDnsTransitionMonitoring.md index 4e400dfdf7..cecd5edc55 100644 --- a/docset/winserver2022-ps/networktransition/Get-NetDnsTransitionMonitoring.md +++ b/docset/winserver2022-ps/networktransition/Get-NetDnsTransitionMonitoring.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetDnsTransitionMonitoring.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/get-netdnstransitionmonitoring?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/get-netdnstransitionmonitoring?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetDnsTransitionMonitoring --- diff --git a/docset/winserver2022-ps/networktransition/Get-NetIPHttpsConfiguration.md b/docset/winserver2022-ps/networktransition/Get-NetIPHttpsConfiguration.md index b0416b3154..e51421ad28 100644 --- a/docset/winserver2022-ps/networktransition/Get-NetIPHttpsConfiguration.md +++ b/docset/winserver2022-ps/networktransition/Get-NetIPHttpsConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIpHTTPsConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/get-netiphttpsconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/get-netiphttpsconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPHttpsConfiguration --- diff --git a/docset/winserver2022-ps/networktransition/Get-NetIPHttpsState.md b/docset/winserver2022-ps/networktransition/Get-NetIPHttpsState.md index 8319762498..145365ab31 100644 --- a/docset/winserver2022-ps/networktransition/Get-NetIPHttpsState.md +++ b/docset/winserver2022-ps/networktransition/Get-NetIPHttpsState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIpHTTPsState.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/get-netiphttpsstate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/get-netiphttpsstate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIPHttpsState --- diff --git a/docset/winserver2022-ps/networktransition/Get-NetIsatapConfiguration.md b/docset/winserver2022-ps/networktransition/Get-NetIsatapConfiguration.md index 3bdcfad27f..61df625ac5 100644 --- a/docset/winserver2022-ps/networktransition/Get-NetIsatapConfiguration.md +++ b/docset/winserver2022-ps/networktransition/Get-NetIsatapConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetISATAPConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/get-netisatapconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/get-netisatapconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetIsatapConfiguration --- diff --git a/docset/winserver2022-ps/networktransition/Get-NetNatTransitionConfiguration.md b/docset/winserver2022-ps/networktransition/Get-NetNatTransitionConfiguration.md index b65dea2337..9bf3c33d52 100644 --- a/docset/winserver2022-ps/networktransition/Get-NetNatTransitionConfiguration.md +++ b/docset/winserver2022-ps/networktransition/Get-NetNatTransitionConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNatTransitionConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/get-netnattransitionconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/get-netnattransitionconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetNatTransitionConfiguration --- diff --git a/docset/winserver2022-ps/networktransition/Get-NetNatTransitionMonitoring.md b/docset/winserver2022-ps/networktransition/Get-NetNatTransitionMonitoring.md index c478418f78..14811fd9ba 100644 --- a/docset/winserver2022-ps/networktransition/Get-NetNatTransitionMonitoring.md +++ b/docset/winserver2022-ps/networktransition/Get-NetNatTransitionMonitoring.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNatTransitionMonitoring.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/get-netnattransitionmonitoring?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/get-netnattransitionmonitoring?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetNatTransitionMonitoring --- diff --git a/docset/winserver2022-ps/networktransition/Get-NetTeredoConfiguration.md b/docset/winserver2022-ps/networktransition/Get-NetTeredoConfiguration.md index 5b9ffb610d..7d57056131 100644 --- a/docset/winserver2022-ps/networktransition/Get-NetTeredoConfiguration.md +++ b/docset/winserver2022-ps/networktransition/Get-NetTeredoConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetTeredoConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/get-netteredoconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/get-netteredoconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetTeredoConfiguration --- diff --git a/docset/winserver2022-ps/networktransition/Get-NetTeredoState.md b/docset/winserver2022-ps/networktransition/Get-NetTeredoState.md index fc82ef7288..a389f0a641 100644 --- a/docset/winserver2022-ps/networktransition/Get-NetTeredoState.md +++ b/docset/winserver2022-ps/networktransition/Get-NetTeredoState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetTeredoState.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/get-netteredostate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/get-netteredostate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetTeredoState --- diff --git a/docset/winserver2022-ps/networktransition/New-NetIPHttpsConfiguration.md b/docset/winserver2022-ps/networktransition/New-NetIPHttpsConfiguration.md index 81242c181c..8047002459 100644 --- a/docset/winserver2022-ps/networktransition/New-NetIPHttpsConfiguration.md +++ b/docset/winserver2022-ps/networktransition/New-NetIPHttpsConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIpHTTPsConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/new-netiphttpsconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/new-netiphttpsconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetIPHttpsConfiguration --- diff --git a/docset/winserver2022-ps/networktransition/New-NetNatTransitionConfiguration.md b/docset/winserver2022-ps/networktransition/New-NetNatTransitionConfiguration.md index 933e8c99e6..a242e04cbf 100644 --- a/docset/winserver2022-ps/networktransition/New-NetNatTransitionConfiguration.md +++ b/docset/winserver2022-ps/networktransition/New-NetNatTransitionConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNatTransitionConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/new-netnattransitionconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/new-netnattransitionconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetNatTransitionConfiguration --- diff --git a/docset/winserver2022-ps/networktransition/Remove-NetIPHttpsCertBinding.md b/docset/winserver2022-ps/networktransition/Remove-NetIPHttpsCertBinding.md index 8af8cecb6c..6a02978308 100644 --- a/docset/winserver2022-ps/networktransition/Remove-NetIPHttpsCertBinding.md +++ b/docset/winserver2022-ps/networktransition/Remove-NetIPHttpsCertBinding.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIpHTTPsConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/remove-netiphttpscertbinding?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/remove-netiphttpscertbinding?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetIPHttpsCertBinding --- diff --git a/docset/winserver2022-ps/networktransition/Remove-NetIPHttpsConfiguration.md b/docset/winserver2022-ps/networktransition/Remove-NetIPHttpsConfiguration.md index 30f5059c9c..4849fc3c68 100644 --- a/docset/winserver2022-ps/networktransition/Remove-NetIPHttpsConfiguration.md +++ b/docset/winserver2022-ps/networktransition/Remove-NetIPHttpsConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIpHTTPsConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/remove-netiphttpsconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/remove-netiphttpsconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetIPHttpsConfiguration --- diff --git a/docset/winserver2022-ps/networktransition/Remove-NetNatTransitionConfiguration.md b/docset/winserver2022-ps/networktransition/Remove-NetNatTransitionConfiguration.md index 7a921dc369..9a7250102e 100644 --- a/docset/winserver2022-ps/networktransition/Remove-NetNatTransitionConfiguration.md +++ b/docset/winserver2022-ps/networktransition/Remove-NetNatTransitionConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNatTransitionConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/remove-netnattransitionconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/remove-netnattransitionconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetNatTransitionConfiguration --- diff --git a/docset/winserver2022-ps/networktransition/Rename-NetIPHttpsConfiguration.md b/docset/winserver2022-ps/networktransition/Rename-NetIPHttpsConfiguration.md index 4d4ada6fe9..250f4c1b2a 100644 --- a/docset/winserver2022-ps/networktransition/Rename-NetIPHttpsConfiguration.md +++ b/docset/winserver2022-ps/networktransition/Rename-NetIPHttpsConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIpHTTPsConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/rename-netiphttpsconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/rename-netiphttpsconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-NetIPHttpsConfiguration --- diff --git a/docset/winserver2022-ps/networktransition/Reset-Net6to4Configuration.md b/docset/winserver2022-ps/networktransition/Reset-Net6to4Configuration.md index 01d756c93e..bc6b20093c 100644 --- a/docset/winserver2022-ps/networktransition/Reset-Net6to4Configuration.md +++ b/docset/winserver2022-ps/networktransition/Reset-Net6to4Configuration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_Net6to4Configuration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/reset-net6to4configuration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/reset-net6to4configuration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-Net6to4Configuration --- diff --git a/docset/winserver2022-ps/networktransition/Reset-NetDnsTransitionConfiguration.md b/docset/winserver2022-ps/networktransition/Reset-NetDnsTransitionConfiguration.md index ec425113e9..358cb7f65e 100644 --- a/docset/winserver2022-ps/networktransition/Reset-NetDnsTransitionConfiguration.md +++ b/docset/winserver2022-ps/networktransition/Reset-NetDnsTransitionConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetDnsTransitionConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/reset-netdnstransitionconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/reset-netdnstransitionconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-NetDnsTransitionConfiguration --- diff --git a/docset/winserver2022-ps/networktransition/Reset-NetIPHttpsConfiguration.md b/docset/winserver2022-ps/networktransition/Reset-NetIPHttpsConfiguration.md index 11e123807f..2179374f38 100644 --- a/docset/winserver2022-ps/networktransition/Reset-NetIPHttpsConfiguration.md +++ b/docset/winserver2022-ps/networktransition/Reset-NetIPHttpsConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIpHTTPsConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/reset-netiphttpsconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/reset-netiphttpsconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-NetIPHttpsConfiguration --- diff --git a/docset/winserver2022-ps/networktransition/Reset-NetIsatapConfiguration.md b/docset/winserver2022-ps/networktransition/Reset-NetIsatapConfiguration.md index 15bb976b9a..0271e373df 100644 --- a/docset/winserver2022-ps/networktransition/Reset-NetIsatapConfiguration.md +++ b/docset/winserver2022-ps/networktransition/Reset-NetIsatapConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetISATAPConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/reset-netisatapconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/reset-netisatapconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-NetIsatapConfiguration --- diff --git a/docset/winserver2022-ps/networktransition/Reset-NetTeredoConfiguration.md b/docset/winserver2022-ps/networktransition/Reset-NetTeredoConfiguration.md index dd52f6e23a..63424528e3 100644 --- a/docset/winserver2022-ps/networktransition/Reset-NetTeredoConfiguration.md +++ b/docset/winserver2022-ps/networktransition/Reset-NetTeredoConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetTeredoConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/reset-netteredoconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/reset-netteredoconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-NetTeredoConfiguration --- diff --git a/docset/winserver2022-ps/networktransition/Set-Net6to4Configuration.md b/docset/winserver2022-ps/networktransition/Set-Net6to4Configuration.md index 50a46e6cc9..4a03d777ce 100644 --- a/docset/winserver2022-ps/networktransition/Set-Net6to4Configuration.md +++ b/docset/winserver2022-ps/networktransition/Set-Net6to4Configuration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_Net6to4Configuration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/set-net6to4configuration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/set-net6to4configuration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-Net6to4Configuration --- diff --git a/docset/winserver2022-ps/networktransition/Set-NetDnsTransitionConfiguration.md b/docset/winserver2022-ps/networktransition/Set-NetDnsTransitionConfiguration.md index 27fa4f0738..323eb3251f 100644 --- a/docset/winserver2022-ps/networktransition/Set-NetDnsTransitionConfiguration.md +++ b/docset/winserver2022-ps/networktransition/Set-NetDnsTransitionConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetDnsTransitionConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/set-netdnstransitionconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/set-netdnstransitionconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetDnsTransitionConfiguration --- diff --git a/docset/winserver2022-ps/networktransition/Set-NetIPHttpsConfiguration.md b/docset/winserver2022-ps/networktransition/Set-NetIPHttpsConfiguration.md index 75b75078fc..d9e286d0b6 100644 --- a/docset/winserver2022-ps/networktransition/Set-NetIPHttpsConfiguration.md +++ b/docset/winserver2022-ps/networktransition/Set-NetIPHttpsConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetIpHTTPsConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/set-netiphttpsconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/set-netiphttpsconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetIPHttpsConfiguration --- diff --git a/docset/winserver2022-ps/networktransition/Set-NetIsatapConfiguration.md b/docset/winserver2022-ps/networktransition/Set-NetIsatapConfiguration.md index b6000c4c03..a00afd8b65 100644 --- a/docset/winserver2022-ps/networktransition/Set-NetIsatapConfiguration.md +++ b/docset/winserver2022-ps/networktransition/Set-NetIsatapConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetISATAPConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/set-netisatapconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/set-netisatapconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetIsatapConfiguration --- diff --git a/docset/winserver2022-ps/networktransition/Set-NetNatTransitionConfiguration.md b/docset/winserver2022-ps/networktransition/Set-NetNatTransitionConfiguration.md index 5135b093d4..67d73e1854 100644 --- a/docset/winserver2022-ps/networktransition/Set-NetNatTransitionConfiguration.md +++ b/docset/winserver2022-ps/networktransition/Set-NetNatTransitionConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetNatTransitionConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/set-netnattransitionconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/set-netnattransitionconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetNatTransitionConfiguration --- diff --git a/docset/winserver2022-ps/networktransition/Set-NetTeredoConfiguration.md b/docset/winserver2022-ps/networktransition/Set-NetTeredoConfiguration.md index ffaa663233..8b48db1589 100644 --- a/docset/winserver2022-ps/networktransition/Set-NetTeredoConfiguration.md +++ b/docset/winserver2022-ps/networktransition/Set-NetTeredoConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NetTeredoConfiguration.cdxml-help.xml Module Name: NetworkTransition ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/networktransition/set-netteredoconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/networktransition/set-netteredoconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetTeredoConfiguration --- diff --git a/docset/winserver2022-ps/nfs/Disconnect-NfsSession.md b/docset/winserver2022-ps/nfs/Disconnect-NfsSession.md index d021021189..1f7f6da771 100644 --- a/docset/winserver2022-ps/nfs/Disconnect-NfsSession.md +++ b/docset/winserver2022-ps/nfs/Disconnect-NfsSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsSession.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/disconnect-nfssession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/disconnect-nfssession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disconnect-NfsSession --- diff --git a/docset/winserver2022-ps/nfs/Get-NfsClientConfiguration.md b/docset/winserver2022-ps/nfs/Get-NfsClientConfiguration.md index 8bb8284de6..daa8180eb0 100644 --- a/docset/winserver2022-ps/nfs/Get-NfsClientConfiguration.md +++ b/docset/winserver2022-ps/nfs/Get-NfsClientConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsClientConfig.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsclientconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsclientconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsClientConfiguration --- diff --git a/docset/winserver2022-ps/nfs/Get-NfsClientLock.md b/docset/winserver2022-ps/nfs/Get-NfsClientLock.md index 1eee36d524..4ab1273819 100644 --- a/docset/winserver2022-ps/nfs/Get-NfsClientLock.md +++ b/docset/winserver2022-ps/nfs/Get-NfsClientLock.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsClientLock.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsclientlock?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsclientlock?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsClientLock --- diff --git a/docset/winserver2022-ps/nfs/Get-NfsClientgroup.md b/docset/winserver2022-ps/nfs/Get-NfsClientgroup.md index cb3da41f22..b4c200fc39 100644 --- a/docset/winserver2022-ps/nfs/Get-NfsClientgroup.md +++ b/docset/winserver2022-ps/nfs/Get-NfsClientgroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsClientGroup.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsclientgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsclientgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsClientgroup --- diff --git a/docset/winserver2022-ps/nfs/Get-NfsMappedIdentity.md b/docset/winserver2022-ps/nfs/Get-NfsMappedIdentity.md index 446ce0bdb4..9e10a3d3a2 100644 --- a/docset/winserver2022-ps/nfs/Get-NfsMappedIdentity.md +++ b/docset/winserver2022-ps/nfs/Get-NfsMappedIdentity.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FileServices.Powershell.NFS.dll-Help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsmappedidentity?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsmappedidentity?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsMappedIdentity --- diff --git a/docset/winserver2022-ps/nfs/Get-NfsMappingStore.md b/docset/winserver2022-ps/nfs/Get-NfsMappingStore.md index d4db8f248e..6fb86b9887 100644 --- a/docset/winserver2022-ps/nfs/Get-NfsMappingStore.md +++ b/docset/winserver2022-ps/nfs/Get-NfsMappingStore.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsMappingStore.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsmappingstore?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsmappingstore?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsMappingStore --- diff --git a/docset/winserver2022-ps/nfs/Get-NfsMountedClient.md b/docset/winserver2022-ps/nfs/Get-NfsMountedClient.md index 1c7ebf7258..27ca7b9ba6 100644 --- a/docset/winserver2022-ps/nfs/Get-NfsMountedClient.md +++ b/docset/winserver2022-ps/nfs/Get-NfsMountedClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsMountedClient.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsmountedclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsmountedclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsMountedClient --- diff --git a/docset/winserver2022-ps/nfs/Get-NfsNetgroup.md b/docset/winserver2022-ps/nfs/Get-NfsNetgroup.md index 31fd737209..afa98f5361 100644 --- a/docset/winserver2022-ps/nfs/Get-NfsNetgroup.md +++ b/docset/winserver2022-ps/nfs/Get-NfsNetgroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FileServices.Powershell.NFS.dll-Help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsnetgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsnetgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsNetgroup --- diff --git a/docset/winserver2022-ps/nfs/Get-NfsNetgroupStore.md b/docset/winserver2022-ps/nfs/Get-NfsNetgroupStore.md index c1b3dc3caf..1e4789e5f1 100644 --- a/docset/winserver2022-ps/nfs/Get-NfsNetgroupStore.md +++ b/docset/winserver2022-ps/nfs/Get-NfsNetgroupStore.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsNetgroupStore.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsnetgroupstore?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsnetgroupstore?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsNetgroupStore --- diff --git a/docset/winserver2022-ps/nfs/Get-NfsOpenFile.md b/docset/winserver2022-ps/nfs/Get-NfsOpenFile.md index 9656a27047..a3aec951b7 100644 --- a/docset/winserver2022-ps/nfs/Get-NfsOpenFile.md +++ b/docset/winserver2022-ps/nfs/Get-NfsOpenFile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsOpenFile.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsopenfile?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsopenfile?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsOpenFile --- diff --git a/docset/winserver2022-ps/nfs/Get-NfsServerConfiguration.md b/docset/winserver2022-ps/nfs/Get-NfsServerConfiguration.md index dfaffc058b..e6cf4d6992 100644 --- a/docset/winserver2022-ps/nfs/Get-NfsServerConfiguration.md +++ b/docset/winserver2022-ps/nfs/Get-NfsServerConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsServerConfig.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsserverconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsserverconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsServerConfiguration --- diff --git a/docset/winserver2022-ps/nfs/Get-NfsSession.md b/docset/winserver2022-ps/nfs/Get-NfsSession.md index 6da46ede29..83986ced8f 100644 --- a/docset/winserver2022-ps/nfs/Get-NfsSession.md +++ b/docset/winserver2022-ps/nfs/Get-NfsSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsSession.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfssession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfssession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsSession --- diff --git a/docset/winserver2022-ps/nfs/Get-NfsShare.md b/docset/winserver2022-ps/nfs/Get-NfsShare.md index 6299ba1369..1594928d1e 100644 --- a/docset/winserver2022-ps/nfs/Get-NfsShare.md +++ b/docset/winserver2022-ps/nfs/Get-NfsShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsShare.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsshare?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsshare?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsShare --- diff --git a/docset/winserver2022-ps/nfs/Get-NfsSharePermission.md b/docset/winserver2022-ps/nfs/Get-NfsSharePermission.md index 1057d41958..0199b50891 100644 --- a/docset/winserver2022-ps/nfs/Get-NfsSharePermission.md +++ b/docset/winserver2022-ps/nfs/Get-NfsSharePermission.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsServerTasks.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfssharepermission?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfssharepermission?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsSharePermission --- diff --git a/docset/winserver2022-ps/nfs/Get-NfsStatistics.md b/docset/winserver2022-ps/nfs/Get-NfsStatistics.md index 3788f49dae..6e19e71107 100644 --- a/docset/winserver2022-ps/nfs/Get-NfsStatistics.md +++ b/docset/winserver2022-ps/nfs/Get-NfsStatistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsStatistics.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/get-nfsstatistics?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/get-nfsstatistics?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NfsStatistics --- diff --git a/docset/winserver2022-ps/nfs/Grant-NfsSharePermission.md b/docset/winserver2022-ps/nfs/Grant-NfsSharePermission.md index 9b5d5e8d04..e246e0f5cb 100644 --- a/docset/winserver2022-ps/nfs/Grant-NfsSharePermission.md +++ b/docset/winserver2022-ps/nfs/Grant-NfsSharePermission.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsServerTasks.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/grant-nfssharepermission?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/grant-nfssharepermission?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Grant-NfsSharePermission --- diff --git a/docset/winserver2022-ps/nfs/Install-NfsMappingStore.md b/docset/winserver2022-ps/nfs/Install-NfsMappingStore.md index 5fd8ccc16f..f1b437353e 100644 --- a/docset/winserver2022-ps/nfs/Install-NfsMappingStore.md +++ b/docset/winserver2022-ps/nfs/Install-NfsMappingStore.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FileServices.Powershell.NFS.dll-Help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/install-nfsmappingstore?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/install-nfsmappingstore?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-NfsMappingStore --- diff --git a/docset/winserver2022-ps/nfs/New-NfsClientgroup.md b/docset/winserver2022-ps/nfs/New-NfsClientgroup.md index a933be1d69..46defcb581 100644 --- a/docset/winserver2022-ps/nfs/New-NfsClientgroup.md +++ b/docset/winserver2022-ps/nfs/New-NfsClientgroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsServerTasks.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/new-nfsclientgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/new-nfsclientgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NfsClientgroup --- diff --git a/docset/winserver2022-ps/nfs/New-NfsMappedIdentity.md b/docset/winserver2022-ps/nfs/New-NfsMappedIdentity.md index 086e7b4d72..330ed3a1a4 100644 --- a/docset/winserver2022-ps/nfs/New-NfsMappedIdentity.md +++ b/docset/winserver2022-ps/nfs/New-NfsMappedIdentity.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FileServices.Powershell.NFS.dll-Help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/new-nfsmappedidentity?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/new-nfsmappedidentity?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NfsMappedIdentity --- diff --git a/docset/winserver2022-ps/nfs/New-NfsNetgroup.md b/docset/winserver2022-ps/nfs/New-NfsNetgroup.md index 7a52f1a3b6..bc08d8ea7d 100644 --- a/docset/winserver2022-ps/nfs/New-NfsNetgroup.md +++ b/docset/winserver2022-ps/nfs/New-NfsNetgroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FileServices.Powershell.NFS.dll-Help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/new-nfsnetgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/new-nfsnetgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NfsNetgroup --- diff --git a/docset/winserver2022-ps/nfs/New-NfsShare.md b/docset/winserver2022-ps/nfs/New-NfsShare.md index b067aefa63..a8e64e22da 100644 --- a/docset/winserver2022-ps/nfs/New-NfsShare.md +++ b/docset/winserver2022-ps/nfs/New-NfsShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsServerTasks.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/new-nfsshare?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/new-nfsshare?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NfsShare --- diff --git a/docset/winserver2022-ps/nfs/Remove-NfsClientgroup.md b/docset/winserver2022-ps/nfs/Remove-NfsClientgroup.md index d64229f02f..63db4f66bf 100644 --- a/docset/winserver2022-ps/nfs/Remove-NfsClientgroup.md +++ b/docset/winserver2022-ps/nfs/Remove-NfsClientgroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsClientGroup.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/remove-nfsclientgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/remove-nfsclientgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NfsClientgroup --- diff --git a/docset/winserver2022-ps/nfs/Remove-NfsMappedIdentity.md b/docset/winserver2022-ps/nfs/Remove-NfsMappedIdentity.md index 1af7e88c6d..69d68fadfe 100644 --- a/docset/winserver2022-ps/nfs/Remove-NfsMappedIdentity.md +++ b/docset/winserver2022-ps/nfs/Remove-NfsMappedIdentity.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FileServices.Powershell.NFS.dll-Help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/remove-nfsmappedidentity?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/remove-nfsmappedidentity?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NfsMappedIdentity --- diff --git a/docset/winserver2022-ps/nfs/Remove-NfsNetgroup.md b/docset/winserver2022-ps/nfs/Remove-NfsNetgroup.md index 16d2fb6beb..d2befafd1d 100644 --- a/docset/winserver2022-ps/nfs/Remove-NfsNetgroup.md +++ b/docset/winserver2022-ps/nfs/Remove-NfsNetgroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FileServices.Powershell.NFS.dll-Help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/remove-nfsnetgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/remove-nfsnetgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NfsNetgroup --- diff --git a/docset/winserver2022-ps/nfs/Remove-NfsShare.md b/docset/winserver2022-ps/nfs/Remove-NfsShare.md index 50856d6e8b..6564556cb7 100644 --- a/docset/winserver2022-ps/nfs/Remove-NfsShare.md +++ b/docset/winserver2022-ps/nfs/Remove-NfsShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsShare.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/remove-nfsshare?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/remove-nfsshare?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NfsShare --- diff --git a/docset/winserver2022-ps/nfs/Rename-NfsClientgroup.md b/docset/winserver2022-ps/nfs/Rename-NfsClientgroup.md index 236268f931..63ac1fe694 100644 --- a/docset/winserver2022-ps/nfs/Rename-NfsClientgroup.md +++ b/docset/winserver2022-ps/nfs/Rename-NfsClientgroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsServerTasks.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/rename-nfsclientgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/rename-nfsclientgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-NfsClientgroup --- diff --git a/docset/winserver2022-ps/nfs/Reset-NfsStatistics.md b/docset/winserver2022-ps/nfs/Reset-NfsStatistics.md index 2db33f99c0..9acd7da2ee 100644 --- a/docset/winserver2022-ps/nfs/Reset-NfsStatistics.md +++ b/docset/winserver2022-ps/nfs/Reset-NfsStatistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsStatistics.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/reset-nfsstatistics?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/reset-nfsstatistics?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-NfsStatistics --- diff --git a/docset/winserver2022-ps/nfs/Resolve-NfsMappedIdentity.md b/docset/winserver2022-ps/nfs/Resolve-NfsMappedIdentity.md index 42bb8bbfe0..fefc6bb621 100644 --- a/docset/winserver2022-ps/nfs/Resolve-NfsMappedIdentity.md +++ b/docset/winserver2022-ps/nfs/Resolve-NfsMappedIdentity.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsServerTasks.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/resolve-nfsmappedidentity?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/resolve-nfsmappedidentity?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resolve-NfsMappedIdentity --- diff --git a/docset/winserver2022-ps/nfs/Revoke-NfsClientLock.md b/docset/winserver2022-ps/nfs/Revoke-NfsClientLock.md index 45e1026c55..c6abe41c02 100644 --- a/docset/winserver2022-ps/nfs/Revoke-NfsClientLock.md +++ b/docset/winserver2022-ps/nfs/Revoke-NfsClientLock.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsClientLock.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/revoke-nfsclientlock?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/revoke-nfsclientlock?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Revoke-NfsClientLock --- diff --git a/docset/winserver2022-ps/nfs/Revoke-NfsMountedClient.md b/docset/winserver2022-ps/nfs/Revoke-NfsMountedClient.md index 4f53348eb6..61d4a4cef2 100644 --- a/docset/winserver2022-ps/nfs/Revoke-NfsMountedClient.md +++ b/docset/winserver2022-ps/nfs/Revoke-NfsMountedClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsMountedClient.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/revoke-nfsmountedclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/revoke-nfsmountedclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Revoke-NfsMountedClient --- diff --git a/docset/winserver2022-ps/nfs/Revoke-NfsOpenFile.md b/docset/winserver2022-ps/nfs/Revoke-NfsOpenFile.md index d2e2dccbc0..03425c88ae 100644 --- a/docset/winserver2022-ps/nfs/Revoke-NfsOpenFile.md +++ b/docset/winserver2022-ps/nfs/Revoke-NfsOpenFile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsOpenFile.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/revoke-nfsopenfile?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/revoke-nfsopenfile?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Revoke-NfsOpenFile --- diff --git a/docset/winserver2022-ps/nfs/Revoke-NfsSharePermission.md b/docset/winserver2022-ps/nfs/Revoke-NfsSharePermission.md index aa35a3a8ff..6de10201b9 100644 --- a/docset/winserver2022-ps/nfs/Revoke-NfsSharePermission.md +++ b/docset/winserver2022-ps/nfs/Revoke-NfsSharePermission.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsServerTasks.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/revoke-nfssharepermission?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/revoke-nfssharepermission?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Revoke-NfsSharePermission --- diff --git a/docset/winserver2022-ps/nfs/Set-NfsClientConfiguration.md b/docset/winserver2022-ps/nfs/Set-NfsClientConfiguration.md index 2bf29c9677..35238b49a4 100644 --- a/docset/winserver2022-ps/nfs/Set-NfsClientConfiguration.md +++ b/docset/winserver2022-ps/nfs/Set-NfsClientConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsClientConfig.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/set-nfsclientconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/set-nfsclientconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NfsClientConfiguration --- diff --git a/docset/winserver2022-ps/nfs/Set-NfsClientgroup.md b/docset/winserver2022-ps/nfs/Set-NfsClientgroup.md index 70f429fc9a..592efc2562 100644 --- a/docset/winserver2022-ps/nfs/Set-NfsClientgroup.md +++ b/docset/winserver2022-ps/nfs/Set-NfsClientgroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsServerTasks.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/set-nfsclientgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/set-nfsclientgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NfsClientgroup --- diff --git a/docset/winserver2022-ps/nfs/Set-NfsMappedIdentity.md b/docset/winserver2022-ps/nfs/Set-NfsMappedIdentity.md index af44f7c2a4..0eeaba13be 100644 --- a/docset/winserver2022-ps/nfs/Set-NfsMappedIdentity.md +++ b/docset/winserver2022-ps/nfs/Set-NfsMappedIdentity.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FileServices.Powershell.NFS.dll-Help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/set-nfsmappedidentity?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/set-nfsmappedidentity?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NfsMappedIdentity --- diff --git a/docset/winserver2022-ps/nfs/Set-NfsMappingStore.md b/docset/winserver2022-ps/nfs/Set-NfsMappingStore.md index 23e5886f76..8d2efbeff3 100644 --- a/docset/winserver2022-ps/nfs/Set-NfsMappingStore.md +++ b/docset/winserver2022-ps/nfs/Set-NfsMappingStore.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsMappingStore.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/set-nfsmappingstore?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/set-nfsmappingstore?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NfsMappingStore --- diff --git a/docset/winserver2022-ps/nfs/Set-NfsNetgroup.md b/docset/winserver2022-ps/nfs/Set-NfsNetgroup.md index 4a89af425e..dce57cb3fc 100644 --- a/docset/winserver2022-ps/nfs/Set-NfsNetgroup.md +++ b/docset/winserver2022-ps/nfs/Set-NfsNetgroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FileServices.Powershell.NFS.dll-Help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/set-nfsnetgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/set-nfsnetgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NfsNetgroup --- diff --git a/docset/winserver2022-ps/nfs/Set-NfsNetgroupStore.md b/docset/winserver2022-ps/nfs/Set-NfsNetgroupStore.md index 01d5f9059a..23ec2c9c93 100644 --- a/docset/winserver2022-ps/nfs/Set-NfsNetgroupStore.md +++ b/docset/winserver2022-ps/nfs/Set-NfsNetgroupStore.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsNetgroupStore.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/set-nfsnetgroupstore?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/set-nfsnetgroupstore?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NfsNetgroupStore --- diff --git a/docset/winserver2022-ps/nfs/Set-NfsServerConfiguration.md b/docset/winserver2022-ps/nfs/Set-NfsServerConfiguration.md index 814811ed35..4a4454bab8 100644 --- a/docset/winserver2022-ps/nfs/Set-NfsServerConfiguration.md +++ b/docset/winserver2022-ps/nfs/Set-NfsServerConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsServerConfig.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/set-nfsserverconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/set-nfsserverconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NfsServerConfiguration --- diff --git a/docset/winserver2022-ps/nfs/Set-NfsShare.md b/docset/winserver2022-ps/nfs/Set-NfsShare.md index 5957d9f317..d489da85bc 100644 --- a/docset/winserver2022-ps/nfs/Set-NfsShare.md +++ b/docset/winserver2022-ps/nfs/Set-NfsShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsServerTasks.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/set-nfsshare?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/set-nfsshare?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NfsShare --- diff --git a/docset/winserver2022-ps/nfs/Test-NfsMappedIdentity.md b/docset/winserver2022-ps/nfs/Test-NfsMappedIdentity.md index 23308c1a7e..250f95da7c 100644 --- a/docset/winserver2022-ps/nfs/Test-NfsMappedIdentity.md +++ b/docset/winserver2022-ps/nfs/Test-NfsMappedIdentity.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FileServices.Powershell.NFS.dll-Help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/test-nfsmappedidentity?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/test-nfsmappedidentity?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-NfsMappedIdentity --- diff --git a/docset/winserver2022-ps/nfs/Test-NfsMappingStore.md b/docset/winserver2022-ps/nfs/Test-NfsMappingStore.md index 0601e02a91..196034f528 100644 --- a/docset/winserver2022-ps/nfs/Test-NfsMappingStore.md +++ b/docset/winserver2022-ps/nfs/Test-NfsMappingStore.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_NfsServerTasks.cmdletDefinition.cdxml-help.xml Module Name: NFS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nfs/test-nfsmappingstore?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nfs/test-nfsmappingstore?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-NfsMappingStore --- diff --git a/docset/winserver2022-ps/nps/Export-NpsConfiguration.md b/docset/winserver2022-ps/nps/Export-NpsConfiguration.md index 6ab1bdab7b..ed3ef9e43f 100644 --- a/docset/winserver2022-ps/nps/Export-NpsConfiguration.md +++ b/docset/winserver2022-ps/nps/Export-NpsConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NPS.Commands.dll-Help.xml Module Name: NPS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nps/export-npsconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nps/export-npsconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-NpsConfiguration --- diff --git a/docset/winserver2022-ps/nps/Get-NpsRadiusClient.md b/docset/winserver2022-ps/nps/Get-NpsRadiusClient.md index b0adf6690b..997fe0a6f9 100644 --- a/docset/winserver2022-ps/nps/Get-NpsRadiusClient.md +++ b/docset/winserver2022-ps/nps/Get-NpsRadiusClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NPS.Commands.dll-Help.xml Module Name: NPS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nps/get-npsradiusclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nps/get-npsradiusclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NpsRadiusClient --- diff --git a/docset/winserver2022-ps/nps/Get-NpsSharedSecretTemplate.md b/docset/winserver2022-ps/nps/Get-NpsSharedSecretTemplate.md index 15cb39e607..f04d1f938d 100644 --- a/docset/winserver2022-ps/nps/Get-NpsSharedSecretTemplate.md +++ b/docset/winserver2022-ps/nps/Get-NpsSharedSecretTemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NPS.Commands.dll-Help.xml Module Name: NPS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nps/get-npssharedsecrettemplate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nps/get-npssharedsecrettemplate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NpsSharedSecretTemplate --- diff --git a/docset/winserver2022-ps/nps/Import-NpsConfiguration.md b/docset/winserver2022-ps/nps/Import-NpsConfiguration.md index 72c3ac8791..f58492d822 100644 --- a/docset/winserver2022-ps/nps/Import-NpsConfiguration.md +++ b/docset/winserver2022-ps/nps/Import-NpsConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NPS.Commands.dll-Help.xml Module Name: NPS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nps/import-npsconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nps/import-npsconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-NpsConfiguration --- diff --git a/docset/winserver2022-ps/nps/New-NpsRadiusClient.md b/docset/winserver2022-ps/nps/New-NpsRadiusClient.md index 6b2a61b630..b485a21281 100644 --- a/docset/winserver2022-ps/nps/New-NpsRadiusClient.md +++ b/docset/winserver2022-ps/nps/New-NpsRadiusClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NPS.Commands.dll-Help.xml Module Name: NPS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nps/new-npsradiusclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nps/new-npsradiusclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NpsRadiusClient --- diff --git a/docset/winserver2022-ps/nps/Remove-NpsRadiusClient.md b/docset/winserver2022-ps/nps/Remove-NpsRadiusClient.md index 08343821e2..cdbfb86ff4 100644 --- a/docset/winserver2022-ps/nps/Remove-NpsRadiusClient.md +++ b/docset/winserver2022-ps/nps/Remove-NpsRadiusClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NPS.Commands.dll-Help.xml Module Name: NPS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nps/remove-npsradiusclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nps/remove-npsradiusclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NpsRadiusClient --- diff --git a/docset/winserver2022-ps/nps/Set-NpsRadiusClient.md b/docset/winserver2022-ps/nps/Set-NpsRadiusClient.md index 9d5ba869f0..c327ac1168 100644 --- a/docset/winserver2022-ps/nps/Set-NpsRadiusClient.md +++ b/docset/winserver2022-ps/nps/Set-NpsRadiusClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.NPS.Commands.dll-Help.xml Module Name: NPS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/nps/set-npsradiusclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/nps/set-npsradiusclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NpsRadiusClient --- diff --git a/docset/winserver2022-ps/pcsvdevice/Clear-PcsvDeviceLog.md b/docset/winserver2022-ps/pcsvdevice/Clear-PcsvDeviceLog.md index 84d34c3202..e20350035c 100644 --- a/docset/winserver2022-ps/pcsvdevice/Clear-PcsvDeviceLog.md +++ b/docset/winserver2022-ps/pcsvdevice/Clear-PcsvDeviceLog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: CIM_PhysicalComputerSystemView.cdxml-help.xml Module Name: PCSVDevice ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pcsvdevice/clear-pcsvdevicelog?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pcsvdevice/clear-pcsvdevicelog?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-PcsvDeviceLog --- diff --git a/docset/winserver2022-ps/pcsvdevice/Get-PcsvDevice.md b/docset/winserver2022-ps/pcsvdevice/Get-PcsvDevice.md index fe19116d19..2561f9ad8e 100644 --- a/docset/winserver2022-ps/pcsvdevice/Get-PcsvDevice.md +++ b/docset/winserver2022-ps/pcsvdevice/Get-PcsvDevice.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: CIM_PhysicalComputerSystemView.cdxml-help.xml Module Name: PCSVDevice ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pcsvdevice/get-pcsvdevice?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pcsvdevice/get-pcsvdevice?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PcsvDevice --- diff --git a/docset/winserver2022-ps/pcsvdevice/Get-PcsvDeviceLog.md b/docset/winserver2022-ps/pcsvdevice/Get-PcsvDeviceLog.md index 2a22e3eeda..6f193c6d98 100644 --- a/docset/winserver2022-ps/pcsvdevice/Get-PcsvDeviceLog.md +++ b/docset/winserver2022-ps/pcsvdevice/Get-PcsvDeviceLog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: CIM_PhysicalComputerSystemView.cdxml-help.xml Module Name: PCSVDevice ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pcsvdevice/get-pcsvdevicelog?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pcsvdevice/get-pcsvdevicelog?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PcsvDeviceLog --- diff --git a/docset/winserver2022-ps/pcsvdevice/Restart-PcsvDevice.md b/docset/winserver2022-ps/pcsvdevice/Restart-PcsvDevice.md index 7f08151aff..323fd61e79 100644 --- a/docset/winserver2022-ps/pcsvdevice/Restart-PcsvDevice.md +++ b/docset/winserver2022-ps/pcsvdevice/Restart-PcsvDevice.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: CIM_PhysicalComputerSystemView.cdxml-help.xml Module Name: PCSVDevice ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pcsvdevice/restart-pcsvdevice?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pcsvdevice/restart-pcsvdevice?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restart-PcsvDevice --- diff --git a/docset/winserver2022-ps/pcsvdevice/Set-PcsvDeviceBootConfiguration.md b/docset/winserver2022-ps/pcsvdevice/Set-PcsvDeviceBootConfiguration.md index 7ddc258a94..d0fa8871cc 100644 --- a/docset/winserver2022-ps/pcsvdevice/Set-PcsvDeviceBootConfiguration.md +++ b/docset/winserver2022-ps/pcsvdevice/Set-PcsvDeviceBootConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: CIM_PhysicalComputerSystemView.cdxml-help.xml Module Name: PCSVDevice ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pcsvdevice/set-pcsvdevicebootconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pcsvdevice/set-pcsvdevicebootconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-PcsvDeviceBootConfiguration --- diff --git a/docset/winserver2022-ps/pcsvdevice/Set-PcsvDeviceNetworkConfiguration.md b/docset/winserver2022-ps/pcsvdevice/Set-PcsvDeviceNetworkConfiguration.md index 8aad86c2aa..dc976f270d 100644 --- a/docset/winserver2022-ps/pcsvdevice/Set-PcsvDeviceNetworkConfiguration.md +++ b/docset/winserver2022-ps/pcsvdevice/Set-PcsvDeviceNetworkConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: CIM_PhysicalComputerSystemView.cdxml-help.xml Module Name: PCSVDevice ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pcsvdevice/set-pcsvdevicenetworkconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pcsvdevice/set-pcsvdevicenetworkconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-PcsvDeviceNetworkConfiguration --- diff --git a/docset/winserver2022-ps/pcsvdevice/Set-PcsvDeviceUserPassword.md b/docset/winserver2022-ps/pcsvdevice/Set-PcsvDeviceUserPassword.md index 3de9284f63..d723a23894 100644 --- a/docset/winserver2022-ps/pcsvdevice/Set-PcsvDeviceUserPassword.md +++ b/docset/winserver2022-ps/pcsvdevice/Set-PcsvDeviceUserPassword.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: CIM_PhysicalComputerSystemView.cdxml-help.xml Module Name: PCSVDevice ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pcsvdevice/set-pcsvdeviceuserpassword?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pcsvdevice/set-pcsvdeviceuserpassword?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-PcsvDeviceUserPassword --- diff --git a/docset/winserver2022-ps/pcsvdevice/Start-PcsvDevice.md b/docset/winserver2022-ps/pcsvdevice/Start-PcsvDevice.md index 82a1c9f624..ab830c2f07 100644 --- a/docset/winserver2022-ps/pcsvdevice/Start-PcsvDevice.md +++ b/docset/winserver2022-ps/pcsvdevice/Start-PcsvDevice.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: CIM_PhysicalComputerSystemView.cdxml-help.xml Module Name: PCSVDevice ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pcsvdevice/start-pcsvdevice?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pcsvdevice/start-pcsvdevice?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-PcsvDevice --- diff --git a/docset/winserver2022-ps/pcsvdevice/Stop-PcsvDevice.md b/docset/winserver2022-ps/pcsvdevice/Stop-PcsvDevice.md index 370313fd7e..1622094c2d 100644 --- a/docset/winserver2022-ps/pcsvdevice/Stop-PcsvDevice.md +++ b/docset/winserver2022-ps/pcsvdevice/Stop-PcsvDevice.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: CIM_PhysicalComputerSystemView.cdxml-help.xml Module Name: PCSVDevice ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pcsvdevice/stop-pcsvdevice?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pcsvdevice/stop-pcsvdevice?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-PcsvDevice --- diff --git a/docset/winserver2022-ps/persistentmemory/Get-PmemDedicatedMemory.md b/docset/winserver2022-ps/persistentmemory/Get-PmemDedicatedMemory.md index 1287d3389a..e792f04ab0 100644 --- a/docset/winserver2022-ps/persistentmemory/Get-PmemDedicatedMemory.md +++ b/docset/winserver2022-ps/persistentmemory/Get-PmemDedicatedMemory.md @@ -2,9 +2,9 @@ description: The Get-PmemDedicatedMemory cmdlet gets dedicated persistent memory. external help file: Microsoft.Storage.PersistentMemory.Management.Commands.dll-Help.xml Module Name: PersistentMemory -online version: https://docs.microsoft.com/powershell/module/persistentmemory/get-pmemdedicatedmemory?view=windowsserver2022-ps&wt.mc_id=ps-gethelp -schema: 2.0.0 ms.date: 09/24/2021 +online version: https://learn.microsoft.com/powershell/module/persistentmemory/get-pmemdedicatedmemory?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 title: Get-PmemDedicatedMemory --- diff --git a/docset/winserver2022-ps/persistentmemory/Get-PmemDisk.md b/docset/winserver2022-ps/persistentmemory/Get-PmemDisk.md index a374a1c0ed..71b518e3bf 100644 --- a/docset/winserver2022-ps/persistentmemory/Get-PmemDisk.md +++ b/docset/winserver2022-ps/persistentmemory/Get-PmemDisk.md @@ -2,9 +2,9 @@ description: The Get-PmemDisk cmdlet gets persistent memory disks. external help file: Microsoft.Storage.PersistentMemory.Management.Commands.dll-Help.xml Module Name: PersistentMemory -online version: https://docs.microsoft.com/powershell/module/persistentmemory/get-pmemdisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp -schema: 2.0.0 ms.date: 09/24/2021 +online version: https://learn.microsoft.com/powershell/module/persistentmemory/get-pmemdisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 title: Get-PmemDisk --- diff --git a/docset/winserver2022-ps/persistentmemory/Get-PmemPhysicalDevice.md b/docset/winserver2022-ps/persistentmemory/Get-PmemPhysicalDevice.md index 910d12a490..fb2c644473 100644 --- a/docset/winserver2022-ps/persistentmemory/Get-PmemPhysicalDevice.md +++ b/docset/winserver2022-ps/persistentmemory/Get-PmemPhysicalDevice.md @@ -2,9 +2,9 @@ description: The Get-PmemPhysicalDevice cmdlet gets the physical devices associated with persistent memory. external help file: Microsoft.Storage.PersistentMemory.Management.Commands.dll-Help.xml Module Name: PersistentMemory -online version: https://docs.microsoft.com/powershell/module/persistentmemory/get-pmemphysicaldevice?view=windowsserver2022-ps&wt.mc_id=ps-gethelp -schema: 2.0.0 ms.date: 09/24/2021 +online version: https://learn.microsoft.com/powershell/module/persistentmemory/get-pmemphysicaldevice?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 title: Get-PmemPhysicalDevice --- diff --git a/docset/winserver2022-ps/persistentmemory/Get-PmemUnusedRegion.md b/docset/winserver2022-ps/persistentmemory/Get-PmemUnusedRegion.md index ff5c13a295..a3691843b5 100644 --- a/docset/winserver2022-ps/persistentmemory/Get-PmemUnusedRegion.md +++ b/docset/winserver2022-ps/persistentmemory/Get-PmemUnusedRegion.md @@ -2,9 +2,9 @@ description: The Get-PmemUnusedRegion cmdlet gets unused regions in persistent memory. external help file: Microsoft.Storage.PersistentMemory.Management.Commands.dll-Help.xml Module Name: PersistentMemory -online version: https://docs.microsoft.com/powershell/module/persistentmemory/get-pmemUnusedregion?view=windowsserver2022-ps&wt.mc_id=ps-gethelp -schema: 2.0.0 ms.date: 09/24/2021 +online version: https://learn.microsoft.com/powershell/module/persistentmemory/get-pmemUnusedregion?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 title: Get-PmemUnusedRegion --- diff --git a/docset/winserver2022-ps/persistentmemory/Initialize-PmemPhysicalDevice.md b/docset/winserver2022-ps/persistentmemory/Initialize-PmemPhysicalDevice.md index 429e831f81..f906a8285c 100644 --- a/docset/winserver2022-ps/persistentmemory/Initialize-PmemPhysicalDevice.md +++ b/docset/winserver2022-ps/persistentmemory/Initialize-PmemPhysicalDevice.md @@ -2,9 +2,9 @@ description: The Initialize-PmemPhysicalDevice cmdlet initializes the label storage area on a physical persistent memory device. external help file: Microsoft.Storage.PersistentMemory.Management.Commands.dll-Help.xml Module Name: PersistentMemory -online version: https://docs.microsoft.com/powershell/module/persistentmemory/initialize-pmemphysicaldevice?view=windowsserver2022-ps&wt.mc_id=ps-gethelp -schema: 2.0.0 ms.date: 09/24/2021 +online version: https://learn.microsoft.com/powershell/module/persistentmemory/initialize-pmemphysicaldevice?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 title: Initialize-PmemPhysicalDevice --- diff --git a/docset/winserver2022-ps/persistentmemory/New-PmemDedicatedMemory.md b/docset/winserver2022-ps/persistentmemory/New-PmemDedicatedMemory.md index ce0ebdd1e2..ba263f5a7e 100644 --- a/docset/winserver2022-ps/persistentmemory/New-PmemDedicatedMemory.md +++ b/docset/winserver2022-ps/persistentmemory/New-PmemDedicatedMemory.md @@ -2,9 +2,9 @@ description: The New-PmemDedicatedMemory cmdlet creates dedicated persistent memory in the specified region. external help file: Microsoft.Storage.PersistentMemory.Management.Commands.dll-Help.xml Module Name: PersistentMemory -online version: https://docs.microsoft.com/powershell/module/persistentmemory/new-pmemdedicatedmemory?view=windowsserver2022-ps&wt.mc_id=ps-gethelp -schema: 2.0.0 ms.date: 09/24/2021 +online version: https://learn.microsoft.com/powershell/module/persistentmemory/new-pmemdedicatedmemory?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 title: New-PmemDedicatedMemory --- diff --git a/docset/winserver2022-ps/persistentmemory/New-PmemDisk.md b/docset/winserver2022-ps/persistentmemory/New-PmemDisk.md index f6c6436eda..5fed03a73b 100644 --- a/docset/winserver2022-ps/persistentmemory/New-PmemDisk.md +++ b/docset/winserver2022-ps/persistentmemory/New-PmemDisk.md @@ -2,9 +2,9 @@ description: The New-PmemDisk cmdlet creates a persistent memory disk in an unused persistent memory region or a simulated persistent memory disk. external help file: Microsoft.Storage.PersistentMemory.Management.Commands.dll-Help.xml Module Name: PersistentMemory -online version: https://docs.microsoft.com/powershell/module/persistentmemory/new-pmemdisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp -schema: 2.0.0 ms.date: 09/24/2021 +online version: https://learn.microsoft.com/powershell/module/persistentmemory/new-pmemdisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 title: New-PmemDisk --- diff --git a/docset/winserver2022-ps/persistentmemory/PersistentMemory.md b/docset/winserver2022-ps/persistentmemory/PersistentMemory.md index f3b179ca31..c68ede9600 100644 --- a/docset/winserver2022-ps/persistentmemory/PersistentMemory.md +++ b/docset/winserver2022-ps/persistentmemory/PersistentMemory.md @@ -1,10 +1,10 @@ --- description: These articles document the persistent memory cmdlets. Persistent memory is a type of non-volatile media that fits in a standard DIMM memory slot. -Module Name: PersistentMemory -Module Guid: e5905ed9-12bc-4765-b20d-40a37d69c3dd Download Help Link: https://aka.ms/winsvr-2022-pshelp Help Version: 1.0.0.0 Locale: en-US +Module Guid: e5905ed9-12bc-4765-b20d-40a37d69c3dd +Module Name: PersistentMemory ms.date: 09/24/2021 title: PersistentMemory --- diff --git a/docset/winserver2022-ps/persistentmemory/Remove-PmemDedicatedMemory.md b/docset/winserver2022-ps/persistentmemory/Remove-PmemDedicatedMemory.md index 775e16eae7..d6e1e10e00 100644 --- a/docset/winserver2022-ps/persistentmemory/Remove-PmemDedicatedMemory.md +++ b/docset/winserver2022-ps/persistentmemory/Remove-PmemDedicatedMemory.md @@ -2,9 +2,9 @@ description: The Remove-PmemDedicatedMemory cmdlet gets dedicated persistent memory. external help file: Microsoft.Storage.PersistentMemory.Management.Commands.dll-Help.xml Module Name: PersistentMemory -online version: https://docs.microsoft.com/powershell/module/persistentmemory/remove-pmemdedicatedmemory?view=windowsserver2022-ps&wt.mc_id=ps-gethelp -schema: 2.0.0 ms.date: 09/24/2021 +online version: https://learn.microsoft.com/powershell/module/persistentmemory/remove-pmemdedicatedmemory?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 title: Remove-PmemDedicatedMemory --- diff --git a/docset/winserver2022-ps/persistentmemory/Remove-PmemDisk.md b/docset/winserver2022-ps/persistentmemory/Remove-PmemDisk.md index 29c267b9ff..0e435df71b 100644 --- a/docset/winserver2022-ps/persistentmemory/Remove-PmemDisk.md +++ b/docset/winserver2022-ps/persistentmemory/Remove-PmemDisk.md @@ -2,9 +2,9 @@ description: The Remove-PmemDisk cmdlet removes persistent memory disks. external help file: Microsoft.Storage.PersistentMemory.Management.Commands.dll-Help.xml Module Name: PersistentMemory -online version: https://docs.microsoft.com/powershell/module/persistentmemory/remove-pmemfisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp -schema: 2.0.0 ms.date: 09/24/2021 +online version: https://learn.microsoft.com/powershell/module/persistentmemory/remove-pmemfisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 title: Remove-PmemDisk --- diff --git a/docset/winserver2022-ps/pki/Add-CertificateEnrollmentPolicyServer.md b/docset/winserver2022-ps/pki/Add-CertificateEnrollmentPolicyServer.md index ecb268e81b..fc8b19a27d 100644 --- a/docset/winserver2022-ps/pki/Add-CertificateEnrollmentPolicyServer.md +++ b/docset/winserver2022-ps/pki/Add-CertificateEnrollmentPolicyServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pki/add-certificateenrollmentpolicyserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/add-certificateenrollmentpolicyserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-CertificateEnrollmentPolicyServer --- diff --git a/docset/winserver2022-ps/pki/Export-Certificate.md b/docset/winserver2022-ps/pki/Export-Certificate.md index 8e7e443d7b..c7ecaa7087 100644 --- a/docset/winserver2022-ps/pki/Export-Certificate.md +++ b/docset/winserver2022-ps/pki/Export-Certificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pki/export-certificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/export-certificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-Certificate --- diff --git a/docset/winserver2022-ps/pki/Export-PfxCertificate.md b/docset/winserver2022-ps/pki/Export-PfxCertificate.md index 2e66c4bdc4..f4281e689e 100644 --- a/docset/winserver2022-ps/pki/Export-PfxCertificate.md +++ b/docset/winserver2022-ps/pki/Export-PfxCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pki/export-pfxcertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/export-pfxcertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-PfxCertificate --- diff --git a/docset/winserver2022-ps/pki/Get-Certificate.md b/docset/winserver2022-ps/pki/Get-Certificate.md index 230a67669e..e96cb452ff 100644 --- a/docset/winserver2022-ps/pki/Get-Certificate.md +++ b/docset/winserver2022-ps/pki/Get-Certificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pki/get-certificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/get-certificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-Certificate --- diff --git a/docset/winserver2022-ps/pki/Get-CertificateAutoEnrollmentPolicy.md b/docset/winserver2022-ps/pki/Get-CertificateAutoEnrollmentPolicy.md index 9abe150818..7dbeb548b9 100644 --- a/docset/winserver2022-ps/pki/Get-CertificateAutoEnrollmentPolicy.md +++ b/docset/winserver2022-ps/pki/Get-CertificateAutoEnrollmentPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pki/get-certificateautoenrollmentpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/get-certificateautoenrollmentpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CertificateAutoEnrollmentPolicy --- diff --git a/docset/winserver2022-ps/pki/Get-CertificateEnrollmentPolicyServer.md b/docset/winserver2022-ps/pki/Get-CertificateEnrollmentPolicyServer.md index b02e7c250f..7440353cc8 100644 --- a/docset/winserver2022-ps/pki/Get-CertificateEnrollmentPolicyServer.md +++ b/docset/winserver2022-ps/pki/Get-CertificateEnrollmentPolicyServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pki/get-certificateenrollmentpolicyserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/get-certificateenrollmentpolicyserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CertificateEnrollmentPolicyServer --- diff --git a/docset/winserver2022-ps/pki/Get-CertificateNotificationTask.md b/docset/winserver2022-ps/pki/Get-CertificateNotificationTask.md index 643fc49e98..d48b789be6 100644 --- a/docset/winserver2022-ps/pki/Get-CertificateNotificationTask.md +++ b/docset/winserver2022-ps/pki/Get-CertificateNotificationTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pki/get-certificatenotificationtask?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/get-certificatenotificationtask?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CertificateNotificationTask --- diff --git a/docset/winserver2022-ps/pki/Get-PfxData.md b/docset/winserver2022-ps/pki/Get-PfxData.md index 839c109038..0c1367f369 100644 --- a/docset/winserver2022-ps/pki/Get-PfxData.md +++ b/docset/winserver2022-ps/pki/Get-PfxData.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pki/get-pfxdata?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/get-pfxdata?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PfxData --- diff --git a/docset/winserver2022-ps/pki/Import-Certificate.md b/docset/winserver2022-ps/pki/Import-Certificate.md index 18af74138d..8e2d6d11d5 100644 --- a/docset/winserver2022-ps/pki/Import-Certificate.md +++ b/docset/winserver2022-ps/pki/Import-Certificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pki/import-certificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/import-certificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-Certificate --- diff --git a/docset/winserver2022-ps/pki/Import-PfxCertificate.md b/docset/winserver2022-ps/pki/Import-PfxCertificate.md index f53cbc583e..2dc4e20eda 100644 --- a/docset/winserver2022-ps/pki/Import-PfxCertificate.md +++ b/docset/winserver2022-ps/pki/Import-PfxCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pki/import-pfxcertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/import-pfxcertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-PfxCertificate --- diff --git a/docset/winserver2022-ps/pki/New-CertificateNotificationTask.md b/docset/winserver2022-ps/pki/New-CertificateNotificationTask.md index c8d2850153..abca7edaca 100644 --- a/docset/winserver2022-ps/pki/New-CertificateNotificationTask.md +++ b/docset/winserver2022-ps/pki/New-CertificateNotificationTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pki/new-certificatenotificationtask?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/new-certificatenotificationtask?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-CertificateNotificationTask --- diff --git a/docset/winserver2022-ps/pki/New-SelfSignedCertificate.md b/docset/winserver2022-ps/pki/New-SelfSignedCertificate.md index 0883875f73..701e9f0668 100644 --- a/docset/winserver2022-ps/pki/New-SelfSignedCertificate.md +++ b/docset/winserver2022-ps/pki/New-SelfSignedCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 10/06/2019 -online version: https://docs.microsoft.com/powershell/module/pki/new-selfsignedcertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/new-selfsignedcertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-SelfSignedCertificate --- diff --git a/docset/winserver2022-ps/pki/Remove-CertificateEnrollmentPolicyServer.md b/docset/winserver2022-ps/pki/Remove-CertificateEnrollmentPolicyServer.md index abf71aebc0..8233aea195 100644 --- a/docset/winserver2022-ps/pki/Remove-CertificateEnrollmentPolicyServer.md +++ b/docset/winserver2022-ps/pki/Remove-CertificateEnrollmentPolicyServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pki/remove-certificateenrollmentpolicyserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/remove-certificateenrollmentpolicyserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-CertificateEnrollmentPolicyServer --- diff --git a/docset/winserver2022-ps/pki/Remove-CertificateNotificationTask.md b/docset/winserver2022-ps/pki/Remove-CertificateNotificationTask.md index 36e18d53ff..4cacc595f4 100644 --- a/docset/winserver2022-ps/pki/Remove-CertificateNotificationTask.md +++ b/docset/winserver2022-ps/pki/Remove-CertificateNotificationTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pki/remove-certificatenotificationtask?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/remove-certificatenotificationtask?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-CertificateNotificationTask --- diff --git a/docset/winserver2022-ps/pki/Set-CertificateAutoEnrollmentPolicy.md b/docset/winserver2022-ps/pki/Set-CertificateAutoEnrollmentPolicy.md index 5f4ddeceb5..e4d0727133 100644 --- a/docset/winserver2022-ps/pki/Set-CertificateAutoEnrollmentPolicy.md +++ b/docset/winserver2022-ps/pki/Set-CertificateAutoEnrollmentPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pki/set-certificateautoenrollmentpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/set-certificateautoenrollmentpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-CertificateAutoEnrollmentPolicy --- diff --git a/docset/winserver2022-ps/pki/Switch-Certificate.md b/docset/winserver2022-ps/pki/Switch-Certificate.md index 1cc1a006d6..254afd3915 100644 --- a/docset/winserver2022-ps/pki/Switch-Certificate.md +++ b/docset/winserver2022-ps/pki/Switch-Certificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pki/switch-certificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/switch-certificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Switch-Certificate --- diff --git a/docset/winserver2022-ps/pki/Test-Certificate.md b/docset/winserver2022-ps/pki/Test-Certificate.md index ec6c6e5551..af82868ee5 100644 --- a/docset/winserver2022-ps/pki/Test-Certificate.md +++ b/docset/winserver2022-ps/pki/Test-Certificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.CertificateServices.PKIClient.Cmdlets.dll-Help.xml Module Name: pki ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pki/test-certificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pki/test-certificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-Certificate --- diff --git a/docset/winserver2022-ps/platformidentifier/Get-PlatformIdentifier.md b/docset/winserver2022-ps/platformidentifier/Get-PlatformIdentifier.md index 357c4c5467..a1837577d4 100644 --- a/docset/winserver2022-ps/platformidentifier/Get-PlatformIdentifier.md +++ b/docset/winserver2022-ps/platformidentifier/Get-PlatformIdentifier.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_PlatformIdentifier.cdxml-help.xml Module Name: PlatformIdentifier ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/platformidentifier/get-platformidentifier?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/platformidentifier/get-platformidentifier?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PlatformIdentifier --- diff --git a/docset/winserver2022-ps/pnpdevice/Disable-PnpDevice.md b/docset/winserver2022-ps/pnpdevice/Disable-PnpDevice.md index c76df3bbcf..34b4b3bbd9 100644 --- a/docset/winserver2022-ps/pnpdevice/Disable-PnpDevice.md +++ b/docset/winserver2022-ps/pnpdevice/Disable-PnpDevice.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PnpDevice.cdxml-help.xml Module Name: PnpDevice ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pnpdevice/disable-pnpdevice?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pnpdevice/disable-pnpdevice?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-PnpDevice --- diff --git a/docset/winserver2022-ps/pnpdevice/Enable-PnpDevice.md b/docset/winserver2022-ps/pnpdevice/Enable-PnpDevice.md index 9c9fc207ef..8322a37cde 100644 --- a/docset/winserver2022-ps/pnpdevice/Enable-PnpDevice.md +++ b/docset/winserver2022-ps/pnpdevice/Enable-PnpDevice.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PnpDevice.cdxml-help.xml Module Name: PnpDevice ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pnpdevice/enable-pnpdevice?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pnpdevice/enable-pnpdevice?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-PnpDevice --- diff --git a/docset/winserver2022-ps/pnpdevice/Get-PnpDevice.md b/docset/winserver2022-ps/pnpdevice/Get-PnpDevice.md index 5f22c50c69..0417462976 100644 --- a/docset/winserver2022-ps/pnpdevice/Get-PnpDevice.md +++ b/docset/winserver2022-ps/pnpdevice/Get-PnpDevice.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PnpDevice.cdxml-help.xml Module Name: PnpDevice ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pnpdevice/get-pnpdevice?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pnpdevice/get-pnpdevice?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PnpDevice --- diff --git a/docset/winserver2022-ps/pnpdevice/Get-PnpDeviceProperty.md b/docset/winserver2022-ps/pnpdevice/Get-PnpDeviceProperty.md index ab44182430..869a059162 100644 --- a/docset/winserver2022-ps/pnpdevice/Get-PnpDeviceProperty.md +++ b/docset/winserver2022-ps/pnpdevice/Get-PnpDeviceProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PnpDevice.cdxml-help.xml Module Name: PnpDevice ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/pnpdevice/get-pnpdeviceproperty?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/pnpdevice/get-pnpdeviceproperty?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PnpDeviceProperty --- diff --git a/docset/winserver2022-ps/printmanagement/Add-Printer.md b/docset/winserver2022-ps/printmanagement/Add-Printer.md index b76779d360..8bf751162e 100644 --- a/docset/winserver2022-ps/printmanagement/Add-Printer.md +++ b/docset/winserver2022-ps/printmanagement/Add-Printer.md @@ -2,8 +2,8 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: MSFT_Printer_v1.0.cdxml-help.xml Module Name: PrintManagement -ms.date: 9/20/2021 -online version: https://docs.microsoft.com/powershell/module/printmanagement/add-printer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +ms.date: 09/20/2021 +online version: https://learn.microsoft.com/powershell/module/printmanagement/add-printer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-Printer --- diff --git a/docset/winserver2022-ps/printmanagement/Add-PrinterDriver.md b/docset/winserver2022-ps/printmanagement/Add-PrinterDriver.md index e7e40164e6..518cc69e10 100644 --- a/docset/winserver2022-ps/printmanagement/Add-PrinterDriver.md +++ b/docset/winserver2022-ps/printmanagement/Add-PrinterDriver.md @@ -2,8 +2,8 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: MSFT_PrinterDriver_v1.0.cdxml-help.xml Module Name: PrintManagement -ms.date: 9/20/2021 -online version: https://docs.microsoft.com/powershell/module/printmanagement/add-printerdriver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +ms.date: 09/20/2021 +online version: https://learn.microsoft.com/powershell/module/printmanagement/add-printerdriver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-PrinterDriver --- diff --git a/docset/winserver2022-ps/printmanagement/Add-PrinterPort.md b/docset/winserver2022-ps/printmanagement/Add-PrinterPort.md index 1330178219..9f515401e4 100644 --- a/docset/winserver2022-ps/printmanagement/Add-PrinterPort.md +++ b/docset/winserver2022-ps/printmanagement/Add-PrinterPort.md @@ -2,8 +2,8 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: MSFT_PrinterPortTasks_v1.0.cdxml-help.xml Module Name: PrintManagement -ms.date: 9/20/2021 -online version: https://docs.microsoft.com/powershell/module/printmanagement/add-printerport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +ms.date: 09/20/2021 +online version: https://learn.microsoft.com/powershell/module/printmanagement/add-printerport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-PrinterPort --- diff --git a/docset/winserver2022-ps/printmanagement/Get-PrintConfiguration.md b/docset/winserver2022-ps/printmanagement/Get-PrintConfiguration.md index 37ba81429a..b678789c75 100644 --- a/docset/winserver2022-ps/printmanagement/Get-PrintConfiguration.md +++ b/docset/winserver2022-ps/printmanagement/Get-PrintConfiguration.md @@ -2,8 +2,8 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: MSFT_PrinterConfiguration_v1.0.cdxml-help.xml Module Name: PrintManagement -ms.date: 9/20/2021 -online version: https://docs.microsoft.com/powershell/module/printmanagement/get-printconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +ms.date: 09/20/2021 +online version: https://learn.microsoft.com/powershell/module/printmanagement/get-printconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PrintConfiguration --- diff --git a/docset/winserver2022-ps/printmanagement/Get-PrintJob.md b/docset/winserver2022-ps/printmanagement/Get-PrintJob.md index 8c74634c1d..4c787a7829 100644 --- a/docset/winserver2022-ps/printmanagement/Get-PrintJob.md +++ b/docset/winserver2022-ps/printmanagement/Get-PrintJob.md @@ -2,8 +2,8 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: MSFT_PrintJob_v1.0.cdxml-help.xml Module Name: PrintManagement -ms.date: 9/20/2021 -online version: https://docs.microsoft.com/powershell/module/printmanagement/get-printjob?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +ms.date: 09/20/2021 +online version: https://learn.microsoft.com/powershell/module/printmanagement/get-printjob?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PrintJob --- diff --git a/docset/winserver2022-ps/printmanagement/Get-Printer.md b/docset/winserver2022-ps/printmanagement/Get-Printer.md index 3873237eb5..03c2e1cf74 100644 --- a/docset/winserver2022-ps/printmanagement/Get-Printer.md +++ b/docset/winserver2022-ps/printmanagement/Get-Printer.md @@ -2,8 +2,8 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: MSFT_Printer_v1.0.cdxml-help.xml Module Name: PrintManagement -ms.date: 9/20/2021 -online version: https://docs.microsoft.com/powershell/module/printmanagement/get-printer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +ms.date: 09/20/2021 +online version: https://learn.microsoft.com/powershell/module/printmanagement/get-printer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-Printer --- diff --git a/docset/winserver2022-ps/printmanagement/Get-PrinterDriver.md b/docset/winserver2022-ps/printmanagement/Get-PrinterDriver.md index 1275cb91ae..f49894b1e0 100644 --- a/docset/winserver2022-ps/printmanagement/Get-PrinterDriver.md +++ b/docset/winserver2022-ps/printmanagement/Get-PrinterDriver.md @@ -2,8 +2,8 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: MSFT_PrinterDriver_v1.0.cdxml-help.xml Module Name: PrintManagement -ms.date: 9/20/2021 -online version: https://docs.microsoft.com/powershell/module/printmanagement/get-printerdriver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +ms.date: 09/20/2021 +online version: https://learn.microsoft.com/powershell/module/printmanagement/get-printerdriver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PrinterDriver --- diff --git a/docset/winserver2022-ps/printmanagement/Get-PrinterPort.md b/docset/winserver2022-ps/printmanagement/Get-PrinterPort.md index eee46b4eae..6958b81958 100644 --- a/docset/winserver2022-ps/printmanagement/Get-PrinterPort.md +++ b/docset/winserver2022-ps/printmanagement/Get-PrinterPort.md @@ -2,8 +2,8 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: MSFT_PrinterPort_v1.0.cdxml-help.xml Module Name: PrintManagement -ms.date: 9/20/2021 -online version: https://docs.microsoft.com/powershell/module/printmanagement/get-printerport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +ms.date: 09/20/2021 +online version: https://learn.microsoft.com/powershell/module/printmanagement/get-printerport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PrinterPort --- diff --git a/docset/winserver2022-ps/printmanagement/Get-PrinterProperty.md b/docset/winserver2022-ps/printmanagement/Get-PrinterProperty.md index a4a81b3385..8dd0848f7b 100644 --- a/docset/winserver2022-ps/printmanagement/Get-PrinterProperty.md +++ b/docset/winserver2022-ps/printmanagement/Get-PrinterProperty.md @@ -2,8 +2,8 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: MSFT_PrinterProperty_v1.0.cdxml-help.xml Module Name: PrintManagement -ms.date: 9/20/2021 -online version: https://docs.microsoft.com/powershell/module/printmanagement/get-printerproperty?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +ms.date: 09/20/2021 +online version: https://learn.microsoft.com/powershell/module/printmanagement/get-printerproperty?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PrinterProperty --- diff --git a/docset/winserver2022-ps/printmanagement/PrintManagement.md b/docset/winserver2022-ps/printmanagement/PrintManagement.md index 0292bc0390..0bf63fd36f 100644 --- a/docset/winserver2022-ps/printmanagement/PrintManagement.md +++ b/docset/winserver2022-ps/printmanagement/PrintManagement.md @@ -5,7 +5,7 @@ Help Version: 5.0.0.1 Locale: en-US Module Guid: 8466ae97-2c03-4385-a501-7e74cf6bb1df Module Name: PrintManagement -ms.date: 9/20/2021 +ms.date: 09/20/2021 title: PrintManagement --- diff --git a/docset/winserver2022-ps/printmanagement/Read-PrinterNfcTag.md b/docset/winserver2022-ps/printmanagement/Read-PrinterNfcTag.md index f92bc6044a..2a7a6a8ba2 100644 --- a/docset/winserver2022-ps/printmanagement/Read-PrinterNfcTag.md +++ b/docset/winserver2022-ps/printmanagement/Read-PrinterNfcTag.md @@ -2,8 +2,8 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: MSFT_PrinterNfcTagTasks_v1.0.cdxml-help.xml Module Name: PrintManagement -ms.date: 9/20/2021 -online version: https://docs.microsoft.com/powershell/module/printmanagement/read-printernfctag?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +ms.date: 09/20/2021 +online version: https://learn.microsoft.com/powershell/module/printmanagement/read-printernfctag?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Read-PrinterNfcTag --- diff --git a/docset/winserver2022-ps/printmanagement/Remove-PrintJob.md b/docset/winserver2022-ps/printmanagement/Remove-PrintJob.md index be7f22a983..3716cd6b04 100644 --- a/docset/winserver2022-ps/printmanagement/Remove-PrintJob.md +++ b/docset/winserver2022-ps/printmanagement/Remove-PrintJob.md @@ -2,8 +2,8 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: MSFT_PrintJob_v1.0.cdxml-help.xml Module Name: PrintManagement -ms.date: 9/20/2021 -online version: https://docs.microsoft.com/powershell/module/printmanagement/remove-printjob?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +ms.date: 09/20/2021 +online version: https://learn.microsoft.com/powershell/module/printmanagement/remove-printjob?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-PrintJob --- diff --git a/docset/winserver2022-ps/printmanagement/Remove-Printer.md b/docset/winserver2022-ps/printmanagement/Remove-Printer.md index f1abca25c3..d66b50d597 100644 --- a/docset/winserver2022-ps/printmanagement/Remove-Printer.md +++ b/docset/winserver2022-ps/printmanagement/Remove-Printer.md @@ -2,8 +2,8 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: MSFT_Printer_v1.0.cdxml-help.xml Module Name: PrintManagement -ms.date: 9/20/2021 -online version: https://docs.microsoft.com/powershell/module/printmanagement/remove-printer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +ms.date: 09/20/2021 +online version: https://learn.microsoft.com/powershell/module/printmanagement/remove-printer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-Printer --- diff --git a/docset/winserver2022-ps/printmanagement/Remove-PrinterDriver.md b/docset/winserver2022-ps/printmanagement/Remove-PrinterDriver.md index 67c64e5b4f..dde0f23f2d 100644 --- a/docset/winserver2022-ps/printmanagement/Remove-PrinterDriver.md +++ b/docset/winserver2022-ps/printmanagement/Remove-PrinterDriver.md @@ -2,8 +2,8 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: MSFT_PrinterDriver_v1.0.cdxml-help.xml Module Name: PrintManagement -ms.date: 9/20/2021 -online version: https://docs.microsoft.com/powershell/module/printmanagement/remove-printerdriver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +ms.date: 09/20/2021 +online version: https://learn.microsoft.com/powershell/module/printmanagement/remove-printerdriver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-PrinterDriver --- diff --git a/docset/winserver2022-ps/printmanagement/Remove-PrinterPort.md b/docset/winserver2022-ps/printmanagement/Remove-PrinterPort.md index 5f5fa91c0a..39160f9ff9 100644 --- a/docset/winserver2022-ps/printmanagement/Remove-PrinterPort.md +++ b/docset/winserver2022-ps/printmanagement/Remove-PrinterPort.md @@ -2,8 +2,8 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: MSFT_PrinterPort_v1.0.cdxml-help.xml Module Name: PrintManagement -ms.date: 9/20/2021 -online version: https://docs.microsoft.com/powershell/module/printmanagement/remove-printerport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +ms.date: 09/20/2021 +online version: https://learn.microsoft.com/powershell/module/printmanagement/remove-printerport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-PrinterPort --- diff --git a/docset/winserver2022-ps/printmanagement/Rename-Printer.md b/docset/winserver2022-ps/printmanagement/Rename-Printer.md index df2a1a022d..ce26029b8c 100644 --- a/docset/winserver2022-ps/printmanagement/Rename-Printer.md +++ b/docset/winserver2022-ps/printmanagement/Rename-Printer.md @@ -2,8 +2,8 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: MSFT_Printer_v1.0.cdxml-help.xml Module Name: PrintManagement -ms.date: 9/20/2021 -online version: https://docs.microsoft.com/powershell/module/printmanagement/rename-printer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +ms.date: 09/20/2021 +online version: https://learn.microsoft.com/powershell/module/printmanagement/rename-printer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-Printer --- diff --git a/docset/winserver2022-ps/printmanagement/Restart-PrintJob.md b/docset/winserver2022-ps/printmanagement/Restart-PrintJob.md index 7f512b60ca..e3256da81c 100644 --- a/docset/winserver2022-ps/printmanagement/Restart-PrintJob.md +++ b/docset/winserver2022-ps/printmanagement/Restart-PrintJob.md @@ -2,8 +2,8 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: MSFT_PrintJob_v1.0.cdxml-help.xml Module Name: PrintManagement -ms.date: 9/20/2021 -online version: https://docs.microsoft.com/powershell/module/printmanagement/restart-printjob?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +ms.date: 09/20/2021 +online version: https://learn.microsoft.com/powershell/module/printmanagement/restart-printjob?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restart-PrintJob --- diff --git a/docset/winserver2022-ps/printmanagement/Resume-PrintJob.md b/docset/winserver2022-ps/printmanagement/Resume-PrintJob.md index ad0b48fd63..448b789387 100644 --- a/docset/winserver2022-ps/printmanagement/Resume-PrintJob.md +++ b/docset/winserver2022-ps/printmanagement/Resume-PrintJob.md @@ -2,8 +2,8 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: MSFT_PrintJob_v1.0.cdxml-help.xml Module Name: PrintManagement -ms.date: 9/20/2021 -online version: https://docs.microsoft.com/powershell/module/printmanagement/resume-printjob?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +ms.date: 09/20/2021 +online version: https://learn.microsoft.com/powershell/module/printmanagement/resume-printjob?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-PrintJob --- diff --git a/docset/winserver2022-ps/printmanagement/Set-PrintConfiguration.md b/docset/winserver2022-ps/printmanagement/Set-PrintConfiguration.md index c270399ca0..b8f2313564 100644 --- a/docset/winserver2022-ps/printmanagement/Set-PrintConfiguration.md +++ b/docset/winserver2022-ps/printmanagement/Set-PrintConfiguration.md @@ -2,8 +2,8 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: MSFT_PrinterConfiguration_v1.0.cdxml-help.xml Module Name: PrintManagement -ms.date: 9/20/2021 -online version: https://docs.microsoft.com/powershell/module/printmanagement/set-printconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +ms.date: 09/20/2021 +online version: https://learn.microsoft.com/powershell/module/printmanagement/set-printconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-PrintConfiguration --- diff --git a/docset/winserver2022-ps/printmanagement/Set-Printer.md b/docset/winserver2022-ps/printmanagement/Set-Printer.md index 87eb355360..f1555aa1cd 100644 --- a/docset/winserver2022-ps/printmanagement/Set-Printer.md +++ b/docset/winserver2022-ps/printmanagement/Set-Printer.md @@ -2,8 +2,8 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: MSFT_Printer_v1.0.cdxml-help.xml Module Name: PrintManagement -ms.date: 9/20/2021 -online version: https://docs.microsoft.com/powershell/module/printmanagement/set-printer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +ms.date: 09/20/2021 +online version: https://learn.microsoft.com/powershell/module/printmanagement/set-printer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-Printer --- diff --git a/docset/winserver2022-ps/printmanagement/Set-PrinterProperty.md b/docset/winserver2022-ps/printmanagement/Set-PrinterProperty.md index 7384c2545f..7aaa9f63a1 100644 --- a/docset/winserver2022-ps/printmanagement/Set-PrinterProperty.md +++ b/docset/winserver2022-ps/printmanagement/Set-PrinterProperty.md @@ -2,8 +2,8 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: MSFT_PrinterProperty_v1.0.cdxml-help.xml Module Name: PrintManagement -ms.date: 9/20/2021 -online version: https://docs.microsoft.com/powershell/module/printmanagement/set-printerproperty?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +ms.date: 09/20/2021 +online version: https://learn.microsoft.com/powershell/module/printmanagement/set-printerproperty?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-PrinterProperty --- diff --git a/docset/winserver2022-ps/printmanagement/Suspend-PrintJob.md b/docset/winserver2022-ps/printmanagement/Suspend-PrintJob.md index 310e5c95e2..78c1514bc0 100644 --- a/docset/winserver2022-ps/printmanagement/Suspend-PrintJob.md +++ b/docset/winserver2022-ps/printmanagement/Suspend-PrintJob.md @@ -2,8 +2,8 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: MSFT_PrintJob_v1.0.cdxml-help.xml Module Name: PrintManagement -ms.date: 9/20/2021 -online version: https://docs.microsoft.com/powershell/module/printmanagement/suspend-printjob?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +ms.date: 09/20/2021 +online version: https://learn.microsoft.com/powershell/module/printmanagement/suspend-printjob?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-PrintJob --- diff --git a/docset/winserver2022-ps/printmanagement/Write-PrinterNfcTag.md b/docset/winserver2022-ps/printmanagement/Write-PrinterNfcTag.md index ee396f4b62..ccc42b6904 100644 --- a/docset/winserver2022-ps/printmanagement/Write-PrinterNfcTag.md +++ b/docset/winserver2022-ps/printmanagement/Write-PrinterNfcTag.md @@ -2,8 +2,8 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: MSFT_PrinterNfcTagTasks_v1.0.cdxml-help.xml Module Name: PrintManagement -ms.date: 9/20/2021 -online version: https://docs.microsoft.com/powershell/module/printmanagement/write-printernfctag?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +ms.date: 09/20/2021 +online version: https://learn.microsoft.com/powershell/module/printmanagement/write-printernfctag?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Write-PrinterNfcTag --- diff --git a/docset/winserver2022-ps/processmitigations/ConvertTo-ProcessMitigationPolicy.md b/docset/winserver2022-ps/processmitigations/ConvertTo-ProcessMitigationPolicy.md index 1d6a5e3f09..6fc0d03041 100644 --- a/docset/winserver2022-ps/processmitigations/ConvertTo-ProcessMitigationPolicy.md +++ b/docset/winserver2022-ps/processmitigations/ConvertTo-ProcessMitigationPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ProcessMitigations.Commands.dll-Help.xml Module Name: ProcessMitigations ms.date: 03/29/2017 -online version: https://docs.microsoft.com/powershell/module/processmitigations/convertto-processmitigationpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/processmitigations/convertto-processmitigationpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: ConvertTo-ProcessMitigationPolicy --- diff --git a/docset/winserver2022-ps/processmitigations/Get-ProcessMitigation.md b/docset/winserver2022-ps/processmitigations/Get-ProcessMitigation.md index d2e2791315..90cf7b6057 100644 --- a/docset/winserver2022-ps/processmitigations/Get-ProcessMitigation.md +++ b/docset/winserver2022-ps/processmitigations/Get-ProcessMitigation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ProcessMitigations.Commands.dll-Help.xml Module Name: ProcessMitigations ms.date: 03/29/2017 -online version: https://docs.microsoft.com/powershell/module/processmitigations/get-processmitigation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/processmitigations/get-processmitigation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ProcessMitigation --- diff --git a/docset/winserver2022-ps/processmitigations/Set-ProcessMitigation.md b/docset/winserver2022-ps/processmitigations/Set-ProcessMitigation.md index 0fc0aef38d..22b0647786 100644 --- a/docset/winserver2022-ps/processmitigations/Set-ProcessMitigation.md +++ b/docset/winserver2022-ps/processmitigations/Set-ProcessMitigation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.ProcessMitigations.Commands.dll-Help.xml Module Name: ProcessMitigations ms.date: 03/29/2017 -online version: https://docs.microsoft.com/powershell/module/processmitigations/set-processmitigation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/processmitigations/set-processmitigation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ProcessMitigation --- diff --git a/docset/winserver2022-ps/provisioning/Export-ProvisioningPackage.md b/docset/winserver2022-ps/provisioning/Export-ProvisioningPackage.md index 52f853b1fc..4a9a4e989a 100644 --- a/docset/winserver2022-ps/provisioning/Export-ProvisioningPackage.md +++ b/docset/winserver2022-ps/provisioning/Export-ProvisioningPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: provcmdlets.dll-Help.xml Module Name: Provisioning ms.date: 05/09/2017 -online version: https://docs.microsoft.com/powershell/module/provisioning/export-provisioningpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/provisioning/export-provisioningpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-ProvisioningPackage --- diff --git a/docset/winserver2022-ps/provisioning/Export-Trace.md b/docset/winserver2022-ps/provisioning/Export-Trace.md index 6a8ae71a07..19f7976f05 100644 --- a/docset/winserver2022-ps/provisioning/Export-Trace.md +++ b/docset/winserver2022-ps/provisioning/Export-Trace.md @@ -1,9 +1,9 @@ ---- +--- description: The Export-Trace cmdlet exports an event trace log (ETL) file for provisioning. external help file: provcmdlets.dll-Help.xml Module Name: Provisioning ms.date: 05/09/2017 -online version: https://docs.microsoft.com/powershell/module/provisioning/export-trace?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/provisioning/export-trace?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-Trace --- diff --git a/docset/winserver2022-ps/provisioning/Get-ProvisioningPackage.md b/docset/winserver2022-ps/provisioning/Get-ProvisioningPackage.md index 248cd74c13..a0cb7a755c 100644 --- a/docset/winserver2022-ps/provisioning/Get-ProvisioningPackage.md +++ b/docset/winserver2022-ps/provisioning/Get-ProvisioningPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: provcmdlets.dll-Help.xml Module Name: Provisioning ms.date: 05/09/2017 -online version: https://docs.microsoft.com/powershell/module/provisioning/get-provisioningpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/provisioning/get-provisioningpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ProvisioningPackage --- diff --git a/docset/winserver2022-ps/provisioning/Get-TrustedProvisioningCertificate.md b/docset/winserver2022-ps/provisioning/Get-TrustedProvisioningCertificate.md index a7357e20ef..9cc0506890 100644 --- a/docset/winserver2022-ps/provisioning/Get-TrustedProvisioningCertificate.md +++ b/docset/winserver2022-ps/provisioning/Get-TrustedProvisioningCertificate.md @@ -1,9 +1,9 @@ ---- +--- description: Lists all installed trusted provisioning certificates; use this cmdlet to get the certificate thumbprint to use with the Uninstall-TrustedProvisioningCertificate cmdlet. external help file: provcmdlets.dll-Help.xml Module Name: Provisioning ms.date: 05/09/2017 -online version: https://docs.microsoft.com/powershell/module/provisioning/get-trustedprovisioningcertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/provisioning/get-trustedprovisioningcertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-TrustedProvisioningCertificate --- diff --git a/docset/winserver2022-ps/provisioning/Install-ProvisioningPackage.md b/docset/winserver2022-ps/provisioning/Install-ProvisioningPackage.md index 73bd4873fc..f69949418f 100644 --- a/docset/winserver2022-ps/provisioning/Install-ProvisioningPackage.md +++ b/docset/winserver2022-ps/provisioning/Install-ProvisioningPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: provcmdlets.dll-Help.xml Module Name: Provisioning ms.date: 05/09/2017 -online version: https://docs.microsoft.com/powershell/module/provisioning/install-provisioningpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/provisioning/install-provisioningpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-ProvisioningPackage --- diff --git a/docset/winserver2022-ps/provisioning/Install-TrustedProvisioningCertificate.md b/docset/winserver2022-ps/provisioning/Install-TrustedProvisioningCertificate.md index 5cb7e6b1fc..53078b6565 100644 --- a/docset/winserver2022-ps/provisioning/Install-TrustedProvisioningCertificate.md +++ b/docset/winserver2022-ps/provisioning/Install-TrustedProvisioningCertificate.md @@ -1,9 +1,9 @@ ---- +--- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: provcmdlets.dll-Help.xml Module Name: Provisioning ms.date: 05/09/2017 -online version: https://docs.microsoft.com/powershell/module/provisioning/install-trustedprovisioningcertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/provisioning/install-trustedprovisioningcertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-TrustedProvisioningCertificate --- diff --git a/docset/winserver2022-ps/provisioning/Uninstall-ProvisioningPackage.md b/docset/winserver2022-ps/provisioning/Uninstall-ProvisioningPackage.md index 8ad68460b0..930cc0f62d 100644 --- a/docset/winserver2022-ps/provisioning/Uninstall-ProvisioningPackage.md +++ b/docset/winserver2022-ps/provisioning/Uninstall-ProvisioningPackage.md @@ -3,7 +3,7 @@ description: The Uninstall-ProvisioningPackage cmdlet uninstalls .ppkg files. external help file: provcmdlets.dll-Help.xml Module Name: Provisioning ms.date: 05/09/2017 -online version: https://docs.microsoft.com/powershell/module/provisioning/uninstall-provisioningpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/provisioning/uninstall-provisioningpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-ProvisioningPackage --- diff --git a/docset/winserver2022-ps/provisioning/Uninstall-TrustedProvisioningCertificate.md b/docset/winserver2022-ps/provisioning/Uninstall-TrustedProvisioningCertificate.md index 69a4fe25a6..fbeedfeaf9 100644 --- a/docset/winserver2022-ps/provisioning/Uninstall-TrustedProvisioningCertificate.md +++ b/docset/winserver2022-ps/provisioning/Uninstall-TrustedProvisioningCertificate.md @@ -1,9 +1,9 @@ ---- +--- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: provcmdlets.dll-Help.xml Module Name: Provisioning ms.date: 05/09/2017 -online version: https://docs.microsoft.com/powershell/module/provisioning/uninstall-trustedprovisioningcertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/provisioning/uninstall-trustedprovisioningcertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-TrustedProvisioningCertificate --- diff --git a/docset/winserver2022-ps/rdmgmt/Add-RDServer.md b/docset/winserver2022-ps/rdmgmt/Add-RDServer.md index 7d41ca4968..8fc9c0c49f 100644 --- a/docset/winserver2022-ps/rdmgmt/Add-RDServer.md +++ b/docset/winserver2022-ps/rdmgmt/Add-RDServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/add-rdserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/add-rdserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-RDServer --- diff --git a/docset/winserver2022-ps/rdmgmt/Add-RDSessionHost.md b/docset/winserver2022-ps/rdmgmt/Add-RDSessionHost.md index 2e2bcdca95..fbd7325045 100644 --- a/docset/winserver2022-ps/rdmgmt/Add-RDSessionHost.md +++ b/docset/winserver2022-ps/rdmgmt/Add-RDSessionHost.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/add-rdsessionhost?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/add-rdsessionhost?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-RDSessionHost --- diff --git a/docset/winserver2022-ps/rdmgmt/Add-RDVirtualDesktopToCollection.md b/docset/winserver2022-ps/rdmgmt/Add-RDVirtualDesktopToCollection.md index e2dcb5fe55..40a8c4897c 100644 --- a/docset/winserver2022-ps/rdmgmt/Add-RDVirtualDesktopToCollection.md +++ b/docset/winserver2022-ps/rdmgmt/Add-RDVirtualDesktopToCollection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/add-rdvirtualdesktoptocollection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/add-rdvirtualdesktoptocollection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-RDVirtualDesktopToCollection --- diff --git a/docset/winserver2022-ps/rdmgmt/Disable-RDVirtualDesktopADMachineAccountReuse.md b/docset/winserver2022-ps/rdmgmt/Disable-RDVirtualDesktopADMachineAccountReuse.md index 36266851f7..a38208672f 100644 --- a/docset/winserver2022-ps/rdmgmt/Disable-RDVirtualDesktopADMachineAccountReuse.md +++ b/docset/winserver2022-ps/rdmgmt/Disable-RDVirtualDesktopADMachineAccountReuse.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/disable-rdvirtualdesktopadmachineaccountreuse?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/disable-rdvirtualdesktopadmachineaccountreuse?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-RDVirtualDesktopADMachineAccountReuse --- diff --git a/docset/winserver2022-ps/rdmgmt/Disconnect-RDUser.md b/docset/winserver2022-ps/rdmgmt/Disconnect-RDUser.md index 7a3676f2ec..f7792aade2 100644 --- a/docset/winserver2022-ps/rdmgmt/Disconnect-RDUser.md +++ b/docset/winserver2022-ps/rdmgmt/Disconnect-RDUser.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/disconnect-rduser?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/disconnect-rduser?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disconnect-RDUser --- diff --git a/docset/winserver2022-ps/rdmgmt/Enable-RDVirtualDesktopADMachineAccountReuse.md b/docset/winserver2022-ps/rdmgmt/Enable-RDVirtualDesktopADMachineAccountReuse.md index c839a7a79f..0c36fb24c2 100644 --- a/docset/winserver2022-ps/rdmgmt/Enable-RDVirtualDesktopADMachineAccountReuse.md +++ b/docset/winserver2022-ps/rdmgmt/Enable-RDVirtualDesktopADMachineAccountReuse.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/enable-rdvirtualdesktopadmachineaccountreuse?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/enable-rdvirtualdesktopadmachineaccountreuse?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-RDVirtualDesktopADMachineAccountReuse --- diff --git a/docset/winserver2022-ps/rdmgmt/Export-RDPersonalSessionDesktopAssignment.md b/docset/winserver2022-ps/rdmgmt/Export-RDPersonalSessionDesktopAssignment.md index a617875891..4ee87fa0c8 100644 --- a/docset/winserver2022-ps/rdmgmt/Export-RDPersonalSessionDesktopAssignment.md +++ b/docset/winserver2022-ps/rdmgmt/Export-RDPersonalSessionDesktopAssignment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/export-rdpersonalsessiondesktopassignment?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/export-rdpersonalsessiondesktopassignment?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-RDPersonalSessionDesktopAssignment --- diff --git a/docset/winserver2022-ps/rdmgmt/Export-RDPersonalVirtualDesktopAssignment.md b/docset/winserver2022-ps/rdmgmt/Export-RDPersonalVirtualDesktopAssignment.md index 0a05660e23..576c7b7e9e 100644 --- a/docset/winserver2022-ps/rdmgmt/Export-RDPersonalVirtualDesktopAssignment.md +++ b/docset/winserver2022-ps/rdmgmt/Export-RDPersonalVirtualDesktopAssignment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/export-rdpersonalvirtualdesktopassignment?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/export-rdpersonalvirtualdesktopassignment?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-RDPersonalVirtualDesktopAssignment --- diff --git a/docset/winserver2022-ps/rdmgmt/Get-RDAvailableApp.md b/docset/winserver2022-ps/rdmgmt/Get-RDAvailableApp.md index dac6f71268..207d7484eb 100644 --- a/docset/winserver2022-ps/rdmgmt/Get-RDAvailableApp.md +++ b/docset/winserver2022-ps/rdmgmt/Get-RDAvailableApp.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdavailableapp?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdavailableapp?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDAvailableApp --- diff --git a/docset/winserver2022-ps/rdmgmt/Get-RDCertificate.md b/docset/winserver2022-ps/rdmgmt/Get-RDCertificate.md index bfe811c28b..a83b7f313f 100644 --- a/docset/winserver2022-ps/rdmgmt/Get-RDCertificate.md +++ b/docset/winserver2022-ps/rdmgmt/Get-RDCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdcertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdcertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDCertificate --- diff --git a/docset/winserver2022-ps/rdmgmt/Get-RDConnectionBrokerHighAvailability.md b/docset/winserver2022-ps/rdmgmt/Get-RDConnectionBrokerHighAvailability.md index 68ea113db7..1a5e061330 100644 --- a/docset/winserver2022-ps/rdmgmt/Get-RDConnectionBrokerHighAvailability.md +++ b/docset/winserver2022-ps/rdmgmt/Get-RDConnectionBrokerHighAvailability.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdconnectionbrokerhighavailability?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdconnectionbrokerhighavailability?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDConnectionBrokerHighAvailability --- diff --git a/docset/winserver2022-ps/rdmgmt/Get-RDDeploymentGatewayConfiguration.md b/docset/winserver2022-ps/rdmgmt/Get-RDDeploymentGatewayConfiguration.md index aa433c13ce..22e8f48cc3 100644 --- a/docset/winserver2022-ps/rdmgmt/Get-RDDeploymentGatewayConfiguration.md +++ b/docset/winserver2022-ps/rdmgmt/Get-RDDeploymentGatewayConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rddeploymentgatewayconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rddeploymentgatewayconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDDeploymentGatewayConfiguration --- diff --git a/docset/winserver2022-ps/rdmgmt/Get-RDFileTypeAssociation.md b/docset/winserver2022-ps/rdmgmt/Get-RDFileTypeAssociation.md index 4379309c54..c6d3d246db 100644 --- a/docset/winserver2022-ps/rdmgmt/Get-RDFileTypeAssociation.md +++ b/docset/winserver2022-ps/rdmgmt/Get-RDFileTypeAssociation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdfiletypeassociation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdfiletypeassociation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDFileTypeAssociation --- diff --git a/docset/winserver2022-ps/rdmgmt/Get-RDLicenseConfiguration.md b/docset/winserver2022-ps/rdmgmt/Get-RDLicenseConfiguration.md index 78abda87c2..5e44d89392 100644 --- a/docset/winserver2022-ps/rdmgmt/Get-RDLicenseConfiguration.md +++ b/docset/winserver2022-ps/rdmgmt/Get-RDLicenseConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdlicenseconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdlicenseconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDLicenseConfiguration --- diff --git a/docset/winserver2022-ps/rdmgmt/Get-RDPersonalSessionDesktopAssignment.md b/docset/winserver2022-ps/rdmgmt/Get-RDPersonalSessionDesktopAssignment.md index 893def08e4..c5315276c3 100644 --- a/docset/winserver2022-ps/rdmgmt/Get-RDPersonalSessionDesktopAssignment.md +++ b/docset/winserver2022-ps/rdmgmt/Get-RDPersonalSessionDesktopAssignment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdpersonalsessiondesktopassignment?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdpersonalsessiondesktopassignment?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDPersonalSessionDesktopAssignment --- diff --git a/docset/winserver2022-ps/rdmgmt/Get-RDPersonalVirtualDesktopAssignment.md b/docset/winserver2022-ps/rdmgmt/Get-RDPersonalVirtualDesktopAssignment.md index 7a51d9f218..140997bc07 100644 --- a/docset/winserver2022-ps/rdmgmt/Get-RDPersonalVirtualDesktopAssignment.md +++ b/docset/winserver2022-ps/rdmgmt/Get-RDPersonalVirtualDesktopAssignment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdpersonalvirtualdesktopassignment?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdpersonalvirtualdesktopassignment?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDPersonalVirtualDesktopAssignment --- diff --git a/docset/winserver2022-ps/rdmgmt/Get-RDPersonalVirtualDesktopPatchSchedule.md b/docset/winserver2022-ps/rdmgmt/Get-RDPersonalVirtualDesktopPatchSchedule.md index 827d40c62f..1149c73f08 100644 --- a/docset/winserver2022-ps/rdmgmt/Get-RDPersonalVirtualDesktopPatchSchedule.md +++ b/docset/winserver2022-ps/rdmgmt/Get-RDPersonalVirtualDesktopPatchSchedule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdpersonalvirtualdesktoppatchschedule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdpersonalvirtualdesktoppatchschedule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDPersonalVirtualDesktopPatchSchedule --- diff --git a/docset/winserver2022-ps/rdmgmt/Get-RDRemoteApp.md b/docset/winserver2022-ps/rdmgmt/Get-RDRemoteApp.md index fdb1fe9f8b..4b6ee78cf1 100644 --- a/docset/winserver2022-ps/rdmgmt/Get-RDRemoteApp.md +++ b/docset/winserver2022-ps/rdmgmt/Get-RDRemoteApp.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdremoteapp?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdremoteapp?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDRemoteApp --- diff --git a/docset/winserver2022-ps/rdmgmt/Get-RDRemoteDesktop.md b/docset/winserver2022-ps/rdmgmt/Get-RDRemoteDesktop.md index c9a429e429..251ca9524c 100644 --- a/docset/winserver2022-ps/rdmgmt/Get-RDRemoteDesktop.md +++ b/docset/winserver2022-ps/rdmgmt/Get-RDRemoteDesktop.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdremotedesktop?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdremotedesktop?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDRemoteDesktop --- diff --git a/docset/winserver2022-ps/rdmgmt/Get-RDServer.md b/docset/winserver2022-ps/rdmgmt/Get-RDServer.md index 85a0ad1ac5..d310d572ec 100644 --- a/docset/winserver2022-ps/rdmgmt/Get-RDServer.md +++ b/docset/winserver2022-ps/rdmgmt/Get-RDServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDServer --- diff --git a/docset/winserver2022-ps/rdmgmt/Get-RDSessionCollection.md b/docset/winserver2022-ps/rdmgmt/Get-RDSessionCollection.md index f50476283d..01b6e3ab4d 100644 --- a/docset/winserver2022-ps/rdmgmt/Get-RDSessionCollection.md +++ b/docset/winserver2022-ps/rdmgmt/Get-RDSessionCollection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdsessioncollection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdsessioncollection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDSessionCollection --- diff --git a/docset/winserver2022-ps/rdmgmt/Get-RDSessionCollectionConfiguration.md b/docset/winserver2022-ps/rdmgmt/Get-RDSessionCollectionConfiguration.md index 12118b1a4a..ec26368315 100644 --- a/docset/winserver2022-ps/rdmgmt/Get-RDSessionCollectionConfiguration.md +++ b/docset/winserver2022-ps/rdmgmt/Get-RDSessionCollectionConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdsessioncollectionconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdsessioncollectionconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDSessionCollectionConfiguration --- diff --git a/docset/winserver2022-ps/rdmgmt/Get-RDSessionHost.md b/docset/winserver2022-ps/rdmgmt/Get-RDSessionHost.md index a24f6aee85..37830396e1 100644 --- a/docset/winserver2022-ps/rdmgmt/Get-RDSessionHost.md +++ b/docset/winserver2022-ps/rdmgmt/Get-RDSessionHost.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdsessionhost?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdsessionhost?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDSessionHost --- diff --git a/docset/winserver2022-ps/rdmgmt/Get-RDUserSession.md b/docset/winserver2022-ps/rdmgmt/Get-RDUserSession.md index 0282c78cef..ea609b4884 100644 --- a/docset/winserver2022-ps/rdmgmt/Get-RDUserSession.md +++ b/docset/winserver2022-ps/rdmgmt/Get-RDUserSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdusersession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdusersession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDUserSession --- diff --git a/docset/winserver2022-ps/rdmgmt/Get-RDVirtualDesktop.md b/docset/winserver2022-ps/rdmgmt/Get-RDVirtualDesktop.md index e5e1b314db..5c66085966 100644 --- a/docset/winserver2022-ps/rdmgmt/Get-RDVirtualDesktop.md +++ b/docset/winserver2022-ps/rdmgmt/Get-RDVirtualDesktop.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktop?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktop?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDVirtualDesktop --- diff --git a/docset/winserver2022-ps/rdmgmt/Get-RDVirtualDesktopCollection.md b/docset/winserver2022-ps/rdmgmt/Get-RDVirtualDesktopCollection.md index 5b654c9474..732c2afb6c 100644 --- a/docset/winserver2022-ps/rdmgmt/Get-RDVirtualDesktopCollection.md +++ b/docset/winserver2022-ps/rdmgmt/Get-RDVirtualDesktopCollection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktopcollection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktopcollection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDVirtualDesktopCollection --- diff --git a/docset/winserver2022-ps/rdmgmt/Get-RDVirtualDesktopCollectionConfiguration.md b/docset/winserver2022-ps/rdmgmt/Get-RDVirtualDesktopCollectionConfiguration.md index b2930a68b2..50441e042a 100644 --- a/docset/winserver2022-ps/rdmgmt/Get-RDVirtualDesktopCollectionConfiguration.md +++ b/docset/winserver2022-ps/rdmgmt/Get-RDVirtualDesktopCollectionConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktopcollectionconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktopcollectionconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDVirtualDesktopCollectionConfiguration --- diff --git a/docset/winserver2022-ps/rdmgmt/Get-RDVirtualDesktopCollectionJobStatus.md b/docset/winserver2022-ps/rdmgmt/Get-RDVirtualDesktopCollectionJobStatus.md index 9a91e521b1..6654a0c6d1 100644 --- a/docset/winserver2022-ps/rdmgmt/Get-RDVirtualDesktopCollectionJobStatus.md +++ b/docset/winserver2022-ps/rdmgmt/Get-RDVirtualDesktopCollectionJobStatus.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktopcollectionjobstatus?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktopcollectionjobstatus?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDVirtualDesktopCollectionJobStatus --- diff --git a/docset/winserver2022-ps/rdmgmt/Get-RDVirtualDesktopConcurrency.md b/docset/winserver2022-ps/rdmgmt/Get-RDVirtualDesktopConcurrency.md index 74f3256205..fb83bd563f 100644 --- a/docset/winserver2022-ps/rdmgmt/Get-RDVirtualDesktopConcurrency.md +++ b/docset/winserver2022-ps/rdmgmt/Get-RDVirtualDesktopConcurrency.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktopconcurrency?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktopconcurrency?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDVirtualDesktopConcurrency --- diff --git a/docset/winserver2022-ps/rdmgmt/Get-RDVirtualDesktopIdleCount.md b/docset/winserver2022-ps/rdmgmt/Get-RDVirtualDesktopIdleCount.md index 819d808a99..c71c37e632 100644 --- a/docset/winserver2022-ps/rdmgmt/Get-RDVirtualDesktopIdleCount.md +++ b/docset/winserver2022-ps/rdmgmt/Get-RDVirtualDesktopIdleCount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktopidlecount?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktopidlecount?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDVirtualDesktopIdleCount --- diff --git a/docset/winserver2022-ps/rdmgmt/Get-RDVirtualDesktopTemplateExportPath.md b/docset/winserver2022-ps/rdmgmt/Get-RDVirtualDesktopTemplateExportPath.md index 78fdfb6c89..269e2a0084 100644 --- a/docset/winserver2022-ps/rdmgmt/Get-RDVirtualDesktopTemplateExportPath.md +++ b/docset/winserver2022-ps/rdmgmt/Get-RDVirtualDesktopTemplateExportPath.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktoptemplateexportpath?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdvirtualdesktoptemplateexportpath?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDVirtualDesktopTemplateExportPath --- diff --git a/docset/winserver2022-ps/rdmgmt/Get-RDWorkspace.md b/docset/winserver2022-ps/rdmgmt/Get-RDWorkspace.md index 5792305dd3..a83faa0b01 100644 --- a/docset/winserver2022-ps/rdmgmt/Get-RDWorkspace.md +++ b/docset/winserver2022-ps/rdmgmt/Get-RDWorkspace.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/get-rdworkspace?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/get-rdworkspace?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RDWorkspace --- diff --git a/docset/winserver2022-ps/rdmgmt/Grant-RDOUAccess.md b/docset/winserver2022-ps/rdmgmt/Grant-RDOUAccess.md index 3f4ea6e1ac..25415e9444 100644 --- a/docset/winserver2022-ps/rdmgmt/Grant-RDOUAccess.md +++ b/docset/winserver2022-ps/rdmgmt/Grant-RDOUAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/grant-rdouaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/grant-rdouaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Grant-RDOUAccess --- diff --git a/docset/winserver2022-ps/rdmgmt/Import-RDPersonalSessionDesktopAssignment.md b/docset/winserver2022-ps/rdmgmt/Import-RDPersonalSessionDesktopAssignment.md index 83e3afc6a6..10d4ff2c34 100644 --- a/docset/winserver2022-ps/rdmgmt/Import-RDPersonalSessionDesktopAssignment.md +++ b/docset/winserver2022-ps/rdmgmt/Import-RDPersonalSessionDesktopAssignment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/import-rdpersonalsessiondesktopassignment?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/import-rdpersonalsessiondesktopassignment?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-RDPersonalSessionDesktopAssignment --- diff --git a/docset/winserver2022-ps/rdmgmt/Import-RDPersonalVirtualDesktopAssignment.md b/docset/winserver2022-ps/rdmgmt/Import-RDPersonalVirtualDesktopAssignment.md index de2da200c8..3acad5217d 100644 --- a/docset/winserver2022-ps/rdmgmt/Import-RDPersonalVirtualDesktopAssignment.md +++ b/docset/winserver2022-ps/rdmgmt/Import-RDPersonalVirtualDesktopAssignment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/import-rdpersonalvirtualdesktopassignment?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/import-rdpersonalvirtualdesktopassignment?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-RDPersonalVirtualDesktopAssignment --- diff --git a/docset/winserver2022-ps/rdmgmt/Invoke-RDUserLogoff.md b/docset/winserver2022-ps/rdmgmt/Invoke-RDUserLogoff.md index 0c8a34fee4..98b24e332f 100644 --- a/docset/winserver2022-ps/rdmgmt/Invoke-RDUserLogoff.md +++ b/docset/winserver2022-ps/rdmgmt/Invoke-RDUserLogoff.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/invoke-rduserlogoff?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/invoke-rduserlogoff?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-RDUserLogoff --- diff --git a/docset/winserver2022-ps/rdmgmt/Move-RDVirtualDesktop.md b/docset/winserver2022-ps/rdmgmt/Move-RDVirtualDesktop.md index f3b655210f..a694cfc437 100644 --- a/docset/winserver2022-ps/rdmgmt/Move-RDVirtualDesktop.md +++ b/docset/winserver2022-ps/rdmgmt/Move-RDVirtualDesktop.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/move-rdvirtualdesktop?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/move-rdvirtualdesktop?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-RDVirtualDesktop --- diff --git a/docset/winserver2022-ps/rdmgmt/New-RDCertificate.md b/docset/winserver2022-ps/rdmgmt/New-RDCertificate.md index 080e95f01a..3f3d6d8d4a 100644 --- a/docset/winserver2022-ps/rdmgmt/New-RDCertificate.md +++ b/docset/winserver2022-ps/rdmgmt/New-RDCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/new-rdcertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/new-rdcertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-RDCertificate --- diff --git a/docset/winserver2022-ps/rdmgmt/New-RDPersonalVirtualDesktopPatchSchedule.md b/docset/winserver2022-ps/rdmgmt/New-RDPersonalVirtualDesktopPatchSchedule.md index 10bf3ed8f7..9de1aaa4a3 100644 --- a/docset/winserver2022-ps/rdmgmt/New-RDPersonalVirtualDesktopPatchSchedule.md +++ b/docset/winserver2022-ps/rdmgmt/New-RDPersonalVirtualDesktopPatchSchedule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/new-rdpersonalvirtualdesktoppatchschedule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/new-rdpersonalvirtualdesktoppatchschedule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-RDPersonalVirtualDesktopPatchSchedule --- diff --git a/docset/winserver2022-ps/rdmgmt/New-RDRemoteApp.md b/docset/winserver2022-ps/rdmgmt/New-RDRemoteApp.md index 93d338d10c..22d1254488 100644 --- a/docset/winserver2022-ps/rdmgmt/New-RDRemoteApp.md +++ b/docset/winserver2022-ps/rdmgmt/New-RDRemoteApp.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/new-rdremoteapp?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/new-rdremoteapp?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-RDRemoteApp --- diff --git a/docset/winserver2022-ps/rdmgmt/New-RDSessionCollection.md b/docset/winserver2022-ps/rdmgmt/New-RDSessionCollection.md index fe0ba701da..bfb1617d10 100644 --- a/docset/winserver2022-ps/rdmgmt/New-RDSessionCollection.md +++ b/docset/winserver2022-ps/rdmgmt/New-RDSessionCollection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/new-rdsessioncollection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/new-rdsessioncollection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-RDSessionCollection --- diff --git a/docset/winserver2022-ps/rdmgmt/New-RDSessionDeployment.md b/docset/winserver2022-ps/rdmgmt/New-RDSessionDeployment.md index 9fca1a72bc..1dbade9d48 100644 --- a/docset/winserver2022-ps/rdmgmt/New-RDSessionDeployment.md +++ b/docset/winserver2022-ps/rdmgmt/New-RDSessionDeployment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/new-rdsessiondeployment?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/new-rdsessiondeployment?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-RDSessionDeployment --- diff --git a/docset/winserver2022-ps/rdmgmt/New-RDVirtualDesktopCollection.md b/docset/winserver2022-ps/rdmgmt/New-RDVirtualDesktopCollection.md index 144de269bd..56a7f24be8 100644 --- a/docset/winserver2022-ps/rdmgmt/New-RDVirtualDesktopCollection.md +++ b/docset/winserver2022-ps/rdmgmt/New-RDVirtualDesktopCollection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/new-rdvirtualdesktopcollection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/new-rdvirtualdesktopcollection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-RDVirtualDesktopCollection --- diff --git a/docset/winserver2022-ps/rdmgmt/New-RDVirtualDesktopDeployment.md b/docset/winserver2022-ps/rdmgmt/New-RDVirtualDesktopDeployment.md index 1fdb7f5260..07881d24c3 100644 --- a/docset/winserver2022-ps/rdmgmt/New-RDVirtualDesktopDeployment.md +++ b/docset/winserver2022-ps/rdmgmt/New-RDVirtualDesktopDeployment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/new-rdvirtualdesktopdeployment?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/new-rdvirtualdesktopdeployment?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-RDVirtualDesktopDeployment --- diff --git a/docset/winserver2022-ps/rdmgmt/Remove-RDDatabaseConnectionString.md b/docset/winserver2022-ps/rdmgmt/Remove-RDDatabaseConnectionString.md index 5d1ba1b297..3683f543ab 100644 --- a/docset/winserver2022-ps/rdmgmt/Remove-RDDatabaseConnectionString.md +++ b/docset/winserver2022-ps/rdmgmt/Remove-RDDatabaseConnectionString.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/remove-rddatabaseconnectionstring?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/remove-rddatabaseconnectionstring?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-RDDatabaseConnectionString --- diff --git a/docset/winserver2022-ps/rdmgmt/Remove-RDPersonalSessionDesktopAssignment.md b/docset/winserver2022-ps/rdmgmt/Remove-RDPersonalSessionDesktopAssignment.md index 0db3d15d96..d54afbad66 100644 --- a/docset/winserver2022-ps/rdmgmt/Remove-RDPersonalSessionDesktopAssignment.md +++ b/docset/winserver2022-ps/rdmgmt/Remove-RDPersonalSessionDesktopAssignment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/remove-rdpersonalsessiondesktopassignment?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/remove-rdpersonalsessiondesktopassignment?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-RDPersonalSessionDesktopAssignment --- diff --git a/docset/winserver2022-ps/rdmgmt/Remove-RDPersonalVirtualDesktopAssignment.md b/docset/winserver2022-ps/rdmgmt/Remove-RDPersonalVirtualDesktopAssignment.md index 65ef9c55c8..1465664a40 100644 --- a/docset/winserver2022-ps/rdmgmt/Remove-RDPersonalVirtualDesktopAssignment.md +++ b/docset/winserver2022-ps/rdmgmt/Remove-RDPersonalVirtualDesktopAssignment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/remove-rdpersonalvirtualdesktopassignment?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/remove-rdpersonalvirtualdesktopassignment?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-RDPersonalVirtualDesktopAssignment --- diff --git a/docset/winserver2022-ps/rdmgmt/Remove-RDPersonalVirtualDesktopPatchSchedule.md b/docset/winserver2022-ps/rdmgmt/Remove-RDPersonalVirtualDesktopPatchSchedule.md index d85705b451..0e25a0dd91 100644 --- a/docset/winserver2022-ps/rdmgmt/Remove-RDPersonalVirtualDesktopPatchSchedule.md +++ b/docset/winserver2022-ps/rdmgmt/Remove-RDPersonalVirtualDesktopPatchSchedule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/remove-rdpersonalvirtualdesktoppatchschedule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/remove-rdpersonalvirtualdesktoppatchschedule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-RDPersonalVirtualDesktopPatchSchedule --- diff --git a/docset/winserver2022-ps/rdmgmt/Remove-RDRemoteApp.md b/docset/winserver2022-ps/rdmgmt/Remove-RDRemoteApp.md index 8267fae21d..a5e2de92b6 100644 --- a/docset/winserver2022-ps/rdmgmt/Remove-RDRemoteApp.md +++ b/docset/winserver2022-ps/rdmgmt/Remove-RDRemoteApp.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/remove-rdremoteapp?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/remove-rdremoteapp?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-RDRemoteApp --- diff --git a/docset/winserver2022-ps/rdmgmt/Remove-RDServer.md b/docset/winserver2022-ps/rdmgmt/Remove-RDServer.md index e31173e88f..22b0305e4b 100644 --- a/docset/winserver2022-ps/rdmgmt/Remove-RDServer.md +++ b/docset/winserver2022-ps/rdmgmt/Remove-RDServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/remove-rdserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/remove-rdserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-RDServer --- diff --git a/docset/winserver2022-ps/rdmgmt/Remove-RDSessionCollection.md b/docset/winserver2022-ps/rdmgmt/Remove-RDSessionCollection.md index 3134368699..74de52b58b 100644 --- a/docset/winserver2022-ps/rdmgmt/Remove-RDSessionCollection.md +++ b/docset/winserver2022-ps/rdmgmt/Remove-RDSessionCollection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/remove-rdsessioncollection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/remove-rdsessioncollection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-RDSessionCollection --- diff --git a/docset/winserver2022-ps/rdmgmt/Remove-RDSessionHost.md b/docset/winserver2022-ps/rdmgmt/Remove-RDSessionHost.md index 04d436c934..fa5cf9fcfd 100644 --- a/docset/winserver2022-ps/rdmgmt/Remove-RDSessionHost.md +++ b/docset/winserver2022-ps/rdmgmt/Remove-RDSessionHost.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/remove-rdsessionhost?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/remove-rdsessionhost?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-RDSessionHost --- diff --git a/docset/winserver2022-ps/rdmgmt/Remove-RDVirtualDesktopCollection.md b/docset/winserver2022-ps/rdmgmt/Remove-RDVirtualDesktopCollection.md index 9582383490..335f01c0fe 100644 --- a/docset/winserver2022-ps/rdmgmt/Remove-RDVirtualDesktopCollection.md +++ b/docset/winserver2022-ps/rdmgmt/Remove-RDVirtualDesktopCollection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/remove-rdvirtualdesktopcollection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/remove-rdvirtualdesktopcollection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-RDVirtualDesktopCollection --- diff --git a/docset/winserver2022-ps/rdmgmt/Remove-RDVirtualDesktopFromCollection.md b/docset/winserver2022-ps/rdmgmt/Remove-RDVirtualDesktopFromCollection.md index eea6c10ecd..9b82bdc6b0 100644 --- a/docset/winserver2022-ps/rdmgmt/Remove-RDVirtualDesktopFromCollection.md +++ b/docset/winserver2022-ps/rdmgmt/Remove-RDVirtualDesktopFromCollection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/remove-rdvirtualdesktopfromcollection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/remove-rdvirtualdesktopfromcollection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-RDVirtualDesktopFromCollection --- diff --git a/docset/winserver2022-ps/rdmgmt/Send-RDUserMessage.md b/docset/winserver2022-ps/rdmgmt/Send-RDUserMessage.md index a720a96d32..fcbc347c14 100644 --- a/docset/winserver2022-ps/rdmgmt/Send-RDUserMessage.md +++ b/docset/winserver2022-ps/rdmgmt/Send-RDUserMessage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/send-rdusermessage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/send-rdusermessage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Send-RDUserMessage --- diff --git a/docset/winserver2022-ps/rdmgmt/Set-RDActiveManagementServer.md b/docset/winserver2022-ps/rdmgmt/Set-RDActiveManagementServer.md index 9020c0ac80..be75f1210b 100644 --- a/docset/winserver2022-ps/rdmgmt/Set-RDActiveManagementServer.md +++ b/docset/winserver2022-ps/rdmgmt/Set-RDActiveManagementServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdactivemanagementserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdactivemanagementserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDActiveManagementServer --- diff --git a/docset/winserver2022-ps/rdmgmt/Set-RDCertificate.md b/docset/winserver2022-ps/rdmgmt/Set-RDCertificate.md index 99be6a982e..7595e497c3 100644 --- a/docset/winserver2022-ps/rdmgmt/Set-RDCertificate.md +++ b/docset/winserver2022-ps/rdmgmt/Set-RDCertificate.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdcertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdcertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDCertificate --- diff --git a/docset/winserver2022-ps/rdmgmt/Set-RDClientAccessName.md b/docset/winserver2022-ps/rdmgmt/Set-RDClientAccessName.md index cdd8d6f0a0..96b9a6b397 100644 --- a/docset/winserver2022-ps/rdmgmt/Set-RDClientAccessName.md +++ b/docset/winserver2022-ps/rdmgmt/Set-RDClientAccessName.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdclientaccessname?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdclientaccessname?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDClientAccessName --- diff --git a/docset/winserver2022-ps/rdmgmt/Set-RDConnectionBrokerHighAvailability.md b/docset/winserver2022-ps/rdmgmt/Set-RDConnectionBrokerHighAvailability.md index 63e36ff566..3d0ff33aec 100644 --- a/docset/winserver2022-ps/rdmgmt/Set-RDConnectionBrokerHighAvailability.md +++ b/docset/winserver2022-ps/rdmgmt/Set-RDConnectionBrokerHighAvailability.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdconnectionbrokerhighavailability?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdconnectionbrokerhighavailability?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDConnectionBrokerHighAvailability --- diff --git a/docset/winserver2022-ps/rdmgmt/Set-RDDatabaseConnectionString.md b/docset/winserver2022-ps/rdmgmt/Set-RDDatabaseConnectionString.md index 97fa4306a8..6f18336628 100644 --- a/docset/winserver2022-ps/rdmgmt/Set-RDDatabaseConnectionString.md +++ b/docset/winserver2022-ps/rdmgmt/Set-RDDatabaseConnectionString.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rddatabaseconnectionstring?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rddatabaseconnectionstring?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDDatabaseConnectionString --- diff --git a/docset/winserver2022-ps/rdmgmt/Set-RDDeploymentGatewayConfiguration.md b/docset/winserver2022-ps/rdmgmt/Set-RDDeploymentGatewayConfiguration.md index da76ad72c7..d0c42ed9fd 100644 --- a/docset/winserver2022-ps/rdmgmt/Set-RDDeploymentGatewayConfiguration.md +++ b/docset/winserver2022-ps/rdmgmt/Set-RDDeploymentGatewayConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rddeploymentgatewayconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rddeploymentgatewayconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDDeploymentGatewayConfiguration --- diff --git a/docset/winserver2022-ps/rdmgmt/Set-RDFileTypeAssociation.md b/docset/winserver2022-ps/rdmgmt/Set-RDFileTypeAssociation.md index f32791ab54..475001663e 100644 --- a/docset/winserver2022-ps/rdmgmt/Set-RDFileTypeAssociation.md +++ b/docset/winserver2022-ps/rdmgmt/Set-RDFileTypeAssociation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdfiletypeassociation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdfiletypeassociation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDFileTypeAssociation --- diff --git a/docset/winserver2022-ps/rdmgmt/Set-RDLicenseConfiguration.md b/docset/winserver2022-ps/rdmgmt/Set-RDLicenseConfiguration.md index c043732cde..891b0e8066 100644 --- a/docset/winserver2022-ps/rdmgmt/Set-RDLicenseConfiguration.md +++ b/docset/winserver2022-ps/rdmgmt/Set-RDLicenseConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdlicenseconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdlicenseconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDLicenseConfiguration --- diff --git a/docset/winserver2022-ps/rdmgmt/Set-RDPersonalSessionDesktopAssignment.md b/docset/winserver2022-ps/rdmgmt/Set-RDPersonalSessionDesktopAssignment.md index 28a6d9caff..45f3a23d01 100644 --- a/docset/winserver2022-ps/rdmgmt/Set-RDPersonalSessionDesktopAssignment.md +++ b/docset/winserver2022-ps/rdmgmt/Set-RDPersonalSessionDesktopAssignment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdpersonalsessiondesktopassignment?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdpersonalsessiondesktopassignment?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDPersonalSessionDesktopAssignment --- diff --git a/docset/winserver2022-ps/rdmgmt/Set-RDPersonalVirtualDesktopAssignment.md b/docset/winserver2022-ps/rdmgmt/Set-RDPersonalVirtualDesktopAssignment.md index 5be022f396..4fc638719f 100644 --- a/docset/winserver2022-ps/rdmgmt/Set-RDPersonalVirtualDesktopAssignment.md +++ b/docset/winserver2022-ps/rdmgmt/Set-RDPersonalVirtualDesktopAssignment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdpersonalvirtualdesktopassignment?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdpersonalvirtualdesktopassignment?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDPersonalVirtualDesktopAssignment --- diff --git a/docset/winserver2022-ps/rdmgmt/Set-RDPersonalVirtualDesktopPatchSchedule.md b/docset/winserver2022-ps/rdmgmt/Set-RDPersonalVirtualDesktopPatchSchedule.md index ad067a5d1d..48ee4d235d 100644 --- a/docset/winserver2022-ps/rdmgmt/Set-RDPersonalVirtualDesktopPatchSchedule.md +++ b/docset/winserver2022-ps/rdmgmt/Set-RDPersonalVirtualDesktopPatchSchedule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdpersonalvirtualdesktoppatchschedule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdpersonalvirtualdesktoppatchschedule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDPersonalVirtualDesktopPatchSchedule --- diff --git a/docset/winserver2022-ps/rdmgmt/Set-RDRemoteApp.md b/docset/winserver2022-ps/rdmgmt/Set-RDRemoteApp.md index 549a716ce2..f34a87606f 100644 --- a/docset/winserver2022-ps/rdmgmt/Set-RDRemoteApp.md +++ b/docset/winserver2022-ps/rdmgmt/Set-RDRemoteApp.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdremoteapp?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdremoteapp?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDRemoteApp --- diff --git a/docset/winserver2022-ps/rdmgmt/Set-RDRemoteDesktop.md b/docset/winserver2022-ps/rdmgmt/Set-RDRemoteDesktop.md index 91181310a5..3a6d83a879 100644 --- a/docset/winserver2022-ps/rdmgmt/Set-RDRemoteDesktop.md +++ b/docset/winserver2022-ps/rdmgmt/Set-RDRemoteDesktop.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdremotedesktop?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdremotedesktop?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDRemoteDesktop --- diff --git a/docset/winserver2022-ps/rdmgmt/Set-RDSessionCollectionConfiguration.md b/docset/winserver2022-ps/rdmgmt/Set-RDSessionCollectionConfiguration.md index 94380b9deb..9a047ec55e 100644 --- a/docset/winserver2022-ps/rdmgmt/Set-RDSessionCollectionConfiguration.md +++ b/docset/winserver2022-ps/rdmgmt/Set-RDSessionCollectionConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdsessioncollectionconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdsessioncollectionconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDSessionCollectionConfiguration --- diff --git a/docset/winserver2022-ps/rdmgmt/Set-RDSessionHost.md b/docset/winserver2022-ps/rdmgmt/Set-RDSessionHost.md index c50da5393f..84fdb3ed4a 100644 --- a/docset/winserver2022-ps/rdmgmt/Set-RDSessionHost.md +++ b/docset/winserver2022-ps/rdmgmt/Set-RDSessionHost.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdsessionhost?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdsessionhost?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDSessionHost --- diff --git a/docset/winserver2022-ps/rdmgmt/Set-RDVirtualDesktopCollectionConfiguration.md b/docset/winserver2022-ps/rdmgmt/Set-RDVirtualDesktopCollectionConfiguration.md index e5dc0b28a5..2146df5408 100644 --- a/docset/winserver2022-ps/rdmgmt/Set-RDVirtualDesktopCollectionConfiguration.md +++ b/docset/winserver2022-ps/rdmgmt/Set-RDVirtualDesktopCollectionConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdvirtualdesktopcollectionconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdvirtualdesktopcollectionconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDVirtualDesktopCollectionConfiguration --- diff --git a/docset/winserver2022-ps/rdmgmt/Set-RDVirtualDesktopConcurrency.md b/docset/winserver2022-ps/rdmgmt/Set-RDVirtualDesktopConcurrency.md index 5d9fc572c9..e56f2eb6cf 100644 --- a/docset/winserver2022-ps/rdmgmt/Set-RDVirtualDesktopConcurrency.md +++ b/docset/winserver2022-ps/rdmgmt/Set-RDVirtualDesktopConcurrency.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdvirtualdesktopconcurrency?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdvirtualdesktopconcurrency?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDVirtualDesktopConcurrency --- diff --git a/docset/winserver2022-ps/rdmgmt/Set-RDVirtualDesktopIdleCount.md b/docset/winserver2022-ps/rdmgmt/Set-RDVirtualDesktopIdleCount.md index 256514b025..936032df56 100644 --- a/docset/winserver2022-ps/rdmgmt/Set-RDVirtualDesktopIdleCount.md +++ b/docset/winserver2022-ps/rdmgmt/Set-RDVirtualDesktopIdleCount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdvirtualdesktopidlecount?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdvirtualdesktopidlecount?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDVirtualDesktopIdleCount --- diff --git a/docset/winserver2022-ps/rdmgmt/Set-RDVirtualDesktopTemplateExportPath.md b/docset/winserver2022-ps/rdmgmt/Set-RDVirtualDesktopTemplateExportPath.md index b4de3768a6..61a30352cd 100644 --- a/docset/winserver2022-ps/rdmgmt/Set-RDVirtualDesktopTemplateExportPath.md +++ b/docset/winserver2022-ps/rdmgmt/Set-RDVirtualDesktopTemplateExportPath.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdvirtualdesktoptemplateexportpath?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdvirtualdesktoptemplateexportpath?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDVirtualDesktopTemplateExportPath --- diff --git a/docset/winserver2022-ps/rdmgmt/Set-RDWorkspace.md b/docset/winserver2022-ps/rdmgmt/Set-RDWorkspace.md index adefca0cf8..973a91fbdc 100644 --- a/docset/winserver2022-ps/rdmgmt/Set-RDWorkspace.md +++ b/docset/winserver2022-ps/rdmgmt/Set-RDWorkspace.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/set-rdworkspace?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/set-rdworkspace?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RDWorkspace --- diff --git a/docset/winserver2022-ps/rdmgmt/Stop-RDVirtualDesktopCollectionJob.md b/docset/winserver2022-ps/rdmgmt/Stop-RDVirtualDesktopCollectionJob.md index 5640475b86..c83b952b28 100644 --- a/docset/winserver2022-ps/rdmgmt/Stop-RDVirtualDesktopCollectionJob.md +++ b/docset/winserver2022-ps/rdmgmt/Stop-RDVirtualDesktopCollectionJob.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/stop-rdvirtualdesktopcollectionjob?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/stop-rdvirtualdesktopcollectionjob?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-RDVirtualDesktopCollectionJob --- diff --git a/docset/winserver2022-ps/rdmgmt/Test-RDOUAccess.md b/docset/winserver2022-ps/rdmgmt/Test-RDOUAccess.md index 99a9b1958c..6687902c77 100644 --- a/docset/winserver2022-ps/rdmgmt/Test-RDOUAccess.md +++ b/docset/winserver2022-ps/rdmgmt/Test-RDOUAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/test-rdouaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/test-rdouaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-RDOUAccess --- diff --git a/docset/winserver2022-ps/rdmgmt/Test-RDVirtualDesktopADMachineAccountReuse.md b/docset/winserver2022-ps/rdmgmt/Test-RDVirtualDesktopADMachineAccountReuse.md index d426616a06..66213c3960 100644 --- a/docset/winserver2022-ps/rdmgmt/Test-RDVirtualDesktopADMachineAccountReuse.md +++ b/docset/winserver2022-ps/rdmgmt/Test-RDVirtualDesktopADMachineAccountReuse.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/test-rdvirtualdesktopadmachineaccountreuse?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/test-rdvirtualdesktopadmachineaccountreuse?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-RDVirtualDesktopADMachineAccountReuse --- diff --git a/docset/winserver2022-ps/rdmgmt/Update-RDVirtualDesktopCollection.md b/docset/winserver2022-ps/rdmgmt/Update-RDVirtualDesktopCollection.md index c65587174a..639e8500c3 100644 --- a/docset/winserver2022-ps/rdmgmt/Update-RDVirtualDesktopCollection.md +++ b/docset/winserver2022-ps/rdmgmt/Update-RDVirtualDesktopCollection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: RemoteDesktop.psm1-help.xml Module Name: RDMgmt ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/rdmgmt/update-rdvirtualdesktopcollection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/rdmgmt/update-rdvirtualdesktopcollection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-RDVirtualDesktopCollection --- diff --git a/docset/winserver2022-ps/remoteaccess/Add-BgpCustomRoute.md b/docset/winserver2022-ps/remoteaccess/Add-BgpCustomRoute.md index 86f54c1b71..6efb885846 100644 --- a/docset/winserver2022-ps/remoteaccess/Add-BgpCustomRoute.md +++ b/docset/winserver2022-ps/remoteaccess/Add-BgpCustomRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpCustomRoute_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-bgpcustomroute?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-bgpcustomroute?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-BgpCustomRoute --- diff --git a/docset/winserver2022-ps/remoteaccess/Add-BgpPeer.md b/docset/winserver2022-ps/remoteaccess/Add-BgpPeer.md index 4cbaa29782..c0aeb6ac54 100644 --- a/docset/winserver2022-ps/remoteaccess/Add-BgpPeer.md +++ b/docset/winserver2022-ps/remoteaccess/Add-BgpPeer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpPeer_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-bgppeer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-bgppeer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-BgpPeer --- diff --git a/docset/winserver2022-ps/remoteaccess/Add-BgpRouteAggregate.md b/docset/winserver2022-ps/remoteaccess/Add-BgpRouteAggregate.md index 4442b8fc17..9311d84508 100644 --- a/docset/winserver2022-ps/remoteaccess/Add-BgpRouteAggregate.md +++ b/docset/winserver2022-ps/remoteaccess/Add-BgpRouteAggregate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRouteAggregate_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-bgprouteaggregate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-bgprouteaggregate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-BgpRouteAggregate --- diff --git a/docset/winserver2022-ps/remoteaccess/Add-BgpRouter.md b/docset/winserver2022-ps/remoteaccess/Add-BgpRouter.md index 87e948a594..8a9b8d6d49 100644 --- a/docset/winserver2022-ps/remoteaccess/Add-BgpRouter.md +++ b/docset/winserver2022-ps/remoteaccess/Add-BgpRouter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRouter_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-bgprouter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-bgprouter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-BgpRouter --- diff --git a/docset/winserver2022-ps/remoteaccess/Add-BgpRoutingPolicy.md b/docset/winserver2022-ps/remoteaccess/Add-BgpRoutingPolicy.md index c74f13170c..8fa6bdc9e1 100644 --- a/docset/winserver2022-ps/remoteaccess/Add-BgpRoutingPolicy.md +++ b/docset/winserver2022-ps/remoteaccess/Add-BgpRoutingPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRoutingPolicy_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-bgproutingpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-bgproutingpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-BgpRoutingPolicy --- diff --git a/docset/winserver2022-ps/remoteaccess/Add-BgpRoutingPolicyForPeer.md b/docset/winserver2022-ps/remoteaccess/Add-BgpRoutingPolicyForPeer.md index ce7a7af20f..79ef925bb2 100644 --- a/docset/winserver2022-ps/remoteaccess/Add-BgpRoutingPolicyForPeer.md +++ b/docset/winserver2022-ps/remoteaccess/Add-BgpRoutingPolicyForPeer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRoutingPolicyForPeer_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-bgproutingpolicyforpeer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-bgproutingpolicyforpeer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-BgpRoutingPolicyForPeer --- diff --git a/docset/winserver2022-ps/remoteaccess/Add-DAAppServer.md b/docset/winserver2022-ps/remoteaccess/Add-DAAppServer.md index 432e0dc4ed..d6d34d854e 100644 --- a/docset/winserver2022-ps/remoteaccess/Add-DAAppServer.md +++ b/docset/winserver2022-ps/remoteaccess/Add-DAAppServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAAppServer_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-daappserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-daappserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DAAppServer --- diff --git a/docset/winserver2022-ps/remoteaccess/Add-DAClient.md b/docset/winserver2022-ps/remoteaccess/Add-DAClient.md index 25c7a2c6f8..9f81e74b32 100644 --- a/docset/winserver2022-ps/remoteaccess/Add-DAClient.md +++ b/docset/winserver2022-ps/remoteaccess/Add-DAClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAClient_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-daclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-daclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DAClient --- diff --git a/docset/winserver2022-ps/remoteaccess/Add-DAClientDnsConfiguration.md b/docset/winserver2022-ps/remoteaccess/Add-DAClientDnsConfiguration.md index 0a22617ac0..b91a819ea2 100644 --- a/docset/winserver2022-ps/remoteaccess/Add-DAClientDnsConfiguration.md +++ b/docset/winserver2022-ps/remoteaccess/Add-DAClientDnsConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAClientDNSConfiguration_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-daclientdnsconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-daclientdnsconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DAClientDnsConfiguration --- diff --git a/docset/winserver2022-ps/remoteaccess/Add-DAEntryPoint.md b/docset/winserver2022-ps/remoteaccess/Add-DAEntryPoint.md index d8ca3f684c..41558e8dda 100644 --- a/docset/winserver2022-ps/remoteaccess/Add-DAEntryPoint.md +++ b/docset/winserver2022-ps/remoteaccess/Add-DAEntryPoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAEntryPoint_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-daentrypoint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-daentrypoint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DAEntryPoint --- diff --git a/docset/winserver2022-ps/remoteaccess/Add-DAMgmtServer.md b/docset/winserver2022-ps/remoteaccess/Add-DAMgmtServer.md index 7d51698555..fd8c25b6ca 100644 --- a/docset/winserver2022-ps/remoteaccess/Add-DAMgmtServer.md +++ b/docset/winserver2022-ps/remoteaccess/Add-DAMgmtServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAMgmtServer_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-damgmtserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-damgmtserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-DAMgmtServer --- diff --git a/docset/winserver2022-ps/remoteaccess/Add-RemoteAccessIpFilter.md b/docset/winserver2022-ps/remoteaccess/Add-RemoteAccessIpFilter.md index a86bc72cfe..7e668623f2 100644 --- a/docset/winserver2022-ps/remoteaccess/Add-RemoteAccessIpFilter.md +++ b/docset/winserver2022-ps/remoteaccess/Add-RemoteAccessIpFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_IPFilter_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-remoteaccessipfilter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-remoteaccessipfilter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-RemoteAccessIpFilter --- diff --git a/docset/winserver2022-ps/remoteaccess/Add-RemoteAccessLoadBalancerNode.md b/docset/winserver2022-ps/remoteaccess/Add-RemoteAccessLoadBalancerNode.md index 9b7c9895fc..36b702d2cc 100644 --- a/docset/winserver2022-ps/remoteaccess/Add-RemoteAccessLoadBalancerNode.md +++ b/docset/winserver2022-ps/remoteaccess/Add-RemoteAccessLoadBalancerNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessLoadBalancerNode_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-remoteaccessloadbalancernode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-remoteaccessloadbalancernode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-RemoteAccessLoadBalancerNode --- diff --git a/docset/winserver2022-ps/remoteaccess/Add-RemoteAccessRadius.md b/docset/winserver2022-ps/remoteaccess/Add-RemoteAccessRadius.md index 42d470b7d0..0a31be5423 100644 --- a/docset/winserver2022-ps/remoteaccess/Add-RemoteAccessRadius.md +++ b/docset/winserver2022-ps/remoteaccess/Add-RemoteAccessRadius.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessRADIUS_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-remoteaccessradius?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-remoteaccessradius?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-RemoteAccessRadius --- diff --git a/docset/winserver2022-ps/remoteaccess/Add-VpnIPAddressRange.md b/docset/winserver2022-ps/remoteaccess/Add-VpnIPAddressRange.md index 4e81ad2dfc..2c3b31bb6c 100644 --- a/docset/winserver2022-ps/remoteaccess/Add-VpnIPAddressRange.md +++ b/docset/winserver2022-ps/remoteaccess/Add-VpnIPAddressRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VPNIPAddressRange_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-vpnipaddressrange?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-vpnipaddressrange?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VpnIPAddressRange --- diff --git a/docset/winserver2022-ps/remoteaccess/Add-VpnS2SInterface.md b/docset/winserver2022-ps/remoteaccess/Add-VpnS2SInterface.md index 4506dfb4f2..b98f9e53b5 100644 --- a/docset/winserver2022-ps/remoteaccess/Add-VpnS2SInterface.md +++ b/docset/winserver2022-ps/remoteaccess/Add-VpnS2SInterface.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnS2SInterface_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-vpns2sinterface?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-vpns2sinterface?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VpnS2SInterface --- diff --git a/docset/winserver2022-ps/remoteaccess/Add-VpnSstpProxyRule.md b/docset/winserver2022-ps/remoteaccess/Add-VpnSstpProxyRule.md index 21fbb8a341..508dad6809 100644 --- a/docset/winserver2022-ps/remoteaccess/Add-VpnSstpProxyRule.md +++ b/docset/winserver2022-ps/remoteaccess/Add-VpnSstpProxyRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnSstpProxyRule_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/add-vpnsstpproxyrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/add-vpnsstpproxyrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VpnSstpProxyRule --- diff --git a/docset/winserver2022-ps/remoteaccess/Clear-BgpRouteFlapDampening.md b/docset/winserver2022-ps/remoteaccess/Clear-BgpRouteFlapDampening.md index eb24c0f665..c5986c9e2f 100644 --- a/docset/winserver2022-ps/remoteaccess/Clear-BgpRouteFlapDampening.md +++ b/docset/winserver2022-ps/remoteaccess/Clear-BgpRouteFlapDampening.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRouteFlapDampening_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/clear-bgprouteflapdampening?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/clear-bgprouteflapdampening?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-BgpRouteFlapDampening --- diff --git a/docset/winserver2022-ps/remoteaccess/Clear-RemoteAccessInboxAccountingStore.md b/docset/winserver2022-ps/remoteaccess/Clear-RemoteAccessInboxAccountingStore.md index b3984963fe..6dfb8491eb 100644 --- a/docset/winserver2022-ps/remoteaccess/Clear-RemoteAccessInboxAccountingStore.md +++ b/docset/winserver2022-ps/remoteaccess/Clear-RemoteAccessInboxAccountingStore.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessInboxAccountingStore_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/clear-remoteaccessinboxaccountingstore?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/clear-remoteaccessinboxaccountingstore?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-RemoteAccessInboxAccountingStore --- diff --git a/docset/winserver2022-ps/remoteaccess/Clear-VpnS2SInterfaceStatistics.md b/docset/winserver2022-ps/remoteaccess/Clear-VpnS2SInterfaceStatistics.md index 2ca413f1aa..5629ca53f2 100644 --- a/docset/winserver2022-ps/remoteaccess/Clear-VpnS2SInterfaceStatistics.md +++ b/docset/winserver2022-ps/remoteaccess/Clear-VpnS2SInterfaceStatistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnS2SInterfaceStatistics_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/clear-vpns2sinterfacestatistics?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/clear-vpns2sinterfacestatistics?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-VpnS2SInterfaceStatistics --- diff --git a/docset/winserver2022-ps/remoteaccess/Connect-VpnS2SInterface.md b/docset/winserver2022-ps/remoteaccess/Connect-VpnS2SInterface.md index a7a4a0caf3..98fd22e56e 100644 --- a/docset/winserver2022-ps/remoteaccess/Connect-VpnS2SInterface.md +++ b/docset/winserver2022-ps/remoteaccess/Connect-VpnS2SInterface.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnS2SInterface_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/connect-vpns2sinterface?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/connect-vpns2sinterface?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Connect-VpnS2SInterface --- diff --git a/docset/winserver2022-ps/remoteaccess/Disable-BgpRouteFlapDampening.md b/docset/winserver2022-ps/remoteaccess/Disable-BgpRouteFlapDampening.md index 850fcf3659..92096b454c 100644 --- a/docset/winserver2022-ps/remoteaccess/Disable-BgpRouteFlapDampening.md +++ b/docset/winserver2022-ps/remoteaccess/Disable-BgpRouteFlapDampening.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRouteFlapDampening_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/disable-bgprouteflapdampening?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/disable-bgprouteflapdampening?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-BgpRouteFlapDampening --- diff --git a/docset/winserver2022-ps/remoteaccess/Disable-DAMultiSite.md b/docset/winserver2022-ps/remoteaccess/Disable-DAMultiSite.md index fc66322936..e5b9641d42 100644 --- a/docset/winserver2022-ps/remoteaccess/Disable-DAMultiSite.md +++ b/docset/winserver2022-ps/remoteaccess/Disable-DAMultiSite.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAMultiSite_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/disable-damultisite?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/disable-damultisite?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-DAMultiSite --- diff --git a/docset/winserver2022-ps/remoteaccess/Disable-DAOtpAuthentication.md b/docset/winserver2022-ps/remoteaccess/Disable-DAOtpAuthentication.md index dabfb3455f..84b9ecf22e 100644 --- a/docset/winserver2022-ps/remoteaccess/Disable-DAOtpAuthentication.md +++ b/docset/winserver2022-ps/remoteaccess/Disable-DAOtpAuthentication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAOtpAuthentication_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/disable-daotpauthentication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/disable-daotpauthentication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-DAOtpAuthentication --- diff --git a/docset/winserver2022-ps/remoteaccess/Disable-RemoteAccessRoutingDomain.md b/docset/winserver2022-ps/remoteaccess/Disable-RemoteAccessRoutingDomain.md index 7f2c571b37..c367023809 100644 --- a/docset/winserver2022-ps/remoteaccess/Disable-RemoteAccessRoutingDomain.md +++ b/docset/winserver2022-ps/remoteaccess/Disable-RemoteAccessRoutingDomain.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessRoutingDomain_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/disable-remoteaccessroutingdomain?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/disable-remoteaccessroutingdomain?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-RemoteAccessRoutingDomain --- diff --git a/docset/winserver2022-ps/remoteaccess/Disconnect-VpnS2SInterface.md b/docset/winserver2022-ps/remoteaccess/Disconnect-VpnS2SInterface.md index 55a0bed631..428441ab8d 100644 --- a/docset/winserver2022-ps/remoteaccess/Disconnect-VpnS2SInterface.md +++ b/docset/winserver2022-ps/remoteaccess/Disconnect-VpnS2SInterface.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnS2SInterface_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/disconnect-vpns2sinterface?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/disconnect-vpns2sinterface?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disconnect-VpnS2SInterface --- diff --git a/docset/winserver2022-ps/remoteaccess/Disconnect-VpnUser.md b/docset/winserver2022-ps/remoteaccess/Disconnect-VpnUser.md index cbdef64b84..81c85fc05e 100644 --- a/docset/winserver2022-ps/remoteaccess/Disconnect-VpnUser.md +++ b/docset/winserver2022-ps/remoteaccess/Disconnect-VpnUser.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VPNUser_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/disconnect-vpnuser?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/disconnect-vpnuser?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disconnect-VpnUser --- diff --git a/docset/winserver2022-ps/remoteaccess/Enable-BgpRouteFlapDampening.md b/docset/winserver2022-ps/remoteaccess/Enable-BgpRouteFlapDampening.md index 3503b9873c..3cf51244bc 100644 --- a/docset/winserver2022-ps/remoteaccess/Enable-BgpRouteFlapDampening.md +++ b/docset/winserver2022-ps/remoteaccess/Enable-BgpRouteFlapDampening.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRouteFlapDampening_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/enable-bgprouteflapdampening?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/enable-bgprouteflapdampening?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-BgpRouteFlapDampening --- diff --git a/docset/winserver2022-ps/remoteaccess/Enable-DAMultiSite.md b/docset/winserver2022-ps/remoteaccess/Enable-DAMultiSite.md index 43c048924f..676b9bdfe4 100644 --- a/docset/winserver2022-ps/remoteaccess/Enable-DAMultiSite.md +++ b/docset/winserver2022-ps/remoteaccess/Enable-DAMultiSite.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAMultiSite_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/enable-damultisite?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/enable-damultisite?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-DAMultiSite --- diff --git a/docset/winserver2022-ps/remoteaccess/Enable-DAOtpAuthentication.md b/docset/winserver2022-ps/remoteaccess/Enable-DAOtpAuthentication.md index c515f74798..34ba6bb366 100644 --- a/docset/winserver2022-ps/remoteaccess/Enable-DAOtpAuthentication.md +++ b/docset/winserver2022-ps/remoteaccess/Enable-DAOtpAuthentication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAOtpAuthentication_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/enable-daotpauthentication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/enable-daotpauthentication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-DAOtpAuthentication --- diff --git a/docset/winserver2022-ps/remoteaccess/Enable-RemoteAccessRoutingDomain.md b/docset/winserver2022-ps/remoteaccess/Enable-RemoteAccessRoutingDomain.md index 84f78c1ec1..108d3ac92b 100644 --- a/docset/winserver2022-ps/remoteaccess/Enable-RemoteAccessRoutingDomain.md +++ b/docset/winserver2022-ps/remoteaccess/Enable-RemoteAccessRoutingDomain.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessRoutingDomain_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/enable-remoteaccessroutingdomain?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/enable-remoteaccessroutingdomain?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-RemoteAccessRoutingDomain --- diff --git a/docset/winserver2022-ps/remoteaccess/Get-BgpCustomRoute.md b/docset/winserver2022-ps/remoteaccess/Get-BgpCustomRoute.md index 6823d38c4d..7fc8e23c83 100644 --- a/docset/winserver2022-ps/remoteaccess/Get-BgpCustomRoute.md +++ b/docset/winserver2022-ps/remoteaccess/Get-BgpCustomRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpCustomRoute_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-bgpcustomroute?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-bgpcustomroute?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BgpCustomRoute --- diff --git a/docset/winserver2022-ps/remoteaccess/Get-BgpPeer.md b/docset/winserver2022-ps/remoteaccess/Get-BgpPeer.md index 8ab872f889..b53c835e7c 100644 --- a/docset/winserver2022-ps/remoteaccess/Get-BgpPeer.md +++ b/docset/winserver2022-ps/remoteaccess/Get-BgpPeer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpPeer_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-bgppeer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-bgppeer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BgpPeer --- diff --git a/docset/winserver2022-ps/remoteaccess/Get-BgpRouteAggregate.md b/docset/winserver2022-ps/remoteaccess/Get-BgpRouteAggregate.md index b417751acf..329e3b9a3c 100644 --- a/docset/winserver2022-ps/remoteaccess/Get-BgpRouteAggregate.md +++ b/docset/winserver2022-ps/remoteaccess/Get-BgpRouteAggregate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRouteAggregate_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-bgprouteaggregate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-bgprouteaggregate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BgpRouteAggregate --- diff --git a/docset/winserver2022-ps/remoteaccess/Get-BgpRouteFlapDampening.md b/docset/winserver2022-ps/remoteaccess/Get-BgpRouteFlapDampening.md index 9a4a5d49d9..2fa2e9e6f8 100644 --- a/docset/winserver2022-ps/remoteaccess/Get-BgpRouteFlapDampening.md +++ b/docset/winserver2022-ps/remoteaccess/Get-BgpRouteFlapDampening.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRouteFlapDampening_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-bgprouteflapdampening?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-bgprouteflapdampening?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BgpRouteFlapDampening --- diff --git a/docset/winserver2022-ps/remoteaccess/Get-BgpRouteInformation.md b/docset/winserver2022-ps/remoteaccess/Get-BgpRouteInformation.md index 158a77b097..bc9d640443 100644 --- a/docset/winserver2022-ps/remoteaccess/Get-BgpRouteInformation.md +++ b/docset/winserver2022-ps/remoteaccess/Get-BgpRouteInformation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRoute_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-bgprouteinformation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-bgprouteinformation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BgpRouteInformation --- diff --git a/docset/winserver2022-ps/remoteaccess/Get-BgpRouter.md b/docset/winserver2022-ps/remoteaccess/Get-BgpRouter.md index 20cdb100e4..253181904c 100644 --- a/docset/winserver2022-ps/remoteaccess/Get-BgpRouter.md +++ b/docset/winserver2022-ps/remoteaccess/Get-BgpRouter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRouter_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-bgprouter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-bgprouter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BgpRouter --- diff --git a/docset/winserver2022-ps/remoteaccess/Get-BgpRoutingPolicy.md b/docset/winserver2022-ps/remoteaccess/Get-BgpRoutingPolicy.md index 6c890fa539..eaf7f1d33d 100644 --- a/docset/winserver2022-ps/remoteaccess/Get-BgpRoutingPolicy.md +++ b/docset/winserver2022-ps/remoteaccess/Get-BgpRoutingPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRoutingPolicy_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-bgproutingpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-bgproutingpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BgpRoutingPolicy --- diff --git a/docset/winserver2022-ps/remoteaccess/Get-BgpStatistics.md b/docset/winserver2022-ps/remoteaccess/Get-BgpStatistics.md index 1bf1dd190f..766a949d06 100644 --- a/docset/winserver2022-ps/remoteaccess/Get-BgpStatistics.md +++ b/docset/winserver2022-ps/remoteaccess/Get-BgpStatistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpStatistics_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-bgpstatistics?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-bgpstatistics?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-BgpStatistics --- diff --git a/docset/winserver2022-ps/remoteaccess/Get-DAAppServer.md b/docset/winserver2022-ps/remoteaccess/Get-DAAppServer.md index 7f3798f06c..e86a034676 100644 --- a/docset/winserver2022-ps/remoteaccess/Get-DAAppServer.md +++ b/docset/winserver2022-ps/remoteaccess/Get-DAAppServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAAppServer_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-daappserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-daappserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DAAppServer --- diff --git a/docset/winserver2022-ps/remoteaccess/Get-DAClient.md b/docset/winserver2022-ps/remoteaccess/Get-DAClient.md index 3d2b4709b5..f5a83afed4 100644 --- a/docset/winserver2022-ps/remoteaccess/Get-DAClient.md +++ b/docset/winserver2022-ps/remoteaccess/Get-DAClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAClient_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-daclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-daclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DAClient --- diff --git a/docset/winserver2022-ps/remoteaccess/Get-DAClientDnsConfiguration.md b/docset/winserver2022-ps/remoteaccess/Get-DAClientDnsConfiguration.md index 5dd1265c41..84a849b7ae 100644 --- a/docset/winserver2022-ps/remoteaccess/Get-DAClientDnsConfiguration.md +++ b/docset/winserver2022-ps/remoteaccess/Get-DAClientDnsConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAClientDNSConfiguration_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-daclientdnsconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-daclientdnsconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DAClientDnsConfiguration --- diff --git a/docset/winserver2022-ps/remoteaccess/Get-DAEntryPoint.md b/docset/winserver2022-ps/remoteaccess/Get-DAEntryPoint.md index 226338cbb0..57d45824e6 100644 --- a/docset/winserver2022-ps/remoteaccess/Get-DAEntryPoint.md +++ b/docset/winserver2022-ps/remoteaccess/Get-DAEntryPoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAEntryPoint_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-daentrypoint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-daentrypoint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DAEntryPoint --- diff --git a/docset/winserver2022-ps/remoteaccess/Get-DAEntryPointDC.md b/docset/winserver2022-ps/remoteaccess/Get-DAEntryPointDC.md index ed63ee29b4..cc76a6ebf7 100644 --- a/docset/winserver2022-ps/remoteaccess/Get-DAEntryPointDC.md +++ b/docset/winserver2022-ps/remoteaccess/Get-DAEntryPointDC.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAEntryPointDC_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-daentrypointdc?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-daentrypointdc?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DAEntryPointDC --- diff --git a/docset/winserver2022-ps/remoteaccess/Get-DAMgmtServer.md b/docset/winserver2022-ps/remoteaccess/Get-DAMgmtServer.md index daaeb75bff..977aab3df2 100644 --- a/docset/winserver2022-ps/remoteaccess/Get-DAMgmtServer.md +++ b/docset/winserver2022-ps/remoteaccess/Get-DAMgmtServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAMgmtServer_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-damgmtserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-damgmtserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DAMgmtServer --- diff --git a/docset/winserver2022-ps/remoteaccess/Get-DAMultiSite.md b/docset/winserver2022-ps/remoteaccess/Get-DAMultiSite.md index 24b9914ade..6482ea421e 100644 --- a/docset/winserver2022-ps/remoteaccess/Get-DAMultiSite.md +++ b/docset/winserver2022-ps/remoteaccess/Get-DAMultiSite.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAMultiSite_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-damultisite?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-damultisite?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DAMultiSite --- diff --git a/docset/winserver2022-ps/remoteaccess/Get-DANetworkLocationServer.md b/docset/winserver2022-ps/remoteaccess/Get-DANetworkLocationServer.md index ee89b2c2e4..74cf05f8f6 100644 --- a/docset/winserver2022-ps/remoteaccess/Get-DANetworkLocationServer.md +++ b/docset/winserver2022-ps/remoteaccess/Get-DANetworkLocationServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DANetworkLocationServer_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-danetworklocationserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-danetworklocationserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DANetworkLocationServer --- diff --git a/docset/winserver2022-ps/remoteaccess/Get-DAOtpAuthentication.md b/docset/winserver2022-ps/remoteaccess/Get-DAOtpAuthentication.md index 1db5bccea3..7e84a035b3 100644 --- a/docset/winserver2022-ps/remoteaccess/Get-DAOtpAuthentication.md +++ b/docset/winserver2022-ps/remoteaccess/Get-DAOtpAuthentication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAOtpAuthentication_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-daotpauthentication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-daotpauthentication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DAOtpAuthentication --- diff --git a/docset/winserver2022-ps/remoteaccess/Get-DAServer.md b/docset/winserver2022-ps/remoteaccess/Get-DAServer.md index b5753f9c64..2be1be5f48 100644 --- a/docset/winserver2022-ps/remoteaccess/Get-DAServer.md +++ b/docset/winserver2022-ps/remoteaccess/Get-DAServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAServer_v2.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-daserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-daserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DAServer --- diff --git a/docset/winserver2022-ps/remoteaccess/Get-RemoteAccess.md b/docset/winserver2022-ps/remoteaccess/Get-RemoteAccess.md index 53fb43949b..394118a64b 100644 --- a/docset/winserver2022-ps/remoteaccess/Get-RemoteAccess.md +++ b/docset/winserver2022-ps/remoteaccess/Get-RemoteAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccess_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-remoteaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-remoteaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RemoteAccess --- diff --git a/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessAccounting.md b/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessAccounting.md index 4a68bba380..3098827463 100644 --- a/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessAccounting.md +++ b/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessAccounting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessAccounting_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-remoteaccessaccounting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-remoteaccessaccounting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RemoteAccessAccounting --- diff --git a/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessConfiguration.md b/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessConfiguration.md index 69ff6d406e..79a5a1bde3 100644 --- a/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessConfiguration.md +++ b/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessConfiguration_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-remoteaccessconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-remoteaccessconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RemoteAccessConfiguration --- diff --git a/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessConnectionStatistics.md b/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessConnectionStatistics.md index 080445751a..ccec8e586b 100644 --- a/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessConnectionStatistics.md +++ b/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessConnectionStatistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessConnectionStatistics_v2.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-remoteaccessconnectionstatistics?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-remoteaccessconnectionstatistics?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RemoteAccessConnectionStatistics --- diff --git a/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessConnectionStatisticsSummary.md b/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessConnectionStatisticsSummary.md index bc94b13cf9..611cd11357 100644 --- a/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessConnectionStatisticsSummary.md +++ b/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessConnectionStatisticsSummary.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessConnectionStatisticsSummary_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-remoteaccessconnectionstatisticssummary?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-remoteaccessconnectionstatisticssummary?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RemoteAccessConnectionStatisticsSummary --- diff --git a/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessHealth.md b/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessHealth.md index d342016b45..47412d1106 100644 --- a/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessHealth.md +++ b/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessHealth.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessHealth_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-remoteaccesshealth?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-remoteaccesshealth?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RemoteAccessHealth --- diff --git a/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessIpFilter.md b/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessIpFilter.md index 95db636edb..98ffccfee4 100644 --- a/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessIpFilter.md +++ b/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessIpFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_IPFilter_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-remoteaccessipfilter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-remoteaccessipfilter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RemoteAccessIpFilter --- diff --git a/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessLoadBalancer.md b/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessLoadBalancer.md index 286cdc57e0..f2fc390a91 100644 --- a/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessLoadBalancer.md +++ b/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessLoadBalancer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessLoadBalancer_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-remoteaccessloadbalancer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-remoteaccessloadbalancer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RemoteAccessLoadBalancer --- diff --git a/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessRadius.md b/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessRadius.md index 47028da91f..071add35ab 100644 --- a/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessRadius.md +++ b/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessRadius.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessRADIUS_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-remoteaccessradius?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-remoteaccessradius?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RemoteAccessRadius --- diff --git a/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessRoutingDomain.md b/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessRoutingDomain.md index ebd49e4c63..8b64792867 100644 --- a/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessRoutingDomain.md +++ b/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessRoutingDomain.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessRoutingDomain_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-remoteaccessroutingdomain?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-remoteaccessroutingdomain?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RemoteAccessRoutingDomain --- diff --git a/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessUserActivity.md b/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessUserActivity.md index 1f84beb515..d67beb6036 100644 --- a/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessUserActivity.md +++ b/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessUserActivity.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessUserActivity_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-remoteaccessuseractivity?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-remoteaccessuseractivity?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RemoteAccessUserActivity --- diff --git a/docset/winserver2022-ps/remoteaccess/Get-RoutingProtocolPreference.md b/docset/winserver2022-ps/remoteaccess/Get-RoutingProtocolPreference.md index f70077f3fb..58e113c457 100644 --- a/docset/winserver2022-ps/remoteaccess/Get-RoutingProtocolPreference.md +++ b/docset/winserver2022-ps/remoteaccess/Get-RoutingProtocolPreference.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RoutingProtocolPreference_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-routingprotocolpreference?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-routingprotocolpreference?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-RoutingProtocolPreference --- diff --git a/docset/winserver2022-ps/remoteaccess/Get-VpnAuthProtocol.md b/docset/winserver2022-ps/remoteaccess/Get-VpnAuthProtocol.md index 8ce4226492..327aadad04 100644 --- a/docset/winserver2022-ps/remoteaccess/Get-VpnAuthProtocol.md +++ b/docset/winserver2022-ps/remoteaccess/Get-VpnAuthProtocol.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnAuthProtocol_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-vpnauthprotocol?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-vpnauthprotocol?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VpnAuthProtocol --- diff --git a/docset/winserver2022-ps/remoteaccess/Get-VpnS2SInterface.md b/docset/winserver2022-ps/remoteaccess/Get-VpnS2SInterface.md index c87e1beb90..020463d403 100644 --- a/docset/winserver2022-ps/remoteaccess/Get-VpnS2SInterface.md +++ b/docset/winserver2022-ps/remoteaccess/Get-VpnS2SInterface.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnS2SInterface_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-vpns2sinterface?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-vpns2sinterface?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VpnS2SInterface --- diff --git a/docset/winserver2022-ps/remoteaccess/Get-VpnS2SInterfaceStatistics.md b/docset/winserver2022-ps/remoteaccess/Get-VpnS2SInterfaceStatistics.md index 3fe725b7b2..3bf0220705 100644 --- a/docset/winserver2022-ps/remoteaccess/Get-VpnS2SInterfaceStatistics.md +++ b/docset/winserver2022-ps/remoteaccess/Get-VpnS2SInterfaceStatistics.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnS2SInterfaceStatistics_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-vpns2sinterfacestatistics?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-vpns2sinterfacestatistics?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VpnS2SInterfaceStatistics --- diff --git a/docset/winserver2022-ps/remoteaccess/Get-VpnServerConfiguration.md b/docset/winserver2022-ps/remoteaccess/Get-VpnServerConfiguration.md index 315a83f73e..f8bd4b84bc 100644 --- a/docset/winserver2022-ps/remoteaccess/Get-VpnServerConfiguration.md +++ b/docset/winserver2022-ps/remoteaccess/Get-VpnServerConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnServerIPsecConfiguration_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-vpnserverconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-vpnserverconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VpnServerConfiguration --- diff --git a/docset/winserver2022-ps/remoteaccess/Get-VpnSstpProxyRule.md b/docset/winserver2022-ps/remoteaccess/Get-VpnSstpProxyRule.md index bf9fe6acc2..250066d451 100644 --- a/docset/winserver2022-ps/remoteaccess/Get-VpnSstpProxyRule.md +++ b/docset/winserver2022-ps/remoteaccess/Get-VpnSstpProxyRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnSstpProxyRule_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/get-vpnsstpproxyrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/get-vpnsstpproxyrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VpnSstpProxyRule --- diff --git a/docset/winserver2022-ps/remoteaccess/Install-RemoteAccess.md b/docset/winserver2022-ps/remoteaccess/Install-RemoteAccess.md index dd5b953e0a..758c7f489b 100644 --- a/docset/winserver2022-ps/remoteaccess/Install-RemoteAccess.md +++ b/docset/winserver2022-ps/remoteaccess/Install-RemoteAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccess_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/install-remoteaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/install-remoteaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-RemoteAccess --- diff --git a/docset/winserver2022-ps/remoteaccess/New-VpnSstpProxyRule.md b/docset/winserver2022-ps/remoteaccess/New-VpnSstpProxyRule.md index 0a82075da0..62c4d0e12b 100644 --- a/docset/winserver2022-ps/remoteaccess/New-VpnSstpProxyRule.md +++ b/docset/winserver2022-ps/remoteaccess/New-VpnSstpProxyRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnSstpProxyRule_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/new-vpnsstpproxyrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/new-vpnsstpproxyrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VpnSstpProxyRule --- diff --git a/docset/winserver2022-ps/remoteaccess/New-VpnTrafficSelector.md b/docset/winserver2022-ps/remoteaccess/New-VpnTrafficSelector.md index 65192e561a..6524e33e1f 100644 --- a/docset/winserver2022-ps/remoteaccess/New-VpnTrafficSelector.md +++ b/docset/winserver2022-ps/remoteaccess/New-VpnTrafficSelector.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnTrafficselector_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/new-vpntrafficselector?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/new-vpntrafficselector?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VpnTrafficSelector --- diff --git a/docset/winserver2022-ps/remoteaccess/Remove-BgpCustomRoute.md b/docset/winserver2022-ps/remoteaccess/Remove-BgpCustomRoute.md index aeb3e06445..39e02018c9 100644 --- a/docset/winserver2022-ps/remoteaccess/Remove-BgpCustomRoute.md +++ b/docset/winserver2022-ps/remoteaccess/Remove-BgpCustomRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpCustomRoute_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-bgpcustomroute?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-bgpcustomroute?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-BgpCustomRoute --- diff --git a/docset/winserver2022-ps/remoteaccess/Remove-BgpPeer.md b/docset/winserver2022-ps/remoteaccess/Remove-BgpPeer.md index 45ab022980..2da04125e3 100644 --- a/docset/winserver2022-ps/remoteaccess/Remove-BgpPeer.md +++ b/docset/winserver2022-ps/remoteaccess/Remove-BgpPeer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpPeer_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-bgppeer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-bgppeer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-BgpPeer --- diff --git a/docset/winserver2022-ps/remoteaccess/Remove-BgpRouteAggregate.md b/docset/winserver2022-ps/remoteaccess/Remove-BgpRouteAggregate.md index ccff8ef6f7..8a4be58872 100644 --- a/docset/winserver2022-ps/remoteaccess/Remove-BgpRouteAggregate.md +++ b/docset/winserver2022-ps/remoteaccess/Remove-BgpRouteAggregate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRouteAggregate_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-bgprouteaggregate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-bgprouteaggregate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-BgpRouteAggregate --- diff --git a/docset/winserver2022-ps/remoteaccess/Remove-BgpRouter.md b/docset/winserver2022-ps/remoteaccess/Remove-BgpRouter.md index 8753630da0..f634b1afc8 100644 --- a/docset/winserver2022-ps/remoteaccess/Remove-BgpRouter.md +++ b/docset/winserver2022-ps/remoteaccess/Remove-BgpRouter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRouter_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-bgprouter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-bgprouter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-BgpRouter --- diff --git a/docset/winserver2022-ps/remoteaccess/Remove-BgpRoutingPolicy.md b/docset/winserver2022-ps/remoteaccess/Remove-BgpRoutingPolicy.md index 20261a8bc6..b0073621de 100644 --- a/docset/winserver2022-ps/remoteaccess/Remove-BgpRoutingPolicy.md +++ b/docset/winserver2022-ps/remoteaccess/Remove-BgpRoutingPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRoutingPolicy_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-bgproutingpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-bgproutingpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-BgpRoutingPolicy --- diff --git a/docset/winserver2022-ps/remoteaccess/Remove-BgpRoutingPolicyForPeer.md b/docset/winserver2022-ps/remoteaccess/Remove-BgpRoutingPolicyForPeer.md index 1cd7619d86..6197c7b23a 100644 --- a/docset/winserver2022-ps/remoteaccess/Remove-BgpRoutingPolicyForPeer.md +++ b/docset/winserver2022-ps/remoteaccess/Remove-BgpRoutingPolicyForPeer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRoutingPolicyForPeer_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-bgproutingpolicyforpeer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-bgproutingpolicyforpeer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-BgpRoutingPolicyForPeer --- diff --git a/docset/winserver2022-ps/remoteaccess/Remove-DAAppServer.md b/docset/winserver2022-ps/remoteaccess/Remove-DAAppServer.md index 598c6da068..4a641d010c 100644 --- a/docset/winserver2022-ps/remoteaccess/Remove-DAAppServer.md +++ b/docset/winserver2022-ps/remoteaccess/Remove-DAAppServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAAppServer_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-daappserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-daappserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DAAppServer --- diff --git a/docset/winserver2022-ps/remoteaccess/Remove-DAClient.md b/docset/winserver2022-ps/remoteaccess/Remove-DAClient.md index 4a404207af..5c2c5e3bbb 100644 --- a/docset/winserver2022-ps/remoteaccess/Remove-DAClient.md +++ b/docset/winserver2022-ps/remoteaccess/Remove-DAClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAClient_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-daclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-daclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DAClient --- diff --git a/docset/winserver2022-ps/remoteaccess/Remove-DAClientDnsConfiguration.md b/docset/winserver2022-ps/remoteaccess/Remove-DAClientDnsConfiguration.md index 1690ba5a2e..6528438540 100644 --- a/docset/winserver2022-ps/remoteaccess/Remove-DAClientDnsConfiguration.md +++ b/docset/winserver2022-ps/remoteaccess/Remove-DAClientDnsConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAClientDNSConfiguration_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-daclientdnsconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-daclientdnsconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DAClientDnsConfiguration --- diff --git a/docset/winserver2022-ps/remoteaccess/Remove-DAEntryPoint.md b/docset/winserver2022-ps/remoteaccess/Remove-DAEntryPoint.md index a6e9a6dee0..b1553cff9a 100644 --- a/docset/winserver2022-ps/remoteaccess/Remove-DAEntryPoint.md +++ b/docset/winserver2022-ps/remoteaccess/Remove-DAEntryPoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAEntryPoint_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-daentrypoint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-daentrypoint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DAEntryPoint --- diff --git a/docset/winserver2022-ps/remoteaccess/Remove-DAMgmtServer.md b/docset/winserver2022-ps/remoteaccess/Remove-DAMgmtServer.md index 58b49e885e..55bb993b2d 100644 --- a/docset/winserver2022-ps/remoteaccess/Remove-DAMgmtServer.md +++ b/docset/winserver2022-ps/remoteaccess/Remove-DAMgmtServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAMgmtServer_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-damgmtserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-damgmtserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-DAMgmtServer --- diff --git a/docset/winserver2022-ps/remoteaccess/Remove-RemoteAccessIpFilter.md b/docset/winserver2022-ps/remoteaccess/Remove-RemoteAccessIpFilter.md index 2fc97ef3c6..dccbff385c 100644 --- a/docset/winserver2022-ps/remoteaccess/Remove-RemoteAccessIpFilter.md +++ b/docset/winserver2022-ps/remoteaccess/Remove-RemoteAccessIpFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_IPFilter_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-remoteaccessipfilter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-remoteaccessipfilter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-RemoteAccessIpFilter --- diff --git a/docset/winserver2022-ps/remoteaccess/Remove-RemoteAccessLoadBalancerNode.md b/docset/winserver2022-ps/remoteaccess/Remove-RemoteAccessLoadBalancerNode.md index 7ab326b482..60ef31c551 100644 --- a/docset/winserver2022-ps/remoteaccess/Remove-RemoteAccessLoadBalancerNode.md +++ b/docset/winserver2022-ps/remoteaccess/Remove-RemoteAccessLoadBalancerNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessLoadBalancerNode_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-remoteaccessloadbalancernode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-remoteaccessloadbalancernode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-RemoteAccessLoadBalancerNode --- diff --git a/docset/winserver2022-ps/remoteaccess/Remove-RemoteAccessRadius.md b/docset/winserver2022-ps/remoteaccess/Remove-RemoteAccessRadius.md index f41bbf5449..53fb30691d 100644 --- a/docset/winserver2022-ps/remoteaccess/Remove-RemoteAccessRadius.md +++ b/docset/winserver2022-ps/remoteaccess/Remove-RemoteAccessRadius.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessRADIUS_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-remoteaccessradius?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-remoteaccessradius?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-RemoteAccessRadius --- diff --git a/docset/winserver2022-ps/remoteaccess/Remove-VpnIPAddressRange.md b/docset/winserver2022-ps/remoteaccess/Remove-VpnIPAddressRange.md index d54d255740..9ba983a284 100644 --- a/docset/winserver2022-ps/remoteaccess/Remove-VpnIPAddressRange.md +++ b/docset/winserver2022-ps/remoteaccess/Remove-VpnIPAddressRange.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VPNIPAddressRange_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-vpnipaddressrange?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-vpnipaddressrange?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VpnIPAddressRange --- diff --git a/docset/winserver2022-ps/remoteaccess/Remove-VpnS2SInterface.md b/docset/winserver2022-ps/remoteaccess/Remove-VpnS2SInterface.md index 14e409388c..d60dcf7a0a 100644 --- a/docset/winserver2022-ps/remoteaccess/Remove-VpnS2SInterface.md +++ b/docset/winserver2022-ps/remoteaccess/Remove-VpnS2SInterface.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnS2SInterface_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-vpns2sinterface?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-vpns2sinterface?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VpnS2SInterface --- diff --git a/docset/winserver2022-ps/remoteaccess/Remove-VpnSstpProxyRule.md b/docset/winserver2022-ps/remoteaccess/Remove-VpnSstpProxyRule.md index 3736260b38..7d0b5cf90f 100644 --- a/docset/winserver2022-ps/remoteaccess/Remove-VpnSstpProxyRule.md +++ b/docset/winserver2022-ps/remoteaccess/Remove-VpnSstpProxyRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnSstpProxyRule_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/remove-vpnsstpproxyrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/remove-vpnsstpproxyrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VpnSstpProxyRule --- diff --git a/docset/winserver2022-ps/remoteaccess/Set-BgpPeer.md b/docset/winserver2022-ps/remoteaccess/Set-BgpPeer.md index f62d5e8e22..9a60740e9e 100644 --- a/docset/winserver2022-ps/remoteaccess/Set-BgpPeer.md +++ b/docset/winserver2022-ps/remoteaccess/Set-BgpPeer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpPeer_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-bgppeer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-bgppeer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-BgpPeer --- diff --git a/docset/winserver2022-ps/remoteaccess/Set-BgpRouteAggregate.md b/docset/winserver2022-ps/remoteaccess/Set-BgpRouteAggregate.md index 1122d80f53..3c4d2b7dbc 100644 --- a/docset/winserver2022-ps/remoteaccess/Set-BgpRouteAggregate.md +++ b/docset/winserver2022-ps/remoteaccess/Set-BgpRouteAggregate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRouteAggregate_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-bgprouteaggregate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-bgprouteaggregate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-BgpRouteAggregate --- diff --git a/docset/winserver2022-ps/remoteaccess/Set-BgpRouteFlapDampening.md b/docset/winserver2022-ps/remoteaccess/Set-BgpRouteFlapDampening.md index bafb81ba11..56ca6c71a0 100644 --- a/docset/winserver2022-ps/remoteaccess/Set-BgpRouteFlapDampening.md +++ b/docset/winserver2022-ps/remoteaccess/Set-BgpRouteFlapDampening.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRouteFlapDampening_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-bgprouteflapdampening?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-bgprouteflapdampening?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-BgpRouteFlapDampening --- diff --git a/docset/winserver2022-ps/remoteaccess/Set-BgpRouter.md b/docset/winserver2022-ps/remoteaccess/Set-BgpRouter.md index a024e288d1..45d1b01af5 100644 --- a/docset/winserver2022-ps/remoteaccess/Set-BgpRouter.md +++ b/docset/winserver2022-ps/remoteaccess/Set-BgpRouter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRouter_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-bgprouter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-bgprouter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-BgpRouter --- diff --git a/docset/winserver2022-ps/remoteaccess/Set-BgpRoutingPolicy.md b/docset/winserver2022-ps/remoteaccess/Set-BgpRoutingPolicy.md index e9b3f765b9..4cf87150cb 100644 --- a/docset/winserver2022-ps/remoteaccess/Set-BgpRoutingPolicy.md +++ b/docset/winserver2022-ps/remoteaccess/Set-BgpRoutingPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRoutingPolicy_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-bgproutingpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-bgproutingpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-BgpRoutingPolicy --- diff --git a/docset/winserver2022-ps/remoteaccess/Set-BgpRoutingPolicyForPeer.md b/docset/winserver2022-ps/remoteaccess/Set-BgpRoutingPolicyForPeer.md index 6e5500ba6c..f3b5ad6653 100644 --- a/docset/winserver2022-ps/remoteaccess/Set-BgpRoutingPolicyForPeer.md +++ b/docset/winserver2022-ps/remoteaccess/Set-BgpRoutingPolicyForPeer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpRoutingPolicyForPeer_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-bgproutingpolicyforpeer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-bgproutingpolicyforpeer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-BgpRoutingPolicyForPeer --- diff --git a/docset/winserver2022-ps/remoteaccess/Set-DAAppServerConnection.md b/docset/winserver2022-ps/remoteaccess/Set-DAAppServerConnection.md index b165c6b6ce..51ee368a0e 100644 --- a/docset/winserver2022-ps/remoteaccess/Set-DAAppServerConnection.md +++ b/docset/winserver2022-ps/remoteaccess/Set-DAAppServerConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAAppServerConnection_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-daappserverconnection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-daappserverconnection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DAAppServerConnection --- diff --git a/docset/winserver2022-ps/remoteaccess/Set-DAClient.md b/docset/winserver2022-ps/remoteaccess/Set-DAClient.md index 15de039a91..8e62943547 100644 --- a/docset/winserver2022-ps/remoteaccess/Set-DAClient.md +++ b/docset/winserver2022-ps/remoteaccess/Set-DAClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAClient_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-daclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-daclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DAClient --- diff --git a/docset/winserver2022-ps/remoteaccess/Set-DAClientDnsConfiguration.md b/docset/winserver2022-ps/remoteaccess/Set-DAClientDnsConfiguration.md index ef2380dca8..31fb4dd663 100644 --- a/docset/winserver2022-ps/remoteaccess/Set-DAClientDnsConfiguration.md +++ b/docset/winserver2022-ps/remoteaccess/Set-DAClientDnsConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAClientDNSConfiguration_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-daclientdnsconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-daclientdnsconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DAClientDnsConfiguration --- diff --git a/docset/winserver2022-ps/remoteaccess/Set-DAEntryPoint.md b/docset/winserver2022-ps/remoteaccess/Set-DAEntryPoint.md index 318523a8f4..7bd33fa23d 100644 --- a/docset/winserver2022-ps/remoteaccess/Set-DAEntryPoint.md +++ b/docset/winserver2022-ps/remoteaccess/Set-DAEntryPoint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAEntryPoint_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-daentrypoint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-daentrypoint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DAEntryPoint --- diff --git a/docset/winserver2022-ps/remoteaccess/Set-DAEntryPointDC.md b/docset/winserver2022-ps/remoteaccess/Set-DAEntryPointDC.md index 13a4e77433..9da7910503 100644 --- a/docset/winserver2022-ps/remoteaccess/Set-DAEntryPointDC.md +++ b/docset/winserver2022-ps/remoteaccess/Set-DAEntryPointDC.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAEntryPointDC_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-daentrypointdc?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-daentrypointdc?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DAEntryPointDC --- diff --git a/docset/winserver2022-ps/remoteaccess/Set-DAMultiSite.md b/docset/winserver2022-ps/remoteaccess/Set-DAMultiSite.md index c7bd301e7f..39fd1cb5c9 100644 --- a/docset/winserver2022-ps/remoteaccess/Set-DAMultiSite.md +++ b/docset/winserver2022-ps/remoteaccess/Set-DAMultiSite.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAMultiSite_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-damultisite?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-damultisite?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DAMultiSite --- diff --git a/docset/winserver2022-ps/remoteaccess/Set-DANetworkLocationServer.md b/docset/winserver2022-ps/remoteaccess/Set-DANetworkLocationServer.md index 42e7ff808e..ed74e3e3fa 100644 --- a/docset/winserver2022-ps/remoteaccess/Set-DANetworkLocationServer.md +++ b/docset/winserver2022-ps/remoteaccess/Set-DANetworkLocationServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DANetworkLocationServer_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-danetworklocationserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-danetworklocationserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DANetworkLocationServer --- diff --git a/docset/winserver2022-ps/remoteaccess/Set-DAOtpAuthentication.md b/docset/winserver2022-ps/remoteaccess/Set-DAOtpAuthentication.md index 7fc1f455bd..8163e753a2 100644 --- a/docset/winserver2022-ps/remoteaccess/Set-DAOtpAuthentication.md +++ b/docset/winserver2022-ps/remoteaccess/Set-DAOtpAuthentication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAOtpAuthentication_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-daotpauthentication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-daotpauthentication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DAOtpAuthentication --- diff --git a/docset/winserver2022-ps/remoteaccess/Set-DAServer.md b/docset/winserver2022-ps/remoteaccess/Set-DAServer.md index ef06111532..7a05711a56 100644 --- a/docset/winserver2022-ps/remoteaccess/Set-DAServer.md +++ b/docset/winserver2022-ps/remoteaccess/Set-DAServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAServer_v2.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-daserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-daserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DAServer --- diff --git a/docset/winserver2022-ps/remoteaccess/Set-RemoteAccess.md b/docset/winserver2022-ps/remoteaccess/Set-RemoteAccess.md index e389e1d12b..a3861a50df 100644 --- a/docset/winserver2022-ps/remoteaccess/Set-RemoteAccess.md +++ b/docset/winserver2022-ps/remoteaccess/Set-RemoteAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccess_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-remoteaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-remoteaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RemoteAccess --- diff --git a/docset/winserver2022-ps/remoteaccess/Set-RemoteAccessAccounting.md b/docset/winserver2022-ps/remoteaccess/Set-RemoteAccessAccounting.md index 7088df4d99..3235369dc6 100644 --- a/docset/winserver2022-ps/remoteaccess/Set-RemoteAccessAccounting.md +++ b/docset/winserver2022-ps/remoteaccess/Set-RemoteAccessAccounting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessAccounting_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-remoteaccessaccounting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-remoteaccessaccounting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RemoteAccessAccounting --- diff --git a/docset/winserver2022-ps/remoteaccess/Set-RemoteAccessConfiguration.md b/docset/winserver2022-ps/remoteaccess/Set-RemoteAccessConfiguration.md index ffed63a001..197e13d63f 100644 --- a/docset/winserver2022-ps/remoteaccess/Set-RemoteAccessConfiguration.md +++ b/docset/winserver2022-ps/remoteaccess/Set-RemoteAccessConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessConfiguration_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-remoteaccessconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-remoteaccessconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RemoteAccessConfiguration --- diff --git a/docset/winserver2022-ps/remoteaccess/Set-RemoteAccessInboxAccountingStore.md b/docset/winserver2022-ps/remoteaccess/Set-RemoteAccessInboxAccountingStore.md index 094bb1533d..283ba85d85 100644 --- a/docset/winserver2022-ps/remoteaccess/Set-RemoteAccessInboxAccountingStore.md +++ b/docset/winserver2022-ps/remoteaccess/Set-RemoteAccessInboxAccountingStore.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessInboxAccountingStore_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-remoteaccessinboxaccountingstore?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-remoteaccessinboxaccountingstore?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RemoteAccessInboxAccountingStore --- diff --git a/docset/winserver2022-ps/remoteaccess/Set-RemoteAccessIpFilter.md b/docset/winserver2022-ps/remoteaccess/Set-RemoteAccessIpFilter.md index 4dc64fff4a..02d78904b2 100644 --- a/docset/winserver2022-ps/remoteaccess/Set-RemoteAccessIpFilter.md +++ b/docset/winserver2022-ps/remoteaccess/Set-RemoteAccessIpFilter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_IPFilter_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-remoteaccessipfilter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-remoteaccessipfilter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RemoteAccessIpFilter --- diff --git a/docset/winserver2022-ps/remoteaccess/Set-RemoteAccessLoadBalancer.md b/docset/winserver2022-ps/remoteaccess/Set-RemoteAccessLoadBalancer.md index db6215798e..ab8cba1681 100644 --- a/docset/winserver2022-ps/remoteaccess/Set-RemoteAccessLoadBalancer.md +++ b/docset/winserver2022-ps/remoteaccess/Set-RemoteAccessLoadBalancer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessLoadBalancer_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-remoteaccessloadbalancer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-remoteaccessloadbalancer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RemoteAccessLoadBalancer --- diff --git a/docset/winserver2022-ps/remoteaccess/Set-RemoteAccessRadius.md b/docset/winserver2022-ps/remoteaccess/Set-RemoteAccessRadius.md index 577db53738..28c8f1a850 100644 --- a/docset/winserver2022-ps/remoteaccess/Set-RemoteAccessRadius.md +++ b/docset/winserver2022-ps/remoteaccess/Set-RemoteAccessRadius.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessRADIUS_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-remoteaccessradius?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-remoteaccessradius?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RemoteAccessRadius --- diff --git a/docset/winserver2022-ps/remoteaccess/Set-RemoteAccessRoutingDomain.md b/docset/winserver2022-ps/remoteaccess/Set-RemoteAccessRoutingDomain.md index a414d7ba59..2a6f223b33 100644 --- a/docset/winserver2022-ps/remoteaccess/Set-RemoteAccessRoutingDomain.md +++ b/docset/winserver2022-ps/remoteaccess/Set-RemoteAccessRoutingDomain.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccessRoutingDomain_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-remoteaccessroutingdomain?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-remoteaccessroutingdomain?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RemoteAccessRoutingDomain --- diff --git a/docset/winserver2022-ps/remoteaccess/Set-RoutingProtocolPreference.md b/docset/winserver2022-ps/remoteaccess/Set-RoutingProtocolPreference.md index 8608fe2550..a4a4fb07fd 100644 --- a/docset/winserver2022-ps/remoteaccess/Set-RoutingProtocolPreference.md +++ b/docset/winserver2022-ps/remoteaccess/Set-RoutingProtocolPreference.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RoutingProtocolPreference_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-routingprotocolpreference?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-routingprotocolpreference?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-RoutingProtocolPreference --- diff --git a/docset/winserver2022-ps/remoteaccess/Set-VpnAuthProtocol.md b/docset/winserver2022-ps/remoteaccess/Set-VpnAuthProtocol.md index 9d176584a2..4a130b0f4c 100644 --- a/docset/winserver2022-ps/remoteaccess/Set-VpnAuthProtocol.md +++ b/docset/winserver2022-ps/remoteaccess/Set-VpnAuthProtocol.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnAuthProtocol_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-vpnauthprotocol?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-vpnauthprotocol?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VpnAuthProtocol --- diff --git a/docset/winserver2022-ps/remoteaccess/Set-VpnAuthType.md b/docset/winserver2022-ps/remoteaccess/Set-VpnAuthType.md index da645f9509..3e6700ff8e 100644 --- a/docset/winserver2022-ps/remoteaccess/Set-VpnAuthType.md +++ b/docset/winserver2022-ps/remoteaccess/Set-VpnAuthType.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VPNAuthType_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-vpnauthtype?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-vpnauthtype?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VpnAuthType --- diff --git a/docset/winserver2022-ps/remoteaccess/Set-VpnIPAddressAssignment.md b/docset/winserver2022-ps/remoteaccess/Set-VpnIPAddressAssignment.md index 0b9699a718..3574c52007 100644 --- a/docset/winserver2022-ps/remoteaccess/Set-VpnIPAddressAssignment.md +++ b/docset/winserver2022-ps/remoteaccess/Set-VpnIPAddressAssignment.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VPNIPAddressAssignment_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-vpnipaddressassignment?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-vpnipaddressassignment?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VpnIPAddressAssignment --- diff --git a/docset/winserver2022-ps/remoteaccess/Set-VpnS2SInterface.md b/docset/winserver2022-ps/remoteaccess/Set-VpnS2SInterface.md index ea22108c5b..2c48af609f 100644 --- a/docset/winserver2022-ps/remoteaccess/Set-VpnS2SInterface.md +++ b/docset/winserver2022-ps/remoteaccess/Set-VpnS2SInterface.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnS2SInterface_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-vpns2sinterface?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-vpns2sinterface?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VpnS2SInterface --- diff --git a/docset/winserver2022-ps/remoteaccess/Set-VpnServerConfiguration.md b/docset/winserver2022-ps/remoteaccess/Set-VpnServerConfiguration.md index 01890223af..732a23a65a 100644 --- a/docset/winserver2022-ps/remoteaccess/Set-VpnServerConfiguration.md +++ b/docset/winserver2022-ps/remoteaccess/Set-VpnServerConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnServerIPsecConfiguration_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-vpnserverconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-vpnserverconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VpnServerConfiguration --- diff --git a/docset/winserver2022-ps/remoteaccess/Set-VpnSstpProxyRule.md b/docset/winserver2022-ps/remoteaccess/Set-VpnSstpProxyRule.md index 2ac946cddb..1f2f06777a 100644 --- a/docset/winserver2022-ps/remoteaccess/Set-VpnSstpProxyRule.md +++ b/docset/winserver2022-ps/remoteaccess/Set-VpnSstpProxyRule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnSstpProxyRule_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/set-vpnsstpproxyrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/set-vpnsstpproxyrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VpnSstpProxyRule --- diff --git a/docset/winserver2022-ps/remoteaccess/Start-BgpPeer.md b/docset/winserver2022-ps/remoteaccess/Start-BgpPeer.md index 214cf0c5de..a214eb62a3 100644 --- a/docset/winserver2022-ps/remoteaccess/Start-BgpPeer.md +++ b/docset/winserver2022-ps/remoteaccess/Start-BgpPeer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpPeer_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/start-bgppeer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/start-bgppeer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-BgpPeer --- diff --git a/docset/winserver2022-ps/remoteaccess/Stop-BgpPeer.md b/docset/winserver2022-ps/remoteaccess/Stop-BgpPeer.md index ccc113b9d4..7ebe6a08eb 100644 --- a/docset/winserver2022-ps/remoteaccess/Stop-BgpPeer.md +++ b/docset/winserver2022-ps/remoteaccess/Stop-BgpPeer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_BgpPeer_v1.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/stop-bgppeer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/stop-bgppeer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-BgpPeer --- diff --git a/docset/winserver2022-ps/remoteaccess/Uninstall-RemoteAccess.md b/docset/winserver2022-ps/remoteaccess/Uninstall-RemoteAccess.md index a0dba6744f..587dcdbb77 100644 --- a/docset/winserver2022-ps/remoteaccess/Uninstall-RemoteAccess.md +++ b/docset/winserver2022-ps/remoteaccess/Uninstall-RemoteAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_RemoteAccess_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/uninstall-remoteaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/uninstall-remoteaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Uninstall-RemoteAccess --- diff --git a/docset/winserver2022-ps/remoteaccess/Update-DAMgmtServer.md b/docset/winserver2022-ps/remoteaccess/Update-DAMgmtServer.md index 874bab171a..3d1dcf81c5 100644 --- a/docset/winserver2022-ps/remoteaccess/Update-DAMgmtServer.md +++ b/docset/winserver2022-ps/remoteaccess/Update-DAMgmtServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_DAMgmtServer_v1.0.0.cdxml-help.xml Module Name: RemoteAccess ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/remoteaccess/update-damgmtserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remoteaccess/update-damgmtserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-DAMgmtServer --- diff --git a/docset/winserver2022-ps/remotedesktopservices/Convert-License.md b/docset/winserver2022-ps/remotedesktopservices/Convert-License.md index 4cbdc7a67f..9c247547f7 100644 --- a/docset/winserver2022-ps/remotedesktopservices/Convert-License.md +++ b/docset/winserver2022-ps/remotedesktopservices/Convert-License.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: TSPSCmdlets.dll-Help.xml Module Name: RemoteDesktopServices ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/remotedesktopservices/convert-license?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/remotedesktopservices/convert-license?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Convert-License --- diff --git a/docset/winserver2022-ps/scheduledtasks/Disable-ScheduledTask.md b/docset/winserver2022-ps/scheduledtasks/Disable-ScheduledTask.md index ecc1da93d0..7aef0cebe0 100644 --- a/docset/winserver2022-ps/scheduledtasks/Disable-ScheduledTask.md +++ b/docset/winserver2022-ps/scheduledtasks/Disable-ScheduledTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/disable-scheduledtask?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/disable-scheduledtask?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-ScheduledTask --- diff --git a/docset/winserver2022-ps/scheduledtasks/Enable-ScheduledTask.md b/docset/winserver2022-ps/scheduledtasks/Enable-ScheduledTask.md index 7c457b84fb..d2ec4487e1 100644 --- a/docset/winserver2022-ps/scheduledtasks/Enable-ScheduledTask.md +++ b/docset/winserver2022-ps/scheduledtasks/Enable-ScheduledTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/enable-scheduledtask?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/enable-scheduledtask?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-ScheduledTask --- diff --git a/docset/winserver2022-ps/scheduledtasks/Export-ScheduledTask.md b/docset/winserver2022-ps/scheduledtasks/Export-ScheduledTask.md index 83453ffcb1..d8cd3aa920 100644 --- a/docset/winserver2022-ps/scheduledtasks/Export-ScheduledTask.md +++ b/docset/winserver2022-ps/scheduledtasks/Export-ScheduledTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/export-scheduledtask?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/export-scheduledtask?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-ScheduledTask --- diff --git a/docset/winserver2022-ps/scheduledtasks/Get-ClusteredScheduledTask.md b/docset/winserver2022-ps/scheduledtasks/Get-ClusteredScheduledTask.md index 9e634aed60..4d4e0862cc 100644 --- a/docset/winserver2022-ps/scheduledtasks/Get-ClusteredScheduledTask.md +++ b/docset/winserver2022-ps/scheduledtasks/Get-ClusteredScheduledTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_ClusteredScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/get-clusteredscheduledtask?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/get-clusteredscheduledtask?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusteredScheduledTask --- diff --git a/docset/winserver2022-ps/scheduledtasks/Get-ScheduledTask.md b/docset/winserver2022-ps/scheduledtasks/Get-ScheduledTask.md index e4d78e90f6..2c2ce78dd8 100644 --- a/docset/winserver2022-ps/scheduledtasks/Get-ScheduledTask.md +++ b/docset/winserver2022-ps/scheduledtasks/Get-ScheduledTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 07/29/2021 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/get-scheduledtask?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/get-scheduledtask?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ScheduledTask --- diff --git a/docset/winserver2022-ps/scheduledtasks/Get-ScheduledTaskInfo.md b/docset/winserver2022-ps/scheduledtasks/Get-ScheduledTaskInfo.md index 92d91cf33c..311e30a911 100644 --- a/docset/winserver2022-ps/scheduledtasks/Get-ScheduledTaskInfo.md +++ b/docset/winserver2022-ps/scheduledtasks/Get-ScheduledTaskInfo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/get-scheduledtaskinfo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/get-scheduledtaskinfo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ScheduledTaskInfo --- diff --git a/docset/winserver2022-ps/scheduledtasks/New-ScheduledTask.md b/docset/winserver2022-ps/scheduledtasks/New-ScheduledTask.md index a9023b706d..728805afa9 100644 --- a/docset/winserver2022-ps/scheduledtasks/New-ScheduledTask.md +++ b/docset/winserver2022-ps/scheduledtasks/New-ScheduledTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/new-scheduledtask?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/new-scheduledtask?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ScheduledTask --- diff --git a/docset/winserver2022-ps/scheduledtasks/New-ScheduledTaskAction.md b/docset/winserver2022-ps/scheduledtasks/New-ScheduledTaskAction.md index 75d05770ae..091cd1e0b8 100644 --- a/docset/winserver2022-ps/scheduledtasks/New-ScheduledTaskAction.md +++ b/docset/winserver2022-ps/scheduledtasks/New-ScheduledTaskAction.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/new-scheduledtaskaction?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/new-scheduledtaskaction?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ScheduledTaskAction --- diff --git a/docset/winserver2022-ps/scheduledtasks/New-ScheduledTaskPrincipal.md b/docset/winserver2022-ps/scheduledtasks/New-ScheduledTaskPrincipal.md index b86d04438c..cca715d5c4 100644 --- a/docset/winserver2022-ps/scheduledtasks/New-ScheduledTaskPrincipal.md +++ b/docset/winserver2022-ps/scheduledtasks/New-ScheduledTaskPrincipal.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/new-scheduledtaskprincipal?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/new-scheduledtaskprincipal?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ScheduledTaskPrincipal --- diff --git a/docset/winserver2022-ps/scheduledtasks/New-ScheduledTaskSettingsSet.md b/docset/winserver2022-ps/scheduledtasks/New-ScheduledTaskSettingsSet.md index 7f2ba0b863..e66c2c73c7 100644 --- a/docset/winserver2022-ps/scheduledtasks/New-ScheduledTaskSettingsSet.md +++ b/docset/winserver2022-ps/scheduledtasks/New-ScheduledTaskSettingsSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/new-scheduledtasksettingsset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/new-scheduledtasksettingsset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ScheduledTaskSettingsSet --- diff --git a/docset/winserver2022-ps/scheduledtasks/New-ScheduledTaskTrigger.md b/docset/winserver2022-ps/scheduledtasks/New-ScheduledTaskTrigger.md index e94e13adaa..518c2958fe 100644 --- a/docset/winserver2022-ps/scheduledtasks/New-ScheduledTaskTrigger.md +++ b/docset/winserver2022-ps/scheduledtasks/New-ScheduledTaskTrigger.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/new-scheduledtasktrigger?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/new-scheduledtasktrigger?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ScheduledTaskTrigger --- diff --git a/docset/winserver2022-ps/scheduledtasks/Register-ClusteredScheduledTask.md b/docset/winserver2022-ps/scheduledtasks/Register-ClusteredScheduledTask.md index 2478dd528c..6641229a2f 100644 --- a/docset/winserver2022-ps/scheduledtasks/Register-ClusteredScheduledTask.md +++ b/docset/winserver2022-ps/scheduledtasks/Register-ClusteredScheduledTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_ClusteredScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/register-clusteredscheduledtask?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/register-clusteredscheduledtask?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Register-ClusteredScheduledTask --- diff --git a/docset/winserver2022-ps/scheduledtasks/Register-ScheduledTask.md b/docset/winserver2022-ps/scheduledtasks/Register-ScheduledTask.md index cdffc0b2b9..4bed443fd7 100644 --- a/docset/winserver2022-ps/scheduledtasks/Register-ScheduledTask.md +++ b/docset/winserver2022-ps/scheduledtasks/Register-ScheduledTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/register-scheduledtask?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/register-scheduledtask?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Register-ScheduledTask --- diff --git a/docset/winserver2022-ps/scheduledtasks/Set-ClusteredScheduledTask.md b/docset/winserver2022-ps/scheduledtasks/Set-ClusteredScheduledTask.md index 3d97d7ce45..d6efeee7a7 100644 --- a/docset/winserver2022-ps/scheduledtasks/Set-ClusteredScheduledTask.md +++ b/docset/winserver2022-ps/scheduledtasks/Set-ClusteredScheduledTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_ClusteredScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/set-clusteredscheduledtask?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/set-clusteredscheduledtask?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusteredScheduledTask --- diff --git a/docset/winserver2022-ps/scheduledtasks/Set-ScheduledTask.md b/docset/winserver2022-ps/scheduledtasks/Set-ScheduledTask.md index 5cc90af950..798fe095a1 100644 --- a/docset/winserver2022-ps/scheduledtasks/Set-ScheduledTask.md +++ b/docset/winserver2022-ps/scheduledtasks/Set-ScheduledTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/set-scheduledtask?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/set-scheduledtask?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ScheduledTask --- diff --git a/docset/winserver2022-ps/scheduledtasks/Start-ScheduledTask.md b/docset/winserver2022-ps/scheduledtasks/Start-ScheduledTask.md index acf78b2bfc..6b7d5e7fd2 100644 --- a/docset/winserver2022-ps/scheduledtasks/Start-ScheduledTask.md +++ b/docset/winserver2022-ps/scheduledtasks/Start-ScheduledTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/start-scheduledtask?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/start-scheduledtask?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-ScheduledTask --- diff --git a/docset/winserver2022-ps/scheduledtasks/Stop-ScheduledTask.md b/docset/winserver2022-ps/scheduledtasks/Stop-ScheduledTask.md index f6e6491fec..8a5a1a0877 100644 --- a/docset/winserver2022-ps/scheduledtasks/Stop-ScheduledTask.md +++ b/docset/winserver2022-ps/scheduledtasks/Stop-ScheduledTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/stop-scheduledtask?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/stop-scheduledtask?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-ScheduledTask --- diff --git a/docset/winserver2022-ps/scheduledtasks/Unregister-ClusteredScheduledTask.md b/docset/winserver2022-ps/scheduledtasks/Unregister-ClusteredScheduledTask.md index ccaa24b4a5..d76c1d3bf3 100644 --- a/docset/winserver2022-ps/scheduledtasks/Unregister-ClusteredScheduledTask.md +++ b/docset/winserver2022-ps/scheduledtasks/Unregister-ClusteredScheduledTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_ClusteredScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/unregister-clusteredscheduledtask?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/unregister-clusteredscheduledtask?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unregister-ClusteredScheduledTask --- diff --git a/docset/winserver2022-ps/scheduledtasks/Unregister-ScheduledTask.md b/docset/winserver2022-ps/scheduledtasks/Unregister-ScheduledTask.md index ec56704b53..aa155ec8c0 100644 --- a/docset/winserver2022-ps/scheduledtasks/Unregister-ScheduledTask.md +++ b/docset/winserver2022-ps/scheduledtasks/Unregister-ScheduledTask.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_ScheduledTask_v1.0.cdxml-help.xml Module Name: ScheduledTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/scheduledtasks/unregister-scheduledtask?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/scheduledtasks/unregister-scheduledtask?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unregister-ScheduledTask --- diff --git a/docset/winserver2022-ps/secureboot/Confirm-SecureBootUEFI.md b/docset/winserver2022-ps/secureboot/Confirm-SecureBootUEFI.md index 71e01647a4..48786ce59d 100644 --- a/docset/winserver2022-ps/secureboot/Confirm-SecureBootUEFI.md +++ b/docset/winserver2022-ps/secureboot/Confirm-SecureBootUEFI.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.SecureBoot.Commands.dll-Help.xml Module Name: SecureBoot ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/secureboot/confirm-securebootuefi?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/secureboot/confirm-securebootuefi?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Confirm-SecureBootUEFI --- diff --git a/docset/winserver2022-ps/secureboot/Format-SecureBootUEFI.md b/docset/winserver2022-ps/secureboot/Format-SecureBootUEFI.md index 8fdae7c6bd..905798e824 100644 --- a/docset/winserver2022-ps/secureboot/Format-SecureBootUEFI.md +++ b/docset/winserver2022-ps/secureboot/Format-SecureBootUEFI.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.SecureBoot.Commands.dll-Help.xml Module Name: SecureBoot ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/secureboot/format-securebootuefi?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/secureboot/format-securebootuefi?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Format-SecureBootUEFI --- diff --git a/docset/winserver2022-ps/secureboot/Get-SecureBootPolicy.md b/docset/winserver2022-ps/secureboot/Get-SecureBootPolicy.md index 5c21d6864c..253315779c 100644 --- a/docset/winserver2022-ps/secureboot/Get-SecureBootPolicy.md +++ b/docset/winserver2022-ps/secureboot/Get-SecureBootPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.SecureBoot.Commands.dll-Help.xml Module Name: SecureBoot ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/secureboot/get-securebootpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/secureboot/get-securebootpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SecureBootPolicy --- diff --git a/docset/winserver2022-ps/secureboot/Get-SecureBootUEFI.md b/docset/winserver2022-ps/secureboot/Get-SecureBootUEFI.md index f813866187..695a987130 100644 --- a/docset/winserver2022-ps/secureboot/Get-SecureBootUEFI.md +++ b/docset/winserver2022-ps/secureboot/Get-SecureBootUEFI.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.SecureBoot.Commands.dll-Help.xml Module Name: SecureBoot ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/secureboot/get-securebootuefi?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/secureboot/get-securebootuefi?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SecureBootUEFI --- diff --git a/docset/winserver2022-ps/secureboot/Set-SecureBootUEFI.md b/docset/winserver2022-ps/secureboot/Set-SecureBootUEFI.md index 5095549b0d..3dd13bad29 100644 --- a/docset/winserver2022-ps/secureboot/Set-SecureBootUEFI.md +++ b/docset/winserver2022-ps/secureboot/Set-SecureBootUEFI.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.SecureBoot.Commands.dll-Help.xml Module Name: SecureBoot ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/secureboot/set-securebootuefi?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/secureboot/set-securebootuefi?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SecureBootUEFI --- diff --git a/docset/winserver2022-ps/servercore/Get-DisplayResolution.md b/docset/winserver2022-ps/servercore/Get-DisplayResolution.md index 4152afa715..fcaab005c6 100644 --- a/docset/winserver2022-ps/servercore/Get-DisplayResolution.md +++ b/docset/winserver2022-ps/servercore/Get-DisplayResolution.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ServerCore-help.xml Module Name: ServerCore ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/servercore/get-displayresolution?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servercore/get-displayresolution?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DisplayResolution --- diff --git a/docset/winserver2022-ps/servercore/Set-DisplayResolution.md b/docset/winserver2022-ps/servercore/Set-DisplayResolution.md index abb721fa70..64c93a8db1 100644 --- a/docset/winserver2022-ps/servercore/Set-DisplayResolution.md +++ b/docset/winserver2022-ps/servercore/Set-DisplayResolution.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ServerCore-help.xml Module Name: ServerCore ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/servercore/set-displayresolution?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servercore/set-displayresolution?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-DisplayResolution --- diff --git a/docset/winserver2022-ps/servermanagertasks/Get-SMCounterSample.md b/docset/winserver2022-ps/servermanagertasks/Get-SMCounterSample.md index cd809cc907..4889847a86 100644 --- a/docset/winserver2022-ps/servermanagertasks/Get-SMCounterSample.md +++ b/docset/winserver2022-ps/servermanagertasks/Get-SMCounterSample.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ServerManagerTasks.cdxml-help.xml Module Name: ServerManagerTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/servermanagertasks/get-smcountersample?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanagertasks/get-smcountersample?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SMCounterSample --- diff --git a/docset/winserver2022-ps/servermanagertasks/Get-SMPerformanceCollector.md b/docset/winserver2022-ps/servermanagertasks/Get-SMPerformanceCollector.md index d20abca33e..a6f575e339 100644 --- a/docset/winserver2022-ps/servermanagertasks/Get-SMPerformanceCollector.md +++ b/docset/winserver2022-ps/servermanagertasks/Get-SMPerformanceCollector.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ServerManagerTasks.cdxml-help.xml Module Name: ServerManagerTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/servermanagertasks/get-smperformancecollector?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanagertasks/get-smperformancecollector?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SMPerformanceCollector --- diff --git a/docset/winserver2022-ps/servermanagertasks/Get-SMServerBpaResult.md b/docset/winserver2022-ps/servermanagertasks/Get-SMServerBpaResult.md index 0f0a579cfd..01ba4401ce 100644 --- a/docset/winserver2022-ps/servermanagertasks/Get-SMServerBpaResult.md +++ b/docset/winserver2022-ps/servermanagertasks/Get-SMServerBpaResult.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ServerManagerTasks.cdxml-help.xml Module Name: ServerManagerTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/servermanagertasks/get-smserverbparesult?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanagertasks/get-smserverbparesult?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SMServerBpaResult --- diff --git a/docset/winserver2022-ps/servermanagertasks/Get-SMServerClusterName.md b/docset/winserver2022-ps/servermanagertasks/Get-SMServerClusterName.md index 7311a6e4df..80cc7e69b1 100644 --- a/docset/winserver2022-ps/servermanagertasks/Get-SMServerClusterName.md +++ b/docset/winserver2022-ps/servermanagertasks/Get-SMServerClusterName.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ServerManagerTasks.cdxml-help.xml Module Name: ServerManagerTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/servermanagertasks/get-smserverclustername?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanagertasks/get-smserverclustername?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SMServerClusterName --- diff --git a/docset/winserver2022-ps/servermanagertasks/Get-SMServerEvent.md b/docset/winserver2022-ps/servermanagertasks/Get-SMServerEvent.md index 92407d0221..d48e7d3aaa 100644 --- a/docset/winserver2022-ps/servermanagertasks/Get-SMServerEvent.md +++ b/docset/winserver2022-ps/servermanagertasks/Get-SMServerEvent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ServerManagerTasks.cdxml-help.xml Module Name: ServerManagerTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/servermanagertasks/get-smserverevent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanagertasks/get-smserverevent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SMServerEvent --- diff --git a/docset/winserver2022-ps/servermanagertasks/Get-SMServerFeature.md b/docset/winserver2022-ps/servermanagertasks/Get-SMServerFeature.md index 07321ad9d3..6a7a040b4b 100644 --- a/docset/winserver2022-ps/servermanagertasks/Get-SMServerFeature.md +++ b/docset/winserver2022-ps/servermanagertasks/Get-SMServerFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ServerManagerTasks.cdxml-help.xml Module Name: ServerManagerTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/servermanagertasks/get-smserverfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanagertasks/get-smserverfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SMServerFeature --- diff --git a/docset/winserver2022-ps/servermanagertasks/Get-SMServerInventory.md b/docset/winserver2022-ps/servermanagertasks/Get-SMServerInventory.md index 14400ff564..abb8ec2ce3 100644 --- a/docset/winserver2022-ps/servermanagertasks/Get-SMServerInventory.md +++ b/docset/winserver2022-ps/servermanagertasks/Get-SMServerInventory.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ServerManagerTasks.cdxml-help.xml Module Name: ServerManagerTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/servermanagertasks/get-smserverinventory?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanagertasks/get-smserverinventory?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SMServerInventory --- diff --git a/docset/winserver2022-ps/servermanagertasks/Get-SMServerService.md b/docset/winserver2022-ps/servermanagertasks/Get-SMServerService.md index d1ea611e88..1067ae5c0b 100644 --- a/docset/winserver2022-ps/servermanagertasks/Get-SMServerService.md +++ b/docset/winserver2022-ps/servermanagertasks/Get-SMServerService.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ServerManagerTasks.cdxml-help.xml Module Name: ServerManagerTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/servermanagertasks/get-smserverservice?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanagertasks/get-smserverservice?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SMServerService --- diff --git a/docset/winserver2022-ps/servermanagertasks/Remove-SMServerPerformanceLog.md b/docset/winserver2022-ps/servermanagertasks/Remove-SMServerPerformanceLog.md index 757128d04c..e4621e04bc 100644 --- a/docset/winserver2022-ps/servermanagertasks/Remove-SMServerPerformanceLog.md +++ b/docset/winserver2022-ps/servermanagertasks/Remove-SMServerPerformanceLog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ServerManagerTasks.cdxml-help.xml Module Name: ServerManagerTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/servermanagertasks/remove-smserverperformancelog?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanagertasks/remove-smserverperformancelog?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-SMServerPerformanceLog --- diff --git a/docset/winserver2022-ps/servermanagertasks/Start-SMPerformanceCollector.md b/docset/winserver2022-ps/servermanagertasks/Start-SMPerformanceCollector.md index e87591b165..670c1dbe8b 100644 --- a/docset/winserver2022-ps/servermanagertasks/Start-SMPerformanceCollector.md +++ b/docset/winserver2022-ps/servermanagertasks/Start-SMPerformanceCollector.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ServerManagerTasks.cdxml-help.xml Module Name: ServerManagerTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/servermanagertasks/start-smperformancecollector?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanagertasks/start-smperformancecollector?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-SMPerformanceCollector --- diff --git a/docset/winserver2022-ps/servermanagertasks/Stop-SMPerformanceCollector.md b/docset/winserver2022-ps/servermanagertasks/Stop-SMPerformanceCollector.md index 69ea54df15..f014158077 100644 --- a/docset/winserver2022-ps/servermanagertasks/Stop-SMPerformanceCollector.md +++ b/docset/winserver2022-ps/servermanagertasks/Stop-SMPerformanceCollector.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ServerManagerTasks.cdxml-help.xml Module Name: ServerManagerTasks ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/servermanagertasks/stop-smperformancecollector?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/servermanagertasks/stop-smperformancecollector?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-SMPerformanceCollector --- diff --git a/docset/winserver2022-ps/shieldedvmcmdlets/Get-KeyProtectorFromShieldingDataFile.md b/docset/winserver2022-ps/shieldedvmcmdlets/Get-KeyProtectorFromShieldingDataFile.md index 1b645033df..bdbd6f7656 100644 --- a/docset/winserver2022-ps/shieldedvmcmdlets/Get-KeyProtectorFromShieldingDataFile.md +++ b/docset/winserver2022-ps/shieldedvmcmdlets/Get-KeyProtectorFromShieldingDataFile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ShieldedVmCmdlets-help.xml Module Name: ShieldedVmCmdlets ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/shieldedvmcmdlets/get-keyprotectorfromshieldingdatafile?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/shieldedvmcmdlets/get-keyprotectorfromshieldingdatafile?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-KeyProtectorFromShieldingDataFile --- diff --git a/docset/winserver2022-ps/shieldedvmcmdlets/Get-ShieldedVMProvisioningStatus.md b/docset/winserver2022-ps/shieldedvmcmdlets/Get-ShieldedVMProvisioningStatus.md index 5e009974c9..b7c21987a7 100644 --- a/docset/winserver2022-ps/shieldedvmcmdlets/Get-ShieldedVMProvisioningStatus.md +++ b/docset/winserver2022-ps/shieldedvmcmdlets/Get-ShieldedVMProvisioningStatus.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ShieldedVmCmdlets-help.xml Module Name: ShieldedVmCmdlets ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/shieldedvmcmdlets/get-shieldedvmprovisioningstatus?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/shieldedvmcmdlets/get-shieldedvmprovisioningstatus?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ShieldedVMProvisioningStatus --- diff --git a/docset/winserver2022-ps/shieldedvmcmdlets/Initialize-ShieldedVM.md b/docset/winserver2022-ps/shieldedvmcmdlets/Initialize-ShieldedVM.md index 0bf1fe798a..3d19feb99b 100644 --- a/docset/winserver2022-ps/shieldedvmcmdlets/Initialize-ShieldedVM.md +++ b/docset/winserver2022-ps/shieldedvmcmdlets/Initialize-ShieldedVM.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ShieldedVmCmdlets-help.xml Module Name: ShieldedVmCmdlets ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/shieldedvmcmdlets/initialize-shieldedvm?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/shieldedvmcmdlets/initialize-shieldedvm?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Initialize-ShieldedVM --- diff --git a/docset/winserver2022-ps/shieldedvmcmdlets/New-ShieldedVMSpecializationDataFile.md b/docset/winserver2022-ps/shieldedvmcmdlets/New-ShieldedVMSpecializationDataFile.md index b48f9f623f..86f1101376 100644 --- a/docset/winserver2022-ps/shieldedvmcmdlets/New-ShieldedVMSpecializationDataFile.md +++ b/docset/winserver2022-ps/shieldedvmcmdlets/New-ShieldedVMSpecializationDataFile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ShieldedVmCmdlets-help.xml Module Name: ShieldedVmCmdlets ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/shieldedvmcmdlets/new-shieldedvmspecializationdatafile?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/shieldedvmcmdlets/new-shieldedvmspecializationdatafile?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ShieldedVMSpecializationDataFile --- diff --git a/docset/winserver2022-ps/shieldedvmcmdlets/Test-ShieldingDataApplicability.md b/docset/winserver2022-ps/shieldedvmcmdlets/Test-ShieldingDataApplicability.md index d794510598..4875319a1a 100644 --- a/docset/winserver2022-ps/shieldedvmcmdlets/Test-ShieldingDataApplicability.md +++ b/docset/winserver2022-ps/shieldedvmcmdlets/Test-ShieldingDataApplicability.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ShieldedVmCmdlets-help.xml Module Name: ShieldedVmCmdlets ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/shieldedvmcmdlets/test-shieldingdataapplicability?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/shieldedvmcmdlets/test-shieldingdataapplicability?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-ShieldingDataApplicability --- diff --git a/docset/winserver2022-ps/shieldedvmdatafile/Import-ShieldingDataFile.md b/docset/winserver2022-ps/shieldedvmdatafile/Import-ShieldingDataFile.md index b0a4d51caa..31f80b7709 100644 --- a/docset/winserver2022-ps/shieldedvmdatafile/Import-ShieldingDataFile.md +++ b/docset/winserver2022-ps/shieldedvmdatafile/Import-ShieldingDataFile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.HardenedFabric.Cmdlets.dll-Help.xml Module Name: ShieldedVMDataFile ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/shieldedvmdatafile/import-shieldingdatafile?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/shieldedvmdatafile/import-shieldingdatafile?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-ShieldingDataFile --- diff --git a/docset/winserver2022-ps/shieldedvmdatafile/New-ShieldingDataFile.md b/docset/winserver2022-ps/shieldedvmdatafile/New-ShieldingDataFile.md index 7b867c4886..fdf5a12a0a 100644 --- a/docset/winserver2022-ps/shieldedvmdatafile/New-ShieldingDataFile.md +++ b/docset/winserver2022-ps/shieldedvmdatafile/New-ShieldingDataFile.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Windows.HardenedFabric.Cmdlets.dll-Help.xml Module Name: ShieldedVMDataFile -online version: https://docs.microsoft.com/powershell/module/shieldedvmdatafile/new-shieldingdatafile?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/shieldedvmdatafile/new-shieldingdatafile?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ShieldingDataFile --- diff --git a/docset/winserver2022-ps/shieldedvmdatafile/New-VolumeIDQualifier.md b/docset/winserver2022-ps/shieldedvmdatafile/New-VolumeIDQualifier.md index 832b561715..90bb7c7638 100644 --- a/docset/winserver2022-ps/shieldedvmdatafile/New-VolumeIDQualifier.md +++ b/docset/winserver2022-ps/shieldedvmdatafile/New-VolumeIDQualifier.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.HardenedFabric.Cmdlets.dll-Help.xml Module Name: ShieldedVMDataFile ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/shieldedvmdatafile/new-volumeidqualifier?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/shieldedvmdatafile/new-volumeidqualifier?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VolumeIDQualifier --- diff --git a/docset/winserver2022-ps/shieldedvmdatafile/Save-ShieldedVMRecoveryKey.md b/docset/winserver2022-ps/shieldedvmdatafile/Save-ShieldedVMRecoveryKey.md index bac2994b94..4037caa22f 100644 --- a/docset/winserver2022-ps/shieldedvmdatafile/Save-ShieldedVMRecoveryKey.md +++ b/docset/winserver2022-ps/shieldedvmdatafile/Save-ShieldedVMRecoveryKey.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Windows.HardenedFabric.Cmdlets.dll-Help.xml Module Name: ShieldedVMDataFile -online version: https://docs.microsoft.com/powershell/module/shieldedvmdatafile/save-shieldedvmrecoverykey?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/shieldedvmdatafile/save-shieldedvmrecoverykey?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Save-ShieldedVMRecoveryKey --- diff --git a/docset/winserver2022-ps/shieldedvmdatafile/Save-VolumeSignatureCatalog.md b/docset/winserver2022-ps/shieldedvmdatafile/Save-VolumeSignatureCatalog.md index a80b4c7ac2..55e2f7ce3b 100644 --- a/docset/winserver2022-ps/shieldedvmdatafile/Save-VolumeSignatureCatalog.md +++ b/docset/winserver2022-ps/shieldedvmdatafile/Save-VolumeSignatureCatalog.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Windows.HardenedFabric.Cmdlets.dll-Help.xml Module Name: ShieldedVMDataFile -online version: https://docs.microsoft.com/powershell/module/shieldedvmdatafile/save-volumesignaturecatalog?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/shieldedvmdatafile/save-volumesignaturecatalog?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Save-VolumeSignatureCatalog --- diff --git a/docset/winserver2022-ps/shieldedvmdatafile/Unprotect-ShieldedVMRecoveryKey.md b/docset/winserver2022-ps/shieldedvmdatafile/Unprotect-ShieldedVMRecoveryKey.md index 4bac6e1b68..43c2c0ef17 100644 --- a/docset/winserver2022-ps/shieldedvmdatafile/Unprotect-ShieldedVMRecoveryKey.md +++ b/docset/winserver2022-ps/shieldedvmdatafile/Unprotect-ShieldedVMRecoveryKey.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Windows.HardenedFabric.Cmdlets.dll-Help.xml Module Name: ShieldedVMDataFile -online version: https://docs.microsoft.com/powershell/module/shieldedvmdatafile/unprotect-shieldedvmrecoverykey?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/shieldedvmdatafile/unprotect-shieldedvmrecoverykey?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unprotect-ShieldedVMRecoveryKey --- diff --git a/docset/winserver2022-ps/shieldedvmtemplate/Initialize-VMShieldingHelperVHD.md b/docset/winserver2022-ps/shieldedvmtemplate/Initialize-VMShieldingHelperVHD.md index 06a10b0777..cf714098ce 100644 --- a/docset/winserver2022-ps/shieldedvmtemplate/Initialize-VMShieldingHelperVHD.md +++ b/docset/winserver2022-ps/shieldedvmtemplate/Initialize-VMShieldingHelperVHD.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.HardenedFabric.Cmdlets.dll-Help.xml Module Name: ShieldedVMTemplate ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/shieldedvmtemplate/initialize-vmshieldinghelpervhd?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/shieldedvmtemplate/initialize-vmshieldinghelpervhd?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Initialize-VMShieldingHelperVHD --- diff --git a/docset/winserver2022-ps/shieldedvmtemplate/Protect-TemplateDisk.md b/docset/winserver2022-ps/shieldedvmtemplate/Protect-TemplateDisk.md index 371142ed5c..483a5ec92d 100644 --- a/docset/winserver2022-ps/shieldedvmtemplate/Protect-TemplateDisk.md +++ b/docset/winserver2022-ps/shieldedvmtemplate/Protect-TemplateDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.HardenedFabric.Cmdlets.dll-Help.xml Module Name: ShieldedVMTemplate ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/shieldedvmtemplate/protect-templatedisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/shieldedvmtemplate/protect-templatedisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Protect-TemplateDisk --- diff --git a/docset/winserver2022-ps/smbshare/Block-SmbShareAccess.md b/docset/winserver2022-ps/smbshare/Block-SmbShareAccess.md index 7ecccbfeb0..8711d71523 100644 --- a/docset/winserver2022-ps/smbshare/Block-SmbShareAccess.md +++ b/docset/winserver2022-ps/smbshare/Block-SmbShareAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbShare.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/block-smbshareaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/block-smbshareaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Block-SmbShareAccess --- diff --git a/docset/winserver2022-ps/smbshare/Close-SmbOpenFile.md b/docset/winserver2022-ps/smbshare/Close-SmbOpenFile.md index f250875b7f..d668bbcdf7 100644 --- a/docset/winserver2022-ps/smbshare/Close-SmbOpenFile.md +++ b/docset/winserver2022-ps/smbshare/Close-SmbOpenFile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbOpenFile.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/close-smbopenfile?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/close-smbopenfile?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Close-SmbOpenFile --- diff --git a/docset/winserver2022-ps/smbshare/Close-SmbSession.md b/docset/winserver2022-ps/smbshare/Close-SmbSession.md index e9fb921968..de0a5ff8a2 100644 --- a/docset/winserver2022-ps/smbshare/Close-SmbSession.md +++ b/docset/winserver2022-ps/smbshare/Close-SmbSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbSession.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/close-smbsession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/close-smbsession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Close-SmbSession --- diff --git a/docset/winserver2022-ps/smbshare/Disable-SmbDelegation.md b/docset/winserver2022-ps/smbshare/Disable-SmbDelegation.md index ef68ba3625..ff1953ee42 100644 --- a/docset/winserver2022-ps/smbshare/Disable-SmbDelegation.md +++ b/docset/winserver2022-ps/smbshare/Disable-SmbDelegation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbScriptModule-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/disable-smbdelegation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/disable-smbdelegation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-SmbDelegation --- diff --git a/docset/winserver2022-ps/smbshare/Enable-SmbDelegation.md b/docset/winserver2022-ps/smbshare/Enable-SmbDelegation.md index 0b6bff5908..7f40a6fcf8 100644 --- a/docset/winserver2022-ps/smbshare/Enable-SmbDelegation.md +++ b/docset/winserver2022-ps/smbshare/Enable-SmbDelegation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbScriptModule.psm1-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/enable-smbdelegation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/enable-smbdelegation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-SmbDelegation --- diff --git a/docset/winserver2022-ps/smbshare/Get-SmbBandwidthLimit.md b/docset/winserver2022-ps/smbshare/Get-SmbBandwidthLimit.md index 8655db6d59..35166e83a7 100644 --- a/docset/winserver2022-ps/smbshare/Get-SmbBandwidthLimit.md +++ b/docset/winserver2022-ps/smbshare/Get-SmbBandwidthLimit.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbBandwidthLimit.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbbandwidthlimit?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbbandwidthlimit?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbBandwidthLimit --- diff --git a/docset/winserver2022-ps/smbshare/Get-SmbClientConfiguration.md b/docset/winserver2022-ps/smbshare/Get-SmbClientConfiguration.md index 9f14111537..e2f5a6c848 100644 --- a/docset/winserver2022-ps/smbshare/Get-SmbClientConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Get-SmbClientConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbClientConfiguration.cdxml-help.xml Module Name: SmbShare ms.date: 06/23/2022 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbclientconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbclientconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbClientConfiguration --- diff --git a/docset/winserver2022-ps/smbshare/Get-SmbClientNetworkInterface.md b/docset/winserver2022-ps/smbshare/Get-SmbClientNetworkInterface.md index c4cbd3ae03..b700454921 100644 --- a/docset/winserver2022-ps/smbshare/Get-SmbClientNetworkInterface.md +++ b/docset/winserver2022-ps/smbshare/Get-SmbClientNetworkInterface.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbClientNetworkInterface.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbclientnetworkinterface?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbclientnetworkinterface?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbClientNetworkInterface --- diff --git a/docset/winserver2022-ps/smbshare/Get-SmbConnection.md b/docset/winserver2022-ps/smbshare/Get-SmbConnection.md index 54c2fe19e6..2bdbd4d195 100644 --- a/docset/winserver2022-ps/smbshare/Get-SmbConnection.md +++ b/docset/winserver2022-ps/smbshare/Get-SmbConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbConnection.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbconnection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbconnection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbConnection --- diff --git a/docset/winserver2022-ps/smbshare/Get-SmbDelegation.md b/docset/winserver2022-ps/smbshare/Get-SmbDelegation.md index bb36389798..d077387c32 100644 --- a/docset/winserver2022-ps/smbshare/Get-SmbDelegation.md +++ b/docset/winserver2022-ps/smbshare/Get-SmbDelegation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbScriptModule.psm1-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbdelegation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbdelegation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbDelegation --- diff --git a/docset/winserver2022-ps/smbshare/Get-SmbGlobalMapping.md b/docset/winserver2022-ps/smbshare/Get-SmbGlobalMapping.md index caff937a36..5548ca4fd9 100644 --- a/docset/winserver2022-ps/smbshare/Get-SmbGlobalMapping.md +++ b/docset/winserver2022-ps/smbshare/Get-SmbGlobalMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbGlobalMapping.cdxml-help.xml Module Name: SmbShare ms.date: 08/31/2021 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbglobalmapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbglobalmapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbGlobalMapping --- @@ -131,4 +131,4 @@ This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVar ## NOTES -## RELATED LINKS \ No newline at end of file +## RELATED LINKS diff --git a/docset/winserver2022-ps/smbshare/Get-SmbMapping.md b/docset/winserver2022-ps/smbshare/Get-SmbMapping.md index e3e2e7ad3b..b14b8d1146 100644 --- a/docset/winserver2022-ps/smbshare/Get-SmbMapping.md +++ b/docset/winserver2022-ps/smbshare/Get-SmbMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbMapping.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbmapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbmapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbMapping --- diff --git a/docset/winserver2022-ps/smbshare/Get-SmbMultichannelConnection.md b/docset/winserver2022-ps/smbshare/Get-SmbMultichannelConnection.md index ebdb6b1cf9..1db31cedb5 100644 --- a/docset/winserver2022-ps/smbshare/Get-SmbMultichannelConnection.md +++ b/docset/winserver2022-ps/smbshare/Get-SmbMultichannelConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbMultichannelConnection.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbmultichannelconnection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbmultichannelconnection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbMultichannelConnection --- diff --git a/docset/winserver2022-ps/smbshare/Get-SmbMultichannelConstraint.md b/docset/winserver2022-ps/smbshare/Get-SmbMultichannelConstraint.md index 35d29e03e0..2d924652d5 100644 --- a/docset/winserver2022-ps/smbshare/Get-SmbMultichannelConstraint.md +++ b/docset/winserver2022-ps/smbshare/Get-SmbMultichannelConstraint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbMultichannelConstraint.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbmultichannelconstraint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbmultichannelconstraint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbMultichannelConstraint --- diff --git a/docset/winserver2022-ps/smbshare/Get-SmbOpenFile.md b/docset/winserver2022-ps/smbshare/Get-SmbOpenFile.md index bca88c0141..eb4294bf09 100644 --- a/docset/winserver2022-ps/smbshare/Get-SmbOpenFile.md +++ b/docset/winserver2022-ps/smbshare/Get-SmbOpenFile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbOpenFile.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbopenfile?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbopenfile?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbOpenFile --- diff --git a/docset/winserver2022-ps/smbshare/Get-SmbServerCertProps.md b/docset/winserver2022-ps/smbshare/Get-SmbServerCertProps.md index bd6685de72..f41cfad364 100644 --- a/docset/winserver2022-ps/smbshare/Get-SmbServerCertProps.md +++ b/docset/winserver2022-ps/smbshare/Get-SmbServerCertProps.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbServerCertProps.cdxml-help.xml Module Name: SmbShare ms.date: 08/31/2021 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbservercertprops?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbservercertprops?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbServerCertProps --- diff --git a/docset/winserver2022-ps/smbshare/Get-SmbServerCertificateMapping.md b/docset/winserver2022-ps/smbshare/Get-SmbServerCertificateMapping.md index 0f3cbab246..997c4e3d00 100644 --- a/docset/winserver2022-ps/smbshare/Get-SmbServerCertificateMapping.md +++ b/docset/winserver2022-ps/smbshare/Get-SmbServerCertificateMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbServerCertificateMapping.cdxml-help.xml Module Name: SmbShare ms.date: 08/31/2021 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbservercertificatemapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbservercertificatemapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbServerCertificateMapping --- diff --git a/docset/winserver2022-ps/smbshare/Get-SmbServerConfiguration.md b/docset/winserver2022-ps/smbshare/Get-SmbServerConfiguration.md index a98d710bc5..f030032ce0 100644 --- a/docset/winserver2022-ps/smbshare/Get-SmbServerConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Get-SmbServerConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbServerConfiguration.cdxml-help.xml Module Name: SmbShare ms.date: 06/23/2022 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbserverconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbserverconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbServerConfiguration --- diff --git a/docset/winserver2022-ps/smbshare/Get-SmbServerNetworkInterface.md b/docset/winserver2022-ps/smbshare/Get-SmbServerNetworkInterface.md index 3e65163cb5..6e198631fd 100644 --- a/docset/winserver2022-ps/smbshare/Get-SmbServerNetworkInterface.md +++ b/docset/winserver2022-ps/smbshare/Get-SmbServerNetworkInterface.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbServerNetworkInterface.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbservernetworkinterface?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbservernetworkinterface?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbServerNetworkInterface --- diff --git a/docset/winserver2022-ps/smbshare/Get-SmbSession.md b/docset/winserver2022-ps/smbshare/Get-SmbSession.md index 874204da6c..294e52c196 100644 --- a/docset/winserver2022-ps/smbshare/Get-SmbSession.md +++ b/docset/winserver2022-ps/smbshare/Get-SmbSession.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbSession.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbsession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbsession?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbSession --- diff --git a/docset/winserver2022-ps/smbshare/Get-SmbShare.md b/docset/winserver2022-ps/smbshare/Get-SmbShare.md index 59f7519524..d6ea9a170c 100644 --- a/docset/winserver2022-ps/smbshare/Get-SmbShare.md +++ b/docset/winserver2022-ps/smbshare/Get-SmbShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbShare.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbshare?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbshare?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbShare --- diff --git a/docset/winserver2022-ps/smbshare/Get-SmbShareAccess.md b/docset/winserver2022-ps/smbshare/Get-SmbShareAccess.md index b7a3c44913..0d586faf2c 100644 --- a/docset/winserver2022-ps/smbshare/Get-SmbShareAccess.md +++ b/docset/winserver2022-ps/smbshare/Get-SmbShareAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbShare.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbshareaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/get-smbshareaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbShareAccess --- diff --git a/docset/winserver2022-ps/smbshare/Grant-SmbShareAccess.md b/docset/winserver2022-ps/smbshare/Grant-SmbShareAccess.md index 088366313a..88328769ea 100644 --- a/docset/winserver2022-ps/smbshare/Grant-SmbShareAccess.md +++ b/docset/winserver2022-ps/smbshare/Grant-SmbShareAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbShare.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/grant-smbshareaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/grant-smbshareaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Grant-SmbShareAccess --- diff --git a/docset/winserver2022-ps/smbshare/New-SmbGlobalMapping.md b/docset/winserver2022-ps/smbshare/New-SmbGlobalMapping.md index f4db78de3e..d48686fbdf 100644 --- a/docset/winserver2022-ps/smbshare/New-SmbGlobalMapping.md +++ b/docset/winserver2022-ps/smbshare/New-SmbGlobalMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbGlobalMapping.cdxml-help.xml Module Name: SmbShare ms.date: 09/14/2021 -online version: https://docs.microsoft.com/powershell/module/smbshare/new-smbglobalmapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/new-smbglobalmapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-SmbGlobalMapping --- diff --git a/docset/winserver2022-ps/smbshare/New-SmbMapping.md b/docset/winserver2022-ps/smbshare/New-SmbMapping.md index 0712ee543c..494f6a3b94 100644 --- a/docset/winserver2022-ps/smbshare/New-SmbMapping.md +++ b/docset/winserver2022-ps/smbshare/New-SmbMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbMapping.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/new-smbmapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/new-smbmapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-SmbMapping --- diff --git a/docset/winserver2022-ps/smbshare/New-SmbMultichannelConstraint.md b/docset/winserver2022-ps/smbshare/New-SmbMultichannelConstraint.md index bec04433d9..a0a7425f0b 100644 --- a/docset/winserver2022-ps/smbshare/New-SmbMultichannelConstraint.md +++ b/docset/winserver2022-ps/smbshare/New-SmbMultichannelConstraint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbMultichannelConstraint.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/new-smbmultichannelconstraint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/new-smbmultichannelconstraint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-SmbMultichannelConstraint --- diff --git a/docset/winserver2022-ps/smbshare/New-SmbServerCertificateMapping.md b/docset/winserver2022-ps/smbshare/New-SmbServerCertificateMapping.md index c11836e665..142230892d 100644 --- a/docset/winserver2022-ps/smbshare/New-SmbServerCertificateMapping.md +++ b/docset/winserver2022-ps/smbshare/New-SmbServerCertificateMapping.md @@ -2,9 +2,9 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: SmbServerCertificateMapping.cdxml-help.xml Module Name: SmbShare -online version: https://docs.microsoft.com/powershell/module/smbshare/new-smbservercertificatemapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp -schema: 2.0.0 ms.date: 08/31/2021 +online version: https://learn.microsoft.com/powershell/module/smbshare/new-smbservercertificatemapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 title: New-SmbServerCertificateMapping --- diff --git a/docset/winserver2022-ps/smbshare/New-SmbShare.md b/docset/winserver2022-ps/smbshare/New-SmbShare.md index 802935f6e6..1e0344ba9b 100644 --- a/docset/winserver2022-ps/smbshare/New-SmbShare.md +++ b/docset/winserver2022-ps/smbshare/New-SmbShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbShare.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/new-smbshare?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/new-smbshare?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-SmbShare --- diff --git a/docset/winserver2022-ps/smbshare/Remove-SmbBandwidthLimit.md b/docset/winserver2022-ps/smbshare/Remove-SmbBandwidthLimit.md index 11f6fbc58f..e786707c9a 100644 --- a/docset/winserver2022-ps/smbshare/Remove-SmbBandwidthLimit.md +++ b/docset/winserver2022-ps/smbshare/Remove-SmbBandwidthLimit.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbBandwidthLimit.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/remove-smbbandwidthlimit?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/remove-smbbandwidthlimit?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-SmbBandwidthLimit --- diff --git a/docset/winserver2022-ps/smbshare/Remove-SmbComponent.md b/docset/winserver2022-ps/smbshare/Remove-SmbComponent.md index 87e72edbb4..decd144445 100644 --- a/docset/winserver2022-ps/smbshare/Remove-SmbComponent.md +++ b/docset/winserver2022-ps/smbshare/Remove-SmbComponent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbComponent.cdxml-help.xml Module Name: SmbShare ms.date: 08/31/2021 -online version: https://docs.microsoft.com/powershell/module/smbshare/remove-smbcomponent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/remove-smbcomponent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-SmbComponent --- diff --git a/docset/winserver2022-ps/smbshare/Remove-SmbGlobalMapping.md b/docset/winserver2022-ps/smbshare/Remove-SmbGlobalMapping.md index 7927916379..bcd55d4475 100644 --- a/docset/winserver2022-ps/smbshare/Remove-SmbGlobalMapping.md +++ b/docset/winserver2022-ps/smbshare/Remove-SmbGlobalMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbGlobalMapping.cdxml-help.xml Module Name: SmbShare ms.date: 08/31/2021 -online version: https://docs.microsoft.com/powershell/module/smbshare/remove-smbglobalmapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/remove-smbglobalmapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-SmbGlobalMapping --- diff --git a/docset/winserver2022-ps/smbshare/Remove-SmbMapping.md b/docset/winserver2022-ps/smbshare/Remove-SmbMapping.md index 48db63790d..f825adc2f0 100644 --- a/docset/winserver2022-ps/smbshare/Remove-SmbMapping.md +++ b/docset/winserver2022-ps/smbshare/Remove-SmbMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbMapping.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/remove-smbmapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/remove-smbmapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-SmbMapping --- diff --git a/docset/winserver2022-ps/smbshare/Remove-SmbMultichannelConstraint.md b/docset/winserver2022-ps/smbshare/Remove-SmbMultichannelConstraint.md index ba672369b1..5e0d67154c 100644 --- a/docset/winserver2022-ps/smbshare/Remove-SmbMultichannelConstraint.md +++ b/docset/winserver2022-ps/smbshare/Remove-SmbMultichannelConstraint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbMultichannelConstraint.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/remove-smbmultichannelconstraint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/remove-smbmultichannelconstraint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-SmbMultichannelConstraint --- diff --git a/docset/winserver2022-ps/smbshare/Remove-SmbServerCertificateMapping.md b/docset/winserver2022-ps/smbshare/Remove-SmbServerCertificateMapping.md index af4e13c432..9dbd5fdd14 100644 --- a/docset/winserver2022-ps/smbshare/Remove-SmbServerCertificateMapping.md +++ b/docset/winserver2022-ps/smbshare/Remove-SmbServerCertificateMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbServerCertificateMapping.cdxml-help.xml Module Name: SmbShare ms.date: 08/31/2021 -online version: https://docs.microsoft.com/powershell/module/smbshare/Remove-SmbServerCertificateMapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/Remove-SmbServerCertificateMapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-SmbServerCertificateMapping --- diff --git a/docset/winserver2022-ps/smbshare/Remove-SmbShare.md b/docset/winserver2022-ps/smbshare/Remove-SmbShare.md index 311a542a0f..b5747a442b 100644 --- a/docset/winserver2022-ps/smbshare/Remove-SmbShare.md +++ b/docset/winserver2022-ps/smbshare/Remove-SmbShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbShare.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/remove-smbshare?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/remove-smbshare?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-SmbShare --- diff --git a/docset/winserver2022-ps/smbshare/Revoke-SmbShareAccess.md b/docset/winserver2022-ps/smbshare/Revoke-SmbShareAccess.md index 241a7719b4..dc9ae0ffd6 100644 --- a/docset/winserver2022-ps/smbshare/Revoke-SmbShareAccess.md +++ b/docset/winserver2022-ps/smbshare/Revoke-SmbShareAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbShare.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/revoke-smbshareaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/revoke-smbshareaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Revoke-SmbShareAccess --- diff --git a/docset/winserver2022-ps/smbshare/Set-SmbBandwidthLimit.md b/docset/winserver2022-ps/smbshare/Set-SmbBandwidthLimit.md index 416cad3de8..19a160c3ab 100644 --- a/docset/winserver2022-ps/smbshare/Set-SmbBandwidthLimit.md +++ b/docset/winserver2022-ps/smbshare/Set-SmbBandwidthLimit.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbBandwidthLimit.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/set-smbbandwidthlimit?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/set-smbbandwidthlimit?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SmbBandwidthLimit --- diff --git a/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md b/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md index d8ff6cb5a4..c0c6880206 100644 --- a/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbClientConfiguration.cdxml-help.xml Module Name: SmbShare ms.date: 06/24/2022 -online version: https://docs.microsoft.com/powershell/module/smbshare/set-smbclientconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/set-smbclientconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SmbClientConfiguration --- diff --git a/docset/winserver2022-ps/smbshare/Set-SmbPathAcl.md b/docset/winserver2022-ps/smbshare/Set-SmbPathAcl.md index e28b8b98e7..855542ef21 100644 --- a/docset/winserver2022-ps/smbshare/Set-SmbPathAcl.md +++ b/docset/winserver2022-ps/smbshare/Set-SmbPathAcl.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbScriptModule.psm1-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/set-smbpathacl?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/set-smbpathacl?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SmbPathAcl --- diff --git a/docset/winserver2022-ps/smbshare/Set-SmbServerCertificateMapping.md b/docset/winserver2022-ps/smbshare/Set-SmbServerCertificateMapping.md index dd0168d97f..86e9858f1c 100644 --- a/docset/winserver2022-ps/smbshare/Set-SmbServerCertificateMapping.md +++ b/docset/winserver2022-ps/smbshare/Set-SmbServerCertificateMapping.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbServerCertificateMapping.cdxml-help.xml Module Name: SmbShare ms.date: 08/21/2021 -online version: https://docs.microsoft.com/powershell/module/smbshare/Set-SmbServerCertificateMapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/Set-SmbServerCertificateMapping?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SmbServerCertificateMapping --- diff --git a/docset/winserver2022-ps/smbshare/Set-SmbShare.md b/docset/winserver2022-ps/smbshare/Set-SmbShare.md index 7818fcdee1..1b945df3c8 100644 --- a/docset/winserver2022-ps/smbshare/Set-SmbShare.md +++ b/docset/winserver2022-ps/smbshare/Set-SmbShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbShare.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/set-smbshare?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/set-smbshare?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SmbShare --- diff --git a/docset/winserver2022-ps/smbshare/Unblock-SmbShareAccess.md b/docset/winserver2022-ps/smbshare/Unblock-SmbShareAccess.md index 39adc7b60b..c8ab4358e7 100644 --- a/docset/winserver2022-ps/smbshare/Unblock-SmbShareAccess.md +++ b/docset/winserver2022-ps/smbshare/Unblock-SmbShareAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbShare.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/unblock-smbshareaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/unblock-smbshareaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unblock-SmbShareAccess --- diff --git a/docset/winserver2022-ps/smbshare/Update-SmbMultichannelConnection.md b/docset/winserver2022-ps/smbshare/Update-SmbMultichannelConnection.md index d82f2a5b31..232026635d 100644 --- a/docset/winserver2022-ps/smbshare/Update-SmbMultichannelConnection.md +++ b/docset/winserver2022-ps/smbshare/Update-SmbMultichannelConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbMultichannelConnection.cdxml-help.xml Module Name: SmbShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbshare/update-smbmultichannelconnection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbshare/update-smbmultichannelconnection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-SmbMultichannelConnection --- diff --git a/docset/winserver2022-ps/smbwitness/Get-SmbWitnessClient.md b/docset/winserver2022-ps/smbwitness/Get-SmbWitnessClient.md index 7b44cc31f2..89e67e215d 100644 --- a/docset/winserver2022-ps/smbwitness/Get-SmbWitnessClient.md +++ b/docset/winserver2022-ps/smbwitness/Get-SmbWitnessClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbWitnessWmiClient.cdxml-help.xml Module Name: SmbWitness ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbwitness/get-smbwitnessclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbwitness/get-smbwitnessclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SmbWitnessClient --- diff --git a/docset/winserver2022-ps/smbwitness/Move-SmbWitnessClient.md b/docset/winserver2022-ps/smbwitness/Move-SmbWitnessClient.md index c9eb824430..45f512b635 100644 --- a/docset/winserver2022-ps/smbwitness/Move-SmbWitnessClient.md +++ b/docset/winserver2022-ps/smbwitness/Move-SmbWitnessClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SmbWitnessWmiClient.cdxml-help.xml Module Name: SmbWitness ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/smbwitness/move-smbwitnessclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smbwitness/move-smbwitnessclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-SmbWitnessClient --- diff --git a/docset/winserver2022-ps/smisconfig/Register-SmisProvider.md b/docset/winserver2022-ps/smisconfig/Register-SmisProvider.md index 0247f59411..0918b64fc9 100644 --- a/docset/winserver2022-ps/smisconfig/Register-SmisProvider.md +++ b/docset/winserver2022-ps/smisconfig/Register-SmisProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.StorageManagementService.Configuration.Cmdlets.dll-Help.xml Module Name: SMISConfig ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/smisconfig/register-smisprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smisconfig/register-smisprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Register-SmisProvider --- diff --git a/docset/winserver2022-ps/smisconfig/Search-SmisProvider.md b/docset/winserver2022-ps/smisconfig/Search-SmisProvider.md index a64624fe0b..8bbbc1f1ef 100644 --- a/docset/winserver2022-ps/smisconfig/Search-SmisProvider.md +++ b/docset/winserver2022-ps/smisconfig/Search-SmisProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_SmisProvider_v1.0.cdxml-help.xml Module Name: SMISConfig ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/smisconfig/search-smisprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smisconfig/search-smisprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Search-SmisProvider --- diff --git a/docset/winserver2022-ps/smisconfig/Unregister-SmisProvider.md b/docset/winserver2022-ps/smisconfig/Unregister-SmisProvider.md index 03b251c06d..4e49e389b8 100644 --- a/docset/winserver2022-ps/smisconfig/Unregister-SmisProvider.md +++ b/docset/winserver2022-ps/smisconfig/Unregister-SmisProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_SmisProvider_v1.0.cdxml-help.xml Module Name: SMISConfig ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/smisconfig/unregister-smisprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/smisconfig/unregister-smisprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unregister-SmisProvider --- diff --git a/docset/winserver2022-ps/softwareinventorylogging/Get-SilComputer.md b/docset/winserver2022-ps/softwareinventorylogging/Get-SilComputer.md index 2d5d8317c0..060e0543b3 100644 --- a/docset/winserver2022-ps/softwareinventorylogging/Get-SilComputer.md +++ b/docset/winserver2022-ps/softwareinventorylogging/Get-SilComputer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftSil_Computer.cdxml-help.xml Module Name: SoftwareInventoryLogging ms.date: 01/24/2017 -online version: https://docs.microsoft.com/powershell/module/softwareinventorylogging/get-silcomputer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/softwareinventorylogging/get-silcomputer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SilComputer --- diff --git a/docset/winserver2022-ps/softwareinventorylogging/Get-SilComputerIdentity.md b/docset/winserver2022-ps/softwareinventorylogging/Get-SilComputerIdentity.md index 5065bbf614..4f3d860513 100644 --- a/docset/winserver2022-ps/softwareinventorylogging/Get-SilComputerIdentity.md +++ b/docset/winserver2022-ps/softwareinventorylogging/Get-SilComputerIdentity.md @@ -3,7 +3,7 @@ description: The Get-SilComputerIdentity cmdlet gets IDs that identify a Windows external help file: MsftSil_ComputerIdentity.cdxml-help.xml Module Name: SoftwareInventoryLogging ms.date: 10/06/2021 -online version: https://docs.microsoft.com/powershell/module/softwareinventorylogging/get-silcomputeridentity?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/softwareinventorylogging/get-silcomputeridentity?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SilComputerIdentity --- diff --git a/docset/winserver2022-ps/softwareinventorylogging/Get-SilData.md b/docset/winserver2022-ps/softwareinventorylogging/Get-SilData.md index 0801b5eb40..8a08b170a7 100644 --- a/docset/winserver2022-ps/softwareinventorylogging/Get-SilData.md +++ b/docset/winserver2022-ps/softwareinventorylogging/Get-SilData.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Msft_MiStreamTasks.cdxml-help.xml Module Name: SoftwareInventoryLogging ms.date: 01/24/2017 -online version: https://docs.microsoft.com/powershell/module/softwareinventorylogging/get-sildata?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/softwareinventorylogging/get-sildata?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SilData --- diff --git a/docset/winserver2022-ps/softwareinventorylogging/Get-SilLogging.md b/docset/winserver2022-ps/softwareinventorylogging/Get-SilLogging.md index 93127d249a..aa9378fb3a 100644 --- a/docset/winserver2022-ps/softwareinventorylogging/Get-SilLogging.md +++ b/docset/winserver2022-ps/softwareinventorylogging/Get-SilLogging.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftSil_ManagementTasks.psm1-help.xml Module Name: SoftwareInventoryLogging ms.date: 01/24/2017 -online version: https://docs.microsoft.com/powershell/module/softwareinventorylogging/get-sillogging?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/softwareinventorylogging/get-sillogging?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SilLogging --- diff --git a/docset/winserver2022-ps/softwareinventorylogging/Get-SilSoftware.md b/docset/winserver2022-ps/softwareinventorylogging/Get-SilSoftware.md index 2c96920701..fa1fb1efe0 100644 --- a/docset/winserver2022-ps/softwareinventorylogging/Get-SilSoftware.md +++ b/docset/winserver2022-ps/softwareinventorylogging/Get-SilSoftware.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftSil_Software.cdxml-help.xml Module Name: SoftwareInventoryLogging ms.date: 01/24/2017 -online version: https://docs.microsoft.com/powershell/module/softwareinventorylogging/get-silsoftware?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/softwareinventorylogging/get-silsoftware?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SilSoftware --- diff --git a/docset/winserver2022-ps/softwareinventorylogging/Get-SilUalAccess.md b/docset/winserver2022-ps/softwareinventorylogging/Get-SilUalAccess.md index 8d5971d63e..98db732a58 100644 --- a/docset/winserver2022-ps/softwareinventorylogging/Get-SilUalAccess.md +++ b/docset/winserver2022-ps/softwareinventorylogging/Get-SilUalAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftSil_UalAccess.cdxml-help.xml Module Name: SoftwareInventoryLogging ms.date: 01/24/2017 -online version: https://docs.microsoft.com/powershell/module/softwareinventorylogging/get-silualaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/softwareinventorylogging/get-silualaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SilUalAccess --- diff --git a/docset/winserver2022-ps/softwareinventorylogging/Get-SilWindowsUpdate.md b/docset/winserver2022-ps/softwareinventorylogging/Get-SilWindowsUpdate.md index 30d69fc6e9..cc601bf643 100644 --- a/docset/winserver2022-ps/softwareinventorylogging/Get-SilWindowsUpdate.md +++ b/docset/winserver2022-ps/softwareinventorylogging/Get-SilWindowsUpdate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftSil_WindowsUpdate.cdxml-help.xml Module Name: SoftwareInventoryLogging ms.date: 01/24/2017 -online version: https://docs.microsoft.com/powershell/module/softwareinventorylogging/get-silwindowsupdate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/softwareinventorylogging/get-silwindowsupdate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SilWindowsUpdate --- diff --git a/docset/winserver2022-ps/softwareinventorylogging/Publish-SilData.md b/docset/winserver2022-ps/softwareinventorylogging/Publish-SilData.md index 3e88eacb48..12cd6c150a 100644 --- a/docset/winserver2022-ps/softwareinventorylogging/Publish-SilData.md +++ b/docset/winserver2022-ps/softwareinventorylogging/Publish-SilData.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Msft_MiStreamTasks.cdxml-help.xml Module Name: SoftwareInventoryLogging ms.date: 01/24/2017 -online version: https://docs.microsoft.com/powershell/module/softwareinventorylogging/publish-sildata?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/softwareinventorylogging/publish-sildata?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Publish-SilData --- diff --git a/docset/winserver2022-ps/softwareinventorylogging/Set-SilLogging.md b/docset/winserver2022-ps/softwareinventorylogging/Set-SilLogging.md index 27aa675b87..4a2f425118 100644 --- a/docset/winserver2022-ps/softwareinventorylogging/Set-SilLogging.md +++ b/docset/winserver2022-ps/softwareinventorylogging/Set-SilLogging.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftSil_ManagementTasks.psm1-help.xml Module Name: SoftwareInventoryLogging ms.date: 01/24/2017 -online version: https://docs.microsoft.com/powershell/module/softwareinventorylogging/set-sillogging?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/softwareinventorylogging/set-sillogging?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SilLogging --- diff --git a/docset/winserver2022-ps/softwareinventorylogging/Start-SilLogging.md b/docset/winserver2022-ps/softwareinventorylogging/Start-SilLogging.md index 0cacefc497..bb347e7868 100644 --- a/docset/winserver2022-ps/softwareinventorylogging/Start-SilLogging.md +++ b/docset/winserver2022-ps/softwareinventorylogging/Start-SilLogging.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftSil_ManagementTasks.psm1-help.xml Module Name: SoftwareInventoryLogging ms.date: 01/24/2017 -online version: https://docs.microsoft.com/powershell/module/softwareinventorylogging/start-sillogging?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/softwareinventorylogging/start-sillogging?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-SilLogging --- diff --git a/docset/winserver2022-ps/softwareinventorylogging/Stop-SilLogging.md b/docset/winserver2022-ps/softwareinventorylogging/Stop-SilLogging.md index aefbcad120..111d70e7d0 100644 --- a/docset/winserver2022-ps/softwareinventorylogging/Stop-SilLogging.md +++ b/docset/winserver2022-ps/softwareinventorylogging/Stop-SilLogging.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftSil_ManagementTasks.psm1-help.xml Module Name: SoftwareInventoryLogging ms.date: 01/24/2017 -online version: https://docs.microsoft.com/powershell/module/softwareinventorylogging/stop-sillogging?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/softwareinventorylogging/stop-sillogging?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-SilLogging --- diff --git a/docset/winserver2022-ps/startlayout/Export-StartLayout.md b/docset/winserver2022-ps/startlayout/Export-StartLayout.md index 991c4099e1..b8b61fed84 100644 --- a/docset/winserver2022-ps/startlayout/Export-StartLayout.md +++ b/docset/winserver2022-ps/startlayout/Export-StartLayout.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.StartLayout.Commands.dll-Help.xml Module Name: StartLayout ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/startlayout/export-startlayout?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/startlayout/export-startlayout?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-StartLayout --- diff --git a/docset/winserver2022-ps/startlayout/Export-StartLayoutEdgeAssets.md b/docset/winserver2022-ps/startlayout/Export-StartLayoutEdgeAssets.md index 590ca32ed9..700b209fec 100644 --- a/docset/winserver2022-ps/startlayout/Export-StartLayoutEdgeAssets.md +++ b/docset/winserver2022-ps/startlayout/Export-StartLayoutEdgeAssets.md @@ -3,7 +3,7 @@ description: The Export-StartLayoutEdgeAssets cmdlet exports secondary tiles for external help file: Microsoft.Windows.StartLayout.Commands.dll-Help.xml Module Name: StartLayout ms.date: 09/20/2021 -online version: https://docs.microsoft.com/powershell/module/startlayout/export-startlayoutedgeassets?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/startlayout/export-startlayoutedgeassets?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- diff --git a/docset/winserver2022-ps/startlayout/Get-StartApps.md b/docset/winserver2022-ps/startlayout/Get-StartApps.md index 98319bd63b..d1630c453a 100644 --- a/docset/winserver2022-ps/startlayout/Get-StartApps.md +++ b/docset/winserver2022-ps/startlayout/Get-StartApps.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.StartLayout.Commands.dll-help.xml Module Name: StartLayout ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/startlayout/get-startapps?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/startlayout/get-startapps?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StartApps --- diff --git a/docset/winserver2022-ps/startlayout/Import-StartLayout.md b/docset/winserver2022-ps/startlayout/Import-StartLayout.md index 2a5b4887b6..f874fd48ce 100644 --- a/docset/winserver2022-ps/startlayout/Import-StartLayout.md +++ b/docset/winserver2022-ps/startlayout/Import-StartLayout.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.StartLayout.Commands.dll-Help.xml Module Name: StartLayout ms.date: 09/13/2018 -online version: https://docs.microsoft.com/powershell/module/startlayout/import-startlayout?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/startlayout/import-startlayout?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-StartLayout --- diff --git a/docset/winserver2022-ps/storage/Add-InitiatorIdToMaskingSet.md b/docset/winserver2022-ps/storage/Add-InitiatorIdToMaskingSet.md index 8614a06cd8..12d87b5826 100644 --- a/docset/winserver2022-ps/storage/Add-InitiatorIdToMaskingSet.md +++ b/docset/winserver2022-ps/storage/Add-InitiatorIdToMaskingSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MaskingSet.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/add-initiatoridtomaskingset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/add-initiatoridtomaskingset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-InitiatorIdToMaskingSet --- diff --git a/docset/winserver2022-ps/storage/Add-PartitionAccessPath.md b/docset/winserver2022-ps/storage/Add-PartitionAccessPath.md index c0d477aeee..8ccd24d4da 100644 --- a/docset/winserver2022-ps/storage/Add-PartitionAccessPath.md +++ b/docset/winserver2022-ps/storage/Add-PartitionAccessPath.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Partition.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/add-partitionaccesspath?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/add-partitionaccesspath?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-PartitionAccessPath --- diff --git a/docset/winserver2022-ps/storage/Add-PhysicalDisk.md b/docset/winserver2022-ps/storage/Add-PhysicalDisk.md index 5c372caacb..b0af5db072 100644 --- a/docset/winserver2022-ps/storage/Add-PhysicalDisk.md +++ b/docset/winserver2022-ps/storage/Add-PhysicalDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageCmdlets.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/add-physicaldisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/add-physicaldisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-PhysicalDisk --- diff --git a/docset/winserver2022-ps/storage/Add-TargetPortToMaskingSet.md b/docset/winserver2022-ps/storage/Add-TargetPortToMaskingSet.md index a2f395b9d8..2d5411348a 100644 --- a/docset/winserver2022-ps/storage/Add-TargetPortToMaskingSet.md +++ b/docset/winserver2022-ps/storage/Add-TargetPortToMaskingSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MaskingSet.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/add-targetporttomaskingset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/add-targetporttomaskingset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-TargetPortToMaskingSet --- diff --git a/docset/winserver2022-ps/storage/Add-VirtualDiskToMaskingSet.md b/docset/winserver2022-ps/storage/Add-VirtualDiskToMaskingSet.md index 8407c1be37..5a2c44a07a 100644 --- a/docset/winserver2022-ps/storage/Add-VirtualDiskToMaskingSet.md +++ b/docset/winserver2022-ps/storage/Add-VirtualDiskToMaskingSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MaskingSet.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/add-virtualdisktomaskingset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/add-virtualdisktomaskingset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VirtualDiskToMaskingSet --- diff --git a/docset/winserver2022-ps/storage/Block-FileShareAccess.md b/docset/winserver2022-ps/storage/Block-FileShareAccess.md index de6b03f36c..95840b3a73 100644 --- a/docset/winserver2022-ps/storage/Block-FileShareAccess.md +++ b/docset/winserver2022-ps/storage/Block-FileShareAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FileShare.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/block-fileshareaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/block-fileshareaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Block-FileShareAccess --- diff --git a/docset/winserver2022-ps/storage/Clear-Disk.md b/docset/winserver2022-ps/storage/Clear-Disk.md index f32bdc5c73..e82090c4d2 100644 --- a/docset/winserver2022-ps/storage/Clear-Disk.md +++ b/docset/winserver2022-ps/storage/Clear-Disk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Disk.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/clear-disk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/clear-disk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-Disk --- diff --git a/docset/winserver2022-ps/storage/Clear-FileStorageTier.md b/docset/winserver2022-ps/storage/Clear-FileStorageTier.md index 1bb3b19c94..672232d37b 100644 --- a/docset/winserver2022-ps/storage/Clear-FileStorageTier.md +++ b/docset/winserver2022-ps/storage/Clear-FileStorageTier.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FileStorageTier.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/clear-filestoragetier?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/clear-filestoragetier?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-FileStorageTier --- diff --git a/docset/winserver2022-ps/storage/Connect-VirtualDisk.md b/docset/winserver2022-ps/storage/Connect-VirtualDisk.md index 551ffaee0f..7d0948d921 100644 --- a/docset/winserver2022-ps/storage/Connect-VirtualDisk.md +++ b/docset/winserver2022-ps/storage/Connect-VirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: VirtualDisk.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/connect-virtualdisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/connect-virtualdisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Connect-VirtualDisk --- diff --git a/docset/winserver2022-ps/storage/Debug-FileShare.md b/docset/winserver2022-ps/storage/Debug-FileShare.md index 1faa0a854f..aa1752fedd 100644 --- a/docset/winserver2022-ps/storage/Debug-FileShare.md +++ b/docset/winserver2022-ps/storage/Debug-FileShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/debug-fileshare?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/debug-fileshare?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Debug-FileShare --- diff --git a/docset/winserver2022-ps/storage/Debug-StorageSubSystem.md b/docset/winserver2022-ps/storage/Debug-StorageSubSystem.md index e4180565cd..0c79cbc075 100644 --- a/docset/winserver2022-ps/storage/Debug-StorageSubSystem.md +++ b/docset/winserver2022-ps/storage/Debug-StorageSubSystem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/debug-storagesubsystem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/debug-storagesubsystem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Debug-StorageSubSystem --- diff --git a/docset/winserver2022-ps/storage/Debug-Volume.md b/docset/winserver2022-ps/storage/Debug-Volume.md index 27995ee1d2..b8b55b4cd7 100644 --- a/docset/winserver2022-ps/storage/Debug-Volume.md +++ b/docset/winserver2022-ps/storage/Debug-Volume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/debug-volume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/debug-volume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Debug-Volume --- diff --git a/docset/winserver2022-ps/storage/Disable-PhysicalDiskIdentification.md b/docset/winserver2022-ps/storage/Disable-PhysicalDiskIdentification.md index d4b39d0203..8a9ae2a7f8 100644 --- a/docset/winserver2022-ps/storage/Disable-PhysicalDiskIdentification.md +++ b/docset/winserver2022-ps/storage/Disable-PhysicalDiskIdentification.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/disable-physicaldiskidentification?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/disable-physicaldiskidentification?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-PhysicalDiskIdentification --- diff --git a/docset/winserver2022-ps/storage/Disable-StorageEnclosureIdentification.md b/docset/winserver2022-ps/storage/Disable-StorageEnclosureIdentification.md index 0a994c3e14..4e14201a74 100644 --- a/docset/winserver2022-ps/storage/Disable-StorageEnclosureIdentification.md +++ b/docset/winserver2022-ps/storage/Disable-StorageEnclosureIdentification.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageEnclosure.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/disable-storageenclosureidentification?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/disable-storageenclosureidentification?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-StorageEnclosureIdentification --- diff --git a/docset/winserver2022-ps/storage/Disable-StorageHighAvailability.md b/docset/winserver2022-ps/storage/Disable-StorageHighAvailability.md index 80aefeb4e3..6c10a7a562 100644 --- a/docset/winserver2022-ps/storage/Disable-StorageHighAvailability.md +++ b/docset/winserver2022-ps/storage/Disable-StorageHighAvailability.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Disk.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/disable-storagehighavailability?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/disable-storagehighavailability?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-StorageHighAvailability --- diff --git a/docset/winserver2022-ps/storage/Disable-StorageMaintenanceMode.md b/docset/winserver2022-ps/storage/Disable-StorageMaintenanceMode.md index 220f40a360..b84fd29571 100644 --- a/docset/winserver2022-ps/storage/Disable-StorageMaintenanceMode.md +++ b/docset/winserver2022-ps/storage/Disable-StorageMaintenanceMode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/disable-storagemaintenancemode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/disable-storagemaintenancemode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-StorageMaintenanceMode --- diff --git a/docset/winserver2022-ps/storage/Disconnect-VirtualDisk.md b/docset/winserver2022-ps/storage/Disconnect-VirtualDisk.md index 6d06c0ceba..bfbfc2941b 100644 --- a/docset/winserver2022-ps/storage/Disconnect-VirtualDisk.md +++ b/docset/winserver2022-ps/storage/Disconnect-VirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: VirtualDisk.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/disconnect-virtualdisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/disconnect-virtualdisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disconnect-VirtualDisk --- diff --git a/docset/winserver2022-ps/storage/Dismount-DiskImage.md b/docset/winserver2022-ps/storage/Dismount-DiskImage.md index 70d2db5ded..d1084275f0 100644 --- a/docset/winserver2022-ps/storage/Dismount-DiskImage.md +++ b/docset/winserver2022-ps/storage/Dismount-DiskImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DiskImage.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/dismount-diskimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/dismount-diskimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Dismount-DiskImage --- diff --git a/docset/winserver2022-ps/storage/Enable-PhysicalDiskIdentification.md b/docset/winserver2022-ps/storage/Enable-PhysicalDiskIdentification.md index f374928b9f..bb6c3f1700 100644 --- a/docset/winserver2022-ps/storage/Enable-PhysicalDiskIdentification.md +++ b/docset/winserver2022-ps/storage/Enable-PhysicalDiskIdentification.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/enable-physicaldiskidentification?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/enable-physicaldiskidentification?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-PhysicalDiskIdentification --- diff --git a/docset/winserver2022-ps/storage/Enable-StorageEnclosureIdentification.md b/docset/winserver2022-ps/storage/Enable-StorageEnclosureIdentification.md index 549d655b17..b78cc73858 100644 --- a/docset/winserver2022-ps/storage/Enable-StorageEnclosureIdentification.md +++ b/docset/winserver2022-ps/storage/Enable-StorageEnclosureIdentification.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageEnclosure.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/enable-storageenclosureidentification?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/enable-storageenclosureidentification?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-StorageEnclosureIdentification --- diff --git a/docset/winserver2022-ps/storage/Enable-StorageHighAvailability.md b/docset/winserver2022-ps/storage/Enable-StorageHighAvailability.md index 7367405c66..739ae6d1f1 100644 --- a/docset/winserver2022-ps/storage/Enable-StorageHighAvailability.md +++ b/docset/winserver2022-ps/storage/Enable-StorageHighAvailability.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Disk.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/enable-storagehighavailability?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/enable-storagehighavailability?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-StorageHighAvailability --- diff --git a/docset/winserver2022-ps/storage/Enable-StorageMaintenanceMode.md b/docset/winserver2022-ps/storage/Enable-StorageMaintenanceMode.md index ac1ba43dc4..e7c17ee8d5 100644 --- a/docset/winserver2022-ps/storage/Enable-StorageMaintenanceMode.md +++ b/docset/winserver2022-ps/storage/Enable-StorageMaintenanceMode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/enable-storagemaintenancemode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/enable-storagemaintenancemode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-StorageMaintenanceMode --- diff --git a/docset/winserver2022-ps/storage/Format-Volume.md b/docset/winserver2022-ps/storage/Format-Volume.md index 341b1e4c72..d0dbb01fe0 100644 --- a/docset/winserver2022-ps/storage/Format-Volume.md +++ b/docset/winserver2022-ps/storage/Format-Volume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Volume.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/format-volume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/format-volume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Format-Volume --- diff --git a/docset/winserver2022-ps/storage/Get-DedupProperties.md b/docset/winserver2022-ps/storage/Get-DedupProperties.md index 3ee408e07d..fcad3c50d1 100644 --- a/docset/winserver2022-ps/storage/Get-DedupProperties.md +++ b/docset/winserver2022-ps/storage/Get-DedupProperties.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Volume.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-dedupproperties?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-dedupproperties?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DedupProperties --- diff --git a/docset/winserver2022-ps/storage/Get-Disk.md b/docset/winserver2022-ps/storage/Get-Disk.md index cd7cc3c5a8..3832352ada 100644 --- a/docset/winserver2022-ps/storage/Get-Disk.md +++ b/docset/winserver2022-ps/storage/Get-Disk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Disk.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-disk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-disk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-Disk --- diff --git a/docset/winserver2022-ps/storage/Get-DiskImage.md b/docset/winserver2022-ps/storage/Get-DiskImage.md index 6d5f9bed1d..caca2745ba 100644 --- a/docset/winserver2022-ps/storage/Get-DiskImage.md +++ b/docset/winserver2022-ps/storage/Get-DiskImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DiskImage.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-diskimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-diskimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DiskImage --- diff --git a/docset/winserver2022-ps/storage/Get-DiskStorageNodeView.md b/docset/winserver2022-ps/storage/Get-DiskStorageNodeView.md index 9e951ce6ed..402af85ea6 100644 --- a/docset/winserver2022-ps/storage/Get-DiskStorageNodeView.md +++ b/docset/winserver2022-ps/storage/Get-DiskStorageNodeView.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-diskstoragenodeview?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-diskstoragenodeview?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-DiskStorageNodeView --- diff --git a/docset/winserver2022-ps/storage/Get-FileIntegrity.md b/docset/winserver2022-ps/storage/Get-FileIntegrity.md index 33cc6a375e..85e73c434a 100644 --- a/docset/winserver2022-ps/storage/Get-FileIntegrity.md +++ b/docset/winserver2022-ps/storage/Get-FileIntegrity.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FileIntegrity.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-fileintegrity?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-fileintegrity?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FileIntegrity --- diff --git a/docset/winserver2022-ps/storage/Get-FileShare.md b/docset/winserver2022-ps/storage/Get-FileShare.md index b0f3df4c48..131a22152b 100644 --- a/docset/winserver2022-ps/storage/Get-FileShare.md +++ b/docset/winserver2022-ps/storage/Get-FileShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FileShare.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-fileshare?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-fileshare?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FileShare --- diff --git a/docset/winserver2022-ps/storage/Get-FileShareAccessControlEntry.md b/docset/winserver2022-ps/storage/Get-FileShareAccessControlEntry.md index bddbddab98..1e115a72b5 100644 --- a/docset/winserver2022-ps/storage/Get-FileShareAccessControlEntry.md +++ b/docset/winserver2022-ps/storage/Get-FileShareAccessControlEntry.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FileShare.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-fileshareaccesscontrolentry?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-fileshareaccesscontrolentry?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FileShareAccessControlEntry --- diff --git a/docset/winserver2022-ps/storage/Get-FileStorageTier.md b/docset/winserver2022-ps/storage/Get-FileStorageTier.md index 94496f15b7..4d3f524262 100644 --- a/docset/winserver2022-ps/storage/Get-FileStorageTier.md +++ b/docset/winserver2022-ps/storage/Get-FileStorageTier.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FileStorageTier.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-filestoragetier?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-filestoragetier?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-FileStorageTier --- diff --git a/docset/winserver2022-ps/storage/Get-InitiatorId.md b/docset/winserver2022-ps/storage/Get-InitiatorId.md index b166a5f790..443ddd9827 100644 --- a/docset/winserver2022-ps/storage/Get-InitiatorId.md +++ b/docset/winserver2022-ps/storage/Get-InitiatorId.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: InitiatorId.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-initiatorid?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-initiatorid?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-InitiatorId --- diff --git a/docset/winserver2022-ps/storage/Get-InitiatorPort.md b/docset/winserver2022-ps/storage/Get-InitiatorPort.md index 2707835587..6865a48b1d 100644 --- a/docset/winserver2022-ps/storage/Get-InitiatorPort.md +++ b/docset/winserver2022-ps/storage/Get-InitiatorPort.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: InitiatorPort.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-initiatorport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-initiatorport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-InitiatorPort --- diff --git a/docset/winserver2022-ps/storage/Get-MaskingSet.md b/docset/winserver2022-ps/storage/Get-MaskingSet.md index fdbc4ae1ee..20599ef71e 100644 --- a/docset/winserver2022-ps/storage/Get-MaskingSet.md +++ b/docset/winserver2022-ps/storage/Get-MaskingSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MaskingSet.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-maskingset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-maskingset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-MaskingSet --- diff --git a/docset/winserver2022-ps/storage/Get-OffloadDataTransferSetting.md b/docset/winserver2022-ps/storage/Get-OffloadDataTransferSetting.md index 0141f1d6a1..0bcb83c1fb 100644 --- a/docset/winserver2022-ps/storage/Get-OffloadDataTransferSetting.md +++ b/docset/winserver2022-ps/storage/Get-OffloadDataTransferSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: OffloadDataTransferSetting.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-offloaddatatransfersetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-offloaddatatransfersetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-OffloadDataTransferSetting --- diff --git a/docset/winserver2022-ps/storage/Get-Partition.md b/docset/winserver2022-ps/storage/Get-Partition.md index 4ff917978b..6d2197257a 100644 --- a/docset/winserver2022-ps/storage/Get-Partition.md +++ b/docset/winserver2022-ps/storage/Get-Partition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Partition.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-partition?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-partition?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-Partition --- diff --git a/docset/winserver2022-ps/storage/Get-PartitionSupportedSize.md b/docset/winserver2022-ps/storage/Get-PartitionSupportedSize.md index 22cfc14358..43a07d45cd 100644 --- a/docset/winserver2022-ps/storage/Get-PartitionSupportedSize.md +++ b/docset/winserver2022-ps/storage/Get-PartitionSupportedSize.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Partition.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-partitionsupportedsize?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-partitionsupportedsize?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PartitionSupportedSize --- diff --git a/docset/winserver2022-ps/storage/Get-PhysicalDisk.md b/docset/winserver2022-ps/storage/Get-PhysicalDisk.md index d58115fac4..7052807ffe 100644 --- a/docset/winserver2022-ps/storage/Get-PhysicalDisk.md +++ b/docset/winserver2022-ps/storage/Get-PhysicalDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-physicaldisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-physicaldisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PhysicalDisk --- diff --git a/docset/winserver2022-ps/storage/Get-PhysicalDiskStorageNodeView.md b/docset/winserver2022-ps/storage/Get-PhysicalDiskStorageNodeView.md index a8ca459bb3..30b3869411 100644 --- a/docset/winserver2022-ps/storage/Get-PhysicalDiskStorageNodeView.md +++ b/docset/winserver2022-ps/storage/Get-PhysicalDiskStorageNodeView.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-physicaldiskstoragenodeview?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-physicaldiskstoragenodeview?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PhysicalDiskStorageNodeView --- diff --git a/docset/winserver2022-ps/storage/Get-PhysicalExtent.md b/docset/winserver2022-ps/storage/Get-PhysicalExtent.md index b4694e2608..18a5a8d14a 100644 --- a/docset/winserver2022-ps/storage/Get-PhysicalExtent.md +++ b/docset/winserver2022-ps/storage/Get-PhysicalExtent.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-physicalextent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-physicalextent?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PhysicalExtent --- diff --git a/docset/winserver2022-ps/storage/Get-PhysicalExtentAssociation.md b/docset/winserver2022-ps/storage/Get-PhysicalExtentAssociation.md index 6b1922a003..90908b4b11 100644 --- a/docset/winserver2022-ps/storage/Get-PhysicalExtentAssociation.md +++ b/docset/winserver2022-ps/storage/Get-PhysicalExtentAssociation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-physicalextentassociation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-physicalextentassociation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-PhysicalExtentAssociation --- diff --git a/docset/winserver2022-ps/storage/Get-ResiliencySetting.md b/docset/winserver2022-ps/storage/Get-ResiliencySetting.md index 3efd9ea1f4..63ba3f6e14 100644 --- a/docset/winserver2022-ps/storage/Get-ResiliencySetting.md +++ b/docset/winserver2022-ps/storage/Get-ResiliencySetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ResiliencySetting.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-resiliencysetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-resiliencysetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ResiliencySetting --- diff --git a/docset/winserver2022-ps/storage/Get-StorageAdvancedProperty.md b/docset/winserver2022-ps/storage/Get-StorageAdvancedProperty.md index 1c3838bb0e..fb85f8e59b 100644 --- a/docset/winserver2022-ps/storage/Get-StorageAdvancedProperty.md +++ b/docset/winserver2022-ps/storage/Get-StorageAdvancedProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storageadvancedproperty?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storageadvancedproperty?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageAdvancedProperty --- diff --git a/docset/winserver2022-ps/storage/Get-StorageDiagnosticInfo.md b/docset/winserver2022-ps/storage/Get-StorageDiagnosticInfo.md index 01cd039725..57f5b8a0d9 100644 --- a/docset/winserver2022-ps/storage/Get-StorageDiagnosticInfo.md +++ b/docset/winserver2022-ps/storage/Get-StorageDiagnosticInfo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storagediagnosticinfo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagediagnosticinfo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageDiagnosticInfo --- diff --git a/docset/winserver2022-ps/storage/Get-StorageEnclosure.md b/docset/winserver2022-ps/storage/Get-StorageEnclosure.md index 14b839f1d1..df2ea1a21a 100644 --- a/docset/winserver2022-ps/storage/Get-StorageEnclosure.md +++ b/docset/winserver2022-ps/storage/Get-StorageEnclosure.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageEnclosure.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storageenclosure?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storageenclosure?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageEnclosure --- diff --git a/docset/winserver2022-ps/storage/Get-StorageEnclosureStorageNodeView.md b/docset/winserver2022-ps/storage/Get-StorageEnclosureStorageNodeView.md index cbbfdf84ba..f3e56d6ba3 100644 --- a/docset/winserver2022-ps/storage/Get-StorageEnclosureStorageNodeView.md +++ b/docset/winserver2022-ps/storage/Get-StorageEnclosureStorageNodeView.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storageenclosurestoragenodeview?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storageenclosurestoragenodeview?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageEnclosureStorageNodeView --- diff --git a/docset/winserver2022-ps/storage/Get-StorageEnclosureVendorData.md b/docset/winserver2022-ps/storage/Get-StorageEnclosureVendorData.md index 5d7c907a09..2d53396dc6 100644 --- a/docset/winserver2022-ps/storage/Get-StorageEnclosureVendorData.md +++ b/docset/winserver2022-ps/storage/Get-StorageEnclosureVendorData.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageEnclosure.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storageenclosurevendordata?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storageenclosurevendordata?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageEnclosureVendorData --- diff --git a/docset/winserver2022-ps/storage/Get-StorageFaultDomain.md b/docset/winserver2022-ps/storage/Get-StorageFaultDomain.md index 20123e6718..8e3ea7bc64 100644 --- a/docset/winserver2022-ps/storage/Get-StorageFaultDomain.md +++ b/docset/winserver2022-ps/storage/Get-StorageFaultDomain.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storagefaultdomain?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagefaultdomain?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageFaultDomain --- diff --git a/docset/winserver2022-ps/storage/Get-StorageFileServer.md b/docset/winserver2022-ps/storage/Get-StorageFileServer.md index df76cfddce..c59755396e 100644 --- a/docset/winserver2022-ps/storage/Get-StorageFileServer.md +++ b/docset/winserver2022-ps/storage/Get-StorageFileServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FileServer.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storagefileserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagefileserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageFileServer --- diff --git a/docset/winserver2022-ps/storage/Get-StorageFirmwareInformation.md b/docset/winserver2022-ps/storage/Get-StorageFirmwareInformation.md index 32b98aac6b..69a8f15893 100644 --- a/docset/winserver2022-ps/storage/Get-StorageFirmwareInformation.md +++ b/docset/winserver2022-ps/storage/Get-StorageFirmwareInformation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storagefirmwareinformation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagefirmwareinformation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageFirmwareInformation --- diff --git a/docset/winserver2022-ps/storage/Get-StorageHealthAction.md b/docset/winserver2022-ps/storage/Get-StorageHealthAction.md index afac6dcf64..df48e433a8 100644 --- a/docset/winserver2022-ps/storage/Get-StorageHealthAction.md +++ b/docset/winserver2022-ps/storage/Get-StorageHealthAction.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storagehealthaction?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagehealthaction?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageHealthAction --- diff --git a/docset/winserver2022-ps/storage/Get-StorageHealthReport.md b/docset/winserver2022-ps/storage/Get-StorageHealthReport.md index f38172ae37..f44bf574cc 100644 --- a/docset/winserver2022-ps/storage/Get-StorageHealthReport.md +++ b/docset/winserver2022-ps/storage/Get-StorageHealthReport.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storagehealthreport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagehealthreport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageHealthReport --- diff --git a/docset/winserver2022-ps/storage/Get-StorageHealthSetting.md b/docset/winserver2022-ps/storage/Get-StorageHealthSetting.md index 60415ec2a4..9b6e5a3bfb 100644 --- a/docset/winserver2022-ps/storage/Get-StorageHealthSetting.md +++ b/docset/winserver2022-ps/storage/Get-StorageHealthSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storagehealthsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagehealthsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageHealthSetting --- diff --git a/docset/winserver2022-ps/storage/Get-StorageJob.md b/docset/winserver2022-ps/storage/Get-StorageJob.md index 84272881e5..5d0186e537 100644 --- a/docset/winserver2022-ps/storage/Get-StorageJob.md +++ b/docset/winserver2022-ps/storage/Get-StorageJob.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageJob.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storagejob?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagejob?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageJob --- diff --git a/docset/winserver2022-ps/storage/Get-StorageNode.md b/docset/winserver2022-ps/storage/Get-StorageNode.md index ddb80a0571..5a60d26a5c 100644 --- a/docset/winserver2022-ps/storage/Get-StorageNode.md +++ b/docset/winserver2022-ps/storage/Get-StorageNode.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageNode.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storagenode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagenode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageNode --- diff --git a/docset/winserver2022-ps/storage/Get-StoragePool.md b/docset/winserver2022-ps/storage/Get-StoragePool.md index 0ad3e9564b..ab4517054a 100644 --- a/docset/winserver2022-ps/storage/Get-StoragePool.md +++ b/docset/winserver2022-ps/storage/Get-StoragePool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StoragePool.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storagepool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagepool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StoragePool --- diff --git a/docset/winserver2022-ps/storage/Get-StorageProvider.md b/docset/winserver2022-ps/storage/Get-StorageProvider.md index 04c074765a..4c2c8a24e3 100644 --- a/docset/winserver2022-ps/storage/Get-StorageProvider.md +++ b/docset/winserver2022-ps/storage/Get-StorageProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageProvider.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storageprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storageprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageProvider --- diff --git a/docset/winserver2022-ps/storage/Get-StorageReliabilityCounter.md b/docset/winserver2022-ps/storage/Get-StorageReliabilityCounter.md index 47ae5071c5..a118c4d09c 100644 --- a/docset/winserver2022-ps/storage/Get-StorageReliabilityCounter.md +++ b/docset/winserver2022-ps/storage/Get-StorageReliabilityCounter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageCmdlets.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storagereliabilitycounter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagereliabilitycounter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageReliabilityCounter --- diff --git a/docset/winserver2022-ps/storage/Get-StorageSetting.md b/docset/winserver2022-ps/storage/Get-StorageSetting.md index 87b2448a25..da88e8653d 100644 --- a/docset/winserver2022-ps/storage/Get-StorageSetting.md +++ b/docset/winserver2022-ps/storage/Get-StorageSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageSetting.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storagesetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagesetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageSetting --- diff --git a/docset/winserver2022-ps/storage/Get-StorageSubSystem.md b/docset/winserver2022-ps/storage/Get-StorageSubSystem.md index cbd4a02011..9c366f2de8 100644 --- a/docset/winserver2022-ps/storage/Get-StorageSubSystem.md +++ b/docset/winserver2022-ps/storage/Get-StorageSubSystem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageSubSystem.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storagesubsystem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagesubsystem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageSubSystem --- diff --git a/docset/winserver2022-ps/storage/Get-StorageTier.md b/docset/winserver2022-ps/storage/Get-StorageTier.md index a21e5e371f..89a3a27297 100644 --- a/docset/winserver2022-ps/storage/Get-StorageTier.md +++ b/docset/winserver2022-ps/storage/Get-StorageTier.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageTier.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storagetier?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagetier?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageTier --- diff --git a/docset/winserver2022-ps/storage/Get-StorageTierSupportedSize.md b/docset/winserver2022-ps/storage/Get-StorageTierSupportedSize.md index 5b400d0a72..34f7c25fb5 100644 --- a/docset/winserver2022-ps/storage/Get-StorageTierSupportedSize.md +++ b/docset/winserver2022-ps/storage/Get-StorageTierSupportedSize.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageTier.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-storagetiersupportedsize?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-storagetiersupportedsize?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageTierSupportedSize --- diff --git a/docset/winserver2022-ps/storage/Get-SupportedClusterSizes.md b/docset/winserver2022-ps/storage/Get-SupportedClusterSizes.md index 1b96f624b3..4b51940a3c 100644 --- a/docset/winserver2022-ps/storage/Get-SupportedClusterSizes.md +++ b/docset/winserver2022-ps/storage/Get-SupportedClusterSizes.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Volume.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-supportedclustersizes?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-supportedclustersizes?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SupportedClusterSizes --- diff --git a/docset/winserver2022-ps/storage/Get-SupportedFileSystems.md b/docset/winserver2022-ps/storage/Get-SupportedFileSystems.md index da9f7df4cf..16df8b33ac 100644 --- a/docset/winserver2022-ps/storage/Get-SupportedFileSystems.md +++ b/docset/winserver2022-ps/storage/Get-SupportedFileSystems.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Volume.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-supportedfilesystems?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-supportedfilesystems?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SupportedFileSystems --- diff --git a/docset/winserver2022-ps/storage/Get-TargetPort.md b/docset/winserver2022-ps/storage/Get-TargetPort.md index 4bc258bf1d..afcd266cd5 100644 --- a/docset/winserver2022-ps/storage/Get-TargetPort.md +++ b/docset/winserver2022-ps/storage/Get-TargetPort.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: TargetPort.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-targetport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-targetport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-TargetPort --- diff --git a/docset/winserver2022-ps/storage/Get-TargetPortal.md b/docset/winserver2022-ps/storage/Get-TargetPortal.md index ffd2247360..eec6874218 100644 --- a/docset/winserver2022-ps/storage/Get-TargetPortal.md +++ b/docset/winserver2022-ps/storage/Get-TargetPortal.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: TargetPortal.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-targetportal?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-targetportal?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-TargetPortal --- diff --git a/docset/winserver2022-ps/storage/Get-VirtualDisk.md b/docset/winserver2022-ps/storage/Get-VirtualDisk.md index 77288a300c..1eee5baa1b 100644 --- a/docset/winserver2022-ps/storage/Get-VirtualDisk.md +++ b/docset/winserver2022-ps/storage/Get-VirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: VirtualDisk.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-virtualdisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-virtualdisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VirtualDisk --- diff --git a/docset/winserver2022-ps/storage/Get-VirtualDiskSupportedSize.md b/docset/winserver2022-ps/storage/Get-VirtualDiskSupportedSize.md index b4ad191159..2982681fe7 100644 --- a/docset/winserver2022-ps/storage/Get-VirtualDiskSupportedSize.md +++ b/docset/winserver2022-ps/storage/Get-VirtualDiskSupportedSize.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StoragePool.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-virtualdisksupportedsize?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-virtualdisksupportedsize?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VirtualDiskSupportedSize --- diff --git a/docset/winserver2022-ps/storage/Get-Volume.md b/docset/winserver2022-ps/storage/Get-Volume.md index eb23d2966d..dbd476cb3e 100644 --- a/docset/winserver2022-ps/storage/Get-Volume.md +++ b/docset/winserver2022-ps/storage/Get-Volume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Volume.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-volume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-volume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-Volume --- diff --git a/docset/winserver2022-ps/storage/Get-VolumeCorruptionCount.md b/docset/winserver2022-ps/storage/Get-VolumeCorruptionCount.md index d29c59464a..ac055673f4 100644 --- a/docset/winserver2022-ps/storage/Get-VolumeCorruptionCount.md +++ b/docset/winserver2022-ps/storage/Get-VolumeCorruptionCount.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Volume.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-volumecorruptioncount?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-volumecorruptioncount?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VolumeCorruptionCount --- diff --git a/docset/winserver2022-ps/storage/Get-VolumeScrubPolicy.md b/docset/winserver2022-ps/storage/Get-VolumeScrubPolicy.md index c8e60b2d9a..4d6f44eda3 100644 --- a/docset/winserver2022-ps/storage/Get-VolumeScrubPolicy.md +++ b/docset/winserver2022-ps/storage/Get-VolumeScrubPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Volume.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/get-volumescrubpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/get-volumescrubpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VolumeScrubPolicy --- diff --git a/docset/winserver2022-ps/storage/Grant-FileShareAccess.md b/docset/winserver2022-ps/storage/Grant-FileShareAccess.md index 2cbfd5c4dc..53a2ff811a 100644 --- a/docset/winserver2022-ps/storage/Grant-FileShareAccess.md +++ b/docset/winserver2022-ps/storage/Grant-FileShareAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FileShare.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/grant-fileshareaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/grant-fileshareaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Grant-FileShareAccess --- diff --git a/docset/winserver2022-ps/storage/Hide-VirtualDisk.md b/docset/winserver2022-ps/storage/Hide-VirtualDisk.md index f24188d4e6..4ba9a24696 100644 --- a/docset/winserver2022-ps/storage/Hide-VirtualDisk.md +++ b/docset/winserver2022-ps/storage/Hide-VirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: VirtualDisk.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/hide-virtualdisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/hide-virtualdisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Hide-VirtualDisk --- diff --git a/docset/winserver2022-ps/storage/Initialize-Disk.md b/docset/winserver2022-ps/storage/Initialize-Disk.md index 5ae96ce514..7e7c6f966f 100644 --- a/docset/winserver2022-ps/storage/Initialize-Disk.md +++ b/docset/winserver2022-ps/storage/Initialize-Disk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Disk.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/initialize-disk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/initialize-disk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Initialize-Disk --- diff --git a/docset/winserver2022-ps/storage/Mount-DiskImage.md b/docset/winserver2022-ps/storage/Mount-DiskImage.md index 2a61d9ebd9..3cdc3ca538 100644 --- a/docset/winserver2022-ps/storage/Mount-DiskImage.md +++ b/docset/winserver2022-ps/storage/Mount-DiskImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: DiskImage.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/mount-diskimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/mount-diskimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Mount-DiskImage --- diff --git a/docset/winserver2022-ps/storage/New-FileShare.md b/docset/winserver2022-ps/storage/New-FileShare.md index 3bb012f9cd..b458fb8578 100644 --- a/docset/winserver2022-ps/storage/New-FileShare.md +++ b/docset/winserver2022-ps/storage/New-FileShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FileServer.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/new-fileshare?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/new-fileshare?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-FileShare --- diff --git a/docset/winserver2022-ps/storage/New-MaskingSet.md b/docset/winserver2022-ps/storage/New-MaskingSet.md index a2b68e3a6c..4292e4a978 100644 --- a/docset/winserver2022-ps/storage/New-MaskingSet.md +++ b/docset/winserver2022-ps/storage/New-MaskingSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageSubSystem.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/new-maskingset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/new-maskingset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-MaskingSet --- diff --git a/docset/winserver2022-ps/storage/New-Partition.md b/docset/winserver2022-ps/storage/New-Partition.md index 8c282cf9b2..4e51ae22f2 100644 --- a/docset/winserver2022-ps/storage/New-Partition.md +++ b/docset/winserver2022-ps/storage/New-Partition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Disk.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/new-partition?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/new-partition?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-Partition --- diff --git a/docset/winserver2022-ps/storage/New-StorageFileServer.md b/docset/winserver2022-ps/storage/New-StorageFileServer.md index 8b1eda5c5e..4db8e06d51 100644 --- a/docset/winserver2022-ps/storage/New-StorageFileServer.md +++ b/docset/winserver2022-ps/storage/New-StorageFileServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageSubSystem.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/new-storagefileserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/new-storagefileserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-StorageFileServer --- diff --git a/docset/winserver2022-ps/storage/New-StoragePool.md b/docset/winserver2022-ps/storage/New-StoragePool.md index 6723300685..9c678886f7 100644 --- a/docset/winserver2022-ps/storage/New-StoragePool.md +++ b/docset/winserver2022-ps/storage/New-StoragePool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageSubSystem.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/new-storagepool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/new-storagepool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-StoragePool --- diff --git a/docset/winserver2022-ps/storage/New-StorageSubsystemVirtualDisk.md b/docset/winserver2022-ps/storage/New-StorageSubsystemVirtualDisk.md index a79b441839..a9bbb39f6f 100644 --- a/docset/winserver2022-ps/storage/New-StorageSubsystemVirtualDisk.md +++ b/docset/winserver2022-ps/storage/New-StorageSubsystemVirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageSubSystem.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/new-storagesubsystemvirtualdisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/new-storagesubsystemvirtualdisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-StorageSubsystemVirtualDisk --- diff --git a/docset/winserver2022-ps/storage/New-StorageTier.md b/docset/winserver2022-ps/storage/New-StorageTier.md index ff2e9a5cf3..8fe64164f3 100644 --- a/docset/winserver2022-ps/storage/New-StorageTier.md +++ b/docset/winserver2022-ps/storage/New-StorageTier.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StoragePool.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/new-storagetier?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/new-storagetier?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-StorageTier --- diff --git a/docset/winserver2022-ps/storage/New-VirtualDisk.md b/docset/winserver2022-ps/storage/New-VirtualDisk.md index 2ae46a5481..326a878ba7 100644 --- a/docset/winserver2022-ps/storage/New-VirtualDisk.md +++ b/docset/winserver2022-ps/storage/New-VirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StoragePool.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/new-virtualdisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/new-virtualdisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VirtualDisk --- diff --git a/docset/winserver2022-ps/storage/New-VirtualDiskClone.md b/docset/winserver2022-ps/storage/New-VirtualDiskClone.md index 6f7d89187b..c90c86df48 100644 --- a/docset/winserver2022-ps/storage/New-VirtualDiskClone.md +++ b/docset/winserver2022-ps/storage/New-VirtualDiskClone.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: VirtualDisk.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/new-virtualdiskclone?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/new-virtualdiskclone?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VirtualDiskClone --- diff --git a/docset/winserver2022-ps/storage/New-VirtualDiskSnapshot.md b/docset/winserver2022-ps/storage/New-VirtualDiskSnapshot.md index 8da8214c63..aaf04e5411 100644 --- a/docset/winserver2022-ps/storage/New-VirtualDiskSnapshot.md +++ b/docset/winserver2022-ps/storage/New-VirtualDiskSnapshot.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: VirtualDisk.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/new-virtualdisksnapshot?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/new-virtualdisksnapshot?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VirtualDiskSnapshot --- diff --git a/docset/winserver2022-ps/storage/New-Volume.md b/docset/winserver2022-ps/storage/New-Volume.md index 7755194396..ae728a31de 100644 --- a/docset/winserver2022-ps/storage/New-Volume.md +++ b/docset/winserver2022-ps/storage/New-Volume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/new-volume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/new-volume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-Volume --- diff --git a/docset/winserver2022-ps/storage/Optimize-StoragePool.md b/docset/winserver2022-ps/storage/Optimize-StoragePool.md index 578348cb83..53bd599515 100644 --- a/docset/winserver2022-ps/storage/Optimize-StoragePool.md +++ b/docset/winserver2022-ps/storage/Optimize-StoragePool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StoragePool.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/optimize-storagepool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/optimize-storagepool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Optimize-StoragePool --- diff --git a/docset/winserver2022-ps/storage/Optimize-Volume.md b/docset/winserver2022-ps/storage/Optimize-Volume.md index 6ee2965128..a14272d712 100644 --- a/docset/winserver2022-ps/storage/Optimize-Volume.md +++ b/docset/winserver2022-ps/storage/Optimize-Volume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Volume.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/optimize-volume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/optimize-volume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Optimize-Volume --- diff --git a/docset/winserver2022-ps/storage/Register-StorageSubsystem.md b/docset/winserver2022-ps/storage/Register-StorageSubsystem.md index 8e310b8bdc..88c121774a 100644 --- a/docset/winserver2022-ps/storage/Register-StorageSubsystem.md +++ b/docset/winserver2022-ps/storage/Register-StorageSubsystem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageProvider.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/register-storagesubsystem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/register-storagesubsystem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Register-StorageSubsystem --- diff --git a/docset/winserver2022-ps/storage/Remove-FileShare.md b/docset/winserver2022-ps/storage/Remove-FileShare.md index a99554653c..4926d86a54 100644 --- a/docset/winserver2022-ps/storage/Remove-FileShare.md +++ b/docset/winserver2022-ps/storage/Remove-FileShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FileShare.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/remove-fileshare?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-fileshare?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-FileShare --- diff --git a/docset/winserver2022-ps/storage/Remove-InitiatorId.md b/docset/winserver2022-ps/storage/Remove-InitiatorId.md index a13a68651b..ac0c3627cf 100644 --- a/docset/winserver2022-ps/storage/Remove-InitiatorId.md +++ b/docset/winserver2022-ps/storage/Remove-InitiatorId.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: InitiatorId.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/remove-initiatorid?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-initiatorid?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-InitiatorId --- diff --git a/docset/winserver2022-ps/storage/Remove-InitiatorIdFromMaskingSet.md b/docset/winserver2022-ps/storage/Remove-InitiatorIdFromMaskingSet.md index 8cad0c8190..3a9d55d211 100644 --- a/docset/winserver2022-ps/storage/Remove-InitiatorIdFromMaskingSet.md +++ b/docset/winserver2022-ps/storage/Remove-InitiatorIdFromMaskingSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MaskingSet.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/remove-initiatoridfrommaskingset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-initiatoridfrommaskingset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-InitiatorIdFromMaskingSet --- diff --git a/docset/winserver2022-ps/storage/Remove-MaskingSet.md b/docset/winserver2022-ps/storage/Remove-MaskingSet.md index ee01c09aa9..c87a840924 100644 --- a/docset/winserver2022-ps/storage/Remove-MaskingSet.md +++ b/docset/winserver2022-ps/storage/Remove-MaskingSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MaskingSet.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/remove-maskingset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-maskingset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-MaskingSet --- diff --git a/docset/winserver2022-ps/storage/Remove-Partition.md b/docset/winserver2022-ps/storage/Remove-Partition.md index fb4ccc556a..2d1112f845 100644 --- a/docset/winserver2022-ps/storage/Remove-Partition.md +++ b/docset/winserver2022-ps/storage/Remove-Partition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Partition.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/remove-partition?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-partition?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-Partition --- diff --git a/docset/winserver2022-ps/storage/Remove-PartitionAccessPath.md b/docset/winserver2022-ps/storage/Remove-PartitionAccessPath.md index 25645b279c..ef0e9050b0 100644 --- a/docset/winserver2022-ps/storage/Remove-PartitionAccessPath.md +++ b/docset/winserver2022-ps/storage/Remove-PartitionAccessPath.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Partition.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/remove-partitionaccesspath?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-partitionaccesspath?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-PartitionAccessPath --- diff --git a/docset/winserver2022-ps/storage/Remove-PhysicalDisk.md b/docset/winserver2022-ps/storage/Remove-PhysicalDisk.md index 979e2a26ab..5666b09bed 100644 --- a/docset/winserver2022-ps/storage/Remove-PhysicalDisk.md +++ b/docset/winserver2022-ps/storage/Remove-PhysicalDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageCmdlets.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/remove-physicaldisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-physicaldisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-PhysicalDisk --- diff --git a/docset/winserver2022-ps/storage/Remove-StorageFileServer.md b/docset/winserver2022-ps/storage/Remove-StorageFileServer.md index bf3708febb..d132ca0c59 100644 --- a/docset/winserver2022-ps/storage/Remove-StorageFileServer.md +++ b/docset/winserver2022-ps/storage/Remove-StorageFileServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FileServer.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/remove-storagefileserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-storagefileserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-StorageFileServer --- diff --git a/docset/winserver2022-ps/storage/Remove-StorageHealthSetting.md b/docset/winserver2022-ps/storage/Remove-StorageHealthSetting.md index 9454a5ac40..ab472d057f 100644 --- a/docset/winserver2022-ps/storage/Remove-StorageHealthSetting.md +++ b/docset/winserver2022-ps/storage/Remove-StorageHealthSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/remove-storagehealthsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-storagehealthsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-StorageHealthSetting --- diff --git a/docset/winserver2022-ps/storage/Remove-StoragePool.md b/docset/winserver2022-ps/storage/Remove-StoragePool.md index a759e26b64..f89401956e 100644 --- a/docset/winserver2022-ps/storage/Remove-StoragePool.md +++ b/docset/winserver2022-ps/storage/Remove-StoragePool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StoragePool.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/remove-storagepool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-storagepool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-StoragePool --- diff --git a/docset/winserver2022-ps/storage/Remove-StorageTier.md b/docset/winserver2022-ps/storage/Remove-StorageTier.md index 176766dec1..7df743b082 100644 --- a/docset/winserver2022-ps/storage/Remove-StorageTier.md +++ b/docset/winserver2022-ps/storage/Remove-StorageTier.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageTier.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/remove-storagetier?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-storagetier?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-StorageTier --- diff --git a/docset/winserver2022-ps/storage/Remove-TargetPortFromMaskingSet.md b/docset/winserver2022-ps/storage/Remove-TargetPortFromMaskingSet.md index 803a48ff0c..0c084c050e 100644 --- a/docset/winserver2022-ps/storage/Remove-TargetPortFromMaskingSet.md +++ b/docset/winserver2022-ps/storage/Remove-TargetPortFromMaskingSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MaskingSet.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/remove-targetportfrommaskingset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-targetportfrommaskingset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-TargetPortFromMaskingSet --- diff --git a/docset/winserver2022-ps/storage/Remove-VirtualDisk.md b/docset/winserver2022-ps/storage/Remove-VirtualDisk.md index b9f73d9612..f1c7f094c7 100644 --- a/docset/winserver2022-ps/storage/Remove-VirtualDisk.md +++ b/docset/winserver2022-ps/storage/Remove-VirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: VirtualDisk.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/remove-virtualdisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-virtualdisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VirtualDisk --- diff --git a/docset/winserver2022-ps/storage/Remove-VirtualDiskFromMaskingSet.md b/docset/winserver2022-ps/storage/Remove-VirtualDiskFromMaskingSet.md index 5ce8fb37fd..6b6f6d9a6c 100644 --- a/docset/winserver2022-ps/storage/Remove-VirtualDiskFromMaskingSet.md +++ b/docset/winserver2022-ps/storage/Remove-VirtualDiskFromMaskingSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MaskingSet.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/remove-virtualdiskfrommaskingset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/remove-virtualdiskfrommaskingset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VirtualDiskFromMaskingSet --- diff --git a/docset/winserver2022-ps/storage/Rename-MaskingSet.md b/docset/winserver2022-ps/storage/Rename-MaskingSet.md index 6d2c52bfbb..e40e705379 100644 --- a/docset/winserver2022-ps/storage/Rename-MaskingSet.md +++ b/docset/winserver2022-ps/storage/Rename-MaskingSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MaskingSet.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/rename-maskingset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/rename-maskingset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-MaskingSet --- diff --git a/docset/winserver2022-ps/storage/Repair-FileIntegrity.md b/docset/winserver2022-ps/storage/Repair-FileIntegrity.md index 3e13f38cb0..a9d5d24683 100644 --- a/docset/winserver2022-ps/storage/Repair-FileIntegrity.md +++ b/docset/winserver2022-ps/storage/Repair-FileIntegrity.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FileIntegrity.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/repair-fileintegrity?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/repair-fileintegrity?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Repair-FileIntegrity --- diff --git a/docset/winserver2022-ps/storage/Repair-VirtualDisk.md b/docset/winserver2022-ps/storage/Repair-VirtualDisk.md index bb1160303d..0efcd585eb 100644 --- a/docset/winserver2022-ps/storage/Repair-VirtualDisk.md +++ b/docset/winserver2022-ps/storage/Repair-VirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: VirtualDisk.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/repair-virtualdisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/repair-virtualdisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Repair-VirtualDisk --- diff --git a/docset/winserver2022-ps/storage/Repair-Volume.md b/docset/winserver2022-ps/storage/Repair-Volume.md index d9d196eb40..77f2fe095a 100644 --- a/docset/winserver2022-ps/storage/Repair-Volume.md +++ b/docset/winserver2022-ps/storage/Repair-Volume.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Volume.cdxml-help.xml Module Name: Storage -online version: https://docs.microsoft.com/powershell/module/storage/repair-volume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/repair-volume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Repair-Volume --- diff --git a/docset/winserver2022-ps/storage/Reset-PhysicalDisk.md b/docset/winserver2022-ps/storage/Reset-PhysicalDisk.md index 808595a9ff..843dff2d69 100644 --- a/docset/winserver2022-ps/storage/Reset-PhysicalDisk.md +++ b/docset/winserver2022-ps/storage/Reset-PhysicalDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/reset-physicaldisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/reset-physicaldisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-PhysicalDisk --- diff --git a/docset/winserver2022-ps/storage/Reset-StorageReliabilityCounter.md b/docset/winserver2022-ps/storage/Reset-StorageReliabilityCounter.md index 7400183934..6849139f0d 100644 --- a/docset/winserver2022-ps/storage/Reset-StorageReliabilityCounter.md +++ b/docset/winserver2022-ps/storage/Reset-StorageReliabilityCounter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageReliabilityCounter.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/reset-storagereliabilitycounter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/reset-storagereliabilitycounter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-StorageReliabilityCounter --- diff --git a/docset/winserver2022-ps/storage/Resize-Partition.md b/docset/winserver2022-ps/storage/Resize-Partition.md index 2dba9ea440..9338495a37 100644 --- a/docset/winserver2022-ps/storage/Resize-Partition.md +++ b/docset/winserver2022-ps/storage/Resize-Partition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Partition.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/resize-partition?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/resize-partition?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resize-Partition --- diff --git a/docset/winserver2022-ps/storage/Resize-StorageTier.md b/docset/winserver2022-ps/storage/Resize-StorageTier.md index 8d96421032..8769d2975d 100644 --- a/docset/winserver2022-ps/storage/Resize-StorageTier.md +++ b/docset/winserver2022-ps/storage/Resize-StorageTier.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageTier.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/resize-storagetier?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/resize-storagetier?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resize-StorageTier --- diff --git a/docset/winserver2022-ps/storage/Resize-VirtualDisk.md b/docset/winserver2022-ps/storage/Resize-VirtualDisk.md index fcf1e9f85a..fee9279d70 100644 --- a/docset/winserver2022-ps/storage/Resize-VirtualDisk.md +++ b/docset/winserver2022-ps/storage/Resize-VirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: VirtualDisk.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/resize-virtualdisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/resize-virtualdisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resize-VirtualDisk --- diff --git a/docset/winserver2022-ps/storage/Revoke-FileShareAccess.md b/docset/winserver2022-ps/storage/Revoke-FileShareAccess.md index a21291c15a..45186ffbaf 100644 --- a/docset/winserver2022-ps/storage/Revoke-FileShareAccess.md +++ b/docset/winserver2022-ps/storage/Revoke-FileShareAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FileShare.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/revoke-fileshareaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/revoke-fileshareaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Revoke-FileShareAccess --- diff --git a/docset/winserver2022-ps/storage/Set-Disk.md b/docset/winserver2022-ps/storage/Set-Disk.md index e4427a7296..fc272bdf21 100644 --- a/docset/winserver2022-ps/storage/Set-Disk.md +++ b/docset/winserver2022-ps/storage/Set-Disk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageCmdlets.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/set-disk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-disk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-Disk --- diff --git a/docset/winserver2022-ps/storage/Set-FileIntegrity.md b/docset/winserver2022-ps/storage/Set-FileIntegrity.md index 3f8a4668b2..01a0630a2f 100644 --- a/docset/winserver2022-ps/storage/Set-FileIntegrity.md +++ b/docset/winserver2022-ps/storage/Set-FileIntegrity.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FileIntegrity.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/set-fileintegrity?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-fileintegrity?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FileIntegrity --- diff --git a/docset/winserver2022-ps/storage/Set-FileShare.md b/docset/winserver2022-ps/storage/Set-FileShare.md index 2b482fa1f3..671cb7ff29 100644 --- a/docset/winserver2022-ps/storage/Set-FileShare.md +++ b/docset/winserver2022-ps/storage/Set-FileShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageCmdlets.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/set-fileshare?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-fileshare?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FileShare --- diff --git a/docset/winserver2022-ps/storage/Set-FileStorageTier.md b/docset/winserver2022-ps/storage/Set-FileStorageTier.md index 49169870cb..e43da5acee 100644 --- a/docset/winserver2022-ps/storage/Set-FileStorageTier.md +++ b/docset/winserver2022-ps/storage/Set-FileStorageTier.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FileStorageTier.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/set-filestoragetier?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-filestoragetier?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-FileStorageTier --- diff --git a/docset/winserver2022-ps/storage/Set-InitiatorPort.md b/docset/winserver2022-ps/storage/Set-InitiatorPort.md index 04c98fe394..24713ab657 100644 --- a/docset/winserver2022-ps/storage/Set-InitiatorPort.md +++ b/docset/winserver2022-ps/storage/Set-InitiatorPort.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: InitiatorPort.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/set-initiatorport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-initiatorport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-InitiatorPort --- diff --git a/docset/winserver2022-ps/storage/Set-Partition.md b/docset/winserver2022-ps/storage/Set-Partition.md index afdbdf3c00..31ce58e831 100644 --- a/docset/winserver2022-ps/storage/Set-Partition.md +++ b/docset/winserver2022-ps/storage/Set-Partition.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageCmdlets.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/set-partition?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-partition?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-Partition --- diff --git a/docset/winserver2022-ps/storage/Set-PhysicalDisk.md b/docset/winserver2022-ps/storage/Set-PhysicalDisk.md index 48f75c321e..d5462df039 100644 --- a/docset/winserver2022-ps/storage/Set-PhysicalDisk.md +++ b/docset/winserver2022-ps/storage/Set-PhysicalDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageCmdlets.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/set-physicaldisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-physicaldisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-PhysicalDisk --- diff --git a/docset/winserver2022-ps/storage/Set-ResiliencySetting.md b/docset/winserver2022-ps/storage/Set-ResiliencySetting.md index cd5719b9d1..8e01ab7dd0 100644 --- a/docset/winserver2022-ps/storage/Set-ResiliencySetting.md +++ b/docset/winserver2022-ps/storage/Set-ResiliencySetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: ResiliencySetting.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/set-resiliencysetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-resiliencysetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ResiliencySetting --- diff --git a/docset/winserver2022-ps/storage/Set-StorageFileServer.md b/docset/winserver2022-ps/storage/Set-StorageFileServer.md index 93e8c0072c..53218b219e 100644 --- a/docset/winserver2022-ps/storage/Set-StorageFileServer.md +++ b/docset/winserver2022-ps/storage/Set-StorageFileServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FileServer.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/set-storagefileserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-storagefileserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-StorageFileServer --- diff --git a/docset/winserver2022-ps/storage/Set-StorageHealthSetting.md b/docset/winserver2022-ps/storage/Set-StorageHealthSetting.md index 8ba2de00e1..dcbf0f8e8a 100644 --- a/docset/winserver2022-ps/storage/Set-StorageHealthSetting.md +++ b/docset/winserver2022-ps/storage/Set-StorageHealthSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/set-storagehealthsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-storagehealthsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-StorageHealthSetting --- diff --git a/docset/winserver2022-ps/storage/Set-StoragePool.md b/docset/winserver2022-ps/storage/Set-StoragePool.md index ea2aade9f6..c23781b332 100644 --- a/docset/winserver2022-ps/storage/Set-StoragePool.md +++ b/docset/winserver2022-ps/storage/Set-StoragePool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageCmdlets.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/set-storagepool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-storagepool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-StoragePool --- diff --git a/docset/winserver2022-ps/storage/Set-StorageProvider.md b/docset/winserver2022-ps/storage/Set-StorageProvider.md index 07424694b7..4e9b70f7ef 100644 --- a/docset/winserver2022-ps/storage/Set-StorageProvider.md +++ b/docset/winserver2022-ps/storage/Set-StorageProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageProvider.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/set-storageprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-storageprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-StorageProvider --- diff --git a/docset/winserver2022-ps/storage/Set-StorageSetting.md b/docset/winserver2022-ps/storage/Set-StorageSetting.md index 338b467f86..d9873784f6 100644 --- a/docset/winserver2022-ps/storage/Set-StorageSetting.md +++ b/docset/winserver2022-ps/storage/Set-StorageSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageSetting.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/set-storagesetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-storagesetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-StorageSetting --- diff --git a/docset/winserver2022-ps/storage/Set-StorageSubSystem.md b/docset/winserver2022-ps/storage/Set-StorageSubSystem.md index fd5cb3ed22..f052dc3947 100644 --- a/docset/winserver2022-ps/storage/Set-StorageSubSystem.md +++ b/docset/winserver2022-ps/storage/Set-StorageSubSystem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageCmdlets.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/set-storagesubsystem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-storagesubsystem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-StorageSubSystem --- diff --git a/docset/winserver2022-ps/storage/Set-StorageTier.md b/docset/winserver2022-ps/storage/Set-StorageTier.md index 449cc48ee2..1d446fa5c6 100644 --- a/docset/winserver2022-ps/storage/Set-StorageTier.md +++ b/docset/winserver2022-ps/storage/Set-StorageTier.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageCmdlets.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/set-storagetier?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-storagetier?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-StorageTier --- diff --git a/docset/winserver2022-ps/storage/Set-VirtualDisk.md b/docset/winserver2022-ps/storage/Set-VirtualDisk.md index 36b13ab9e8..c798c2c652 100644 --- a/docset/winserver2022-ps/storage/Set-VirtualDisk.md +++ b/docset/winserver2022-ps/storage/Set-VirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageCmdlets.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/set-virtualdisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-virtualdisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VirtualDisk --- diff --git a/docset/winserver2022-ps/storage/Set-Volume.md b/docset/winserver2022-ps/storage/Set-Volume.md index 714f6fd545..f1bbb96f81 100644 --- a/docset/winserver2022-ps/storage/Set-Volume.md +++ b/docset/winserver2022-ps/storage/Set-Volume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageCmdlets.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/set-volume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-volume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-Volume --- diff --git a/docset/winserver2022-ps/storage/Set-VolumeScrubPolicy.md b/docset/winserver2022-ps/storage/Set-VolumeScrubPolicy.md index 887d1cb2c7..b7b274a866 100644 --- a/docset/winserver2022-ps/storage/Set-VolumeScrubPolicy.md +++ b/docset/winserver2022-ps/storage/Set-VolumeScrubPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Volume.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/set-volumescrubpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/set-volumescrubpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VolumeScrubPolicy --- diff --git a/docset/winserver2022-ps/storage/Show-VirtualDisk.md b/docset/winserver2022-ps/storage/Show-VirtualDisk.md index 96dc805b57..2dfdc52e09 100644 --- a/docset/winserver2022-ps/storage/Show-VirtualDisk.md +++ b/docset/winserver2022-ps/storage/Show-VirtualDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: VirtualDisk.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/show-virtualdisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/show-virtualdisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Show-VirtualDisk --- diff --git a/docset/winserver2022-ps/storage/Start-StorageDiagnosticLog.md b/docset/winserver2022-ps/storage/Start-StorageDiagnosticLog.md index 10d5e5eaa8..a4816d2b9b 100644 --- a/docset/winserver2022-ps/storage/Start-StorageDiagnosticLog.md +++ b/docset/winserver2022-ps/storage/Start-StorageDiagnosticLog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageSubSystem.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/start-storagediagnosticlog?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/start-storagediagnosticlog?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-StorageDiagnosticLog --- diff --git a/docset/winserver2022-ps/storage/Stop-StorageDiagnosticLog.md b/docset/winserver2022-ps/storage/Stop-StorageDiagnosticLog.md index 3823883c81..eb45618be2 100644 --- a/docset/winserver2022-ps/storage/Stop-StorageDiagnosticLog.md +++ b/docset/winserver2022-ps/storage/Stop-StorageDiagnosticLog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageSubSystem.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/stop-storagediagnosticlog?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/stop-storagediagnosticlog?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-StorageDiagnosticLog --- diff --git a/docset/winserver2022-ps/storage/Stop-StorageJob.md b/docset/winserver2022-ps/storage/Stop-StorageJob.md index 54d9d3c72a..7e21fd0c76 100644 --- a/docset/winserver2022-ps/storage/Stop-StorageJob.md +++ b/docset/winserver2022-ps/storage/Stop-StorageJob.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageJob.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/stop-storagejob?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/stop-storagejob?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-StorageJob --- diff --git a/docset/winserver2022-ps/storage/Unblock-FileShareAccess.md b/docset/winserver2022-ps/storage/Unblock-FileShareAccess.md index 07eda58183..793cf10a31 100644 --- a/docset/winserver2022-ps/storage/Unblock-FileShareAccess.md +++ b/docset/winserver2022-ps/storage/Unblock-FileShareAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: FileShare.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/unblock-fileshareaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/unblock-fileshareaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unblock-FileShareAccess --- diff --git a/docset/winserver2022-ps/storage/Unregister-StorageSubsystem.md b/docset/winserver2022-ps/storage/Unregister-StorageSubsystem.md index 067eea4474..3c3855e0a5 100644 --- a/docset/winserver2022-ps/storage/Unregister-StorageSubsystem.md +++ b/docset/winserver2022-ps/storage/Unregister-StorageSubsystem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageProvider.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/unregister-storagesubsystem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/unregister-storagesubsystem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unregister-StorageSubsystem --- diff --git a/docset/winserver2022-ps/storage/Update-Disk.md b/docset/winserver2022-ps/storage/Update-Disk.md index e5388b9603..7a53390c87 100644 --- a/docset/winserver2022-ps/storage/Update-Disk.md +++ b/docset/winserver2022-ps/storage/Update-Disk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Disk.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/update-disk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/update-disk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-Disk --- diff --git a/docset/winserver2022-ps/storage/Update-HostStorageCache.md b/docset/winserver2022-ps/storage/Update-HostStorageCache.md index 3e09869993..3c62e83e1a 100644 --- a/docset/winserver2022-ps/storage/Update-HostStorageCache.md +++ b/docset/winserver2022-ps/storage/Update-HostStorageCache.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageSetting.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/update-hoststoragecache?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/update-hoststoragecache?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-HostStorageCache --- diff --git a/docset/winserver2022-ps/storage/Update-StorageFirmware.md b/docset/winserver2022-ps/storage/Update-StorageFirmware.md index eca54e0588..bcd517d3fc 100644 --- a/docset/winserver2022-ps/storage/Update-StorageFirmware.md +++ b/docset/winserver2022-ps/storage/Update-StorageFirmware.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageScripts-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/update-storagefirmware?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/update-storagefirmware?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-StorageFirmware --- diff --git a/docset/winserver2022-ps/storage/Update-StoragePool.md b/docset/winserver2022-ps/storage/Update-StoragePool.md index 295be93cfa..6007d1e9d2 100644 --- a/docset/winserver2022-ps/storage/Update-StoragePool.md +++ b/docset/winserver2022-ps/storage/Update-StoragePool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StoragePool.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/update-storagepool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/update-storagepool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-StoragePool --- diff --git a/docset/winserver2022-ps/storage/Update-StorageProviderCache.md b/docset/winserver2022-ps/storage/Update-StorageProviderCache.md index 4b40efff2f..c65c2f8a44 100644 --- a/docset/winserver2022-ps/storage/Update-StorageProviderCache.md +++ b/docset/winserver2022-ps/storage/Update-StorageProviderCache.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageProvider.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/update-storageprovidercache?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/update-storageprovidercache?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-StorageProviderCache --- diff --git a/docset/winserver2022-ps/storage/Write-VolumeCache.md b/docset/winserver2022-ps/storage/Write-VolumeCache.md index 1b598b8ffa..8105e30c0b 100644 --- a/docset/winserver2022-ps/storage/Write-VolumeCache.md +++ b/docset/winserver2022-ps/storage/Write-VolumeCache.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Volume.cdxml-help.xml Module Name: Storage ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storage/write-volumecache?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storage/write-volumecache?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Write-VolumeCache --- diff --git a/docset/winserver2022-ps/storageqos/Get-StorageQoSFlow.md b/docset/winserver2022-ps/storageqos/Get-StorageQoSFlow.md index 4bf68a0728..fdca8ca5ba 100644 --- a/docset/winserver2022-ps/storageqos/Get-StorageQoSFlow.md +++ b/docset/winserver2022-ps/storageqos/Get-StorageQoSFlow.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Policy.psm1-help.xml Module Name: StorageQoS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storageqos/get-storageqosflow?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storageqos/get-storageqosflow?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageQoSFlow --- diff --git a/docset/winserver2022-ps/storageqos/Get-StorageQosPolicy.md b/docset/winserver2022-ps/storageqos/Get-StorageQosPolicy.md index 3353b8e029..1b1a3c5fd2 100644 --- a/docset/winserver2022-ps/storageqos/Get-StorageQosPolicy.md +++ b/docset/winserver2022-ps/storageqos/Get-StorageQosPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Policy.cdxml-help.xml Module Name: StorageQoS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storageqos/get-storageqospolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storageqos/get-storageqospolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageQosPolicy --- diff --git a/docset/winserver2022-ps/storageqos/Get-StorageQosPolicyStore.md b/docset/winserver2022-ps/storageqos/Get-StorageQosPolicyStore.md index bf08b85f51..3f8b9fe2bf 100644 --- a/docset/winserver2022-ps/storageqos/Get-StorageQosPolicyStore.md +++ b/docset/winserver2022-ps/storageqos/Get-StorageQosPolicyStore.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PolicyStore.cdxml-help.xml Module Name: StorageQoS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storageqos/get-storageqospolicystore?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storageqos/get-storageqospolicystore?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageQosPolicyStore --- diff --git a/docset/winserver2022-ps/storageqos/Get-StorageQosVolume.md b/docset/winserver2022-ps/storageqos/Get-StorageQosVolume.md index 8c16e103b4..e1f1c85ec9 100644 --- a/docset/winserver2022-ps/storageqos/Get-StorageQosVolume.md +++ b/docset/winserver2022-ps/storageqos/Get-StorageQosVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: QosVolume.cdxml-help.xml Module Name: StorageQoS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storageqos/get-storageqosvolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storageqos/get-storageqosvolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-StorageQosVolume --- diff --git a/docset/winserver2022-ps/storageqos/New-StorageQosPolicy.md b/docset/winserver2022-ps/storageqos/New-StorageQosPolicy.md index 0ce4c2455e..7f8fde1f80 100644 --- a/docset/winserver2022-ps/storageqos/New-StorageQosPolicy.md +++ b/docset/winserver2022-ps/storageqos/New-StorageQosPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Policy.psm1-help.xml Module Name: StorageQoS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storageqos/new-storageqospolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storageqos/new-storageqospolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-StorageQosPolicy --- diff --git a/docset/winserver2022-ps/storageqos/Remove-StorageQosPolicy.md b/docset/winserver2022-ps/storageqos/Remove-StorageQosPolicy.md index a94e663a4b..108cce9498 100644 --- a/docset/winserver2022-ps/storageqos/Remove-StorageQosPolicy.md +++ b/docset/winserver2022-ps/storageqos/Remove-StorageQosPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Policy.cdxml-help.xml Module Name: StorageQoS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storageqos/remove-storageqospolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storageqos/remove-storageqospolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-StorageQosPolicy --- diff --git a/docset/winserver2022-ps/storageqos/Set-StorageQosPolicy.md b/docset/winserver2022-ps/storageqos/Set-StorageQosPolicy.md index 8fc9f6b320..cc3f97f2fc 100644 --- a/docset/winserver2022-ps/storageqos/Set-StorageQosPolicy.md +++ b/docset/winserver2022-ps/storageqos/Set-StorageQosPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Policy.cdxml-help.xml Module Name: StorageQoS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storageqos/set-storageqospolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storageqos/set-storageqospolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-StorageQosPolicy --- diff --git a/docset/winserver2022-ps/storageqos/Set-StorageQosPolicyStore.md b/docset/winserver2022-ps/storageqos/Set-StorageQosPolicyStore.md index 41ee15ca48..a3505f14cc 100644 --- a/docset/winserver2022-ps/storageqos/Set-StorageQosPolicyStore.md +++ b/docset/winserver2022-ps/storageqos/Set-StorageQosPolicyStore.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PolicyStore.cdxml-help.xml Module Name: StorageQoS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storageqos/set-storageqospolicystore?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storageqos/set-storageqospolicystore?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-StorageQosPolicyStore --- diff --git a/docset/winserver2022-ps/storagereplica/Clear-SRMetadata.md b/docset/winserver2022-ps/storagereplica/Clear-SRMetadata.md index 674616a6f4..2651b9a408 100644 --- a/docset/winserver2022-ps/storagereplica/Clear-SRMetadata.md +++ b/docset/winserver2022-ps/storagereplica/Clear-SRMetadata.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/clear-srmetadata?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/clear-srmetadata?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-SRMetadata --- diff --git a/docset/winserver2022-ps/storagereplica/Dismount-SRDestination.md b/docset/winserver2022-ps/storagereplica/Dismount-SRDestination.md index 1bf8b302da..9c4e9a8b8e 100644 --- a/docset/winserver2022-ps/storagereplica/Dismount-SRDestination.md +++ b/docset/winserver2022-ps/storagereplica/Dismount-SRDestination.md @@ -3,7 +3,7 @@ description: The Dismount-SRDestination cmdlet dismounts a test failover snapsho external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: storagereplica ms.date: 10/06/2021 -online version: https://docs.microsoft.com/powershell/module/storagereplica/dismount-srdestination?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/dismount-srdestination?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Dismount-SRDestination --- diff --git a/docset/winserver2022-ps/storagereplica/Export-SRConfiguration.md b/docset/winserver2022-ps/storagereplica/Export-SRConfiguration.md index b65bf66053..242fe0fd94 100644 --- a/docset/winserver2022-ps/storagereplica/Export-SRConfiguration.md +++ b/docset/winserver2022-ps/storagereplica/Export-SRConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: StorageReplica-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/export-srconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/export-srconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-SRConfiguration --- diff --git a/docset/winserver2022-ps/storagereplica/Get-SRAccess.md b/docset/winserver2022-ps/storagereplica/Get-SRAccess.md index 0cec6d6acc..d77fe8587d 100644 --- a/docset/winserver2022-ps/storagereplica/Get-SRAccess.md +++ b/docset/winserver2022-ps/storagereplica/Get-SRAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/get-sraccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/get-sraccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SRAccess --- diff --git a/docset/winserver2022-ps/storagereplica/Get-SRDelegation.md b/docset/winserver2022-ps/storagereplica/Get-SRDelegation.md index ce9146d2c0..428b007bb9 100644 --- a/docset/winserver2022-ps/storagereplica/Get-SRDelegation.md +++ b/docset/winserver2022-ps/storagereplica/Get-SRDelegation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/get-srdelegation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/get-srdelegation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SRDelegation --- diff --git a/docset/winserver2022-ps/storagereplica/Get-SRGroup.md b/docset/winserver2022-ps/storagereplica/Get-SRGroup.md index b17172a60b..9f6c7bc4ff 100644 --- a/docset/winserver2022-ps/storagereplica/Get-SRGroup.md +++ b/docset/winserver2022-ps/storagereplica/Get-SRGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/get-srgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/get-srgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SRGroup --- diff --git a/docset/winserver2022-ps/storagereplica/Get-SRNetworkConstraint.md b/docset/winserver2022-ps/storagereplica/Get-SRNetworkConstraint.md index e517399425..ee2f3b8e02 100644 --- a/docset/winserver2022-ps/storagereplica/Get-SRNetworkConstraint.md +++ b/docset/winserver2022-ps/storagereplica/Get-SRNetworkConstraint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/get-srnetworkconstraint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/get-srnetworkconstraint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SRNetworkConstraint --- diff --git a/docset/winserver2022-ps/storagereplica/Get-SRPartnership.md b/docset/winserver2022-ps/storagereplica/Get-SRPartnership.md index b691ed84db..37f6b9eace 100644 --- a/docset/winserver2022-ps/storagereplica/Get-SRPartnership.md +++ b/docset/winserver2022-ps/storagereplica/Get-SRPartnership.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/get-srpartnership?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/get-srpartnership?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SRPartnership --- diff --git a/docset/winserver2022-ps/storagereplica/Grant-SRAccess.md b/docset/winserver2022-ps/storagereplica/Grant-SRAccess.md index f93505f454..e970ad20e0 100644 --- a/docset/winserver2022-ps/storagereplica/Grant-SRAccess.md +++ b/docset/winserver2022-ps/storagereplica/Grant-SRAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/grant-sraccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/grant-sraccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Grant-SRAccess --- diff --git a/docset/winserver2022-ps/storagereplica/Grant-SRDelegation.md b/docset/winserver2022-ps/storagereplica/Grant-SRDelegation.md index 361c273474..5fa882d0d5 100644 --- a/docset/winserver2022-ps/storagereplica/Grant-SRDelegation.md +++ b/docset/winserver2022-ps/storagereplica/Grant-SRDelegation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/grant-srdelegation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/grant-srdelegation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Grant-SRDelegation --- diff --git a/docset/winserver2022-ps/storagereplica/Mount-SRDestination.md b/docset/winserver2022-ps/storagereplica/Mount-SRDestination.md index da705630ea..39d6031e69 100644 --- a/docset/winserver2022-ps/storagereplica/Mount-SRDestination.md +++ b/docset/winserver2022-ps/storagereplica/Mount-SRDestination.md @@ -3,7 +3,7 @@ description: The Mount-SRDestination cmdlet mounts a snapshot of replicated stor external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: storagereplica ms.date: 10/06/2021 -online version: https://docs.microsoft.com/powershell/module/storagereplica/mount-srdestination?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/mount-srdestination?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Mount-SRDestination --- diff --git a/docset/winserver2022-ps/storagereplica/New-SRGroup.md b/docset/winserver2022-ps/storagereplica/New-SRGroup.md index e0e06f0902..b8d0aeb9ea 100644 --- a/docset/winserver2022-ps/storagereplica/New-SRGroup.md +++ b/docset/winserver2022-ps/storagereplica/New-SRGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/new-srgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/new-srgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-SRGroup --- diff --git a/docset/winserver2022-ps/storagereplica/New-SRPartnership.md b/docset/winserver2022-ps/storagereplica/New-SRPartnership.md index 236402cf5b..00922fbda8 100644 --- a/docset/winserver2022-ps/storagereplica/New-SRPartnership.md +++ b/docset/winserver2022-ps/storagereplica/New-SRPartnership.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/new-srpartnership?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/new-srpartnership?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-SRPartnership --- diff --git a/docset/winserver2022-ps/storagereplica/Remove-SRGroup.md b/docset/winserver2022-ps/storagereplica/Remove-SRGroup.md index 2890c298c1..18fb0af56f 100644 --- a/docset/winserver2022-ps/storagereplica/Remove-SRGroup.md +++ b/docset/winserver2022-ps/storagereplica/Remove-SRGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/remove-srgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/remove-srgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-SRGroup --- diff --git a/docset/winserver2022-ps/storagereplica/Remove-SRNetworkConstraint.md b/docset/winserver2022-ps/storagereplica/Remove-SRNetworkConstraint.md index 78f066e7f2..fa33980966 100644 --- a/docset/winserver2022-ps/storagereplica/Remove-SRNetworkConstraint.md +++ b/docset/winserver2022-ps/storagereplica/Remove-SRNetworkConstraint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/remove-srnetworkconstraint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/remove-srnetworkconstraint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-SRNetworkConstraint --- diff --git a/docset/winserver2022-ps/storagereplica/Remove-SRPartnership.md b/docset/winserver2022-ps/storagereplica/Remove-SRPartnership.md index e71ab9db95..2d3623a443 100644 --- a/docset/winserver2022-ps/storagereplica/Remove-SRPartnership.md +++ b/docset/winserver2022-ps/storagereplica/Remove-SRPartnership.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/remove-srpartnership?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/remove-srpartnership?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-SRPartnership --- diff --git a/docset/winserver2022-ps/storagereplica/Revoke-SRAccess.md b/docset/winserver2022-ps/storagereplica/Revoke-SRAccess.md index abf6030a72..9dc66444ac 100644 --- a/docset/winserver2022-ps/storagereplica/Revoke-SRAccess.md +++ b/docset/winserver2022-ps/storagereplica/Revoke-SRAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/revoke-sraccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/revoke-sraccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Revoke-SRAccess --- diff --git a/docset/winserver2022-ps/storagereplica/Revoke-SRDelegation.md b/docset/winserver2022-ps/storagereplica/Revoke-SRDelegation.md index 604ab7c2d3..bc70f49939 100644 --- a/docset/winserver2022-ps/storagereplica/Revoke-SRDelegation.md +++ b/docset/winserver2022-ps/storagereplica/Revoke-SRDelegation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/revoke-srdelegation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/revoke-srdelegation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Revoke-SRDelegation --- diff --git a/docset/winserver2022-ps/storagereplica/Set-SRGroup.md b/docset/winserver2022-ps/storagereplica/Set-SRGroup.md index cd25addd48..05f89ae000 100644 --- a/docset/winserver2022-ps/storagereplica/Set-SRGroup.md +++ b/docset/winserver2022-ps/storagereplica/Set-SRGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/set-srgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/set-srgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SRGroup --- diff --git a/docset/winserver2022-ps/storagereplica/Set-SRNetworkConstraint.md b/docset/winserver2022-ps/storagereplica/Set-SRNetworkConstraint.md index bdb9e2f6d9..26a2332976 100644 --- a/docset/winserver2022-ps/storagereplica/Set-SRNetworkConstraint.md +++ b/docset/winserver2022-ps/storagereplica/Set-SRNetworkConstraint.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 07/28/2021 -online version: https://docs.microsoft.com/powershell/module/storagereplica/set-srnetworkconstraint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/set-srnetworkconstraint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SRNetworkConstraint --- diff --git a/docset/winserver2022-ps/storagereplica/Set-SRPartnership.md b/docset/winserver2022-ps/storagereplica/Set-SRPartnership.md index dd93b775ae..3ad3cbe5d4 100644 --- a/docset/winserver2022-ps/storagereplica/Set-SRPartnership.md +++ b/docset/winserver2022-ps/storagereplica/Set-SRPartnership.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/set-srpartnership?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/set-srpartnership?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SRPartnership --- diff --git a/docset/winserver2022-ps/storagereplica/Suspend-SRGroup.md b/docset/winserver2022-ps/storagereplica/Suspend-SRGroup.md index 980f052e6b..d3aa40d1c1 100644 --- a/docset/winserver2022-ps/storagereplica/Suspend-SRGroup.md +++ b/docset/winserver2022-ps/storagereplica/Suspend-SRGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/suspend-srgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/suspend-srgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-SRGroup --- diff --git a/docset/winserver2022-ps/storagereplica/Sync-SRGroup.md b/docset/winserver2022-ps/storagereplica/Sync-SRGroup.md index ebb5ddfe73..6ee5f5877f 100644 --- a/docset/winserver2022-ps/storagereplica/Sync-SRGroup.md +++ b/docset/winserver2022-ps/storagereplica/Sync-SRGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/sync-srgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/sync-srgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Sync-SRGroup --- diff --git a/docset/winserver2022-ps/storagereplica/Test-SRTopology.md b/docset/winserver2022-ps/storagereplica/Test-SRTopology.md index fcecc16c7b..3dd3d40b36 100644 --- a/docset/winserver2022-ps/storagereplica/Test-SRTopology.md +++ b/docset/winserver2022-ps/storagereplica/Test-SRTopology.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.FileServices.SR.Powershell.dll-Help.xml Module Name: StorageReplica ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/storagereplica/test-srtopology?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/storagereplica/test-srtopology?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-SRTopology --- diff --git a/docset/winserver2022-ps/syncshare/Disable-SyncShare.md b/docset/winserver2022-ps/syncshare/Disable-SyncShare.md index 0c0c94462c..3e616420e8 100644 --- a/docset/winserver2022-ps/syncshare/Disable-SyncShare.md +++ b/docset/winserver2022-ps/syncshare/Disable-SyncShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SyncShare.cdxml-help.xml Module Name: SyncShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/syncshare/disable-syncshare?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/syncshare/disable-syncshare?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-SyncShare --- diff --git a/docset/winserver2022-ps/syncshare/Enable-SyncShare.md b/docset/winserver2022-ps/syncshare/Enable-SyncShare.md index dc564fd61e..6ea03498c9 100644 --- a/docset/winserver2022-ps/syncshare/Enable-SyncShare.md +++ b/docset/winserver2022-ps/syncshare/Enable-SyncShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SyncShare.cdxml-help.xml Module Name: SyncShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/syncshare/enable-syncshare?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/syncshare/enable-syncshare?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-SyncShare --- diff --git a/docset/winserver2022-ps/syncshare/Get-SyncServerSetting.md b/docset/winserver2022-ps/syncshare/Get-SyncServerSetting.md index f919a11d09..a956e3dcb0 100644 --- a/docset/winserver2022-ps/syncshare/Get-SyncServerSetting.md +++ b/docset/winserver2022-ps/syncshare/Get-SyncServerSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SyncServerSetting.cdxml-help.xml Module Name: SyncShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/syncshare/get-syncserversetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/syncshare/get-syncserversetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SyncServerSetting --- diff --git a/docset/winserver2022-ps/syncshare/Get-SyncShare.md b/docset/winserver2022-ps/syncshare/Get-SyncShare.md index 82192a290d..51a72ccf02 100644 --- a/docset/winserver2022-ps/syncshare/Get-SyncShare.md +++ b/docset/winserver2022-ps/syncshare/Get-SyncShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SyncShare.cdxml-help.xml Module Name: SyncShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/syncshare/get-syncshare?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/syncshare/get-syncshare?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SyncShare --- diff --git a/docset/winserver2022-ps/syncshare/Get-SyncUserStatus.md b/docset/winserver2022-ps/syncshare/Get-SyncUserStatus.md index 011259b7a4..6c24ae5aff 100644 --- a/docset/winserver2022-ps/syncshare/Get-SyncUserStatus.md +++ b/docset/winserver2022-ps/syncshare/Get-SyncUserStatus.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SyncUserStatus.cdxml-help.xml Module Name: SyncShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/syncshare/get-syncuserstatus?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/syncshare/get-syncuserstatus?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-SyncUserStatus --- diff --git a/docset/winserver2022-ps/syncshare/New-SyncShare.md b/docset/winserver2022-ps/syncshare/New-SyncShare.md index f121b8084f..e53789ae14 100644 --- a/docset/winserver2022-ps/syncshare/New-SyncShare.md +++ b/docset/winserver2022-ps/syncshare/New-SyncShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SyncShare.cdxml-help.xml Module Name: SyncShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/syncshare/new-syncshare?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/syncshare/new-syncshare?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-SyncShare --- diff --git a/docset/winserver2022-ps/syncshare/Remove-SyncShare.md b/docset/winserver2022-ps/syncshare/Remove-SyncShare.md index 9e4fa299c7..bd1b34ade3 100644 --- a/docset/winserver2022-ps/syncshare/Remove-SyncShare.md +++ b/docset/winserver2022-ps/syncshare/Remove-SyncShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SyncShare.cdxml-help.xml Module Name: SyncShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/syncshare/remove-syncshare?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/syncshare/remove-syncshare?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-SyncShare --- diff --git a/docset/winserver2022-ps/syncshare/Repair-SyncShare.md b/docset/winserver2022-ps/syncshare/Repair-SyncShare.md index 87c7edbf55..ca39fa90e1 100644 --- a/docset/winserver2022-ps/syncshare/Repair-SyncShare.md +++ b/docset/winserver2022-ps/syncshare/Repair-SyncShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SyncShare.cdxml-help.xml Module Name: SyncShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/syncshare/repair-syncshare?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/syncshare/repair-syncshare?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Repair-SyncShare --- diff --git a/docset/winserver2022-ps/syncshare/Set-SyncServerSetting.md b/docset/winserver2022-ps/syncshare/Set-SyncServerSetting.md index d530463fc7..361550f7ed 100644 --- a/docset/winserver2022-ps/syncshare/Set-SyncServerSetting.md +++ b/docset/winserver2022-ps/syncshare/Set-SyncServerSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SyncServerSetting.cdxml-help.xml Module Name: SyncShare ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/syncshare/set-syncserversetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/syncshare/set-syncserversetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SyncServerSetting --- diff --git a/docset/winserver2022-ps/syncshare/Set-SyncShare.md b/docset/winserver2022-ps/syncshare/Set-SyncShare.md index 0032591d02..f2a689d48b 100644 --- a/docset/winserver2022-ps/syncshare/Set-SyncShare.md +++ b/docset/winserver2022-ps/syncshare/Set-SyncShare.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: SyncShare.cdxml-help.xml Module Name: SyncShare ms.date: 09/03/2017 -online version: https://docs.microsoft.com/powershell/module/syncshare/set-syncshare?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/syncshare/set-syncshare?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SyncShare --- diff --git a/docset/winserver2022-ps/systeminsights/Add-InsightsCapability.md b/docset/winserver2022-ps/systeminsights/Add-InsightsCapability.md index 343f88826d..2ba9e40bf6 100644 --- a/docset/winserver2022-ps/systeminsights/Add-InsightsCapability.md +++ b/docset/winserver2022-ps/systeminsights/Add-InsightsCapability.md @@ -5,7 +5,7 @@ external help file: Microsoft.SystemInsights.Management.PowerShell.dll-help.xml Locale: en-US Module Name: SystemInsights ms.date: 06/18/2018 -online version: https://docs.microsoft.com/powershell/module/systeminsights/add-insightscapability?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/systeminsights/add-insightscapability?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-InsightsCapability --- diff --git a/docset/winserver2022-ps/systeminsights/Disable-InsightsCapability.md b/docset/winserver2022-ps/systeminsights/Disable-InsightsCapability.md index ea2cf9136e..3b43492a51 100644 --- a/docset/winserver2022-ps/systeminsights/Disable-InsightsCapability.md +++ b/docset/winserver2022-ps/systeminsights/Disable-InsightsCapability.md @@ -5,7 +5,7 @@ external help file: Microsoft.SystemInsights.Management.PowerShell.dll-help.xml Locale: en-US Module Name: SystemInsights ms.date: 06/18/2018 -online version: https://docs.microsoft.com/powershell/module/systeminsights/disable-insightscapability?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/systeminsights/disable-insightscapability?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-InsightsCapability --- diff --git a/docset/winserver2022-ps/systeminsights/Disable-InsightsCapabilitySchedule.md b/docset/winserver2022-ps/systeminsights/Disable-InsightsCapabilitySchedule.md index 1183a7a9c5..a95704fbd7 100644 --- a/docset/winserver2022-ps/systeminsights/Disable-InsightsCapabilitySchedule.md +++ b/docset/winserver2022-ps/systeminsights/Disable-InsightsCapabilitySchedule.md @@ -5,7 +5,7 @@ external help file: Microsoft.SystemInsights.Management.PowerShell.dll-help.xml Locale: en-US Module Name: SystemInsights ms.date: 06/18/2018 -online version: https://docs.microsoft.com/powershell/module/systeminsights/disable-insightscapabilityschedule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/systeminsights/disable-insightscapabilityschedule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-InsightsCapabilitySchedule --- diff --git a/docset/winserver2022-ps/systeminsights/Enable-InsightsCapability.md b/docset/winserver2022-ps/systeminsights/Enable-InsightsCapability.md index f99d0df0d9..5495a0c0ed 100644 --- a/docset/winserver2022-ps/systeminsights/Enable-InsightsCapability.md +++ b/docset/winserver2022-ps/systeminsights/Enable-InsightsCapability.md @@ -5,7 +5,7 @@ external help file: Microsoft.SystemInsights.Management.PowerShell.dll-help.xml Locale: en-US Module Name: SystemInsights ms.date: 06/18/2018 -online version: https://docs.microsoft.com/powershell/module/systeminsights/enable-insightscapability?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/systeminsights/enable-insightscapability?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-InsightsCapability --- diff --git a/docset/winserver2022-ps/systeminsights/Enable-InsightsCapabilitySchedule.md b/docset/winserver2022-ps/systeminsights/Enable-InsightsCapabilitySchedule.md index 91ae4e0dfd..1787b4d0ea 100644 --- a/docset/winserver2022-ps/systeminsights/Enable-InsightsCapabilitySchedule.md +++ b/docset/winserver2022-ps/systeminsights/Enable-InsightsCapabilitySchedule.md @@ -5,7 +5,7 @@ external help file: Microsoft.SystemInsights.Management.PowerShell.dll-help.xml Locale: en-US Module Name: SystemInsights ms.date: 06/18/2018 -online version: https://docs.microsoft.com/powershell/module/systeminsights/enable-insightscapabilityschedule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/systeminsights/enable-insightscapabilityschedule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-InsightsCapabilitySchedule --- diff --git a/docset/winserver2022-ps/systeminsights/Get-InsightsCapability.md b/docset/winserver2022-ps/systeminsights/Get-InsightsCapability.md index cc6bb78d71..1b3fc80583 100644 --- a/docset/winserver2022-ps/systeminsights/Get-InsightsCapability.md +++ b/docset/winserver2022-ps/systeminsights/Get-InsightsCapability.md @@ -5,7 +5,7 @@ external help file: Microsoft.SystemInsights.Management.PowerShell.dll-help.xml Locale: en-US Module Name: SystemInsights ms.date: 06/18/2018 -online version: https://docs.microsoft.com/powershell/module/systeminsights/get-insightscapability?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/systeminsights/get-insightscapability?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-InsightsCapability --- diff --git a/docset/winserver2022-ps/systeminsights/Get-InsightsCapabilityAction.md b/docset/winserver2022-ps/systeminsights/Get-InsightsCapabilityAction.md index b1875ddae4..389e174bfe 100644 --- a/docset/winserver2022-ps/systeminsights/Get-InsightsCapabilityAction.md +++ b/docset/winserver2022-ps/systeminsights/Get-InsightsCapabilityAction.md @@ -5,7 +5,7 @@ external help file: Microsoft.SystemInsights.Management.PowerShell.dll-help.xml Locale: en-US Module Name: SystemInsights ms.date: 06/18/2018 -online version: https://docs.microsoft.com/powershell/module/systeminsights/get-insightscapabilityaction?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/systeminsights/get-insightscapabilityaction?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-InsightsCapabilityAction --- diff --git a/docset/winserver2022-ps/systeminsights/Get-InsightsCapabilityResult.md b/docset/winserver2022-ps/systeminsights/Get-InsightsCapabilityResult.md index 280a1ad087..6710ee9392 100644 --- a/docset/winserver2022-ps/systeminsights/Get-InsightsCapabilityResult.md +++ b/docset/winserver2022-ps/systeminsights/Get-InsightsCapabilityResult.md @@ -5,7 +5,7 @@ external help file: Microsoft.SystemInsights.Management.PowerShell.dll-help.xml Locale: en-US Module Name: SystemInsights ms.date: 06/18/2018 -online version: https://docs.microsoft.com/powershell/module/systeminsights/get-insightscapabilityresult?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/systeminsights/get-insightscapabilityresult?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-InsightsCapabilityResult --- diff --git a/docset/winserver2022-ps/systeminsights/Get-InsightsCapabilitySchedule.md b/docset/winserver2022-ps/systeminsights/Get-InsightsCapabilitySchedule.md index c047a34d84..443a600f15 100644 --- a/docset/winserver2022-ps/systeminsights/Get-InsightsCapabilitySchedule.md +++ b/docset/winserver2022-ps/systeminsights/Get-InsightsCapabilitySchedule.md @@ -5,7 +5,7 @@ external help file: Microsoft.SystemInsights.Management.PowerShell.dll-help.xml Locale: en-US Module Name: SystemInsights ms.date: 06/18/2018 -online version: https://docs.microsoft.com/powershell/module/systeminsights/get-insightscapabilityschedule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/systeminsights/get-insightscapabilityschedule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-InsightsCapabilitySchedule --- diff --git a/docset/winserver2022-ps/systeminsights/Invoke-InsightsCapability.md b/docset/winserver2022-ps/systeminsights/Invoke-InsightsCapability.md index e0258fcb05..a96fed56d2 100644 --- a/docset/winserver2022-ps/systeminsights/Invoke-InsightsCapability.md +++ b/docset/winserver2022-ps/systeminsights/Invoke-InsightsCapability.md @@ -5,7 +5,7 @@ external help file: Microsoft.SystemInsights.Management.PowerShell.dll-help.xml Locale: en-US Module Name: SystemInsights ms.date: 06/18/2018 -online version: https://docs.microsoft.com/powershell/module/systeminsights/invoke-insightscapability?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/systeminsights/invoke-insightscapability?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-InsightsCapability --- diff --git a/docset/winserver2022-ps/systeminsights/Remove-InsightsCapability.md b/docset/winserver2022-ps/systeminsights/Remove-InsightsCapability.md index cadf65b300..203f04563a 100644 --- a/docset/winserver2022-ps/systeminsights/Remove-InsightsCapability.md +++ b/docset/winserver2022-ps/systeminsights/Remove-InsightsCapability.md @@ -5,7 +5,7 @@ external help file: Microsoft.SystemInsights.Management.PowerShell.dll-help.xml Locale: en-US Module Name: SystemInsights ms.date: 06/18/2018 -online version: https://docs.microsoft.com/powershell/module/systeminsights/remove-insightscapability?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/systeminsights/remove-insightscapability?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-InsightsCapability --- diff --git a/docset/winserver2022-ps/systeminsights/Remove-InsightsCapabilityAction.md b/docset/winserver2022-ps/systeminsights/Remove-InsightsCapabilityAction.md index 542efa376d..b5de54bdad 100644 --- a/docset/winserver2022-ps/systeminsights/Remove-InsightsCapabilityAction.md +++ b/docset/winserver2022-ps/systeminsights/Remove-InsightsCapabilityAction.md @@ -5,7 +5,7 @@ external help file: Microsoft.SystemInsights.Management.PowerShell.dll-help.xml Locale: en-US Module Name: SystemInsights ms.date: 06/18/2018 -online version: https://docs.microsoft.com/powershell/module/systeminsights/remove-insightscapabilityaction?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/systeminsights/remove-insightscapabilityaction?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-InsightsCapabilityAction --- diff --git a/docset/winserver2022-ps/systeminsights/Set-InsightsCapabilityAction.md b/docset/winserver2022-ps/systeminsights/Set-InsightsCapabilityAction.md index 7fb369ae9c..6f057e88dc 100644 --- a/docset/winserver2022-ps/systeminsights/Set-InsightsCapabilityAction.md +++ b/docset/winserver2022-ps/systeminsights/Set-InsightsCapabilityAction.md @@ -5,7 +5,7 @@ external help file: Microsoft.SystemInsights.Management.PowerShell.dll-help.xml Locale: en-US Module Name: SystemInsights ms.date: 06/18/2018 -online version: https://docs.microsoft.com/powershell/module/systeminsights/set-insightscapabilityaction?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/systeminsights/set-insightscapabilityaction?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-InsightsCapabilityAction --- diff --git a/docset/winserver2022-ps/systeminsights/Set-InsightsCapabilitySchedule.md b/docset/winserver2022-ps/systeminsights/Set-InsightsCapabilitySchedule.md index 37d3b5a1de..86b0330ba0 100644 --- a/docset/winserver2022-ps/systeminsights/Set-InsightsCapabilitySchedule.md +++ b/docset/winserver2022-ps/systeminsights/Set-InsightsCapabilitySchedule.md @@ -5,7 +5,7 @@ external help file: Microsoft.SystemInsights.Management.PowerShell.dll-help.xml Locale: en-US Module Name: SystemInsights ms.date: 06/18/2018 -online version: https://docs.microsoft.com/powershell/module/systeminsights/set-insightscapabilityschedule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/systeminsights/set-insightscapabilityschedule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-InsightsCapabilitySchedule --- diff --git a/docset/winserver2022-ps/systeminsights/Update-InsightsCapability.md b/docset/winserver2022-ps/systeminsights/Update-InsightsCapability.md index 87c7b870e8..f166390daa 100644 --- a/docset/winserver2022-ps/systeminsights/Update-InsightsCapability.md +++ b/docset/winserver2022-ps/systeminsights/Update-InsightsCapability.md @@ -5,7 +5,7 @@ external help file: Microsoft.SystemInsights.Management.PowerShell.dll-help.xml Locale: en-US Module Name: SystemInsights ms.date: 06/18/2018 -online version: https://docs.microsoft.com/powershell/module/systeminsights/update-insightscapability?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/systeminsights/update-insightscapability?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-InsightsCapability --- diff --git a/docset/winserver2022-ps/tls/Disable-TlsCipherSuite.md b/docset/winserver2022-ps/tls/Disable-TlsCipherSuite.md index d69b9fffa4..c6c10e50b6 100644 --- a/docset/winserver2022-ps/tls/Disable-TlsCipherSuite.md +++ b/docset/winserver2022-ps/tls/Disable-TlsCipherSuite.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.WindowsAuthenticationProtocols.Commands.dll-Help.xml Module Name: TLS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/tls/disable-tlsciphersuite?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/tls/disable-tlsciphersuite?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-TlsCipherSuite --- diff --git a/docset/winserver2022-ps/tls/Disable-TlsEccCurve.md b/docset/winserver2022-ps/tls/Disable-TlsEccCurve.md index 55bd8ed466..53de56b95c 100644 --- a/docset/winserver2022-ps/tls/Disable-TlsEccCurve.md +++ b/docset/winserver2022-ps/tls/Disable-TlsEccCurve.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.WindowsAuthenticationProtocols.Commands.dll-Help.xml Module Name: TLS ms.date: 05/09/2017 -online version: https://docs.microsoft.com/powershell/module/tls/disable-tlsecccurve?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/tls/disable-tlsecccurve?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-TlsEccCurve --- diff --git a/docset/winserver2022-ps/tls/Disable-TlsSessionTicketKey.md b/docset/winserver2022-ps/tls/Disable-TlsSessionTicketKey.md index 267c247dc3..787c866fae 100644 --- a/docset/winserver2022-ps/tls/Disable-TlsSessionTicketKey.md +++ b/docset/winserver2022-ps/tls/Disable-TlsSessionTicketKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.WindowsAuthenticationProtocols.Commands.dll-Help.xml Module Name: TLS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/tls/disable-tlssessionticketkey?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/tls/disable-tlssessionticketkey?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-TlsSessionTicketKey --- diff --git a/docset/winserver2022-ps/tls/Enable-TlsCipherSuite.md b/docset/winserver2022-ps/tls/Enable-TlsCipherSuite.md index 454e3ca18f..2ca91dcda9 100644 --- a/docset/winserver2022-ps/tls/Enable-TlsCipherSuite.md +++ b/docset/winserver2022-ps/tls/Enable-TlsCipherSuite.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.WindowsAuthenticationProtocols.Commands.dll-Help.xml Module Name: TLS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/tls/enable-tlsciphersuite?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/tls/enable-tlsciphersuite?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-TlsCipherSuite --- diff --git a/docset/winserver2022-ps/tls/Enable-TlsEccCurve.md b/docset/winserver2022-ps/tls/Enable-TlsEccCurve.md index bb2c1209ff..8a938b9d85 100644 --- a/docset/winserver2022-ps/tls/Enable-TlsEccCurve.md +++ b/docset/winserver2022-ps/tls/Enable-TlsEccCurve.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.WindowsAuthenticationProtocols.Commands.dll-Help.xml Module Name: TLS ms.date: 05/09/2017 -online version: https://docs.microsoft.com/powershell/module/tls/enable-tlsecccurve?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/tls/enable-tlsecccurve?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-TlsEccCurve --- diff --git a/docset/winserver2022-ps/tls/Enable-TlsSessionTicketKey.md b/docset/winserver2022-ps/tls/Enable-TlsSessionTicketKey.md index edc88e96fc..c245c41048 100644 --- a/docset/winserver2022-ps/tls/Enable-TlsSessionTicketKey.md +++ b/docset/winserver2022-ps/tls/Enable-TlsSessionTicketKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.WindowsAuthenticationProtocols.Commands.dll-Help.xml Module Name: TLS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/tls/enable-tlssessionticketkey?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/tls/enable-tlssessionticketkey?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-TlsSessionTicketKey --- diff --git a/docset/winserver2022-ps/tls/Export-TlsSessionTicketKey.md b/docset/winserver2022-ps/tls/Export-TlsSessionTicketKey.md index 45c8b90852..6cd6a6a65f 100644 --- a/docset/winserver2022-ps/tls/Export-TlsSessionTicketKey.md +++ b/docset/winserver2022-ps/tls/Export-TlsSessionTicketKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.WindowsAuthenticationProtocols.Commands.dll-Help.xml Module Name: TLS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/tls/export-tlssessionticketkey?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/tls/export-tlssessionticketkey?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-TlsSessionTicketKey --- diff --git a/docset/winserver2022-ps/tls/Get-TlsCipherSuite.md b/docset/winserver2022-ps/tls/Get-TlsCipherSuite.md index 4e6deaae94..730e1f0a3c 100644 --- a/docset/winserver2022-ps/tls/Get-TlsCipherSuite.md +++ b/docset/winserver2022-ps/tls/Get-TlsCipherSuite.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.WindowsAuthenticationProtocols.Commands.dll-Help.xml Module Name: TLS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/tls/get-tlsciphersuite?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/tls/get-tlsciphersuite?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-TlsCipherSuite --- diff --git a/docset/winserver2022-ps/tls/Get-TlsEccCurve.md b/docset/winserver2022-ps/tls/Get-TlsEccCurve.md index ec882cf5e3..f8cd2ffdeb 100644 --- a/docset/winserver2022-ps/tls/Get-TlsEccCurve.md +++ b/docset/winserver2022-ps/tls/Get-TlsEccCurve.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.WindowsAuthenticationProtocols.Commands.dll-Help.xml Module Name: TLS ms.date: 05/09/2017 -online version: https://docs.microsoft.com/powershell/module/tls/get-tlsecccurve?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/tls/get-tlsecccurve?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-TlsEccCurve --- diff --git a/docset/winserver2022-ps/tls/New-TlsSessionTicketKey.md b/docset/winserver2022-ps/tls/New-TlsSessionTicketKey.md index ce94d85770..d24d957a2a 100644 --- a/docset/winserver2022-ps/tls/New-TlsSessionTicketKey.md +++ b/docset/winserver2022-ps/tls/New-TlsSessionTicketKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.WindowsAuthenticationProtocols.Commands.dll-Help.xml Module Name: TLS ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/tls/new-tlssessionticketkey?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/tls/new-tlssessionticketkey?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-TlsSessionTicketKey --- diff --git a/docset/winserver2022-ps/troubleshootingpack/Get-TroubleshootingPack.md b/docset/winserver2022-ps/troubleshootingpack/Get-TroubleshootingPack.md index 450daf95c2..4b2f2a05c6 100644 --- a/docset/winserver2022-ps/troubleshootingpack/Get-TroubleshootingPack.md +++ b/docset/winserver2022-ps/troubleshootingpack/Get-TroubleshootingPack.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Diagnosis.TroubleshootingPack.dll-Help.xml Module Name: TroubleshootingPack ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/troubleshootingpack/get-troubleshootingpack?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/troubleshootingpack/get-troubleshootingpack?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-TroubleshootingPack --- diff --git a/docset/winserver2022-ps/troubleshootingpack/Invoke-TroubleshootingPack.md b/docset/winserver2022-ps/troubleshootingpack/Invoke-TroubleshootingPack.md index 3d1ee0f614..6629070c55 100644 --- a/docset/winserver2022-ps/troubleshootingpack/Invoke-TroubleshootingPack.md +++ b/docset/winserver2022-ps/troubleshootingpack/Invoke-TroubleshootingPack.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Diagnosis.TroubleshootingPack.dll-Help.xml Module Name: TroubleshootingPack ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/troubleshootingpack/invoke-troubleshootingpack?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/troubleshootingpack/invoke-troubleshootingpack?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-TroubleshootingPack --- diff --git a/docset/winserver2022-ps/trustedplatformmodule/Clear-Tpm.md b/docset/winserver2022-ps/trustedplatformmodule/Clear-Tpm.md index 3145fde8e4..e65b555c1b 100644 --- a/docset/winserver2022-ps/trustedplatformmodule/Clear-Tpm.md +++ b/docset/winserver2022-ps/trustedplatformmodule/Clear-Tpm.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Tpm.Commands.dll-Help.xml Module Name: TrustedPlatformModule ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/trustedplatformmodule/clear-tpm?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/trustedplatformmodule/clear-tpm?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-Tpm --- diff --git a/docset/winserver2022-ps/trustedplatformmodule/ConvertTo-TpmOwnerAuth.md b/docset/winserver2022-ps/trustedplatformmodule/ConvertTo-TpmOwnerAuth.md index 9fb154a9aa..b5ccafa701 100644 --- a/docset/winserver2022-ps/trustedplatformmodule/ConvertTo-TpmOwnerAuth.md +++ b/docset/winserver2022-ps/trustedplatformmodule/ConvertTo-TpmOwnerAuth.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Tpm.Commands.dll-Help.xml Module Name: TrustedPlatformModule ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/trustedplatformmodule/convertto-tpmownerauth?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/trustedplatformmodule/convertto-tpmownerauth?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: ConvertTo-TpmOwnerAuth --- diff --git a/docset/winserver2022-ps/trustedplatformmodule/Disable-TpmAutoProvisioning.md b/docset/winserver2022-ps/trustedplatformmodule/Disable-TpmAutoProvisioning.md index 275976a71c..0b7b8af2aa 100644 --- a/docset/winserver2022-ps/trustedplatformmodule/Disable-TpmAutoProvisioning.md +++ b/docset/winserver2022-ps/trustedplatformmodule/Disable-TpmAutoProvisioning.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Tpm.Commands.dll-Help.xml Module Name: TrustedPlatformModule ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/trustedplatformmodule/disable-tpmautoprovisioning?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/trustedplatformmodule/disable-tpmautoprovisioning?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-TpmAutoProvisioning --- diff --git a/docset/winserver2022-ps/trustedplatformmodule/Enable-TpmAutoProvisioning.md b/docset/winserver2022-ps/trustedplatformmodule/Enable-TpmAutoProvisioning.md index 4b81117bfe..a171a354c7 100644 --- a/docset/winserver2022-ps/trustedplatformmodule/Enable-TpmAutoProvisioning.md +++ b/docset/winserver2022-ps/trustedplatformmodule/Enable-TpmAutoProvisioning.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Tpm.Commands.dll-Help.xml Module Name: TrustedPlatformModule ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/trustedplatformmodule/enable-tpmautoprovisioning?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/trustedplatformmodule/enable-tpmautoprovisioning?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-TpmAutoProvisioning --- diff --git a/docset/winserver2022-ps/trustedplatformmodule/Get-Tpm.md b/docset/winserver2022-ps/trustedplatformmodule/Get-Tpm.md index 71d79c3849..aadefab5cf 100644 --- a/docset/winserver2022-ps/trustedplatformmodule/Get-Tpm.md +++ b/docset/winserver2022-ps/trustedplatformmodule/Get-Tpm.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Tpm.Commands.dll-Help.xml Module Name: TrustedPlatformModule ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/trustedplatformmodule/get-tpm?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/trustedplatformmodule/get-tpm?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-Tpm --- diff --git a/docset/winserver2022-ps/trustedplatformmodule/Get-TpmEndorsementKeyInfo.md b/docset/winserver2022-ps/trustedplatformmodule/Get-TpmEndorsementKeyInfo.md index bc9e2d22f1..536a958f32 100644 --- a/docset/winserver2022-ps/trustedplatformmodule/Get-TpmEndorsementKeyInfo.md +++ b/docset/winserver2022-ps/trustedplatformmodule/Get-TpmEndorsementKeyInfo.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Tpm.Commands.dll-Help.xml Module Name: TrustedPlatformModule ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/trustedplatformmodule/get-tpmendorsementkeyinfo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/trustedplatformmodule/get-tpmendorsementkeyinfo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-TpmEndorsementKeyInfo --- diff --git a/docset/winserver2022-ps/trustedplatformmodule/Get-TpmSupportedFeature.md b/docset/winserver2022-ps/trustedplatformmodule/Get-TpmSupportedFeature.md index 9d46a39f7e..0552a5d79f 100644 --- a/docset/winserver2022-ps/trustedplatformmodule/Get-TpmSupportedFeature.md +++ b/docset/winserver2022-ps/trustedplatformmodule/Get-TpmSupportedFeature.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Tpm.Commands.dll-Help.xml Module Name: TrustedPlatformModule ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/trustedplatformmodule/get-tpmsupportedfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/trustedplatformmodule/get-tpmsupportedfeature?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-TpmSupportedFeature --- diff --git a/docset/winserver2022-ps/trustedplatformmodule/Import-TpmOwnerAuth.md b/docset/winserver2022-ps/trustedplatformmodule/Import-TpmOwnerAuth.md index b022966c8a..7186594d71 100644 --- a/docset/winserver2022-ps/trustedplatformmodule/Import-TpmOwnerAuth.md +++ b/docset/winserver2022-ps/trustedplatformmodule/Import-TpmOwnerAuth.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Tpm.Commands.dll-Help.xml Module Name: TrustedPlatformModule ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/trustedplatformmodule/import-tpmownerauth?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/trustedplatformmodule/import-tpmownerauth?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-TpmOwnerAuth --- diff --git a/docset/winserver2022-ps/trustedplatformmodule/Initialize-Tpm.md b/docset/winserver2022-ps/trustedplatformmodule/Initialize-Tpm.md index c9c61ad852..971ca2a003 100644 --- a/docset/winserver2022-ps/trustedplatformmodule/Initialize-Tpm.md +++ b/docset/winserver2022-ps/trustedplatformmodule/Initialize-Tpm.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Tpm.Commands.dll-Help.xml Module Name: TrustedPlatformModule ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/trustedplatformmodule/initialize-tpm?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/trustedplatformmodule/initialize-tpm?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Initialize-Tpm --- diff --git a/docset/winserver2022-ps/trustedplatformmodule/Set-TpmOwnerAuth.md b/docset/winserver2022-ps/trustedplatformmodule/Set-TpmOwnerAuth.md index 860b73e320..5bad74c3d1 100644 --- a/docset/winserver2022-ps/trustedplatformmodule/Set-TpmOwnerAuth.md +++ b/docset/winserver2022-ps/trustedplatformmodule/Set-TpmOwnerAuth.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Tpm.Commands.dll-Help.xml Module Name: TrustedPlatformModule ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/trustedplatformmodule/set-tpmownerauth?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/trustedplatformmodule/set-tpmownerauth?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-TpmOwnerAuth --- diff --git a/docset/winserver2022-ps/trustedplatformmodule/Unblock-Tpm.md b/docset/winserver2022-ps/trustedplatformmodule/Unblock-Tpm.md index 309f398a6b..909c65741f 100644 --- a/docset/winserver2022-ps/trustedplatformmodule/Unblock-Tpm.md +++ b/docset/winserver2022-ps/trustedplatformmodule/Unblock-Tpm.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Tpm.Commands.dll-Help.xml Module Name: TrustedPlatformModule ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/trustedplatformmodule/unblock-tpm?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/trustedplatformmodule/unblock-tpm?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unblock-Tpm --- diff --git a/docset/winserver2022-ps/uev/Clear-UevAppxPackage.md b/docset/winserver2022-ps/uev/Clear-UevAppxPackage.md index 0ed17dd438..b0a70eee8d 100644 --- a/docset/winserver2022-ps/uev/Clear-UevAppxPackage.md +++ b/docset/winserver2022-ps/uev/Clear-UevAppxPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/clear-uevappxpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/clear-uevappxpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-UevAppxPackage --- diff --git a/docset/winserver2022-ps/uev/Clear-UevConfiguration.md b/docset/winserver2022-ps/uev/Clear-UevConfiguration.md index 58b49e1804..09ae8c38f6 100644 --- a/docset/winserver2022-ps/uev/Clear-UevConfiguration.md +++ b/docset/winserver2022-ps/uev/Clear-UevConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/clear-uevconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/clear-uevconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-UevConfiguration --- diff --git a/docset/winserver2022-ps/uev/Disable-Uev.md b/docset/winserver2022-ps/uev/Disable-Uev.md index 1197d5a57e..a53acdd75b 100644 --- a/docset/winserver2022-ps/uev/Disable-Uev.md +++ b/docset/winserver2022-ps/uev/Disable-Uev.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/disable-uev?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/disable-uev?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-Uev --- diff --git a/docset/winserver2022-ps/uev/Disable-UevAppxPackage.md b/docset/winserver2022-ps/uev/Disable-UevAppxPackage.md index c3ddb8e848..7c49b0dfcf 100644 --- a/docset/winserver2022-ps/uev/Disable-UevAppxPackage.md +++ b/docset/winserver2022-ps/uev/Disable-UevAppxPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/disable-uevappxpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/disable-uevappxpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-UevAppxPackage --- diff --git a/docset/winserver2022-ps/uev/Disable-UevTemplate.md b/docset/winserver2022-ps/uev/Disable-UevTemplate.md index abfa1f5d36..2064e59f40 100644 --- a/docset/winserver2022-ps/uev/Disable-UevTemplate.md +++ b/docset/winserver2022-ps/uev/Disable-UevTemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/disable-uevtemplate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/disable-uevtemplate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-UevTemplate --- diff --git a/docset/winserver2022-ps/uev/Enable-Uev.md b/docset/winserver2022-ps/uev/Enable-Uev.md index 060370d052..bbedec544f 100644 --- a/docset/winserver2022-ps/uev/Enable-Uev.md +++ b/docset/winserver2022-ps/uev/Enable-Uev.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/enable-uev?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/enable-uev?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-Uev --- diff --git a/docset/winserver2022-ps/uev/Enable-UevAppxPackage.md b/docset/winserver2022-ps/uev/Enable-UevAppxPackage.md index 1fb1c04ccb..a10ecee97b 100644 --- a/docset/winserver2022-ps/uev/Enable-UevAppxPackage.md +++ b/docset/winserver2022-ps/uev/Enable-UevAppxPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/enable-uevappxpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/enable-uevappxpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-UevAppxPackage --- diff --git a/docset/winserver2022-ps/uev/Enable-UevTemplate.md b/docset/winserver2022-ps/uev/Enable-UevTemplate.md index 276bd72c7f..f056e16bab 100644 --- a/docset/winserver2022-ps/uev/Enable-UevTemplate.md +++ b/docset/winserver2022-ps/uev/Enable-UevTemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/enable-uevtemplate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/enable-uevtemplate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-UevTemplate --- diff --git a/docset/winserver2022-ps/uev/Export-UevConfiguration.md b/docset/winserver2022-ps/uev/Export-UevConfiguration.md index a5b5ad1c7f..0b758363fb 100644 --- a/docset/winserver2022-ps/uev/Export-UevConfiguration.md +++ b/docset/winserver2022-ps/uev/Export-UevConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/export-uevconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/export-uevconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-UevConfiguration --- diff --git a/docset/winserver2022-ps/uev/Export-UevPackage.md b/docset/winserver2022-ps/uev/Export-UevPackage.md index 3f5b845b07..5a160b1541 100644 --- a/docset/winserver2022-ps/uev/Export-UevPackage.md +++ b/docset/winserver2022-ps/uev/Export-UevPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/export-uevpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/export-uevpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-UevPackage --- diff --git a/docset/winserver2022-ps/uev/Get-UevAppxPackage.md b/docset/winserver2022-ps/uev/Get-UevAppxPackage.md index 3df85ee237..eb0bbcc69e 100644 --- a/docset/winserver2022-ps/uev/Get-UevAppxPackage.md +++ b/docset/winserver2022-ps/uev/Get-UevAppxPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/get-uevappxpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/get-uevappxpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UevAppxPackage --- diff --git a/docset/winserver2022-ps/uev/Get-UevConfiguration.md b/docset/winserver2022-ps/uev/Get-UevConfiguration.md index d22756b995..2a5e8153ab 100644 --- a/docset/winserver2022-ps/uev/Get-UevConfiguration.md +++ b/docset/winserver2022-ps/uev/Get-UevConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/get-uevconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/get-uevconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UevConfiguration --- diff --git a/docset/winserver2022-ps/uev/Get-UevStatus.md b/docset/winserver2022-ps/uev/Get-UevStatus.md index 4d63797a40..a9c737191e 100644 --- a/docset/winserver2022-ps/uev/Get-UevStatus.md +++ b/docset/winserver2022-ps/uev/Get-UevStatus.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/get-uevstatus?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/get-uevstatus?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UevStatus --- diff --git a/docset/winserver2022-ps/uev/Get-UevTemplate.md b/docset/winserver2022-ps/uev/Get-UevTemplate.md index 367d46ba7a..2d9e1d8a0a 100644 --- a/docset/winserver2022-ps/uev/Get-UevTemplate.md +++ b/docset/winserver2022-ps/uev/Get-UevTemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/get-uevtemplate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/get-uevtemplate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UevTemplate --- diff --git a/docset/winserver2022-ps/uev/Get-UevTemplateProgram.md b/docset/winserver2022-ps/uev/Get-UevTemplateProgram.md index 549b484a96..78e83c055e 100644 --- a/docset/winserver2022-ps/uev/Get-UevTemplateProgram.md +++ b/docset/winserver2022-ps/uev/Get-UevTemplateProgram.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/get-uevtemplateprogram?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/get-uevtemplateprogram?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UevTemplateProgram --- diff --git a/docset/winserver2022-ps/uev/Import-UevConfiguration.md b/docset/winserver2022-ps/uev/Import-UevConfiguration.md index d63b9bf22f..659b66fce8 100644 --- a/docset/winserver2022-ps/uev/Import-UevConfiguration.md +++ b/docset/winserver2022-ps/uev/Import-UevConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/import-uevconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/import-uevconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-UevConfiguration --- diff --git a/docset/winserver2022-ps/uev/Register-UevTemplate.md b/docset/winserver2022-ps/uev/Register-UevTemplate.md index c4ef4f006c..eee28d5e06 100644 --- a/docset/winserver2022-ps/uev/Register-UevTemplate.md +++ b/docset/winserver2022-ps/uev/Register-UevTemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/register-uevtemplate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/register-uevtemplate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Register-UevTemplate --- diff --git a/docset/winserver2022-ps/uev/Repair-UevTemplateIndex.md b/docset/winserver2022-ps/uev/Repair-UevTemplateIndex.md index 6713134b8f..5729af5086 100644 --- a/docset/winserver2022-ps/uev/Repair-UevTemplateIndex.md +++ b/docset/winserver2022-ps/uev/Repair-UevTemplateIndex.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/repair-uevtemplateindex?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/repair-uevtemplateindex?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Repair-UevTemplateIndex --- diff --git a/docset/winserver2022-ps/uev/Restore-UevBackup.md b/docset/winserver2022-ps/uev/Restore-UevBackup.md index c655cc980b..0ead128e65 100644 --- a/docset/winserver2022-ps/uev/Restore-UevBackup.md +++ b/docset/winserver2022-ps/uev/Restore-UevBackup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/restore-uevbackup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/restore-uevbackup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-UevBackup --- diff --git a/docset/winserver2022-ps/uev/Restore-UevUserSetting.md b/docset/winserver2022-ps/uev/Restore-UevUserSetting.md index 4f1fcd5bc2..0a493c9afd 100644 --- a/docset/winserver2022-ps/uev/Restore-UevUserSetting.md +++ b/docset/winserver2022-ps/uev/Restore-UevUserSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/restore-uevusersetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/restore-uevusersetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-UevUserSetting --- diff --git a/docset/winserver2022-ps/uev/Set-UevConfiguration.md b/docset/winserver2022-ps/uev/Set-UevConfiguration.md index 066b867d82..f1dd579521 100644 --- a/docset/winserver2022-ps/uev/Set-UevConfiguration.md +++ b/docset/winserver2022-ps/uev/Set-UevConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/set-uevconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/set-uevconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-UevConfiguration --- diff --git a/docset/winserver2022-ps/uev/Set-UevTemplateProfile.md b/docset/winserver2022-ps/uev/Set-UevTemplateProfile.md index 309f131453..40dd8594fa 100644 --- a/docset/winserver2022-ps/uev/Set-UevTemplateProfile.md +++ b/docset/winserver2022-ps/uev/Set-UevTemplateProfile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/set-uevtemplateprofile?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/set-uevtemplateprofile?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-UevTemplateProfile --- diff --git a/docset/winserver2022-ps/uev/Test-UevTemplate.md b/docset/winserver2022-ps/uev/Test-UevTemplate.md index 44a67f9155..0a623d0da7 100644 --- a/docset/winserver2022-ps/uev/Test-UevTemplate.md +++ b/docset/winserver2022-ps/uev/Test-UevTemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/test-uevtemplate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/test-uevtemplate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-UevTemplate --- diff --git a/docset/winserver2022-ps/uev/Unregister-UevTemplate.md b/docset/winserver2022-ps/uev/Unregister-UevTemplate.md index 5c28c8c266..9693048086 100644 --- a/docset/winserver2022-ps/uev/Unregister-UevTemplate.md +++ b/docset/winserver2022-ps/uev/Unregister-UevTemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/unregister-uevtemplate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/unregister-uevtemplate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unregister-UevTemplate --- diff --git a/docset/winserver2022-ps/uev/Update-UevTemplate.md b/docset/winserver2022-ps/uev/Update-UevTemplate.md index ea91c67f0e..9294987d39 100644 --- a/docset/winserver2022-ps/uev/Update-UevTemplate.md +++ b/docset/winserver2022-ps/uev/Update-UevTemplate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Uev.Commands.dll-Help.xml Module Name: UEV ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/uev/update-uevtemplate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/uev/update-uevtemplate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-UevTemplate --- diff --git a/docset/winserver2022-ps/updateservices/Add-WsusComputer.md b/docset/winserver2022-ps/updateservices/Add-WsusComputer.md index b66318c4d2..ec78cc3837 100644 --- a/docset/winserver2022-ps/updateservices/Add-WsusComputer.md +++ b/docset/winserver2022-ps/updateservices/Add-WsusComputer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/updateservices/add-wsuscomputer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/add-wsuscomputer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WsusComputer --- diff --git a/docset/winserver2022-ps/updateservices/Add-WsusDynamicCategory.md b/docset/winserver2022-ps/updateservices/Add-WsusDynamicCategory.md index 5a82be6322..d623a423c4 100644 --- a/docset/winserver2022-ps/updateservices/Add-WsusDynamicCategory.md +++ b/docset/winserver2022-ps/updateservices/Add-WsusDynamicCategory.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/updateservices/add-wsusdynamiccategory?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/add-wsusdynamiccategory?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WsusDynamicCategory --- diff --git a/docset/winserver2022-ps/updateservices/Approve-WsusUpdate.md b/docset/winserver2022-ps/updateservices/Approve-WsusUpdate.md index 49d473fdca..03d64a4330 100644 --- a/docset/winserver2022-ps/updateservices/Approve-WsusUpdate.md +++ b/docset/winserver2022-ps/updateservices/Approve-WsusUpdate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/updateservices/approve-wsusupdate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/approve-wsusupdate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Approve-WsusUpdate --- diff --git a/docset/winserver2022-ps/updateservices/Deny-WsusUpdate.md b/docset/winserver2022-ps/updateservices/Deny-WsusUpdate.md index 6dae3035fc..bf1979890f 100644 --- a/docset/winserver2022-ps/updateservices/Deny-WsusUpdate.md +++ b/docset/winserver2022-ps/updateservices/Deny-WsusUpdate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/updateservices/deny-wsusupdate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/deny-wsusupdate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Deny-WsusUpdate --- diff --git a/docset/winserver2022-ps/updateservices/Get-WsusClassification.md b/docset/winserver2022-ps/updateservices/Get-WsusClassification.md index 83f2fc3520..d33057b724 100644 --- a/docset/winserver2022-ps/updateservices/Get-WsusClassification.md +++ b/docset/winserver2022-ps/updateservices/Get-WsusClassification.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/updateservices/get-wsusclassification?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/get-wsusclassification?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WsusClassification --- diff --git a/docset/winserver2022-ps/updateservices/Get-WsusComputer.md b/docset/winserver2022-ps/updateservices/Get-WsusComputer.md index 219895f4b8..37c927ca32 100644 --- a/docset/winserver2022-ps/updateservices/Get-WsusComputer.md +++ b/docset/winserver2022-ps/updateservices/Get-WsusComputer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/updateservices/get-wsuscomputer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/get-wsuscomputer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WsusComputer --- diff --git a/docset/winserver2022-ps/updateservices/Get-WsusDynamicCategory.md b/docset/winserver2022-ps/updateservices/Get-WsusDynamicCategory.md index 2aab23986b..b949da0f80 100644 --- a/docset/winserver2022-ps/updateservices/Get-WsusDynamicCategory.md +++ b/docset/winserver2022-ps/updateservices/Get-WsusDynamicCategory.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/updateservices/get-wsusdynamiccategory?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/get-wsusdynamiccategory?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WsusDynamicCategory --- diff --git a/docset/winserver2022-ps/updateservices/Get-WsusProduct.md b/docset/winserver2022-ps/updateservices/Get-WsusProduct.md index be3258fda1..310c5c348f 100644 --- a/docset/winserver2022-ps/updateservices/Get-WsusProduct.md +++ b/docset/winserver2022-ps/updateservices/Get-WsusProduct.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/updateservices/get-wsusproduct?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/get-wsusproduct?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WsusProduct --- diff --git a/docset/winserver2022-ps/updateservices/Get-WsusServer.md b/docset/winserver2022-ps/updateservices/Get-WsusServer.md index 0a3eefe276..2882b9e361 100644 --- a/docset/winserver2022-ps/updateservices/Get-WsusServer.md +++ b/docset/winserver2022-ps/updateservices/Get-WsusServer.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/updateservices/get-wsusserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/get-wsusserver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WsusServer --- diff --git a/docset/winserver2022-ps/updateservices/Get-WsusUpdate.md b/docset/winserver2022-ps/updateservices/Get-WsusUpdate.md index 6689960579..034258c419 100644 --- a/docset/winserver2022-ps/updateservices/Get-WsusUpdate.md +++ b/docset/winserver2022-ps/updateservices/Get-WsusUpdate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/updateservices/get-wsusupdate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/get-wsusupdate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WsusUpdate --- diff --git a/docset/winserver2022-ps/updateservices/Invoke-WsusServerCleanup.md b/docset/winserver2022-ps/updateservices/Invoke-WsusServerCleanup.md index 3d1a350f3b..0fed762fbd 100644 --- a/docset/winserver2022-ps/updateservices/Invoke-WsusServerCleanup.md +++ b/docset/winserver2022-ps/updateservices/Invoke-WsusServerCleanup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/updateservices/invoke-wsusservercleanup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/invoke-wsusservercleanup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-WsusServerCleanup --- diff --git a/docset/winserver2022-ps/updateservices/Remove-WsusDynamicCategory.md b/docset/winserver2022-ps/updateservices/Remove-WsusDynamicCategory.md index 7b43a3d648..7e480bff33 100644 --- a/docset/winserver2022-ps/updateservices/Remove-WsusDynamicCategory.md +++ b/docset/winserver2022-ps/updateservices/Remove-WsusDynamicCategory.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/updateservices/remove-wsusdynamiccategory?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/remove-wsusdynamiccategory?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WsusDynamicCategory --- diff --git a/docset/winserver2022-ps/updateservices/Set-WsusClassification.md b/docset/winserver2022-ps/updateservices/Set-WsusClassification.md index 2f20549a11..39bb19f083 100644 --- a/docset/winserver2022-ps/updateservices/Set-WsusClassification.md +++ b/docset/winserver2022-ps/updateservices/Set-WsusClassification.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/updateservices/set-wsusclassification?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/set-wsusclassification?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WsusClassification --- diff --git a/docset/winserver2022-ps/updateservices/Set-WsusDynamicCategory.md b/docset/winserver2022-ps/updateservices/Set-WsusDynamicCategory.md index 4b639bcf08..f772f5a639 100644 --- a/docset/winserver2022-ps/updateservices/Set-WsusDynamicCategory.md +++ b/docset/winserver2022-ps/updateservices/Set-WsusDynamicCategory.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/updateservices/set-wsusdynamiccategory?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/set-wsusdynamiccategory?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WsusDynamicCategory --- diff --git a/docset/winserver2022-ps/updateservices/Set-WsusProduct.md b/docset/winserver2022-ps/updateservices/Set-WsusProduct.md index 23a5de796f..bbe0c9bae0 100644 --- a/docset/winserver2022-ps/updateservices/Set-WsusProduct.md +++ b/docset/winserver2022-ps/updateservices/Set-WsusProduct.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/updateservices/set-wsusproduct?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/set-wsusproduct?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WsusProduct --- diff --git a/docset/winserver2022-ps/updateservices/Set-WsusServerSynchronization.md b/docset/winserver2022-ps/updateservices/Set-WsusServerSynchronization.md index 7fd3fa83e2..d2672dd40b 100644 --- a/docset/winserver2022-ps/updateservices/Set-WsusServerSynchronization.md +++ b/docset/winserver2022-ps/updateservices/Set-WsusServerSynchronization.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.UpdateServices.Commands.dll-Help.xml Module Name: UpdateServices ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/updateservices/set-wsusserversynchronization?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/updateservices/set-wsusserversynchronization?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WsusServerSynchronization --- diff --git a/docset/winserver2022-ps/useraccesslogging/Disable-Ual.md b/docset/winserver2022-ps/useraccesslogging/Disable-Ual.md index fc9767770b..9c11a5e0a0 100644 --- a/docset/winserver2022-ps/useraccesslogging/Disable-Ual.md +++ b/docset/winserver2022-ps/useraccesslogging/Disable-Ual.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftUal_Admin.cdxml-help.xml Module Name: UserAccessLogging ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/disable-ual?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/disable-ual?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-Ual --- diff --git a/docset/winserver2022-ps/useraccesslogging/Enable-Ual.md b/docset/winserver2022-ps/useraccesslogging/Enable-Ual.md index 7133605e05..7bb96ada3c 100644 --- a/docset/winserver2022-ps/useraccesslogging/Enable-Ual.md +++ b/docset/winserver2022-ps/useraccesslogging/Enable-Ual.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftUal_Admin.cdxml-help.xml Module Name: UserAccessLogging ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/enable-ual?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/enable-ual?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-Ual --- diff --git a/docset/winserver2022-ps/useraccesslogging/Get-Ual.md b/docset/winserver2022-ps/useraccesslogging/Get-Ual.md index a8efbc66cb..00038eb791 100644 --- a/docset/winserver2022-ps/useraccesslogging/Get-Ual.md +++ b/docset/winserver2022-ps/useraccesslogging/Get-Ual.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftUal_Admin.cdxml-help.xml Module Name: UserAccessLogging ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ual?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ual?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-Ual --- diff --git a/docset/winserver2022-ps/useraccesslogging/Get-UalDailyAccess.md b/docset/winserver2022-ps/useraccesslogging/Get-UalDailyAccess.md index 609af887d9..188be28789 100644 --- a/docset/winserver2022-ps/useraccesslogging/Get-UalDailyAccess.md +++ b/docset/winserver2022-ps/useraccesslogging/Get-UalDailyAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftUal_DailyAccess.cdxml-help.xml Module Name: UserAccessLogging ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ualdailyaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ualdailyaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UalDailyAccess --- diff --git a/docset/winserver2022-ps/useraccesslogging/Get-UalDailyDeviceAccess.md b/docset/winserver2022-ps/useraccesslogging/Get-UalDailyDeviceAccess.md index 17760deb44..1c53fff875 100644 --- a/docset/winserver2022-ps/useraccesslogging/Get-UalDailyDeviceAccess.md +++ b/docset/winserver2022-ps/useraccesslogging/Get-UalDailyDeviceAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftUal_DailyDeviceAccess.cdxml-help.xml Module Name: UserAccessLogging ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ualdailydeviceaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ualdailydeviceaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UalDailyDeviceAccess --- diff --git a/docset/winserver2022-ps/useraccesslogging/Get-UalDailyUserAccess.md b/docset/winserver2022-ps/useraccesslogging/Get-UalDailyUserAccess.md index 747905315e..cfd9843d54 100644 --- a/docset/winserver2022-ps/useraccesslogging/Get-UalDailyUserAccess.md +++ b/docset/winserver2022-ps/useraccesslogging/Get-UalDailyUserAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftUal_DailyUserAccess.cdxml-help.xml Module Name: UserAccessLogging ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ualdailyuseraccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ualdailyuseraccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UalDailyUserAccess --- diff --git a/docset/winserver2022-ps/useraccesslogging/Get-UalDeviceAccess.md b/docset/winserver2022-ps/useraccesslogging/Get-UalDeviceAccess.md index b17c54a7ab..66a1fd273f 100644 --- a/docset/winserver2022-ps/useraccesslogging/Get-UalDeviceAccess.md +++ b/docset/winserver2022-ps/useraccesslogging/Get-UalDeviceAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftUal_DeviceAccess.cdxml-help.xml Module Name: UserAccessLogging ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ualdeviceaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ualdeviceaccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UalDeviceAccess --- diff --git a/docset/winserver2022-ps/useraccesslogging/Get-UalDns.md b/docset/winserver2022-ps/useraccesslogging/Get-UalDns.md index d2bd15d0c4..4732fcfe09 100644 --- a/docset/winserver2022-ps/useraccesslogging/Get-UalDns.md +++ b/docset/winserver2022-ps/useraccesslogging/Get-UalDns.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftUal_Dns.cdxml-help.xml Module Name: UserAccessLogging ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ualdns?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ualdns?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UalDns --- diff --git a/docset/winserver2022-ps/useraccesslogging/Get-UalHyperV.md b/docset/winserver2022-ps/useraccesslogging/Get-UalHyperV.md index 0a7b8a3aff..0ba602b140 100644 --- a/docset/winserver2022-ps/useraccesslogging/Get-UalHyperV.md +++ b/docset/winserver2022-ps/useraccesslogging/Get-UalHyperV.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftUal_HyperV.cdxml-help.xml Module Name: UserAccessLogging ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ualhyperv?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ualhyperv?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UalHyperV --- diff --git a/docset/winserver2022-ps/useraccesslogging/Get-UalOverview.md b/docset/winserver2022-ps/useraccesslogging/Get-UalOverview.md index 098cfbc905..ae65d596d4 100644 --- a/docset/winserver2022-ps/useraccesslogging/Get-UalOverview.md +++ b/docset/winserver2022-ps/useraccesslogging/Get-UalOverview.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftUal_Overview.cdxml-help.xml Module Name: UserAccessLogging ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ualoverview?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ualoverview?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UalOverview --- diff --git a/docset/winserver2022-ps/useraccesslogging/Get-UalServerDevice.md b/docset/winserver2022-ps/useraccesslogging/Get-UalServerDevice.md index 2a000653c0..29c22f7d60 100644 --- a/docset/winserver2022-ps/useraccesslogging/Get-UalServerDevice.md +++ b/docset/winserver2022-ps/useraccesslogging/Get-UalServerDevice.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftUal_ServerDevice.cdxml-help.xml Module Name: UserAccessLogging ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ualserverdevice?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ualserverdevice?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UalServerDevice --- diff --git a/docset/winserver2022-ps/useraccesslogging/Get-UalServerUser.md b/docset/winserver2022-ps/useraccesslogging/Get-UalServerUser.md index 526b2ff5df..a0968b7e02 100644 --- a/docset/winserver2022-ps/useraccesslogging/Get-UalServerUser.md +++ b/docset/winserver2022-ps/useraccesslogging/Get-UalServerUser.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftUal_ServerUser.cdxml-help.xml Module Name: UserAccessLogging ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ualserveruser?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ualserveruser?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UalServerUser --- diff --git a/docset/winserver2022-ps/useraccesslogging/Get-UalSystemId.md b/docset/winserver2022-ps/useraccesslogging/Get-UalSystemId.md index b16e677b1a..89bb7d465d 100644 --- a/docset/winserver2022-ps/useraccesslogging/Get-UalSystemId.md +++ b/docset/winserver2022-ps/useraccesslogging/Get-UalSystemId.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftUal_SystemId.cdxml-help.xml Module Name: UserAccessLogging ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ualsystemid?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ualsystemid?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UalSystemId --- diff --git a/docset/winserver2022-ps/useraccesslogging/Get-UalUserAccess.md b/docset/winserver2022-ps/useraccesslogging/Get-UalUserAccess.md index 6f87fc80ac..a6a6ddf41a 100644 --- a/docset/winserver2022-ps/useraccesslogging/Get-UalUserAccess.md +++ b/docset/winserver2022-ps/useraccesslogging/Get-UalUserAccess.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MsftUal_UserAccess.cdxml-help.xml Module Name: UserAccessLogging ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/useraccesslogging/get-ualuseraccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/useraccesslogging/get-ualuseraccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-UalUserAccess --- diff --git a/docset/winserver2022-ps/vamt/Add-VamtProductKey.md b/docset/winserver2022-ps/vamt/Add-VamtProductKey.md index 0ef8982930..f7007529f3 100644 --- a/docset/winserver2022-ps/vamt/Add-VamtProductKey.md +++ b/docset/winserver2022-ps/vamt/Add-VamtProductKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Licensing.VolumeActivation.Powershell.dll-Help.xml Module Name: VAMT ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vamt/add-vamtproductkey?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vamt/add-vamtproductkey?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VamtProductKey --- diff --git a/docset/winserver2022-ps/vamt/Export-VamtData.md b/docset/winserver2022-ps/vamt/Export-VamtData.md index 6b356c07e7..bda9e2fc99 100644 --- a/docset/winserver2022-ps/vamt/Export-VamtData.md +++ b/docset/winserver2022-ps/vamt/Export-VamtData.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Licensing.VolumeActivation.Powershell.dll-Help.xml Module Name: VAMT ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vamt/export-vamtdata?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vamt/export-vamtdata?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-VamtData --- diff --git a/docset/winserver2022-ps/vamt/Find-VamtManagedMachine.md b/docset/winserver2022-ps/vamt/Find-VamtManagedMachine.md index ae18f90897..0aec98a032 100644 --- a/docset/winserver2022-ps/vamt/Find-VamtManagedMachine.md +++ b/docset/winserver2022-ps/vamt/Find-VamtManagedMachine.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Licensing.VolumeActivation.Powershell.dll-Help.xml Module Name: VAMT ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vamt/find-vamtmanagedmachine?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vamt/find-vamtmanagedmachine?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Find-VamtManagedMachine --- diff --git a/docset/winserver2022-ps/vamt/Get-VamtConfirmationId.md b/docset/winserver2022-ps/vamt/Get-VamtConfirmationId.md index 918c148d2e..1111021ee9 100644 --- a/docset/winserver2022-ps/vamt/Get-VamtConfirmationId.md +++ b/docset/winserver2022-ps/vamt/Get-VamtConfirmationId.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Licensing.VolumeActivation.Powershell.dll-Help.xml Module Name: VAMT ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vamt/get-vamtconfirmationid?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vamt/get-vamtconfirmationid?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VamtConfirmationId --- diff --git a/docset/winserver2022-ps/vamt/Get-VamtProduct.md b/docset/winserver2022-ps/vamt/Get-VamtProduct.md index 577c8dad0b..27b1a91896 100644 --- a/docset/winserver2022-ps/vamt/Get-VamtProduct.md +++ b/docset/winserver2022-ps/vamt/Get-VamtProduct.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Licensing.VolumeActivation.Powershell.dll-Help.xml Module Name: VAMT ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vamt/get-vamtproduct?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vamt/get-vamtproduct?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VamtProduct --- diff --git a/docset/winserver2022-ps/vamt/Get-VamtProductKey.md b/docset/winserver2022-ps/vamt/Get-VamtProductKey.md index f79e54a205..279732c8ed 100644 --- a/docset/winserver2022-ps/vamt/Get-VamtProductKey.md +++ b/docset/winserver2022-ps/vamt/Get-VamtProductKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Licensing.VolumeActivation.Powershell.dll-Help.xml Module Name: VAMT ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vamt/get-vamtproductkey?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vamt/get-vamtproductkey?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VamtProductKey --- diff --git a/docset/winserver2022-ps/vamt/Import-VamtData.md b/docset/winserver2022-ps/vamt/Import-VamtData.md index 0affbc9007..601f6ed7a7 100644 --- a/docset/winserver2022-ps/vamt/Import-VamtData.md +++ b/docset/winserver2022-ps/vamt/Import-VamtData.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Licensing.VolumeActivation.Powershell.dll-Help.xml Module Name: VAMT ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vamt/import-vamtdata?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vamt/import-vamtdata?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-VamtData --- diff --git a/docset/winserver2022-ps/vamt/Initialize-VamtData.md b/docset/winserver2022-ps/vamt/Initialize-VamtData.md index ef0dd5058c..dd82451ab2 100644 --- a/docset/winserver2022-ps/vamt/Initialize-VamtData.md +++ b/docset/winserver2022-ps/vamt/Initialize-VamtData.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Licensing.VolumeActivation.Powershell.dll-Help.xml Module Name: VAMT ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vamt/initialize-vamtdata?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vamt/initialize-vamtdata?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Initialize-VamtData --- diff --git a/docset/winserver2022-ps/vamt/Install-VamtConfirmationId.md b/docset/winserver2022-ps/vamt/Install-VamtConfirmationId.md index 4e5d8f95fe..1ee51ebf1a 100644 --- a/docset/winserver2022-ps/vamt/Install-VamtConfirmationId.md +++ b/docset/winserver2022-ps/vamt/Install-VamtConfirmationId.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Licensing.VolumeActivation.Powershell.dll-Help.xml Module Name: VAMT ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vamt/install-vamtconfirmationid?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vamt/install-vamtconfirmationid?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-VamtConfirmationId --- diff --git a/docset/winserver2022-ps/vamt/Install-VamtProductActivation.md b/docset/winserver2022-ps/vamt/Install-VamtProductActivation.md index 1440adb6ce..ff015fcf6e 100644 --- a/docset/winserver2022-ps/vamt/Install-VamtProductActivation.md +++ b/docset/winserver2022-ps/vamt/Install-VamtProductActivation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Licensing.VolumeActivation.Powershell.dll-Help.xml Module Name: VAMT ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vamt/install-vamtproductactivation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vamt/install-vamtproductactivation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-VamtProductActivation --- diff --git a/docset/winserver2022-ps/vamt/Install-VamtProductKey.md b/docset/winserver2022-ps/vamt/Install-VamtProductKey.md index e1a4cb898d..742e42fa08 100644 --- a/docset/winserver2022-ps/vamt/Install-VamtProductKey.md +++ b/docset/winserver2022-ps/vamt/Install-VamtProductKey.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Licensing.VolumeActivation.Powershell.dll-Help.xml Module Name: VAMT ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vamt/install-vamtproductkey?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vamt/install-vamtproductkey?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-VamtProductKey --- diff --git a/docset/winserver2022-ps/vamt/Update-VamtProduct.md b/docset/winserver2022-ps/vamt/Update-VamtProduct.md index 39330bc463..0918061238 100644 --- a/docset/winserver2022-ps/vamt/Update-VamtProduct.md +++ b/docset/winserver2022-ps/vamt/Update-VamtProduct.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Licensing.VolumeActivation.Powershell.dll-Help.xml Module Name: VAMT ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vamt/update-vamtproduct?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vamt/update-vamtproduct?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-VamtProduct --- diff --git a/docset/winserver2022-ps/vpnclient/Add-VpnConnection.md b/docset/winserver2022-ps/vpnclient/Add-VpnConnection.md index fdfb1764e5..11b4853490 100644 --- a/docset/winserver2022-ps/vpnclient/Add-VpnConnection.md +++ b/docset/winserver2022-ps/vpnclient/Add-VpnConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnConnection_v1.0.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/add-vpnconnection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/add-vpnconnection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VpnConnection --- diff --git a/docset/winserver2022-ps/vpnclient/Add-VpnConnectionRoute.md b/docset/winserver2022-ps/vpnclient/Add-VpnConnectionRoute.md index 496a1f35fa..74faad75c9 100644 --- a/docset/winserver2022-ps/vpnclient/Add-VpnConnectionRoute.md +++ b/docset/winserver2022-ps/vpnclient/Add-VpnConnectionRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnConnectionRoute_v1.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/add-vpnconnectionroute?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/add-vpnconnectionroute?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VpnConnectionRoute --- diff --git a/docset/winserver2022-ps/vpnclient/Add-VpnConnectionTriggerApplication.md b/docset/winserver2022-ps/vpnclient/Add-VpnConnectionTriggerApplication.md index 35942d423d..22b569469f 100644 --- a/docset/winserver2022-ps/vpnclient/Add-VpnConnectionTriggerApplication.md +++ b/docset/winserver2022-ps/vpnclient/Add-VpnConnectionTriggerApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnConnectionTriggerApplication_v1.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/add-vpnconnectiontriggerapplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/add-vpnconnectiontriggerapplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VpnConnectionTriggerApplication --- diff --git a/docset/winserver2022-ps/vpnclient/Add-VpnConnectionTriggerDnsConfiguration.md b/docset/winserver2022-ps/vpnclient/Add-VpnConnectionTriggerDnsConfiguration.md index 5bfa0011d2..88a905281c 100644 --- a/docset/winserver2022-ps/vpnclient/Add-VpnConnectionTriggerDnsConfiguration.md +++ b/docset/winserver2022-ps/vpnclient/Add-VpnConnectionTriggerDnsConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnConnectionTriggerDnsConfiguration_v1.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/add-vpnconnectiontriggerdnsconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/add-vpnconnectiontriggerdnsconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VpnConnectionTriggerDnsConfiguration --- diff --git a/docset/winserver2022-ps/vpnclient/Add-VpnConnectionTriggerTrustedNetwork.md b/docset/winserver2022-ps/vpnclient/Add-VpnConnectionTriggerTrustedNetwork.md index 7c8b73df54..88641f7d77 100644 --- a/docset/winserver2022-ps/vpnclient/Add-VpnConnectionTriggerTrustedNetwork.md +++ b/docset/winserver2022-ps/vpnclient/Add-VpnConnectionTriggerTrustedNetwork.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnConnectionTriggerTrustedNetwork_v1.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/add-vpnconnectiontriggertrustednetwork?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/add-vpnconnectiontriggertrustednetwork?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VpnConnectionTriggerTrustedNetwork --- diff --git a/docset/winserver2022-ps/vpnclient/Get-VpnConnection.md b/docset/winserver2022-ps/vpnclient/Get-VpnConnection.md index b2f5e148bd..90164e4d98 100644 --- a/docset/winserver2022-ps/vpnclient/Get-VpnConnection.md +++ b/docset/winserver2022-ps/vpnclient/Get-VpnConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnConnection_v1.0.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/get-vpnconnection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/get-vpnconnection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VpnConnection --- diff --git a/docset/winserver2022-ps/vpnclient/Get-VpnConnectionTrigger.md b/docset/winserver2022-ps/vpnclient/Get-VpnConnectionTrigger.md index 2f9467a75d..1b5eb32049 100644 --- a/docset/winserver2022-ps/vpnclient/Get-VpnConnectionTrigger.md +++ b/docset/winserver2022-ps/vpnclient/Get-VpnConnectionTrigger.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnConnectionTrigger_v1.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/get-vpnconnectiontrigger?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/get-vpnconnectiontrigger?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VpnConnectionTrigger --- diff --git a/docset/winserver2022-ps/vpnclient/New-EapConfiguration.md b/docset/winserver2022-ps/vpnclient/New-EapConfiguration.md index ede38bfa32..ef093ca83b 100644 --- a/docset/winserver2022-ps/vpnclient/New-EapConfiguration.md +++ b/docset/winserver2022-ps/vpnclient/New-EapConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_EapConfiguration_v1.0.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/new-eapconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/new-eapconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-EapConfiguration --- diff --git a/docset/winserver2022-ps/vpnclient/New-VpnServerAddress.md b/docset/winserver2022-ps/vpnclient/New-VpnServerAddress.md index b00997a087..6efcb18bb7 100644 --- a/docset/winserver2022-ps/vpnclient/New-VpnServerAddress.md +++ b/docset/winserver2022-ps/vpnclient/New-VpnServerAddress.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnServerAddress_v1.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/new-vpnserveraddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/new-vpnserveraddress?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VpnServerAddress --- diff --git a/docset/winserver2022-ps/vpnclient/Remove-VpnConnection.md b/docset/winserver2022-ps/vpnclient/Remove-VpnConnection.md index ab237de2c7..476124df4c 100644 --- a/docset/winserver2022-ps/vpnclient/Remove-VpnConnection.md +++ b/docset/winserver2022-ps/vpnclient/Remove-VpnConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnConnection_v1.0.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/remove-vpnconnection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/remove-vpnconnection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VpnConnection --- diff --git a/docset/winserver2022-ps/vpnclient/Remove-VpnConnectionRoute.md b/docset/winserver2022-ps/vpnclient/Remove-VpnConnectionRoute.md index f501464c65..a4337ccbf7 100644 --- a/docset/winserver2022-ps/vpnclient/Remove-VpnConnectionRoute.md +++ b/docset/winserver2022-ps/vpnclient/Remove-VpnConnectionRoute.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnConnectionRoute_v1.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/remove-vpnconnectionroute?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/remove-vpnconnectionroute?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VpnConnectionRoute --- diff --git a/docset/winserver2022-ps/vpnclient/Remove-VpnConnectionTriggerApplication.md b/docset/winserver2022-ps/vpnclient/Remove-VpnConnectionTriggerApplication.md index 9e535b05f3..91877fb1d9 100644 --- a/docset/winserver2022-ps/vpnclient/Remove-VpnConnectionTriggerApplication.md +++ b/docset/winserver2022-ps/vpnclient/Remove-VpnConnectionTriggerApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnConnectionTriggerApplication_v1.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/remove-vpnconnectiontriggerapplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/remove-vpnconnectiontriggerapplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VpnConnectionTriggerApplication --- diff --git a/docset/winserver2022-ps/vpnclient/Remove-VpnConnectionTriggerDnsConfiguration.md b/docset/winserver2022-ps/vpnclient/Remove-VpnConnectionTriggerDnsConfiguration.md index b59ebe2c96..bdb6751dba 100644 --- a/docset/winserver2022-ps/vpnclient/Remove-VpnConnectionTriggerDnsConfiguration.md +++ b/docset/winserver2022-ps/vpnclient/Remove-VpnConnectionTriggerDnsConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnConnectionTriggerDnsConfiguration_v1.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/remove-vpnconnectiontriggerdnsconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/remove-vpnconnectiontriggerdnsconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VpnConnectionTriggerDnsConfiguration --- diff --git a/docset/winserver2022-ps/vpnclient/Remove-VpnConnectionTriggerTrustedNetwork.md b/docset/winserver2022-ps/vpnclient/Remove-VpnConnectionTriggerTrustedNetwork.md index 742c4f36dc..b354ce7b12 100644 --- a/docset/winserver2022-ps/vpnclient/Remove-VpnConnectionTriggerTrustedNetwork.md +++ b/docset/winserver2022-ps/vpnclient/Remove-VpnConnectionTriggerTrustedNetwork.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnConnectionTriggerTrustedNetwork_v1.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/remove-vpnconnectiontriggertrustednetwork?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/remove-vpnconnectiontriggertrustednetwork?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VpnConnectionTriggerTrustedNetwork --- diff --git a/docset/winserver2022-ps/vpnclient/Set-VpnConnection.md b/docset/winserver2022-ps/vpnclient/Set-VpnConnection.md index 174d83c7c4..71cb0f337b 100644 --- a/docset/winserver2022-ps/vpnclient/Set-VpnConnection.md +++ b/docset/winserver2022-ps/vpnclient/Set-VpnConnection.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnConnection_v1.0.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/set-vpnconnection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/set-vpnconnection?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VpnConnection --- diff --git a/docset/winserver2022-ps/vpnclient/Set-VpnConnectionIPsecConfiguration.md b/docset/winserver2022-ps/vpnclient/Set-VpnConnectionIPsecConfiguration.md index 0f1dd46f58..4764431fe7 100644 --- a/docset/winserver2022-ps/vpnclient/Set-VpnConnectionIPsecConfiguration.md +++ b/docset/winserver2022-ps/vpnclient/Set-VpnConnectionIPsecConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnConnectionIPsecConfiguration_v1.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/set-vpnconnectionipsecconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/set-vpnconnectionipsecconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VpnConnectionIPsecConfiguration --- diff --git a/docset/winserver2022-ps/vpnclient/Set-VpnConnectionProxy.md b/docset/winserver2022-ps/vpnclient/Set-VpnConnectionProxy.md index 22a890b69a..627a6c41f0 100644 --- a/docset/winserver2022-ps/vpnclient/Set-VpnConnectionProxy.md +++ b/docset/winserver2022-ps/vpnclient/Set-VpnConnectionProxy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnConnectionProxy_v1.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/set-vpnconnectionproxy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/set-vpnconnectionproxy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VpnConnectionProxy --- diff --git a/docset/winserver2022-ps/vpnclient/Set-VpnConnectionTriggerDnsConfiguration.md b/docset/winserver2022-ps/vpnclient/Set-VpnConnectionTriggerDnsConfiguration.md index 94960df9dd..4e791771f8 100644 --- a/docset/winserver2022-ps/vpnclient/Set-VpnConnectionTriggerDnsConfiguration.md +++ b/docset/winserver2022-ps/vpnclient/Set-VpnConnectionTriggerDnsConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnConnectionTriggerDnsConfiguration_v1.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/set-vpnconnectiontriggerdnsconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/set-vpnconnectiontriggerdnsconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VpnConnectionTriggerDnsConfiguration --- diff --git a/docset/winserver2022-ps/vpnclient/Set-VpnConnectionTriggerTrustedNetwork.md b/docset/winserver2022-ps/vpnclient/Set-VpnConnectionTriggerTrustedNetwork.md index 919821dd04..a2431a8bb2 100644 --- a/docset/winserver2022-ps/vpnclient/Set-VpnConnectionTriggerTrustedNetwork.md +++ b/docset/winserver2022-ps/vpnclient/Set-VpnConnectionTriggerTrustedNetwork.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: PS_VpnConnectionTriggerTrustedNetwork_v1.0.cdxml-help.xml Module Name: VpnClient ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/vpnclient/set-vpnconnectiontriggertrustednetwork?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/vpnclient/set-vpnconnectiontriggertrustednetwork?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VpnConnectionTriggerTrustedNetwork --- diff --git a/docset/winserver2022-ps/wdac/Add-OdbcDsn.md b/docset/winserver2022-ps/wdac/Add-OdbcDsn.md index 2be7915ab3..f854da66bb 100644 --- a/docset/winserver2022-ps/wdac/Add-OdbcDsn.md +++ b/docset/winserver2022-ps/wdac/Add-OdbcDsn.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_OdbcDsnTask_v1.0.cdxml-help.xml Module Name: Wdac ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/wdac/add-odbcdsn?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/add-odbcdsn?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-OdbcDsn --- diff --git a/docset/winserver2022-ps/wdac/Disable-OdbcPerfCounter.md b/docset/winserver2022-ps/wdac/Disable-OdbcPerfCounter.md index 6a74ec999a..754dfa57b0 100644 --- a/docset/winserver2022-ps/wdac/Disable-OdbcPerfCounter.md +++ b/docset/winserver2022-ps/wdac/Disable-OdbcPerfCounter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_OdbcPerfCounterTask_v1.0.cdxml-help.xml Module Name: Wdac ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/wdac/disable-odbcperfcounter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/disable-odbcperfcounter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-OdbcPerfCounter --- diff --git a/docset/winserver2022-ps/wdac/Disable-WdacBidTrace.md b/docset/winserver2022-ps/wdac/Disable-WdacBidTrace.md index 35107c01ce..2e909be15f 100644 --- a/docset/winserver2022-ps/wdac/Disable-WdacBidTrace.md +++ b/docset/winserver2022-ps/wdac/Disable-WdacBidTrace.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdacBidTraceTask_v1.0.cdxml-help.xml Module Name: Wdac ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/wdac/disable-wdacbidtrace?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/disable-wdacbidtrace?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WdacBidTrace --- diff --git a/docset/winserver2022-ps/wdac/Enable-OdbcPerfCounter.md b/docset/winserver2022-ps/wdac/Enable-OdbcPerfCounter.md index ea0c913655..9c277516be 100644 --- a/docset/winserver2022-ps/wdac/Enable-OdbcPerfCounter.md +++ b/docset/winserver2022-ps/wdac/Enable-OdbcPerfCounter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_OdbcPerfCounterTask_v1.0.cdxml-help.xml Module Name: Wdac ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/wdac/enable-odbcperfcounter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/enable-odbcperfcounter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-OdbcPerfCounter --- diff --git a/docset/winserver2022-ps/wdac/Enable-WdacBidTrace.md b/docset/winserver2022-ps/wdac/Enable-WdacBidTrace.md index 640dc7509c..6541a8d155 100644 --- a/docset/winserver2022-ps/wdac/Enable-WdacBidTrace.md +++ b/docset/winserver2022-ps/wdac/Enable-WdacBidTrace.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdacBidTraceTask_v1.0.cdxml-help.xml Module Name: Wdac ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/wdac/enable-wdacbidtrace?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/enable-wdacbidtrace?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WdacBidTrace --- diff --git a/docset/winserver2022-ps/wdac/Get-OdbcDriver.md b/docset/winserver2022-ps/wdac/Get-OdbcDriver.md index 8e10157ed7..f1e8ec28e8 100644 --- a/docset/winserver2022-ps/wdac/Get-OdbcDriver.md +++ b/docset/winserver2022-ps/wdac/Get-OdbcDriver.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_OdbcDriverTask_v1.0.cdxml-help.xml Module Name: Wdac ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/wdac/get-odbcdriver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/get-odbcdriver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-OdbcDriver --- diff --git a/docset/winserver2022-ps/wdac/Get-OdbcDsn.md b/docset/winserver2022-ps/wdac/Get-OdbcDsn.md index 961850d48e..34c9b62ac5 100644 --- a/docset/winserver2022-ps/wdac/Get-OdbcDsn.md +++ b/docset/winserver2022-ps/wdac/Get-OdbcDsn.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_OdbcDsnTask_v1.0.cdxml-help.xml Module Name: Wdac ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/wdac/get-odbcdsn?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/get-odbcdsn?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-OdbcDsn --- diff --git a/docset/winserver2022-ps/wdac/Get-OdbcPerfCounter.md b/docset/winserver2022-ps/wdac/Get-OdbcPerfCounter.md index d0b975010d..d457430ca5 100644 --- a/docset/winserver2022-ps/wdac/Get-OdbcPerfCounter.md +++ b/docset/winserver2022-ps/wdac/Get-OdbcPerfCounter.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_OdbcPerfCounterTask_v1.0.cdxml-help.xml Module Name: Wdac ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/wdac/get-odbcperfcounter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/get-odbcperfcounter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-OdbcPerfCounter --- diff --git a/docset/winserver2022-ps/wdac/Get-WdacBidTrace.md b/docset/winserver2022-ps/wdac/Get-WdacBidTrace.md index 5cd877d9ad..a29e9e42ca 100644 --- a/docset/winserver2022-ps/wdac/Get-WdacBidTrace.md +++ b/docset/winserver2022-ps/wdac/Get-WdacBidTrace.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdacBidTraceTask_v1.0.cdxml-help.xml Module Name: Wdac ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/wdac/get-wdacbidtrace?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/get-wdacbidtrace?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WdacBidTrace --- diff --git a/docset/winserver2022-ps/wdac/Remove-OdbcDsn.md b/docset/winserver2022-ps/wdac/Remove-OdbcDsn.md index 82fb1cb149..e5ed224376 100644 --- a/docset/winserver2022-ps/wdac/Remove-OdbcDsn.md +++ b/docset/winserver2022-ps/wdac/Remove-OdbcDsn.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_OdbcDsnTask_v1.0.cdxml-help.xml Module Name: Wdac ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/wdac/remove-odbcdsn?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/remove-odbcdsn?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-OdbcDsn --- diff --git a/docset/winserver2022-ps/wdac/Set-OdbcDriver.md b/docset/winserver2022-ps/wdac/Set-OdbcDriver.md index d9507196ca..c58dc88650 100644 --- a/docset/winserver2022-ps/wdac/Set-OdbcDriver.md +++ b/docset/winserver2022-ps/wdac/Set-OdbcDriver.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_OdbcDriverTask_v1.0.cdxml-help.xml Module Name: Wdac ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/wdac/set-odbcdriver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/set-odbcdriver?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-OdbcDriver --- diff --git a/docset/winserver2022-ps/wdac/Set-OdbcDsn.md b/docset/winserver2022-ps/wdac/Set-OdbcDsn.md index 1731815239..2b9b63b59d 100644 --- a/docset/winserver2022-ps/wdac/Set-OdbcDsn.md +++ b/docset/winserver2022-ps/wdac/Set-OdbcDsn.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_OdbcDsnTask_v1.0.cdxml-help.xml Module Name: Wdac ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/wdac/set-odbcdsn?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wdac/set-odbcdsn?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-OdbcDsn --- diff --git a/docset/winserver2022-ps/wds/Add-WdsDriverPackage.md b/docset/winserver2022-ps/wds/Add-WdsDriverPackage.md index 32ffb18c60..e04d33ea0f 100644 --- a/docset/winserver2022-ps/wds/Add-WdsDriverPackage.md +++ b/docset/winserver2022-ps/wds/Add-WdsDriverPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsDriverPackage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/add-wdsdriverpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/add-wdsdriverpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WdsDriverPackage --- diff --git a/docset/winserver2022-ps/wds/Approve-WdsClient.md b/docset/winserver2022-ps/wds/Approve-WdsClient.md index 3af5f4d153..e280a89353 100644 --- a/docset/winserver2022-ps/wds/Approve-WdsClient.md +++ b/docset/winserver2022-ps/wds/Approve-WdsClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsClient_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/approve-wdsclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/approve-wdsclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Approve-WdsClient --- diff --git a/docset/winserver2022-ps/wds/Copy-WdsInstallImage.md b/docset/winserver2022-ps/wds/Copy-WdsInstallImage.md index 2defe4fa77..735008b63d 100644 --- a/docset/winserver2022-ps/wds/Copy-WdsInstallImage.md +++ b/docset/winserver2022-ps/wds/Copy-WdsInstallImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsInstallImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/copy-wdsinstallimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/copy-wdsinstallimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Copy-WdsInstallImage --- diff --git a/docset/winserver2022-ps/wds/Deny-WdsClient.md b/docset/winserver2022-ps/wds/Deny-WdsClient.md index 23c2422c90..dedadbf973 100644 --- a/docset/winserver2022-ps/wds/Deny-WdsClient.md +++ b/docset/winserver2022-ps/wds/Deny-WdsClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsClient_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/deny-wdsclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/deny-wdsclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Deny-WdsClient --- diff --git a/docset/winserver2022-ps/wds/Disable-WdsBootImage.md b/docset/winserver2022-ps/wds/Disable-WdsBootImage.md index 39ecce7752..f901c37caa 100644 --- a/docset/winserver2022-ps/wds/Disable-WdsBootImage.md +++ b/docset/winserver2022-ps/wds/Disable-WdsBootImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsBootImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/disable-wdsbootimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/disable-wdsbootimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WdsBootImage --- diff --git a/docset/winserver2022-ps/wds/Disable-WdsDriverPackage.md b/docset/winserver2022-ps/wds/Disable-WdsDriverPackage.md index 3f8b8c45e8..e05c8eedb3 100644 --- a/docset/winserver2022-ps/wds/Disable-WdsDriverPackage.md +++ b/docset/winserver2022-ps/wds/Disable-WdsDriverPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsDriverPackage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/disable-wdsdriverpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/disable-wdsdriverpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WdsDriverPackage --- diff --git a/docset/winserver2022-ps/wds/Disable-WdsInstallImage.md b/docset/winserver2022-ps/wds/Disable-WdsInstallImage.md index 9a46284182..78dacc1701 100644 --- a/docset/winserver2022-ps/wds/Disable-WdsInstallImage.md +++ b/docset/winserver2022-ps/wds/Disable-WdsInstallImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsInstallImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/disable-wdsinstallimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/disable-wdsinstallimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WdsInstallImage --- diff --git a/docset/winserver2022-ps/wds/Disconnect-WdsMulticastClient.md b/docset/winserver2022-ps/wds/Disconnect-WdsMulticastClient.md index 9b236c99e9..9c66dbe42b 100644 --- a/docset/winserver2022-ps/wds/Disconnect-WdsMulticastClient.md +++ b/docset/winserver2022-ps/wds/Disconnect-WdsMulticastClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsMulticastClient_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/disconnect-wdsmulticastclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/disconnect-wdsmulticastclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disconnect-WdsMulticastClient --- diff --git a/docset/winserver2022-ps/wds/Enable-WdsBootImage.md b/docset/winserver2022-ps/wds/Enable-WdsBootImage.md index 01e75214be..8ef92c7407 100644 --- a/docset/winserver2022-ps/wds/Enable-WdsBootImage.md +++ b/docset/winserver2022-ps/wds/Enable-WdsBootImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsBootImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/enable-wdsbootimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/enable-wdsbootimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WdsBootImage --- diff --git a/docset/winserver2022-ps/wds/Enable-WdsDriverPackage.md b/docset/winserver2022-ps/wds/Enable-WdsDriverPackage.md index 833e4b5183..9639723175 100644 --- a/docset/winserver2022-ps/wds/Enable-WdsDriverPackage.md +++ b/docset/winserver2022-ps/wds/Enable-WdsDriverPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsDriverPackage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/enable-wdsdriverpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/enable-wdsdriverpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WdsDriverPackage --- diff --git a/docset/winserver2022-ps/wds/Enable-WdsInstallImage.md b/docset/winserver2022-ps/wds/Enable-WdsInstallImage.md index b3c38db7e4..01045674ec 100644 --- a/docset/winserver2022-ps/wds/Enable-WdsInstallImage.md +++ b/docset/winserver2022-ps/wds/Enable-WdsInstallImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsInstallImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/enable-wdsinstallimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/enable-wdsinstallimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WdsInstallImage --- diff --git a/docset/winserver2022-ps/wds/Export-WdsBootImage.md b/docset/winserver2022-ps/wds/Export-WdsBootImage.md index 5f68c7c824..c0645e747d 100644 --- a/docset/winserver2022-ps/wds/Export-WdsBootImage.md +++ b/docset/winserver2022-ps/wds/Export-WdsBootImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsBootImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/export-wdsbootimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/export-wdsbootimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-WdsBootImage --- diff --git a/docset/winserver2022-ps/wds/Export-WdsInstallImage.md b/docset/winserver2022-ps/wds/Export-WdsInstallImage.md index be6e7d979b..f83ef42d58 100644 --- a/docset/winserver2022-ps/wds/Export-WdsInstallImage.md +++ b/docset/winserver2022-ps/wds/Export-WdsInstallImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsInstallImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/export-wdsinstallimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/export-wdsinstallimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-WdsInstallImage --- diff --git a/docset/winserver2022-ps/wds/Get-WdsBootImage.md b/docset/winserver2022-ps/wds/Get-WdsBootImage.md index 1e649db429..5808c00462 100644 --- a/docset/winserver2022-ps/wds/Get-WdsBootImage.md +++ b/docset/winserver2022-ps/wds/Get-WdsBootImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsBootImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/get-wdsbootimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/get-wdsbootimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WdsBootImage --- diff --git a/docset/winserver2022-ps/wds/Get-WdsClient.md b/docset/winserver2022-ps/wds/Get-WdsClient.md index 4fb9c306f3..48099f6e43 100644 --- a/docset/winserver2022-ps/wds/Get-WdsClient.md +++ b/docset/winserver2022-ps/wds/Get-WdsClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsClient_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/get-wdsclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/get-wdsclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WdsClient --- diff --git a/docset/winserver2022-ps/wds/Get-WdsDriverPackage.md b/docset/winserver2022-ps/wds/Get-WdsDriverPackage.md index 5188258544..19fc09f0cc 100644 --- a/docset/winserver2022-ps/wds/Get-WdsDriverPackage.md +++ b/docset/winserver2022-ps/wds/Get-WdsDriverPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsDriverPackage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/get-wdsdriverpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/get-wdsdriverpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WdsDriverPackage --- diff --git a/docset/winserver2022-ps/wds/Get-WdsInstallImage.md b/docset/winserver2022-ps/wds/Get-WdsInstallImage.md index d08402d00a..f8f492e169 100644 --- a/docset/winserver2022-ps/wds/Get-WdsInstallImage.md +++ b/docset/winserver2022-ps/wds/Get-WdsInstallImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsInstallImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/get-wdsinstallimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/get-wdsinstallimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WdsInstallImage --- diff --git a/docset/winserver2022-ps/wds/Get-WdsInstallImageGroup.md b/docset/winserver2022-ps/wds/Get-WdsInstallImageGroup.md index 97df35ba4f..e5363e48b9 100644 --- a/docset/winserver2022-ps/wds/Get-WdsInstallImageGroup.md +++ b/docset/winserver2022-ps/wds/Get-WdsInstallImageGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsInstallImageGroup_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/get-wdsinstallimagegroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/get-wdsinstallimagegroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WdsInstallImageGroup --- diff --git a/docset/winserver2022-ps/wds/Get-WdsMulticastClient.md b/docset/winserver2022-ps/wds/Get-WdsMulticastClient.md index c896572fde..08122aecaa 100644 --- a/docset/winserver2022-ps/wds/Get-WdsMulticastClient.md +++ b/docset/winserver2022-ps/wds/Get-WdsMulticastClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsMulticastClient_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/get-wdsmulticastclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/get-wdsmulticastclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WdsMulticastClient --- diff --git a/docset/winserver2022-ps/wds/Import-WdsBootImage.md b/docset/winserver2022-ps/wds/Import-WdsBootImage.md index 63b4489ee9..0d74f254d8 100644 --- a/docset/winserver2022-ps/wds/Import-WdsBootImage.md +++ b/docset/winserver2022-ps/wds/Import-WdsBootImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsBootImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/import-wdsbootimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/import-wdsbootimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-WdsBootImage --- diff --git a/docset/winserver2022-ps/wds/Import-WdsDriverPackage.md b/docset/winserver2022-ps/wds/Import-WdsDriverPackage.md index bc9b0a916b..d50e9da8ee 100644 --- a/docset/winserver2022-ps/wds/Import-WdsDriverPackage.md +++ b/docset/winserver2022-ps/wds/Import-WdsDriverPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsDriverPackage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/import-wdsdriverpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/import-wdsdriverpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-WdsDriverPackage --- diff --git a/docset/winserver2022-ps/wds/Import-WdsInstallImage.md b/docset/winserver2022-ps/wds/Import-WdsInstallImage.md index 896b79720d..7da5ce2c44 100644 --- a/docset/winserver2022-ps/wds/Import-WdsInstallImage.md +++ b/docset/winserver2022-ps/wds/Import-WdsInstallImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsInstallImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/import-wdsinstallimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/import-wdsinstallimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Import-WdsInstallImage --- diff --git a/docset/winserver2022-ps/wds/New-WdsClient.md b/docset/winserver2022-ps/wds/New-WdsClient.md index c1e109bde0..b61ca2e88e 100644 --- a/docset/winserver2022-ps/wds/New-WdsClient.md +++ b/docset/winserver2022-ps/wds/New-WdsClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsClient_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/new-wdsclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/new-wdsclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WdsClient --- diff --git a/docset/winserver2022-ps/wds/New-WdsInstallImageGroup.md b/docset/winserver2022-ps/wds/New-WdsInstallImageGroup.md index a990e672a2..5c1f6643b3 100644 --- a/docset/winserver2022-ps/wds/New-WdsInstallImageGroup.md +++ b/docset/winserver2022-ps/wds/New-WdsInstallImageGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsInstallImageGroup_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/new-wdsinstallimagegroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/new-wdsinstallimagegroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WdsInstallImageGroup --- diff --git a/docset/winserver2022-ps/wds/Remove-WdsBootImage.md b/docset/winserver2022-ps/wds/Remove-WdsBootImage.md index 19a5095a4d..583f0a3f00 100644 --- a/docset/winserver2022-ps/wds/Remove-WdsBootImage.md +++ b/docset/winserver2022-ps/wds/Remove-WdsBootImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsBootImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/remove-wdsbootimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/remove-wdsbootimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WdsBootImage --- diff --git a/docset/winserver2022-ps/wds/Remove-WdsClient.md b/docset/winserver2022-ps/wds/Remove-WdsClient.md index 22557f591b..f28efb7f4c 100644 --- a/docset/winserver2022-ps/wds/Remove-WdsClient.md +++ b/docset/winserver2022-ps/wds/Remove-WdsClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsClient_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/remove-wdsclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/remove-wdsclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WdsClient --- diff --git a/docset/winserver2022-ps/wds/Remove-WdsDriverPackage.md b/docset/winserver2022-ps/wds/Remove-WdsDriverPackage.md index a21d67cd87..bfaf4434b9 100644 --- a/docset/winserver2022-ps/wds/Remove-WdsDriverPackage.md +++ b/docset/winserver2022-ps/wds/Remove-WdsDriverPackage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsDriverPackage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/remove-wdsdriverpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/remove-wdsdriverpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WdsDriverPackage --- diff --git a/docset/winserver2022-ps/wds/Remove-WdsInstallImage.md b/docset/winserver2022-ps/wds/Remove-WdsInstallImage.md index fe43e2d430..357ca6ba13 100644 --- a/docset/winserver2022-ps/wds/Remove-WdsInstallImage.md +++ b/docset/winserver2022-ps/wds/Remove-WdsInstallImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsInstallImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/remove-wdsinstallimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/remove-wdsinstallimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WdsInstallImage --- diff --git a/docset/winserver2022-ps/wds/Remove-WdsInstallImageGroup.md b/docset/winserver2022-ps/wds/Remove-WdsInstallImageGroup.md index 433cb1a21b..810f4c4d2b 100644 --- a/docset/winserver2022-ps/wds/Remove-WdsInstallImageGroup.md +++ b/docset/winserver2022-ps/wds/Remove-WdsInstallImageGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsInstallImageGroup_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/remove-wdsinstallimagegroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/remove-wdsinstallimagegroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WdsInstallImageGroup --- diff --git a/docset/winserver2022-ps/wds/Set-WdsBootImage.md b/docset/winserver2022-ps/wds/Set-WdsBootImage.md index 667a70dd8f..7cbb20a6b4 100644 --- a/docset/winserver2022-ps/wds/Set-WdsBootImage.md +++ b/docset/winserver2022-ps/wds/Set-WdsBootImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsBootImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/set-wdsbootimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/set-wdsbootimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WdsBootImage --- diff --git a/docset/winserver2022-ps/wds/Set-WdsClient.md b/docset/winserver2022-ps/wds/Set-WdsClient.md index 6a5542ea0f..a7e0ebbbf4 100644 --- a/docset/winserver2022-ps/wds/Set-WdsClient.md +++ b/docset/winserver2022-ps/wds/Set-WdsClient.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsClient_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/set-wdsclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/set-wdsclient?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WdsClient --- diff --git a/docset/winserver2022-ps/wds/Set-WdsInstallImage.md b/docset/winserver2022-ps/wds/Set-WdsInstallImage.md index 48a7b0341c..988bd8505c 100644 --- a/docset/winserver2022-ps/wds/Set-WdsInstallImage.md +++ b/docset/winserver2022-ps/wds/Set-WdsInstallImage.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsInstallImage_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/set-wdsinstallimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/set-wdsinstallimage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WdsInstallImage --- diff --git a/docset/winserver2022-ps/wds/Set-WdsInstallImageGroup.md b/docset/winserver2022-ps/wds/Set-WdsInstallImageGroup.md index 468834cc63..718b27983d 100644 --- a/docset/winserver2022-ps/wds/Set-WdsInstallImageGroup.md +++ b/docset/winserver2022-ps/wds/Set-WdsInstallImageGroup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: MSFT_WdsInstallImageGroup_v1.0.cdxml-help.xml Module Name: WDS ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/wds/set-wdsinstallimagegroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/wds/set-wdsinstallimagegroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WdsInstallImageGroup --- diff --git a/docset/winserver2022-ps/webadministration/Add-WebConfiguration.md b/docset/winserver2022-ps/webadministration/Add-WebConfiguration.md index 097f4826cb..152331c6e0 100644 --- a/docset/winserver2022-ps/webadministration/Add-WebConfiguration.md +++ b/docset/winserver2022-ps/webadministration/Add-WebConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/add-webconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/add-webconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WebConfiguration --- diff --git a/docset/winserver2022-ps/webadministration/Add-WebConfigurationLock.md b/docset/winserver2022-ps/webadministration/Add-WebConfigurationLock.md index 73efa77b35..d51537f558 100644 --- a/docset/winserver2022-ps/webadministration/Add-WebConfigurationLock.md +++ b/docset/winserver2022-ps/webadministration/Add-WebConfigurationLock.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/add-webconfigurationlock?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/add-webconfigurationlock?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WebConfigurationLock --- diff --git a/docset/winserver2022-ps/webadministration/Add-WebConfigurationProperty.md b/docset/winserver2022-ps/webadministration/Add-WebConfigurationProperty.md index 7bce80674f..e2da2b5368 100644 --- a/docset/winserver2022-ps/webadministration/Add-WebConfigurationProperty.md +++ b/docset/winserver2022-ps/webadministration/Add-WebConfigurationProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/add-webconfigurationproperty?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/add-webconfigurationproperty?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WebConfigurationProperty --- diff --git a/docset/winserver2022-ps/webadministration/Backup-WebConfiguration.md b/docset/winserver2022-ps/webadministration/Backup-WebConfiguration.md index 49d85a981a..85dbdd5598 100644 --- a/docset/winserver2022-ps/webadministration/Backup-WebConfiguration.md +++ b/docset/winserver2022-ps/webadministration/Backup-WebConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/backup-webconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/backup-webconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Backup-WebConfiguration --- diff --git a/docset/winserver2022-ps/webadministration/Clear-WebCentralCertProvider.md b/docset/winserver2022-ps/webadministration/Clear-WebCentralCertProvider.md index f2f3ed0406..beda0e8d57 100644 --- a/docset/winserver2022-ps/webadministration/Clear-WebCentralCertProvider.md +++ b/docset/winserver2022-ps/webadministration/Clear-WebCentralCertProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/clear-webcentralcertprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/clear-webcentralcertprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-WebCentralCertProvider --- diff --git a/docset/winserver2022-ps/webadministration/Clear-WebConfiguration.md b/docset/winserver2022-ps/webadministration/Clear-WebConfiguration.md index 827247d658..b03627265d 100644 --- a/docset/winserver2022-ps/webadministration/Clear-WebConfiguration.md +++ b/docset/winserver2022-ps/webadministration/Clear-WebConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/clear-webconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/clear-webconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-WebConfiguration --- diff --git a/docset/winserver2022-ps/webadministration/Clear-WebRequestTracingSetting.md b/docset/winserver2022-ps/webadministration/Clear-WebRequestTracingSetting.md index 18959c80e4..0e19e2a2aa 100644 --- a/docset/winserver2022-ps/webadministration/Clear-WebRequestTracingSetting.md +++ b/docset/winserver2022-ps/webadministration/Clear-WebRequestTracingSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/clear-webrequesttracingsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/clear-webrequesttracingsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-WebRequestTracingSetting --- diff --git a/docset/winserver2022-ps/webadministration/Clear-WebRequestTracingSettings.md b/docset/winserver2022-ps/webadministration/Clear-WebRequestTracingSettings.md index a46f6ddd20..e5661f202d 100644 --- a/docset/winserver2022-ps/webadministration/Clear-WebRequestTracingSettings.md +++ b/docset/winserver2022-ps/webadministration/Clear-WebRequestTracingSettings.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/clear-webrequesttracingsettings?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/clear-webrequesttracingsettings?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-WebRequestTracingSettings --- diff --git a/docset/winserver2022-ps/webadministration/ConvertTo-WebApplication.md b/docset/winserver2022-ps/webadministration/ConvertTo-WebApplication.md index 5a15f6240c..c48c3af95d 100644 --- a/docset/winserver2022-ps/webadministration/ConvertTo-WebApplication.md +++ b/docset/winserver2022-ps/webadministration/ConvertTo-WebApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/convertto-webapplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/convertto-webapplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: ConvertTo-WebApplication --- diff --git a/docset/winserver2022-ps/webadministration/Disable-WebCentralCertProvider.md b/docset/winserver2022-ps/webadministration/Disable-WebCentralCertProvider.md index 3d5811a797..8c0af9784d 100644 --- a/docset/winserver2022-ps/webadministration/Disable-WebCentralCertProvider.md +++ b/docset/winserver2022-ps/webadministration/Disable-WebCentralCertProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/disable-webcentralcertprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/disable-webcentralcertprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WebCentralCertProvider --- diff --git a/docset/winserver2022-ps/webadministration/Disable-WebGlobalModule.md b/docset/winserver2022-ps/webadministration/Disable-WebGlobalModule.md index 3b1ddad217..77300f470a 100644 --- a/docset/winserver2022-ps/webadministration/Disable-WebGlobalModule.md +++ b/docset/winserver2022-ps/webadministration/Disable-WebGlobalModule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/disable-webglobalmodule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/disable-webglobalmodule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WebGlobalModule --- diff --git a/docset/winserver2022-ps/webadministration/Disable-WebRequestTracing.md b/docset/winserver2022-ps/webadministration/Disable-WebRequestTracing.md index 5c6dd3accf..a010e71837 100644 --- a/docset/winserver2022-ps/webadministration/Disable-WebRequestTracing.md +++ b/docset/winserver2022-ps/webadministration/Disable-WebRequestTracing.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/disable-webrequesttracing?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/disable-webrequesttracing?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WebRequestTracing --- diff --git a/docset/winserver2022-ps/webadministration/Enable-WebCentralCertProvider.md b/docset/winserver2022-ps/webadministration/Enable-WebCentralCertProvider.md index 0fffa1a5f8..f103b0a664 100644 --- a/docset/winserver2022-ps/webadministration/Enable-WebCentralCertProvider.md +++ b/docset/winserver2022-ps/webadministration/Enable-WebCentralCertProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/enable-webcentralcertprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/enable-webcentralcertprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WebCentralCertProvider --- diff --git a/docset/winserver2022-ps/webadministration/Enable-WebGlobalModule.md b/docset/winserver2022-ps/webadministration/Enable-WebGlobalModule.md index 4ace8c2618..50f7885cf6 100644 --- a/docset/winserver2022-ps/webadministration/Enable-WebGlobalModule.md +++ b/docset/winserver2022-ps/webadministration/Enable-WebGlobalModule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/enable-webglobalmodule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/enable-webglobalmodule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WebGlobalModule --- diff --git a/docset/winserver2022-ps/webadministration/Enable-WebRequestTracing.md b/docset/winserver2022-ps/webadministration/Enable-WebRequestTracing.md index 7e30542c09..77271827b2 100644 --- a/docset/winserver2022-ps/webadministration/Enable-WebRequestTracing.md +++ b/docset/winserver2022-ps/webadministration/Enable-WebRequestTracing.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/enable-webrequesttracing?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/enable-webrequesttracing?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WebRequestTracing --- diff --git a/docset/winserver2022-ps/webadministration/Get-WebAppDomain.md b/docset/winserver2022-ps/webadministration/Get-WebAppDomain.md index 1b8f6e047b..4d6a1390f7 100644 --- a/docset/winserver2022-ps/webadministration/Get-WebAppDomain.md +++ b/docset/winserver2022-ps/webadministration/Get-WebAppDomain.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webappdomain?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webappdomain?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebAppDomain --- diff --git a/docset/winserver2022-ps/webadministration/Get-WebAppPoolState.md b/docset/winserver2022-ps/webadministration/Get-WebAppPoolState.md index c8cc07c874..501945f6c2 100644 --- a/docset/winserver2022-ps/webadministration/Get-WebAppPoolState.md +++ b/docset/winserver2022-ps/webadministration/Get-WebAppPoolState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webapppoolstate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webapppoolstate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebAppPoolState --- diff --git a/docset/winserver2022-ps/webadministration/Get-WebApplication.md b/docset/winserver2022-ps/webadministration/Get-WebApplication.md index 6eb38e16c3..98393072bb 100644 --- a/docset/winserver2022-ps/webadministration/Get-WebApplication.md +++ b/docset/winserver2022-ps/webadministration/Get-WebApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webapplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webapplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebApplication --- diff --git a/docset/winserver2022-ps/webadministration/Get-WebBinding.md b/docset/winserver2022-ps/webadministration/Get-WebBinding.md index 1ae3068398..d9475e898e 100644 --- a/docset/winserver2022-ps/webadministration/Get-WebBinding.md +++ b/docset/winserver2022-ps/webadministration/Get-WebBinding.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webbinding?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webbinding?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebBinding --- diff --git a/docset/winserver2022-ps/webadministration/Get-WebCentralCertProvider.md b/docset/winserver2022-ps/webadministration/Get-WebCentralCertProvider.md index 3603f7c22f..bd5ea1436f 100644 --- a/docset/winserver2022-ps/webadministration/Get-WebCentralCertProvider.md +++ b/docset/winserver2022-ps/webadministration/Get-WebCentralCertProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webcentralcertprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webcentralcertprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebCentralCertProvider --- diff --git a/docset/winserver2022-ps/webadministration/Get-WebConfigFile.md b/docset/winserver2022-ps/webadministration/Get-WebConfigFile.md index 8305cefaa8..96e8815c22 100644 --- a/docset/winserver2022-ps/webadministration/Get-WebConfigFile.md +++ b/docset/winserver2022-ps/webadministration/Get-WebConfigFile.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webconfigfile?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webconfigfile?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebConfigFile --- diff --git a/docset/winserver2022-ps/webadministration/Get-WebConfiguration.md b/docset/winserver2022-ps/webadministration/Get-WebConfiguration.md index c26ab0ab26..de4bb85927 100644 --- a/docset/winserver2022-ps/webadministration/Get-WebConfiguration.md +++ b/docset/winserver2022-ps/webadministration/Get-WebConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebConfiguration --- diff --git a/docset/winserver2022-ps/webadministration/Get-WebConfigurationBackup.md b/docset/winserver2022-ps/webadministration/Get-WebConfigurationBackup.md index ab49834500..8f7db1e774 100644 --- a/docset/winserver2022-ps/webadministration/Get-WebConfigurationBackup.md +++ b/docset/winserver2022-ps/webadministration/Get-WebConfigurationBackup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webconfigurationbackup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webconfigurationbackup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebConfigurationBackup --- diff --git a/docset/winserver2022-ps/webadministration/Get-WebConfigurationLocation.md b/docset/winserver2022-ps/webadministration/Get-WebConfigurationLocation.md index cde437e8d9..431c62cb22 100644 --- a/docset/winserver2022-ps/webadministration/Get-WebConfigurationLocation.md +++ b/docset/winserver2022-ps/webadministration/Get-WebConfigurationLocation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webconfigurationlocation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webconfigurationlocation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebConfigurationLocation --- diff --git a/docset/winserver2022-ps/webadministration/Get-WebConfigurationLock.md b/docset/winserver2022-ps/webadministration/Get-WebConfigurationLock.md index 62a00fd6f6..de94187188 100644 --- a/docset/winserver2022-ps/webadministration/Get-WebConfigurationLock.md +++ b/docset/winserver2022-ps/webadministration/Get-WebConfigurationLock.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webconfigurationlock?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webconfigurationlock?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebConfigurationLock --- diff --git a/docset/winserver2022-ps/webadministration/Get-WebConfigurationProperty.md b/docset/winserver2022-ps/webadministration/Get-WebConfigurationProperty.md index 634725341c..a859e9a141 100644 --- a/docset/winserver2022-ps/webadministration/Get-WebConfigurationProperty.md +++ b/docset/winserver2022-ps/webadministration/Get-WebConfigurationProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webconfigurationproperty?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webconfigurationproperty?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebConfigurationProperty --- diff --git a/docset/winserver2022-ps/webadministration/Get-WebFilePath.md b/docset/winserver2022-ps/webadministration/Get-WebFilePath.md index f556e3764b..816538ba58 100644 --- a/docset/winserver2022-ps/webadministration/Get-WebFilePath.md +++ b/docset/winserver2022-ps/webadministration/Get-WebFilePath.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webfilepath?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webfilepath?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebFilePath --- diff --git a/docset/winserver2022-ps/webadministration/Get-WebGlobalModule.md b/docset/winserver2022-ps/webadministration/Get-WebGlobalModule.md index ac82514397..50db6ef2df 100644 --- a/docset/winserver2022-ps/webadministration/Get-WebGlobalModule.md +++ b/docset/winserver2022-ps/webadministration/Get-WebGlobalModule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webglobalmodule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webglobalmodule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebGlobalModule --- diff --git a/docset/winserver2022-ps/webadministration/Get-WebHandler.md b/docset/winserver2022-ps/webadministration/Get-WebHandler.md index c9593f996a..e1ad998ce9 100644 --- a/docset/winserver2022-ps/webadministration/Get-WebHandler.md +++ b/docset/winserver2022-ps/webadministration/Get-WebHandler.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webhandler?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webhandler?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebHandler --- diff --git a/docset/winserver2022-ps/webadministration/Get-WebItemState.md b/docset/winserver2022-ps/webadministration/Get-WebItemState.md index 84fce96574..b8faca61f8 100644 --- a/docset/winserver2022-ps/webadministration/Get-WebItemState.md +++ b/docset/winserver2022-ps/webadministration/Get-WebItemState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webitemstate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webitemstate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebItemState --- diff --git a/docset/winserver2022-ps/webadministration/Get-WebManagedModule.md b/docset/winserver2022-ps/webadministration/Get-WebManagedModule.md index a4345497b1..b568e37dd0 100644 --- a/docset/winserver2022-ps/webadministration/Get-WebManagedModule.md +++ b/docset/winserver2022-ps/webadministration/Get-WebManagedModule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webmanagedmodule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webmanagedmodule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebManagedModule --- diff --git a/docset/winserver2022-ps/webadministration/Get-WebRequest.md b/docset/winserver2022-ps/webadministration/Get-WebRequest.md index f6faafaf22..ccd0ccd92b 100644 --- a/docset/winserver2022-ps/webadministration/Get-WebRequest.md +++ b/docset/winserver2022-ps/webadministration/Get-WebRequest.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webrequest?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webrequest?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebRequest --- diff --git a/docset/winserver2022-ps/webadministration/Get-WebURL.md b/docset/winserver2022-ps/webadministration/Get-WebURL.md index 71da7dcb1a..57815629e7 100644 --- a/docset/winserver2022-ps/webadministration/Get-WebURL.md +++ b/docset/winserver2022-ps/webadministration/Get-WebURL.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-weburl?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-weburl?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebURL --- diff --git a/docset/winserver2022-ps/webadministration/Get-WebVirtualDirectory.md b/docset/winserver2022-ps/webadministration/Get-WebVirtualDirectory.md index 1651b16750..b97d927799 100644 --- a/docset/winserver2022-ps/webadministration/Get-WebVirtualDirectory.md +++ b/docset/winserver2022-ps/webadministration/Get-WebVirtualDirectory.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-webvirtualdirectory?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-webvirtualdirectory?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebVirtualDirectory --- diff --git a/docset/winserver2022-ps/webadministration/Get-Website.md b/docset/winserver2022-ps/webadministration/Get-Website.md index b807c45cfb..397973fa86 100644 --- a/docset/winserver2022-ps/webadministration/Get-Website.md +++ b/docset/winserver2022-ps/webadministration/Get-Website.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-website?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-website?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-Website --- diff --git a/docset/winserver2022-ps/webadministration/Get-WebsiteState.md b/docset/winserver2022-ps/webadministration/Get-WebsiteState.md index a39cfa35be..0178cb17c0 100644 --- a/docset/winserver2022-ps/webadministration/Get-WebsiteState.md +++ b/docset/winserver2022-ps/webadministration/Get-WebsiteState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/get-websitestate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/get-websitestate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebsiteState --- diff --git a/docset/winserver2022-ps/webadministration/New-WebAppPool.md b/docset/winserver2022-ps/webadministration/New-WebAppPool.md index 981e0641c2..22aa53f75c 100644 --- a/docset/winserver2022-ps/webadministration/New-WebAppPool.md +++ b/docset/winserver2022-ps/webadministration/New-WebAppPool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/new-webapppool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/new-webapppool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WebAppPool --- diff --git a/docset/winserver2022-ps/webadministration/New-WebApplication.md b/docset/winserver2022-ps/webadministration/New-WebApplication.md index 2a09c99ebf..c451f00f72 100644 --- a/docset/winserver2022-ps/webadministration/New-WebApplication.md +++ b/docset/winserver2022-ps/webadministration/New-WebApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/new-webapplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/new-webapplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WebApplication --- diff --git a/docset/winserver2022-ps/webadministration/New-WebBinding.md b/docset/winserver2022-ps/webadministration/New-WebBinding.md index e154b68045..cf3ee0615b 100644 --- a/docset/winserver2022-ps/webadministration/New-WebBinding.md +++ b/docset/winserver2022-ps/webadministration/New-WebBinding.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/new-webbinding?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/new-webbinding?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WebBinding --- diff --git a/docset/winserver2022-ps/webadministration/New-WebFtpSite.md b/docset/winserver2022-ps/webadministration/New-WebFtpSite.md index 0dcd8deb9a..2cb8beaa1e 100644 --- a/docset/winserver2022-ps/webadministration/New-WebFtpSite.md +++ b/docset/winserver2022-ps/webadministration/New-WebFtpSite.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/new-webftpsite?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/new-webftpsite?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WebFtpSite --- diff --git a/docset/winserver2022-ps/webadministration/New-WebGlobalModule.md b/docset/winserver2022-ps/webadministration/New-WebGlobalModule.md index 4adbe487eb..b1aeed920b 100644 --- a/docset/winserver2022-ps/webadministration/New-WebGlobalModule.md +++ b/docset/winserver2022-ps/webadministration/New-WebGlobalModule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/new-webglobalmodule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/new-webglobalmodule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WebGlobalModule --- diff --git a/docset/winserver2022-ps/webadministration/New-WebHandler.md b/docset/winserver2022-ps/webadministration/New-WebHandler.md index 7d92d447d7..19f516d12b 100644 --- a/docset/winserver2022-ps/webadministration/New-WebHandler.md +++ b/docset/winserver2022-ps/webadministration/New-WebHandler.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/new-webhandler?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/new-webhandler?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WebHandler --- diff --git a/docset/winserver2022-ps/webadministration/New-WebManagedModule.md b/docset/winserver2022-ps/webadministration/New-WebManagedModule.md index 620af5e64c..7cccba8281 100644 --- a/docset/winserver2022-ps/webadministration/New-WebManagedModule.md +++ b/docset/winserver2022-ps/webadministration/New-WebManagedModule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/new-webmanagedmodule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/new-webmanagedmodule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WebManagedModule --- diff --git a/docset/winserver2022-ps/webadministration/New-WebVirtualDirectory.md b/docset/winserver2022-ps/webadministration/New-WebVirtualDirectory.md index 229569930a..66db96af60 100644 --- a/docset/winserver2022-ps/webadministration/New-WebVirtualDirectory.md +++ b/docset/winserver2022-ps/webadministration/New-WebVirtualDirectory.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/new-webvirtualdirectory?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/new-webvirtualdirectory?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WebVirtualDirectory --- diff --git a/docset/winserver2022-ps/webadministration/New-Website.md b/docset/winserver2022-ps/webadministration/New-Website.md index 249e7a79ee..10284d89e9 100644 --- a/docset/winserver2022-ps/webadministration/New-Website.md +++ b/docset/winserver2022-ps/webadministration/New-Website.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/new-website?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/new-website?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-Website --- diff --git a/docset/winserver2022-ps/webadministration/Remove-WebAppPool.md b/docset/winserver2022-ps/webadministration/Remove-WebAppPool.md index 8b0ad075f0..5856a10dc1 100644 --- a/docset/winserver2022-ps/webadministration/Remove-WebAppPool.md +++ b/docset/winserver2022-ps/webadministration/Remove-WebAppPool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-webapppool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-webapppool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WebAppPool --- diff --git a/docset/winserver2022-ps/webadministration/Remove-WebApplication.md b/docset/winserver2022-ps/webadministration/Remove-WebApplication.md index dc6b396b73..09919dbcb4 100644 --- a/docset/winserver2022-ps/webadministration/Remove-WebApplication.md +++ b/docset/winserver2022-ps/webadministration/Remove-WebApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-webapplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-webapplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WebApplication --- diff --git a/docset/winserver2022-ps/webadministration/Remove-WebBinding.md b/docset/winserver2022-ps/webadministration/Remove-WebBinding.md index 4102b4ff1e..9c36804936 100644 --- a/docset/winserver2022-ps/webadministration/Remove-WebBinding.md +++ b/docset/winserver2022-ps/webadministration/Remove-WebBinding.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-webbinding?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-webbinding?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WebBinding --- diff --git a/docset/winserver2022-ps/webadministration/Remove-WebConfigurationBackup.md b/docset/winserver2022-ps/webadministration/Remove-WebConfigurationBackup.md index 5118f34748..333404d33b 100644 --- a/docset/winserver2022-ps/webadministration/Remove-WebConfigurationBackup.md +++ b/docset/winserver2022-ps/webadministration/Remove-WebConfigurationBackup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-webconfigurationbackup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-webconfigurationbackup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WebConfigurationBackup --- diff --git a/docset/winserver2022-ps/webadministration/Remove-WebConfigurationLocation.md b/docset/winserver2022-ps/webadministration/Remove-WebConfigurationLocation.md index 533f841337..901bd2e393 100644 --- a/docset/winserver2022-ps/webadministration/Remove-WebConfigurationLocation.md +++ b/docset/winserver2022-ps/webadministration/Remove-WebConfigurationLocation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-webconfigurationlocation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-webconfigurationlocation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WebConfigurationLocation --- diff --git a/docset/winserver2022-ps/webadministration/Remove-WebConfigurationLock.md b/docset/winserver2022-ps/webadministration/Remove-WebConfigurationLock.md index be4ffe0ef8..d7c6a13880 100644 --- a/docset/winserver2022-ps/webadministration/Remove-WebConfigurationLock.md +++ b/docset/winserver2022-ps/webadministration/Remove-WebConfigurationLock.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-webconfigurationlock?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-webconfigurationlock?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WebConfigurationLock --- diff --git a/docset/winserver2022-ps/webadministration/Remove-WebConfigurationProperty.md b/docset/winserver2022-ps/webadministration/Remove-WebConfigurationProperty.md index dd5ac46789..0cfdb94485 100644 --- a/docset/winserver2022-ps/webadministration/Remove-WebConfigurationProperty.md +++ b/docset/winserver2022-ps/webadministration/Remove-WebConfigurationProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-webconfigurationproperty?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-webconfigurationproperty?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WebConfigurationProperty --- diff --git a/docset/winserver2022-ps/webadministration/Remove-WebGlobalModule.md b/docset/winserver2022-ps/webadministration/Remove-WebGlobalModule.md index a0c1e0ba62..cfe75ec085 100644 --- a/docset/winserver2022-ps/webadministration/Remove-WebGlobalModule.md +++ b/docset/winserver2022-ps/webadministration/Remove-WebGlobalModule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-webglobalmodule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-webglobalmodule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WebGlobalModule --- diff --git a/docset/winserver2022-ps/webadministration/Remove-WebHandler.md b/docset/winserver2022-ps/webadministration/Remove-WebHandler.md index e47a37eca6..8924879949 100644 --- a/docset/winserver2022-ps/webadministration/Remove-WebHandler.md +++ b/docset/winserver2022-ps/webadministration/Remove-WebHandler.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-webhandler?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-webhandler?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WebHandler --- diff --git a/docset/winserver2022-ps/webadministration/Remove-WebManagedModule.md b/docset/winserver2022-ps/webadministration/Remove-WebManagedModule.md index 9a7613c376..1d0477d36b 100644 --- a/docset/winserver2022-ps/webadministration/Remove-WebManagedModule.md +++ b/docset/winserver2022-ps/webadministration/Remove-WebManagedModule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-webmanagedmodule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-webmanagedmodule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WebManagedModule --- diff --git a/docset/winserver2022-ps/webadministration/Remove-WebVirtualDirectory.md b/docset/winserver2022-ps/webadministration/Remove-WebVirtualDirectory.md index d7c25d5a06..76f484db03 100644 --- a/docset/winserver2022-ps/webadministration/Remove-WebVirtualDirectory.md +++ b/docset/winserver2022-ps/webadministration/Remove-WebVirtualDirectory.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-webvirtualdirectory?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-webvirtualdirectory?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WebVirtualDirectory --- diff --git a/docset/winserver2022-ps/webadministration/Remove-Website.md b/docset/winserver2022-ps/webadministration/Remove-Website.md index ee7281f1e1..2e7a759e4f 100644 --- a/docset/winserver2022-ps/webadministration/Remove-Website.md +++ b/docset/winserver2022-ps/webadministration/Remove-Website.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/remove-website?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/remove-website?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-Website --- diff --git a/docset/winserver2022-ps/webadministration/Rename-WebConfigurationLocation.md b/docset/winserver2022-ps/webadministration/Rename-WebConfigurationLocation.md index c5861e8671..b487af7dba 100644 --- a/docset/winserver2022-ps/webadministration/Rename-WebConfigurationLocation.md +++ b/docset/winserver2022-ps/webadministration/Rename-WebConfigurationLocation.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/rename-webconfigurationlocation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/rename-webconfigurationlocation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-WebConfigurationLocation --- diff --git a/docset/winserver2022-ps/webadministration/Restart-WebAppPool.md b/docset/winserver2022-ps/webadministration/Restart-WebAppPool.md index 853af5d370..7a661f2471 100644 --- a/docset/winserver2022-ps/webadministration/Restart-WebAppPool.md +++ b/docset/winserver2022-ps/webadministration/Restart-WebAppPool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/restart-webapppool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/restart-webapppool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restart-WebAppPool --- diff --git a/docset/winserver2022-ps/webadministration/Restart-WebItem.md b/docset/winserver2022-ps/webadministration/Restart-WebItem.md index ab7f897d4e..06673f8cda 100644 --- a/docset/winserver2022-ps/webadministration/Restart-WebItem.md +++ b/docset/winserver2022-ps/webadministration/Restart-WebItem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/restart-webitem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/restart-webitem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restart-WebItem --- diff --git a/docset/winserver2022-ps/webadministration/Restore-WebConfiguration.md b/docset/winserver2022-ps/webadministration/Restore-WebConfiguration.md index 260c0b497d..a65af6dd87 100644 --- a/docset/winserver2022-ps/webadministration/Restore-WebConfiguration.md +++ b/docset/winserver2022-ps/webadministration/Restore-WebConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/restore-webconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/restore-webconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-WebConfiguration --- diff --git a/docset/winserver2022-ps/webadministration/Select-WebConfiguration.md b/docset/winserver2022-ps/webadministration/Select-WebConfiguration.md index 4d6afd618d..0c56d341b8 100644 --- a/docset/winserver2022-ps/webadministration/Select-WebConfiguration.md +++ b/docset/winserver2022-ps/webadministration/Select-WebConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/select-webconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/select-webconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Select-WebConfiguration --- diff --git a/docset/winserver2022-ps/webadministration/Set-WebBinding.md b/docset/winserver2022-ps/webadministration/Set-WebBinding.md index 278ed331a8..ae4103979b 100644 --- a/docset/winserver2022-ps/webadministration/Set-WebBinding.md +++ b/docset/winserver2022-ps/webadministration/Set-WebBinding.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/set-webbinding?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/set-webbinding?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WebBinding --- diff --git a/docset/winserver2022-ps/webadministration/Set-WebCentralCertProvider.md b/docset/winserver2022-ps/webadministration/Set-WebCentralCertProvider.md index 02051d0b78..26e1e7f121 100644 --- a/docset/winserver2022-ps/webadministration/Set-WebCentralCertProvider.md +++ b/docset/winserver2022-ps/webadministration/Set-WebCentralCertProvider.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/set-webcentralcertprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/set-webcentralcertprovider?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WebCentralCertProvider --- diff --git a/docset/winserver2022-ps/webadministration/Set-WebCentralCertProviderCredential.md b/docset/winserver2022-ps/webadministration/Set-WebCentralCertProviderCredential.md index d90665ce49..9a23a2a04a 100644 --- a/docset/winserver2022-ps/webadministration/Set-WebCentralCertProviderCredential.md +++ b/docset/winserver2022-ps/webadministration/Set-WebCentralCertProviderCredential.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/set-webcentralcertprovidercredential?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/set-webcentralcertprovidercredential?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WebCentralCertProviderCredential --- diff --git a/docset/winserver2022-ps/webadministration/Set-WebConfiguration.md b/docset/winserver2022-ps/webadministration/Set-WebConfiguration.md index 5b08f5f7bf..3b3a768214 100644 --- a/docset/winserver2022-ps/webadministration/Set-WebConfiguration.md +++ b/docset/winserver2022-ps/webadministration/Set-WebConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/set-webconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/set-webconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WebConfiguration --- diff --git a/docset/winserver2022-ps/webadministration/Set-WebConfigurationProperty.md b/docset/winserver2022-ps/webadministration/Set-WebConfigurationProperty.md index 1212122b93..dab7d8ef77 100644 --- a/docset/winserver2022-ps/webadministration/Set-WebConfigurationProperty.md +++ b/docset/winserver2022-ps/webadministration/Set-WebConfigurationProperty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/set-webconfigurationproperty?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/set-webconfigurationproperty?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WebConfigurationProperty --- diff --git a/docset/winserver2022-ps/webadministration/Set-WebGlobalModule.md b/docset/winserver2022-ps/webadministration/Set-WebGlobalModule.md index 24550d26fe..ac5a29f011 100644 --- a/docset/winserver2022-ps/webadministration/Set-WebGlobalModule.md +++ b/docset/winserver2022-ps/webadministration/Set-WebGlobalModule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/set-webglobalmodule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/set-webglobalmodule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WebGlobalModule --- diff --git a/docset/winserver2022-ps/webadministration/Set-WebHandler.md b/docset/winserver2022-ps/webadministration/Set-WebHandler.md index 7fa8372b67..9e6aff89ba 100644 --- a/docset/winserver2022-ps/webadministration/Set-WebHandler.md +++ b/docset/winserver2022-ps/webadministration/Set-WebHandler.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/set-webhandler?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/set-webhandler?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WebHandler --- diff --git a/docset/winserver2022-ps/webadministration/Set-WebManagedModule.md b/docset/winserver2022-ps/webadministration/Set-WebManagedModule.md index f48feaee87..00c86e27d9 100644 --- a/docset/winserver2022-ps/webadministration/Set-WebManagedModule.md +++ b/docset/winserver2022-ps/webadministration/Set-WebManagedModule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/set-webmanagedmodule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/set-webmanagedmodule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WebManagedModule --- diff --git a/docset/winserver2022-ps/webadministration/Start-WebAppPool.md b/docset/winserver2022-ps/webadministration/Start-WebAppPool.md index d80adca944..19dcf765db 100644 --- a/docset/winserver2022-ps/webadministration/Start-WebAppPool.md +++ b/docset/winserver2022-ps/webadministration/Start-WebAppPool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/start-webapppool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/start-webapppool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-WebAppPool --- diff --git a/docset/winserver2022-ps/webadministration/Start-WebCommitDelay.md b/docset/winserver2022-ps/webadministration/Start-WebCommitDelay.md index 9d706d10dd..7ba0ce7670 100644 --- a/docset/winserver2022-ps/webadministration/Start-WebCommitDelay.md +++ b/docset/winserver2022-ps/webadministration/Start-WebCommitDelay.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/start-webcommitdelay?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/start-webcommitdelay?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-WebCommitDelay --- diff --git a/docset/winserver2022-ps/webadministration/Start-WebItem.md b/docset/winserver2022-ps/webadministration/Start-WebItem.md index 396289a0c1..c5a1dc8192 100644 --- a/docset/winserver2022-ps/webadministration/Start-WebItem.md +++ b/docset/winserver2022-ps/webadministration/Start-WebItem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/start-webitem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/start-webitem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-WebItem --- diff --git a/docset/winserver2022-ps/webadministration/Start-Website.md b/docset/winserver2022-ps/webadministration/Start-Website.md index c039bbd1d8..b115c22f4c 100644 --- a/docset/winserver2022-ps/webadministration/Start-Website.md +++ b/docset/winserver2022-ps/webadministration/Start-Website.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/start-website?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/start-website?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-Website --- diff --git a/docset/winserver2022-ps/webadministration/Stop-WebAppPool.md b/docset/winserver2022-ps/webadministration/Stop-WebAppPool.md index d63461a763..26070d4d7a 100644 --- a/docset/winserver2022-ps/webadministration/Stop-WebAppPool.md +++ b/docset/winserver2022-ps/webadministration/Stop-WebAppPool.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/stop-webapppool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/stop-webapppool?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-WebAppPool --- diff --git a/docset/winserver2022-ps/webadministration/Stop-WebCommitDelay.md b/docset/winserver2022-ps/webadministration/Stop-WebCommitDelay.md index 0d00762beb..ca857fbc9d 100644 --- a/docset/winserver2022-ps/webadministration/Stop-WebCommitDelay.md +++ b/docset/winserver2022-ps/webadministration/Stop-WebCommitDelay.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/stop-webcommitdelay?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/stop-webcommitdelay?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-WebCommitDelay --- diff --git a/docset/winserver2022-ps/webadministration/Stop-WebItem.md b/docset/winserver2022-ps/webadministration/Stop-WebItem.md index d7fad9f19c..8243286d86 100644 --- a/docset/winserver2022-ps/webadministration/Stop-WebItem.md +++ b/docset/winserver2022-ps/webadministration/Stop-WebItem.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/stop-webitem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/stop-webitem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-WebItem --- diff --git a/docset/winserver2022-ps/webadministration/Stop-Website.md b/docset/winserver2022-ps/webadministration/Stop-Website.md index 8eb174f756..98b0e092df 100644 --- a/docset/winserver2022-ps/webadministration/Stop-Website.md +++ b/docset/winserver2022-ps/webadministration/Stop-Website.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IIS.PowerShell.Provider.dll-Help.xml Module Name: WebAdministration ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/webadministration/stop-website?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webadministration/stop-website?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-Website --- diff --git a/docset/winserver2022-ps/webapplicationproxy/Add-WebApplicationProxyApplication.md b/docset/winserver2022-ps/webapplicationproxy/Add-WebApplicationProxyApplication.md index 6c66642ed7..6769076641 100644 --- a/docset/winserver2022-ps/webapplicationproxy/Add-WebApplicationProxyApplication.md +++ b/docset/winserver2022-ps/webapplicationproxy/Add-WebApplicationProxyApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: WebApplicationProxy-help.xml Module Name: WebApplicationProxy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/webapplicationproxy/add-webapplicationproxyapplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webapplicationproxy/add-webapplicationproxyapplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WebApplicationProxyApplication --- diff --git a/docset/winserver2022-ps/webapplicationproxy/Get-WebApplicationProxyApplication.md b/docset/winserver2022-ps/webapplicationproxy/Get-WebApplicationProxyApplication.md index 2e77f3ad57..73f90465e4 100644 --- a/docset/winserver2022-ps/webapplicationproxy/Get-WebApplicationProxyApplication.md +++ b/docset/winserver2022-ps/webapplicationproxy/Get-WebApplicationProxyApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: WebApplicationProxy-help.xml Module Name: WebApplicationProxy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/webapplicationproxy/get-webapplicationproxyapplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webapplicationproxy/get-webapplicationproxyapplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebApplicationProxyApplication --- diff --git a/docset/winserver2022-ps/webapplicationproxy/Get-WebApplicationProxyAvailableADFSRelyingParty.md b/docset/winserver2022-ps/webapplicationproxy/Get-WebApplicationProxyAvailableADFSRelyingParty.md index 4ad0b60111..1e79a13d13 100644 --- a/docset/winserver2022-ps/webapplicationproxy/Get-WebApplicationProxyAvailableADFSRelyingParty.md +++ b/docset/winserver2022-ps/webapplicationproxy/Get-WebApplicationProxyAvailableADFSRelyingParty.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: WebApplicationProxy-help.xml Module Name: WebApplicationProxy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/webapplicationproxy/get-webapplicationproxyavailableadfsrelyingparty?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webapplicationproxy/get-webapplicationproxyavailableadfsrelyingparty?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebApplicationProxyAvailableADFSRelyingParty --- diff --git a/docset/winserver2022-ps/webapplicationproxy/Get-WebApplicationProxyConfiguration.md b/docset/winserver2022-ps/webapplicationproxy/Get-WebApplicationProxyConfiguration.md index 1b330e7c2f..2816c30b27 100644 --- a/docset/winserver2022-ps/webapplicationproxy/Get-WebApplicationProxyConfiguration.md +++ b/docset/winserver2022-ps/webapplicationproxy/Get-WebApplicationProxyConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: WebApplicationProxy-help.xml Module Name: WebApplicationProxy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/webapplicationproxy/get-webapplicationproxyconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webapplicationproxy/get-webapplicationproxyconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebApplicationProxyConfiguration --- diff --git a/docset/winserver2022-ps/webapplicationproxy/Get-WebApplicationProxyHealth.md b/docset/winserver2022-ps/webapplicationproxy/Get-WebApplicationProxyHealth.md index 38292b13cf..61503d6530 100644 --- a/docset/winserver2022-ps/webapplicationproxy/Get-WebApplicationProxyHealth.md +++ b/docset/winserver2022-ps/webapplicationproxy/Get-WebApplicationProxyHealth.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.ApplicationProxy.Management.PowerShell.dll-Help.xml Module Name: WebApplicationProxy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/webapplicationproxy/get-webapplicationproxyhealth?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webapplicationproxy/get-webapplicationproxyhealth?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebApplicationProxyHealth --- diff --git a/docset/winserver2022-ps/webapplicationproxy/Get-WebApplicationProxySslCertificate.md b/docset/winserver2022-ps/webapplicationproxy/Get-WebApplicationProxySslCertificate.md index e9e66161fc..4c832078cd 100644 --- a/docset/winserver2022-ps/webapplicationproxy/Get-WebApplicationProxySslCertificate.md +++ b/docset/winserver2022-ps/webapplicationproxy/Get-WebApplicationProxySslCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.Proxy.dll-Help.xml Module Name: WebApplicationProxy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/webapplicationproxy/get-webapplicationproxysslcertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webapplicationproxy/get-webapplicationproxysslcertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WebApplicationProxySslCertificate --- diff --git a/docset/winserver2022-ps/webapplicationproxy/Install-WebApplicationProxy.md b/docset/winserver2022-ps/webapplicationproxy/Install-WebApplicationProxy.md index d436b3965b..88ed083352 100644 --- a/docset/winserver2022-ps/webapplicationproxy/Install-WebApplicationProxy.md +++ b/docset/winserver2022-ps/webapplicationproxy/Install-WebApplicationProxy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.Proxy.dll-Help.xml Module Name: WebApplicationProxy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/webapplicationproxy/install-webapplicationproxy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webapplicationproxy/install-webapplicationproxy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Install-WebApplicationProxy --- diff --git a/docset/winserver2022-ps/webapplicationproxy/Remove-WebApplicationProxyApplication.md b/docset/winserver2022-ps/webapplicationproxy/Remove-WebApplicationProxyApplication.md index 6d8246670d..2c08e7fd00 100644 --- a/docset/winserver2022-ps/webapplicationproxy/Remove-WebApplicationProxyApplication.md +++ b/docset/winserver2022-ps/webapplicationproxy/Remove-WebApplicationProxyApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: WebApplicationProxy-help.xml Module Name: WebApplicationProxy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/webapplicationproxy/remove-webapplicationproxyapplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webapplicationproxy/remove-webapplicationproxyapplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WebApplicationProxyApplication --- diff --git a/docset/winserver2022-ps/webapplicationproxy/Set-WebApplicationProxyApplication.md b/docset/winserver2022-ps/webapplicationproxy/Set-WebApplicationProxyApplication.md index 206f4753b1..538950ef2d 100644 --- a/docset/winserver2022-ps/webapplicationproxy/Set-WebApplicationProxyApplication.md +++ b/docset/winserver2022-ps/webapplicationproxy/Set-WebApplicationProxyApplication.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: WebApplicationProxy-help.xml Module Name: WebApplicationProxy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/webapplicationproxy/set-webapplicationproxyapplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webapplicationproxy/set-webapplicationproxyapplication?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WebApplicationProxyApplication --- diff --git a/docset/winserver2022-ps/webapplicationproxy/Set-WebApplicationProxyConfiguration.md b/docset/winserver2022-ps/webapplicationproxy/Set-WebApplicationProxyConfiguration.md index eb26696ac9..131c726dc4 100644 --- a/docset/winserver2022-ps/webapplicationproxy/Set-WebApplicationProxyConfiguration.md +++ b/docset/winserver2022-ps/webapplicationproxy/Set-WebApplicationProxyConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: WebApplicationProxy-help.xml Module Name: WebApplicationProxy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/webapplicationproxy/set-webapplicationproxyconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webapplicationproxy/set-webapplicationproxyconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WebApplicationProxyConfiguration --- diff --git a/docset/winserver2022-ps/webapplicationproxy/Set-WebApplicationProxySslCertificate.md b/docset/winserver2022-ps/webapplicationproxy/Set-WebApplicationProxySslCertificate.md index 42b1c7483f..c6493ab422 100644 --- a/docset/winserver2022-ps/webapplicationproxy/Set-WebApplicationProxySslCertificate.md +++ b/docset/winserver2022-ps/webapplicationproxy/Set-WebApplicationProxySslCertificate.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.Proxy.dll-Help.xml Module Name: WebApplicationProxy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/webapplicationproxy/set-webapplicationproxysslcertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webapplicationproxy/set-webapplicationproxysslcertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WebApplicationProxySslCertificate --- diff --git a/docset/winserver2022-ps/webapplicationproxy/Update-WebApplicationProxyDeviceRegistration.md b/docset/winserver2022-ps/webapplicationproxy/Update-WebApplicationProxyDeviceRegistration.md index 7880a11624..97fe4970fe 100644 --- a/docset/winserver2022-ps/webapplicationproxy/Update-WebApplicationProxyDeviceRegistration.md +++ b/docset/winserver2022-ps/webapplicationproxy/Update-WebApplicationProxyDeviceRegistration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.Proxy.dll-Help.xml Module Name: WebApplicationProxy ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/webapplicationproxy/update-webapplicationproxydeviceregistration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/webapplicationproxy/update-webapplicationproxydeviceregistration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-WebApplicationProxyDeviceRegistration --- diff --git a/docset/winserver2022-ps/whea/Get-WheaMemoryPolicy.md b/docset/winserver2022-ps/whea/Get-WheaMemoryPolicy.md index c08e5123a1..3179ced185 100644 --- a/docset/winserver2022-ps/whea/Get-WheaMemoryPolicy.md +++ b/docset/winserver2022-ps/whea/Get-WheaMemoryPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Whea.WheaMemoryPolicy.dll-Help.xml Module Name: WHEA ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/whea/get-wheamemorypolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/whea/get-wheamemorypolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WheaMemoryPolicy --- diff --git a/docset/winserver2022-ps/whea/Set-WheaMemoryPolicy.md b/docset/winserver2022-ps/whea/Set-WheaMemoryPolicy.md index 5438061e31..f546338579 100644 --- a/docset/winserver2022-ps/whea/Set-WheaMemoryPolicy.md +++ b/docset/winserver2022-ps/whea/Set-WheaMemoryPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.Whea.WheaMemoryPolicy.dll-Help.xml Module Name: WHEA ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/whea/set-wheamemorypolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/whea/set-wheamemorypolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WheaMemoryPolicy --- diff --git a/docset/winserver2022-ps/windowsdeveloperlicense/Get-WindowsDeveloperLicense.md b/docset/winserver2022-ps/windowsdeveloperlicense/Get-WindowsDeveloperLicense.md index cdb50fcd5b..40d270104e 100644 --- a/docset/winserver2022-ps/windowsdeveloperlicense/Get-WindowsDeveloperLicense.md +++ b/docset/winserver2022-ps/windowsdeveloperlicense/Get-WindowsDeveloperLicense.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.DeveloperLicense.Commands.dll-Help.xml Module Name: WindowsDeveloperLicense ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/windowsdeveloperlicense/get-windowsdeveloperlicense?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsdeveloperlicense/get-windowsdeveloperlicense?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WindowsDeveloperLicense --- diff --git a/docset/winserver2022-ps/windowsdeveloperlicense/Show-WindowsDeveloperLicenseRegistration.md b/docset/winserver2022-ps/windowsdeveloperlicense/Show-WindowsDeveloperLicenseRegistration.md index bca256aed6..d7b0087b3d 100644 --- a/docset/winserver2022-ps/windowsdeveloperlicense/Show-WindowsDeveloperLicenseRegistration.md +++ b/docset/winserver2022-ps/windowsdeveloperlicense/Show-WindowsDeveloperLicenseRegistration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.DeveloperLicense.Commands.dll-Help.xml Module Name: WindowsDeveloperLicense ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/windowsdeveloperlicense/show-windowsdeveloperlicenseregistration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsdeveloperlicense/show-windowsdeveloperlicenseregistration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Show-WindowsDeveloperLicenseRegistration --- diff --git a/docset/winserver2022-ps/windowsdeveloperlicense/Unregister-WindowsDeveloperLicense.md b/docset/winserver2022-ps/windowsdeveloperlicense/Unregister-WindowsDeveloperLicense.md index fa31a0ce1c..0f4861de96 100644 --- a/docset/winserver2022-ps/windowsdeveloperlicense/Unregister-WindowsDeveloperLicense.md +++ b/docset/winserver2022-ps/windowsdeveloperlicense/Unregister-WindowsDeveloperLicense.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.Windows.DeveloperLicense.Commands.dll-Help.xml Module Name: WindowsDeveloperLicense ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/windowsdeveloperlicense/unregister-windowsdeveloperlicense?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsdeveloperlicense/unregister-windowsdeveloperlicense?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unregister-WindowsDeveloperLicense --- diff --git a/docset/winserver2022-ps/windowsdiagnosticdata/Clear-WindowsDiagnosticData.md b/docset/winserver2022-ps/windowsdiagnosticdata/Clear-WindowsDiagnosticData.md index a88b664adb..10161cc20c 100644 --- a/docset/winserver2022-ps/windowsdiagnosticdata/Clear-WindowsDiagnosticData.md +++ b/docset/winserver2022-ps/windowsdiagnosticdata/Clear-WindowsDiagnosticData.md @@ -1,7 +1,7 @@ --- external help file: ClearWindowsDiagnosticData.psm1-help.xml Module Name: WindowsDiagnosticData -online version: https://docs.microsoft.com/powershell/module/windowsdiagnosticdata/clear-windowsdiagnosticdata?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsdiagnosticdata/clear-windowsdiagnosticdata?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-WindowsDiagnosticData --- diff --git a/docset/winserver2022-ps/windowserrorreporting/Disable-WindowsErrorReporting.md b/docset/winserver2022-ps/windowserrorreporting/Disable-WindowsErrorReporting.md index e3026e6328..1a2b3d6eba 100644 --- a/docset/winserver2022-ps/windowserrorreporting/Disable-WindowsErrorReporting.md +++ b/docset/winserver2022-ps/windowserrorreporting/Disable-WindowsErrorReporting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.WindowsErrorReporting.PowerShell.dll-Help.xml Module Name: WindowsErrorReporting ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/windowserrorreporting/disable-windowserrorreporting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowserrorreporting/disable-windowserrorreporting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-WindowsErrorReporting --- diff --git a/docset/winserver2022-ps/windowserrorreporting/Enable-WindowsErrorReporting.md b/docset/winserver2022-ps/windowserrorreporting/Enable-WindowsErrorReporting.md index a259bd79e2..09c78595e7 100644 --- a/docset/winserver2022-ps/windowserrorreporting/Enable-WindowsErrorReporting.md +++ b/docset/winserver2022-ps/windowserrorreporting/Enable-WindowsErrorReporting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.WindowsErrorReporting.PowerShell.dll-Help.xml Module Name: WindowsErrorReporting ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/windowserrorreporting/enable-windowserrorreporting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowserrorreporting/enable-windowserrorreporting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-WindowsErrorReporting --- diff --git a/docset/winserver2022-ps/windowserrorreporting/Get-WindowsErrorReporting.md b/docset/winserver2022-ps/windowserrorreporting/Get-WindowsErrorReporting.md index 6606204b30..464dbb44fd 100644 --- a/docset/winserver2022-ps/windowserrorreporting/Get-WindowsErrorReporting.md +++ b/docset/winserver2022-ps/windowserrorreporting/Get-WindowsErrorReporting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.WindowsErrorReporting.PowerShell.dll-Help.xml Module Name: WindowsErrorReporting ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/windowserrorreporting/get-windowserrorreporting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowserrorreporting/get-windowserrorreporting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WindowsErrorReporting --- diff --git a/docset/winserver2022-ps/windowssearch/Get-WindowsSearchSetting.md b/docset/winserver2022-ps/windowssearch/Get-WindowsSearchSetting.md index d47963bc09..7fef9933f2 100644 --- a/docset/winserver2022-ps/windowssearch/Get-WindowsSearchSetting.md +++ b/docset/winserver2022-ps/windowssearch/Get-WindowsSearchSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.WindowsSearch.Commands.dll-Help.xml Module Name: WindowsSearch ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/windowssearch/get-windowssearchsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowssearch/get-windowssearchsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WindowsSearchSetting --- diff --git a/docset/winserver2022-ps/windowssearch/Set-WindowsSearchSetting.md b/docset/winserver2022-ps/windowssearch/Set-WindowsSearchSetting.md index e410754919..85de5df5db 100644 --- a/docset/winserver2022-ps/windowssearch/Set-WindowsSearchSetting.md +++ b/docset/winserver2022-ps/windowssearch/Set-WindowsSearchSetting.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.WindowsSearch.Commands.dll-Help.xml Module Name: WindowsSearch ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/windowssearch/set-windowssearchsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowssearch/set-windowssearchsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WindowsSearchSetting --- diff --git a/docset/winserver2022-ps/windowsserverbackup/Add-WBBackupTarget.md b/docset/winserver2022-ps/windowsserverbackup/Add-WBBackupTarget.md index 88b67ee00d..6dc7a0e44c 100644 --- a/docset/winserver2022-ps/windowsserverbackup/Add-WBBackupTarget.md +++ b/docset/winserver2022-ps/windowsserverbackup/Add-WBBackupTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/add-wbbackuptarget?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/add-wbbackuptarget?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WBBackupTarget --- diff --git a/docset/winserver2022-ps/windowsserverbackup/Add-WBBareMetalRecovery.md b/docset/winserver2022-ps/windowsserverbackup/Add-WBBareMetalRecovery.md index 80442260a0..06556026c5 100644 --- a/docset/winserver2022-ps/windowsserverbackup/Add-WBBareMetalRecovery.md +++ b/docset/winserver2022-ps/windowsserverbackup/Add-WBBareMetalRecovery.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/add-wbbaremetalrecovery?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/add-wbbaremetalrecovery?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WBBareMetalRecovery --- diff --git a/docset/winserver2022-ps/windowsserverbackup/Add-WBFileSpec.md b/docset/winserver2022-ps/windowsserverbackup/Add-WBFileSpec.md index 69d2fc3661..a7d9a04d01 100644 --- a/docset/winserver2022-ps/windowsserverbackup/Add-WBFileSpec.md +++ b/docset/winserver2022-ps/windowsserverbackup/Add-WBFileSpec.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/add-wbfilespec?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/add-wbfilespec?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WBFileSpec --- diff --git a/docset/winserver2022-ps/windowsserverbackup/Add-WBSystemState.md b/docset/winserver2022-ps/windowsserverbackup/Add-WBSystemState.md index e3df59b7b1..fbe7ffbca4 100644 --- a/docset/winserver2022-ps/windowsserverbackup/Add-WBSystemState.md +++ b/docset/winserver2022-ps/windowsserverbackup/Add-WBSystemState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/add-wbsystemstate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/add-wbsystemstate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WBSystemState --- diff --git a/docset/winserver2022-ps/windowsserverbackup/Add-WBVirtualMachine.md b/docset/winserver2022-ps/windowsserverbackup/Add-WBVirtualMachine.md index 5b94ef71e5..a0e16c2b54 100644 --- a/docset/winserver2022-ps/windowsserverbackup/Add-WBVirtualMachine.md +++ b/docset/winserver2022-ps/windowsserverbackup/Add-WBVirtualMachine.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/add-wbvirtualmachine?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/add-wbvirtualmachine?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WBVirtualMachine --- diff --git a/docset/winserver2022-ps/windowsserverbackup/Add-WBVolume.md b/docset/winserver2022-ps/windowsserverbackup/Add-WBVolume.md index a71c20eca5..5b395775e6 100644 --- a/docset/winserver2022-ps/windowsserverbackup/Add-WBVolume.md +++ b/docset/winserver2022-ps/windowsserverbackup/Add-WBVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/add-wbvolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/add-wbvolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-WBVolume --- diff --git a/docset/winserver2022-ps/windowsserverbackup/Backup-ACL.md b/docset/winserver2022-ps/windowsserverbackup/Backup-ACL.md index 0af917017b..ded31d5780 100644 --- a/docset/winserver2022-ps/windowsserverbackup/Backup-ACL.md +++ b/docset/winserver2022-ps/windowsserverbackup/Backup-ACL.md @@ -3,7 +3,7 @@ description: The Backup-Acl cmdlet backs up the security descriptor of a specifi external help file: wsbcmdlet.dll-help.xml Module Name: WindowsServerBackup ms.date: 09/10/2021 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/backup-acl?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/backup-acl?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Backup-ACL --- diff --git a/docset/winserver2022-ps/windowsserverbackup/Get-WBBackupSet.md b/docset/winserver2022-ps/windowsserverbackup/Get-WBBackupSet.md index 1e54296c4f..6753f74448 100644 --- a/docset/winserver2022-ps/windowsserverbackup/Get-WBBackupSet.md +++ b/docset/winserver2022-ps/windowsserverbackup/Get-WBBackupSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbbackupset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbbackupset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBBackupSet --- diff --git a/docset/winserver2022-ps/windowsserverbackup/Get-WBBackupTarget.md b/docset/winserver2022-ps/windowsserverbackup/Get-WBBackupTarget.md index 1e47c32640..4ca7f4105d 100644 --- a/docset/winserver2022-ps/windowsserverbackup/Get-WBBackupTarget.md +++ b/docset/winserver2022-ps/windowsserverbackup/Get-WBBackupTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbbackuptarget?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbbackuptarget?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBBackupTarget --- diff --git a/docset/winserver2022-ps/windowsserverbackup/Get-WBBackupVolumeBrowsePath.md b/docset/winserver2022-ps/windowsserverbackup/Get-WBBackupVolumeBrowsePath.md index 5349afa239..59e611b69e 100644 --- a/docset/winserver2022-ps/windowsserverbackup/Get-WBBackupVolumeBrowsePath.md +++ b/docset/winserver2022-ps/windowsserverbackup/Get-WBBackupVolumeBrowsePath.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbbackupvolumebrowsepath?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbbackupvolumebrowsepath?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBBackupVolumeBrowsePath --- diff --git a/docset/winserver2022-ps/windowsserverbackup/Get-WBBareMetalRecovery.md b/docset/winserver2022-ps/windowsserverbackup/Get-WBBareMetalRecovery.md index 3dc45ef032..ade6a30c45 100644 --- a/docset/winserver2022-ps/windowsserverbackup/Get-WBBareMetalRecovery.md +++ b/docset/winserver2022-ps/windowsserverbackup/Get-WBBareMetalRecovery.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbbaremetalrecovery?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbbaremetalrecovery?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBBareMetalRecovery --- diff --git a/docset/winserver2022-ps/windowsserverbackup/Get-WBDisk.md b/docset/winserver2022-ps/windowsserverbackup/Get-WBDisk.md index 682b3573aa..56b8e19197 100644 --- a/docset/winserver2022-ps/windowsserverbackup/Get-WBDisk.md +++ b/docset/winserver2022-ps/windowsserverbackup/Get-WBDisk.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbdisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbdisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBDisk --- diff --git a/docset/winserver2022-ps/windowsserverbackup/Get-WBFileSpec.md b/docset/winserver2022-ps/windowsserverbackup/Get-WBFileSpec.md index 8f680e2b1b..a9bb3648be 100644 --- a/docset/winserver2022-ps/windowsserverbackup/Get-WBFileSpec.md +++ b/docset/winserver2022-ps/windowsserverbackup/Get-WBFileSpec.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbfilespec?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbfilespec?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBFileSpec --- diff --git a/docset/winserver2022-ps/windowsserverbackup/Get-WBJob.md b/docset/winserver2022-ps/windowsserverbackup/Get-WBJob.md index ccdb8fbab9..bbe359410a 100644 --- a/docset/winserver2022-ps/windowsserverbackup/Get-WBJob.md +++ b/docset/winserver2022-ps/windowsserverbackup/Get-WBJob.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbjob?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbjob?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBJob --- diff --git a/docset/winserver2022-ps/windowsserverbackup/Get-WBPerformanceConfiguration.md b/docset/winserver2022-ps/windowsserverbackup/Get-WBPerformanceConfiguration.md index d4a44a5bd9..9c26b38cb4 100644 --- a/docset/winserver2022-ps/windowsserverbackup/Get-WBPerformanceConfiguration.md +++ b/docset/winserver2022-ps/windowsserverbackup/Get-WBPerformanceConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbperformanceconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbperformanceconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBPerformanceConfiguration --- diff --git a/docset/winserver2022-ps/windowsserverbackup/Get-WBPolicy.md b/docset/winserver2022-ps/windowsserverbackup/Get-WBPolicy.md index b7e2804cae..eb7e39d4aa 100644 --- a/docset/winserver2022-ps/windowsserverbackup/Get-WBPolicy.md +++ b/docset/winserver2022-ps/windowsserverbackup/Get-WBPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBPolicy --- diff --git a/docset/winserver2022-ps/windowsserverbackup/Get-WBSchedule.md b/docset/winserver2022-ps/windowsserverbackup/Get-WBSchedule.md index bba0a8310e..cdf1f030aa 100644 --- a/docset/winserver2022-ps/windowsserverbackup/Get-WBSchedule.md +++ b/docset/winserver2022-ps/windowsserverbackup/Get-WBSchedule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbschedule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbschedule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBSchedule --- diff --git a/docset/winserver2022-ps/windowsserverbackup/Get-WBSummary.md b/docset/winserver2022-ps/windowsserverbackup/Get-WBSummary.md index dd05a4b07d..802a26a4c1 100644 --- a/docset/winserver2022-ps/windowsserverbackup/Get-WBSummary.md +++ b/docset/winserver2022-ps/windowsserverbackup/Get-WBSummary.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbsummary?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbsummary?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBSummary --- diff --git a/docset/winserver2022-ps/windowsserverbackup/Get-WBSystemState.md b/docset/winserver2022-ps/windowsserverbackup/Get-WBSystemState.md index b808588d48..a3e504a150 100644 --- a/docset/winserver2022-ps/windowsserverbackup/Get-WBSystemState.md +++ b/docset/winserver2022-ps/windowsserverbackup/Get-WBSystemState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbsystemstate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbsystemstate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBSystemState --- diff --git a/docset/winserver2022-ps/windowsserverbackup/Get-WBVirtualMachine.md b/docset/winserver2022-ps/windowsserverbackup/Get-WBVirtualMachine.md index 6f9ee444c5..1254147ec8 100644 --- a/docset/winserver2022-ps/windowsserverbackup/Get-WBVirtualMachine.md +++ b/docset/winserver2022-ps/windowsserverbackup/Get-WBVirtualMachine.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbvirtualmachine?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbvirtualmachine?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBVirtualMachine --- diff --git a/docset/winserver2022-ps/windowsserverbackup/Get-WBVolume.md b/docset/winserver2022-ps/windowsserverbackup/Get-WBVolume.md index 24a6d12243..4c4861d4fe 100644 --- a/docset/winserver2022-ps/windowsserverbackup/Get-WBVolume.md +++ b/docset/winserver2022-ps/windowsserverbackup/Get-WBVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbvolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbvolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBVolume --- diff --git a/docset/winserver2022-ps/windowsserverbackup/Get-WBVssBackupOption.md b/docset/winserver2022-ps/windowsserverbackup/Get-WBVssBackupOption.md index a6681c82e9..bf4c04ed55 100644 --- a/docset/winserver2022-ps/windowsserverbackup/Get-WBVssBackupOption.md +++ b/docset/winserver2022-ps/windowsserverbackup/Get-WBVssBackupOption.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/get-wbvssbackupoption?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/get-wbvssbackupoption?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WBVssBackupOption --- diff --git a/docset/winserver2022-ps/windowsserverbackup/New-WBBackupTarget.md b/docset/winserver2022-ps/windowsserverbackup/New-WBBackupTarget.md index ccbdfe972d..5619807176 100644 --- a/docset/winserver2022-ps/windowsserverbackup/New-WBBackupTarget.md +++ b/docset/winserver2022-ps/windowsserverbackup/New-WBBackupTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/new-wbbackuptarget?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/new-wbbackuptarget?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WBBackupTarget --- diff --git a/docset/winserver2022-ps/windowsserverbackup/New-WBFileSpec.md b/docset/winserver2022-ps/windowsserverbackup/New-WBFileSpec.md index 5b24eb6235..430169ac57 100644 --- a/docset/winserver2022-ps/windowsserverbackup/New-WBFileSpec.md +++ b/docset/winserver2022-ps/windowsserverbackup/New-WBFileSpec.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/new-wbfilespec?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/new-wbfilespec?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WBFileSpec --- diff --git a/docset/winserver2022-ps/windowsserverbackup/New-WBPolicy.md b/docset/winserver2022-ps/windowsserverbackup/New-WBPolicy.md index 821a9402fe..75c8ca5c25 100644 --- a/docset/winserver2022-ps/windowsserverbackup/New-WBPolicy.md +++ b/docset/winserver2022-ps/windowsserverbackup/New-WBPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/new-wbpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/new-wbpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-WBPolicy --- diff --git a/docset/winserver2022-ps/windowsserverbackup/Remove-WBBackupSet.md b/docset/winserver2022-ps/windowsserverbackup/Remove-WBBackupSet.md index fadbeb6ab4..c6c9b2cb78 100644 --- a/docset/winserver2022-ps/windowsserverbackup/Remove-WBBackupSet.md +++ b/docset/winserver2022-ps/windowsserverbackup/Remove-WBBackupSet.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/remove-wbbackupset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/remove-wbbackupset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WBBackupSet --- diff --git a/docset/winserver2022-ps/windowsserverbackup/Remove-WBBackupTarget.md b/docset/winserver2022-ps/windowsserverbackup/Remove-WBBackupTarget.md index a2e7de7982..7cf35c126a 100644 --- a/docset/winserver2022-ps/windowsserverbackup/Remove-WBBackupTarget.md +++ b/docset/winserver2022-ps/windowsserverbackup/Remove-WBBackupTarget.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/remove-wbbackuptarget?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/remove-wbbackuptarget?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WBBackupTarget --- diff --git a/docset/winserver2022-ps/windowsserverbackup/Remove-WBBareMetalRecovery.md b/docset/winserver2022-ps/windowsserverbackup/Remove-WBBareMetalRecovery.md index 4677a01bb5..dd32457c58 100644 --- a/docset/winserver2022-ps/windowsserverbackup/Remove-WBBareMetalRecovery.md +++ b/docset/winserver2022-ps/windowsserverbackup/Remove-WBBareMetalRecovery.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/remove-wbbaremetalrecovery?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/remove-wbbaremetalrecovery?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WBBareMetalRecovery --- diff --git a/docset/winserver2022-ps/windowsserverbackup/Remove-WBCatalog.md b/docset/winserver2022-ps/windowsserverbackup/Remove-WBCatalog.md index b2a316a5b4..d044e85e2e 100644 --- a/docset/winserver2022-ps/windowsserverbackup/Remove-WBCatalog.md +++ b/docset/winserver2022-ps/windowsserverbackup/Remove-WBCatalog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/remove-wbcatalog?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/remove-wbcatalog?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WBCatalog --- diff --git a/docset/winserver2022-ps/windowsserverbackup/Remove-WBFileSpec.md b/docset/winserver2022-ps/windowsserverbackup/Remove-WBFileSpec.md index a8f95d52b8..6014fc261d 100644 --- a/docset/winserver2022-ps/windowsserverbackup/Remove-WBFileSpec.md +++ b/docset/winserver2022-ps/windowsserverbackup/Remove-WBFileSpec.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/remove-wbfilespec?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/remove-wbfilespec?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WBFileSpec --- diff --git a/docset/winserver2022-ps/windowsserverbackup/Remove-WBPolicy.md b/docset/winserver2022-ps/windowsserverbackup/Remove-WBPolicy.md index df59ce9f9b..1bc8cb5bcf 100644 --- a/docset/winserver2022-ps/windowsserverbackup/Remove-WBPolicy.md +++ b/docset/winserver2022-ps/windowsserverbackup/Remove-WBPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/remove-wbpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/remove-wbpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WBPolicy --- diff --git a/docset/winserver2022-ps/windowsserverbackup/Remove-WBSystemState.md b/docset/winserver2022-ps/windowsserverbackup/Remove-WBSystemState.md index 17250e424c..2e1986834d 100644 --- a/docset/winserver2022-ps/windowsserverbackup/Remove-WBSystemState.md +++ b/docset/winserver2022-ps/windowsserverbackup/Remove-WBSystemState.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/remove-wbsystemstate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/remove-wbsystemstate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WBSystemState --- diff --git a/docset/winserver2022-ps/windowsserverbackup/Remove-WBVirtualMachine.md b/docset/winserver2022-ps/windowsserverbackup/Remove-WBVirtualMachine.md index 23409ee2b3..a53e769264 100644 --- a/docset/winserver2022-ps/windowsserverbackup/Remove-WBVirtualMachine.md +++ b/docset/winserver2022-ps/windowsserverbackup/Remove-WBVirtualMachine.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/remove-wbvirtualmachine?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/remove-wbvirtualmachine?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WBVirtualMachine --- diff --git a/docset/winserver2022-ps/windowsserverbackup/Remove-WBVolume.md b/docset/winserver2022-ps/windowsserverbackup/Remove-WBVolume.md index 0702401a88..597464a9e1 100644 --- a/docset/winserver2022-ps/windowsserverbackup/Remove-WBVolume.md +++ b/docset/winserver2022-ps/windowsserverbackup/Remove-WBVolume.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/remove-wbvolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/remove-wbvolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-WBVolume --- diff --git a/docset/winserver2022-ps/windowsserverbackup/Restore-ACL.md b/docset/winserver2022-ps/windowsserverbackup/Restore-ACL.md index 9a823bf6a2..4a041b5533 100644 --- a/docset/winserver2022-ps/windowsserverbackup/Restore-ACL.md +++ b/docset/winserver2022-ps/windowsserverbackup/Restore-ACL.md @@ -3,7 +3,7 @@ description: The Restore-ACL cmdlet restores the security descriptor of a specif external help file: wsbcmdlet.dll-help.xml Module Name: WindowsServerBackup ms.date: 09/10/2021 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/restore-acl?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/restore-acl?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-ACL --- diff --git a/docset/winserver2022-ps/windowsserverbackup/Restore-WBCatalog.md b/docset/winserver2022-ps/windowsserverbackup/Restore-WBCatalog.md index 27377fe85c..c6b37b8f9c 100644 --- a/docset/winserver2022-ps/windowsserverbackup/Restore-WBCatalog.md +++ b/docset/winserver2022-ps/windowsserverbackup/Restore-WBCatalog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/restore-wbcatalog?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/restore-wbcatalog?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Restore-WBCatalog --- diff --git a/docset/winserver2022-ps/windowsserverbackup/Resume-WBBackup.md b/docset/winserver2022-ps/windowsserverbackup/Resume-WBBackup.md index 9c27acee47..888b6f8d97 100644 --- a/docset/winserver2022-ps/windowsserverbackup/Resume-WBBackup.md +++ b/docset/winserver2022-ps/windowsserverbackup/Resume-WBBackup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/resume-wbbackup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/resume-wbbackup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-WBBackup --- diff --git a/docset/winserver2022-ps/windowsserverbackup/Resume-WBVolumeRecovery.md b/docset/winserver2022-ps/windowsserverbackup/Resume-WBVolumeRecovery.md index 8797537860..4c02db8bb2 100644 --- a/docset/winserver2022-ps/windowsserverbackup/Resume-WBVolumeRecovery.md +++ b/docset/winserver2022-ps/windowsserverbackup/Resume-WBVolumeRecovery.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/resume-wbvolumerecovery?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/resume-wbvolumerecovery?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-WBVolumeRecovery --- diff --git a/docset/winserver2022-ps/windowsserverbackup/Set-WBPerformanceConfiguration.md b/docset/winserver2022-ps/windowsserverbackup/Set-WBPerformanceConfiguration.md index 4da5babd6b..5d5a833028 100644 --- a/docset/winserver2022-ps/windowsserverbackup/Set-WBPerformanceConfiguration.md +++ b/docset/winserver2022-ps/windowsserverbackup/Set-WBPerformanceConfiguration.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/set-wbperformanceconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/set-wbperformanceconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WBPerformanceConfiguration --- diff --git a/docset/winserver2022-ps/windowsserverbackup/Set-WBPolicy.md b/docset/winserver2022-ps/windowsserverbackup/Set-WBPolicy.md index 29ab97dd60..83adf2b6db 100644 --- a/docset/winserver2022-ps/windowsserverbackup/Set-WBPolicy.md +++ b/docset/winserver2022-ps/windowsserverbackup/Set-WBPolicy.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/set-wbpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/set-wbpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WBPolicy --- diff --git a/docset/winserver2022-ps/windowsserverbackup/Set-WBSchedule.md b/docset/winserver2022-ps/windowsserverbackup/Set-WBSchedule.md index 0c2f22e775..51041e8061 100644 --- a/docset/winserver2022-ps/windowsserverbackup/Set-WBSchedule.md +++ b/docset/winserver2022-ps/windowsserverbackup/Set-WBSchedule.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/set-wbschedule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/set-wbschedule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WBSchedule --- diff --git a/docset/winserver2022-ps/windowsserverbackup/Set-WBVssBackupOption.md b/docset/winserver2022-ps/windowsserverbackup/Set-WBVssBackupOption.md index ec1ac82b76..668725c75e 100644 --- a/docset/winserver2022-ps/windowsserverbackup/Set-WBVssBackupOption.md +++ b/docset/winserver2022-ps/windowsserverbackup/Set-WBVssBackupOption.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/set-wbvssbackupoption?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/set-wbvssbackupoption?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-WBVssBackupOption --- diff --git a/docset/winserver2022-ps/windowsserverbackup/Start-WBApplicationRecovery.md b/docset/winserver2022-ps/windowsserverbackup/Start-WBApplicationRecovery.md index 4dd0c641c2..9910493742 100644 --- a/docset/winserver2022-ps/windowsserverbackup/Start-WBApplicationRecovery.md +++ b/docset/winserver2022-ps/windowsserverbackup/Start-WBApplicationRecovery.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/start-wbapplicationrecovery?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/start-wbapplicationrecovery?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-WBApplicationRecovery --- diff --git a/docset/winserver2022-ps/windowsserverbackup/Start-WBBackup.md b/docset/winserver2022-ps/windowsserverbackup/Start-WBBackup.md index 4921e4bf59..5a2e5e9d91 100644 --- a/docset/winserver2022-ps/windowsserverbackup/Start-WBBackup.md +++ b/docset/winserver2022-ps/windowsserverbackup/Start-WBBackup.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/start-wbbackup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/start-wbbackup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-WBBackup --- diff --git a/docset/winserver2022-ps/windowsserverbackup/Start-WBFileRecovery.md b/docset/winserver2022-ps/windowsserverbackup/Start-WBFileRecovery.md index d94eb52582..593cc54ce3 100644 --- a/docset/winserver2022-ps/windowsserverbackup/Start-WBFileRecovery.md +++ b/docset/winserver2022-ps/windowsserverbackup/Start-WBFileRecovery.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/start-wbfilerecovery?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/start-wbfilerecovery?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-WBFileRecovery --- diff --git a/docset/winserver2022-ps/windowsserverbackup/Start-WBHyperVRecovery.md b/docset/winserver2022-ps/windowsserverbackup/Start-WBHyperVRecovery.md index 98746b06c1..fe4e151fb6 100644 --- a/docset/winserver2022-ps/windowsserverbackup/Start-WBHyperVRecovery.md +++ b/docset/winserver2022-ps/windowsserverbackup/Start-WBHyperVRecovery.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/start-wbhypervrecovery?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/start-wbhypervrecovery?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-WBHyperVRecovery --- diff --git a/docset/winserver2022-ps/windowsserverbackup/Start-WBSystemStateRecovery.md b/docset/winserver2022-ps/windowsserverbackup/Start-WBSystemStateRecovery.md index 7f1672daf9..fca5501dab 100644 --- a/docset/winserver2022-ps/windowsserverbackup/Start-WBSystemStateRecovery.md +++ b/docset/winserver2022-ps/windowsserverbackup/Start-WBSystemStateRecovery.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/start-wbsystemstaterecovery?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/start-wbsystemstaterecovery?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-WBSystemStateRecovery --- diff --git a/docset/winserver2022-ps/windowsserverbackup/Start-WBVolumeRecovery.md b/docset/winserver2022-ps/windowsserverbackup/Start-WBVolumeRecovery.md index 12c68de618..4d13ede7b7 100644 --- a/docset/winserver2022-ps/windowsserverbackup/Start-WBVolumeRecovery.md +++ b/docset/winserver2022-ps/windowsserverbackup/Start-WBVolumeRecovery.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/start-wbvolumerecovery?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/start-wbvolumerecovery?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-WBVolumeRecovery --- diff --git a/docset/winserver2022-ps/windowsserverbackup/Stop-WBJob.md b/docset/winserver2022-ps/windowsserverbackup/Stop-WBJob.md index bcc675ad78..2a6c42a169 100644 --- a/docset/winserver2022-ps/windowsserverbackup/Stop-WBJob.md +++ b/docset/winserver2022-ps/windowsserverbackup/Stop-WBJob.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: wsbcmdlet.dll-Help.xml Module Name: WindowsServerBackup ms.date: 12/27/2016 -online version: https://docs.microsoft.com/powershell/module/windowsserverbackup/stop-wbjob?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsserverbackup/stop-wbjob?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-WBJob --- diff --git a/docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md b/docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md index 2d03715f01..940475fdaf 100644 --- a/docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md +++ b/docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md @@ -3,7 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: WindowsUpdateLog.psm1-help.xml Module Name: WindowsUpdate ms.date: 12/20/2016 -online version: https://docs.microsoft.com/powershell/module/windowsupdate/get-windowsupdatelog?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/windowsupdate/get-windowsupdatelog?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-WindowsUpdateLog --- From 450827b68e422d5a48cb23b5071b671055ac4905 Mon Sep 17 00:00:00 2001 From: Sean Wheeler Date: Tue, 20 Sep 2022 13:17:42 -0500 Subject: [PATCH 249/965] Update README --- README.md | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ef82113286..17c6ac7a97 100644 --- a/README.md +++ b/README.md @@ -1,29 +1,32 @@ # Windows IT professional documentation -Welcome! This repository houses the Windows 10, Windows Server 2016, and MDOP PowerShell module docs that are written for IT professionals. +This repository houses the Windows client, Windows Server, and MDOP PowerShell module docs that are +written for IT professionals. Edits to this content are published in the following places: -- [Windows 10 and Windows Server 2016][1] -- [Microsoft Desktop Optimization Pack][2] +- Various versions of [Windows client and Windows Server][1] +- [Microsoft Desktop Optimization Pack][2] ## PowerShell Updatable Help (CabGen) CI Build Status -[![Build Status][3]/GitHub_MicrosoftDocs_windows-powershell-docs/46a32786-a1f6-1250-e1e1-2a4554025dc9_cabgen_Publish-Updatable-Help?repoName=MicrosoftDocs%2Fwindows-powershell-docs&branchName=live)](https://apidrop.visualstudio.com/Content%20CI/_build/latest?definitionId=5077&repoName=MicrosoftDocs%2Fwindows-powershell-docs&branchName=live) +[![Build Status](https://apidrop.visualstudio.com/Content%20CI/_apis/build/status/PROD/CabGen(PowerShell_Updatable_Help)/GitHub_MicrosoftDocs_windows-powershell-docs/46a32786-a1f6-1250-e1e1-2a4554025dc9_cabgen_Publish-Updatable-Help?repoName=MicrosoftDocs%2Fwindows-powershell-docs&branchName=live)](https://apidrop.visualstudio.com/Content%20CI/_build/latest?definitionId=5077&repoName=MicrosoftDocs%2Fwindows-powershell-docs&branchName=live) ## Contributing -We actively merge contributions into this repository via [pull request][4] into the *main* branch. -If you are not a Microsoft employee, before you submit a pull request you must [sign a Contribution License Agreement][5] to ensure that the community is free to use your submissions. +We actively merge contributions into this repository via [pull request][4] into the _main_ branch. +If you are not a Microsoft employee, before you submit a pull request you must sign a +[Contribution License Agreement][5] to ensure that the community is free to use your submissions. For more information on contributing, read our [contributions guide][6]. -This project has adopted the [Microsoft Open Source Code of Conduct][7]. For more information, see the [Code of Conduct FAQ][8] or contact [opencode@microsoft.com][9] with any additional questions or comments. +This project has adopted the [Microsoft Open Source Code of Conduct][7]. For more information, see +the [Code of Conduct FAQ][8] or contact [opencode@microsoft.com][9] with any additional questions or +comments. -[1]: https://docs.microsoft.com/powershell/windows/get-started?view=win10-ps&preserve-view=true -[2]: https://docs.microsoft.com/powershell/mdop/get-started -[3]: https://apidrop.visualstudio.com/Content%20CI/_apis/build/status/PROD/CabGen(PowerShell_Updatable_Help +[1]: https://learn.microsoft.com/powershell/windows/get-started +[2]: https://learn.microsoft.com/powershell/mdop/get-started [4]: https://help.github.com/articles/using-pull-requests/ [5]: https://cla.microsoft.com/ [6]: CONTRIBUTING.md From bc96b4b238e4f6884e298b316845fef418e146d0 Mon Sep 17 00:00:00 2001 From: Alekhya Jupudi <89069896+alekyaj@users.noreply.github.com> Date: Mon, 26 Sep 2022 11:26:28 +0530 Subject: [PATCH 250/965] Update 'DisableRdpParsing' description The updates here are made as per Task 6725828: SECURITY: MDAV SetPreference Powershell cmdlet for -DisableRdpParsing has the wrong info. Thanks! --- docset/winserver2022-ps/defender/Set-MpPreference.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/defender/Set-MpPreference.md b/docset/winserver2022-ps/defender/Set-MpPreference.md index 01f1026103..b81ebded5a 100644 --- a/docset/winserver2022-ps/defender/Set-MpPreference.md +++ b/docset/winserver2022-ps/defender/Set-MpPreference.md @@ -575,8 +575,7 @@ Accept wildcard characters: False ``` ### -DisableRdpParsing -Specifies whether to inspect only outbound connections. -By default, Network Protection inspects both inbound and outbound connections. +The setting controls whether we parse RDP traffic to look for malicious attacks using the RDP protocol. It is not related to Inbound or Outbound. ```yaml Type: Boolean From 2a30fe3b2f4336db54a4703afcf1dac11808076e Mon Sep 17 00:00:00 2001 From: Alekhya Jupudi <89069896+alekyaj@users.noreply.github.com> Date: Mon, 26 Sep 2022 14:30:25 +0530 Subject: [PATCH 251/965] Update Set-MpPreference.md --- docset/winserver2022-ps/defender/Set-MpPreference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/defender/Set-MpPreference.md b/docset/winserver2022-ps/defender/Set-MpPreference.md index b81ebded5a..2edb3d7e09 100644 --- a/docset/winserver2022-ps/defender/Set-MpPreference.md +++ b/docset/winserver2022-ps/defender/Set-MpPreference.md @@ -575,7 +575,7 @@ Accept wildcard characters: False ``` ### -DisableRdpParsing -The setting controls whether we parse RDP traffic to look for malicious attacks using the RDP protocol. It is not related to Inbound or Outbound. +This setting controls whether to parse RDP traffic to look for malicious attacks using the RDP protocol. It is not related to Inbound or Outbound. ```yaml Type: Boolean From 68e48e1bb72f8ae2b9a7f7729053aac4b4a89719 Mon Sep 17 00:00:00 2001 From: Alekhya Jupudi <89069896+alekyaj@users.noreply.github.com> Date: Mon, 26 Sep 2022 19:20:49 +0530 Subject: [PATCH 252/965] Update Set-MpPreference.md --- docset/winserver2022-ps/defender/Set-MpPreference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/defender/Set-MpPreference.md b/docset/winserver2022-ps/defender/Set-MpPreference.md index 2edb3d7e09..2689fbf284 100644 --- a/docset/winserver2022-ps/defender/Set-MpPreference.md +++ b/docset/winserver2022-ps/defender/Set-MpPreference.md @@ -575,7 +575,7 @@ Accept wildcard characters: False ``` ### -DisableRdpParsing -This setting controls whether to parse RDP traffic to look for malicious attacks using the RDP protocol. It is not related to Inbound or Outbound. +This setting controls whether to parse RDP traffic to look for malicious attacks using the RDP protocol. ```yaml Type: Boolean From b9685699355812b57ba1ba183dc80306708154ad Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Tue, 27 Sep 2022 11:54:51 +0100 Subject: [PATCH 253/965] Bulk reflow of the clusterawareupdatingmodule --- .../Add-CauClusterRole.md | 263 ++++++++++------- .../ClusterAwareUpdating.md | 17 +- .../Disable-CauClusterRole.md | 25 +- .../Enable-CauClusterRole.md | 25 +- .../clusterawareupdating/Export-CauReport.md | 27 +- .../Get-CauClusterRole.md | 13 +- .../clusterawareupdating/Get-CauPlugin.md | 25 +- .../clusterawareupdating/Get-CauReport.md | 35 ++- .../clusterawareupdating/Get-CauRun.md | 31 +- .../clusterawareupdating/Invoke-CauRun.md | 230 +++++++++------ .../clusterawareupdating/Invoke-CauScan.md | 119 +++++--- .../Register-CauPlugin.md | 25 +- .../Remove-CauClusterRole.md | 28 +- .../Save-CauDebugTrace.md | 28 +- .../Set-CauClusterRole.md | 264 ++++++++++-------- .../clusterawareupdating/Stop-CauRun.md | 25 +- .../clusterawareupdating/Test-CauSetup.md | 18 +- .../Unregister-CauPlugin.md | 12 +- 18 files changed, 738 insertions(+), 472 deletions(-) diff --git a/docset/winserver2022-ps/clusterawareupdating/Add-CauClusterRole.md b/docset/winserver2022-ps/clusterawareupdating/Add-CauClusterRole.md index da61571269..48a2a48a2a 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Add-CauClusterRole.md +++ b/docset/winserver2022-ps/clusterawareupdating/Add-CauClusterRole.md @@ -17,35 +17,39 @@ Adds the CAU clustered role that provides the self-updating functionality to the ### MonthlyDayOfWeek (Default) ``` -Add-CauClusterRole [-VirtualComputerObjectName ] [-GroupName ] [-StartDate ] - [-DaysOfWeek ] [-WeeksOfMonth ] [-CauPluginName ] - [-CauPluginArguments ] [-MaxFailedNodes ] [-MaxRetriesPerNode ] - [-NodeOrder ] [-PreUpdateScript ] [-PostUpdateScript ] [-ConfigurationName ] - [-RequireAllNodesOnline] [-WarnAfter ] [-StopAfter ] [-RebootTimeoutMinutes ] - [-SeparateReboots] [-RunPluginsSerially] [-StopOnPluginFailure] [-EnableFirewallRules] - [-FailbackMode ] [-SuspendClusterNodeTimeoutMinutes ] [[-ClusterName] ] - [[-Credential] ] [-Force] [-WhatIf] [-Confirm] [] +Add-CauClusterRole [-VirtualComputerObjectName ] [-GroupName ] +[-StartDate ] [-DaysOfWeek ] [-WeeksOfMonth ] +[-CauPluginName ] [-CauPluginArguments ] [-MaxFailedNodes ] +[-MaxRetriesPerNode ] [-NodeOrder ] [-PreUpdateScript ] +[-PostUpdateScript ] [-ConfigurationName ] [-RequireAllNodesOnline] +[-WarnAfter ] [-StopAfter ] [-RebootTimeoutMinutes ] [-SeparateReboots] +[-RunPluginsSerially] [-StopOnPluginFailure] [-EnableFirewallRules] [-FailbackMode ] +[-SuspendClusterNodeTimeoutMinutes ] [[-ClusterName] ] [[-Credential] ] +[-Force] [-WhatIf] [-Confirm] [] ``` ### Weekly ``` -Add-CauClusterRole [-VirtualComputerObjectName ] [-GroupName ] [-StartDate ] - [-DaysOfWeek ] [-IntervalWeeks ] [-CauPluginName ] - [-CauPluginArguments ] [-MaxFailedNodes ] [-MaxRetriesPerNode ] - [-NodeOrder ] [-PreUpdateScript ] [-PostUpdateScript ] [-ConfigurationName ] - [-RequireAllNodesOnline] [-WarnAfter ] [-StopAfter ] [-RebootTimeoutMinutes ] - [-SeparateReboots] [-RunPluginsSerially] [-StopOnPluginFailure] [-EnableFirewallRules] - [-FailbackMode ] [-SuspendClusterNodeTimeoutMinutes ] [[-ClusterName] ] - [[-Credential] ] [-Force] [-WhatIf] [-Confirm] [] +Add-CauClusterRole [-VirtualComputerObjectName ] [-GroupName ] +[-StartDate ] [-DaysOfWeek ] [-IntervalWeeks ] +[-CauPluginName ] [-CauPluginArguments ] [-MaxFailedNodes ] +[-MaxRetriesPerNode ] [-NodeOrder ] [-PreUpdateScript ] +[-PostUpdateScript ] [-ConfigurationName ] [-RequireAllNodesOnline] +[-WarnAfter ] [-StopAfter ] [-RebootTimeoutMinutes ] [-SeparateReboots] +[-RunPluginsSerially] [-StopOnPluginFailure] [-EnableFirewallRules] [-FailbackMode ] +[-SuspendClusterNodeTimeoutMinutes ] [[-ClusterName] ] [[-Credential] ] +[-Force] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Add-CauClusterRole** cmdlet adds the Cluster-Aware Updating (CAU) clustered role that provides the self-updating functionality to the specified cluster. -When the CAU clustered role has been added to a cluster, the failover cluster can update itself on the schedule that is specified by the user, without requiring an external computer to coordinate the cluster updating process. +The **Add-CauClusterRole** cmdlet adds the Cluster-Aware Updating (CAU) clustered role that provides +the self-updating functionality to the specified cluster. When the CAU clustered role has been added +to a cluster, the failover cluster can update itself on the schedule that is specified by the user, +without requiring an external computer to coordinate the cluster updating process. -To run this cmdlet, Windows PowerShell® remoting must be enabled on each node. -To do this, run the **Enable-PSRemoting** cmdlet. -In addition, ensure that the Windows Remote Management - Compatibility Mode (HTTP-In) firewall exception is enabled on each node. +To run this cmdlet, Windows PowerShell® remoting must be enabled on each node. To do this, run the +**Enable-PSRemoting** cmdlet. In addition, ensure that the Windows Remote Management - Compatibility +Mode (HTTP-In) firewall exception is enabled on each node. ## EXAMPLES @@ -55,12 +59,13 @@ PS C:\> Add-CauClusterRole -ClusterName "CONTOSO-FC1" -DaysOfWeek Tuesday,Saturd ``` This command adds the CAU clustered role, using a default name, on the cluster called CONTOSO-FC1. -The CAU clustered role is configured to perform Updating Runs on Tuesdays and Saturdays on the second and fourth weeks of each month. -In an Updating Run, the maximum number of failed nodes is two and the maximum number of retries per node is two. -A script called verifyupdatesinstalled.ps1 runs on each node after it has been fully updated. -Before an Updating Run can begin, all the nodes of that cluster must be running. -If it is not already enabled, the Remote Shutdown Windows Firewall rule group will be enabled on each cluster node. -Because the command uses the *Force* parameter, the cmdlet runs without displaying confirmation prompts. +The CAU clustered role is configured to perform Updating Runs on Tuesdays and Saturdays on the +second and fourth weeks of each month. In an Updating Run, the maximum number of failed nodes is two +and the maximum number of retries per node is two. A script called verifyupdatesinstalled.ps1 runs +on each node after it has been fully updated. Before an Updating Run can begin, all the nodes of +that cluster must be running. If it is not already enabled, the Remote Shutdown Windows Firewall +rule group will be enabled on each cluster node. Because the command uses the *Force* parameter, the +cmdlet runs without displaying confirmation prompts. ### Example 2: Add a CAU clustered role on the specified cluster at a specific interval ``` @@ -68,11 +73,13 @@ PS C:\> Add-CauClusterRole -ClusterName "CONTOSO-FC1" -DaysOfWeek Tuesday,Saturd ``` This command adds the CAU clustered role, using a default name, on the cluster called CONTOSO-FC1. -The CAU clustered role is configured to perform Updating Runs on Tuesdays and Saturdays at an interval of every three weeks. -In an Updating Run, the maximum number of failed nodes is two and the maximum number of retries per node is two. -Updating Runs can begin even when the nodes of the cluster are not all running (if the cluster itself has quorum and is running). -If it is not already enabled, the Remote Shutdown Windows Firewall rule group will be enabled on each cluster node. -Because the command uses the *Force* parameter, the cmdlet runs without displaying confirmation prompts. +The CAU clustered role is configured to perform Updating Runs on Tuesdays and Saturdays at an +interval of every three weeks. In an Updating Run, the maximum number of failed nodes is two and the +maximum number of retries per node is two. Updating Runs can begin even when the nodes of the +cluster are not all running (if the cluster itself has quorum and is running). If it is not already +enabled, the Remote Shutdown Windows Firewall rule group will be enabled on each cluster node. +Because the command uses the *Force* parameter, the cmdlet runs without displaying confirmation +prompts. ### Example 3: Add a CAU clustered role on the specified cluster using plug-ins ``` @@ -80,10 +87,14 @@ PS C:\> Add-CauClusterRole -ClusterName "CONTOSO-FC1" -CauPluginName Microsoft.W ``` This command adds the CAU clustered role, using a default name, on the cluster called CONTOSO-FC1. -The CAU clustered role is configured to perform updates using the **Microsoft.WindowsUpdatePlugin** plug-in with the optional *IncludeRecommendedUpdates* parameter set to True, and using the **Microsoft.HotfixPlugin plug-in** using the hotfix root folder \\\\CauHotfixSrv\shareName and the default hotfix configuration file. -If a failure occurs during the installation of updates on a node by **Microsoft.WindowsUpdatePlugin**, updates are applied by **Microsoft.HotfixPlugin plug-in**. -If it is not already enabled, the Remote Shutdown Windows Firewall rule group is enabled on each cluster node. -Because the command uses the *Force* parameter, the cmdlet runs without displaying confirmation prompts. +The CAU clustered role is configured to perform updates using the **Microsoft.WindowsUpdatePlugin** +plug-in with the optional *IncludeRecommendedUpdates* parameter set to True, and using the +**Microsoft.HotfixPlugin plug-in** using the hotfix root folder \\\\CauHotfixSrv\shareName and the +default hotfix configuration file. If a failure occurs during the installation of updates on a node +by **Microsoft.WindowsUpdatePlugin**, updates are applied by **Microsoft.HotfixPlugin plug-in**. If +it is not already enabled, the Remote Shutdown Windows Firewall rule group is enabled on each +cluster node. Because the command uses the *Force* parameter, the cmdlet runs without displaying +confirmation prompts. ## PARAMETERS @@ -93,37 +104,45 @@ For instance, to specify a Domain argument for one plug-in: - `@{Domain=Domain.local}` You can specify multiple pairs in a set separated with semicolons. For instance: -- `@{name1=value1;name2=value2;name3=value3}` -These name=value pairs must be meaningful to the *CauPluginName* parameter that you specify. -If you specify arguments for more than one plug-in, provide the sets of name=value pairs in the order that you pass values in **CauPluginName**, separated by commas. -For instance: +- `@{name1=value1;name2=value2;name3=value3}` These name=value pairs must be meaningful to the + *CauPluginName* parameter that you specify. If you specify arguments for more than one plug-in, + provide the sets of name=value pairs in the order that you pass values in **CauPluginName**, + separated by commas. For instance: - `@{name1=value1;name2=value2;name3=value3},@{name4=value4;name5=value5}` For the default **Microsoft.WindowsUpdatePlugin** plug-in, no arguments are needed. The following arguments are optional: -- **'IncludeRecommendedUpdates'='\'**: Boolean value to indicate that recommended updates will be applied in addition to important updates on each node. -If not specified, the default value is False. -- A standard Windows Update Agent query string that specifies criteria used by the Windows Update Agent to filter the updates that will be applied to each node. -For a name, use **QueryString** and for a value, enclose the full query in quotation marks. -If not specified, then the **Microsoft.WindowsUpdatePlugin** plug-in by default uses the following argument: -- `QueryString="IsInstalled=0 and Type='Software' and IsHidden=0 and IsAssigned=1"` -For more information about query strings for the default **Microsoft.WindowsUpdatePlugin** plug-in and the criteria such as IsInstalled that can be included in the query strings, see [IUpdateSearcher::Search method](https://go.microsoft.com/fwlink/p/?LinkId=223304). +- **'IncludeRecommendedUpdates'='\'**: Boolean value to indicate that recommended updates + will be applied in addition to important updates on each node. If not specified, the default value + is False. +- A standard Windows Update Agent query string that specifies criteria used by the Windows Update + Agent to filter the updates that will be applied to each node. For a name, use **QueryString** and + for a value, enclose the full query in quotation marks. If not specified, then the + **Microsoft.WindowsUpdatePlugin** plug-in by default uses the following argument: +- `QueryString="IsInstalled=0 and Type='Software' and IsHidden=0 and IsAssigned=1"` For more + information about query strings for the default **Microsoft.WindowsUpdatePlugin** plug-in and the + criteria such as IsInstalled that can be included in the query strings, see + [IUpdateSearcher::Search method](https://go.microsoft.com/fwlink/p/?LinkId=223304). For the **Microsoft.HotfixPlugin** plug-in. the following argument is required: -- **HotfixRootFolderPath=\**: The UNC path to a hotfix root folder in an SMB share with a structure that contains the updates to apply and that contains the hotfix configuration file +- **HotfixRootFolderPath=\**: The UNC path to a hotfix root folder in an SMB share with a + structure that contains the updates to apply and that contains the hotfix configuration file The following arguments are optional for the **Microsoft.HotfixPlugin** plug-in: -- **RequireSmbEncryption=\**: Boolean value to indicate that SMB Encryption will be enforced for accessing data from the SMB share. -If not specified, the default value is False. -To ensure the integrity of the data accessed from the SMB share, the plug-in requires that the share is enabled for either SMB signing or SMB Encryption. -- **DisableAclChecks=\**: Boolean value to indicate that the plug-in checks for sufficient permissions on the hotfix root folder and the hotfix configuration file. -If not specified, the default value is False. -- **HotfixInstallerTimeoutMinutes=\**: The length of time in minutes that the plug-in allows the hotfix installer process to return. -If not specified, the default value is 30 minutes. -- **HotfixConfigFileName=\**: Name for the hotfix configuration file. -If not specified, the default name DefaultHotfixConfigFile.xml is used. -For more information about required and optional arguments for the **Microsoft.HotfixPlugin** plug-in, see [How CAU Plug-ins Work](https://go.microsoft.com/fwlink/p/?LinkId=235333). +- **RequireSmbEncryption=\**: Boolean value to indicate that SMB Encryption will be enforced + for accessing data from the SMB share. If not specified, the default value is False. To ensure the + integrity of the data accessed from the SMB share, the plug-in requires that the share is enabled + for either SMB signing or SMB Encryption. +- **DisableAclChecks=\**: Boolean value to indicate that the plug-in checks for sufficient + permissions on the hotfix root folder and the hotfix configuration file. If not specified, the + default value is False. +- **HotfixInstallerTimeoutMinutes=\**: The length of time in minutes that the plug-in + allows the hotfix installer process to return. If not specified, the default value is 30 minutes. +- **HotfixConfigFileName=\**: Name for the hotfix configuration file. If not specified, the + default name DefaultHotfixConfigFile.xml is used. For more information about required and optional + arguments for the **Microsoft.HotfixPlugin** plug-in, see + [How CAU Plug-ins Work](https://go.microsoft.com/fwlink/p/?LinkId=235333). ```yaml Type: Hashtable[] @@ -138,11 +157,12 @@ Accept wildcard characters: False ``` ### -CauPluginName -Specifies one or more plug-ins to use when performing scans or updates. -You can specify multiple values separated with commas. -The default is the Microsoft.WindowsUpdatePlugin plug-in. -This plug-in coordinates the Windows Update Agent software resident on each cluster node, the same software that is used when updates are downloaded from Windows Update or Microsoft Update, or from a Windows Server Update Services (WSUS) server. -For more information about how plug-ins work with CAU, see [How CAU Plug-ins Work](https://go.microsoft.com/fwlink/p/?LinkId=235333). +Specifies one or more plug-ins to use when performing scans or updates. You can specify multiple +values separated with commas. The default is the Microsoft.WindowsUpdatePlugin plug-in. This plug-in +coordinates the Windows Update Agent software resident on each cluster node, the same software that +is used when updates are downloaded from Windows Update or Microsoft Update, or from a Windows +Server Update Services (WSUS) server. For more information about how plug-ins work with CAU, see +[How CAU Plug-ins Work](https://go.microsoft.com/fwlink/p/?LinkId=235333). ```yaml Type: String[] @@ -157,8 +177,9 @@ Accept wildcard characters: False ``` ### -ClusterName -Specifies the name of the cluster on which to create the CAU clustered role. -This parameter is only required when this cmdlet is not run on a failover cluster node, or this cmdlet is used to reference a failover cluster different from where the cmdlet is run. +Specifies the name of the cluster on which to create the CAU clustered role. This parameter is only +required when this cmdlet is not run on a failover cluster node, or this cmdlet is used to reference +a failover cluster different from where the cmdlet is run. ```yaml Type: String @@ -173,8 +194,11 @@ Accept wildcard characters: False ``` ### -ConfigurationName -Specifies the Windows PowerShell session configuration that defines the session in which scripts, specified by the *PreUpdateScript* and *PostUpdateScript* parameters, and cmdlets are run, and can limit the cmdlets that are available to be run. -If either a pre-update or post-update script is specified but a configuration name is not specified, then the default session configuration that is built into Windows PowerShell® is used. +Specifies the Windows PowerShell session configuration that defines the session in which scripts, +specified by the *PreUpdateScript* and *PostUpdateScript* parameters, and cmdlets are run, and can +limit the cmdlets that are available to be run. If either a pre-update or post-update script is +specified but a configuration name is not specified, then the default session configuration that is +built into Windows PowerShell® is used. ```yaml Type: String @@ -246,11 +270,15 @@ Accept wildcard characters: False ``` ### -EnableFirewallRules -Indicates that the cmdlet enables the Remote Shutdown Windows Firewall rule group on each cluster node, if it is not already enabled. -If the *EnableFirewallRules* parameter is specified, CAU will also automatically re-enable the Remote Shutdown rule group each time the CAU clustered role performs an Updating Run, in case the rules are disabled manually in the intervening time. -Enabling this rule group permits inbound communication to each cluster node during each Updating Run that allows CAU to shut down and restart the node remotely (if the installation of an update requires a restart). -If Windows Firewall is in use on the cluster nodes and the rule group is not enabled, the Updating Run will fail. -The Remote Shutdown Windows Firewall rule group is not enabled when it will conflict with Group Policy settings that are configured for Windows Firewall. +Indicates that the cmdlet enables the Remote Shutdown Windows Firewall rule group on each cluster +node, if it is not already enabled. If the *EnableFirewallRules* parameter is specified, CAU will +also automatically re-enable the Remote Shutdown rule group each time the CAU clustered role +performs an Updating Run, in case the rules are disabled manually in the intervening time. Enabling +this rule group permits inbound communication to each cluster node during each Updating Run that +allows CAU to shut down and restart the node remotely (if the installation of an update requires a +restart). If Windows Firewall is in use on the cluster nodes and the rule group is not enabled, the +Updating Run will fail. The Remote Shutdown Windows Firewall rule group is not enabled when it will +conflict with Group Policy settings that are configured for Windows Firewall. ```yaml Type: SwitchParameter @@ -265,8 +293,9 @@ Accept wildcard characters: False ``` ### -FailbackMode -Specifies the method used to bring drained workloads back to the node, at the end of updating the node. -Drained workloads are workloads that were previously running on the node, but were moved to another node. +Specifies the method used to bring drained workloads back to the node, at the end of updating the +node. Drained workloads are workloads that were previously running on the node, but were moved to +another node. The acceptable values for this parameter are: @@ -388,9 +417,11 @@ Accept wildcard characters: False ``` ### -PostUpdateScript -Specifies the path and file name for a Windows PowerShell script to run on each node after updating finishes, and just after the node is brought out of Maintenance mode. -The file name extension must be .ps1 and the total length of the path plus the file name must be no longer than 260 characters. -As a best practice, the script should be located on a disk in cluster storage, or at a highly available network share, to ensure that the script is always accessible to all the cluster nodes. +Specifies the path and file name for a Windows PowerShell script to run on each node after updating +finishes, and just after the node is brought out of Maintenance mode. The file name extension must +be .ps1 and the total length of the path plus the file name must be no longer than 260 characters. +As a best practice, the script should be located on a disk in cluster storage, or at a highly +available network share, to ensure that the script is always accessible to all the cluster nodes. ```yaml Type: String @@ -405,10 +436,12 @@ Accept wildcard characters: False ``` ### -PreUpdateScript -Specifies the path and file name for a Windows PowerShell script to run on each node before updating begins, and before the node is put into Maintenance mode. -The file name extension must be .ps1 and the total length of the path plus the file name must be no longer than 260 characters. -As a best practice, the script should be located on a disk in cluster storage, or at a highly available network share, to ensure that the script is always accessible to all the cluster nodes. -If a pre-update script fails, the node is not updated. +Specifies the path and file name for a Windows PowerShell script to run on each node before updating +begins, and before the node is put into Maintenance mode. The file name extension must be .ps1 and +the total length of the path plus the file name must be no longer than 260 characters. As a best +practice, the script should be located on a disk in cluster storage, or at a highly available +network share, to ensure that the script is always accessible to all the cluster nodes. If a +pre-update script fails, the node is not updated. ```yaml Type: String @@ -423,8 +456,8 @@ Accept wildcard characters: False ``` ### -RebootTimeoutMinutes -Specifies the time in minutes that CAU allows for the restarting of a node. -If the restart does not complete within this time, then the Updating Run on that node will be marked as failed. +Specifies the time in minutes that CAU allows for the restarting of a node. If the restart does not +complete within this time, then the Updating Run on that node will be marked as failed. ```yaml Type: Int32 @@ -439,7 +472,8 @@ Accept wildcard characters: False ``` ### -RequireAllNodesOnline -Indicates that the cmdlet enforces that all cluster nodes are online and reachable before updating begins. +Indicates that the cmdlet enforces that all cluster nodes are online and reachable before updating +begins. ```yaml Type: SwitchParameter @@ -454,9 +488,11 @@ Accept wildcard characters: False ``` ### -RunPluginsSerially -Indicates that the cmdlet CAU scans each cluster node for applicable updates and stages the updates for each plug-in in the plug-in order when multiple plug-ins are used during an Updating Run when you use the *CauPluginName* parameter. -By default, CAU scans and stages the applicable updates for all plug-ins in parallel. -Regardless of the configuration of this parameter, CAU installs the applicable updates for each plug-in sequentially. +Indicates that the cmdlet CAU scans each cluster node for applicable updates and stages the updates +for each plug-in in the plug-in order when multiple plug-ins are used during an Updating Run when +you use the *CauPluginName* parameter. By default, CAU scans and stages the applicable updates for +all plug-ins in parallel. Regardless of the configuration of this parameter, CAU installs the +applicable updates for each plug-in sequentially. The parameter is valid only when multiple plug-ins are specified in the *CauPluginName* parameter. If a single plug-in is specified, a warning appears. @@ -474,8 +510,10 @@ Accept wildcard characters: False ``` ### -SeparateReboots -Indicates that this cmdlet shuts down CAU and restarts a cluster node after each plug-in installs updates on the node, if the installation of an update by a plug-in requires a restart. -By default, during an updating run, all plug-ins complete the installation of updates on a cluster node before the node restarts one time. +Indicates that this cmdlet shuts down CAU and restarts a cluster node after each plug-in installs +updates on the node, if the installation of an update by a plug-in requires a restart. By default, +during an updating run, all plug-ins complete the installation of updates on a cluster node before +the node restarts one time. The parameter is valid only when multiple plug-ins are specified in the *CauPluginName* parameter. If a single plug-in is specified, a warning appears. @@ -508,11 +546,13 @@ Accept wildcard characters: False ``` ### -StopAfter -Specifies the time in minutes after which the updating run is canceled if it has not completed. -The time span can be expressed in the standard ways available in Windows PowerShell, for instance, `01:30:00` represents one hour and thirty minutes. -By default, the updating run is allowed an unlimited amount of time to complete. +Specifies the time in minutes after which the updating run is canceled if it has not completed. The +time span can be expressed in the standard ways available in Windows PowerShell, for instance, +`01:30:00` represents one hour and thirty minutes. By default, the updating run is allowed an +unlimited amount of time to complete. -If pre-update or post-update scripts are specified, then the entire process of running scripts and performing updates must be complete within this time limit. +If pre-update or post-update scripts are specified, then the entire process of running scripts and +performing updates must be complete within this time limit. ```yaml Type: TimeSpan @@ -528,9 +568,10 @@ Accept wildcard characters: False ### -StopOnPluginFailure Indicates that this cmdlet coordinates subsequent updates on the node when plug-ins are stopped. -When multiple plug-ins are used during an updating run, by default, a failure by one plug-in does not affect the application of updates on a node by other plug-ins. -This parameter is valid only when multiple plug-ins are specified in the *CauPluginName* parameter. -If a single plug-in is specified, a warning appears. +When multiple plug-ins are used during an updating run, by default, a failure by one plug-in does +not affect the application of updates on a node by other plug-ins. This parameter is valid only when +multiple plug-ins are specified in the *CauPluginName* parameter. If a single plug-in is specified, +a warning appears. ```yaml Type: SwitchParameter @@ -545,13 +586,15 @@ Accept wildcard characters: False ``` ### -SuspendClusterNodeTimeoutMinutes -Specifies the maximum amount of time CAU should wait for the **Suspend-ClusterNode** cmdlet to succeed if the underlying clustered space is in degraded condition. +Specifies the maximum amount of time CAU should wait for the **Suspend-ClusterNode** cmdlet to +succeed if the underlying clustered space is in degraded condition. -If **Suspend-ClusterNode** fails with ERROR_CLUSTER_SPACE_DEGRADED error, CAU will keep retrying for *SuspendClusterNodeTimeoutMinutes* or suspend the call if the command succeeds. -The retries for this error don not count towards the *MaxRetriesPerNode* parameter set by the user. +If **Suspend-ClusterNode** fails with ERROR_CLUSTER_SPACE_DEGRADED error, CAU will keep retrying for +*SuspendClusterNodeTimeoutMinutes* or suspend the call if the command succeeds. The retries for this +error don not count towards the *MaxRetriesPerNode* parameter set by the user. -The timeout value is per cluster node. -So CAU could potentially spend the amount of time specified for this value for every node in the cluster in the worst case. +The timeout value is per cluster node. So CAU could potentially spend the amount of time specified +for this value for every node in the cluster in the worst case. ```yaml Type: Int32 @@ -567,9 +610,11 @@ Accept wildcard characters: False ### -VirtualComputerObjectName Specifies the name of a pre-staged virtual computer object that is used by the CAU clustered role. -For more information, see [Steps to create computer objects in Active Directory](https://go.microsoft.com/fwlink/p/?LinkId=237624). -If not specified, then a virtual computer object is created using a generated name. -Generating a name automatically requires the cluster name object to have permissions to create the virtual computer object in Active Directory. +For more information, see +[Steps to create computer objects in Active Directory](https://go.microsoft.com/fwlink/p/?LinkId=237624). +If not specified, then a virtual computer object is created using a generated name. Generating a +name automatically requires the cluster name object to have permissions to create the virtual +computer object in Active Directory. ```yaml Type: String @@ -584,8 +629,9 @@ Accept wildcard characters: False ``` ### -WarnAfter -Specifies the time in minutes after which a warning will be logged if the Updating Run (including any pre-update and post-update scripts) has not completed. -By default, no warning will be logged, regardless of the time taken by the Updating Run. +Specifies the time in minutes after which a warning will be logged if the Updating Run (including +any pre-update and post-update scripts) has not completed. By default, no warning will be logged, +regardless of the time taken by the Updating Run. ```yaml Type: TimeSpan @@ -632,7 +678,10 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/docset/winserver2022-ps/clusterawareupdating/ClusterAwareUpdating.md b/docset/winserver2022-ps/clusterawareupdating/ClusterAwareUpdating.md index 4510ad2335..b57e56a117 100644 --- a/docset/winserver2022-ps/clusterawareupdating/ClusterAwareUpdating.md +++ b/docset/winserver2022-ps/clusterawareupdating/ClusterAwareUpdating.md @@ -11,8 +11,9 @@ title: ClusterAwareUpdating # ClusterAwareUpdating Module ## Description -This reference provides cmdlet descriptions and syntax for all Cluster-Aware Updating-specific cmdlets. -It lists the cmdlets in alphabetical order based on the verb at the beginning of the cmdlet. +This reference provides cmdlet descriptions and syntax for all Cluster-Aware Updating-specific +cmdlets. It lists the cmdlets in alphabetical order based on the verb at the beginning of the +cmdlet. ## ClusterAwareUpdating Cmdlets ### [Add-CauClusterRole](./Add-CauClusterRole.md) @@ -31,19 +32,23 @@ Exports one or more Updating Run reports into an HTML or CSV-formatted document. Gets configuration properties of the CAU clustered role on the specified cluster. ### [Get-CauPlugin](./Get-CauPlugin.md) -Gets information about one or more software updating plug-ins that are registered on the local computer. +Gets information about one or more software updating plug-ins that are registered on the local +computer. ### [Get-CauReport](./Get-CauReport.md) -Gets the Updating Run reports for all known Updating Runs, or all Updating Runs that match the specified dates or other specified parameters. +Gets the Updating Run reports for all known Updating Runs, or all Updating Runs that match the +specified dates or other specified parameters. ### [Get-CauRun](./Get-CauRun.md) Gets status information about an updating run currently in progress. ### [Invoke-CauRun](./Invoke-CauRun.md) -Performs a scan of cluster nodes for applicable updates and installs those updates through an updating run on the specified cluster. +Performs a scan of cluster nodes for applicable updates and installs those updates through an +updating run on the specified cluster. ### [Invoke-CauScan](./Invoke-CauScan.md) -Performs a scan of cluster nodes for applicable updates and gets a list of the initial set of updates that are applied to each node in a specified cluster. +Performs a scan of cluster nodes for applicable updates and gets a list of the initial set of +updates that are applied to each node in a specified cluster. ### [Register-CauPlugin](./Register-CauPlugin.md) Registers a CAU software updating plug-in on the local computer. diff --git a/docset/winserver2022-ps/clusterawareupdating/Disable-CauClusterRole.md b/docset/winserver2022-ps/clusterawareupdating/Disable-CauClusterRole.md index ce7a7a8fd7..6cf6683f41 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Disable-CauClusterRole.md +++ b/docset/winserver2022-ps/clusterawareupdating/Disable-CauClusterRole.md @@ -16,13 +16,14 @@ Suspends the self-updating functionality on the specified cluster. ## SYNTAX ``` -Disable-CauClusterRole [[-ClusterName] ] [-Credential ] [-Force] [-WhatIf] [-Confirm] - [] +Disable-CauClusterRole [[-ClusterName] ] [-Credential ] [-Force] [-WhatIf] +[-Confirm] [] ``` ## DESCRIPTION -The **Disable-CauClusterRole** cmdlet suspends the self-updating functionality on the specified cluster. -The self-updating functionality of the cluster can be re-enabled with the **Enable-CauClusterRole** cmdlet. +The **Disable-CauClusterRole** cmdlet suspends the self-updating functionality on the specified +cluster. The self-updating functionality of the cluster can be re-enabled with the +**Enable-CauClusterRole** cmdlet. ## EXAMPLES @@ -31,15 +32,16 @@ The self-updating functionality of the cluster can be re-enabled with the **Enab PS C:\> Disable-CauClusterRole -ClusterName CONTOSO-FC1 -Force ``` -This command prevents the CAU clustered role on the CONTOSO-FC1 cluster from performing Updating Runs. -The cmdlet changes the status of the CAU clustered role to Offline. -Because the command specified the *Force* parameter, the cmdlet runs without displaying confirmation prompts. +This command prevents the CAU clustered role on the CONTOSO-FC1 cluster from performing Updating +Runs. The cmdlet changes the status of the CAU clustered role to Offline. Because the command +specified the *Force* parameter, the cmdlet runs without displaying confirmation prompts. ## PARAMETERS ### -ClusterName -Specifies the name of the cluster on which to disable the self-updating functionality. -This parameter is only required when this cmdlet is not run on a failover cluster node, or this cmdlet is used to reference a failover cluster different from where the cmdlet is run. +Specifies the name of the cluster on which to disable the self-updating functionality. This +parameter is only required when this cmdlet is not run on a failover cluster node, or this cmdlet is +used to reference a failover cluster different from where the cmdlet is run. ```yaml Type: String @@ -115,7 +117,10 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/docset/winserver2022-ps/clusterawareupdating/Enable-CauClusterRole.md b/docset/winserver2022-ps/clusterawareupdating/Enable-CauClusterRole.md index a768c9b259..8042c24a89 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Enable-CauClusterRole.md +++ b/docset/winserver2022-ps/clusterawareupdating/Enable-CauClusterRole.md @@ -16,13 +16,14 @@ Re-enables the self-updating functionality on the specified cluster. ## SYNTAX ``` -Enable-CauClusterRole [[-ClusterName] ] [-Credential ] [-Force] [-WhatIf] [-Confirm] - [] +Enable-CauClusterRole [[-ClusterName] ] [-Credential ] [-Force] [-WhatIf] +[-Confirm] [] ``` ## DESCRIPTION -The **Enable-CauClusterRole** cmdlet re-enables the self-updating functionality on the specified cluster. -The self-updating functionality of the cluster can be disabled with the **Disable-CauClusterRole** cmdlet. +The **Enable-CauClusterRole** cmdlet re-enables the self-updating functionality on the specified +cluster. The self-updating functionality of the cluster can be disabled with the +**Disable-CauClusterRole** cmdlet. ## EXAMPLES @@ -31,15 +32,16 @@ The self-updating functionality of the cluster can be disabled with the **Disabl PS C:\> Enable-CauClusterRole -ClusterName "CONTOSO-FC1" -Force ``` -This command enables the CAU clustered role on the CONTOSO-FC1 cluster to begin performing Updating Runs. -The cmdlet changes the status of the CAU clustered role to Running. -Because the command specified the *Force* parameter, the cmdlet runs without displaying confirmation prompts. +This command enables the CAU clustered role on the CONTOSO-FC1 cluster to begin performing Updating +Runs. The cmdlet changes the status of the CAU clustered role to Running. Because the command +specified the *Force* parameter, the cmdlet runs without displaying confirmation prompts. ## PARAMETERS ### -ClusterName -Specifies the name of the cluster on which to enable the self-updating functionality. -This parameter is only required when this cmdlet is not run on a failover cluster node, or this cmdlet is used to reference a failover cluster different from where the cmdlet is run. +Specifies the name of the cluster on which to enable the self-updating functionality. This parameter +is only required when this cmdlet is not run on a failover cluster node, or this cmdlet is used to +reference a failover cluster different from where the cmdlet is run. ```yaml Type: String @@ -115,7 +117,10 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/docset/winserver2022-ps/clusterawareupdating/Export-CauReport.md b/docset/winserver2022-ps/clusterawareupdating/Export-CauReport.md index 56673ed63d..272075e98b 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Export-CauReport.md +++ b/docset/winserver2022-ps/clusterawareupdating/Export-CauReport.md @@ -16,16 +16,18 @@ Exports one or more Updating Run reports into an HTML or CSV-formatted document. ## SYNTAX ``` -Export-CauReport [-InputReport] [-Format] [-Path] [-PassThru] [-Force] - [-TimeZone ] [-WhatIf] [-Confirm] [] +Export-CauReport [-InputReport] [-Format] [-Path] [-PassThru] +[-Force] [-TimeZone ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Export-CauReport** cmdlet exports one or more Updating Run reports into an HTML or CSV-formatted document. -Each Run report summarizes both the node-level and cluster-level summary status for the Updating Run. +The **Export-CauReport** cmdlet exports one or more Updating Run reports into an HTML or +CSV-formatted document. Each Run report summarizes both the node-level and cluster-level summary +status for the Updating Run. -Pipe one or more reports from the **Get-CauReport** cmdlet with the *Detailed* parameter, and control the content in the report by specifying appropriate parameters for the **Get-CauReport** cmdlet. -For example, the *Last* parameter specifies the most recent Updating Run. +Pipe one or more reports from the **Get-CauReport** cmdlet with the *Detailed* parameter, and +control the content in the report by specifying appropriate parameters for the **Get-CauReport** +cmdlet. For example, the *Last* parameter specifies the most recent Updating Run. ## EXAMPLES @@ -34,8 +36,9 @@ For example, the *Last* parameter specifies the most recent Updating Run. PS C:\> Get-CauReport -ClusterName "Contoso-FC1" -Last -Detailed | Export-CauReport -Format HTML -Path "C:\temp\contoso-fc1_last.html" -TimeZone ([system.timezoneinfo]::Utc) ``` -This command gets a detailed version of the last CAU report for the cluster named Contoso-FC1, then exports that report in HTML format to the path C:\temp\contoso-fc1_last.html. -The timestamps in the report are formatted in the Coordinated Universal Time (UTC) zone. +This command gets a detailed version of the last CAU report for the cluster named Contoso-FC1, then +exports that report in HTML format to the path C:\temp\contoso-fc1_last.html. The timestamps in the +report are formatted in the Coordinated Universal Time (UTC) zone. ## PARAMETERS @@ -87,7 +90,8 @@ Accept wildcard characters: False ``` ### -InputReport -Specifies an array of CAU report objects, such as generated from a call to Get-CauReport with the *Detailed* parameter. +Specifies an array of CAU report objects, such as generated from a call to Get-CauReport with the +*Detailed* parameter. ```yaml Type: CauReport[] @@ -164,7 +168,10 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/docset/winserver2022-ps/clusterawareupdating/Get-CauClusterRole.md b/docset/winserver2022-ps/clusterawareupdating/Get-CauClusterRole.md index c6d5457cbe..eb698da723 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Get-CauClusterRole.md +++ b/docset/winserver2022-ps/clusterawareupdating/Get-CauClusterRole.md @@ -20,7 +20,8 @@ Get-CauClusterRole [[-ClusterName] ] [-Credential ] [] [] ``` ## DESCRIPTION -The **Get-CauPlugin** cmdlet gets information about one or more software updating plug-ins that are registered on the local computer. -A plug-in can be specified or information can be retrieved about all registered plug-ins. +The **Get-CauPlugin** cmdlet gets information about one or more software updating plug-ins that are +registered on the local computer. A plug-in can be specified or information can be retrieved about +all registered plug-ins. -CAU always uses a plug-in when performing updates. -The default is the **Microsoft.WindowsUpdatePlugin** plug-in. -This plug-in communicates with the Windows Update agent, the same software that is used when updates are downloaded from Windows Update or Microsoft Update, or from a Windows Server Update Services (WSUS) server. -For more information about how plug-ins work in CAU, see [How CAU Plug-ins Work](https://go.microsoft.com/fwlink/p/?LinkId=235333). +CAU always uses a plug-in when performing updates. The default is the +**Microsoft.WindowsUpdatePlugin** plug-in. This plug-in communicates with the Windows Update agent, +the same software that is used when updates are downloaded from Windows Update or Microsoft Update, +or from a Windows Server Update Services (WSUS) server. For more information about how plug-ins work +in CAU, see [How CAU Plug-ins Work](https://go.microsoft.com/fwlink/p/?LinkId=235333). ## EXAMPLES @@ -42,7 +45,8 @@ BinaryPath : C:\Windows\system32\WindowsPowerShell\v1.0\Modules\ClusterAwareUpda ClassName : MS.Internal.ClusterAwareUpdating.HotfixPlugin ``` -This command gets information about the software updating plug-ins that are registered in the local CAU tool. +This command gets information about the software updating plug-ins that are registered in the local +CAU tool. ## PARAMETERS @@ -63,7 +67,10 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/docset/winserver2022-ps/clusterawareupdating/Get-CauReport.md b/docset/winserver2022-ps/clusterawareupdating/Get-CauReport.md index 2fd9585109..1d52d2aa64 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Get-CauReport.md +++ b/docset/winserver2022-ps/clusterawareupdating/Get-CauReport.md @@ -11,7 +11,8 @@ title: Get-CauReport # Get-CauReport ## SYNOPSIS -Gets the Updating Run reports for all known Updating Runs, or all Updating Runs that match the specified dates or other specified parameters. +Gets the Updating Run reports for all known Updating Runs, or all Updating Runs that match the +specified dates or other specified parameters. ## SYNTAX @@ -38,9 +39,13 @@ Get-CauReport [[-ClusterName] ] [-Report ] [-Credentia ``` ## DESCRIPTION -The **Get-CauReport** cmdlet gets the Updating Run reports for all known Updating Runs, or all Updating Runs that match the specified dates or other specified parameters. -This cmdlet can return a list of all Updating Run reports between the specified *StartDate* and *EndDate* parameters, or if the *Last* parameter is specified instead of dates, then the cmdlet returns the most recent Updating Run report. -By default, the report contains summaries only, but more detail can be obtained with the *Detailed* parameter or by using the *Report* parameter and specifying a Cluster-Aware Updating (CAU) report summary object. +The **Get-CauReport** cmdlet gets the Updating Run reports for all known Updating Runs, or all +Updating Runs that match the specified dates or other specified parameters. This cmdlet can return a +list of all Updating Run reports between the specified *StartDate* and *EndDate* parameters, or if +the *Last* parameter is specified instead of dates, then the cmdlet returns the most recent Updating +Run report. By default, the report contains summaries only, but more detail can be obtained with the +*Detailed* parameter or by using the *Report* parameter and specifying a Cluster-Aware Updating +(CAU) report summary object. ## EXAMPLES @@ -49,14 +54,16 @@ By default, the report contains summaries only, but more detail can be obtained PS C:\> Get-CauReport -ClusterName Contoso-FC1 -StartDate 01/01/2012 -Detailed ``` -This command gets a detailed list of the updating runs performed on the cluster named Contoso-FC1 on 01/01/2012 or later. +This command gets a detailed list of the updating runs performed on the cluster named Contoso-FC1 on +01/01/2012 or later. ### Example 2: Get a detailed list of updating runs from a date span from the specified cluster ``` PS C:\> Get-CauReport -ClusterName "Contoso-FC1" -StartDate 01/01/2012 -EndDate 04/01/2012 -Detailed ``` -This command gets a detailed list of the updating runs performed on the cluster called Contoso-FC1 starting with updating runs on 01/01/2012 and ending with updating runs on 04/01/2012. +This command gets a detailed list of the updating runs performed on the cluster called Contoso-FC1 +starting with updating runs on 01/01/2012 and ending with updating runs on 04/01/2012. ### Example 3: Get the last updating run summary from the specified cluster ``` @@ -64,15 +71,18 @@ PS C:\> $CauReportSummary = Get-CauReport "Contoso-FC1" -Last PS C:\> Get-CauReport "Contoso-FC1" -Report $CauReportSummary ``` -The first command gets the last updating run report summary from the cluster named Contoso-FC1 and stores the result in the variable named $CauReportSummary. +The first command gets the last updating run report summary from the cluster named Contoso-FC1 and +stores the result in the variable named $CauReportSummary. -The second command gets the detailed report from the information stored in the $CauReportSummary variable. +The second command gets the detailed report from the information stored in the $CauReportSummary +variable. ## PARAMETERS ### -ClusterName -Specifies the name of the cluster for which this cmdlet gets reports. -This parameter is only required when this cmdlet is not run on a failover cluster node, or this cmdlet is used to reference a failover cluster different from where the cmdlet is run. +Specifies the name of the cluster for which this cmdlet gets reports. This parameter is only +required when this cmdlet is not run on a failover cluster node, or this cmdlet is used to reference +a failover cluster different from where the cmdlet is run. ```yaml Type: String @@ -177,7 +187,10 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/docset/winserver2022-ps/clusterawareupdating/Get-CauRun.md b/docset/winserver2022-ps/clusterawareupdating/Get-CauRun.md index 7f1d162fe0..ffd2ed774d 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Get-CauRun.md +++ b/docset/winserver2022-ps/clusterawareupdating/Get-CauRun.md @@ -22,17 +22,20 @@ Get-CauRun [[-ClusterName] ] [-Credential ] [] [-Credential ] [-WaitForStart] [] +Get-CauRun [[-ClusterName] ] [-Credential ] [-WaitForStart] +[] ``` ### WaitForCompletion ``` -Get-CauRun [[-ClusterName] ] [-Credential ] [-WaitForCompletion] [] +Get-CauRun [[-ClusterName] ] [-Credential ] [-WaitForCompletion] +[] ``` ### ShowClusterNodeState ``` -Get-CauRun [[-ClusterName] ] [-Credential ] [-ShowClusterNodeState] [] +Get-CauRun [[-ClusterName] ] [-Credential ] [-ShowClusterNodeState] +[] ``` ## DESCRIPTION @@ -63,13 +66,15 @@ InstallResults : Microsoft.ClusterAwareUpdating.UpdateInstallResult[] } ``` -This command gets status information about the updating run currently in progress on the cluster named CONTOSO-FC1. +This command gets status information about the updating run currently in progress on the cluster +named CONTOSO-FC1. ## PARAMETERS ### -ClusterName -Specifies the name of the cluster for which this cmdlet gets the updating run status. -This parameter is only required when this cmdlet is not run on a failover cluster node, or this cmdlet is used to reference a failover cluster different from where the cmdlet is run. +Specifies the name of the cluster for which this cmdlet gets the updating run status. This parameter +is only required when this cmdlet is not run on a failover cluster node, or this cmdlet is used to +reference a failover cluster different from where the cmdlet is run. ```yaml Type: String @@ -99,8 +104,8 @@ Accept wildcard characters: False ``` ### -ShowClusterNodeState -Indicates that this cmdlet gets the status of the Windows Management Instrumentation (WMI) object that is created on each cluster node. -This can be used to debug the status of leftover objects. +Indicates that this cmdlet gets the status of the Windows Management Instrumentation (WMI) object +that is created on each cluster node. This can be used to debug the status of leftover objects. ```yaml Type: SwitchParameter @@ -115,8 +120,9 @@ Accept wildcard characters: False ``` ### -WaitForCompletion -Indicates that this cmdlet waits for the updating run to finish. -If this parameter is specified, the cmdlet also writes the updated CAU run objects to the output stream as progress is recorded by the current CAU Update Coordinator. +Indicates that this cmdlet waits for the updating run to finish. If this parameter is specified, the +cmdlet also writes the updated CAU run objects to the output stream as progress is recorded by the +current CAU Update Coordinator. ```yaml Type: SwitchParameter @@ -147,7 +153,10 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/docset/winserver2022-ps/clusterawareupdating/Invoke-CauRun.md b/docset/winserver2022-ps/clusterawareupdating/Invoke-CauRun.md index 613beaaa8f..9f5d231997 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Invoke-CauRun.md +++ b/docset/winserver2022-ps/clusterawareupdating/Invoke-CauRun.md @@ -18,33 +18,38 @@ Performs a scan of cluster nodes for applicable updates and installs those updat ### DefaultParamSet (Default) ``` Invoke-CauRun [-MaxFailedNodes ] [-MaxRetriesPerNode ] [-NodeOrder ] - [-PreUpdateScript ] [-PostUpdateScript ] [-ConfigurationName ] - [-RequireAllNodesOnline] [-WarnAfter ] [-StopAfter ] [-RebootTimeoutMinutes ] - [-SeparateReboots] [-EnableFirewallRules] [-FailbackMode ] - [-SuspendClusterNodeTimeoutMinutes ] [-Force] [[-ClusterName] ] [[-CauPluginName] ] - [[-Credential] ] [-CauPluginArguments ] [-RunPluginsSerially] - [-StopOnPluginFailure] [-WhatIf] [-Confirm] [] +[-PreUpdateScript ] [-PostUpdateScript ] [-ConfigurationName ] +[-RequireAllNodesOnline] [-WarnAfter ] [-StopAfter ] +[-RebootTimeoutMinutes ] [-SeparateReboots] [-EnableFirewallRules] +[-FailbackMode ] [-SuspendClusterNodeTimeoutMinutes ] [-Force] [[-ClusterName] +] [[-CauPluginName] ] [[-Credential] ] +[-CauPluginArguments ] [-RunPluginsSerially] [-StopOnPluginFailure] [-WhatIf] +[-Confirm] [] ``` ### RecoverParamSet ``` -Invoke-CauRun [-ForceRecovery] [-Force] [[-ClusterName] ] [[-Credential] ] [-WhatIf] - [-Confirm] [] +Invoke-CauRun [-ForceRecovery] [-Force] [[-ClusterName] ] [[-Credential] ] +[-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Invoke-CauRun** cmdlet performs a scan of cluster nodes for applicable updates and installs those updates through an updating run on the specified cluster. -The updating run process includes the following: +The **Invoke-CauRun** cmdlet performs a scan of cluster nodes for applicable updates and installs +those updates through an updating run on the specified cluster. The updating run process includes +the following: - Scanning for and downloading applicable updates on each cluster node. - Moving currently running clustered roles off each cluster node. - Installing the updates on each cluster node. - Restarting cluster nodes if required by the installed updates. - Moving the clustered roles back to the original nodes. -- The updating run process also includes ensuring that quorum is maintained, checking for additional updates that can only be installed after the initial set of updates are installed, and saving a report of the actions taken. +- The updating run process also includes ensuring that quorum is maintained, checking for additional + updates that can only be installed after the initial set of updates are installed, and saving a + report of the actions taken. -To run this cmdlet with the *PostUpdateScript* or *PreUpdateScript* parameter, Windows PowerShell remoting must be enabled on each node. -To do this, run the **Enable-PSRemoting** cmdlet. -In addition, ensure that the **Windows Remote Management - Compatibility Mode (HTTP-In)** firewall exception is enabled on each node. +To run this cmdlet with the *PostUpdateScript* or *PreUpdateScript* parameter, Windows PowerShell +remoting must be enabled on each node. To do this, run the **Enable-PSRemoting** cmdlet. In +addition, ensure that the **Windows Remote Management - Compatibility Mode (HTTP-In)** firewall +exception is enabled on each node. ## EXAMPLES @@ -53,30 +58,37 @@ In addition, ensure that the **Windows Remote Management - Compatibility Mode (H PS C:\> Invoke-CauRun -ClusterName "CONTOSO-FC1" -CauPluginName "Microsoft.WindowsUpdatePlugin" -MaxFailedNodes 1 -MaxRetriesPerNode 3 -RequireAllNodesOnline -Force ``` -This command performs a scan and a full updating run on the cluster named CONTOSO-FC1. -This cmdlet uses the **Microsoft.WindowsUpdatePlugin** plug-in and requires that all cluster nodes be online before the running this cmdlet. -In addition, this cmdlet allows no more than three retries per node before marking the node as failed, and allows no more than one node to fail before marking the entire updating run as failed. -Because the command specifies the *Force* parameter, the cmdlet runs without displaying confirmation prompts. +This command performs a scan and a full updating run on the cluster named CONTOSO-FC1. This cmdlet +uses the **Microsoft.WindowsUpdatePlugin** plug-in and requires that all cluster nodes be online +before the running this cmdlet. In addition, this cmdlet allows no more than three retries per node +before marking the node as failed, and allows no more than one node to fail before marking the +entire updating run as failed. Because the command specifies the *Force* parameter, the cmdlet runs +without displaying confirmation prompts. ### Example 2: Preform a scan and a full updating run on the specified cluster using multiple plug-ins ``` PS C:\> Invoke-CauRun -ClusterName CONTOSO-FC1 -CauPluginName Microsoft.WindowsUpdatePlugin, Microsoft.HotfixPlugin -CauPluginArguments @{ }, @{ 'HotfixRootFolderPath' = '\\CauHotfixSrv\shareName' } -EnableFirewallRules -StopOnPluginFailure -SeparateReboots -Force ``` -This command performs a scan and a full updating run on the cluster named CONTOSO-FC1. -This cmdlet uses the **Microsoft.WindowsUpdatePlugin** plug-in with the default configuration, and the **Microsoft.HotfixPlugin** plug-in using the hotfix root folder \\\\CauHotfixSrv\shareName and the default hotfix configuration file. -If it is not already enabled, the **Remote Shutdown** Windows Firewall rule group is enabled on each cluster node before the updating run. -If a failure occurs during the installation of updates on a node by **Microsoft.WindowsUpdatePlugin**, updates are not applied by **Microsoft.HotfixPlugin plug-in**. -If the installation of updates by **Microsoft.WindowsUpdatePlugin** requires a node to restart, the node restarts before **Microsoft.HotfixPlugin plug-in** installs updates. -Because the command specifies the *Force* parameter, the cmdlet runs without displaying confirmation prompts. +This command performs a scan and a full updating run on the cluster named CONTOSO-FC1. This cmdlet +uses the **Microsoft.WindowsUpdatePlugin** plug-in with the default configuration, and the +**Microsoft.HotfixPlugin** plug-in using the hotfix root folder \\\\CauHotfixSrv\shareName and the +default hotfix configuration file. If it is not already enabled, the **Remote Shutdown** Windows +Firewall rule group is enabled on each cluster node before the updating run. If a failure occurs +during the installation of updates on a node by **Microsoft.WindowsUpdatePlugin**, updates are not +applied by **Microsoft.HotfixPlugin plug-in**. If the installation of updates by +**Microsoft.WindowsUpdatePlugin** requires a node to restart, the node restarts before +**Microsoft.HotfixPlugin plug-in** installs updates. Because the command specifies the *Force* +parameter, the cmdlet runs without displaying confirmation prompts. ### Example 3: Recover from a previous updating run that failed on the specified cluster ``` PS C:\> Invoke-CauRun -ClusterName "CONTOSO-FC1"-ForceRecovery -Force ``` -This command recovers from a previous updating run that failed and left the cluster in a Locked state for the cluster named CONTOSO-FC1. -Because the command specifies the *Force* parameter, the recovery is performed without confirmation prompts. +This command recovers from a previous updating run that failed and left the cluster in a Locked +state for the cluster named CONTOSO-FC1. Because the command specifies the *Force* parameter, the +recovery is performed without confirmation prompts. ## PARAMETERS @@ -86,37 +98,45 @@ For instance, to specify a Domain argument for one plug-in: - `@{Domain=Domain.local}` You can specify multiple pairs in a set separated with semicolons. For instance: -- `@{name1=value1;name2=value2;name3=value3}` -These name=value pairs must be meaningful to the **CauPluginName** that you specify. -If you specify arguments for more than one plug-in, provide the sets of name=value pairs in the order that you pass values in **CauPluginName**, separated by commas. -For instance: +- `@{name1=value1;name2=value2;name3=value3}` These name=value pairs must be meaningful to the + **CauPluginName** that you specify. If you specify arguments for more than one plug-in, provide + the sets of name=value pairs in the order that you pass values in **CauPluginName**, separated by + commas. For instance: - `@{name1=value1;name2=value2;name3=value3},@{name4=value4;name5=value5}` For the default **Microsoft.WindowsUpdatePlugin** plug-in, no arguments are needed. The following arguments are optional: - **'IncludeRecommendedUpdates'='\'**: Boolean value to indicate that recommended updates will be applied in addition to important updates on each node. If not specified, the default value is **'False'**. --- A standard Windows Update Agent query string that specifies criteria used by the Windows Update Agent to filter the updates that will be applied to each node. -For a name, use **QueryString** and for a value, enclose the full query in quotation marks. -If not specified, then the **Microsoft.WindowsUpdatePlugin** plug-in by default uses the following argument: +-- A standard Windows Update Agent query string that specifies criteria used by the Windows Update +Agent to filter the updates that will be applied to each node. For a name, use **QueryString** and +for a value, enclose the full query in quotation marks. If not specified, then the +**Microsoft.WindowsUpdatePlugin** plug-in by default uses the following argument: - `QueryString="IsInstalled=0 and Type='Software' and IsHidden=0 and IsAssigned=1"` -For more information about query strings for the default **Microsoft.WindowsUpdatePlugin** plug-in and the criteria such as IsInstalled that can be included in the query strings, see [IUpdateSearcher::Search method](https://go.microsoft.com/fwlink/p/?LinkId=223304). +For more information about query strings for the default **Microsoft.WindowsUpdatePlugin** plug-in +and the criteria such as IsInstalled that can be included in the query strings, see +[IUpdateSearcher::Search method](https://go.microsoft.com/fwlink/p/?LinkId=223304). + For the **Microsoft.HotfixPlugin** plug-in, the following argument is required: -- **HotfixRootFolderPath**: The UNC path to a hotfix root folder in an SMB share with a structure that contains the updates to apply and that contains the hotfix configuration file. +- **HotfixRootFolderPath**: The UNC path to a hotfix root folder in an SMB share with a structure + that contains the updates to apply and that contains the hotfix configuration file. The following arguments are optional for the **Microsoft.HotfixPlugin** plug-in: -- **RequireSmbEncryption=\**: Boolean value to indicate that SMB Encryption is enforced for data accessed from the SMB share. -If not specified, the default value is False. -To ensure the integrity of the data accessed from the SMB share, the plug-in requires that the share is enabled for either SMB signing or SMB Encryption. -- **DisableAclChecks=\**: Boolean value to indicate that the plug-in checks for sufficient permissions on the hotfix root folder and the hotfix configuration file. -If not specified, the default value is False. -- **HotfixInstallerTimeoutMinutes=\**: The length of time in minutes that the plug-in allows the hotfix installer process to return. -If not specified, the default value is 30 minutes. +- **RequireSmbEncryption=\**: Boolean value to indicate that SMB Encryption is enforced for + data accessed from the SMB share. If not specified, the default value is False. To ensure the + integrity of the data accessed from the SMB share, the plug-in requires that the share is enabled + for either SMB signing or SMB Encryption. +- **DisableAclChecks=\**: Boolean value to indicate that the plug-in checks for sufficient + permissions on the hotfix root folder and the hotfix configuration file. If not specified, the + default value is False. +- **HotfixInstallerTimeoutMinutes=\**: The length of time in minutes that the plug-in + allows the hotfix installer process to return. If not specified, the default value is 30 minutes. - **HotfixConfigFileName=\**: Name for the hotfix configuration file. If not specified, the default name DefaultHotfixConfig.xml is used. -For more information about required and optional arguments for the **Microsoft.HotfixPlugin** plug-in, see [How CAU Plug-ins Work](https://go.microsoft.com/fwlink/p/?LinkId=235333). +For more information about required and optional arguments for the **Microsoft.HotfixPlugin** +plug-in, see [How CAU Plug-ins Work](https://go.microsoft.com/fwlink/p/?LinkId=235333). ```yaml Type: Hashtable[] @@ -131,11 +151,12 @@ Accept wildcard characters: False ``` ### -CauPluginName -Specifies one or more plug-ins to use when performing updates. -You can specify multiple values separated with commas. -The default is the **Microsoft.WindowsUpdatePlugin** plug-in. -This plug-in coordinates the Windows Update Agent software resident on each cluster node, the same software that is used when updates are downloaded from Windows Update or Microsoft Update, or from a Windows Server Update Services (WSUS) server. -For more information about how plug-ins work with CAU, see [How CAU Plug-ins Work](https://go.microsoft.com/fwlink/p/?LinkId=235333). +Specifies one or more plug-ins to use when performing updates. You can specify multiple values +separated with commas. The default is the **Microsoft.WindowsUpdatePlugin** plug-in. This plug-in +coordinates the Windows Update Agent software resident on each cluster node, the same software that +is used when updates are downloaded from Windows Update or Microsoft Update, or from a Windows +Server Update Services (WSUS) server. For more information about how plug-ins work with CAU, see +[How CAU Plug-ins Work](https://go.microsoft.com/fwlink/p/?LinkId=235333). ```yaml Type: String[] @@ -165,8 +186,11 @@ Accept wildcard characters: False ``` ### -ConfigurationName -Specifies the Windows PowerShell session configuration that defines the session in which scripts are run, specified by *PreUpdateScript* and *PostUpdateScript* parameters, and can limit the cmdlets that are available to run. -If either a pre-update or post-update script is specified but a configuration name is not specified, then the default session configuration that is built into Windows PowerShell is used. +Specifies the Windows PowerShell session configuration that defines the session in which scripts are +run, specified by *PreUpdateScript* and *PostUpdateScript* parameters, and can limit the cmdlets +that are available to run. If either a pre-update or post-update script is specified but a +configuration name is not specified, then the default session configuration that is built into +Windows PowerShell is used. ```yaml Type: String @@ -211,11 +235,15 @@ Accept wildcard characters: False ``` ### -EnableFirewallRules -Enables the **Remote Shutdown** Windows Firewall rule group on each cluster node, if it is not already enabled. -If the *EnableFirewallRules* parameter is specified, CAU automatically re-enables the **Remote Shutdown** rule group each time the CAU clustered role performs an updating run, in case the rules are disabled manually in the intervening time. -Enabling this rule group permits inbound communication to each cluster node during each updating run that allows CAU to shut down and restart the node remotely (if the installation of an update requires a restart). -If Windows Firewall is in use on the cluster nodes and the rule group is not enabled, the updating run will fail. -The **Remote Shutdown** Windows Firewall rule group is not enabled when it will conflict with Group Policy settings that are configured for Windows Firewall. +Enables the **Remote Shutdown** Windows Firewall rule group on each cluster node, if it is not +already enabled. If the *EnableFirewallRules* parameter is specified, CAU automatically re-enables +the **Remote Shutdown** rule group each time the CAU clustered role performs an updating run, in +case the rules are disabled manually in the intervening time. Enabling this rule group permits +inbound communication to each cluster node during each updating run that allows CAU to shut down and +restart the node remotely (if the installation of an update requires a restart). If Windows Firewall +is in use on the cluster nodes and the rule group is not enabled, the updating run will fail. The +**Remote Shutdown** Windows Firewall rule group is not enabled when it will conflict with Group +Policy settings that are configured for Windows Firewall. ```yaml Type: SwitchParameter @@ -230,9 +258,9 @@ Accept wildcard characters: False ``` ### -FailbackMode -Specifies the method used to bring drained workloads back to the node, at the end of updating the node. -Drained workloads are workloads that were previously run on the node, but were moved to another node. -The acceptable values for this parameter are: +Specifies the method used to bring drained workloads back to the node, at the end of updating the +node. Drained workloads are workloads that were previously run on the node, but were moved to +another node. The acceptable values for this parameter are: - NoFailback - Immediate @@ -269,10 +297,11 @@ Accept wildcard characters: False ``` ### -ForceRecovery -Indicates that the cmdlet recovers from a previous failed run that left the cluster in a Locked state. +Indicates that the cmdlet recovers from a previous failed run that left the cluster in a Locked +state. -This switch defeats the synchronization mechanism used to prevent two update coordinators from accidentally updating the same cluster at the same time. -Use with care. +This switch defeats the synchronization mechanism used to prevent two update coordinators from +accidentally updating the same cluster at the same time. Use with care. ```yaml Type: SwitchParameter @@ -305,8 +334,8 @@ Accept wildcard characters: False ``` ### -MaxRetriesPerNode -Specifies the maximum number of times that the update process (including any pre-update and post-update scripts) is retried per node. -The maximum is 64 and the default is 3. +Specifies the maximum number of times that the update process (including any pre-update and +post-update scripts) is retried per node. The maximum is 64 and the default is 3. ```yaml Type: Int32 @@ -336,9 +365,11 @@ Accept wildcard characters: False ``` ### -PostUpdateScript -Specifies the path and file name for a Windows PowerShell script to run on each node after updating finishes, and just after the node is brought out of Maintenance mode. -The file name extension must be .ps1 and the total length of the path plus the file name must be no longer than 260 characters. -As a best practice, the script should be located on a disk in cluster storage, or at a highly available network share, to ensure that it is always accessible to all the cluster nodes. +Specifies the path and file name for a Windows PowerShell script to run on each node after updating +finishes, and just after the node is brought out of Maintenance mode. The file name extension must +be .ps1 and the total length of the path plus the file name must be no longer than 260 characters. +As a best practice, the script should be located on a disk in cluster storage, or at a highly +available network share, to ensure that it is always accessible to all the cluster nodes. ```yaml Type: String @@ -353,10 +384,12 @@ Accept wildcard characters: False ``` ### -PreUpdateScript -Specifies the path and file name for a Windows PowerShell script to run on each node before updating begins, and before the node is put into Maintenance mode. -The file name extension must be .ps1 and the total length of the path plus the file name must be no longer than 260 characters. -As a best practice, the script should be located on a disk in cluster storage, or at a highly available network share, to ensure that the script is always accessible to all the cluster nodes. -If a pre-update script fails, the node is not updated. +Specifies the path and file name for a Windows PowerShell script to run on each node before updating +begins, and before the node is put into Maintenance mode. The file name extension must be .ps1 and +the total length of the path plus the file name must be no longer than 260 characters. As a best +practice, the script should be located on a disk in cluster storage, or at a highly available +network share, to ensure that the script is always accessible to all the cluster nodes. If a +pre-update script fails, the node is not updated. ```yaml Type: String @@ -371,8 +404,8 @@ Accept wildcard characters: False ``` ### -RebootTimeoutMinutes -Specifies the time in minutes that CAU allows for the restarting of a node. -If the restart does not complete within this time, then the updating run on that node is marked as failed. +Specifies the time in minutes that CAU allows for the restarting of a node. If the restart does not +complete within this time, then the updating run on that node is marked as failed. ```yaml Type: Int32 @@ -402,9 +435,11 @@ Accept wildcard characters: False ``` ### -RunPluginsSerially -Indicates that CAU will scan each cluster node for applicable updates and stage the updates for each plug-in in the plug-in order passed into the *CauPluginName* parameter when multiple plug-ins are used during an updating run. -By default, CAU scans and stages the applicable updates for all plug-ins in parallel. -Regardless of the configuration of this parameter, CAU installs the applicable updates for each plug-in sequentially. +Indicates that CAU will scan each cluster node for applicable updates and stage the updates for each +plug-in in the plug-in order passed into the *CauPluginName* parameter when multiple plug-ins are +used during an updating run. By default, CAU scans and stages the applicable updates for all +plug-ins in parallel. Regardless of the configuration of this parameter, CAU installs the applicable +updates for each plug-in sequentially. The parameter is valid only when multiple plug-ins are specified for the *CauPluginName* parameter. If a single plug-in is specified, a warning appears. @@ -422,8 +457,10 @@ Accept wildcard characters: False ``` ### -SeparateReboots -Indicates that CAU will shut down and restart a cluster node after each plug-in installs updates on the node, if the installation of an update by a plug-in requires a restart when multiple plug-ins are used during an updating run. -By default, during an updating run, all plug-ins complete the installation of updates on a cluster node before the node restarts one time. +Indicates that CAU will shut down and restart a cluster node after each plug-in installs updates on +the node, if the installation of an update by a plug-in requires a restart when multiple plug-ins +are used during an updating run. By default, during an updating run, all plug-ins complete the +installation of updates on a cluster node before the node restarts one time. The parameter is valid only when multiple plug-ins are specified for the *CauPluginName* parameter. If a single plug-in is specified, a warning appears. @@ -441,11 +478,13 @@ Accept wildcard characters: False ``` ### -StopAfter -Specifies the time in minutes after which the updating run is canceled if it has not completed. -The time span can be expressed in the standard ways available in Windows PowerShell, for instance, 01:30:00 represents one hour and thirty minutes. -By default, the updating run is allowed an unlimited amount of time to complete. +Specifies the time in minutes after which the updating run is canceled if it has not completed. The +time span can be expressed in the standard ways available in Windows PowerShell, for instance, +01:30:00 represents one hour and thirty minutes. By default, the updating run is allowed an +unlimited amount of time to complete. -If pre-update or post-update scripts are specified, then the entire process of running scripts and performing updates must be complete within this time limit. +If pre-update or post-update scripts are specified, then the entire process of running scripts and +performing updates must be complete within this time limit. ```yaml Type: TimeSpan @@ -460,8 +499,10 @@ Accept wildcard characters: False ``` ### -StopOnPluginFailure -Indicates that if a failure occurs during the application of updates on a node by any plug-in, subsequent updates on the node that are coordinated by the remaining plug-ins are stopped when multiple plug-ins are used during an updating run. -By default, a failure by one plug-in does not affect the application of updates on a node by other plug-ins. +Indicates that if a failure occurs during the application of updates on a node by any plug-in, +subsequent updates on the node that are coordinated by the remaining plug-ins are stopped when +multiple plug-ins are used during an updating run. By default, a failure by one plug-in does not +affect the application of updates on a node by other plug-ins. The parameter is valid only when multiple plug-ins are specified for the *CauPluginName* parameter. If a single plug-in is specified, a warning appears. @@ -479,14 +520,17 @@ Accept wildcard characters: False ``` ### -SuspendClusterNodeTimeoutMinutes -Specifies the maximum amount of time CAU should wait for the **Suspend-ClusterNode** cmdlet to succeed if the underlying clustered space is in degraded condition. +Specifies the maximum amount of time CAU should wait for the **Suspend-ClusterNode** cmdlet to +succeed if the underlying clustered space is in degraded condition. -If **Suspend-ClusterNode** fails with ERROR_CLUSTER_SPACE_DEGRADED error, CAU will keep retrying for *SuspendClusterNodeTimeoutMinutes* or suspend the call if the command succeeds. +If **Suspend-ClusterNode** fails with ERROR_CLUSTER_SPACE_DEGRADED error, CAU will keep retrying for +*SuspendClusterNodeTimeoutMinutes* or suspend the call if the command succeeds. -The retries for this error do not count towards the *MaxRetriesPerNode* parameter set by the user parameter set by the user. +The retries for this error do not count towards the *MaxRetriesPerNode* parameter set by the user +parameter set by the user. -The timeout value is per cluster node. -So CAU could potentially spend the amount of time specified for this value for every node in the cluster in the worst case. +The timeout value is per cluster node. So CAU could potentially spend the amount of time specified +for this value for every node in the cluster in the worst case. ```yaml Type: Int32 @@ -501,8 +545,9 @@ Accept wildcard characters: False ``` ### -WarnAfter -Specifies the time in minutes after which a warning is logged if the updating run, including any pre-update and post-update scripts, has not completed. -By default, no warning is logged, regardless of the time taken by the updating run. +Specifies the time in minutes after which a warning is logged if the updating run, including any +pre-update and post-update scripts, has not completed. By default, no warning is logged, regardless +of the time taken by the updating run. ```yaml Type: TimeSpan @@ -533,7 +578,10 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/docset/winserver2022-ps/clusterawareupdating/Invoke-CauScan.md b/docset/winserver2022-ps/clusterawareupdating/Invoke-CauScan.md index 3e3e4ba6ed..2354c45663 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Invoke-CauScan.md +++ b/docset/winserver2022-ps/clusterawareupdating/Invoke-CauScan.md @@ -11,23 +11,27 @@ title: Invoke-CauScan # Invoke-CauScan ## SYNOPSIS -Performs a scan of cluster nodes for applicable updates and gets a list of the initial set of updates that are applied to each node in a specified cluster. +Performs a scan of cluster nodes for applicable updates and gets a list of the initial set of +updates that are applied to each node in a specified cluster. ## SYNTAX ``` -Invoke-CauScan [[-ClusterName] ] [[-CauPluginName] ] [[-Credential] ] - [-CauPluginArguments ] [-RunPluginsSerially] [-StopOnPluginFailure] [] +Invoke-CauScan [[-ClusterName] ] [[-CauPluginName] ] [[-Credential] +] [-CauPluginArguments ] [-RunPluginsSerially] [-StopOnPluginFailure] +[] ``` ## DESCRIPTION -The **Invoke-CauScan** cmdlet performs a scan of cluster nodes for applicable updates and gets a list of the initial set of updates that are applied to each node in a specified cluster. -Generation of the list can take a few minutes to complete. +The **Invoke-CauScan** cmdlet performs a scan of cluster nodes for applicable updates and gets a +list of the initial set of updates that are applied to each node in a specified cluster. Generation +of the list can take a few minutes to complete. -The preview list includes only an initial set of updates. -The list does not include updates that might become applicable after the initial updates are installed. +The preview list includes only an initial set of updates. The list does not include updates that +might become applicable after the initial updates are installed. -If the **Microsoft.HotfixPlugin** plug-in is specified, the scan gets only the list of hotfix files that are discovered on the hotfix file share. +If the **Microsoft.HotfixPlugin** plug-in is specified, the scan gets only the list of hotfix files +that are discovered on the hotfix file share. ## EXAMPLES @@ -36,9 +40,11 @@ If the **Microsoft.HotfixPlugin** plug-in is specified, the scan gets only the l PS C:\> Invoke-CauScan -ClusterName "CONTOSO-FC1" -CauPluginName "Microsoft.WindowsUpdatePlugin" -Verbose ``` -This command gets a detailed list of the initial set of updates that would currently be applied to each node in the cluster named CONTOSO-FC1. -The list is based on the updates that would be applied by the **Microsoft.WindowsUpdatePlugin** plug-in, which is the default plug-in. -The preview list includes only an initial set of updates, and does not include updates that might become applicable only after the initial updates are installed. +This command gets a detailed list of the initial set of updates that would currently be applied to +each node in the cluster named CONTOSO-FC1. The list is based on the updates that would be applied +by the **Microsoft.WindowsUpdatePlugin** plug-in, which is the default plug-in. The preview list +includes only an initial set of updates, and does not include updates that might become applicable +only after the initial updates are installed. ### Example 2: Get a detailed list of the initial set of updates on the specified cluster using a query string ``` @@ -47,9 +53,12 @@ PS C:\> $Cred = New-Object System.Management.Automation.PSCredential ("username" PS C:\> Invoke-CauScan -ClusterName CONTOSO-FC1 -CauPluginName Microsoft.WindowsUpdatePlugin, Microsoft.HotfixPlugin -CauPluginArguments @{'QueryString'="IsInstalled=0 and Type='Software' and IsHidden=0"},@{'HotfixRootFolderPath' = '\\CauHotfixSrv\shareName'} -Credential $Cred ``` -This example gets a detailed list of the initial set of updates that would currently be applied to each node in the cluster named CONTOSO-FC1. -The list is based on the updates that would be applied by the **Microsoft.WindowsUpdatePlugin** plug-in, using a specified query string, and the **Microsoft.HotfixPlugin**, after the necessary hotfixes and the hotfix configuration file have been downloaded to \\\\CauHotfixSrv\shareName. -This example also shows how to pass the administrative credentials for cluster CONTOSO-FC1 to the cmdlet. +This example gets a detailed list of the initial set of updates that would currently be applied to +each node in the cluster named CONTOSO-FC1. The list is based on the updates that would be applied +by the **Microsoft.WindowsUpdatePlugin** plug-in, using a specified query string, and the +**Microsoft.HotfixPlugin**, after the necessary hotfixes and the hotfix configuration file have been +downloaded to \\\\CauHotfixSrv\shareName. This example also shows how to pass the administrative +credentials for cluster CONTOSO-FC1 to the cmdlet. ## PARAMETERS @@ -59,39 +68,47 @@ For instance, to specify a **Domain** argument for one plug-in: - `@{Domain=Domain.local}` You can specify multiple pairs in a set separated with semicolons. For instance: -- `@{name1=value1;name2=value2;name3=value3}` -These name=value pairs must be meaningful to the *CauPluginName* parameter that you specify. -If you specify arguments for more than one plug-in, provide the sets of name=value pairs in the order that you pass values into the *CauPluginName* parameter, separated by commas. -For instance: +- `@{name1=value1;name2=value2;name3=value3}` These name=value pairs must be meaningful to the + *CauPluginName* parameter that you specify. If you specify arguments for more than one plug-in, + provide the sets of name=value pairs in the order that you pass values into the *CauPluginName* + parameter, separated by commas. For instance: - `@{name1=value1;name2=value2;name3=value3},@{name4=value4;name5=value5}` For the default **Microsoft.WindowsUpdatePlugin** plug-in, no arguments are needed. The following arguments are optional: -- **'IncludeRecommendedUpdates'='\'**: Boolean value to indicate that recommended updates will be applied in addition to important updates on each node. -If not specified, the default value is False. -- A standard Windows Update Agent query string that specifies criteria used by the Windows Update Agent to filter the updates that will be applied to each node. -For a name, use **QueryString** and for a value, enclose the full query in quotation marks. -If not specified, then the **Microsoft.WindowsUpdatePlugin** plug-in by default uses the following argument: +- **'IncludeRecommendedUpdates'='\'**: Boolean value to indicate that recommended updates + will be applied in addition to important updates on each node. If not specified, the default value + is False. +- A standard Windows Update Agent query string that specifies criteria used by the Windows Update + Agent to filter the updates that will be applied to each node. For a name, use **QueryString** and + for a value, enclose the full query in quotation marks. If not specified, then the + **Microsoft.WindowsUpdatePlugin** plug-in by default uses the following argument: - `QueryString="IsInstalled=0 and Type='Software' and IsHidden=0 and IsAssigned=1"` -For more information about query strings for the default **Microsoft.WindowsUpdatePlugin** plug-in and the criteria such as IsInstalled that can be included in the query strings, see [IUpdateSearcher::Search method](https://go.microsoft.com/fwlink/p/?LinkId=223304). +For more information about query strings for the default **Microsoft.WindowsUpdatePlugin** plug-in +and the criteria such as IsInstalled that can be included in the query strings, see +[IUpdateSearcher::Search method](https://go.microsoft.com/fwlink/p/?LinkId=223304). For the **Microsoft.HotfixPlugin** plug-in. the following argument is required: -- **HotfixRootFolderPath=\**: The UNC path to a hotfix root folder in an SMB share with a structure that contains the updates to apply and that contains the hotfix configuration file +- **HotfixRootFolderPath=\**: The UNC path to a hotfix root folder in an SMB share with a + structure that contains the updates to apply and that contains the hotfix configuration file The following arguments are optional for the **Microsoft.HotfixPlugin** plug-in: -- **RequireSmbEncryption=\**: Boolean value to indicate that SMB Encryption will be enforced for accessing data from the SMB share. -If not specified, the default value is False. -To ensure the integrity of the data accessed from the SMB share, the plug-in requires that the share is enabled for either SMB signing or SMB Encryption. -- **DisableAclChecks=\**: Boolean value to indicate that the plug-in will check for sufficient permissions on the hotfix root folder and the hotfix configuration file. -If not specified, the default value is False. -- **HotfixInstallerTimeoutMinutes=\**: The length of time in minutes that the plug-in allows the hotfix installer process to return. -If not specified, the default value is 30 minutes. -- **HotfixConfigFileName=\**: Name for the hotfix configuration file. -If not specified, the default name DefaultHotfixConfig.xml is used. - -For more information about required and optional arguments for the **Microsoft.HotfixPlugin** plug-in, see [How CAU Plug-ins Work](https://go.microsoft.com/fwlink/p/?LinkId=235333). +- **RequireSmbEncryption=\**: Boolean value to indicate that SMB Encryption will be enforced + for accessing data from the SMB share. If not specified, the default value is False. To ensure the + integrity of the data accessed from the SMB share, the plug-in requires that the share is enabled + for either SMB signing or SMB Encryption. +- **DisableAclChecks=\**: Boolean value to indicate that the plug-in will check for + sufficient permissions on the hotfix root folder and the hotfix configuration file. If not + specified, the default value is False. +- **HotfixInstallerTimeoutMinutes=\**: The length of time in minutes that the plug-in + allows the hotfix installer process to return. If not specified, the default value is 30 minutes. +- **HotfixConfigFileName=\**: Name for the hotfix configuration file. If not specified, the + default name DefaultHotfixConfig.xml is used. + +For more information about required and optional arguments for the **Microsoft.HotfixPlugin** +plug-in, see [How CAU Plug-ins Work](https://go.microsoft.com/fwlink/p/?LinkId=235333). ```yaml Type: Hashtable[] @@ -106,11 +123,13 @@ Accept wildcard characters: False ``` ### -CauPluginName -Specifies one or more plug-ins to use when performing scans. -You can specify multiple values separated with commas. -The default is the **Microsoft.WindowsUpdatePlugin** plug-in. -This plug-in coordinates the Windows Update Agent software resident on each cluster node, the same software that is used when updates are downloaded from Windows Update or Microsoft Update, or from a Windows Server Update Services (WSUS) server. -For more information about how plug-ins work with Cluster-Aware Updating (CAU), see [Cluster-Aware Updating plug-ins](https://go.microsoft.com/fwlink/p/?LinkId=235333). +Specifies one or more plug-ins to use when performing scans. You can specify multiple values +separated with commas. The default is the **Microsoft.WindowsUpdatePlugin** plug-in. This plug-in +coordinates the Windows Update Agent software resident on each cluster node, the same software that +is used when updates are downloaded from Windows Update or Microsoft Update, or from a Windows +Server Update Services (WSUS) server. For more information about how plug-ins work with +Cluster-Aware Updating (CAU), see +[Cluster-Aware Updating plug-ins](https://go.microsoft.com/fwlink/p/?LinkId=235333). ```yaml Type: String[] @@ -125,8 +144,9 @@ Accept wildcard characters: False ``` ### -ClusterName -Specifies the name of the cluster which should be scanned for applicable updates. -This parameter is only required when this cmdlet is not run on a failover cluster node, or this cmdlet is used to reference a failover cluster different from where the cmdlet is run. +Specifies the name of the cluster which should be scanned for applicable updates. This parameter is +only required when this cmdlet is not run on a failover cluster node, or this cmdlet is used to +reference a failover cluster different from where the cmdlet is run. ```yaml Type: String @@ -156,7 +176,9 @@ Accept wildcard characters: False ``` ### -RunPluginsSerially -Indicates that CAU scans each cluster node for applicable updates and stages the updates for each plug-in in the plug-in order passed into the *CauPluginName* parameter then multiple plug-ins are used during a scan for updates +Indicates that CAU scans each cluster node for applicable updates and stages the updates for each +plug-in in the plug-in order passed into the *CauPluginName* parameter then multiple plug-ins are +used during a scan for updates By default, CAU scans and stages the applicable updates for all plug-ins in parallel. This parameter is valid only when multiple plug-ins are specified in *CauPluginName* parameter. @@ -175,7 +197,9 @@ Accept wildcard characters: False ``` ### -StopOnPluginFailure -Indicates that if a failure occurs during a scan on a node by any plug-in, subsequent scans on the node that are coordinated by the remaining plug-ins are stopped when multiple plug-ins are used during a scan for updates. +Indicates that if a failure occurs during a scan on a node by any plug-in, subsequent scans on the +node that are coordinated by the remaining plug-ins are stopped when multiple plug-ins are used +during a scan for updates. The parameter is valid only when multiple plug-ins are specified in the *CauPluginName* parameter. If a single plug-in is specified, a warning appears. @@ -193,7 +217,10 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/docset/winserver2022-ps/clusterawareupdating/Register-CauPlugin.md b/docset/winserver2022-ps/clusterawareupdating/Register-CauPlugin.md index a72a1a77a9..80b7e8908b 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Register-CauPlugin.md +++ b/docset/winserver2022-ps/clusterawareupdating/Register-CauPlugin.md @@ -20,11 +20,15 @@ Register-CauPlugin [-Path] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Register-CauPlugin** cmdlet registers a Cluster-Aware Updating (CAU) software updating plug-in on the local computer. +The **Register-CauPlugin** cmdlet registers a Cluster-Aware Updating (CAU) software updating plug-in +on the local computer. -CAU always uses a plug-in when performing updates, although you do not need to register a plug-in because CAU uses the **Microsoft.WindowsUpdatePlugin** plug-in by default. -This plug-in communicates with the Windows Update Agent software resident on each node, the same software that is used when updates are downloaded from Windows Update or Microsoft Update, or from a Windows Server Update Services (WSUS) server. -For more information about how plug-ins work in CAU, see [How CAU Plug-ins Work](https://go.microsoft.com/fwlink/p/?LinkId=235333). +CAU always uses a plug-in when performing updates, although you do not need to register a plug-in +because CAU uses the **Microsoft.WindowsUpdatePlugin** plug-in by default. This plug-in communicates +with the Windows Update Agent software resident on each node, the same software that is used when +updates are downloaded from Windows Update or Microsoft Update, or from a Windows Server Update +Services (WSUS) server. For more information about how plug-ins work in CAU, see +[How CAU Plug-ins Work](https://go.microsoft.com/fwlink/p/?LinkId=235333). ## EXAMPLES @@ -34,7 +38,8 @@ PS C:\> Register-CauPlugin -Path "C:\PluginDevelopment\Plugin01.dll" -Force ``` The command registers a plug-in called Plugin01.dll located in the C:\PluginDevelopment folder. -Because the command specifies the *Force* parameter, the cmdlet runs without displaying confirmation prompts. +Because the command specifies the *Force* parameter, the cmdlet runs without displaying confirmation +prompts. ## PARAMETERS @@ -54,8 +59,9 @@ Accept wildcard characters: False ``` ### -Path -Specifies the path to the binary that implements the plug-in. -Classes that implement the plug-in interface and are decorated with the plug-in attribute, are discovered through reflection and registered. +Specifies the path to the binary that implements the plug-in. Classes that implement the plug-in +interface and are decorated with the plug-in attribute, are discovered through reflection and +registered. ```yaml Type: String @@ -86,7 +92,10 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/docset/winserver2022-ps/clusterawareupdating/Remove-CauClusterRole.md b/docset/winserver2022-ps/clusterawareupdating/Remove-CauClusterRole.md index 5ea5fd66c7..b2da166fb0 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Remove-CauClusterRole.md +++ b/docset/winserver2022-ps/clusterawareupdating/Remove-CauClusterRole.md @@ -16,15 +16,18 @@ Removes the CAU clustered role from the specified failover cluster. ## SYNTAX ``` -Remove-CauClusterRole [[-ClusterName] ] [[-Credential] ] [-Force] [-WhatIf] [-Confirm] - [] +Remove-CauClusterRole [[-ClusterName] ] [[-Credential] ] [-Force] [-WhatIf] +[-Confirm] [] ``` ## DESCRIPTION -The **Remove-CauClusterRole** cmdlet removes the Cluster-Aware Updating (CAU) clustered role from the specified failover cluster. -To run CAU from a cluster, ensure that the CAU clustered role is configured in that cluster. +The **Remove-CauClusterRole** cmdlet removes the Cluster-Aware Updating (CAU) clustered role from +the specified failover cluster. To run CAU from a cluster, ensure that the CAU clustered role is +configured in that cluster. -The **Remove-CauClusterRole** cmdlet removes the virtual computer object (VCO) in Active Directory for the CAU clustered role, unless you previously prestaged or specified the VCO by using the **Add-CauClusterRole** cmdlet with the *VirtualComputerObjectName* parameter. +The **Remove-CauClusterRole** cmdlet removes the virtual computer object (VCO) in Active Directory +for the CAU clustered role, unless you previously prestaged or specified the VCO by using the +**Add-CauClusterRole** cmdlet with the *VirtualComputerObjectName* parameter. ## EXAMPLES @@ -33,14 +36,16 @@ The **Remove-CauClusterRole** cmdlet removes the virtual computer object (VCO) i PS C:\> Remove-CauClusterRole -ClusterName "CONTOSO-FC1" -Force ``` -This command removes the instance of the CAU clustered role that is configured on the cluster named CONTOSO-FC1. -Because the command specifies the *Force* parameter, the cmdlet runs without displaying confirmation prompts. +This command removes the instance of the CAU clustered role that is configured on the cluster named +CONTOSO-FC1. Because the command specifies the *Force* parameter, the cmdlet runs without displaying +confirmation prompts. ## PARAMETERS ### -ClusterName -Specifies the name of the cluster from which to remove the CAU clustered role. -This parameter is only required when this cmdlet is not run on a failover cluster node, or this cmdlet is used to reference a failover cluster different from where the cmdlet is run. +Specifies the name of the cluster from which to remove the CAU clustered role. This parameter is +only required when this cmdlet is not run on a failover cluster node, or this cmdlet is used to +reference a failover cluster different from where the cmdlet is run. ```yaml Type: String @@ -116,7 +121,10 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/docset/winserver2022-ps/clusterawareupdating/Save-CauDebugTrace.md b/docset/winserver2022-ps/clusterawareupdating/Save-CauDebugTrace.md index 51a27c509c..abf81ce23c 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Save-CauDebugTrace.md +++ b/docset/winserver2022-ps/clusterawareupdating/Save-CauDebugTrace.md @@ -21,13 +21,13 @@ Save-CauDebugTrace [[-ClusterName] ] [[-FilePath] ] [-Credential ``` ## DESCRIPTION -The **Save-CauDebugTrace** cmdlet saves Cluster-Aware Updating (CAU) debug tracing information to a local zip file. -The tracing information is mainly intended for use by developers and support engineers. -Specify the file name with the *FilePath* parameter. +The **Save-CauDebugTrace** cmdlet saves Cluster-Aware Updating (CAU) debug tracing information to a +local zip file. The tracing information is mainly intended for use by developers and support +engineers. Specify the file name with the *FilePath* parameter. -To run this cmdlet, Windows PowerShell remoting must be enabled on each node. -To do this, run the **Enable-PSRemoting** cmdlet. -In addition, ensure that the **Windows Remote Management - Compatibility Mode (HTTP-In)** firewall exception is enabled on each node. +To run this cmdlet, Windows PowerShell remoting must be enabled on each node. To do this, run the +**Enable-PSRemoting** cmdlet. In addition, ensure that the **Windows Remote Management - +Compatibility Mode (HTTP-In)** firewall exception is enabled on each node. ## EXAMPLES @@ -36,13 +36,15 @@ In addition, ensure that the **Windows Remote Management - Compatibility Mode (H PS C:\> Save-CauDebugTrace -ClusterName "CONTOSO-FC1" -FilePath "C:\temp\testrun.zip" ``` -This command saves the debug tracing information for the cluster named CONTOSO-FC1, to a trace file called testrun.zip in the C:\temp folder. +This command saves the debug tracing information for the cluster named CONTOSO-FC1, to a trace file +called testrun.zip in the C:\temp folder. ## PARAMETERS ### -ClusterName -Specifies the name of the cluster for which to gather CAU debug tracing information. -This parameter is only required when this cmdlet is not run on a failover cluster node, or this cmdlet is used to reference a failover cluster different from where the cmdlet is run. +Specifies the name of the cluster for which to gather CAU debug tracing information. This parameter +is only required when this cmdlet is not run on a failover cluster node, or this cmdlet is used to +reference a failover cluster different from where the cmdlet is run. ```yaml Type: String @@ -102,7 +104,8 @@ Accept wildcard characters: False ``` ### -RunId -Indicates that the cmdlet should only include debug trace files related to an updating run with the specified Run ID. +Indicates that the cmdlet should only include debug trace files related to an updating run with the +specified Run ID. ```yaml Type: Guid @@ -117,7 +120,10 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/docset/winserver2022-ps/clusterawareupdating/Set-CauClusterRole.md b/docset/winserver2022-ps/clusterawareupdating/Set-CauClusterRole.md index d1da6252dc..3f81944c73 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Set-CauClusterRole.md +++ b/docset/winserver2022-ps/clusterawareupdating/Set-CauClusterRole.md @@ -17,45 +17,51 @@ Sets configuration properties for the CAU clustered role on the specified cluste ### MonthlyDayOfWeek (Default) ``` -Set-CauClusterRole [-UseDefault] [-StartDate ] [-DaysOfWeek ] [-WeeksOfMonth ] - [-CauPluginName ] [-CauPluginArguments ] [-MaxFailedNodes ] - [-MaxRetriesPerNode ] [-NodeOrder ] [-PreUpdateScript ] [-PostUpdateScript ] - [-ConfigurationName ] [-RequireAllNodesOnline] [-WarnAfter ] [-StopAfter ] - [-RebootTimeoutMinutes ] [-SeparateReboots] [-RunPluginsSerially] [-StopOnPluginFailure] - [-EnableFirewallRules] [-FailbackMode ] [-SuspendClusterNodeTimeoutMinutes ] - [[-ClusterName] ] [[-Credential] ] [-Force] [-WhatIf] [-Confirm] [] +Set-CauClusterRole [-UseDefault] [-StartDate ] [-DaysOfWeek ] +[-WeeksOfMonth ] [-CauPluginName ] [-CauPluginArguments ] +[-MaxFailedNodes ] [-MaxRetriesPerNode ] [-NodeOrder ] +[-PreUpdateScript ] [-PostUpdateScript ] [-ConfigurationName ] +[-RequireAllNodesOnline] [-WarnAfter ] [-StopAfter ] +[-RebootTimeoutMinutes ] [-SeparateReboots] [-RunPluginsSerially] [-StopOnPluginFailure] +[-EnableFirewallRules] [-FailbackMode ] [-SuspendClusterNodeTimeoutMinutes ] +[[-ClusterName] ] [[-Credential] ] [-Force] [-WhatIf] [-Confirm] +[] ``` ### UpdateNow ``` -Set-CauClusterRole [-UpdateNow] [[-ClusterName] ] [[-Credential] ] [-Force] [-WhatIf] - [-Confirm] [] +Set-CauClusterRole [-UpdateNow] [[-ClusterName] ] [[-Credential] ] [-Force] +[-WhatIf] [-Confirm] [] ``` ### UseDefault ``` -Set-CauClusterRole [-UseDefault] [[-ClusterName] ] [[-Credential] ] [-Force] [-WhatIf] - [-Confirm] [] +Set-CauClusterRole [-UseDefault] [[-ClusterName] ] [[-Credential] ] [-Force] +[-WhatIf] [-Confirm] [] ``` ### Weekly ``` -Set-CauClusterRole [-UseDefault] [-StartDate ] [-DaysOfWeek ] [-IntervalWeeks ] - [-CauPluginName ] [-CauPluginArguments ] [-MaxFailedNodes ] - [-MaxRetriesPerNode ] [-NodeOrder ] [-PreUpdateScript ] [-PostUpdateScript ] - [-ConfigurationName ] [-RequireAllNodesOnline] [-WarnAfter ] [-StopAfter ] - [-RebootTimeoutMinutes ] [-SeparateReboots] [-RunPluginsSerially] [-StopOnPluginFailure] - [-EnableFirewallRules] [-FailbackMode ] [-SuspendClusterNodeTimeoutMinutes ] - [[-ClusterName] ] [[-Credential] ] [-Force] [-WhatIf] [-Confirm] [] +Set-CauClusterRole [-UseDefault] [-StartDate ] [-DaysOfWeek ] +[-IntervalWeeks ] [-CauPluginName ] [-CauPluginArguments ] +[-MaxFailedNodes ] [-MaxRetriesPerNode ] [-NodeOrder ] +[-PreUpdateScript ] [-PostUpdateScript ] [-ConfigurationName ] +[-RequireAllNodesOnline] [-WarnAfter ] [-StopAfter ] +[-RebootTimeoutMinutes ] [-SeparateReboots] [-RunPluginsSerially] [-StopOnPluginFailure] +[-EnableFirewallRules] [-FailbackMode ] [-SuspendClusterNodeTimeoutMinutes ] +[[-ClusterName] ] [[-Credential] ] [-Force] [-WhatIf] [-Confirm] +[] ``` ## DESCRIPTION -The **Set-CauClusterRole** cmdlet sets configuration properties for the Cluster-Aware Updating (CAU) clustered role on the specified cluster. -This cmdlet can specify properties such as the updating schedule and updating run parameters. +The **Set-CauClusterRole** cmdlet sets configuration properties for the Cluster-Aware Updating (CAU) +clustered role on the specified cluster. This cmdlet can specify properties such as the updating +schedule and updating run parameters. -To run this cmdlet with the *PostUpdateScript* or *PreUpdateScript* parameters, Windows PowerShell remoting must be enabled on each node. -To do this, use the **Enable-PSRemoting** cmdlet. -In addition, ensure that the **Windows Remote Management - Compatibility Mode (HTTP-In)** firewall exception is enabled on each node. +To run this cmdlet with the *PostUpdateScript* or *PreUpdateScript* parameters, Windows PowerShell +remoting must be enabled on each node. To do this, use the **Enable-PSRemoting** cmdlet. In +addition, ensure that the **Windows Remote Management - Compatibility Mode (HTTP-In)** firewall +exception is enabled on each node. ## EXAMPLES @@ -64,11 +70,12 @@ In addition, ensure that the **Windows Remote Management - Compatibility Mode (H PS C:\> Set-CauClusterRole -ClusterName "CONTOSO-FC1" -DaysOfWeek Tuesday -WeeksOfMonth 1,2 -RebootTimeoutMinutes 10 -Force ``` -This command configures settings for the CAU clustered role on the cluster named CONTOSO-FC1. -The CAU clustered role is configured to perform updating runs on Tuesdays on the first and second weeks of each month. -The CAU clustered role allows 10 minutes for the restarting of each node, if a restart is necessary. -If the restart does not complete within this time, then the updating run on that node is marked as failed. -Because the command specifies the *Force* parameter, the cmdlet runs without displaying confirmation prompts. +This command configures settings for the CAU clustered role on the cluster named CONTOSO-FC1. The +CAU clustered role is configured to perform updating runs on Tuesdays on the first and second weeks +of each month. The CAU clustered role allows 10 minutes for the restarting of each node, if a +restart is necessary. If the restart does not complete within this time, then the updating run on +that node is marked as failed. Because the command specifies the *Force* parameter, the cmdlet runs +without displaying confirmation prompts. ### Example 2: Configure settings for a CAU cluster role on the specified cluster on the second week of the month ``` @@ -85,21 +92,23 @@ DaysOfWeek Tuesday WeeksInterval 2 ``` -This command configures settings for the CAU clustered role on the cluster named CONTOSO-FC1. -The CAU clustered role is configured to perform updating runs on Tuesdays on the second week of each month. -The CAU clustered role allows 10 minutes for the restarting of each node, if a restart is necessary. -If the restart does not complete within this time, then the updating run on that node is marked as failed. -The CAU clustered role runs a script after updating completes, just after the node leaves Maintenance mode. -The script is located at the root of drive G: in clustered storage and is named verifyupdatesinstalled.ps1. -Because the command specifies the *Force* parameter, the cmdlet runs without displaying confirmation prompts. +This command configures settings for the CAU clustered role on the cluster named CONTOSO-FC1. The +CAU clustered role is configured to perform updating runs on Tuesdays on the second week of each +month. The CAU clustered role allows 10 minutes for the restarting of each node, if a restart is +necessary. If the restart does not complete within this time, then the updating run on that node is +marked as failed. The CAU clustered role runs a script after updating completes, just after the node +leaves Maintenance mode. The script is located at the root of drive G: in clustered storage and is +named verifyupdatesinstalled.ps1. Because the command specifies the *Force* parameter, the cmdlet +runs without displaying confirmation prompts. ### Example 3: Initiate an updating run on the specified cluster ``` PS C:\> Set-CauClusterRole -ClusterName "CONTOSO-FC1" -UpdateNow -Force ``` -This command causes the CAU clustered role to initiate an updating run immediately on the cluster named CONTOSO-FC1. -Because the command specifies the *Force* parameter, the cmdlet runs without displaying confirmation prompts +This command causes the CAU clustered role to initiate an updating run immediately on the cluster +named CONTOSO-FC1. Because the command specifies the *Force* parameter, the cmdlet runs without +displaying confirmation prompts ### Example 4: Configure settings for a CAU cluster role on the specified cluster ``` @@ -108,10 +117,10 @@ PS C:\> $StopAfter = New-TimeSpan -hour 2 -minute 90 -seconds 10 PS C:\> Set-CauClusterRole -ClusterName "CONTOSO-FC1" -WarnAfter $WarnAfter -StopAfter $StopAfter -StartDate 1/1/2012 -Force ``` -This example configures settings for the CAU clustered role on the cluster named CONTOSO-FC1. -Time spans are specified for logging a warning or canceling the updating run if it is not completed. -The earliest date that an updating run can be triggered is 1/1/2012. -Because the command specifies the *Force* parameter, the cmdlet runs without displaying confirmation prompts +This example configures settings for the CAU clustered role on the cluster named CONTOSO-FC1. Time +spans are specified for logging a warning or canceling the updating run if it is not completed. The +earliest date that an updating run can be triggered is 1/1/2012. Because the command specifies the +*Force* parameter, the cmdlet runs without displaying confirmation prompts ## PARAMETERS @@ -121,36 +130,44 @@ For instance, to specify a Domain argument for one plug-in: - `@{Domain=Domain.local}` You can specify multiple pairs in a set separated with semicolons. For instance: -- `@{name1=value1;name2=value2;name3=value3}` -These name=value pairs must be meaningful to the *CauPluginName* parameter that you specify. -If you specify arguments for more than one plug-in, provide the sets of name=value pairs in the order that you pass values in *CauPluginName*, separated by commas. -For instance: +- `@{name1=value1;name2=value2;name3=value3}` These name=value pairs must be meaningful to the + *CauPluginName* parameter that you specify. If you specify arguments for more than one plug-in, + provide the sets of name=value pairs in the order that you pass values in *CauPluginName*, + separated by commas. For instance: - `@{name1=value1;name2=value2;name3=value3},@{name4=value4;name5=value5}` For the default **Microsoft.WindowsUpdatePlugin** plug-in, no arguments are needed. The following arguments are optional: -- **'IncludeRecommendedUpdates'='\'**: Boolean value to indicate that recommended updates will be applied in addition to important updates on each node. -If not specified, the default value is False. -- A standard Windows Update Agent query string that specifies criteria used by the Windows Update Agent to filter the updates that will be applied to each node. -For a name, use **QueryString** and for a value, enclose the full query in quotation marks. -If not specified, then the **Microsoft.WindowsUpdatePlugin** plug-in by default uses the following argument: -- `QueryString="IsInstalled=0 and Type='Software' and IsHidden=0 and IsAssigned=1"` -For more information about query strings for the default **Microsoft.WindowsUpdatePlugin** plug-in and the criteria such as IsInstalled that can be included in the query strings, see [IUpdateSearcher::Search method](https://go.microsoft.com/fwlink/p/?LinkId=223304). +- **'IncludeRecommendedUpdates'='\'**: Boolean value to indicate that recommended updates + will be applied in addition to important updates on each node. If not specified, the default value + is False. +- A standard Windows Update Agent query string that specifies criteria used by the Windows Update + Agent to filter the updates that will be applied to each node. For a name, use **QueryString** and + for a value, enclose the full query in quotation marks. If not specified, then the + **Microsoft.WindowsUpdatePlugin** plug-in by default uses the following argument: +- `QueryString="IsInstalled=0 and Type='Software' and IsHidden=0 and IsAssigned=1"` For more + information about query strings for the default **Microsoft.WindowsUpdatePlugin** plug-in and the + criteria such as IsInstalled that can be included in the query strings, see + [IUpdateSearcher::Search method](https://go.microsoft.com/fwlink/p/?LinkId=223304). For the **Microsoft.HotfixPlugin** plug-in, the following argument is required: -- **HotfixRootFolderPath=\**: The UNC path to a hotfix root folder in an SMB share with a structure that contains the updates to apply and that contains the hotfix configuration file +- **HotfixRootFolderPath=\**: The UNC path to a hotfix root folder in an SMB share with a + structure that contains the updates to apply and that contains the hotfix configuration file The following arguments are optional for the **Microsoft.HotfixPlugin** plug-in: -- **RequireSmbEncryption=\**: Boolean value to indicate that SMB Encryption will be enforced for accessing data from the SMB share. -If not specified, the default value is False. -To ensure the integrity of the data accessed from the SMB share, the plug-in requires that the share is enabled for either SMB signing or SMB Encryption. -- **DisableAclChecks=\**: Boolean value to indicate that the plug-in will check for sufficient permissions on the hotfix root folder and the hotfix configuration file. -If not specified, the default value is False. -- **HotfixInstallerTimeoutMinutes=\**: The length of time in minutes that the plug-in allows the hotfix installer process to return. -If not specified, the default value is 30 minutes. -- **HotfixConfigFileName=\**: Name for the hotfix configuration file. -If not specified, the default name DefaultHotfixConfig.xml is used. -For more information about required and optional arguments for the **Microsoft.HotfixPlugin** plug-in, see [How CAU Plug-ins Work](https://go.microsoft.com/fwlink/p/?LinkId=235333). +- **RequireSmbEncryption=\**: Boolean value to indicate that SMB Encryption will be enforced + for accessing data from the SMB share. If not specified, the default value is False. To ensure the + integrity of the data accessed from the SMB share, the plug-in requires that the share is enabled + for either SMB signing or SMB Encryption. +- **DisableAclChecks=\**: Boolean value to indicate that the plug-in will check for + sufficient permissions on the hotfix root folder and the hotfix configuration file. If not + specified, the default value is False. +- **HotfixInstallerTimeoutMinutes=\**: The length of time in minutes that the plug-in + allows the hotfix installer process to return. If not specified, the default value is 30 minutes. +- **HotfixConfigFileName=\**: Name for the hotfix configuration file. If not specified, the + default name DefaultHotfixConfig.xml is used. For more information about required and optional + arguments for the **Microsoft.HotfixPlugin** plug-in, see + [How CAU Plug-ins Work](https://go.microsoft.com/fwlink/p/?LinkId=235333). ```yaml Type: Hashtable[] @@ -165,11 +182,12 @@ Accept wildcard characters: False ``` ### -CauPluginName -Specifies one or more plug-ins to use when performing scans or updates. -You can specify multiple values separated with commas. -The default is the Microsoft.WindowsUpdatePlugin plug-in. -This plug-in coordinates the Windows Update Agent software resident on each cluster node, the same software that is used when updates are downloaded from Windows Update or Microsoft Update, or from a Windows Server Update Services (WSUS) server. -For more information about how plug-ins work with CAU, see [How CAU Plug-ins Work](https://go.microsoft.com/fwlink/p/?LinkId=235333). +Specifies one or more plug-ins to use when performing scans or updates. You can specify multiple +values separated with commas. The default is the Microsoft.WindowsUpdatePlugin plug-in. This plug-in +coordinates the Windows Update Agent software resident on each cluster node, the same software that +is used when updates are downloaded from Windows Update or Microsoft Update, or from a Windows +Server Update Services (WSUS) server. For more information about how plug-ins work with CAU, see +[How CAU Plug-ins Work](https://go.microsoft.com/fwlink/p/?LinkId=235333). ```yaml Type: String[] @@ -184,9 +202,10 @@ Accept wildcard characters: False ``` ### -ClusterName -Specifies the name of the cluster on which to configure the CAU clustered role. -If not specified, then the current cluster is used. -This parameter is only required when this cmdlet is not run on a failover cluster node, or this cmdlet is used to reference a failover cluster different from where the cmdlet is run. +Specifies the name of the cluster on which to configure the CAU clustered role. If not specified, +then the current cluster is used. This parameter is only required when this cmdlet is not run on a +failover cluster node, or this cmdlet is used to reference a failover cluster different from where +the cmdlet is run. ```yaml Type: String @@ -201,8 +220,11 @@ Accept wildcard characters: False ``` ### -ConfigurationName -Specifies the Windows PowerShell session configuration that defines the session in which scripts, specified by the *PreUpdateScript* and *PostUpdateScript* parameters, and cmdlets are run, and can limit the cmdlets that are available to be run. -If either a pre-update or post-update script is specified but a configuration name is not specified, then the default session configuration that is built into Windows PowerShell is used. +Specifies the Windows PowerShell session configuration that defines the session in which scripts, +specified by the *PreUpdateScript* and *PostUpdateScript* parameters, and cmdlets are run, and can +limit the cmdlets that are available to be run. If either a pre-update or post-update script is +specified but a configuration name is not specified, then the default session configuration that is +built into Windows PowerShell is used. ```yaml Type: String @@ -277,10 +299,13 @@ Accept wildcard characters: False ``` ### -EnableFirewallRules -Indicates that this cmdlet enables the **Remote Shutdown** Windows Firewall rule group on each cluster node, if it is not already enabled, each time the CAU clustered role performs an Updating Run. -Enabling this rule group permits inbound communication to each cluster node during each Updating Run that allows CAU to shut down and restart the node remotely. -If Windows Firewall is in use on the cluster nodes and the rule group is not enabled, the updating run will fail. -The **Remote Shutdown** Windows Firewall rule group is not enabled when it will conflict with Group Policy settings that are configured for Windows Firewall. +Indicates that this cmdlet enables the **Remote Shutdown** Windows Firewall rule group on each +cluster node, if it is not already enabled, each time the CAU clustered role performs an Updating +Run. Enabling this rule group permits inbound communication to each cluster node during each +Updating Run that allows CAU to shut down and restart the node remotely. If Windows Firewall is in +use on the cluster nodes and the rule group is not enabled, the updating run will fail. The **Remote +Shutdown** Windows Firewall rule group is not enabled when it will conflict with Group Policy +settings that are configured for Windows Firewall. ```yaml Type: SwitchParameter @@ -295,9 +320,9 @@ Accept wildcard characters: False ``` ### -FailbackMode -Specifies the method used to bring drained workloads back to the node, at the end of updating the node. -Drained workloads are workloads that were previously running on the node, but were moved to another node. -The acceptable values for this parameter are: +Specifies the method used to bring drained workloads back to the node, at the end of updating the +node. Drained workloads are workloads that were previously running on the node, but were moved to +another node. The acceptable values for this parameter are: - NoFailback - Immediate @@ -368,8 +393,8 @@ Accept wildcard characters: False ``` ### -MaxRetriesPerNode -Specifies the maximum number of times that the update process, which includes any pre-update and post-update scripts, is retried per node. -The maximum is 64and the default is 3. +Specifies the maximum number of times that the update process, which includes any pre-update and +post-update scripts, is retried per node. The maximum is 64and the default is 3. ```yaml Type: Int32 @@ -399,9 +424,11 @@ Accept wildcard characters: False ``` ### -PostUpdateScript -Specifies the path and file name for a Windows PowerShell script to run after updating completes, just after the node leaves Maintenance mode. -The file name extension must be .ps1 and the total length of the path plus the file name must be no longer than 260 characters. -As a best practice, the script should be located on a disk in cluster storage, to ensure that it is always accessible to all the cluster nodes. +Specifies the path and file name for a Windows PowerShell script to run after updating completes, +just after the node leaves Maintenance mode. The file name extension must be .ps1 and the total +length of the path plus the file name must be no longer than 260 characters. As a best practice, the +script should be located on a disk in cluster storage, to ensure that it is always accessible to all +the cluster nodes. ```yaml Type: String @@ -416,9 +443,11 @@ Accept wildcard characters: False ``` ### -PreUpdateScript -Specifies the path and file name for a Windows PowerShell script to run on each node before updating begins, and before the node is put into Maintenance mode. -The file name extension must be .ps1 and the total length of the path plus the file name must be no longer than 260 characters. -As a best practice, the script should be located on a disk in cluster storage, to ensure that it is always accessible to all the cluster nodes. +Specifies the path and file name for a Windows PowerShell script to run on each node before updating +begins, and before the node is put into Maintenance mode. The file name extension must be .ps1 and +the total length of the path plus the file name must be no longer than 260 characters. As a best +practice, the script should be located on a disk in cluster storage, to ensure that it is always +accessible to all the cluster nodes. ```yaml Type: String @@ -433,8 +462,8 @@ Accept wildcard characters: False ``` ### -RebootTimeoutMinutes -Specifies the time in minutes that CAU will allow for the restarting of a node. -If the restart does not complete within this time, then the updating run on that node is marked as failed. +Specifies the time in minutes that CAU will allow for the restarting of a node. If the restart does +not complete within this time, then the updating run on that node is marked as failed. ```yaml Type: Int32 @@ -464,13 +493,16 @@ Accept wildcard characters: False ``` ### -RunPluginsSerially -Indicates that CAU scans each cluster node for applicable updates and stage the updates for each plug-in in the plug-in order passed into the*CauPluginName* parameter, when multiple plug-ins are used during an updating run. +Indicates that CAU scans each cluster node for applicable updates and stage the updates for each +plug-in in the plug-in order passed into the*CauPluginName* parameter, when multiple plug-ins are +used during an updating run. -By default, CAU scans and stages the applicable updates for all plug-ins in parallel. -Regardless of the configuration of this parameter, CAU installs the applicable updates for each plug-in sequentially. +By default, CAU scans and stages the applicable updates for all plug-ins in parallel. Regardless of +the configuration of this parameter, CAU installs the applicable updates for each plug-in +sequentially. -The parameter is valid only when multiple plug-ins are specified in *CauPluginName* parameter. -If a single plug-in is specified, a warning appears. +The parameter is valid only when multiple plug-ins are specified in *CauPluginName* parameter. If a +single plug-in is specified, a warning appears. ```yaml Type: SwitchParameter @@ -485,7 +517,10 @@ Accept wildcard characters: False ``` ### -SeparateReboots -Indicates that CAU shuts down and restart a cluster node after each plug-in installs updates on the node, if the installation of an update by a plug-in requires a restart that CAU will shut down and restart a cluster node after each plug-in installs updates on the node, if the installation of an update by a plug-in requires a restart +Indicates that CAU shuts down and restart a cluster node after each plug-in installs updates on the +node, if the installation of an update by a plug-in requires a restart that CAU will shut down and +restart a cluster node after each plug-in installs updates on the node, if the installation of an +update by a plug-in requires a restart The parameter is valid only when multiple plug-ins are specified in the *CauPluginName* parameter. If a single plug-in is specified, a warning appears. @@ -518,11 +553,13 @@ Accept wildcard characters: False ``` ### -StopAfter -Specifies the time in minutes after which the updating run is canceled if it has not completed. -The time span can be expressed in the standard ways available in Windows PowerShell, for instance, `01:30:00` represents one hour and thirty minutes. -By default, the updating run is allowed an unlimited amount of time to complete. +Specifies the time in minutes after which the updating run is canceled if it has not completed. The +time span can be expressed in the standard ways available in Windows PowerShell, for instance, +`01:30:00` represents one hour and thirty minutes. By default, the updating run is allowed an +unlimited amount of time to complete. -If pre-update or post-update scripts are specified, then the entire process of running scripts and performing updates must be complete within this time limit. +If pre-update or post-update scripts are specified, then the entire process of running scripts and +performing updates must be complete within this time limit. ```yaml Type: TimeSpan @@ -537,7 +574,9 @@ Accept wildcard characters: False ``` ### -StopOnPluginFailure -Indicates that if a failure occurs during the application of updates on a node by any plug-in, subsequent updates on the node that are coordinated by the remaining plug-ins are stopped when multiple plug-ins are used during an updating run. +Indicates that if a failure occurs during the application of updates on a node by any plug-in, +subsequent updates on the node that are coordinated by the remaining plug-ins are stopped when +multiple plug-ins are used during an updating run. The parameter is valid only when multiple plug-ins are specified for the *CauPluginName* parameter. If a single plug-in is specified, a warning appears. @@ -555,14 +594,16 @@ Accept wildcard characters: False ``` ### -SuspendClusterNodeTimeoutMinutes -Specifies the maximum amount of time CAU should wait for the Suspend-ClusterNodecmdlet to succeed if the underlying clustered space is in degraded condition. +Specifies the maximum amount of time CAU should wait for the Suspend-ClusterNodecmdlet to succeed if +the underlying clustered space is in degraded condition. -If **Suspend-ClusterNode** fails with ERROR_CLUSTER_SPACE_DEGRADED error, CAU will keep retrying for *SuspendClusterNodeTimeoutMinutes* or suspend the call if the command succeeds. +If **Suspend-ClusterNode** fails with ERROR_CLUSTER_SPACE_DEGRADED error, CAU will keep retrying for +*SuspendClusterNodeTimeoutMinutes* or suspend the call if the command succeeds. These retries do not decrement the value of the *MaxRetriesPerNode* parameter set by the user. -The timeout value is per cluster node. -So CAU could potentially spend the amount of time specified for this value for every node in the cluster in the worst case. +The timeout value is per cluster node. So CAU could potentially spend the amount of time specified +for this value for every node in the cluster in the worst case. ```yaml Type: Int32 @@ -577,7 +618,8 @@ Accept wildcard characters: False ``` ### -UpdateNow -Instructs the CAU clustered role to immediately initiate an updating run using the configured settings. +Instructs the CAU clustered role to immediately initiate an updating run using the configured +settings. ```yaml Type: SwitchParameter @@ -607,8 +649,9 @@ Accept wildcard characters: False ``` ### -WarnAfter -Specifies the time in minutes after which a warning is logged if the updating run, including any pre-update and post-update scripts, has not completed. -By default, no warning is logged, regardless of the time taken by the updating run. +Specifies the time in minutes after which a warning is logged if the updating run, including any +pre-update and post-update scripts, has not completed. By default, no warning is logged, regardless +of the time taken by the updating run. ```yaml Type: TimeSpan @@ -655,7 +698,10 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/docset/winserver2022-ps/clusterawareupdating/Stop-CauRun.md b/docset/winserver2022-ps/clusterawareupdating/Stop-CauRun.md index 4ec0a8a51e..11ba503707 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Stop-CauRun.md +++ b/docset/winserver2022-ps/clusterawareupdating/Stop-CauRun.md @@ -16,7 +16,8 @@ Stops an updating run that is in progress on a cluster. ## SYNTAX ``` -Stop-CauRun [[-ClusterName] ] [-Credential ] [-Wait] [-Force] [] +Stop-CauRun [[-ClusterName] ] [-Credential ] [-Wait] [-Force] +[] ``` ## DESCRIPTION @@ -29,15 +30,17 @@ The **Stop-CauRun** cmdlet stops an updating run that is in progress on a failov PS C:\> Stop-CauRun -ClusterName "CONTOSO-FC1" -Wait -Force ``` -This command stops the updating run that is being performed by the CAU Update Coordinator that is configured on the cluster named CONTOSO-FC1. -The cmdlet waits to return until the canceled updating run has finished. -Because the command specifies the *Force* parameter, the cmdlet runs without displaying confirmation prompts. +This command stops the updating run that is being performed by the CAU Update Coordinator that is +configured on the cluster named CONTOSO-FC1. The cmdlet waits to return until the canceled updating +run has finished. Because the command specifies the *Force* parameter, the cmdlet runs without +displaying confirmation prompts. ## PARAMETERS ### -ClusterName -Specifies the name of the cluster on which to stop an updating run that is in progress. -This parameter is only required when this cmdlet is not run on a failover cluster node, or this cmdlet is used to reference a failover cluster different from where the cmdlet is run. +Specifies the name of the cluster on which to stop an updating run that is in progress. This +parameter is only required when this cmdlet is not run on a failover cluster node, or this cmdlet is +used to reference a failover cluster different from where the cmdlet is run. ```yaml Type: String @@ -82,8 +85,9 @@ Accept wildcard characters: False ``` ### -Wait -Indicates that the cmdlet waits until after the canceled updating run has finished. -Otherwise, returns as soon as the stop request has been acknowledged by the current Cluster-Aware Updating (CAU) Update Coordinator. +Indicates that the cmdlet waits until after the canceled updating run has finished. Otherwise, +returns as soon as the stop request has been acknowledged by the current Cluster-Aware Updating +(CAU) Update Coordinator. ```yaml Type: SwitchParameter @@ -98,7 +102,10 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/docset/winserver2022-ps/clusterawareupdating/Test-CauSetup.md b/docset/winserver2022-ps/clusterawareupdating/Test-CauSetup.md index ebcb74e27b..b85536eee7 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Test-CauSetup.md +++ b/docset/winserver2022-ps/clusterawareupdating/Test-CauSetup.md @@ -20,9 +20,11 @@ Test-CauSetup [[-ClusterName] ] [[-Credential] ] [ [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Unregister-CauPlugin** cmdlet removes a software updating plug-in from the list of plug-ins that are used by Cluster-Aware Updating (CAU). -The plug-in can be removed, but afterwards, it cannot be used for updating runs. -The **Microsoft.WindowsUpdatePlugin** and **Microsoft.HotfixPlugin** plug-ins, which are installed with CAU, cannot be unregistered. +The **Unregister-CauPlugin** cmdlet removes a software updating plug-in from the list of plug-ins +that are used by Cluster-Aware Updating (CAU). The plug-in can be removed, but afterwards, it cannot +be used for updating runs. The **Microsoft.WindowsUpdatePlugin** and **Microsoft.HotfixPlugin** +plug-ins, which are installed with CAU, cannot be unregistered. ## EXAMPLES @@ -82,7 +83,10 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS From d17ada64ba145029df12b021acfca61d52c48b9f Mon Sep 17 00:00:00 2001 From: Paul Huijbregts <30799281+pahuijbr@users.noreply.github.com> Date: Tue, 27 Sep 2022 11:30:40 -0700 Subject: [PATCH 254/965] Update Set-MpPreference.md --- docset/winserver2022-ps/defender/Set-MpPreference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/defender/Set-MpPreference.md b/docset/winserver2022-ps/defender/Set-MpPreference.md index 2689fbf284..0a89cc1fcf 100644 --- a/docset/winserver2022-ps/defender/Set-MpPreference.md +++ b/docset/winserver2022-ps/defender/Set-MpPreference.md @@ -654,7 +654,7 @@ Accept wildcard characters: False ``` ### -DisableScanningNetworkFiles -Indicates whether to scan for network files. If you specify a value of $False or do not specify a value, Windows Defender scans network files. If you specify a value of $True, Windows Defender does not scan network files. We do not recommend that you scan network files. +Indicates whether to scan for network files. If you specify a value of $False or do not specify a value, Windows Defender scans network files. If you specify a value of $True, Windows Defender does not scan network files. ```yaml Type: Boolean From 2faa9b02329c41adccf88cab9aa687dbe0d1809d Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Tue, 27 Sep 2022 14:03:28 +0100 Subject: [PATCH 255/965] Bulk text formatting updates to the clusterawareupdating module --- .../Add-CauClusterRole.md | 63 +++++++++---------- .../Disable-CauClusterRole.md | 12 ++-- .../Enable-CauClusterRole.md | 12 ++-- .../clusterawareupdating/Export-CauReport.md | 16 ++--- .../Get-CauClusterRole.md | 6 +- .../clusterawareupdating/Get-CauPlugin.md | 4 +- .../clusterawareupdating/Get-CauReport.md | 16 ++--- .../clusterawareupdating/Get-CauRun.md | 6 +- .../clusterawareupdating/Invoke-CauRun.md | 58 ++++++++--------- .../clusterawareupdating/Invoke-CauScan.md | 20 +++--- .../Register-CauPlugin.md | 10 +-- .../Remove-CauClusterRole.md | 14 ++--- .../Save-CauDebugTrace.md | 10 +-- .../Set-CauClusterRole.md | 61 +++++++++--------- .../clusterawareupdating/Stop-CauRun.md | 8 +-- .../clusterawareupdating/Test-CauSetup.md | 12 ++-- .../Unregister-CauPlugin.md | 6 +- 17 files changed, 166 insertions(+), 168 deletions(-) diff --git a/docset/winserver2022-ps/clusterawareupdating/Add-CauClusterRole.md b/docset/winserver2022-ps/clusterawareupdating/Add-CauClusterRole.md index 48a2a48a2a..7c4963a1a2 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Add-CauClusterRole.md +++ b/docset/winserver2022-ps/clusterawareupdating/Add-CauClusterRole.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating -ms.date: 12/20/2016 +ms.date: 09/27/2022 online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/add-cauclusterrole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-CauClusterRole @@ -42,13 +42,13 @@ Add-CauClusterRole [-VirtualComputerObjectName ] [-GroupName ] ``` ## DESCRIPTION -The **Add-CauClusterRole** cmdlet adds the Cluster-Aware Updating (CAU) clustered role that provides +The `Add-CauClusterRole` cmdlet adds the Cluster-Aware Updating (CAU) clustered role that provides the self-updating functionality to the specified cluster. When the CAU clustered role has been added to a cluster, the failover cluster can update itself on the schedule that is specified by the user, without requiring an external computer to coordinate the cluster updating process. To run this cmdlet, Windows PowerShell® remoting must be enabled on each node. To do this, run the -**Enable-PSRemoting** cmdlet. In addition, ensure that the Windows Remote Management - Compatibility +`Enable-PSRemoting` cmdlet. In addition, ensure that the Windows Remote Management - Compatibility Mode (HTTP-In) firewall exception is enabled on each node. ## EXAMPLES @@ -63,8 +63,8 @@ The CAU clustered role is configured to perform Updating Runs on Tuesdays and Sa second and fourth weeks of each month. In an Updating Run, the maximum number of failed nodes is two and the maximum number of retries per node is two. A script called verifyupdatesinstalled.ps1 runs on each node after it has been fully updated. Before an Updating Run can begin, all the nodes of -that cluster must be running. If it is not already enabled, the Remote Shutdown Windows Firewall -rule group will be enabled on each cluster node. Because the command uses the *Force* parameter, the +that cluster must be running. If it isn't already enabled, the Remote Shutdown Windows Firewall +rule group will be enabled on each cluster node. Because the command uses the **Force** parameter, the cmdlet runs without displaying confirmation prompts. ### Example 2: Add a CAU clustered role on the specified cluster at a specific interval @@ -76,9 +76,9 @@ This command adds the CAU clustered role, using a default name, on the cluster c The CAU clustered role is configured to perform Updating Runs on Tuesdays and Saturdays at an interval of every three weeks. In an Updating Run, the maximum number of failed nodes is two and the maximum number of retries per node is two. Updating Runs can begin even when the nodes of the -cluster are not all running (if the cluster itself has quorum and is running). If it is not already +cluster aren't all running (if the cluster itself has quorum and is running). If it isn't already enabled, the Remote Shutdown Windows Firewall rule group will be enabled on each cluster node. -Because the command uses the *Force* parameter, the cmdlet runs without displaying confirmation +Because the command uses the **Force** parameter, the cmdlet runs without displaying confirmation prompts. ### Example 3: Add a CAU clustered role on the specified cluster using plug-ins @@ -88,12 +88,12 @@ PS C:\> Add-CauClusterRole -ClusterName "CONTOSO-FC1" -CauPluginName Microsoft.W This command adds the CAU clustered role, using a default name, on the cluster called CONTOSO-FC1. The CAU clustered role is configured to perform updates using the **Microsoft.WindowsUpdatePlugin** -plug-in with the optional *IncludeRecommendedUpdates* parameter set to True, and using the +plug-in with the optional **IncludeRecommendedUpdates** parameter set to True, and using the **Microsoft.HotfixPlugin plug-in** using the hotfix root folder \\\\CauHotfixSrv\shareName and the default hotfix configuration file. If a failure occurs during the installation of updates on a node by **Microsoft.WindowsUpdatePlugin**, updates are applied by **Microsoft.HotfixPlugin plug-in**. If -it is not already enabled, the Remote Shutdown Windows Firewall rule group is enabled on each -cluster node. Because the command uses the *Force* parameter, the cmdlet runs without displaying +it isn't already enabled, the Remote Shutdown Windows Firewall rule group is enabled on each +cluster node. Because the command uses the **Force** parameter, the cmdlet runs without displaying confirmation prompts. ## PARAMETERS @@ -105,7 +105,7 @@ For instance, to specify a Domain argument for one plug-in: You can specify multiple pairs in a set separated with semicolons. For instance: - `@{name1=value1;name2=value2;name3=value3}` These name=value pairs must be meaningful to the - *CauPluginName* parameter that you specify. If you specify arguments for more than one plug-in, + **CauPluginName** parameter that you specify. If you specify arguments for more than one plug-in, provide the sets of name=value pairs in the order that you pass values in **CauPluginName**, separated by commas. For instance: - `@{name1=value1;name2=value2;name3=value3},@{name4=value4;name5=value5}` @@ -178,7 +178,7 @@ Accept wildcard characters: False ### -ClusterName Specifies the name of the cluster on which to create the CAU clustered role. This parameter is only -required when this cmdlet is not run on a failover cluster node, or this cmdlet is used to reference +required when this cmdlet isn't run on a failover cluster node, or this cmdlet is used to reference a failover cluster different from where the cmdlet is run. ```yaml @@ -195,9 +195,9 @@ Accept wildcard characters: False ### -ConfigurationName Specifies the Windows PowerShell session configuration that defines the session in which scripts, -specified by the *PreUpdateScript* and *PostUpdateScript* parameters, and cmdlets are run, and can +specified by the **PreUpdateScript** and **PostUpdateScript** parameters, and cmdlets are run, and can limit the cmdlets that are available to be run. If either a pre-update or post-update script is -specified but a configuration name is not specified, then the default session configuration that is +specified but a configuration name isn't specified, then the default session configuration that is built into Windows PowerShell® is used. ```yaml @@ -271,13 +271,13 @@ Accept wildcard characters: False ### -EnableFirewallRules Indicates that the cmdlet enables the Remote Shutdown Windows Firewall rule group on each cluster -node, if it is not already enabled. If the *EnableFirewallRules* parameter is specified, CAU will +node, if it isn't already enabled. If the **EnableFirewallRules** parameter is specified, CAU will also automatically re-enable the Remote Shutdown rule group each time the CAU clustered role performs an Updating Run, in case the rules are disabled manually in the intervening time. Enabling this rule group permits inbound communication to each cluster node during each Updating Run that allows CAU to shut down and restart the node remotely (if the installation of an update requires a -restart). If Windows Firewall is in use on the cluster nodes and the rule group is not enabled, the -Updating Run will fail. The Remote Shutdown Windows Firewall rule group is not enabled when it will +restart). If Windows Firewall is in use on the cluster nodes and the rule group isn't enabled, the +Updating Run will fail. The Remote Shutdown Windows Firewall rule group isn't enabled when it will conflict with Group Policy settings that are configured for Windows Firewall. ```yaml @@ -441,7 +441,7 @@ begins, and before the node is put into Maintenance mode. The file name extensio the total length of the path plus the file name must be no longer than 260 characters. As a best practice, the script should be located on a disk in cluster storage, or at a highly available network share, to ensure that the script is always accessible to all the cluster nodes. If a -pre-update script fails, the node is not updated. +pre-update script fails, the node isn't updated. ```yaml Type: String @@ -456,7 +456,7 @@ Accept wildcard characters: False ``` ### -RebootTimeoutMinutes -Specifies the time in minutes that CAU allows for the restarting of a node. If the restart does not +Specifies the time in minutes that CAU allows for the restarting of a node. If the restart doesn't complete within this time, then the Updating Run on that node will be marked as failed. ```yaml @@ -490,11 +490,11 @@ Accept wildcard characters: False ### -RunPluginsSerially Indicates that the cmdlet CAU scans each cluster node for applicable updates and stages the updates for each plug-in in the plug-in order when multiple plug-ins are used during an Updating Run when -you use the *CauPluginName* parameter. By default, CAU scans and stages the applicable updates for +you use the **CauPluginName** parameter. By default, CAU scans and stages the applicable updates for all plug-ins in parallel. Regardless of the configuration of this parameter, CAU installs the applicable updates for each plug-in sequentially. -The parameter is valid only when multiple plug-ins are specified in the *CauPluginName* parameter. +The parameter is valid only when multiple plug-ins are specified in the **CauPluginName** parameter. If a single plug-in is specified, a warning appears. ```yaml @@ -515,7 +515,7 @@ updates on the node, if the installation of an update by a plug-in requires a re during an updating run, all plug-ins complete the installation of updates on a cluster node before the node restarts one time. -The parameter is valid only when multiple plug-ins are specified in the *CauPluginName* parameter. +The parameter is valid only when multiple plug-ins are specified in the **CauPluginName** parameter. If a single plug-in is specified, a warning appears. ```yaml @@ -546,7 +546,7 @@ Accept wildcard characters: False ``` ### -StopAfter -Specifies the time in minutes after which the updating run is canceled if it has not completed. The +Specifies the time in minutes after which the updating run is canceled if it hasn't completed. The time span can be expressed in the standard ways available in Windows PowerShell, for instance, `01:30:00` represents one hour and thirty minutes. By default, the updating run is allowed an unlimited amount of time to complete. @@ -568,9 +568,8 @@ Accept wildcard characters: False ### -StopOnPluginFailure Indicates that this cmdlet coordinates subsequent updates on the node when plug-ins are stopped. -When multiple plug-ins are used during an updating run, by default, a failure by one plug-in does -not affect the application of updates on a node by other plug-ins. This parameter is valid only when -multiple plug-ins are specified in the *CauPluginName* parameter. If a single plug-in is specified, +When multiple plug-ins are used during an updating run, by default, a failure by one plug-in doesn't affect the application of updates on a node by other plug-ins. This parameter is valid only when +multiple plug-ins are specified in the **CauPluginName** parameter. If a single plug-in is specified, a warning appears. ```yaml @@ -586,12 +585,12 @@ Accept wildcard characters: False ``` ### -SuspendClusterNodeTimeoutMinutes -Specifies the maximum amount of time CAU should wait for the **Suspend-ClusterNode** cmdlet to +Specifies the maximum amount of time CAU should wait for the `Suspend-ClusterNode` cmdlet to succeed if the underlying clustered space is in degraded condition. -If **Suspend-ClusterNode** fails with ERROR_CLUSTER_SPACE_DEGRADED error, CAU will keep retrying for -*SuspendClusterNodeTimeoutMinutes* or suspend the call if the command succeeds. The retries for this -error don not count towards the *MaxRetriesPerNode* parameter set by the user. +If `Suspend-ClusterNode` fails with ERROR_CLUSTER_SPACE_DEGRADED error, CAU will keep retrying for +**SuspendClusterNodeTimeoutMinutes** or suspend the call if the command succeeds. The retries for this +error don't count towards the **MaxRetriesPerNode** parameter set by the user. The timeout value is per cluster node. So CAU could potentially spend the amount of time specified for this value for every node in the cluster in the worst case. @@ -630,7 +629,7 @@ Accept wildcard characters: False ### -WarnAfter Specifies the time in minutes after which a warning will be logged if the Updating Run (including -any pre-update and post-update scripts) has not completed. By default, no warning will be logged, +any pre-update and post-update scripts) hasn't completed. By default, no warning will be logged, regardless of the time taken by the Updating Run. ```yaml @@ -663,7 +662,7 @@ Accept wildcard characters: False ### -WhatIf Shows what would happen if the cmdlet runs. -The cmdlet is not run. +The cmdlet isn't run. ```yaml Type: SwitchParameter diff --git a/docset/winserver2022-ps/clusterawareupdating/Disable-CauClusterRole.md b/docset/winserver2022-ps/clusterawareupdating/Disable-CauClusterRole.md index 6cf6683f41..cc719b1d0e 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Disable-CauClusterRole.md +++ b/docset/winserver2022-ps/clusterawareupdating/Disable-CauClusterRole.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating -ms.date: 12/20/2016 +ms.date: 09/27/2022 online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/disable-cauclusterrole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-CauClusterRole @@ -21,9 +21,9 @@ Disable-CauClusterRole [[-ClusterName] ] [-Credential ] [- ``` ## DESCRIPTION -The **Disable-CauClusterRole** cmdlet suspends the self-updating functionality on the specified +The `Disable-CauClusterRole` cmdlet suspends the self-updating functionality on the specified cluster. The self-updating functionality of the cluster can be re-enabled with the -**Enable-CauClusterRole** cmdlet. +`Enable-CauClusterRole` cmdlet. ## EXAMPLES @@ -34,13 +34,13 @@ PS C:\> Disable-CauClusterRole -ClusterName CONTOSO-FC1 -Force This command prevents the CAU clustered role on the CONTOSO-FC1 cluster from performing Updating Runs. The cmdlet changes the status of the CAU clustered role to Offline. Because the command -specified the *Force* parameter, the cmdlet runs without displaying confirmation prompts. +specified the **Force** parameter, the cmdlet runs without displaying confirmation prompts. ## PARAMETERS ### -ClusterName Specifies the name of the cluster on which to disable the self-updating functionality. This -parameter is only required when this cmdlet is not run on a failover cluster node, or this cmdlet is +parameter is only required when this cmdlet isn't run on a failover cluster node, or this cmdlet is used to reference a failover cluster different from where the cmdlet is run. ```yaml @@ -102,7 +102,7 @@ Accept wildcard characters: False ### -WhatIf Shows what would happen if the cmdlet runs. -The cmdlet is not run. +The cmdlet isn't run. ```yaml Type: SwitchParameter diff --git a/docset/winserver2022-ps/clusterawareupdating/Enable-CauClusterRole.md b/docset/winserver2022-ps/clusterawareupdating/Enable-CauClusterRole.md index 8042c24a89..f9d7924bc4 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Enable-CauClusterRole.md +++ b/docset/winserver2022-ps/clusterawareupdating/Enable-CauClusterRole.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating -ms.date: 12/20/2016 +ms.date: 09/27/2022 online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/enable-cauclusterrole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-CauClusterRole @@ -21,9 +21,9 @@ Enable-CauClusterRole [[-ClusterName] ] [-Credential ] [-F ``` ## DESCRIPTION -The **Enable-CauClusterRole** cmdlet re-enables the self-updating functionality on the specified +The `Enable-CauClusterRole` cmdlet re-enables the self-updating functionality on the specified cluster. The self-updating functionality of the cluster can be disabled with the -**Disable-CauClusterRole** cmdlet. +`Disable-CauClusterRole` cmdlet. ## EXAMPLES @@ -34,13 +34,13 @@ PS C:\> Enable-CauClusterRole -ClusterName "CONTOSO-FC1" -Force This command enables the CAU clustered role on the CONTOSO-FC1 cluster to begin performing Updating Runs. The cmdlet changes the status of the CAU clustered role to Running. Because the command -specified the *Force* parameter, the cmdlet runs without displaying confirmation prompts. +specified the **Force** parameter, the cmdlet runs without displaying confirmation prompts. ## PARAMETERS ### -ClusterName Specifies the name of the cluster on which to enable the self-updating functionality. This parameter -is only required when this cmdlet is not run on a failover cluster node, or this cmdlet is used to +is only required when this cmdlet isn't run on a failover cluster node, or this cmdlet is used to reference a failover cluster different from where the cmdlet is run. ```yaml @@ -102,7 +102,7 @@ Accept wildcard characters: False ### -WhatIf Shows what would happen if the cmdlet runs. -The cmdlet is not run. +The cmdlet isn't run. ```yaml Type: SwitchParameter diff --git a/docset/winserver2022-ps/clusterawareupdating/Export-CauReport.md b/docset/winserver2022-ps/clusterawareupdating/Export-CauReport.md index 272075e98b..de00a2a0ea 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Export-CauReport.md +++ b/docset/winserver2022-ps/clusterawareupdating/Export-CauReport.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating -ms.date: 12/20/2016 +ms.date: 09/27/2022 online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/export-caureport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-CauReport @@ -21,13 +21,13 @@ Export-CauReport [-InputReport] [-Format] [-Path] ] [-Credential ] [] [] ``` ## DESCRIPTION -The **Get-CauPlugin** cmdlet gets information about one or more software updating plug-ins that are +The `Get-CauPlugin` cmdlet gets information about one or more software updating plug-ins that are registered on the local computer. A plug-in can be specified or information can be retrieved about all registered plug-ins. diff --git a/docset/winserver2022-ps/clusterawareupdating/Get-CauReport.md b/docset/winserver2022-ps/clusterawareupdating/Get-CauReport.md index 1d52d2aa64..a559245c2f 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Get-CauReport.md +++ b/docset/winserver2022-ps/clusterawareupdating/Get-CauReport.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating -ms.date: 12/20/2016 +ms.date: 09/27/2022 online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/get-caureport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CauReport @@ -39,12 +39,12 @@ Get-CauReport [[-ClusterName] ] [-Report ] [-Credentia ``` ## DESCRIPTION -The **Get-CauReport** cmdlet gets the Updating Run reports for all known Updating Runs, or all +The `Get-CauReport` cmdlet gets the Updating Run reports for all known Updating Runs, or all Updating Runs that match the specified dates or other specified parameters. This cmdlet can return a -list of all Updating Run reports between the specified *StartDate* and *EndDate* parameters, or if -the *Last* parameter is specified instead of dates, then the cmdlet returns the most recent Updating +list of all Updating Run reports between the specified **StartDate** and **EndDate** parameters, or if +the **Last** parameter is specified instead of dates, then the cmdlet returns the most recent Updating Run report. By default, the report contains summaries only, but more detail can be obtained with the -*Detailed* parameter or by using the *Report* parameter and specifying a Cluster-Aware Updating +**Detailed** parameter or by using the **Report** parameter and specifying a Cluster-Aware Updating (CAU) report summary object. ## EXAMPLES @@ -72,16 +72,16 @@ PS C:\> Get-CauReport "Contoso-FC1" -Report $CauReportSummary ``` The first command gets the last updating run report summary from the cluster named Contoso-FC1 and -stores the result in the variable named $CauReportSummary. +stores the result in the variable named `$CauReportSummary`. -The second command gets the detailed report from the information stored in the $CauReportSummary +The second command gets the detailed report from the information stored in the `$CauReportSummary` variable. ## PARAMETERS ### -ClusterName Specifies the name of the cluster for which this cmdlet gets reports. This parameter is only -required when this cmdlet is not run on a failover cluster node, or this cmdlet is used to reference +required when this cmdlet isn't run on a failover cluster node, or this cmdlet is used to reference a failover cluster different from where the cmdlet is run. ```yaml diff --git a/docset/winserver2022-ps/clusterawareupdating/Get-CauRun.md b/docset/winserver2022-ps/clusterawareupdating/Get-CauRun.md index ffd2ed774d..082beca774 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Get-CauRun.md +++ b/docset/winserver2022-ps/clusterawareupdating/Get-CauRun.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating -ms.date: 12/20/2016 +ms.date: 09/27/2022 online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/get-caurun?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CauRun @@ -39,7 +39,7 @@ Get-CauRun [[-ClusterName] ] [-Credential ] [-ShowClusterN ``` ## DESCRIPTION -The **Get-CauRun** cmdlet gets status information about an updating run currently in progress. +The `Get-CauRun` cmdlet gets status information about an updating run currently in progress. Use this cmdlet to monitor current updating runs. ## EXAMPLES @@ -73,7 +73,7 @@ named CONTOSO-FC1. ### -ClusterName Specifies the name of the cluster for which this cmdlet gets the updating run status. This parameter -is only required when this cmdlet is not run on a failover cluster node, or this cmdlet is used to +is only required when this cmdlet isn't run on a failover cluster node, or this cmdlet is used to reference a failover cluster different from where the cmdlet is run. ```yaml diff --git a/docset/winserver2022-ps/clusterawareupdating/Invoke-CauRun.md b/docset/winserver2022-ps/clusterawareupdating/Invoke-CauRun.md index 9f5d231997..c19004807b 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Invoke-CauRun.md +++ b/docset/winserver2022-ps/clusterawareupdating/Invoke-CauRun.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating -ms.date: 12/20/2016 +ms.date: 09/27/2022 online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/invoke-caurun?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-CauRun @@ -34,7 +34,7 @@ Invoke-CauRun [-ForceRecovery] [-Force] [[-ClusterName] ] [[-Credential] ``` ## DESCRIPTION -The **Invoke-CauRun** cmdlet performs a scan of cluster nodes for applicable updates and installs +The `Invoke-CauRun` cmdlet performs a scan of cluster nodes for applicable updates and installs those updates through an updating run on the specified cluster. The updating run process includes the following: - Scanning for and downloading applicable updates on each cluster node. @@ -46,8 +46,8 @@ the following: updates that can only be installed after the initial set of updates are installed, and saving a report of the actions taken. -To run this cmdlet with the *PostUpdateScript* or *PreUpdateScript* parameter, Windows PowerShell -remoting must be enabled on each node. To do this, run the **Enable-PSRemoting** cmdlet. In +To run this cmdlet with the **PostUpdateScript** or **PreUpdateScript** parameter, Windows PowerShell +remoting must be enabled on each node. To do this, run the `Enable-PSRemoting` cmdlet. In addition, ensure that the **Windows Remote Management - Compatibility Mode (HTTP-In)** firewall exception is enabled on each node. @@ -62,7 +62,7 @@ This command performs a scan and a full updating run on the cluster named CONTOS uses the **Microsoft.WindowsUpdatePlugin** plug-in and requires that all cluster nodes be online before the running this cmdlet. In addition, this cmdlet allows no more than three retries per node before marking the node as failed, and allows no more than one node to fail before marking the -entire updating run as failed. Because the command specifies the *Force* parameter, the cmdlet runs +entire updating run as failed. Because the command specifies the **Force** parameter, the cmdlet runs without displaying confirmation prompts. ### Example 2: Preform a scan and a full updating run on the specified cluster using multiple plug-ins @@ -73,12 +73,12 @@ PS C:\> Invoke-CauRun -ClusterName CONTOSO-FC1 -CauPluginName Microsoft.WindowsU This command performs a scan and a full updating run on the cluster named CONTOSO-FC1. This cmdlet uses the **Microsoft.WindowsUpdatePlugin** plug-in with the default configuration, and the **Microsoft.HotfixPlugin** plug-in using the hotfix root folder \\\\CauHotfixSrv\shareName and the -default hotfix configuration file. If it is not already enabled, the **Remote Shutdown** Windows +default hotfix configuration file. If it isn't already enabled, the **Remote Shutdown** Windows Firewall rule group is enabled on each cluster node before the updating run. If a failure occurs -during the installation of updates on a node by **Microsoft.WindowsUpdatePlugin**, updates are not +during the installation of updates on a node by **Microsoft.WindowsUpdatePlugin**, updates aren't applied by **Microsoft.HotfixPlugin plug-in**. If the installation of updates by **Microsoft.WindowsUpdatePlugin** requires a node to restart, the node restarts before -**Microsoft.HotfixPlugin plug-in** installs updates. Because the command specifies the *Force* +**Microsoft.HotfixPlugin plug-in** installs updates. Because the command specifies the **Force** parameter, the cmdlet runs without displaying confirmation prompts. ### Example 3: Recover from a previous updating run that failed on the specified cluster @@ -87,7 +87,7 @@ PS C:\> Invoke-CauRun -ClusterName "CONTOSO-FC1"-ForceRecovery -Force ``` This command recovers from a previous updating run that failed and left the cluster in a Locked -state for the cluster named CONTOSO-FC1. Because the command specifies the *Force* parameter, the +state for the cluster named CONTOSO-FC1. Because the command specifies the **Force** parameter, the recovery is performed without confirmation prompts. ## PARAMETERS @@ -187,9 +187,9 @@ Accept wildcard characters: False ### -ConfigurationName Specifies the Windows PowerShell session configuration that defines the session in which scripts are -run, specified by *PreUpdateScript* and *PostUpdateScript* parameters, and can limit the cmdlets +run, specified by **PreUpdateScript** and **PostUpdateScript** parameters, and can limit the cmdlets that are available to run. If either a pre-update or post-update script is specified but a -configuration name is not specified, then the default session configuration that is built into +configuration name isn't specified, then the default session configuration that is built into Windows PowerShell is used. ```yaml @@ -235,14 +235,14 @@ Accept wildcard characters: False ``` ### -EnableFirewallRules -Enables the **Remote Shutdown** Windows Firewall rule group on each cluster node, if it is not -already enabled. If the *EnableFirewallRules* parameter is specified, CAU automatically re-enables +Enables the **Remote Shutdown** Windows Firewall rule group on each cluster node, if it isn't +already enabled. If the **EnableFirewallRules** parameter is specified, CAU automatically re-enables the **Remote Shutdown** rule group each time the CAU clustered role performs an updating run, in case the rules are disabled manually in the intervening time. Enabling this rule group permits inbound communication to each cluster node during each updating run that allows CAU to shut down and restart the node remotely (if the installation of an update requires a restart). If Windows Firewall -is in use on the cluster nodes and the rule group is not enabled, the updating run will fail. The -**Remote Shutdown** Windows Firewall rule group is not enabled when it will conflict with Group +is in use on the cluster nodes and the rule group isn't enabled, the updating run will fail. The +**Remote Shutdown** Windows Firewall rule group isn't enabled when it will conflict with Group Policy settings that are configured for Windows Firewall. ```yaml @@ -389,7 +389,7 @@ begins, and before the node is put into Maintenance mode. The file name extensio the total length of the path plus the file name must be no longer than 260 characters. As a best practice, the script should be located on a disk in cluster storage, or at a highly available network share, to ensure that the script is always accessible to all the cluster nodes. If a -pre-update script fails, the node is not updated. +pre-update script fails, the node isn't updated. ```yaml Type: String @@ -404,7 +404,7 @@ Accept wildcard characters: False ``` ### -RebootTimeoutMinutes -Specifies the time in minutes that CAU allows for the restarting of a node. If the restart does not +Specifies the time in minutes that CAU allows for the restarting of a node. If the restart doesn't complete within this time, then the updating run on that node is marked as failed. ```yaml @@ -436,12 +436,12 @@ Accept wildcard characters: False ### -RunPluginsSerially Indicates that CAU will scan each cluster node for applicable updates and stage the updates for each -plug-in in the plug-in order passed into the *CauPluginName* parameter when multiple plug-ins are +plug-in in the plug-in order passed into the **CauPluginName** parameter when multiple plug-ins are used during an updating run. By default, CAU scans and stages the applicable updates for all plug-ins in parallel. Regardless of the configuration of this parameter, CAU installs the applicable updates for each plug-in sequentially. -The parameter is valid only when multiple plug-ins are specified for the *CauPluginName* parameter. +The parameter is valid only when multiple plug-ins are specified for the **CauPluginName** parameter. If a single plug-in is specified, a warning appears. ```yaml @@ -462,7 +462,7 @@ the node, if the installation of an update by a plug-in requires a restart when are used during an updating run. By default, during an updating run, all plug-ins complete the installation of updates on a cluster node before the node restarts one time. -The parameter is valid only when multiple plug-ins are specified for the *CauPluginName* parameter. +The parameter is valid only when multiple plug-ins are specified for the **CauPluginName** parameter. If a single plug-in is specified, a warning appears. ```yaml @@ -478,7 +478,7 @@ Accept wildcard characters: False ``` ### -StopAfter -Specifies the time in minutes after which the updating run is canceled if it has not completed. The +Specifies the time in minutes after which the updating run is canceled if it hasn't completed. The time span can be expressed in the standard ways available in Windows PowerShell, for instance, 01:30:00 represents one hour and thirty minutes. By default, the updating run is allowed an unlimited amount of time to complete. @@ -501,10 +501,10 @@ Accept wildcard characters: False ### -StopOnPluginFailure Indicates that if a failure occurs during the application of updates on a node by any plug-in, subsequent updates on the node that are coordinated by the remaining plug-ins are stopped when -multiple plug-ins are used during an updating run. By default, a failure by one plug-in does not +multiple plug-ins are used during an updating run. By default, a failure by one plug-in doesn't affect the application of updates on a node by other plug-ins. -The parameter is valid only when multiple plug-ins are specified for the *CauPluginName* parameter. +The parameter is valid only when multiple plug-ins are specified for the **CauPluginName** parameter. If a single plug-in is specified, a warning appears. ```yaml @@ -520,13 +520,13 @@ Accept wildcard characters: False ``` ### -SuspendClusterNodeTimeoutMinutes -Specifies the maximum amount of time CAU should wait for the **Suspend-ClusterNode** cmdlet to +Specifies the maximum amount of time CAU should wait for the `Suspend-ClusterNode` cmdlet to succeed if the underlying clustered space is in degraded condition. -If **Suspend-ClusterNode** fails with ERROR_CLUSTER_SPACE_DEGRADED error, CAU will keep retrying for -*SuspendClusterNodeTimeoutMinutes* or suspend the call if the command succeeds. +If `Suspend-ClusterNode` fails with ERROR_CLUSTER_SPACE_DEGRADED error, CAU will keep retrying for +**SuspendClusterNodeTimeoutMinutes** or suspend the call if the command succeeds. -The retries for this error do not count towards the *MaxRetriesPerNode* parameter set by the user +The retries for this error don't count towards the **MaxRetriesPerNode** parameter set by the user parameter set by the user. The timeout value is per cluster node. So CAU could potentially spend the amount of time specified @@ -546,7 +546,7 @@ Accept wildcard characters: False ### -WarnAfter Specifies the time in minutes after which a warning is logged if the updating run, including any -pre-update and post-update scripts, has not completed. By default, no warning is logged, regardless +pre-update and post-update scripts, hasn't completed. By default, no warning is logged, regardless of the time taken by the updating run. ```yaml @@ -563,7 +563,7 @@ Accept wildcard characters: False ### -WhatIf Shows what would happen if the cmdlet runs. -The cmdlet is not run. +The cmdlet isn't run. ```yaml Type: SwitchParameter diff --git a/docset/winserver2022-ps/clusterawareupdating/Invoke-CauScan.md b/docset/winserver2022-ps/clusterawareupdating/Invoke-CauScan.md index 2354c45663..5b29179ece 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Invoke-CauScan.md +++ b/docset/winserver2022-ps/clusterawareupdating/Invoke-CauScan.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating -ms.date: 12/20/2016 +ms.date: 09/27/2022 online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/invoke-causcan?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-CauScan @@ -23,11 +23,11 @@ Invoke-CauScan [[-ClusterName] ] [[-CauPluginName] ] [[-Creden ``` ## DESCRIPTION -The **Invoke-CauScan** cmdlet performs a scan of cluster nodes for applicable updates and gets a +The `Invoke-CauScan` cmdlet performs a scan of cluster nodes for applicable updates and gets a list of the initial set of updates that are applied to each node in a specified cluster. Generation of the list can take a few minutes to complete. -The preview list includes only an initial set of updates. The list does not include updates that +The preview list includes only an initial set of updates. The list doesn't include updates that might become applicable after the initial updates are installed. If the **Microsoft.HotfixPlugin** plug-in is specified, the scan gets only the list of hotfix files @@ -43,7 +43,7 @@ PS C:\> Invoke-CauScan -ClusterName "CONTOSO-FC1" -CauPluginName "Microsoft.Wind This command gets a detailed list of the initial set of updates that would currently be applied to each node in the cluster named CONTOSO-FC1. The list is based on the updates that would be applied by the **Microsoft.WindowsUpdatePlugin** plug-in, which is the default plug-in. The preview list -includes only an initial set of updates, and does not include updates that might become applicable +includes only an initial set of updates, and doesn't include updates that might become applicable only after the initial updates are installed. ### Example 2: Get a detailed list of the initial set of updates on the specified cluster using a query string @@ -69,8 +69,8 @@ For instance, to specify a **Domain** argument for one plug-in: You can specify multiple pairs in a set separated with semicolons. For instance: - `@{name1=value1;name2=value2;name3=value3}` These name=value pairs must be meaningful to the - *CauPluginName* parameter that you specify. If you specify arguments for more than one plug-in, - provide the sets of name=value pairs in the order that you pass values into the *CauPluginName* + **CauPluginName** parameter that you specify. If you specify arguments for more than one plug-in, + provide the sets of name=value pairs in the order that you pass values into the **CauPluginName** parameter, separated by commas. For instance: - `@{name1=value1;name2=value2;name3=value3},@{name4=value4;name5=value5}` @@ -145,7 +145,7 @@ Accept wildcard characters: False ### -ClusterName Specifies the name of the cluster which should be scanned for applicable updates. This parameter is -only required when this cmdlet is not run on a failover cluster node, or this cmdlet is used to +only required when this cmdlet isn't run on a failover cluster node, or this cmdlet is used to reference a failover cluster different from where the cmdlet is run. ```yaml @@ -177,11 +177,11 @@ Accept wildcard characters: False ### -RunPluginsSerially Indicates that CAU scans each cluster node for applicable updates and stages the updates for each -plug-in in the plug-in order passed into the *CauPluginName* parameter then multiple plug-ins are +plug-in in the plug-in order passed into the **CauPluginName** parameter then multiple plug-ins are used during a scan for updates By default, CAU scans and stages the applicable updates for all plug-ins in parallel. -This parameter is valid only when multiple plug-ins are specified in *CauPluginName* parameter. +This parameter is valid only when multiple plug-ins are specified in **CauPluginName** parameter. If a single plug-in is specified, a warning appears. ```yaml @@ -201,7 +201,7 @@ Indicates that if a failure occurs during a scan on a node by any plug-in, subse node that are coordinated by the remaining plug-ins are stopped when multiple plug-ins are used during a scan for updates. -The parameter is valid only when multiple plug-ins are specified in the *CauPluginName* parameter. +The parameter is valid only when multiple plug-ins are specified in the **CauPluginName** parameter. If a single plug-in is specified, a warning appears. ```yaml diff --git a/docset/winserver2022-ps/clusterawareupdating/Register-CauPlugin.md b/docset/winserver2022-ps/clusterawareupdating/Register-CauPlugin.md index 80b7e8908b..aa6f542fa5 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Register-CauPlugin.md +++ b/docset/winserver2022-ps/clusterawareupdating/Register-CauPlugin.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating -ms.date: 12/20/2016 +ms.date: 09/27/2022 online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/register-cauplugin?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Register-CauPlugin @@ -20,10 +20,10 @@ Register-CauPlugin [-Path] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Register-CauPlugin** cmdlet registers a Cluster-Aware Updating (CAU) software updating plug-in +The `Register-CauPlugin` cmdlet registers a Cluster-Aware Updating (CAU) software updating plug-in on the local computer. -CAU always uses a plug-in when performing updates, although you do not need to register a plug-in +CAU always uses a plug-in when performing updates, although you don't need to register a plug-in because CAU uses the **Microsoft.WindowsUpdatePlugin** plug-in by default. This plug-in communicates with the Windows Update Agent software resident on each node, the same software that is used when updates are downloaded from Windows Update or Microsoft Update, or from a Windows Server Update @@ -38,7 +38,7 @@ PS C:\> Register-CauPlugin -Path "C:\PluginDevelopment\Plugin01.dll" -Force ``` The command registers a plug-in called Plugin01.dll located in the C:\PluginDevelopment folder. -Because the command specifies the *Force* parameter, the cmdlet runs without displaying confirmation +Because the command specifies the **Force** parameter, the cmdlet runs without displaying confirmation prompts. ## PARAMETERS @@ -77,7 +77,7 @@ Accept wildcard characters: False ### -WhatIf Shows what would happen if the cmdlet runs. -The cmdlet is not run. +The cmdlet isn't run. ```yaml Type: SwitchParameter diff --git a/docset/winserver2022-ps/clusterawareupdating/Remove-CauClusterRole.md b/docset/winserver2022-ps/clusterawareupdating/Remove-CauClusterRole.md index b2da166fb0..f033ed439d 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Remove-CauClusterRole.md +++ b/docset/winserver2022-ps/clusterawareupdating/Remove-CauClusterRole.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating -ms.date: 12/20/2016 +ms.date: 09/27/2022 online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/remove-cauclusterrole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-CauClusterRole @@ -21,13 +21,13 @@ Remove-CauClusterRole [[-ClusterName] ] [[-Credential] ] [ ``` ## DESCRIPTION -The **Remove-CauClusterRole** cmdlet removes the Cluster-Aware Updating (CAU) clustered role from +The `Remove-CauClusterRole` cmdlet removes the Cluster-Aware Updating (CAU) clustered role from the specified failover cluster. To run CAU from a cluster, ensure that the CAU clustered role is configured in that cluster. -The **Remove-CauClusterRole** cmdlet removes the virtual computer object (VCO) in Active Directory +The `Remove-CauClusterRole` cmdlet removes the virtual computer object (VCO) in Active Directory for the CAU clustered role, unless you previously prestaged or specified the VCO by using the -**Add-CauClusterRole** cmdlet with the *VirtualComputerObjectName* parameter. +`Add-CauClusterRole` cmdlet with the **VirtualComputerObjectName** parameter. ## EXAMPLES @@ -37,14 +37,14 @@ PS C:\> Remove-CauClusterRole -ClusterName "CONTOSO-FC1" -Force ``` This command removes the instance of the CAU clustered role that is configured on the cluster named -CONTOSO-FC1. Because the command specifies the *Force* parameter, the cmdlet runs without displaying +CONTOSO-FC1. Because the command specifies the **Force** parameter, the cmdlet runs without displaying confirmation prompts. ## PARAMETERS ### -ClusterName Specifies the name of the cluster from which to remove the CAU clustered role. This parameter is -only required when this cmdlet is not run on a failover cluster node, or this cmdlet is used to +only required when this cmdlet isn't run on a failover cluster node, or this cmdlet is used to reference a failover cluster different from where the cmdlet is run. ```yaml @@ -106,7 +106,7 @@ Accept wildcard characters: False ### -WhatIf Shows what would happen if the cmdlet runs. -The cmdlet is not run. +The cmdlet isn't run. ```yaml Type: SwitchParameter diff --git a/docset/winserver2022-ps/clusterawareupdating/Save-CauDebugTrace.md b/docset/winserver2022-ps/clusterawareupdating/Save-CauDebugTrace.md index abf81ce23c..4d2577aa7a 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Save-CauDebugTrace.md +++ b/docset/winserver2022-ps/clusterawareupdating/Save-CauDebugTrace.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating -ms.date: 12/20/2016 +ms.date: 09/27/2022 online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/save-caudebugtrace?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Save-CauDebugTrace @@ -21,12 +21,12 @@ Save-CauDebugTrace [[-ClusterName] ] [[-FilePath] ] [-Credential ``` ## DESCRIPTION -The **Save-CauDebugTrace** cmdlet saves Cluster-Aware Updating (CAU) debug tracing information to a +The `Save-CauDebugTrace` cmdlet saves Cluster-Aware Updating (CAU) debug tracing information to a local zip file. The tracing information is mainly intended for use by developers and support -engineers. Specify the file name with the *FilePath* parameter. +engineers. Specify the file name with the **FilePath** parameter. To run this cmdlet, Windows PowerShell remoting must be enabled on each node. To do this, run the -**Enable-PSRemoting** cmdlet. In addition, ensure that the **Windows Remote Management - +`Enable-PSRemoting` cmdlet. In addition, ensure that the **Windows Remote Management - Compatibility Mode (HTTP-In)** firewall exception is enabled on each node. ## EXAMPLES @@ -43,7 +43,7 @@ called testrun.zip in the C:\temp folder. ### -ClusterName Specifies the name of the cluster for which to gather CAU debug tracing information. This parameter -is only required when this cmdlet is not run on a failover cluster node, or this cmdlet is used to +is only required when this cmdlet isn't run on a failover cluster node, or this cmdlet is used to reference a failover cluster different from where the cmdlet is run. ```yaml diff --git a/docset/winserver2022-ps/clusterawareupdating/Set-CauClusterRole.md b/docset/winserver2022-ps/clusterawareupdating/Set-CauClusterRole.md index 3f81944c73..bf10749090 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Set-CauClusterRole.md +++ b/docset/winserver2022-ps/clusterawareupdating/Set-CauClusterRole.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating -ms.date: 12/20/2016 +ms.date: 09/27/2022 online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/set-cauclusterrole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-CauClusterRole @@ -54,12 +54,12 @@ Set-CauClusterRole [-UseDefault] [-StartDate ] [-DaysOfWeek ``` ## DESCRIPTION -The **Set-CauClusterRole** cmdlet sets configuration properties for the Cluster-Aware Updating (CAU) +The `Set-CauClusterRole` cmdlet sets configuration properties for the Cluster-Aware Updating (CAU) clustered role on the specified cluster. This cmdlet can specify properties such as the updating schedule and updating run parameters. -To run this cmdlet with the *PostUpdateScript* or *PreUpdateScript* parameters, Windows PowerShell -remoting must be enabled on each node. To do this, use the **Enable-PSRemoting** cmdlet. In +To run this cmdlet with the **PostUpdateScript** or **PreUpdateScript** parameters, Windows PowerShell +remoting must be enabled on each node. To do this, use the `Enable-PSRemoting` cmdlet. In addition, ensure that the **Windows Remote Management - Compatibility Mode (HTTP-In)** firewall exception is enabled on each node. @@ -73,8 +73,8 @@ PS C:\> Set-CauClusterRole -ClusterName "CONTOSO-FC1" -DaysOfWeek Tuesday -Weeks This command configures settings for the CAU clustered role on the cluster named CONTOSO-FC1. The CAU clustered role is configured to perform updating runs on Tuesdays on the first and second weeks of each month. The CAU clustered role allows 10 minutes for the restarting of each node, if a -restart is necessary. If the restart does not complete within this time, then the updating run on -that node is marked as failed. Because the command specifies the *Force* parameter, the cmdlet runs +restart is necessary. If the restart doesn't complete within this time, then the updating run on +that node is marked as failed. Because the command specifies the **Force** parameter, the cmdlet runs without displaying confirmation prompts. ### Example 2: Configure settings for a CAU cluster role on the specified cluster on the second week of the month @@ -95,10 +95,10 @@ WeeksInterval 2 This command configures settings for the CAU clustered role on the cluster named CONTOSO-FC1. The CAU clustered role is configured to perform updating runs on Tuesdays on the second week of each month. The CAU clustered role allows 10 minutes for the restarting of each node, if a restart is -necessary. If the restart does not complete within this time, then the updating run on that node is +necessary. If the restart doesn't complete within this time, then the updating run on that node is marked as failed. The CAU clustered role runs a script after updating completes, just after the node leaves Maintenance mode. The script is located at the root of drive G: in clustered storage and is -named verifyupdatesinstalled.ps1. Because the command specifies the *Force* parameter, the cmdlet +named verifyupdatesinstalled.ps1. Because the command specifies the **Force** parameter, the cmdlet runs without displaying confirmation prompts. ### Example 3: Initiate an updating run on the specified cluster @@ -107,7 +107,7 @@ PS C:\> Set-CauClusterRole -ClusterName "CONTOSO-FC1" -UpdateNow -Force ``` This command causes the CAU clustered role to initiate an updating run immediately on the cluster -named CONTOSO-FC1. Because the command specifies the *Force* parameter, the cmdlet runs without +named CONTOSO-FC1. Because the command specifies the **Force** parameter, the cmdlet runs without displaying confirmation prompts ### Example 4: Configure settings for a CAU cluster role on the specified cluster @@ -118,9 +118,9 @@ PS C:\> Set-CauClusterRole -ClusterName "CONTOSO-FC1" -WarnAfter $WarnAfter -Sto ``` This example configures settings for the CAU clustered role on the cluster named CONTOSO-FC1. Time -spans are specified for logging a warning or canceling the updating run if it is not completed. The +spans are specified for logging a warning or canceling the updating run if it isn't completed. The earliest date that an updating run can be triggered is 1/1/2012. Because the command specifies the -*Force* parameter, the cmdlet runs without displaying confirmation prompts +**Force** parameter, the cmdlet runs without displaying confirmation prompts ## PARAMETERS @@ -131,8 +131,8 @@ For instance, to specify a Domain argument for one plug-in: You can specify multiple pairs in a set separated with semicolons. For instance: - `@{name1=value1;name2=value2;name3=value3}` These name=value pairs must be meaningful to the - *CauPluginName* parameter that you specify. If you specify arguments for more than one plug-in, - provide the sets of name=value pairs in the order that you pass values in *CauPluginName*, + **CauPluginName** parameter that you specify. If you specify arguments for more than one plug-in, + provide the sets of name=value pairs in the order that you pass values in **CauPluginName**, separated by commas. For instance: - `@{name1=value1;name2=value2;name3=value3},@{name4=value4;name5=value5}` @@ -203,7 +203,7 @@ Accept wildcard characters: False ### -ClusterName Specifies the name of the cluster on which to configure the CAU clustered role. If not specified, -then the current cluster is used. This parameter is only required when this cmdlet is not run on a +then the current cluster is used. This parameter is only required when this cmdlet isn't run on a failover cluster node, or this cmdlet is used to reference a failover cluster different from where the cmdlet is run. @@ -221,9 +221,9 @@ Accept wildcard characters: False ### -ConfigurationName Specifies the Windows PowerShell session configuration that defines the session in which scripts, -specified by the *PreUpdateScript* and *PostUpdateScript* parameters, and cmdlets are run, and can +specified by the **PreUpdateScript** and **PostUpdateScript** parameters, and cmdlets are run, and can limit the cmdlets that are available to be run. If either a pre-update or post-update script is -specified but a configuration name is not specified, then the default session configuration that is +specified but a configuration name isn't specified, then the default session configuration that is built into Windows PowerShell is used. ```yaml @@ -300,11 +300,11 @@ Accept wildcard characters: False ### -EnableFirewallRules Indicates that this cmdlet enables the **Remote Shutdown** Windows Firewall rule group on each -cluster node, if it is not already enabled, each time the CAU clustered role performs an Updating +cluster node, if it isn't already enabled, each time the CAU clustered role performs an Updating Run. Enabling this rule group permits inbound communication to each cluster node during each Updating Run that allows CAU to shut down and restart the node remotely. If Windows Firewall is in -use on the cluster nodes and the rule group is not enabled, the updating run will fail. The **Remote -Shutdown** Windows Firewall rule group is not enabled when it will conflict with Group Policy +use on the cluster nodes and the rule group isn't enabled, the updating run will fail. The **Remote +Shutdown** Windows Firewall rule group isn't enabled when it will conflict with Group Policy settings that are configured for Windows Firewall. ```yaml @@ -462,8 +462,7 @@ Accept wildcard characters: False ``` ### -RebootTimeoutMinutes -Specifies the time in minutes that CAU will allow for the restarting of a node. If the restart does -not complete within this time, then the updating run on that node is marked as failed. +Specifies the time in minutes that CAU will allow for the restarting of a node. If the restart doesn't complete within this time, then the updating run on that node is marked as failed. ```yaml Type: Int32 @@ -501,7 +500,7 @@ By default, CAU scans and stages the applicable updates for all plug-ins in para the configuration of this parameter, CAU installs the applicable updates for each plug-in sequentially. -The parameter is valid only when multiple plug-ins are specified in *CauPluginName* parameter. If a +The parameter is valid only when multiple plug-ins are specified in **CauPluginName** parameter. If a single plug-in is specified, a warning appears. ```yaml @@ -522,7 +521,7 @@ node, if the installation of an update by a plug-in requires a restart that CAU restart a cluster node after each plug-in installs updates on the node, if the installation of an update by a plug-in requires a restart -The parameter is valid only when multiple plug-ins are specified in the *CauPluginName* parameter. +The parameter is valid only when multiple plug-ins are specified in the **CauPluginName** parameter. If a single plug-in is specified, a warning appears. ```yaml @@ -553,7 +552,7 @@ Accept wildcard characters: False ``` ### -StopAfter -Specifies the time in minutes after which the updating run is canceled if it has not completed. The +Specifies the time in minutes after which the updating run is canceled if it hasn't completed. The time span can be expressed in the standard ways available in Windows PowerShell, for instance, `01:30:00` represents one hour and thirty minutes. By default, the updating run is allowed an unlimited amount of time to complete. @@ -578,7 +577,7 @@ Indicates that if a failure occurs during the application of updates on a node b subsequent updates on the node that are coordinated by the remaining plug-ins are stopped when multiple plug-ins are used during an updating run. -The parameter is valid only when multiple plug-ins are specified for the *CauPluginName* parameter. +The parameter is valid only when multiple plug-ins are specified for the **CauPluginName** parameter. If a single plug-in is specified, a warning appears. ```yaml @@ -597,10 +596,10 @@ Accept wildcard characters: False Specifies the maximum amount of time CAU should wait for the Suspend-ClusterNodecmdlet to succeed if the underlying clustered space is in degraded condition. -If **Suspend-ClusterNode** fails with ERROR_CLUSTER_SPACE_DEGRADED error, CAU will keep retrying for -*SuspendClusterNodeTimeoutMinutes* or suspend the call if the command succeeds. +If `Suspend-ClusterNode` fails with ERROR_CLUSTER_SPACE_DEGRADED error, CAU will keep retrying for +**SuspendClusterNodeTimeoutMinutes** or suspend the call if the command succeeds. -These retries do not decrement the value of the *MaxRetriesPerNode* parameter set by the user. +These retries don't decrement the value of the **MaxRetriesPerNode** parameter set by the user. The timeout value is per cluster node. So CAU could potentially spend the amount of time specified for this value for every node in the cluster in the worst case. @@ -634,7 +633,7 @@ Accept wildcard characters: False ``` ### -UseDefault -Indicates that default values are used for all parameters that do not have specified values. +Indicates that default values are used for all parameters that don't have specified values. ```yaml Type: SwitchParameter @@ -650,7 +649,7 @@ Accept wildcard characters: False ### -WarnAfter Specifies the time in minutes after which a warning is logged if the updating run, including any -pre-update and post-update scripts, has not completed. By default, no warning is logged, regardless +pre-update and post-update scripts, hasn't completed. By default, no warning is logged, regardless of the time taken by the updating run. ```yaml @@ -683,7 +682,7 @@ Accept wildcard characters: False ### -WhatIf Shows what would happen if the cmdlet runs. -The cmdlet is not run. +The cmdlet isn't run. ```yaml Type: SwitchParameter diff --git a/docset/winserver2022-ps/clusterawareupdating/Stop-CauRun.md b/docset/winserver2022-ps/clusterawareupdating/Stop-CauRun.md index 11ba503707..72e99e7f57 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Stop-CauRun.md +++ b/docset/winserver2022-ps/clusterawareupdating/Stop-CauRun.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating -ms.date: 12/20/2016 +ms.date: 09/27/2022 online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/stop-caurun?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-CauRun @@ -21,7 +21,7 @@ Stop-CauRun [[-ClusterName] ] [-Credential ] [-Wait] [-For ``` ## DESCRIPTION -The **Stop-CauRun** cmdlet stops an updating run that is in progress on a failover cluster. +The `Stop-CauRun` cmdlet stops an updating run that is in progress on a failover cluster. ## EXAMPLES @@ -32,14 +32,14 @@ PS C:\> Stop-CauRun -ClusterName "CONTOSO-FC1" -Wait -Force This command stops the updating run that is being performed by the CAU Update Coordinator that is configured on the cluster named CONTOSO-FC1. The cmdlet waits to return until the canceled updating -run has finished. Because the command specifies the *Force* parameter, the cmdlet runs without +run has finished. Because the command specifies the **Force** parameter, the cmdlet runs without displaying confirmation prompts. ## PARAMETERS ### -ClusterName Specifies the name of the cluster on which to stop an updating run that is in progress. This -parameter is only required when this cmdlet is not run on a failover cluster node, or this cmdlet is +parameter is only required when this cmdlet isn't run on a failover cluster node, or this cmdlet is used to reference a failover cluster different from where the cmdlet is run. ```yaml diff --git a/docset/winserver2022-ps/clusterawareupdating/Test-CauSetup.md b/docset/winserver2022-ps/clusterawareupdating/Test-CauSetup.md index b85536eee7..62792b759f 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Test-CauSetup.md +++ b/docset/winserver2022-ps/clusterawareupdating/Test-CauSetup.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating -ms.date: 12/20/2016 +ms.date: 09/27/2022 online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/test-causetup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-CauSetup @@ -20,13 +20,13 @@ Test-CauSetup [[-ClusterName] ] [[-Credential] ] [ [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Unregister-CauPlugin** cmdlet removes a software updating plug-in from the list of plug-ins +The `Unregister-CauPlugin` cmdlet removes a software updating plug-in from the list of plug-ins that are used by Cluster-Aware Updating (CAU). The plug-in can be removed, but afterwards, it cannot be used for updating runs. The **Microsoft.WindowsUpdatePlugin** and **Microsoft.HotfixPlugin** plug-ins, which are installed with CAU, cannot be unregistered. @@ -68,7 +68,7 @@ Accept wildcard characters: False ### -WhatIf Shows what would happen if the cmdlet runs. -The cmdlet is not run. +The cmdlet isn't run. ```yaml Type: SwitchParameter From 01ba597453597e05bc2eb7e1acfde5f1a2e7f7cd Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Tue, 27 Sep 2022 21:36:55 +0100 Subject: [PATCH 256/965] Updating syntax formatting --- .../Add-CauClusterRole.md | 34 ++++++++-------- .../Disable-CauClusterRole.md | 2 +- .../Enable-CauClusterRole.md | 2 +- .../clusterawareupdating/Export-CauReport.md | 2 +- .../clusterawareupdating/Get-CauReport.md | 4 ++ .../clusterawareupdating/Get-CauRun.md | 10 +++-- .../clusterawareupdating/Invoke-CauRun.md | 16 ++++---- .../clusterawareupdating/Invoke-CauScan.md | 2 +- .../Remove-CauClusterRole.md | 2 +- .../Set-CauClusterRole.md | 40 ++++++++++--------- .../clusterawareupdating/Stop-CauRun.md | 2 +- 11 files changed, 66 insertions(+), 50 deletions(-) diff --git a/docset/winserver2022-ps/clusterawareupdating/Add-CauClusterRole.md b/docset/winserver2022-ps/clusterawareupdating/Add-CauClusterRole.md index 7c4963a1a2..bf75a0e664 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Add-CauClusterRole.md +++ b/docset/winserver2022-ps/clusterawareupdating/Add-CauClusterRole.md @@ -16,29 +16,31 @@ Adds the CAU clustered role that provides the self-updating functionality to the ## SYNTAX ### MonthlyDayOfWeek (Default) + ``` Add-CauClusterRole [-VirtualComputerObjectName ] [-GroupName ] -[-StartDate ] [-DaysOfWeek ] [-WeeksOfMonth ] -[-CauPluginName ] [-CauPluginArguments ] [-MaxFailedNodes ] -[-MaxRetriesPerNode ] [-NodeOrder ] [-PreUpdateScript ] -[-PostUpdateScript ] [-ConfigurationName ] [-RequireAllNodesOnline] -[-WarnAfter ] [-StopAfter ] [-RebootTimeoutMinutes ] [-SeparateReboots] -[-RunPluginsSerially] [-StopOnPluginFailure] [-EnableFirewallRules] [-FailbackMode ] -[-SuspendClusterNodeTimeoutMinutes ] [[-ClusterName] ] [[-Credential] ] -[-Force] [-WhatIf] [-Confirm] [] + [-StartDate ] [-DaysOfWeek ] [-WeeksOfMonth ] + [-CauPluginName ] [-CauPluginArguments ] [-MaxFailedNodes ] + [-MaxRetriesPerNode ] [-NodeOrder ] [-PreUpdateScript ] + [-PostUpdateScript ] [-ConfigurationName ] [-RequireAllNodesOnline] + [-WarnAfter ] [-StopAfter ] [-RebootTimeoutMinutes ] [-SeparateReboots] + [-RunPluginsSerially] [-StopOnPluginFailure] [-EnableFirewallRules] [-FailbackMode ] + [-SuspendClusterNodeTimeoutMinutes ] [[-ClusterName] ] [[-Credential] ] + [-Force] [-WhatIf] [-Confirm] [] ``` ### Weekly + ``` Add-CauClusterRole [-VirtualComputerObjectName ] [-GroupName ] -[-StartDate ] [-DaysOfWeek ] [-IntervalWeeks ] -[-CauPluginName ] [-CauPluginArguments ] [-MaxFailedNodes ] -[-MaxRetriesPerNode ] [-NodeOrder ] [-PreUpdateScript ] -[-PostUpdateScript ] [-ConfigurationName ] [-RequireAllNodesOnline] -[-WarnAfter ] [-StopAfter ] [-RebootTimeoutMinutes ] [-SeparateReboots] -[-RunPluginsSerially] [-StopOnPluginFailure] [-EnableFirewallRules] [-FailbackMode ] -[-SuspendClusterNodeTimeoutMinutes ] [[-ClusterName] ] [[-Credential] ] -[-Force] [-WhatIf] [-Confirm] [] + [-StartDate ] [-DaysOfWeek ] [-IntervalWeeks ] + [-CauPluginName ] [-CauPluginArguments ] [-MaxFailedNodes ] + [-MaxRetriesPerNode ] [-NodeOrder ] [-PreUpdateScript ] + [-PostUpdateScript ] [-ConfigurationName ] [-RequireAllNodesOnline] + [-WarnAfter ] [-StopAfter ] [-RebootTimeoutMinutes ] [-SeparateReboots] + [-RunPluginsSerially] [-StopOnPluginFailure] [-EnableFirewallRules] [-FailbackMode ] + [-SuspendClusterNodeTimeoutMinutes ] [[-ClusterName] ] [[-Credential] ] + [-Force] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION diff --git a/docset/winserver2022-ps/clusterawareupdating/Disable-CauClusterRole.md b/docset/winserver2022-ps/clusterawareupdating/Disable-CauClusterRole.md index cc719b1d0e..e1f5912755 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Disable-CauClusterRole.md +++ b/docset/winserver2022-ps/clusterawareupdating/Disable-CauClusterRole.md @@ -17,7 +17,7 @@ Suspends the self-updating functionality on the specified cluster. ``` Disable-CauClusterRole [[-ClusterName] ] [-Credential ] [-Force] [-WhatIf] -[-Confirm] [] + [-Confirm] [] ``` ## DESCRIPTION diff --git a/docset/winserver2022-ps/clusterawareupdating/Enable-CauClusterRole.md b/docset/winserver2022-ps/clusterawareupdating/Enable-CauClusterRole.md index f9d7924bc4..3d1d772cc7 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Enable-CauClusterRole.md +++ b/docset/winserver2022-ps/clusterawareupdating/Enable-CauClusterRole.md @@ -17,7 +17,7 @@ Re-enables the self-updating functionality on the specified cluster. ``` Enable-CauClusterRole [[-ClusterName] ] [-Credential ] [-Force] [-WhatIf] -[-Confirm] [] + [-Confirm] [] ``` ## DESCRIPTION diff --git a/docset/winserver2022-ps/clusterawareupdating/Export-CauReport.md b/docset/winserver2022-ps/clusterawareupdating/Export-CauReport.md index de00a2a0ea..9deec81517 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Export-CauReport.md +++ b/docset/winserver2022-ps/clusterawareupdating/Export-CauReport.md @@ -17,7 +17,7 @@ Exports one or more Updating Run reports into an HTML or CSV-formatted document. ``` Export-CauReport [-InputReport] [-Format] [-Path] [-PassThru] -[-Force] [-TimeZone ] [-WhatIf] [-Confirm] [] + [-Force] [-TimeZone ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION diff --git a/docset/winserver2022-ps/clusterawareupdating/Get-CauReport.md b/docset/winserver2022-ps/clusterawareupdating/Get-CauReport.md index a559245c2f..a57dc52c1e 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Get-CauReport.md +++ b/docset/winserver2022-ps/clusterawareupdating/Get-CauReport.md @@ -17,22 +17,26 @@ specified dates or other specified parameters. ## SYNTAX ### AllParamsSet (Default) + ``` Get-CauReport [[-ClusterName] ] [-Detailed] [-Credential ] [] ``` ### RangeParamSet + ``` Get-CauReport [[-ClusterName] ] [[-StartDate] ] [[-EndDate] ] [-Detailed] [-Credential ] [] ``` ### LastParamSet + ``` Get-CauReport [[-ClusterName] ] [-Last] [-Detailed] [-Credential ] [] ``` ### SpecificReportParamSet + ``` Get-CauReport [[-ClusterName] ] [-Report ] [-Credential ] [] diff --git a/docset/winserver2022-ps/clusterawareupdating/Get-CauRun.md b/docset/winserver2022-ps/clusterawareupdating/Get-CauRun.md index 082beca774..2fd3a647a1 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Get-CauRun.md +++ b/docset/winserver2022-ps/clusterawareupdating/Get-CauRun.md @@ -16,26 +16,30 @@ Gets status information about an updating run currently in progress. ## SYNTAX ### DefaultParamSet (Default) + ``` Get-CauRun [[-ClusterName] ] [-Credential ] [] ``` ### WaitForStart + ``` Get-CauRun [[-ClusterName] ] [-Credential ] [-WaitForStart] -[] + [] ``` ### WaitForCompletion + ``` Get-CauRun [[-ClusterName] ] [-Credential ] [-WaitForCompletion] -[] + [] ``` ### ShowClusterNodeState + ``` Get-CauRun [[-ClusterName] ] [-Credential ] [-ShowClusterNodeState] -[] + [] ``` ## DESCRIPTION diff --git a/docset/winserver2022-ps/clusterawareupdating/Invoke-CauRun.md b/docset/winserver2022-ps/clusterawareupdating/Invoke-CauRun.md index c19004807b..02a186c51e 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Invoke-CauRun.md +++ b/docset/winserver2022-ps/clusterawareupdating/Invoke-CauRun.md @@ -16,21 +16,23 @@ Performs a scan of cluster nodes for applicable updates and installs those updat ## SYNTAX ### DefaultParamSet (Default) + ``` Invoke-CauRun [-MaxFailedNodes ] [-MaxRetriesPerNode ] [-NodeOrder ] -[-PreUpdateScript ] [-PostUpdateScript ] [-ConfigurationName ] -[-RequireAllNodesOnline] [-WarnAfter ] [-StopAfter ] -[-RebootTimeoutMinutes ] [-SeparateReboots] [-EnableFirewallRules] -[-FailbackMode ] [-SuspendClusterNodeTimeoutMinutes ] [-Force] [[-ClusterName] + [-PreUpdateScript ] [-PostUpdateScript ] [-ConfigurationName ] + [-RequireAllNodesOnline] [-WarnAfter ] [-StopAfter ] + [-RebootTimeoutMinutes ] [-SeparateReboots] [-EnableFirewallRules] + [-FailbackMode ] [-SuspendClusterNodeTimeoutMinutes ] [-Force] [[-ClusterName] ] [[-CauPluginName] ] [[-Credential] ] -[-CauPluginArguments ] [-RunPluginsSerially] [-StopOnPluginFailure] [-WhatIf] -[-Confirm] [] + [-CauPluginArguments ] [-RunPluginsSerially] [-StopOnPluginFailure] [-WhatIf] + [-Confirm] [] ``` ### RecoverParamSet + ``` Invoke-CauRun [-ForceRecovery] [-Force] [[-ClusterName] ] [[-Credential] ] -[-WhatIf] [-Confirm] [] + [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION diff --git a/docset/winserver2022-ps/clusterawareupdating/Invoke-CauScan.md b/docset/winserver2022-ps/clusterawareupdating/Invoke-CauScan.md index 5b29179ece..d1d9e3948f 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Invoke-CauScan.md +++ b/docset/winserver2022-ps/clusterawareupdating/Invoke-CauScan.md @@ -19,7 +19,7 @@ updates that are applied to each node in a specified cluster. ``` Invoke-CauScan [[-ClusterName] ] [[-CauPluginName] ] [[-Credential] ] [-CauPluginArguments ] [-RunPluginsSerially] [-StopOnPluginFailure] -[] + [] ``` ## DESCRIPTION diff --git a/docset/winserver2022-ps/clusterawareupdating/Remove-CauClusterRole.md b/docset/winserver2022-ps/clusterawareupdating/Remove-CauClusterRole.md index f033ed439d..7e3e18c1d9 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Remove-CauClusterRole.md +++ b/docset/winserver2022-ps/clusterawareupdating/Remove-CauClusterRole.md @@ -17,7 +17,7 @@ Removes the CAU clustered role from the specified failover cluster. ``` Remove-CauClusterRole [[-ClusterName] ] [[-Credential] ] [-Force] [-WhatIf] -[-Confirm] [] + [-Confirm] [] ``` ## DESCRIPTION diff --git a/docset/winserver2022-ps/clusterawareupdating/Set-CauClusterRole.md b/docset/winserver2022-ps/clusterawareupdating/Set-CauClusterRole.md index bf10749090..be818c7fa9 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Set-CauClusterRole.md +++ b/docset/winserver2022-ps/clusterawareupdating/Set-CauClusterRole.md @@ -16,41 +16,45 @@ Sets configuration properties for the CAU clustered role on the specified cluste ## SYNTAX ### MonthlyDayOfWeek (Default) + ``` Set-CauClusterRole [-UseDefault] [-StartDate ] [-DaysOfWeek ] -[-WeeksOfMonth ] [-CauPluginName ] [-CauPluginArguments ] -[-MaxFailedNodes ] [-MaxRetriesPerNode ] [-NodeOrder ] -[-PreUpdateScript ] [-PostUpdateScript ] [-ConfigurationName ] -[-RequireAllNodesOnline] [-WarnAfter ] [-StopAfter ] -[-RebootTimeoutMinutes ] [-SeparateReboots] [-RunPluginsSerially] [-StopOnPluginFailure] -[-EnableFirewallRules] [-FailbackMode ] [-SuspendClusterNodeTimeoutMinutes ] -[[-ClusterName] ] [[-Credential] ] [-Force] [-WhatIf] [-Confirm] -[] + [-WeeksOfMonth ] [-CauPluginName ] [-CauPluginArguments ] + [-MaxFailedNodes ] [-MaxRetriesPerNode ] [-NodeOrder ] + [-PreUpdateScript ] [-PostUpdateScript ] [-ConfigurationName ] + [-RequireAllNodesOnline] [-WarnAfter ] [-StopAfter ] + [-RebootTimeoutMinutes ] [-SeparateReboots] [-RunPluginsSerially] [-StopOnPluginFailure] + [-EnableFirewallRules] [-FailbackMode ] [-SuspendClusterNodeTimeoutMinutes ] + [[-ClusterName] ] [[-Credential] ] [-Force] [-WhatIf] [-Confirm] + [] ``` ### UpdateNow + ``` Set-CauClusterRole [-UpdateNow] [[-ClusterName] ] [[-Credential] ] [-Force] -[-WhatIf] [-Confirm] [] + [-WhatIf] [-Confirm] [] ``` ### UseDefault + ``` Set-CauClusterRole [-UseDefault] [[-ClusterName] ] [[-Credential] ] [-Force] -[-WhatIf] [-Confirm] [] + [-WhatIf] [-Confirm] [] ``` ### Weekly + ``` Set-CauClusterRole [-UseDefault] [-StartDate ] [-DaysOfWeek ] -[-IntervalWeeks ] [-CauPluginName ] [-CauPluginArguments ] -[-MaxFailedNodes ] [-MaxRetriesPerNode ] [-NodeOrder ] -[-PreUpdateScript ] [-PostUpdateScript ] [-ConfigurationName ] -[-RequireAllNodesOnline] [-WarnAfter ] [-StopAfter ] -[-RebootTimeoutMinutes ] [-SeparateReboots] [-RunPluginsSerially] [-StopOnPluginFailure] -[-EnableFirewallRules] [-FailbackMode ] [-SuspendClusterNodeTimeoutMinutes ] -[[-ClusterName] ] [[-Credential] ] [-Force] [-WhatIf] [-Confirm] -[] + [-IntervalWeeks ] [-CauPluginName ] [-CauPluginArguments ] + [-MaxFailedNodes ] [-MaxRetriesPerNode ] [-NodeOrder ] + [-PreUpdateScript ] [-PostUpdateScript ] [-ConfigurationName ] + [-RequireAllNodesOnline] [-WarnAfter ] [-StopAfter ] + [-RebootTimeoutMinutes ] [-SeparateReboots] [-RunPluginsSerially] [-StopOnPluginFailure] + [-EnableFirewallRules] [-FailbackMode ] [-SuspendClusterNodeTimeoutMinutes ] + [[-ClusterName] ] [[-Credential] ] [-Force] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION diff --git a/docset/winserver2022-ps/clusterawareupdating/Stop-CauRun.md b/docset/winserver2022-ps/clusterawareupdating/Stop-CauRun.md index 72e99e7f57..359b71437e 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Stop-CauRun.md +++ b/docset/winserver2022-ps/clusterawareupdating/Stop-CauRun.md @@ -17,7 +17,7 @@ Stops an updating run that is in progress on a cluster. ``` Stop-CauRun [[-ClusterName] ] [-Credential ] [-Wait] [-Force] -[] + [] ``` ## DESCRIPTION From ff6e5abc16aa771af70efee66da086a5f90b4659 Mon Sep 17 00:00:00 2001 From: Michael Lombardi Date: Mon, 3 Oct 2022 15:20:42 -0500 Subject: [PATCH 257/965] (MAINT) Update markdownlint rules This commit syncs the markdownlint configuration in this repository to the rules defined in the PowerShell-Docs project. This ensures consistent application of syntax rules across the PowerShell content. --- .markdownlint-cli2.yaml | 36 +++++++++++++ .markdownlint.json | 23 -------- .markdownlint.yaml | 117 ++++++++++++++++++++++++++++++++++++++++ 3 files changed, 153 insertions(+), 23 deletions(-) create mode 100644 .markdownlint-cli2.yaml delete mode 100644 .markdownlint.json create mode 100644 .markdownlint.yaml diff --git a/.markdownlint-cli2.yaml b/.markdownlint-cli2.yaml new file mode 100644 index 0000000000..23dd9d92e8 --- /dev/null +++ b/.markdownlint-cli2.yaml @@ -0,0 +1,36 @@ +# Rule definitions live in .markdownlint.json + +# Include a custom rule package +# customRules: +# - markdownlint-rule-titlecase + +# Fix any fixable errors +fix: true + +# Define a custom front matter pattern +# frontMatter: (^---\s*$[^]*?^---\s*$)(\r\n|\r|\n|$) + +# Define glob expressions to use (only valid at root) +# globs: +# - "!*bout.md" + +# Define glob expressions to ignore +ignores: + - .vscode + - assets + - tests + - tools + +# Use a plugin to recognize math +# markdownItPlugins: +# - - "@iktakahiro/markdown-it-katex" + +# Disable inline config comments +noInlineConfig: false + +# Disable progress on stdout (only valid at root) +noProgress: true + +# Use a specific formatter (only valid at root) +# outputFormatters: +# - [markdownlint-cli2-formatter-default] diff --git a/.markdownlint.json b/.markdownlint.json deleted file mode 100644 index c79e3873b3..0000000000 --- a/.markdownlint.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "default": true, - "MD003": false, - "MD004": false, - "MD006": false, - "MD007": false, - "MD009": false, - "MD012": false, - "MD013": false, - "MD020": false, - "MD021": false, - "MD022": false, - "MD024": false, - "MD026": false, - "MD031": false, - "MD032": false, - "MD034": false, - "MD036": false, - "MD037": false, - "MD040": false, - "MD041": false, - "MD042": false -} \ No newline at end of file diff --git a/.markdownlint.yaml b/.markdownlint.yaml new file mode 100644 index 0000000000..a794811c1f --- /dev/null +++ b/.markdownlint.yaml @@ -0,0 +1,117 @@ +docsmd.alert: true +docsmd.codesnippet: true +docsmd.column: true +docsmd.image: true +docsmd.moniker: true +docsmd.no-loc: true +docsmd.row: true +docsmd.securelinks: true +docsmd.syntax: true +docsmd.video: true +docsmd.xref: true +docsmd.zone: true + +MD001: true # header-increment +# MD002 # first-header-h1 - Superceded by MD041 +MD003: # header-style + style: atx +MD004: # ul-style + style: dash +MD005: true # list-indent +# MD006 # ul-start-left - Superceded by MD007's start_indented option +MD007: # ul-indent + indent: 2 + start_indented: false +# MD008 # Removed from linter; used to specify indentation for ul +MD009: # no-trailing-spaces + br_spaces: 2 + strict: true +MD010: true # no-hard-tabs +MD011: true # no-reversed-links +MD012: true # no-multiple-blanks +MD013: # line-length + code_block_line_length: 90 + code_blocks: true + heading_line_length: 100 + headings: true + line_length: 100 + stern: true + tables: false +MD014: true # commands-show-output +# MD015 # "Use of non-atx style headers" - Removed from linter, replaced by MD003 +# MD016 # "Use of non-closed-atx style headers" - Removed from linter, replaced by MD003 +# MD017 # "Use of non-setext style headers" - Removed from linter, replaced by MD003 +MD018: true # no-missing-space-atx +MD019: true # no-multiple-space-atx +MD020: true # no-missing-space-closed-atx +MD021: true # no-multiple-space-closed-atx +MD022: true # blanks-around-headers +MD023: true # header-start-left +MD024: # no-duplicate-header + siblings_only: true +MD025: # single-h1 + front_matter_title: '' + level: 1 +MD026: # no-trailing-punctuation + punctuation: '.,;:!。,;:ï¼ï¼Ÿ' +MD027: true # no-multiple-space-blockquote +MD028: true # no-blanks-blockquote +MD029: # ol-prefix + style: one +MD030: true # list-marker-space +MD031: true # blanks-around-fences +MD032: true # blanks-around-lists +MD033: # no-inline-html + allowed_elements: + - a + - br + - code + - kbd + - li + - properties + - sup + - tags + - ul +MD034: true # no-bare-urls +MD035: # hr-style + style: '---' +MD036: true # no-emphasis-as-header +MD037: true # no-space-in-emphasis +MD038: true # no-space-in-code +MD039: true # no-space-in-links +MD040: false # fenced-code-language +MD041: # first-line-h1 + front_matter_title: '' +MD042: true # no-empty-links +MD043: false # required-headers +MD044: # proper-names + code_blocks: false + names: + - PowerShell + - IntelliSense + - Authenticode + - CentOS + - Contoso + - CoreOS + - Debian + - Ubuntu + - openSUSE + - RHEL + - JavaScript + - .NET + - NuGet + - VS Code + - Newtonsoft +MD045: true # no-alt-text +MD046: # code-block-style + style: fenced +MD047: true # single-trailing-newline +MD048: # code-fence-style + style: backtick +MD049: # emphasis-style + style: underscore +MD050: # strong-style + style: asterisk +MD051: true # link-fragments +MD052: true # reference-links-images +MD053: true # link-image-reference-definitions From 9c039dc09d83424547a7d32ceae046f978fe618c Mon Sep 17 00:00:00 2001 From: Michael Lombardi Date: Mon, 3 Oct 2022 15:24:11 -0500 Subject: [PATCH 258/965] (MAINT) Add cSpell to the repository This change introduces cSpell to the repository for managing spelling across the files. In this initial draft, it adds the upstream dictionary from MicrosoftDocs/PowerShell-Docs and scaffolds a nearly-empty dictionary for the Windows modules to make it easier to define terms in the future. It also removes the directive in gitignore so that the .vscode folder will be tracked. --- .gitignore | 1 - .vscode/cSpell.json | 6 + .vscode/cspell/psdocs/cspell.yaml | 158 ++++++++++ .../psdocs/dictionaries/externalCommands.txt | 52 ++++ .../psdocs/dictionaries/fictionalCorps.txt | 18 ++ .../psdocs/dictionaries/fileExtensions.txt | 10 + .vscode/cspell/psdocs/dictionaries/psdocs.txt | 279 ++++++++++++++++++ .../psdocs/dictionaries/pwshAliases.txt | 24 ++ .vscode/cspell/winmodules/cspell.yaml | 18 ++ .../cspell/winmodules/dictionaries/winps.txt | 2 + 10 files changed, 567 insertions(+), 1 deletion(-) create mode 100644 .vscode/cSpell.json create mode 100644 .vscode/cspell/psdocs/cspell.yaml create mode 100644 .vscode/cspell/psdocs/dictionaries/externalCommands.txt create mode 100644 .vscode/cspell/psdocs/dictionaries/fictionalCorps.txt create mode 100644 .vscode/cspell/psdocs/dictionaries/fileExtensions.txt create mode 100644 .vscode/cspell/psdocs/dictionaries/psdocs.txt create mode 100644 .vscode/cspell/psdocs/dictionaries/pwshAliases.txt create mode 100644 .vscode/cspell/winmodules/cspell.yaml create mode 100644 .vscode/cspell/winmodules/dictionaries/winps.txt diff --git a/.gitignore b/.gitignore index 0c59cd6cb5..e0de607b88 100644 --- a/.gitignore +++ b/.gitignore @@ -5,7 +5,6 @@ _site/ _themes*/ .vs/ common/ -.vscode/ *.ini .DS_Store *.db diff --git a/.vscode/cSpell.json b/.vscode/cSpell.json new file mode 100644 index 0000000000..45c2ba867c --- /dev/null +++ b/.vscode/cSpell.json @@ -0,0 +1,6 @@ +{ + "import": [ + "./cspell/psdocs/cspell.yaml", + "./cspell/winmodules/cspell.yaml" + ] +} diff --git a/.vscode/cspell/psdocs/cspell.yaml b/.vscode/cspell/psdocs/cspell.yaml new file mode 100644 index 0000000000..f9eaf3a635 --- /dev/null +++ b/.vscode/cspell/psdocs/cspell.yaml @@ -0,0 +1,158 @@ +enabled: true +description: > + This configuration defines the default spellcheck settings for all PowerShell documentation. Where + needed, other projects and subfolders can extend or override these defaults. + +# Ensure that any comments in code files to controll cSpell are correct. +validateDirectives: true + +# These apply to all files unless otherwise specified. They're defined in NPM modules that are +# available by default with the extension. +dictionaries: + - azureTerms + - companies + - filetypes + - misc + - powershell + - softwareTerms + +# These are locally defined. They must be specified for the document type they're used in. +dictionaryDefinitions: + - name: externalCommands + description: > + Dictionary of common commands external to PowerShell. Add entries to this dictionary for + commands, services, and script keywords that are referenced in documentation but are not + specific to or included in PowerShell. + path: ./dictionaries/externalCommands.txt + - name: fictionalCorps + description: > + Dictionary of fictional company names used in documentation. Add entries to this dictionary + when using a valid but nonexistant fictional company or organization. + path: ./dictionaries/fictionalCorps.txt + - name: fileExtensions + description: > + Dictionary of file extensions referenced in documentation. Add entries to this dictionary + when a valid file extension is marked as an unknown spelling. + path: ./dictionaries/fileExtensions.txt + - name: psdocs + description: > + General PowerShell documentation dictionary. Add entries to this dictionary for PowerShell + concepts, terms, or other names. Consider submitting them to the upstream PowerShell + dictionary if sensible. + path: ./dictionaries/psdocs.txt + - name: pwshAliases + description: > + Dictionary of PowerShell aliases. Add entries to this dictionary for command and parameter + aliases to keep the main dictionary easier to use. + path: ./dictionaries/pwshAliases.txt + +# Defining patterns here makes it easier to understand the definitions for the ignore and include +# pattern lists (`*RegExpList`). Also allows us to document these patterns to some degree. +patterns: + - name: domain-azure-edge + description: Ignore misspellings caused by lowercase domain names for Azure edge domains. + pattern: /\S+\.azureedge\.net/ + - name: domain-windows-blob + description: Ignore misspellings caused by lowercase domain names Windows blob storage domains + pattern: /\S+\.blob\.core\.windows\.net/ + - name: domain-gallery + description: Ignore segments preceeding or following the powershellgallery domain name. + pattern: /(\S+\.)?powershellgallery\.com(\S+)?/ + - name: domains + description: Ignore apparent misspellings as components of well-known domain name. + pattern: + - domain-azure-edge + - domain-gallery + - domain-windows-blob + + - name: markdown-code-block-output + description: Ignore text in output code blocks. + pattern: '/(?:```[oO]utput[\s\S]*?```)/g' + - name: markdown-code-block-syntax + description: Ignore text in output code blocks. + pattern: '/(?:```[sS]yntax[\s\S]*?```)/g' + - name: markdown-code-blocks + description: Don't check spelling in output or syntax blocks. + pattern: + - markdown-code-block-output + - markdown-code-block-syntax + + - name: markdown-link-reference + description: Matches 'foobar' in '[foo bar][foobar]' + pattern: /(?<=\])\[[^\]]+\]/ + - name: markdown-link-inline + description: Matches '/foo/bar' in '[foo bar](/foo/bar)' + pattern: '/(?<=\])\([^\)]+\)/' + - name: markdown-link-definition + description: "Matches '/foo/bar' in '[foobar]: /foo/bar'" + pattern: '/(?<=\]:\s)(\s*((https?:)?|\/|\.{1,2}))(\/\S+)/' + - name: markdown-links + description: Don't check link definitions or references. + pattern: + - markdown-link-inline + - markdown-link-reference + - markdown-link-definition + + - name: registry-paths + description: Ignore Windows registry paths + pattern: /(HK(CR|CU|LM))(:\S*)?/ + + - name: wildcard-fragment-prefix + description: Ignore misspellings caused by partial words with a wildcard at the start. + pattern: '/[^\*]\*\w+/' + - name: wildcard-fragment-suffix + description: Ignore misspellings caused by partial words with a wildcard at the end. + pattern: '/\w+\*[^\*]/' + - name: wildcard-fragments + pattern: + - wildcard-fragment-prefix + - wildcard-fragment-suffix + +# Any patterns listed here are ignored for spellcheck. +# +# We ignore the URLs for inline markdown links, Markdown link references, and Markdown link +# reference definitions because these will otherwise be very noisy and they're not displayed to +# readers anyway. +# +# We ignore the spelling for all text in output code blocks for Markdown files because that text +# represents output from real commands and any spelling errors are not a fault in the documentation. +# +# We ignore registry paths, wildcard fragments, and components of well-known domains because those +# are intentionally or uncontrollably downcased or "incorrect" spellings. +ignoreRegExpList: + - domains + - markdown-code-blocks + - markdown-links + - registry-paths + - wildcard-fragments + +# The default locale for this documentation is US English. +language: 'en,en-US' + +# These settings are applied to combinations of language (file type) and locale. For any given file +# and locale, all matching dictionaries are applied. +languageSettings: + # Any file written in English + - languageId: '*' + locale: en + dictionaries: + - wordsEn + # Any file written in US English + - languageId: '*' + locale: en-US + dictionaries: + - wordsEn + # Any file written in British English + - languageId: '*' + locale: en-GB + dictionaries: + - wordsEnGb + # Any Markdown file + - languageId: markdown + locale: '*' + dictionaries: + - externalCommands + - fictionalCorps + - fileExtensions + - psdocs + - pwshAliases diff --git a/.vscode/cspell/psdocs/dictionaries/externalCommands.txt b/.vscode/cspell/psdocs/dictionaries/externalCommands.txt new file mode 100644 index 0000000000..70360c259e --- /dev/null +++ b/.vscode/cspell/psdocs/dictionaries/externalCommands.txt @@ -0,0 +1,52 @@ +AcroRd32 +Appinfo +appwiz +audiodg +Audiosrv +azurecli +ccmsetup +cd +certreq +chdir +conhost +csrss +distro +dpkg +elif +filesrv +ftype +gedit +iexplore +iisadmin +Intune +kubectl +LanmanServer +LanmanWorkstation +LSASRV +lsass +makecert +mkdir +mscorlib +msdtc +msseces +netcoreapp +Netlogon +netsh +netsvcs +Pandoc +rdpclip +RSAT +rstrui +setenv +svchost +SysmonLog +tlntsvr +w3wp +WFDBG +winget +Winlogon +Winmgmt +winver +Winword +WLIDSVC +xattr diff --git a/.vscode/cspell/psdocs/dictionaries/fictionalCorps.txt b/.vscode/cspell/psdocs/dictionaries/fictionalCorps.txt new file mode 100644 index 0000000000..cc8e1b539a --- /dev/null +++ b/.vscode/cspell/psdocs/dictionaries/fictionalCorps.txt @@ -0,0 +1,18 @@ +Adatum +Contoso +Fabrikam +Humongous +Lamna +Lucerne +Margie +Munson +Northwind +Proseware +Relecloud +Southridge +Tailspin +Tailwind +Trey +VanArsdel +Wingtip +Woodgrove diff --git a/.vscode/cspell/psdocs/dictionaries/fileExtensions.txt b/.vscode/cspell/psdocs/dictionaries/fileExtensions.txt new file mode 100644 index 0000000000..f4e1222975 --- /dev/null +++ b/.vscode/cspell/psdocs/dictionaries/fileExtensions.txt @@ -0,0 +1,10 @@ +adml +admx +asmx +bmil +cdxml +dylib +evtx +maml +mogg +msix diff --git a/.vscode/cspell/psdocs/dictionaries/psdocs.txt b/.vscode/cspell/psdocs/dictionaries/psdocs.txt new file mode 100644 index 0000000000..11b7e4d2d4 --- /dev/null +++ b/.vscode/cspell/psdocs/dictionaries/psdocs.txt @@ -0,0 +1,279 @@ +ADSI +AMSI +Antimalware +assetid +Authenticode +autoclose +autocloses +autoclosing +autodetect +autogenerate +autogenerated +autogenerates +autoload +autoloaded +autoloads +autosave +autosaved +autosaves +backgrounded +backtick +backticks +bareword +barewords +bigendianunicode +blockquote +blockquotes +blog +bootstrapped +bootstrapper +bootstrapping +bootstraps +bytecode +callout +callouts +callstack +carmonm +ccontains +CentOS +cheatsheet +cheatsheets +checkboxes +cimv2 +clike +cmatch +cmdlet +cmdlets +cnotcontains +cnotlike +cnotmatch +codepage +codepages +computername +coreclr +CoreOS +CredSSP +creplace +customizations +DACL +datacenter +datacenters +Debian +deserialization +deserialize +deserialized +deserializes +devlang +DHCP +differentiators +discoverability +DISM +doc-a-thon +doc-a-thons +docfx +docset +documentationcenter +DPAPI +DWORD +endianness +Etag +Etags +eventlog +eventlogs +executables +façade +failover +finalizer +frontmatter +glob +globbing +globs +GUID +hardlink +hashtable +hashtables +hasthable +helpdesk +HKEY +hostname +hostnames +hotfix +hotfixes +HTTPS +icontains +ilike +imatch +inetpub +infographic +inotcontains +inotlike +inotmatch +IntelliSense +interpreted +intranet +intrinsics +ireplace +isnot +JavaScript +Kerberos +keypress +keypresses +Kubernetes +LASTEXITCODE +LCID +lifecycle +lockdown +markdig +msiexec +MSIL +MSRC +multibyte +multithreading +NETBIOS +netstandard +Newtonsoft +Newtonsoft's +NoBom +notcontains +notlike +notmatch +nslookup +NTFS +NTLM +nuget +nupkg +onboarding +openpublishing +openSUSE +pageable +parameterless +PATHEXT +pltfrm +POSIX +PowerShell +POWERSHELL_TELEMETRY_OPTOUT +preinstallation +prepopulate +prepopulated +prepopulates +prepopulating +prerelease +prereleases +psadapted +psbase +pscustomobject +PSES +psextended +PSHOME +PSHOST +PSISE +psobject +PSRP +PSSA +pstypenames +PSUICulture +PSWSMan +Punycode +pwsh +quickstartq +quickstarts +QWORD +Raspbian +Recurse +recurses +rehost +rehosting +rehosts +rehydrated +remoting +reparse +RHEL +RIPEMD160 +runbook +runbooks +runspace +runspaces +runtimes +SACL +SBOM +SBOMs +sbyte +scalability +scanability +SCCM +scriptable +scriptblocks +scripter +scripters +Sddl +SDII +SDKs +sdwheeler +sewhee +SIEM +SLES +Snapin +Snapins +Snover +SPACEBAR +Sqlcmd +SQLPS +stepover +struct +subcontainer +subcontainers +subexpression +subexpressions +subfolder +subfolder +subfolders +subkey +subkeys +subnet +subnets +subpipeline +subpipelines +subproperties +subproperty +symlink +systemdrive +taskbar +timespan +Titlecase +TMPDIR +triaged +Ubuntu +UMCI +undelimited +unencrypted +uninstallation +unjoin +unjoined +unjoining +unjoins +unlist +unlisted +unlisting +unlists +unlocalized +unmanaged +unregister +unregistered +unregistering +unregisters +untrusted +updateable +USERMODE +USERROLE +userspace +virtualized +virtualizes +walkthrough +WBEM +WDAC +webservice +WinCompat +wmicimv2 +workgroup +workgroups +wwwroot diff --git a/.vscode/cspell/psdocs/dictionaries/pwshAliases.txt b/.vscode/cspell/psdocs/dictionaries/pwshAliases.txt new file mode 100644 index 0000000000..df6ac75bab --- /dev/null +++ b/.vscode/cspell/psdocs/dictionaries/pwshAliases.txt @@ -0,0 +1,24 @@ +cd +cdd +chdir +clc +clhy +cli +clp +cls +clv +cnsn +cp +cpi +cpp +curi +cvpa +hfid +infa +ipmo +psedit +ruri +sasv +spps +spsv +usetx diff --git a/.vscode/cspell/winmodules/cspell.yaml b/.vscode/cspell/winmodules/cspell.yaml new file mode 100644 index 0000000000..54c52b45e8 --- /dev/null +++ b/.vscode/cspell/winmodules/cspell.yaml @@ -0,0 +1,18 @@ +name: azmodules +description: > + This cSpell configuration is for terminology specific to the PowerShell modules in this + repository. Only add to the dictionaries defined here if the terms specifically apply to one of + the modules. If they apply to PowerShell more broadly, contribute those changes back to the psdocs + configuration and dictionaries in the MicrosoftDocs/PowerShell-Docs repository, not here. + +dictionaryDefinitions: + - name: winps + description: > + Dictionary of common terms for the Windows modules. Add entries to this dictionary for words + used in the documentation for these modules but not broader PowerShell or other documentation. + path: ./dictionaries/winps.txt + +overrides: + - filename: '**/winserver*/**/*.md' + dictionaries: + - winps diff --git a/.vscode/cspell/winmodules/dictionaries/winps.txt b/.vscode/cspell/winmodules/dictionaries/winps.txt new file mode 100644 index 0000000000..24bfe10a49 --- /dev/null +++ b/.vscode/cspell/winmodules/dictionaries/winps.txt @@ -0,0 +1,2 @@ +ADCS +NTDS From 54ba9f910b80de67badcf866ec28cafbc2ebd1b6 Mon Sep 17 00:00:00 2001 From: Michael Lombardi Date: Mon, 3 Oct 2022 15:27:44 -0500 Subject: [PATCH 259/965] (MAINT) Add extension suggestions This change adds extension suggestions to the repository to ease contributions by providing a list of helpful extensions for writing and maintaining the documentation. --- .vscode/extensions.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .vscode/extensions.json diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000000..066d9a195a --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,14 @@ +{ + // See https://go.microsoft.com/fwlink/?LinkId=827846 + // for the documentation about the extensions.json format + "recommendations": [ + "Acrolinx.vscode-sidebar", + "docsmsft.docs-authoring-pack", + "marvhen.reflow-markdown", + "ms-vscode.powershell", + "shuworks.vscode-table-formatter", + "streetsidesoftware.code-spell-checker", + "wmaurer.change-case", + "yzane.markdown-pdf" + ] +} From 454b6f771b34b9390948d93a1433c3bcfe7f55d9 Mon Sep 17 00:00:00 2001 From: Michael Lombardi Date: Mon, 3 Oct 2022 15:32:35 -0500 Subject: [PATCH 260/965] (MAINT) Add issue templates This change introduces GitHub issue templates and the issue picker to the project, enabling an improved UX for people filing issues against the repository. It also includes the issue template for Hacktoberfest 2022, to make participation easier. The configuration for the article issue template is minimal, lacking version or module selection, but those fields can be added in the future if required. --- .github/ISSUE_TEMPLATE/00-hacktoberfest.yml | 78 +++++++++++++++++ .github/ISSUE_TEMPLATE/01-article.yml | 96 +++++++++++++++++++++ .github/ISSUE_TEMPLATE/02-bug.yml | 76 ++++++++++++++++ .github/ISSUE_TEMPLATE/config.yml | 13 +++ 4 files changed, 263 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/00-hacktoberfest.yml create mode 100644 .github/ISSUE_TEMPLATE/01-article.yml create mode 100644 .github/ISSUE_TEMPLATE/02-bug.yml create mode 100644 .github/ISSUE_TEMPLATE/config.yml diff --git a/.github/ISSUE_TEMPLATE/00-hacktoberfest.yml b/.github/ISSUE_TEMPLATE/00-hacktoberfest.yml new file mode 100644 index 0000000000..e04511b3e6 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/00-hacktoberfest.yml @@ -0,0 +1,78 @@ +name: "🎃 Hacktoberfest 2022" +description: >- + File a new issue to tackle quality improvement opportunities for Hacktoberfest 2022 +title: "🎃 2022: " +body: + - type: markdown + attributes: + value: | + This issue's related to [Hacktoberfest 2022][01]. For more info, see the meta-issue below: + + - MicrosoftDocs/PowerShell-Docs#9257 + + [01]: https://hacktoberfest.com/participation/ + - type: checkboxes + id: prerequisites + attributes: + label: Prerequisites + description: >- + These steps are required. After you've completed each step, check the box for it before + moving on. + options: + - label: >- + **Existing Issue:** Search the existing Hacktoberfest issues for this repository. If + there's an issue that covers the quality area and articles you want to improve, pick a + different quality area or article set. Don't file a new issue for the same work. + Subscribe, react, or comment on that issue instead. + required: true + - label: >- + **Descriptive Title:** Write the title for this issue as a short synopsis. If possible, + provide context. For example, "🎃 2022: Command Syntax in Foo" instead of "🎃 2022: Foo" + required: true + - type: dropdown + id: QualityArea + validations: + required: true + attributes: + label: Quality Areas + description: | + Select one or more quality areas to improve on with your contribution. + + For more information, see the relevant section in the meta issue: + + - [Aliases][aliases]: Ensure cmdlet aliases are documented + - [Formatting code samples][code-samples]: Ensure proper casing, line length, etc in code samples + - [Formatting command syntax][command-syntax]: Ensure proper casing and formatting for command syntax, including cmdlets, types, etc. + - [Link References][link-refs]: Ensure links in conceptual docs are defined as numbered references + - [Markdown linting][md-linting]: Ensure content follows markdownlint rules + - [Spelling][spelling]: Ensure proper casing and spelling for words + + [aliases]: https://github.com/MicrosoftDocs/PowerShell-Docs/issues/9257#aliases + [code-samples]: https://github.com/MicrosoftDocs/PowerShell-Docs/issues/9257#formatting-code-samples + [command-syntax]: https://github.com/MicrosoftDocs/PowerShell-Docs/issues/9257#formatting-command-syntax + [link-refs]: https://github.com/MicrosoftDocs/PowerShell-Docs/issues/9257#link-references + [md-linting]: https://github.com/MicrosoftDocs/PowerShell-Docs/issues/9257#markdown-linting + [spelling]: https://github.com/MicrosoftDocs/PowerShell-Docs/issues/9257#spelling + multiple: true + options: + - Aliases + - Formatting code samples + - Formatting command syntax + - Link References + - Markdown linting + - Spelling + - type: textarea + id: ArticleList + validations: + required: true + attributes: + label: Article List + description: >- + Specify the articles you are committing to work on, one per line. You can specify each entry + as a path, the article's title, or the link to the article on Learn. If you specify an + article by path for a reference article, such as a cmdlet or about topic, specify the + version segment as `*.*`. + placeholder: | + - reference/*.*/Microsoft.PowerShell.Core/Add-History.md + - Add-History + - https://learn.microsoft.com/powershell/module/microsoft.powershell.core/add-history diff --git a/.github/ISSUE_TEMPLATE/01-article.yml b/.github/ISSUE_TEMPLATE/01-article.yml new file mode 100644 index 0000000000..9163cd3633 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/01-article.yml @@ -0,0 +1,96 @@ +name: "💡 New Document Request/Idea" +description: >- + Suggest a new document or major rewrite of an existing one. +labels: + - doc-idea + - needs-triage +body: + - type: checkboxes + id: prerequisites + attributes: + label: Prerequisites + description: >- + These steps are required. After you've completed each step, check the box for it before + moving on. + options: + - label: >- + **Existing Issue:** Search the existing issues for this repository. If there is an issue + that fits your needs do not file a new one. Subscribe, react, or comment on that issue + instead. + required: true + - label: >- + **Descriptive Title:** Write the title for this issue as a short synopsis. If possible, + provide context. For example, "Document new `Get-Foo` cmdlet" instead of "New cmdlet." + required: true + # Commented out for now - Need to think about how to do versioning/module picking + # - type: dropdown + # id: version + # validations: + # required: true + # attributes: + # label: PowerShell Version + # description: >- + # Select the version or versions of the PowerShell this documentation is for. + # multiple: true + # options: + # - "5.1" + # - "7.0" + # - "7.2" + # - "7.3" + - type: textarea + id: summary + validations: + required: true + attributes: + label: Summary + description: >- + Write a clear and concise description of the proposed document. Why is it needed? What gap + will it fill? Who is the intended audience? What scenarios will it address? + placeholder: | + Try formulating the need for this documentation as a user story. + + > As a user of , I need a document about so that . + - type: textarea + id: details + validations: + required: false + attributes: + label: Details + description: >- + If possible, please provide extended details that will add context and help the team write + the documentation. + - type: dropdown + id: type + validations: + required: true + attributes: + label: Proposed Content Type + description: >- + Choose the type or types of documentation required. + multiple: true + options: + - Cmdlet Reference + - About Topic + - Concept + - Other / Unknown + - type: input + id: title + validations: + required: false + attributes: + label: Proposed Title + - type: textarea + id: related_documents + validations: + required: false + attributes: + label: Related Articles + description: >- + Provide a list of links to the documentation page(s) that are related to this request. Use + the markdown list syntax for each item. If the entire article is relevant, just link to the + permalink for its source or the live page. If only a section of the article is relevant, use + the permalink to the lines for the most relevant section of the source or the anchor link to + the nearest header for the relevant content instead of the page itself. + placeholder: | + - https://github.com/MicrosoftDocs/windows-powershell-docs/blob/6f930d26c45d3bfba56d82b23785da1218bfad2a/docset/docs-conceptual/winserver2022-ps/module-compatibility.md?plain=1#L21-L23 + - https://learn.microsoft.com/powershell/windows/module-compatibility#windows-management-modules diff --git a/.github/ISSUE_TEMPLATE/02-bug.yml b/.github/ISSUE_TEMPLATE/02-bug.yml new file mode 100644 index 0000000000..bf566cfebd --- /dev/null +++ b/.github/ISSUE_TEMPLATE/02-bug.yml @@ -0,0 +1,76 @@ +name: "🛠Report Documentation issue" +description: >- + Report an issue with current documentation. +labels: + - doc-bug + - needs-triage +body: + - type: markdown + attributes: + value: >- + Use this template to report issues with documentation. This can include typos, technical and + factual errors, grammar, spelling, formatting, presentation, etc. + - type: checkboxes + id: prerequisites + attributes: + label: Prerequisites + description: >- + These steps are required. After you've completed each step, check the box for it before + moving on. + options: + - label: >- + **Existing Issue:** Search the existing issues for this repository. If there is an issue + that fits your needs do not file a new one. Subscribe, react, or comment on that issue + instead. + required: true + - label: >- + **Descriptive Title:** Write the title for this issue as a short synopsis. If possible, + provide context. For example, "Typo in `Get-Foo` cmdlet" instead of "Typo." + required: true + - label: >- + **Verify Version:** If there is a mismatch between documentation and the behavior on + your system, ensure that the version you are using is the same as the documentation. + Check this box if they match or the issue you are reporting is not version specific. + required: true + - type: textarea + id: link_list + validations: + required: true + attributes: + label: Links + description: >- + Provide a list of links to the documentation page(s) that show the problem you are + reporting. Use the markdown list syntax for each item. If you are linking to the source for + the document, please use the permalink to the lines that show the problem. If you are + linking to the live page for the document, please ensure each link is to the nearest header + anchor to the problem instead of the page itself. + placeholder: | + - https://github.com/MicrosoftDocs/windows-powershell-docs/blob/6f930d26c45d3bfba56d82b23785da1218bfad2a/docset/docs-conceptual/winserver2022-ps/module-compatibility.md?plain=1#L21-L23 + - https://learn.microsoft.com/powershell/windows/module-compatibility#windows-management-modules + - type: textarea + id: summary + validations: + required: true + attributes: + label: Summary + description: >- + Write a clear and concise description of the problem. + - type: textarea + id: details + validations: + required: false + attributes: + label: Details + description: >- + If possible, please provide extended details that will add context and help the team update + the documentation. Additional details may not be useful for typos, grammar, formatting, etc. + For technical or factual errors, please include code snippets and output to show how the + documentation is incorrect. + - type: textarea + id: suggestion + validations: + required: false + attributes: + label: Suggested Fix + description: >- + If you have an idea for how to fix the problem you're identifying, include it here. diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000000..875634bf93 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,13 @@ +blank_issues_enabled: true +contact_links: + - name: 🎃 Hacktoberfest 2022 + url: https://github.com/MicrosoftDocs/PowerShell-Docs/issues/9257 + about: >- + If you'd like to participate in Hacktoberfest 2022, before filing an issue, check the info + and instructions. + # - name: PowerShell Product Feedback + # url: https://github.com/PowerShell/PowerShell/issues/new/choose + # about: Please open feature requests for current PowerShell here. + # - name: Support + # url: https://learn.microsoft.com/powershell/scripting/community/community-support + # about: PowerShell Support Questions/Help From 119a3881692788817b12ab017090dea7135dbaac Mon Sep 17 00:00:00 2001 From: Michael Lombardi Date: Mon, 3 Oct 2022 15:33:22 -0500 Subject: [PATCH 261/965] (MAINT) Add repo automation This change introduces some repository automation from the PowerShell-Docs repositories. In summary: 1. The Pull Request template ensures a standard UX and process for incoming PRs. 2. The checklist workflow uses the PR template to verify that non-admin contributors are following the processes. 3. The dependabot configuration verifies that actions are up to date. --- .github/PULL_REQUEST_TEMPLATE.md | 35 ++++++++++++++++++++++++++++++++ .github/dependabot.yml | 6 ++++++ .github/workflows/checklist.yml | 27 ++++++++++++++++++++++++ 3 files changed, 68 insertions(+) create mode 100644 .github/PULL_REQUEST_TEMPLATE.md create mode 100644 .github/dependabot.yml create mode 100644 .github/workflows/checklist.yml diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000000..8b2eca374d --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,35 @@ +# PR Summary + + + +## PR Checklist + + + +- [ ] **Descriptive Title:** This PR's title is a synopsis of the changes it proposes. +- [ ] **Summary:** This PR's summary describes the scope and intent of the change. +- [ ] **Contributor's Guide:** I have read the [contributors guide][contrib]. +- [ ] **Style:** This PR adheres to the [style guide][style]. + + + +[contrib]: https://learn.microsoft.com/powershell/scripting/community/contributing/overview +[style]: https://learn.microsoft.com/powershell/scripting/community/contributing/powershell-style-guide diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000000..203f3c889b --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,6 @@ +version: 2 +updates: +- package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml new file mode 100644 index 0000000000..9df3eeba72 --- /dev/null +++ b/.github/workflows/checklist.yml @@ -0,0 +1,27 @@ +name: Checklist +on: + pull_request: + branches: + - main + types: + - opened + - reopened + - ready_for_review + - edited + - synchronize +permissions: + contents: read +jobs: + Test: + name: Verify Status + runs-on: windows-latest + if: | + !contains(github.event.pull_request.title, 'WIP') && + !github.event.pull_request.draft + defaults: + run: + shell: pwsh + steps: + - name: Verify Checklist + id: verify_checklist + uses: MicrosoftDocs/PowerShell-Docs/.github/actions/verification/checklist/v1@main From d105a1d8e8e776a035d76e17c06b7bd369ff5306 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Tue, 13 Sep 2022 14:21:33 +0100 Subject: [PATCH 262/965] Additional Storage Replica parameters --- .../storagereplica/New-SRGroup.md | 29 +++++++++++++-- .../storagereplica/New-SRPartnership.md | 31 ++++++++++++++-- .../storagereplica/Set-SRGroup.md | 37 ++++++++++++++++++- .../storagereplica/Set-SRPartnership.md | 33 ++++++++++++++++- 4 files changed, 119 insertions(+), 11 deletions(-) diff --git a/docset/winserver2022-ps/storagereplica/New-SRGroup.md b/docset/winserver2022-ps/storagereplica/New-SRGroup.md index b8d0aeb9ea..6e29c962da 100644 --- a/docset/winserver2022-ps/storagereplica/New-SRGroup.md +++ b/docset/winserver2022-ps/storagereplica/New-SRGroup.md @@ -17,8 +17,9 @@ Creates a replication group. ``` New-SRGroup [[-ComputerName] ] [-Name] [-VolumeName] [-LogVolumeName] - [[-LogSizeInBytes] ] [[-Description] ] [-EnableConsistencyGroups] [-EnableEncryption] [-Force] - [-CimSession ] [-ThrottleLimit ] [-AsJob] [] + [[-LogSizeInBytes] ] [[-Description] ] [-EnableConsistencyGroups] [-EnableEncryption] + [-EnableCompression] [-Force] [-CimSession ] [-ThrottleLimit ] [-AsJob] + [] ``` ## DESCRIPTION @@ -26,6 +27,13 @@ The **New-SRGroup** cmdlet creates a replication group. A replication group contains one or more data volumes and an associated log volume. A replication group is the container for replication. +> [!NOTE] +> The **EnableCompression** parameter is currently in PREVIEW beginning with TODO: 2022-08 +> Cumulative Update for Microsoft server operating system version 21H2 for x64-based Systems +> ([KB5016693](https://support.microsoft.com/help/5016693)). Some information relates to prerelease +> product that may be substantially modified before it's released. Microsoft makes no warranties, +> express or implied, with respect to the information provided here. + ## EXAMPLES ### Example 1: Create a replication group @@ -159,6 +167,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -EnableCompression +Indicates that the connections on this partnership should use compression. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: ECMP + +Required: False +Position: 9 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -EnableConsistencyGroups Indicates that consistency groups are enabled for the replication group that contains multiple volumes. Consistency groups provide write ordering. @@ -312,7 +335,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### replicationgroup +### Microsoft.Management.Infrastructure.CimInstance ## NOTES diff --git a/docset/winserver2022-ps/storagereplica/New-SRPartnership.md b/docset/winserver2022-ps/storagereplica/New-SRPartnership.md index 00922fbda8..1512f26bbd 100644 --- a/docset/winserver2022-ps/storagereplica/New-SRPartnership.md +++ b/docset/winserver2022-ps/storagereplica/New-SRPartnership.md @@ -19,8 +19,8 @@ Creates a replication partnership between two replication groups. ``` New-SRPartnership [[-SourceComputerName] ] [-SourceRGName] [-DestinationComputerName] [-DestinationRGName] [[-ReplicationMode] ] [-PreventReplication] [-Seeded] - [[-AsyncRPO] ] [-EnableEncryption] [-Force] [-CimSession ] [-ThrottleLimit ] - [-AsJob] [] + [[-AsyncRPO] ] [-EnableEncryption] [-EnableCompression] [-Force] [-CimSession ] + [-ThrottleLimit ] [-AsJob] [] ``` ### CreateTopology @@ -29,8 +29,9 @@ New-SRPartnership [[-SourceComputerName] ] [-SourceRGName] [-So [-SourceLogVolumeName] [[-SourceRGDescription] ] [-DestinationComputerName] [-DestinationRGName] [-DestinationVolumeName] [-DestinationLogVolumeName] [[-DestinationRGDescription] ] [[-ReplicationMode] ] [[-LogSizeInBytes] ] - [-PreventReplication] [-Seeded] [-EnableConsistencyGroups] [[-AsyncRPO] ] [-EnableEncryption] [-Force] - [-CimSession ] [-ThrottleLimit ] [-AsJob] [] + [-PreventReplication] [-Seeded] [-EnableConsistencyGroups] [[-AsyncRPO] ] [-EnableEncryption] + [-EnableCompression] [-Force] [-CimSession ] [-ThrottleLimit ] [-AsJob] + [] ``` ## DESCRIPTION @@ -38,6 +39,13 @@ The **New-SRPartnership** cmdlet creates a replication partnership between two n This cmdlet can create the complete replication topology. It can also tie together separately created replication groups. +> [!NOTE] +> The **EnableCompression** parameter is currently in PREVIEW beginning with TODO: 2022-08 +> Cumulative Update for Microsoft server operating system version 21H2 for x64-based Systems +> ([KB5016693](https://support.microsoft.com/help/5016693)). Some information relates to prerelease +> product that may be substantially modified before it's released. Microsoft makes no warranties, +> express or implied, with respect to the information provided here. + ## EXAMPLES ### Example 1: Create a topology between two servers @@ -278,6 +286,21 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -EnableCompression +Indicates that the connections on this partnership should use compression. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: ECMP + +Required: False +Position: 99 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -EnableConsistencyGroups Indicates that consistency groups are enabled for the replication group that contains multiple volumes. Consistency groups provide write ordering. diff --git a/docset/winserver2022-ps/storagereplica/Set-SRGroup.md b/docset/winserver2022-ps/storagereplica/Set-SRGroup.md index 05f89ae000..61158318f9 100644 --- a/docset/winserver2022-ps/storagereplica/Set-SRGroup.md +++ b/docset/winserver2022-ps/storagereplica/Set-SRGroup.md @@ -31,8 +31,8 @@ Set-SRGroup [[-ComputerName] ] [-Name] [-Force] [-RemoveVolumeN ``` Set-SRGroup [[-ComputerName] ] [-Name] [-Force] [[-LogSizeInBytes] ] [[-Description] ] [[-ReplicationMode] ] [[-Encryption] ] - [[-AllowVolumeResize] ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] - [-Confirm] [] + [[-Compression] ] [[-AllowVolumeResize] ] [-CimSession ] + [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -40,6 +40,13 @@ The **Set-SRGroup** cmdlet modifies settings of an existing replication group. A replication group contains one or more data volumes and an associated log volume. A replication group is the container for replication. +> [!NOTE] +> The **Compression** parameter is currently in PREVIEW beginning with TODO: 2022-08 +> Cumulative Update for Microsoft server operating system version 21H2 for x64-based Systems +> ([KB5016693](https://support.microsoft.com/help/5016693)). Some information relates to prerelease +> product that may be substantially modified before it's released. Microsoft makes no warranties, +> express or implied, with respect to the information provided here. + ## EXAMPLES ### Example 1: Add a volume to a replication group @@ -135,6 +142,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Compression +Indicates that the connections in this Storage Replica group should use compression. + +```yaml +Type: Boolean +Parameter Sets: ModifyConfig +Aliases: CMP + +Required: False +Position: 10 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + ### -ComputerName Specifies a single replica host computer NetBIOS name or fully qualified domain name (FQDN) of a computer. The default value is the local computer. @@ -336,8 +358,19 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS +### System.String + +### System.String[] + +### System.UInt64 + +### Microsoft.PowerShell.Cmdletization.GeneratedTypes.SREnum.ReplicationMode + +### System.Boolean + ## OUTPUTS +### System.Object ## NOTES ## RELATED LINKS diff --git a/docset/winserver2022-ps/storagereplica/Set-SRPartnership.md b/docset/winserver2022-ps/storagereplica/Set-SRPartnership.md index 3ad3cbe5d4..e7d4e29a45 100644 --- a/docset/winserver2022-ps/storagereplica/Set-SRPartnership.md +++ b/docset/winserver2022-ps/storagereplica/Set-SRPartnership.md @@ -27,8 +27,8 @@ Set-SRPartnership [[-SourceComputerName] ] [-SourceRGName] ``` Set-SRPartnership [[-SourceComputerName] ] [-SourceRGName] [-DestinationComputerName] [-DestinationRGName] [[-ReplicationMode] ] [[-LogSizeInBytes] ] - [[-AsyncRPO] ] [[-Encryption] ] [-CimSession ] [-ThrottleLimit ] - [-AsJob] [-WhatIf] [-Confirm] [] + [[-AsyncRPO] ] [[-Encryption] ] [[-Compression] ] [-CimSession ] + [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] [] ``` ### ModifyPartnership @@ -43,6 +43,13 @@ The **Set-SRPartnership** cmdlet modifies a replication partnership between two You can use this cmdlet to add replicated volumes. You can also change the direction of replication which makes a source volume into a destination volume. +> [!NOTE] +> The **Compression** parameter is currently in PREVIEW beginning with TODO: 2022-08 +> Cumulative Update for Microsoft server operating system version 21H2 for x64-based Systems +> ([KB5016693](https://support.microsoft.com/help/5016693)). Some information relates to prerelease +> product that may be substantially modified before it's released. Microsoft makes no warranties, +> express or implied, with respect to the information provided here. + ## EXAMPLES ### Example 1: Reverse replication direction @@ -231,6 +238,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Compression +Indicates that the connections on this partnership should use compression. + +```yaml +Type: Boolean +Parameter Sets: ModifySettings +Aliases: CMP + +Required: False +Position: 53 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Confirm Prompts you for confirmation before running the cmdlet. @@ -521,8 +543,15 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS +### System.String + +### System.String[] + +### System.UInt64 + ## OUTPUTS +### System.Object ## NOTES ## RELATED LINKS From b5de713ad5c934ddb1306d8e07cdb5511b0cc8e7 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Tue, 13 Sep 2022 17:31:49 +0100 Subject: [PATCH 263/965] Editorial review --- .../storagereplica/New-SRGroup.md | 160 ++++----- .../storagereplica/New-SRPartnership.md | 262 ++++++-------- .../storagereplica/Set-SRGroup.md | 119 ++++--- .../storagereplica/Set-SRPartnership.md | 332 ++++++++---------- 4 files changed, 390 insertions(+), 483 deletions(-) diff --git a/docset/winserver2022-ps/storagereplica/New-SRGroup.md b/docset/winserver2022-ps/storagereplica/New-SRGroup.md index 6e29c962da..d40f26847c 100644 --- a/docset/winserver2022-ps/storagereplica/New-SRGroup.md +++ b/docset/winserver2022-ps/storagereplica/New-SRGroup.md @@ -16,16 +16,15 @@ Creates a replication group. ## SYNTAX ``` -New-SRGroup [[-ComputerName] ] [-Name] [-VolumeName] [-LogVolumeName] - [[-LogSizeInBytes] ] [[-Description] ] [-EnableConsistencyGroups] [-EnableEncryption] - [-EnableCompression] [-Force] [-CimSession ] [-ThrottleLimit ] [-AsJob] - [] +New-SRGroup [[-ComputerName] ] [-Name] [-VolumeName] [-LogVolumeName] + [[-LogSizeInBytes] ] [[-Description] ] [-EnableConsistencyGroups] +[-EnableEncryption] [-EnableCompression] [-Force] [-CimSession ] +[-ThrottleLimit ] [-AsJob] [] ``` ## DESCRIPTION -The **New-SRGroup** cmdlet creates a replication group. -A replication group contains one or more data volumes and an associated log volume. -A replication group is the container for replication. +The `New-SRGroup` cmdlet creates a replication group. A replication group contains one or more +data volumes and an associated log volume. A replication group is the container for replication. > [!NOTE] > The **EnableCompression** parameter is currently in PREVIEW beginning with TODO: 2022-08 @@ -37,75 +36,40 @@ A replication group is the container for replication. ## EXAMPLES ### Example 1: Create a replication group -``` -PS C:\>New-SRGroup -ComputerName "SR-SRV05" -Name "ReplicationGroup01" -VolumeName "D:" -LogVolumeName "E:" -AllowVolumeResize : False -AsyncRPO : -ComputerName : SR-SRV05 -Description : -Id : 7b44e4bd-3fd8-411d-a6d1-1a6bb704520f -IsAutoFailover : -IsCluster : False -IsEncrypted : False -IsInPartnership : False -IsPrimary : -IsSuspended : -IsWriteConsistency : False -LastInSyncTime : -LogSizeInBytes : 8589934592 -LogVolume : e:\ -Name : ReplicationGroup01 -NumOfReplicas : 1 -Partitions : {bc49f059-4f78-464d-b88a-3a092108816e} -Replicas : {MSFT_WvrReplica (PartitionId = - "bc49f059-4f78-464d-b88a-3a092108816e")} -ReplicationMode : Synchronous -ReplicationStatus : NotInPartnership -PSComputerName : +```powershell +New-SRGroup -ComputerName "SR-SRV05" -Name "ReplicationGroup01" -VolumeName "D:" -LogVolumeName "E:" ``` -This command creates a replication group for server named SR-SRV05. -The command specifies the replicated volume and the log volume. -Because this command does not specify other parameters, the replication group uses default values. -Replication does not start until you run the New-SRPartnership cmdlet. +This command creates a replication group for server named SR-SRV05. The command specifies the +replicated volume and the log volume. Because this command does not specify other parameters, the +replication group uses default values. Replication does not start until you run the +`New-SRPartnership` cmdlet. ### Example 2: Create a replication group that uses custom properties +```powershell +$Parameters = @{ + ComputerName = 'SR-SRV05' + Name = 'ReplicationGroup02' + VolumeName = 'D:' + LogVolumeName = 'E:' + LogSizeInBytes = '32GB' + EnableEncryption = $True +} +New-SRGroup @Parameters ``` -PS C:\>New-SRGroup -ComputerName "SR-SRV05" -Name "ReplicationGroup02" -VolumeName "D:" -LogVolumeName "E:" -LogSizeInBytes 32GB -EnableEncryption -AllowVolumeResize : False -AsyncRPO : -ComputerName : SR-SRV05 -Description : -Id : 1b0962d1-0771-49cb-bde5-7298db488263 -IsAutoFailover : -IsCluster : False -IsEncrypted : True -IsInPartnership : False -IsPrimary : -IsSuspended : -IsWriteConsistency : False -LastInSyncTime : -LogSizeInBytes : 34359738368 -LogVolume : e:\ -Name : ReplicationGroup02 -NumOfReplicas : 1 -Partitions : {bc49f059-4f78-464d-b88a-3a092108816e} -Replicas : {MSFT_WvrReplica (PartitionId = - "bc49f059-4f78-464d-b88a-3a092108816e")} -ReplicationMode : Synchronous -ReplicationStatus : NotInPartnership -PSComputerName : -``` -This command creates a replication group for server named SR-SRV05. -The command specifies the replicated volume and the log volume. -The command also specifies a custom log size in GB and enables replication traffic encryption. -Replication does not start until you run **New-SRPartnership**. +This command creates a replication group for server named SR-SRV05. The command specifies the +replicated volume and the log volume. The command also specifies a custom log size in GB and enables +replication traffic encryption. Replication does not start until you run **New-SRPartnership**. + +This example uses splatting to pass parameter values from the `$Parameters` variable to the command. +Learn more about [Splatting](/powershell/module/microsoft.powershell.core/about/about_splatting). ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. ```yaml Type: SwitchParameter @@ -120,9 +84,10 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml Type: CimSession[] @@ -137,8 +102,8 @@ Accept wildcard characters: False ``` ### -ComputerName -Specifies a single replica host computer NetBIOS name or fully qualified domain name (FQDN) of a computer to belong to the replication group. -The default value is the local computer. +Specifies a single replica host computer NetBIOS name or fully qualified domain name (FQDN) of a +computer to belong to the replication group. The default value is the local computer. ```yaml Type: String @@ -183,9 +148,9 @@ Accept wildcard characters: False ``` ### -EnableConsistencyGroups -Indicates that consistency groups are enabled for the replication group that contains multiple volumes. -Consistency groups provide write ordering. -This can be important, for example, for replication of application data on multiple volumes. +Indicates that consistency groups are enabled for the replication group that contains multiple +volumes. Consistency groups provide write ordering. This can be important, for example, for +replication of application data on multiple volumes. If you enable consistency groups, it may decrease replication and write Input/Output performance. @@ -202,9 +167,9 @@ Accept wildcard characters: False ``` ### -EnableEncryption -Indicates that this partnership should encrypt connection by using SMB AES-128-GCM. -Enabling encryption can protect Storage Replica block transfers from man-in-the-middle interception or reading. -Enabling encryption decreases performance. +Indicates that this partnership should encrypt connection by using SMB AES-128-GCM. Enabling +encryption can protect Storage Replica block transfers from man-in-the-middle interception or +reading. Enabling encryption decreases performance. ```yaml Type: SwitchParameter @@ -234,11 +199,12 @@ Accept wildcard characters: False ``` ### -LogSizeInBytes -Specifies the aggregate size of log files on each server in the replication group for the volumes that are associated with this replication group. -The minimum size 512MB. -You can specify a value by using the Windows PowerShell byte conversion capability, such as 4GB or 3200MB. +Specifies the aggregate size of log files on each server in the replication group for the volumes +that are associated with this replication group. The minimum size 512MB. You can specify a value by +using the Windows PowerShell byte conversion capability, such as 4GB or 3200MB. -A value that is too small may cause decreased replication performance or increased recovery time after an interruption between computers. +A value that is too small may cause decreased replication performance or increased recovery time +after an interruption between computers. ```yaml Type: UInt64 @@ -253,10 +219,9 @@ Accept wildcard characters: False ``` ### -LogVolumeName -Specifies a drive letter, mount point path, or volume GUID where Storage Replication creates destination replication logs. -The value must contain an NTFS-formatted volume or ReFS-formatted volume. -The path must exist. -The path cannot be a mapped drive or UNC path. +Specifies a drive letter, mount point path, or volume GUID where Storage Replication creates +destination replication logs. The value must contain an NTFS-formatted volume or ReFS-formatted +volume. The path must exist. The path cannot be a mapped drive or UNC path. Storage Replication creates logs in the System Volume Information folder. @@ -288,9 +253,11 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml Type: Int32 @@ -305,16 +272,14 @@ Accept wildcard characters: False ``` ### -VolumeName -Specifies an array of drive letters or mount point paths for the replica. -The volumes must exist. +Specifies an array of drive letters or mount point paths for the replica. The volumes must exist. The volumes cannot be mapped drives or UNC paths. -This is an ordered list. -The order of volumes determines the order of replication. -For more information, see the *DestinationVolumeName* parameter of the New-SRPartnership cmdlet. +This is an ordered list. The order of volumes determines the order of replication. For more +information, see the **DestinationVolumeName** parameter of the `New-SRPartnership` cmdlet. -We do not recommend replicating different drive letters or mount point paths. -The practice can cause application failures because of stored settings after a failover occurs. +We do not recommend replicating different drive letters or mount point paths. The practice can cause +application failures because of stored settings after a failover occurs. ```yaml Type: String[] @@ -329,7 +294,10 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/docset/winserver2022-ps/storagereplica/New-SRPartnership.md b/docset/winserver2022-ps/storagereplica/New-SRPartnership.md index 1512f26bbd..6a7de6333e 100644 --- a/docset/winserver2022-ps/storagereplica/New-SRPartnership.md +++ b/docset/winserver2022-ps/storagereplica/New-SRPartnership.md @@ -17,27 +17,28 @@ Creates a replication partnership between two replication groups. ### CreatePartnership (Default) ``` -New-SRPartnership [[-SourceComputerName] ] [-SourceRGName] [-DestinationComputerName] - [-DestinationRGName] [[-ReplicationMode] ] [-PreventReplication] [-Seeded] - [[-AsyncRPO] ] [-EnableEncryption] [-EnableCompression] [-Force] [-CimSession ] - [-ThrottleLimit ] [-AsJob] [] +New-SRPartnership [[-SourceComputerName] ] [-SourceRGName] +[-DestinationComputerName] [-DestinationRGName] [[-ReplicationMode] +] [-PreventReplication] [-Seeded] [[-AsyncRPO] ] [-EnableEncryption] +[-EnableCompression] [-Force] [-CimSession ] [-ThrottleLimit ] [-AsJob] +[] ``` ### CreateTopology ``` -New-SRPartnership [[-SourceComputerName] ] [-SourceRGName] [-SourceVolumeName] - [-SourceLogVolumeName] [[-SourceRGDescription] ] [-DestinationComputerName] - [-DestinationRGName] [-DestinationVolumeName] [-DestinationLogVolumeName] - [[-DestinationRGDescription] ] [[-ReplicationMode] ] [[-LogSizeInBytes] ] - [-PreventReplication] [-Seeded] [-EnableConsistencyGroups] [[-AsyncRPO] ] [-EnableEncryption] - [-EnableCompression] [-Force] [-CimSession ] [-ThrottleLimit ] [-AsJob] - [] +New-SRPartnership [[-SourceComputerName] ] [-SourceRGName] [-SourceVolumeName] + [-SourceLogVolumeName] [[-SourceRGDescription] ] +[-DestinationComputerName] [-DestinationRGName] [-DestinationVolumeName] + [-DestinationLogVolumeName] [[-DestinationRGDescription] ] +[[-ReplicationMode] ] [[-LogSizeInBytes] ] [-PreventReplication] [-Seeded] +[-EnableConsistencyGroups] [[-AsyncRPO] ] [-EnableEncryption] [-EnableCompression] [-Force] +[-CimSession ] [-ThrottleLimit ] [-AsJob] [] ``` ## DESCRIPTION -The **New-SRPartnership** cmdlet creates a replication partnership between two new or existing replication groups. -This cmdlet can create the complete replication topology. -It can also tie together separately created replication groups. +The `New-SRPartnership` cmdlet creates a replication partnership between two new or existing +replication groups. This cmdlet can create the complete replication topology. It can also tie +together separately created replication groups. > [!NOTE] > The **EnableCompression** parameter is currently in PREVIEW beginning with TODO: 2022-08 @@ -49,14 +50,18 @@ It can also tie together separately created replication groups. ## EXAMPLES ### Example 1: Create a topology between two servers -``` -PS C:\>New-SRPartnership -SourceComputerName "SR-SRV05" -SourceRGName "ReplicationGroup01" -SourceVolumeName "D:" -SourceLogVolumeName "E:" -DestinationComputerName "SR-SRV06" -DestinationRGName "ReplicationGroup02" -DestinationVolumeName "D:" -DestinationLogVolumeName "E:" -DestinationComputerName : SR-SRV06 -DestinationRGName : ReplicationGroup02 -Id : 3767be20-b82f-4c59-8630-116885de1ac7 -SourceComputerName : SR-SRV05 -SourceRGName : ReplicationGroup01 -PSComputerName : +```powershell +$Parameters = @{ + SourceComputerName = 'SR-SRV05' + SourceRGName = 'ReplicationGroup01' + SourceVolumeName = 'D:' + SourceLogVolumeName = 'E:' + DestinationComputerName = 'SR-SRV06' + DestinationRGName = 'ReplicationGroup02' + DestinationVolumeName = 'D:' + DestinationLogVolumeName = 'E:' +} +New-SRPartnership @Parameters ``` This command creates a replication topology between servers SR-SRV05 and SR-SRV06. @@ -67,76 +72,32 @@ The replication mode has the default value of synchronous. The command does not specify seeding, encryption, and consistency groups. Replication starts immediately. +This example uses splatting to pass parameter values from the `$Parameters` variable to the command. +Learn more about [Splatting](/powershell/module/microsoft.powershell.core/about/about_splatting). + ### Example 2: Pair existing groups -``` -This command creates a replication group named ReplicationGroup01 for the server named SR-SRV05 by using the New-SRGroup cmdlet. -PS C:\>New-SRGroup -ComputerName "SR-SRV05" -Name "ReplicationGroup01" -VolumeName "D:" -LogVolumeName "E:" -AllowVolumeResize : False -AsyncRPO : -ComputerName : SR-SRV05 -Description : -Id : 7b44e4bd-3fd8-411d-a6d1-1a6bb704520f -IsAutoFailover : -IsCluster : False -IsEncrypted : False -IsInPartnership : False -IsPrimary : -IsSuspended : -IsWriteConsistency : False -LastInSyncTime : -LogSizeInBytes : 8589934592 -LogVolume : e:\ -Name : ReplicationGroup01 -NumOfReplicas : 1 -Partitions : {bc49f059-4f78-464d-b88a-3a092108816e} -Replicas : {MSFT_WvrReplica (PartitionId = - "bc49f059-4f78-464d-b88a-3a092108816e")} -ReplicationMode : Synchronous -ReplicationStatus : NotInPartnership -PSComputerName : - -This command creates a replication group named ReplicationGroup02 for the server named SR-SRV06. -PS C:\>New-SRGroup -ComputerName "SR-SRV06" -Name "ReplicationGroup02" -VolumeName "D:" -LogVolumeName "E:" -AllowVolumeResize : False -AsyncRPO : -ComputerName : SR-SRV06 -Description : -Id : c72ad564-6618-4ef2-92c6-13e0cc451303 -IsAutoFailover : -IsCluster : False -IsEncrypted : False -IsInPartnership : False -IsPrimary : -IsSuspended : -IsWriteConsistency : False -LastInSyncTime : -LogSizeInBytes : 8589934592 -LogVolume : e:\ -Name : ReplicationGroup02 -NumOfReplicas : 1 -Partitions : {92306c9f-655c-48e2-a28f-f08010514161} -Replicas : {MSFT_WvrReplica (PartitionId = - "92306c9f-655c-48e2-a28f-f08010514161")} -ReplicationMode : Synchronous -ReplicationStatus : NotInPartnership -PSComputerName : - -This command pairs the replication groups from the previous commands. -PS C:\>New-SRPartnership -SourceComputerName "SR-SRV05" -SourceRGName "ReplicationGroup01" -DestinationComputerName "SR-SRV06" -DestinationRGName "ReplicationGroup02" -DestinationComputerName : SR-SRV06 -DestinationRGName : ReplicationGroup02 -Id : cc9d4af0-c9c0-41e9-b7ae-e184714077ec -SourceComputerName : SR-SRV05 -SourceRGName : ReplicationGroup01 -PSComputerName : +```powershell +$Parameters = @{ + SourceComputerName = 'SR-SRV05' + SourceRGName = 'ReplicationGroup01' + DestinationComputerName = 'SR-SRV06' + DestinationRGName = 'ReplicationGroup02' +} +New-SRGroup -ComputerName "SR-SRV05" -Name "ReplicationGroup01" -VolumeName "D:" -LogVolumeName "E:" +New-SRGroup -ComputerName "SR-SRV06" -Name "ReplicationGroup02" -VolumeName "D:" -LogVolumeName "E:" +New-SRPartnership @Parameters" ``` This example creates two replication groups separately and then pairs those groups. +The example uses splatting to pass parameter values from the `$Parameters` variable to the command. +Learn more about [Splatting](/powershell/module/microsoft.powershell.core/about/about_splatting). + ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. ```yaml Type: SwitchParameter @@ -151,14 +112,13 @@ Accept wildcard characters: False ``` ### -AsyncRPO -Specifies the maximum difference in time, in seconds, that data for an asynchronous partnership can be different between source and destination. -This is a Recovery Point Objective. -The minimum value is 30 seconds. -The default value is 5 minutes. +Specifies the maximum difference in time, in seconds, that data for an asynchronous partnership can +be different between source and destination. This is a Recovery Point Objective. The minimum value +is 30 seconds. The default value is 5 minutes. -After exceeding this time, the source server alerts the Health Service on clusters. -It logs event 1239 in the Storage Replica Admin event log channel. -If the RPO time is lower than the configured time, event 1240 is logged. +After exceeding this time, the source server alerts the Health Service on clusters. It logs event +1239 in the Storage Replica Admin event log channel. If the RPO time is lower than the configured +time, event 1240 is logged. ```yaml Type: UInt32 @@ -173,9 +133,10 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml Type: CimSession[] @@ -190,7 +151,8 @@ Accept wildcard characters: False ``` ### -DestinationComputerName -Specifies a single replica host computer NetBIOS name or fully qualified domain name (FQDN) of the destination computer. +Specifies a single replica host computer NetBIOS name or fully qualified domain name (FQDN) of the +destination computer. ```yaml Type: String @@ -205,10 +167,9 @@ Accept wildcard characters: False ``` ### -DestinationLogVolumeName -Specifies a drive letter, mount point path, or volume GUID where Storage Replication creates destination replication logs. -The volume must contain an NTFS-formatted volume or ReFS-formatted volume. -The path must exist. -The path cannot be a mapped drive or UNC path. +Specifies a drive letter, mount point path, or volume GUID where Storage Replication creates +destination replication logs. The volume must contain an NTFS-formatted volume or ReFS-formatted +volume. The path must exist. The path cannot be a mapped drive or UNC path. Storage Replication creates logs in the System Volume Information folder. @@ -255,15 +216,14 @@ Accept wildcard characters: False ``` ### -DestinationVolumeName -Specifies an array of drive letters or mount point paths of partitions for the replica. -The volumes must exist. -The volumes cannot be mapped drives or UNC paths. -You can omit the colon symbol when you specify drive letters. +Specifies an array of drive letters or mount point paths of partitions for the replica. The volumes +must exist. The volumes cannot be mapped drives or UNC paths. You can omit the colon symbol when you +specify drive letters. -This is an ordered list. -The order of volumes determines the order of replication. +This is an ordered list. The order of volumes determines the order of replication. -For instance, to replicate the F: and H: drives on one server to the F: and H: drives of another server, specify the following values: +For instance, to replicate the F: and H: drives on one server to the F: and H: drives of another +server, specify the following values: `-SourceVolumeName "F:","H:" -DestinationVolumeName "F:","H:"` @@ -302,10 +262,10 @@ Accept wildcard characters: False ``` ### -EnableConsistencyGroups -Indicates that consistency groups are enabled for the replication group that contains multiple volumes. -Consistency groups provide write ordering. -This can be important, for example, for replication of application data on multiple volumes. -If you enable consistency groups, it may decrease replication and write Input/Output performance. +Indicates that consistency groups are enabled for the replication group that contains multiple +volumes. Consistency groups provide write ordering. This can be important, for example, for +replication of application data on multiple volumes. If you enable consistency groups, it may +decrease replication and write Input/Output performance. ```yaml Type: SwitchParameter @@ -320,9 +280,9 @@ Accept wildcard characters: False ``` ### -EnableEncryption -Indicates that this partnership should encrypt connections by using SMB AES-128-GCM. -Enabling encryption can protect Storage Replica block transfers from man-in-the-middle interception or reading. -Enabling encryption decreases replication and write Input/Output performance. +Indicates that this partnership should encrypt connections by using SMB AES-128-GCM. Enabling +encryption can protect Storage Replica block transfers from man-in-the-middle interception or +reading. Enabling encryption decreases replication and write Input/Output performance. ```yaml Type: SwitchParameter @@ -352,10 +312,11 @@ Accept wildcard characters: False ``` ### -LogSizeInBytes -Specifies the aggregate size of log files on each server in the replication group for the volumes that are associated with this replication group. -The minimum size 512MB. -You can specify a value by using the Windows PowerShell byte conversion capability, such as 4GB or 3200MB. -A value that is too small may cause decreased replication performance or increased recovery time after an interruption between computers. +Specifies the aggregate size of log files on each server in the replication group for the volumes +that are associated with this replication group. The minimum size 512MB. You can specify a value by +using the Windows PowerShell byte conversion capability, such as 4GB or 3200MB. A value that is too +small may cause decreased replication performance or increased recovery time after an interruption +between computers. ```yaml Type: UInt64 @@ -370,9 +331,9 @@ Accept wildcard characters: False ``` ### -PreventReplication -Indicates that this cmdlet prevent replication from starting immediately. -By default, replication starts automatically at the time that you create the partnership. -To start replication later, use the Sync-SRGroup cmdlet. +Indicates that this cmdlet prevent replication from starting immediately. By default, replication +starts automatically at the time that you create the partnership. To start replication later, use +the Sync-SRGroup cmdlet. ```yaml Type: SwitchParameter @@ -387,13 +348,13 @@ Accept wildcard characters: False ``` ### -ReplicationMode -Specifies the desired mode of replication for this source and destination pair. -The acceptable values for this parameter are: +Specifies the desired mode of replication for this source and destination pair. The acceptable +values for this parameter are: -- Synchronous or 1. -The synchronous mode requires all writes to commit on the destination server and on the source server, which guarantees data integrity between computers. -- Asynchronous or 2. -The asynchronous mode writes to the source server without waiting for the destination server, which allows for replication over high latency, geographic networks. +- Synchronous or 1. The synchronous mode requires all writes to commit on the destination server and + on the source server, which guarantees data integrity between computers. +- Asynchronous or 2. The asynchronous mode writes to the source server without waiting for the + destination server, which allows for replication over high latency, geographic networks. The default value is synchronous. @@ -416,13 +377,18 @@ Accept wildcard characters: False ### -Seeded Indicates that the destination server contains a seeded copy of the data from the source server. -Seeded data is defined as a copy of data from the source server that has a high similarity, such as mostly empty blocks, restoring a recent backup, or shipping cloned copies of disks to the destination server. +Seeded data is defined as a copy of data from the source server that has a high similarity, such as +mostly empty blocks, restoring a recent backup, or shipping cloned copies of disks to the +destination server. -Seeding is most effective when using a previous copy of the storage, such as a split mirror or previously replicated drives, or when the storage is mostly empty and was always empty, such as a recently initialized drive with a newly formatted volume. -Seeding is somewhat effective with data that came from a backup restore or a complete tree copy of data or from copies of very large files. +Seeding is most effective when using a previous copy of the storage, such as a split mirror or +previously replicated drives, or when the storage is mostly empty and was always empty, such as a +recently initialized drive with a newly formatted volume. Seeding is somewhat effective with data +that came from a backup restore or a complete tree copy of data or from copies of very large files. -Seeding is least effective when copying large numbers of small files from some random locations to some other random locations. -Storage Replica automatically uses seeding when it restarts replication after a long outage that wrapped the logs. +Seeding is least effective when copying large numbers of small files from some random locations to +some other random locations. Storage Replica automatically uses seeding when it restarts replication +after a long outage that wrapped the logs. ```yaml Type: SwitchParameter @@ -437,8 +403,8 @@ Accept wildcard characters: False ``` ### -SourceComputerName -Specifies a single replica host computer NetBIOS name or FQDN of the source computer. -The default value is the local computer. +Specifies a single replica host computer NetBIOS name or FQDN of the source computer. The default +value is the local computer. ```yaml Type: String @@ -453,10 +419,9 @@ Accept wildcard characters: False ``` ### -SourceLogVolumeName -Specifies a drive letter, mount point path, or volume GUID where Storage Replication creates source replication logs. -The volume must contain an NTFS-formatted volume or ReFS-formatted volume. -The path must exist. -The path cannot be a mapped drive or UNC path. +Specifies a drive letter, mount point path, or volume GUID where Storage Replication creates source +replication logs. The volume must contain an NTFS-formatted volume or ReFS-formatted volume. The +path must exist. The path cannot be a mapped drive or UNC path. Storage Replication creates logs in the System Volume Information folder. @@ -503,13 +468,11 @@ Accept wildcard characters: False ``` ### -SourceVolumeName -Specifies an array of drive letters or mount point paths of partitions for the replica. -The volumes must exist. -The volumes cannot be mapped drives or UNC paths. +Specifies an array of drive letters or mount point paths of partitions for the replica. The volumes +must exist. The volumes cannot be mapped drives or UNC paths. -This is an ordered list. -The order of volumes determines the order of replication. -For more information, see the *DestinationVolumeName* parameter. +This is an ordered list. The order of volumes determines the order of replication. For more +information, see the **DestinationVolumeName** parameter. ```yaml Type: String[] @@ -524,9 +487,11 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml Type: Int32 @@ -541,7 +506,10 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/docset/winserver2022-ps/storagereplica/Set-SRGroup.md b/docset/winserver2022-ps/storagereplica/Set-SRGroup.md index 61158318f9..c996f27de9 100644 --- a/docset/winserver2022-ps/storagereplica/Set-SRGroup.md +++ b/docset/winserver2022-ps/storagereplica/Set-SRGroup.md @@ -18,13 +18,15 @@ Modifies settings of a replication group. ### AddVolumes (Default) ``` Set-SRGroup [[-ComputerName] ] [-Name] [-AddVolumeName] [-Force] - [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] [] +[-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] +[] ``` ### RemoveVolumes ``` Set-SRGroup [[-ComputerName] ] [-Name] [-Force] [-RemoveVolumeName] - [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] [] +[-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] +[] ``` ### ModifyConfig @@ -36,7 +38,7 @@ Set-SRGroup [[-ComputerName] ] [-Name] [-Force] [[-LogSizeInByt ``` ## DESCRIPTION -The **Set-SRGroup** cmdlet modifies settings of an existing replication group. +The `Set-SRGroup` cmdlet modifies settings of an existing replication group. A replication group contains one or more data volumes and an associated log volume. A replication group is the container for replication. @@ -50,38 +52,39 @@ A replication group is the container for replication. ## EXAMPLES ### Example 1: Add a volume to a replication group -``` -PS C:\>Set-SRGroup -Name "ReplicationGroup01" -AddVolumeName "F:" +```powershell +Set-SRGroup -Name "ReplicationGroup01" -AddVolumeName "F:" ``` -This command adds the F: volume to the existing replication group named ReplicationGroup01 on the local computer. +This command adds the F: volume to the existing replication group named ReplicationGroup01 on the +local computer. ### Example 2: Remove a volume from a replication group -``` -PS C:\>Set-SRGroup -Name "ReplicationGroup01" -RemoveVolumeName "F:" +```powershell +Set-SRGroup -Name "ReplicationGroup01" -RemoveVolumeName "F:" ``` -This command removes the F: volume from the existing replication group ReplicationGroup01 on the local computer. +This command removes the F: volume from the existing replication group ReplicationGroup01 on the +local computer. ### Example 3: Resize volumes in a replication group -``` -PS C:\>Set-SRGroup -Name "ReplicationGroup01" -AllowVolumeResize $True +```powershell +Set-SRGroup -Name "ReplicationGroup01" -AllowVolumeResize $True ``` -This command lets you resize volumes in the replication group named ReplicationGroup01 on the local computer. -By default, the Storage Replica driver prevents volume resizes in order to protect from block mismatches. -To grow a volume, enable this mode on both resource groups, increase the size of the volume on both servers to be the same size, and then disable this mode. +This command lets you resize volumes in the replication group named ReplicationGroup01 on the local +computer. By default, the Storage Replica driver prevents volume resizes in order to protect from +block mismatches. To grow a volume, enable this mode on both resource groups, increase the size of +the volume on both servers to be the same size, and then disable this mode. ## PARAMETERS ### -AddVolumeName -Specifies an array of drive letters or mount point paths of partitions for the replica to add to the group. -The volumes must exist. -The volumes cannot be mapped drives or UNC paths. +Specifies an array of drive letters or mount point paths of partitions for the replica to add to the +group. The volumes must exist. The volumes cannot be mapped drives or UNC paths. -This is an ordered list. -The order of volumes determines the order of replication. -For more information, see the *DestinationVolumeName* parameter of the New-SRPartnership cmdlet. +This is an ordered list. The order of volumes determines the order of replication. For more +information, see the *DestinationVolumeName* parameter of the New-SRPartnership cmdlet. ```yaml Type: String[] @@ -111,7 +114,8 @@ Accept wildcard characters: False ``` ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. ```yaml Type: SwitchParameter @@ -126,9 +130,10 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml Type: CimSession[] @@ -158,8 +163,8 @@ Accept wildcard characters: False ``` ### -ComputerName -Specifies a single replica host computer NetBIOS name or fully qualified domain name (FQDN) of a computer. -The default value is the local computer. +Specifies a single replica host computer NetBIOS name or fully qualified domain name (FQDN) of a +computer. The default value is the local computer. ```yaml Type: String @@ -204,9 +209,9 @@ Accept wildcard characters: False ``` ### -Encryption -Indicates this partnership should encrypt connections by using SMB AES-128-GCM. -Enabling encryption can protect Storage Replica block transfers from man-in-the-middle interception or reading. -Enabling encryption decreases performance. +Indicates this partnership should encrypt connections by using SMB AES-128-GCM. Enabling encryption +can protect Storage Replica block transfers from man-in-the-middle interception or reading. Enabling +encryption decreases performance. ```yaml Type: Boolean @@ -236,11 +241,12 @@ Accept wildcard characters: False ``` ### -LogSizeInBytes -Specifies the aggregate size of log files on each server in the replication group for the volumes that are associated with this replication group. -The minimum size 512MB. -You can specify a value by using the Windows PowerShell byte conversion capability, such as 4GB or 3200MB. +Specifies the aggregate size of log files on each server in the replication group for the volumes +that are associated with this replication group. The minimum size 512MB. You can specify a value by +using the Windows PowerShell byte conversion capability, such as 4GB or 3200MB. -A value that is too small may cause decreased replication performance or increased recovery time after an interruption between computers. +A value that is too small may cause decreased replication performance or increased recovery time +after an interruption between computers. ```yaml Type: UInt64 @@ -270,16 +276,15 @@ Accept wildcard characters: False ``` ### -RemoveVolumeName -Specifies an array of drive letters or mount point paths of partitions for the replica to remove from the group. -The volumes must exist. -The volumes cannot be mapped drives or UNC paths. +Specifies an array of drive letters or mount point paths of partitions for the replica to remove +from the group. The volumes must exist. The volumes cannot be mapped drives or UNC paths. -This is an ordered list. -The order of volumes determines the order of replication. -For more information, see the *DestinationVolumeName* parameter of the New-SRPartnership cmdlet. +This is an ordered list. The order of volumes determines the order of replication. For more +information, see the **DestinationVolumeName** parameter of the `New-SRPartnership` cmdlet. -If there is a partnership already configured, before you change this replication group, you must remove the partnership by using the Set-SRPartnership cmdlet. -Then you must remove the same volumes from the previously partnered replication group. +If there is a partnership already configured, before you change this replication group, you must +remove the partnership by using the `Set-SRPartnership` cmdlet. Then you must remove the same +volumes from the previously partnered replication group. ```yaml Type: String[] @@ -294,18 +299,17 @@ Accept wildcard characters: False ``` ### -ReplicationMode -Specifies the desired mode of replication for this source and destination pair. -The acceptable values for this parameter are: +Specifies the desired mode of replication for this source and destination pair. The acceptable +values for this parameter are: -- Synchronous or 1. -The synchronous mode requires all writes to commit on the destination server and commit on the source server, which guarantees data integrity between computers. -- Asynchronous or 2. -The asynchronous mode writes to the source server without waiting for the source server, which allows for replication over high latency, geographic networks. +- Synchronous or 1. The synchronous mode requires all writes to commit on the destination server and + commit on the source server, which guarantees data integrity between computers. +- Asynchronous or 2. The asynchronous mode writes to the source server without waiting for the + source server, which allows for replication over high latency, geographic networks. -The default value is synchronous. -The default asynchronous recovery point alert time is 5 minutes. -You can modify it by using the Set-SRPartnership cmdlet. -The alert time has no effect on replication behavior, only on reporting. +The default value is synchronous. The default asynchronous recovery point alert time is 5 minutes. +You can modify it by using the Set-SRPartnership cmdlet. The alert time has no effect on replication +behavior, only on reporting. ```yaml Type: ReplicationMode @@ -321,9 +325,11 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml Type: Int32 @@ -354,7 +360,10 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/docset/winserver2022-ps/storagereplica/Set-SRPartnership.md b/docset/winserver2022-ps/storagereplica/Set-SRPartnership.md index e7d4e29a45..990b6bde5d 100644 --- a/docset/winserver2022-ps/storagereplica/Set-SRPartnership.md +++ b/docset/winserver2022-ps/storagereplica/Set-SRPartnership.md @@ -18,30 +18,32 @@ Modifies a replication partnership between two replication groups. ### AddVolumes (Default) ``` Set-SRPartnership [[-SourceComputerName] ] [-SourceRGName] - [-SourceAddVolumePartnership] [-DestinationComputerName] [-DestinationRGName] - [-DestinationAddVolumePartnership] [-Seeded] [-Force] [-CimSession ] - [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] [] +[-SourceAddVolumePartnership] [-DestinationComputerName] [-DestinationRGName] + [-DestinationAddVolumePartnership] [-Seeded] [-Force] +[-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] +[] ``` ### ModifySettings ``` -Set-SRPartnership [[-SourceComputerName] ] [-SourceRGName] [-DestinationComputerName] - [-DestinationRGName] [[-ReplicationMode] ] [[-LogSizeInBytes] ] - [[-AsyncRPO] ] [[-Encryption] ] [[-Compression] ] [-CimSession ] - [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] [] +Set-SRPartnership [[-SourceComputerName] ] [-SourceRGName] +[-DestinationComputerName] [-DestinationRGName] [[-ReplicationMode] +] [[-LogSizeInBytes] ] [[-AsyncRPO] ] [[-Encryption] ] +[[-Compression] ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] +[-Confirm] [] ``` ### ModifyPartnership ``` -Set-SRPartnership [-SourceRGName] [-DestinationComputerName] [-DestinationRGName] - [-Force] [[-NewSourceComputerName] ] [-CimSession ] [-ThrottleLimit ] [-AsJob] - [-WhatIf] [-Confirm] [] +Set-SRPartnership [-SourceRGName] [-DestinationComputerName] [-DestinationRGName] + [-Force] [[-NewSourceComputerName] ] [-CimSession ] +[-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Set-SRPartnership** cmdlet modifies a replication partnership between two existing replication groups. -You can use this cmdlet to add replicated volumes. -You can also change the direction of replication which makes a source volume into a destination volume. +The `Set-SRPartnership` cmdlet modifies a replication partnership between two existing replication +groups. You can use this cmdlet to add replicated volumes. You can also change the direction of +replication which makes a source volume into a destination volume. > [!NOTE] > The **Compression** parameter is currently in PREVIEW beginning with TODO: 2022-08 @@ -53,138 +55,89 @@ You can also change the direction of replication which makes a source volume int ## EXAMPLES ### Example 1: Reverse replication direction -``` -PS C:\>Set-SRPartnership -NewSourceComputerName "SR-SRV06" -SourceRGName "ReplicationGroup02" -DestinationComputerName "SR-SRV05" -DestinationRGName "ReplicationGroup01" -Confirm -Are you sure you want to perform this action? -Performing operation "Set Source Replication Group" to replication group ReplicationGroup02. This may -result in data loss. Are you sure you want to continue? -[Y] Yes [A] Yes to All [N] No [L] No to All [S] Suspend [?] Help (default is "Y"): -``` - -This command changes the replication direction by an administrator after a disaster has occurred. -The previous source replication group named ReplicationGroup01 on previous source server SR-SRV05 becomes the new destination for ReplicationGroup02 on SR-SRV06. -Replication is now reversed. -You must direct any applications or users attempting to read or write against SR-SRV05 to SR-SRV06. +```powershell +$Parameters = @{ + NewSourceComputerName = 'SR-SRV06' + SourceRGName = 'ReplicationGroup02' + DestinationComputerName = 'SR-SRV05' + DestinationRGName = 'ReplicationGroup01' + Confirm = $False +} +Set-SRPartnership @Parameters +``` + +This command changes the replication direction by an administrator after a disaster has occurred +without user confirmation. The previous source replication group named ReplicationGroup01 on +previous source server SR-SRV05 becomes the new destination for ReplicationGroup02 on SR-SRV06. +Replication is now reversed. You must direct any applications or users attempting to read or write +against SR-SRV05 to SR-SRV06. + +This example uses splatting to pass parameter values from the `$Parameters` variable to the command. +Learn more about [Splatting](/powershell/module/microsoft.powershell.core/about/about_splatting). ### Example 2: Change size of log +```powershell +$Parameters = @{ + SourceComputerName = 'SR-SRV05' + SourceRGName = 'ReplicationGroup01' + DestinationComputerName = 'SR-SRV06' + DestinationRGName = 'ReplicationGroup02' + LogSizeInBytes = '32GB' +} +Set-SRPartnership @Parameters +Get-SRPartnership | Get-SRGroup ``` -PS C:\>Set-SRPartnership -SourceComputerName "SR-SRV05" -SourceRGName "ReplicationGroup01" -DestinationComputerName "SR-SRV06" -DestinationRGName "ReplicationGroup02" -LogSizeInBytes 32GB -PS C:\> Get-SRPartnership | Get-SRGroup -AllowVolumeResize : False -AsyncRPO : 30 -ComputerName : SR-SRV05 -Description : -Id : 74f2254c-a910-4780-98b4-ea4ea049e69b -IsAutoFailover : -IsCluster : False -IsEncrypted : False -IsInPartnership : True -IsPrimary : True -IsSuspended : False -IsWriteConsistency : False -LastInSyncTime : -LogSizeInBytes : 34359738368 -LogVolume : e:\ -Name : ReplicationGroup01 -NumOfReplicas : 1 -Partitions : {bc49f059-4f78-464d-b88a-3a092108816e} -Replicas : {MSFT_WvrReplica (PartitionId = - "bc49f059-4f78-464d-b88a-3a092108816e")} -ReplicationMode : Asynchronous -ReplicationStatus : ContinuouslyReplicating_InRPO -PSComputerName : - -AllowVolumeResize : False -AsyncRPO : 30 -ComputerName : SR-SRV06 -Description : -Id : 291cb733-b753-469d-8092-5b54d4a6752d -IsAutoFailover : -IsCluster : False -IsEncrypted : False -IsInPartnership : True -IsPrimary : False -IsSuspended : False -IsWriteConsistency : False -LastInSyncTime : 10/11/2016 1:48:04 PM -LogSizeInBytes : 34359738368 -LogVolume : e:\ -Name : ReplicationGroup02 -NumOfReplicas : 1 -Partitions : {92306c9f-655c-48e2-a28f-f08010514161} -Replicas : {MSFT_WvrReplica (PartitionId = - "92306c9f-655c-48e2-a28f-f08010514161")} -ReplicationMode : Asynchronous -ReplicationStatus : ContinuouslyReplicating -PSComputerName : -``` -This command changes the log from its default size of 8GB to 32GB, on the partnership between SR-SRV05 and SR-SRV06. +This command changes the log from its default size of 8GB to 32GB, on the partnership between +SR-SRV05 and SR-SRV06. + +This example uses splatting to pass parameter values from the `$Parameters` variable to the command. +Learn more about [Splatting](/powershell/module/microsoft.powershell.core/about/about_splatting). ### Example 3: Change to asynchronous mode +```powershell +$Parameters = @{ + SourceComputerName = 'SR-SRV05' + SourceRGName = 'ReplicationGroup01' + ReplicationMode = 'Asynchronous' + DestinationComputerName = 'SR-SRV06' + DestinationRGName = 'ReplicationGroup02' +} +Set-SRPartnership @Parameters ``` -PS C:\>Set-SRPartnership -SourceComputerName "SR-SRV05" -SourceRGName "ReplicationGroup01" -ReplicationMode Asynchronous -DestinationComputerName "SR-SRV06" -DestinationRGName "ReplicationGroup02" -WARNING: The replication group ReplicationGroup01 is the source. Modifying replication mode on source -replication group will not affect the current replication partnership. -``` - -This command changes the replication mode from synchronous to asynchronous. -The warning is generated by the setting being applied to both replication groups. -### Example 4: Display replicas after a change -``` -PS C:\>Set-SRPartnership -SourceComputerName "SR-SRV05" -SourceRGName "ReplicationGroup01" -SourceAddVolumePartnership "F:","G:" -DestinationComputerName "SR-SRV06" -DestinationRGName "ReplicationGroup02" -DestinationAddVolumePartnership "F:","G:" -PS C:\> (Get-SRGroup).replicas -CurrentLsn : 1 -DataVolume : D:\ -LastInSyncTime : -LastKnownPrimaryLsn : 1 -LastOutOfSyncTime : -NumOfBytesRecovered : 0 -NumOfBytesRemaining : 0 -PartitionId : bc49f059-4f78-464d-b88a-3a092108816e -PartitionSize : 34730934272 -ReplicationMode : Synchronous -ReplicationStatus : ContinuouslyReplicating -PSComputerName : - -CurrentLsn : 1 -DataVolume : F:\ -LastInSyncTime : -LastKnownPrimaryLsn : 1 -LastOutOfSyncTime : -NumOfBytesRecovered : 0 -NumOfBytesRemaining : 0 -PartitionId : 51c97fb1-b280-452c-96b7-442f400889da -PartitionSize : 13759414272 -ReplicationMode : Synchronous -ReplicationStatus : InitialBlockCopy -PSComputerName : - -CurrentLsn : 1 -DataVolume : G:\ -LastInSyncTime : -LastKnownPrimaryLsn : 1 -LastOutOfSyncTime : -NumOfBytesRecovered : 0 -NumOfBytesRemaining : 0 -PartitionId : 97a3d483-8766-49a9-be54-5f1e52aaba51 -PartitionSize : 20091764736 -ReplicationMode : Synchronous -ReplicationStatus : InitialBlockCopy -PSComputerName : -``` +This command changes the replication mode from synchronous to asynchronous. A warning is generated +by the setting being applied to both replication groups. -The first command changes the partnership for the servers named SR-SRV05 and SR-SRV06. +This example uses splatting to pass parameter values from the `$Parameters` variable to the command. +Learn more about [Splatting](/powershell/module/microsoft.powershell.core/about/about_splatting). -The second command gets all replication groups for the current computer by using the Get-SRGroup cmdlet. -The command displays all the replicas by using standard Windows PowerShell syntax. +### Example 4: Display replicas after a change +```powershell +$Parameters = @{ + SourceComputerName = 'SR-SRV05' + SourceRGName = 'ReplicationGroup01' + SourceAddVolumePartnership = 'F:','G:' + DestinationComputerName = 'SR-SRV06' + DestinationRGName = 'ReplicationGroup02' + DestinationAddVolumePartnership = 'F:','G:' +} +Set-SRPartnership @Parameters +(Get-SRGroup).replicas +``` + +The first command changes the partnership for the servers named SR-SRV05 and SR-SRV06.The second +command gets all replication groups for the current computer by using the Get-SRGroup cmdlet. The +command displays all the replicas by using standard Windows PowerShell syntax. + +This example uses splatting to pass parameter values from the `$Parameters` variable to the command. +Learn more about [Splatting](/powershell/module/microsoft.powershell.core/about/about_splatting). ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. ```yaml Type: SwitchParameter @@ -199,15 +152,13 @@ Accept wildcard characters: False ``` ### -AsyncRPO -Specifies the maximum difference in time that data for an asynchronous partnership can be different between source and destination. -This is a Recovery Point Objective. -The default value is 30 seconds. +Specifies the maximum difference in time that data for an asynchronous partnership can be different +between source and destination. This is a Recovery Point Objective. The default value is 30 seconds. -After this time is exceeded, the source server alerts the Health Service on clusters. -It logs event 1239 in the Storage Replica Admin event log channel. -If the RPO time is lower than the configured time, event 1240 is logged. -Changing this value modifies monitoring and logging. -It does not affect replication or Input/Output. +After this time is exceeded, the source server alerts the Health Service on clusters. It logs event +1239 in the Storage Replica Admin event log channel. If the RPO time is lower than the configured +time, event 1240 is logged. Changing this value modifies monitoring and logging. It does not affect +replication or Input/Output. ```yaml Type: UInt32 @@ -222,9 +173,10 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml Type: CimSession[] @@ -269,12 +221,11 @@ Accept wildcard characters: False ``` ### -DestinationAddVolumePartnership -Specifies an array of drive letters or mount point paths of partitions to add to the existing replication group. -You cannot specify paths already added to the replication group. +Specifies an array of drive letters or mount point paths of partitions to add to the existing +replication group. You cannot specify paths already added to the replication group. -This list is ordered. -The order of volumes determines the order of replication. -For more information, see the *DestinationVolumeName* parameter of the New-SRPartnership cmdlet. +This list is ordered. The order of volumes determines the order of replication. For more +information, see the **DestinationVolumeName** parameter of the `New-SRPartnership` cmdlet. We do not recommend replicating different drive letters or mount point paths. The practice can cause application failures because of stored settings after a failover occurs. @@ -292,7 +243,8 @@ Accept wildcard characters: False ``` ### -DestinationComputerName -Specifies a single replica host computer NetBIOS name or fully qualified domain name (FQDN) of the destination computer. +Specifies a single replica host computer NetBIOS name or fully qualified domain name (FQDN) of the +destination computer. ```yaml Type: String @@ -323,8 +275,8 @@ Accept wildcard characters: False ### -Encryption Indicates that the connections on this partnership should be encrypted by using SMB AES-128-GCM. -Enabling encryption can protect Storage Replica block transfers from man-in-the-middle interception or reading. -Enabling encryption can decrease replication and write Input/Output performance. +Enabling encryption can protect Storage Replica block transfers from man-in-the-middle interception +or reading. Enabling encryption can decrease replication and write Input/Output performance. ```yaml Type: Boolean @@ -354,10 +306,11 @@ Accept wildcard characters: False ``` ### -LogSizeInBytes -Specifies the aggregate size of log files on each server in the replication group for the volumes that are associated with this replication group. -The minimum size 512MB. -You can specify a value by using the Windows PowerShell byte conversion capability, such as 4GB or 3200MB. -A value that is too small may cause decreased replication performance or increased recovery time after an interruption between computers. +Specifies the aggregate size of log files on each server in the replication group for the volumes +that are associated with this replication group. The minimum size 512MB. You can specify a value by +using the Windows PowerShell byte conversion capability, such as 4GB or 3200MB. A value that is too +small may cause decreased replication performance or increased recovery time after an interruption +between computers. ```yaml Type: UInt64 @@ -372,14 +325,15 @@ Accept wildcard characters: False ``` ### -NewSourceComputerName -Specifies the new source of replication. -This parameter changes the direction of replication for the source computer and the source replication group. -When changed, replication stops originating on the current source and moves to the new source. +Specifies the new source of replication. This parameter changes the direction of replication for the +source computer and the source replication group. When changed, replication stops originating on the +current source and moves to the new source. -This operation is very likely to disrupt access to data. -There is a time when neither volumes are writable and when clients and applications might still access the previously writable source volume. -You may also have to reconfigure applications and repoint users to this new location, using technologies such as DFS Namespaces. -When switching asynchronously-replicated volumes, to avoid data loss, you must first make sure that user and application data is quiescent. +This operation is very likely to disrupt access to data. There is a time when neither volumes are +writable and when clients and applications might still access the previously writable source volume. +You may also have to reconfigure applications and repoint users to this new location, using +technologies such as DFS Namespaces. When switching asynchronously-replicated volumes, to avoid data +loss, you must first make sure that user and application data is quiescent. ```yaml Type: String @@ -394,18 +348,17 @@ Accept wildcard characters: False ``` ### -ReplicationMode -Specifies the desired mode of replication for this source and destination pair. -The acceptable values for this parameter are: +Specifies the desired mode of replication for this source and destination pair. The acceptable +values for this parameter are: -- Synchronous or 1. -The synchronous mode requires all writes to commit on the destination server and commit on the source server, which guarantees data integrity between computers. -- Asynchronous or 2. -The asynchronous mode writes to the source server without waiting for the server, which allows for replication over high latency, geographic networks. +- Synchronous or 1. The synchronous mode requires all writes to commit on the destination server and + commit on the source server, which guarantees data integrity between computers. +- Asynchronous or 2. The asynchronous mode writes to the source server without waiting for the + server, which allows for replication over high latency, geographic networks. -The default value is synchronous. -The default asynchronous recovery point alert time is 30 seconds. -You can modify it by using this cmdlet. -The alert time has no effect on replication behavior, only on reporting. +The default value is synchronous. The default asynchronous recovery point alert time is 30 seconds. +You can modify it by using this cmdlet. The alert time has no effect on replication behavior, only +on reporting. ```yaml Type: ReplicationMode @@ -422,13 +375,18 @@ Accept wildcard characters: False ### -Seeded Indicates that the destination server contains a seeded copy of the data from the source server. -Seeded data is defined as a copy of data from the source server that has a high similarity, such as mostly empty blocks, restoring a recent backup, or shipping cloned copies of disks to the destination server. +Seeded data is defined as a copy of data from the source server that has a high similarity, such as +mostly empty blocks, restoring a recent backup, or shipping cloned copies of disks to the +destination server. -Seeding is most effective when using a previous copy of the storage, such as a split mirror or previously replicated drives, or when the storage is mostly empty and was always empty, such as a recently initialized drive with a newly formatted volume. -Seeding is somewhat effective with data that came from a backup restore or a complete tree copy of data or from copies of very large files. +Seeding is most effective when using a previous copy of the storage, such as a split mirror or +previously replicated drives, or when the storage is mostly empty and was always empty, such as a +recently initialized drive with a newly formatted volume. Seeding is somewhat effective with data +that came from a backup restore or a complete tree copy of data or from copies of very large files. -Seeding is least effective when copying many small files from some random locations to some other random locations. -Storage Replica automatically uses seeding when it restarts replication after a long outage that wrapped the logs. +Seeding is least effective when copying many small files from some random locations to some other +random locations. Storage Replica automatically uses seeding when it restarts replication after a +long outage that wrapped the logs. ```yaml Type: SwitchParameter @@ -443,12 +401,11 @@ Accept wildcard characters: False ``` ### -SourceAddVolumePartnership -Specifies an array of drive letters or mount point paths of partitions to add to the existing replication group. -You cannot specify paths already added to the replication group. +Specifies an array of drive letters or mount point paths of partitions to add to the existing +replication group. You cannot specify paths already added to the replication group. -This is an ordered list. -The order of volumes determines the order of replication. -For more information, see the *DestinationVolumeName* parameter of the New-SRPartnership cmdlet. +This is an ordered list. The order of volumes determines the order of replication. For more +information, see the **DestinationVolumeName** parameter of the `New-SRPartnership` cmdlet. ```yaml Type: String[] @@ -506,9 +463,11 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml Type: Int32 @@ -539,7 +498,10 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS From 45b5e4ba308f76ce389cf69922020ad1a74bf533 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Tue, 13 Sep 2022 23:52:26 +0100 Subject: [PATCH 264/965] Editorial review --- docset/winserver2022-ps/storagereplica/New-SRGroup.md | 2 +- docset/winserver2022-ps/storagereplica/Set-SRGroup.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/storagereplica/New-SRGroup.md b/docset/winserver2022-ps/storagereplica/New-SRGroup.md index d40f26847c..a66fd8caaf 100644 --- a/docset/winserver2022-ps/storagereplica/New-SRGroup.md +++ b/docset/winserver2022-ps/storagereplica/New-SRGroup.md @@ -60,7 +60,7 @@ New-SRGroup @Parameters This command creates a replication group for server named SR-SRV05. The command specifies the replicated volume and the log volume. The command also specifies a custom log size in GB and enables -replication traffic encryption. Replication does not start until you run **New-SRPartnership**. +replication traffic encryption. Replication does not start until you run `New-SRPartnership`. This example uses splatting to pass parameter values from the `$Parameters` variable to the command. Learn more about [Splatting](/powershell/module/microsoft.powershell.core/about/about_splatting). diff --git a/docset/winserver2022-ps/storagereplica/Set-SRGroup.md b/docset/winserver2022-ps/storagereplica/Set-SRGroup.md index c996f27de9..15ed9d24ea 100644 --- a/docset/winserver2022-ps/storagereplica/Set-SRGroup.md +++ b/docset/winserver2022-ps/storagereplica/Set-SRGroup.md @@ -84,7 +84,7 @@ Specifies an array of drive letters or mount point paths of partitions for the r group. The volumes must exist. The volumes cannot be mapped drives or UNC paths. This is an ordered list. The order of volumes determines the order of replication. For more -information, see the *DestinationVolumeName* parameter of the New-SRPartnership cmdlet. +information, see the **DestinationVolumeName** parameter of the New-SRPartnership cmdlet. ```yaml Type: String[] From 7c3087a23c8698f2991ce133d9b9bd5df9f7e6fa Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Wed, 14 Sep 2022 13:22:53 +0100 Subject: [PATCH 265/965] Editorial updates --- .../storagereplica/New-SRGroup.md | 4 ++-- .../storagereplica/New-SRPartnership.md | 21 +++++++++---------- .../storagereplica/Set-SRGroup.md | 4 ++-- .../storagereplica/Set-SRPartnership.md | 14 ++++++------- 4 files changed, 21 insertions(+), 22 deletions(-) diff --git a/docset/winserver2022-ps/storagereplica/New-SRGroup.md b/docset/winserver2022-ps/storagereplica/New-SRGroup.md index a66fd8caaf..03ff37c5fc 100644 --- a/docset/winserver2022-ps/storagereplica/New-SRGroup.md +++ b/docset/winserver2022-ps/storagereplica/New-SRGroup.md @@ -42,7 +42,7 @@ New-SRGroup -ComputerName "SR-SRV05" -Name "ReplicationGroup01" -VolumeName "D:" This command creates a replication group for server named SR-SRV05. The command specifies the replicated volume and the log volume. Because this command does not specify other parameters, the -replication group uses default values. Replication does not start until you run the +replication group uses default values. Replication will not start until you run the `New-SRPartnership` cmdlet. ### Example 2: Create a replication group that uses custom properties @@ -60,7 +60,7 @@ New-SRGroup @Parameters This command creates a replication group for server named SR-SRV05. The command specifies the replicated volume and the log volume. The command also specifies a custom log size in GB and enables -replication traffic encryption. Replication does not start until you run `New-SRPartnership`. +replication traffic encryption. Replication will not start until you run `New-SRPartnership`. This example uses splatting to pass parameter values from the `$Parameters` variable to the command. Learn more about [Splatting](/powershell/module/microsoft.powershell.core/about/about_splatting). diff --git a/docset/winserver2022-ps/storagereplica/New-SRPartnership.md b/docset/winserver2022-ps/storagereplica/New-SRPartnership.md index 6a7de6333e..a13d5512b3 100644 --- a/docset/winserver2022-ps/storagereplica/New-SRPartnership.md +++ b/docset/winserver2022-ps/storagereplica/New-SRPartnership.md @@ -64,13 +64,12 @@ $Parameters = @{ New-SRPartnership @Parameters ``` -This command creates a replication topology between servers SR-SRV05 and SR-SRV06. -The SR-SRV05 server is the source and SR-SRV06 is the destination for the D: volume. -The E: volume contains the logs for this partnership. -The log has the default value of 8GB. -The replication mode has the default value of synchronous. -The command does not specify seeding, encryption, and consistency groups. -Replication starts immediately. +This command creates a replication topology between servers SR-SRV05 and SR-SRV06. The SR-SRV05 +server is the source and SR-SRV06 is the destination, with volume D: used as both the source and +destination. The E: volume contains the logs for this partnership. The log has the default value of +8GB. As the replication mode has not been specified, it will use the default value of synchronous. +The command does not specify seeding, encryption, and consistency groups. Replication will start +immediately. This example uses splatting to pass parameter values from the `$Parameters` variable to the command. Learn more about [Splatting](/powershell/module/microsoft.powershell.core/about/about_splatting). @@ -88,7 +87,8 @@ New-SRGroup -ComputerName "SR-SRV06" -Name "ReplicationGroup02" -VolumeName "D:" New-SRPartnership @Parameters" ``` -This example creates two replication groups separately and then pairs those groups. +This example creates two replication groups separately and then creates a partnership between those +groups. The example uses splatting to pass parameter values from the `$Parameters` variable to the command. Learn more about [Splatting](/powershell/module/microsoft.powershell.core/about/about_splatting). @@ -358,9 +358,8 @@ values for this parameter are: The default value is synchronous. -The default asynchronous recovery point alert time is 5 minutes. -You can modify it by using the Set-SRPartnership cmdlet. -The alert time has no effect on replication behavior, only on reporting. +The default asynchronous recovery point alert time is 5 minutes. You can modify it by using the +Set-SRPartnership cmdlet. The alert time has no effect on replication behavior, only on reporting. ```yaml Type: ReplicationMode diff --git a/docset/winserver2022-ps/storagereplica/Set-SRGroup.md b/docset/winserver2022-ps/storagereplica/Set-SRGroup.md index 15ed9d24ea..27cac887c3 100644 --- a/docset/winserver2022-ps/storagereplica/Set-SRGroup.md +++ b/docset/winserver2022-ps/storagereplica/Set-SRGroup.md @@ -74,8 +74,8 @@ Set-SRGroup -Name "ReplicationGroup01" -AllowVolumeResize $True This command lets you resize volumes in the replication group named ReplicationGroup01 on the local computer. By default, the Storage Replica driver prevents volume resizes in order to protect from -block mismatches. To grow a volume, enable this mode on both resource groups, increase the size of -the volume on both servers to be the same size, and then disable this mode. +block mismatches. To grow a volume, enable the allow volume resize mode on both resource groups, +increase the size of the volume on both servers to be the same size, then disable this mode. ## PARAMETERS diff --git a/docset/winserver2022-ps/storagereplica/Set-SRPartnership.md b/docset/winserver2022-ps/storagereplica/Set-SRPartnership.md index 990b6bde5d..5409d82734 100644 --- a/docset/winserver2022-ps/storagereplica/Set-SRPartnership.md +++ b/docset/winserver2022-ps/storagereplica/Set-SRPartnership.md @@ -66,9 +66,9 @@ $Parameters = @{ Set-SRPartnership @Parameters ``` -This command changes the replication direction by an administrator after a disaster has occurred -without user confirmation. The previous source replication group named ReplicationGroup01 on -previous source server SR-SRV05 becomes the new destination for ReplicationGroup02 on SR-SRV06. +This example changes the replication direction without user confirmation, for example after a +disaster recovery event has occurred. The previous source replication group named ReplicationGroup01 +on previous source server SR-SRV05 becomes the new destination for ReplicationGroup02 on SR-SRV06. Replication is now reversed. You must direct any applications or users attempting to read or write against SR-SRV05 to SR-SRV06. @@ -88,7 +88,7 @@ Set-SRPartnership @Parameters Get-SRPartnership | Get-SRGroup ``` -This command changes the log from its default size of 8GB to 32GB, on the partnership between +The example changes the log from its default size of 8GB to 32GB, for the partnership between SR-SRV05 and SR-SRV06. This example uses splatting to pass parameter values from the `$Parameters` variable to the command. @@ -106,8 +106,8 @@ $Parameters = @{ Set-SRPartnership @Parameters ``` -This command changes the replication mode from synchronous to asynchronous. A warning is generated -by the setting being applied to both replication groups. +This example changes the replication mode from synchronous to asynchronous. A warning will be +generated by the setting being applied to both replication groups. This example uses splatting to pass parameter values from the `$Parameters` variable to the command. Learn more about [Splatting](/powershell/module/microsoft.powershell.core/about/about_splatting). @@ -128,7 +128,7 @@ Set-SRPartnership @Parameters The first command changes the partnership for the servers named SR-SRV05 and SR-SRV06.The second command gets all replication groups for the current computer by using the Get-SRGroup cmdlet. The -command displays all the replicas by using standard Windows PowerShell syntax. +command displays all the replicas. This example uses splatting to pass parameter values from the `$Parameters` variable to the command. Learn more about [Splatting](/powershell/module/microsoft.powershell.core/about/about_splatting). From 6f344766bec0e6d235071d081bd0b57aa4bd91fe Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Thu, 15 Sep 2022 16:59:18 +0100 Subject: [PATCH 266/965] Updated compression parameters and alert note --- .../storagereplica/New-SRGroup.md | 20 +++++++++++-------- .../storagereplica/New-SRPartnership.md | 19 +++++++++++------- .../storagereplica/Set-SRGroup.md | 19 +++++++++++------- .../storagereplica/Set-SRPartnership.md | 19 +++++++++++------- 4 files changed, 48 insertions(+), 29 deletions(-) diff --git a/docset/winserver2022-ps/storagereplica/New-SRGroup.md b/docset/winserver2022-ps/storagereplica/New-SRGroup.md index 03ff37c5fc..d16b93eddb 100644 --- a/docset/winserver2022-ps/storagereplica/New-SRGroup.md +++ b/docset/winserver2022-ps/storagereplica/New-SRGroup.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica -ms.date: 12/20/2016 +ms.date: 10/04/2022 online version: https://learn.microsoft.com/powershell/module/storagereplica/new-srgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-SRGroup @@ -27,11 +27,11 @@ The `New-SRGroup` cmdlet creates a replication group. A replication group contai data volumes and an associated log volume. A replication group is the container for replication. > [!NOTE] -> The **EnableCompression** parameter is currently in PREVIEW beginning with TODO: 2022-08 -> Cumulative Update for Microsoft server operating system version 21H2 for x64-based Systems -> ([KB5016693](https://support.microsoft.com/help/5016693)). Some information relates to prerelease -> product that may be substantially modified before it's released. Microsoft makes no warranties, -> express or implied, with respect to the information provided here. +> The **Compression** parameter is only available in +> [Azure Stack HCI version 22H2](https://azure.microsoft.com/en-us/updates/public-preview-azure-stack-hci-version-22h2/) or later, +> and Windows Server Datacenter: Azure Edition beginning with the 2022-09 Cumulative Update for Microsoft +> server operating system version 21H2 for x64-based Systems +> ([KB5017381](https://support.microsoft.com/help/5017381)). ## EXAMPLES @@ -133,8 +133,12 @@ Accept wildcard characters: False ``` ### -EnableCompression -Indicates that the connections on this partnership should use compression. - +Indicates that this Storage Replica group should use SMB compression for data transfer. This +parameter only applies to +[Azure Stack HCI version 22H2](https://azure.microsoft.com/en-us/updates/public-preview-azure-stack-hci-version-22h2/) +or later, and Windows Server Datacenter: Azure Edition beginning with the 2022-09 Cumulative +Update for Microsoft server operating system version 21H2 for x64-based Systems +([KB5017381](https://support.microsoft.com/help/5017381)). ```yaml Type: SwitchParameter Parameter Sets: (All) diff --git a/docset/winserver2022-ps/storagereplica/New-SRPartnership.md b/docset/winserver2022-ps/storagereplica/New-SRPartnership.md index a13d5512b3..18fe7a75f4 100644 --- a/docset/winserver2022-ps/storagereplica/New-SRPartnership.md +++ b/docset/winserver2022-ps/storagereplica/New-SRPartnership.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica -ms.date: 12/20/2016 +ms.date: 10/04/2022 online version: https://learn.microsoft.com/powershell/module/storagereplica/new-srpartnership?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-SRPartnership @@ -41,11 +41,11 @@ replication groups. This cmdlet can create the complete replication topology. It together separately created replication groups. > [!NOTE] -> The **EnableCompression** parameter is currently in PREVIEW beginning with TODO: 2022-08 -> Cumulative Update for Microsoft server operating system version 21H2 for x64-based Systems -> ([KB5016693](https://support.microsoft.com/help/5016693)). Some information relates to prerelease -> product that may be substantially modified before it's released. Microsoft makes no warranties, -> express or implied, with respect to the information provided here. +> The **Compression** parameter is only available in +> [Azure Stack HCI version 22H2](https://azure.microsoft.com/en-us/updates/public-preview-azure-stack-hci-version-22h2/) or later, +> and Windows Server Datacenter: Azure Edition beginning with the 2022-09 Cumulative Update for Microsoft +> server operating system version 21H2 for x64-based Systems +> ([KB5017381](https://support.microsoft.com/help/5017381)). ## EXAMPLES @@ -247,7 +247,12 @@ Accept wildcard characters: False ``` ### -EnableCompression -Indicates that the connections on this partnership should use compression. +Indicates that the connections in this partnership should use SMB compression for data transfer. +This parameter only applies to +[Azure Stack HCI version 22H2](https://azure.microsoft.com/en-us/updates/public-preview-azure-stack-hci-version-22h2/) +or later, and Windows Server Datacenter: Azure Edition beginning with the 2022-09 Cumulative +Update for Microsoft server operating system version 21H2 for x64-based Systems +([KB5017381](https://support.microsoft.com/help/5017381)). ```yaml Type: SwitchParameter diff --git a/docset/winserver2022-ps/storagereplica/Set-SRGroup.md b/docset/winserver2022-ps/storagereplica/Set-SRGroup.md index 27cac887c3..b0c31e2786 100644 --- a/docset/winserver2022-ps/storagereplica/Set-SRGroup.md +++ b/docset/winserver2022-ps/storagereplica/Set-SRGroup.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica -ms.date: 12/20/2016 +ms.date: 10/04/2022 online version: https://learn.microsoft.com/powershell/module/storagereplica/set-srgroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SRGroup @@ -43,11 +43,11 @@ A replication group contains one or more data volumes and an associated log volu A replication group is the container for replication. > [!NOTE] -> The **Compression** parameter is currently in PREVIEW beginning with TODO: 2022-08 -> Cumulative Update for Microsoft server operating system version 21H2 for x64-based Systems -> ([KB5016693](https://support.microsoft.com/help/5016693)). Some information relates to prerelease -> product that may be substantially modified before it's released. Microsoft makes no warranties, -> express or implied, with respect to the information provided here. +> The **Compression** parameter is only available in +> [Azure Stack HCI version 22H2](https://azure.microsoft.com/en-us/updates/public-preview-azure-stack-hci-version-22h2/) or later, +> and Windows Server Datacenter: Azure Edition beginning with the 2022-09 Cumulative Update for Microsoft +> server operating system version 21H2 for x64-based Systems +> ([KB5017381](https://support.microsoft.com/help/5017381)). ## EXAMPLES @@ -148,7 +148,12 @@ Accept wildcard characters: False ``` ### -Compression -Indicates that the connections in this Storage Replica group should use compression. +Indicates that this Storage Replica group should use SMB compression for data transfer. This +parameter only applies to +[Azure Stack HCI version 22H2](https://azure.microsoft.com/en-us/updates/public-preview-azure-stack-hci-version-22h2/) +or later, and Windows Server Datacenter: Azure Edition beginning with the 2022-09 Cumulative +Update for Microsoft server operating system version 21H2 for x64-based Systems +([KB5017381](https://support.microsoft.com/help/5017381)). ```yaml Type: Boolean diff --git a/docset/winserver2022-ps/storagereplica/Set-SRPartnership.md b/docset/winserver2022-ps/storagereplica/Set-SRPartnership.md index 5409d82734..49f549d923 100644 --- a/docset/winserver2022-ps/storagereplica/Set-SRPartnership.md +++ b/docset/winserver2022-ps/storagereplica/Set-SRPartnership.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: MSFT_WvrAdminTasks.cdxml-help.xml Module Name: StorageReplica -ms.date: 12/20/2016 +ms.date: 10/04/2022 online version: https://learn.microsoft.com/powershell/module/storagereplica/set-srpartnership?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SRPartnership @@ -46,11 +46,11 @@ groups. You can use this cmdlet to add replicated volumes. You can also change t replication which makes a source volume into a destination volume. > [!NOTE] -> The **Compression** parameter is currently in PREVIEW beginning with TODO: 2022-08 -> Cumulative Update for Microsoft server operating system version 21H2 for x64-based Systems -> ([KB5016693](https://support.microsoft.com/help/5016693)). Some information relates to prerelease -> product that may be substantially modified before it's released. Microsoft makes no warranties, -> express or implied, with respect to the information provided here. +> The **Compression** parameter is only available in +> [Azure Stack HCI version 22H2](https://azure.microsoft.com/en-us/updates/public-preview-azure-stack-hci-version-22h2/) or later, +> and Windows Server Datacenter: Azure Edition beginning with the 2022-09 Cumulative Update for Microsoft +> server operating system version 21H2 for x64-based Systems +> ([KB5017381](https://support.microsoft.com/help/5017381)). ## EXAMPLES @@ -191,7 +191,12 @@ Accept wildcard characters: False ``` ### -Compression -Indicates that the connections on this partnership should use compression. +Indicates that the connections in this partnership should use SMB compression for data transfer. +This parameter only applies to +[Azure Stack HCI version 22H2](https://azure.microsoft.com/en-us/updates/public-preview-azure-stack-hci-version-22h2/) +or later, and Windows Server Datacenter: Azure Edition beginning with the 2022-09 Cumulative +Update for Microsoft server operating system version 21H2 for x64-based Systems +([KB5017381](https://support.microsoft.com/help/5017381)). ```yaml Type: Boolean From 8e54c5ef5e21e1dd737f4f68e173cc2329fdd500 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Mon, 10 Oct 2022 15:19:47 +0100 Subject: [PATCH 267/965] Formatting updates --- .../storagereplica/New-SRGroup.md | 22 +++++++-- .../storagereplica/New-SRPartnership.md | 47 +++++++++++++++---- .../storagereplica/Set-SRGroup.md | 38 ++++++++++++--- .../storagereplica/Set-SRPartnership.md | 46 ++++++++++++++---- 4 files changed, 124 insertions(+), 29 deletions(-) diff --git a/docset/winserver2022-ps/storagereplica/New-SRGroup.md b/docset/winserver2022-ps/storagereplica/New-SRGroup.md index d16b93eddb..dbe03d27e8 100644 --- a/docset/winserver2022-ps/storagereplica/New-SRGroup.md +++ b/docset/winserver2022-ps/storagereplica/New-SRGroup.md @@ -18,11 +18,12 @@ Creates a replication group. ``` New-SRGroup [[-ComputerName] ] [-Name] [-VolumeName] [-LogVolumeName] [[-LogSizeInBytes] ] [[-Description] ] [-EnableConsistencyGroups] -[-EnableEncryption] [-EnableCompression] [-Force] [-CimSession ] -[-ThrottleLimit ] [-AsJob] [] + [-EnableEncryption] [-EnableCompression] [-Force] [-CimSession ] + [-ThrottleLimit ] [-AsJob] [] ``` ## DESCRIPTION + The `New-SRGroup` cmdlet creates a replication group. A replication group contains one or more data volumes and an associated log volume. A replication group is the container for replication. @@ -36,6 +37,7 @@ data volumes and an associated log volume. A replication group is the container ## EXAMPLES ### Example 1: Create a replication group + ```powershell New-SRGroup -ComputerName "SR-SRV05" -Name "ReplicationGroup01" -VolumeName "D:" -LogVolumeName "E:" ``` @@ -46,6 +48,7 @@ replication group uses default values. Replication will not start until you run `New-SRPartnership` cmdlet. ### Example 2: Create a replication group that uses custom properties + ```powershell $Parameters = @{ ComputerName = 'SR-SRV05' @@ -68,6 +71,7 @@ Learn more about [Splatting](/powershell/module/microsoft.powershell.core/about/ ## PARAMETERS ### -AsJob + Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. @@ -84,6 +88,7 @@ Accept wildcard characters: False ``` ### -CimSession + Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the @@ -102,6 +107,7 @@ Accept wildcard characters: False ``` ### -ComputerName + Specifies a single replica host computer NetBIOS name or fully qualified domain name (FQDN) of a computer to belong to the replication group. The default value is the local computer. @@ -118,6 +124,7 @@ Accept wildcard characters: False ``` ### -Description + Specifies a description for the replication group. ```yaml @@ -133,6 +140,7 @@ Accept wildcard characters: False ``` ### -EnableCompression + Indicates that this Storage Replica group should use SMB compression for data transfer. This parameter only applies to [Azure Stack HCI version 22H2](https://azure.microsoft.com/en-us/updates/public-preview-azure-stack-hci-version-22h2/) @@ -152,6 +160,7 @@ Accept wildcard characters: False ``` ### -EnableConsistencyGroups + Indicates that consistency groups are enabled for the replication group that contains multiple volumes. Consistency groups provide write ordering. This can be important, for example, for replication of application data on multiple volumes. @@ -171,6 +180,7 @@ Accept wildcard characters: False ``` ### -EnableEncryption + Indicates that this partnership should encrypt connection by using SMB AES-128-GCM. Enabling encryption can protect Storage Replica block transfers from man-in-the-middle interception or reading. Enabling encryption decreases performance. @@ -188,6 +198,7 @@ Accept wildcard characters: False ``` ### -Force + Forces the command to run without asking for user confirmation. ```yaml @@ -203,6 +214,7 @@ Accept wildcard characters: False ``` ### -LogSizeInBytes + Specifies the aggregate size of log files on each server in the replication group for the volumes that are associated with this replication group. The minimum size 512MB. You can specify a value by using the Windows PowerShell byte conversion capability, such as 4GB or 3200MB. @@ -223,6 +235,7 @@ Accept wildcard characters: False ``` ### -LogVolumeName + Specifies a drive letter, mount point path, or volume GUID where Storage Replication creates destination replication logs. The value must contain an NTFS-formatted volume or ReFS-formatted volume. The path must exist. The path cannot be a mapped drive or UNC path. @@ -242,6 +255,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies a name for the replication group. ```yaml @@ -257,6 +271,7 @@ Accept wildcard characters: False ``` ### -ThrottleLimit + Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the @@ -276,6 +291,7 @@ Accept wildcard characters: False ``` ### -VolumeName + Specifies an array of drive letters or mount point paths for the replica. The volumes must exist. The volumes cannot be mapped drives or UNC paths. @@ -298,6 +314,7 @@ Accept wildcard characters: False ``` ### CommonParameters + This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see @@ -324,4 +341,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Suspend-SRGroup](./Suspend-SRGroup.md) [Sync-SRGroup](./Sync-SRGroup.md) - diff --git a/docset/winserver2022-ps/storagereplica/New-SRPartnership.md b/docset/winserver2022-ps/storagereplica/New-SRPartnership.md index 18fe7a75f4..63aeabf289 100644 --- a/docset/winserver2022-ps/storagereplica/New-SRPartnership.md +++ b/docset/winserver2022-ps/storagereplica/New-SRPartnership.md @@ -16,26 +16,29 @@ Creates a replication partnership between two replication groups. ## SYNTAX ### CreatePartnership (Default) + ``` New-SRPartnership [[-SourceComputerName] ] [-SourceRGName] -[-DestinationComputerName] [-DestinationRGName] [[-ReplicationMode] + [-DestinationComputerName] [-DestinationRGName] [[-ReplicationMode] ] [-PreventReplication] [-Seeded] [[-AsyncRPO] ] [-EnableEncryption] -[-EnableCompression] [-Force] [-CimSession ] [-ThrottleLimit ] [-AsJob] -[] + [-EnableCompression] [-Force] [-CimSession ] [-ThrottleLimit ] [-AsJob] + [] ``` ### CreateTopology + ``` New-SRPartnership [[-SourceComputerName] ] [-SourceRGName] [-SourceVolumeName] [-SourceLogVolumeName] [[-SourceRGDescription] ] -[-DestinationComputerName] [-DestinationRGName] [-DestinationVolumeName] + [-DestinationComputerName] [-DestinationRGName] [-DestinationVolumeName] [-DestinationLogVolumeName] [[-DestinationRGDescription] ] -[[-ReplicationMode] ] [[-LogSizeInBytes] ] [-PreventReplication] [-Seeded] -[-EnableConsistencyGroups] [[-AsyncRPO] ] [-EnableEncryption] [-EnableCompression] [-Force] -[-CimSession ] [-ThrottleLimit ] [-AsJob] [] + [[-ReplicationMode] ] [[-LogSizeInBytes] ] [-PreventReplication] [-Seeded] + [-EnableConsistencyGroups] [[-AsyncRPO] ] [-EnableEncryption] [-EnableCompression] [-Force] + [-CimSession ] [-ThrottleLimit ] [-AsJob] [] ``` ## DESCRIPTION + The `New-SRPartnership` cmdlet creates a replication partnership between two new or existing replication groups. This cmdlet can create the complete replication topology. It can also tie together separately created replication groups. @@ -50,6 +53,7 @@ together separately created replication groups. ## EXAMPLES ### Example 1: Create a topology between two servers + ```powershell $Parameters = @{ SourceComputerName = 'SR-SRV05' @@ -75,6 +79,7 @@ This example uses splatting to pass parameter values from the `$Parameters` vari Learn more about [Splatting](/powershell/module/microsoft.powershell.core/about/about_splatting). ### Example 2: Pair existing groups + ```powershell $Parameters = @{ SourceComputerName = 'SR-SRV05' @@ -96,6 +101,7 @@ Learn more about [Splatting](/powershell/module/microsoft.powershell.core/about/ ## PARAMETERS ### -AsJob + Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. @@ -112,6 +118,7 @@ Accept wildcard characters: False ``` ### -AsyncRPO + Specifies the maximum difference in time, in seconds, that data for an asynchronous partnership can be different between source and destination. This is a Recovery Point Objective. The minimum value is 30 seconds. The default value is 5 minutes. @@ -133,6 +140,7 @@ Accept wildcard characters: False ``` ### -CimSession + Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the @@ -151,6 +159,7 @@ Accept wildcard characters: False ``` ### -DestinationComputerName + Specifies a single replica host computer NetBIOS name or fully qualified domain name (FQDN) of the destination computer. @@ -167,6 +176,7 @@ Accept wildcard characters: False ``` ### -DestinationLogVolumeName + Specifies a drive letter, mount point path, or volume GUID where Storage Replication creates destination replication logs. The volume must contain an NTFS-formatted volume or ReFS-formatted volume. The path must exist. The path cannot be a mapped drive or UNC path. @@ -186,6 +196,7 @@ Accept wildcard characters: False ``` ### -DestinationRGDescription + Specifies a description for the destination replication group. ```yaml @@ -201,6 +212,7 @@ Accept wildcard characters: False ``` ### -DestinationRGName + Specifies a name for the destination replication group. ```yaml @@ -216,6 +228,7 @@ Accept wildcard characters: False ``` ### -DestinationVolumeName + Specifies an array of drive letters or mount point paths of partitions for the replica. The volumes must exist. The volumes cannot be mapped drives or UNC paths. You can omit the colon symbol when you specify drive letters. @@ -247,6 +260,7 @@ Accept wildcard characters: False ``` ### -EnableCompression + Indicates that the connections in this partnership should use SMB compression for data transfer. This parameter only applies to [Azure Stack HCI version 22H2](https://azure.microsoft.com/en-us/updates/public-preview-azure-stack-hci-version-22h2/) @@ -267,6 +281,7 @@ Accept wildcard characters: False ``` ### -EnableConsistencyGroups + Indicates that consistency groups are enabled for the replication group that contains multiple volumes. Consistency groups provide write ordering. This can be important, for example, for replication of application data on multiple volumes. If you enable consistency groups, it may @@ -285,6 +300,7 @@ Accept wildcard characters: False ``` ### -EnableEncryption + Indicates that this partnership should encrypt connections by using SMB AES-128-GCM. Enabling encryption can protect Storage Replica block transfers from man-in-the-middle interception or reading. Enabling encryption decreases replication and write Input/Output performance. @@ -302,6 +318,7 @@ Accept wildcard characters: False ``` ### -Force + Forces the command to run without asking for user confirmation. ```yaml @@ -317,6 +334,7 @@ Accept wildcard characters: False ``` ### -LogSizeInBytes + Specifies the aggregate size of log files on each server in the replication group for the volumes that are associated with this replication group. The minimum size 512MB. You can specify a value by using the Windows PowerShell byte conversion capability, such as 4GB or 3200MB. A value that is too @@ -336,9 +354,10 @@ Accept wildcard characters: False ``` ### -PreventReplication + Indicates that this cmdlet prevent replication from starting immediately. By default, replication starts automatically at the time that you create the partnership. To start replication later, use -the Sync-SRGroup cmdlet. +the `Sync-SRGroup` cmdlet. ```yaml Type: SwitchParameter @@ -353,6 +372,7 @@ Accept wildcard characters: False ``` ### -ReplicationMode + Specifies the desired mode of replication for this source and destination pair. The acceptable values for this parameter are: @@ -364,7 +384,7 @@ values for this parameter are: The default value is synchronous. The default asynchronous recovery point alert time is 5 minutes. You can modify it by using the -Set-SRPartnership cmdlet. The alert time has no effect on replication behavior, only on reporting. +`Set-SRPartnership` cmdlet. The alert time has no effect on replication behavior, only on reporting. ```yaml Type: ReplicationMode @@ -380,6 +400,7 @@ Accept wildcard characters: False ``` ### -Seeded + Indicates that the destination server contains a seeded copy of the data from the source server. Seeded data is defined as a copy of data from the source server that has a high similarity, such as mostly empty blocks, restoring a recent backup, or shipping cloned copies of disks to the @@ -407,6 +428,7 @@ Accept wildcard characters: False ``` ### -SourceComputerName + Specifies a single replica host computer NetBIOS name or FQDN of the source computer. The default value is the local computer. @@ -423,6 +445,7 @@ Accept wildcard characters: False ``` ### -SourceLogVolumeName + Specifies a drive letter, mount point path, or volume GUID where Storage Replication creates source replication logs. The volume must contain an NTFS-formatted volume or ReFS-formatted volume. The path must exist. The path cannot be a mapped drive or UNC path. @@ -442,6 +465,7 @@ Accept wildcard characters: False ``` ### -SourceRGDescription + Specifies a description for the source replication group. ```yaml @@ -457,6 +481,7 @@ Accept wildcard characters: False ``` ### -SourceRGName + Specifies the name of the source replication group. ```yaml @@ -472,6 +497,7 @@ Accept wildcard characters: False ``` ### -SourceVolumeName + Specifies an array of drive letters or mount point paths of partitions for the replica. The volumes must exist. The volumes cannot be mapped drives or UNC paths. @@ -491,6 +517,7 @@ Accept wildcard characters: False ``` ### -ThrottleLimit + Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the @@ -510,6 +537,7 @@ Accept wildcard characters: False ``` ### CommonParameters + This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see @@ -534,4 +562,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Set-SRPartnership](./Set-SRPartnership.md) [Sync-SRGroup](./Sync-SRGroup.md) - diff --git a/docset/winserver2022-ps/storagereplica/Set-SRGroup.md b/docset/winserver2022-ps/storagereplica/Set-SRGroup.md index b0c31e2786..e3c9939064 100644 --- a/docset/winserver2022-ps/storagereplica/Set-SRGroup.md +++ b/docset/winserver2022-ps/storagereplica/Set-SRGroup.md @@ -16,20 +16,23 @@ Modifies settings of a replication group. ## SYNTAX ### AddVolumes (Default) + ``` Set-SRGroup [[-ComputerName] ] [-Name] [-AddVolumeName] [-Force] -[-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] -[] + [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] + [] ``` ### RemoveVolumes + ``` Set-SRGroup [[-ComputerName] ] [-Name] [-Force] [-RemoveVolumeName] -[-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] -[] + [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] + [] ``` ### ModifyConfig + ``` Set-SRGroup [[-ComputerName] ] [-Name] [-Force] [[-LogSizeInBytes] ] [[-Description] ] [[-ReplicationMode] ] [[-Encryption] ] @@ -38,6 +41,7 @@ Set-SRGroup [[-ComputerName] ] [-Name] [-Force] [[-LogSizeInByt ``` ## DESCRIPTION + The `Set-SRGroup` cmdlet modifies settings of an existing replication group. A replication group contains one or more data volumes and an associated log volume. A replication group is the container for replication. @@ -52,6 +56,7 @@ A replication group is the container for replication. ## EXAMPLES ### Example 1: Add a volume to a replication group + ```powershell Set-SRGroup -Name "ReplicationGroup01" -AddVolumeName "F:" ``` @@ -60,6 +65,7 @@ This command adds the F: volume to the existing replication group named Replicat local computer. ### Example 2: Remove a volume from a replication group + ```powershell Set-SRGroup -Name "ReplicationGroup01" -RemoveVolumeName "F:" ``` @@ -68,6 +74,7 @@ This command removes the F: volume from the existing replication group Replicati local computer. ### Example 3: Resize volumes in a replication group + ```powershell Set-SRGroup -Name "ReplicationGroup01" -AllowVolumeResize $True ``` @@ -80,11 +87,12 @@ increase the size of the volume on both servers to be the same size, then disabl ## PARAMETERS ### -AddVolumeName + Specifies an array of drive letters or mount point paths of partitions for the replica to add to the group. The volumes must exist. The volumes cannot be mapped drives or UNC paths. This is an ordered list. The order of volumes determines the order of replication. For more -information, see the **DestinationVolumeName** parameter of the New-SRPartnership cmdlet. +information, see the **DestinationVolumeName** parameter of the `New-SRPartnership` cmdlet. ```yaml Type: String[] @@ -99,6 +107,7 @@ Accept wildcard characters: False ``` ### -AllowVolumeResize + Indicates that the replication group enables resizing of volumes. ```yaml @@ -114,6 +123,7 @@ Accept wildcard characters: False ``` ### -AsJob + Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. @@ -130,6 +140,7 @@ Accept wildcard characters: False ``` ### -CimSession + Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the @@ -148,6 +159,7 @@ Accept wildcard characters: False ``` ### -Compression + Indicates that this Storage Replica group should use SMB compression for data transfer. This parameter only applies to [Azure Stack HCI version 22H2](https://azure.microsoft.com/en-us/updates/public-preview-azure-stack-hci-version-22h2/) @@ -168,6 +180,7 @@ Accept wildcard characters: False ``` ### -ComputerName + Specifies a single replica host computer NetBIOS name or fully qualified domain name (FQDN) of a computer. The default value is the local computer. @@ -184,6 +197,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -199,6 +213,7 @@ Accept wildcard characters: False ``` ### -Description + Specifies a description for the replication group. ```yaml @@ -214,6 +229,7 @@ Accept wildcard characters: False ``` ### -Encryption + Indicates this partnership should encrypt connections by using SMB AES-128-GCM. Enabling encryption can protect Storage Replica block transfers from man-in-the-middle interception or reading. Enabling encryption decreases performance. @@ -231,6 +247,7 @@ Accept wildcard characters: False ``` ### -Force + Forces the command to run without asking for user confirmation. ```yaml @@ -246,6 +263,7 @@ Accept wildcard characters: False ``` ### -LogSizeInBytes + Specifies the aggregate size of log files on each server in the replication group for the volumes that are associated with this replication group. The minimum size 512MB. You can specify a value by using the Windows PowerShell byte conversion capability, such as 4GB or 3200MB. @@ -266,6 +284,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of the replication group to modify. ```yaml @@ -281,6 +300,7 @@ Accept wildcard characters: False ``` ### -RemoveVolumeName + Specifies an array of drive letters or mount point paths of partitions for the replica to remove from the group. The volumes must exist. The volumes cannot be mapped drives or UNC paths. @@ -304,6 +324,7 @@ Accept wildcard characters: False ``` ### -ReplicationMode + Specifies the desired mode of replication for this source and destination pair. The acceptable values for this parameter are: @@ -313,7 +334,7 @@ values for this parameter are: source server, which allows for replication over high latency, geographic networks. The default value is synchronous. The default asynchronous recovery point alert time is 5 minutes. -You can modify it by using the Set-SRPartnership cmdlet. The alert time has no effect on replication +You can modify it by using the `Set-SRPartnership` cmdlet. The alert time has no effect on replication behavior, only on reporting. ```yaml @@ -330,6 +351,7 @@ Accept wildcard characters: False ``` ### -ThrottleLimit + Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the @@ -349,6 +371,7 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. @@ -365,6 +388,7 @@ Accept wildcard characters: False ``` ### CommonParameters + This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see @@ -385,6 +409,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS ### System.Object + ## NOTES ## RELATED LINKS @@ -400,4 +425,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Suspend-SRGroup](./Suspend-SRGroup.md) [Sync-SRGroup](./Sync-SRGroup.md) - diff --git a/docset/winserver2022-ps/storagereplica/Set-SRPartnership.md b/docset/winserver2022-ps/storagereplica/Set-SRPartnership.md index 49f549d923..cce8286a6e 100644 --- a/docset/winserver2022-ps/storagereplica/Set-SRPartnership.md +++ b/docset/winserver2022-ps/storagereplica/Set-SRPartnership.md @@ -16,31 +16,35 @@ Modifies a replication partnership between two replication groups. ## SYNTAX ### AddVolumes (Default) + ``` Set-SRPartnership [[-SourceComputerName] ] [-SourceRGName] -[-SourceAddVolumePartnership] [-DestinationComputerName] [-DestinationRGName] + [-SourceAddVolumePartnership] [-DestinationComputerName] [-DestinationRGName] [-DestinationAddVolumePartnership] [-Seeded] [-Force] -[-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] -[] + [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] + [] ``` ### ModifySettings + ``` Set-SRPartnership [[-SourceComputerName] ] [-SourceRGName] -[-DestinationComputerName] [-DestinationRGName] [[-ReplicationMode] + [-DestinationComputerName] [-DestinationRGName] [[-ReplicationMode] ] [[-LogSizeInBytes] ] [[-AsyncRPO] ] [[-Encryption] ] -[[-Compression] ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] -[-Confirm] [] + [[-Compression] ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] + [-Confirm] [] ``` ### ModifyPartnership + ``` Set-SRPartnership [-SourceRGName] [-DestinationComputerName] [-DestinationRGName] [-Force] [[-NewSourceComputerName] ] [-CimSession ] -[-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] [] + [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION + The `Set-SRPartnership` cmdlet modifies a replication partnership between two existing replication groups. You can use this cmdlet to add replicated volumes. You can also change the direction of replication which makes a source volume into a destination volume. @@ -55,6 +59,7 @@ replication which makes a source volume into a destination volume. ## EXAMPLES ### Example 1: Reverse replication direction + ```powershell $Parameters = @{ NewSourceComputerName = 'SR-SRV06' @@ -76,6 +81,7 @@ This example uses splatting to pass parameter values from the `$Parameters` vari Learn more about [Splatting](/powershell/module/microsoft.powershell.core/about/about_splatting). ### Example 2: Change size of log + ```powershell $Parameters = @{ SourceComputerName = 'SR-SRV05' @@ -95,6 +101,7 @@ This example uses splatting to pass parameter values from the `$Parameters` vari Learn more about [Splatting](/powershell/module/microsoft.powershell.core/about/about_splatting). ### Example 3: Change to asynchronous mode + ```powershell $Parameters = @{ SourceComputerName = 'SR-SRV05' @@ -113,6 +120,7 @@ This example uses splatting to pass parameter values from the `$Parameters` vari Learn more about [Splatting](/powershell/module/microsoft.powershell.core/about/about_splatting). ### Example 4: Display replicas after a change + ```powershell $Parameters = @{ SourceComputerName = 'SR-SRV05' @@ -127,7 +135,7 @@ Set-SRPartnership @Parameters ``` The first command changes the partnership for the servers named SR-SRV05 and SR-SRV06.The second -command gets all replication groups for the current computer by using the Get-SRGroup cmdlet. The +command gets all replication groups for the current computer by using the `Get-SRGroup` cmdlet. The command displays all the replicas. This example uses splatting to pass parameter values from the `$Parameters` variable to the command. @@ -136,6 +144,7 @@ Learn more about [Splatting](/powershell/module/microsoft.powershell.core/about/ ## PARAMETERS ### -AsJob + Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. @@ -152,6 +161,7 @@ Accept wildcard characters: False ``` ### -AsyncRPO + Specifies the maximum difference in time that data for an asynchronous partnership can be different between source and destination. This is a Recovery Point Objective. The default value is 30 seconds. @@ -173,6 +183,7 @@ Accept wildcard characters: False ``` ### -CimSession + Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the @@ -191,6 +202,7 @@ Accept wildcard characters: False ``` ### -Compression + Indicates that the connections in this partnership should use SMB compression for data transfer. This parameter only applies to [Azure Stack HCI version 22H2](https://azure.microsoft.com/en-us/updates/public-preview-azure-stack-hci-version-22h2/) @@ -211,6 +223,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -226,6 +239,7 @@ Accept wildcard characters: False ``` ### -DestinationAddVolumePartnership + Specifies an array of drive letters or mount point paths of partitions to add to the existing replication group. You cannot specify paths already added to the replication group. @@ -248,6 +262,7 @@ Accept wildcard characters: False ``` ### -DestinationComputerName + Specifies a single replica host computer NetBIOS name or fully qualified domain name (FQDN) of the destination computer. @@ -264,6 +279,7 @@ Accept wildcard characters: False ``` ### -DestinationRGName + Specifies the name of the destination replication group. ```yaml @@ -279,6 +295,7 @@ Accept wildcard characters: False ``` ### -Encryption + Indicates that the connections on this partnership should be encrypted by using SMB AES-128-GCM. Enabling encryption can protect Storage Replica block transfers from man-in-the-middle interception or reading. Enabling encryption can decrease replication and write Input/Output performance. @@ -296,6 +313,7 @@ Accept wildcard characters: False ``` ### -Force + Forces the command to run without asking for user confirmation. ```yaml @@ -311,6 +329,7 @@ Accept wildcard characters: False ``` ### -LogSizeInBytes + Specifies the aggregate size of log files on each server in the replication group for the volumes that are associated with this replication group. The minimum size 512MB. You can specify a value by using the Windows PowerShell byte conversion capability, such as 4GB or 3200MB. A value that is too @@ -330,6 +349,7 @@ Accept wildcard characters: False ``` ### -NewSourceComputerName + Specifies the new source of replication. This parameter changes the direction of replication for the source computer and the source replication group. When changed, replication stops originating on the current source and moves to the new source. @@ -353,6 +373,7 @@ Accept wildcard characters: False ``` ### -ReplicationMode + Specifies the desired mode of replication for this source and destination pair. The acceptable values for this parameter are: @@ -379,6 +400,7 @@ Accept wildcard characters: False ``` ### -Seeded + Indicates that the destination server contains a seeded copy of the data from the source server. Seeded data is defined as a copy of data from the source server that has a high similarity, such as mostly empty blocks, restoring a recent backup, or shipping cloned copies of disks to the @@ -406,6 +428,7 @@ Accept wildcard characters: False ``` ### -SourceAddVolumePartnership + Specifies an array of drive letters or mount point paths of partitions to add to the existing replication group. You cannot specify paths already added to the replication group. @@ -425,6 +448,7 @@ Accept wildcard characters: False ``` ### -SourceComputerName + Specifies a single replica host computer NetBIOS name or FQDN of the source computer. The default value is the local computer. @@ -453,6 +477,7 @@ Accept wildcard characters: False ``` ### -SourceRGName + Specifies the name of the source replication group. ```yaml @@ -468,6 +493,7 @@ Accept wildcard characters: False ``` ### -ThrottleLimit + Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the @@ -487,6 +513,7 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. @@ -503,6 +530,7 @@ Accept wildcard characters: False ``` ### CommonParameters + This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see @@ -519,6 +547,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS ### System.Object + ## NOTES ## RELATED LINKS @@ -530,4 +559,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [New-SRPartnership](./New-SRPartnership.md) [Remove-SRPartnership](./Remove-SRPartnership.md) - From ff11111eed7a77c50257af725803508d81724dba Mon Sep 17 00:00:00 2001 From: Rutuja Shirali Date: Tue, 11 Oct 2022 12:31:35 -0700 Subject: [PATCH 268/965] Update Set-DnsServerRecursion.md --- docset/winserver2022-ps/dnsserver/Set-DnsServerRecursion.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docset/winserver2022-ps/dnsserver/Set-DnsServerRecursion.md b/docset/winserver2022-ps/dnsserver/Set-DnsServerRecursion.md index a37b5b25b4..4ad3c8433d 100644 --- a/docset/winserver2022-ps/dnsserver/Set-DnsServerRecursion.md +++ b/docset/winserver2022-ps/dnsserver/Set-DnsServerRecursion.md @@ -29,7 +29,7 @@ Recursion occurs when a DNS server queries other DNS servers on behalf of a requ ### Example 1: Set the retry interval ``` -PS C:\> Set-DnsServerRecursion -RetryInterval 3 -PassThru +PS C:\> Set-DnsServerRecursion -RetryInterval 15 -PassThru Enable : False AdditionalTimeout(s) : 4 @@ -38,7 +38,7 @@ Timeout(s) : 8 SecureResponse : True ``` -This command sets the retry interval to 3 seconds. +This command sets the retry interval to 15 seconds. ## PARAMETERS @@ -219,7 +219,7 @@ Accept wildcard characters: False ### -Timeout Specifies the number of seconds that a DNS server waits before it stops trying to contact a remote server. The valid value is in the range of 0x1 to 0xFFFFFFFF (1 second to 15 seconds). -The default setting is 0xF (15 seconds). +The default setting is 0x8 (8 seconds). We recommend that you increase this value when recursion occurs over a slow link. ```yaml From ea13eab4f72fdfb4ba0587000b3e92e2a392c711 Mon Sep 17 00:00:00 2001 From: Robin Harwood <19212983+robinharwood@users.noreply.github.com> Date: Thu, 13 Oct 2022 09:09:10 +0100 Subject: [PATCH 269/965] Apply suggestions from code review Co-authored-by: Sean Wheeler --- .../storagereplica/New-SRGroup.md | 4 ++-- .../storagereplica/New-SRPartnership.md | 12 +++++----- .../storagereplica/Set-SRGroup.md | 4 ++-- .../storagereplica/Set-SRPartnership.md | 23 ++++++++++--------- 4 files changed, 22 insertions(+), 21 deletions(-) diff --git a/docset/winserver2022-ps/storagereplica/New-SRGroup.md b/docset/winserver2022-ps/storagereplica/New-SRGroup.md index dbe03d27e8..f3d14ef9bf 100644 --- a/docset/winserver2022-ps/storagereplica/New-SRGroup.md +++ b/docset/winserver2022-ps/storagereplica/New-SRGroup.md @@ -29,7 +29,7 @@ data volumes and an associated log volume. A replication group is the container > [!NOTE] > The **Compression** parameter is only available in -> [Azure Stack HCI version 22H2](https://azure.microsoft.com/en-us/updates/public-preview-azure-stack-hci-version-22h2/) or later, +> [Azure Stack HCI version 22H2](https://azure.microsoft.com/updates/public-preview-azure-stack-hci-version-22h2/) or later, > and Windows Server Datacenter: Azure Edition beginning with the 2022-09 Cumulative Update for Microsoft > server operating system version 21H2 for x64-based Systems > ([KB5017381](https://support.microsoft.com/help/5017381)). @@ -143,7 +143,7 @@ Accept wildcard characters: False Indicates that this Storage Replica group should use SMB compression for data transfer. This parameter only applies to -[Azure Stack HCI version 22H2](https://azure.microsoft.com/en-us/updates/public-preview-azure-stack-hci-version-22h2/) +[Azure Stack HCI version 22H2](https://azure.microsoft.com/updates/public-preview-azure-stack-hci-version-22h2/) or later, and Windows Server Datacenter: Azure Edition beginning with the 2022-09 Cumulative Update for Microsoft server operating system version 21H2 for x64-based Systems ([KB5017381](https://support.microsoft.com/help/5017381)). diff --git a/docset/winserver2022-ps/storagereplica/New-SRPartnership.md b/docset/winserver2022-ps/storagereplica/New-SRPartnership.md index 63aeabf289..b53ed4e405 100644 --- a/docset/winserver2022-ps/storagereplica/New-SRPartnership.md +++ b/docset/winserver2022-ps/storagereplica/New-SRPartnership.md @@ -19,10 +19,10 @@ Creates a replication partnership between two replication groups. ``` New-SRPartnership [[-SourceComputerName] ] [-SourceRGName] - [-DestinationComputerName] [-DestinationRGName] [[-ReplicationMode] -] [-PreventReplication] [-Seeded] [[-AsyncRPO] ] [-EnableEncryption] - [-EnableCompression] [-Force] [-CimSession ] [-ThrottleLimit ] [-AsJob] - [] + [-DestinationComputerName] [-DestinationRGName] + [[-ReplicationMode] ] [-PreventReplication] [-Seeded] [[-AsyncRPO] ] + [-EnableEncryption] [-EnableCompression] [-Force] [-CimSession ] + [-ThrottleLimit ] [-AsJob] [] ``` ### CreateTopology @@ -45,7 +45,7 @@ together separately created replication groups. > [!NOTE] > The **Compression** parameter is only available in -> [Azure Stack HCI version 22H2](https://azure.microsoft.com/en-us/updates/public-preview-azure-stack-hci-version-22h2/) or later, +> [Azure Stack HCI version 22H2](https://azure.microsoft.com/updates/public-preview-azure-stack-hci-version-22h2/) or later, > and Windows Server Datacenter: Azure Edition beginning with the 2022-09 Cumulative Update for Microsoft > server operating system version 21H2 for x64-based Systems > ([KB5017381](https://support.microsoft.com/help/5017381)). @@ -263,7 +263,7 @@ Accept wildcard characters: False Indicates that the connections in this partnership should use SMB compression for data transfer. This parameter only applies to -[Azure Stack HCI version 22H2](https://azure.microsoft.com/en-us/updates/public-preview-azure-stack-hci-version-22h2/) +[Azure Stack HCI version 22H2](https://azure.microsoft.com/updates/public-preview-azure-stack-hci-version-22h2/) or later, and Windows Server Datacenter: Azure Edition beginning with the 2022-09 Cumulative Update for Microsoft server operating system version 21H2 for x64-based Systems ([KB5017381](https://support.microsoft.com/help/5017381)). diff --git a/docset/winserver2022-ps/storagereplica/Set-SRGroup.md b/docset/winserver2022-ps/storagereplica/Set-SRGroup.md index e3c9939064..123b2f0ffc 100644 --- a/docset/winserver2022-ps/storagereplica/Set-SRGroup.md +++ b/docset/winserver2022-ps/storagereplica/Set-SRGroup.md @@ -48,7 +48,7 @@ A replication group is the container for replication. > [!NOTE] > The **Compression** parameter is only available in -> [Azure Stack HCI version 22H2](https://azure.microsoft.com/en-us/updates/public-preview-azure-stack-hci-version-22h2/) or later, +> [Azure Stack HCI version 22H2](https://azure.microsoft.com/updates/public-preview-azure-stack-hci-version-22h2/) or later, > and Windows Server Datacenter: Azure Edition beginning with the 2022-09 Cumulative Update for Microsoft > server operating system version 21H2 for x64-based Systems > ([KB5017381](https://support.microsoft.com/help/5017381)). @@ -162,7 +162,7 @@ Accept wildcard characters: False Indicates that this Storage Replica group should use SMB compression for data transfer. This parameter only applies to -[Azure Stack HCI version 22H2](https://azure.microsoft.com/en-us/updates/public-preview-azure-stack-hci-version-22h2/) +[Azure Stack HCI version 22H2](https://azure.microsoft.com/updates/public-preview-azure-stack-hci-version-22h2/) or later, and Windows Server Datacenter: Azure Edition beginning with the 2022-09 Cumulative Update for Microsoft server operating system version 21H2 for x64-based Systems ([KB5017381](https://support.microsoft.com/help/5017381)). diff --git a/docset/winserver2022-ps/storagereplica/Set-SRPartnership.md b/docset/winserver2022-ps/storagereplica/Set-SRPartnership.md index cce8286a6e..0462db80ec 100644 --- a/docset/winserver2022-ps/storagereplica/Set-SRPartnership.md +++ b/docset/winserver2022-ps/storagereplica/Set-SRPartnership.md @@ -19,8 +19,8 @@ Modifies a replication partnership between two replication groups. ``` Set-SRPartnership [[-SourceComputerName] ] [-SourceRGName] - [-SourceAddVolumePartnership] [-DestinationComputerName] [-DestinationRGName] - [-DestinationAddVolumePartnership] [-Seeded] [-Force] + [-SourceAddVolumePartnership] [-DestinationComputerName] + [-DestinationRGName] [-DestinationAddVolumePartnership] [-Seeded] [-Force] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] [] ``` @@ -29,18 +29,19 @@ Set-SRPartnership [[-SourceComputerName] ] [-SourceRGName] ``` Set-SRPartnership [[-SourceComputerName] ] [-SourceRGName] - [-DestinationComputerName] [-DestinationRGName] [[-ReplicationMode] -] [[-LogSizeInBytes] ] [[-AsyncRPO] ] [[-Encryption] ] - [[-Compression] ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] - [-Confirm] [] + [-DestinationComputerName] [-DestinationRGName] + [[-ReplicationMode] ] [[-LogSizeInBytes] ] [[-AsyncRPO] ] + [[-Encryption] ] [[-Compression] ] [-CimSession ] + [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] [] ``` ### ModifyPartnership ``` -Set-SRPartnership [-SourceRGName] [-DestinationComputerName] [-DestinationRGName] - [-Force] [[-NewSourceComputerName] ] [-CimSession ] - [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] [] +Set-SRPartnership [-SourceRGName] [-DestinationComputerName] + [-DestinationRGName] [-Force] [[-NewSourceComputerName] ] + [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION @@ -51,7 +52,7 @@ replication which makes a source volume into a destination volume. > [!NOTE] > The **Compression** parameter is only available in -> [Azure Stack HCI version 22H2](https://azure.microsoft.com/en-us/updates/public-preview-azure-stack-hci-version-22h2/) or later, +> [Azure Stack HCI version 22H2](https://azure.microsoft.com/updates/public-preview-azure-stack-hci-version-22h2/) or later, > and Windows Server Datacenter: Azure Edition beginning with the 2022-09 Cumulative Update for Microsoft > server operating system version 21H2 for x64-based Systems > ([KB5017381](https://support.microsoft.com/help/5017381)). @@ -205,7 +206,7 @@ Accept wildcard characters: False Indicates that the connections in this partnership should use SMB compression for data transfer. This parameter only applies to -[Azure Stack HCI version 22H2](https://azure.microsoft.com/en-us/updates/public-preview-azure-stack-hci-version-22h2/) +[Azure Stack HCI version 22H2](https://azure.microsoft.com/updates/public-preview-azure-stack-hci-version-22h2/) or later, and Windows Server Datacenter: Azure Edition beginning with the 2022-09 Cumulative Update for Microsoft server operating system version 21H2 for x64-based Systems ([KB5017381](https://support.microsoft.com/help/5017381)). From cf9aeaef20cfda0a30eded7aad5569700b168cab Mon Sep 17 00:00:00 2001 From: Sean Wheeler Date: Thu, 13 Oct 2022 08:04:48 -0500 Subject: [PATCH 270/965] Update docset/winserver2022-ps/storagereplica/New-SRGroup.md --- docset/winserver2022-ps/storagereplica/New-SRGroup.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docset/winserver2022-ps/storagereplica/New-SRGroup.md b/docset/winserver2022-ps/storagereplica/New-SRGroup.md index f3d14ef9bf..e2d7427bd8 100644 --- a/docset/winserver2022-ps/storagereplica/New-SRGroup.md +++ b/docset/winserver2022-ps/storagereplica/New-SRGroup.md @@ -16,10 +16,10 @@ Creates a replication group. ## SYNTAX ``` -New-SRGroup [[-ComputerName] ] [-Name] [-VolumeName] [-LogVolumeName] - [[-LogSizeInBytes] ] [[-Description] ] [-EnableConsistencyGroups] - [-EnableEncryption] [-EnableCompression] [-Force] [-CimSession ] - [-ThrottleLimit ] [-AsJob] [] +New-SRGroup [[-ComputerName] ] [-Name] [-VolumeName] + [-LogVolumeName] [[-LogSizeInBytes] ] [[-Description] ] + [-EnableConsistencyGroups] [-EnableEncryption] [-EnableCompression] [-Force] + [-CimSession ] [-ThrottleLimit ] [-AsJob] [] ``` ## DESCRIPTION From ae19fed08ace61efa2e2f5c4306bb485314a8989 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Tue, 27 Sep 2022 12:21:07 +0100 Subject: [PATCH 271/965] Bulk example formatting update --- .../Add-CauClusterRole.md | 56 +++++++++++++++--- .../ClusterAwareUpdating.md | 2 +- .../Disable-CauClusterRole.md | 6 +- .../Enable-CauClusterRole.md | 6 +- .../clusterawareupdating/Export-CauReport.md | 7 ++- .../Get-CauClusterRole.md | 18 +----- .../clusterawareupdating/Get-CauPlugin.md | 13 +---- .../clusterawareupdating/Get-CauReport.md | 16 ++--- .../clusterawareupdating/Get-CauRun.md | 6 +- .../clusterawareupdating/Invoke-CauRun.md | 39 ++++++++++--- .../clusterawareupdating/Invoke-CauScan.md | 27 ++++++--- .../Register-CauPlugin.md | 6 +- .../Remove-CauClusterRole.md | 6 +- .../Save-CauDebugTrace.md | 6 +- .../Set-CauClusterRole.md | 58 +++++++++++++++---- .../clusterawareupdating/Stop-CauRun.md | 4 +- .../clusterawareupdating/Test-CauSetup.md | 7 +-- .../Unregister-CauPlugin.md | 6 +- 18 files changed, 193 insertions(+), 96 deletions(-) diff --git a/docset/winserver2022-ps/clusterawareupdating/Add-CauClusterRole.md b/docset/winserver2022-ps/clusterawareupdating/Add-CauClusterRole.md index 48a2a48a2a..84904f379c 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Add-CauClusterRole.md +++ b/docset/winserver2022-ps/clusterawareupdating/Add-CauClusterRole.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating -ms.date: 12/20/2016 +ms.date: 09/27/2022 online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/add-cauclusterrole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-CauClusterRole @@ -54,8 +54,21 @@ Mode (HTTP-In) firewall exception is enabled on each node. ## EXAMPLES ### Example 1: Add a CAU clustered role on the specified cluster at a specific interval -``` -PS C:\> Add-CauClusterRole -ClusterName "CONTOSO-FC1" -DaysOfWeek Tuesday,Saturday -WeeksOfMonth 2,4 -MaxFailedNodes 2 -MaxRetriesPerNode 2 -PostUpdateScript \\CONTOSOFileShare\scripts\verifyupdatesinstalled.ps1 -RequireAllNodesOnline -EnableFirewallRules -Force +```powershell +$parameters = @{ + ClusterName = 'CONTOSO-FC1' + DaysOfWeek = 'Tuesday', + 'Saturday' + WeeksOfMonth = '2', + '4' + MaxFailedNodes = '2' + MaxRetriesPerNode = '2' + PostUpdateScript = '\\CONTOSOFileShare\scripts\verifyupdatesinstalled.ps1' + RequireAllNodesOnline = $true + EnableFirewallRules = $true + Force = $true +} +Add-CauClusterRole @parameters ``` This command adds the CAU clustered role, using a default name, on the cluster called CONTOSO-FC1. @@ -67,9 +80,22 @@ that cluster must be running. If it is not already enabled, the Remote Shutdown rule group will be enabled on each cluster node. Because the command uses the *Force* parameter, the cmdlet runs without displaying confirmation prompts. +This example uses splatting to pass parameter values from the `$Parameters` variable to the command. +Learn more about [Splatting](/powershell/module/microsoft.powershell.core/about/about_splatting). + ### Example 2: Add a CAU clustered role on the specified cluster at a specific interval -``` -PS C:\> Add-CauClusterRole -ClusterName "CONTOSO-FC1" -DaysOfWeek Tuesday,Saturday -IntervalWeeks 3 -MaxFailedNodes 2 -MaxRetriesPerNode 2 -EnableFirewallRules -Force +```powershell +$parameters = @{ + ClusterName = 'CONTOSO-FC1' + DaysOfWeek = 'Tuesday', + 'Saturday' + IntervalWeeks = '3' + MaxFailedNodes = '2' + MaxRetriesPerNode = '2' + EnableFirewallRules = $true + Force = $true +} +Add-CauClusterRole @parameters ``` This command adds the CAU clustered role, using a default name, on the cluster called CONTOSO-FC1. @@ -81,9 +107,22 @@ enabled, the Remote Shutdown Windows Firewall rule group will be enabled on each Because the command uses the *Force* parameter, the cmdlet runs without displaying confirmation prompts. +This example uses splatting to pass parameter values from the `$Parameters` variable to the command. +Learn more about [Splatting](/powershell/module/microsoft.powershell.core/about/about_splatting). + ### Example 3: Add a CAU clustered role on the specified cluster using plug-ins -``` -PS C:\> Add-CauClusterRole -ClusterName "CONTOSO-FC1" -CauPluginName Microsoft.WindowsUpdatePlugin, Microsoft.HotfixPlugin -CauPluginArguments @{ 'IncludeRecommendedUpdates' = 'True' }, @{ 'HotfixRootFolderPath' = '\\CauHotfixSrv\shareName ' } -StopOnPluginFailure -EnableFirewallRules -Force +```powershell +$parameters = @{ + ClusterName = 'CONTOSO-FC1' + CauPluginName = 'Microsoft.WindowsUpdatePlugin', + 'Microsoft.HotfixPlugin' + CauPluginArguments = @{'IncludeRecommendedUpdates' = 'True'}, + @{'HotfixRootFolderPath' = '\\CauHotfixSrv\shareName'} + StopOnPluginFailure = $true + EnableFirewallRules = $true + Force = $true +} +Add-CauClusterRole @parameters ``` This command adds the CAU clustered role, using a default name, on the cluster called CONTOSO-FC1. @@ -96,6 +135,9 @@ it is not already enabled, the Remote Shutdown Windows Firewall rule group is en cluster node. Because the command uses the *Force* parameter, the cmdlet runs without displaying confirmation prompts. +This example uses splatting to pass parameter values from the `$Parameters` variable to the command. +Learn more about [Splatting](/powershell/module/microsoft.powershell.core/about/about_splatting). + ## PARAMETERS ### -CauPluginArguments diff --git a/docset/winserver2022-ps/clusterawareupdating/ClusterAwareUpdating.md b/docset/winserver2022-ps/clusterawareupdating/ClusterAwareUpdating.md index b57e56a117..365bc997f0 100644 --- a/docset/winserver2022-ps/clusterawareupdating/ClusterAwareUpdating.md +++ b/docset/winserver2022-ps/clusterawareupdating/ClusterAwareUpdating.md @@ -5,7 +5,7 @@ Help Version: 5.0.0.1 Locale: en-US Module Guid: 4e804861-1dce-46c1-868d-c8f2ab9d220a Module Name: ClusterAwareUpdating -ms.date: 12/20/2016 +ms.date: 09/27/2022 title: ClusterAwareUpdating --- diff --git a/docset/winserver2022-ps/clusterawareupdating/Disable-CauClusterRole.md b/docset/winserver2022-ps/clusterawareupdating/Disable-CauClusterRole.md index 6cf6683f41..e62fbf5499 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Disable-CauClusterRole.md +++ b/docset/winserver2022-ps/clusterawareupdating/Disable-CauClusterRole.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating -ms.date: 12/20/2016 +ms.date: 09/27/2022 online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/disable-cauclusterrole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-CauClusterRole @@ -28,8 +28,8 @@ cluster. The self-updating functionality of the cluster can be re-enabled with t ## EXAMPLES ### Example 1: Disable a CAU clustered role on the specified cluster -``` -PS C:\> Disable-CauClusterRole -ClusterName CONTOSO-FC1 -Force +```powershell +Disable-CauClusterRole -ClusterName CONTOSO-FC1 -Force ``` This command prevents the CAU clustered role on the CONTOSO-FC1 cluster from performing Updating diff --git a/docset/winserver2022-ps/clusterawareupdating/Enable-CauClusterRole.md b/docset/winserver2022-ps/clusterawareupdating/Enable-CauClusterRole.md index 8042c24a89..1a8a64cdbc 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Enable-CauClusterRole.md +++ b/docset/winserver2022-ps/clusterawareupdating/Enable-CauClusterRole.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating -ms.date: 12/20/2016 +ms.date: 09/27/2022 online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/enable-cauclusterrole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-CauClusterRole @@ -28,8 +28,8 @@ cluster. The self-updating functionality of the cluster can be disabled with the ## EXAMPLES ### Example 1: Enable a CAU clustered role on the specified cluster -``` -PS C:\> Enable-CauClusterRole -ClusterName "CONTOSO-FC1" -Force +```powershell +Enable-CauClusterRole -ClusterName "CONTOSO-FC1" -Force ``` This command enables the CAU clustered role on the CONTOSO-FC1 cluster to begin performing Updating diff --git a/docset/winserver2022-ps/clusterawareupdating/Export-CauReport.md b/docset/winserver2022-ps/clusterawareupdating/Export-CauReport.md index 272075e98b..b3423859d2 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Export-CauReport.md +++ b/docset/winserver2022-ps/clusterawareupdating/Export-CauReport.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating -ms.date: 12/20/2016 +ms.date: 09/27/2022 online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/export-caureport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Export-CauReport @@ -32,8 +32,9 @@ cmdlet. For example, the *Last* parameter specifies the most recent Updating Run ## EXAMPLES ### Example 1: Get a detailed version of the last CAU report for the specified cluster -``` -PS C:\> Get-CauReport -ClusterName "Contoso-FC1" -Last -Detailed | Export-CauReport -Format HTML -Path "C:\temp\contoso-fc1_last.html" -TimeZone ([system.timezoneinfo]::Utc) +```powershell +$CauReport = Get-CauReport -ClusterName "Contoso-FC1" -Last -Detailed +$CauReport | Export-CauReport -Format HTML -Path "C:\temp\contoso-fc1_last.html" -TimeZone ([system.timezoneinfo]::Utc) ``` This command gets a detailed version of the last CAU report for the cluster named Contoso-FC1, then diff --git a/docset/winserver2022-ps/clusterawareupdating/Get-CauClusterRole.md b/docset/winserver2022-ps/clusterawareupdating/Get-CauClusterRole.md index eb698da723..21c65cb195 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Get-CauClusterRole.md +++ b/docset/winserver2022-ps/clusterawareupdating/Get-CauClusterRole.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating -ms.date: 12/20/2016 +ms.date: 09/27/2022 online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/get-cauclusterrole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CauClusterRole @@ -26,20 +26,8 @@ clustered role on the specified cluster. ## EXAMPLES ### Example 1: Get information about a CAU clustered role on the specified cluster -``` -PS C:\> Get-CauClusterRole -ClusterName "CONTOSO-FC1" - -Name Value ----- ----- -ResourceGroupName CAUCAUCldy8 -Status Online -StartDate 10/14/2011 3:00:00 AM -MaxFailedNodes 2 -MaxRetriesPerNode 2 -PostUpdateScript G:\verifyupdatesinstalled.ps1 -RequireAllNodesOnline On -DaysOfWeek Tuesday, Saturday -WeeksOfMonth {2, 4} +```powershell +Get-CauClusterRole -ClusterName "CONTOSO-FC1" ``` This command gets information about the CAU clustered role on the cluster named CONTOSO-FC1. diff --git a/docset/winserver2022-ps/clusterawareupdating/Get-CauPlugin.md b/docset/winserver2022-ps/clusterawareupdating/Get-CauPlugin.md index a0b0cbd0e0..88fed3ad7f 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Get-CauPlugin.md +++ b/docset/winserver2022-ps/clusterawareupdating/Get-CauPlugin.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating -ms.date: 12/20/2016 +ms.date: 09/27/2022 online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/get-cauplugin?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CauPlugin @@ -34,15 +34,8 @@ in CAU, see [How CAU Plug-ins Work](https://go.microsoft.com/fwlink/p/?LinkId=23 ## EXAMPLES ### Example 1: Get information about software update plug-ins -``` -PS C:\> Get-CauPlugin | Format-List -Property "*" - -Name : Microsoft.WindowsUpdatePlugin -BinaryPath : C:\Windows\system32\WindowsPowerShell\v1.0\Modules\ClusterAwareUpdating\ClusterAwareUpdating.dll -ClassName : MS.Internal.ClusterAwareUpdating.WuaPlugin -Name : Microsoft.HotfixPlugin -BinaryPath : C:\Windows\system32\WindowsPowerShell\v1.0\Modules\ClusterAwareUpdating\ClusterAwareUpdating.dll -ClassName : MS.Internal.ClusterAwareUpdating.HotfixPlugin +```powershell +Get-CauPlugin | Format-List -Property "*" ``` This command gets information about the software updating plug-ins that are registered in the local diff --git a/docset/winserver2022-ps/clusterawareupdating/Get-CauReport.md b/docset/winserver2022-ps/clusterawareupdating/Get-CauReport.md index 1d52d2aa64..a4365471cc 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Get-CauReport.md +++ b/docset/winserver2022-ps/clusterawareupdating/Get-CauReport.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating -ms.date: 12/20/2016 +ms.date: 09/27/2022 online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/get-caureport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CauReport @@ -50,25 +50,25 @@ Run report. By default, the report contains summaries only, but more detail can ## EXAMPLES ### Example 1: Get a detailed list of updating runs from the specified cluster -``` -PS C:\> Get-CauReport -ClusterName Contoso-FC1 -StartDate 01/01/2012 -Detailed +```powershell +Get-CauReport -ClusterName Contoso-FC1 -StartDate 01/01/2012 -Detailed ``` This command gets a detailed list of the updating runs performed on the cluster named Contoso-FC1 on 01/01/2012 or later. ### Example 2: Get a detailed list of updating runs from a date span from the specified cluster -``` -PS C:\> Get-CauReport -ClusterName "Contoso-FC1" -StartDate 01/01/2012 -EndDate 04/01/2012 -Detailed +```powershell +Get-CauReport -ClusterName "Contoso-FC1" -StartDate 01/01/2012 -EndDate 04/01/2012 -Detailed ``` This command gets a detailed list of the updating runs performed on the cluster called Contoso-FC1 starting with updating runs on 01/01/2012 and ending with updating runs on 04/01/2012. ### Example 3: Get the last updating run summary from the specified cluster -``` -PS C:\> $CauReportSummary = Get-CauReport "Contoso-FC1" -Last -PS C:\> Get-CauReport "Contoso-FC1" -Report $CauReportSummary +```powershell +$CauReportSummary = Get-CauReport "Contoso-FC1" -Last +Get-CauReport "Contoso-FC1" -Report $CauReportSummary ``` The first command gets the last updating run report summary from the cluster named Contoso-FC1 and diff --git a/docset/winserver2022-ps/clusterawareupdating/Get-CauRun.md b/docset/winserver2022-ps/clusterawareupdating/Get-CauRun.md index ffd2ed774d..637d22c7a8 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Get-CauRun.md +++ b/docset/winserver2022-ps/clusterawareupdating/Get-CauRun.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating -ms.date: 12/20/2016 +ms.date: 09/27/2022 online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/get-caurun?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-CauRun @@ -45,9 +45,11 @@ Use this cmdlet to monitor current updating runs. ## EXAMPLES ### Example 1: Get status information about the updating run in progress from the specified cluster +```powershell +Get-CauRun -ClusterName "CONTOSO-FC1" ``` -PS C:\> Get-CauRun -ClusterName "CONTOSO-FC1" +```output RunId : 834dd11e-584b-41f2-8d22-4c9c0471dbad RunStartTime : 10/13/2011 1:35:39 PM CurrentOrchestrator : NODE1 diff --git a/docset/winserver2022-ps/clusterawareupdating/Invoke-CauRun.md b/docset/winserver2022-ps/clusterawareupdating/Invoke-CauRun.md index 9f5d231997..2d287ca0f5 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Invoke-CauRun.md +++ b/docset/winserver2022-ps/clusterawareupdating/Invoke-CauRun.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating -ms.date: 12/20/2016 +ms.date: 09/27/2022 online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/invoke-caurun?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-CauRun @@ -54,8 +54,16 @@ exception is enabled on each node. ## EXAMPLES ### Example 1: Preform a scan and a full updating run on the specified cluster -``` -PS C:\> Invoke-CauRun -ClusterName "CONTOSO-FC1" -CauPluginName "Microsoft.WindowsUpdatePlugin" -MaxFailedNodes 1 -MaxRetriesPerNode 3 -RequireAllNodesOnline -Force +```powershell +$parameters = @{ + ClusterName = 'CONTOSO-FC1' + CauPluginName = 'Microsoft.WindowsUpdatePlugin' + MaxFailedNodes = '1' + MaxRetriesPerNode = '3' + RequireAllNodesOnline = $true + Force = $true +} +Invoke-CauRun @parameters ``` This command performs a scan and a full updating run on the cluster named CONTOSO-FC1. This cmdlet @@ -65,9 +73,23 @@ before marking the node as failed, and allows no more than one node to fail befo entire updating run as failed. Because the command specifies the *Force* parameter, the cmdlet runs without displaying confirmation prompts. +This example uses splatting to pass parameter values from the `$Parameters` variable to the command. +Learn more about [Splatting](/powershell/module/microsoft.powershell.core/about/about_splatting). + ### Example 2: Preform a scan and a full updating run on the specified cluster using multiple plug-ins -``` -PS C:\> Invoke-CauRun -ClusterName CONTOSO-FC1 -CauPluginName Microsoft.WindowsUpdatePlugin, Microsoft.HotfixPlugin -CauPluginArguments @{ }, @{ 'HotfixRootFolderPath' = '\\CauHotfixSrv\shareName' } -EnableFirewallRules -StopOnPluginFailure -SeparateReboots -Force +```powershell +$parameters = @{ + ClusterName = 'CONTOSO-FC1' + CauPluginName = 'Microsoft.WindowsUpdatePlugin', + 'Microsoft.HotfixPlugin' + CauPluginArguments = @{ }, + @{'HotfixRootFolderPath' = '\\CauHotfixSrv\shareName'} + StopOnPluginFailure = $true + EnableFirewallRules = $true + SeparateReboots = $true + Force = $true +} +Invoke-CauRun @parameters ``` This command performs a scan and a full updating run on the cluster named CONTOSO-FC1. This cmdlet @@ -81,9 +103,12 @@ applied by **Microsoft.HotfixPlugin plug-in**. If the installation of updates by **Microsoft.HotfixPlugin plug-in** installs updates. Because the command specifies the *Force* parameter, the cmdlet runs without displaying confirmation prompts. +This example uses splatting to pass parameter values from the `$Parameters` variable to the command. +Learn more about [Splatting](/powershell/module/microsoft.powershell.core/about/about_splatting). + ### Example 3: Recover from a previous updating run that failed on the specified cluster -``` -PS C:\> Invoke-CauRun -ClusterName "CONTOSO-FC1"-ForceRecovery -Force +```powershell +Invoke-CauRun -ClusterName "CONTOSO-FC1"-ForceRecovery -Force ``` This command recovers from a previous updating run that failed and left the cluster in a Locked diff --git a/docset/winserver2022-ps/clusterawareupdating/Invoke-CauScan.md b/docset/winserver2022-ps/clusterawareupdating/Invoke-CauScan.md index 2354c45663..00d254ef73 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Invoke-CauScan.md +++ b/docset/winserver2022-ps/clusterawareupdating/Invoke-CauScan.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating -ms.date: 12/20/2016 +ms.date: 09/27/2022 online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/invoke-causcan?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-CauScan @@ -36,8 +36,8 @@ that are discovered on the hotfix file share. ## EXAMPLES ### Example 1: Get a detailed list of the initial set of updates on the specified cluster -``` -PS C:\> Invoke-CauScan -ClusterName "CONTOSO-FC1" -CauPluginName "Microsoft.WindowsUpdatePlugin" -Verbose +```powershell +Invoke-CauScan -ClusterName "CONTOSO-FC1" -CauPluginName "Microsoft.WindowsUpdatePlugin" -Verbose ``` This command gets a detailed list of the initial set of updates that would currently be applied to @@ -47,10 +47,20 @@ includes only an initial set of updates, and does not include updates that might only after the initial updates are installed. ### Example 2: Get a detailed list of the initial set of updates on the specified cluster using a query string -``` -PS C:\>$SecPasswd = ConvertTo-SecureString "PlainTextPassword" -AsPlainText -Force -PS C:\> $Cred = New-Object System.Management.Automation.PSCredential ("username", $SecPasswd) -PS C:\> Invoke-CauScan -ClusterName CONTOSO-FC1 -CauPluginName Microsoft.WindowsUpdatePlugin, Microsoft.HotfixPlugin -CauPluginArguments @{'QueryString'="IsInstalled=0 and Type='Software' and IsHidden=0"},@{'HotfixRootFolderPath' = '\\CauHotfixSrv\shareName'} -Credential $Cred +```powershell +$SecPasswd = ConvertTo-SecureString "PlainTextPassword" -AsPlainText -Force +$Cred = New-Object System.Management.Automation.PSCredential ("username", $SecPasswd) +$Parameters = @{ + ClusterName = 'CONTOSO-FC1' + CauPluginName = 'Microsoft.WindowsUpdatePlugin', + 'Microsoft.HotfixPlugin' + CauPluginArguments = @{'QueryString'="IsInstalled=0 and Type='Software' and IsHidden=0"}, + @{'HotfixRootFolderPath' = '\\CauHotfixSrv\shareName'} + StopOnPluginFailure = $true + EnableFirewallRules = $true + Force = $true +} +Invoke-CauScan $Parameters -Credential $Cred ``` This example gets a detailed list of the initial set of updates that would currently be applied to @@ -60,6 +70,9 @@ by the **Microsoft.WindowsUpdatePlugin** plug-in, using a specified query string downloaded to \\\\CauHotfixSrv\shareName. This example also shows how to pass the administrative credentials for cluster CONTOSO-FC1 to the cmdlet. +This example uses splatting to pass parameter values from the `$Parameters` variable to the command. +Learn more about [Splatting](/powershell/module/microsoft.powershell.core/about/about_splatting). + ## PARAMETERS ### -CauPluginArguments diff --git a/docset/winserver2022-ps/clusterawareupdating/Register-CauPlugin.md b/docset/winserver2022-ps/clusterawareupdating/Register-CauPlugin.md index 80b7e8908b..fc8fb8de0c 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Register-CauPlugin.md +++ b/docset/winserver2022-ps/clusterawareupdating/Register-CauPlugin.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating -ms.date: 12/20/2016 +ms.date: 09/27/2022 online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/register-cauplugin?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Register-CauPlugin @@ -33,8 +33,8 @@ Services (WSUS) server. For more information about how plug-ins work in CAU, see ## EXAMPLES ### Example 1: Register a specific plug-in located in the specified folder -``` -PS C:\> Register-CauPlugin -Path "C:\PluginDevelopment\Plugin01.dll" -Force +```powershell +Register-CauPlugin -Path "C:\PluginDevelopment\Plugin01.dll" -Force ``` The command registers a plug-in called Plugin01.dll located in the C:\PluginDevelopment folder. diff --git a/docset/winserver2022-ps/clusterawareupdating/Remove-CauClusterRole.md b/docset/winserver2022-ps/clusterawareupdating/Remove-CauClusterRole.md index b2da166fb0..63748ae9bf 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Remove-CauClusterRole.md +++ b/docset/winserver2022-ps/clusterawareupdating/Remove-CauClusterRole.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating -ms.date: 12/20/2016 +ms.date: 09/27/2022 online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/remove-cauclusterrole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-CauClusterRole @@ -32,8 +32,8 @@ for the CAU clustered role, unless you previously prestaged or specified the VCO ## EXAMPLES ### Example 1: Remove an instance of a CAU clustered role configured on the specified cluster -``` -PS C:\> Remove-CauClusterRole -ClusterName "CONTOSO-FC1" -Force +```powershell +Remove-CauClusterRole -ClusterName "CONTOSO-FC1" -Force ``` This command removes the instance of the CAU clustered role that is configured on the cluster named diff --git a/docset/winserver2022-ps/clusterawareupdating/Save-CauDebugTrace.md b/docset/winserver2022-ps/clusterawareupdating/Save-CauDebugTrace.md index abf81ce23c..f0b3f90afc 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Save-CauDebugTrace.md +++ b/docset/winserver2022-ps/clusterawareupdating/Save-CauDebugTrace.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating -ms.date: 12/20/2016 +ms.date: 09/27/2022 online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/save-caudebugtrace?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Save-CauDebugTrace @@ -32,8 +32,8 @@ Compatibility Mode (HTTP-In)** firewall exception is enabled on each node. ## EXAMPLES ### Example 1: Save debug tracing information for the specified cluster -``` -PS C:\> Save-CauDebugTrace -ClusterName "CONTOSO-FC1" -FilePath "C:\temp\testrun.zip" +```powershell +Save-CauDebugTrace -ClusterName "CONTOSO-FC1" -FilePath "C:\temp\testrun.zip" ``` This command saves the debug tracing information for the cluster named CONTOSO-FC1, to a trace file diff --git a/docset/winserver2022-ps/clusterawareupdating/Set-CauClusterRole.md b/docset/winserver2022-ps/clusterawareupdating/Set-CauClusterRole.md index 3f81944c73..bc0071b651 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Set-CauClusterRole.md +++ b/docset/winserver2022-ps/clusterawareupdating/Set-CauClusterRole.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating -ms.date: 12/20/2016 +ms.date: 09/27/2022 online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/set-cauclusterrole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-CauClusterRole @@ -66,8 +66,15 @@ exception is enabled on each node. ## EXAMPLES ### Example 1: Configure settings for a CAU cluster role on the specified cluster on the first and second weeks of the month -``` -PS C:\> Set-CauClusterRole -ClusterName "CONTOSO-FC1" -DaysOfWeek Tuesday -WeeksOfMonth 1,2 -RebootTimeoutMinutes 10 -Force +```powershell +$Parameters = @{ + ClusterName = 'CONTOSO-FC1' + DaysOfWeek = 'Tuesday' + WeeksOfMonth = '1,2' + RebootTimeoutMinutes = '10' + Force = $true +} +Set-CauClusterRole $Parameters ``` This command configures settings for the CAU clustered role on the cluster named CONTOSO-FC1. The @@ -77,10 +84,24 @@ restart is necessary. If the restart does not complete within this time, then th that node is marked as failed. Because the command specifies the *Force* parameter, the cmdlet runs without displaying confirmation prompts. -### Example 2: Configure settings for a CAU cluster role on the specified cluster on the second week of the month -``` -PS C:\> Set-CauClusterRole -ClusterName "CONTOSO-FC1" -DaysOfWeek Tuesday -IntervalWeeks 2 -RebootTimeoutMinutes 10 -PostUpdateScript "c:\verifyupdatesinstalled.ps1" -Force +This example uses splatting to pass parameter values from the `$Parameters` variable to the command. +Learn more about [Splatting](/powershell/module/microsoft.powershell.core/about/about_splatting). +### Example 2: Configure settings for a CAU cluster role on the specified cluster on the second week of the month +```powershell +$Parameters = @{ + ClusterName = 'CONTOSO-FC1' + DaysOfWeek = 'Tuesday' + WeeksOfMonth = '1,2' + IntervalWeeks = '2' + RebootTimeoutMinutes = '10' + PostUpdateScript = 'c:\verifyupdatesinstalled.ps1' + Force = $true +} +Set-CauClusterRole $Parameters +``` + +```output Name Value ---- ----- ResourceGroupName CAUCAUCldy8 @@ -101,9 +122,12 @@ leaves Maintenance mode. The script is located at the root of drive G: in cluste named verifyupdatesinstalled.ps1. Because the command specifies the *Force* parameter, the cmdlet runs without displaying confirmation prompts. +This example uses splatting to pass parameter values from the `$Parameters` variable to the command. +Learn more about [Splatting](/powershell/module/microsoft.powershell.core/about/about_splatting). + ### Example 3: Initiate an updating run on the specified cluster -``` -PS C:\> Set-CauClusterRole -ClusterName "CONTOSO-FC1" -UpdateNow -Force +```powershell +Set-CauClusterRole -ClusterName "CONTOSO-FC1" -UpdateNow -Force ``` This command causes the CAU clustered role to initiate an updating run immediately on the cluster @@ -111,10 +135,17 @@ named CONTOSO-FC1. Because the command specifies the *Force* parameter, the cmdl displaying confirmation prompts ### Example 4: Configure settings for a CAU cluster role on the specified cluster -``` -PS C:\> $WarnAfter = New-TimeSpan -hour 1 -minute 90 -seconds 10 -PS C:\> $StopAfter = New-TimeSpan -hour 2 -minute 90 -seconds 10 -PS C:\> Set-CauClusterRole -ClusterName "CONTOSO-FC1" -WarnAfter $WarnAfter -StopAfter $StopAfter -StartDate 1/1/2012 -Force +```powershell +$WarnAfter = New-TimeSpan -hour 1 -minute 90 -seconds 10 +$StopAfter = New-TimeSpan -hour 2 -minute 90 -seconds 10 +$parameters = @{ + ClusterName = 'CONTOSO-FC1' + WarnAfter = $WarnAfter + StopAfter = $StopAfter + StartDate = [DateTime] '1/1/2012' + Force = $true +} +Set-CauClusterRole @parameters ``` This example configures settings for the CAU clustered role on the cluster named CONTOSO-FC1. Time @@ -122,6 +153,9 @@ spans are specified for logging a warning or canceling the updating run if it is earliest date that an updating run can be triggered is 1/1/2012. Because the command specifies the *Force* parameter, the cmdlet runs without displaying confirmation prompts +This example uses splatting to pass parameter values from the `$Parameters` variable to the command. +Learn more about [Splatting](/powershell/module/microsoft.powershell.core/about/about_splatting). + ## PARAMETERS ### -CauPluginArguments diff --git a/docset/winserver2022-ps/clusterawareupdating/Stop-CauRun.md b/docset/winserver2022-ps/clusterawareupdating/Stop-CauRun.md index 11ba503707..64607fbd88 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Stop-CauRun.md +++ b/docset/winserver2022-ps/clusterawareupdating/Stop-CauRun.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating -ms.date: 12/20/2016 +ms.date: 09/27/2022 online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/stop-caurun?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-CauRun @@ -27,7 +27,7 @@ The **Stop-CauRun** cmdlet stops an updating run that is in progress on a failov ### Example 1: Stop an updating run on the specified cluster ``` -PS C:\> Stop-CauRun -ClusterName "CONTOSO-FC1" -Wait -Force +Stop-CauRun -ClusterName "CONTOSO-FC1" -Wait -Force ``` This command stops the updating run that is being performed by the CAU Update Coordinator that is diff --git a/docset/winserver2022-ps/clusterawareupdating/Test-CauSetup.md b/docset/winserver2022-ps/clusterawareupdating/Test-CauSetup.md index b85536eee7..16d6c0e83a 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Test-CauSetup.md +++ b/docset/winserver2022-ps/clusterawareupdating/Test-CauSetup.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating -ms.date: 12/20/2016 +ms.date: 09/27/2022 online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/test-causetup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-CauSetup @@ -31,9 +31,8 @@ You must run the **Test-CauSetup** cmdlet with local administrative credentials. ## EXAMPLES ### Example 1: Test whether the specified failover cluster is set up for CAU -``` -PS C:\>Test-CauSetup -ClusterName "CONTOSO-FC1" -Test-CauSetup completed successfully. To view the results, run the "Get-BpaResult Microsoft/Windows/ClusterAwareUpdating" Windows PowerShell cmdlet. +```powershell +Test-CauSetup -ClusterName "CONTOSO-FC1" ``` This example tests whether the failover cluster named CONTOSO-FC1 is properly set up for CAU. diff --git a/docset/winserver2022-ps/clusterawareupdating/Unregister-CauPlugin.md b/docset/winserver2022-ps/clusterawareupdating/Unregister-CauPlugin.md index cfdae6bf03..616f10fded 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Unregister-CauPlugin.md +++ b/docset/winserver2022-ps/clusterawareupdating/Unregister-CauPlugin.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterAwareUpdating.dll-Help.xml Module Name: ClusterAwareUpdating -ms.date: 12/20/2016 +ms.date: 09/27/2022 online version: https://learn.microsoft.com/powershell/module/clusterawareupdating/unregister-cauplugin?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Unregister-CauPlugin @@ -28,8 +28,8 @@ plug-ins, which are installed with CAU, cannot be unregistered. ## EXAMPLES ### Example 1: Unregister a plug-in that is used by CAU -``` -PS C:\> Unregister-CauPlugin -Name "Plugin01" +```powershell +Unregister-CauPlugin -Name "Plugin01" ``` This command removes the plug-in named Plugin01 from the list of plug-ins that are used by CAU. From 72b96290d8bf20dd014b681595376b66d070198d Mon Sep 17 00:00:00 2001 From: Robin Harwood <19212983+robinharwood@users.noreply.github.com> Date: Tue, 27 Sep 2022 23:23:38 +0100 Subject: [PATCH 272/965] Applied suggestions from code review Co-authored-by: Sean Wheeler --- .../clusterawareupdating/Add-CauClusterRole.md | 2 +- .../clusterawareupdating/Export-CauReport.md | 4 ++-- .../winserver2022-ps/clusterawareupdating/Get-CauReport.md | 2 +- .../winserver2022-ps/clusterawareupdating/Invoke-CauRun.md | 4 ++-- .../winserver2022-ps/clusterawareupdating/Invoke-CauScan.md | 4 ++-- .../clusterawareupdating/Save-CauDebugTrace.md | 2 +- .../clusterawareupdating/Set-CauClusterRole.md | 6 +++--- 7 files changed, 12 insertions(+), 12 deletions(-) diff --git a/docset/winserver2022-ps/clusterawareupdating/Add-CauClusterRole.md b/docset/winserver2022-ps/clusterawareupdating/Add-CauClusterRole.md index 84904f379c..311d57709c 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Add-CauClusterRole.md +++ b/docset/winserver2022-ps/clusterawareupdating/Add-CauClusterRole.md @@ -107,7 +107,7 @@ enabled, the Remote Shutdown Windows Firewall rule group will be enabled on each Because the command uses the *Force* parameter, the cmdlet runs without displaying confirmation prompts. -This example uses splatting to pass parameter values from the `$Parameters` variable to the command. +This example uses splatting to pass parameter values from the `$parameters` variable to the command. Learn more about [Splatting](/powershell/module/microsoft.powershell.core/about/about_splatting). ### Example 3: Add a CAU clustered role on the specified cluster using plug-ins diff --git a/docset/winserver2022-ps/clusterawareupdating/Export-CauReport.md b/docset/winserver2022-ps/clusterawareupdating/Export-CauReport.md index b3423859d2..c45229a506 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Export-CauReport.md +++ b/docset/winserver2022-ps/clusterawareupdating/Export-CauReport.md @@ -38,8 +38,8 @@ $CauReport | Export-CauReport -Format HTML -Path "C:\temp\contoso-fc1_last.html" ``` This command gets a detailed version of the last CAU report for the cluster named Contoso-FC1, then -exports that report in HTML format to the path C:\temp\contoso-fc1_last.html. The timestamps in the -report are formatted in the Coordinated Universal Time (UTC) zone. +exports that report in HTML format to the path `C:\temp\contoso-fc1_last.html`. The timestamps in +the report are formatted in the Coordinated Universal Time (UTC) zone. ## PARAMETERS diff --git a/docset/winserver2022-ps/clusterawareupdating/Get-CauReport.md b/docset/winserver2022-ps/clusterawareupdating/Get-CauReport.md index a4365471cc..34ed919729 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Get-CauReport.md +++ b/docset/winserver2022-ps/clusterawareupdating/Get-CauReport.md @@ -72,7 +72,7 @@ Get-CauReport "Contoso-FC1" -Report $CauReportSummary ``` The first command gets the last updating run report summary from the cluster named Contoso-FC1 and -stores the result in the variable named $CauReportSummary. +stores the result in the variable named `$CauReportSummary`. The second command gets the detailed report from the information stored in the $CauReportSummary variable. diff --git a/docset/winserver2022-ps/clusterawareupdating/Invoke-CauRun.md b/docset/winserver2022-ps/clusterawareupdating/Invoke-CauRun.md index 2d287ca0f5..5a22774186 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Invoke-CauRun.md +++ b/docset/winserver2022-ps/clusterawareupdating/Invoke-CauRun.md @@ -73,7 +73,7 @@ before marking the node as failed, and allows no more than one node to fail befo entire updating run as failed. Because the command specifies the *Force* parameter, the cmdlet runs without displaying confirmation prompts. -This example uses splatting to pass parameter values from the `$Parameters` variable to the command. +This example uses splatting to pass parameter values from the `$parameters` variable to the command. Learn more about [Splatting](/powershell/module/microsoft.powershell.core/about/about_splatting). ### Example 2: Preform a scan and a full updating run on the specified cluster using multiple plug-ins @@ -103,7 +103,7 @@ applied by **Microsoft.HotfixPlugin plug-in**. If the installation of updates by **Microsoft.HotfixPlugin plug-in** installs updates. Because the command specifies the *Force* parameter, the cmdlet runs without displaying confirmation prompts. -This example uses splatting to pass parameter values from the `$Parameters` variable to the command. +This example uses splatting to pass parameter values from the `$parameters` variable to the command. Learn more about [Splatting](/powershell/module/microsoft.powershell.core/about/about_splatting). ### Example 3: Recover from a previous updating run that failed on the specified cluster diff --git a/docset/winserver2022-ps/clusterawareupdating/Invoke-CauScan.md b/docset/winserver2022-ps/clusterawareupdating/Invoke-CauScan.md index 00d254ef73..6083f2cf37 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Invoke-CauScan.md +++ b/docset/winserver2022-ps/clusterawareupdating/Invoke-CauScan.md @@ -67,10 +67,10 @@ This example gets a detailed list of the initial set of updates that would curre each node in the cluster named CONTOSO-FC1. The list is based on the updates that would be applied by the **Microsoft.WindowsUpdatePlugin** plug-in, using a specified query string, and the **Microsoft.HotfixPlugin**, after the necessary hotfixes and the hotfix configuration file have been -downloaded to \\\\CauHotfixSrv\shareName. This example also shows how to pass the administrative +downloaded to `\\CauHotfixSrv\shareName`. This example also shows how to pass the administrative credentials for cluster CONTOSO-FC1 to the cmdlet. -This example uses splatting to pass parameter values from the `$Parameters` variable to the command. +This example uses splatting to pass parameter values from the `$parameters` variable to the command. Learn more about [Splatting](/powershell/module/microsoft.powershell.core/about/about_splatting). ## PARAMETERS diff --git a/docset/winserver2022-ps/clusterawareupdating/Save-CauDebugTrace.md b/docset/winserver2022-ps/clusterawareupdating/Save-CauDebugTrace.md index f0b3f90afc..f2409498d2 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Save-CauDebugTrace.md +++ b/docset/winserver2022-ps/clusterawareupdating/Save-CauDebugTrace.md @@ -37,7 +37,7 @@ Save-CauDebugTrace -ClusterName "CONTOSO-FC1" -FilePath "C:\temp\testrun.zip" ``` This command saves the debug tracing information for the cluster named CONTOSO-FC1, to a trace file -called testrun.zip in the C:\temp folder. +called `testrun.zip` in the `C:\temp` folder. ## PARAMETERS diff --git a/docset/winserver2022-ps/clusterawareupdating/Set-CauClusterRole.md b/docset/winserver2022-ps/clusterawareupdating/Set-CauClusterRole.md index bc0071b651..06f0bb5372 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Set-CauClusterRole.md +++ b/docset/winserver2022-ps/clusterawareupdating/Set-CauClusterRole.md @@ -84,7 +84,7 @@ restart is necessary. If the restart does not complete within this time, then th that node is marked as failed. Because the command specifies the *Force* parameter, the cmdlet runs without displaying confirmation prompts. -This example uses splatting to pass parameter values from the `$Parameters` variable to the command. +This example uses splatting to pass parameter values from the `$parameters` variable to the command. Learn more about [Splatting](/powershell/module/microsoft.powershell.core/about/about_splatting). ### Example 2: Configure settings for a CAU cluster role on the specified cluster on the second week of the month @@ -122,7 +122,7 @@ leaves Maintenance mode. The script is located at the root of drive G: in cluste named verifyupdatesinstalled.ps1. Because the command specifies the *Force* parameter, the cmdlet runs without displaying confirmation prompts. -This example uses splatting to pass parameter values from the `$Parameters` variable to the command. +This example uses splatting to pass parameter values from the `$parameters` variable to the command. Learn more about [Splatting](/powershell/module/microsoft.powershell.core/about/about_splatting). ### Example 3: Initiate an updating run on the specified cluster @@ -153,7 +153,7 @@ spans are specified for logging a warning or canceling the updating run if it is earliest date that an updating run can be triggered is 1/1/2012. Because the command specifies the *Force* parameter, the cmdlet runs without displaying confirmation prompts -This example uses splatting to pass parameter values from the `$Parameters` variable to the command. +This example uses splatting to pass parameter values from the `$parameters` variable to the command. Learn more about [Splatting](/powershell/module/microsoft.powershell.core/about/about_splatting). ## PARAMETERS From 976a8fee8a5b8c2bbaec05d6290bb3df99044001 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Tue, 27 Sep 2022 23:31:36 +0100 Subject: [PATCH 273/965] Variable casing --- .../clusterawareupdating/Add-CauClusterRole.md | 4 ++-- .../clusterawareupdating/Invoke-CauScan.md | 4 ++-- .../clusterawareupdating/Set-CauClusterRole.md | 8 ++++---- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/docset/winserver2022-ps/clusterawareupdating/Add-CauClusterRole.md b/docset/winserver2022-ps/clusterawareupdating/Add-CauClusterRole.md index 311d57709c..8a4e151efd 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Add-CauClusterRole.md +++ b/docset/winserver2022-ps/clusterawareupdating/Add-CauClusterRole.md @@ -80,7 +80,7 @@ that cluster must be running. If it is not already enabled, the Remote Shutdown rule group will be enabled on each cluster node. Because the command uses the *Force* parameter, the cmdlet runs without displaying confirmation prompts. -This example uses splatting to pass parameter values from the `$Parameters` variable to the command. +This example uses splatting to pass parameter values from the `$parameters` variable to the command. Learn more about [Splatting](/powershell/module/microsoft.powershell.core/about/about_splatting). ### Example 2: Add a CAU clustered role on the specified cluster at a specific interval @@ -135,7 +135,7 @@ it is not already enabled, the Remote Shutdown Windows Firewall rule group is en cluster node. Because the command uses the *Force* parameter, the cmdlet runs without displaying confirmation prompts. -This example uses splatting to pass parameter values from the `$Parameters` variable to the command. +This example uses splatting to pass parameter values from the `$parameters` variable to the command. Learn more about [Splatting](/powershell/module/microsoft.powershell.core/about/about_splatting). ## PARAMETERS diff --git a/docset/winserver2022-ps/clusterawareupdating/Invoke-CauScan.md b/docset/winserver2022-ps/clusterawareupdating/Invoke-CauScan.md index 6083f2cf37..b158d8e416 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Invoke-CauScan.md +++ b/docset/winserver2022-ps/clusterawareupdating/Invoke-CauScan.md @@ -50,7 +50,7 @@ only after the initial updates are installed. ```powershell $SecPasswd = ConvertTo-SecureString "PlainTextPassword" -AsPlainText -Force $Cred = New-Object System.Management.Automation.PSCredential ("username", $SecPasswd) -$Parameters = @{ +$parameters = @{ ClusterName = 'CONTOSO-FC1' CauPluginName = 'Microsoft.WindowsUpdatePlugin', 'Microsoft.HotfixPlugin' @@ -60,7 +60,7 @@ $Parameters = @{ EnableFirewallRules = $true Force = $true } -Invoke-CauScan $Parameters -Credential $Cred +Invoke-CauScan $parameters -Credential $Cred ``` This example gets a detailed list of the initial set of updates that would currently be applied to diff --git a/docset/winserver2022-ps/clusterawareupdating/Set-CauClusterRole.md b/docset/winserver2022-ps/clusterawareupdating/Set-CauClusterRole.md index 06f0bb5372..6fdc030555 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Set-CauClusterRole.md +++ b/docset/winserver2022-ps/clusterawareupdating/Set-CauClusterRole.md @@ -67,14 +67,14 @@ exception is enabled on each node. ### Example 1: Configure settings for a CAU cluster role on the specified cluster on the first and second weeks of the month ```powershell -$Parameters = @{ +$parameters = @{ ClusterName = 'CONTOSO-FC1' DaysOfWeek = 'Tuesday' WeeksOfMonth = '1,2' RebootTimeoutMinutes = '10' Force = $true } -Set-CauClusterRole $Parameters +Set-CauClusterRole $parameters ``` This command configures settings for the CAU clustered role on the cluster named CONTOSO-FC1. The @@ -89,7 +89,7 @@ Learn more about [Splatting](/powershell/module/microsoft.powershell.core/about/ ### Example 2: Configure settings for a CAU cluster role on the specified cluster on the second week of the month ```powershell -$Parameters = @{ +$parameters = @{ ClusterName = 'CONTOSO-FC1' DaysOfWeek = 'Tuesday' WeeksOfMonth = '1,2' @@ -98,7 +98,7 @@ $Parameters = @{ PostUpdateScript = 'c:\verifyupdatesinstalled.ps1' Force = $true } -Set-CauClusterRole $Parameters +Set-CauClusterRole $parameters ``` ```output From 0e4bc166c8c3d8b7f81186faaf8aefbf0c99f9df Mon Sep 17 00:00:00 2001 From: Robin Harwood <19212983+robinharwood@users.noreply.github.com> Date: Mon, 17 Oct 2022 14:27:19 +0100 Subject: [PATCH 274/965] Apply suggestions from code review Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- .../clusterawareupdating/Add-CauClusterRole.md | 2 +- .../winserver2022-ps/clusterawareupdating/Invoke-CauRun.md | 5 ++--- .../winserver2022-ps/clusterawareupdating/Invoke-CauScan.md | 2 +- .../clusterawareupdating/Set-CauClusterRole.md | 4 ++-- 4 files changed, 6 insertions(+), 7 deletions(-) diff --git a/docset/winserver2022-ps/clusterawareupdating/Add-CauClusterRole.md b/docset/winserver2022-ps/clusterawareupdating/Add-CauClusterRole.md index bf75a0e664..a73281b9da 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Add-CauClusterRole.md +++ b/docset/winserver2022-ps/clusterawareupdating/Add-CauClusterRole.md @@ -91,7 +91,7 @@ PS C:\> Add-CauClusterRole -ClusterName "CONTOSO-FC1" -CauPluginName Microsoft.W This command adds the CAU clustered role, using a default name, on the cluster called CONTOSO-FC1. The CAU clustered role is configured to perform updates using the **Microsoft.WindowsUpdatePlugin** plug-in with the optional **IncludeRecommendedUpdates** parameter set to True, and using the -**Microsoft.HotfixPlugin plug-in** using the hotfix root folder \\\\CauHotfixSrv\shareName and the +**Microsoft.HotfixPlugin plug-in** using the hotfix root folder `\\CauHotfixSrv\shareName` and the default hotfix configuration file. If a failure occurs during the installation of updates on a node by **Microsoft.WindowsUpdatePlugin**, updates are applied by **Microsoft.HotfixPlugin plug-in**. If it isn't already enabled, the Remote Shutdown Windows Firewall rule group is enabled on each diff --git a/docset/winserver2022-ps/clusterawareupdating/Invoke-CauRun.md b/docset/winserver2022-ps/clusterawareupdating/Invoke-CauRun.md index 02a186c51e..14b2871a03 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Invoke-CauRun.md +++ b/docset/winserver2022-ps/clusterawareupdating/Invoke-CauRun.md @@ -74,7 +74,7 @@ PS C:\> Invoke-CauRun -ClusterName CONTOSO-FC1 -CauPluginName Microsoft.WindowsU This command performs a scan and a full updating run on the cluster named CONTOSO-FC1. This cmdlet uses the **Microsoft.WindowsUpdatePlugin** plug-in with the default configuration, and the -**Microsoft.HotfixPlugin** plug-in using the hotfix root folder \\\\CauHotfixSrv\shareName and the +**Microsoft.HotfixPlugin** plug-in using the hotfix root folder `\\CauHotfixSrv\shareName` and the default hotfix configuration file. If it isn't already enabled, the **Remote Shutdown** Windows Firewall rule group is enabled on each cluster node before the updating run. If a failure occurs during the installation of updates on a node by **Microsoft.WindowsUpdatePlugin**, updates aren't @@ -528,8 +528,7 @@ succeed if the underlying clustered space is in degraded condition. If `Suspend-ClusterNode` fails with ERROR_CLUSTER_SPACE_DEGRADED error, CAU will keep retrying for **SuspendClusterNodeTimeoutMinutes** or suspend the call if the command succeeds. -The retries for this error don't count towards the **MaxRetriesPerNode** parameter set by the user -parameter set by the user. +The retries for this error don't count towards the **MaxRetriesPerNode** parameter set by the user. The timeout value is per cluster node. So CAU could potentially spend the amount of time specified for this value for every node in the cluster in the worst case. diff --git a/docset/winserver2022-ps/clusterawareupdating/Invoke-CauScan.md b/docset/winserver2022-ps/clusterawareupdating/Invoke-CauScan.md index d1d9e3948f..1f39e4e2f2 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Invoke-CauScan.md +++ b/docset/winserver2022-ps/clusterawareupdating/Invoke-CauScan.md @@ -181,7 +181,7 @@ plug-in in the plug-in order passed into the **CauPluginName** parameter then mu used during a scan for updates By default, CAU scans and stages the applicable updates for all plug-ins in parallel. -This parameter is valid only when multiple plug-ins are specified in **CauPluginName** parameter. +This parameter is valid only when multiple plug-ins are specified in the **CauPluginName** parameter. If a single plug-in is specified, a warning appears. ```yaml diff --git a/docset/winserver2022-ps/clusterawareupdating/Set-CauClusterRole.md b/docset/winserver2022-ps/clusterawareupdating/Set-CauClusterRole.md index be818c7fa9..61f19d03a7 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Set-CauClusterRole.md +++ b/docset/winserver2022-ps/clusterawareupdating/Set-CauClusterRole.md @@ -504,7 +504,7 @@ By default, CAU scans and stages the applicable updates for all plug-ins in para the configuration of this parameter, CAU installs the applicable updates for each plug-in sequentially. -The parameter is valid only when multiple plug-ins are specified in **CauPluginName** parameter. If a +The parameter is valid only when multiple plug-ins are specified in the **CauPluginName** parameter. If a single plug-in is specified, a warning appears. ```yaml @@ -597,7 +597,7 @@ Accept wildcard characters: False ``` ### -SuspendClusterNodeTimeoutMinutes -Specifies the maximum amount of time CAU should wait for the Suspend-ClusterNodecmdlet to succeed if +Specifies the maximum amount of time CAU should wait for the `Suspend-ClusterNode` cmdlet to succeed if the underlying clustered space is in degraded condition. If `Suspend-ClusterNode` fails with ERROR_CLUSTER_SPACE_DEGRADED error, CAU will keep retrying for From 7de67b00f1a61f2b8655413853ed640fcff7a447 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Wed, 28 Sep 2022 10:53:43 +0100 Subject: [PATCH 275/965] Corrected header formatting --- .../Add-CauClusterRole.md | 36 +++++++++++++++++ .../Disable-CauClusterRole.md | 8 ++++ .../Enable-CauClusterRole.md | 8 ++++ .../clusterawareupdating/Export-CauReport.md | 11 ++++++ .../Get-CauClusterRole.md | 5 +++ .../clusterawareupdating/Get-CauPlugin.md | 4 ++ .../clusterawareupdating/Get-CauReport.md | 16 ++++++++ .../clusterawareupdating/Get-CauRun.md | 12 ++++++ .../clusterawareupdating/Invoke-CauRun.md | 31 +++++++++++++++ .../clusterawareupdating/Invoke-CauScan.md | 10 +++++ .../Register-CauPlugin.md | 6 +++ .../Remove-CauClusterRole.md | 8 ++++ .../Save-CauDebugTrace.md | 8 ++++ .../Set-CauClusterRole.md | 39 +++++++++++++++++++ .../clusterawareupdating/Stop-CauRun.md | 7 ++++ .../clusterawareupdating/Test-CauSetup.md | 5 +++ .../Unregister-CauPlugin.md | 6 +++ 17 files changed, 220 insertions(+) diff --git a/docset/winserver2022-ps/clusterawareupdating/Add-CauClusterRole.md b/docset/winserver2022-ps/clusterawareupdating/Add-CauClusterRole.md index 48a2a48a2a..8cfdb20fc6 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Add-CauClusterRole.md +++ b/docset/winserver2022-ps/clusterawareupdating/Add-CauClusterRole.md @@ -16,6 +16,7 @@ Adds the CAU clustered role that provides the self-updating functionality to the ## SYNTAX ### MonthlyDayOfWeek (Default) + ``` Add-CauClusterRole [-VirtualComputerObjectName ] [-GroupName ] [-StartDate ] [-DaysOfWeek ] [-WeeksOfMonth ] @@ -29,6 +30,7 @@ Add-CauClusterRole [-VirtualComputerObjectName ] [-GroupName ] ``` ### Weekly + ``` Add-CauClusterRole [-VirtualComputerObjectName ] [-GroupName ] [-StartDate ] [-DaysOfWeek ] [-IntervalWeeks ] @@ -42,6 +44,7 @@ Add-CauClusterRole [-VirtualComputerObjectName ] [-GroupName ] ``` ## DESCRIPTION + The **Add-CauClusterRole** cmdlet adds the Cluster-Aware Updating (CAU) clustered role that provides the self-updating functionality to the specified cluster. When the CAU clustered role has been added to a cluster, the failover cluster can update itself on the schedule that is specified by the user, @@ -54,6 +57,7 @@ Mode (HTTP-In) firewall exception is enabled on each node. ## EXAMPLES ### Example 1: Add a CAU clustered role on the specified cluster at a specific interval + ``` PS C:\> Add-CauClusterRole -ClusterName "CONTOSO-FC1" -DaysOfWeek Tuesday,Saturday -WeeksOfMonth 2,4 -MaxFailedNodes 2 -MaxRetriesPerNode 2 -PostUpdateScript \\CONTOSOFileShare\scripts\verifyupdatesinstalled.ps1 -RequireAllNodesOnline -EnableFirewallRules -Force ``` @@ -68,6 +72,7 @@ rule group will be enabled on each cluster node. Because the command uses the *F cmdlet runs without displaying confirmation prompts. ### Example 2: Add a CAU clustered role on the specified cluster at a specific interval + ``` PS C:\> Add-CauClusterRole -ClusterName "CONTOSO-FC1" -DaysOfWeek Tuesday,Saturday -IntervalWeeks 3 -MaxFailedNodes 2 -MaxRetriesPerNode 2 -EnableFirewallRules -Force ``` @@ -82,6 +87,7 @@ Because the command uses the *Force* parameter, the cmdlet runs without displayi prompts. ### Example 3: Add a CAU clustered role on the specified cluster using plug-ins + ``` PS C:\> Add-CauClusterRole -ClusterName "CONTOSO-FC1" -CauPluginName Microsoft.WindowsUpdatePlugin, Microsoft.HotfixPlugin -CauPluginArguments @{ 'IncludeRecommendedUpdates' = 'True' }, @{ 'HotfixRootFolderPath' = '\\CauHotfixSrv\shareName ' } -StopOnPluginFailure -EnableFirewallRules -Force ``` @@ -99,6 +105,7 @@ confirmation prompts. ## PARAMETERS ### -CauPluginArguments + Specifies an array of name=value pairs (arguments) for each updating plug-in to use. For instance, to specify a Domain argument for one plug-in: - `@{Domain=Domain.local}` @@ -157,6 +164,7 @@ Accept wildcard characters: False ``` ### -CauPluginName + Specifies one or more plug-ins to use when performing scans or updates. You can specify multiple values separated with commas. The default is the Microsoft.WindowsUpdatePlugin plug-in. This plug-in coordinates the Windows Update Agent software resident on each cluster node, the same software that @@ -177,6 +185,7 @@ Accept wildcard characters: False ``` ### -ClusterName + Specifies the name of the cluster on which to create the CAU clustered role. This parameter is only required when this cmdlet is not run on a failover cluster node, or this cmdlet is used to reference a failover cluster different from where the cmdlet is run. @@ -194,6 +203,7 @@ Accept wildcard characters: False ``` ### -ConfigurationName + Specifies the Windows PowerShell session configuration that defines the session in which scripts, specified by the *PreUpdateScript* and *PostUpdateScript* parameters, and cmdlets are run, and can limit the cmdlets that are available to be run. If either a pre-update or post-update script is @@ -213,6 +223,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -228,6 +239,7 @@ Accept wildcard characters: False ``` ### -Credential + Specifies the administrative credentials for the target cluster. ```yaml @@ -243,6 +255,7 @@ Accept wildcard characters: False ``` ### -DaysOfWeek + Specifies the days of the week on which the updating task will be triggered. Multiple values can be specified either separated with commas or as a hexadecimal sum. @@ -270,6 +283,7 @@ Accept wildcard characters: False ``` ### -EnableFirewallRules + Indicates that the cmdlet enables the Remote Shutdown Windows Firewall rule group on each cluster node, if it is not already enabled. If the *EnableFirewallRules* parameter is specified, CAU will also automatically re-enable the Remote Shutdown rule group each time the CAU clustered role @@ -293,6 +307,7 @@ Accept wildcard characters: False ``` ### -FailbackMode + Specifies the method used to bring drained workloads back to the node, at the end of updating the node. Drained workloads are workloads that were previously running on the node, but were moved to another node. @@ -319,6 +334,7 @@ Accept wildcard characters: False ``` ### -Force + Forces the command to run without asking for user confirmation. ```yaml @@ -334,6 +350,7 @@ Accept wildcard characters: False ``` ### -GroupName + Specifies the NetBIOS name of the resource group for the CAU clustered role. ```yaml @@ -349,6 +366,7 @@ Accept wildcard characters: False ``` ### -IntervalWeeks + Specifies the interval between weeks when the task will be triggered. An interval of 1 produces a weekly schedule. An interval of 2 produces an every-other week schedule. @@ -366,6 +384,7 @@ Accept wildcard characters: False ``` ### -MaxFailedNodes + Specifies the maximum number of nodes on which updating can fail. If one more than this number of nodes fails, then the Updating Run is stopped. The range is from 0 through 1, less than the number of cluster nodes. @@ -384,6 +403,7 @@ Accept wildcard characters: False ``` ### -MaxRetriesPerNode + Specifies the maximum number of times that the update process attempts to run. This includes any pre-update and post-update scripts. The update process is retried per node. @@ -402,6 +422,7 @@ Accept wildcard characters: False ``` ### -NodeOrder + Specifies an array of cluster node names in the order that they should be updated. ```yaml @@ -417,6 +438,7 @@ Accept wildcard characters: False ``` ### -PostUpdateScript + Specifies the path and file name for a Windows PowerShell script to run on each node after updating finishes, and just after the node is brought out of Maintenance mode. The file name extension must be .ps1 and the total length of the path plus the file name must be no longer than 260 characters. @@ -436,6 +458,7 @@ Accept wildcard characters: False ``` ### -PreUpdateScript + Specifies the path and file name for a Windows PowerShell script to run on each node before updating begins, and before the node is put into Maintenance mode. The file name extension must be .ps1 and the total length of the path plus the file name must be no longer than 260 characters. As a best @@ -456,6 +479,7 @@ Accept wildcard characters: False ``` ### -RebootTimeoutMinutes + Specifies the time in minutes that CAU allows for the restarting of a node. If the restart does not complete within this time, then the Updating Run on that node will be marked as failed. @@ -472,6 +496,7 @@ Accept wildcard characters: False ``` ### -RequireAllNodesOnline + Indicates that the cmdlet enforces that all cluster nodes are online and reachable before updating begins. @@ -488,6 +513,7 @@ Accept wildcard characters: False ``` ### -RunPluginsSerially + Indicates that the cmdlet CAU scans each cluster node for applicable updates and stages the updates for each plug-in in the plug-in order when multiple plug-ins are used during an Updating Run when you use the *CauPluginName* parameter. By default, CAU scans and stages the applicable updates for @@ -510,6 +536,7 @@ Accept wildcard characters: False ``` ### -SeparateReboots + Indicates that this cmdlet shuts down CAU and restarts a cluster node after each plug-in installs updates on the node, if the installation of an update by a plug-in requires a restart. By default, during an updating run, all plug-ins complete the installation of updates on a cluster node before @@ -531,6 +558,7 @@ Accept wildcard characters: False ``` ### -StartDate + Specifies the earliest date on which the Updating Run can be triggered. ```yaml @@ -546,6 +574,7 @@ Accept wildcard characters: False ``` ### -StopAfter + Specifies the time in minutes after which the updating run is canceled if it has not completed. The time span can be expressed in the standard ways available in Windows PowerShell, for instance, `01:30:00` represents one hour and thirty minutes. By default, the updating run is allowed an @@ -567,6 +596,7 @@ Accept wildcard characters: False ``` ### -StopOnPluginFailure + Indicates that this cmdlet coordinates subsequent updates on the node when plug-ins are stopped. When multiple plug-ins are used during an updating run, by default, a failure by one plug-in does not affect the application of updates on a node by other plug-ins. This parameter is valid only when @@ -586,6 +616,7 @@ Accept wildcard characters: False ``` ### -SuspendClusterNodeTimeoutMinutes + Specifies the maximum amount of time CAU should wait for the **Suspend-ClusterNode** cmdlet to succeed if the underlying clustered space is in degraded condition. @@ -609,6 +640,7 @@ Accept wildcard characters: False ``` ### -VirtualComputerObjectName + Specifies the name of a pre-staged virtual computer object that is used by the CAU clustered role. For more information, see [Steps to create computer objects in Active Directory](https://go.microsoft.com/fwlink/p/?LinkId=237624). @@ -629,6 +661,7 @@ Accept wildcard characters: False ``` ### -WarnAfter + Specifies the time in minutes after which a warning will be logged if the Updating Run (including any pre-update and post-update scripts) has not completed. By default, no warning will be logged, regardless of the time taken by the Updating Run. @@ -646,6 +679,7 @@ Accept wildcard characters: False ``` ### -WeeksOfMonth + Specifies the weeks of the month when the Updating Run should be run. The value `5` represents the last week of the month. @@ -662,6 +696,7 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. @@ -678,6 +713,7 @@ Accept wildcard characters: False ``` ### CommonParameters + This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see diff --git a/docset/winserver2022-ps/clusterawareupdating/Disable-CauClusterRole.md b/docset/winserver2022-ps/clusterawareupdating/Disable-CauClusterRole.md index 6cf6683f41..a1f5d9287c 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Disable-CauClusterRole.md +++ b/docset/winserver2022-ps/clusterawareupdating/Disable-CauClusterRole.md @@ -21,6 +21,7 @@ Disable-CauClusterRole [[-ClusterName] ] [-Credential ] [- ``` ## DESCRIPTION + The **Disable-CauClusterRole** cmdlet suspends the self-updating functionality on the specified cluster. The self-updating functionality of the cluster can be re-enabled with the **Enable-CauClusterRole** cmdlet. @@ -28,6 +29,7 @@ cluster. The self-updating functionality of the cluster can be re-enabled with t ## EXAMPLES ### Example 1: Disable a CAU clustered role on the specified cluster + ``` PS C:\> Disable-CauClusterRole -ClusterName CONTOSO-FC1 -Force ``` @@ -39,6 +41,7 @@ specified the *Force* parameter, the cmdlet runs without displaying confirmation ## PARAMETERS ### -ClusterName + Specifies the name of the cluster on which to disable the self-updating functionality. This parameter is only required when this cmdlet is not run on a failover cluster node, or this cmdlet is used to reference a failover cluster different from where the cmdlet is run. @@ -56,6 +59,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -71,6 +75,7 @@ Accept wildcard characters: False ``` ### -Credential + Specifies the administrative credentials for the target cluster. ```yaml @@ -86,6 +91,7 @@ Accept wildcard characters: False ``` ### -Force + Forces the command to run without asking for user confirmation. ```yaml @@ -101,6 +107,7 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. @@ -117,6 +124,7 @@ Accept wildcard characters: False ``` ### CommonParameters + This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see diff --git a/docset/winserver2022-ps/clusterawareupdating/Enable-CauClusterRole.md b/docset/winserver2022-ps/clusterawareupdating/Enable-CauClusterRole.md index 8042c24a89..664d95df45 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Enable-CauClusterRole.md +++ b/docset/winserver2022-ps/clusterawareupdating/Enable-CauClusterRole.md @@ -21,6 +21,7 @@ Enable-CauClusterRole [[-ClusterName] ] [-Credential ] [-F ``` ## DESCRIPTION + The **Enable-CauClusterRole** cmdlet re-enables the self-updating functionality on the specified cluster. The self-updating functionality of the cluster can be disabled with the **Disable-CauClusterRole** cmdlet. @@ -28,6 +29,7 @@ cluster. The self-updating functionality of the cluster can be disabled with the ## EXAMPLES ### Example 1: Enable a CAU clustered role on the specified cluster + ``` PS C:\> Enable-CauClusterRole -ClusterName "CONTOSO-FC1" -Force ``` @@ -39,6 +41,7 @@ specified the *Force* parameter, the cmdlet runs without displaying confirmation ## PARAMETERS ### -ClusterName + Specifies the name of the cluster on which to enable the self-updating functionality. This parameter is only required when this cmdlet is not run on a failover cluster node, or this cmdlet is used to reference a failover cluster different from where the cmdlet is run. @@ -56,6 +59,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -71,6 +75,7 @@ Accept wildcard characters: False ``` ### -Credential + Specifies the administrative credentials for the target cluster. ```yaml @@ -86,6 +91,7 @@ Accept wildcard characters: False ``` ### -Force + Forces the command to run without asking for user confirmation. ```yaml @@ -101,6 +107,7 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. @@ -117,6 +124,7 @@ Accept wildcard characters: False ``` ### CommonParameters + This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see diff --git a/docset/winserver2022-ps/clusterawareupdating/Export-CauReport.md b/docset/winserver2022-ps/clusterawareupdating/Export-CauReport.md index 272075e98b..0001055461 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Export-CauReport.md +++ b/docset/winserver2022-ps/clusterawareupdating/Export-CauReport.md @@ -21,6 +21,7 @@ Export-CauReport [-InputReport] [-Format] [-Path] Get-CauReport -ClusterName "Contoso-FC1" -Last -Detailed | Export-CauReport -Format HTML -Path "C:\temp\contoso-fc1_last.html" -TimeZone ([system.timezoneinfo]::Utc) ``` @@ -43,6 +45,7 @@ report are formatted in the Coordinated Universal Time (UTC) zone. ## PARAMETERS ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -58,6 +61,7 @@ Accept wildcard characters: False ``` ### -Force + Forces the command to run without asking for user confirmation. ```yaml @@ -73,6 +77,7 @@ Accept wildcard characters: False ``` ### -Format + Specifies the format of the output report. The acceptable values for this parameter are: CSV or HTML. @@ -90,6 +95,7 @@ Accept wildcard characters: False ``` ### -InputReport + Specifies an array of CAU report objects, such as generated from a call to Get-CauReport with the *Detailed* parameter. @@ -106,6 +112,7 @@ Accept wildcard characters: False ``` ### -PassThru + Returns an object representing the item with which you are working. By default, this cmdlet does not generate any output. @@ -122,6 +129,7 @@ Accept wildcard characters: False ``` ### -Path + Specifies the local or complete path of the file to save the exported report. ```yaml @@ -137,6 +145,7 @@ Accept wildcard characters: False ``` ### -TimeZone + Specifies the formatting of the report timestamps to match the specified time zone. ```yaml @@ -152,6 +161,7 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. @@ -168,6 +178,7 @@ Accept wildcard characters: False ``` ### CommonParameters + This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see diff --git a/docset/winserver2022-ps/clusterawareupdating/Get-CauClusterRole.md b/docset/winserver2022-ps/clusterawareupdating/Get-CauClusterRole.md index eb698da723..dc25f5cb60 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Get-CauClusterRole.md +++ b/docset/winserver2022-ps/clusterawareupdating/Get-CauClusterRole.md @@ -20,12 +20,14 @@ Get-CauClusterRole [[-ClusterName] ] [-Credential ] [ Get-CauClusterRole -ClusterName "CONTOSO-FC1" @@ -47,6 +49,7 @@ This command gets information about the CAU clustered role on the cluster named ## PARAMETERS ### -ClusterName + Specifies the name of the cluster for which the CAU clustered role information that this cmdlet gets. This parameter is only required when this cmdlet is not run on a failover cluster node, or this cmdlet is used to reference a failover cluster different from where the cmdlet is run. @@ -64,6 +67,7 @@ Accept wildcard characters: False ``` ### -Credential + Specifies the administrative credentials for the target cluster. ```yaml @@ -79,6 +83,7 @@ Accept wildcard characters: False ``` ### CommonParameters + This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see diff --git a/docset/winserver2022-ps/clusterawareupdating/Get-CauPlugin.md b/docset/winserver2022-ps/clusterawareupdating/Get-CauPlugin.md index a0b0cbd0e0..142a0670bb 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Get-CauPlugin.md +++ b/docset/winserver2022-ps/clusterawareupdating/Get-CauPlugin.md @@ -21,6 +21,7 @@ Get-CauPlugin [[-Name] ] [] ``` ## DESCRIPTION + The **Get-CauPlugin** cmdlet gets information about one or more software updating plug-ins that are registered on the local computer. A plug-in can be specified or information can be retrieved about all registered plug-ins. @@ -34,6 +35,7 @@ in CAU, see [How CAU Plug-ins Work](https://go.microsoft.com/fwlink/p/?LinkId=23 ## EXAMPLES ### Example 1: Get information about software update plug-ins + ``` PS C:\> Get-CauPlugin | Format-List -Property "*" @@ -51,6 +53,7 @@ CAU tool. ## PARAMETERS ### -Name + Specifies the name of the plug-in whose information this cmdlet gets. If not specified, then information for all the registered plug-ins is returned. @@ -67,6 +70,7 @@ Accept wildcard characters: False ``` ### CommonParameters + This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see diff --git a/docset/winserver2022-ps/clusterawareupdating/Get-CauReport.md b/docset/winserver2022-ps/clusterawareupdating/Get-CauReport.md index 1d52d2aa64..9728a22a49 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Get-CauReport.md +++ b/docset/winserver2022-ps/clusterawareupdating/Get-CauReport.md @@ -17,28 +17,33 @@ specified dates or other specified parameters. ## SYNTAX ### AllParamsSet (Default) + ``` Get-CauReport [[-ClusterName] ] [-Detailed] [-Credential ] [] ``` ### RangeParamSet + ``` Get-CauReport [[-ClusterName] ] [[-StartDate] ] [[-EndDate] ] [-Detailed] [-Credential ] [] ``` ### LastParamSet + ``` Get-CauReport [[-ClusterName] ] [-Last] [-Detailed] [-Credential ] [] ``` ### SpecificReportParamSet + ``` Get-CauReport [[-ClusterName] ] [-Report ] [-Credential ] [] ``` ## DESCRIPTION + The **Get-CauReport** cmdlet gets the Updating Run reports for all known Updating Runs, or all Updating Runs that match the specified dates or other specified parameters. This cmdlet can return a list of all Updating Run reports between the specified *StartDate* and *EndDate* parameters, or if @@ -50,6 +55,7 @@ Run report. By default, the report contains summaries only, but more detail can ## EXAMPLES ### Example 1: Get a detailed list of updating runs from the specified cluster + ``` PS C:\> Get-CauReport -ClusterName Contoso-FC1 -StartDate 01/01/2012 -Detailed ``` @@ -58,6 +64,7 @@ This command gets a detailed list of the updating runs performed on the cluster 01/01/2012 or later. ### Example 2: Get a detailed list of updating runs from a date span from the specified cluster + ``` PS C:\> Get-CauReport -ClusterName "Contoso-FC1" -StartDate 01/01/2012 -EndDate 04/01/2012 -Detailed ``` @@ -66,6 +73,7 @@ This command gets a detailed list of the updating runs performed on the cluster starting with updating runs on 01/01/2012 and ending with updating runs on 04/01/2012. ### Example 3: Get the last updating run summary from the specified cluster + ``` PS C:\> $CauReportSummary = Get-CauReport "Contoso-FC1" -Last PS C:\> Get-CauReport "Contoso-FC1" -Report $CauReportSummary @@ -80,6 +88,7 @@ variable. ## PARAMETERS ### -ClusterName + Specifies the name of the cluster for which this cmdlet gets reports. This parameter is only required when this cmdlet is not run on a failover cluster node, or this cmdlet is used to reference a failover cluster different from where the cmdlet is run. @@ -97,6 +106,7 @@ Accept wildcard characters: False ``` ### -Credential + Specifies the administrative credentials for the target cluster. ```yaml @@ -112,6 +122,7 @@ Accept wildcard characters: False ``` ### -Detailed + Specifies that cmdlet gets full results for one or more runs, instead of just summary information. ```yaml @@ -127,6 +138,7 @@ Accept wildcard characters: False ``` ### -EndDate + Specifies that this cmdlet gets only the reports for runs before this time. ```yaml @@ -142,6 +154,7 @@ Accept wildcard characters: False ``` ### -Last + Indicates that this cmdlet gets only the most recent run report. ```yaml @@ -157,6 +170,7 @@ Accept wildcard characters: False ``` ### -Report + Specifies the report summary that this cmdlet gets detailed results for the run. ```yaml @@ -172,6 +186,7 @@ Accept wildcard characters: False ``` ### -StartDate + Specifies that this cmdlet gets only the reports for runs after this time. ```yaml @@ -187,6 +202,7 @@ Accept wildcard characters: False ``` ### CommonParameters + This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see diff --git a/docset/winserver2022-ps/clusterawareupdating/Get-CauRun.md b/docset/winserver2022-ps/clusterawareupdating/Get-CauRun.md index ffd2ed774d..1bdf90d603 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Get-CauRun.md +++ b/docset/winserver2022-ps/clusterawareupdating/Get-CauRun.md @@ -16,35 +16,41 @@ Gets status information about an updating run currently in progress. ## SYNTAX ### DefaultParamSet (Default) + ``` Get-CauRun [[-ClusterName] ] [-Credential ] [] ``` ### WaitForStart + ``` Get-CauRun [[-ClusterName] ] [-Credential ] [-WaitForStart] [] ``` ### WaitForCompletion + ``` Get-CauRun [[-ClusterName] ] [-Credential ] [-WaitForCompletion] [] ``` ### ShowClusterNodeState + ``` Get-CauRun [[-ClusterName] ] [-Credential ] [-ShowClusterNodeState] [] ``` ## DESCRIPTION + The **Get-CauRun** cmdlet gets status information about an updating run currently in progress. Use this cmdlet to monitor current updating runs. ## EXAMPLES ### Example 1: Get status information about the updating run in progress from the specified cluster + ``` PS C:\> Get-CauRun -ClusterName "CONTOSO-FC1" @@ -72,6 +78,7 @@ named CONTOSO-FC1. ## PARAMETERS ### -ClusterName + Specifies the name of the cluster for which this cmdlet gets the updating run status. This parameter is only required when this cmdlet is not run on a failover cluster node, or this cmdlet is used to reference a failover cluster different from where the cmdlet is run. @@ -89,6 +96,7 @@ Accept wildcard characters: False ``` ### -Credential + Specifies the administrative credentials for the target cluster. ```yaml @@ -104,6 +112,7 @@ Accept wildcard characters: False ``` ### -ShowClusterNodeState + Indicates that this cmdlet gets the status of the Windows Management Instrumentation (WMI) object that is created on each cluster node. This can be used to debug the status of leftover objects. @@ -120,6 +129,7 @@ Accept wildcard characters: False ``` ### -WaitForCompletion + Indicates that this cmdlet waits for the updating run to finish. If this parameter is specified, the cmdlet also writes the updated CAU run objects to the output stream as progress is recorded by the current CAU Update Coordinator. @@ -137,6 +147,7 @@ Accept wildcard characters: False ``` ### -WaitForStart + Indicates that this cmdlet waits for an updating run that is in progress on the specified cluster. Otherwise the cmdlet waits for an updating run to begin. @@ -153,6 +164,7 @@ Accept wildcard characters: False ``` ### CommonParameters + This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see diff --git a/docset/winserver2022-ps/clusterawareupdating/Invoke-CauRun.md b/docset/winserver2022-ps/clusterawareupdating/Invoke-CauRun.md index 9f5d231997..d73c3f2ab8 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Invoke-CauRun.md +++ b/docset/winserver2022-ps/clusterawareupdating/Invoke-CauRun.md @@ -16,6 +16,7 @@ Performs a scan of cluster nodes for applicable updates and installs those updat ## SYNTAX ### DefaultParamSet (Default) + ``` Invoke-CauRun [-MaxFailedNodes ] [-MaxRetriesPerNode ] [-NodeOrder ] [-PreUpdateScript ] [-PostUpdateScript ] [-ConfigurationName ] @@ -28,12 +29,14 @@ Invoke-CauRun [-MaxFailedNodes ] [-MaxRetriesPerNode ] [-NodeOrder ``` ### RecoverParamSet + ``` Invoke-CauRun [-ForceRecovery] [-Force] [[-ClusterName] ] [[-Credential] ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION + The **Invoke-CauRun** cmdlet performs a scan of cluster nodes for applicable updates and installs those updates through an updating run on the specified cluster. The updating run process includes the following: @@ -54,6 +57,7 @@ exception is enabled on each node. ## EXAMPLES ### Example 1: Preform a scan and a full updating run on the specified cluster + ``` PS C:\> Invoke-CauRun -ClusterName "CONTOSO-FC1" -CauPluginName "Microsoft.WindowsUpdatePlugin" -MaxFailedNodes 1 -MaxRetriesPerNode 3 -RequireAllNodesOnline -Force ``` @@ -66,6 +70,7 @@ entire updating run as failed. Because the command specifies the *Force* paramet without displaying confirmation prompts. ### Example 2: Preform a scan and a full updating run on the specified cluster using multiple plug-ins + ``` PS C:\> Invoke-CauRun -ClusterName CONTOSO-FC1 -CauPluginName Microsoft.WindowsUpdatePlugin, Microsoft.HotfixPlugin -CauPluginArguments @{ }, @{ 'HotfixRootFolderPath' = '\\CauHotfixSrv\shareName' } -EnableFirewallRules -StopOnPluginFailure -SeparateReboots -Force ``` @@ -82,6 +87,7 @@ applied by **Microsoft.HotfixPlugin plug-in**. If the installation of updates by parameter, the cmdlet runs without displaying confirmation prompts. ### Example 3: Recover from a previous updating run that failed on the specified cluster + ``` PS C:\> Invoke-CauRun -ClusterName "CONTOSO-FC1"-ForceRecovery -Force ``` @@ -93,6 +99,7 @@ recovery is performed without confirmation prompts. ## PARAMETERS ### -CauPluginArguments + Specifies a set of name=value pairs for each updating plug-in to use. For instance, to specify a Domain argument for one plug-in: - `@{Domain=Domain.local}` @@ -151,6 +158,7 @@ Accept wildcard characters: False ``` ### -CauPluginName + Specifies one or more plug-ins to use when performing updates. You can specify multiple values separated with commas. The default is the **Microsoft.WindowsUpdatePlugin** plug-in. This plug-in coordinates the Windows Update Agent software resident on each cluster node, the same software that @@ -171,6 +179,7 @@ Accept wildcard characters: False ``` ### -ClusterName + Specifies a cluster for which this cmdlet installs updates. ```yaml @@ -186,6 +195,7 @@ Accept wildcard characters: False ``` ### -ConfigurationName + Specifies the Windows PowerShell session configuration that defines the session in which scripts are run, specified by *PreUpdateScript* and *PostUpdateScript* parameters, and can limit the cmdlets that are available to run. If either a pre-update or post-update script is specified but a @@ -205,6 +215,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -220,6 +231,7 @@ Accept wildcard characters: False ``` ### -Credential + Specifies the administrative credentials for the target cluster. ```yaml @@ -235,6 +247,7 @@ Accept wildcard characters: False ``` ### -EnableFirewallRules + Enables the **Remote Shutdown** Windows Firewall rule group on each cluster node, if it is not already enabled. If the *EnableFirewallRules* parameter is specified, CAU automatically re-enables the **Remote Shutdown** rule group each time the CAU clustered role performs an updating run, in @@ -258,6 +271,7 @@ Accept wildcard characters: False ``` ### -FailbackMode + Specifies the method used to bring drained workloads back to the node, at the end of updating the node. Drained workloads are workloads that were previously run on the node, but were moved to another node. The acceptable values for this parameter are: @@ -282,6 +296,7 @@ Accept wildcard characters: False ``` ### -Force + Forces the command to run without asking for user confirmation. ```yaml @@ -297,6 +312,7 @@ Accept wildcard characters: False ``` ### -ForceRecovery + Indicates that the cmdlet recovers from a previous failed run that left the cluster in a Locked state. @@ -316,6 +332,7 @@ Accept wildcard characters: False ``` ### -MaxFailedNodes + Specifies the maximum number of nodes on which updating can fail. If one more than this number of nodes fails, then the updating run is stopped. The range is from zero (0) through 1 less than the number of cluster nodes. @@ -334,6 +351,7 @@ Accept wildcard characters: False ``` ### -MaxRetriesPerNode + Specifies the maximum number of times that the update process (including any pre-update and post-update scripts) is retried per node. The maximum is 64 and the default is 3. @@ -350,6 +368,7 @@ Accept wildcard characters: False ``` ### -NodeOrder + Specifies an array of cluster nodes names in the order that they are updated. ```yaml @@ -365,6 +384,7 @@ Accept wildcard characters: False ``` ### -PostUpdateScript + Specifies the path and file name for a Windows PowerShell script to run on each node after updating finishes, and just after the node is brought out of Maintenance mode. The file name extension must be .ps1 and the total length of the path plus the file name must be no longer than 260 characters. @@ -384,6 +404,7 @@ Accept wildcard characters: False ``` ### -PreUpdateScript + Specifies the path and file name for a Windows PowerShell script to run on each node before updating begins, and before the node is put into Maintenance mode. The file name extension must be .ps1 and the total length of the path plus the file name must be no longer than 260 characters. As a best @@ -404,6 +425,7 @@ Accept wildcard characters: False ``` ### -RebootTimeoutMinutes + Specifies the time in minutes that CAU allows for the restarting of a node. If the restart does not complete within this time, then the updating run on that node is marked as failed. @@ -420,6 +442,7 @@ Accept wildcard characters: False ``` ### -RequireAllNodesOnline + Indicates that all cluster nodes must be online and reachable before the update begins. ```yaml @@ -435,6 +458,7 @@ Accept wildcard characters: False ``` ### -RunPluginsSerially + Indicates that CAU will scan each cluster node for applicable updates and stage the updates for each plug-in in the plug-in order passed into the *CauPluginName* parameter when multiple plug-ins are used during an updating run. By default, CAU scans and stages the applicable updates for all @@ -457,6 +481,7 @@ Accept wildcard characters: False ``` ### -SeparateReboots + Indicates that CAU will shut down and restart a cluster node after each plug-in installs updates on the node, if the installation of an update by a plug-in requires a restart when multiple plug-ins are used during an updating run. By default, during an updating run, all plug-ins complete the @@ -478,6 +503,7 @@ Accept wildcard characters: False ``` ### -StopAfter + Specifies the time in minutes after which the updating run is canceled if it has not completed. The time span can be expressed in the standard ways available in Windows PowerShell, for instance, 01:30:00 represents one hour and thirty minutes. By default, the updating run is allowed an @@ -499,6 +525,7 @@ Accept wildcard characters: False ``` ### -StopOnPluginFailure + Indicates that if a failure occurs during the application of updates on a node by any plug-in, subsequent updates on the node that are coordinated by the remaining plug-ins are stopped when multiple plug-ins are used during an updating run. By default, a failure by one plug-in does not @@ -520,6 +547,7 @@ Accept wildcard characters: False ``` ### -SuspendClusterNodeTimeoutMinutes + Specifies the maximum amount of time CAU should wait for the **Suspend-ClusterNode** cmdlet to succeed if the underlying clustered space is in degraded condition. @@ -545,6 +573,7 @@ Accept wildcard characters: False ``` ### -WarnAfter + Specifies the time in minutes after which a warning is logged if the updating run, including any pre-update and post-update scripts, has not completed. By default, no warning is logged, regardless of the time taken by the updating run. @@ -562,6 +591,7 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. @@ -578,6 +608,7 @@ Accept wildcard characters: False ``` ### CommonParameters + This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see diff --git a/docset/winserver2022-ps/clusterawareupdating/Invoke-CauScan.md b/docset/winserver2022-ps/clusterawareupdating/Invoke-CauScan.md index 2354c45663..82a91ea92c 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Invoke-CauScan.md +++ b/docset/winserver2022-ps/clusterawareupdating/Invoke-CauScan.md @@ -23,6 +23,7 @@ Invoke-CauScan [[-ClusterName] ] [[-CauPluginName] ] [[-Creden ``` ## DESCRIPTION + The **Invoke-CauScan** cmdlet performs a scan of cluster nodes for applicable updates and gets a list of the initial set of updates that are applied to each node in a specified cluster. Generation of the list can take a few minutes to complete. @@ -36,6 +37,7 @@ that are discovered on the hotfix file share. ## EXAMPLES ### Example 1: Get a detailed list of the initial set of updates on the specified cluster + ``` PS C:\> Invoke-CauScan -ClusterName "CONTOSO-FC1" -CauPluginName "Microsoft.WindowsUpdatePlugin" -Verbose ``` @@ -47,6 +49,7 @@ includes only an initial set of updates, and does not include updates that might only after the initial updates are installed. ### Example 2: Get a detailed list of the initial set of updates on the specified cluster using a query string + ``` PS C:\>$SecPasswd = ConvertTo-SecureString "PlainTextPassword" -AsPlainText -Force PS C:\> $Cred = New-Object System.Management.Automation.PSCredential ("username", $SecPasswd) @@ -63,6 +66,7 @@ credentials for cluster CONTOSO-FC1 to the cmdlet. ## PARAMETERS ### -CauPluginArguments + Specifies a set of name=value pairs for each updating plug-in to use. For instance, to specify a **Domain** argument for one plug-in: - `@{Domain=Domain.local}` @@ -123,6 +127,7 @@ Accept wildcard characters: False ``` ### -CauPluginName + Specifies one or more plug-ins to use when performing scans. You can specify multiple values separated with commas. The default is the **Microsoft.WindowsUpdatePlugin** plug-in. This plug-in coordinates the Windows Update Agent software resident on each cluster node, the same software that @@ -144,6 +149,7 @@ Accept wildcard characters: False ``` ### -ClusterName + Specifies the name of the cluster which should be scanned for applicable updates. This parameter is only required when this cmdlet is not run on a failover cluster node, or this cmdlet is used to reference a failover cluster different from where the cmdlet is run. @@ -161,6 +167,7 @@ Accept wildcard characters: False ``` ### -Credential + Specifies the administrative credentials for the target cluster. ```yaml @@ -176,6 +183,7 @@ Accept wildcard characters: False ``` ### -RunPluginsSerially + Indicates that CAU scans each cluster node for applicable updates and stages the updates for each plug-in in the plug-in order passed into the *CauPluginName* parameter then multiple plug-ins are used during a scan for updates @@ -197,6 +205,7 @@ Accept wildcard characters: False ``` ### -StopOnPluginFailure + Indicates that if a failure occurs during a scan on a node by any plug-in, subsequent scans on the node that are coordinated by the remaining plug-ins are stopped when multiple plug-ins are used during a scan for updates. @@ -217,6 +226,7 @@ Accept wildcard characters: False ``` ### CommonParameters + This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see diff --git a/docset/winserver2022-ps/clusterawareupdating/Register-CauPlugin.md b/docset/winserver2022-ps/clusterawareupdating/Register-CauPlugin.md index 80b7e8908b..fbf5c4c97d 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Register-CauPlugin.md +++ b/docset/winserver2022-ps/clusterawareupdating/Register-CauPlugin.md @@ -20,6 +20,7 @@ Register-CauPlugin [-Path] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION + The **Register-CauPlugin** cmdlet registers a Cluster-Aware Updating (CAU) software updating plug-in on the local computer. @@ -33,6 +34,7 @@ Services (WSUS) server. For more information about how plug-ins work in CAU, see ## EXAMPLES ### Example 1: Register a specific plug-in located in the specified folder + ``` PS C:\> Register-CauPlugin -Path "C:\PluginDevelopment\Plugin01.dll" -Force ``` @@ -44,6 +46,7 @@ prompts. ## PARAMETERS ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -59,6 +62,7 @@ Accept wildcard characters: False ``` ### -Path + Specifies the path to the binary that implements the plug-in. Classes that implement the plug-in interface and are decorated with the plug-in attribute, are discovered through reflection and registered. @@ -76,6 +80,7 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. @@ -92,6 +97,7 @@ Accept wildcard characters: False ``` ### CommonParameters + This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see diff --git a/docset/winserver2022-ps/clusterawareupdating/Remove-CauClusterRole.md b/docset/winserver2022-ps/clusterawareupdating/Remove-CauClusterRole.md index b2da166fb0..09b11b93b2 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Remove-CauClusterRole.md +++ b/docset/winserver2022-ps/clusterawareupdating/Remove-CauClusterRole.md @@ -21,6 +21,7 @@ Remove-CauClusterRole [[-ClusterName] ] [[-Credential] ] [ ``` ## DESCRIPTION + The **Remove-CauClusterRole** cmdlet removes the Cluster-Aware Updating (CAU) clustered role from the specified failover cluster. To run CAU from a cluster, ensure that the CAU clustered role is configured in that cluster. @@ -32,6 +33,7 @@ for the CAU clustered role, unless you previously prestaged or specified the VCO ## EXAMPLES ### Example 1: Remove an instance of a CAU clustered role configured on the specified cluster + ``` PS C:\> Remove-CauClusterRole -ClusterName "CONTOSO-FC1" -Force ``` @@ -43,6 +45,7 @@ confirmation prompts. ## PARAMETERS ### -ClusterName + Specifies the name of the cluster from which to remove the CAU clustered role. This parameter is only required when this cmdlet is not run on a failover cluster node, or this cmdlet is used to reference a failover cluster different from where the cmdlet is run. @@ -60,6 +63,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -75,6 +79,7 @@ Accept wildcard characters: False ``` ### -Credential + Specifies the administrative credentials for the target cluster. ```yaml @@ -90,6 +95,7 @@ Accept wildcard characters: False ``` ### -Force + Forces the command to run without asking for user confirmation. ```yaml @@ -105,6 +111,7 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. @@ -121,6 +128,7 @@ Accept wildcard characters: False ``` ### CommonParameters + This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see diff --git a/docset/winserver2022-ps/clusterawareupdating/Save-CauDebugTrace.md b/docset/winserver2022-ps/clusterawareupdating/Save-CauDebugTrace.md index abf81ce23c..b19149d767 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Save-CauDebugTrace.md +++ b/docset/winserver2022-ps/clusterawareupdating/Save-CauDebugTrace.md @@ -21,6 +21,7 @@ Save-CauDebugTrace [[-ClusterName] ] [[-FilePath] ] [-Credential ``` ## DESCRIPTION + The **Save-CauDebugTrace** cmdlet saves Cluster-Aware Updating (CAU) debug tracing information to a local zip file. The tracing information is mainly intended for use by developers and support engineers. Specify the file name with the *FilePath* parameter. @@ -32,6 +33,7 @@ Compatibility Mode (HTTP-In)** firewall exception is enabled on each node. ## EXAMPLES ### Example 1: Save debug tracing information for the specified cluster + ``` PS C:\> Save-CauDebugTrace -ClusterName "CONTOSO-FC1" -FilePath "C:\temp\testrun.zip" ``` @@ -42,6 +44,7 @@ called testrun.zip in the C:\temp folder. ## PARAMETERS ### -ClusterName + Specifies the name of the cluster for which to gather CAU debug tracing information. This parameter is only required when this cmdlet is not run on a failover cluster node, or this cmdlet is used to reference a failover cluster different from where the cmdlet is run. @@ -59,6 +62,7 @@ Accept wildcard characters: False ``` ### -Credential + Specifies the administrative credentials for the target cluster. ```yaml @@ -74,6 +78,7 @@ Accept wildcard characters: False ``` ### -FilePath + Specifies the name of the file to which to save the tracing information, such as `MyTrace.zip`. ```yaml @@ -89,6 +94,7 @@ Accept wildcard characters: False ``` ### -Force + Forces the command to run without asking for user confirmation. ```yaml @@ -104,6 +110,7 @@ Accept wildcard characters: False ``` ### -RunId + Indicates that the cmdlet should only include debug trace files related to an updating run with the specified Run ID. @@ -120,6 +127,7 @@ Accept wildcard characters: False ``` ### CommonParameters + This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see diff --git a/docset/winserver2022-ps/clusterawareupdating/Set-CauClusterRole.md b/docset/winserver2022-ps/clusterawareupdating/Set-CauClusterRole.md index 3f81944c73..e215a9c637 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Set-CauClusterRole.md +++ b/docset/winserver2022-ps/clusterawareupdating/Set-CauClusterRole.md @@ -16,6 +16,7 @@ Sets configuration properties for the CAU clustered role on the specified cluste ## SYNTAX ### MonthlyDayOfWeek (Default) + ``` Set-CauClusterRole [-UseDefault] [-StartDate ] [-DaysOfWeek ] [-WeeksOfMonth ] [-CauPluginName ] [-CauPluginArguments ] @@ -29,18 +30,21 @@ Set-CauClusterRole [-UseDefault] [-StartDate ] [-DaysOfWeek ``` ### UpdateNow + ``` Set-CauClusterRole [-UpdateNow] [[-ClusterName] ] [[-Credential] ] [-Force] [-WhatIf] [-Confirm] [] ``` ### UseDefault + ``` Set-CauClusterRole [-UseDefault] [[-ClusterName] ] [[-Credential] ] [-Force] [-WhatIf] [-Confirm] [] ``` ### Weekly + ``` Set-CauClusterRole [-UseDefault] [-StartDate ] [-DaysOfWeek ] [-IntervalWeeks ] [-CauPluginName ] [-CauPluginArguments ] @@ -54,6 +58,7 @@ Set-CauClusterRole [-UseDefault] [-StartDate ] [-DaysOfWeek ``` ## DESCRIPTION + The **Set-CauClusterRole** cmdlet sets configuration properties for the Cluster-Aware Updating (CAU) clustered role on the specified cluster. This cmdlet can specify properties such as the updating schedule and updating run parameters. @@ -66,6 +71,7 @@ exception is enabled on each node. ## EXAMPLES ### Example 1: Configure settings for a CAU cluster role on the specified cluster on the first and second weeks of the month + ``` PS C:\> Set-CauClusterRole -ClusterName "CONTOSO-FC1" -DaysOfWeek Tuesday -WeeksOfMonth 1,2 -RebootTimeoutMinutes 10 -Force ``` @@ -78,6 +84,7 @@ that node is marked as failed. Because the command specifies the *Force* paramet without displaying confirmation prompts. ### Example 2: Configure settings for a CAU cluster role on the specified cluster on the second week of the month + ``` PS C:\> Set-CauClusterRole -ClusterName "CONTOSO-FC1" -DaysOfWeek Tuesday -IntervalWeeks 2 -RebootTimeoutMinutes 10 -PostUpdateScript "c:\verifyupdatesinstalled.ps1" -Force @@ -102,6 +109,7 @@ named verifyupdatesinstalled.ps1. Because the command specifies the *Force* para runs without displaying confirmation prompts. ### Example 3: Initiate an updating run on the specified cluster + ``` PS C:\> Set-CauClusterRole -ClusterName "CONTOSO-FC1" -UpdateNow -Force ``` @@ -111,6 +119,7 @@ named CONTOSO-FC1. Because the command specifies the *Force* parameter, the cmdl displaying confirmation prompts ### Example 4: Configure settings for a CAU cluster role on the specified cluster + ``` PS C:\> $WarnAfter = New-TimeSpan -hour 1 -minute 90 -seconds 10 PS C:\> $StopAfter = New-TimeSpan -hour 2 -minute 90 -seconds 10 @@ -125,6 +134,7 @@ earliest date that an updating run can be triggered is 1/1/2012. Because the com ## PARAMETERS ### -CauPluginArguments + Specifies a set of name=value pairs, as arguments, for each updating plug-in to use. For instance, to specify a Domain argument for one plug-in: - `@{Domain=Domain.local}` @@ -182,6 +192,7 @@ Accept wildcard characters: False ``` ### -CauPluginName + Specifies one or more plug-ins to use when performing scans or updates. You can specify multiple values separated with commas. The default is the Microsoft.WindowsUpdatePlugin plug-in. This plug-in coordinates the Windows Update Agent software resident on each cluster node, the same software that @@ -202,6 +213,7 @@ Accept wildcard characters: False ``` ### -ClusterName + Specifies the name of the cluster on which to configure the CAU clustered role. If not specified, then the current cluster is used. This parameter is only required when this cmdlet is not run on a failover cluster node, or this cmdlet is used to reference a failover cluster different from where @@ -220,6 +232,7 @@ Accept wildcard characters: False ``` ### -ConfigurationName + Specifies the Windows PowerShell session configuration that defines the session in which scripts, specified by the *PreUpdateScript* and *PostUpdateScript* parameters, and cmdlets are run, and can limit the cmdlets that are available to be run. If either a pre-update or post-update script is @@ -239,6 +252,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -254,6 +268,7 @@ Accept wildcard characters: False ``` ### -Credential + Specifies the administrative credentials for the target cluster. ```yaml @@ -269,6 +284,7 @@ Accept wildcard characters: False ``` ### -DaysOfWeek + Specifies the days of the week on which the task will be triggered. Multiple values can be specified either separated with commas or as a hexadecimal sum. @@ -299,6 +315,7 @@ Accept wildcard characters: False ``` ### -EnableFirewallRules + Indicates that this cmdlet enables the **Remote Shutdown** Windows Firewall rule group on each cluster node, if it is not already enabled, each time the CAU clustered role performs an Updating Run. Enabling this rule group permits inbound communication to each cluster node during each @@ -320,6 +337,7 @@ Accept wildcard characters: False ``` ### -FailbackMode + Specifies the method used to bring drained workloads back to the node, at the end of updating the node. Drained workloads are workloads that were previously running on the node, but were moved to another node. The acceptable values for this parameter are: @@ -343,6 +361,7 @@ Accept wildcard characters: False ``` ### -Force + Forces the command to run without asking for user confirmation. ```yaml @@ -358,6 +377,7 @@ Accept wildcard characters: False ``` ### -IntervalWeeks + Specifies the interval between weeks when the task will be triggered. An interval of 1 produces a weekly schedule. An interval of 2 produces an every-other week schedule. @@ -375,6 +395,7 @@ Accept wildcard characters: False ``` ### -MaxFailedNodes + Specifies the maximum number of nodes on which updating can fail. If one more than this number of nodes fails, then the Updating Run is stopped. The range is from 0 through 1 less than the number of cluster nodes. @@ -393,6 +414,7 @@ Accept wildcard characters: False ``` ### -MaxRetriesPerNode + Specifies the maximum number of times that the update process, which includes any pre-update and post-update scripts, is retried per node. The maximum is 64and the default is 3. @@ -409,6 +431,7 @@ Accept wildcard characters: False ``` ### -NodeOrder + Specifies an array of cluster node names in the order that they should be updated. ```yaml @@ -424,6 +447,7 @@ Accept wildcard characters: False ``` ### -PostUpdateScript + Specifies the path and file name for a Windows PowerShell script to run after updating completes, just after the node leaves Maintenance mode. The file name extension must be .ps1 and the total length of the path plus the file name must be no longer than 260 characters. As a best practice, the @@ -443,6 +467,7 @@ Accept wildcard characters: False ``` ### -PreUpdateScript + Specifies the path and file name for a Windows PowerShell script to run on each node before updating begins, and before the node is put into Maintenance mode. The file name extension must be .ps1 and the total length of the path plus the file name must be no longer than 260 characters. As a best @@ -462,6 +487,7 @@ Accept wildcard characters: False ``` ### -RebootTimeoutMinutes + Specifies the time in minutes that CAU will allow for the restarting of a node. If the restart does not complete within this time, then the updating run on that node is marked as failed. @@ -478,6 +504,7 @@ Accept wildcard characters: False ``` ### -RequireAllNodesOnline + Indicates that all cluster nodes must be online and reachable before updating begins. ```yaml @@ -493,6 +520,7 @@ Accept wildcard characters: False ``` ### -RunPluginsSerially + Indicates that CAU scans each cluster node for applicable updates and stage the updates for each plug-in in the plug-in order passed into the*CauPluginName* parameter, when multiple plug-ins are used during an updating run. @@ -517,6 +545,7 @@ Accept wildcard characters: False ``` ### -SeparateReboots + Indicates that CAU shuts down and restart a cluster node after each plug-in installs updates on the node, if the installation of an update by a plug-in requires a restart that CAU will shut down and restart a cluster node after each plug-in installs updates on the node, if the installation of an @@ -538,6 +567,7 @@ Accept wildcard characters: False ``` ### -StartDate + Specifies the earliest date on which the updating run can be triggered. ```yaml @@ -553,6 +583,7 @@ Accept wildcard characters: False ``` ### -StopAfter + Specifies the time in minutes after which the updating run is canceled if it has not completed. The time span can be expressed in the standard ways available in Windows PowerShell, for instance, `01:30:00` represents one hour and thirty minutes. By default, the updating run is allowed an @@ -574,6 +605,7 @@ Accept wildcard characters: False ``` ### -StopOnPluginFailure + Indicates that if a failure occurs during the application of updates on a node by any plug-in, subsequent updates on the node that are coordinated by the remaining plug-ins are stopped when multiple plug-ins are used during an updating run. @@ -594,6 +626,7 @@ Accept wildcard characters: False ``` ### -SuspendClusterNodeTimeoutMinutes + Specifies the maximum amount of time CAU should wait for the Suspend-ClusterNodecmdlet to succeed if the underlying clustered space is in degraded condition. @@ -618,6 +651,7 @@ Accept wildcard characters: False ``` ### -UpdateNow + Instructs the CAU clustered role to immediately initiate an updating run using the configured settings. @@ -634,6 +668,7 @@ Accept wildcard characters: False ``` ### -UseDefault + Indicates that default values are used for all parameters that do not have specified values. ```yaml @@ -649,6 +684,7 @@ Accept wildcard characters: False ``` ### -WarnAfter + Specifies the time in minutes after which a warning is logged if the updating run, including any pre-update and post-update scripts, has not completed. By default, no warning is logged, regardless of the time taken by the updating run. @@ -666,6 +702,7 @@ Accept wildcard characters: False ``` ### -WeeksOfMonth + Specifies the weeks of the month when the Updating Run should be run. The value 5 represents the last week of the month. @@ -682,6 +719,7 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. @@ -698,6 +736,7 @@ Accept wildcard characters: False ``` ### CommonParameters + This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see diff --git a/docset/winserver2022-ps/clusterawareupdating/Stop-CauRun.md b/docset/winserver2022-ps/clusterawareupdating/Stop-CauRun.md index 11ba503707..870d2c2e93 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Stop-CauRun.md +++ b/docset/winserver2022-ps/clusterawareupdating/Stop-CauRun.md @@ -21,11 +21,13 @@ Stop-CauRun [[-ClusterName] ] [-Credential ] [-Wait] [-For ``` ## DESCRIPTION + The **Stop-CauRun** cmdlet stops an updating run that is in progress on a failover cluster. ## EXAMPLES ### Example 1: Stop an updating run on the specified cluster + ``` PS C:\> Stop-CauRun -ClusterName "CONTOSO-FC1" -Wait -Force ``` @@ -38,6 +40,7 @@ displaying confirmation prompts. ## PARAMETERS ### -ClusterName + Specifies the name of the cluster on which to stop an updating run that is in progress. This parameter is only required when this cmdlet is not run on a failover cluster node, or this cmdlet is used to reference a failover cluster different from where the cmdlet is run. @@ -55,6 +58,7 @@ Accept wildcard characters: False ``` ### -Credential + Specifies the administrative credentials for the target cluster. ```yaml @@ -70,6 +74,7 @@ Accept wildcard characters: False ``` ### -Force + Forces the command to run without asking for user confirmation. ```yaml @@ -85,6 +90,7 @@ Accept wildcard characters: False ``` ### -Wait + Indicates that the cmdlet waits until after the canceled updating run has finished. Otherwise, returns as soon as the stop request has been acknowledged by the current Cluster-Aware Updating (CAU) Update Coordinator. @@ -102,6 +108,7 @@ Accept wildcard characters: False ``` ### CommonParameters + This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see diff --git a/docset/winserver2022-ps/clusterawareupdating/Test-CauSetup.md b/docset/winserver2022-ps/clusterawareupdating/Test-CauSetup.md index b85536eee7..ff3392bd3a 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Test-CauSetup.md +++ b/docset/winserver2022-ps/clusterawareupdating/Test-CauSetup.md @@ -20,6 +20,7 @@ Test-CauSetup [[-ClusterName] ] [[-Credential] ] [Test-CauSetup -ClusterName "CONTOSO-FC1" Test-CauSetup completed successfully. To view the results, run the "Get-BpaResult Microsoft/Windows/ClusterAwareUpdating" Windows PowerShell cmdlet. @@ -41,6 +43,7 @@ This example tests whether the failover cluster named CONTOSO-FC1 is properly se ## PARAMETERS ### -ClusterName + Specifies the name of the cluster on which to test for proper setup. This parameter is only required when this cmdlet is not run on a failover cluster node, or this cmdlet is used to reference a failover cluster different from where the cmdlet is run. @@ -58,6 +61,7 @@ Accept wildcard characters: False ``` ### -Credential + Specifies the administrative credentials for the target cluster. ```yaml @@ -73,6 +77,7 @@ Accept wildcard characters: False ``` ### CommonParameters + This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see diff --git a/docset/winserver2022-ps/clusterawareupdating/Unregister-CauPlugin.md b/docset/winserver2022-ps/clusterawareupdating/Unregister-CauPlugin.md index cfdae6bf03..e7264b4af1 100644 --- a/docset/winserver2022-ps/clusterawareupdating/Unregister-CauPlugin.md +++ b/docset/winserver2022-ps/clusterawareupdating/Unregister-CauPlugin.md @@ -20,6 +20,7 @@ Unregister-CauPlugin [-Name] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION + The **Unregister-CauPlugin** cmdlet removes a software updating plug-in from the list of plug-ins that are used by Cluster-Aware Updating (CAU). The plug-in can be removed, but afterwards, it cannot be used for updating runs. The **Microsoft.WindowsUpdatePlugin** and **Microsoft.HotfixPlugin** @@ -28,6 +29,7 @@ plug-ins, which are installed with CAU, cannot be unregistered. ## EXAMPLES ### Example 1: Unregister a plug-in that is used by CAU + ``` PS C:\> Unregister-CauPlugin -Name "Plugin01" ``` @@ -37,6 +39,7 @@ This command removes the plug-in named Plugin01 from the list of plug-ins that a ## PARAMETERS ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -52,6 +55,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of the plug-in that this cmdlet unregisters. ```yaml @@ -67,6 +71,7 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. @@ -83,6 +88,7 @@ Accept wildcard characters: False ``` ### CommonParameters + This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see From 034b603b38487dbf739754d89cd8d2803f18ccd4 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Fri, 21 Oct 2022 11:07:05 +0100 Subject: [PATCH 276/965] Bulk reflowed text and header formatting --- .../failoverclusters/Add-ClusterCheckpoint.md | 42 +++++-- .../failoverclusters/Add-ClusterDisk.md | 56 +++++---- .../Add-ClusterFileServerRole.md | 55 ++++++--- .../Add-ClusterGenericApplicationRole.md | 77 ++++++++----- .../Add-ClusterGenericScriptRole.md | 70 ++++++++---- .../Add-ClusterGenericServiceRole.md | 68 +++++++---- .../failoverclusters/Add-ClusterGroup.md | 26 +++-- .../Add-ClusterGroupSetDependency.md | 63 +++++++---- .../failoverclusters/Add-ClusterGroupToSet.md | 54 ++++++--- .../failoverclusters/Add-ClusterNode.md | 39 ++++--- .../failoverclusters/Add-ClusterResource.md | 32 ++++-- .../Add-ClusterResourceDependency.md | 36 ++++-- .../Add-ClusterResourceType.md | 42 ++++--- .../Add-ClusterScaleOutFileServerRole.md | 55 ++++++--- .../Add-ClusterSharedVolume.md | 21 +++- .../Add-ClusterVMMonitoredItem.md | 84 +++++++++----- .../Add-ClusterVirtualMachineRole.md | 57 +++++++--- .../Add-ClusteriSCSITargetServerRole.md | 48 +++++--- .../failoverclusters/Block-ClusterAccess.md | 34 ++++-- .../Clear-ClusterDiskReservation.md | 43 ++++--- .../failoverclusters/Clear-ClusterNode.md | 49 +++++--- .../Disable-ClusterStorageSpacesDirect.md | 50 +++++--- .../Enable-ClusterStorageSpacesDirect.md | 107 +++++++++++------- .../failoverclusters/FailoverClusters.md | 64 +++++++---- .../failoverclusters/Get-Cluster.md | 31 +++-- .../failoverclusters/Get-ClusterAccess.md | 26 +++-- .../Get-ClusterAvailableDisk.md | 34 ++++-- .../failoverclusters/Get-ClusterCheckpoint.md | 42 ++++--- .../Get-ClusterDiagnosticInfo.md | 23 +++- .../Get-ClusterFaultDomain.md | 44 ++++--- 30 files changed, 990 insertions(+), 482 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterCheckpoint.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterCheckpoint.md index 4e91b69019..8b003d5c76 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterCheckpoint.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterCheckpoint.md @@ -22,15 +22,20 @@ Add-ClusterCheckpoint [[-ResourceName] ] [-CryptoCheckpointName ``` ## DESCRIPTION -The **Add-ClusterCheckpoint** cmdlet adds a cryptographic key checkpoint or registry checkpoint for a resource. -Checkpoints help provide failover support for applications that store configuration information locally instead of or in addition to storing information in the cluster configuration database. -Applications might store information locally in two ways. -One way is to store configuration information in the registry on the local server; another way is to use cryptographic keys on the local server. +The **Add-ClusterCheckpoint** cmdlet adds a cryptographic key checkpoint or registry checkpoint for +a resource. + +Checkpoints help provide failover support for applications that store configuration information +locally instead of or in addition to storing information in the cluster configuration database. +Applications might store information locally in two ways. One way is to store configuration +information in the registry on the local server; another way is to use cryptographic keys on the +local server. ## EXAMPLES ### Example 1: Add registry checkpoint + ``` PS C:\> Add-ClusterCheckpoint -ResourceName "Cluster Name" -RegistryCheckpoint "software\clusname" Resource Name @@ -38,9 +43,11 @@ Resource Name Cluster Name software\clusname ``` -This example adds a registry checkpoint called software\clusname for the resource named cluster name. +This example adds a registry checkpoint called software\clusname for the resource named cluster +name. ### Example 2: Add cryptographic checkpoint + ``` PS C:\> Get-ClusterResource -Name "Cluster Name" | Add-ClusterCheckpoint -CryptoCheckpointName "Microsoft Base Cryptographic Provider v1.0" -CryptoCheckpointType 1 -CryptoCheckpointKey "Crypto" Resource Name Type Key @@ -53,8 +60,9 @@ This example adds a cryptographic checkpoint for the resource named Cluster Name ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -69,6 +77,7 @@ Accept wildcard characters: False ``` ### -CryptoCheckpointKey + Specifies the key of a cryptographic key checkpoint to add. ```yaml @@ -84,6 +93,7 @@ Accept wildcard characters: False ``` ### -CryptoCheckpointName + Specifies the name of a cryptographic key checkpoint to add. ```yaml @@ -99,8 +109,9 @@ Accept wildcard characters: False ``` ### -CryptoCheckpointType -Specifies the type of a cryptographic key checkpoint to add. -Options depend on the cryptographic provider. + +Specifies the type of a cryptographic key checkpoint to add. Options depend on the cryptographic +provider. ```yaml Type: String @@ -115,7 +126,9 @@ Accept wildcard characters: False ``` ### -InputObject -Specifies the cluster on which to run the cmdlet or the cluster resource for which the checkpoint should be added. + +Specifies the cluster on which to run the cmdlet or the cluster resource for which the checkpoint +should be added. ```yaml Type: PSObject @@ -130,6 +143,7 @@ Accept wildcard characters: False ``` ### -RegistryCheckpoint + Specifies the name of the registry checkpoint to add. ```yaml @@ -145,6 +159,7 @@ Accept wildcard characters: False ``` ### -ResourceName + Specifies the resource for which a checkpoint should be added. ```yaml @@ -160,7 +175,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -181,4 +200,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Get-ClusterResource](./Get-ClusterResource.md) [Remove-ClusterCheckpoint](./Remove-ClusterCheckpoint.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterDisk.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterDisk.md index 945e0d0c77..be6b0d4f84 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterDisk.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterDisk.md @@ -20,16 +20,20 @@ Add-ClusterDisk [-InputObject] [-Cluster ] [ Get-ClusterAvailableDisk | Add-ClusterDisk Name State Group ResourceType @@ -38,9 +42,11 @@ Cluster Disk 7 OnlinePending Available Storage Physical Disk Cluster Disk 8 OnlinePending Available Storage Physical Disk ``` -This example identifies the disks that are ready to be added to the cluster, and then adds them to Available Storage cluster group. +This example identifies the disks that are ready to be added to the cluster, and then adds them to +Available Storage cluster group. ### Example 2: Add a specific available disk to Available Storage + ``` PS C:\> Get-ClusterAvailableDisk | Where-Object -FilterScript { $_.ScsiAddress -Eq 50331651 } | Add-ClusterDisk Name State Group ResourceType @@ -48,9 +54,11 @@ Name State Group ResourceType Cluster Disk 4 OnlinePending Available Storage Physical Disk ``` -This example examines disks that are ready to be added to the cluster, finds the disk with a specific SCSI address, and adds it to Available Storage cluster group. +This example examines disks that are ready to be added to the cluster, finds the disk with a +specific SCSI address, and adds it to Available Storage cluster group. ### Example 3: Cluster a physical disk + ``` PS C:\> Get-Disk -Number 11 | Add-ClusterDisk Name State OwnerGroup ResourceType @@ -58,14 +66,15 @@ Name State OwnerGroup Cluster Disk 5 OnlinePending Available Storage Physical Disk ``` -This example clusters a physical disk. -This cmdlet adds a physical disk to the **Available Storage** for the cluster. +This example clusters a physical disk. This cmdlet adds a physical disk to the **Available Storage** +for the cluster. ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -80,8 +89,9 @@ Accept wildcard characters: False ``` ### -InputObject -Specifies the list of shared disks to add to the cluster. -The list of disks is generated with the **Get-ClusterAvailableDisk** cmdlet. + +Specifies the list of shared disks to add to the cluster. The list of disks is generated with the +**Get-ClusterAvailableDisk** cmdlet. ```yaml Type: PSObject[] @@ -96,22 +106,31 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### Microsoft.FailoverClusters.PowerShell.ClusterDiskInfo ### Microsoft.Management.Infrastructure.CimInstance + This object is output from the Get-Disk and the **Get-VirtualDisk** cmdlets. ### Microsoft.Management.Infrastructure.CimInstance#ROOT/Microsoft/Windows/Storage/MSFT_Disk -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. -The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. + +The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the +namespace and class name for the underlying WMI object. ### Microsoft.Management.Infrastructure.CimInstance#ROOT/Microsoft/Windows/Storage/MSFT_VirtualDisk -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. -The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. + +The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the +namespace and class name for the underlying WMI object. ## OUTPUTS @@ -128,4 +147,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Get-Disk](../storage/Get-Disk.md) [Get-VirtualDisk](../storage/Get-VirtualDisk.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterFileServerRole.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterFileServerRole.md index 562e4a407a..ea0cb29bac 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterFileServerRole.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterFileServerRole.md @@ -22,15 +22,21 @@ Add-ClusterFileServerRole -Storage [-StaticAddress Add-ClusterFileServerRole -Storage "Cluster Disk 8" Name OwnerNode State @@ -41,6 +47,7 @@ cluster1FS node1 Online This example creates a clustered file server using Cluster Disk 8, and assigns a default name. ### Example 2: Create and name a clustered file server + ``` PS C:\> Add-ClusterFileServerRole -Storage "Cluster Disk 6" -Name cluster1FS12 Name OwnerNode State @@ -48,9 +55,11 @@ Name OwnerNode State cluster1FS12 node1 Online ``` -This example creates a clustered file server using Cluster Disk 6, and assigns the name cluster1FS12. +This example creates a clustered file server using Cluster Disk 6, and assigns the name +cluster1FS12. ### Example 3: Create a clustered file server with no waiting for resources + ``` PS C:\> Add-ClusterFileServerRole -Storage "Cluster Disk 8" -Wait 0 Name OwnerNode State @@ -58,14 +67,15 @@ Name OwnerNode State cluster1FS node1 Pending ``` -This example creates a clustered file server using Cluster Disk 8, and assigns a default name. -The cmdlet completes without waiting for all resources to come online. +This example creates a clustered file server using Cluster Disk 8, and assigns a default name. The +cmdlet completes without waiting for all resources to come online. ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -80,8 +90,10 @@ Accept wildcard characters: False ``` ### -IgnoreNetwork -Specifies one or more networks to ignore when running the cmdlet. -Networks with DHCP enabled are always included, but other networks need a static address to be specified using the *StaticAddress* parameter or should be explicitly ignored with this *IgnoreNetwork* parameter. + +Specifies one or more networks to ignore when running the cmdlet. Networks with DHCP enabled are +always included, but other networks need a static address to be specified using the *StaticAddress* +parameter or should be explicitly ignored with this *IgnoreNetwork* parameter. ```yaml Type: StringCollection @@ -96,6 +108,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster on which to create the highly available file server. ```yaml @@ -111,6 +124,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of the highly available file server to create. ```yaml @@ -126,8 +140,10 @@ Accept wildcard characters: False ``` ### -StaticAddress -Specifies one or more static addresses to use when running the cmdlet. -Networks with DHCP enabled are always included, but other networks need a static address to be specified using the *StaticAddress* parameter or should be explicitly ignored with this *IgnoreNetwork* parameter. + +Specifies one or more static addresses to use when running the cmdlet. Networks with DHCP enabled +are always included, but other networks need a static address to be specified using the +*StaticAddress* parameter or should be explicitly ignored with this *IgnoreNetwork* parameter. ```yaml Type: StringCollection @@ -142,6 +158,7 @@ Accept wildcard characters: False ``` ### -Storage + Specifies the cluster disk resource to be added to the created highly available file server. ```yaml @@ -157,9 +174,10 @@ Accept wildcard characters: False ``` ### -Wait -Specifies the time in seconds to wait for the cmdlet. -If the *Wait* parameter is not specified, then the cmdlet waits for completion. -If `-Wait 0` is specified, then the call is initiated and the cmdlet returns without waiting. + +Specifies the time in seconds to wait for the cmdlet. If the *Wait* parameter is not specified, then +the cmdlet waits for completion. If `-Wait 0` is specified, then the call is initiated and the +cmdlet returns without waiting. ```yaml Type: Int32 @@ -174,7 +192,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -199,4 +221,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Start-ClusterGroup](./Start-ClusterGroup.md) [Stop-ClusterGroup](./Stop-ClusterGroup.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericApplicationRole.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericApplicationRole.md index ea59bbb712..a3faf389ec 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericApplicationRole.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericApplicationRole.md @@ -11,28 +11,34 @@ title: Add-ClusterGenericApplicationRole # Add-ClusterGenericApplicationRole ## SYNOPSIS -Configures high availability for an application that was not originally designed to run in a failover cluster. +Configures high availability for an application that was not originally designed to run in a +failover cluster. ## SYNTAX ``` Add-ClusterGenericApplicationRole -CommandLine [-Parameters ] - [-CheckpointKey ] [-Storage ] [-StaticAddress ] - [-IgnoreNetwork ] [[-Name] ] [-Wait ] [-InputObject ] - [-Cluster ] [] + [-CheckpointKey ] [-Storage ] + [-StaticAddress ] [-IgnoreNetwork ] [[-Name] ] + [-Wait ] [-InputObject ] [-Cluster ] [] ``` ## DESCRIPTION -The **Add-ClusterGenericApplicationRole** cmdlet configures high availability for an application that was not originally designed to run in a failover cluster. -If an application is run as a Generic Application, the cluster software will start the application, then periodically query the operating system to see whether the application appears to be running. +The **Add-ClusterGenericApplicationRole** cmdlet configures high availability for an application +that was not originally designed to run in a failover cluster. + +If an application is run as a Generic Application, the cluster software will start the application, +then periodically query the operating system to see whether the application appears to be running. If so, then it is presumed to be online and will not be restarted or failed over. -Note: This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) authentication on the server computer. +Note: This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) +authentication on the server computer. ## EXAMPLES ### Example 1: Configure an application as a generic clustered application + ``` PS C:\> Add-ClusterGenericApplicationRole -CommandLine NewApplication.exe Name OwnerNode State @@ -40,10 +46,11 @@ Name OwnerNode State cluster1GenApp node2 Online ``` -This example configures NewApplication.exe as a generic clustered application. -A default name will be used for client access and this application requires no storage. +This example configures NewApplication.exe as a generic clustered application. A default name will +be used for client access and this application requires no storage. ### Example 2: Configure an application with storage and name + ``` PS C:\> Add-ClusterGenericApplicationRole -CommandLine NewApplication.exe -Storage "Cluster Disk 4" -Name NewApplication Name OwnerNode State @@ -51,9 +58,11 @@ Name OwnerNode State NewApplication node2 Online ``` -This example configures NewApplication.exe as a generic clustered application using Cluster Disk 4, and assigns the name NewApplication. +This example configures NewApplication.exe as a generic clustered application using Cluster Disk 4, +and assigns the name NewApplication. ### Example 3: Configure application with no wait for resources + ``` PS C:\> Add-ClusterGenericApplicationRole -CommandLine NewApplication.exe -Wait 0 Name OwnerNode State @@ -61,14 +70,15 @@ Name OwnerNode State cluster1GenApp node2 Pending ``` -This example configures NewApplication.exe as a generic clustered application and assigns the name NewApplication. -The cmdlet completes without waiting for all resources to come online. +This example configures NewApplication.exe as a generic clustered application and assigns the name +NewApplication. The cmdlet completes without waiting for all resources to come online. ## PARAMETERS ### -CheckpointKey -Specifies a comma-separated list of registry checkpoint keys to add for this highly available generic application. -All registry paths are relative to HKEY_LOCAL_MACHINE. + +Specifies a comma-separated list of registry checkpoint keys to add for this highly available +generic application. All registry paths are relative to HKEY_LOCAL_MACHINE. ```yaml Type: StringCollection @@ -83,8 +93,9 @@ Accept wildcard characters: False ``` ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -99,8 +110,10 @@ Accept wildcard characters: False ``` ### -CommandLine + Specifies the Windows PowerShell® command line to use for the highly available generic application. -If the full path is specified, then the current directory is parsed out of the Windows PowerShell command line. +If the full path is specified, then the current directory is parsed out of the Windows PowerShell +command line. ```yaml Type: String @@ -115,8 +128,10 @@ Accept wildcard characters: False ``` ### -IgnoreNetwork -Specifies one or more networks to ignore when running the cmdlet. -Networks with DHCP enabled are always included, but other networks need a static address to be specified using the *StaticAddress* parameter or should be explicitly ignored with this *IgnoreNetwork* parameter. + +Specifies one or more networks to ignore when running the cmdlet. Networks with DHCP enabled are +always included, but other networks need a static address to be specified using the *StaticAddress* +parameter or should be explicitly ignored with this *IgnoreNetwork* parameter. ```yaml Type: StringCollection @@ -131,6 +146,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster on which to create the highly available application. ```yaml @@ -146,6 +162,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of the highly available application to create. ```yaml @@ -161,6 +178,7 @@ Accept wildcard characters: False ``` ### -Parameters + Specifies the parameters to use for the highly available generic application. ```yaml @@ -176,8 +194,10 @@ Accept wildcard characters: False ``` ### -StaticAddress -Specifies one or more static addresses to use when running the cmdlet. -Networks with DHCP enabled are always included, but other networks need a static address to be specified using the *StaticAddress* parameter or should be explicitly ignored with this *IgnoreNetwork* parameter. + +Specifies one or more static addresses to use when running the cmdlet. Networks with DHCP enabled +are always included, but other networks need a static address to be specified using the +*StaticAddress* parameter or should be explicitly ignored with this *IgnoreNetwork* parameter. ```yaml Type: StringCollection @@ -192,6 +212,7 @@ Accept wildcard characters: False ``` ### -Storage + Specifies the cluster disk resource to be added to the created highly available application. ```yaml @@ -207,9 +228,10 @@ Accept wildcard characters: False ``` ### -Wait -Specifies the time in seconds to wait for the cmdlet. -If the *Wait* parameter is not specified, then the cmdlet waits for completion. -If `-Wait 0` is specified, then the call is initiated and the cmdlet returns without waiting. + +Specifies the time in seconds to wait for the cmdlet. If the *Wait* parameter is not specified, then +the cmdlet waits for completion. If `-Wait 0` is specified, then the call is initiated and the +cmdlet returns without waiting. ```yaml Type: Int32 @@ -224,7 +246,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -251,4 +277,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Start-ClusterGroup](./Start-ClusterGroup.md) [Stop-ClusterGroup](./Stop-ClusterGroup.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericScriptRole.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericScriptRole.md index 861ef6c97d..d9f3108b3a 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericScriptRole.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericScriptRole.md @@ -11,28 +11,33 @@ title: Add-ClusterGenericScriptRole # Add-ClusterGenericScriptRole ## SYNOPSIS -Configures an application controlled by a script that runs in Windows Script Host, within a failover cluster. +Configures an application controlled by a script that runs in Windows Script Host, within a failover +cluster. ## SYNTAX ``` Add-ClusterGenericScriptRole -ScriptFilePath [-Storage ] - [-StaticAddress ] [-IgnoreNetwork ] [[-Name] ] [-Wait ] - [-InputObject ] [-Cluster ] [] + [-StaticAddress ] [-IgnoreNetwork ] [[-Name] ] + [-Wait ] [-InputObject ] [-Cluster ] [] ``` ## DESCRIPTION -The **Add-ClusterGenericScriptRole** cmdlet configures an application controlled by a script that runs in Windows Script Host, within a failover cluster. -The script provides the cluster software with information about the current state of the application. -As needed, the cluster software will restart or fail over the script. -Through the script, the application will be restarted or failed over. +The **Add-ClusterGenericScriptRole** cmdlet configures an application controlled by a script that +runs in Windows Script Host, within a failover cluster. -Note: This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) authentication on the server computer. +The script provides the cluster software with information about the current state of the +application. As needed, the cluster software will restart or fail over the script. Through the +script, the application will be restarted or failed over. + +Note: This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) +authentication on the server computer. ## EXAMPLES ### Example 1: Configure a script to run on a failover cluster + ``` PS C:\> Add-ClusterGenericScriptRole -ScriptFilePath "script1.vbs" Name OwnerNode State @@ -40,9 +45,11 @@ Name OwnerNode State cluster1GenScript node2 Online ``` -This example configures the script named script1.vbs to run within a failover cluster, using defaults for the name and IP address, and does not assign a disk. +This example configures the script named script1.vbs to run within a failover cluster, using +defaults for the name and IP address, and does not assign a disk. ### Example 2: Configure a script on a failover cluster and assign a clustered script name + ``` PS C:\> Add-ClusterGenericScriptRole -ScriptFilePath "script1.vbs" -Storage "Cluster Disk 4" -Name "script1" Name OwnerNode State @@ -50,10 +57,11 @@ Name OwnerNode State script1 node2 Online ``` -This example configures the script named script1.vbs to run within a failover cluster and use Cluster Disk 4. -The cmdlet assigns the clustered script the name script1. +This example configures the script named script1.vbs to run within a failover cluster and use +Cluster Disk 4. The cmdlet assigns the clustered script the name script1. ### Example 3: Configure a script to run on a fail over cluster without waiting for resources + ``` PS C:\> Add-ClusterGenericScriptRole -ScriptFilePath "script1.vbs" -Wait 0 Name OwnerNode State @@ -61,14 +69,16 @@ Name OwnerNode State cluster1GenScript node2 Pending ``` -This example configures the script called script1.vbs to run within a failover cluster, using defaults for the name and IP address, and does not assign a disk. -The cmdlet completes without waiting for all resources to come online. +This example configures the script called script1.vbs to run within a failover cluster, using +defaults for the name and IP address, and does not assign a disk. The cmdlet completes without +waiting for all resources to come online. ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -83,8 +93,10 @@ Accept wildcard characters: False ``` ### -IgnoreNetwork -Specifies one or more networks to ignore when running the cmdlet. -Networks with DHCP enabled are always included, but other networks need a static address to be specified using the *StaticAddress* parameter or should be explicitly ignored with this *IgnoreNetwork* parameter. + +Specifies one or more networks to ignore when running the cmdlet. Networks with DHCP enabled are +always included, but other networks need a static address to be specified using the *StaticAddress* +parameter or should be explicitly ignored with this *IgnoreNetwork* parameter. ```yaml Type: StringCollection @@ -99,6 +111,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster on which to create the highly available script. ```yaml @@ -114,6 +127,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of the highly available script to create. ```yaml @@ -129,6 +143,7 @@ Accept wildcard characters: False ``` ### -ScriptFilePath + Specifies the path of the script file to use for the highly available script. ```yaml @@ -144,8 +159,10 @@ Accept wildcard characters: False ``` ### -StaticAddress -Specifies one or more static addresses to use when running the cmdlet. -Networks with DHCP enabled are always included, but other networks need a static address to be specified using the *StaticAddress* parameter or should be explicitly ignored with this *IgnoreNetwork* parameter. + +Specifies one or more static addresses to use when running the cmdlet. Networks with DHCP enabled +are always included, but other networks need a static address to be specified using the +*StaticAddress* parameter or should be explicitly ignored with this *IgnoreNetwork* parameter. ```yaml Type: StringCollection @@ -160,6 +177,7 @@ Accept wildcard characters: False ``` ### -Storage + Specifies the cluster disk resource to be added to the created highly available script. ```yaml @@ -175,9 +193,10 @@ Accept wildcard characters: False ``` ### -Wait -Specifies the time in seconds to wait for the cmdlet. -If the *Wait* parameter is not specified, then the cmdlet waits for completion. -If `-Wait 0` is specified, then the call is initiated and the cmdlet returns without waiting. + +Specifies the time in seconds to wait for the cmdlet. If the *Wait* parameter is not specified, then +the cmdlet waits for completion. If `-Wait 0` is specified, then the call is initiated and the +cmdlet returns without waiting. ```yaml Type: Int32 @@ -192,7 +211,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -219,4 +242,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Start-ClusterGroup](./Start-ClusterGroup.md) [Stop-ClusterGroup](./Stop-ClusterGroup.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericServiceRole.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericServiceRole.md index 8cc669470a..a23b9c6da3 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericServiceRole.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericServiceRole.md @@ -11,26 +11,33 @@ title: Add-ClusterGenericServiceRole # Add-ClusterGenericServiceRole ## SYNOPSIS -Configures high availability for a service that was not originally designed to run in a failover cluster. +Configures high availability for a service that was not originally designed to run in a failover +cluster. ## SYNTAX ``` Add-ClusterGenericServiceRole -ServiceName [-CheckpointKey ] - [-Storage ] [-StaticAddress ] [-IgnoreNetwork ] - [[-Name] ] [-Wait ] [-InputObject ] [-Cluster ] [] + [-Storage ] [-StaticAddress ] + [-IgnoreNetwork ] [[-Name] ] [-Wait ] [-InputObject ] + [-Cluster ] [] ``` ## DESCRIPTION -The **Add-ClusterGenericServiceRole** cmdlet configures high availability for a service that was not originally designed to run in a failover cluster. -The cluster software will start the service, then periodically query the Service Controller, which is a feature of the operating system, to determine whether the service appears to be running. -If so, then it is presumed to be online, and will not be restarted or failed over. -Note: This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) authentication on the server computer. +The **Add-ClusterGenericServiceRole** cmdlet configures high availability for a service that was not +originally designed to run in a failover cluster. The cluster software will start the service, then +periodically query the Service Controller, which is a feature of the operating system, to determine +whether the service appears to be running. If so, then it is presumed to be online, and will not be +restarted or failed over. + +Note: This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) +authentication on the server computer. ## EXAMPLES ### Example 1: Configure a service that uses default values + ``` PS C:\> Add-ClusterGenericServiceRole -ServiceName "Service1" Name OwnerNode State @@ -38,9 +45,11 @@ Name OwnerNode State cluster1GenSvc node1 Online ``` -This example configures Service1 as a generic clustered service, using defaults for the name and IP address, and does not assign a disk. +This example configures Service1 as a generic clustered service, using defaults for the name and IP +address, and does not assign a disk. ### Example 2: Configure a service that uses default values and a specified disk + ``` PS C:\> Add-ClusterGenericServiceRole -ServiceName "Service1" -Storage "Cluster Disk 6" Name OwnerNode State @@ -48,13 +57,15 @@ Name OwnerNode State cluster1GenSvc node1 Online ``` -This example configures Service1 as a generic clustered service using Cluster Disk 6, and assigns defaults for the name and IP address. +This example configures Service1 as a generic clustered service using Cluster Disk 6, and assigns +defaults for the name and IP address. ## PARAMETERS ### -CheckpointKey -Specifies a comma-separated list of registry checkpoint keys to add for this highly available generic application. -All registry paths are relative to HKEY_LOCAL_MACHINE. + +Specifies a comma-separated list of registry checkpoint keys to add for this highly available +generic application. All registry paths are relative to HKEY_LOCAL_MACHINE. ```yaml Type: StringCollection @@ -69,8 +80,9 @@ Accept wildcard characters: False ``` ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -85,8 +97,10 @@ Accept wildcard characters: False ``` ### -IgnoreNetwork -Specifies one or more networks to ignore when running the cmdlet. -Networks with DHCP enabled are always included, but other networks need a static address to be specified using the *StaticAddress* parameter or should be explicitly ignored with this *IgnoreNetwork* parameter. + +Specifies one or more networks to ignore when running the cmdlet. Networks with DHCP enabled are +always included, but other networks need a static address to be specified using the *StaticAddress* +parameter or should be explicitly ignored with this *IgnoreNetwork* parameter. ```yaml Type: StringCollection @@ -101,6 +115,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster on which to create the highly available service. ```yaml @@ -116,6 +131,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of the highly available service to create. ```yaml @@ -131,6 +147,7 @@ Accept wildcard characters: False ``` ### -ServiceName + Specifies the service name to use for the highly available service. ```yaml @@ -146,8 +163,10 @@ Accept wildcard characters: False ``` ### -StaticAddress -Specifies one or more static addresses to use when running the cmdlet. -Networks with DHCP enabled are always included, but other networks need a static address to be specified using the *StaticAddress* parameter or should be explicitly ignored with this *IgnoreNetwork* parameter. + +Specifies one or more static addresses to use when running the cmdlet. Networks with DHCP enabled +are always included, but other networks need a static address to be specified using the +*StaticAddress* parameter or should be explicitly ignored with this *IgnoreNetwork* parameter. ```yaml Type: StringCollection @@ -162,6 +181,7 @@ Accept wildcard characters: False ``` ### -Storage + Specifies the cluster disk resource to be added to the created highly available service. ```yaml @@ -177,9 +197,10 @@ Accept wildcard characters: False ``` ### -Wait -Specifies the time in seconds to wait for the cmdlet. -If the *Wait* parameter is not specified, then the cmdlet waits for completion. -If `-Wait 0` is specified, then the call is initiated and the cmdlet returns without waiting. + +Specifies the time in seconds to wait for the cmdlet. If the *Wait* parameter is not specified, then +the cmdlet waits for completion. If `-Wait 0` is specified, then the call is initiated and the +cmdlet returns without waiting. ```yaml Type: Int32 @@ -194,7 +215,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -221,4 +246,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Start-ClusterGroup](./Start-ClusterGroup.md) [Stop-ClusterGroup](./Stop-ClusterGroup.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterGroup.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterGroup.md index d9d58ae158..c58a58c398 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterGroup.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterGroup.md @@ -11,7 +11,8 @@ title: Add-ClusterGroup # Add-ClusterGroup ## SYNOPSIS -Adds an empty resource group to the failover cluster configuration, in preparation for adding clustered resources to the group. +Adds an empty resource group to the failover cluster configuration, in preparation for adding +clustered resources to the group. ## SYNTAX @@ -21,13 +22,15 @@ Add-ClusterGroup [-Name] [[-GroupType] ] [-InputOb ``` ## DESCRIPTION -The **Add-ClusterGroup** cmdlet adds an empty resource group to the failover cluster configuration, in preparation for adding clustered resources to the group. -A resource group, or a clustered role, is the unit of failover. -During failover, all resources in the resource group move together. + +The **Add-ClusterGroup** cmdlet adds an empty resource group to the failover cluster configuration, +in preparation for adding clustered resources to the group. A resource group, or a clustered role, +is the unit of failover. During failover, all resources in the resource group move together. ## EXAMPLES ### Example 1: Add a resource group + ``` PS C:\> Add-ClusterGroup -Name "Group1" Name OwnerNode State @@ -40,8 +43,9 @@ This example adds an empty resource group called Group1 to the failover cluster. ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -56,6 +60,7 @@ Accept wildcard characters: False ``` ### -GroupType + Specifies the type of group to add to the failover cluster configuration. ```yaml @@ -72,6 +77,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster on which to create the resource group. ```yaml @@ -87,6 +93,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of the resource group to add. ```yaml @@ -102,7 +109,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -125,4 +136,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Start-ClusterGroup](./Start-ClusterGroup.md) [Stop-ClusterGroup](./Stop-ClusterGroup.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupSetDependency.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupSetDependency.md index 4b8f46dfdc..c15832ac0c 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupSetDependency.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupSetDependency.md @@ -16,41 +16,48 @@ Adds a dependency to a cluster set. ## SYNTAX ### Query (cdxml) (Default) + ``` -Add-ClusterGroupSetDependency [[-Name] ] [-Provider] [-CimSession ] - [-ThrottleLimit ] [-AsJob] [-PassThru] [] +Add-ClusterGroupSetDependency [[-Name] ] [-Provider] + [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [] ``` ### InputObject (cdxml) + ``` -Add-ClusterGroupSetDependency -InputObject [-Provider] [-CimSession ] - [-ThrottleLimit ] [-AsJob] [-PassThru] [] +Add-ClusterGroupSetDependency -InputObject [-Provider] + [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [] ``` ## DESCRIPTION + The **Add-ClusterGroupSetDependency** cmdlet adds a dependency to a cluster set. ## EXAMPLES ### Example 1: Add a dependency to a provider set + ``` PS C:\> Add-ClusterGroupSetDependency -Name "Set001" -Provider "Provider002" ``` -This command adds the set named Provider002 as a provider to the set named Set001. -Both sets cannot be empty. +This command adds the set named Provider002 as a provider to the set named Set001. Both sets cannot +be empty. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. + +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml Type: SwitchParameter @@ -65,9 +72,11 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml Type: CimSession[] @@ -82,6 +91,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the input object that is used in a pipeline command. ```yaml @@ -97,6 +107,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of the group set, as an array, to add the dependency to. ```yaml @@ -112,8 +123,9 @@ Accept wildcard characters: False ``` ### -PassThru -Returns an object representing the item with which you are working. -By default, this cmdlet does not generate any output. + +Returns an object representing the item with which you are working. By default, this cmdlet does not +generate any output. ```yaml Type: SwitchParameter @@ -128,6 +140,7 @@ Accept wildcard characters: False ``` ### -Provider + Specifies the name of the set to add as a provider. ```yaml @@ -143,9 +156,12 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml Type: Int32 @@ -160,7 +176,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -173,4 +193,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Get-ClusterGroupSetDependency](./Get-ClusterGroupSetDependency.md) [Remove-ClusterGroupSetDependency](./Remove-ClusterGroupSetDependency.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupToSet.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupToSet.md index 73c9ecb6d8..15fb7f31cf 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupToSet.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupToSet.md @@ -16,24 +16,27 @@ Adds a group to a set. ## SYNTAX ### Query (cdxml) (Default) + ``` Add-ClusterGroupToSet [[-Name] ] [-Group] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [] ``` ### InputObject (cdxml) + ``` Add-ClusterGroupToSet -InputObject [-Group] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [] ``` ## DESCRIPTION -The **Add-ClusterGroupToSet** cmdlet adds a group to a set. -A group can only belong to one set. + +The **Add-ClusterGroupToSet** cmdlet adds a group to a set. A group can only belong to one set. ## EXAMPLES ### Example 1: Add a cluster group to a set + ``` PS C:\> Add-ClusterGroupToSet -Name "Set001" -Group "Group001" ``` @@ -43,14 +46,17 @@ This command adds the cluster group named Group001 to the set named Set001. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. + +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml Type: SwitchParameter @@ -65,9 +71,11 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml Type: CimSession[] @@ -82,6 +90,7 @@ Accept wildcard characters: False ``` ### -Group + Specifies the name of the group that this cmdlet adds to the set. ```yaml @@ -97,6 +106,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the input object that is used in a pipeline command. ```yaml @@ -112,6 +122,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of the set, as an array, to add the group to. ```yaml @@ -127,8 +138,9 @@ Accept wildcard characters: False ``` ### -PassThru -Returns an object representing the item with which you are working. -By default, this cmdlet does not generate any output. + +Returns an object representing the item with which you are working. By default, this cmdlet does not +generate any output. ```yaml Type: SwitchParameter @@ -143,9 +155,12 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml Type: Int32 @@ -160,7 +175,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -173,4 +192,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Add-ClusterGroupSetDependency](./Add-ClusterGroupSetDependency.md) [Failover Clusters](./failoverclusters.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterNode.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterNode.md index 40711e1763..8421c54469 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterNode.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterNode.md @@ -16,22 +16,26 @@ Adds a node (server) to a failover cluster. ## SYNTAX ``` -Add-ClusterNode [[-Name] ] [-NoStorage] [-InputObject ] [-Cluster ] - [] +Add-ClusterNode [[-Name] ] [-NoStorage] [-InputObject ] + [-Cluster ] [] ``` ## DESCRIPTION -The **Add-ClusterNode** cmdlet adds a node, or server, to a failover cluster. -Before adding the new node, you should run validation tests on the existing nodes together with the proposed new node. -Before adding the new node, you should run validation tests on the existing nodes together with the proposed new node. -By running the validation tests, you can confirm that the server to be added is connected correctly to the networks and storage and that it contains the same software updates. +The **Add-ClusterNode** cmdlet adds a node, or server, to a failover cluster. Before adding the new +node, you should run validation tests on the existing nodes together with the proposed new node. -Note: This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) authentication on the server computer. +Before adding the new node, you should run validation tests on the existing nodes together with the +proposed new node. By running the validation tests, you can confirm that the server to be added is +connected correctly to the networks and storage and that it contains the same software updates. + +Note: This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) +authentication on the server computer. ## EXAMPLES ### Example 1 + ``` PS C:\> Add-ClusterNode -Name node4 Name State @@ -42,6 +46,7 @@ node4 Up This example adds node named node4 to the local cluster. ### Example 2 + ``` PS C:\> Get-Cluster -Name cluster1 | Add-ClusterNode -Name node3 Name State @@ -54,8 +59,9 @@ This example adds the node named node3 to cluster called cluster1. ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -70,6 +76,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster to which to add the new cluster node. ```yaml @@ -85,6 +92,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of the cluster node to add. ```yaml @@ -100,8 +108,10 @@ Accept wildcard characters: False ``` ### -NoStorage -Ensures that shared storage, on the node being joined to the cluster, will not be added to the cluster during the join operation. -Shared storage can be added by piping the ClusterDiskInfo object from the **Get-ClusterAvailableDisk** cmdlet into the **Add-ClusterDisk** cmdlet. + +Ensures that shared storage, on the node being joined to the cluster, will not be added to the +cluster during the join operation. Shared storage can be added by piping the ClusterDiskInfo object +from the **Get-ClusterAvailableDisk** cmdlet into the **Add-ClusterDisk** cmdlet. ```yaml Type: SwitchParameter @@ -116,7 +126,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -149,4 +163,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Suspend-ClusterNode](./Suspend-ClusterNode.md) [Test-Cluster](./Test-Cluster.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterResource.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterResource.md index 4b07704edb..ec8bf622fa 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterResource.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterResource.md @@ -16,17 +16,20 @@ Adds a resource to a clustered role, or resource group, in a failover cluster. ## SYNTAX ``` -Add-ClusterResource [-Name] [[-Group] ] [-ResourceType] [-SeparateMonitor] - [-InputObject ] [-Cluster ] [] +Add-ClusterResource [-Name] [[-Group] ] [-ResourceType] + [-SeparateMonitor] [-InputObject ] [-Cluster ] [] ``` ## DESCRIPTION -The **Add-ClusterResource** cmdlet adds a resource to a clustered role, or resource group, in a failover cluster. -Before adding the resource, obtain the resource type and the name of the group to which to add the resource. + +The **Add-ClusterResource** cmdlet adds a resource to a clustered role, or resource group, in a +failover cluster. Before adding the resource, obtain the resource type and the name of the group to +which to add the resource. ## EXAMPLES ### Example 1 + ``` PS C:\> Add-ClusterResource -Name resource1 -ResourceType "IP Address" -Group ClusterSrv1 Name State Group ResourceType @@ -34,14 +37,15 @@ Name State Group ResourceType resource1 Offline ClusterSrv1 IP Address ``` -This example creates a new IP Address resource called resource1 on the local cluster. -The cmdlet configures the resource as part of the clustered role, or resource group, called ClusterSrv1. +This example creates a new IP Address resource called resource1 on the local cluster. The cmdlet +configures the resource as part of the clustered role, or resource group, called ClusterSrv1. ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -56,6 +60,7 @@ Accept wildcard characters: False ``` ### -Group + Specifies the name of the clustered role where the new resource is added. ```yaml @@ -71,6 +76,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the clustered role where the new resource is added. ```yaml @@ -86,6 +92,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of the cluster resource to create. ```yaml @@ -101,6 +108,7 @@ Accept wildcard characters: False ``` ### -ResourceType + Specifies the name of the cluster resource type for the new cluster resource. ```yaml @@ -116,6 +124,7 @@ Accept wildcard characters: False ``` ### -SeparateMonitor + Specifies that the new resource should run in a separate resource monitor. ```yaml @@ -131,7 +140,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -158,4 +171,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Stop-ClusterResource](./Stop-ClusterResource.md) [Suspend-ClusterResource](./Suspend-ClusterResource.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterResourceDependency.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterResourceDependency.md index a9e94edfa8..c73381a3c8 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterResourceDependency.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterResourceDependency.md @@ -11,25 +11,30 @@ title: Add-ClusterResourceDependency # Add-ClusterResourceDependency ## SYNOPSIS -Adds a resource to the list of resources on which a particular resource depends, using AND as the connector, within a failover cluster. +Adds a resource to the list of resources on which a particular resource depends, using AND as the +connector, within a failover cluster. ## SYNTAX ``` -Add-ClusterResourceDependency [[-Resource] ] [[-Provider] ] [-InputObject ] - [-Cluster ] [] +Add-ClusterResourceDependency [[-Resource] ] [[-Provider] ] + [-InputObject ] [-Cluster ] [] ``` ## DESCRIPTION -The **Add-ClusterResourceDependency** cmdlet adds a resource to the list of resources on which a particular resource depends, using AND as the connector, within a failover cluster. -Existing dependencies will remain on the list. If you specify the *InputObject* parameter, the *Resource* parameter will be ignored. -A dependent resource is brought online after the resources on which it depends. -A dependent resource is taken offline before the resources on which it depends. +The **Add-ClusterResourceDependency** cmdlet adds a resource to the list of resources on which a +particular resource depends, using AND as the connector, within a failover cluster. Existing +dependencies will remain on the list. If you specify the *InputObject* parameter, the *Resource* +parameter will be ignored. + +A dependent resource is brought online after the resources on which it depends. A dependent resource +is taken offline before the resources on which it depends. ## EXAMPLES ### Example 1 + ``` PS C:\> Add-ClusterResourceDependency -Resource "FileServer-(cluster1FS12)" -Provider "Cluster Disk 4" Name State Group ResourceType @@ -37,13 +42,15 @@ Name State Group ResourceType FileServer-(clus... Online cluster1FS12 File Server ``` -This example adds the resource named "Cluster Disk 4" to the list of resources on which the resource called "FileServer-(cluster1FS12)" depends, using AND as the connector. +This example adds the resource named "Cluster Disk 4" to the list of resources on which the resource +called "FileServer-(cluster1FS12)" depends, using AND as the connector. ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -58,6 +65,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster resource for which to add the dependency. ```yaml @@ -73,6 +81,7 @@ Accept wildcard characters: False ``` ### -Provider + Specifies the cluster resource to add as a dependency. ```yaml @@ -88,6 +97,7 @@ Accept wildcard characters: False ``` ### -Resource + Specifies the name of the cluster resource for which to add the dependency. ```yaml @@ -103,7 +113,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterResourceType.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterResourceType.md index 3805e79cfa..37947f5c24 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterResourceType.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterResourceType.md @@ -11,26 +11,32 @@ title: Add-ClusterResourceType # Add-ClusterResourceType ## SYNOPSIS -Adds a resource type to a failover cluster, and specifies information such as the dynamic-link library (DLL) to use with that resource type. +Adds a resource type to a failover cluster, and specifies information such as the dynamic-link +library (DLL) to use with that resource type. ## SYNTAX ``` -Add-ClusterResourceType [-Name] [-Dll] [[-DisplayName] ] [-InputObject ] - [-Cluster ] [] +Add-ClusterResourceType [-Name] [-Dll] [[-DisplayName] ] + [-InputObject ] [-Cluster ] [] ``` ## DESCRIPTION -The **Add-ClusterResourceType** cmdlet adds a resource type to a failover cluster, and specifies information such as the dynamic-link library (DLL) to use with that resource type. + +The **Add-ClusterResourceType** cmdlet adds a resource type to a failover cluster, and specifies +information such as the dynamic-link library (DLL) to use with that resource type. The failover cluster software provides Resource DLL files for the most common types of resources. -Using the application programming interface (API) provided in the Microsoft Platform Software Development Kit (SDK), other vendors can add support for other resource types. +Using the application programming interface (API) provided in the Microsoft Platform Software +Development Kit (SDK), other vendors can add support for other resource types. -Note: This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) authentication on the server computer. +Note: This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) +authentication on the server computer. ## EXAMPLES ### Example 1 + ``` PS C:\> Add-ClusterResourceType -Name ResType3 -InputObject C:\res3.dll Name DisplayName @@ -38,9 +44,11 @@ Name DisplayName ResType3 ResType3 ``` -This example creates ResType3 on the local cluster using res3.dll located on the provided resource DLL file path C:\. +This example creates ResType3 on the local cluster using res3.dll located on the provided resource +DLL file path C:\. ### Example 2 + ``` PS C:\> Add-ClusterResourceType -Name ResType4 -InputObject C:\res4.dll -DisplayName "Resource Type 4" Name DisplayName @@ -48,14 +56,15 @@ Name DisplayName ResType4 Resource Type 4 ``` -This example creates ResType4 on the local cluster using res4.dll located on the provided resource DLL file path C:\. -The display name of the resource type is Resource Type 4. +This example creates ResType4 on the local cluster using res4.dll located on the provided resource +DLL file path C:\. The display name of the resource type is Resource Type 4. ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -70,6 +79,7 @@ Accept wildcard characters: False ``` ### -DisplayName + Specifies the display name for the resource type. ```yaml @@ -85,6 +95,7 @@ Accept wildcard characters: False ``` ### -Dll + Specifies the DLL file path for the resource type. ```yaml @@ -100,6 +111,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster on which to register the new resource type. ```yaml @@ -115,6 +127,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of the cluster resource type to register. ```yaml @@ -130,7 +143,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -147,4 +164,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Get-ClusterResourceType](./Get-ClusterResourceType.md) [Remove-ClusterResourceType](./Remove-ClusterResourceType.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md index 2d62de7f37..adf22afd07 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md @@ -16,22 +16,26 @@ Creates a clustered file server for scale-out application data. ## SYNTAX ``` -Add-ClusterScaleOutFileServerRole [[-Name] ] [-Wait ] [-Infrastructure] [-InputObject ] - [-Cluster ] [] +Add-ClusterScaleOutFileServerRole [[-Name] ] [-Wait ] [-Infrastructure] +[-InputObject ] [-Cluster ] [] ``` ## DESCRIPTION -The **Add-ClusterScaleOutFileServerRole** cmdlet creates a clustered file server for scale-out application data. -A file server for scale-out application data provides storage for applications or virtual machines that leave files open for extended periods of time. -Client connections are distributed across nodes for better throughput. -This type of file server supports the Server Message Block (SMB) protocol. -It does not support the Network File System (NFS) protocol, or certain role services such as File Server Resource Manager (FSRM) or Distributed File System (DFS) Replication. -Note: This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) authentication on the server computer. +The **Add-ClusterScaleOutFileServerRole** cmdlet creates a clustered file server for scale-out +application data. A file server for scale-out application data provides storage for applications or +virtual machines that leave files open for extended periods of time. Client connections are +distributed across nodes for better throughput. This type of file server supports the Server Message +Block (SMB) protocol. It does not support the Network File System (NFS) protocol, or certain role +services such as File Server Resource Manager (FSRM) or Distributed File System (DFS) Replication. + +Note: This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) +authentication on the server computer. ## EXAMPLES ### Example 1 + ```powershell PS C:\> Add-ClusterScaleOutFileServerRole ``` @@ -44,6 +48,7 @@ clusterSOFS CLUSTER-N2 This example creates a highly available scale-out file server role. ### Example 2 + ```powershell PS C:\> Add-ClusterScaleOutFileServerRole -Wait 0 ``` @@ -53,21 +58,28 @@ Name OwnerNode clusterSOFS CLUSTER-N2 Pending ``` -This example creates a highly available scale out file server role. -The cmdlet completes without waiting for all resources to come online. +This example creates a highly available scale out file server role. The cmdlet completes without +waiting for all resources to come online. ### Example 3 + ```powershell Add-ClusterScaleOutFileServerRole -Cluster MyCluster -Infrastructure -Name InfraSOFSName ``` -This example creates an infrastructure file server scale-out file server role. It automatically creates a single namespace share for the CSV drive (such as `\\InfraSOFSName\Volume1`). In hyper-converged configurations, an infrastructure scale-out file server allows an SMB client (Hyper-V host) to communicate with guaranteed continuous availability with the infrastructure scale-out SMB file server. There can be at most only one infrastructure scale-out file server cluster role on a failover cluster. +This example creates an infrastructure file server scale-out file server role. It automatically +creates a single namespace share for the CSV drive (such as `\\InfraSOFSName\Volume1`). In +hyper-converged configurations, an infrastructure scale-out file server allows an SMB client +(Hyper-V host) to communicate with guaranteed continuous availability with the infrastructure +scale-out SMB file server. There can be at most only one infrastructure scale-out file server +cluster role on a failover cluster. ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -82,6 +94,7 @@ Accept wildcard characters: False ``` ### -Infrastructure + Specifies whether to create infrastructure file server scale-out file server role. ```yaml @@ -97,6 +110,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster on which to create the highly available scale-out file server. ```yaml @@ -112,6 +126,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of the highly available scale-out file server being created. ```yaml @@ -127,9 +142,10 @@ Accept wildcard characters: False ``` ### -Wait -Specifies the time in seconds to wait for the cmdlet. -If the **Wait** parameter is not specified, then the cmdlet waits for completion. -If `-Wait 0` is specified, then the call is initiated and the cmdlet returns without waiting. + +Specifies the time in seconds to wait for the cmdlet. If the **Wait** parameter is not specified, +then the cmdlet waits for completion. If `-Wait 0` is specified, then the call is initiated and the +cmdlet returns without waiting. ```yaml Type: Int32 @@ -144,7 +160,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -169,4 +189,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Start-ClusterGroup](./Start-ClusterGroup.md) [Stop-ClusterGroup](./Stop-ClusterGroup.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolume.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolume.md index e4aa14a8e3..5dcd673ae7 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolume.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolume.md @@ -21,12 +21,15 @@ Add-ClusterSharedVolume [[-Name] ] [-InputObject ] [ ``` ## DESCRIPTION -The **Add-ClusterSharedVolume** cmdlet makes a volume available in the Cluster Shared Volumes in a failover cluster. -The Cluster Shared Volume must be chosen from the disks in Available Storage (that is, disks that have been added to the cluster but not assigned to a specific use in the cluster). + +The **Add-ClusterSharedVolume** cmdlet makes a volume available in the Cluster Shared Volumes in a +failover cluster. The Cluster Shared Volume must be chosen from the disks in Available Storage (that +is, disks that have been added to the cluster but not assigned to a specific use in the cluster). ## EXAMPLES ### Example 1 + ``` PS C:\> Add-ClusterSharedVolume -Name "Cluster Disk 4" Name State Node @@ -39,8 +42,9 @@ This example adds Cluster Disk 4 to the Cluster Shared Volumes on the local clus ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -55,6 +59,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster disk resource to be added to the Cluster Shared Volumes. ```yaml @@ -70,6 +75,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of the cluster disk resource to add. ```yaml @@ -85,7 +91,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -106,4 +116,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Move-ClusterSharedVolume](./Move-ClusterSharedVolume.md) [Remove-ClusterSharedVolume](./Remove-ClusterSharedVolume.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterVMMonitoredItem.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterVMMonitoredItem.md index 954c0f69c2..2aea9a0cfc 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterVMMonitoredItem.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterVMMonitoredItem.md @@ -11,39 +11,47 @@ title: Add-ClusterVMMonitoredItem # Add-ClusterVMMonitoredItem ## SYNOPSIS -Configures monitoring for a service or an Event Tracing for Windows (ETW) event so that it is monitored on a virtual machine. +Configures monitoring for a service or an Event Tracing for Windows (ETW) event so that it is +monitored on a virtual machine. ## SYNTAX ### VirtualMachine (Default) + ``` -Add-ClusterVMMonitoredItem [-Service ] [-EventLog ] [-EventSource ] - [-EventId ] [-OverrideServiceRecoveryActions] [[-VirtualMachine] ] [-Wait ] - [-Cluster ] [] +Add-ClusterVMMonitoredItem [-Service ] [-EventLog ] + [-EventSource ] [-EventId ] [-OverrideServiceRecoveryActions] + [[-VirtualMachine] ] [-Wait ] [-Cluster ] [] ``` ### VMId + ``` -Add-ClusterVMMonitoredItem [-Service ] [-EventLog ] [-EventSource ] - [-EventId ] [-OverrideServiceRecoveryActions] [-VMId ] [-Wait ] [-Cluster ] - [] +Add-ClusterVMMonitoredItem [-Service ] [-EventLog ] + [-EventSource ] [-EventId ] [-OverrideServiceRecoveryActions] [-VMId ] + [-Wait ] [-Cluster ] [] ``` ### InputObject + ``` -Add-ClusterVMMonitoredItem [-Service ] [-EventLog ] [-EventSource ] - [-EventId ] [-OverrideServiceRecoveryActions] [-Wait ] [-InputObject ] - [-Cluster ] [] +Add-ClusterVMMonitoredItem [-Service ] [-EventLog ] + [-EventSource ] [-EventId ] [-OverrideServiceRecoveryActions] [-Wait ] + [-InputObject ] [-Cluster ] [] ``` ## DESCRIPTION -The **Add-ClusterVMMonitoredItem** cmdlet configures monitoring for a service or an Event Tracing for Windows (ETW) event so that it is monitored on a virtual machine. -If the service fails or the event occurs, then the system responds by taking an action based on the failover configuration for the virtual machine resource. -For example, the configuration might specify that the virtual machine be restarted. + +The **Add-ClusterVMMonitoredItem** cmdlet configures monitoring for a service or an Event Tracing +for Windows (ETW) event so that it is monitored on a virtual machine. If the service fails or the +event occurs, then the system responds by taking an action based on the failover configuration for +the virtual machine resource. For example, the configuration might specify that the virtual machine +be restarted. ## EXAMPLES ### Example 1 + ``` PS C:\> Add-ClusterVMMonitoredItem -VirtualMachine test-VM11 -EventLog "Microsoft-Windows-FailoverClustering-Manager/Admin" -EventSource "Microsoft-Windows-FailoverClustering-Manager" -EventId 4708 Name @@ -54,6 +62,7 @@ Microsoft-Windows-FailoverClustering-Manager+Admin,Microsoft-Windows-FailoverClu This example adds monitoring for the ETW event ID 4708. ### Example 2 + ``` PS C:\> Add-ClusterVMMonitoredItem -VirtualMachine test-VM11 -Service spooler Name @@ -66,8 +75,9 @@ This example configures monitoring for the print spooler service. ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -82,6 +92,7 @@ Accept wildcard characters: False ``` ### -EventId + Specifies the event identifier (ID) of the event to be monitored. ```yaml @@ -97,6 +108,7 @@ Accept wildcard characters: False ``` ### -EventLog + Specifies the event log of the event to be monitored. ```yaml @@ -112,6 +124,7 @@ Accept wildcard characters: False ``` ### -EventSource + Specifies the event source of the event to be monitored. ```yaml @@ -127,7 +140,9 @@ Accept wildcard characters: False ``` ### -InputObject -Specifies the cluster on which to run the cmdlet, the clustered virtual machine on which to configure monitoring, and the cluster virtual machine monitored item object to monitor. + +Specifies the cluster on which to run the cmdlet, the clustered virtual machine on which to +configure monitoring, and the cluster virtual machine monitored item object to monitor. ```yaml Type: PSObject @@ -142,12 +157,14 @@ Accept wildcard characters: False ``` ### -OverrideServiceRecoveryActions -Specifies that the cluster service will fix, by overriding, the service recovery actions in the event that it is not properly configured for monitoring. -To be configured for monitoring the following conditions need to be met: -- None of the service recovery actions are set to Restart the computer. +Specifies that the cluster service will fix, by overriding, the service recovery actions in the +event that it is not properly configured for monitoring. To be configured for monitoring the +following conditions need to be met: + +- None of the service recovery actions are set to Restart the computer. -AND +AND - At least one of the service recovery actions are set to Take no action. @@ -164,9 +181,9 @@ Accept wildcard characters: False ``` ### -Service -Specifies the name of a service to be monitored. -This must be the short name, not the long name, of the service. -For example, specify clussvc instead of Failover Cluster service. + +Specifies the name of a service to be monitored. This must be the short name, not the long name, of +the service. For example, specify clussvc instead of Failover Cluster service. ```yaml Type: StringCollection @@ -181,6 +198,7 @@ Accept wildcard characters: False ``` ### -VMId + Specifies the virtual machine identifier (ID). ```yaml @@ -196,8 +214,10 @@ Accept wildcard characters: False ``` ### -VirtualMachine -Specifies the name of the clustered virtual machine on which to perform monitoring. -When this parameter is specified, the cmdlet must be run on one of the host cluster nodes, or else the **Cluster** parameter must also be specified. + +Specifies the name of the clustered virtual machine on which to perform monitoring. When this +parameter is specified, the cmdlet must be run on one of the host cluster nodes, or else the +**Cluster** parameter must also be specified. ```yaml Type: String @@ -212,9 +232,10 @@ Accept wildcard characters: False ``` ### -Wait -Specifies the time in seconds to wait for the cmdlet. -If the *Wait* parameter is not specified, then the cmdlet waits for completion. -If `-Wait 0` is specified, then the call is initiated and the cmdlet returns without waiting. + +Specifies the time in seconds to wait for the cmdlet. If the *Wait* parameter is not specified, then +the cmdlet waits for completion. If `-Wait 0` is specified, then the call is initiated and the +cmdlet returns without waiting. ```yaml Type: Int32 @@ -229,7 +250,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -254,4 +279,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Remove-ClusterVMMonitoredItem](./Remove-ClusterVMMonitoredItem.md) [Reset-ClusterVMMonitoredState](./Reset-ClusterVMMonitoredState.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterVirtualMachineRole.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterVirtualMachineRole.md index e49f088ece..eb0f64a4c3 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterVirtualMachineRole.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterVirtualMachineRole.md @@ -11,30 +11,39 @@ title: Add-ClusterVirtualMachineRole # Add-ClusterVirtualMachineRole ## SYNOPSIS -Creates a clustered virtual machine, that is, a virtual machine that can be failed over if necessary to a different server in the failover cluster. +Creates a clustered virtual machine, that is, a virtual machine that can be failed over if necessary +to a different server in the failover cluster. ## SYNTAX ``` -Add-ClusterVirtualMachineRole [-Name ] [[-VMName] ] [-VirtualMachine ] [-VMId ] - [-InputObject ] [-Cluster ] [] +Add-ClusterVirtualMachineRole [-Name ] [[-VMName] ] [-VirtualMachine ] + [-VMId ] [-InputObject ] [-Cluster ] [] ``` ## DESCRIPTION -The **Add-ClusterVirtualMachineRole** cmdlet creates a clustered virtual machine, that is, a virtual machine that can be failed over if necessary to a different server in the failover cluster. -By creating clustered virtual machines, you can consolidate multiple servers on one physical server without causing that server to become a single point of failure. -Instead, if that server, or cluster node, fails or requires scheduled maintenance, then another node begins to run the virtual machines instead through a process known as failover. -The virtual hard disk (VHD) file for the clustered virtual machine must be on the clustered disk used by that virtual machine. +The **Add-ClusterVirtualMachineRole** cmdlet creates a clustered virtual machine, that is, a virtual +machine that can be failed over if necessary to a different server in the failover cluster. -**Note:** This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) authentication on the server computer. +By creating clustered virtual machines, you can consolidate multiple servers on one physical server +without causing that server to become a single point of failure. Instead, if that server, or cluster +node, fails or requires scheduled maintenance, then another node begins to run the virtual machines +instead through a process known as failover. The virtual hard disk (VHD) file for the clustered +virtual machine must be on the clustered disk used by that virtual machine. -**Note:** This cmdlet generates a .TMP file under the user temp folder, and you can't have more than 65535 .TMP files generated by this cmdlet, otherwise you will receive an exception "The File Exist". For more information, please go to: https://techcommunity.microsoft.com/t5/ITOps-Talk-Blog/TQA-Add-ClusterVirtualMachineRole-fails-with-the-error-quot-The/ba-p/713344 +**Note:** This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) +authentication on the server computer. +**Note:** This cmdlet generates a .TMP file under the user temp folder, and you can't have more than +65535 .TMP files generated by this cmdlet, otherwise you will receive an exception "The File Exist". +For more information, please go to: +https://techcommunity.microsoft.com/t5/ITOps-Talk-Blog/TQA-Add-ClusterVirtualMachineRole-fails-with-the-error-quot-The/ba-p/713344 ## EXAMPLES ### Example 1 + ``` PS C:\> Add-ClusterVirtualMachineRole -VirtualMachine VM1 Name OwnerNode State @@ -45,6 +54,7 @@ Virtual Machine node1 Offline This example configures VM1 as a clustered virtual machine, and assigns a default name. ### Example 2 + ``` PS C:\> Add-ClusterVirtualMachineRole -VirtualMachine VM1 -Name "MainServer1" Name OwnerNode State @@ -55,6 +65,7 @@ MainServer1 node1 Offline This example configures VM1 as a clustered virtual machine, and assigns the name MainServer1. ### Example 3 + ``` PS C:\> Get-VM -Name *print* | Add-ClusterVirtualMachineRole Report file location: C:\Windows\cluster\Reports\Highly Available Virtual Machine 0ce88dce-eb6b-4c17-a512-d13bdbe5fcba on2011.11.28 At 15.37.33.mht @@ -64,13 +75,15 @@ Name OwnerNode print-VM1 node1 Online ``` -This example queries for virtual machines matching the wildcard characters *print* and configures them as clustered virtual machines. +This example queries for virtual machines matching the wildcard characters *print* and configures +them as clustered virtual machines. ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -85,6 +98,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster on which to create the highly available virtual machine. ```yaml @@ -100,6 +114,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of the highly available virtual machine to create. ```yaml @@ -115,6 +130,7 @@ Accept wildcard characters: False ``` ### -VMId + Specifies the virtual machine identifier (ID). ```yaml @@ -130,8 +146,9 @@ Accept wildcard characters: False ``` ### -VMName -Specifies the name of the virtual machine to make highly available. -Use either the **VirtualMachine** parameter or the **VMName** parameter to specify the name of the virtual machine. + +Specifies the name of the virtual machine to make highly available. Use either the +**VirtualMachine** parameter or the **VMName** parameter to specify the name of the virtual machine. ```yaml Type: String @@ -146,8 +163,9 @@ Accept wildcard characters: False ``` ### -VirtualMachine -Specifies the name of the virtual machine to make highly available. -Use either the **VirtualMachine** parameter or the **VMName** parameter to specify the name of the virtual machine. + +Specifies the name of the virtual machine to make highly available. Use either the +**VirtualMachine** parameter or the **VMName** parameter to specify the name of the virtual machine. ```yaml Type: String @@ -162,7 +180,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -181,4 +203,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Update-ClusterVirtualMachineConfiguration](./Update-ClusterVirtualMachineConfiguration.md) [Get-VM](../Hyper-V/Get-VM.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusteriSCSITargetServerRole.md b/docset/winserver2022-ps/failoverclusters/Add-ClusteriSCSITargetServerRole.md index 87fab02c6b..03e87d2df2 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusteriSCSITargetServerRole.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusteriSCSITargetServerRole.md @@ -22,11 +22,13 @@ Add-ClusteriSCSITargetServerRole -Storage [-StaticAddress Add-ClusteriSCSITargetServerRole -Storage "Cluster Disk 5" Name OwnerNode State @@ -34,9 +36,11 @@ Name OwnerNode State CLiSCSITarget node1 Online ``` -This example creates a clustered iSCSI Target server using Cluster Disk 5, and assigns a default name. +This example creates a clustered iSCSI Target server using Cluster Disk 5, and assigns a default +name. ### Example 2 + ``` PS C:\> Add-ClusteriSCSITargetServerRole -Storage "Cluster Disk 5" -Name MyiSCSITarget Name OwnerNode State @@ -44,9 +48,11 @@ Name OwnerNode State MyiSCSITarget node1 Online ``` -This example creates a clustered iSCSI Target server using Cluster Disk 5, and assigns the name MyiSCSITarget. +This example creates a clustered iSCSI Target server using Cluster Disk 5, and assigns the name +MyiSCSITarget. ### Example 3 + ``` PS C:\> Add-ClusteriSCSITargetServerRole -Storage "Cluster Disk 5" -Wait 0 Name OwnerNode State @@ -54,14 +60,15 @@ Name OwnerNode State CLiSCSITarget node1 Pending ``` -This example creates a clustered iSCSI Target server using Cluster Disk 5, and assigns a default name. -The cmdlet completes without waiting for all resources to come online. +This example creates a clustered iSCSI Target server using Cluster Disk 5, and assigns a default +name. The cmdlet completes without waiting for all resources to come online. ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -76,8 +83,10 @@ Accept wildcard characters: False ``` ### -IgnoreNetwork -Specifies one or more networks to ignore when running the cmdlet. -Networks with DHCP enabled are always included, but other networks need a static address to be specified using the **StaticAddress** parameter or should be explicitly ignored with this **IgnoreNetwork** parameter. + +Specifies one or more networks to ignore when running the cmdlet. Networks with DHCP enabled are +always included, but other networks need a static address to be specified using the +**StaticAddress** parameter or should be explicitly ignored with this **IgnoreNetwork** parameter. ```yaml Type: StringCollection @@ -92,6 +101,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster on which to create the highly available iSCSI Target server. ```yaml @@ -107,6 +117,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of the highly available iSCSI Target server to create. ```yaml @@ -122,8 +133,10 @@ Accept wildcard characters: False ``` ### -StaticAddress -Specifies one or more static addresses to use when running the cmdlet. -Networks with DHCP enabled are always included, but other networks need a static address to be specified using the **StaticAddress** parameter or should be explicitly ignored with this **IgnoreNetwork** parameter. + +Specifies one or more static addresses to use when running the cmdlet. Networks with DHCP enabled +are always included, but other networks need a static address to be specified using the +**StaticAddress** parameter or should be explicitly ignored with this **IgnoreNetwork** parameter. ```yaml Type: StringCollection @@ -138,6 +151,7 @@ Accept wildcard characters: False ``` ### -Storage + Specifies the cluster disk resource to be added to the created highly available iSCSI Target server. ```yaml @@ -153,9 +167,10 @@ Accept wildcard characters: False ``` ### -Wait -Specifies the time in seconds to wait for the cmdlet. -If the **Wait** parameter is not specified, then the cmdlet waits for completion. -If `-Wait 0` is specified, then the call is initiated and the cmdlet returns without waiting. + +Specifies the time in seconds to wait for the cmdlet. If the **Wait** parameter is not specified, +then the cmdlet waits for completion. If `-Wait 0` is specified, then the call is initiated and the +cmdlet returns without waiting. ```yaml Type: Int32 @@ -170,7 +185,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -185,4 +204,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS [Get-ClusterResource](./Get-ClusterResource.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Block-ClusterAccess.md b/docset/winserver2022-ps/failoverclusters/Block-ClusterAccess.md index e9a81c8ec3..f6b0557308 100644 --- a/docset/winserver2022-ps/failoverclusters/Block-ClusterAccess.md +++ b/docset/winserver2022-ps/failoverclusters/Block-ClusterAccess.md @@ -16,28 +16,34 @@ Prevents the specified user or users from accessing a failover cluster. ## SYNTAX ``` -Block-ClusterAccess [-User] [-InputObject ] [-Cluster ] [-WhatIf] - [-Confirm] [] +Block-ClusterAccess [-User] [-InputObject ] [-Cluster ] + [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Block-ClusterAccess** cmdlet prevents the specified user or users from accessing a failover cluster. -If you do not want to completely block access and instead want to limit a user to using Windows PowerShell® to view cluster settings (not change settings), then use the **Grant-ClusterAccess** cmdlet with the **Readonly** parameter. + +The **Block-ClusterAccess** cmdlet prevents the specified user or users from accessing a failover +cluster. If you do not want to completely block access and instead want to limit a user to using +Windows PowerShell® to view cluster settings (not change settings), then use the +**Grant-ClusterAccess** cmdlet with the **Readonly** parameter. ## EXAMPLES ### Example 1 + ``` PS C:\> Block-ClusterAccess -User contoso\johnj99 ``` -This example prevents the user named johnj99 on the contoso domain from gaining access to the local cluster. +This example prevents the user named johnj99 on the contoso domain from gaining access to the local +cluster. ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -52,6 +58,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -67,6 +74,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster on which to block access for the given user. ```yaml @@ -82,6 +90,7 @@ Accept wildcard characters: False ``` ### -User + Specifies the user for whom to block cluster access. ```yaml @@ -97,8 +106,8 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml Type: SwitchParameter @@ -113,7 +122,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -130,4 +143,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Grant-ClusterAccess](./Grant-ClusterAccess.md) [Remove-ClusterAccess](./Remove-ClusterAccess.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Clear-ClusterDiskReservation.md b/docset/winserver2022-ps/failoverclusters/Clear-ClusterDiskReservation.md index 685a1a663d..b4aaac5809 100644 --- a/docset/winserver2022-ps/failoverclusters/Clear-ClusterDiskReservation.md +++ b/docset/winserver2022-ps/failoverclusters/Clear-ClusterDiskReservation.md @@ -16,35 +16,42 @@ Clears the persistent reservation on a disk in a failover cluster. ## SYNTAX ``` -Clear-ClusterDiskReservation [[-Node] ] -Disk [-Force] [-WhatIf] [-Confirm] - [] +Clear-ClusterDiskReservation [[-Node] ] -Disk [-Force] [-WhatIf] + [-Confirm] [] ``` ## DESCRIPTION -The **Clear-ClusterDiskReservation** cmdlet clears the persistent reservation on a disk in a failover cluster. -This cmdlet prompts for confirmation unless you specify the **Force** parameter. -Note: This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) authentication on the server computer. +The **Clear-ClusterDiskReservation** cmdlet clears the persistent reservation on a disk in a +failover cluster. This cmdlet prompts for confirmation unless you specify the **Force** parameter. + +Note: This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) +authentication on the server computer. ## EXAMPLES ### Example 1 + ``` PS C:\> Clear-ClusterDiskReservation -Disk 5 ``` -This example clears the persistent reservation on Disk 5 on the local node after asking for user confirmation. +This example clears the persistent reservation on Disk 5 on the local node after asking for user +confirmation. ### Example 2 + ``` C:\PS>Clear-ClusterDiskReservation -Disk 6 -Node node2 -Force ``` -This example clears the persistent reservation on Disk 6 on the node named node2 without asking for user confirmation. +This example clears the persistent reservation on Disk 6 on the node named node2 without asking for +user confirmation. ## PARAMETERS ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -60,8 +67,9 @@ Accept wildcard characters: False ``` ### -Disk -Specifies the disk number on which to clear the persistent reservations. -This is the disk number as it appears in Disk Management on the node. + +Specifies the disk number on which to clear the persistent reservations. This is the disk number as +it appears in Disk Management on the node. ```yaml Type: UInt32[] @@ -76,8 +84,9 @@ Accept wildcard characters: False ``` ### -Force -Runs the cmdlet without prompting for confirmation. -By default the cmdlet will ask for confirmation from the user before proceeding. + +Runs the cmdlet without prompting for confirmation. By default the cmdlet will ask for confirmation +from the user before proceeding. ```yaml Type: SwitchParameter @@ -92,6 +101,7 @@ Accept wildcard characters: False ``` ### -Node + Specifies the name of the cluster node on which to clear the disk reservation. ```yaml @@ -107,8 +117,8 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml Type: SwitchParameter @@ -123,7 +133,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -140,4 +154,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Clear-ClusterNode](./Clear-ClusterNode.md) [Remove-Cluster](./Remove-Cluster.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Clear-ClusterNode.md b/docset/winserver2022-ps/failoverclusters/Clear-ClusterNode.md index 81ea8646b3..7e94abfc90 100644 --- a/docset/winserver2022-ps/failoverclusters/Clear-ClusterNode.md +++ b/docset/winserver2022-ps/failoverclusters/Clear-ClusterNode.md @@ -21,32 +21,38 @@ Clear-ClusterNode [[-Name] ] [-Force] [-Wait ] [-Cleanu ``` ## DESCRIPTION -The **Clear-ClusterNode** cmdlet clears the cluster configuration from a node that was evicted from a failover cluster. -This cmdlet helps ensure that the failover cluster configuration has been completely removed from a node that was evicted. -Note: This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) authentication on the server computer. +The **Clear-ClusterNode** cmdlet clears the cluster configuration from a node that was evicted from +a failover cluster. This cmdlet helps ensure that the failover cluster configuration has been +completely removed from a node that was evicted. + +Note: This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) +authentication on the server computer. ## EXAMPLES ### Example 1 + ``` PS C:\> Clear-ClusterNode -Name node4 -Force ``` -This example removes cluster configuration information from the node named node4 without asking for user confirmation. +This example removes cluster configuration information from the node named node4 without asking for +user confirmation. ### Example 2 + ``` PS C:\> Clear-ClusterNode ``` -This example removes cluster configuration information from the local node after prompting for confirmation. +This example removes cluster configuration information from the local node after prompting for +confirmation. ## PARAMETERS ### -CleanupDisks - ```yaml Type: SwitchParameter Parameter Sets: (All) @@ -60,8 +66,9 @@ Accept wildcard characters: False ``` ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -76,6 +83,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -91,8 +99,9 @@ Accept wildcard characters: False ``` ### -Force -Runs the cmdlet without prompting for confirmation. -By default the cmdlet will ask for confirmation from the user before proceeding. + +Runs the cmdlet without prompting for confirmation. By default the cmdlet will ask for confirmation +from the user before proceeding. ```yaml Type: SwitchParameter @@ -107,6 +116,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster node from which to clear cluster the configuration information. ```yaml @@ -122,6 +132,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of the cluster node for which to clear the cluster configuration. ```yaml @@ -137,9 +148,10 @@ Accept wildcard characters: False ``` ### -Wait -Specifies the time in seconds to wait for the cmdlet. -If the **Wait** parameter is not specified, then the cmdlet waits for completion. -If `-Wait 0` is specified, then the call is initiated and the cmdlet returns without waiting. + +Specifies the time in seconds to wait for the cmdlet. If the **Wait** parameter is not specified, +then the cmdlet waits for completion. If `-Wait 0` is specified, then the call is initiated and the +cmdlet returns without waiting. ```yaml Type: Int32 @@ -154,8 +166,8 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml Type: SwitchParameter @@ -170,7 +182,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -187,4 +203,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Get-ClusterNode](./Get-ClusterNode.md) [Remove-ClusterNode](./Remove-ClusterNode.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Disable-ClusterStorageSpacesDirect.md b/docset/winserver2022-ps/failoverclusters/Disable-ClusterStorageSpacesDirect.md index e921e4e5b4..d8018cbbfe 100644 --- a/docset/winserver2022-ps/failoverclusters/Disable-ClusterStorageSpacesDirect.md +++ b/docset/winserver2022-ps/failoverclusters/Disable-ClusterStorageSpacesDirect.md @@ -21,11 +21,14 @@ Disable-ClusterStorageSpacesDirect [-CleanupCache ] [-CimSession Disable-ClusterStorageSpacesDirect ``` @@ -35,14 +38,17 @@ This command disables S2D on the cluster. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. + +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml Type: SwitchParameter @@ -57,9 +63,11 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml Type: CimSession[] @@ -74,6 +82,7 @@ Accept wildcard characters: False ``` ### -CleanupCache + Indicates that this cmdlet purges data from the S2D and cache partitions are removed. ```yaml @@ -89,6 +98,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -104,9 +114,12 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml Type: Int32 @@ -121,8 +134,8 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml Type: SwitchParameter @@ -137,7 +150,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -154,4 +171,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Set-ClusterStorageSpacesDirect](./Set-ClusterStorageSpacesDirect.md) [Get-Cluster](./Get-Cluster.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Enable-ClusterStorageSpacesDirect.md b/docset/winserver2022-ps/failoverclusters/Enable-ClusterStorageSpacesDirect.md index 9715574c01..b0b4222125 100644 --- a/docset/winserver2022-ps/failoverclusters/Enable-ClusterStorageSpacesDirect.md +++ b/docset/winserver2022-ps/failoverclusters/Enable-ClusterStorageSpacesDirect.md @@ -16,35 +16,42 @@ Enables Storage Spaces Direct on a Fail-Over Cluster. ## SYNTAX ### Auto + ``` Enable-ClusterStorageSpacesDirect [-PoolFriendlyName ] [-Autoconfig ] - [-CacheState ] [-CacheMetadataReserveBytes ] [-CachePageSizeKBytes ] - [-SkipEligibilityChecks] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] - [] + [-CacheState ] [-CacheMetadataReserveBytes ] + [-CachePageSizeKBytes ] [-SkipEligibilityChecks] [-CimSession ] + [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] [] ``` ### WithXML + ``` Enable-ClusterStorageSpacesDirect [-PoolFriendlyName ] [-Autoconfig ] - [-CacheState ] [-CacheMetadataReserveBytes ] [-CachePageSizeKBytes ] - [-SkipEligibilityChecks] -XML [-CimSession ] [-ThrottleLimit ] [-AsJob] - [-WhatIf] [-Confirm] [] + [-CacheState ] [-CacheMetadataReserveBytes ] + [-CachePageSizeKBytes ] [-SkipEligibilityChecks] -XML [-CimSession ] + [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] [] ``` ### WithCacheDeviceModel + ``` Enable-ClusterStorageSpacesDirect [-PoolFriendlyName ] [-Autoconfig ] - [-CacheState ] [-CacheMetadataReserveBytes ] [-CachePageSizeKBytes ] - [-SkipEligibilityChecks] -CacheDeviceModel [-CimSession ] [-ThrottleLimit ] - [-AsJob] [-WhatIf] [-Confirm] [] + [-CacheState ] [-CacheMetadataReserveBytes ] + [-CachePageSizeKBytes ] [-SkipEligibilityChecks] -CacheDeviceModel + [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION -The **Enable-ClusterStorageSpacesDirect** cmdlet enables highly available Storage Spaces that use directly attached storage Storage Spaces Direct (S2D) on a cluster. + +The **Enable-ClusterStorageSpacesDirect** cmdlet enables highly available Storage Spaces that use +directly attached storage Storage Spaces Direct (S2D) on a cluster. ## EXAMPLES ### Example 1: Enable Storage Spaces Direct + ```powershell PS C:\> Enable-ClusterStorageSpacesDirect ``` @@ -52,23 +59,27 @@ PS C:\> Enable-ClusterStorageSpacesDirect This command enables S2D on the cluster. ### Example 2: Enable Storage Spaces Direct specifying a Friendly Name + ```powershell PS C:\> Enable-ClusterStorageSpacesDirect -PoolFriendlyName 'Sales' ``` -This command enables S2d on the cluster and sets a friendly name for the Storage Spaces Direct pool. +This command enables S2d on the cluster and sets a friendly name for the Storage Spaces Direct pool. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. + +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml Type: SwitchParameter @@ -83,10 +94,11 @@ Accept wildcard characters: False ``` ### -Autoconfig -Indicates that this cmdlet that the pool should be automatically created and configured. -When a pool already exists before Storage Spaces Direct is enabled the *AutoConfig* parameter becomes a no-op. -*AutoConfig* is set to true by default. -If you do not want the pool to be automatically created, but created manually, you should set *AutoConfig* to false. + +Indicates that this cmdlet that the pool should be automatically created and configured. When a pool +already exists before Storage Spaces Direct is enabled the *AutoConfig* parameter becomes a no-op. +*AutoConfig* is set to true by default. If you do not want the pool to be automatically created, but +created manually, you should set *AutoConfig* to false. ```yaml Type: Boolean @@ -101,8 +113,9 @@ Accept wildcard characters: False ``` ### -CacheDeviceModel -Specifies a list of disk models that should be used by Storage Spaces Direct cache. -When this parameter is omitted the system automatically determines which disks to use for the operation. + +Specifies a list of disk models that should be used by Storage Spaces Direct cache. When this +parameter is omitted the system automatically determines which disks to use for the operation. ```yaml Type: String[] @@ -118,7 +131,6 @@ Accept wildcard characters: False ### -CacheMetadataReserveBytes - ```yaml Type: UInt64 Parameter Sets: (All) @@ -132,10 +144,11 @@ Accept wildcard characters: False ``` ### -CachePageSizeKBytes -Specifies the page size used by Storage Spaces Direct cache. -This parameter is useful to control the memory footprint used to manage the pages. -To reduce the memory overhead on systems with considerably large amounts of storage the page size can be increased to 32 kilobytes (KB) or even 64 KB. -The default value is 16 KB, which represents a good tradeoff on most systems. + +Specifies the page size used by Storage Spaces Direct cache. This parameter is useful to control the +memory footprint used to manage the pages. To reduce the memory overhead on systems with +considerably large amounts of storage the page size can be increased to 32 kilobytes (KB) or even 64 +KB. The default value is 16 KB, which represents a good tradeoff on most systems. ```yaml Type: UInt32 @@ -151,9 +164,9 @@ Accept wildcard characters: False ``` ### -CacheState -Specifies the Storage Spaces Direct cache state. -The acceptable values for this parameter are: Enabled or Disabled. -The default value is Enabled. + +Specifies the Storage Spaces Direct cache state. The acceptable values for this parameter are: +Enabled or Disabled. The default value is Enabled. ```yaml Type: CacheStateType @@ -169,9 +182,11 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml Type: CimSession[] @@ -186,6 +201,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -201,6 +217,7 @@ Accept wildcard characters: False ``` ### -PoolFriendlyName + Specifies the friendly name of the Storage Spaces Direct pool when it is created. ```yaml @@ -216,6 +233,7 @@ Accept wildcard characters: False ``` ### -SkipEligibilityChecks + Indicates that this cmdlet skips cache eligibility checks. ```yaml @@ -231,9 +249,12 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml Type: Int32 @@ -248,8 +269,8 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml Type: SwitchParameter @@ -264,6 +285,7 @@ Accept wildcard characters: False ``` ### -XML + Specifies the XML file that contains the storage supported configuration information. ```yaml @@ -279,7 +301,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -296,4 +322,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Set-ClusterStorageSpacesDirect](./Set-ClusterStorageSpacesDirect.md) [Get-Cluster](./Get-Cluster.md) - diff --git a/docset/winserver2022-ps/failoverclusters/FailoverClusters.md b/docset/winserver2022-ps/failoverclusters/FailoverClusters.md index 0f688ad31c..316daaa0fe 100644 --- a/docset/winserver2022-ps/failoverclusters/FailoverClusters.md +++ b/docset/winserver2022-ps/failoverclusters/FailoverClusters.md @@ -11,7 +11,11 @@ title: FailoverClusters # FailoverClusters Module ## Description -This reference provides cmdlet descriptions and syntax for all failover cluster-specific cmdlets. It lists the cmdlets in alphabetical order based on the verb at the beginning of the cmdlet. If these cmdlets aren't available in your PowerShell session, you may need to add the `Failover Cluster Module for Windows PowerShell` Feature, using the following PowerShell cmd: `Add-WindowsFeature RSAT-Clustering-PowerShell`. +This reference provides cmdlet descriptions and syntax for all failover cluster-specific cmdlets. It +lists the cmdlets in alphabetical order based on the verb at the beginning of the cmdlet. If these +cmdlets aren't available in your PowerShell session, you may need to add the +`Failover Cluster Module for Windows PowerShell` Feature, using the following PowerShell cmd: +`Add-WindowsFeature RSAT-Clustering-PowerShell`. ## FailoverClusters Cmdlets ### [Add-ClusterCheckpoint](./Add-ClusterCheckpoint.md) @@ -24,16 +28,20 @@ Makes a new disk available for use in a failover cluster. Creates a clustered file server resource group. ### [Add-ClusterGenericApplicationRole](./Add-ClusterGenericApplicationRole.md) -Configures high availability for an application that was not originally designed to run in a failover cluster. +Configures high availability for an application that was not originally designed to run in a +failover cluster. ### [Add-ClusterGenericScriptRole](./Add-ClusterGenericScriptRole.md) -Configures an application controlled by a script that runs in Windows Script Host, within a failover cluster. +Configures an application controlled by a script that runs in Windows Script Host, within a failover +cluster. ### [Add-ClusterGenericServiceRole](./Add-ClusterGenericServiceRole.md) -Configures high availability for a service that was not originally designed to run in a failover cluster. +Configures high availability for a service that was not originally designed to run in a failover +cluster. ### [Add-ClusterGroup](./Add-ClusterGroup.md) -Adds an empty resource group to the failover cluster configuration, in preparation for adding clustered resources to the group. +Adds an empty resource group to the failover cluster configuration, in preparation for adding +clustered resources to the group. ### [Add-ClusterGroupSetDependency](./Add-ClusterGroupSetDependency.md) Adds a dependency to a cluster set. @@ -51,10 +59,12 @@ Adds a node (server) to a failover cluster. Adds a resource to a clustered role, or resource group, in a failover cluster. ### [Add-ClusterResourceDependency](./Add-ClusterResourceDependency.md) -Adds a resource to the list of resources on which a particular resource depends, using AND as the connector, within a failover cluster. +Adds a resource to the list of resources on which a particular resource depends, using AND as the +connector, within a failover cluster. ### [Add-ClusterResourceType](./Add-ClusterResourceType.md) -Adds a resource type to a failover cluster, and specifies information such as the dynamic-link library (DLL) to use with that resource type. +Adds a resource type to a failover cluster, and specifies information such as the dynamic-link +library (DLL) to use with that resource type. ### [Add-ClusterScaleOutFileServerRole](./Add-ClusterScaleOutFileServerRole.md) Creates a clustered file server for scale-out application data. @@ -63,10 +73,12 @@ Creates a clustered file server for scale-out application data. Makes a volume available in Cluster Shared Volumes in a failover cluster. ### [Add-ClusterVirtualMachineRole](./Add-ClusterVirtualMachineRole.md) -Creates a clustered virtual machine, that is, a virtual machine that can be failed over if necessary to a different server in the failover cluster. +Creates a clustered virtual machine, that is, a virtual machine that can be failed over if necessary +to a different server in the failover cluster. ### [Add-ClusterVMMonitoredItem](./Add-ClusterVMMonitoredItem.md) -Configures monitoring for a service or an Event Tracing for Windows (ETW) event so that it is monitored on a virtual machine. +Configures monitoring for a service or an Event Tracing for Windows (ETW) event so that it is +monitored on a virtual machine. ### [Block-ClusterAccess](./Block-ClusterAccess.md) Prevents the specified user or users from accessing a failover cluster. @@ -90,7 +102,8 @@ Gets information about one or more failover clusters in a given domain. Gets information about permissions that control access to a failover cluster. ### [Get-ClusterAvailableDisk](./Get-ClusterAvailableDisk.md) -Gets information about the disks that can support Failover Clustering and are visible to all nodes, but are not yet part of the set of clustered disks. +Gets information about the disks that can support Failover Clustering and are visible to all nodes, +but are not yet part of the set of clustered disks. ### [Get-ClusterCheckpoint](./Get-ClusterCheckpoint.md) Retrieves a cryptographic key checkpoint or registry checkpoint for a resource. @@ -126,7 +139,8 @@ Gets information about one or more network adapters in a failover cluster. Gets information about one or more nodes, or servers, in a failover cluster. ### [Get-ClusterOwnerNode](./Get-ClusterOwnerNode.md) -Gets information about which nodes can own a resource in a failover cluster or information about the order of preference among owner nodes for a clustered role. +Gets information about which nodes can own a resource in a failover cluster or information about the +order of preference among owner nodes for a clustered role. ### [Get-ClusterParameter](./Get-ClusterParameter.md) Gets detailed information about an object in a failover cluster, such as a cluster resource. @@ -138,7 +152,8 @@ Gets information about the quorum configuration of a failover cluster. Gets information about one or more resources in a failover cluster. ### [Get-ClusterResourceDependency](./Get-ClusterResourceDependency.md) -Gets information about the dependencies that have been configured between clustered resources in a failover cluster. +Gets information about the dependencies that have been configured between clustered resources in a +failover cluster. ### [Get-ClusterResourceDependencyReport](./Get-ClusterResourceDependencyReport.md) Generates a report that lists the dependencies between resources in a failover cluster. @@ -222,7 +237,8 @@ Removes a dependency between two resources in a clustered role within a failover Removes a resource type from a failover cluster. ### [Remove-ClusterSharedVolume](./Remove-ClusterSharedVolume.md) -Removes a volume from the Cluster Shared Volumes in a failover cluster, and places it in Available Storage in the cluster. +Removes a volume from the Cluster Shared Volumes in a failover cluster, and places it in Available +Storage in the cluster. ### [Remove-ClusterVMMonitoredItem](./Remove-ClusterVMMonitoredItem.md) Removes monitoring of a service or event that is currently being monitored on a virtual machine. @@ -231,7 +247,8 @@ Removes monitoring of a service or event that is currently being monitored on a Repairs S2D disks. ### [Reset-ClusterVMMonitoredState](./Reset-ClusterVMMonitoredState.md) -Resets the Application Critical state of a virtual machine, so that the virtual machine is no longer marked as being in a critical state in the cluster. +Resets the Application Critical state of a virtual machine, so that the virtual machine is no longer +marked as being in a critical state in the cluster. ### [Resume-ClusterNode](./Resume-ClusterNode.md) Resumes a node from the paused state or brings back drained workloads to the node or both. @@ -252,10 +269,12 @@ Updates a cluster group set. Sets the size and level of detail for the cluster log. ### [Set-ClusterOwnerNode](./Set-ClusterOwnerNode.md) -Specifies which nodes can own a resource in a failover cluster or specifies the order of preference among owner nodes for a clustered role, or resource group. +Specifies which nodes can own a resource in a failover cluster or specifies the order of preference +among owner nodes for a clustered role, or resource group. ### [Set-ClusterParameter](./Set-ClusterParameter.md) -Controls specific properties of an object in a failover cluster, such as a resource, a group, or a network. +Controls specific properties of an object in a failover cluster, such as a resource, a group, or a +network. ### [Set-ClusterQuorum](./Set-ClusterQuorum.md) Configures quorum options for a failover cluster. @@ -282,7 +301,8 @@ Starts the Cluster service on a node in a failover cluster. Brings a resource online in a failover cluster. ### [Stop-Cluster](./Stop-Cluster.md) -Stops the Cluster service on all nodes in a failover cluster, which will stop all services and applications configured in the cluster. +Stops the Cluster service on all nodes in a failover cluster, which will stop all services and +applications configured in the cluster. ### [Stop-ClusterGroup](./Stop-ClusterGroup.md) Stops one or more clustered roles on a failover cluster. @@ -297,7 +317,8 @@ Takes a resource offline in a failover cluster. Suspends activity on a failover cluster node, that is, pauses the node. ### [Suspend-ClusterResource](./Suspend-ClusterResource.md) -Turns on maintenance for a disk resource or CSV so that you can run a disk maintenance tool without triggering failover. +Turns on maintenance for a disk resource or CSV so that you can run a disk maintenance tool without +triggering failover. ### [Test-Cluster](./Test-Cluster.md) Runs validation tests for failover cluster hardware and settings. @@ -312,11 +333,8 @@ Updates the functional level of a mixed-version cluster. Renews or releases the DHCP lease for an IP address resource in a failover cluster. ### [Update-ClusterNetworkNameResource](./Update-ClusterNetworkNameResource.md) -Registers existing Network Name resources with a DNS server in a way that does not interrupt cluster availability. +Registers existing Network Name resources with a DNS server in a way that does not interrupt cluster +availability. ### [Update-ClusterVirtualMachineConfiguration](./Update-ClusterVirtualMachineConfiguration.md) Refreshes the configuration of a clustered virtual machine within a failover cluster. - - - - diff --git a/docset/winserver2022-ps/failoverclusters/Get-Cluster.md b/docset/winserver2022-ps/failoverclusters/Get-Cluster.md index 0ffc06b628..17d8bcf37c 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-Cluster.md +++ b/docset/winserver2022-ps/failoverclusters/Get-Cluster.md @@ -20,9 +20,11 @@ Get-Cluster [[-Name] ] [-Domain ] [] ``` ## DESCRIPTION + The **Get-Cluster** cmdlet gets information about one or more failover clusters in a given domain. -This cmdlet can obtain a variety of configuration and state information about a failover cluster, including the following items: +This cmdlet can obtain a variety of configuration and state information about a failover cluster, +including the following items: -- State information about whether a backup is in progress. @@ -30,11 +32,13 @@ This cmdlet can obtain a variety of configuration and state information about a -- Cross-network settings that are especially relevant for multi-site clusters. -To set a common property for the cluster, use this cmdlet to get the cluster object and then set the appropriate property on that cluster object directly. +To set a common property for the cluster, use this cmdlet to get the cluster object and then set the +appropriate property on that cluster object directly. ## EXAMPLES ### Example 1 + ``` PS C:\> Get-Cluster | Format-List -Property * Domain : contoso.com @@ -89,6 +93,7 @@ Id : af5881ef-0ff7-4b5c-bfed-098decbbf762 This example displays state and property information for the local cluster in the form of a list. ### Example 2 + ``` PS C:\> Get-Cluster -Name cluster1 Name @@ -99,6 +104,7 @@ cluster1 This example gets information about a cluster named cluster1. ### Example 3 + ``` PS C:\> Get-Cluster -Domain contoso.com Name @@ -111,6 +117,7 @@ cluster3 This example gets information about each of the clusters in the contoso.com domain. ### Example 4 + ``` PS C:\> Get-Cluster | ForEach-Object -Process {$_.CrossSubnetDelay = 1500} ``` @@ -118,6 +125,7 @@ PS C:\> Get-Cluster | ForEach-Object -Process {$_.CrossSubnetDelay = 1500} This example sets the common property called CrossSubnetDelay for the local cluster to 1500. ### Example 5 + ``` PS C:\> (Get-Cluster).DynamicQuorum = 1 ``` @@ -125,21 +133,26 @@ PS C:\> (Get-Cluster).DynamicQuorum = 1 This example enables the Dynamic Quorum feature for the cluster. ### Example 6 + ``` PS C:\> Get-Cluster | Format-List -Property Quarantine* QuarantineDuration : 7200 QuarantineThreshold : 3 ``` -This example shows default values for QuarantineThreshold and QuarantineDuration for the local cluster. +This example shows default values for QuarantineThreshold and QuarantineDuration for the local +cluster. - -- QuarantineThreshold: This is the number of times that a node can become isolated in an hour before the cluster will be quarantined. This is set to 3 by default. + -- QuarantineThreshold: This is the number of times that a node can become isolated in an hour + before the cluster will be quarantined. This is set to 3 by default. - --QuarantineDuration: This setting, set to 7200 seconds or 2 hours by default, controls how long a host will remain quarantined. + --QuarantineDuration: This setting, set to 7200 seconds or 2 hours by default, controls how long a + host will remain quarantined. ## PARAMETERS ### -Domain + Specifies the name of the domain in which to enumerate clusters. ```yaml @@ -155,6 +168,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of the cluster to get. ```yaml @@ -170,7 +184,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -195,4 +213,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Stop-Cluster](./Stop-Cluster.md) [Test-Cluster](./Test-Cluster.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterAccess.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterAccess.md index 6b56607691..0814b3fcd9 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterAccess.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterAccess.md @@ -21,14 +21,17 @@ Get-ClusterAccess [[-User] ] [-InputObject ] [-Clust ``` ## DESCRIPTION -The **Get-ClusterAccess** cmdlet gets information about permissions that control access to a failover cluster. -A cluster can allow full access or read-only access. -Read-only access limits the user to Windows PowerShell® cmdlets that provide information about the cluster. +The **Get-ClusterAccess** cmdlet gets information about permissions that control access to a +failover cluster. + +A cluster can allow full access or read-only access. Read-only access limits the user to Windows +PowerShell® cmdlets that provide information about the cluster. ## EXAMPLES ### Example 1 + ``` PS C:\> Get-ClusterAccess IdentityReference AccessControlType ClusterRights @@ -41,13 +44,15 @@ CONTOSO\user2 Allow Read NT SERVICE\MSDTC Allow Full ``` -This example lists the level of permissions that have been assigned to users of this cluster, including users who are blocked from access. +This example lists the level of permissions that have been assigned to users of this cluster, +including users who are blocked from access. ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -62,6 +67,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster on which to enumerate cluster access details. ```yaml @@ -77,6 +83,7 @@ Accept wildcard characters: False ``` ### -User + Specifies the user for which to get cluster access. ```yaml @@ -92,7 +99,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -111,4 +122,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Grant-ClusterAccess](./Grant-ClusterAccess.md) [Remove-ClusterAccess](./Remove-ClusterAccess.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterAvailableDisk.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterAvailableDisk.md index d0f3e12bd9..adfcc8e466 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterAvailableDisk.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterAvailableDisk.md @@ -11,24 +11,30 @@ title: Get-ClusterAvailableDisk # Get-ClusterAvailableDisk ## SYNOPSIS -Gets information about the disks that can support Failover Clustering and are visible to all nodes, but are not yet part of the set of clustered disks. +Gets information about the disks that can support Failover Clustering and are visible to all nodes, +but are not yet part of the set of clustered disks. ## SYNTAX ``` -Get-ClusterAvailableDisk [[-Cluster] ] [-Disk ] [-All] [-InputObject ] - [] +Get-ClusterAvailableDisk [[-Cluster] ] [-Disk ] [-All] + [-InputObject ] [] ``` ## DESCRIPTION -The **Get-ClusterAvailableDisk** cmdlet gets information about the disks that can support Failover Clustering and are visible to all nodes, but are not yet part of the set of clustered disks. -If a disk is unexpectedly missing from the list of disks that are available for use in the cluster, then make sure that the configuration of the storage allows the operating system on all clustered servers to recognize and mount the disk as needed. -The disk must be a basic disk, not a dynamic disk, and should not be exposed to any other servers. +The **Get-ClusterAvailableDisk** cmdlet gets information about the disks that can support Failover +Clustering and are visible to all nodes, but are not yet part of the set of clustered disks. + +If a disk is unexpectedly missing from the list of disks that are available for use in the cluster, +then make sure that the configuration of the storage allows the operating system on all clustered +servers to recognize and mount the disk as needed. The disk must be a basic disk, not a dynamic +disk, and should not be exposed to any other servers. ## EXAMPLES ### Example 1 + ``` PS C:\> Get-ClusterAvailableDisk Cluster : cluster1 @@ -51,6 +57,7 @@ Partitions : {\\?\GLOBALROOT\Device\Harddisk9\Partition1\} This example lists the disks that are ready to be added to the cluster. ### Example 2 + ``` PS C:\> Get-ClusterAvailableDisk | Add-ClusterDisk Name State Group ResourceType @@ -64,6 +71,7 @@ This example adds all disks that are ready to be added to the local cluster. ## PARAMETERS ### -All + {{Fill All Description}} ```yaml @@ -79,8 +87,9 @@ Accept wildcard characters: False ``` ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -95,6 +104,7 @@ Accept wildcard characters: False ``` ### -Disk + Specifies the disks on which to enumerate. ```yaml @@ -110,6 +120,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster on which to enumerate available shared disks. ```yaml @@ -125,7 +136,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -140,4 +155,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS [Add-ClusterDisk](./Add-ClusterDisk.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterCheckpoint.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterCheckpoint.md index f30a341120..5d5f9a92eb 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterCheckpoint.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterCheckpoint.md @@ -16,20 +16,26 @@ Retrieves a cryptographic key checkpoint or registry checkpoint for a resource. ## SYNTAX ``` -Get-ClusterCheckpoint [[-ResourceName] ] [-CheckpointName ] [-RegistryCheckpoint] - [-CryptoCheckpoint] [-InputObject ] [-Cluster ] [] +Get-ClusterCheckpoint [[-ResourceName] ] [-CheckpointName ] + [-RegistryCheckpoint] [-CryptoCheckpoint] [-InputObject ] [-Cluster ] + [] ``` ## DESCRIPTION -The **Get-ClusterCheckpoint** cmdlet retrieves a cryptographic key checkpoint or registry checkpoint for a resource. -Checkpoints help provide failover support for applications that store configuration information locally instead of or in addition to storing information in the cluster configuration database. -Applications might store information locally in two ways. -One way is to store configuration information in the registry on the local server; another way is to use cryptographic keys on the local server. +The **Get-ClusterCheckpoint** cmdlet retrieves a cryptographic key checkpoint or registry checkpoint +for a resource. + +Checkpoints help provide failover support for applications that store configuration information +locally instead of or in addition to storing information in the cluster configuration database. +Applications might store information locally in two ways. One way is to store configuration +information in the registry on the local server; another way is to use cryptographic keys on the +local server. ## EXAMPLES ### Example 1 + ``` PS C:\> Get-ClusterCheckpoint Resource Name Type Key @@ -41,6 +47,7 @@ Cluster Name software\clusname This example retrieves all cluster checkpoints. ### Example 2 + ``` PS C:\> Get-ClusterResource -ResourceName "Cluster Name" | Get-ClusterCheckpoint -CryptoCheckpoint Resource Name Type Key @@ -53,8 +60,8 @@ This example retrieves the cryptographic checkpoints for the resource named Clus ## PARAMETERS ### -CheckpointName -Specifies the name of checkpoints for which to search. -Use of wildcard expressions is accepted. + +Specifies the name of checkpoints for which to search. Use of wildcard expressions is accepted. ```yaml Type: String @@ -69,8 +76,9 @@ Accept wildcard characters: False ``` ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -85,6 +93,7 @@ Accept wildcard characters: False ``` ### -CryptoCheckpoint + Specifies that cryptographic checkpoints will be retrieved. ```yaml @@ -100,7 +109,9 @@ Accept wildcard characters: False ``` ### -InputObject -Specifies the cluster on which to run the cmdlet or the cluster resource for which to retrieve the checkpoint. + +Specifies the cluster on which to run the cmdlet or the cluster resource for which to retrieve the +checkpoint. ```yaml Type: PSObject @@ -115,6 +126,7 @@ Accept wildcard characters: False ``` ### -RegistryCheckpoint + Specifies that registry checkpoints will be retrieved. ```yaml @@ -130,6 +142,7 @@ Accept wildcard characters: False ``` ### -ResourceName + Specifies the resource for which to retrieve the checkpoint. ```yaml @@ -145,7 +158,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -164,4 +181,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Add-ClusterCheckpoint](./Add-ClusterCheckpoint.md) [Remove-ClusterCheckpoint](./Remove-ClusterCheckpoint.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterDiagnosticInfo.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterDiagnosticInfo.md index f1fe171bc6..620b12b088 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterDiagnosticInfo.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterDiagnosticInfo.md @@ -11,27 +11,33 @@ title: Get-ClusterDiagnosticInfo # Get-ClusterDiagnosticInfo ## SYNOPSIS -Gets diagnostics for a cluster a cluster that contains VMs and produces a zip file containing the data. +Gets diagnostics for a cluster a cluster that contains VMs and produces a zip file containing the +data. ## SYNTAX ### Write + ``` Get-ClusterDiagnosticInfo [[-WriteToPath] ] [[-Cluster] ] [[-ZipPrefix] ] [-HoursOfEvents ] [-IncludeEvents] [] ``` ### Read + ``` Get-ClusterDiagnosticInfo -ReadFromPath [] ``` ## DESCRIPTION -The **Get-ClusterDiagnosticInfo** cmdlet gets diagnostics for a cluster that contains virtual machines and produces a zip file containing the data. + +The **Get-ClusterDiagnosticInfo** cmdlet gets diagnostics for a cluster that contains virtual +machines and produces a zip file containing the data. ## EXAMPLES ### Example 1: Write diagnostic info to the specified path + ``` PS C:\> Get-ClusterDiagnosticInfo -WriteToPath "C:\Users\MyUser\HealthTest\" Writing to path : C:\Users\MyUser\HealthTest\ @@ -42,6 +48,7 @@ This command gets and writes the cluster Diagnostics to the folder C:\Users\MyUs ## PARAMETERS ### -Cluster + Specifies the name of the cluster the cmdlet gets. ```yaml @@ -57,6 +64,7 @@ Accept wildcard characters: False ``` ### -HoursOfEvents + Specifies the number of hours in the past that this cmdlet gathers system event logs. ```yaml @@ -72,6 +80,7 @@ Accept wildcard characters: False ``` ### -IncludeEvents + Indicates that this cmdlet gathers system event logs. ```yaml @@ -87,6 +96,7 @@ Accept wildcard characters: False ``` ### -ReadFromPath + Specifies the path to read from when examining previously collected log files. ```yaml @@ -102,6 +112,7 @@ Accept wildcard characters: False ``` ### -WriteToPath + Specifies the path to create the ZIP file that contains all of the logs. ```yaml @@ -117,6 +128,7 @@ Accept wildcard characters: False ``` ### -ZipPrefix + Specifies the name to prepend to the ZIP file that is produced. ```yaml @@ -132,7 +144,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -143,4 +159,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS [Failover Clusters](./failoverclusters.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterFaultDomain.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterFaultDomain.md index 22db116f65..5bcb39eeba 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterFaultDomain.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterFaultDomain.md @@ -21,11 +21,13 @@ Get-ClusterFaultDomain [[-Name] ] [-Type ] [-Id Get-ClusterFaultDomain Name Type ParentName ChildrenNames @@ -38,14 +40,17 @@ This command gets all the fault domains in the cluster. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. + +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml Type: SwitchParameter @@ -60,9 +65,11 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml Type: CimSession[] @@ -77,6 +84,7 @@ Accept wildcard characters: False ``` ### -Id + Specifies the ID of the fault domain that this cmdlet gets as an array. ```yaml @@ -92,6 +100,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of the fault domain that this cmdlet gets as an array. ```yaml @@ -107,9 +116,12 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml Type: Int32 @@ -124,6 +136,7 @@ Accept wildcard characters: False ``` ### -Type + Specifies the type of the fault domains that this cmdlet gets from the cluster. ```yaml @@ -140,7 +153,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -155,4 +172,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Remove-ClusterFaultDomain](./Remove-ClusterFaultDomain.md) [Set-ClusterFaultDomain](./Set-ClusterFaultDomain.md) - From 71c53a5f5b3e18d7c3caba153b9bf8286c8e2224 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Fri, 21 Oct 2022 11:08:12 +0100 Subject: [PATCH 277/965] Bulk reflowed text and header formatting --- .../Get-ClusterFaultDomainXML.md | 48 +++++--- .../failoverclusters/Get-ClusterGroup.md | 40 +++++-- .../failoverclusters/Get-ClusterGroupSet.md | 43 +++++--- .../Get-ClusterGroupSetDependency.md | 52 ++++++--- .../failoverclusters/Get-ClusterLog.md | 56 +++++++--- .../failoverclusters/Get-ClusterNetwork.md | 17 ++- .../Get-ClusterNetworkInterface.md | 28 +++-- .../failoverclusters/Get-ClusterNode.md | 35 ++++-- .../failoverclusters/Get-ClusterOwnerNode.md | 36 ++++-- .../failoverclusters/Get-ClusterParameter.md | 50 ++++++--- .../failoverclusters/Get-ClusterQuorum.md | 26 +++-- .../failoverclusters/Get-ClusterResource.md | 46 +++++--- .../Get-ClusterResourceDependency.md | 30 +++-- .../Get-ClusterResourceDependencyReport.md | 37 +++++-- .../Get-ClusterResourceType.md | 25 +++-- .../Get-ClusterSharedVolume.md | 21 +++- .../Get-ClusterSharedVolumeState.md | 31 ++++-- .../Get-ClusterStorageSpacesDirect.md | 53 ++++++--- .../Get-ClusterVMMonitoredItem.md | 48 +++++--- .../failoverclusters/Grant-ClusterAccess.md | 32 ++++-- .../failoverclusters/Move-ClusterGroup.md | 50 ++++++--- .../failoverclusters/Move-ClusterResource.md | 29 +++-- .../Move-ClusterSharedVolume.md | 38 +++++-- .../Move-ClusterVirtualMachineRole.md | 84 +++++++++----- .../failoverclusters/New-Cluster.md | 103 +++++++++++------- .../New-ClusterFaultDomain.md | 54 ++++++--- .../failoverclusters/New-ClusterGroupSet.md | 52 ++++++--- .../New-ClusterNameAccount.md | 50 ++++++--- .../failoverclusters/Remove-Cluster.md | 54 +++++---- .../failoverclusters/Remove-ClusterAccess.md | 26 +++-- 30 files changed, 877 insertions(+), 417 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterFaultDomainXML.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterFaultDomainXML.md index e71baa7161..0678dc1c33 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterFaultDomainXML.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterFaultDomainXML.md @@ -16,16 +16,18 @@ Gets the fault domain as an XML string. ## SYNTAX ``` -Get-ClusterFaultDomainXML [-Flags ] [-CimSession ] [-ThrottleLimit ] [-AsJob] - [] +Get-ClusterFaultDomainXML [-Flags ] [-CimSession ] [-ThrottleLimit ] + [-AsJob] [] ``` ## DESCRIPTION + The **Get-ClusterFaultDomainXML** cmdlet gets the fault domain as an XML string. ## EXAMPLES ### Example 1: Get all fault domains in the cluster in XML form + ``` PS C:\> Get-ClusterFaultDomainXML @@ -38,14 +40,17 @@ This command gets all the fault domains in the cluster on the local node in XML ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. + +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml Type: SwitchParameter @@ -60,9 +65,11 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml Type: CimSession[] @@ -77,8 +84,9 @@ Accept wildcard characters: False ``` ### -Flags + Specifies an optional set of flags that can change this cmdlet, currently none are supported. -Reserved for future use +Reserved for future use. ```yaml Type: UInt32 @@ -93,9 +101,12 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml Type: Int32 @@ -110,7 +121,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -121,4 +136,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS [Set-ClusterFaultDomainXML](./Set-ClusterFaultDomainXML.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterGroup.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterGroup.md index c9faca543e..4f7ded7cb9 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterGroup.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterGroup.md @@ -16,19 +16,22 @@ Gets information about one or more clustered roles (resource groups) in a failov ## SYNTAX ``` -Get-ClusterGroup [[-Name] ] [-VMId ] [-InputObject ] [-Cluster ] - [] +Get-ClusterGroup [[-Name] ] [-VMId ] [-InputObject ] + [-Cluster ] [] ``` ## DESCRIPTION -The **Get-ClusterGroup** cmdlet gets information about one or more clustered roles (resource groups) in a failover cluster. -A resource group is the unit of failover. -During failover, all resources in the resource group move together. +The **Get-ClusterGroup** cmdlet gets information about one or more clustered roles (resource groups) +in a failover cluster. + +A resource group is the unit of failover. During failover, all resources in the resource group move +together. ## EXAMPLES ### Example 1 + ``` PS C:\> Get-ClusterGroup Name OwnerNode State @@ -39,9 +42,11 @@ cluster1FS node1 Online cluster1FS-Other node1 Online ``` -This example lists the state and owner node of each clustered role, or resource group, in the local cluster. +This example lists the state and owner node of each clustered role, or resource group, in the local +cluster. ### Example 2 + ``` PS C:\> Get-ClusterGroup -Name "Cluster Group" | Get-ClusterResource Name State Group ResourceType @@ -55,6 +60,7 @@ Cluster Name Online Cluster Group Network Name This example lists the resources in Cluster Group on the local cluster. ### Example 3 + ``` PS C:\> Get-ClusterNode -Name node1 | Get-ClusterGroup Name OwnerNode State @@ -62,9 +68,11 @@ Name OwnerNode State Cluster Group node1 Online ``` -This example lists the clustered services and applications, or resource groups, that are currently owned by node1 in the local cluster. +This example lists the clustered services and applications, or resource groups, that are currently +owned by node1 in the local cluster. ### Example 4 + ``` PS C:\> Get-ClusterGroup -Name FileServer1 | Format-List -Property * Cluster : Cluster1 @@ -83,13 +91,15 @@ AntiAffinityClassNames : {} Id : 189ec8ad-1831-4f57-9bb0-3ffb9cbb9227 ``` -This example displays the properties of a clustered file server, or resource group, called FileServer1, in the form of a list. +This example displays the properties of a clustered file server, or resource group, called +FileServer1, in the form of a list. ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -104,6 +114,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster or cluster node on which to enumerate the clustered roles. ```yaml @@ -119,6 +130,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of the clustered role to get. ```yaml @@ -134,6 +146,7 @@ Accept wildcard characters: False ``` ### -VMId + Specifies the virtual machine identifier (ID). ```yaml @@ -149,7 +162,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -176,4 +193,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Start-ClusterGroup](./Start-ClusterGroup.md) [Stop-ClusterGroup](./Stop-ClusterGroup.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterGroupSet.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterGroupSet.md index 4387d90b18..8cc248751f 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterGroupSet.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterGroupSet.md @@ -21,11 +21,13 @@ Get-ClusterGroupSet [[-Name] ] [-IsGlobal ] [-CimSession Get-ClusterGroupSet Name : Set1 @@ -50,14 +52,17 @@ This command enumerates the group sets in the cluster. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. + +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml Type: SwitchParameter @@ -72,9 +77,11 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml Type: CimSession[] @@ -89,6 +96,7 @@ Accept wildcard characters: False ``` ### -IsGlobal + Indicates whether the cmdlet gets the global group sets. ```yaml @@ -104,6 +112,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of the group set that this cmdlet gets as an array. ```yaml @@ -119,9 +128,12 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml Type: Int32 @@ -136,7 +148,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -151,4 +167,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Remove-ClusterGroupSet](./Remove-ClusterGroupSet.md) [Set-ClusterGroupSet](./Set-ClusterGroupSet.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterGroupSetDependency.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterGroupSetDependency.md index e0664e2a8d..86753853cf 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterGroupSetDependency.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterGroupSetDependency.md @@ -17,16 +17,19 @@ Gets the cluster group sets based on dependency relationships. ``` Get-ClusterGroupSetDependency [-ContainedGroup ] [-Name ] [-Provider ] - [-DependentGroup ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [] + [-DependentGroup ] [-CimSession ] [-ThrottleLimit ] [-AsJob] + [] ``` ## DESCRIPTION -The **Get-ClusterGroupSetDependency** cmdlet gets the cluster group sets based on dependency relationships. -You can get all sets that are dependent on a specific set. + +The **Get-ClusterGroupSetDependency** cmdlet gets the cluster group sets based on dependency +relationships. You can get all sets that are dependent on a specific set. ## EXAMPLES ### Example 1: Get all the group sets that are provided by the specified set + ``` PS C:\> Get-ClusterGroupSetDependency -Provider "Set2" @@ -44,14 +47,17 @@ This command gets all the group sets that are provided by set named Set2. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. + +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml Type: SwitchParameter @@ -66,9 +72,11 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml Type: CimSession[] @@ -83,6 +91,7 @@ Accept wildcard characters: False ``` ### -ContainedGroup + Specifies the name of the group to get sets. ```yaml @@ -98,6 +107,7 @@ Accept wildcard characters: False ``` ### -DependentGroup + Specifies the name of the group to get sets that are dependent on that group. ```yaml @@ -113,6 +123,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of the group set to get. ```yaml @@ -128,6 +139,7 @@ Accept wildcard characters: False ``` ### -Provider + Specifies the name of the set that provides for the sets to get. ```yaml @@ -143,9 +155,12 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml Type: Int32 @@ -160,7 +175,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -173,4 +192,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Add-ClusterGroupSetDependency](./Add-ClusterGroupSetDependency.md) [Remove-ClusterGroupSetDependency](./Remove-ClusterGroupSetDependency.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterLog.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterLog.md index c0140bdfdf..96c157a33e 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterLog.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterLog.md @@ -16,20 +16,26 @@ Creates a log file for all nodes, or a specific a node, in a failover cluster. ## SYNTAX ``` -Get-ClusterLog [[-Node] ] [-Destination ] [-TimeSpan ] [-UseLocalTime] - [-SkipClusterState] [-Health] [-InputObject ] [-Cluster ] [] +Get-ClusterLog [[-Node] ] [-Destination ] [-TimeSpan ] + [-UseLocalTime] [-SkipClusterState] [-Health] [-InputObject ] [-Cluster ] + [] ``` ## DESCRIPTION -The **Get-ClusterLog** cmdlet creates a log file for all nodes, or a specific a node, in a failover cluster. -When creating a log file for the cluster, you can specify the timespan that you want logged information for in addition to providing a destination for the created logs. +The **Get-ClusterLog** cmdlet creates a log file for all nodes, or a specific a node, in a failover +cluster. -Note: This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) authentication on the server computer. +When creating a log file for the cluster, you can specify the timespan that you want logged +information for in addition to providing a destination for the created logs. + +Note: This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) +authentication on the server computer. ## EXAMPLES ### Example 1: Create a log file for the local cluster + ``` PS C:\> Get-ClusterLog Mode LastWriteTime Length Name @@ -38,9 +44,11 @@ Mode LastWriteTime Length Name -a--- 9/4/2008 3:53 PM 1261025 Cluster.log ``` -This command creates a log file for the local cluster in the cluster reports folder (C:\Windows\Cluster\Reports) on each node of the cluster. +This command creates a log file for the local cluster in the cluster reports folder +(C:\Windows\Cluster\Reports) on each node of the cluster. ### Example 2: Create log files for each node and save them locally + ``` PS C:\> Get-ClusterLog -Destination . Mode LastWriteTime Length Name @@ -49,9 +57,11 @@ Mode LastWriteTime Length Name -a--- 9/4/2008 3:55 PM 1261025 node2_cluster.log ``` -This command creates a log file for each node of the local cluster, and copies all logs to the local folder. +This command creates a log file for each node of the local cluster, and copies all logs to the local +folder. ### Example 3: Create a log file for the local cluster for previous five minutes + ``` PS C:\> Get-ClusterLog -TimeSpan 5 Mode LastWriteTime Length Name @@ -60,14 +70,15 @@ Mode LastWriteTime Length Name -a--- 9/4/2008 4:01 PM 104181 Cluster.log ``` -This command creates a log file for the local cluster in the cluster reports folder (C:\Windows\Cluster\Reports) on each node of the cluster. -The log covers the last 5 minutes. +This command creates a log file for the local cluster in the cluster reports folder +(C:\Windows\Cluster\Reports) on each node of the cluster. The log covers the last 5 minutes. ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -82,9 +93,9 @@ Accept wildcard characters: False ``` ### -Destination -Specifies the location to which to copy one or more cluster logs. -To copy to the current folder, use `.` for this parameter input. -Default location is C:\Windows\Cluster\Reports. + +Specifies the location to which to copy one or more cluster logs. To copy to the current folder, use +`.` for this parameter input. Default location is C:\Windows\Cluster\Reports. ```yaml Type: String @@ -99,6 +110,7 @@ Accept wildcard characters: False ``` ### -Health + Indicates that the cmdlet also logs the health information of the cluster. ```yaml @@ -114,6 +126,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster from which to generate cluster logs. ```yaml @@ -129,6 +142,7 @@ Accept wildcard characters: False ``` ### -Node + Specifies the name of the cluster node for which to generate the cluster log. ```yaml @@ -144,6 +158,7 @@ Accept wildcard characters: False ``` ### -SkipClusterState + Indicates that the cmdlet does not add additional cluster state information to the cluster logs. ```yaml @@ -159,6 +174,7 @@ Accept wildcard characters: False ``` ### -TimeSpan + Specifies the time span in minutes for which to generate the cluster log. ```yaml @@ -174,8 +190,9 @@ Accept wildcard characters: False ``` ### -UseLocalTime -Specifies that the time stamp for each cluster log entry uses local time. -By default, the timestamp uses Greenwich Mean Time (GMT). + +Specifies that the time stamp for each cluster log entry uses local time. By default, the timestamp +uses Greenwich Mean Time (GMT). ```yaml Type: SwitchParameter @@ -190,7 +207,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -205,4 +226,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS [Set-ClusterLog](./Set-ClusterLog.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterNetwork.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterNetwork.md index a2d11c2f15..a75f807099 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterNetwork.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterNetwork.md @@ -21,12 +21,14 @@ Get-ClusterNetwork [[-Name] ] [-InputObject ] [-Clus ``` ## DESCRIPTION + The **Get-ClusterNetwork** cmdlet gets information about one or more networks in a failover cluster. A failover cluster requires network connectivity among nodes and between clients and nodes. ## EXAMPLES ### Example 1 + ``` PS C:\> Get-ClusterNetwork Name State @@ -39,6 +41,7 @@ Cluster Network 3 Up This example gets information about the networks used by the local cluster. ### Example 2 + ``` PS C:\> (Get-ClusterNetwork -Name "Cluster Network 1").Name = "Cluster Network 3" ``` @@ -48,8 +51,9 @@ This example renames Cluster Network 1 to Cluster Network 3. ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -64,6 +68,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster on which to enumerate the cluster networks. ```yaml @@ -79,6 +84,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of the cluster network to get. ```yaml @@ -94,7 +100,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -109,4 +119,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS [Get-ClusterNetworkInterface](./Get-ClusterNetworkInterface.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterNetworkInterface.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterNetworkInterface.md index e17120fca5..1d0f996e68 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterNetworkInterface.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterNetworkInterface.md @@ -21,12 +21,15 @@ Get-ClusterNetworkInterface [[-Name] ] [-Node Get-ClusterNetworkInterface Name Node Network State @@ -40,6 +43,7 @@ node2 - Local A ... node2 Cluster Network 2 Up This example displays information about the physical network adapters used by the local cluster. ### Example 2 + ``` PS C:\> Get-ClusterNode -Name node1 | Get-ClusterNetworkInterface Name Node Network State @@ -48,14 +52,15 @@ node1 - Local A ... node1 Cluster Network 1 Up node1 - Local A ... node1 Cluster Network 2 Up ``` -This example displays information about the physical network adapters used by node1 in the local cluster. -This cmdlet is equivalent to `Get-ClusterNetworkInterface -Node node1`. +This example displays information about the physical network adapters used by node1 in the local +cluster. This cmdlet is equivalent to `Get-ClusterNetworkInterface -Node node1`. ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -70,6 +75,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster on which to enumerate the cluster network interfaces. ```yaml @@ -85,6 +91,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of the cluster network interface to get. ```yaml @@ -100,6 +107,7 @@ Accept wildcard characters: False ``` ### -Network + Specifies the name of the cluster network for which to enumerate the network interfaces. ```yaml @@ -115,6 +123,7 @@ Accept wildcard characters: False ``` ### -Node + Specifies the name of the cluster node on which to enumerate the network interfaces. ```yaml @@ -130,7 +139,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -147,4 +160,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS [Get-ClusterNetwork](./Get-ClusterNetwork.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterNode.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterNode.md index 2b6d4ce75e..c232f14e80 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterNode.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterNode.md @@ -16,18 +16,23 @@ Gets information about one or more nodes, or servers, in a failover cluster. ## SYNTAX ``` -Get-ClusterNode [[-Name] ] [-InputObject ] [-Cluster ] [] +Get-ClusterNode [[-Name] ] [-InputObject ] [-Cluster ] + ] ``` ## DESCRIPTION -The **Get-ClusterNode** cmdlet gets information about one or more nodes, or servers, in a failover cluster. -Use this cmdlet to obtain information about the node status. -To see the resources currently owned by a particular node, specify that node in this cmdlet and then pipe the results through the **Get-ClusterResource** cmdlet. +The **Get-ClusterNode** cmdlet gets information about one or more nodes, or servers, in a failover +cluster. + +Use this cmdlet to obtain information about the node status. To see the resources currently owned by +a particular node, specify that node in this cmdlet and then pipe the results through the +**Get-ClusterResource** cmdlet. ## EXAMPLES ### Example 1 + ``` PS C:\> Get-ClusterNode Name ID State @@ -41,6 +46,7 @@ node4 4 Up This example displays the name, id, and state of each node, or server, in the local cluster. ### Example 2 + ``` PS C:\> Get-ClusterNode -Cluster cluster1 Name ID State @@ -49,9 +55,11 @@ node1 1 Up node2 2 Up ``` -This example displays the name, id, and state of each node, or server, in the cluster named cluster1. +This example displays the name, id, and state of each node, or server, in the cluster named +cluster1. ### Example 3 + ``` PS C:\> Get-ClusterNode -Name node1 | Get-ClusterResource Name State Group ResourceType @@ -63,13 +71,15 @@ Cluster Name Online Cluster Group Network Name File Share Witness Offline Cluster Group File Share Witness ``` -This example lists all cluster resources that are currently owned by node named node1 on the local cluster. +This example lists all cluster resources that are currently owned by node named node1 on the local +cluster. ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -84,6 +94,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster on which to enumerate cluster nodes. ```yaml @@ -99,6 +110,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of the cluster node to get. ```yaml @@ -114,7 +126,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -141,4 +157,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Stop-ClusterNode](./Stop-ClusterNode.md) [Suspend-ClusterNode](./Suspend-ClusterNode.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterOwnerNode.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterOwnerNode.md index 93100d8397..08c7eefde5 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterOwnerNode.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterOwnerNode.md @@ -11,23 +11,29 @@ title: Get-ClusterOwnerNode # Get-ClusterOwnerNode ## SYNOPSIS -Gets information about which nodes can own a resource in a failover cluster or information about the order of preference among owner nodes for a clustered role. +Gets information about which nodes can own a resource in a failover cluster or information about the +order of preference among owner nodes for a clustered role. ## SYNTAX ``` -Get-ClusterOwnerNode [-Resource ] [-Group ] [-ResourceType ] [-InputObject ] - [-Cluster ] [] +Get-ClusterOwnerNode [-Resource ] [-Group ] [-ResourceType ] + [-InputObject ] [-Cluster ] [] ``` ## DESCRIPTION -The **Get-ClusterOwnerNode** cmdlet gets information about which nodes can own a resource in a failover cluster or information about the order of preference among owner nodes for a clustered role. -Settings that control the possible or preferred owners affect the way the cluster responds to the failure of a resource or a clustered role. +The **Get-ClusterOwnerNode** cmdlet gets information about which nodes can own a resource in a +failover cluster or information about the order of preference among owner nodes for a clustered +role. + +Settings that control the possible or preferred owners affect the way the cluster responds to the +failure of a resource or a clustered role. ## EXAMPLES ### Example 1 + ``` PS C:\> Get-ClusterResource -Cluster "Cluster Disk 1" | Get-ClusterOwnerNode ClusterObject OwnerNodes @@ -38,6 +44,7 @@ Cluster Disk 1 {node1, node2} This example lists the possible owners for the cluster named Cluster Disk 1 in the local cluster. ### Example 2 + ``` PS C:\> Get-ClusterGroup -Group cluster1FS12 | Get-ClusterOwnerNode ClusterObject OwnerNodes @@ -45,13 +52,15 @@ ClusterObject OwnerNodes cluster1FS12 {} ``` -This example lists the preferred owners for the clustered file server, or resource group, called cluster1FS12 on the local cluster. +This example lists the preferred owners for the clustered file server, or resource group, called +cluster1FS12 on the local cluster. ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -66,6 +75,7 @@ Accept wildcard characters: False ``` ### -Group + Specifies the name of the cluster group for which owner nodes are enumerated. ```yaml @@ -81,6 +91,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster group or cluster resource on which to enumerate owner nodes. ```yaml @@ -96,6 +107,7 @@ Accept wildcard characters: False ``` ### -Resource + Specifies the name of the cluster resource for which owner nodes are enumerated. ```yaml @@ -111,6 +123,7 @@ Accept wildcard characters: False ``` ### -ResourceType + Specifies the name of the cluster resource type for which owner nodes are enumerated. ```yaml @@ -126,7 +139,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -145,4 +162,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS [Set-ClusterOwnerNode](./Set-ClusterOwnerNode.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterParameter.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterParameter.md index 89a7b5c23d..dcc77cfe5f 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterParameter.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterParameter.md @@ -21,24 +21,33 @@ Get-ClusterParameter [[-Name] ] [-InputObject ] [-Cl ``` ## DESCRIPTION -The **Get-ClusterParameter** cmdlet gets detailed information about an object in a failover cluster, such as a cluster resource. -This cmdlet is used to manage private properties for a cluster object. -To get and set common properties for a cluster object, use the appropriate Get-Cluster* cmdlet to get the cluster object of interest and then set the property of interest on that cluster object directly. -The type of detailed information you can obtain with this cmdlet depends on the cmdlet you combine with it. -For example: +The **Get-ClusterParameter** cmdlet gets detailed information about an object in a failover cluster, +such as a cluster resource. This cmdlet is used to manage private properties for a cluster object. +To get and set common properties for a cluster object, use the appropriate Get-Cluster* cmdlet to +get the cluster object of interest and then set the property of interest on that cluster object +directly. -- If you use this cmdlet with the **Get-ClusterResource** cmdlet for a disk resource, then you can obtain the disk signature or GUID of a disk and information about whether maintenance is turned on for that disk. +The type of detailed information you can obtain with this cmdlet depends on the cmdlet you combine +with it. For example: -- If you use this cmdlet with the **Get-ClusterResource** cmdlet for a Network Name resource, then you can obtain DNS-related information about the resource. +- If you use this cmdlet with the **Get-ClusterResource** cmdlet for a disk resource, then you can + obtain the disk signature or GUID of a disk and information about whether maintenance is turned on + for that disk. -- If you use this cmdlet with the **Get-ClusterResource** cmdlet for an IP address resource, then you can obtain DHCP-related information about the IP Address resource. +- If you use this cmdlet with the **Get-ClusterResource** cmdlet for a Network Name resource, then + you can obtain DNS-related information about the resource. -- If you use this cmdlet with the **Get-ClusterResource** cmdlet for resources used by virtual machines, then you can obtain details about the settings for the virtual machines. +- If you use this cmdlet with the **Get-ClusterResource** cmdlet for an IP address resource, then + you can obtain DHCP-related information about the IP Address resource. + +- If you use this cmdlet with the **Get-ClusterResource** cmdlet for resources used by virtual + machines, then you can obtain details about the settings for the virtual machines. ## EXAMPLES ### Example 1 + ``` PS C:\> Get-ClusterResource -Name cluster1FS | Get-ClusterParameter Object Name Value Type @@ -59,10 +68,12 @@ cluster1FS LastDNSUpdateTime 10/15/2008 9:50:... DateTime cluster1FS ObjectGUID 8054680893fd5943... String ``` -This example gets the parameters, including the detailed information, for the cluster resource named cluster1FS on the local cluster. -The displayed parameters will vary according to the type of resource being viewed. +This example gets the parameters, including the detailed information, for the cluster resource named +cluster1FS on the local cluster. The displayed parameters will vary according to the type of +resource being viewed. ### Example 2 + ``` PS C:\> Get-ClusterResource -Name cluster1FS | Get-ClusterParameter -Name HostRecordTTL Object Name Value Type @@ -70,13 +81,15 @@ Object Name Value Type cluster1FS HostRecordTTL 1200 UInt32 ``` -This example displays the HostRecordTTL parameter for the cluster resource named cluster1FS on the local cluster, if that parameter is applicable to cluster1FS. +This example displays the HostRecordTTL parameter for the cluster resource named cluster1FS on the +local cluster, if that parameter is applicable to cluster1FS. ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -91,6 +104,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster object for which to get more information. ```yaml @@ -106,6 +120,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of the cluster parameter to get. ```yaml @@ -121,7 +136,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -150,4 +169,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS [Set-ClusterParameter](./Set-ClusterParameter.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterQuorum.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterQuorum.md index bc01317e57..b1783ca12a 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterQuorum.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterQuorum.md @@ -20,15 +20,19 @@ Get-ClusterQuorum [[-Cluster] ] [-InputObject ] [ Get-ClusterQuorum Cluster QuorumResource QuorumType @@ -39,6 +43,7 @@ cluster1 Cluster Disk 1 NodeAndDiskMajority This example displays the quorum configuration for the local cluster. ### Example 2 + ``` PS C:\> Get-ClusterQuorum -Cluster Cluster1 Cluster QuorumResource QuorumType @@ -51,8 +56,9 @@ This example displays the quorum configuration for the cluster named Cluster1. ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -67,6 +73,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster for which to query the quorum type. ```yaml @@ -82,7 +89,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -97,4 +108,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS [Set-ClusterQuorum](./Set-ClusterQuorum.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterResource.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterResource.md index 6707042c3e..deb6ce558b 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterResource.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterResource.md @@ -16,19 +16,24 @@ Gets information about one or more resources in a failover cluster. ## SYNTAX ``` -Get-ClusterResource [[-Name] ] [-VMId ] [-InputObject ] [-Cluster ] - [] +Get-ClusterResource [[-Name] ] [-VMId ] [-InputObject ] + [-Cluster ] [] ``` ## DESCRIPTION -The **Get-ClusterResource** cmdlet gets information about one or more resources in a failover cluster. -To set a common property for a clustered resource, use this cmdlet to get the object for the clustered resource, and then set the appropriate property on that object directly. -To get and set more specific information about a clustered resource, use this cmdlet with Get-ClusterParameter and Set-ClusterParameter. +The **Get-ClusterResource** cmdlet gets information about one or more resources in a failover +cluster. + +To set a common property for a clustered resource, use this cmdlet to get the object for the +clustered resource, and then set the appropriate property on that object directly. To get and set +more specific information about a clustered resource, use this cmdlet with Get-ClusterParameter and +Set-ClusterParameter. ## EXAMPLES ### Example 1 + ``` PS C:\> Get-ClusterResource Name State Group ResourceType @@ -48,6 +53,7 @@ Cluster Name Online Cluster Group Network Name This example lists all cluster resources on the local cluster. ### Example 2 + ``` PS C:\> Get-ClusterResource -Name "Cluster Disk 2" | Format-List -Property * Cluster : cluster1 @@ -80,6 +86,7 @@ Id : 6e394089-145a-4279-b75d-b14015cc36e4 This example displays information about Cluster Disk 2, on the local cluster, in the form of a list. ### Example 3 + ``` PS C:\> Get-ClusterResource -Name "Cluster Disk 2" | Get-ClusterParameter Object Name Value Type @@ -102,6 +109,7 @@ Cluster Disk 2 DiskPnpUpdate {0, 0, 0, 0...} ByteArray This example displays detailed parameters for Cluster Disk 2 on the local cluster. ### Example 4 + ``` PS C:\> Get-ClusterGroup -Name FileServer1 | Get-ClusterResource Name State Group ResourceType @@ -112,16 +120,20 @@ Cluster IP Addre... Online FileServer1 IPv6 Address FileServer1 Online FileServer1 Network Name ``` -This example lists cluster resources in cluster group named FileServer1, a clustered file server on the local cluster. +This example lists cluster resources in cluster group named FileServer1, a clustered file server on +the local cluster. ### Example 5 + ``` PS C:\> Get-ClusterResource -Name "Cluster Disk 2" | ForEach-Object -Process {$_.RestartDelay = 600} ``` -This example sets the common property RestartDelay for the Cluster Disk 2 resource on the local cluster to 600. +This example sets the common property RestartDelay for the Cluster Disk 2 resource on the local +cluster to 600. ### Example 6 + ``` PS C:\> Get-ClusterResource -Name "cluster pool 1" | Format-List -Property OwnerNode OwnerNode : cluster-node1 @@ -130,6 +142,7 @@ OwnerNode : cluster-node1 This example shows how to display the owner of a cluster pooled disk. ### Example 7 + ``` PS C:\> Get-ClusterResource -Name *print-VM1 | Get-VM | Stop-VM -Verbose VERBOSE: Current VMobject = Microsoft.HyperV.PowerShell.VirtualMachine[] @@ -144,14 +157,15 @@ virtual machine, but data loss might occur. [Y] Yes [N] No [S] Suspend [?] Help (default is "Y"):Y ``` -This example enumerates the cluster resources for wildcard characters *print-VM1 and stops the corresponding virtual machines. -Verbose mode is turned on for details of the operation. +This example enumerates the cluster resources for wildcard characters *print-VM1 and stops the +corresponding virtual machines. Verbose mode is turned on for details of the operation. ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -166,6 +180,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster node or cluster group on which to enumerate cluster resources. ```yaml @@ -181,6 +196,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of the cluster resource to get. ```yaml @@ -196,6 +212,7 @@ Accept wildcard characters: False ``` ### -VMId + Specifies the virtual machine identifier (ID). ```yaml @@ -211,7 +228,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -246,4 +267,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Stop-ClusterResource](./Stop-ClusterResource.md) [Suspend-ClusterResource](./Suspend-ClusterResource.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceDependency.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceDependency.md index e1d280424c..8e157c26a0 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceDependency.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceDependency.md @@ -11,7 +11,8 @@ title: Get-ClusterResourceDependency # Get-ClusterResourceDependency ## SYNOPSIS -Gets information about the dependencies that have been configured between clustered resources in a failover cluster. +Gets information about the dependencies that have been configured between clustered resources in a +failover cluster. ## SYNTAX @@ -21,12 +22,15 @@ Get-ClusterResourceDependency [[-Resource] ] [-Guid] [-InputOb ``` ## DESCRIPTION -The **Get-ClusterResourceDependency** cmdlet gets information about the dependencies that have been configured between clustered resources in a failover cluster. -Resource dependencies control the order in which resources are brought online or taken offline in the cluster. + +The **Get-ClusterResourceDependency** cmdlet gets information about the dependencies that have been +configured between clustered resources in a failover cluster. Resource dependencies control the +order in which resources are brought online or taken offline in the cluster. ## EXAMPLES ### Example 1 + ``` PS C:\> Get-ClusterResourceDependency -Resource cluster1FS12 Resource DependencyExpression @@ -37,6 +41,7 @@ cluster1FS12 [IP Address 172.24.11.0] or [IP Add ... This example displays the dependencies for the resource called cluster1FS12. ### Example 2 + ``` PS C:\> Get-ClusterGroup -Name cluster1FS12 | Get-ClusterResource | Get-ClusterResourceDependency Resource DependencyExpression @@ -49,14 +54,15 @@ IP Address 2001:4898:9:2:: IP Address 2002:9d38:31ca:8:: ``` -This example displays the dependencies for each resource in the clustered file server ─resource group─ called cluster1FS12. -Some resources do not have dependencies. +This example displays the dependencies for each resource in the clustered file server ─resource +group─ called cluster1FS12. Some resources do not have dependencies. ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -71,6 +77,7 @@ Accept wildcard characters: False ``` ### -Guid + Causes the generated dependency expression to have the resource GUIDs instead of the resource names. ```yaml @@ -86,6 +93,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster resource for which to get the dependency expression. ```yaml @@ -101,6 +109,7 @@ Accept wildcard characters: False ``` ### -Resource + Specifies the name of the cluster resource for which to get the dependency expression. ```yaml @@ -116,7 +125,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -139,4 +152,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Remove-ClusterResourceDependency](./Remove-ClusterResourceDependency.md) [Set-ClusterResourceDependency](./Set-ClusterResourceDependency.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceDependencyReport.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceDependencyReport.md index 93f55ab38c..1aa418bc05 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceDependencyReport.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceDependencyReport.md @@ -21,14 +21,18 @@ Get-ClusterResourceDependencyReport [-Resource ] [-Group ] [-Inp ``` ## DESCRIPTION -The **Get-ClusterResourceDependencyReport** cmdlet generates a report that lists the dependencies between resources in a failover cluster. -The report has a filename extension of MHT. -For convenience in storing and finding the report, you can pipe this cmdlet to the [Copy-Item](https://go.microsoft.com/fwlink/?LinkID=113292) cmdlet and specify a destination folder into which to copy the report. +The **Get-ClusterResourceDependencyReport** cmdlet generates a report that lists the dependencies +between resources in a failover cluster. + +The report has a filename extension of MHT. For convenience in storing and finding the report, you +can pipe this cmdlet to the [Copy-Item](https://go.microsoft.com/fwlink/?LinkID=113292) cmdlet and +specify a destination folder into which to copy the report. ## EXAMPLES ### Example 1 + ``` PS C:\> Get-ClusterResourceDependencyReport -Group cluster1FS12 Mode LastWriteTime Length Name @@ -36,28 +40,33 @@ Mode LastWriteTime Length Name -a--- 10/15/2008 6:29 PM 59299 fb509e66-8d02-4881-8184-6be5b1bfa4c2.mht ``` -This example creates a dependency report file for the clustered file server, or resource group, named cluster1FS12 on the local cluster. +This example creates a dependency report file for the clustered file server, or resource group, +named cluster1FS12 on the local cluster. ### Example 2 + ``` PS C:\> Get-ClusterResourceDependencyReport -Group cluster1FS12 | Copy-Item -Destination C:\users\user1 ``` -This example creates a dependency report file for the clustered file server, or resource group, named cluster1FS12 on the local cluster. -The dependency report is copied to C:\users\user1. +This example creates a dependency report file for the clustered file server, or resource group, +named cluster1FS12 on the local cluster. The dependency report is copied to C:\users\user1. ### Example 3 + ``` PS C:\> Get-ClusterGroup | Get-ClusterResourceDependencyReport | Copy-Item -Destination \\fileserver\share ``` -This example creates a dependency report file for each clustered role, or resource group, on the local cluster, and copies all reports to \\\\fileserver\share. +This example creates a dependency report file for each clustered role, or resource group, on the +local cluster, and copies all reports to \\\\fileserver\share. ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -72,6 +81,7 @@ Accept wildcard characters: False ``` ### -Group + Specifies the name of the cluster group for which to generate the dependency report. ```yaml @@ -87,6 +97,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster group or cluster resource for which to create the dependency report. ```yaml @@ -102,6 +113,7 @@ Accept wildcard characters: False ``` ### -Resource + Specifies the name of the cluster resource for which to generate the dependency report. ```yaml @@ -117,7 +129,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -140,4 +156,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Remove-ClusterResourceDependency](./Remove-ClusterResourceDependency.md) [Set-ClusterResourceDependency](./Set-ClusterResourceDependency.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceType.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceType.md index 2c2f8271ce..fc2b2d57ed 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceType.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceType.md @@ -21,12 +21,15 @@ Get-ClusterResourceType [[-Name] ] [-InputObject ] [ ``` ## DESCRIPTION -The **Get-ClusterResourceType** cmdlet gets information about one or more resource types in a failover cluster. -Obtain information such as the name of the dynamic-link library (DLL) through which the Cluster service communicates with a particular resource type. + +The **Get-ClusterResourceType** cmdlet gets information about one or more resource types in a +failover cluster. Obtain information such as the name of the dynamic-link library (DLL) through +which the Cluster service communicates with a particular resource type. ## EXAMPLES ### Example 1 + ``` PS C:\> Get-ClusterResourceType Name DisplayName @@ -59,6 +62,7 @@ WINS Service WINS Service This example lists all the resource types that can be used in configurations on the local cluster. ### Example 2 + ``` PS C:\> Get-ClusterResourceType -Name "File Server" | Format-List -Property * Cluster : Cluster1 @@ -74,13 +78,15 @@ DeadlockTimeout : 300000 Id : f582c84f-0066-0069-6c65-207365727665 ``` -This example gets information about the File Server resource type on the local cluster, and displays the information in the form of a list. +This example gets information about the File Server resource type on the local cluster, and displays +the information in the form of a list. ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -95,6 +101,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster on which to enumerate the cluster resource types. ```yaml @@ -110,6 +117,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of the cluster resource type to get. ```yaml @@ -125,7 +133,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -142,4 +154,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Add-ClusterResourceType](./Add-ClusterResourceType.md) [Remove-ClusterResourceType](./Remove-ClusterResourceType.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterSharedVolume.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterSharedVolume.md index 44226c6602..a724b64be9 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterSharedVolume.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterSharedVolume.md @@ -21,11 +21,14 @@ Get-ClusterSharedVolume [[-Name] ] [-InputObject ] [ ``` ## DESCRIPTION -The **Get-ClusterSharedVolume** cmdlet gets information about Cluster Shared Volumes in a failover cluster. + +The **Get-ClusterSharedVolume** cmdlet gets information about Cluster Shared Volumes in a failover +cluster. ## EXAMPLES ### Example 1 + ``` PS C:\> Get-ClusterSharedVolume Name State Node @@ -37,6 +40,7 @@ Cluster Disk 4 Online node2 This example lists all the Cluster Shared Volumes on the local cluster. ### Example 2 + ``` PS C:\> Get-ClusterSharedVolume -Cluster cluster1 Name State Node @@ -47,6 +51,7 @@ Cluster Disk 1 Online node4 This example lists all the Cluster Shared Volumes on the cluster named cluster1. ### Example 3 + ``` PS C:\> Get-ClusterSharedVolume -Name "Cluster Disk 4" Name State Node @@ -59,8 +64,9 @@ This example displays the state of the Cluster Shared Volume called Cluster Disk ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -75,6 +81,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster on which to enumerate the Cluster Shared Volumes. ```yaml @@ -90,6 +97,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of the Cluster Shared Volume to get. ```yaml @@ -105,7 +113,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -124,4 +136,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Move-ClusterSharedVolume](./Move-ClusterSharedVolume.md) [Remove-ClusterSharedVolume](./Remove-ClusterSharedVolume.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterSharedVolumeState.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterSharedVolumeState.md index b7f0638743..583fb592ae 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterSharedVolumeState.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterSharedVolumeState.md @@ -16,16 +16,18 @@ Gets the state of Cluster Shared Volumes in a cluster. ## SYNTAX ``` -Get-ClusterSharedVolumeState [-Node ] [[-Name] ] [-InputObject ] - [-Cluster ] [] +Get-ClusterSharedVolumeState [-Node ] [[-Name] ] + [-InputObject ] [-Cluster ] [] ``` ## DESCRIPTION + The **Get-ClusterSharedVolumeState** cmdlet gets the state of Cluster Shared Volumes in a cluster. ## EXAMPLES ### 1: + ``` PS C:\> Get-ClusterSharedVolumeState Name : Cluster Disk X @@ -57,8 +59,9 @@ This command gets the state of Cluster Shared Volumes on the local cluster. ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If you specify a period (`.`) or do not specify this parameter, the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If you specify a period (`.`) or do +not specify this parameter, the cmdlet runs on the local cluster. ```yaml Type: String @@ -73,8 +76,9 @@ Accept wildcard characters: False ``` ### -InputObject -Specifies the input to this cmdlet. -You can use this parameter, or you can pipe the input to this cmdlet. + +Specifies the input to this cmdlet. You can use this parameter, or you can pipe the input to this +cmdlet. ```yaml Type: PSObject @@ -89,7 +93,9 @@ Accept wildcard characters: False ``` ### -Name -Specifies the names, as a collection of strings, of the Cluster Shared Volumes for which to get state information. + +Specifies the names, as a collection of strings, of the Cluster Shared Volumes for which to get +state information. ```yaml Type: StringCollection @@ -104,7 +110,9 @@ Accept wildcard characters: False ``` ### -Node -Specifies the names, as a collection of strings, of the cluster nodes for which to get the state of Cluster Shared Volumes. + +Specifies the names, as a collection of strings, of the cluster nodes for which to get the state of +Cluster Shared Volumes. ```yaml Type: StringCollection @@ -119,7 +127,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -132,4 +144,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS [Get-ClusterSharedVolume](./Get-ClusterSharedVolume.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterStorageSpacesDirect.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterStorageSpacesDirect.md index cfa4373309..0c7f998954 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterStorageSpacesDirect.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterStorageSpacesDirect.md @@ -16,16 +16,19 @@ Gets the S2D settings from a cluster. ## SYNTAX ``` -Get-ClusterStorageSpacesDirect [-Node ] [-CimSession ] [-ThrottleLimit ] [-AsJob] - [] +Get-ClusterStorageSpacesDirect [-Node ] [-CimSession ] + [-ThrottleLimit ] [-AsJob] [] ``` ## DESCRIPTION -The **Get-ClusterStorageSpacesDirect** cmdlet gets the Storage Spaces Direct (S2D) settings from a cluster. + +The **Get-ClusterStorageSpacesDirect** cmdlet gets the Storage Spaces Direct (S2D) settings from a +cluster. ## EXAMPLES ### Example 1: Get the Storage Spaces Direct settings from a cluster + ``` PS C:\> Get-ClusterStorageSpacesDirect -Node "K0617-C1.contoso.com" S2DCacheBehavior : Default @@ -37,6 +40,7 @@ S2DEnabled : 1 This command sets the S2D settings from the K0617-C1.contoso.com cluster. ### Example 2: Get the Storage Spaces Direct settings from a cluster by using the pipeline operator for input + ``` PS C:\> Get-Cluster "K0617-C1.contoso.com" | Get-ClusterStorageSpacesDirect S2DCacheBehavior : Default @@ -45,19 +49,23 @@ S2DCacheMetadataReserveBytes : 34359738368 S2DEnabled : 1 ``` -This command gets the S2D settings from cluster K0617-C1.contoso.com and pipes the cluster object to **Get-ClusterStorageSpacesDirect**. +This command gets the S2D settings from cluster K0617-C1.contoso.com and pipes the cluster object to +**Get-ClusterStorageSpacesDirect**. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. + +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml Type: SwitchParameter @@ -72,9 +80,11 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml Type: CimSession[] @@ -89,6 +99,7 @@ Accept wildcard characters: False ``` ### -Node + Specifies the name of the cluster node from which to get storage spaces direct information. ```yaml @@ -104,9 +115,12 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml Type: Int32 @@ -121,7 +135,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -138,4 +156,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Set-ClusterStorageSpacesDirect](./Set-ClusterStorageSpacesDirect.md) [Get-Cluster](./Get-Cluster.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterVMMonitoredItem.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterVMMonitoredItem.md index 465f7f070b..f0d130e991 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterVMMonitoredItem.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterVMMonitoredItem.md @@ -16,29 +16,36 @@ Gets the list of services and events currently being monitored in the virtual ma ## SYNTAX ### VirtualMachine (Default) + ``` Get-ClusterVMMonitoredItem [[-VirtualMachine] ] [-Wait ] [-Cluster ] [] ``` ### VMId + ``` Get-ClusterVMMonitoredItem [-VMId ] [-Wait ] [-Cluster ] [] ``` ### InputObject + ``` -Get-ClusterVMMonitoredItem [-Wait ] [-InputObject ] [-Cluster ] [] +Get-ClusterVMMonitoredItem [-Wait ] [-InputObject ] [-Cluster ] + [] ``` ## DESCRIPTION -The **Get-ClusterVMMonitoredItem** cmdlet gets the list of services and events currently being monitored in the virtual machine. -If one of those services fails or one of the events occurs, then the system responds by taking an action based on the failover configuration for the virtual machine resource. -For example, the configuration might specify that the virtual machine be restarted. + +The **Get-ClusterVMMonitoredItem** cmdlet gets the list of services and events currently being +monitored in the virtual machine. If one of those services fails or one of the events occurs, then +the system responds by taking an action based on the failover configuration for the virtual machine +resource. For example, the configuration might specify that the virtual machine be restarted. ## EXAMPLES ### Example 1 + ``` PS C:\> Get-Cluster -Name Cluster1 | Get-ClusterVMMonitoredItem -VirtualMachine vm1 Name @@ -47,13 +54,15 @@ Microsoft-Windows-FailoverClustering-Manager+Admin,Microsoft-Windows-FailoverClu Spooler ``` -This example returns the services and events being monitored in the virtual machine named vm1 on the cluster named Cluster1. +This example returns the services and events being monitored in the virtual machine named vm1 on the +cluster named Cluster1. ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -68,7 +77,9 @@ Accept wildcard characters: False ``` ### -InputObject -Specifies the cluster on which to run the cmdlet or the clustered virtual machine for which to retrieve the clustered virtual machine monitored item object. + +Specifies the cluster on which to run the cmdlet or the clustered virtual machine for which to +retrieve the clustered virtual machine monitored item object. ```yaml Type: PSObject @@ -83,6 +94,7 @@ Accept wildcard characters: False ``` ### -VMId + Specifies the virtual machine identifier (ID). ```yaml @@ -98,8 +110,10 @@ Accept wildcard characters: False ``` ### -VirtualMachine -Specifies the name of the clustered virtual machine on which to perform monitoring. -When this parameter is specified, the cmdlet must be run on one of the host cluster nodes, or else the **Cluster** parameter must also be specified. + +Specifies the name of the clustered virtual machine on which to perform monitoring. When this +parameter is specified, the cmdlet must be run on one of the host cluster nodes, or else the +**Cluster** parameter must also be specified. ```yaml Type: String @@ -114,9 +128,10 @@ Accept wildcard characters: False ``` ### -Wait -Specifies the time in seconds to wait for the cmdlet. -If the *Wait* parameter is not specified, then the cmdlet waits for completion. -If `-Wait 0` is specified, then the call is initiated and the cmdlet returns without waiting. + +Specifies the time in seconds to wait for the cmdlet. If the *Wait* parameter is not specified, then +the cmdlet waits for completion. If `-Wait 0` is specified, then the call is initiated and the +cmdlet returns without waiting. ```yaml Type: Int32 @@ -131,7 +146,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -154,4 +173,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Remove-ClusterVMMonitoredItem](./Remove-ClusterVMMonitoredItem.md) [Reset-ClusterVMMonitoredState](./Reset-ClusterVMMonitoredState.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Grant-ClusterAccess.md b/docset/winserver2022-ps/failoverclusters/Grant-ClusterAccess.md index 0d684fdf03..a04cc5150e 100644 --- a/docset/winserver2022-ps/failoverclusters/Grant-ClusterAccess.md +++ b/docset/winserver2022-ps/failoverclusters/Grant-ClusterAccess.md @@ -21,12 +21,15 @@ Grant-ClusterAccess [-User] [-Full] [-ReadOnly] [-InputObject ``` ## DESCRIPTION -The **Grant-ClusterAccess** cmdlet grants access to a failover cluster, either full access or read-only access. -To provide someone with read-only access to the cluster, use the **ReadOnly** parameter. + +The **Grant-ClusterAccess** cmdlet grants access to a failover cluster, either full access or +read-only access. To provide someone with read-only access to the cluster, use the **ReadOnly** +parameter. ## EXAMPLES ### Example 1 + ``` PS C:\> Grant-ClusterAccess -User contoso\johnj99 -Full ``` @@ -34,6 +37,7 @@ PS C:\> Grant-ClusterAccess -User contoso\johnj99 -Full This example grants full access to the local cluster to johnj99 in the contoso domain. ### Example 2 + ``` PS C:\> Grant-ClusterAccess -User contoso\johnj99 -ReadOnly ``` @@ -43,8 +47,9 @@ This example grants read-only access to the local cluster to johnj99 in the cont ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -59,8 +64,9 @@ Accept wildcard characters: False ``` ### -Full -Specifies that the user gets full cluster access. -If no access level is specified, then the user gets read-only cluster access. + +Specifies that the user gets full cluster access. If no access level is specified, then the user +gets read-only cluster access. ```yaml Type: SwitchParameter @@ -75,6 +81,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster on which to grant access for the given user. ```yaml @@ -90,8 +97,9 @@ Accept wildcard characters: False ``` ### -ReadOnly -Specifies that the user gets read-only cluster access. -If no access level is specified, then the user gets read-only cluster access. + +Specifies that the user gets read-only cluster access. If no access level is specified, then the +user gets read-only cluster access. ```yaml Type: SwitchParameter @@ -106,6 +114,7 @@ Accept wildcard characters: False ``` ### -User + Specifies the user for whom to grant cluster access. ```yaml @@ -121,7 +130,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -140,4 +153,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Get-ClusterAccess](./Get-ClusterAccess.md) [Remove-ClusterAccess](./Remove-ClusterAccess.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Move-ClusterGroup.md b/docset/winserver2022-ps/failoverclusters/Move-ClusterGroup.md index 4fe4efe301..9e3cb6f8de 100644 --- a/docset/winserver2022-ps/failoverclusters/Move-ClusterGroup.md +++ b/docset/winserver2022-ps/failoverclusters/Move-ClusterGroup.md @@ -21,14 +21,17 @@ Move-ClusterGroup [[-Name] ] [[-Node] ] [-IgnoreLocked] [-Wait < ``` ## DESCRIPTION -The **Move-ClusterGroup** cmdlet moves a clustered role (a resource group) from one node to another in a failover cluster. -Moving a resource group is a way of simulating failover. -Running this cmdlet is also an appropriate step to take in preparation for routine maintenance on a node. +The **Move-ClusterGroup** cmdlet moves a clustered role (a resource group) from one node to another +in a failover cluster. + +Moving a resource group is a way of simulating failover. Running this cmdlet is also an appropriate +step to take in preparation for routine maintenance on a node. ## EXAMPLES ### Example 1 + ``` PS C:\> Move-ClusterGroup -Name MyFileServer Name OwnerNode State @@ -36,9 +39,11 @@ Name OwnerNode State MyFileServer node1 Online ``` -This example moves the clustered service called MyFileServer from the current owner node to any other node. +This example moves the clustered service called MyFileServer from the current owner node to any +other node. ### Example 2 + ``` PS C:\> Move-ClusterGroup -Name MyFileServer -Node node2 Name OwnerNode State @@ -46,9 +51,11 @@ Name OwnerNode State MyFileServer node2 Online ``` -This example moves the resource group called MyFileServer from the current owner node to the node named node2. +This example moves the resource group called MyFileServer from the current owner node to the node +named node2. ### Example 3 + ``` PS C:\> Get-ClusterNode node3 | Get-ClusterGroup | Move-ClusterGroup Name OwnerNode State @@ -58,10 +65,11 @@ Cluster Group node1 Online MyFileServer node1 Online ``` -This example moves all resource groups that are currently owned by the node named node3 to other nodes. -Use this cmdlet before performing maintenance on the specified node. +This example moves all resource groups that are currently owned by the node named node3 to other +nodes. Use this cmdlet before performing maintenance on the specified node. ### Example 4 + ``` PS C:\> Move-ClusterGroup -Name MyFileServer -Node node2 -Wait 0 Name OwnerNode State @@ -69,14 +77,16 @@ Name OwnerNode State MyFileServer node2 Pending ``` -This example moves the resource group called MyFileServer from the current owner node to the node named `node2`. -Information about MyFileServer is displayed immediately, while it is in the process of being moved. +This example moves the resource group called MyFileServer from the current owner node to the node +named `node2`. Information about MyFileServer is displayed immediately, while it is in the process +of being moved. ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -91,6 +101,7 @@ Accept wildcard characters: False ``` ### -IgnoreLocked + Specifies that locked groups are ignored when running the cmdlet. ```yaml @@ -106,6 +117,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the resource group to move. ```yaml @@ -121,6 +133,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of the resource group to move. ```yaml @@ -136,6 +149,7 @@ Accept wildcard characters: False ``` ### -Node + Specifies the name of the cluster node to which to move the resource group. ```yaml @@ -151,9 +165,10 @@ Accept wildcard characters: False ``` ### -Wait -Specifies the time in seconds to wait for the cmdlet. -If the **Wait** parameter is not specified, then the cmdlet waits for completion. -If `-Wait 0` is specified, then the call is initiated and the cmdlet returns without waiting. + +Specifies the time in seconds to wait for the cmdlet. If the **Wait** parameter is not specified, +then the cmdlet waits for completion. If `-Wait 0` is specified, then the call is initiated and the +cmdlet returns without waiting. ```yaml Type: Int32 @@ -168,7 +183,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -191,4 +210,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Start-ClusterGroup](./Start-ClusterGroup.md) [Stop-ClusterGroup](./Stop-ClusterGroup.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Move-ClusterResource.md b/docset/winserver2022-ps/failoverclusters/Move-ClusterResource.md index df3c3dbf7e..299371dc19 100644 --- a/docset/winserver2022-ps/failoverclusters/Move-ClusterResource.md +++ b/docset/winserver2022-ps/failoverclusters/Move-ClusterResource.md @@ -16,17 +16,20 @@ Moves a clustered resource from one clustered role to another within a failover ## SYNTAX ``` -Move-ClusterResource [[-Name] ] [[-Group] ] [-InputObject ] [-Cluster ] - [] +Move-ClusterResource [[-Name] ] [[-Group] ] [-InputObject ] + [-Cluster ] [] ``` ## DESCRIPTION -The **Move-ClusterResource** cmdlet moves a clustered resource from one clustered role to another within a failover cluster. -When a clustered resource is moved to a different clustered role, the clustered resource will then fail over with that clustered role. + +The **Move-ClusterResource** cmdlet moves a clustered resource from one clustered role to another +within a failover cluster. When a clustered resource is moved to a different clustered role, the +clustered resource will then fail over with that clustered role. ## EXAMPLES ### Example 1 + ``` PS C:\> Move-ClusterResource -Name resource1 -Group group2 Name State Group ResourceType @@ -34,13 +37,15 @@ Name State Group ResourceType resource1 Offline group2 IP Address ``` -This command moves the cluster resource called resource1 to the resource group called group2 on the local cluster. +This command moves the cluster resource called resource1 to the resource group called group2 on the +local cluster. ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -55,6 +60,7 @@ Accept wildcard characters: False ``` ### -Group + Specifies the name of the cluster group to which to move the resource. ```yaml @@ -70,6 +76,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster resource to move. ```yaml @@ -85,6 +92,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of the cluster resource to move. ```yaml @@ -100,7 +108,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -127,4 +139,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Stop-ClusterResource](./Stop-ClusterResource.md) [Suspend-ClusterResource](./Suspend-ClusterResource.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Move-ClusterSharedVolume.md b/docset/winserver2022-ps/failoverclusters/Move-ClusterSharedVolume.md index 40ac288e16..373a3f7edc 100644 --- a/docset/winserver2022-ps/failoverclusters/Move-ClusterSharedVolume.md +++ b/docset/winserver2022-ps/failoverclusters/Move-ClusterSharedVolume.md @@ -16,19 +16,24 @@ Moves a Cluster Shared Volume (CSV) to ownership by a different node in a failov ## SYNTAX ``` -Move-ClusterSharedVolume [[-Name] ] [[-Node] ] [-Wait ] [-InputObject ] - [-Cluster ] [] +Move-ClusterSharedVolume [[-Name] ] [[-Node] ] [-Wait ] + [-InputObject ] [-Cluster ] [] ``` ## DESCRIPTION -The **Move-ClusterSharedVolume** cmdlet moves a Cluster Shared Volume (CSV) to ownership by a different node in a failover cluster. -On a failover cluster that uses CSVs, at any given time, access to each CSV is controlled by a particular node, called the owner of that CSV. -However, a single CSV can contain virtual hard disk (VHD) files used by multiple clustered virtual machines that are distributed across multiple cluster nodes. +The **Move-ClusterSharedVolume** cmdlet moves a Cluster Shared Volume (CSV) to ownership by a +different node in a failover cluster. + +On a failover cluster that uses CSVs, at any given time, access to each CSV is controlled by a +particular node, called the owner of that CSV. However, a single CSV can contain virtual hard disk +(VHD) files used by multiple clustered virtual machines that are distributed across multiple cluster +nodes. ## EXAMPLES ### Example 1 + ``` PS C:\> Move-ClusterSharedVolume -Name "Cluster Disk 3" Name State Node @@ -39,6 +44,7 @@ Cluster Disk 3 Online node2 This example moves the Cluster Shared Volume called Cluster Disk 3 to another cluster node. ### Example 2 + ``` PS C:\> Move-ClusterSharedVolume -Name "Cluster Disk 3" -Node node1 Name State Node @@ -51,8 +57,9 @@ This example moves the Cluster Shared Volume called Cluster Disk 3 to the node n ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -67,6 +74,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the Cluster Shared Volume to move. ```yaml @@ -82,6 +90,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of the Cluster Shared Volume to move. ```yaml @@ -97,6 +106,7 @@ Accept wildcard characters: False ``` ### -Node + Specifies the name of the cluster node to which to move the Cluster Shared Volume. ```yaml @@ -112,9 +122,10 @@ Accept wildcard characters: False ``` ### -Wait -Specifies the time in seconds to wait for the cmdlet. -If the **Wait** parameter is not specified, then the cmdlet waits for completion. -If `-Wait 0` is specified, then the call is initiated and the cmdlet returns without waiting. + +Specifies the time in seconds to wait for the cmdlet. If the **Wait** parameter is not specified, +then the cmdlet waits for completion. If `-Wait 0` is specified, then the call is initiated and the +cmdlet returns without waiting. ```yaml Type: Int32 @@ -129,7 +140,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -156,4 +171,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Stop-ClusterResource](./Stop-ClusterResource.md) [Suspend-ClusterResource](./Suspend-ClusterResource.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Move-ClusterVirtualMachineRole.md b/docset/winserver2022-ps/failoverclusters/Move-ClusterVirtualMachineRole.md index 712c56f3ab..25a496e618 100644 --- a/docset/winserver2022-ps/failoverclusters/Move-ClusterVirtualMachineRole.md +++ b/docset/winserver2022-ps/failoverclusters/Move-ClusterVirtualMachineRole.md @@ -17,21 +17,26 @@ Moves the ownership of a clustered virtual machine to a different node. ``` Move-ClusterVirtualMachineRole [[-Name] ] [[-Node] ] [-Cancel] - [-MigrationType ] [-IgnoreLocked] [-VMId ] [-Wait ] [-InputObject ] - [-Cluster ] [] + [-MigrationType ] [-IgnoreLocked] [-VMId ] [-Wait ] + [-InputObject ] [-Cluster ] [] ``` ## DESCRIPTION -The **Move-ClusterVirtualMachineRole** cmdlet moves the ownership of a clustered virtual machine to a different node. -This cmdlet is used to live migrate a clustered virtual machine. -For quick migration, use Move-ClusterGroup after using Get-ClusterResource and Set-ClusterParameter to set the **OfflineAction** parameter of the virtual machine resource to save state, or a value of 1. +The **Move-ClusterVirtualMachineRole** cmdlet moves the ownership of a clustered virtual machine to +a different node. -Note: This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) authentication on the server computer. +This cmdlet is used to live migrate a clustered virtual machine. For quick migration, use +Move-ClusterGroup after using Get-ClusterResource and Set-ClusterParameter to set the +**OfflineAction** parameter of the virtual machine resource to save state, or a value of 1. + +Note: This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) +authentication on the server computer. ## EXAMPLES ### Example 1 + ``` PS C:\> Move-ClusterVirtualMachineRole -Name "Virtual Machine1" -Node node2 Name OwnerNode State @@ -39,10 +44,11 @@ Name OwnerNode State Virtual Machine1 node2 Online ``` -This example performs a live migration of the clustered virtual machine named Virtual Machine1 to the node named node2. -The Windows PowerShell® prompt does not return until the action is complete. +This example performs a live migration of the clustered virtual machine named Virtual Machine1 to +the node named node2. The Windows PowerShell® prompt does not return until the action is complete. ### Example 2 + ``` PS C:\> Get-ClusterGroup -Name "Virtual Machine1" | Move-ClusterVirtualMachineRole -Node node2 -Wait 0 Name OwnerNode State @@ -50,10 +56,11 @@ Name OwnerNode State Virtual Machine1 node2 Online ``` -This example performs a live migration of clustered virtual machine named Virtual Machine1 to the node named node2. -The Windows PowerShell® prompt returns as soon as the action has been initiated. +This example performs a live migration of clustered virtual machine named Virtual Machine1 to the +node named node2. The Windows PowerShell® prompt returns as soon as the action has been initiated. ### Example 3 + ``` PS C:\> Move-ClusterVirtualMachineRole -Name "Virtual Machine1" -Cancel Name OwnerNode State @@ -61,14 +68,15 @@ Name OwnerNode State Virtual Machine1 node1 Online ``` -This example cancels the live migration in progress for the clustered virtual machine named Virtual Machine1. +This example cancels the live migration in progress for the clustered virtual machine named Virtual +Machine1. ### Example 4 + ``` PS C:\> $groups = Get-ClusterNode -Name node1 | Get-ClusterGroup | Where-Object -FilterScript {$_ | Get-ClusterResource | Where-Object -FilterScript {$_.ResourceType -Like "Virtual Machine"}} - PS C:\> ForEach-Object -InputObject $groups -Process { $_ | Move-ClusterVirtualMachineRole -Node node2 } Name OwnerNode State ---- --------- ----- @@ -77,13 +85,15 @@ Virtual Machine2 node2 Online Virtual Machine3 node2 Online ``` -This example performs a live migration of all clustered virtual machines that are currently owned by the node named node1 to the node named node2. -The migration of each virtual machine should complete before the next migration is started. -Use this cmdlet before performing maintenance on the specified node. +This example performs a live migration of all clustered virtual machines that are currently owned by +the node named node1 to the node named node2. The migration of each virtual machine should complete +before the next migration is started. Use this cmdlet before performing maintenance on the specified +node. ## PARAMETERS ### -Cancel + Specifies that an in-progress live migration of the virtual machine be canceled. ```yaml @@ -99,8 +109,9 @@ Accept wildcard characters: False ``` ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -115,6 +126,7 @@ Accept wildcard characters: False ``` ### -IgnoreLocked + Specifies that locked groups are ignored when running the cmdlet. ```yaml @@ -130,6 +142,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the clustered virtual machine to move. ```yaml @@ -145,19 +158,23 @@ Accept wildcard characters: False ``` ### -MigrationType -Specifies the type of migration to perform for the virtual machine. -The options are as follows: - -- Live: Transparently migrates the virtual machine without a dropped network connection or perceived downtime. +Specifies the type of migration to perform for the virtual machine. The options are as follows: + + -- Live: Transparently migrates the virtual machine without a dropped network connection or + perceived downtime. - -- Quick: Rapidly migrates a running virtual machine with minimal downtime. + -- Quick: Rapidly migrates a running virtual machine with minimal downtime. - -- Shutdown: Performs an orderly shutdown of the operating system (waiting for all processes to close) on the virtual machine, and then migrates the virtual machine. + -- Shutdown: Performs an orderly shutdown of the operating system (waiting for all processes to + close) on the virtual machine, and then migrates the virtual machine. - -- ShutdownForce: Shuts down the operating system on the virtual machine without waiting for slower processes to finish, and then migrates the virtual machine. + -- ShutdownForce: Shuts down the operating system on the virtual machine without waiting for slower + processes to finish, and then migrates the virtual machine. - -- TurnOff: Turns off the virtual machine without shutting down the operating system first, then migrates the virtual machine. -This is the same as turning off the power, which means that data loss may occur. + -- TurnOff: Turns off the virtual machine without shutting down the operating system first, then + migrates the virtual machine. This is the same as turning off the power, which means that data loss + may occur. ```yaml Type: VmMigrationType @@ -173,6 +190,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of the clustered virtual machine to move. ```yaml @@ -188,6 +206,7 @@ Accept wildcard characters: False ``` ### -Node + Specifies the name of the cluster node to which to move the virtual machine. ```yaml @@ -203,6 +222,7 @@ Accept wildcard characters: False ``` ### -VMId + Specifies the virtual machine identifier (ID). ```yaml @@ -218,9 +238,10 @@ Accept wildcard characters: False ``` ### -Wait -Specifies the time in seconds to wait for the cmdlet. -If the **Wait** parameter is not specified, then the cmdlet waits for completion. -If `-Wait 0` is specified, then the call is initiated and the cmdlet returns without waiting. + +Specifies the time in seconds to wait for the cmdlet. If the **Wait** parameter is not specified, +then the cmdlet waits for completion. If `-Wait 0` is specified, then the call is initiated and the +cmdlet returns without waiting. ```yaml Type: Int32 @@ -235,7 +256,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -252,4 +277,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Add-ClusterVirtualMachineRole](./Add-ClusterVirtualMachineRole.md) [Update-ClusterVirtualMachineConfiguration](./Update-ClusterVirtualMachineConfiguration.md) - diff --git a/docset/winserver2022-ps/failoverclusters/New-Cluster.md b/docset/winserver2022-ps/failoverclusters/New-Cluster.md index 900eb79051..b0f8f467da 100644 --- a/docset/winserver2022-ps/failoverclusters/New-Cluster.md +++ b/docset/winserver2022-ps/failoverclusters/New-Cluster.md @@ -17,21 +17,23 @@ Creates a new failover cluster. ``` New-Cluster [-Name] [-Node ] [-StaticAddress ] - [-IgnoreNetwork ] [-NoStorage] [-S2D] [-AdministrativeAccessPoint ] - [-Force] [] + [-IgnoreNetwork ] [-NoStorage] [-S2D] + [-AdministrativeAccessPoint ] [-Force] [] ``` ## DESCRIPTION -The **New-Cluster** cmdlet creates a new failover cluster. -Before creating a cluster, the hardware (servers, networks, and storage) must be connected, and the validation tests must be run. -Use Test-Cluster to run the validation tests. -The tests will confirm that the hardware and settings are compatible with failover clustering. -There are multiple types of tests, including Inventory, System Configuration, Network, Storage, and other types of tests. +The **New-Cluster** cmdlet creates a new failover cluster. Before creating a cluster, the hardware +(servers, networks, and storage) must be connected, and the validation tests must be run. + +Use Test-Cluster to run the validation tests. The tests will confirm that the hardware and settings +are compatible with failover clustering. There are multiple types of tests, including Inventory, +System Configuration, Network, Storage, and other types of tests. ## EXAMPLES ### Example 1 + ```powershell PS C:\> New-Cluster -Name cluster1 -Node node1,node2,node3,node4 ``` @@ -44,6 +46,7 @@ cluster1 This example creates a four-node cluster named cluster1, using default settings for IP addressing. ### Example 2 + ```powershell PS C:\> New-Cluster -Name cluster1 -Node node1,node2 -NoStorage ``` @@ -53,11 +56,12 @@ Name cluster1 ``` -This example creates a two-node cluster named cluster1. -The cluster will not have any clustered storage, or disk resources. -Storage can be added using the **Get-ClusterAvailableDisk** cmdlet with the **Add-ClusterDisk** cmdlet. +This example creates a two-node cluster named cluster1. The cluster will not have any clustered +storage, or disk resources. Storage can be added using the **Get-ClusterAvailableDisk** cmdlet with +the **Add-ClusterDisk** cmdlet. ### Example 3 + ```powershell PS C:\> New-Cluster -Name cluster1 -Node node1,node2,node3,node4 -StaticAddress 2.0.0.123 ``` @@ -70,6 +74,7 @@ cluster1 This example creates a four-node cluster named cluster1 that uses the static IP address 2.0.0.123. ### Example 4 + ```powershell PS C:\> New-Cluster -Name cluster1 -Node node1,node2,node3,node4 -StaticAddress 2.0.0.123,3.0.0.123 ``` @@ -79,9 +84,11 @@ Name cluster1 ``` -This example creates a four-node cluster named cluster1 that uses the static IP addresses 2.0.0.123 and 3.0.0.123. +This example creates a four-node cluster named cluster1 that uses the static IP addresses 2.0.0.123 +and 3.0.0.123. ### Example 5 + ```powershell PS C:\> New-Cluster -Name cluster1 -Node node1,node2,node3,node4 -IgnoreNetwork 2.0.0.0/8 ``` @@ -91,10 +98,11 @@ Name cluster1 ``` -This example creates a four-node cluster named cluster1. -The cluster uses default settings for IP addressing, and does not use the network 2.0.0.0/8. +This example creates a four-node cluster named cluster1. The cluster uses default settings for IP +addressing, and does not use the network 2.0.0.0/8. ### Example 6 + ```powershell PS C:\> New-Cluster -Name cluster1 -Node node1,node2,node3,node4 -StaticAddress 2.0.0.123 -IgnoreNetwork 3.0.0.0/8 ``` @@ -104,25 +112,26 @@ Name cluster1 ``` -This example creates a four-node cluster named cluster1. -The cluster uses the static IP address 2.0.0.123, and does not use the network 3.0.0.0/8. +This example creates a four-node cluster named cluster1. The cluster uses the static IP address +2.0.0.123, and does not use the network 3.0.0.0/8. ## PARAMETERS ### -AdministrativeAccessPoint -Specifies the type of administrative access point that the cmdlet creates for the cluster. -The acceptable values for this parameter are: - -- ActiveDirectoryAndDns. -The cmdlet creates an administrative access point for the cluster. -The administrative access point is registered in DNS and enabled in Active Directory Domain Services. -- Dns. -The cmdlet creates an administrative access point for the cluster. -The administrative access point is registered in DNS but is not enabled in Active Directory Domain Services. + +Specifies the type of administrative access point that the cmdlet creates for the cluster. The +acceptable values for this parameter are: + +- ActiveDirectoryAndDns. The cmdlet creates an administrative access point for the cluster. The + administrative access point is registered in DNS and enabled in Active Directory Domain Services. +- Dns. The cmdlet creates an administrative access point for the cluster. The administrative access + point is registered in DNS but is not enabled in Active Directory Domain Services. - None. -The cmdlet does not create an administrative access point for the cluster. -Some clustered roles and functionality might not be available for a cluster that does not have an administrative access point. -Also, you cannot use Failover Cluster Manager to manage a cluster that does not have an administrative access point. + +The cmdlet does not create an administrative access point for the cluster. Some clustered roles and +functionality might not be available for a cluster that does not have an administrative access +point. Also, you cannot use Failover Cluster Manager to manage a cluster that does not have an +administrative access point. ```yaml Type: AdminAccessPoint @@ -138,6 +147,7 @@ Accept wildcard characters: False ``` ### -Force + Forces the command to run without asking for user confirmation. ```yaml @@ -153,8 +163,10 @@ Accept wildcard characters: False ``` ### -IgnoreNetwork -Specifies one or more networks to ignore when running the cmdlet. -Networks with DHCP enabled are always included, but other networks need a static address to be specified using the **StaticAddress** parameter or should be explicitly ignored with this **IgnoreNetwork** parameter. + +Specifies one or more networks to ignore when running the cmdlet. Networks with DHCP enabled are +always included, but other networks need a static address to be specified using the +**StaticAddress** parameter or should be explicitly ignored with this **IgnoreNetwork** parameter. ```yaml Type: StringCollection @@ -169,6 +181,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of the cluster to create. ```yaml @@ -184,9 +197,11 @@ Accept wildcard characters: False ``` ### -NoStorage -Specifies that shared storage is ignored during the cluster creation. -The cluster created at the end of the operation will not have shared storage. -Shared storage can later be added by piping the **ClusterDiskInfo** object from the **Get-ClusterAvailableDisk** cmdlet into the **Add-ClusterDisk** cmdlet. + +Specifies that shared storage is ignored during the cluster creation. The cluster created at the end +of the operation will not have shared storage. Shared storage can later be added by piping the +**ClusterDiskInfo** object from the **Get-ClusterAvailableDisk** cmdlet into the **Add-ClusterDisk** +cmdlet. ```yaml Type: SwitchParameter @@ -201,8 +216,10 @@ Accept wildcard characters: False ``` ### -Node -Specifies a comma-separated list of cluster node names, or server names, on which to create the cluster. -If this parameter is not specified, then a one node cluster is created on the local physical computer. + +Specifies a comma-separated list of cluster node names, or server names, on which to create the +cluster. If this parameter is not specified, then a one node cluster is created on the local +physical computer. ```yaml Type: StringCollection @@ -217,6 +234,7 @@ Accept wildcard characters: False ``` ### -S2D + Specifies whether to enable Storage Spaces Direct when creating the cluster. ```yaml @@ -232,8 +250,10 @@ Accept wildcard characters: False ``` ### -StaticAddress -Specifies one or more static addresses to use when running the cmdlet. -Networks with DHCP enabled are always included, but other networks need a static address to be specified using the **StaticAddress** parameter or should be explicitly ignored with this **IgnoreNetwork** parameter. + +Specifies one or more static addresses to use when running the cmdlet. Networks with DHCP enabled +are always included, but other networks need a static address to be specified using the +**StaticAddress** parameter or should be explicitly ignored with this **IgnoreNetwork** parameter. ```yaml Type: StringCollection @@ -248,7 +268,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, `-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, `-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, +`-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, +`-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -260,7 +284,9 @@ This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVar ## NOTES -- This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) authentication on the server computer. +- This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) + authentication on the server computer. + ## RELATED LINKS [Add-ClusterNode](./Add-ClusterNode.md) @@ -274,4 +300,3 @@ This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVar [Stop-Cluster](./Stop-Cluster.md) [Test-Cluster](./Test-Cluster.md) - diff --git a/docset/winserver2022-ps/failoverclusters/New-ClusterFaultDomain.md b/docset/winserver2022-ps/failoverclusters/New-ClusterFaultDomain.md index 2cc1d355ba..6484c049f8 100644 --- a/docset/winserver2022-ps/failoverclusters/New-ClusterFaultDomain.md +++ b/docset/winserver2022-ps/failoverclusters/New-ClusterFaultDomain.md @@ -22,12 +22,14 @@ New-ClusterFaultDomain -Name [-FaultDomain ] -FaultDomainType < ``` ## DESCRIPTION -The **New-ClusterFaultDomain** cmdlet creates a fault domain in the cluster. -Additionally, you can specify the relationship between the fault domains when they are created. + +The **New-ClusterFaultDomain** cmdlet creates a fault domain in the cluster. Additionally, you can +specify the relationship between the fault domains when they are created. ## EXAMPLES ### Example 1: Create a cluster fault domain in an existing fault domain + ``` PS C:\> New-ClusterFaultDomain -Type Rack -Name "Rack1" -FaultDomain "Site001" Name Type ParentName ChildrenNames @@ -35,19 +37,23 @@ Name Type ParentName ChildrenNames Rack1 Rack Site1 ``` -This command creates a cluster fault domain of type Rack named Rack1 in the existing fault domain named Site001. +This command creates a cluster fault domain of type Rack named Rack1 in the existing fault domain +named Site001. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. + +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml Type: SwitchParameter @@ -62,9 +68,11 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml Type: CimSession[] @@ -79,6 +87,7 @@ Accept wildcard characters: False ``` ### -Description + Specifies the description of the cluster fault domain that this cmdlet creates. ```yaml @@ -94,6 +103,7 @@ Accept wildcard characters: False ``` ### -FaultDomain + Specifies the name of the fault domain. ```yaml @@ -109,6 +119,7 @@ Accept wildcard characters: False ``` ### -FaultDomainType + Specifies the type of the fault domain that this cmdlet creates. The acceptable values for this parameter are: @@ -132,6 +143,7 @@ Accept wildcard characters: False ``` ### -Flags + Any flags that need to be passed in when creating the cluster fault domain. ```yaml @@ -147,6 +159,7 @@ Accept wildcard characters: False ``` ### -Location + A string describing the location of the cluster fault domain that will be created. ```yaml @@ -162,6 +175,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of the cluster fault domain that this cmdlet creates. ```yaml @@ -177,9 +191,12 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml Type: Int32 @@ -194,7 +211,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -209,4 +230,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Remove-ClusterFaultDomain](./Remove-ClusterFaultDomain.md) [Set-ClusterFaultDomain](./Set-ClusterFaultDomain.md) - diff --git a/docset/winserver2022-ps/failoverclusters/New-ClusterGroupSet.md b/docset/winserver2022-ps/failoverclusters/New-ClusterGroupSet.md index 01354029ff..78e50ba73f 100644 --- a/docset/winserver2022-ps/failoverclusters/New-ClusterGroupSet.md +++ b/docset/winserver2022-ps/failoverclusters/New-ClusterGroupSet.md @@ -16,17 +16,19 @@ Create a names set of groups in the cluster. ## SYNTAX ``` -New-ClusterGroupSet -Name [-Group ] [-Providers ] [-CimSession ] - [-ThrottleLimit ] [-AsJob] [] +New-ClusterGroupSet -Name [-Group ] [-Providers ] + [-CimSession ] [-ThrottleLimit ] [-AsJob] [] ``` ## DESCRIPTION -Creates a set of groups. -On this set you can control when other sets start and when this set starts based on dependencies between sets. + +Creates a set of groups. On this set you can control when other sets start and when this set starts +based on dependencies between sets. ## EXAMPLES ### Example 1: Create a cluster group set + ``` PS C:\> New-ClusterGroupSet -Name "Set001" -Group "Group001" Name : Set1 @@ -43,14 +45,17 @@ This command creates a cluster group set named Set001 that contains the group na ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. + +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml Type: SwitchParameter @@ -65,9 +70,11 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml Type: CimSession[] @@ -82,6 +89,7 @@ Accept wildcard characters: False ``` ### -Group + Specifies the names of the groups that are in the set. ```yaml @@ -97,6 +105,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of the group set that this cmdlet creates. ```yaml @@ -112,6 +121,7 @@ Accept wildcard characters: False ``` ### -Providers + Specifies the names of group sets that provides for the created group set. ```yaml @@ -127,9 +137,12 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml Type: Int32 @@ -144,7 +157,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -159,4 +176,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Remove-ClusterGroupSet](./Remove-ClusterGroupSet.md) [Set-ClusterGroupSet](./Set-ClusterGroupSet.md) - diff --git a/docset/winserver2022-ps/failoverclusters/New-ClusterNameAccount.md b/docset/winserver2022-ps/failoverclusters/New-ClusterNameAccount.md index b868a6ab16..c84aad1fa1 100644 --- a/docset/winserver2022-ps/failoverclusters/New-ClusterNameAccount.md +++ b/docset/winserver2022-ps/failoverclusters/New-ClusterNameAccount.md @@ -16,34 +16,39 @@ Creates a cluster name account in Active Directory Domain Services. ## SYNTAX ### InputObject (Default) + ``` New-ClusterNameAccount -Name [-Credentials ] [-Domain ] [-InputObject ] [-Cluster ] [] ``` ### Credentials + ``` -New-ClusterNameAccount -Name -Credentials -Domain [-Cluster ] - [] +New-ClusterNameAccount -Name -Credentials -Domain + [-Cluster ] [] ``` ## DESCRIPTION -The **New-ClusterNameAccount** cmdlet creates a cluster name account in Active Directory Domain Services. -A cluster name account is also referred to as a cluster name object (CNO). -This cmdlet changes the existing cluster name to match the cluster name account that it creates. -If a cluster name account already exists for a cluster, this cmdlet has no effect. + +The **New-ClusterNameAccount** cmdlet creates a cluster name account in Active Directory Domain +Services. A cluster name account is also referred to as a cluster name object (CNO). This cmdlet +changes the existing cluster name to match the cluster name account that it creates. If a cluster +name account already exists for a cluster, this cmdlet has no effect. ## EXAMPLES ### Example 1: Create a cluster name account for the current cluster + ``` PS C:\> New-ClusterNameAccount -Name "cluster_17" -Domain "production.contoso.com" ``` -This command creates a cluster name account for the current cluster in the specified domain. -The current cluster is the default value for the cluster on which this cmdlet operates. +This command creates a cluster name account for the current cluster in the specified domain. The +current cluster is the default value for the cluster on which this cmdlet operates. ### Example 2: Create a cluster name account by using credentials + ``` PS C:\> $Credential = Get-Credential PS C:\> New-ClusterNameAccount -Name "cluster27" -Domain "production.contoso.com" -Credentials $Credential @@ -52,13 +57,15 @@ PS C:\> New-ClusterNameAccount -Name "cluster27" -Domain "production.contoso.com The first command prompts you for credentials, and then stores them in the **$Credential** variable. The second command creates a cluster name account for the current cluster in the specified domain. -The command supplies the credentials stored in $Credential to access Active Directory Domain Services. +The command supplies the credentials stored in $Credential to access Active Directory Domain +Services. ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -73,9 +80,10 @@ Accept wildcard characters: False ``` ### -Credentials -Specifies the credentials that this cmdlet uses when it connects to Active Directory Domain Services. -To obtain credentials, use the **Get-Credential** cmdlet. -For more information, type `Get-Help Get-Credential`. + +Specifies the credentials that this cmdlet uses when it connects to Active Directory Domain +Services. To obtain credentials, use the **Get-Credential** cmdlet. For more information, type +`Get-Help Get-Credential`. ```yaml Type: PSCredential @@ -102,7 +110,9 @@ Accept wildcard characters: False ``` ### -Domain -Specifies the Active Directory Domain Services domain in which this cmdlet creates a cluster name account. + +Specifies the Active Directory Domain Services domain in which this cmdlet creates a cluster name +account. ```yaml Type: String @@ -129,6 +139,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster for which this cmdlet adds a cluster name account. ```yaml @@ -144,6 +155,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of the cluster name account that this cmdlet creates. ```yaml @@ -159,11 +171,16 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### Microsoft.FailoverClusters.PowerShell.Cluster + This cmdlet accepts a **Cluster** object for which it creates a cluster name account. ## OUTPUTS @@ -173,4 +190,3 @@ This cmdlet accepts a **Cluster** object for which it creates a cluster name acc ## RELATED LINKS [Get-Credential](https://go.microsoft.com/fwlink/?LinkID=293936) - diff --git a/docset/winserver2022-ps/failoverclusters/Remove-Cluster.md b/docset/winserver2022-ps/failoverclusters/Remove-Cluster.md index 28e56c942d..2d0957ec31 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-Cluster.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-Cluster.md @@ -16,47 +16,56 @@ Destroys an existing failover cluster. ## SYNTAX ``` -Remove-Cluster [[-Cluster] ] [-CleanupAD] [-Force] [-InputObject ] [-WhatIf] [-Confirm] - [] +Remove-Cluster [[-Cluster] ] [-CleanupAD] [-Force] [-InputObject ] [-WhatIf] + [-Confirm] [] ``` ## DESCRIPTION -The **Remove-Cluster** cmdlet destroys an existing failover cluster. -The affected servers will no longer function together as a cluster. + +The **Remove-Cluster** cmdlet destroys an existing failover cluster. The affected servers will no +longer function together as a cluster. This cmdlet deletes all copies of the cluster configuration database on all cluster nodes. -Note: This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) authentication on the server computer. +Note: This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) +authentication on the server computer. ## EXAMPLES ### Example 1 + ``` PS C:\> Remove-Cluster ``` -This example prompts the user for confirmation, then destroys the local failover cluster and removes cluster configuration information from the cluster nodes. +This example prompts the user for confirmation, then destroys the local failover cluster and removes +cluster configuration information from the cluster nodes. ### Example 2 + ``` PS C:\> Remove-Cluster -Force ``` -This example destroys the local failover cluster and removes cluster configuration information from the cluster nodes. -The cmdlet does not prompt for confirmation. +This example destroys the local failover cluster and removes cluster configuration information from +the cluster nodes. The cmdlet does not prompt for confirmation. ### Example 3 + ``` PS C:\> Get-Cluster -Name Cluster1 | Remove-Cluster -Force -CleanupAD ``` -This example destroys the cluster named Cluster1, removes cluster configuration information from the cluster nodes, and deletes the cluster objects in Active Directory. -The cmdlet does not prompt for confirmation. +This example destroys the cluster named Cluster1, removes cluster configuration information from the +cluster nodes, and deletes the cluster objects in Active Directory. The cmdlet does not prompt for +confirmation. ## PARAMETERS ### -CleanupAD -Specifies that when the cluster is destroyed, the objects in Active Directory that are associated with the cluster are removed. + +Specifies that when the cluster is destroyed, the objects in Active Directory that are associated +with the cluster are removed. ```yaml Type: SwitchParameter @@ -71,8 +80,9 @@ Accept wildcard characters: False ``` ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -87,6 +97,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -102,8 +113,9 @@ Accept wildcard characters: False ``` ### -Force -Runs the cmdlet without prompting for confirmation. -By default the cmdlet will ask for confirmation from the user before proceeding. + +Runs the cmdlet without prompting for confirmation. By default the cmdlet will ask for confirmation +from the user before proceeding. ```yaml Type: SwitchParameter @@ -118,6 +130,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster to destroy. ```yaml @@ -133,8 +146,8 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml Type: SwitchParameter @@ -149,7 +162,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -172,4 +189,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Stop-Cluster](./Stop-Cluster.md) [Test-Cluster](./Test-Cluster.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterAccess.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterAccess.md index df24d32dbf..9ff2463cb8 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterAccess.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterAccess.md @@ -21,24 +21,29 @@ Remove-ClusterAccess [[-User] ] [-InputObject ] [-Cl ``` ## DESCRIPTION -The **Remove-ClusterAccess** cmdlet removes a user from the access list on the cluster. -After this cmdlet is run, the user might still have access to the cluster if the user account is part of another user group which is on the cluster access list. + +The **Remove-ClusterAccess** cmdlet removes a user from the access list on the cluster. After this +cmdlet is run, the user might still have access to the cluster if the user account is part of +another user group which is on the cluster access list. ## EXAMPLES ### Example 1 + ``` PS C:\> Remove-ClusterAccess -User contoso\johnj99 ``` -This example removes the user johnj99 in the contoso domain from the access list of the local cluster. -After this cmdlet runs, the user might still have access to the cluster if the user is part of another user group granted access to the cluster. +This example removes the user johnj99 in the contoso domain from the access list of the local +cluster. After this cmdlet runs, the user might still have access to the cluster if the user is part +of another user group granted access to the cluster. ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -53,6 +58,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster from which to remove access for the given user. ```yaml @@ -68,6 +74,7 @@ Accept wildcard characters: False ``` ### -User + Specifies the user for which to remove cluster access. ```yaml @@ -83,7 +90,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -98,4 +109,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Get-ClusterAccess](./Get-ClusterAccess.md) [Grant-ClusterAccess](./Grant-ClusterAccess.md) - From 945be53583019198428c7dde773a736b72e41d63 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Fri, 21 Oct 2022 11:09:02 +0100 Subject: [PATCH 278/965] Bulk reflowed text and header formatting --- .../Remove-ClusterCheckpoint.md | 51 ++++++++---- .../Remove-ClusterFaultDomain.md | 70 ++++++++++------ .../failoverclusters/Remove-ClusterGroup.md | 49 ++++++++---- .../Remove-ClusterGroupFromSet.md | 56 ++++++++----- .../Remove-ClusterGroupSet.md | 66 +++++++++------ .../Remove-ClusterGroupSetDependency.md | 64 +++++++++------ .../failoverclusters/Remove-ClusterNode.md | 55 ++++++++----- .../Remove-ClusterResource.md | 41 ++++++---- .../Remove-ClusterResourceDependency.md | 43 ++++++---- .../Remove-ClusterResourceType.md | 32 +++++--- .../Remove-ClusterSharedVolume.md | 40 +++++++--- .../Remove-ClusterVMMonitoredItem.md | 61 +++++++++----- .../Repair-ClusterStorageSpacesDirect.md | 80 ++++++++++++------- .../Reset-ClusterVMMonitoredState.md | 25 ++++-- .../failoverclusters/Resume-ClusterNode.md | 38 ++++++--- .../Resume-ClusterResource.md | 35 +++++--- .../Set-ClusterFaultDomain.md | 75 +++++++++++------ .../Set-ClusterFaultDomainXML.md | 43 ++++++---- .../failoverclusters/Set-ClusterGroupSet.md | 76 +++++++++++------- .../failoverclusters/Set-ClusterLog.md | 32 +++++--- .../failoverclusters/Set-ClusterOwnerNode.md | 40 +++++++--- .../failoverclusters/Set-ClusterParameter.md | 54 ++++++++----- .../failoverclusters/Set-ClusterQuorum.md | 59 ++++++++------ .../Set-ClusterResourceDependency.md | 50 +++++++----- .../Set-ClusterStorageSpacesDirect.md | 67 ++++++++++------ .../Set-ClusterStorageSpacesDirectDisk.md | 75 ++++++++++------- .../failoverclusters/Start-Cluster.md | 33 +++++--- .../failoverclusters/Start-ClusterGroup.md | 35 +++++--- .../failoverclusters/Start-ClusterNode.md | 69 ++++++++++------ ...date-ClusterVirtualMachineConfiguration.md | 34 +++++--- 30 files changed, 1012 insertions(+), 536 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterCheckpoint.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterCheckpoint.md index 938a0d7c9c..a714675f4f 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterCheckpoint.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterCheckpoint.md @@ -16,20 +16,26 @@ Removes a cryptographic key checkpoint or registry checkpoint for a resource. ## SYNTAX ``` -Remove-ClusterCheckpoint [[-ResourceName] ] [-Force] [-CheckpointName ] [-RegistryCheckpoint] - [-CryptoCheckpoint] [-InputObject ] [-Cluster ] [-WhatIf] [-Confirm] [] +Remove-ClusterCheckpoint [[-ResourceName] ] [-Force] [-CheckpointName ] + [-RegistryCheckpoint] [-CryptoCheckpoint] [-InputObject ] [-Cluster ] [-WhatIf] + [-Confirm] [] ``` ## DESCRIPTION -The **Remove-ClusterCheckpoint** cmdlet removes a cryptographic key checkpoint or registry checkpoint for a resource. -Checkpoints help provide failover support for applications that store configuration information locally instead of or in addition to storing information in the cluster configuration database. -Applications might store information locally in two ways. -One way is to store configuration information in the registry on the local server; another way is to use cryptographic keys on the local server. +The **Remove-ClusterCheckpoint** cmdlet removes a cryptographic key checkpoint or registry +checkpoint for a resource. + +Checkpoints help provide failover support for applications that store configuration information +locally instead of or in addition to storing information in the cluster configuration database. +Applications might store information locally in two ways. One way is to store configuration +information in the registry on the local server; another way is to use cryptographic keys on the +local server. ## EXAMPLES ### Example 1 + ``` PS C:\> Get-ClusterResource "Cluster Name" | Remove-ClusterCheckpoint -RegistryCheckpoint @@ -42,11 +48,13 @@ Are you sure you want to remove registry checkpoint 'software\clusname' on resou [Y] Yes [N] No [S] Suspend [?] Help (default is "Y"):Y ``` -This example removes the registry checkpoint called software\clusname for the resource named Cluster Name. +This example removes the registry checkpoint called software\clusname for the resource named Cluster +Name. ## PARAMETERS ### -CheckpointName + Specifies the name of the checkpoint to remove. ```yaml @@ -62,8 +70,9 @@ Accept wildcard characters: False ``` ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -78,6 +87,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -93,6 +103,7 @@ Accept wildcard characters: False ``` ### -CryptoCheckpoint + Specifies that cryptographic key checkpoints will be removed. ```yaml @@ -108,8 +119,9 @@ Accept wildcard characters: False ``` ### -Force -Runs the cmdlet without prompting for confirmation. -By default the cmdlet will ask for confirmation from the user before proceeding. + +Runs the cmdlet without prompting for confirmation. By default the cmdlet will ask for confirmation +from the user before proceeding. ```yaml Type: SwitchParameter @@ -124,7 +136,9 @@ Accept wildcard characters: False ``` ### -InputObject -Specifies the cluster on which to run the cmdlet or the cluster resource from which to remove the checkpoint. + +Specifies the cluster on which to run the cmdlet or the cluster resource from which to remove the +checkpoint. ```yaml Type: PSObject @@ -139,6 +153,7 @@ Accept wildcard characters: False ``` ### -RegistryCheckpoint + Specifies that registry checkpoints will be removed. ```yaml @@ -154,6 +169,7 @@ Accept wildcard characters: False ``` ### -ResourceName + Specifies the resource from which a checkpoint should be removed. ```yaml @@ -169,8 +185,8 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml Type: SwitchParameter @@ -185,7 +201,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -204,4 +224,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Add-ClusterCheckpoint](./Add-ClusterCheckpoint.md) [Get-ClusterCheckpoint](./Get-ClusterCheckpoint.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterFaultDomain.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterFaultDomain.md index 905eb16822..b4dc0b991d 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterFaultDomain.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterFaultDomain.md @@ -16,24 +16,29 @@ Removes a fault domain. ## SYNTAX ### Query (cdxml) (Default) + ``` -Remove-ClusterFaultDomain [[-Name] ] [-Id ] [-Flags ] [-CimSession ] - [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] +Remove-ClusterFaultDomain [[-Name] ] [-Id ] [-Flags ] + [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] + [] ``` ### InputObject (cdxml) + ``` -Remove-ClusterFaultDomain -InputObject [-Flags ] [-CimSession ] - [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] +Remove-ClusterFaultDomain -InputObject [-Flags ] + [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION -The **Remove-ClusterFaultDomain** cmdlet removes a fault domain. -The fault domain cannot be empty. + +The **Remove-ClusterFaultDomain** cmdlet removes a fault domain. The fault domain cannot be empty. ## EXAMPLES ### Example 1: Remove a cluster fault domain + ``` PS C:\> Remove-ClusterFaultDomain -Name "Rack001" ``` @@ -43,14 +48,17 @@ This command removes the cluster fault domain named Rack001. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. + +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml Type: SwitchParameter @@ -65,9 +73,11 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml Type: CimSession[] @@ -82,6 +92,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -97,6 +108,7 @@ Accept wildcard characters: False ``` ### -Flags + Specifies optional flags passed when this cmdlet removes the fault domain. ```yaml @@ -112,6 +124,7 @@ Accept wildcard characters: False ``` ### -Id + Specifies the ID of the fault domain to remove as an array. ```yaml @@ -127,6 +140,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the input object that is used in a pipeline command. ```yaml @@ -142,6 +156,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies an array of names of the fault domain that this cmdlet removes. ```yaml @@ -157,8 +172,9 @@ Accept wildcard characters: False ``` ### -PassThru -Returns an object representing the item with which you are working. -By default, this cmdlet does not generate any output. + +Returns an object representing the item with which you are working. By default, this cmdlet does not +generate any output. ```yaml Type: SwitchParameter @@ -173,9 +189,12 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml Type: Int32 @@ -190,8 +209,8 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml Type: SwitchParameter @@ -206,7 +225,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -221,4 +244,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [New-ClusterFaultDomain](./New-ClusterFaultDomain.md) [Set-ClusterFaultDomain](./Set-ClusterFaultDomain.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroup.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroup.md index fbfb45ecd3..a292d9111a 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroup.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroup.md @@ -21,42 +21,48 @@ Remove-ClusterGroup [-VMId ] [[-Name] ] [-Force] [-Remov ``` ## DESCRIPTION -The **Remove-ClusterGroup** cmdlet removes a clustered role. -also called a resource group, from a failover cluster. -Use this cmdlet to delete a group. -If the group still has resources in it, then either remove the resources first, or specify the **RemoveResources** parameter. +The **Remove-ClusterGroup** cmdlet removes a clustered role. also called a resource group, from a +failover cluster. + +Use this cmdlet to delete a group. If the group still has resources in it, then either remove the +resources first, or specify the **RemoveResources** parameter. ## EXAMPLES ### Example 1 + ``` PS C:\> Remove-ClusterGroup -Name MyFileServer ``` -This example prompts the user for confirmation and then removes the clustered role named MyFileServer, if the resources have first been removed from it. +This example prompts the user for confirmation and then removes the clustered role named +MyFileServer, if the resources have first been removed from it. ### Example 2 + ``` PS C:\> Remove-ClusterGroup -Name MyFileServer -Force ``` -This example removes the clustered role named MyFileServer, if the resources have first been removed from it. -The cmdlet does not prompt for confirmation. +This example removes the clustered role named MyFileServer, if the resources have first been removed +from it. The cmdlet does not prompt for confirmation. ### Example 3 + ``` PS C:\> Remove-ClusterGroup -Name MyFileServer -Force -RemoveResources ``` -This example removes the clustered role named MyFileServer, without prompting for confirmation. -All cluster resources in MyFileServer will be deleted. +This example removes the clustered role named MyFileServer, without prompting for confirmation. All +cluster resources in MyFileServer will be deleted. ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -71,6 +77,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -86,8 +93,9 @@ Accept wildcard characters: False ``` ### -Force -Runs the cmdlet without prompting for confirmation. -By default the cmdlet will ask for confirmation from the user before proceeding. + +Runs the cmdlet without prompting for confirmation. By default the cmdlet will ask for confirmation +from the user before proceeding. ```yaml Type: SwitchParameter @@ -102,6 +110,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the clustered role to remove. ```yaml @@ -117,6 +126,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of the clustered role to remove. ```yaml @@ -132,6 +142,7 @@ Accept wildcard characters: False ``` ### -RemoveResources + Causes the cmdlet to delete all resources in the clustered role before removing the clustered role. ```yaml @@ -147,6 +158,7 @@ Accept wildcard characters: False ``` ### -VMId + Specifies the virtual machine identifier (ID). ```yaml @@ -162,8 +174,8 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml Type: SwitchParameter @@ -178,7 +190,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -201,4 +217,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Start-ClusterGroup](./Start-ClusterGroup.md) [Stop-ClusterGroup](./Stop-ClusterGroup.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromSet.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromSet.md index 9760c731dc..d84428623f 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromSet.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromSet.md @@ -1,4 +1,4 @@ ---- + description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterCollection.cdxml-help.xml Module Name: FailoverClusters @@ -16,23 +16,27 @@ Removes a group from a set. ## SYNTAX ### Query (cdxml) (Default) + ``` Remove-ClusterGroupFromSet [[-Name] ] [-Group] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [] ``` ### InputObject (cdxml) + ``` -Remove-ClusterGroupFromSet -InputObject [-Group] [-CimSession ] - [-ThrottleLimit ] [-AsJob] [-PassThru] [] +Remove-ClusterGroupFromSet -InputObject [-Group] + [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [] ``` ## DESCRIPTION + The **Remove-ClusterGroupFromSet** cmdlet removes a group from a set. ## EXAMPLES ### Example 1: Remove a group from the specified group set + ``` PS C:\> Remove-ClusterGroupFromSet -Name "Set001" -Group "Group001" ``` @@ -42,14 +46,17 @@ This command removes the group named Group001 from group set named Set001. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. + +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml Type: SwitchParameter @@ -64,9 +71,11 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml Type: CimSession[] @@ -81,6 +90,7 @@ Accept wildcard characters: False ``` ### -Group + Specifies the name of the group that this cmdlet removes. ```yaml @@ -96,6 +106,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the input object that is used in a pipeline command. ```yaml @@ -111,6 +122,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies an array of names of the set that this cmdlet removes the group from. ```yaml @@ -126,8 +138,9 @@ Accept wildcard characters: False ``` ### -PassThru -Returns an object representing the item with which you are working. -By default, this cmdlet does not generate any output. + +Returns an object representing the item with which you are working. By default, this cmdlet does not +generate any output. ```yaml Type: SwitchParameter @@ -142,9 +155,11 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml Type: Int32 @@ -159,7 +174,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -170,4 +189,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS [Failover Clusters](./failoverclusters.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupSet.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupSet.md index b52bd0feeb..d06c0da5e4 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupSet.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupSet.md @@ -16,24 +16,27 @@ Removes a group set from the cluster. ## SYNTAX ### Query (cdxml) (Default) + ``` -Remove-ClusterGroupSet [[-Name] ] [-CimSession ] [-ThrottleLimit ] [-AsJob] - [-PassThru] [-WhatIf] [-Confirm] [] +Remove-ClusterGroupSet [[-Name] ] [-CimSession ] [-ThrottleLimit ] + [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] ``` ### InputObject (cdxml) + ``` -Remove-ClusterGroupSet -InputObject [-CimSession ] [-ThrottleLimit ] - [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] +Remove-ClusterGroupSet -InputObject [-CimSession ] + [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -Removes a group set from the cluster. -The group set cannot be a provider for another group set. + +Removes a group set from the cluster. The group set cannot be a provider for another group set. ## EXAMPLES ### Example 1: Remove a group set from the cluster + ``` PS C:\> Remove-ClusterGroupSet -Name "Set001" ``` @@ -43,14 +46,17 @@ This command removes the group set named Set001 from the cluster. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. + +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml Type: SwitchParameter @@ -65,9 +71,11 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml Type: CimSession[] @@ -82,6 +90,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -97,6 +106,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the input object that is used in a pipeline command. ```yaml @@ -112,6 +122,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies an array of names of the group set to remove. ```yaml @@ -127,8 +138,9 @@ Accept wildcard characters: False ``` ### -PassThru -Returns an object representing the item with which you are working. -By default, this cmdlet does not generate any output. + +Returns an object representing the item with which you are working. By default, this cmdlet does not +generate any output. ```yaml Type: SwitchParameter @@ -143,9 +155,12 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml Type: Int32 @@ -160,8 +175,8 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml Type: SwitchParameter @@ -176,7 +191,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -191,4 +210,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [New-ClusterGroupSet](./New-ClusterGroupSet.md) [Set-ClusterGroupSet](./Set-ClusterGroupSet.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupSetDependency.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupSetDependency.md index d4ad269498..ed8bd2fc93 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupSetDependency.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupSetDependency.md @@ -11,45 +11,51 @@ title: Remove-ClusterGroupSetDependency # Remove-ClusterGroupSetDependency ## SYNOPSIS -Removes a dependency from a group set. - ## SYNTAX ### Query (cdxml) (Default) + ``` -Remove-ClusterGroupSetDependency [[-Name] ] [-Provider] [-CimSession ] - [-ThrottleLimit ] [-AsJob] [-PassThru] [] +Remove-ClusterGroupSetDependency [[-Name] ] [-Provider] + [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [] ``` ### InputObject (cdxml) + ``` -Remove-ClusterGroupSetDependency -InputObject [-Provider] [-CimSession ] - [-ThrottleLimit ] [-AsJob] [-PassThru] [] +Remove-ClusterGroupSetDependency -InputObject [-Provider] + [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [] ``` ## DESCRIPTION + The **Remove-ClusterGroupSetDependency** cmdlet removes a dependency from a group set. ## EXAMPLES ### Example 1: Remove a group set dependency on another group set + ``` PS C:\> Remove-ClusterGroupSetDependency -Name "Set001" -Provider "Set002" ``` -This command removes the group set named Set002 from being a provider for the group set named Set001. +This command removes the group set named Set002 from being a provider for the group set named +Set001. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. + +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml Type: SwitchParameter @@ -64,9 +70,11 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml Type: CimSession[] @@ -81,6 +89,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the input object that is used in a pipeline command. ```yaml @@ -96,6 +105,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies an array of names of the group set that contains the dependency that this cmdlet removes. ```yaml @@ -111,8 +121,9 @@ Accept wildcard characters: False ``` ### -PassThru -Returns an object representing the item with which you are working. -By default, this cmdlet does not generate any output. + +Returns an object representing the item with which you are working. By default, this cmdlet does not +generate any output. ```yaml Type: SwitchParameter @@ -127,6 +138,7 @@ Accept wildcard characters: False ``` ### -Provider + Specifies the provider of the dependency that this cmdlet removes from the group set. ```yaml @@ -142,9 +154,12 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml Type: Int32 @@ -159,7 +174,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -172,4 +191,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Add-ClusterGroupSetDependency](./Add-ClusterGroupSetDependency.md) [Get-ClusterGroupSetDependency](./Get-ClusterGroupSetDependency.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterNode.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterNode.md index e91f25678d..6706dffe6b 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterNode.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterNode.md @@ -16,20 +16,24 @@ Removes a node from a failover cluster. ## SYNTAX ``` -Remove-ClusterNode [[-Name] ] [-Force] [-Wait ] [-IgnoreStorageConnectivityLoss] - [-CleanupDisks] [-InputObject ] [-Cluster ] [-WhatIf] [-Confirm] [] +Remove-ClusterNode [[-Name] ] [-Force] [-Wait ] + [-IgnoreStorageConnectivityLoss] [-CleanupDisks] [-InputObject ] [-Cluster ] + [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Remove-ClusterNode** cmdlet removes a node from a failover cluster. -After the node is removed, the node no longer functions as part of the cluster unless the node is added back to the cluster. + +The **Remove-ClusterNode** cmdlet removes a node from a failover cluster. After the node is removed, +the node no longer functions as part of the cluster unless the node is added back to the cluster. Removing a node is also called evicting a node from the cluster. -Note: This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) authentication on the server computer. +Note: This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) +authentication on the server computer. ## EXAMPLES ### Example 1 + ``` PS C:\> Remove-ClusterNode -Name node4 ``` @@ -37,6 +41,7 @@ PS C:\> Remove-ClusterNode -Name node4 This example removes the node named node4 from the local cluster. ### Example 2 + ``` PS C:\> Remove-ClusterNode -Name node4 -Force ``` @@ -47,7 +52,6 @@ This example removes the node named node4 from the local cluster without prompti ### -CleanupDisks - ```yaml Type: SwitchParameter Parameter Sets: (All) @@ -61,8 +65,9 @@ Accept wildcard characters: False ``` ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -77,6 +82,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -92,8 +98,9 @@ Accept wildcard characters: False ``` ### -Force -Runs the cmdlet without prompting for confirmation. -By default the cmdlet will ask for confirmation from the user before proceeding. + +Runs the cmdlet without prompting for confirmation. By default the cmdlet will ask for confirmation +from the user before proceeding. ```yaml Type: SwitchParameter @@ -108,9 +115,11 @@ Accept wildcard characters: False ``` ### -IgnoreStorageConnectivityLoss -Indicates that this cmdlet does not check whether the cluster node contains non-shared storage, if Storage Spaces Direct is enabled. -If you do not specify this parameter, the cmdlet checks whether this node has any Storage Spaces Direct storage. -If this cmdlet finds Storage Spaces Direct storage, it prompts you for confirmation before it removes the node. + +Indicates that this cmdlet does not check whether the cluster node contains non-shared storage, if +Storage Spaces Direct is enabled. If you do not specify this parameter, the cmdlet checks whether +this node has any Storage Spaces Direct storage. If this cmdlet finds Storage Spaces Direct storage, +it prompts you for confirmation before it removes the node. ```yaml Type: SwitchParameter @@ -125,6 +134,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster node to remove. ```yaml @@ -140,6 +150,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of the cluster node to remove. ```yaml @@ -155,9 +166,10 @@ Accept wildcard characters: False ``` ### -Wait -Specifies the time in seconds to wait for the cmdlet. -If the **Wait** parameter is not specified, then the cmdlet waits for completion. -If `-Wait 0` is specified, then the call is initiated and the cmdlet returns without waiting. + +Specifies the time in seconds to wait for the cmdlet. If the **Wait** parameter is not specified, +then the cmdlet waits for completion. If `-Wait 0` is specified, then the call is initiated and the +cmdlet returns without waiting. ```yaml Type: Int32 @@ -172,8 +184,8 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml Type: SwitchParameter @@ -188,7 +200,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -211,4 +227,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Stop-ClusterNode](./Stop-ClusterNode.md) [Suspend-ClusterNode](./Suspend-ClusterNode.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterResource.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterResource.md index d6ad342ac3..d7fa105830 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterResource.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterResource.md @@ -16,35 +16,41 @@ Removes a clustered resource from the failover cluster. ## SYNTAX ``` -Remove-ClusterResource [[-Name] ] [-Force] [-InputObject ] [-Cluster ] - [-WhatIf] [-Confirm] [] +Remove-ClusterResource [[-Name] ] [-Force] [-InputObject ] + [-Cluster ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Remove-ClusterResource** cmdlet removes a clustered resource from the failover cluster. -Before removing a resource, be sure to review whether any other resource is dependent on that resource. + +The **Remove-ClusterResource** cmdlet removes a clustered resource from the failover cluster. Before +removing a resource, be sure to review whether any other resource is dependent on that resource. ## EXAMPLES ### Example 1 + ``` PS C:\> Remove-ClusterResource -Name "Cluster Disk 4" ``` -This example prompts the user for confirmation and then deletes the cluster named Cluster Disk 4 from the local cluster. +This example prompts the user for confirmation and then deletes the cluster named Cluster Disk 4 +from the local cluster. ### Example 2 + ``` PS C:\> Remove-ClusterResource -Name "Cluster Disk 5" -Force ``` -This example deletes the cluster named Cluster Disk 5 from the local cluster without prompting for confirmation. +This example deletes the cluster named Cluster Disk 5 from the local cluster without prompting for +confirmation. ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -59,6 +65,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -74,8 +81,9 @@ Accept wildcard characters: False ``` ### -Force -Runs the cmdlet without prompting for confirmation. -By default the cmdlet will ask for confirmation from the user before proceeding. + +Runs the cmdlet without prompting for confirmation. By default the cmdlet will ask for confirmation +from the user before proceeding. ```yaml Type: SwitchParameter @@ -90,6 +98,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster resource to remove. ```yaml @@ -105,6 +114,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of the cluster resource to remove. ```yaml @@ -120,8 +130,8 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml Type: SwitchParameter @@ -136,7 +146,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -163,4 +177,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Stop-ClusterResource](./Stop-ClusterResource.md) [Suspend-ClusterResource](./Suspend-ClusterResource.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterResourceDependency.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterResourceDependency.md index f951e47499..8a254a5252 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterResourceDependency.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterResourceDependency.md @@ -16,20 +16,24 @@ Removes a dependency between two resources in a clustered role within a failover ## SYNTAX ``` -Remove-ClusterResourceDependency [[-Resource] ] [[-Provider] ] [-InputObject ] - [-Cluster ] [-WhatIf] [-Confirm] [] +Remove-ClusterResourceDependency [[-Resource] ] [[-Provider] ] + [-InputObject ] [-Cluster ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Remove-ClusterResourceDependency** cmdlet removes a dependency between two resources in a clustered role within a failover cluster. -A dependent resource is brought online after the resources on which it depends. -Likewise, a dependent resource is taken offline before the resources on which it depends. -If no dependency is configured between clustered resources, then the order in which they are brought online or taken offline might vary. +The **Remove-ClusterResourceDependency** cmdlet removes a dependency between two resources in a +clustered role within a failover cluster. + +A dependent resource is brought online after the resources on which it depends. Likewise, a +dependent resource is taken offline before the resources on which it depends. If no dependency is +configured between clustered resources, then the order in which they are brought online or taken +offline might vary. ## EXAMPLES ### Example 1 + ``` PS C:\> Remove-ClusterResourceDependency -Resource cluster1FS -Provider "IP Address 2001:4898:9:2:: (3)" Name State Group ResourceType @@ -37,9 +41,11 @@ Name State Group ResourceType cluster1FS Online cluster1FS Network Name ``` -This example removes the dependency between cluster resource cluster1FS and the resource named IP Address 2001:4898:9:2:: (3). +This example removes the dependency between cluster resource cluster1FS and the resource named IP +Address 2001:4898:9:2:: (3). ### Example 2 + ``` PS C:\> Get-ClusterResource -Name cluster1FS | Remove-ClusterResourceDependency -Provider "IP Address 2001:4898:9:2:: (3)" Name State Group ResourceType @@ -47,13 +53,15 @@ Name State Group ResourceType cluster1FS Online cluster1FS Network Name ``` -This example removes the dependency between the cluster resource named cluster1FS and the resource named IP Address 2001:4898:9:2:: (3). +This example removes the dependency between the cluster resource named cluster1FS and the resource +named IP Address 2001:4898:9:2:: (3). ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -68,6 +76,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -83,6 +92,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster resource from which to remove the dependency. ```yaml @@ -98,6 +108,7 @@ Accept wildcard characters: False ``` ### -Provider + Specifies the cluster resource on which to remove a dependency. ```yaml @@ -113,6 +124,7 @@ Accept wildcard characters: False ``` ### -Resource + Specifies the name of the cluster resource from which to remove the dependency. ```yaml @@ -128,8 +140,8 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml Type: SwitchParameter @@ -144,7 +156,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -163,4 +179,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Get-ClusterResourceDependency](./Get-ClusterResourceDependency.md) [Set-ClusterResourceDependency](./Set-ClusterResourceDependency.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterResourceType.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterResourceType.md index a66657aeb9..0a7bc4b9c0 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterResourceType.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterResourceType.md @@ -16,18 +16,21 @@ Removes a resource type from a failover cluster. ## SYNTAX ``` -Remove-ClusterResourceType [[-Name] ] [-InputObject ] [-Cluster ] [-WhatIf] - [-Confirm] [] +Remove-ClusterResourceType [[-Name] ] [-InputObject ] + [-Cluster ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Remove-ClusterResourceType** cmdlet removes a resource type from a failover cluster. -A resource type is a class of resource, such as physical disk, network name, or virtual machine, that is organized by the failover cluster. -After a resource type is removed from a failover cluster, resources of that type will not be able to be used in the cluster. + +The **Remove-ClusterResourceType** cmdlet removes a resource type from a failover cluster. A +resource type is a class of resource, such as physical disk, network name, or virtual machine, that +is organized by the failover cluster. After a resource type is removed from a failover cluster, +resources of that type will not be able to be used in the cluster. ## EXAMPLES ### Example 1 + ``` PS C:\> Remove-ClusterResourceType -Name ResType1 ``` @@ -37,8 +40,9 @@ This example removes the registered resource type named ResType1 on the local cl ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -53,6 +57,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -68,6 +73,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster resource type to remove. ```yaml @@ -83,6 +89,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of the cluster resource type to remove. ```yaml @@ -98,8 +105,8 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml Type: SwitchParameter @@ -114,7 +121,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -131,4 +142,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Add-ClusterResourceType](./Add-ClusterResourceType.md) [Get-ClusterResourceType](./Get-ClusterResourceType.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolume.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolume.md index 9cd409b2a5..2bb355b96e 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolume.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolume.md @@ -11,22 +11,26 @@ title: Remove-ClusterSharedVolume # Remove-ClusterSharedVolume ## SYNOPSIS -Removes a volume from the Cluster Shared Volumes in a failover cluster, and places it in Available Storage in the cluster. +Removes a volume from the Cluster Shared Volumes in a failover cluster, and places it in Available +Storage in the cluster. ## SYNTAX ``` -Remove-ClusterSharedVolume [[-Name] ] [-InputObject ] [-Cluster ] [-WhatIf] - [-Confirm] [] +Remove-ClusterSharedVolume [[-Name] ] [-InputObject ] + [-Cluster ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Remove-ClusterSharedVolume** cmdlet removes a volume from the Cluster Shared Volumes in a failover cluster, and places it in Available Storage in the cluster. -After placing a volume in Available Storage, you can use the volume when you configure a new clustered role. + +The **Remove-ClusterSharedVolume** cmdlet removes a volume from the Cluster Shared Volumes in a +failover cluster, and places it in Available Storage in the cluster. After placing a volume in +Available Storage, you can use the volume when you configure a new clustered role. ## EXAMPLES ### Example 1 + ``` PS C:\> Remove-ClusterSharedVolume -Name "Cluster Disk 3" Name State Group ResourceType @@ -34,9 +38,11 @@ Name State Group ResourceType Cluster Disk 3 Online Available Storage Physical Disk ``` -This example removes the CSV named Cluster Disk 3 from the Cluster Shared Volumes on the local cluster, and places it in Available Storage. +This example removes the CSV named Cluster Disk 3 from the Cluster Shared Volumes on the local +cluster, and places it in Available Storage. ### Example 2 + ``` PS C:\> Get-ClusterSharedVolume -Name "Cluster Disk 4" | Remove-ClusterSharedVolume Name State Group ResourceType @@ -44,13 +50,15 @@ Name State Group ResourceType Cluster Disk 4 Online Available Storage Physical Disk ``` -This example removes the CSV named Cluster Disk 4 from the Cluster Shared Volumes on the local cluster, and places it in Available Storage. +This example removes the CSV named Cluster Disk 4 from the Cluster Shared Volumes on the local +cluster, and places it in Available Storage. ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -65,6 +73,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -80,6 +89,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the Cluster Shared Volume to remove. ```yaml @@ -95,6 +105,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of the Cluster Shared Volume to remove. ```yaml @@ -110,8 +121,8 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml Type: SwitchParameter @@ -126,7 +137,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -145,4 +160,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Get-ClusterSharedVolume](./Get-ClusterSharedVolume.md) [Move-ClusterSharedVolume](./Move-ClusterSharedVolume.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterVMMonitoredItem.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterVMMonitoredItem.md index e982935bee..cfd31b30c1 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterVMMonitoredItem.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterVMMonitoredItem.md @@ -11,31 +11,34 @@ title: Remove-ClusterVMMonitoredItem # Remove-ClusterVMMonitoredItem ## SYNOPSIS -Removes monitoring of a service or event that is currently being monitored on a virtual machine. - ## SYNTAX ### VirtualMachine (Default) + ``` -Remove-ClusterVMMonitoredItem [-InputObject ] [-Service ] [-EventLog ] - [-EventSource ] [-EventId ] [[-VirtualMachine] ] [-Wait ] [-Cluster ] - [] +Remove-ClusterVMMonitoredItem [-InputObject ] [-Service ] + [-EventLog ] [-EventSource ] [-EventId ] [[-VirtualMachine] ] + [-Wait ] [-Cluster ] [] ``` ### VMId + ``` -Remove-ClusterVMMonitoredItem [-InputObject ] [-Service ] [-EventLog ] - [-EventSource ] [-EventId ] [-VMId ] [-Wait ] [-Cluster ] - [] +Remove-ClusterVMMonitoredItem [-InputObject ] [-Service ] + [-EventLog ] [-EventSource ] [-EventId ] [-VMId ] [-Wait ] + [-Cluster ] [] ``` ## DESCRIPTION -The **Remove-ClusterVMMonitoredItem** cmdlet removes monitoring of a service or event that is currently being monitored. -After removal, if the service fails or the event occurs, the system will no longer take an action, such as restarting the virtual machine. + +The **Remove-ClusterVMMonitoredItem** cmdlet removes monitoring of a service or event that is +currently being monitored. After removal, if the service fails or the event occurs, the system will +no longer take an action, such as restarting the virtual machine. ## EXAMPLES ### Example 1 + ``` PS C:\> Get-ClusterVMMonitoredItem -VirtualMachine VM1 | Remove-ClusterVMMonitoredItem -VirtualMachine VM1 ``` @@ -43,6 +46,7 @@ PS C:\> Get-ClusterVMMonitoredItem -VirtualMachine VM1 | Remove-ClusterVMMonitor This example removes all of the items being monitored on the virtual machine named VM1. ### Example 2 + ``` PS C:\> Remove-ClusterVMMonitoredItem -VirtualMachine VM1 -Service spooler ``` @@ -52,8 +56,9 @@ This example removes monitoring on the print spooler service on the virtual mach ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -68,7 +73,9 @@ Accept wildcard characters: False ``` ### -EventId -Specifies the event identifier (ID) of the Event Tracing for Windows (ETW) event to be removed from monitoring. + +Specifies the event identifier (ID) of the Event Tracing for Windows (ETW) event to be removed from +monitoring. ```yaml Type: Int32 @@ -83,6 +90,7 @@ Accept wildcard characters: False ``` ### -EventLog + Specifies the event log of the event to be removed from monitoring. ```yaml @@ -98,6 +106,7 @@ Accept wildcard characters: False ``` ### -EventSource + Specifies the event source of the event to be removed from monitoring. ```yaml @@ -113,7 +122,9 @@ Accept wildcard characters: False ``` ### -InputObject -Specifies the cluster on which to run the cmdlet, the clustered virtual machine from which to remove monitoring, or the clustered virtual machine monitored item to stop monitoring. + +Specifies the cluster on which to run the cmdlet, the clustered virtual machine from which to remove +monitoring, or the clustered virtual machine monitored item to stop monitoring. ```yaml Type: PSObject @@ -128,6 +139,7 @@ Accept wildcard characters: False ``` ### -Service + Specifies the name of the service to be removed from monitoring. ```yaml @@ -143,6 +155,7 @@ Accept wildcard characters: False ``` ### -VMId + Specifies the virtual machine identifier (ID). ```yaml @@ -158,8 +171,10 @@ Accept wildcard characters: False ``` ### -VirtualMachine -Specifies the name of the clustered virtual machine from which to remove monitoring. -When this parameter is specified, this cmdlet must be run on one of the host cluster nodes, or else the **Cluster** parameter must also be specified. + +Specifies the name of the clustered virtual machine from which to remove monitoring. When this +parameter is specified, this cmdlet must be run on one of the host cluster nodes, or else the +**Cluster** parameter must also be specified. ```yaml Type: String @@ -174,9 +189,10 @@ Accept wildcard characters: False ``` ### -Wait -Specifies the time in seconds to wait for the cmdlet. -If the *Wait* parameter is not specified, then the cmdlet waits for completion. -If `-Wait 0` is specified, then the call is initiated and the cmdlet returns without waiting. + +Specifies the time in seconds to wait for the cmdlet. If the *Wait* parameter is not specified, then +the cmdlet waits for completion. If `-Wait 0` is specified, then the call is initiated and the +cmdlet returns without waiting. ```yaml Type: Int32 @@ -191,7 +207,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -216,4 +236,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Get-ClusterVMMonitoredItem](./Get-ClusterVMMonitoredItem.md) [Reset-ClusterVMMonitoredState](./Reset-ClusterVMMonitoredState.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Repair-ClusterStorageSpacesDirect.md b/docset/winserver2022-ps/failoverclusters/Repair-ClusterStorageSpacesDirect.md index 6ea637e49c..f672ed4be3 100644 --- a/docset/winserver2022-ps/failoverclusters/Repair-ClusterStorageSpacesDirect.md +++ b/docset/winserver2022-ps/failoverclusters/Repair-ClusterStorageSpacesDirect.md @@ -16,23 +16,29 @@ Repairs disks in a Storage Spaces Direct (S2D) system. ## SYNTAX ### DefaultParameterSet (Default) + ``` -Repair-ClusterStorageSpacesDirect [-DisableStorageMaintenanceMode] [-RecoverUnboundDrives] [-Node ] - [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] [] +Repair-ClusterStorageSpacesDirect [-DisableStorageMaintenanceMode] [-RecoverUnboundDrives] + [-Node ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] + [-Confirm] [] ``` ### SkipDiskRecoverySet + ``` -Repair-ClusterStorageSpacesDirect [-DisableStorageMaintenanceMode] [-Node ] [-SkipDiskRecovery] - [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] [] +Repair-ClusterStorageSpacesDirect [-DisableStorageMaintenanceMode] [-Node ] + [-SkipDiskRecovery] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] + [-Confirm] [] ``` ## DESCRIPTION + The **Repair-ClusterStorageSpacesDirect** cmdlet repairs Storage Spaces Direct (S2D) disks. ## EXAMPLES ### Example 1: Repair S2D on all nodes + ``` PS C:\> Repair-ClusterStorageSpacesDirect -Verbose -Confirm:$False VERBOSE: Performing operation 'Repair Cluster Storage Spaces Direct' on Target 'K0619-C1'. @@ -43,14 +49,17 @@ This command repairs S2D on all nodes. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. + +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml Type: SwitchParameter @@ -65,9 +74,11 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml Type: CimSession[] @@ -82,6 +93,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -97,8 +109,9 @@ Accept wildcard characters: False ``` ### -DisableStorageMaintenanceMode -Indicates that this cmdlet disables storage maintenance mode. -You can use this parameter to clean the storage maintenance mode setting on physical disks. + +Indicates that this cmdlet disables storage maintenance mode. You can use this parameter to clean +the storage maintenance mode setting on physical disks. ```yaml Type: SwitchParameter @@ -113,8 +126,9 @@ Accept wildcard characters: False ``` ### -Node -Specifies a node on which the cmdlet performs the operation. -If you do not specify a value, all nodes are used. + +Specifies a node on which the cmdlet performs the operation. If you do not specify a value, all +nodes are used. ```yaml Type: String @@ -129,9 +143,11 @@ Accept wildcard characters: False ``` ### -RecoverUnboundDrives -Indicates that this cmdlet recovers physical disks that are unbound. -This parameter can be used when disks are reported to be in a lost communication state. -When this parameter is specified, S2D attempts to reestablish the binding between disks in slow and fast tiers, making disks accessible again. + +Indicates that this cmdlet recovers physical disks that are unbound. This parameter can be used when +disks are reported to be in a lost communication state. When this parameter is specified, S2D +attempts to reestablish the binding between disks in slow and fast tiers, making disks accessible +again. ```yaml Type: SwitchParameter @@ -146,7 +162,9 @@ Accept wildcard characters: False ``` ### -SkipDiskRecovery -Indicates that this cmdlet recovers disks so they can be reevaluated to be claimed when repairing Storage Spaces Direct. + +Indicates that this cmdlet recovers disks so they can be reevaluated to be claimed when repairing +Storage Spaces Direct. ```yaml Type: SwitchParameter @@ -161,9 +179,12 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml Type: Int32 @@ -178,8 +199,8 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml Type: SwitchParameter @@ -194,7 +215,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -211,4 +236,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Get-ClusterStorageSpacesDirect](./Get-ClusterStorageSpacesDirect.md) [Set-ClusterStorageSpacesDirect](./Set-ClusterStorageSpacesDirect.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Reset-ClusterVMMonitoredState.md b/docset/winserver2022-ps/failoverclusters/Reset-ClusterVMMonitoredState.md index 7715054208..3d4d83624b 100644 --- a/docset/winserver2022-ps/failoverclusters/Reset-ClusterVMMonitoredState.md +++ b/docset/winserver2022-ps/failoverclusters/Reset-ClusterVMMonitoredState.md @@ -11,7 +11,8 @@ title: Reset-ClusterVMMonitoredState # Reset-ClusterVMMonitoredState ## SYNOPSIS -Resets the Application Critical state of a virtual machine, so that the virtual machine is no longer marked as being in a critical state in the cluster. +Resets the Application Critical state of a virtual machine, so that the virtual machine is no longer +marked as being in a critical state in the cluster. ## SYNTAX @@ -20,12 +21,16 @@ Reset-ClusterVMMonitoredState [-Wait ] [] ``` ## DESCRIPTION -The **Reset-ClusterVMMonitoredState** cmdlet resets the Application Critical state of a virtual machine, so that the virtual machine is no longer marked as being in a critical state in the cluster. -Note: This cmdlet can only be run locally on the virtual machine or through Windows PowerShell® remoting to the virtual machine. + +The **Reset-ClusterVMMonitoredState** cmdlet resets the Application Critical state of a virtual +machine, so that the virtual machine is no longer marked as being in a critical state in the +cluster. Note: This cmdlet can only be run locally on the virtual machine or through Windows +PowerShell® remoting to the virtual machine. ## EXAMPLES ### Example 1 + ``` PS C:\> Reset-ClusterVMMoniteredState ``` @@ -35,9 +40,10 @@ This example resets the state of the virtual machine and clears the critical sta ## PARAMETERS ### -Wait -Specifies the time in seconds to wait for the cmdlet. -If the *Wait* parameter is not specified, then the cmdlet waits for completion. -If `-Wait 0` is specified, then the call is initiated and the cmdlet returns without waiting. + +Specifies the time in seconds to wait for the cmdlet. If the *Wait* parameter is not specified, then +the cmdlet waits for completion. If `-Wait 0` is specified, then the call is initiated and the +cmdlet returns without waiting. ```yaml Type: Int32 @@ -52,7 +58,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -71,4 +81,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Get-ClusterVMMonitoredItem](./Get-ClusterVMMonitoredItem.md) [Remove-ClusterVMMonitoredItem](./Remove-ClusterVMMonitoredItem.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Resume-ClusterNode.md b/docset/winserver2022-ps/failoverclusters/Resume-ClusterNode.md index d6c4d983c1..11a355499b 100644 --- a/docset/winserver2022-ps/failoverclusters/Resume-ClusterNode.md +++ b/docset/winserver2022-ps/failoverclusters/Resume-ClusterNode.md @@ -21,12 +21,16 @@ Resume-ClusterNode [[-Name] ] [[-Failback] Resume-ClusterNode node1 Name State @@ -37,6 +41,7 @@ node1 Up This example resumes node1 on the local cluster. ### Example 2 + ``` PS C:\> Resume-ClusterNode node2 -Cluster mycluster Name State @@ -47,6 +52,7 @@ node2 Up This example resumes node2 on the cluster called mycluster. ### Example 3 + ``` PS C:\> Get-ClusterNode | Resume-ClusterNode Name State @@ -57,6 +63,7 @@ node1 Up This example resumes all cluster nodes that are suspended, or paused, on the local cluster. ### Example 4 + ``` PS C:\> Get-ClusterNode | Resume-ClusterNode -Failback Immediate Name State @@ -64,13 +71,15 @@ Name State node2 Up ``` -This example resumes all cluster nodes that are suspended, or paused, on the local cluster and immediately brings back the workloads drained from the nodes. +This example resumes all cluster nodes that are suspended, or paused, on the local cluster and +immediately brings back the workloads drained from the nodes. ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -85,9 +94,10 @@ Accept wildcard characters: False ``` ### -Failback -Sets the policy to bring back drained workloads to the node. -The acceptable values for this parameter are:NoFailback, Immediate, and Policy. -Policy can be configured to not failback, failback immediately, or failback only during specific hours. + +Sets the policy to bring back drained workloads to the node. The acceptable values for this +parameter are:NoFailback, Immediate, and Policy. Policy can be configured to not failback, failback +immediately, or failback only during specific hours. ```yaml Type: ResumeClusterNodeFailbackType @@ -103,6 +113,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the group, node, resource, or service for which or cluster on which to run the cmdlet. ```yaml @@ -118,7 +129,9 @@ Accept wildcard characters: False ``` ### -Name -Specifies the name of the group, node, resource, or service for which or cluster on which to run the cmdlet. + +Specifies the name of the group, node, resource, or service for which or cluster on which to run the +cmdlet. ```yaml Type: StringCollection @@ -133,7 +146,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -160,4 +177,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Stop-ClusterNode](./Stop-ClusterNode.md) [Suspend-ClusterNode](./Suspend-ClusterNode.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Resume-ClusterResource.md b/docset/winserver2022-ps/failoverclusters/Resume-ClusterResource.md index 692dc65be4..df9dd23e52 100644 --- a/docset/winserver2022-ps/failoverclusters/Resume-ClusterResource.md +++ b/docset/winserver2022-ps/failoverclusters/Resume-ClusterResource.md @@ -16,19 +16,22 @@ Turns off maintenance for a disk resource or Cluster Shared Volume within a fail ## SYNTAX ``` -Resume-ClusterResource [[-Name] ] [-VolumeName ] [-InputObject ] [-Cluster ] - [] +Resume-ClusterResource [[-Name] ] [-VolumeName ] [-InputObject ] + [-Cluster ] [] ``` ## DESCRIPTION -The **Resume-ClusterResource** cmdlet turns off maintenance for a disk resource or Cluster Shared Volume within a failover cluster. -This cmdlet applies to disks and Cluster Shared Volumes only. -We recommend that maintenance be turned off for a disk or Cluster Shared Volume as soon as the maintenance tasks have been completed. +The **Resume-ClusterResource** cmdlet turns off maintenance for a disk resource or Cluster Shared +Volume within a failover cluster. + +This cmdlet applies to disks and Cluster Shared Volumes only. We recommend that maintenance be +turned off for a disk or Cluster Shared Volume as soon as the maintenance tasks have been completed. ## EXAMPLES ### Example 1 + ``` PS C:\> Resume-ClusterResource "Cluster Disk 2" Name State Group ResourceType @@ -39,6 +42,7 @@ Cluster Disk 2 Online Available Storage Physical Disk This example turns off maintenance for the CSV named Cluster Disk 2. ### Example 2 + ``` PS C:\> Get-ClusterSharedVolume "Cluster Disk 5" | Resume-ClusterResource Name State Node @@ -51,8 +55,9 @@ This example turns off maintenance for all volumes on the CSV named Cluster Disk ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -67,6 +72,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster resource to resume. ```yaml @@ -82,6 +88,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of the cluster resource to resume. ```yaml @@ -97,9 +104,10 @@ Accept wildcard characters: False ``` ### -VolumeName -Specifies the name of the volume to suspend. -This parameter is only applicable to Cluster Shared Volumes. -If this parameter is not specified, then the operation will be performed on all volumes on the Cluster Shared Volume. + +Specifies the name of the volume to suspend. This parameter is only applicable to Cluster Shared +Volumes. If this parameter is not specified, then the operation will be performed on all volumes on +the Cluster Shared Volume. ```yaml Type: String @@ -114,7 +122,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -145,4 +157,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Stop-ClusterResource](./Stop-ClusterResource.md) [Suspend-ClusterResource](./Suspend-ClusterResource.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterFaultDomain.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterFaultDomain.md index 491ad3a65f..f7dd1a7a36 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterFaultDomain.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterFaultDomain.md @@ -16,13 +16,15 @@ Update an existing cluster fault domain. ## SYNTAX ### Query (cdxml) (Default) + ``` -Set-ClusterFaultDomain [[-Name] ] [-Id ] [-NewName ] [-Location ] - [-Description ] [-FaultDomain ] [-Flags ] [-CimSession ] - [-ThrottleLimit ] [-AsJob] [-PassThru] [] +Set-ClusterFaultDomain [[-Name] ] [-Id ] [-NewName ] + [-Location ] [-Description ] [-FaultDomain ] [-Flags ] + [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [] ``` ### InputObject (cdxml) + ``` Set-ClusterFaultDomain -InputObject [-NewName ] [-Location ] [-Description ] [-FaultDomain ] [-Flags ] [-CimSession ] @@ -30,30 +32,36 @@ Set-ClusterFaultDomain -InputObject [-NewName ] [-Locati ``` ## DESCRIPTION -The **Set-ClusterFaultDomain** cmdlet update an existing cluster fault domain. -The *Name* parameter should identify the current name. -The *NewName* parameter should be specified only when renaming the fault domain. + +The **Set-ClusterFaultDomain** cmdlet update an existing cluster fault domain. The *Name* parameter +should identify the current name. The *NewName* parameter should be specified only when renaming the +fault domain. ## EXAMPLES ### Example 1: Update an existing fault domain + ``` PS C:\> Set-ClusterFaultDomain -Name "NMALIWA-VM-1101" -FaultDomain "Rack1" ``` -This command sets the parent of the fault domain named NMALIWA-VM-1101 to the fault domain named Rack1. +This command sets the parent of the fault domain named NMALIWA-VM-1101 to the fault domain named +Rack1. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. + +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml Type: SwitchParameter @@ -68,9 +76,11 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml Type: CimSession[] @@ -85,6 +95,7 @@ Accept wildcard characters: False ``` ### -Description + Specifies the description of the cluster fault domain. ```yaml @@ -100,8 +111,9 @@ Accept wildcard characters: False ``` ### -FaultDomain -Specifies the name of the fault domain that is the parent of this one. -You should specify Empty if the fault domain does not have a parent. + +Specifies the name of the fault domain that is the parent of this one. You should specify Empty if +the fault domain does not have a parent. ```yaml Type: String @@ -116,6 +128,7 @@ Accept wildcard characters: False ``` ### -Flags + Specifies any flags that need to be passed in when setting the cluster fault domain. ```yaml @@ -131,6 +144,7 @@ Accept wildcard characters: False ``` ### -Id + Specifies the existing ID of the cluster fault domain. ```yaml @@ -146,6 +160,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the input object that is used in a pipeline command. ```yaml @@ -161,6 +176,7 @@ Accept wildcard characters: False ``` ### -Location + Specifies a string that describes the location of the cluster fault domain. ```yaml @@ -176,6 +192,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the existing name of the cluster fault domain. ```yaml @@ -191,6 +208,7 @@ Accept wildcard characters: False ``` ### -NewName + Specifies the new name of the cluster fault domain. ```yaml @@ -206,8 +224,9 @@ Accept wildcard characters: False ``` ### -PassThru -Returns an object representing the item with which you are working. -By default, this cmdlet does not generate any output. + +Returns an object representing the item with which you are working. By default, this cmdlet does not +generate any output. ```yaml Type: SwitchParameter @@ -222,9 +241,12 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml Type: Int32 @@ -239,7 +261,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -254,4 +280,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [New-ClusterFaultDomain](./New-ClusterFaultDomain.md) [Remove-ClusterFaultDomain](./Remove-ClusterFaultDomain.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterFaultDomainXML.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterFaultDomainXML.md index b200595d89..49a9387309 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterFaultDomainXML.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterFaultDomainXML.md @@ -21,11 +21,13 @@ Set-ClusterFaultDomainXML [-XML] [-Flags ] [-CimSession Set-ClusterFaultDomainXML -XML @" @@ -75,14 +77,17 @@ This command sets the cluster fault domain using the xml in the example ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. + +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml Type: SwitchParameter @@ -97,9 +102,11 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml Type: CimSession[] @@ -114,6 +121,7 @@ Accept wildcard characters: False ``` ### -Flags + Specifies any flags that need to be passed in when setting the cluster fault domain. ```yaml @@ -129,9 +137,12 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml Type: Int32 @@ -146,6 +157,7 @@ Accept wildcard characters: False ``` ### -XML + Specifies a string form containing XML that describes what to set the cluster fault domains to. ```yaml @@ -161,7 +173,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -172,4 +188,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS [Get-ClusterFaultDomainXML](./Get-ClusterFaultDomainXML.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterGroupSet.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterGroupSet.md index 29baa7e43f..afc6a76ded 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterGroupSet.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterGroupSet.md @@ -16,27 +16,31 @@ Updates a cluster group set. ## SYNTAX ### Query (cdxml) (Default) + ``` -Set-ClusterGroupSet [[-Name] ] [-StartupSetting ] [-StartupCount ] - [-IsGlobal ] [-StartupDelay ] [-CimSession ] [-ThrottleLimit ] [-AsJob] - [-PassThru] [] +Set-ClusterGroupSet [[-Name] ] [-StartupSetting ] + [-StartupCount ] [-IsGlobal ] [-StartupDelay ] + [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [] ``` ### InputObject (cdxml) + ``` Set-ClusterGroupSet -InputObject [-StartupSetting ] - [-StartupCount ] [-IsGlobal ] [-StartupDelay ] [-CimSession ] - [-ThrottleLimit ] [-AsJob] [-PassThru] [] + [-StartupCount ] [-IsGlobal ] [-StartupDelay ] + [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [] ``` ## DESCRIPTION -The **Set-ClusterGroupSet** cmdlet updates a cluster group set. -To update the groups in the set, use the Add-ClusterGroupToSet and Remove-ClusterGroupFromSet cmdlets. -To update the dependencies, use the Add-ClusterGroupSetDependency and Remove-ClusterGroupSetDependency cmdlets. + +The **Set-ClusterGroupSet** cmdlet updates a cluster group set. To update the groups in the set, use +the Add-ClusterGroupToSet and Remove-ClusterGroupFromSet cmdlets. To update the dependencies, use +the Add-ClusterGroupSetDependency and Remove-ClusterGroupSetDependency cmdlets. ## EXAMPLES ### Example 1: Change a group set to the specified startup setting + ``` PS C:\> Set-ClusterGroupSet -Name "Set002" -StartupSetting Online ``` @@ -46,14 +50,17 @@ This command changes the group set named Set002 to the startup setting Online. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. + +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml Type: SwitchParameter @@ -68,9 +75,11 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml Type: CimSession[] @@ -85,6 +94,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the input object that is used in a pipeline command. ```yaml @@ -100,6 +110,7 @@ Accept wildcard characters: False ``` ### -IsGlobal + Indicates that this cmdlet sets the group set as global. ```yaml @@ -115,6 +126,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of the group set. ```yaml @@ -130,8 +142,9 @@ Accept wildcard characters: False ``` ### -PassThru -Returns an object representing the item with which you are working. -By default, this cmdlet does not generate any output. + +Returns an object representing the item with which you are working. By default, this cmdlet does not +generate any output. ```yaml Type: SwitchParameter @@ -146,6 +159,7 @@ Accept wildcard characters: False ``` ### -StartupCount + Specifies the number of groups to meet the ready setting. ```yaml @@ -161,6 +175,7 @@ Accept wildcard characters: False ``` ### -StartupDelay + Specifies the delay to use after reaching the ready state, in seconds. ```yaml @@ -176,9 +191,10 @@ Accept wildcard characters: False ``` ### -StartupSetting -Specifies the startup setting when the set is deemed ready. -When delay it is when the groups specified in the *StartupCount* parameter are in pending in addition to the *StartupDelay* parameter. -If it is online it is when *StartupCount* groups reach online in addition to the delay. + +Specifies the startup setting when the set is deemed ready. When delay it is when the groups +specified in the *StartupCount* parameter are in pending in addition to the *StartupDelay* +parameter. If it is online it is when *StartupCount* groups reach online in addition to the delay. The acceptable values for this parameter are: Delay or Online. @@ -196,9 +212,12 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml Type: Int32 @@ -213,7 +232,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -228,4 +251,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [New-ClusterGroupSet](./New-ClusterGroupSet.md) [Remove-ClusterGroupSet](./Remove-ClusterGroupSet.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterLog.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterLog.md index bd2874083d..b8624fca97 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterLog.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterLog.md @@ -21,12 +21,14 @@ Set-ClusterLog [-Size ] [-Level ] [-InputObject ] [-Clus ``` ## DESCRIPTION -The **Set-ClusterLog** cmdlet sets the size and level of detail for the cluster log. -The default level, `3`, includes errors, warnings, and additional information. + +The **Set-ClusterLog** cmdlet sets the size and level of detail for the cluster log. The default +level, `3`, includes errors, warnings, and additional information. ## EXAMPLES ### Example 1 + ``` PS C:\> Set-ClusterLog -Level 1 Name @@ -37,6 +39,7 @@ cluster1 This example sets the cluster log to a detail level of 1. ### Example 2 + ``` PS C:\> Set-ClusterLog -Size 1024 Name @@ -49,8 +52,9 @@ This example sets the cluster log size to 1024 MB. ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -65,6 +69,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster from which to generate cluster logs. ```yaml @@ -80,8 +85,9 @@ Accept wildcard characters: False ``` ### -Level -Specifies the log level to set for the cluster. -The acceptable values for this parameter are:`0` to `5`. + +Specifies the log level to set for the cluster. The acceptable values for this parameter are:`0` to +`5`. | Level | Error | Warning | Info | Verbose | Debug | |:-----|:-----|:-----|:-----|:-----|:-----| @@ -104,11 +110,11 @@ Accept pipeline input: False Accept wildcard characters: False ``` - ### -Size -Specifies the log size to set for the cluster. -The acceptable values for this parameter in Windows 2016 are:`8` MB to `1024` MB. -The acceptable values for this parameter in Windows 2019 are:`8` MB to `2048` MB. + +Specifies the log size to set for the cluster. The acceptable values for this parameter in Windows +2016 are:`8` MB to `1024` MB. The acceptable values for this parameter in Windows 2019 are:`8` MB to +`2048` MB. ```yaml Type: Int32 @@ -123,7 +129,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterOwnerNode.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterOwnerNode.md index 1797cd8229..4a3f954341 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterOwnerNode.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterOwnerNode.md @@ -11,7 +11,8 @@ title: Set-ClusterOwnerNode # Set-ClusterOwnerNode ## SYNOPSIS -Specifies which nodes can own a resource in a failover cluster or specifies the order of preference among owner nodes for a clustered role, or resource group. +Specifies which nodes can own a resource in a failover cluster or specifies the order of preference +among owner nodes for a clustered role, or resource group. ## SYNTAX @@ -21,30 +22,38 @@ Set-ClusterOwnerNode [-Resource ] [-Group ] -Owners Get-ClusterResource -Name "Cluster Disk 3" | Set-ClusterOwnerNode -Owners node1,node2 ``` -This example sets the possible owners for cluster named Cluster Disk 3 on the local cluster to the nodes named node1 and node2. +This example sets the possible owners for cluster named Cluster Disk 3 on the local cluster to the +nodes named node1 and node2. ### Example 2 + ``` PS C:\> Set-ClusterOwnerNode -Group cluster12FS -Owners node3,node2 ``` -This example sets the preferred owners for the clustered service named cluster12FS to the node named node3 followed by the node named node2 on the local cluster. +This example sets the preferred owners for the clustered service named cluster12FS to the node named +node3 followed by the node named node2 on the local cluster. ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -59,6 +68,7 @@ Accept wildcard characters: False ``` ### -Group + Specifies the name of the cluster group for which owner nodes are set. ```yaml @@ -74,6 +84,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster group or cluster resource for which to set owner nodes. ```yaml @@ -89,9 +100,10 @@ Accept wildcard characters: False ``` ### -Owners -Specifies the list of owner nodes. -If this is for a cluster group, then the sorted list of nodes is the preferred owners for this cluster group. -If this is for a cluster resource, then the list is for the possible owners for this cluster resource. + +Specifies the list of owner nodes. If this is for a cluster group, then the sorted list of nodes is +the preferred owners for this cluster group. If this is for a cluster resource, then the list is for +the possible owners for this cluster resource. ```yaml Type: StringCollection @@ -106,6 +118,7 @@ Accept wildcard characters: False ``` ### -Resource + Specifies the name of the cluster resource for which owner nodes are set. ```yaml @@ -121,7 +134,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -138,4 +155,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS [Get-ClusterOwnerNode](./Get-ClusterOwnerNode.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterParameter.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterParameter.md index 7c448cd618..5faea0ca9e 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterParameter.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterParameter.md @@ -11,55 +11,69 @@ title: Set-ClusterParameter # Set-ClusterParameter ## SYNOPSIS -Controls specific properties of an object in a failover cluster, such as a resource, a group, or a network. +Controls specific properties of an object in a failover cluster, such as a resource, a group, or a +network. ## SYNTAX ### NoMultiple (Default) + ``` -Set-ClusterParameter [-InputObject ] [-Create] [-Delete] [-Cluster ] [] +Set-ClusterParameter [-InputObject ] [-Create] [-Delete] [-Cluster ] + [] ``` ### Single Parameter + ``` -Set-ClusterParameter [-InputObject ] [[-Name] ] [[-Value] ] [-Create] [-Delete] - [-Cluster ] [] +Set-ClusterParameter [-InputObject ] [[-Name] ] [[-Value] ] [-Create] + [-Delete] [-Cluster ] [] ``` ### Multiple Parameter + ``` Set-ClusterParameter [-InputObject ] [[-Multiple] ] [-Create] [-Delete] [-Cluster ] [] ``` ## DESCRIPTION -The **Set-ClusterParameter** cmdlet controls specific properties of an object in a failover cluster, such as a resource, a group, or a network. - -- For a disk resource, you can set the disk signature or GUID of a disk, and turn maintenance on or off for that disk. +The **Set-ClusterParameter** cmdlet controls specific properties of an object in a failover cluster, +such as a resource, a group, or a network. + + -- For a disk resource, you can set the disk signature or GUID of a disk, and turn maintenance on + or off for that disk. - -- For a Network Name resource, you can set DNS-related information about the resource. + -- For a Network Name resource, you can set DNS-related information about the resource. - -- For an IP address resource, you can set DHCP-related information about the IP Address resource. + -- For an IP address resource, you can set DHCP-related information about the IP Address resource. - -- For resources used by virtual machines, you can set details about the settings for the virtual machines. + -- For resources used by virtual machines, you can set details about the settings for the virtual + machines. ## EXAMPLES ### Example 1 + ``` PS C:\> Get-ClusterResource -Name cluster1FS | Set-ClusterParameter -Name HostRecordTTL -Value 300 ``` -This example configures the clustered resource called cluster1FS on the local cluster, by setting the value of HostRecordTTL to 300. +This example configures the clustered resource called cluster1FS on the local cluster, by setting +the value of HostRecordTTL to 300. ### Example 2 + ``` PS C:\> Get-ClusterResource -Name "Cluster IP Address" | Set-ClusterParameter -Multiple @{"Address"="172.24.22.168";"Network"="Cluster Network 2";"EnableDhcp"=1} ``` -This example uses the **Multiple** parameter to configure the clustered resource called Cluster IP Address, by setting the **Address**, **Network**, and **EnableDhcp** parameters simultaneously. +This example uses the **Multiple** parameter to configure the clustered resource called Cluster IP +Address, by setting the **Address**, **Network**, and **EnableDhcp** parameters simultaneously. ### Example 3 + ``` PS C:\> $res = Get-ClusterResource -Name "IP Address" @@ -80,14 +94,13 @@ PS C:\> $params = $param1,$param2 PS C:\> $params | Set-ClusterParameter ``` -This example configures the clustered resource called IP Address to use a new static IP. -Because the new address and subnet mask are required, both parameters must be passed to this cmdlet together. +This example configures the clustered resource called IP Address to use a new static IP. Because the +new address and subnet mask are required, both parameters must be passed to this cmdlet together. ## PARAMETERS ### -Cluster - ```yaml Type: String Parameter Sets: (All) @@ -102,7 +115,6 @@ Accept wildcard characters: False ### -Create - ```yaml Type: SwitchParameter Parameter Sets: (All) @@ -117,7 +129,6 @@ Accept wildcard characters: False ### -Delete - ```yaml Type: SwitchParameter Parameter Sets: (All) @@ -132,7 +143,6 @@ Accept wildcard characters: False ### -InputObject - ```yaml Type: PSObject Parameter Sets: (All) @@ -147,7 +157,6 @@ Accept wildcard characters: False ### -Multiple - ```yaml Type: Hashtable Parameter Sets: Multiple Parameter @@ -162,7 +171,6 @@ Accept wildcard characters: False ### -Name - ```yaml Type: String Parameter Sets: Single Parameter @@ -177,7 +185,6 @@ Accept wildcard characters: False ### -Value - ```yaml Type: PSObject Parameter Sets: Single Parameter @@ -191,7 +198,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -220,4 +231,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS [Get-ClusterParameter](./Get-ClusterParameter.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterQuorum.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterQuorum.md index 5c30644023..48b94addf2 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterQuorum.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterQuorum.md @@ -16,20 +16,23 @@ Configures quorum options for a failover cluster. ## SYNTAX ``` -Set-ClusterQuorum [-DiskOnly ] [-NoWitness] [-DiskWitness ] [-FileShareWitness ] - [-CloudWitness] [-AccountName ] [-Endpoint ] [-AccessKey ] [-InputObject ] - [-Cluster ] [] +Set-ClusterQuorum [-DiskOnly ] [-NoWitness] [-DiskWitness ] + [-FileShareWitness ] [-CloudWitness] [-AccountName ] [-Endpoint ] + [-AccessKey ] [-InputObject ] [-Cluster ] [] ``` ## DESCRIPTION -The **Set-ClusterQuorum** cmdlet configures quorum options for a failover cluster. -The quorum configuration in a failover cluster determines the number of failures that the cluster can sustain. -If an additional failure occurs, the cluster must stop running. -The relevant failures in this context are failures of nodes or, in some cases, of a disk witness (which contains a copy of the cluster configuration) or file share witness. + +The **Set-ClusterQuorum** cmdlet configures quorum options for a failover cluster. The quorum +configuration in a failover cluster determines the number of failures that the cluster can sustain. +If an additional failure occurs, the cluster must stop running. The relevant failures in this +context are failures of nodes or, in some cases, of a disk witness (which contains a copy of the +cluster configuration) or file share witness. ## EXAMPLES ### Example 1 + ``` PS C:\> Set-ClusterQuorum -NodeMajority Cluster QuorumResource QuorumType @@ -40,6 +43,7 @@ cluster1 NodeMajority This example changes the quorum configuration to Node Majority on the local cluster. ### Example 2 + ``` PS C:\> Set-ClusterQuorum -DiskWitness "Cluster Disk 7" Cluster QuorumResource QuorumType @@ -47,9 +51,11 @@ Cluster QuorumResource QuorumType cluster1 Cluster Disk 7 NodeAndDiskMajority ``` -This example changes the quorum configuration to Node and Disk Majority on the local cluster, using the disk resource named Cluster Disk 7 for the disk witness. +This example changes the quorum configuration to Node and Disk Majority on the local cluster, using +the disk resource named Cluster Disk 7 for the disk witness. ### Example 3 + ``` PS C:\> Set-ClusterQuorum -NodeAndFileShareMajority \\fileserver\fsw Cluster QuorumResource QuorumType @@ -57,9 +63,11 @@ Cluster QuorumResource QuorumType cluster1 File Share Witness NodeAndFileShareMajority ``` -This example changes the quorum configuration to Node and File Share Majority on the local cluster, using the disk resource at \\\\fileserver\fsw for the file share witness. +This example changes the quorum configuration to Node and File Share Majority on the local cluster, +using the disk resource at \\\\fileserver\fsw for the file share witness. ### Example 4 + ``` PS C:\> Set-ClusterQuorum -CloudWitness -AccountName -AccessKey ``` @@ -68,7 +76,6 @@ PS C:\> Set-ClusterQuorum -CloudWitness -AccountName - ### -AccessKey - ```yaml Type: String Parameter Sets: (All) @@ -83,7 +90,6 @@ Accept wildcard characters: False ### -AccountName - ```yaml Type: String Parameter Sets: (All) @@ -98,7 +104,6 @@ Accept wildcard characters: False ### -CloudWitness - ```yaml Type: SwitchParameter Parameter Sets: (All) @@ -112,8 +117,9 @@ Accept wildcard characters: False ``` ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -128,8 +134,9 @@ Accept wildcard characters: False ``` ### -DiskOnly -Causes the cluster quorum to be set to disk only type. -This is not recommended as it creates a single point of failure for the cluster. + +Causes the cluster quorum to be set to disk only type. This is not recommended as it creates a +single point of failure for the cluster. ```yaml Type: String @@ -144,8 +151,9 @@ Accept wildcard characters: False ``` ### -DiskWitness -Specifies the name of the disk resource that the cluster quorum uses as the disk witness. -Specifying this parameter sets the cluster quorum to the Node and Disk Majority type. + +Specifies the name of the disk resource that the cluster quorum uses as the disk witness. Specifying +this parameter sets the cluster quorum to the Node and Disk Majority type. ```yaml Type: String @@ -161,7 +169,6 @@ Accept wildcard characters: False ### -Endpoint - ```yaml Type: String Parameter Sets: (All) @@ -175,8 +182,9 @@ Accept wildcard characters: False ``` ### -FileShareWitness -Specifies the path of the file share that the cluster quorum uses as the file witness. -Specifying this parameter sets the cluster quorum to the Node and File Share Majority type. + +Specifies the path of the file share that the cluster quorum uses as the file witness. Specifying +this parameter sets the cluster quorum to the Node and File Share Majority type. ```yaml Type: String @@ -191,6 +199,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster on which to change the quorum type. ```yaml @@ -206,6 +215,7 @@ Accept wildcard characters: False ``` ### -NoWitness + Indicates that the cmdlet sets the cluster quorum to the Node Majority type. ```yaml @@ -221,7 +231,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -236,4 +250,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS [Get-ClusterQuorum](./Get-ClusterQuorum.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterResourceDependency.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterResourceDependency.md index 932103165a..0cf608376b 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterResourceDependency.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterResourceDependency.md @@ -16,21 +16,25 @@ Specifies the resources that a particular resource depends on within a failover ## SYNTAX ``` -Set-ClusterResourceDependency [[-Resource] ] [[-Dependency] ] [-InputObject ] - [-Cluster ] [] +Set-ClusterResourceDependency [[-Resource] ] [[-Dependency] ] + [-InputObject ] [-Cluster ] [] ``` ## DESCRIPTION -The **Set-ClusterResourceDependency** cmdlet specifies the resources that a particular resource depends on within a failover cluster. -Existing dependencies will be overwritten by the dependencies that you specify. -The term or can be used in the expression describing the dependency. -For example, an or dependency can be set up where a Network Name resource is dependent on either of two IP address resources, instead of being dependent on both. -This use of or dependencies is common in multi-site cluster deployments. +The **Set-ClusterResourceDependency** cmdlet specifies the resources that a particular resource +depends on within a failover cluster. Existing dependencies will be overwritten by the dependencies +that you specify. + +The term or can be used in the expression describing the dependency. For example, an or dependency +can be set up where a Network Name resource is dependent on either of two IP address resources, +instead of being dependent on both. This use of or dependencies is common in multi-site cluster +deployments. ## EXAMPLES ### Example 1 + ``` PS C:\> Set-ClusterResourceDependency -Resource cluster1FS12 -Dependency "[IP Address 151.56.48.0]" ``` @@ -38,24 +42,29 @@ PS C:\> Set-ClusterResourceDependency -Resource cluster1FS12 -Dependency "[IP Ad This example makes the resource called cluster1FS12 dependent on \[IP Address 151.56.48.0\]. ### Example 2 + ``` C:\PS>Set-ClusterResourceDependency -Resource cluster1FS12 -Dependency "[IP Address 151.56.48.0] or [New IP Address]" ``` -This example makes the resource called cluster1FS12 dependent on either \[IP Address 151.56.48.0\] or \[New IP Address\]. +This example makes the resource called cluster1FS12 dependent on either \[IP Address 151.56.48.0\] +or \[New IP Address\]. ### Example 3 + ``` C:\PS>Set-ClusterResourceDependency -Resource cluster1FS12 -Dependency "" ``` -This example clears the dependency list for the resource named cluster1FS12, so that it no longer depends on any other resources. +This example clears the dependency list for the resource named cluster1FS12, so that it no longer +depends on any other resources. ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -70,12 +79,12 @@ Accept wildcard characters: False ``` ### -Dependency -Specifies the dependency expression to set for this resource. -The format for this is string is as follows. -`"[Resource Name 1] [and|or [Resource Name 2] [...] ]"Resource Name 1Resource Name 2` - Resource names should be enclosed in square brackets as `[Cluster Disk 2]Cluster Disk 2`. -To reset the resource dependency, use an empty string `""` in this parameter. +Specifies the dependency expression to set for this resource. The format for this is string is as +follows. `"[Resource Name 1] [and|or [Resource Name 2] [...] ]"Resource Name 1Resource Name 2` + + Resource names should be enclosed in square brackets as `[Cluster Disk 2]Cluster Disk 2`. To reset + the resource dependency, use an empty string `""` in this parameter. ```yaml Type: String @@ -90,6 +99,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster resource for which to set the dependency expression. ```yaml @@ -105,6 +115,7 @@ Accept wildcard characters: False ``` ### -Resource + Specifies the name of the cluster resource for which to set the dependency expression. ```yaml @@ -120,7 +131,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -141,4 +156,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Get-ClusterResourceDependencyReport](./Get-ClusterResourceDependencyReport.md) [Remove-ClusterResourceDependency](./Remove-ClusterResourceDependency.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterStorageSpacesDirect.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterStorageSpacesDirect.md index 29905728fd..2037035c8d 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterStorageSpacesDirect.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterStorageSpacesDirect.md @@ -17,33 +17,39 @@ Sets S2D cache parameters. ``` Set-ClusterStorageSpacesDirect [-CacheState ] [-CacheModeHDD ] - [-CacheModeSSD ] [-Nodes ] [-SkipEligibilityChecks] [-CimSession ] - [-ThrottleLimit ] [-AsJob] [] + [-CacheModeSSD ] [-Nodes ] [-SkipEligibilityChecks] + [-CimSession ] [-ThrottleLimit ] [-AsJob] [] ``` ## DESCRIPTION + The **Set-ClusterStorageSpacesDirect** cmdlet sets Storage Spaces Direct (S2D) cache parameters. ## EXAMPLES ### Example 1: Set S2D cache parameters + ``` PS C:\> Set-ClusterStorageSpacesDirect -CimSession "K0619-C2.cfdev.nttest.contoso.com" -CacheModeHDD ReadWrite ``` -The following command sets the S2D cache parameter as ReadWrite on the cluster named K0619-C2.cfdev.nttest.contoso.com. +The following command sets the S2D cache parameter as ReadWrite on the cluster named +K0619-C2.cfdev.nttest.contoso.com. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. + +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml Type: SwitchParameter @@ -58,8 +64,8 @@ Accept wildcard characters: False ``` ### -CacheModeHDD -Specifies the cache mode of the hard disk drive. -The acceptable values for this parameter are: + +Specifies the cache mode of the hard disk drive. The acceptable values for this parameter are: - ReadOnly - WriteOnly @@ -79,8 +85,8 @@ Accept wildcard characters: False ``` ### -CacheModeSSD -Specifies the cache mode of the solid state drive. -The acceptable values for this parameter are: + +Specifies the cache mode of the solid state drive. The acceptable values for this parameter are: - ReadOnly - WriteOnly @@ -100,8 +106,8 @@ Accept wildcard characters: False ``` ### -CacheState -Specifies the S2D cache state. -The acceptable values for this parameter are: Enabled or Disabled. + +Specifies the S2D cache state. The acceptable values for this parameter are: Enabled or Disabled. The default value is Enabled. ```yaml @@ -118,9 +124,11 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml Type: CimSession[] @@ -135,6 +143,7 @@ Accept wildcard characters: False ``` ### -Nodes + Specifies, as a string array, the nodes on which this operation takes place. ```yaml @@ -150,8 +159,10 @@ Accept wildcard characters: False ``` ### -SkipEligibilityChecks -Indicates that the cmdlet skips cache eligibility checks. -If cache stores are found with data partitions on them, then you can use Enable-ClusterStorageSpacesDirect with the cache state as Disabled but not as ReadOnly or ReadWrite. + +Indicates that the cmdlet skips cache eligibility checks. If cache stores are found with data +partitions on them, then you can use Enable-ClusterStorageSpacesDirect with the cache state as +Disabled but not as ReadOnly or ReadWrite. ```yaml Type: SwitchParameter @@ -166,9 +177,12 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml Type: Int32 @@ -183,7 +197,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -198,4 +216,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Enable-ClusterStorageSpacesDirect](./Enable-ClusterStorageSpacesDirect.md) [Get-ClusterStorageSpacesDirect](./Get-ClusterStorageSpacesDirect.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterStorageSpacesDirectDisk.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterStorageSpacesDirectDisk.md index fa6dc7ed7e..c74b226230 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterStorageSpacesDirectDisk.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterStorageSpacesDirectDisk.md @@ -17,38 +17,45 @@ Configures the system to enable S2D to claim or not claim specific physical disk ``` Set-ClusterStorageSpacesDirectDisk [-CanBeClaimed ] [-PhysicalDiskIds ] - [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] [] + [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION -The **Set-ClusterStorageSpacesDirectDisk** cmdlet configures the system to enable Storage Spaces Direct (S2D) to claim or not claim specific physical disks. -Disks marked to be not claimed by S2D remain untouched so that they can be used for other purposes. -To avoid possible clean up and warnings, we recommend that you run this cmdlet before you enable S2D. -Alternatively, you can run this cmdlet after you enable S2D. +The **Set-ClusterStorageSpacesDirectDisk** cmdlet configures the system to enable Storage Spaces +Direct (S2D) to claim or not claim specific physical disks. Disks marked to be not claimed by S2D +remain untouched so that they can be used for other purposes. + +To avoid possible clean up and warnings, we recommend that you run this cmdlet before you enable +S2D. Alternatively, you can run this cmdlet after you enable S2D. ## EXAMPLES ### Example 1: Configure disks not to be claimed + ``` PS C:\> Set-ClusterStorageSpacesDirectDisk -CimSession "K0619-C1.contoso.com" -CanBeClaimed:$False -PhysicalDiskIds "55CD2E404B75A3FC","50014EE05950DD7C" ``` -This command configures the system that physical disks that have the IDs 55CD2E404B75A3FC and 50014EE05950DD7C cannot be claimed by S2D. -In this example, the *CanBeClaimed* parameter is explicitly specified as $False. -Omitting that parameter has the same effect. +This command configures the system that physical disks that have the IDs 55CD2E404B75A3FC and +50014EE05950DD7C cannot be claimed by S2D. In this example, the *CanBeClaimed* parameter is +explicitly specified as $False. Omitting that parameter has the same effect. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. + +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml Type: SwitchParameter @@ -63,8 +70,10 @@ Accept wildcard characters: False ``` ### -CanBeClaimed -Indicates that S2D can claim the physical disks specified by the *PhysicalDiskIds* parameter. -If you do not specify this parameter, this cmdlet indicates that the specified physical disks can be claimed. + +Indicates that S2D can claim the physical disks specified by the *PhysicalDiskIds* parameter. If you +do not specify this parameter, this cmdlet indicates that the specified physical disks can be +claimed. ```yaml Type: Boolean @@ -79,9 +88,11 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml Type: CimSession[] @@ -96,6 +107,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -111,8 +123,9 @@ Accept wildcard characters: False ``` ### -PhysicalDiskIds -Specifies an array of unique IDs of physical disks. -This cmdlet set S2D to claim or not claim the specified disks. + +Specifies an array of unique IDs of physical disks. This cmdlet set S2D to claim or not claim the +specified disks. ```yaml Type: String[] @@ -127,9 +140,12 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml Type: Int32 @@ -144,8 +160,8 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml Type: SwitchParameter @@ -160,7 +176,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -177,4 +197,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Get-ClusterStorageSpacesDirect](./Get-ClusterStorageSpacesDirect.md) [Repair-ClusterStorageSpacesDirect](./Repair-ClusterStorageSpacesDirect.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Start-Cluster.md b/docset/winserver2022-ps/failoverclusters/Start-Cluster.md index 20022adfc7..969e021150 100644 --- a/docset/winserver2022-ps/failoverclusters/Start-Cluster.md +++ b/docset/winserver2022-ps/failoverclusters/Start-Cluster.md @@ -20,14 +20,18 @@ Start-Cluster [[-Name] ] [-IgnorePersistentState] [-Wait ] [ Start-Cluster Name @@ -38,6 +42,7 @@ mycluster This example starts all cluster nodes on the local cluster. ### Example 2 + ``` PS C:\> Start-Cluster -Name node2 Name @@ -45,13 +50,14 @@ Name mycluster ``` -This example starts all cluster nodes on the cluster of which the node named node2 is a part. -A node name is required if all cluster nodes are stopped. -If the cluster is already running, then the cluster name, assuming the cluster name resource is online, can be used instead of the node name. +This example starts all cluster nodes on the cluster of which the node named node2 is a part. A node +name is required if all cluster nodes are stopped. If the cluster is already running, then the +cluster name, assuming the cluster name resource is online, can be used instead of the node name. ## PARAMETERS ### -IgnorePersistentState + Starts the nodes in the cluster without bringing resources online on the nodes. ```yaml @@ -67,6 +73,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of the cluster to start. ```yaml @@ -82,9 +89,10 @@ Accept wildcard characters: False ``` ### -Wait -Specifies the time in seconds to wait for the cmdlet. -If this parameter is not specified, then the cmdlet will not return until quorum is achieved. -If the value of `0` is specified, the cmdlet will attempt to start the Cluster service on all nodes and then return without waiting. + +Specifies the time in seconds to wait for the cmdlet. If this parameter is not specified, then the +cmdlet will not return until quorum is achieved. If the value of `0` is specified, the cmdlet will +attempt to start the Cluster service on all nodes and then return without waiting. ```yaml Type: Int32 @@ -99,7 +107,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -124,4 +136,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Stop-Cluster](./Stop-Cluster.md) [Test-Cluster](./Test-Cluster.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Start-ClusterGroup.md b/docset/winserver2022-ps/failoverclusters/Start-ClusterGroup.md index 237c1053b1..78b8bc3c78 100644 --- a/docset/winserver2022-ps/failoverclusters/Start-ClusterGroup.md +++ b/docset/winserver2022-ps/failoverclusters/Start-ClusterGroup.md @@ -21,12 +21,15 @@ Start-ClusterGroup [[-Name] ] [-IgnoreLocked] [-ChooseBestNode] [-Wait < ``` ## DESCRIPTION -The **Start-ClusterGroup** cmdlet starts one or more clustered roles, also known as resource groups, on a failover cluster. -With this cmdlet, a clustered role can be started again after stopping it for maintenance or diagnosis. + +The **Start-ClusterGroup** cmdlet starts one or more clustered roles, also known as resource groups, +on a failover cluster. With this cmdlet, a clustered role can be started again after stopping it for +maintenance or diagnosis. ## EXAMPLES ### Example 1 + ``` PS C:\> Start-ClusterGroup FileServer1 Name OwnerNode State @@ -37,6 +40,7 @@ FileServer1 node1 Online This example starts the clustered file server, or resource group, called FileServer1. ### Example 2 + ``` PS C:\> Start-ClusterGroup FileServer1 -Wait 0 Name OwnerNode State @@ -44,14 +48,13 @@ Name OwnerNode State FileServer1 node1 Pending ``` -This example starts the clustered file server, or resource group, called FileServer1. -The Windows PowerShell® prompt returns as soon as the action has been initiated. +This example starts the clustered file server, or resource group, called FileServer1. The Windows +PowerShell® prompt returns as soon as the action has been initiated. ## PARAMETERS ### -ChooseBestNode - ```yaml Type: SwitchParameter Parameter Sets: (All) @@ -65,8 +68,9 @@ Accept wildcard characters: False ``` ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -81,6 +85,7 @@ Accept wildcard characters: False ``` ### -IgnoreLocked + Specifies that locked groups are ignored when running the cmdlet. ```yaml @@ -96,6 +101,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the clustered role to start. ```yaml @@ -111,6 +117,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of the clustered role to start. ```yaml @@ -126,9 +133,10 @@ Accept wildcard characters: False ``` ### -Wait -Specifies the time in seconds to wait for the cmdlet. -If the **Wait** parameter is not specified, then the cmdlet waits for completion. -If `-Wait 0` is specified, then the call is initiated and the cmdlet returns without waiting. + +Specifies the time in seconds to wait for the cmdlet. If the **Wait** parameter is not specified, +then the cmdlet waits for completion. If `-Wait 0` is specified, then the call is initiated and the +cmdlet returns without waiting. ```yaml Type: Int32 @@ -143,7 +151,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -166,4 +178,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Remove-ClusterGroup](./Remove-ClusterGroup.md) [Stop-ClusterGroup](./Stop-ClusterGroup.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Start-ClusterNode.md b/docset/winserver2022-ps/failoverclusters/Start-ClusterNode.md index 7774a00867..082a46c82d 100644 --- a/docset/winserver2022-ps/failoverclusters/Start-ClusterNode.md +++ b/docset/winserver2022-ps/failoverclusters/Start-ClusterNode.md @@ -16,26 +16,35 @@ Starts the Cluster service on a node in a failover cluster. ## SYNTAX ``` -Start-ClusterNode [[-Name] ] [-ForceQuorum] [-ClearQuarantine] [-IgnorePersistentState] - [-PreventQuorum] [-Wait ] [-InputObject ] [-Cluster ] [] +Start-ClusterNode [[-Name] ] [-ForceQuorum] [-ClearQuarantine] + [-IgnorePersistentState] [-PreventQuorum] [-Wait ] [-InputObject ] + [-Cluster ] [] ``` ## DESCRIPTION -The **Start-ClusterNode** cmdlet starts the Cluster service on a node in a failover cluster. -If this is the first node started, then it will wait for other nodes to join. -The cluster will begin to run when a quorum has formed. -This cmdlet with the **FixQuorum** parameter can be used to force quorum, that is, force the start of a cluster node even if quorum has not been achieved. -When quorum is forced on a given node, the copy of the cluster configuration that is on that node will be treated as the authoritative copy and will be replicated to all other nodes. -Therefore, forcing quorum should be considered a last resort, because some cluster configuration changes could be lost. -The ability to force quorum can be especially useful in a multi-site cluster if the primary site, with the majority of nodes, becomes unavailable, and the secondary site, with a minority of nodes, need to be brought into service. -Similarly, the ability to force quorum makes it possible to start a cluster that uses the Node and File Share Majority quorum option when none of the available cluster nodes contains a current copy of the cluster configuration. +The **Start-ClusterNode** cmdlet starts the Cluster service on a node in a failover cluster. If this +is the first node started, then it will wait for other nodes to join. The cluster will begin to run +when a quorum has formed. -Note: This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) authentication on the server computer. +This cmdlet with the **FixQuorum** parameter can be used to force quorum, that is, force the start +of a cluster node even if quorum has not been achieved. When quorum is forced on a given node, the +copy of the cluster configuration that is on that node will be treated as the authoritative copy and +will be replicated to all other nodes. Therefore, forcing quorum should be considered a last resort, +because some cluster configuration changes could be lost. The ability to force quorum can be +especially useful in a multi-site cluster if the primary site, with the majority of nodes, becomes +unavailable, and the secondary site, with a minority of nodes, need to be brought into service. +Similarly, the ability to force quorum makes it possible to start a cluster that uses the Node and +File Share Majority quorum option when none of the available cluster nodes contains a current copy +of the cluster configuration. + +Note: This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) +authentication on the server computer. ## EXAMPLES ### Example 1 + ``` PS C:\> Start-ClusterNode -Name node3 Name State @@ -46,6 +55,7 @@ node3 Joining This example starts the Cluster service on the node named node3 on the local cluster. ### Example 2 + ``` PS C:\> Start-ClusterNode -Name node1 -Cluster cluster2 Name State @@ -56,6 +66,7 @@ node1 Joining This example starts the Cluster service on the node named node1 on the cluster named cluster2. ### Example 3 + ``` PS C:\> Start-ClusterNode -FixQuorum Name State @@ -63,15 +74,16 @@ Name State node1 Joining ``` -This example forces the local node and the local cluster to start, even if quorum has not been achieved. -If quorum has not been achieved, then the copy of the cluster configuration that is on the local node will be treated as the authoritative copy and will be replicated to all other nodes. -This cmdlet should be considered a last resort, because some cluster configuration changes could be lost, such as recovery options for cluster service. +This example forces the local node and the local cluster to start, even if quorum has not been +achieved. If quorum has not been achieved, then the copy of the cluster configuration that is on the +local node will be treated as the authoritative copy and will be replicated to all other nodes. This +cmdlet should be considered a last resort, because some cluster configuration changes could be lost, +such as recovery options for cluster service. ## PARAMETERS ### -ClearQuarantine - ```yaml Type: SwitchParameter Parameter Sets: (All) @@ -85,8 +97,9 @@ Accept wildcard characters: False ``` ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -101,6 +114,7 @@ Accept wildcard characters: False ``` ### -ForceQuorum + Indicates that the cmdlet forces the start of a cluster node regardless if quorum is not formed. ```yaml @@ -116,6 +130,7 @@ Accept wildcard characters: False ``` ### -IgnorePersistentState + Starts the cluster node without bringing resources online on the node. ```yaml @@ -131,6 +146,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster node to start. ```yaml @@ -146,6 +162,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of the cluster node to start. ```yaml @@ -161,7 +178,9 @@ Accept wildcard characters: False ``` ### -PreventQuorum -Starts the node, but prevents it from achieving quorum and forming the cluster, to prevent a split situation with two competing instances of the cluster running. + +Starts the node, but prevents it from achieving quorum and forming the cluster, to prevent a split +situation with two competing instances of the cluster running. ```yaml Type: SwitchParameter @@ -176,9 +195,10 @@ Accept wildcard characters: False ``` ### -Wait -Specifies the time in seconds to wait for the cmdlet. -If the **Wait** parameter is not specified, then the cmdlet waits for completion. -If `-Wait 0` is specified, then the call is initiated and the cmdlet returns without waiting. + +Specifies the time in seconds to wait for the cmdlet. If the **Wait** parameter is not specified, +then the cmdlet waits for completion. If `-Wait 0` is specified, then the call is initiated and the +cmdlet returns without waiting. ```yaml Type: Int32 @@ -193,7 +213,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -218,4 +242,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Stop-ClusterNode](./Stop-ClusterNode.md) [Suspend-ClusterNode](./Suspend-ClusterNode.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Update-ClusterVirtualMachineConfiguration.md b/docset/winserver2022-ps/failoverclusters/Update-ClusterVirtualMachineConfiguration.md index 8ba82cf648..2890a80924 100644 --- a/docset/winserver2022-ps/failoverclusters/Update-ClusterVirtualMachineConfiguration.md +++ b/docset/winserver2022-ps/failoverclusters/Update-ClusterVirtualMachineConfiguration.md @@ -16,17 +16,21 @@ Refreshes the configuration of a clustered virtual machine within a failover clu ## SYNTAX ``` -Update-ClusterVirtualMachineConfiguration [[-Name] ] [-VMId ] [-InputObject ] - [-Cluster ] [] +Update-ClusterVirtualMachineConfiguration [[-Name] ] [-VMId ] + [-InputObject ] [-Cluster ] [] ``` ## DESCRIPTION -The **Update-ClusterVirtualMachineConfiguration** cmdlet refreshes the configuration of a clustered virtual machine within a failover cluster. -Use this cmdlet if a hardware device, such as a network adapter, is to be added or removed or the hardware configuration settings, such as the setting for virtual memory, are being changed for a clustered virtual machine. + +The **Update-ClusterVirtualMachineConfiguration** cmdlet refreshes the configuration of a clustered +virtual machine within a failover cluster. Use this cmdlet if a hardware device, such as a network +adapter, is to be added or removed or the hardware configuration settings, such as the setting for +virtual memory, are being changed for a clustered virtual machine. ## EXAMPLES ### Example 1: Refresh a clustered virtual machine on the local cluster + ``` PS C:\> Update-ClusterVirtualMachineConfiguration -Name "Virtual Machine Configuration VM1" Name State Group ResourceType @@ -34,9 +38,11 @@ Name State Group ResourceType Virtual Machine ... Online Virtual Machine Virtual Machine ... ``` -This example refreshes the clustered virtual machine named Virtual Machine Configuration VM1 on the local cluster. +This example refreshes the clustered virtual machine named Virtual Machine Configuration VM1 on the +local cluster. ### Example 2: Refresh a clustered virtual machine on a cluster + ``` PS C:\> Update-ClusterVirtualMachineConfiguration -Name "Virtual Machine Configuration VM2" -Cluster cluster1 Name State Group ResourceType @@ -44,13 +50,15 @@ Name State Group ResourceType Virtual Machine ... Online Virtual Machine Virtual Machine ``` -This example refreshes the clustered virtual machine named Virtual Machine Configuration VM2 on the cluster named cluster1. +This example refreshes the clustered virtual machine named Virtual Machine Configuration VM2 on the +cluster named cluster1. ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -65,6 +73,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the clustered virtual machine resource to update. ```yaml @@ -80,6 +89,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of the clustered virtual machine resource to update. ```yaml @@ -95,6 +105,7 @@ Accept wildcard characters: False ``` ### -VMId + Specifies the virtual machine identifier (ID). ```yaml @@ -110,7 +121,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -127,4 +142,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Add-ClusterVirtualMachineRole](./Add-ClusterVirtualMachineRole.md) [Move-ClusterVirtualMachineRole](./Move-ClusterVirtualMachineRole.md) - From 02a2ea850c4f5ac32de3a7429763821d30323b24 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Fri, 21 Oct 2022 11:09:32 +0100 Subject: [PATCH 279/965] Bulk reflowed text and header formatting --- .../failoverclusters/Start-ClusterResource.md | 42 +++--- .../failoverclusters/Stop-Cluster.md | 52 ++++--- .../failoverclusters/Stop-ClusterGroup.md | 30 ++-- .../failoverclusters/Stop-ClusterNode.md | 42 ++++-- .../failoverclusters/Stop-ClusterResource.md | 36 +++-- .../failoverclusters/Suspend-ClusterNode.md | 61 +++++--- .../Suspend-ClusterResource.md | 49 ++++--- .../failoverclusters/Test-Cluster.md | 136 +++++++++++------- .../Test-ClusterResourceFailure.md | 21 ++- .../Update-ClusterFunctionalLevel.md | 77 ++++++---- .../Update-ClusterIPResource.md | 34 +++-- .../Update-ClusterNetworkNameResource.md | 26 ++-- 12 files changed, 392 insertions(+), 214 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/Start-ClusterResource.md b/docset/winserver2022-ps/failoverclusters/Start-ClusterResource.md index f552b74e5f..3314247df9 100644 --- a/docset/winserver2022-ps/failoverclusters/Start-ClusterResource.md +++ b/docset/winserver2022-ps/failoverclusters/Start-ClusterResource.md @@ -21,12 +21,14 @@ Start-ClusterResource [[-Name] ] [-IgnoreLocked] [-ChooseBestNode] [-Wai ``` ## DESCRIPTION -The **Start-ClusterResource** cmdlet brings a resource online in a failover cluster. -Before the resource is brought online, any resources that it depends are brought online. + +The **Start-ClusterResource** cmdlet brings a resource online in a failover cluster. Before the +resource is brought online, any resources that it depends are brought online. ## EXAMPLES ### Example 1 + ``` PS C:\> Start-ClusterResource -Name "IP Address 172.24.11.0" Name State Group ResourceType @@ -34,10 +36,11 @@ Name State Group ResourceType IP Address 172.2... Online cluster1FS12 IP Address ``` -This example brings the resource called IP Address 172.24.11.0 online on the local cluster. -Before bringing the resource online, this cmdlet brings online any resources on which the resource depends. +This example brings the resource called IP Address 172.24.11.0 online on the local cluster. Before +bringing the resource online, this cmdlet brings online any resources on which the resource depends. ### Example 2 + ``` PS C:\> Start-ClusterResource -Name "IP Address 172.24.11.0" -Wait 0 Name State Group ResourceType @@ -45,15 +48,14 @@ Name State Group ResourceType IP Address 172.2... OnlinePending cluster1FS12 IP Address ``` -This example brings the resource called IP Address 172.24.11.0 online on the local cluster. -Before bringing the resource online, this cmdlet brings online any resources on which the resource depends. +This example brings the resource called IP Address 172.24.11.0 online on the local cluster. Before +bringing the resource online, this cmdlet brings online any resources on which the resource depends. The Windows PowerShell® prompt returns as soon as the action has been initiated. ## PARAMETERS ### -ChooseBestNode - ```yaml Type: SwitchParameter Parameter Sets: (All) @@ -67,8 +69,9 @@ Accept wildcard characters: False ``` ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -83,6 +86,7 @@ Accept wildcard characters: False ``` ### -IgnoreLocked + Specifies that locked groups are ignored when running the cmdlet. ```yaml @@ -98,6 +102,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster resource to bring online. ```yaml @@ -113,8 +118,9 @@ Accept wildcard characters: False ``` ### -Name -Specifies the name of the cluster resource to bring online. -This can also be the name of a Cluster Shared Volume (CSV). + +Specifies the name of the cluster resource to bring online. This can also be the name of a Cluster +Shared Volume (CSV). ```yaml Type: String @@ -129,9 +135,10 @@ Accept wildcard characters: False ``` ### -Wait -Specifies the time in seconds to wait for the cmdlet. -If the **Wait** parameter is not specified, then the cmdlet waits for completion. -If `-Wait 0` is specified, then the call is initiated and the cmdlet returns without waiting. + +Specifies the time in seconds to wait for the cmdlet. If the **Wait** parameter is not specified, +then the cmdlet waits for completion. If `-Wait 0` is specified, then the call is initiated and the +cmdlet returns without waiting. ```yaml Type: Int32 @@ -146,7 +153,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -177,4 +188,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Stop-ClusterResource](./Stop-ClusterResource.md) [Suspend-ClusterResource](./Suspend-ClusterResource.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Stop-Cluster.md b/docset/winserver2022-ps/failoverclusters/Stop-Cluster.md index 4fc1f66f47..15a5e3a3f4 100644 --- a/docset/winserver2022-ps/failoverclusters/Stop-Cluster.md +++ b/docset/winserver2022-ps/failoverclusters/Stop-Cluster.md @@ -11,45 +11,57 @@ title: Stop-Cluster # Stop-Cluster ## SYNOPSIS -Stops the Cluster service on all nodes in a failover cluster, which will stop all services and applications configured in the cluster. +Stops the Cluster service on all nodes in a failover cluster, which will stop all services and +applications configured in the cluster. ## SYNTAX ### Cluster name (Default) + ``` -Stop-Cluster [[-Cluster] ] [-Force] [-Wait ] [-WhatIf] [-Confirm] [] +Stop-Cluster [[-Cluster] ] [-Force] [-Wait ] [-WhatIf] [-Confirm] + [] ``` ### InputObject + ``` -Stop-Cluster [-Force] [-Wait ] [-InputObject ] [-WhatIf] [-Confirm] [] +Stop-Cluster [-Force] [-Wait ] [-InputObject ] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION -The **Stop-Cluster** cmdlet stops the Cluster service on all nodes in a failover cluster, which will stop all services and applications configured in the cluster. -A node can only function as part of the cluster when the Cluster service is running on that node. + +The **Stop-Cluster** cmdlet stops the Cluster service on all nodes in a failover cluster, which will +stop all services and applications configured in the cluster. A node can only function as part of +the cluster when the Cluster service is running on that node. ## EXAMPLES ### Example 1: Stop Cluster service on all nodes of the local cluster + ``` PS C:\> Stop-Cluster ``` -This example stops the Cluster service on all nodes in the local cluster, which will stop all services and applications configured in the cluster. +This example stops the Cluster service on all nodes in the local cluster, which will stop all +services and applications configured in the cluster. ### Example 2: Stop Cluster service on all nodes of a cluster + ``` PS C:\> Stop-Cluster -Name cluster1 ``` -This example stops the Cluster service on all nodes in the cluster named cluster1, which will stop all services and applications configured in the cluster. +This example stops the Cluster service on all nodes in the cluster named cluster1, which will stop +all services and applications configured in the cluster. ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -64,6 +76,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -79,8 +92,9 @@ Accept wildcard characters: False ``` ### -Force -Runs the cmdlet without prompting for confirmation. -By default the cmdlet will ask for confirmation from the user before proceeding. + +Runs the cmdlet without prompting for confirmation. By default the cmdlet will ask for confirmation +from the user before proceeding. ```yaml Type: SwitchParameter @@ -95,6 +109,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster to stop. ```yaml @@ -110,9 +125,10 @@ Accept wildcard characters: False ``` ### -Wait -Specifies the time in seconds to wait for the cmdlet. -If the *Wait* parameter is not specified, then the cmdlet waits for completion. -If `-Wait 0` is specified, then the call is initiated and the cmdlet returns without waiting. + +Specifies the time in seconds to wait for the cmdlet. If the *Wait* parameter is not specified, then +the cmdlet waits for completion. If `-Wait 0` is specified, then the call is initiated and the +cmdlet returns without waiting. ```yaml Type: Int32 @@ -127,6 +143,7 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml @@ -142,7 +159,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -165,4 +186,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Start-Cluster](./Start-Cluster.md) [Test-Cluster](./Test-Cluster.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Stop-ClusterGroup.md b/docset/winserver2022-ps/failoverclusters/Stop-ClusterGroup.md index 2a8f374b29..e3768f11aa 100644 --- a/docset/winserver2022-ps/failoverclusters/Stop-ClusterGroup.md +++ b/docset/winserver2022-ps/failoverclusters/Stop-ClusterGroup.md @@ -21,13 +21,17 @@ Stop-ClusterGroup [[-Name] ] [-IgnoreLocked] [-Wait ] [-InputObje ``` ## DESCRIPTION -The **Stop-ClusterGroup** cmdlet stops one or more clustered roles, also known as resource groups, on a failover cluster. -If maintenance on a clustered role is needed, the clustered role can be stopped in an orderly fashion by using this cmdlet. +The **Stop-ClusterGroup** cmdlet stops one or more clustered roles, also known as resource groups, +on a failover cluster. + +If maintenance on a clustered role is needed, the clustered role can be stopped in an orderly +fashion by using this cmdlet. ## EXAMPLES ### Example 1: Stop a clustered role on the local cluster + ``` PS C:\> Stop-ClusterGroup FileServer1 Name OwnerNode State @@ -40,8 +44,9 @@ This example stops the clustered role, or resource group, called FileServer1 on ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -56,6 +61,7 @@ Accept wildcard characters: False ``` ### -IgnoreLocked + Specifies that locked groups are ignored when running the cmdlet. ```yaml @@ -71,6 +77,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the clustered role to stop. ```yaml @@ -86,6 +93,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of the clustered role to stop. ```yaml @@ -101,9 +109,10 @@ Accept wildcard characters: False ``` ### -Wait -Specifies the time in seconds to wait for the cmdlet. -If the *Wait* parameter is not specified, then the cmdlet waits for completion. -If `-Wait 0` is specified, then the call is initiated and the cmdlet returns without waiting. + +Specifies the time in seconds to wait for the cmdlet. If the *Wait* parameter is not specified, then +the cmdlet waits for completion. If `-Wait 0` is specified, then the call is initiated and the +cmdlet returns without waiting. ```yaml Type: Int32 @@ -118,7 +127,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -141,4 +154,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Remove-ClusterGroup](./Remove-ClusterGroup.md) [Start-ClusterGroup](./Start-ClusterGroup.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Stop-ClusterNode.md b/docset/winserver2022-ps/failoverclusters/Stop-ClusterNode.md index 5f057095d4..a1253fe43e 100644 --- a/docset/winserver2022-ps/failoverclusters/Stop-ClusterNode.md +++ b/docset/winserver2022-ps/failoverclusters/Stop-ClusterNode.md @@ -16,20 +16,23 @@ Stops the Cluster service on a node in a failover cluster. ## SYNTAX ``` -Stop-ClusterNode [[-Name] ] [-Wait ] [-InputObject ] [-Cluster ] - [-WhatIf] [-Confirm] [] +Stop-ClusterNode [[-Name] ] [-Wait ] [-InputObject ] + [-Cluster ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Stop-ClusterNode** cmdlet stops the Cluster service on a node in a failover cluster. -If stopping the node brings the cluster below quorum, the operation is not permitted. -To stop the cluster, use the **Stop-Cluster** cmdlet instead. -Note: This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) authentication on the server computer. +The **Stop-ClusterNode** cmdlet stops the Cluster service on a node in a failover cluster. If +stopping the node brings the cluster below quorum, the operation is not permitted. To stop the +cluster, use the **Stop-Cluster** cmdlet instead. + +Note: This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) +authentication on the server computer. ## EXAMPLES ### Example 1: Stop Cluster service on a local cluster node + ``` PS C:\> Stop-ClusterNode -Name "node3" Name State @@ -40,6 +43,7 @@ node3 Down This example stops the Cluster service on the node named node3 of the local cluster. ### Example 2: Stop Cluster service on a cluster node + ``` PS C:\> Stop-ClusterNode -Name "node1" -Cluster "cluster2" Name State @@ -52,8 +56,9 @@ This example stops the Cluster service on the node named node1 on the cluster na ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -68,6 +73,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -83,6 +89,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster node to stop. ```yaml @@ -98,6 +105,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of the cluster node to stop. ```yaml @@ -113,9 +121,10 @@ Accept wildcard characters: False ``` ### -Wait -Specifies the time in seconds to wait for the cmdlet. -If the *Wait* parameter is not specified, then the cmdlet waits for completion. -If `-Wait 0` is specified, then the call is initiated and the cmdlet returns without waiting. + +Specifies the time in seconds to wait for the cmdlet. If the *Wait* parameter is not specified, then +the cmdlet waits for completion. If `-Wait 0` is specified, then the call is initiated and the +cmdlet returns without waiting. ```yaml Type: Int32 @@ -130,8 +139,8 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml Type: SwitchParameter @@ -146,7 +155,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -171,4 +184,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Stop-Cluster](./Stop-Cluster.md) [Suspend-ClusterNode](./Suspend-ClusterNode.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Stop-ClusterResource.md b/docset/winserver2022-ps/failoverclusters/Stop-ClusterResource.md index 29fd42b821..c3ab7923f7 100644 --- a/docset/winserver2022-ps/failoverclusters/Stop-ClusterResource.md +++ b/docset/winserver2022-ps/failoverclusters/Stop-ClusterResource.md @@ -21,12 +21,14 @@ Stop-ClusterResource [[-Name] ] [-IgnoreLocked] [-Wait ] [-InputO ``` ## DESCRIPTION -The **Stop-ClusterResource** cmdlet takes a resource offline in a failover cluster. -Before the resource is taken offline, any resources that depend on it are taken offline. + +The **Stop-ClusterResource** cmdlet takes a resource offline in a failover cluster. Before the +resource is taken offline, any resources that depend on it are taken offline. ## EXAMPLES ### Example 1: Take a resource offline + ``` PS C:\> Stop-ClusterResource "IP Address 10.24.11.0" Name State Group ResourceType @@ -34,14 +36,15 @@ Name State Group ResourceType IP Address 10.2... Offline cluster1FS12 IP Address ``` -This example takes the resource called IP Address 10.24.11.0 offline on the local cluster. -Before taking the resource offline, it takes offline any dependent resources. +This example takes the resource called IP Address 10.24.11.0 offline on the local cluster. Before +taking the resource offline, it takes offline any dependent resources. ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -56,6 +59,7 @@ Accept wildcard characters: False ``` ### -IgnoreLocked + Specifies that locked groups are ignored when running the cmdlet. ```yaml @@ -71,6 +75,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster resource to take offline. ```yaml @@ -86,8 +91,9 @@ Accept wildcard characters: False ``` ### -Name -Specifies the name of the cluster resource to take offline. -This can also be the name of a Cluster Shared Volume. + +Specifies the name of the cluster resource to take offline. This can also be the name of a Cluster +Shared Volume. ```yaml Type: String @@ -102,9 +108,10 @@ Accept wildcard characters: False ``` ### -Wait -Specifies the time in seconds to wait for the cmdlet. -If the *Wait* parameter is not specified, then the cmdlet waits for completion. -If `-Wait 0` is specified, then the call is initiated and the cmdlet returns without waiting. + +Specifies the time in seconds to wait for the cmdlet. If the *Wait* parameter is not specified, then +the cmdlet waits for completion. If `-Wait 0` is specified, then the call is initiated and the +cmdlet returns without waiting. ```yaml Type: Int32 @@ -119,7 +126,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -150,4 +161,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Start-ClusterResource](./Start-ClusterResource.md) [Suspend-ClusterResource](./Suspend-ClusterResource.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Suspend-ClusterNode.md b/docset/winserver2022-ps/failoverclusters/Suspend-ClusterNode.md index e6f2a5ee54..e75888bcf1 100644 --- a/docset/winserver2022-ps/failoverclusters/Suspend-ClusterNode.md +++ b/docset/winserver2022-ps/failoverclusters/Suspend-ClusterNode.md @@ -16,20 +16,25 @@ Suspends activity on a failover cluster node, that is, pauses the node. ## SYNTAX ``` -Suspend-ClusterNode [[-Name] ] [-Drain] [-ForceDrain] [-Wait] [[-TargetNode] ] - [-InputObject ] [-Cluster ] [-WhatIf] [-Confirm] [] +Suspend-ClusterNode [[-Name] ] [-Drain] [-ForceDrain] [-Wait] + [[-TargetNode] ] [-InputObject ] [-Cluster ] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION -The **Suspend-ClusterNode** cmdlet suspends activity on a failover cluster node, that is, pauses the node. -If you use the *Drain* parameter, clustered roles currently running on the node will be drained before the node is paused. -Pausing, or suspending, a node is usually done when applying software updates to the node. -If you need to perform extensive diagnosis or maintenance on a cluster node, it might be more workable to stop, not pause, the Cluster service on that node. +The **Suspend-ClusterNode** cmdlet suspends activity on a failover cluster node, that is, pauses the +node. If you use the *Drain* parameter, clustered roles currently running on the node will be +drained before the node is paused. + +Pausing, or suspending, a node is usually done when applying software updates to the node. If you +need to perform extensive diagnosis or maintenance on a cluster node, it might be more workable to +stop, not pause, the Cluster service on that node. ## EXAMPLES ### Example 1: Pause a node of the local cluster + ``` PS C:\> Suspend-ClusterNode -Name "node1" Name State @@ -40,6 +45,7 @@ node1 Paused This example pauses the node named node1 on the local cluster. ### Example 2: Pause a node of a cluster + ``` PS C:\> Suspend-ClusterNode "node2" -Cluster "cluster2" Name State @@ -50,6 +56,7 @@ node2 Paused This example pauses the node named node2 on the cluster named cluster2. ### Example 3: Pause a node and move its workloads + ``` PS C:\> Suspend-ClusterNode -Name "node1" -Target "node2" -Drain Name State @@ -60,6 +67,7 @@ node1 Paused This example pauses the node named node1 and moves the workloads from it to the node named node2. ### Example 4: Preview a pause operation + ``` PS C:\> Suspend-ClusterNode node1 -Drain -WhatIf What if: Performing operation "Suspend-ClusterNode" on Target "node1". @@ -70,8 +78,9 @@ This example provides a preview of the operation that will be performed on the n ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -86,6 +95,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -101,7 +111,9 @@ Accept wildcard characters: False ``` ### -Drain -Specifies that all of the workloads are gracefully moved to other nodes while maintaining the highest levels of availability and using the best placement logic. + +Specifies that all of the workloads are gracefully moved to other nodes while maintaining the +highest levels of availability and using the best placement logic. ```yaml Type: SwitchParameter @@ -116,9 +128,13 @@ Accept wildcard characters: False ``` ### -ForceDrain -The -ForceDrain switch, used in conjunction with the -Drain switch, allows all the workloads to be safely moved to other nodes, while maintaining the highest levels of availability and using the best placement logic. -If some or all of the workloads can't be moved safely, any workload that failed will be stopped and moved to another node as a failed role. Thereafter, the node will be forced to pause. +The -ForceDrain switch, used in conjunction with the -Drain switch, allows all the workloads to be +safely moved to other nodes, while maintaining the highest levels of availability and using the best +placement logic. + +If some or all of the workloads can't be moved safely, any workload that failed will be stopped and +moved to another node as a failed role. Thereafter, the node will be forced to pause. ```yaml Type: SwitchParameter @@ -133,7 +149,9 @@ Accept wildcard characters: False ``` ### -InputObject -Specifies the cluster node to suspend, with or without draining, or the cluster on which to run the cmdlet. + +Specifies the cluster node to suspend, with or without draining, or the cluster on which to run the +cmdlet. ```yaml Type: PSObject @@ -148,6 +166,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of the cluster node to suspend, with or without draining. ```yaml @@ -163,6 +182,7 @@ Accept wildcard characters: False ``` ### -TargetNode + Specifies a node to which to drain the workloads. ```yaml @@ -178,10 +198,11 @@ Accept wildcard characters: False ``` ### -Wait -Specifies the time in seconds to wait for the cmdlet. -If the *Wait* parameter is not specified, then the call is initiated and the cmdlet returns without waiting. -If specified with no value, then the cmdlet waits for completion. -If `-Wait 0` is specified, then the call is initiated and the cmdlet returns without waiting. + +Specifies the time in seconds to wait for the cmdlet. If the *Wait* parameter is not specified, then +the call is initiated and the cmdlet returns without waiting. If specified with no value, then the +cmdlet waits for completion. If `-Wait 0` is specified, then the call is initiated and the cmdlet +returns without waiting. ```yaml Type: SwitchParameter @@ -196,6 +217,7 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml @@ -211,7 +233,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -238,4 +264,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Start-ClusterNode](./Start-ClusterNode.md) [Stop-ClusterNode](./Stop-ClusterNode.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Suspend-ClusterResource.md b/docset/winserver2022-ps/failoverclusters/Suspend-ClusterResource.md index 34373aa195..3dccfbecc5 100644 --- a/docset/winserver2022-ps/failoverclusters/Suspend-ClusterResource.md +++ b/docset/winserver2022-ps/failoverclusters/Suspend-ClusterResource.md @@ -11,7 +11,8 @@ title: Suspend-ClusterResource # Suspend-ClusterResource ## SYNOPSIS -Turns on maintenance for a disk resource or CSV so that you can run a disk maintenance tool without triggering failover. +Turns on maintenance for a disk resource or CSV so that you can run a disk maintenance tool without +triggering failover. ## SYNTAX @@ -21,15 +22,18 @@ Suspend-ClusterResource [[-Name] ] [-VolumeName ] [-RedirectedAc ``` ## DESCRIPTION -The **Suspend-ClusterResource** cmdlet turns on maintenance for a disk resource or Cluster Shared Volume (CSV) so that a disk maintenance tool can be run without triggering failover. -This cmdlet only applies to disks and CSVs. -For Cluster Shared Volumes, turning on maintenance takes dependent resources offline, which interrupts client access. -For other disks, Logical Unit Number (LUNs), in cluster storage, turning on maintenance leaves dependent resources online. +The **Suspend-ClusterResource** cmdlet turns on maintenance for a disk resource or Cluster Shared +Volume (CSV) so that a disk maintenance tool can be run without triggering failover. + +This cmdlet only applies to disks and CSVs. For Cluster Shared Volumes, turning on maintenance takes +dependent resources offline, which interrupts client access. For other disks, Logical Unit Number +(LUNs), in cluster storage, turning on maintenance leaves dependent resources online. ## EXAMPLES ### Example 1: Turn on maintenance for a CSV + ``` PS C:\> Suspend-ClusterResource -Name "Cluster Disk 2" Name State Group ResourceType @@ -37,9 +41,11 @@ Name State Group ResourceType Cluster Disk 2 Online(Maintenance) Available Storage Physical Disk ``` -This example turns on maintenance for CSV named Cluster Disk 2 so that you can run a disk maintenance tool without triggering failover. +This example turns on maintenance for CSV named Cluster Disk 2 so that you can run a disk +maintenance tool without triggering failover. ### Example 2: Turn on maintenance for multiple volumes + ``` PS C:\> Get-ClusterSharedVolume -Name "Cluster Disk 5" | Suspend-ClusterResource Name State Node @@ -52,8 +58,9 @@ This example turns on maintenance for all volumes on the CSV named Cluster Disk ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -68,6 +75,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -83,6 +91,7 @@ Accept wildcard characters: False ``` ### -Force + Forces the command to run without asking for user confirmation. ```yaml @@ -98,6 +107,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster resource, a disk or CSV, to suspend. ```yaml @@ -113,6 +123,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of the cluster resource, a disk or CSV, to suspend. ```yaml @@ -128,8 +139,9 @@ Accept wildcard characters: False ``` ### -RedirectedAccess -Causes CSV access to the storage device to be redirected over the network through another cluster node. -This parameter is only applicable to CSVs. + +Causes CSV access to the storage device to be redirected over the network through another cluster +node. This parameter is only applicable to CSVs. ```yaml Type: SwitchParameter @@ -144,9 +156,9 @@ Accept wildcard characters: False ``` ### -VolumeName -Specifies the name of the volume to suspend. -This parameter is only applicable to CSVs. -If this parameter is not specified, then the operation will be performed on all volumes on the CSV. + +Specifies the name of the volume to suspend. This parameter is only applicable to CSVs. If this +parameter is not specified, then the operation will be performed on all volumes on the CSV. ```yaml Type: String @@ -161,8 +173,8 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml Type: SwitchParameter @@ -177,7 +189,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -208,4 +224,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Start-ClusterResource](./Start-ClusterResource.md) [Stop-ClusterResource](./Stop-ClusterResource.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Test-Cluster.md b/docset/winserver2022-ps/failoverclusters/Test-Cluster.md index 31b6e1744d..af451d0e13 100644 --- a/docset/winserver2022-ps/failoverclusters/Test-Cluster.md +++ b/docset/winserver2022-ps/failoverclusters/Test-Cluster.md @@ -16,25 +16,28 @@ Runs validation tests for failover cluster hardware and settings. ## SYNTAX ``` -Test-Cluster [[-Node] ] [-Disk ] [-Pool ] [-ReportName ] [-List] - [-Include ] [-Ignore ] [-Force] [-InputObject ] - [-Cluster ] [-WhatIf] [-Confirm] [] +Test-Cluster [[-Node] ] [-Disk ] [-Pool ] + [-ReportName ] [-List] [-Include ] [-Ignore ] [-Force] + [-InputObject ] [-Cluster ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Test-Cluster** cmdlet runs validation tests for failover cluster hardware and settings. -Tests can be run both before and after a cluster is set up. -Test results are captured in a file with the file name that you specify. -By running the validation tests, you can confirm that your hardware and settings are compatible with Failover Clustering. -There are multiple types of tests, including Cluster, Inventory, Network, Storage, System, and other types of tests. -Storage tests will not test online disks or storage pools that are in use by a clustered role. -To test such disks, first run **Stop-ClusterGroup** to stop the clustered role, and then run **Test-Cluster**. -After the tests are done, start the clustered roles, also known as resource groups, again. +The **Test-Cluster** cmdlet runs validation tests for failover cluster hardware and settings. Tests +can be run both before and after a cluster is set up. + +Test results are captured in a file with the file name that you specify. By running the validation +tests, you can confirm that your hardware and settings are compatible with Failover Clustering. +There are multiple types of tests, including Cluster, Inventory, Network, Storage, System, and other +types of tests. Storage tests will not test online disks or storage pools that are in use by a +clustered role. To test such disks, first run **Stop-ClusterGroup** to stop the clustered role, and +then run **Test-Cluster**. After the tests are done, start the clustered roles, also known as +resource groups, again. ## EXAMPLES ### Example 1: Validate local cluster + ``` PS C:\> Test-Cluster Mode LastWriteTime Length Name @@ -45,6 +48,7 @@ Mode LastWriteTime Length Name This example runs all applicable cluster validation tests on the local cluster. ### Example 2: Validate specified nodes + ``` PS C:\> Test-Cluster -Node "node1", "node2" Mode LastWriteTime Length Name @@ -52,10 +56,11 @@ Mode LastWriteTime Length Name -a--- 10/10/2008 6:18 PM 998032 Test-Cluster on 2008.10.10 At 18.08.24.mht ``` -This example runs all cluster validation tests on the nodes named node1 and node2. -If either node1 or node2 is already a member of a cluster, then the tests will include all nodes in that cluster. +This example runs all cluster validation tests on the nodes named node1 and node2. If either node1 +or node2 is already a member of a cluster, then the tests will include all nodes in that cluster. ### Example 3: View tests and categories in cluster validation + ``` PS C:\> Test-Cluster -List Category DisplayName Description @@ -128,10 +133,11 @@ System Configuration Validate Software Update Levels System Configuration Validate System Drive Variable Validate that all nodes have the sam... ``` -This example lists the names of all tests and categories in cluster validation. -Specify these test names with *Ignore* or *Include* parameters to run specific tests. +This example lists the names of all tests and categories in cluster validation. Specify these test +names with *Ignore* or *Include* parameters to run specific tests. ### Example 4: Validate specified nodes for storage + ``` PS C:\> Test-Cluster -Node "node1", "node2" -Include "Storage" Mode LastWriteTime Length Name @@ -139,10 +145,11 @@ Mode LastWriteTime Length Name -a--- 10/10/2008 6:20 PM 37818 Test-Cluster on 2008.10.10 At 18.20.52.mht ``` -This example runs the storage validation tests on the nodes named node1 and node2. -If either node1 or node2 is already a member of a cluster, then the tests will include all nodes in that cluster. +This example runs the storage validation tests on the nodes named node1 and node2. If either node1 +or node2 is already a member of a cluster, then the tests will include all nodes in that cluster. ### Example 5: Validate specified nodes for everything except inventory + ``` PS C:\> Test-Cluster -Node "node1", "node2" -Ignore Inventory Mode LastWriteTime Length Name @@ -150,10 +157,12 @@ Mode LastWriteTime Length Name -a--- 10/10/2008 6:20 PM 732889 Test-Cluster on 2008.10.10 At 18.19.47.mht ``` -This example runs all validation tests except the Inventory tests on the nodes named node1 and node2. -If either node1 or node2 is already a member of a cluster, then the tests will include all nodes in that cluster. +This example runs all validation tests except the Inventory tests on the nodes named node1 and +node2. If either node1 or node2 is already a member of a cluster, then the tests will include all +nodes in that cluster. ### Example 6: Run a specific test + ``` PS C:\> Test-Cluster -Include "List Potential Cluster Disks" Mode LastWriteTime Length Name @@ -164,6 +173,7 @@ Mode LastWriteTime Length Name This example runs the test called List Potential Cluster Disks on the local cluster. ### Example 7: Run multiple tests + ``` PS C:\> Test-Cluster -Include "List System Drivers","List Unsigned Drivers" Mode LastWriteTime Length Name @@ -176,8 +186,9 @@ This example runs the tests called List System Drivers and List Unsigned Drivers ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -192,6 +203,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -207,22 +219,22 @@ Accept wildcard characters: False ``` ### -Disk -Specifies the disk number or disks for which to run the cmdlet. -If the specified disk is online and is assigned to a clustered role or Cluster Shared Volume, you must also specify the *Force* parameter to take the disk offline for the duration of the storage tests. -Otherwise, the specified disk must be offline before the cmdlet is run. -If the *Disk* parameter is not specified, storage tests run on all disks that are available for use in the cluster or that are in the cluster resource offline or failed state. -The acceptable values for this parameter are: - -- Int32, Int64, Uint32, Uint64. -A number that represents a master boot record (MBR) signature of the disk. -- **System.String**. -A string that represents a master boot record (MBR) signature of the disk, hexadecimal format is supported. -- **System.String**. -A string that represents the GUID of a GPT disk. -- **ClusterResource**. -A cluster resource object that represents a clustered disk. -- **CimInstance#MSFT_Disk**. -An object returned from Get-Disk, from the Windows PowerShell® storage module. + +Specifies the disk number or disks for which to run the cmdlet. If the specified disk is online and +is assigned to a clustered role or Cluster Shared Volume, you must also specify the *Force* +parameter to take the disk offline for the duration of the storage tests. Otherwise, the specified +disk must be offline before the cmdlet is run. If the *Disk* parameter is not specified, storage +tests run on all disks that are available for use in the cluster or that are in the cluster resource +offline or failed state. The acceptable values for this parameter are: + +- Int32, Int64, Uint32, Uint64. A number that represents a master boot record (MBR) signature of the + disk. +- **System.String**. A string that represents a master boot record (MBR) signature of the disk, + hexadecimal format is supported. +- **System.String**. A string that represents the GUID of a GPT disk. +- **ClusterResource**. A cluster resource object that represents a clustered disk. +- **CimInstance#MSFT_Disk**. An object returned from Get-Disk, from the Windows PowerShell® storage + module. ```yaml Type: Object[] @@ -237,6 +249,7 @@ Accept wildcard characters: False ``` ### -Force + Forces the command to run without asking for user confirmation. ```yaml @@ -252,8 +265,9 @@ Accept wildcard characters: False ``` ### -Ignore -Specifies which tests or category of tests to ignore during the validation test run. -All others tests or category of tests will run. + +Specifies which tests or category of tests to ignore during the validation test run. All others +tests or category of tests will run. ```yaml Type: StringCollection @@ -268,8 +282,9 @@ Accept wildcard characters: False ``` ### -Include -Specifies which tests or category of tests to include during the validation test run. -Only the tests or category of tests specified here will run. + +Specifies which tests or category of tests to include during the validation test run. Only the tests +or category of tests specified here will run. ```yaml Type: StringCollection @@ -284,6 +299,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster on which to run the validation tests. ```yaml @@ -299,8 +315,9 @@ Accept wildcard characters: False ``` ### -List -Causes the cmdlet to list the tests and test categories. -No tests will run on the servers or cluster nodes. + +Causes the cmdlet to list the tests and test categories. No tests will run on the servers or cluster +nodes. ```yaml Type: SwitchParameter @@ -315,6 +332,7 @@ Accept wildcard characters: False ``` ### -Node + Specifies a comma-separated list of server names on which to run the cluster validation tests. ```yaml @@ -330,15 +348,19 @@ Accept wildcard characters: False ``` ### -Pool -Specifies the clustered storage pool or pools for which to run the cmdlet. -When the specified storage pool is online and a virtual disk in the storage pool is assigned to a clustered role or Cluster Shared Volume, you must also specify the **Force** parameter to take the storage pool offline for the duration of the storage tests. -Otherwise, the specified storage pool must be taken offline before the storage tests. -If the **Pool** parameter is not specified, storage tests run on all storage pools that are available for use in the cluster or that are in the cluster resource offline or failed state. -The acceptable values for this parameter are: -- **System.String**: A string that represents the name of the clustered storage pool or pools. -- **ClusterResource**: A cluster resource object that represents a clustered storage pool. -- **CimInstance#MSFT_StoragePool**: An object returned from **Get-StoragePool**, from the Windows PowerShell storage module. +Specifies the clustered storage pool or pools for which to run the cmdlet. When the specified +storage pool is online and a virtual disk in the storage pool is assigned to a clustered role or +Cluster Shared Volume, you must also specify the **Force** parameter to take the storage pool +offline for the duration of the storage tests. Otherwise, the specified storage pool must be taken +offline before the storage tests. If the **Pool** parameter is not specified, storage tests run on +all storage pools that are available for use in the cluster or that are in the cluster resource +offline or failed state. The acceptable values for this parameter are: + +- **System.String**: A string that represents the name of the clustered storage pool or pools. +- **ClusterResource**: A cluster resource object that represents a clustered storage pool. +- **CimInstance#MSFT_StoragePool**: An object returned from **Get-StoragePool**, from the Windows + PowerShell storage module. ```yaml Type: Object[] @@ -353,6 +375,7 @@ Accept wildcard characters: False ``` ### -ReportName + Specifies the name of the test report to generate. ```yaml @@ -368,8 +391,8 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml Type: SwitchParameter @@ -384,7 +407,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -409,4 +436,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Start-Cluster](./Start-Cluster.md) [Stop-Cluster](./Stop-Cluster.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Test-ClusterResourceFailure.md b/docset/winserver2022-ps/failoverclusters/Test-ClusterResourceFailure.md index f74061921c..fe0c998ff7 100644 --- a/docset/winserver2022-ps/failoverclusters/Test-ClusterResourceFailure.md +++ b/docset/winserver2022-ps/failoverclusters/Test-ClusterResourceFailure.md @@ -21,14 +21,17 @@ Test-ClusterResourceFailure [[-Name] ] [-InputObject ] [-Clust ``` ## DESCRIPTION + The **Test-ClusterResourceFailure** cmdlet simulates a failure of a cluster resource. -Based on the failover and failback policies, when this cmdlet runs, the Cluster service moves the clustered role, or resource group, and attempts to bring the clustered resource online. -This cmdlet can be used to simulate what actions the Cluster service will take when a resource fails. +Based on the failover and failback policies, when this cmdlet runs, the Cluster service moves the +clustered role, or resource group, and attempts to bring the clustered resource online. This cmdlet +can be used to simulate what actions the Cluster service will take when a resource fails. ## EXAMPLES ### Example 1: Simulate a failure + ``` PS C:\> Test-ClusterResourceFailure -Name "Cluster Disk 4" Name State Group ResourceType @@ -41,8 +44,9 @@ This example simulates a failure in cluster resource named Cluster Disk 4. ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -57,6 +61,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster resource of which to simulate failure. ```yaml @@ -72,6 +77,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of the cluster resource of which to simulate failure. ```yaml @@ -87,7 +93,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -100,4 +110,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Move-ClusterGroup](./Move-ClusterGroup.md) [Start-ClusterResource](./Start-ClusterResource.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Update-ClusterFunctionalLevel.md b/docset/winserver2022-ps/failoverclusters/Update-ClusterFunctionalLevel.md index 3b61c8e40e..06c07b8b18 100644 --- a/docset/winserver2022-ps/failoverclusters/Update-ClusterFunctionalLevel.md +++ b/docset/winserver2022-ps/failoverclusters/Update-ClusterFunctionalLevel.md @@ -21,31 +21,35 @@ Update-ClusterFunctionalLevel [-Force] [-WhatIf] [-InputObject ] [-Clu ``` ## DESCRIPTION -The **Update-ClusterFunctionalLevel** cmdlet updates the functional level of a mixed-version cluster. -You can update the cluster after all nodes have been updated. -Starting with Windows Server 2016, you can add a node that runs a more recent version of the Windows operating system into a cluster of nodes that run a previous version of the Windows operating system. -To add a cluster node, use the **Add-ClusterNode** cmdlet. +The **Update-ClusterFunctionalLevel** cmdlet updates the functional level of a mixed-version +cluster. You can update the cluster after all nodes have been updated. -After you add a node that runs a different version of the Windows operating system, the cluster becomes a mixed-version cluster. -You can implement a mixed-version cluster to continue to run while you upgrade the operating system on each node in the cluster. +Starting with Windows Server 2016, you can add a node that runs a more recent version of the Windows +operating system into a cluster of nodes that run a previous version of the Windows operating +system. To add a cluster node, use the **Add-ClusterNode** cmdlet. -We recommend that you upgrade all nodes in the cluster within a month. -We do not recommend using a mixed-version cluster permanently. +After you add a node that runs a different version of the Windows operating system, the cluster +becomes a mixed-version cluster. You can implement a mixed-version cluster to continue to run while +you upgrade the operating system on each node in the cluster. -You can use this cmdlet to support a rolling operating system upgrade for a cluster. -If you use cluster that runs Hyper-V in which all the nodes run Windows Server 2012 R2, you can upgrade the nodes of that cluster without downtime for your virtual machines. +We recommend that you upgrade all nodes in the cluster within a month. We do not recommend using a +mixed-version cluster permanently. -First, drain one cluster node by specifying the *Drain* parameter of the **Suspend-ClusterNode** cmdlet. -This cmdlet causes all virtual machines to live-migrate to one of the other hosts. +You can use this cmdlet to support a rolling operating system upgrade for a cluster. If you use +cluster that runs Hyper-V in which all the nodes run Windows Server 2012 R2, you can upgrade the +nodes of that cluster without downtime for your virtual machines. + +First, drain one cluster node by specifying the *Drain* parameter of the **Suspend-ClusterNode** +cmdlet. This cmdlet causes all virtual machines to live-migrate to one of the other hosts. Next, remove the host from the cluster by using the **Remove-ClusterNode** cmdlet. -Next, install a new version of the operating system. -Do not perform an upgrade or in-place installation. +Next, install a new version of the operating system. Do not perform an upgrade or in-place +installation. -Next, add the Hyper-V role and the **Failover Clustering** feature by using the **Install-WindowsFeature** cmdlet. -For more information, type `Get-Help Install-WindowsFeature`. +Next, add the Hyper-V role and the **Failover Clustering** feature by using the +**Install-WindowsFeature** cmdlet. For more information, type `Get-Help Install-WindowsFeature`. Finally, add the node into the cluster by using the **Add-ClusterNode** cmdlet. @@ -54,6 +58,7 @@ Repeat these steps for each node of the cluster. ## EXAMPLES ### Example 1: Test a possible update + ``` PS C:\> Update-ClusterFunctionalLevel -WhatIf Name @@ -61,10 +66,11 @@ Name cluster_17 ``` -This command tests whether an update would finish successfully. -Because the command includes the *WhatIf* common parameter, the command does not perform the update. +This command tests whether an update would finish successfully. Because the command includes the +*WhatIf* common parameter, the command does not perform the update. ### Example 2: Update a cluster functional level + ``` PS C:\> Update-ClusterFunctionalLevel -Cluster "cluster_17" Name @@ -72,14 +78,15 @@ Name cluster_17 ``` -This command updates the cluster functional level of the cluster named cluster_17. -All of the nodes of this cluster must already be updated before you run this command. +This command updates the cluster functional level of the cluster named cluster_17. All of the nodes +of this cluster must already be updated before you run this command. ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -94,6 +101,7 @@ Accept wildcard characters: False ``` ### -Force + Forces the command to run without asking for user confirmation. ```yaml @@ -109,8 +117,9 @@ Accept wildcard characters: False ``` ### -InputObject -Specifies the input to this cmdlet. -You can use this parameter, or you can pipe the input to this cmdlet. + +Specifies the input to this cmdlet. You can use this parameter, or you can pipe the input to this +cmdlet. ```yaml Type: PSObject @@ -125,6 +134,7 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml @@ -140,22 +150,28 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### Microsoft.FailoverClusters.PowerShell.Cluster -This cmdlet accepts a **Cluster**. -This cmdlet updates the functional level of this cluster. + +This cmdlet accepts a **Cluster**. This cmdlet updates the functional level of this cluster. ## OUTPUTS ### Microsoft.FailoverClusters.PowerShell.Cluster -This cmdlet returns a **Cluster**. -This cmdlet updates the functional level of this cluster. + +This cmdlet returns a **Cluster**. This cmdlet updates the functional level of this cluster. ## NOTES -* This cmdlet performs a one-time, one-way transformation of the cluster functional level. You cannot lower this level. + +* This cmdlet performs a one-time, one-way transformation of the cluster functional level. You + cannot lower this level. ## RELATED LINKS @@ -164,4 +180,3 @@ This cmdlet updates the functional level of this cluster. [Suspend-ClusterNode](./Suspend-ClusterNode.md) [Remove-ClusterNode](./Remove-ClusterNode.md) - diff --git a/docset/winserver2022-ps/failoverclusters/Update-ClusterIPResource.md b/docset/winserver2022-ps/failoverclusters/Update-ClusterIPResource.md index 3cb5538e22..be77cdef2c 100644 --- a/docset/winserver2022-ps/failoverclusters/Update-ClusterIPResource.md +++ b/docset/winserver2022-ps/failoverclusters/Update-ClusterIPResource.md @@ -16,17 +16,19 @@ Renews or releases the DHCP lease for an IP address resource in a failover clust ## SYNTAX ``` -Update-ClusterIPResource [[-Name] ] [-Renew] [-Release] [-InputObject ] [-Cluster ] - [] +Update-ClusterIPResource [[-Name] ] [-Renew] [-Release] [-InputObject ] + [-Cluster ] [] ``` ## DESCRIPTION -The **Update-ClusterIPResource** cmdlet renews or releases the DHCP lease for an IP address resource in a failover cluster. -This cmdlet applies only to IP address resources that use DHCP. + +The **Update-ClusterIPResource** cmdlet renews or releases the DHCP lease for an IP address resource +in a failover cluster. This cmdlet applies only to IP address resources that use DHCP. ## EXAMPLES ### Example 1: Update DHCP lease + ``` PS C:\> Update-ClusterIPResource -Name "Cluster IP Address" Name State Group ResourceType @@ -34,9 +36,11 @@ Name State Group ResourceType Cluster IP Address Online Cluster Group IP Address ``` -This example updates the DHCP lease for the resource called Cluster IP Address if this resource is DHCP assigned. +This example updates the DHCP lease for the resource called Cluster IP Address if this resource is +DHCP assigned. ### Example 2: Update DHCP leases for all clustered IP resources + ``` PS C:\> Get-ClusterResource | Where-Object -FilterScript {$_.ResourceType.Name -eq "IP Address"} | Update-ClusterIPResource Name State Group ResourceType @@ -49,6 +53,7 @@ IP Address 172.2... Online cluster1-FS IP Address This example updates the DHCP lease for all of the clustered IP resources that are DHCP assigned. ### Example 3: Take a resource offline and release its lease + ``` PS C:\> Get-ClusterResource -Name "IP Address 10.24.11.0" | Stop-ClusterResource | Update-ClusterIPResource -Release Name State Group ResourceType @@ -56,13 +61,15 @@ Name State Group ResourceType IP Address 10.2... Offline cluster1-Other IP Address ``` -This example takes the resource named IP Address 172.24.11.0 offline, and releases the DHCP lease for that resource. +This example takes the resource named IP Address 172.24.11.0 offline, and releases the DHCP lease +for that resource. ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -77,6 +84,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster IP address resource to update. ```yaml @@ -92,6 +100,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of the cluster IP address resource to update. ```yaml @@ -107,6 +116,7 @@ Accept wildcard characters: False ``` ### -Release + Causes the cmdlet to release the DHCP lease of the IP address resource. ```yaml @@ -122,6 +132,7 @@ Accept wildcard characters: False ``` ### -Renew + Causes the cmdlet to renew the DHCP lease of the IP address resource. ```yaml @@ -137,7 +148,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -156,4 +171,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Update-ClusterNetworkNameResource](./Update-ClusterNetworkNameResource.md) [Where-Object](https://go.microsoft.com/fwlink/?LinkID=113423) - diff --git a/docset/winserver2022-ps/failoverclusters/Update-ClusterNetworkNameResource.md b/docset/winserver2022-ps/failoverclusters/Update-ClusterNetworkNameResource.md index ea11656e3b..bc0b06a728 100644 --- a/docset/winserver2022-ps/failoverclusters/Update-ClusterNetworkNameResource.md +++ b/docset/winserver2022-ps/failoverclusters/Update-ClusterNetworkNameResource.md @@ -11,21 +11,25 @@ title: Update-ClusterNetworkNameResource # Update-ClusterNetworkNameResource ## SYNOPSIS -Registers existing Network Name resources with a DNS server in a way that does not interrupt cluster availability. +Registers existing Network Name resources with a DNS server in a way that does not interrupt cluster +availability. ## SYNTAX ``` -Update-ClusterNetworkNameResource [[-Name] ] [-InputObject ] [-Cluster ] - [] +Update-ClusterNetworkNameResource [[-Name] ] [-InputObject ] + [-Cluster ] [] ``` ## DESCRIPTION -The **Update-ClusterNetworkNameResource** cmdlet registers existing Network Name resources with a DNS server in a way that does not interrupt cluster availability. + +The **Update-ClusterNetworkNameResource** cmdlet registers existing Network Name resources with a +DNS server in a way that does not interrupt cluster availability. ## EXAMPLES ### Example 1: Register name resources with a DNS server + ``` PS C:\> Get-ClusterResource -Name "Cluster Name" | Update-ClusterNetworkNameResource Name State OwnerGroup ResourceType @@ -38,8 +42,9 @@ This example registers the Network Name resources of the local cluster with a DN ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -54,6 +59,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the network name resource to register with the DNS server. ```yaml @@ -69,6 +75,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the network name to be registered with the DNS server. ```yaml @@ -84,7 +91,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -101,4 +112,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Get-ClusterResource](./Get-ClusterResource.md) [Update-ClusterIPResource](./Update-ClusterIPResource.md) - From a88747a91a5aefa23712293049be2180ce4d637a Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Fri, 21 Oct 2022 11:29:04 +0100 Subject: [PATCH 280/965] Updated ms.date metadata --- .../winserver2022-ps/failoverclusters/Add-ClusterCheckpoint.md | 2 +- docset/winserver2022-ps/failoverclusters/Add-ClusterDisk.md | 2 +- .../failoverclusters/Add-ClusterFileServerRole.md | 2 +- .../failoverclusters/Add-ClusterGenericApplicationRole.md | 2 +- .../failoverclusters/Add-ClusterGenericScriptRole.md | 2 +- .../failoverclusters/Add-ClusterGenericServiceRole.md | 2 +- docset/winserver2022-ps/failoverclusters/Add-ClusterGroup.md | 2 +- .../failoverclusters/Add-ClusterGroupSetDependency.md | 2 +- .../winserver2022-ps/failoverclusters/Add-ClusterGroupToSet.md | 2 +- docset/winserver2022-ps/failoverclusters/Add-ClusterNode.md | 2 +- docset/winserver2022-ps/failoverclusters/Add-ClusterResource.md | 2 +- .../failoverclusters/Add-ClusterResourceDependency.md | 2 +- .../failoverclusters/Add-ClusterResourceType.md | 2 +- .../failoverclusters/Add-ClusterScaleOutFileServerRole.md | 2 +- .../failoverclusters/Add-ClusterSharedVolume.md | 2 +- .../failoverclusters/Add-ClusterVMMonitoredItem.md | 2 +- .../failoverclusters/Add-ClusterVirtualMachineRole.md | 2 +- .../failoverclusters/Add-ClusteriSCSITargetServerRole.md | 2 +- docset/winserver2022-ps/failoverclusters/Block-ClusterAccess.md | 2 +- .../failoverclusters/Clear-ClusterDiskReservation.md | 2 +- docset/winserver2022-ps/failoverclusters/Clear-ClusterNode.md | 2 +- .../failoverclusters/Disable-ClusterStorageSpacesDirect.md | 2 +- .../failoverclusters/Enable-ClusterStorageSpacesDirect.md | 2 +- docset/winserver2022-ps/failoverclusters/FailoverClusters.md | 2 +- docset/winserver2022-ps/failoverclusters/Get-Cluster.md | 2 +- docset/winserver2022-ps/failoverclusters/Get-ClusterAccess.md | 2 +- .../failoverclusters/Get-ClusterAvailableDisk.md | 2 +- .../winserver2022-ps/failoverclusters/Get-ClusterCheckpoint.md | 2 +- .../failoverclusters/Get-ClusterDiagnosticInfo.md | 2 +- .../winserver2022-ps/failoverclusters/Get-ClusterFaultDomain.md | 2 +- 30 files changed, 30 insertions(+), 30 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterCheckpoint.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterCheckpoint.md index 8b003d5c76..dc05856d3b 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterCheckpoint.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterCheckpoint.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustercheckpoint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterCheckpoint diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterDisk.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterDisk.md index be6b0d4f84..de8b55ddaa 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterDisk.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterDisk.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusterdisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterDisk diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterFileServerRole.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterFileServerRole.md index ea0cb29bac..1575ca0b1f 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterFileServerRole.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterFileServerRole.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusterfileserverrole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterFileServerRole diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericApplicationRole.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericApplicationRole.md index a3faf389ec..9f13ab7cd8 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericApplicationRole.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericApplicationRole.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustergenericapplicationrole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterGenericApplicationRole diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericScriptRole.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericScriptRole.md index d9f3108b3a..f254cc8f3b 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericScriptRole.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericScriptRole.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustergenericscriptrole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterGenericScriptRole diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericServiceRole.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericServiceRole.md index a23b9c6da3..8ccd532a91 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericServiceRole.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericServiceRole.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustergenericservicerole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterGenericServiceRole diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterGroup.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterGroup.md index c58a58c398..0e46d250ec 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterGroup.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterGroup.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustergroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterGroup diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupSetDependency.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupSetDependency.md index c15832ac0c..19cde3dc48 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupSetDependency.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupSetDependency.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterCollection.cdxml-help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustergroupsetdependency?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterGroupSetDependency diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupToSet.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupToSet.md index 15fb7f31cf..1f03f32cdd 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupToSet.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupToSet.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterCollection.cdxml-help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustergrouptoset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterGroupToSet diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterNode.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterNode.md index 8421c54469..a6844543dc 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterNode.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterNode.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusternode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterNode diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterResource.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterResource.md index ec8bf622fa..0c0677ba7d 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterResource.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterResource.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusterresource?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterResource diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterResourceDependency.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterResourceDependency.md index c73381a3c8..61805e55ff 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterResourceDependency.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterResourceDependency.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusterresourcedependency?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterResourceDependency diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterResourceType.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterResourceType.md index 37947f5c24..57867b2f1e 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterResourceType.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterResourceType.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusterresourcetype?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterResourceType diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md index adf22afd07..d265a58eef 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusterscaleoutfileserverrole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterScaleOutFileServerRole diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolume.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolume.md index 5dcd673ae7..c3441d9d7e 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolume.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolume.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustersharedvolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterSharedVolume diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterVMMonitoredItem.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterVMMonitoredItem.md index 2aea9a0cfc..7c7201f99b 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterVMMonitoredItem.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterVMMonitoredItem.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustervmmonitoreditem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterVMMonitoredItem diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterVirtualMachineRole.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterVirtualMachineRole.md index eb0f64a4c3..2f7ffd5f78 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterVirtualMachineRole.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterVirtualMachineRole.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustervirtualmachinerole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterVirtualMachineRole diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusteriSCSITargetServerRole.md b/docset/winserver2022-ps/failoverclusters/Add-ClusteriSCSITargetServerRole.md index 03e87d2df2..6a059e3be8 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusteriSCSITargetServerRole.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusteriSCSITargetServerRole.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusteriscsitargetserverrole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusteriSCSITargetServerRole diff --git a/docset/winserver2022-ps/failoverclusters/Block-ClusterAccess.md b/docset/winserver2022-ps/failoverclusters/Block-ClusterAccess.md index f6b0557308..08ebb62bbb 100644 --- a/docset/winserver2022-ps/failoverclusters/Block-ClusterAccess.md +++ b/docset/winserver2022-ps/failoverclusters/Block-ClusterAccess.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/block-clusteraccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Block-ClusterAccess diff --git a/docset/winserver2022-ps/failoverclusters/Clear-ClusterDiskReservation.md b/docset/winserver2022-ps/failoverclusters/Clear-ClusterDiskReservation.md index b4aaac5809..c1daf11f4f 100644 --- a/docset/winserver2022-ps/failoverclusters/Clear-ClusterDiskReservation.md +++ b/docset/winserver2022-ps/failoverclusters/Clear-ClusterDiskReservation.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/clear-clusterdiskreservation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-ClusterDiskReservation diff --git a/docset/winserver2022-ps/failoverclusters/Clear-ClusterNode.md b/docset/winserver2022-ps/failoverclusters/Clear-ClusterNode.md index 7e94abfc90..3720f5222f 100644 --- a/docset/winserver2022-ps/failoverclusters/Clear-ClusterNode.md +++ b/docset/winserver2022-ps/failoverclusters/Clear-ClusterNode.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/clear-clusternode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-ClusterNode diff --git a/docset/winserver2022-ps/failoverclusters/Disable-ClusterStorageSpacesDirect.md b/docset/winserver2022-ps/failoverclusters/Disable-ClusterStorageSpacesDirect.md index d8018cbbfe..155077dac6 100644 --- a/docset/winserver2022-ps/failoverclusters/Disable-ClusterStorageSpacesDirect.md +++ b/docset/winserver2022-ps/failoverclusters/Disable-ClusterStorageSpacesDirect.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterStorageSpacesDirect.cdxml-help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/disable-clusterstoragespacesdirect?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-ClusterStorageSpacesDirect diff --git a/docset/winserver2022-ps/failoverclusters/Enable-ClusterStorageSpacesDirect.md b/docset/winserver2022-ps/failoverclusters/Enable-ClusterStorageSpacesDirect.md index b0b4222125..f640a966fe 100644 --- a/docset/winserver2022-ps/failoverclusters/Enable-ClusterStorageSpacesDirect.md +++ b/docset/winserver2022-ps/failoverclusters/Enable-ClusterStorageSpacesDirect.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Storage Spaces Direct with Windows PowerShell. external help file: ClusterStorageSpacesDirect.cdxml-help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/enable-clusterstoragespacesdirect?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-ClusterStorageSpacesDirect diff --git a/docset/winserver2022-ps/failoverclusters/FailoverClusters.md b/docset/winserver2022-ps/failoverclusters/FailoverClusters.md index 316daaa0fe..296178d43d 100644 --- a/docset/winserver2022-ps/failoverclusters/FailoverClusters.md +++ b/docset/winserver2022-ps/failoverclusters/FailoverClusters.md @@ -5,7 +5,7 @@ Help Version: 5.0.3.3 Locale: en-US Module Guid: cc3e946b-9141-48c2-95d8-d9e56594416a Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 title: FailoverClusters --- diff --git a/docset/winserver2022-ps/failoverclusters/Get-Cluster.md b/docset/winserver2022-ps/failoverclusters/Get-Cluster.md index 17d8bcf37c..0cd6dd4d1a 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-Cluster.md +++ b/docset/winserver2022-ps/failoverclusters/Get-Cluster.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-cluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-Cluster diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterAccess.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterAccess.md index 0814b3fcd9..c4f8486b04 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterAccess.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterAccess.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusteraccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterAccess diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterAvailableDisk.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterAvailableDisk.md index adfcc8e466..c8cbdf265f 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterAvailableDisk.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterAvailableDisk.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusteravailabledisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterAvailableDisk diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterCheckpoint.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterCheckpoint.md index 5d5f9a92eb..8083b12bc8 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterCheckpoint.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterCheckpoint.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clustercheckpoint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterCheckpoint diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterDiagnosticInfo.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterDiagnosticInfo.md index 620b12b088..e1fb34558e 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterDiagnosticInfo.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterDiagnosticInfo.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell-help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterdiagnosticinfo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterDiagnosticInfo diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterFaultDomain.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterFaultDomain.md index 5bcb39eeba..1d97040df1 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterFaultDomain.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterFaultDomain.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterFaultDomain.cdxml-help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterfaultdomain?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterFaultDomain From 76f26d658d41bde39e0880dd04b5d9bc978e1d16 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Fri, 21 Oct 2022 11:33:28 +0100 Subject: [PATCH 281/965] Updated ms.date metadata --- .../failoverclusters/Get-ClusterFaultDomainXML.md | 2 +- docset/winserver2022-ps/failoverclusters/Get-ClusterGroup.md | 2 +- docset/winserver2022-ps/failoverclusters/Get-ClusterGroupSet.md | 2 +- .../failoverclusters/Get-ClusterGroupSetDependency.md | 2 +- docset/winserver2022-ps/failoverclusters/Get-ClusterLog.md | 2 +- docset/winserver2022-ps/failoverclusters/Get-ClusterNetwork.md | 2 +- .../failoverclusters/Get-ClusterNetworkInterface.md | 2 +- docset/winserver2022-ps/failoverclusters/Get-ClusterNode.md | 2 +- .../winserver2022-ps/failoverclusters/Get-ClusterOwnerNode.md | 2 +- .../winserver2022-ps/failoverclusters/Get-ClusterParameter.md | 2 +- docset/winserver2022-ps/failoverclusters/Get-ClusterQuorum.md | 2 +- docset/winserver2022-ps/failoverclusters/Get-ClusterResource.md | 2 +- .../failoverclusters/Get-ClusterResourceDependency.md | 2 +- .../failoverclusters/Get-ClusterResourceDependencyReport.md | 2 +- .../failoverclusters/Get-ClusterResourceType.md | 2 +- .../failoverclusters/Get-ClusterSharedVolume.md | 2 +- .../failoverclusters/Get-ClusterSharedVolumeState.md | 2 +- .../failoverclusters/Get-ClusterStorageSpacesDirect.md | 2 +- .../failoverclusters/Get-ClusterVMMonitoredItem.md | 2 +- docset/winserver2022-ps/failoverclusters/Grant-ClusterAccess.md | 2 +- docset/winserver2022-ps/failoverclusters/Move-ClusterGroup.md | 2 +- .../winserver2022-ps/failoverclusters/Move-ClusterResource.md | 2 +- .../failoverclusters/Move-ClusterSharedVolume.md | 2 +- .../failoverclusters/Move-ClusterVirtualMachineRole.md | 2 +- docset/winserver2022-ps/failoverclusters/New-Cluster.md | 2 +- .../winserver2022-ps/failoverclusters/New-ClusterFaultDomain.md | 2 +- docset/winserver2022-ps/failoverclusters/New-ClusterGroupSet.md | 2 +- .../winserver2022-ps/failoverclusters/New-ClusterNameAccount.md | 2 +- docset/winserver2022-ps/failoverclusters/Remove-Cluster.md | 2 +- .../winserver2022-ps/failoverclusters/Remove-ClusterAccess.md | 2 +- 30 files changed, 30 insertions(+), 30 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterFaultDomainXML.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterFaultDomainXML.md index 0678dc1c33..ca77d33678 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterFaultDomainXML.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterFaultDomainXML.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterFaultDomain.cdxml-help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterfaultdomainxml?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterFaultDomainXML diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterGroup.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterGroup.md index 4f7ded7cb9..6d0e253488 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterGroup.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterGroup.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clustergroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterGroup diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterGroupSet.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterGroupSet.md index 8cc248751f..d9e9d69f0b 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterGroupSet.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterGroupSet.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterCollection.cdxml-help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clustergroupset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterGroupSet diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterGroupSetDependency.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterGroupSetDependency.md index 86753853cf..db96f88174 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterGroupSetDependency.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterGroupSetDependency.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterCollection.cdxml-help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clustergroupsetdependency?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterGroupSetDependency diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterLog.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterLog.md index 96c157a33e..b9b741055f 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterLog.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterLog.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterlog?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterLog diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterNetwork.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterNetwork.md index a75f807099..9b958c1ae0 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterNetwork.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterNetwork.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusternetwork?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterNetwork diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterNetworkInterface.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterNetworkInterface.md index 1d0f996e68..3a5d5ada6c 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterNetworkInterface.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterNetworkInterface.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusternetworkinterface?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterNetworkInterface diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterNode.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterNode.md index c232f14e80..2146416bf4 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterNode.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterNode.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusternode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterNode diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterOwnerNode.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterOwnerNode.md index 08c7eefde5..580e0e1958 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterOwnerNode.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterOwnerNode.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterownernode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterOwnerNode diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterParameter.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterParameter.md index dcc77cfe5f..325822fba3 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterParameter.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterParameter.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterparameter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterParameter diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterQuorum.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterQuorum.md index b1783ca12a..8c34f8b912 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterQuorum.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterQuorum.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterquorum?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterQuorum diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterResource.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterResource.md index deb6ce558b..624a96f426 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterResource.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterResource.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterresource?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterResource diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceDependency.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceDependency.md index 8e157c26a0..8a5657f63c 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceDependency.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceDependency.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterresourcedependency?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterResourceDependency diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceDependencyReport.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceDependencyReport.md index 1aa418bc05..d6d6c10d7c 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceDependencyReport.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceDependencyReport.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterresourcedependencyreport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterResourceDependencyReport diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceType.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceType.md index fc2b2d57ed..869bb7b58d 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceType.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceType.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterresourcetype?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterResourceType diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterSharedVolume.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterSharedVolume.md index a724b64be9..bcc6ac5550 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterSharedVolume.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterSharedVolume.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clustersharedvolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterSharedVolume diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterSharedVolumeState.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterSharedVolumeState.md index 583fb592ae..fd5e31f47b 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterSharedVolumeState.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterSharedVolumeState.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clustersharedvolumestate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterSharedVolumeState diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterStorageSpacesDirect.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterStorageSpacesDirect.md index 0c7f998954..3501de9798 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterStorageSpacesDirect.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterStorageSpacesDirect.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterStorageSpacesDirect.cdxml-help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterstoragespacesdirect?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterStorageSpacesDirect diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterVMMonitoredItem.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterVMMonitoredItem.md index f0d130e991..1ef9bb3fdf 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterVMMonitoredItem.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterVMMonitoredItem.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clustervmmonitoreditem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterVMMonitoredItem diff --git a/docset/winserver2022-ps/failoverclusters/Grant-ClusterAccess.md b/docset/winserver2022-ps/failoverclusters/Grant-ClusterAccess.md index a04cc5150e..fcfae75956 100644 --- a/docset/winserver2022-ps/failoverclusters/Grant-ClusterAccess.md +++ b/docset/winserver2022-ps/failoverclusters/Grant-ClusterAccess.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/grant-clusteraccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Grant-ClusterAccess diff --git a/docset/winserver2022-ps/failoverclusters/Move-ClusterGroup.md b/docset/winserver2022-ps/failoverclusters/Move-ClusterGroup.md index 9e3cb6f8de..d95ac110ef 100644 --- a/docset/winserver2022-ps/failoverclusters/Move-ClusterGroup.md +++ b/docset/winserver2022-ps/failoverclusters/Move-ClusterGroup.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/move-clustergroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-ClusterGroup diff --git a/docset/winserver2022-ps/failoverclusters/Move-ClusterResource.md b/docset/winserver2022-ps/failoverclusters/Move-ClusterResource.md index 299371dc19..70dfbc7b95 100644 --- a/docset/winserver2022-ps/failoverclusters/Move-ClusterResource.md +++ b/docset/winserver2022-ps/failoverclusters/Move-ClusterResource.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/move-clusterresource?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-ClusterResource diff --git a/docset/winserver2022-ps/failoverclusters/Move-ClusterSharedVolume.md b/docset/winserver2022-ps/failoverclusters/Move-ClusterSharedVolume.md index 373a3f7edc..bb9de16bdd 100644 --- a/docset/winserver2022-ps/failoverclusters/Move-ClusterSharedVolume.md +++ b/docset/winserver2022-ps/failoverclusters/Move-ClusterSharedVolume.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/move-clustersharedvolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-ClusterSharedVolume diff --git a/docset/winserver2022-ps/failoverclusters/Move-ClusterVirtualMachineRole.md b/docset/winserver2022-ps/failoverclusters/Move-ClusterVirtualMachineRole.md index 25a496e618..edf4cbf248 100644 --- a/docset/winserver2022-ps/failoverclusters/Move-ClusterVirtualMachineRole.md +++ b/docset/winserver2022-ps/failoverclusters/Move-ClusterVirtualMachineRole.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/move-clustervirtualmachinerole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-ClusterVirtualMachineRole diff --git a/docset/winserver2022-ps/failoverclusters/New-Cluster.md b/docset/winserver2022-ps/failoverclusters/New-Cluster.md index b0f8f467da..c97f2a99d2 100644 --- a/docset/winserver2022-ps/failoverclusters/New-Cluster.md +++ b/docset/winserver2022-ps/failoverclusters/New-Cluster.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/new-cluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-Cluster diff --git a/docset/winserver2022-ps/failoverclusters/New-ClusterFaultDomain.md b/docset/winserver2022-ps/failoverclusters/New-ClusterFaultDomain.md index 6484c049f8..2c6f590c9c 100644 --- a/docset/winserver2022-ps/failoverclusters/New-ClusterFaultDomain.md +++ b/docset/winserver2022-ps/failoverclusters/New-ClusterFaultDomain.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterFaultDomain.cdxml-help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/new-clusterfaultdomain?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ClusterFaultDomain diff --git a/docset/winserver2022-ps/failoverclusters/New-ClusterGroupSet.md b/docset/winserver2022-ps/failoverclusters/New-ClusterGroupSet.md index 78e50ba73f..93bd5dea36 100644 --- a/docset/winserver2022-ps/failoverclusters/New-ClusterGroupSet.md +++ b/docset/winserver2022-ps/failoverclusters/New-ClusterGroupSet.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterCollection.cdxml-help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/new-clustergroupset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ClusterGroupSet diff --git a/docset/winserver2022-ps/failoverclusters/New-ClusterNameAccount.md b/docset/winserver2022-ps/failoverclusters/New-ClusterNameAccount.md index c84aad1fa1..05cb95a599 100644 --- a/docset/winserver2022-ps/failoverclusters/New-ClusterNameAccount.md +++ b/docset/winserver2022-ps/failoverclusters/New-ClusterNameAccount.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/new-clusternameaccount?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ClusterNameAccount diff --git a/docset/winserver2022-ps/failoverclusters/Remove-Cluster.md b/docset/winserver2022-ps/failoverclusters/Remove-Cluster.md index 2d0957ec31..ad46bf9bb7 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-Cluster.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-Cluster.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-cluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-Cluster diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterAccess.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterAccess.md index 9ff2463cb8..09e432da12 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterAccess.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterAccess.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clusteraccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterAccess From bd03e75cb0be4fd4513e973c7de4fa96967fd379 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Fri, 21 Oct 2022 11:35:20 +0100 Subject: [PATCH 282/965] Updated ms.date metadata --- .../failoverclusters/Remove-ClusterCheckpoint.md | 2 +- .../failoverclusters/Remove-ClusterFaultDomain.md | 2 +- docset/winserver2022-ps/failoverclusters/Remove-ClusterGroup.md | 2 +- .../failoverclusters/Remove-ClusterGroupFromSet.md | 2 +- .../winserver2022-ps/failoverclusters/Remove-ClusterGroupSet.md | 2 +- .../failoverclusters/Remove-ClusterGroupSetDependency.md | 2 +- docset/winserver2022-ps/failoverclusters/Remove-ClusterNode.md | 2 +- .../winserver2022-ps/failoverclusters/Remove-ClusterResource.md | 2 +- .../failoverclusters/Remove-ClusterResourceDependency.md | 2 +- .../failoverclusters/Remove-ClusterResourceType.md | 2 +- .../failoverclusters/Remove-ClusterSharedVolume.md | 2 +- .../failoverclusters/Remove-ClusterVMMonitoredItem.md | 2 +- .../failoverclusters/Repair-ClusterStorageSpacesDirect.md | 2 +- .../failoverclusters/Reset-ClusterVMMonitoredState.md | 2 +- docset/winserver2022-ps/failoverclusters/Resume-ClusterNode.md | 2 +- .../winserver2022-ps/failoverclusters/Resume-ClusterResource.md | 2 +- .../winserver2022-ps/failoverclusters/Set-ClusterFaultDomain.md | 2 +- .../failoverclusters/Set-ClusterFaultDomainXML.md | 2 +- docset/winserver2022-ps/failoverclusters/Set-ClusterGroupSet.md | 2 +- docset/winserver2022-ps/failoverclusters/Set-ClusterLog.md | 2 +- .../winserver2022-ps/failoverclusters/Set-ClusterOwnerNode.md | 2 +- .../winserver2022-ps/failoverclusters/Set-ClusterParameter.md | 2 +- docset/winserver2022-ps/failoverclusters/Set-ClusterQuorum.md | 2 +- .../failoverclusters/Set-ClusterResourceDependency.md | 2 +- .../failoverclusters/Set-ClusterStorageSpacesDirect.md | 2 +- .../failoverclusters/Set-ClusterStorageSpacesDirectDisk.md | 2 +- docset/winserver2022-ps/failoverclusters/Start-Cluster.md | 2 +- docset/winserver2022-ps/failoverclusters/Start-ClusterGroup.md | 2 +- docset/winserver2022-ps/failoverclusters/Start-ClusterNode.md | 2 +- .../Update-ClusterVirtualMachineConfiguration.md | 2 +- 30 files changed, 30 insertions(+), 30 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterCheckpoint.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterCheckpoint.md index a714675f4f..358e061789 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterCheckpoint.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterCheckpoint.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clustercheckpoint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterCheckpoint diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterFaultDomain.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterFaultDomain.md index b4dc0b991d..4f52520eb9 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterFaultDomain.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterFaultDomain.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterFaultDomain.cdxml-help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clusterfaultdomain?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterFaultDomain diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroup.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroup.md index a292d9111a..2467c39c14 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroup.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroup.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clustergroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterGroup diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromSet.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromSet.md index d84428623f..84ef5267d7 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromSet.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromSet.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterCollection.cdxml-help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clustergroupfromset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterGroupFromSet diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupSet.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupSet.md index d06c0da5e4..6966fbc46d 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupSet.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupSet.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterCollection.cdxml-help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clustergroupset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterGroupSet diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupSetDependency.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupSetDependency.md index ed8bd2fc93..f75c4bccf6 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupSetDependency.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupSetDependency.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterCollection.cdxml-help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clustergroupsetdependency?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterGroupSetDependency diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterNode.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterNode.md index 6706dffe6b..6ed1d2fa84 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterNode.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterNode.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clusternode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterNode diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterResource.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterResource.md index d7fa105830..459f903dfd 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterResource.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterResource.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clusterresource?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterResource diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterResourceDependency.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterResourceDependency.md index 8a254a5252..b3c0471ab8 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterResourceDependency.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterResourceDependency.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clusterresourcedependency?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterResourceDependency diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterResourceType.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterResourceType.md index 0a7bc4b9c0..b722cac2da 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterResourceType.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterResourceType.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clusterresourcetype?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterResourceType diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolume.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolume.md index 2bb355b96e..95d3a69aee 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolume.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolume.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clustersharedvolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterSharedVolume diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterVMMonitoredItem.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterVMMonitoredItem.md index cfd31b30c1..4cbf948a09 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterVMMonitoredItem.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterVMMonitoredItem.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clustervmmonitoreditem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterVMMonitoredItem diff --git a/docset/winserver2022-ps/failoverclusters/Repair-ClusterStorageSpacesDirect.md b/docset/winserver2022-ps/failoverclusters/Repair-ClusterStorageSpacesDirect.md index f672ed4be3..12141ea29b 100644 --- a/docset/winserver2022-ps/failoverclusters/Repair-ClusterStorageSpacesDirect.md +++ b/docset/winserver2022-ps/failoverclusters/Repair-ClusterStorageSpacesDirect.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterStorageSpacesDirect.cdxml-help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/repair-clusterstoragespacesdirect?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Repair-ClusterStorageSpacesDirect diff --git a/docset/winserver2022-ps/failoverclusters/Reset-ClusterVMMonitoredState.md b/docset/winserver2022-ps/failoverclusters/Reset-ClusterVMMonitoredState.md index 3d4d83624b..9f8fedbe74 100644 --- a/docset/winserver2022-ps/failoverclusters/Reset-ClusterVMMonitoredState.md +++ b/docset/winserver2022-ps/failoverclusters/Reset-ClusterVMMonitoredState.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/reset-clustervmmonitoredstate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-ClusterVMMonitoredState diff --git a/docset/winserver2022-ps/failoverclusters/Resume-ClusterNode.md b/docset/winserver2022-ps/failoverclusters/Resume-ClusterNode.md index 11a355499b..2b69ca24a5 100644 --- a/docset/winserver2022-ps/failoverclusters/Resume-ClusterNode.md +++ b/docset/winserver2022-ps/failoverclusters/Resume-ClusterNode.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/resume-clusternode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-ClusterNode diff --git a/docset/winserver2022-ps/failoverclusters/Resume-ClusterResource.md b/docset/winserver2022-ps/failoverclusters/Resume-ClusterResource.md index df9dd23e52..047b7df098 100644 --- a/docset/winserver2022-ps/failoverclusters/Resume-ClusterResource.md +++ b/docset/winserver2022-ps/failoverclusters/Resume-ClusterResource.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/resume-clusterresource?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-ClusterResource diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterFaultDomain.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterFaultDomain.md index f7dd1a7a36..bc0331dc75 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterFaultDomain.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterFaultDomain.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterFaultDomain.cdxml-help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterfaultdomain?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterFaultDomain diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterFaultDomainXML.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterFaultDomainXML.md index 49a9387309..a92fa86061 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterFaultDomainXML.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterFaultDomainXML.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterFaultDomain.cdxml-help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterfaultdomainxml?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterFaultDomainXML diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterGroupSet.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterGroupSet.md index afc6a76ded..76978a6163 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterGroupSet.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterGroupSet.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterCollection.cdxml-help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clustergroupset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterGroupSet diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterLog.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterLog.md index b8624fca97..0352107b10 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterLog.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterLog.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterlog?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterLog diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterOwnerNode.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterOwnerNode.md index 4a3f954341..00d76df8b5 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterOwnerNode.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterOwnerNode.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterownernode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterOwnerNode diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterParameter.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterParameter.md index 5faea0ca9e..5bcaa75310 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterParameter.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterParameter.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterparameter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterParameter diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterQuorum.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterQuorum.md index 48b94addf2..b91346d689 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterQuorum.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterQuorum.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterquorum?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterQuorum diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterResourceDependency.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterResourceDependency.md index 0cf608376b..d7f47ca8f7 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterResourceDependency.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterResourceDependency.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterresourcedependency?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterResourceDependency diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterStorageSpacesDirect.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterStorageSpacesDirect.md index 2037035c8d..8ca511e6f9 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterStorageSpacesDirect.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterStorageSpacesDirect.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterStorageSpacesDirect.cdxml-help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterstoragespacesdirect?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterStorageSpacesDirect diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterStorageSpacesDirectDisk.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterStorageSpacesDirectDisk.md index c74b226230..644d42f11a 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterStorageSpacesDirectDisk.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterStorageSpacesDirectDisk.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterStorageSpacesDirect.cdxml-help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterstoragespacesdirectdisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterStorageSpacesDirectDisk diff --git a/docset/winserver2022-ps/failoverclusters/Start-Cluster.md b/docset/winserver2022-ps/failoverclusters/Start-Cluster.md index 969e021150..2b990db0e7 100644 --- a/docset/winserver2022-ps/failoverclusters/Start-Cluster.md +++ b/docset/winserver2022-ps/failoverclusters/Start-Cluster.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/start-cluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-Cluster diff --git a/docset/winserver2022-ps/failoverclusters/Start-ClusterGroup.md b/docset/winserver2022-ps/failoverclusters/Start-ClusterGroup.md index 78b8bc3c78..c3ac177d95 100644 --- a/docset/winserver2022-ps/failoverclusters/Start-ClusterGroup.md +++ b/docset/winserver2022-ps/failoverclusters/Start-ClusterGroup.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/start-clustergroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-ClusterGroup diff --git a/docset/winserver2022-ps/failoverclusters/Start-ClusterNode.md b/docset/winserver2022-ps/failoverclusters/Start-ClusterNode.md index 082a46c82d..abd7211e5c 100644 --- a/docset/winserver2022-ps/failoverclusters/Start-ClusterNode.md +++ b/docset/winserver2022-ps/failoverclusters/Start-ClusterNode.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/start-clusternode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-ClusterNode diff --git a/docset/winserver2022-ps/failoverclusters/Update-ClusterVirtualMachineConfiguration.md b/docset/winserver2022-ps/failoverclusters/Update-ClusterVirtualMachineConfiguration.md index 2890a80924..9878a539e5 100644 --- a/docset/winserver2022-ps/failoverclusters/Update-ClusterVirtualMachineConfiguration.md +++ b/docset/winserver2022-ps/failoverclusters/Update-ClusterVirtualMachineConfiguration.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/update-clustervirtualmachineconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-ClusterVirtualMachineConfiguration From 80bfb501188a354b9b14f04e429eb518759fd8f3 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Fri, 21 Oct 2022 11:36:16 +0100 Subject: [PATCH 283/965] Updated ms.date metadata --- .../winserver2022-ps/failoverclusters/Start-ClusterResource.md | 2 +- docset/winserver2022-ps/failoverclusters/Stop-Cluster.md | 2 +- docset/winserver2022-ps/failoverclusters/Stop-ClusterGroup.md | 2 +- docset/winserver2022-ps/failoverclusters/Stop-ClusterNode.md | 2 +- .../winserver2022-ps/failoverclusters/Stop-ClusterResource.md | 2 +- docset/winserver2022-ps/failoverclusters/Suspend-ClusterNode.md | 2 +- .../failoverclusters/Suspend-ClusterResource.md | 2 +- docset/winserver2022-ps/failoverclusters/Test-Cluster.md | 2 +- .../failoverclusters/Test-ClusterResourceFailure.md | 2 +- .../failoverclusters/Update-ClusterFunctionalLevel.md | 2 +- .../failoverclusters/Update-ClusterIPResource.md | 2 +- .../failoverclusters/Update-ClusterNetworkNameResource.md | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/Start-ClusterResource.md b/docset/winserver2022-ps/failoverclusters/Start-ClusterResource.md index 3314247df9..32e9f2ef8a 100644 --- a/docset/winserver2022-ps/failoverclusters/Start-ClusterResource.md +++ b/docset/winserver2022-ps/failoverclusters/Start-ClusterResource.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/start-clusterresource?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-ClusterResource diff --git a/docset/winserver2022-ps/failoverclusters/Stop-Cluster.md b/docset/winserver2022-ps/failoverclusters/Stop-Cluster.md index 15a5e3a3f4..440af55564 100644 --- a/docset/winserver2022-ps/failoverclusters/Stop-Cluster.md +++ b/docset/winserver2022-ps/failoverclusters/Stop-Cluster.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/stop-cluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-Cluster diff --git a/docset/winserver2022-ps/failoverclusters/Stop-ClusterGroup.md b/docset/winserver2022-ps/failoverclusters/Stop-ClusterGroup.md index e3768f11aa..6f4f77d8e6 100644 --- a/docset/winserver2022-ps/failoverclusters/Stop-ClusterGroup.md +++ b/docset/winserver2022-ps/failoverclusters/Stop-ClusterGroup.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/stop-clustergroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-ClusterGroup diff --git a/docset/winserver2022-ps/failoverclusters/Stop-ClusterNode.md b/docset/winserver2022-ps/failoverclusters/Stop-ClusterNode.md index a1253fe43e..bc0d293987 100644 --- a/docset/winserver2022-ps/failoverclusters/Stop-ClusterNode.md +++ b/docset/winserver2022-ps/failoverclusters/Stop-ClusterNode.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/stop-clusternode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-ClusterNode diff --git a/docset/winserver2022-ps/failoverclusters/Stop-ClusterResource.md b/docset/winserver2022-ps/failoverclusters/Stop-ClusterResource.md index c3ab7923f7..5f59c132b5 100644 --- a/docset/winserver2022-ps/failoverclusters/Stop-ClusterResource.md +++ b/docset/winserver2022-ps/failoverclusters/Stop-ClusterResource.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/stop-clusterresource?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-ClusterResource diff --git a/docset/winserver2022-ps/failoverclusters/Suspend-ClusterNode.md b/docset/winserver2022-ps/failoverclusters/Suspend-ClusterNode.md index e75888bcf1..22c3b947cc 100644 --- a/docset/winserver2022-ps/failoverclusters/Suspend-ClusterNode.md +++ b/docset/winserver2022-ps/failoverclusters/Suspend-ClusterNode.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/suspend-clusternode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-ClusterNode diff --git a/docset/winserver2022-ps/failoverclusters/Suspend-ClusterResource.md b/docset/winserver2022-ps/failoverclusters/Suspend-ClusterResource.md index 3dccfbecc5..c1e637c1e5 100644 --- a/docset/winserver2022-ps/failoverclusters/Suspend-ClusterResource.md +++ b/docset/winserver2022-ps/failoverclusters/Suspend-ClusterResource.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/suspend-clusterresource?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-ClusterResource diff --git a/docset/winserver2022-ps/failoverclusters/Test-Cluster.md b/docset/winserver2022-ps/failoverclusters/Test-Cluster.md index af451d0e13..57684bee77 100644 --- a/docset/winserver2022-ps/failoverclusters/Test-Cluster.md +++ b/docset/winserver2022-ps/failoverclusters/Test-Cluster.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/test-cluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-Cluster diff --git a/docset/winserver2022-ps/failoverclusters/Test-ClusterResourceFailure.md b/docset/winserver2022-ps/failoverclusters/Test-ClusterResourceFailure.md index fe0c998ff7..e925018de7 100644 --- a/docset/winserver2022-ps/failoverclusters/Test-ClusterResourceFailure.md +++ b/docset/winserver2022-ps/failoverclusters/Test-ClusterResourceFailure.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/test-clusterresourcefailure?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-ClusterResourceFailure diff --git a/docset/winserver2022-ps/failoverclusters/Update-ClusterFunctionalLevel.md b/docset/winserver2022-ps/failoverclusters/Update-ClusterFunctionalLevel.md index 06c07b8b18..20b485a204 100644 --- a/docset/winserver2022-ps/failoverclusters/Update-ClusterFunctionalLevel.md +++ b/docset/winserver2022-ps/failoverclusters/Update-ClusterFunctionalLevel.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/update-clusterfunctionallevel?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-ClusterFunctionalLevel diff --git a/docset/winserver2022-ps/failoverclusters/Update-ClusterIPResource.md b/docset/winserver2022-ps/failoverclusters/Update-ClusterIPResource.md index be77cdef2c..31e2ea4d45 100644 --- a/docset/winserver2022-ps/failoverclusters/Update-ClusterIPResource.md +++ b/docset/winserver2022-ps/failoverclusters/Update-ClusterIPResource.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/update-clusteripresource?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-ClusterIPResource diff --git a/docset/winserver2022-ps/failoverclusters/Update-ClusterNetworkNameResource.md b/docset/winserver2022-ps/failoverclusters/Update-ClusterNetworkNameResource.md index bc0b06a728..88b3b9797c 100644 --- a/docset/winserver2022-ps/failoverclusters/Update-ClusterNetworkNameResource.md +++ b/docset/winserver2022-ps/failoverclusters/Update-ClusterNetworkNameResource.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/update-clusternetworknameresource?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-ClusterNetworkNameResource From 327f60f8d4af40965285429ac4a4846be4de8a87 Mon Sep 17 00:00:00 2001 From: "Mikey Lombardi (He/Him)" Date: Fri, 21 Oct 2022 16:33:41 -0500 Subject: [PATCH 284/965] Apply suggestions from code review --- docset/winserver2022-ps/failoverclusters/Test-Cluster.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docset/winserver2022-ps/failoverclusters/Test-Cluster.md b/docset/winserver2022-ps/failoverclusters/Test-Cluster.md index 57684bee77..6ada752107 100644 --- a/docset/winserver2022-ps/failoverclusters/Test-Cluster.md +++ b/docset/winserver2022-ps/failoverclusters/Test-Cluster.md @@ -229,10 +229,14 @@ offline or failed state. The acceptable values for this parameter are: - Int32, Int64, Uint32, Uint64. A number that represents a master boot record (MBR) signature of the disk. + - **System.String**. A string that represents a master boot record (MBR) signature of the disk, hexadecimal format is supported. + - **System.String**. A string that represents the GUID of a GPT disk. + - **ClusterResource**. A cluster resource object that represents a clustered disk. + - **CimInstance#MSFT_Disk**. An object returned from Get-Disk, from the Windows PowerShell® storage module. @@ -358,7 +362,9 @@ all storage pools that are available for use in the cluster or that are in the c offline or failed state. The acceptable values for this parameter are: - **System.String**: A string that represents the name of the clustered storage pool or pools. + - **ClusterResource**: A cluster resource object that represents a clustered storage pool. + - **CimInstance#MSFT_StoragePool**: An object returned from **Get-StoragePool**, from the Windows PowerShell storage module. From bbc4c8405b1bafd2d40703e30f14bf867c00110d Mon Sep 17 00:00:00 2001 From: "Mikey Lombardi (He/Him)" Date: Fri, 21 Oct 2022 16:35:27 -0500 Subject: [PATCH 285/965] Apply suggestions from code review --- .../Move-ClusterVirtualMachineRole.md | 20 +++++++++---------- .../failoverclusters/New-Cluster.md | 2 ++ 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/Move-ClusterVirtualMachineRole.md b/docset/winserver2022-ps/failoverclusters/Move-ClusterVirtualMachineRole.md index edf4cbf248..c196d49dd1 100644 --- a/docset/winserver2022-ps/failoverclusters/Move-ClusterVirtualMachineRole.md +++ b/docset/winserver2022-ps/failoverclusters/Move-ClusterVirtualMachineRole.md @@ -161,20 +161,20 @@ Accept wildcard characters: False Specifies the type of migration to perform for the virtual machine. The options are as follows: - -- Live: Transparently migrates the virtual machine without a dropped network connection or - perceived downtime. +- `Live`: Transparently migrates the virtual machine without a dropped network connection or + perceived downtime. - -- Quick: Rapidly migrates a running virtual machine with minimal downtime. +- `Quick`: Rapidly migrates a running virtual machine with minimal downtime. - -- Shutdown: Performs an orderly shutdown of the operating system (waiting for all processes to - close) on the virtual machine, and then migrates the virtual machine. +- `Shutdown`: Performs an orderly shutdown of the operating system (waiting for all processes to + close) on the virtual machine, and then migrates the virtual machine. - -- ShutdownForce: Shuts down the operating system on the virtual machine without waiting for slower - processes to finish, and then migrates the virtual machine. +- `ShutdownForce`: Shuts down the operating system on the virtual machine without waiting for slower + processes to finish, and then migrates the virtual machine. - -- TurnOff: Turns off the virtual machine without shutting down the operating system first, then - migrates the virtual machine. This is the same as turning off the power, which means that data loss - may occur. +- `TurnOff`: Turns off the virtual machine without shutting down the operating system first, then + migrates the virtual machine. This is the same as turning off the power, which means that data + loss may occur. ```yaml Type: VmMigrationType diff --git a/docset/winserver2022-ps/failoverclusters/New-Cluster.md b/docset/winserver2022-ps/failoverclusters/New-Cluster.md index c97f2a99d2..cd6b937552 100644 --- a/docset/winserver2022-ps/failoverclusters/New-Cluster.md +++ b/docset/winserver2022-ps/failoverclusters/New-Cluster.md @@ -124,8 +124,10 @@ acceptable values for this parameter are: - ActiveDirectoryAndDns. The cmdlet creates an administrative access point for the cluster. The administrative access point is registered in DNS and enabled in Active Directory Domain Services. + - Dns. The cmdlet creates an administrative access point for the cluster. The administrative access point is registered in DNS but is not enabled in Active Directory Domain Services. + - None. The cmdlet does not create an administrative access point for the cluster. Some clustered roles and From 22219d499afce32b6b656efed8df52191d300728 Mon Sep 17 00:00:00 2001 From: "Mikey Lombardi (He/Him)" Date: Fri, 21 Oct 2022 16:36:50 -0500 Subject: [PATCH 286/965] Apply suggestions from code review --- .../failoverclusters/Set-ClusterParameter.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterParameter.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterParameter.md index 5bcaa75310..1f0c7baa0f 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterParameter.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterParameter.md @@ -42,15 +42,15 @@ Set-ClusterParameter [-InputObject ] [[-Multiple] ] [-Creat The **Set-ClusterParameter** cmdlet controls specific properties of an object in a failover cluster, such as a resource, a group, or a network. - -- For a disk resource, you can set the disk signature or GUID of a disk, and turn maintenance on - or off for that disk. +- For a disk resource, you can set the disk signature or GUID of a disk, and turn maintenance on + or off for that disk. - -- For a Network Name resource, you can set DNS-related information about the resource. +- For a Network Name resource, you can set DNS-related information about the resource. - -- For an IP address resource, you can set DHCP-related information about the IP Address resource. +- For an IP address resource, you can set DHCP-related information about the IP Address resource. - -- For resources used by virtual machines, you can set details about the settings for the virtual - machines. +- For resources used by virtual machines, you can set details about the settings for the virtual + machines. ## EXAMPLES From 330c3163c56622dcb1401a18fba81b4b4ea8ae0c Mon Sep 17 00:00:00 2001 From: Nathan Bills Date: Fri, 21 Oct 2022 16:42:16 -0700 Subject: [PATCH 287/965] Update New-CIPolicy.md Fixing a typo (pretty sure) :) --- docset/winserver2022-ps/configci/New-CIPolicy.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/configci/New-CIPolicy.md b/docset/winserver2022-ps/configci/New-CIPolicy.md index 87b1b0492d..23254261bb 100644 --- a/docset/winserver2022-ps/configci/New-CIPolicy.md +++ b/docset/winserver2022-ps/configci/New-CIPolicy.md @@ -36,7 +36,7 @@ New-CIPolicy [-FilePath] -Rules [-Audit] [-ScanPath ] The **New-CIPolicy** cmdlet creates a Code Integrity policy as an .xml file. If you specify **DriverFile** objects, this cmdlet generates rules based on the **Level** parameter. -This cmdlet creates a policy based on those rules for the specified drive files. +This cmdlet creates a policy based on those rules for the specified driver files. If you specify **Rule** objects, this cmdlet creates a policy based on those objects. Because the rules that you specify are created at a specific level, do not specify a level. From 229387ad82f796be05486324211409fd26f0fd42 Mon Sep 17 00:00:00 2001 From: Sean Wheeler Date: Tue, 25 Oct 2022 09:56:48 -0500 Subject: [PATCH 288/965] Add missing frontmatter separator --- .../failoverclusters/Remove-ClusterGroupFromSet.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromSet.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromSet.md index 84ef5267d7..423a405ec2 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromSet.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromSet.md @@ -1,4 +1,4 @@ - +--- description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterCollection.cdxml-help.xml Module Name: FailoverClusters From 9e2dd5b9fa899af3d3fc2ad0a5d9031db26e0a9b Mon Sep 17 00:00:00 2001 From: Sean Wheeler Date: Wed, 26 Oct 2022 12:57:00 -0500 Subject: [PATCH 289/965] Remove links to WMF4 download --- docset/winserver2012-ps/dism/Dism.md | 51 +++++++++++++++++++------- docset/winserver2012r2-ps/dism/DISM.md | 47 ++++++++++++++++++------ docset/winserver2016-ps/dism/DISM.md | 35 ++++++++++++------ docset/winserver2019-ps/dism/DISM.md | 35 ++++++++++++------ docset/winserver2022-ps/dism/DISM.md | 22 ++--------- 5 files changed, 122 insertions(+), 68 deletions(-) diff --git a/docset/winserver2012-ps/dism/Dism.md b/docset/winserver2012-ps/dism/Dism.md index 970c1fe06e..85cb92a24e 100644 --- a/docset/winserver2012-ps/dism/Dism.md +++ b/docset/winserver2012-ps/dism/Dism.md @@ -6,22 +6,44 @@ Module Guid: 389c464d-8b8d-48e9-aafe-6d8a590d6798 Module Name: DISM --- -# Dism Module -## Description -The Deployment Image Servicing and Management (DISM) platform is used to mount and service Windows images before deployment. A subset of DISM commands can be used on online Windows images. You can use DISM tools to mount, and get information about, Windows image (.wim) files or virtual hard disks (.vhd or .vhdx). You can also use it to install, uninstall, configure, and update Windows features, packages, and drivers in a Windows image or to change the edition of a Windows image. - -This topic introduces the DISM cmdlets available in the DISM PowerShell module. This module is available in Windows 8.1 and Windows Server 2012 R2. On other supported operating systems, you can install the DISM module from the [Windows Assessment and Deployment Kit (Windows ADK)](https://go.microsoft.com/fwlink/?LinkId=206587). For more information about how to use the DISM PowerShell module installed with the ADK, see [How to Use DISM in Windows PowerShell](https://go.microsoft.com/fwlink/?LinkId=239927). - -For Windows 8.1 and Windows Server 2012 R2, Windows PowerShell 4.0 is included in the installation. For other supported versions of Windows and Windows Server, (including Windows 8, Windows 7 SP1, Windows Server 2012, and Windows Server 2008 R2 SP1), you must install Windows Management Framework 4.0. You can download and install [Windows Management Framework 4.0](https://go.microsoft.com/fwlink/?LinkId=293881) from the Microsoft Download Center. - -The DISM platform also includes a command-line tool, DISM.exe, and the [DISM API](https://go.microsoft.com/fwlink/?LinkID=237611). The command-line tool is available in the [Windows Assessment and Deployment Kit (Windows ADK)](https://go.microsoft.com/fwlink/?LinkId=206587) and includes additional functionality that supports servicing commands for international settings. +# DISM Module -You can check for errors when running DISM cmdlets by checking if the $?. If set to True the last operation succeeded. If False the last operation failed. The $LASTEXITCODE contains the exit code of the last Win32 executable run. For example, to check that the **Get-WindowsImage** cmdlet fails to get information about the Windows image contained in the file, E:\images\c.wim, type the following: +## Description -``` +The Deployment Image Servicing and Management (DISM) platform is used to mount and service Windows +images before deployment. A subset of DISM commands can be used on online Windows images. You can +use DISM tools to mount, and get information about, Windows image (`.wim`) files or virtual hard +disks (`.vhd` or `.vhdx`). You can also use it to install, uninstall, configure, and update Windows +features, packages, and drivers in a Windows image or to change the edition of a Windows image. + +This topic introduces the DISM cmdlets available in the DISM PowerShell module. This module is +available in Windows 8.1 and Windows Server 2012 R2. On other supported operating systems, you can +install the DISM module from the +[Windows Assessment and Deployment Kit (Windows ADK)](https://go.microsoft.com/fwlink/?LinkId=206587). +For more information about how to use the DISM PowerShell module installed with the ADK, see +[How to Use DISM in Windows PowerShell](https://go.microsoft.com/fwlink/?LinkId=239927). + +For Windows 8.1 and Windows Server 2012 R2, Windows PowerShell 4.0 is included in the installation. +For other supported versions of Windows and Windows Server, (including Windows 8, Windows 7 SP1, +Windows Server 2012, and Windows Server 2008 R2 SP1), you must install the latest Windows Management +Framework. + +The DISM platform also includes a command-line tool, DISM.exe, and the +[DISM API](https://go.microsoft.com/fwlink/?LinkID=237611). The command-line tool is available in +the +[Windows Assessment and Deployment Kit (Windows ADK)](https://go.microsoft.com/fwlink/?LinkId=206587) +and includes additional functionality that supports servicing commands for international settings. + +You can check for errors when running DISM cmdlets by checking if the `$?`. If set to True the last +operation succeeded. If False the last operation failed. The `$LASTEXITCODE` contains the exit code +of the last Win32 executable run. For example, to check that the `Get-WindowsImage` cmdlet fails to +get information about the Windows image contained in the file, `E:\images\c.wim`, type the +following: + +```powershell try { - + Get-WindowsImage -ImagePath E:\images\c.wim } catch @@ -32,9 +54,10 @@ catch ``` -For more information about error handling, see the [about_Try_Catch_Finally](https://go.microsoft.com/fwlink/p/?LinkID=317390). +For more information about error handling, see the +[about_Try_Catch_Finally](https://go.microsoft.com/fwlink/p/?LinkID=317390). -## Dism Cmdlets +## DISM Cmdlets ### [Add-AppxProvisionedPackage](./Add-AppxProvisionedPackage.md) Adds an app package (.appx) that will install for each new user to a Windows image. diff --git a/docset/winserver2012r2-ps/dism/DISM.md b/docset/winserver2012r2-ps/dism/DISM.md index 608b04453a..25fad49bfc 100644 --- a/docset/winserver2012r2-ps/dism/DISM.md +++ b/docset/winserver2012r2-ps/dism/DISM.md @@ -9,21 +9,43 @@ title: DISM --- # DISM Module -## Description -The Deployment Image Servicing and Management (DISM) platform is used to mount and service Windows images before deployment. A subset of DISM commands can be used on online Windows images. You can use DISM tools to mount, and get information about, Windows image (.wim) files or virtual hard disks (.vhd or .vhdx). You can also use it to install, uninstall, configure, and update Windows features, packages, and drivers in a Windows image or to change the edition of a Windows image. - -This topic introduces the DISM cmdlets available in the DISM PowerShell module. This module is available in Windows 8.1 and Windows Server 2012 R2. On other supported operating systems, you can install the DISM module from the [Windows Assessment and Deployment Kit (Windows ADK)](https://go.microsoft.com/fwlink/?LinkId=206587). For more information about how to use the DISM PowerShell module installed with the ADK, see [How to Use DISM in Windows PowerShell](https://go.microsoft.com/fwlink/?LinkId=239927). - -For Windows 8.1 and Windows Server 2012 R2, Windows PowerShell 4.0 is included in the installation. For other supported versions of Windows and Windows Server, (including Windows 8, Windows 7 SP1, Windows Server 2012, and Windows Server 2008 R2 SP1), you must install Windows Management Framework 4.0. You can download and install [Windows Management Framework 4.0](https://go.microsoft.com/fwlink/?LinkId=293881) from the Microsoft Download Center. - -The DISM platform also includes a command-line tool, DISM.exe, and the [DISM API](https://go.microsoft.com/fwlink/?LinkID=237611). The command-line tool is available in the [Windows Assessment and Deployment Kit (Windows ADK)](https://go.microsoft.com/fwlink/?LinkId=206587) and includes additional functionality that supports servicing commands for international settings. -You can check for errors when running DISM cmdlets by checking if the $?. If set to True the last operation succeeded. If False the last operation failed. The $LASTEXITCODE contains the exit code of the last Win32 executable run. For example, to check that the **Get-WindowsImage** cmdlet fails to get information about the Windows image contained in the file, E:\images\c.wim, type the following: +## Description -``` +The Deployment Image Servicing and Management (DISM) platform is used to mount and service Windows +images before deployment. A subset of DISM commands can be used on online Windows images. You can +use DISM tools to mount, and get information about, Windows image (`.wim`) files or virtual hard +disks (`.vhd` or `.vhdx`). You can also use it to install, uninstall, configure, and update Windows +features, packages, and drivers in a Windows image or to change the edition of a Windows image. + +This topic introduces the DISM cmdlets available in the DISM PowerShell module. This module is +available in Windows 8.1 and Windows Server 2012 R2. On other supported operating systems, you can +install the DISM module from the +[Windows Assessment and Deployment Kit (Windows ADK)](https://go.microsoft.com/fwlink/?LinkId=206587). +For more information about how to use the DISM PowerShell module installed with the ADK, see +[How to Use DISM in Windows PowerShell](https://go.microsoft.com/fwlink/?LinkId=239927). + +For Windows 8.1 and Windows Server 2012 R2, Windows PowerShell 4.0 is included in the installation. +For other supported versions of Windows and Windows Server, (including Windows 8, Windows 7 SP1, +Windows Server 2012, and Windows Server 2008 R2 SP1), you must install the latest Windows Management +Framework. + +The DISM platform also includes a command-line tool, DISM.exe, and the +[DISM API](https://go.microsoft.com/fwlink/?LinkID=237611). The command-line tool is available in +the +[Windows Assessment and Deployment Kit (Windows ADK)](https://go.microsoft.com/fwlink/?LinkId=206587) +and includes additional functionality that supports servicing commands for international settings. + +You can check for errors when running DISM cmdlets by checking if the `$?`. If set to True the last +operation succeeded. If False the last operation failed. The `$LASTEXITCODE` contains the exit code +of the last Win32 executable run. For example, to check that the `Get-WindowsImage` cmdlet fails to +get information about the Windows image contained in the file, `E:\images\c.wim`, type the +following: + +```powershell try { - + Get-WindowsImage -ImagePath E:\images\c.wim } catch @@ -34,7 +56,8 @@ catch ``` -For more information about error handling, see the [about_Try_Catch_Finally](https://go.microsoft.com/fwlink/p/?LinkID=317390). +For more information about error handling, see the +[about_Try_Catch_Finally](https://go.microsoft.com/fwlink/p/?LinkID=317390). ## DISM Cmdlets ### [Add-AppxProvisionedPackage](./Add-AppxProvisionedPackage.md) diff --git a/docset/winserver2016-ps/dism/DISM.md b/docset/winserver2016-ps/dism/DISM.md index 0b71318b94..97ff2cd3a9 100644 --- a/docset/winserver2016-ps/dism/DISM.md +++ b/docset/winserver2016-ps/dism/DISM.md @@ -10,21 +10,31 @@ title: DISM --- # DISM Module -## Description -The Deployment Image Servicing and Management (DISM) platform is used to mount and service Windows images before deployment. A subset of DISM commands can be used on online Windows images. You can use DISM tools to mount, and get information about, Windows image (.wim) files or virtual hard disks (.vhd or .vhdx). You can also use it to install, uninstall, configure, and update Windows features, packages, and drivers in a Windows image or to change the edition of a Windows image. - -This topic introduces the DISM cmdlets available in the DISM PowerShell module. This module is available in Windows 8.1 and Windows Server 2012 R2. On other supported operating systems, you can install the DISM module from the [Windows Assessment and Deployment Kit (Windows ADK)](https://go.microsoft.com/fwlink/?LinkId=206587). For more information about how to use the DISM PowerShell module installed with the ADK, see [How to Use DISM in Windows PowerShell](https://go.microsoft.com/fwlink/?LinkId=239927). - -For Windows 8.1 and Windows Server 2012 R2, Windows PowerShell 4.0 is included in the installation. For other supported versions of Windows and Windows Server, (including Windows 8, Windows 7 SP1, Windows Server 2012, and Windows Server 2008 R2 SP1), you must install Windows Management Framework 4.0. You can download and install [Windows Management Framework 4.0](https://go.microsoft.com/fwlink/?LinkId=293881) from the Microsoft Download Center. - -The DISM platform also includes a command-line tool, DISM.exe, and the [DISM API](https://go.microsoft.com/fwlink/?LinkID=237611). The command-line tool is available in the [Windows Assessment and Deployment Kit (Windows ADK)](https://go.microsoft.com/fwlink/?LinkId=206587) and includes additional functionality that supports servicing commands for international settings. -You can check for errors when running DISM cmdlets by checking if the $?. If set to True the last operation succeeded. If False the last operation failed. The $LASTEXITCODE contains the exit code of the last Win32 executable run. For example, to check that the **Get-WindowsImage** cmdlet fails to get information about the Windows image contained in the file, E:\images\c.wim, type the following: +## Description -``` +The Deployment Image Servicing and Management (DISM) platform is used to mount and service Windows +images before deployment. A subset of DISM commands can be used on online Windows images. You can +use DISM tools to mount, and get information about, Windows image (`.wim`) files or virtual hard +disks (`.vhd` or `.vhdx`). You can also use it to install, uninstall, configure, and update Windows +features, packages, and drivers in a Windows image or to change the edition of a Windows image. + +The DISM platform also includes a command-line tool, DISM.exe, and the +[DISM API](https://go.microsoft.com/fwlink/?LinkID=237611). The command-line tool is available in +the +[Windows Assessment and Deployment Kit (Windows ADK)](https://go.microsoft.com/fwlink/?LinkId=206587) +and includes additional functionality that supports servicing commands for international settings. + +You can check for errors when running DISM cmdlets by checking if the `$?`. If set to True the last +operation succeeded. If False the last operation failed. The `$LASTEXITCODE` contains the exit code +of the last Win32 executable run. For example, to check that the `Get-WindowsImage` cmdlet fails to +get information about the Windows image contained in the file, `E:\images\c.wim`, type the +following: + +```powershell try { - + Get-WindowsImage -ImagePath E:\images\c.wim } catch @@ -35,7 +45,8 @@ catch ``` -For more information about error handling, see the [about_Try_Catch_Finally](https://go.microsoft.com/fwlink/p/?LinkID=317390). +For more information about error handling, see the +[about_Try_Catch_Finally](https://go.microsoft.com/fwlink/p/?LinkID=317390). ## DISM Cmdlets ### [Add-AppxProvisionedPackage](./Add-AppxProvisionedPackage.md) diff --git a/docset/winserver2019-ps/dism/DISM.md b/docset/winserver2019-ps/dism/DISM.md index 5580944bd1..4773a9d7a1 100644 --- a/docset/winserver2019-ps/dism/DISM.md +++ b/docset/winserver2019-ps/dism/DISM.md @@ -10,21 +10,31 @@ title: DISM --- # DISM Module -## Description -The Deployment Image Servicing and Management (DISM) platform is used to mount and service Windows images before deployment. A subset of DISM commands can be used on online Windows images. You can use DISM tools to mount, and get information about, Windows image (.wim) files or virtual hard disks (.vhd or .vhdx). You can also use it to install, uninstall, configure, and update Windows features, packages, and drivers in a Windows image or to change the edition of a Windows image. - -This topic introduces the DISM cmdlets available in the DISM PowerShell module. This module is available in Windows 8.1 and Windows Server 2012 R2. On other supported operating systems, you can install the DISM module from the [Windows Assessment and Deployment Kit (Windows ADK)](https://go.microsoft.com/fwlink/?LinkId=206587). For more information about how to use the DISM PowerShell module installed with the ADK, see [How to Use DISM in Windows PowerShell](https://go.microsoft.com/fwlink/?LinkId=239927). - -For Windows 8.1 and Windows Server 2012 R2, Windows PowerShell 4.0 is included in the installation. For other supported versions of Windows and Windows Server, (including Windows 8, Windows 7 SP1, Windows Server 2012, and Windows Server 2008 R2 SP1), you must install Windows Management Framework 4.0. You can download and install [Windows Management Framework 4.0](https://go.microsoft.com/fwlink/?LinkId=293881) from the Microsoft Download Center. - -The DISM platform also includes a command-line tool, DISM.exe, and the [DISM API](https://go.microsoft.com/fwlink/?LinkID=237611). The command-line tool is available in the [Windows Assessment and Deployment Kit (Windows ADK)](https://go.microsoft.com/fwlink/?LinkId=206587) and includes additional functionality that supports servicing commands for international settings. -You can check for errors when running DISM cmdlets by checking if the $?. If set to True the last operation succeeded. If False the last operation failed. The $LASTEXITCODE contains the exit code of the last Win32 executable run. For example, to check that the **Get-WindowsImage** cmdlet fails to get information about the Windows image contained in the file, E:\images\c.wim, type the following: +## Description -``` +The Deployment Image Servicing and Management (DISM) platform is used to mount and service Windows +images before deployment. A subset of DISM commands can be used on online Windows images. You can +use DISM tools to mount, and get information about, Windows image (`.wim`) files or virtual hard +disks (`.vhd` or `.vhdx`). You can also use it to install, uninstall, configure, and update Windows +features, packages, and drivers in a Windows image or to change the edition of a Windows image. + +The DISM platform also includes a command-line tool, DISM.exe, and the +[DISM API](https://go.microsoft.com/fwlink/?LinkID=237611). The command-line tool is available in +the +[Windows Assessment and Deployment Kit (Windows ADK)](https://go.microsoft.com/fwlink/?LinkId=206587) +and includes additional functionality that supports servicing commands for international settings. + +You can check for errors when running DISM cmdlets by checking if the `$?`. If set to True the last +operation succeeded. If False the last operation failed. The `$LASTEXITCODE` contains the exit code +of the last Win32 executable run. For example, to check that the `Get-WindowsImage` cmdlet fails to +get information about the Windows image contained in the file, `E:\images\c.wim`, type the +following: + +```powershell try { - + Get-WindowsImage -ImagePath E:\images\c.wim } catch @@ -35,7 +45,8 @@ catch ``` -For more information about error handling, see the [about_Try_Catch_Finally](https://go.microsoft.com/fwlink/p/?LinkID=317390). +For more information about error handling, see the +[about_Try_Catch_Finally](https://go.microsoft.com/fwlink/p/?LinkID=317390). ## DISM Cmdlets ### [Add-AppxProvisionedPackage](./Add-AppxProvisionedPackage.md) diff --git a/docset/winserver2022-ps/dism/DISM.md b/docset/winserver2022-ps/dism/DISM.md index d410be9447..d9c7d88230 100644 --- a/docset/winserver2022-ps/dism/DISM.md +++ b/docset/winserver2022-ps/dism/DISM.md @@ -15,23 +15,9 @@ title: DISM The Deployment Image Servicing and Management (DISM) platform is used to mount and service Windows images before deployment. A subset of DISM commands can be used on online Windows images. You can -use DISM tools to mount, and get information about, Windows image (.wim) files or virtual hard disks -(.vhd or .vhdx). You can also use it to install, uninstall, configure, and update Windows features, -packages, and drivers in a Windows image or to change the edition of a Windows image. - -This topic introduces the DISM cmdlets available in the DISM PowerShell module. This module is -available in Windows 8.1 and Windows Server 2012 R2. On other supported operating systems, you can -install the DISM module from the -[Windows Assessment and Deployment Kit (Windows ADK)](https://go.microsoft.com/fwlink/?LinkId=206587). -For more information about how to use the DISM PowerShell module installed with the ADK, see -[How to Use DISM in Windows PowerShell](https://go.microsoft.com/fwlink/?LinkId=239927). - -For Windows 8.1 and Windows Server 2012 R2, Windows PowerShell 4.0 is included in the installation. -For other supported versions of Windows and Windows Server, (including Windows 8, Windows 7 SP1, -Windows Server 2012, and Windows Server 2008 R2 SP1), you must install Windows Management Framework -4.0. You can download and install -[Windows Management Framework 4.0](https://go.microsoft.com/fwlink/?LinkId=293881) from the -Microsoft Download Center. +use DISM tools to mount, and get information about, Windows image (`.wim`) files or virtual hard +disks (`.vhd` or `.vhdx`). You can also use it to install, uninstall, configure, and update Windows +features, packages, and drivers in a Windows image or to change the edition of a Windows image. The DISM platform also includes a command-line tool, DISM.exe, and the [DISM API](https://go.microsoft.com/fwlink/?LinkID=237611). The command-line tool is available in @@ -45,7 +31,7 @@ of the last Win32 executable run. For example, to check that the `Get-WindowsIma get information about the Windows image contained in the file, `E:\images\c.wim`, type the following: -``` +```powershell try { From fdbaa68fb4052bb31bbd352c0ee53af393a92940 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Wed, 14 Sep 2022 13:57:17 +0100 Subject: [PATCH 290/965] Editorial checklist applied --- .../failoverclusters/Test-Cluster.md | 105 ++++++++++++++++-- 1 file changed, 95 insertions(+), 10 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/Test-Cluster.md b/docset/winserver2022-ps/failoverclusters/Test-Cluster.md index 6ada752107..6829580db6 100644 --- a/docset/winserver2022-ps/failoverclusters/Test-Cluster.md +++ b/docset/winserver2022-ps/failoverclusters/Test-Cluster.md @@ -17,6 +17,7 @@ Runs validation tests for failover cluster hardware and settings. ``` Test-Cluster [[-Node] ] [-Disk ] [-Pool ] +<<<<<<< HEAD [-ReportName ] [-List] [-Include ] [-Ignore ] [-Force] [-InputObject ] [-Cluster ] [-WhatIf] [-Confirm] [] ``` @@ -26,40 +27,66 @@ Test-Cluster [[-Node] ] [-Disk ] [-Pool ] The **Test-Cluster** cmdlet runs validation tests for failover cluster hardware and settings. Tests can be run both before and after a cluster is set up. +======= +[-ReportName ] [-List] [-Include ] [-Ignore ] [-Force] +[-InputObject ] [-Cluster ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The `Test-Cluster` cmdlet runs validation tests for failover cluster hardware and settings. +Tests can be run both before and after a cluster is set up. + +>>>>>>> 680607f67 (Editorial checklist applied) Test results are captured in a file with the file name that you specify. By running the validation tests, you can confirm that your hardware and settings are compatible with Failover Clustering. There are multiple types of tests, including Cluster, Inventory, Network, Storage, System, and other types of tests. Storage tests will not test online disks or storage pools that are in use by a +<<<<<<< HEAD clustered role. To test such disks, first run **Stop-ClusterGroup** to stop the clustered role, and then run **Test-Cluster**. After the tests are done, start the clustered roles, also known as +======= +clustered role. To test such disks, first run `Stop-ClusterGroup` to stop the clustered role, and +then run `Test-Cluster`. After the tests are done, start the clustered roles, also known as +>>>>>>> 680607f67 (Editorial checklist applied) resource groups, again. ## EXAMPLES ### Example 1: Validate local cluster +<<<<<<< HEAD ``` PS C:\> Test-Cluster Mode LastWriteTime Length Name ---- ------------- ------ ---- -a--- 10/10/2008 6:31 PM 1132255 Test-Cluster on 2008.10.10 At 18.22.53.mht +======= +```powershell +Test-Cluster +>>>>>>> 680607f67 (Editorial checklist applied) ``` This example runs all applicable cluster validation tests on the local cluster. ### Example 2: Validate specified nodes +<<<<<<< HEAD ``` PS C:\> Test-Cluster -Node "node1", "node2" Mode LastWriteTime Length Name ---- ------------- ------ ---- -a--- 10/10/2008 6:18 PM 998032 Test-Cluster on 2008.10.10 At 18.08.24.mht +======= +```powershell +Test-Cluster -Node "node1", "node2" +>>>>>>> 680607f67 (Editorial checklist applied) ``` This example runs all cluster validation tests on the nodes named node1 and node2. If either node1 or node2 is already a member of a cluster, then the tests will include all nodes in that cluster. ### Example 3: View tests and categories in cluster validation +<<<<<<< HEAD ``` PS C:\> Test-Cluster -List @@ -143,18 +170,35 @@ PS C:\> Test-Cluster -Node "node1", "node2" -Include "Storage" Mode LastWriteTime Length Name ---- ------------- ------ ---- -a--- 10/10/2008 6:20 PM 37818 Test-Cluster on 2008.10.10 At 18.20.52.mht +======= +```powershell +Test-Cluster -List +``` + +This example lists the names of all tests and categories in cluster validation. Specify these test +names with **Ignore** or **Include** parameters to run specific tests. + +### Example 4: Validate specified nodes for storage +```powershell +Test-Cluster -Node "node1", "node2" -Include "Storage" +>>>>>>> 680607f67 (Editorial checklist applied) ``` This example runs the storage validation tests on the nodes named node1 and node2. If either node1 or node2 is already a member of a cluster, then the tests will include all nodes in that cluster. ### Example 5: Validate specified nodes for everything except inventory +<<<<<<< HEAD ``` PS C:\> Test-Cluster -Node "node1", "node2" -Ignore Inventory Mode LastWriteTime Length Name ---- ------------- ------ ---- -a--- 10/10/2008 6:20 PM 732889 Test-Cluster on 2008.10.10 At 18.19.47.mht +======= +```powershell +Test-Cluster -Node "node1", "node2" -Ignore Inventory +>>>>>>> 680607f67 (Editorial checklist applied) ``` This example runs all validation tests except the Inventory tests on the nodes named node1 and @@ -162,31 +206,45 @@ node2. If either node1 or node2 is already a member of a cluster, then the tests nodes in that cluster. ### Example 6: Run a specific test +<<<<<<< HEAD ``` PS C:\> Test-Cluster -Include "List Potential Cluster Disks" Mode LastWriteTime Length Name ---- ------------- ------ ---- -a--- 10/15/2008 2:58 PM 36119 Test-Cluster on 2008.10.15 At 14.58.44.mht +======= +```powershell +Test-Cluster -Include "List Potential Cluster Disks" +>>>>>>> 680607f67 (Editorial checklist applied) ``` This example runs the test called List Potential Cluster Disks on the local cluster. ### Example 7: Run multiple tests +<<<<<<< HEAD ``` PS C:\> Test-Cluster -Include "List System Drivers","List Unsigned Drivers" Mode LastWriteTime Length Name ---- ------------- ------ ---- -a--- 10/15/2008 3:00 PM 266571 Test-Cluster on 2008.10.15 At 15.00.08.mht +======= +```powershell +Test-Cluster -Include "List System Drivers","List Unsigned Drivers" +>>>>>>> 680607f67 (Editorial checklist applied) ``` -This example runs the tests called List System Drivers and List Unsigned Drivers on the local cluster. +This example runs the tests called List System Drivers and List Unsigned Drivers on the local +cluster. ## PARAMETERS ### -Cluster +<<<<<<< HEAD +======= +>>>>>>> 680607f67 (Editorial checklist applied) Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. @@ -219,24 +277,21 @@ Accept wildcard characters: False ``` ### -Disk - Specifies the disk number or disks for which to run the cmdlet. If the specified disk is online and -is assigned to a clustered role or Cluster Shared Volume, you must also specify the *Force* +is assigned to a clustered role or Cluster Shared Volume, you must also specify the **Force** parameter to take the disk offline for the duration of the storage tests. Otherwise, the specified -disk must be offline before the cmdlet is run. If the *Disk* parameter is not specified, storage +disk must be offline before the cmdlet is run. If the **Disk** parameter is not specified, storage tests run on all disks that are available for use in the cluster or that are in the cluster resource -offline or failed state. The acceptable values for this parameter are: +offline or failed state. -- Int32, Int64, Uint32, Uint64. A number that represents a master boot record (MBR) signature of the - disk. +The acceptable values for this parameter are: +- **Int32, Int64, Uint32, Uint64**. A number that represents a master boot record (MBR) signature of + the disk. - **System.String**. A string that represents a master boot record (MBR) signature of the disk, hexadecimal format is supported. - - **System.String**. A string that represents the GUID of a GPT disk. - - **ClusterResource**. A cluster resource object that represents a clustered disk. - - **CimInstance#MSFT_Disk**. An object returned from Get-Disk, from the Windows PowerShell® storage module. @@ -269,7 +324,10 @@ Accept wildcard characters: False ``` ### -Ignore +<<<<<<< HEAD +======= +>>>>>>> 680607f67 (Editorial checklist applied) Specifies which tests or category of tests to ignore during the validation test run. All others tests or category of tests will run. @@ -286,7 +344,10 @@ Accept wildcard characters: False ``` ### -Include +<<<<<<< HEAD +======= +>>>>>>> 680607f67 (Editorial checklist applied) Specifies which tests or category of tests to include during the validation test run. Only the tests or category of tests specified here will run. @@ -319,7 +380,10 @@ Accept wildcard characters: False ``` ### -List +<<<<<<< HEAD +======= +>>>>>>> 680607f67 (Editorial checklist applied) Causes the cmdlet to list the tests and test categories. No tests will run on the servers or cluster nodes. @@ -352,6 +416,7 @@ Accept wildcard characters: False ``` ### -Pool +<<<<<<< HEAD Specifies the clustered storage pool or pools for which to run the cmdlet. When the specified storage pool is online and a virtual disk in the storage pool is assigned to a clustered role or @@ -365,6 +430,20 @@ offline or failed state. The acceptable values for this parameter are: - **ClusterResource**: A cluster resource object that represents a clustered storage pool. +======= +Specifies the clustered storage pool or pools for which to run the cmdlet. When the specified +storage pool is online and a virtual disk in the storage pool is assigned to a clustered role or +Cluster Shared Volume, you must also specify the **Force** parameter to take the storage pool +offline for the duration of the storage tests. Otherwise, the specified storage pool must be taken +offline before the storage tests. If the **Pool** parameter is not specified, storage tests run on +all storage pools that are available for use in the cluster or that are in the cluster resource +offline or failed state. + +The acceptable values for this parameter are: + +- **System.String**: A string that represents the name of the clustered storage pool or pools. +- **ClusterResource**: A cluster resource object that represents a clustered storage pool. +>>>>>>> 680607f67 (Editorial checklist applied) - **CimInstance#MSFT_StoragePool**: An object returned from **Get-StoragePool**, from the Windows PowerShell storage module. @@ -397,7 +476,10 @@ Accept wildcard characters: False ``` ### -WhatIf +<<<<<<< HEAD +======= +>>>>>>> 680607f67 (Editorial checklist applied) Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml @@ -413,7 +495,10 @@ Accept wildcard characters: False ``` ### CommonParameters +<<<<<<< HEAD +======= +>>>>>>> 680607f67 (Editorial checklist applied) This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see From 3c642013fd131731e319b82189698ae5e40b8392 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Wed, 14 Sep 2022 15:15:47 +0100 Subject: [PATCH 291/965] Note added to highlight Test-Cluster behavior --- docset/winserver2022-ps/failoverclusters/Test-Cluster.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docset/winserver2022-ps/failoverclusters/Test-Cluster.md b/docset/winserver2022-ps/failoverclusters/Test-Cluster.md index 6829580db6..466eca3a69 100644 --- a/docset/winserver2022-ps/failoverclusters/Test-Cluster.md +++ b/docset/winserver2022-ps/failoverclusters/Test-Cluster.md @@ -50,6 +50,11 @@ then run `Test-Cluster`. After the tests are done, start the clustered roles, al >>>>>>> 680607f67 (Editorial checklist applied) resource groups, again. +> [!NOTE] +> To perform some of the Cluster Shared Volume (CSV) validation tests, the `Test-Cluster` command +> creates a local user account named CliTest2 on each cluster node. The account is automatically +> removed from your system after the cluster validation tests are completed. + ## EXAMPLES ### Example 1: Validate local cluster From 5224c0981b3f6a4de19c1bceb95bf27887519a3d Mon Sep 17 00:00:00 2001 From: Robin Harwood <19212983+robinharwood@users.noreply.github.com> Date: Fri, 16 Sep 2022 09:35:17 +0100 Subject: [PATCH 292/965] Removed blank spaces Co-authored-by: Sean Wheeler --- .../failoverclusters/Test-Cluster.md | 178 +----------------- 1 file changed, 3 insertions(+), 175 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/Test-Cluster.md b/docset/winserver2022-ps/failoverclusters/Test-Cluster.md index 466eca3a69..496494d1d6 100644 --- a/docset/winserver2022-ps/failoverclusters/Test-Cluster.md +++ b/docset/winserver2022-ps/failoverclusters/Test-Cluster.md @@ -17,37 +17,21 @@ Runs validation tests for failover cluster hardware and settings. ``` Test-Cluster [[-Node] ] [-Disk ] [-Pool ] -<<<<<<< HEAD [-ReportName ] [-List] [-Include ] [-Ignore ] [-Force] [-InputObject ] [-Cluster ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Test-Cluster** cmdlet runs validation tests for failover cluster hardware and settings. Tests -can be run both before and after a cluster is set up. - -======= -[-ReportName ] [-List] [-Include ] [-Ignore ] [-Force] -[-InputObject ] [-Cluster ] [-WhatIf] [-Confirm] [] -``` - -## DESCRIPTION The `Test-Cluster` cmdlet runs validation tests for failover cluster hardware and settings. Tests can be run both before and after a cluster is set up. ->>>>>>> 680607f67 (Editorial checklist applied) Test results are captured in a file with the file name that you specify. By running the validation tests, you can confirm that your hardware and settings are compatible with Failover Clustering. There are multiple types of tests, including Cluster, Inventory, Network, Storage, System, and other types of tests. Storage tests will not test online disks or storage pools that are in use by a -<<<<<<< HEAD -clustered role. To test such disks, first run **Stop-ClusterGroup** to stop the clustered role, and -then run **Test-Cluster**. After the tests are done, start the clustered roles, also known as -======= clustered role. To test such disks, first run `Stop-ClusterGroup` to stop the clustered role, and then run `Test-Cluster`. After the tests are done, start the clustered roles, also known as ->>>>>>> 680607f67 (Editorial checklist applied) resource groups, again. > [!NOTE] @@ -58,124 +42,24 @@ resource groups, again. ## EXAMPLES ### Example 1: Validate local cluster -<<<<<<< HEAD -``` -PS C:\> Test-Cluster -Mode LastWriteTime Length Name ----- ------------- ------ ---- --a--- 10/10/2008 6:31 PM 1132255 Test-Cluster on 2008.10.10 At 18.22.53.mht -======= ```powershell Test-Cluster ->>>>>>> 680607f67 (Editorial checklist applied) ``` This example runs all applicable cluster validation tests on the local cluster. ### Example 2: Validate specified nodes -<<<<<<< HEAD -``` -PS C:\> Test-Cluster -Node "node1", "node2" -Mode LastWriteTime Length Name ----- ------------- ------ ---- --a--- 10/10/2008 6:18 PM 998032 Test-Cluster on 2008.10.10 At 18.08.24.mht -======= ```powershell Test-Cluster -Node "node1", "node2" ->>>>>>> 680607f67 (Editorial checklist applied) ``` This example runs all cluster validation tests on the nodes named node1 and node2. If either node1 or node2 is already a member of a cluster, then the tests will include all nodes in that cluster. ### Example 3: View tests and categories in cluster validation -<<<<<<< HEAD -``` -PS C:\> Test-Cluster -List -Category DisplayName Description --------- ----------- ----------- -Cluster Configuration List Cluster Core Groups List information about the available... -Cluster Configuration List Cluster Network Information List cluster-specific network settin... -Cluster Configuration List Cluster Resources List the resources that are configur... -Cluster Configuration List Cluster Volumes List information for the volumes in ... -Cluster Configuration List Clustered Roles List information about clustered roles. -Cluster Configuration Validate Quorum Configuration Validate that the current quorum con... -Cluster Configuration Validate Resource Status Validate that cluster resources are ... -Cluster Configuration Validate Service Principal Name Validate that a Service Principal Na... -Cluster Configuration Validate Volume Consistency If any volumes are flagged as incons... -Hyper-V Configuration List Information About Servers Runni... List Hyper-V related information on ... -Hyper-V Configuration Validate Compatibility of Virtual Fi... Validate that all specified nodes sh... -Hyper-V Configuration Validate Hyper-V Memory Resource Poo... Validate that all specified nodes sh... -Hyper-V Configuration Validate Hyper-V Network Resource Po... Validate that all specified nodes sh... -Hyper-V Configuration Validate Hyper-V Processor Resource ... Validate that all specified nodes sh... -Hyper-V Configuration Validate Hyper-V Role Installed Validate that all the nodes have the... -Hyper-V Configuration Validate Hyper-V Storage Resource Po... Validate that all specified nodes sh... -Hyper-V Configuration Validate Matching Processor Manufact... Validate that all specified nodes sh... -Hyper-V Configuration List Hyper-V Virtual Machine Informa... List Hyper-V virtual machine informa... -Hyper-V Configuration Validate Hyper-V Integration Service... Validate that the Hyper-V integratio... -Hyper-V Configuration Validate Hyper-V Virtual Machine Net... Validate that all virtual machines o... -Hyper-V Configuration Validate Hyper-V Virtual Machine Sto... Validate that all virtual machines o... -Inventory List Fibre Channel Host Bus Adapters List Fibre Channel host bus adapters... -Inventory List iSCSI Host Bus Adapters List iSCSI host bus adapters on each... -Inventory List SAS Host Bus Adapters List Serial Attached SCSI (SAS) host... -Inventory List BIOS Information List BIOS information from each node. -Inventory List Environment Variables List environment variables set on ea... -Inventory List Memory Information List memory information for each node. -Inventory List Operating System Information List information about the operating... -Inventory List Plug and Play Devices List Plug and Play devices on each n... -Inventory List Running Processes List the running processes on each n... -Inventory List Services Information List information about the services ... -Inventory List Software Updates List software updates that have been... -Inventory List System Drivers List the system drivers on each node. -Inventory List System Information List system information such as comp... -Inventory List Unsigned Drivers List the unsigned drivers on each node. -Network List Network Binding Order List the order in which networks are... -Network Validate Cluster Network Configuration Validate the cluster networks that w... -Network Validate IP Configuration Validate that IP addresses are uniqu... -Network Validate Multiple Subnet Properties For clusters using multiple subnets,... -Network Validate Network Communication Validate that servers can communicat... -Network Validate Windows Firewall Configuration Validate that the Windows Firewall i... -Storage List Disks List all disks visible to one or mor... -Storage List Potential Cluster Disks List disks that will be validated fo... -Storage Validate CSV Network Bindings Validate that network bindings requi... -Storage Validate CSV Settings Validate that settings and configura... -Storage Validate Disk Access Latency Validate acceptable latency for disk... -Storage Validate Disk Arbitration Validate that a node that owns a dis... -Storage Validate Disk Failover Validate that a disk can fail over s... -Storage Validate File System Validate that the file system on dis... -Storage Validate Microsoft MPIO-based disks Validate that disks that use Microso... -Storage Validate Multiple Arbitration Validate that in a multiple-node arb... -Storage Validate SCSI device Vital Product D... Validate uniqueness of inquiry data ... -Storage Validate SCSI-3 Persistent Reservation Validate that storage supports the S... -Storage Validate Simultaneous Failover Validate that disks can fail over si... -System Configuration Validate Active Directory Configuration Validate that all the nodes have the... -System Configuration Validate All Drivers Signed Validate that tested servers contain... -System Configuration Validate Cluster Service and Driver ... Validate startup settings used by se... -System Configuration Validate Memory Dump Settings Validate that none of the nodes curr... -System Configuration Validate Operating System Edition Validate that all tested servers are... -System Configuration Validate Operating System Installati... Validate that the operating systems ... -System Configuration Validate Operating System Version Validate that the operating systems ... -System Configuration Validate Required Services Validate that services required for ... -System Configuration Validate Same Processor Architecture Validate that all servers run as 64-... -System Configuration Validate Service Pack Levels Validate that all servers with same ... -System Configuration Validate Software Update Levels Validate that all tested servers hav... -System Configuration Validate System Drive Variable Validate that all nodes have the sam... -``` - -This example lists the names of all tests and categories in cluster validation. Specify these test -names with *Ignore* or *Include* parameters to run specific tests. - -### Example 4: Validate specified nodes for storage - -``` -PS C:\> Test-Cluster -Node "node1", "node2" -Include "Storage" -Mode LastWriteTime Length Name ----- ------------- ------ ---- --a--- 10/10/2008 6:20 PM 37818 Test-Cluster on 2008.10.10 At 18.20.52.mht -======= ```powershell Test-Cluster -List ``` @@ -184,26 +68,18 @@ This example lists the names of all tests and categories in cluster validation. names with **Ignore** or **Include** parameters to run specific tests. ### Example 4: Validate specified nodes for storage + ```powershell Test-Cluster -Node "node1", "node2" -Include "Storage" ->>>>>>> 680607f67 (Editorial checklist applied) ``` This example runs the storage validation tests on the nodes named node1 and node2. If either node1 or node2 is already a member of a cluster, then the tests will include all nodes in that cluster. ### Example 5: Validate specified nodes for everything except inventory -<<<<<<< HEAD -``` -PS C:\> Test-Cluster -Node "node1", "node2" -Ignore Inventory -Mode LastWriteTime Length Name ----- ------------- ------ ---- --a--- 10/10/2008 6:20 PM 732889 Test-Cluster on 2008.10.10 At 18.19.47.mht -======= ```powershell Test-Cluster -Node "node1", "node2" -Ignore Inventory ->>>>>>> 680607f67 (Editorial checklist applied) ``` This example runs all validation tests except the Inventory tests on the nodes named node1 and @@ -211,33 +87,17 @@ node2. If either node1 or node2 is already a member of a cluster, then the tests nodes in that cluster. ### Example 6: Run a specific test -<<<<<<< HEAD -``` -PS C:\> Test-Cluster -Include "List Potential Cluster Disks" -Mode LastWriteTime Length Name ----- ------------- ------ ---- --a--- 10/15/2008 2:58 PM 36119 Test-Cluster on 2008.10.15 At 14.58.44.mht -======= ```powershell Test-Cluster -Include "List Potential Cluster Disks" ->>>>>>> 680607f67 (Editorial checklist applied) ``` This example runs the test called List Potential Cluster Disks on the local cluster. ### Example 7: Run multiple tests -<<<<<<< HEAD -``` -PS C:\> Test-Cluster -Include "List System Drivers","List Unsigned Drivers" -Mode LastWriteTime Length Name ----- ------------- ------ ---- --a--- 10/15/2008 3:00 PM 266571 Test-Cluster on 2008.10.15 At 15.00.08.mht -======= ```powershell Test-Cluster -Include "List System Drivers","List Unsigned Drivers" ->>>>>>> 680607f67 (Editorial checklist applied) ``` This example runs the tests called List System Drivers and List Unsigned Drivers on the local @@ -246,10 +106,7 @@ cluster. ## PARAMETERS ### -Cluster -<<<<<<< HEAD -======= ->>>>>>> 680607f67 (Editorial checklist applied) Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. @@ -282,12 +139,13 @@ Accept wildcard characters: False ``` ### -Disk + Specifies the disk number or disks for which to run the cmdlet. If the specified disk is online and is assigned to a clustered role or Cluster Shared Volume, you must also specify the **Force** parameter to take the disk offline for the duration of the storage tests. Otherwise, the specified disk must be offline before the cmdlet is run. If the **Disk** parameter is not specified, storage tests run on all disks that are available for use in the cluster or that are in the cluster resource -offline or failed state. +offline or failed state. The acceptable values for this parameter are: @@ -329,10 +187,7 @@ Accept wildcard characters: False ``` ### -Ignore -<<<<<<< HEAD -======= ->>>>>>> 680607f67 (Editorial checklist applied) Specifies which tests or category of tests to ignore during the validation test run. All others tests or category of tests will run. @@ -349,10 +204,7 @@ Accept wildcard characters: False ``` ### -Include -<<<<<<< HEAD -======= ->>>>>>> 680607f67 (Editorial checklist applied) Specifies which tests or category of tests to include during the validation test run. Only the tests or category of tests specified here will run. @@ -385,10 +237,7 @@ Accept wildcard characters: False ``` ### -List -<<<<<<< HEAD -======= ->>>>>>> 680607f67 (Editorial checklist applied) Causes the cmdlet to list the tests and test categories. No tests will run on the servers or cluster nodes. @@ -421,21 +270,7 @@ Accept wildcard characters: False ``` ### -Pool -<<<<<<< HEAD - -Specifies the clustered storage pool or pools for which to run the cmdlet. When the specified -storage pool is online and a virtual disk in the storage pool is assigned to a clustered role or -Cluster Shared Volume, you must also specify the **Force** parameter to take the storage pool -offline for the duration of the storage tests. Otherwise, the specified storage pool must be taken -offline before the storage tests. If the **Pool** parameter is not specified, storage tests run on -all storage pools that are available for use in the cluster or that are in the cluster resource -offline or failed state. The acceptable values for this parameter are: - -- **System.String**: A string that represents the name of the clustered storage pool or pools. - -- **ClusterResource**: A cluster resource object that represents a clustered storage pool. -======= Specifies the clustered storage pool or pools for which to run the cmdlet. When the specified storage pool is online and a virtual disk in the storage pool is assigned to a clustered role or Cluster Shared Volume, you must also specify the **Force** parameter to take the storage pool @@ -448,7 +283,6 @@ The acceptable values for this parameter are: - **System.String**: A string that represents the name of the clustered storage pool or pools. - **ClusterResource**: A cluster resource object that represents a clustered storage pool. ->>>>>>> 680607f67 (Editorial checklist applied) - **CimInstance#MSFT_StoragePool**: An object returned from **Get-StoragePool**, from the Windows PowerShell storage module. @@ -481,10 +315,7 @@ Accept wildcard characters: False ``` ### -WhatIf -<<<<<<< HEAD -======= ->>>>>>> 680607f67 (Editorial checklist applied) Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml @@ -500,10 +331,7 @@ Accept wildcard characters: False ``` ### CommonParameters -<<<<<<< HEAD -======= ->>>>>>> 680607f67 (Editorial checklist applied) This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see From f7c772e446ce370eab92efc5b81a21dc9c39093a Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Wed, 28 Sep 2022 11:17:17 +0100 Subject: [PATCH 293/965] Updated and aligned previous versions --- .../failoverclusters/Test-Cluster.md | 251 +++++++---------- .../failoverclusters/Test-Cluster.md | 266 +++++++----------- .../failoverclusters/Test-Cluster.md | 257 +++++++---------- .../failoverclusters/Test-Cluster.md | 257 +++++++---------- .../failoverclusters/Test-Cluster.md | 12 +- 5 files changed, 423 insertions(+), 620 deletions(-) diff --git a/docset/winserver2012-ps/failoverclusters/Test-Cluster.md b/docset/winserver2012-ps/failoverclusters/Test-Cluster.md index 65cca69c84..22b450ccd5 100644 --- a/docset/winserver2012-ps/failoverclusters/Test-Cluster.md +++ b/docset/winserver2012-ps/failoverclusters/Test-Cluster.md @@ -19,160 +19,93 @@ Test-Cluster [[-Node] ] [-Cluster ] [-Disk ] ``` ## DESCRIPTION -The **Test-Cluster** cmdlet runs validation tests for failover cluster hardware and settings. -Tests can be run both before and after a cluster is set up. -Test results are captured in a file with the file name that you specify. -By running the validation tests, you can confirm that your hardware and settings are compatible with Failover Clustering. -There are multiple types of tests, including Cluster, Inventory, Network, Storage, System, and other types of tests. -Storage tests will not test online disks or storage pools that are in use by a clustered role. -To test such disks, first run Stop-ClusterGroup to stop the clustered role, and then run **Test-Cluster**. -After the tests are done, start the clustered roles, also known as resource groups, again. +The `Test-Cluster` cmdlet runs validation tests for failover cluster hardware and settings. Tests +can be run both before and after a cluster is set up. + +Test results are captured in a file with the file name that you specify. By running the validation +tests, you can confirm that your hardware and settings are compatible with Failover Clustering. +There are multiple types of tests, including Cluster, Inventory, Network, Storage, System, and other +types of tests. Storage tests will not test online disks or storage pools that are in use by a +clustered role. To test such disks, first run `Stop-ClusterGroup` to stop the clustered role, and +then run `Test-Cluster`. After the tests are done, start the clustered roles, also known as resource +groups, again. + +> [!NOTE] +> To perform some of the Cluster Shared Volume (CSV) validation tests, the `Test-Cluster` command +> creates a local user account named CliTest2 on each cluster node. The account is automatically +> removed from your system after the cluster validation tests are completed. ## EXAMPLES -### Example 1 -``` -PS C:\>Test-Cluster -Mode LastWriteTime Length Name ----- ------------- ------ ---- --a--- 10/10/2008 6:31 PM 1132255 Test-Cluster on 2008.10.10 At 18.22.53.mht +### Example 1: Validate local cluster + +```powershell +Test-Cluster ``` This example runs all applicable cluster validation tests on the local cluster. -### Example 2 -``` -PS C:\>Test-Cluster -Node node1,node2 -Mode LastWriteTime Length Name ----- ------------- ------ ---- --a--- 10/10/2008 6:18 PM 998032 Test-Cluster on 2008.10.10 At 18.08.24.mht +### Example 2: Validate specified nodes + +```powershell +Test-Cluster -Node "node1", "node2" ``` -This example runs all cluster validation tests on the nodes named node1 and node2. -If either node1 or node2 is already a member of a cluster, then the tests will include all nodes in that cluster. +This example runs all cluster validation tests on the nodes named node1 and node2. If either node1 +or node2 is already a member of a cluster, then the tests will include all nodes in that cluster. -### Example 3 -``` -PS C:\>Test-Cluster -List -Category DisplayName Description --------- ----------- ----------- -Cluster Configuration List Cluster Core Groups List information about the available... -Cluster Configuration List Cluster Network Information List cluster-specific network settin... -Cluster Configuration List Cluster Resources List the resources that are configur... -Cluster Configuration List Cluster Volumes List information for the volumes in ... -Cluster Configuration List Clustered Roles List information about clustered roles. -Cluster Configuration Validate Quorum Configuration Validate that the current quorum con... -Cluster Configuration Validate Resource Status Validate that cluster resources are ... -Cluster Configuration Validate Service Principal Name Validate that a Service Principal Na... -Cluster Configuration Validate Volume Consistency If any volumes are flagged as incons... -Hyper-V Configuration List Information About Servers Runni... List Hyper-V related information on ... -Hyper-V Configuration Validate Compatibility of Virtual Fi... Validate that all specified nodes sh... -Hyper-V Configuration Validate Hyper-V Memory Resource Poo... Validate that all specified nodes sh... -Hyper-V Configuration Validate Hyper-V Network Resource Po... Validate that all specified nodes sh... -Hyper-V Configuration Validate Hyper-V Processor Resource ... Validate that all specified nodes sh... -Hyper-V Configuration Validate Hyper-V Role Installed Validate that all the nodes have the... -Hyper-V Configuration Validate Hyper-V Storage Resource Po... Validate that all specified nodes sh... -Hyper-V Configuration Validate Matching Processor Manufact... Validate that all specified nodes sh... -Hyper-V Configuration List Hyper-V Virtual Machine Informa... List Hyper-V virtual machine informa... -Hyper-V Configuration Validate Hyper-V Integration Service... Validate that the Hyper-V integratio... -Hyper-V Configuration Validate Hyper-V Virtual Machine Net... Validate that all virtual machines o... -Hyper-V Configuration Validate Hyper-V Virtual Machine Sto... Validate that all virtual machines o... -Inventory List Fibre Channel Host Bus Adapters List Fibre Channel host bus adapters... -Inventory List iSCSI Host Bus Adapters List iSCSI host bus adapters on each... -Inventory List SAS Host Bus Adapters List Serial Attached SCSI (SAS) host... -Inventory List BIOS Information List BIOS information from each node. -Inventory List Environment Variables List environment variables set on ea... -Inventory List Memory Information List memory information for each node. -Inventory List Operating System Information List information about the operating... -Inventory List Plug and Play Devices List Plug and Play devices on each n... -Inventory List Running Processes List the running processes on each n... -Inventory List Services Information List information about the services ... -Inventory List Software Updates List software updates that have been... -Inventory List System Drivers List the system drivers on each node. -Inventory List System Information List system information such as comp... -Inventory List Unsigned Drivers List the unsigned drivers on each node. -Network List Network Binding Order List the order in which networks are... -Network Validate Cluster Network Configuration Validate the cluster networks that w... -Network Validate IP Configuration Validate that IP addresses are uniqu... -Network Validate Multiple Subnet Properties For clusters using multiple subnets,... -Network Validate Network Communication Validate that servers can communicat... -Network Validate Windows Firewall Configuration Validate that the Windows Firewall i... -Storage List Disks List all disks visible to one or mor... -Storage List Potential Cluster Disks List disks that will be validated fo... -Storage Validate CSV Network Bindings Validate that network bindings requi... -Storage Validate CSV Settings Validate that settings and configura... -Storage Validate Disk Access Latency Validate acceptable latency for disk... -Storage Validate Disk Arbitration Validate that a node that owns a dis... -Storage Validate Disk Failover Validate that a disk can fail over s... -Storage Validate File System Validate that the file system on dis... -Storage Validate Microsoft MPIO-based disks Validate that disks that use Microso... -Storage Validate Multiple Arbitration Validate that in a multiple-node arb... -Storage Validate SCSI device Vital Product D... Validate uniqueness of inquiry data ... -Storage Validate SCSI-3 Persistent Reservation Validate that storage supports the S... -Storage Validate Simultaneous Failover Validate that disks can fail over si... -System Configuration Validate Active Directory Configuration Validate that all the nodes have the... -System Configuration Validate All Drivers Signed Validate that tested servers contain... -System Configuration Validate Cluster Service and Driver ... Validate startup settings used by se... -System Configuration Validate Memory Dump Settings Validate that none of the nodes curr... -System Configuration Validate Operating System Edition Validate that all tested servers are... -System Configuration Validate Operating System Installati... Validate that the operating systems ... -System Configuration Validate Operating System Version Validate that the operating systems ... -System Configuration Validate Required Services Validate that services required for ... -System Configuration Validate Same Processor Architecture Validate that all servers run as 64-... -System Configuration Validate Service Pack Levels Validate that all servers with same ... -System Configuration Validate Software Update Levels Validate that all tested servers hav... -System Configuration Validate System Drive Variable Validate that all nodes have the sam... +### Example 3: View tests and categories in cluster validation + +```powershell +Test-Cluster -List ``` -This example lists the names of all tests and categories in cluster validation. -Specify these test names with **Ignore** or **Include** parameters to run specific tests. +This example lists the names of all tests and categories in cluster validation. Specify these test +names with **Ignore** or **Include** parameters to run specific tests. -### Example 4 -``` -PS C:\>Test-Cluster -Node node1,node2 -Include Storage -Mode LastWriteTime Length Name ----- ------------- ------ ---- --a--- 10/10/2008 6:20 PM 37818 Test-Cluster on 2008.10.10 At 18.20.52.mht +### Example 4: Validate specified nodes for storage + +```powershell +Test-Cluster -Node "node1", "node2" -Include "Storage" ``` -This example runs the storage validation tests on the nodes named node1 and node2. -If either node1 or node2 is already a member of a cluster, then the tests will include all nodes in that cluster. +This example runs the storage validation tests on the nodes named node1 and node2. If either node1 +or node2 is already a member of a cluster, then the tests will include all nodes in that cluster. -### Example 5 -``` -PS C:\>Test-Cluster -Node node1,node2 -Ignore Inventory -Mode LastWriteTime Length Name ----- ------------- ------ ---- --a--- 10/10/2008 6:20 PM 732889 Test-Cluster on 2008.10.10 At 18.19.47.mht +### Example 5: Validate specified nodes for everything except inventory + +```powershell +Test-Cluster -Node "node1", "node2" -Ignore Inventory ``` -This example runs all validation tests except the Inventory tests on the nodes named node1 and node2. -If either node1 or node2 is already a member of a cluster, then the tests will include all nodes in that cluster. +This example runs all validation tests except the Inventory tests on the nodes named node1 and +node2. If either node1 or node2 is already a member of a cluster, then the tests will include all +nodes in that cluster. -### Example 6 -``` -PS C:\>Test-Cluster -Include "List Potential Cluster Disks" -Mode LastWriteTime Length Name ---- ------------- ------ ---- -a--- 10/15/2008 2:58 PM 36119 Test-Cluster on 2008.10.15 At 14.58.44.mht +### Example 6: Run a specific test + +```powershell +Test-Cluster -Include "List Potential Cluster Disks" ``` This example runs the test called List Potential Cluster Disks on the local cluster. -### Example 7 -``` -PS C:\>Test-Cluster -Include "List System Drivers","List Unsigned Drivers" -Mode LastWriteTime Length Name ----- ------------- ------ ---- --a--- 10/15/2008 3:00 PM 266571 Test-Cluster on 2008.10.15 At 15.00.08.mht +### Example 7: Run multiple tests + +```powershell +Test-Cluster -Include "List System Drivers","List Unsigned Drivers" ``` -This example runs the tests called List System Drivers and List Unsigned Drivers on the local cluster. +This example runs the tests called List System Drivers and List Unsigned Drivers on the local +cluster. ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -187,21 +120,24 @@ Accept wildcard characters: False ``` ### -Disk -Specifies the disk number or disks for which to run the cmdlet. -If the specified disk is online and is assigned to a clustered role or Cluster Shared Volume, you must also specify the **Force** parameter to take the disk offline for the duration of the storage tests. -Otherwise, the specified disk must be offline before the cmdlet is run. -If the **Disk** parameter is not specified, storage tests run on all disks that are available for use in the cluster or that are in the cluster resource offline or failed state. -The acceptable values for this parameter are: - - -- Int32, Int64, Uint32, Uint64: A number that represents a master boot record (MBR) signature of the disk. - - -- System.String: A string that represents a master boot record (MBR) signature of the disk, hexadecimal format is supported. - -- System.String: A string that represents the GUID of a GPT disk. +Specifies the disk number or disks for which to run the cmdlet. If the specified disk is online and +is assigned to a clustered role or Cluster Shared Volume, you must also specify the **Force** +parameter to take the disk offline for the duration of the storage tests. Otherwise, the specified +disk must be offline before the cmdlet is run. If the **Disk** parameter is not specified, storage +tests run on all disks that are available for use in the cluster or that are in the cluster resource +offline or failed state. - -- ClusterResource: A cluster resource object that represents a clustered disk. +The acceptable values for this parameter are: - -- CimInstance#MSFT_Disk: An object returned from Get-Disk, from the Windows PowerShell® storage module. +- **Int32, Int64, Uint32, Uint64**. A number that represents a master boot record (MBR) signature of + the disk. +- **System.String**. A string that represents a master boot record (MBR) signature of the disk, + hexadecimal format is supported. +- **System.String**. A string that represents the GUID of a GPT disk. +- **ClusterResource**. A cluster resource object that represents a clustered disk. +- **CimInstance#MSFT_Disk**. An object returned from Get-Disk, from the Windows PowerShell® storage + module. ```yaml Type: Object[] @@ -216,6 +152,7 @@ Accept wildcard characters: False ``` ### -Force + Runs the cmdlet without prompting for confirmation. By default the cmdlet will ask for confirmation from the user before proceeding. @@ -232,8 +169,9 @@ Accept wildcard characters: False ``` ### -Ignore -Specifies which tests or category of tests to ignore during the validation test run. -All others tests or category of tests will run. + +Specifies which tests or category of tests to ignore during the validation test run. All others +tests or category of tests will run. ```yaml Type: StringCollection @@ -248,8 +186,9 @@ Accept wildcard characters: False ``` ### -Include -Specifies which tests or category of tests to include during the validation test run. -Only the tests or category of tests specified here will run. + +Specifies which tests or category of tests to include during the validation test run. Only the tests +or category of tests specified here will run. ```yaml Type: StringCollection @@ -264,6 +203,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster on which to run the validation tests. ```yaml @@ -279,8 +219,9 @@ Accept wildcard characters: False ``` ### -List -Causes the cmdlet to list the tests and test categories. -No tests will run on the servers or cluster nodes. + +Causes the cmdlet to list the tests and test categories. No tests will run on the servers or cluster +nodes. ```yaml Type: SwitchParameter @@ -295,6 +236,7 @@ Accept wildcard characters: False ``` ### -Node + Specifies a comma-separated list of server names on which to run the cluster validation tests. ```yaml @@ -310,17 +252,21 @@ Accept wildcard characters: False ``` ### -Pool -Specifies the clustered storage pool or pools for which to run the cmdlet. -When the specified storage pool is online and a virtual disk in the storage pool is assigned to a clustered role or Cluster Shared Volume, you must also specify the **Force** parameter to take the storage pool offline for the duration of the storage tests. -Otherwise, the specified storage pool must be taken offline before the storage tests. -If the **Pool** parameter is not specified, storage tests run on all storage pools that are available for use in the cluster or that are in the cluster resource offline or failed state. -The acceptable values for this parameter are: - -- System.String: A string that represents the name of the clustered storage pool or pools. +Specifies the clustered storage pool or pools for which to run the cmdlet. When the specified +storage pool is online and a virtual disk in the storage pool is assigned to a clustered role or +Cluster Shared Volume, you must also specify the **Force** parameter to take the storage pool +offline for the duration of the storage tests. Otherwise, the specified storage pool must be taken +offline before the storage tests. If the **Pool** parameter is not specified, storage tests run on +all storage pools that are available for use in the cluster or that are in the cluster resource +offline or failed state. - -- ClusterResource: A cluster resource object that represents a clustered storage pool. +The acceptable values for this parameter are: - -- CimInstance#MSFT_StoragePool: An object returned from Get-StoragePool, from the Windows PowerShell storage module. +- **System.String**: A string that represents the name of the clustered storage pool or pools. +- **ClusterResource**: A cluster resource object that represents a clustered storage pool. +- **CimInstance#MSFT_StoragePool**: An object returned from `Get-StoragePool`, from the Windows + PowerShell storage module. ```yaml Type: Object[] @@ -335,6 +281,7 @@ Accept wildcard characters: False ``` ### -ReportName + Specifies the name of the test report to generate. ```yaml @@ -350,6 +297,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -365,7 +313,8 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. + +Shows what would happen if the cmdlet runs. The cmdlet is not run. The cmdlet is not run. ```yaml diff --git a/docset/winserver2012r2-ps/failoverclusters/Test-Cluster.md b/docset/winserver2012r2-ps/failoverclusters/Test-Cluster.md index da75c53a0c..aeae8e001b 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Test-Cluster.md +++ b/docset/winserver2012r2-ps/failoverclusters/Test-Cluster.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/30/2017 +ms.date: 09/28/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/test-cluster?view=windowsserver2012r2-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-Cluster @@ -15,166 +15,99 @@ Runs validation tests for failover cluster hardware and settings. ## SYNTAX ``` -Test-Cluster [[-Node] ] [-Disk ] [-Pool ] [-ReportName ] [-List] - [-Include ] [-Ignore ] [-Force] [-InputObject ] - [-Cluster ] [-WhatIf] [-Confirm] [] +Test-Cluster [[-Node] ] [-Disk ] [-Pool ] + [-ReportName ] [-List] [-Include ] [-Ignore ] [-Force] + [-InputObject ] [-Cluster ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Test-Cluster** cmdlet runs validation tests for failover cluster hardware and settings. -Tests can be run both before and after a cluster is set up. -Test results are captured in a file with the file name that you specify. -By running the validation tests, you can confirm that your hardware and settings are compatible with Failover Clustering. -There are multiple types of tests, including Cluster, Inventory, Network, Storage, System, and other types of tests. -Storage tests will not test online disks or storage pools that are in use by a clustered role. -To test such disks, first run Stop-ClusterGroup to stop the clustered role, and then run **Test-Cluster**. -After the tests are done, start the clustered roles, also known as resource groups, again. +The `Test-Cluster` cmdlet runs validation tests for failover cluster hardware and settings. Tests +can be run both before and after a cluster is set up. + +Test results are captured in a file with the file name that you specify. By running the validation +tests, you can confirm that your hardware and settings are compatible with Failover Clustering. +There are multiple types of tests, including Cluster, Inventory, Network, Storage, System, and other +types of tests. Storage tests will not test online disks or storage pools that are in use by a +clustered role. To test such disks, first run `Stop-ClusterGroup` to stop the clustered role, and +then run `Test-Cluster`. After the tests are done, start the clustered roles, also known as resource +groups, again. + +> [!NOTE] +> To perform some of the Cluster Shared Volume (CSV) validation tests, the `Test-Cluster` command +> creates a local user account named CliTest2 on each cluster node. The account is automatically +> removed from your system after the cluster validation tests are completed. ## EXAMPLES -### Example 1 -``` -PS C:\>Test-Cluster -Mode LastWriteTime Length Name ----- ------------- ------ ---- --a--- 10/10/2008 6:31 PM 1132255 Test-Cluster on 2008.10.10 At 18.22.53.mht +### Example 1: Validate local cluster + +```powershell +Test-Cluster ``` This example runs all applicable cluster validation tests on the local cluster. -### Example 2 -``` -PS C:\>Test-Cluster -Node node1,node2 -Mode LastWriteTime Length Name ----- ------------- ------ ---- --a--- 10/10/2008 6:18 PM 998032 Test-Cluster on 2008.10.10 At 18.08.24.mht +### Example 2: Validate specified nodes + +```powershell +Test-Cluster -Node "node1", "node2" ``` -This example runs all cluster validation tests on the nodes named node1 and node2. -If either node1 or node2 is already a member of a cluster, then the tests will include all nodes in that cluster. +This example runs all cluster validation tests on the nodes named node1 and node2. If either node1 +or node2 is already a member of a cluster, then the tests will include all nodes in that cluster. -### Example 3 -``` -PS C:\>Test-Cluster -List -Category DisplayName Description --------- ----------- ----------- -Cluster Configuration List Cluster Core Groups List information about the available... -Cluster Configuration List Cluster Network Information List cluster-specific network settin... -Cluster Configuration List Cluster Resources List the resources that are configur... -Cluster Configuration List Cluster Volumes List information for the volumes in ... -Cluster Configuration List Clustered Roles List information about clustered roles. -Cluster Configuration Validate Quorum Configuration Validate that the current quorum con... -Cluster Configuration Validate Resource Status Validate that cluster resources are ... -Cluster Configuration Validate Service Principal Name Validate that a Service Principal Na... -Cluster Configuration Validate Volume Consistency If any volumes are flagged as incons... -Hyper-V Configuration List Information About Servers Runni... List Hyper-V related information on ... -Hyper-V Configuration Validate Compatibility of Virtual Fi... Validate that all specified nodes sh... -Hyper-V Configuration Validate Hyper-V Memory Resource Poo... Validate that all specified nodes sh... -Hyper-V Configuration Validate Hyper-V Network Resource Po... Validate that all specified nodes sh... -Hyper-V Configuration Validate Hyper-V Processor Resource ... Validate that all specified nodes sh... -Hyper-V Configuration Validate Hyper-V Role Installed Validate that all the nodes have the... -Hyper-V Configuration Validate Hyper-V Storage Resource Po... Validate that all specified nodes sh... -Hyper-V Configuration Validate Matching Processor Manufact... Validate that all specified nodes sh... -Hyper-V Configuration List Hyper-V Virtual Machine Informa... List Hyper-V virtual machine informa... -Hyper-V Configuration Validate Hyper-V Integration Service... Validate that the Hyper-V integratio... -Hyper-V Configuration Validate Hyper-V Virtual Machine Net... Validate that all virtual machines o... -Hyper-V Configuration Validate Hyper-V Virtual Machine Sto... Validate that all virtual machines o... -Inventory List Fibre Channel Host Bus Adapters List Fibre Channel host bus adapters... -Inventory List iSCSI Host Bus Adapters List iSCSI host bus adapters on each... -Inventory List SAS Host Bus Adapters List Serial Attached SCSI (SAS) host... -Inventory List BIOS Information List BIOS information from each node. -Inventory List Environment Variables List environment variables set on ea... -Inventory List Memory Information List memory information for each node. -Inventory List Operating System Information List information about the operating... -Inventory List Plug and Play Devices List Plug and Play devices on each n... -Inventory List Running Processes List the running processes on each n... -Inventory List Services Information List information about the services ... -Inventory List Software Updates List software updates that have been... -Inventory List System Drivers List the system drivers on each node. -Inventory List System Information List system information such as comp... -Inventory List Unsigned Drivers List the unsigned drivers on each node. -Network List Network Binding Order List the order in which networks are... -Network Validate Cluster Network Configuration Validate the cluster networks that w... -Network Validate IP Configuration Validate that IP addresses are uniqu... -Network Validate Multiple Subnet Properties For clusters using multiple subnets,... -Network Validate Network Communication Validate that servers can communicat... -Network Validate Windows Firewall Configuration Validate that the Windows Firewall i... -Storage List Disks List all disks visible to one or mor... -Storage List Potential Cluster Disks List disks that will be validated fo... -Storage Validate CSV Network Bindings Validate that network bindings requi... -Storage Validate CSV Settings Validate that settings and configura... -Storage Validate Disk Access Latency Validate acceptable latency for disk... -Storage Validate Disk Arbitration Validate that a node that owns a dis... -Storage Validate Disk Failover Validate that a disk can fail over s... -Storage Validate File System Validate that the file system on dis... -Storage Validate Microsoft MPIO-based disks Validate that disks that use Microso... -Storage Validate Multiple Arbitration Validate that in a multiple-node arb... -Storage Validate SCSI device Vital Product D... Validate uniqueness of inquiry data ... -Storage Validate SCSI-3 Persistent Reservation Validate that storage supports the S... -Storage Validate Simultaneous Failover Validate that disks can fail over si... -System Configuration Validate Active Directory Configuration Validate that all the nodes have the... -System Configuration Validate All Drivers Signed Validate that tested servers contain... -System Configuration Validate Cluster Service and Driver ... Validate startup settings used by se... -System Configuration Validate Memory Dump Settings Validate that none of the nodes curr... -System Configuration Validate Operating System Edition Validate that all tested servers are... -System Configuration Validate Operating System Installati... Validate that the operating systems ... -System Configuration Validate Operating System Version Validate that the operating systems ... -System Configuration Validate Required Services Validate that services required for ... -System Configuration Validate Same Processor Architecture Validate that all servers run as 64-... -System Configuration Validate Service Pack Levels Validate that all servers with same ... -System Configuration Validate Software Update Levels Validate that all tested servers hav... -System Configuration Validate System Drive Variable Validate that all nodes have the sam... +### Example 3: View tests and categories in cluster validation + +```powershell +Test-Cluster -List ``` -This example lists the names of all tests and categories in cluster validation. -Specify these test names with **Ignore** or **Include** parameters to run specific tests. +This example lists the names of all tests and categories in cluster validation. Specify these test +names with **Ignore** or **Include** parameters to run specific tests. -### Example 4 -``` -PS C:\>Test-Cluster -Node node1,node2 -Include Storage -Mode LastWriteTime Length Name ----- ------------- ------ ---- --a--- 10/10/2008 6:20 PM 37818 Test-Cluster on 2008.10.10 At 18.20.52.mht +### Example 4: Validate specified nodes for storage + +```powershell +Test-Cluster -Node "node1", "node2" -Include "Storage" ``` -This example runs the storage validation tests on the nodes named node1 and node2. -If either node1 or node2 is already a member of a cluster, then the tests will include all nodes in that cluster. +This example runs the storage validation tests on the nodes named node1 and node2. If either node1 +or node2 is already a member of a cluster, then the tests will include all nodes in that cluster. -### Example 5 -``` -PS C:\>Test-Cluster -Node node1,node2 -Ignore Inventory -Mode LastWriteTime Length Name ----- ------------- ------ ---- --a--- 10/10/2008 6:20 PM 732889 Test-Cluster on 2008.10.10 At 18.19.47.mht +### Example 5: Validate specified nodes for everything except inventory + +```powershell +Test-Cluster -Node "node1", "node2" -Ignore Inventory ``` -This example runs all validation tests except the Inventory tests on the nodes named node1 and node2. -If either node1 or node2 is already a member of a cluster, then the tests will include all nodes in that cluster. +This example runs all validation tests except the Inventory tests on the nodes named node1 and +node2. If either node1 or node2 is already a member of a cluster, then the tests will include all +nodes in that cluster. -### Example 6 -``` -PS C:\>Test-Cluster -Include "List Potential Cluster Disks" -Mode LastWriteTime Length Name ---- ------------- ------ ---- -a--- 10/15/2008 2:58 PM 36119 Test-Cluster on 2008.10.15 At 14.58.44.mht +### Example 6: Run a specific test + +```powershell +Test-Cluster -Include "List Potential Cluster Disks" ``` This example runs the test called List Potential Cluster Disks on the local cluster. -### Example 7 -``` -PS C:\>Test-Cluster -Include "List System Drivers","List Unsigned Drivers" -Mode LastWriteTime Length Name ----- ------------- ------ ---- --a--- 10/15/2008 3:00 PM 266571 Test-Cluster on 2008.10.15 At 15.00.08.mht +### Example 7: Run multiple tests + +```powershell +Test-Cluster -Include "List System Drivers","List Unsigned Drivers" ``` -This example runs the tests called List System Drivers and List Unsigned Drivers on the local cluster. +This example runs the tests called List System Drivers and List Unsigned Drivers on the local +cluster. ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -189,6 +122,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -204,21 +138,24 @@ Accept wildcard characters: False ``` ### -Disk -Specifies the disk number or disks for which to run the cmdlet. -If the specified disk is online and is assigned to a clustered role or Cluster Shared Volume, you must also specify the **Force** parameter to take the disk offline for the duration of the storage tests. -Otherwise, the specified disk must be offline before the cmdlet is run. -If the **Disk** parameter is not specified, storage tests run on all disks that are available for use in the cluster or that are in the cluster resource offline or failed state. -The acceptable values for this parameter are: - - -- Int32, Int64, Uint32, Uint64: A number that represents a master boot record (MBR) signature of the disk. - - -- System.String: A string that represents a master boot record (MBR) signature of the disk, hexadecimal format is supported. - -- System.String: A string that represents the GUID of a GPT disk. +Specifies the disk number or disks for which to run the cmdlet. If the specified disk is online and +is assigned to a clustered role or Cluster Shared Volume, you must also specify the **Force** +parameter to take the disk offline for the duration of the storage tests. Otherwise, the specified +disk must be offline before the cmdlet is run. If the **Disk** parameter is not specified, storage +tests run on all disks that are available for use in the cluster or that are in the cluster resource +offline or failed state. - -- ClusterResource: A cluster resource object that represents a clustered disk. +The acceptable values for this parameter are: - -- CimInstance#MSFT_Disk: An object returned from Get-Disk, from the Windows PowerShell® storage module. +- **Int32, Int64, Uint32, Uint64**. A number that represents a master boot record (MBR) signature of + the disk. +- **System.String**. A string that represents a master boot record (MBR) signature of the disk, + hexadecimal format is supported. +- **System.String**. A string that represents the GUID of a GPT disk. +- **ClusterResource**. A cluster resource object that represents a clustered disk. +- **CimInstance#MSFT_Disk**. An object returned from Get-Disk, from the Windows PowerShell® storage + module. ```yaml Type: Object[] @@ -233,6 +170,7 @@ Accept wildcard characters: False ``` ### -Force + Runs the cmdlet without prompting for confirmation. By default the cmdlet will ask for confirmation from the user before proceeding. @@ -249,8 +187,9 @@ Accept wildcard characters: False ``` ### -Ignore -Specifies which tests or category of tests to ignore during the validation test run. -All others tests or category of tests will run. + +Specifies which tests or category of tests to ignore during the validation test run. All others +tests or category of tests will run. ```yaml Type: StringCollection @@ -265,8 +204,9 @@ Accept wildcard characters: False ``` ### -Include -Specifies which tests or category of tests to include during the validation test run. -Only the tests or category of tests specified here will run. + +Specifies which tests or category of tests to include during the validation test run. Only the tests +or category of tests specified here will run. ```yaml Type: StringCollection @@ -281,6 +221,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster on which to run the validation tests. ```yaml @@ -296,8 +237,9 @@ Accept wildcard characters: False ``` ### -List -Causes the cmdlet to list the tests and test categories. -No tests will run on the servers or cluster nodes. + +Causes the cmdlet to list the tests and test categories. No tests will run on the servers or cluster +nodes. ```yaml Type: SwitchParameter @@ -312,6 +254,7 @@ Accept wildcard characters: False ``` ### -Node + Specifies a comma-separated list of server names on which to run the cluster validation tests. ```yaml @@ -327,17 +270,21 @@ Accept wildcard characters: False ``` ### -Pool -Specifies the clustered storage pool or pools for which to run the cmdlet. -When the specified storage pool is online and a virtual disk in the storage pool is assigned to a clustered role or Cluster Shared Volume, you must also specify the **Force** parameter to take the storage pool offline for the duration of the storage tests. -Otherwise, the specified storage pool must be taken offline before the storage tests. -If the **Pool** parameter is not specified, storage tests run on all storage pools that are available for use in the cluster or that are in the cluster resource offline or failed state. -The acceptable values for this parameter are: - -- System.String: A string that represents the name of the clustered storage pool or pools. +Specifies the clustered storage pool or pools for which to run the cmdlet. When the specified +storage pool is online and a virtual disk in the storage pool is assigned to a clustered role or +Cluster Shared Volume, you must also specify the **Force** parameter to take the storage pool +offline for the duration of the storage tests. Otherwise, the specified storage pool must be taken +offline before the storage tests. If the **Pool** parameter is not specified, storage tests run on +all storage pools that are available for use in the cluster or that are in the cluster resource +offline or failed state. - -- ClusterResource: A cluster resource object that represents a clustered storage pool. +The acceptable values for this parameter are: - -- CimInstance#MSFT_StoragePool: An object returned from Get-StoragePool, from the Windows PowerShell storage module. +- **System.String**: A string that represents the name of the clustered storage pool or pools. +- **ClusterResource**: A cluster resource object that represents a clustered storage pool. +- **CimInstance#MSFT_StoragePool**: An object returned from `Get-StoragePool`, from the Windows + PowerShell storage module. ```yaml Type: Object[] @@ -352,6 +299,7 @@ Accept wildcard characters: False ``` ### -ReportName + Specifies the name of the test report to generate. ```yaml @@ -367,8 +315,8 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml Type: SwitchParameter @@ -383,7 +331,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/docset/winserver2016-ps/failoverclusters/Test-Cluster.md b/docset/winserver2016-ps/failoverclusters/Test-Cluster.md index 62994050cf..b3c1cf4427 100644 --- a/docset/winserver2016-ps/failoverclusters/Test-Cluster.md +++ b/docset/winserver2016-ps/failoverclusters/Test-Cluster.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 09/28/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/test-cluster?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-Cluster @@ -16,168 +16,99 @@ Runs validation tests for failover cluster hardware and settings. ## SYNTAX ``` -Test-Cluster [[-Node] ] [-Disk ] [-Pool ] [-ReportName ] [-List] - [-Include ] [-Ignore ] [-Force] [-InputObject ] - [-Cluster ] [-WhatIf] [-Confirm] [] +Test-Cluster [[-Node] ] [-Disk ] [-Pool ] + [-ReportName ] [-List] [-Include ] [-Ignore ] [-Force] + [-InputObject ] [-Cluster ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Test-Cluster** cmdlet runs validation tests for failover cluster hardware and settings. -Tests can be run both before and after a cluster is set up. -Test results are captured in a file with the file name that you specify. -By running the validation tests, you can confirm that your hardware and settings are compatible with Failover Clustering. -There are multiple types of tests, including Cluster, Inventory, Network, Storage, System, and other types of tests. -Storage tests will not test online disks or storage pools that are in use by a clustered role. -To test such disks, first run **Stop-ClusterGroup** to stop the clustered role, and then run **Test-Cluster**. -After the tests are done, start the clustered roles, also known as resource groups, again. +The `Test-Cluster` cmdlet runs validation tests for failover cluster hardware and settings. Tests +can be run both before and after a cluster is set up. + +Test results are captured in a file with the file name that you specify. By running the validation +tests, you can confirm that your hardware and settings are compatible with Failover Clustering. +There are multiple types of tests, including Cluster, Inventory, Network, Storage, System, and other +types of tests. Storage tests will not test online disks or storage pools that are in use by a +clustered role. To test such disks, first run `Stop-ClusterGroup` to stop the clustered role, and +then run `Test-Cluster`. After the tests are done, start the clustered roles, also known as resource +groups, again. + +> [!NOTE] +> To perform some of the Cluster Shared Volume (CSV) validation tests, the `Test-Cluster` command +> creates a local user account named CliTest2 on each cluster node. The account is automatically +> removed from your system after the cluster validation tests are completed. ## EXAMPLES ### Example 1: Validate local cluster -``` -PS C:\> Test-Cluster -Mode LastWriteTime Length Name ----- ------------- ------ ---- --a--- 10/10/2008 6:31 PM 1132255 Test-Cluster on 2008.10.10 At 18.22.53.mht + +```powershell +Test-Cluster ``` This example runs all applicable cluster validation tests on the local cluster. ### Example 2: Validate specified nodes -``` -PS C:\> Test-Cluster -Node "node1", "node2" -Mode LastWriteTime Length Name ----- ------------- ------ ---- --a--- 10/10/2008 6:18 PM 998032 Test-Cluster on 2008.10.10 At 18.08.24.mht + +```powershell +Test-Cluster -Node "node1", "node2" ``` -This example runs all cluster validation tests on the nodes named node1 and node2. -If either node1 or node2 is already a member of a cluster, then the tests will include all nodes in that cluster. +This example runs all cluster validation tests on the nodes named node1 and node2. If either node1 +or node2 is already a member of a cluster, then the tests will include all nodes in that cluster. ### Example 3: View tests and categories in cluster validation -``` -PS C:\> Test-Cluster -List -Category DisplayName Description --------- ----------- ----------- -Cluster Configuration List Cluster Core Groups List information about the available... -Cluster Configuration List Cluster Network Information List cluster-specific network settin... -Cluster Configuration List Cluster Resources List the resources that are configur... -Cluster Configuration List Cluster Volumes List information for the volumes in ... -Cluster Configuration List Clustered Roles List information about clustered roles. -Cluster Configuration Validate Quorum Configuration Validate that the current quorum con... -Cluster Configuration Validate Resource Status Validate that cluster resources are ... -Cluster Configuration Validate Service Principal Name Validate that a Service Principal Na... -Cluster Configuration Validate Volume Consistency If any volumes are flagged as incons... -Hyper-V Configuration List Information About Servers Runni... List Hyper-V related information on ... -Hyper-V Configuration Validate Compatibility of Virtual Fi... Validate that all specified nodes sh... -Hyper-V Configuration Validate Hyper-V Memory Resource Poo... Validate that all specified nodes sh... -Hyper-V Configuration Validate Hyper-V Network Resource Po... Validate that all specified nodes sh... -Hyper-V Configuration Validate Hyper-V Processor Resource ... Validate that all specified nodes sh... -Hyper-V Configuration Validate Hyper-V Role Installed Validate that all the nodes have the... -Hyper-V Configuration Validate Hyper-V Storage Resource Po... Validate that all specified nodes sh... -Hyper-V Configuration Validate Matching Processor Manufact... Validate that all specified nodes sh... -Hyper-V Configuration List Hyper-V Virtual Machine Informa... List Hyper-V virtual machine informa... -Hyper-V Configuration Validate Hyper-V Integration Service... Validate that the Hyper-V integratio... -Hyper-V Configuration Validate Hyper-V Virtual Machine Net... Validate that all virtual machines o... -Hyper-V Configuration Validate Hyper-V Virtual Machine Sto... Validate that all virtual machines o... -Inventory List Fibre Channel Host Bus Adapters List Fibre Channel host bus adapters... -Inventory List iSCSI Host Bus Adapters List iSCSI host bus adapters on each... -Inventory List SAS Host Bus Adapters List Serial Attached SCSI (SAS) host... -Inventory List BIOS Information List BIOS information from each node. -Inventory List Environment Variables List environment variables set on ea... -Inventory List Memory Information List memory information for each node. -Inventory List Operating System Information List information about the operating... -Inventory List Plug and Play Devices List Plug and Play devices on each n... -Inventory List Running Processes List the running processes on each n... -Inventory List Services Information List information about the services ... -Inventory List Software Updates List software updates that have been... -Inventory List System Drivers List the system drivers on each node. -Inventory List System Information List system information such as comp... -Inventory List Unsigned Drivers List the unsigned drivers on each node. -Network List Network Binding Order List the order in which networks are... -Network Validate Cluster Network Configuration Validate the cluster networks that w... -Network Validate IP Configuration Validate that IP addresses are uniqu... -Network Validate Multiple Subnet Properties For clusters using multiple subnets,... -Network Validate Network Communication Validate that servers can communicat... -Network Validate Windows Firewall Configuration Validate that the Windows Firewall i... -Storage List Disks List all disks visible to one or mor... -Storage List Potential Cluster Disks List disks that will be validated fo... -Storage Validate CSV Network Bindings Validate that network bindings requi... -Storage Validate CSV Settings Validate that settings and configura... -Storage Validate Disk Access Latency Validate acceptable latency for disk... -Storage Validate Disk Arbitration Validate that a node that owns a dis... -Storage Validate Disk Failover Validate that a disk can fail over s... -Storage Validate File System Validate that the file system on dis... -Storage Validate Microsoft MPIO-based disks Validate that disks that use Microso... -Storage Validate Multiple Arbitration Validate that in a multiple-node arb... -Storage Validate SCSI device Vital Product D... Validate uniqueness of inquiry data ... -Storage Validate SCSI-3 Persistent Reservation Validate that storage supports the S... -Storage Validate Simultaneous Failover Validate that disks can fail over si... -System Configuration Validate Active Directory Configuration Validate that all the nodes have the... -System Configuration Validate All Drivers Signed Validate that tested servers contain... -System Configuration Validate Cluster Service and Driver ... Validate startup settings used by se... -System Configuration Validate Memory Dump Settings Validate that none of the nodes curr... -System Configuration Validate Operating System Edition Validate that all tested servers are... -System Configuration Validate Operating System Installati... Validate that the operating systems ... -System Configuration Validate Operating System Version Validate that the operating systems ... -System Configuration Validate Required Services Validate that services required for ... -System Configuration Validate Same Processor Architecture Validate that all servers run as 64-... -System Configuration Validate Service Pack Levels Validate that all servers with same ... -System Configuration Validate Software Update Levels Validate that all tested servers hav... -System Configuration Validate System Drive Variable Validate that all nodes have the sam... + +```powershell +Test-Cluster -List ``` -This example lists the names of all tests and categories in cluster validation. -Specify these test names with *Ignore* or *Include* parameters to run specific tests. +This example lists the names of all tests and categories in cluster validation. Specify these test +names with **Ignore** or **Include** parameters to run specific tests. ### Example 4: Validate specified nodes for storage -``` -PS C:\> Test-Cluster -Node "node1", "node2" -Include "Storage" -Mode LastWriteTime Length Name ----- ------------- ------ ---- --a--- 10/10/2008 6:20 PM 37818 Test-Cluster on 2008.10.10 At 18.20.52.mht + +```powershell +Test-Cluster -Node "node1", "node2" -Include "Storage" ``` -This example runs the storage validation tests on the nodes named node1 and node2. -If either node1 or node2 is already a member of a cluster, then the tests will include all nodes in that cluster. +This example runs the storage validation tests on the nodes named node1 and node2. If either node1 +or node2 is already a member of a cluster, then the tests will include all nodes in that cluster. ### Example 5: Validate specified nodes for everything except inventory -``` -PS C:\> Test-Cluster -Node "node1", "node2" -Ignore Inventory -Mode LastWriteTime Length Name ----- ------------- ------ ---- --a--- 10/10/2008 6:20 PM 732889 Test-Cluster on 2008.10.10 At 18.19.47.mht + +```powershell +Test-Cluster -Node "node1", "node2" -Ignore Inventory ``` -This example runs all validation tests except the Inventory tests on the nodes named node1 and node2. -If either node1 or node2 is already a member of a cluster, then the tests will include all nodes in that cluster. +This example runs all validation tests except the Inventory tests on the nodes named node1 and +node2. If either node1 or node2 is already a member of a cluster, then the tests will include all +nodes in that cluster. ### Example 6: Run a specific test -``` -PS C:\> Test-Cluster -Include "List Potential Cluster Disks" -Mode LastWriteTime Length Name ----- ------------- ------ ---- --a--- 10/15/2008 2:58 PM 36119 Test-Cluster on 2008.10.15 At 14.58.44.mht + +```powershell +Test-Cluster -Include "List Potential Cluster Disks" ``` This example runs the test called List Potential Cluster Disks on the local cluster. ### Example 7: Run multiple tests -``` -PS C:\> Test-Cluster -Include "List System Drivers","List Unsigned Drivers" -Mode LastWriteTime Length Name ----- ------------- ------ ---- --a--- 10/15/2008 3:00 PM 266571 Test-Cluster on 2008.10.15 At 15.00.08.mht + +```powershell +Test-Cluster -Include "List System Drivers","List Unsigned Drivers" ``` -This example runs the tests called List System Drivers and List Unsigned Drivers on the local cluster. +This example runs the tests called List System Drivers and List Unsigned Drivers on the local +cluster. ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -192,6 +123,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -207,22 +139,24 @@ Accept wildcard characters: False ``` ### -Disk -Specifies the disk number or disks for which to run the cmdlet. -If the specified disk is online and is assigned to a clustered role or Cluster Shared Volume, you must also specify the *Force* parameter to take the disk offline for the duration of the storage tests. -Otherwise, the specified disk must be offline before the cmdlet is run. -If the *Disk* parameter is not specified, storage tests run on all disks that are available for use in the cluster or that are in the cluster resource offline or failed state. + +Specifies the disk number or disks for which to run the cmdlet. If the specified disk is online and +is assigned to a clustered role or Cluster Shared Volume, you must also specify the **Force** +parameter to take the disk offline for the duration of the storage tests. Otherwise, the specified +disk must be offline before the cmdlet is run. If the **Disk** parameter is not specified, storage +tests run on all disks that are available for use in the cluster or that are in the cluster resource +offline or failed state. + The acceptable values for this parameter are: -- Int32, Int64, Uint32, Uint64. -A number that represents a master boot record (MBR) signature of the disk. -- **System.String**. -A string that represents a master boot record (MBR) signature of the disk, hexadecimal format is supported. -- **System.String**. -A string that represents the GUID of a GPT disk. -- **ClusterResource**. -A cluster resource object that represents a clustered disk. -- **CimInstance#MSFT_Disk**. -An object returned from Get-Disk, from the Windows PowerShell® storage module. +- **Int32, Int64, Uint32, Uint64**. A number that represents a master boot record (MBR) signature of + the disk. +- **System.String**. A string that represents a master boot record (MBR) signature of the disk, + hexadecimal format is supported. +- **System.String**. A string that represents the GUID of a GPT disk. +- **ClusterResource**. A cluster resource object that represents a clustered disk. +- **CimInstance#MSFT_Disk**. An object returned from Get-Disk, from the Windows PowerShell® storage + module. ```yaml Type: Object[] @@ -237,6 +171,7 @@ Accept wildcard characters: False ``` ### -Force + Forces the command to run without asking for user confirmation. ```yaml @@ -252,8 +187,9 @@ Accept wildcard characters: False ``` ### -Ignore -Specifies which tests or category of tests to ignore during the validation test run. -All others tests or category of tests will run. + +Specifies which tests or category of tests to ignore during the validation test run. All others +tests or category of tests will run. ```yaml Type: StringCollection @@ -268,8 +204,9 @@ Accept wildcard characters: False ``` ### -Include -Specifies which tests or category of tests to include during the validation test run. -Only the tests or category of tests specified here will run. + +Specifies which tests or category of tests to include during the validation test run. Only the tests +or category of tests specified here will run. ```yaml Type: StringCollection @@ -284,6 +221,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster on which to run the validation tests. ```yaml @@ -299,8 +237,9 @@ Accept wildcard characters: False ``` ### -List -Causes the cmdlet to list the tests and test categories. -No tests will run on the servers or cluster nodes. + +Causes the cmdlet to list the tests and test categories. No tests will run on the servers or cluster +nodes. ```yaml Type: SwitchParameter @@ -315,6 +254,7 @@ Accept wildcard characters: False ``` ### -Node + Specifies a comma-separated list of server names on which to run the cluster validation tests. ```yaml @@ -330,15 +270,21 @@ Accept wildcard characters: False ``` ### -Pool -Specifies the clustered storage pool or pools for which to run the cmdlet. -When the specified storage pool is online and a virtual disk in the storage pool is assigned to a clustered role or Cluster Shared Volume, you must also specify the **Force** parameter to take the storage pool offline for the duration of the storage tests. -Otherwise, the specified storage pool must be taken offline before the storage tests. -If the **Pool** parameter is not specified, storage tests run on all storage pools that are available for use in the cluster or that are in the cluster resource offline or failed state. + +Specifies the clustered storage pool or pools for which to run the cmdlet. When the specified +storage pool is online and a virtual disk in the storage pool is assigned to a clustered role or +Cluster Shared Volume, you must also specify the **Force** parameter to take the storage pool +offline for the duration of the storage tests. Otherwise, the specified storage pool must be taken +offline before the storage tests. If the **Pool** parameter is not specified, storage tests run on +all storage pools that are available for use in the cluster or that are in the cluster resource +offline or failed state. + The acceptable values for this parameter are: -- **System.String**: A string that represents the name of the clustered storage pool or pools. -- **ClusterResource**: A cluster resource object that represents a clustered storage pool. -- **CimInstance#MSFT_StoragePool**: An object returned from **Get-StoragePool**, from the Windows PowerShell storage module. +- **System.String**: A string that represents the name of the clustered storage pool or pools. +- **ClusterResource**: A cluster resource object that represents a clustered storage pool. +- **CimInstance#MSFT_StoragePool**: An object returned from `Get-StoragePool`, from the Windows + PowerShell storage module. ```yaml Type: Object[] @@ -353,6 +299,7 @@ Accept wildcard characters: False ``` ### -ReportName + Specifies the name of the test report to generate. ```yaml @@ -368,8 +315,8 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml Type: SwitchParameter @@ -384,7 +331,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/docset/winserver2019-ps/failoverclusters/Test-Cluster.md b/docset/winserver2019-ps/failoverclusters/Test-Cluster.md index 8fc95a443b..89eb5aa52e 100644 --- a/docset/winserver2019-ps/failoverclusters/Test-Cluster.md +++ b/docset/winserver2019-ps/failoverclusters/Test-Cluster.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 09/28/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/test-cluster?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-Cluster @@ -16,168 +16,99 @@ Runs validation tests for failover cluster hardware and settings. ## SYNTAX ``` -Test-Cluster [[-Node] ] [-Disk ] [-Pool ] [-ReportName ] [-List] - [-Include ] [-Ignore ] [-Force] [-InputObject ] - [-Cluster ] [-WhatIf] [-Confirm] [] +Test-Cluster [[-Node] ] [-Disk ] [-Pool ] + [-ReportName ] [-List] [-Include ] [-Ignore ] [-Force] + [-InputObject ] [-Cluster ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Test-Cluster** cmdlet runs validation tests for failover cluster hardware and settings. -Tests can be run both before and after a cluster is set up. -Test results are captured in a file with the file name that you specify. -By running the validation tests, you can confirm that your hardware and settings are compatible with Failover Clustering. -There are multiple types of tests, including Cluster, Inventory, Network, Storage, System, and other types of tests. -Storage tests will not test online disks or storage pools that are in use by a clustered role. -To test such disks, first run **Stop-ClusterGroup** to stop the clustered role, and then run **Test-Cluster**. -After the tests are done, start the clustered roles, also known as resource groups, again. +The `Test-Cluster` cmdlet runs validation tests for failover cluster hardware and settings. Tests +can be run both before and after a cluster is set up. + +Test results are captured in a file with the file name that you specify. By running the validation +tests, you can confirm that your hardware and settings are compatible with Failover Clustering. +There are multiple types of tests, including Cluster, Inventory, Network, Storage, System, and other +types of tests. Storage tests will not test online disks or storage pools that are in use by a +clustered role. To test such disks, first run `Stop-ClusterGroup` to stop the clustered role, and +then run `Test-Cluster`. After the tests are done, start the clustered roles, also known as resource +groups, again. + +> [!NOTE] +> To perform some of the Cluster Shared Volume (CSV) validation tests, the `Test-Cluster` command +> creates a local user account named CliTest2 on each cluster node. The account is automatically +> removed from your system after the cluster validation tests are completed. ## EXAMPLES ### Example 1: Validate local cluster -``` -PS C:\> Test-Cluster -Mode LastWriteTime Length Name ----- ------------- ------ ---- --a--- 10/10/2008 6:31 PM 1132255 Test-Cluster on 2008.10.10 At 18.22.53.mht + +```powershell +Test-Cluster ``` This example runs all applicable cluster validation tests on the local cluster. ### Example 2: Validate specified nodes -``` -PS C:\> Test-Cluster -Node "node1", "node2" -Mode LastWriteTime Length Name ----- ------------- ------ ---- --a--- 10/10/2008 6:18 PM 998032 Test-Cluster on 2008.10.10 At 18.08.24.mht + +```powershell +Test-Cluster -Node "node1", "node2" ``` -This example runs all cluster validation tests on the nodes named node1 and node2. -If either node1 or node2 is already a member of a cluster, then the tests will include all nodes in that cluster. +This example runs all cluster validation tests on the nodes named node1 and node2. If either node1 +or node2 is already a member of a cluster, then the tests will include all nodes in that cluster. ### Example 3: View tests and categories in cluster validation -``` -PS C:\> Test-Cluster -List -Category DisplayName Description --------- ----------- ----------- -Cluster Configuration List Cluster Core Groups List information about the available... -Cluster Configuration List Cluster Network Information List cluster-specific network settin... -Cluster Configuration List Cluster Resources List the resources that are configur... -Cluster Configuration List Cluster Volumes List information for the volumes in ... -Cluster Configuration List Clustered Roles List information about clustered roles. -Cluster Configuration Validate Quorum Configuration Validate that the current quorum con... -Cluster Configuration Validate Resource Status Validate that cluster resources are ... -Cluster Configuration Validate Service Principal Name Validate that a Service Principal Na... -Cluster Configuration Validate Volume Consistency If any volumes are flagged as incons... -Hyper-V Configuration List Information About Servers Runni... List Hyper-V related information on ... -Hyper-V Configuration Validate Compatibility of Virtual Fi... Validate that all specified nodes sh... -Hyper-V Configuration Validate Hyper-V Memory Resource Poo... Validate that all specified nodes sh... -Hyper-V Configuration Validate Hyper-V Network Resource Po... Validate that all specified nodes sh... -Hyper-V Configuration Validate Hyper-V Processor Resource ... Validate that all specified nodes sh... -Hyper-V Configuration Validate Hyper-V Role Installed Validate that all the nodes have the... -Hyper-V Configuration Validate Hyper-V Storage Resource Po... Validate that all specified nodes sh... -Hyper-V Configuration Validate Matching Processor Manufact... Validate that all specified nodes sh... -Hyper-V Configuration List Hyper-V Virtual Machine Informa... List Hyper-V virtual machine informa... -Hyper-V Configuration Validate Hyper-V Integration Service... Validate that the Hyper-V integratio... -Hyper-V Configuration Validate Hyper-V Virtual Machine Net... Validate that all virtual machines o... -Hyper-V Configuration Validate Hyper-V Virtual Machine Sto... Validate that all virtual machines o... -Inventory List Fibre Channel Host Bus Adapters List Fibre Channel host bus adapters... -Inventory List iSCSI Host Bus Adapters List iSCSI host bus adapters on each... -Inventory List SAS Host Bus Adapters List Serial Attached SCSI (SAS) host... -Inventory List BIOS Information List BIOS information from each node. -Inventory List Environment Variables List environment variables set on ea... -Inventory List Memory Information List memory information for each node. -Inventory List Operating System Information List information about the operating... -Inventory List Plug and Play Devices List Plug and Play devices on each n... -Inventory List Running Processes List the running processes on each n... -Inventory List Services Information List information about the services ... -Inventory List Software Updates List software updates that have been... -Inventory List System Drivers List the system drivers on each node. -Inventory List System Information List system information such as comp... -Inventory List Unsigned Drivers List the unsigned drivers on each node. -Network List Network Binding Order List the order in which networks are... -Network Validate Cluster Network Configuration Validate the cluster networks that w... -Network Validate IP Configuration Validate that IP addresses are uniqu... -Network Validate Multiple Subnet Properties For clusters using multiple subnets,... -Network Validate Network Communication Validate that servers can communicat... -Network Validate Windows Firewall Configuration Validate that the Windows Firewall i... -Storage List Disks List all disks visible to one or mor... -Storage List Potential Cluster Disks List disks that will be validated fo... -Storage Validate CSV Network Bindings Validate that network bindings requi... -Storage Validate CSV Settings Validate that settings and configura... -Storage Validate Disk Access Latency Validate acceptable latency for disk... -Storage Validate Disk Arbitration Validate that a node that owns a dis... -Storage Validate Disk Failover Validate that a disk can fail over s... -Storage Validate File System Validate that the file system on dis... -Storage Validate Microsoft MPIO-based disks Validate that disks that use Microso... -Storage Validate Multiple Arbitration Validate that in a multiple-node arb... -Storage Validate SCSI device Vital Product D... Validate uniqueness of inquiry data ... -Storage Validate SCSI-3 Persistent Reservation Validate that storage supports the S... -Storage Validate Simultaneous Failover Validate that disks can fail over si... -System Configuration Validate Active Directory Configuration Validate that all the nodes have the... -System Configuration Validate All Drivers Signed Validate that tested servers contain... -System Configuration Validate Cluster Service and Driver ... Validate startup settings used by se... -System Configuration Validate Memory Dump Settings Validate that none of the nodes curr... -System Configuration Validate Operating System Edition Validate that all tested servers are... -System Configuration Validate Operating System Installati... Validate that the operating systems ... -System Configuration Validate Operating System Version Validate that the operating systems ... -System Configuration Validate Required Services Validate that services required for ... -System Configuration Validate Same Processor Architecture Validate that all servers run as 64-... -System Configuration Validate Service Pack Levels Validate that all servers with same ... -System Configuration Validate Software Update Levels Validate that all tested servers hav... -System Configuration Validate System Drive Variable Validate that all nodes have the sam... + +```powershell +Test-Cluster -List ``` -This example lists the names of all tests and categories in cluster validation. -Specify these test names with *Ignore* or *Include* parameters to run specific tests. +This example lists the names of all tests and categories in cluster validation. Specify these test +names with **Ignore** or **Include** parameters to run specific tests. ### Example 4: Validate specified nodes for storage -``` -PS C:\> Test-Cluster -Node "node1", "node2" -Include "Storage" -Mode LastWriteTime Length Name ----- ------------- ------ ---- --a--- 10/10/2008 6:20 PM 37818 Test-Cluster on 2008.10.10 At 18.20.52.mht + +```powershell +Test-Cluster -Node "node1", "node2" -Include "Storage" ``` -This example runs the storage validation tests on the nodes named node1 and node2. -If either node1 or node2 is already a member of a cluster, then the tests will include all nodes in that cluster. +This example runs the storage validation tests on the nodes named node1 and node2. If either node1 +or node2 is already a member of a cluster, then the tests will include all nodes in that cluster. ### Example 5: Validate specified nodes for everything except inventory -``` -PS C:\> Test-Cluster -Node "node1", "node2" -Ignore Inventory -Mode LastWriteTime Length Name ----- ------------- ------ ---- --a--- 10/10/2008 6:20 PM 732889 Test-Cluster on 2008.10.10 At 18.19.47.mht + +```powershell +Test-Cluster -Node "node1", "node2" -Ignore Inventory ``` -This example runs all validation tests except the Inventory tests on the nodes named node1 and node2. -If either node1 or node2 is already a member of a cluster, then the tests will include all nodes in that cluster. +This example runs all validation tests except the Inventory tests on the nodes named node1 and +node2. If either node1 or node2 is already a member of a cluster, then the tests will include all +nodes in that cluster. ### Example 6: Run a specific test -``` -PS C:\> Test-Cluster -Include "List Potential Cluster Disks" -Mode LastWriteTime Length Name ----- ------------- ------ ---- --a--- 10/15/2008 2:58 PM 36119 Test-Cluster on 2008.10.15 At 14.58.44.mht + +```powershell +Test-Cluster -Include "List Potential Cluster Disks" ``` This example runs the test called List Potential Cluster Disks on the local cluster. ### Example 7: Run multiple tests -``` -PS C:\> Test-Cluster -Include "List System Drivers","List Unsigned Drivers" -Mode LastWriteTime Length Name ----- ------------- ------ ---- --a--- 10/15/2008 3:00 PM 266571 Test-Cluster on 2008.10.15 At 15.00.08.mht + +```powershell +Test-Cluster -Include "List System Drivers","List Unsigned Drivers" ``` -This example runs the tests called List System Drivers and List Unsigned Drivers on the local cluster. +This example runs the tests called List System Drivers and List Unsigned Drivers on the local +cluster. ## PARAMETERS ### -Cluster -Specifies the name of the cluster on which to run this cmdlet. -If the input for this parameter is `.` or it is omitted, then the cmdlet runs on the local cluster. + +Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is +`.` or it is omitted, then the cmdlet runs on the local cluster. ```yaml Type: String @@ -192,6 +123,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -207,22 +139,24 @@ Accept wildcard characters: False ``` ### -Disk -Specifies the disk number or disks for which to run the cmdlet. -If the specified disk is online and is assigned to a clustered role or Cluster Shared Volume, you must also specify the *Force* parameter to take the disk offline for the duration of the storage tests. -Otherwise, the specified disk must be offline before the cmdlet is run. -If the *Disk* parameter is not specified, storage tests run on all disks that are available for use in the cluster or that are in the cluster resource offline or failed state. + +Specifies the disk number or disks for which to run the cmdlet. If the specified disk is online and +is assigned to a clustered role or Cluster Shared Volume, you must also specify the **Force** +parameter to take the disk offline for the duration of the storage tests. Otherwise, the specified +disk must be offline before the cmdlet is run. If the **Disk** parameter is not specified, storage +tests run on all disks that are available for use in the cluster or that are in the cluster resource +offline or failed state. + The acceptable values for this parameter are: -- Int32, Int64, Uint32, Uint64. -A number that represents a master boot record (MBR) signature of the disk. -- **System.String**. -A string that represents a master boot record (MBR) signature of the disk, hexadecimal format is supported. -- **System.String**. -A string that represents the GUID of a GPT disk. -- **ClusterResource**. -A cluster resource object that represents a clustered disk. -- **CimInstance#MSFT_Disk**. -An object returned from Get-Disk, from the Windows PowerShell® storage module. +- **Int32, Int64, Uint32, Uint64**. A number that represents a master boot record (MBR) signature of + the disk. +- **System.String**. A string that represents a master boot record (MBR) signature of the disk, + hexadecimal format is supported. +- **System.String**. A string that represents the GUID of a GPT disk. +- **ClusterResource**. A cluster resource object that represents a clustered disk. +- **CimInstance#MSFT_Disk**. An object returned from Get-Disk, from the Windows PowerShell® storage + module. ```yaml Type: Object[] @@ -237,6 +171,7 @@ Accept wildcard characters: False ``` ### -Force + Forces the command to run without asking for user confirmation. ```yaml @@ -252,8 +187,9 @@ Accept wildcard characters: False ``` ### -Ignore -Specifies which tests or category of tests to ignore during the validation test run. -All others tests or category of tests will run. + +Specifies which tests or category of tests to ignore during the validation test run. All others +tests or category of tests will run. ```yaml Type: StringCollection @@ -268,8 +204,9 @@ Accept wildcard characters: False ``` ### -Include -Specifies which tests or category of tests to include during the validation test run. -Only the tests or category of tests specified here will run. + +Specifies which tests or category of tests to include during the validation test run. Only the tests +or category of tests specified here will run. ```yaml Type: StringCollection @@ -284,6 +221,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the cluster on which to run the validation tests. ```yaml @@ -299,8 +237,9 @@ Accept wildcard characters: False ``` ### -List -Causes the cmdlet to list the tests and test categories. -No tests will run on the servers or cluster nodes. + +Causes the cmdlet to list the tests and test categories. No tests will run on the servers or cluster +nodes. ```yaml Type: SwitchParameter @@ -315,6 +254,7 @@ Accept wildcard characters: False ``` ### -Node + Specifies a comma-separated list of server names on which to run the cluster validation tests. ```yaml @@ -330,15 +270,21 @@ Accept wildcard characters: False ``` ### -Pool -Specifies the clustered storage pool or pools for which to run the cmdlet. -When the specified storage pool is online and a virtual disk in the storage pool is assigned to a clustered role or Cluster Shared Volume, you must also specify the **Force** parameter to take the storage pool offline for the duration of the storage tests. -Otherwise, the specified storage pool must be taken offline before the storage tests. -If the **Pool** parameter is not specified, storage tests run on all storage pools that are available for use in the cluster or that are in the cluster resource offline or failed state. + +Specifies the clustered storage pool or pools for which to run the cmdlet. When the specified +storage pool is online and a virtual disk in the storage pool is assigned to a clustered role or +Cluster Shared Volume, you must also specify the **Force** parameter to take the storage pool +offline for the duration of the storage tests. Otherwise, the specified storage pool must be taken +offline before the storage tests. If the **Pool** parameter is not specified, storage tests run on +all storage pools that are available for use in the cluster or that are in the cluster resource +offline or failed state. + The acceptable values for this parameter are: -- **System.String**: A string that represents the name of the clustered storage pool or pools. -- **ClusterResource**: A cluster resource object that represents a clustered storage pool. -- **CimInstance#MSFT_StoragePool**: An object returned from **Get-StoragePool**, from the Windows PowerShell storage module. +- **System.String**: A string that represents the name of the clustered storage pool or pools. +- **ClusterResource**: A cluster resource object that represents a clustered storage pool. +- **CimInstance#MSFT_StoragePool**: An object returned from `Get-StoragePool`, from the Windows + PowerShell storage module. ```yaml Type: Object[] @@ -353,6 +299,7 @@ Accept wildcard characters: False ``` ### -ReportName + Specifies the name of the test report to generate. ```yaml @@ -368,8 +315,8 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml Type: SwitchParameter @@ -384,7 +331,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/docset/winserver2022-ps/failoverclusters/Test-Cluster.md b/docset/winserver2022-ps/failoverclusters/Test-Cluster.md index 496494d1d6..e15a8dc83c 100644 --- a/docset/winserver2022-ps/failoverclusters/Test-Cluster.md +++ b/docset/winserver2022-ps/failoverclusters/Test-Cluster.md @@ -23,16 +23,16 @@ Test-Cluster [[-Node] ] [-Disk ] [-Pool ] ## DESCRIPTION -The `Test-Cluster` cmdlet runs validation tests for failover cluster hardware and settings. -Tests can be run both before and after a cluster is set up. +The `Test-Cluster` cmdlet runs validation tests for failover cluster hardware and settings. Tests +can be run both before and after a cluster is set up. Test results are captured in a file with the file name that you specify. By running the validation tests, you can confirm that your hardware and settings are compatible with Failover Clustering. There are multiple types of tests, including Cluster, Inventory, Network, Storage, System, and other types of tests. Storage tests will not test online disks or storage pools that are in use by a clustered role. To test such disks, first run `Stop-ClusterGroup` to stop the clustered role, and -then run `Test-Cluster`. After the tests are done, start the clustered roles, also known as -resource groups, again. +then run `Test-Cluster`. After the tests are done, start the clustered roles, also known as resource +groups, again. > [!NOTE] > To perform some of the Cluster Shared Volume (CSV) validation tests, the `Test-Cluster` command @@ -282,8 +282,8 @@ offline or failed state. The acceptable values for this parameter are: - **System.String**: A string that represents the name of the clustered storage pool or pools. -- **ClusterResource**: A cluster resource object that represents a clustered storage pool. -- **CimInstance#MSFT_StoragePool**: An object returned from **Get-StoragePool**, from the Windows +- **ClusterResource**: A cluster resource object that represents a clustered storage pool. +- **CimInstance#MSFT_StoragePool**: An object returned from `Get-StoragePool`, from the Windows PowerShell storage module. ```yaml From 60198c0c0da86d3b8f9044cf830fd6c7b5b51aeb Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Mon, 3 Oct 2022 10:51:10 +0100 Subject: [PATCH 294/965] Updated force parameter description --- docset/winserver2012-ps/failoverclusters/Test-Cluster.md | 5 +++-- docset/winserver2012r2-ps/failoverclusters/Test-Cluster.md | 5 +++-- docset/winserver2016-ps/failoverclusters/Test-Cluster.md | 4 +++- docset/winserver2019-ps/failoverclusters/Test-Cluster.md | 4 +++- docset/winserver2022-ps/failoverclusters/Test-Cluster.md | 4 +++- 5 files changed, 15 insertions(+), 7 deletions(-) diff --git a/docset/winserver2012-ps/failoverclusters/Test-Cluster.md b/docset/winserver2012-ps/failoverclusters/Test-Cluster.md index 22b450ccd5..7a5b8c6d88 100644 --- a/docset/winserver2012-ps/failoverclusters/Test-Cluster.md +++ b/docset/winserver2012-ps/failoverclusters/Test-Cluster.md @@ -153,8 +153,9 @@ Accept wildcard characters: False ### -Force -Runs the cmdlet without prompting for confirmation. -By default the cmdlet will ask for confirmation from the user before proceeding. +Runs the cmdlet without prompting for confirmation. By default the cmdlet will ask for confirmation +from the user before proceeding. When combined with the **Disk** or **Pool** parameters, the disks or +storage pool is taken offline for the duration of the storage tests. ```yaml Type: SwitchParameter diff --git a/docset/winserver2012r2-ps/failoverclusters/Test-Cluster.md b/docset/winserver2012r2-ps/failoverclusters/Test-Cluster.md index aeae8e001b..f45ad02d8a 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Test-Cluster.md +++ b/docset/winserver2012r2-ps/failoverclusters/Test-Cluster.md @@ -171,8 +171,9 @@ Accept wildcard characters: False ### -Force -Runs the cmdlet without prompting for confirmation. -By default the cmdlet will ask for confirmation from the user before proceeding. +Runs the cmdlet without prompting for confirmation. By default the cmdlet will ask for confirmation +from the user before proceeding. When combine with the **Disk** or **Pool** parameters, the disks or +storage pool is taken offline for the duration of the storage tests. ```yaml Type: SwitchParameter diff --git a/docset/winserver2016-ps/failoverclusters/Test-Cluster.md b/docset/winserver2016-ps/failoverclusters/Test-Cluster.md index b3c1cf4427..c7bd5adc6c 100644 --- a/docset/winserver2016-ps/failoverclusters/Test-Cluster.md +++ b/docset/winserver2016-ps/failoverclusters/Test-Cluster.md @@ -172,7 +172,9 @@ Accept wildcard characters: False ### -Force -Forces the command to run without asking for user confirmation. +Runs the cmdlet without prompting for confirmation. By default the cmdlet will ask for confirmation +from the user before proceeding. When combine with the **Disk** or **Pool** parameters, the disks or +storage pool is taken offline for the duration of the storage tests. ```yaml Type: SwitchParameter diff --git a/docset/winserver2019-ps/failoverclusters/Test-Cluster.md b/docset/winserver2019-ps/failoverclusters/Test-Cluster.md index 89eb5aa52e..f0b5ab1cb5 100644 --- a/docset/winserver2019-ps/failoverclusters/Test-Cluster.md +++ b/docset/winserver2019-ps/failoverclusters/Test-Cluster.md @@ -172,7 +172,9 @@ Accept wildcard characters: False ### -Force -Forces the command to run without asking for user confirmation. +Runs the cmdlet without prompting for confirmation. By default the cmdlet will ask for confirmation +from the user before proceeding. When combine with the **Disk** or **Pool** parameters, the disks or +storage pool is taken offline for the duration of the storage tests. ```yaml Type: SwitchParameter diff --git a/docset/winserver2022-ps/failoverclusters/Test-Cluster.md b/docset/winserver2022-ps/failoverclusters/Test-Cluster.md index e15a8dc83c..c79d06eba9 100644 --- a/docset/winserver2022-ps/failoverclusters/Test-Cluster.md +++ b/docset/winserver2022-ps/failoverclusters/Test-Cluster.md @@ -172,7 +172,9 @@ Accept wildcard characters: False ### -Force -Forces the command to run without asking for user confirmation. +Runs the cmdlet without prompting for confirmation. By default the cmdlet will ask for confirmation +from the user before proceeding. When combine with the **Disk** or **Pool** parameters, the disks or +storage pool is taken offline for the duration of the storage tests. ```yaml Type: SwitchParameter From 115d35939d4a789a59c62097c34126ad8cc787fc Mon Sep 17 00:00:00 2001 From: Robin Harwood <19212983+robinharwood@users.noreply.github.com> Date: Mon, 7 Nov 2022 15:33:06 +0000 Subject: [PATCH 295/965] Apply suggestions from code review Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2012-ps/failoverclusters/Test-Cluster.md | 5 ++--- docset/winserver2012r2-ps/failoverclusters/Test-Cluster.md | 6 +++--- docset/winserver2016-ps/failoverclusters/Test-Cluster.md | 6 +++--- docset/winserver2019-ps/failoverclusters/Test-Cluster.md | 6 +++--- docset/winserver2022-ps/failoverclusters/Test-Cluster.md | 6 +++--- 5 files changed, 14 insertions(+), 15 deletions(-) diff --git a/docset/winserver2012-ps/failoverclusters/Test-Cluster.md b/docset/winserver2012-ps/failoverclusters/Test-Cluster.md index 7a5b8c6d88..8f281db584 100644 --- a/docset/winserver2012-ps/failoverclusters/Test-Cluster.md +++ b/docset/winserver2012-ps/failoverclusters/Test-Cluster.md @@ -136,7 +136,7 @@ The acceptable values for this parameter are: hexadecimal format is supported. - **System.String**. A string that represents the GUID of a GPT disk. - **ClusterResource**. A cluster resource object that represents a clustered disk. -- **CimInstance#MSFT_Disk**. An object returned from Get-Disk, from the Windows PowerShell® storage +- **CimInstance#MSFT_Disk**. An object returned from Get-Disk, from the Windows PowerShell storage module. ```yaml @@ -171,7 +171,7 @@ Accept wildcard characters: False ### -Ignore -Specifies which tests or category of tests to ignore during the validation test run. All others +Specifies which tests or category of tests to ignore during the validation test run. All other tests or category of tests will run. ```yaml @@ -316,7 +316,6 @@ Accept wildcard characters: False ### -WhatIf Shows what would happen if the cmdlet runs. The cmdlet is not run. -The cmdlet is not run. ```yaml Type: SwitchParameter diff --git a/docset/winserver2012r2-ps/failoverclusters/Test-Cluster.md b/docset/winserver2012r2-ps/failoverclusters/Test-Cluster.md index f45ad02d8a..0fd0159848 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Test-Cluster.md +++ b/docset/winserver2012r2-ps/failoverclusters/Test-Cluster.md @@ -154,7 +154,7 @@ The acceptable values for this parameter are: hexadecimal format is supported. - **System.String**. A string that represents the GUID of a GPT disk. - **ClusterResource**. A cluster resource object that represents a clustered disk. -- **CimInstance#MSFT_Disk**. An object returned from Get-Disk, from the Windows PowerShell® storage +- **CimInstance#MSFT_Disk**. An object returned from Get-Disk, from the Windows PowerShell storage module. ```yaml @@ -172,7 +172,7 @@ Accept wildcard characters: False ### -Force Runs the cmdlet without prompting for confirmation. By default the cmdlet will ask for confirmation -from the user before proceeding. When combine with the **Disk** or **Pool** parameters, the disks or +from the user before proceeding. When combined with the **Disk** or **Pool** parameters, the disks or storage pool is taken offline for the duration of the storage tests. ```yaml @@ -189,7 +189,7 @@ Accept wildcard characters: False ### -Ignore -Specifies which tests or category of tests to ignore during the validation test run. All others +Specifies which tests or category of tests to ignore during the validation test run. All other tests or category of tests will run. ```yaml diff --git a/docset/winserver2016-ps/failoverclusters/Test-Cluster.md b/docset/winserver2016-ps/failoverclusters/Test-Cluster.md index c7bd5adc6c..0c49954549 100644 --- a/docset/winserver2016-ps/failoverclusters/Test-Cluster.md +++ b/docset/winserver2016-ps/failoverclusters/Test-Cluster.md @@ -155,7 +155,7 @@ The acceptable values for this parameter are: hexadecimal format is supported. - **System.String**. A string that represents the GUID of a GPT disk. - **ClusterResource**. A cluster resource object that represents a clustered disk. -- **CimInstance#MSFT_Disk**. An object returned from Get-Disk, from the Windows PowerShell® storage +- **CimInstance#MSFT_Disk**. An object returned from Get-Disk, from the Windows PowerShell storage module. ```yaml @@ -173,7 +173,7 @@ Accept wildcard characters: False ### -Force Runs the cmdlet without prompting for confirmation. By default the cmdlet will ask for confirmation -from the user before proceeding. When combine with the **Disk** or **Pool** parameters, the disks or +from the user before proceeding. When combined with the **Disk** or **Pool** parameters, the disks or storage pool is taken offline for the duration of the storage tests. ```yaml @@ -190,7 +190,7 @@ Accept wildcard characters: False ### -Ignore -Specifies which tests or category of tests to ignore during the validation test run. All others +Specifies which tests or category of tests to ignore during the validation test run. All other tests or category of tests will run. ```yaml diff --git a/docset/winserver2019-ps/failoverclusters/Test-Cluster.md b/docset/winserver2019-ps/failoverclusters/Test-Cluster.md index f0b5ab1cb5..3316284619 100644 --- a/docset/winserver2019-ps/failoverclusters/Test-Cluster.md +++ b/docset/winserver2019-ps/failoverclusters/Test-Cluster.md @@ -155,7 +155,7 @@ The acceptable values for this parameter are: hexadecimal format is supported. - **System.String**. A string that represents the GUID of a GPT disk. - **ClusterResource**. A cluster resource object that represents a clustered disk. -- **CimInstance#MSFT_Disk**. An object returned from Get-Disk, from the Windows PowerShell® storage +- **CimInstance#MSFT_Disk**. An object returned from Get-Disk, from the Windows PowerShell storage module. ```yaml @@ -173,7 +173,7 @@ Accept wildcard characters: False ### -Force Runs the cmdlet without prompting for confirmation. By default the cmdlet will ask for confirmation -from the user before proceeding. When combine with the **Disk** or **Pool** parameters, the disks or +from the user before proceeding. When combined with the **Disk** or **Pool** parameters, the disks or storage pool is taken offline for the duration of the storage tests. ```yaml @@ -190,7 +190,7 @@ Accept wildcard characters: False ### -Ignore -Specifies which tests or category of tests to ignore during the validation test run. All others +Specifies which tests or category of tests to ignore during the validation test run. All other tests or category of tests will run. ```yaml diff --git a/docset/winserver2022-ps/failoverclusters/Test-Cluster.md b/docset/winserver2022-ps/failoverclusters/Test-Cluster.md index c79d06eba9..e20858c630 100644 --- a/docset/winserver2022-ps/failoverclusters/Test-Cluster.md +++ b/docset/winserver2022-ps/failoverclusters/Test-Cluster.md @@ -155,7 +155,7 @@ The acceptable values for this parameter are: hexadecimal format is supported. - **System.String**. A string that represents the GUID of a GPT disk. - **ClusterResource**. A cluster resource object that represents a clustered disk. -- **CimInstance#MSFT_Disk**. An object returned from Get-Disk, from the Windows PowerShell® storage +- **CimInstance#MSFT_Disk**. An object returned from Get-Disk, from the Windows PowerShell storage module. ```yaml @@ -173,7 +173,7 @@ Accept wildcard characters: False ### -Force Runs the cmdlet without prompting for confirmation. By default the cmdlet will ask for confirmation -from the user before proceeding. When combine with the **Disk** or **Pool** parameters, the disks or +from the user before proceeding. When combined with the **Disk** or **Pool** parameters, the disks or storage pool is taken offline for the duration of the storage tests. ```yaml @@ -190,7 +190,7 @@ Accept wildcard characters: False ### -Ignore -Specifies which tests or category of tests to ignore during the validation test run. All others +Specifies which tests or category of tests to ignore during the validation test run. All other tests or category of tests will run. ```yaml From 2e8c8f7e1388afa159cbbac0be1e6b627fc8e309 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Wed, 14 Sep 2022 23:35:01 +0100 Subject: [PATCH 296/965] New compression parameters added --- .../winserver2022-ps/smbshare/New-SmbShare.md | 4 +- .../smbshare/Reset-SmbClientConfiguration.md | 51 +++++++--- .../smbshare/Reset-SmbServerConfiguration.md | 55 ++++++++--- .../smbshare/Set-SmbClientConfiguration.md | 93 +++++++++++++++---- .../smbshare/Set-SmbServerConfiguration.md | 70 ++++++++++---- 5 files changed, 210 insertions(+), 63 deletions(-) diff --git a/docset/winserver2022-ps/smbshare/New-SmbShare.md b/docset/winserver2022-ps/smbshare/New-SmbShare.md index 1e0344ba9b..c466e897e4 100644 --- a/docset/winserver2022-ps/smbshare/New-SmbShare.md +++ b/docset/winserver2022-ps/smbshare/New-SmbShare.md @@ -20,8 +20,8 @@ New-SmbShare [-Temporary] [-ContinuouslyAvailable ] [-Description ] [-CATimeout ] [-FolderEnumerationMode ] [-CachingMode ] [-FullAccess ] [-ChangeAccess ] [-ReadAccess ] [-NoAccess ] [-SecurityDescriptor ] [-Path] [-Name] - [[-ScopeName] ] [-EncryptData ] [-CimSession ] [-ThrottleLimit ] - [-AsJob] [-WhatIf] [-Confirm] [] + [[-ScopeName] ] [-EncryptData ] [-CompressData ] [-LeasingMode ] + [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION diff --git a/docset/winserver2022-ps/smbshare/Reset-SmbClientConfiguration.md b/docset/winserver2022-ps/smbshare/Reset-SmbClientConfiguration.md index c6dee8b052..bfac2e5222 100644 --- a/docset/winserver2022-ps/smbshare/Reset-SmbClientConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Reset-SmbClientConfiguration.md @@ -16,16 +16,16 @@ Resets the Server Message Block (SMB) client configuration parameters to their d ## SYNTAX ``` -Reset-SmbClientConfiguration [-All] [-ConnectionCountPerRssNetworkInterface] - [-DirectoryCacheEntriesMax] [-DirectoryCacheEntrySizeMax] [-DirectoryCacheLifetime] - [-DisableCompression] [-DormantFileLimit] [-EnableBandwidthThrottling] - [-EnableByteRangeLockingOnReadOnlyFiles] [-EnableLargeMtu] [-EnableLoadBalanceScaleOut] - [-EnableMultiChannel] [-EncryptionCiphers] [-ExtendedSessionTimeout] [-FileInfoCacheEntriesMax] - [-FileInfoCacheLifetime] [-FileNotFoundCacheEntriesMax] [-FileNotFoundCacheLifetime] - [-ForceSMBEncryptionOverQuic] [-KeepConn] [-MaxCmds] [-MaximumConnectionCountPerServer] - [-OplocksDisabled] [-SessionTimeout] [-SkipCertificateCheck] [-UseOpportunisticLocking] - [-WindowSizeThreshold] [-Force] [-CimSession ] [-ThrottleLimit ] [-AsJob] - [-WhatIf] [-Confirm] [] +Reset-SmbClientConfiguration [-All] [-CompressibilitySampling] +[-ConnectionCountPerRssNetworkInterface] [-DirectoryCacheEntriesMax] [-DirectoryCacheEntrySizeMax] +[-DirectoryCacheLifetime] [-DisableCompression] [-DormantFileLimit] [-EnableBandwidthThrottling] +[-EnableByteRangeLockingOnReadOnlyFiles] [-EnableLargeMtu] [-EnableLoadBalanceScaleOut] +[-EnableMultiChannel] [-EncryptionCiphers] [-ExtendedSessionTimeout] [-FileInfoCacheEntriesMax] +[-FileInfoCacheLifetime] [-FileNotFoundCacheEntriesMax] [-FileNotFoundCacheLifetime] +[-ForceSMBEncryptionOverQuic] [-KeepConn] [-MaxCmds] [-MaximumConnectionCountPerServer] +[-OplocksDisabled] [-RequestCompression] [-SessionTimeout] [-SkipCertificateCheck] +[-UseOpportunisticLocking] [-WindowSizeThreshold] [-Force] [-CimSession ] +[-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -103,6 +103,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -CompressibilitySampling +{{ Fill CompressibilitySampling Description }} + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ConnectionCountPerRssNetworkInterface Resets the SMB connection count for each RSS network interface to its default value. @@ -458,7 +473,6 @@ Accept wildcard characters: False ``` ### -OplocksDisabled - Resets the opportunistic locks disabled value to its default value. ```yaml @@ -473,6 +487,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -RequestCompression +{{ Fill RequestCompression Description }} + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -SessionTimeout Resets the session time-out value to its default value. diff --git a/docset/winserver2022-ps/smbshare/Reset-SmbServerConfiguration.md b/docset/winserver2022-ps/smbshare/Reset-SmbServerConfiguration.md index c95628a77f..a2dd90c517 100644 --- a/docset/winserver2022-ps/smbshare/Reset-SmbServerConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Reset-SmbServerConfiguration.md @@ -17,18 +17,18 @@ Resets the Server Message Block (SMB) server configuration parameters to their d ``` Reset-SmbServerConfiguration [-All] [-AnnounceComment] [-AnnounceServer] [-AsynchronousCredits] - [-AuditSmb1Access] [-AutoShareServer] [-AutoShareWorkstation] [-CachedOpenLimit] - [-DisableSmbEncryptionOnSecureConnection] [-DurableHandleV2TimeoutInSeconds] - [-EnableDownlevelTimewarp] [-EnableLeasing] [-EnableMultiChannel] [-EnableOplocks] - [-EnableSMB2Protocol] [-EnableSMBQUIC] [-EnableStrictNameChecking] [-EncryptData] - [-EncryptionCiphers] [-IrpStackSize] [-KeepAliveTime] [-MaxChannelPerSession] [-MaxMpxCount] - [-MaxSessionPerConnection] [-MaxThreadsPerQueue] [-MaxWorkItems] [-NullSessionShares] - [-OplockBreakWait] [-PendingClientTimeoutInSeconds] [-RejectUnencryptedAccess] - [-RestrictNamedpipeAccessViaQuic] [-ServerHidden] [-Smb2CreditsMax] [-Smb2CreditsMin] - [-SmbServerNameHardeningLevel] [-TreatHostAsStableStorage] [-ValidateAliasNotCircular] - [-ValidateShareScope] [-ValidateShareScopeNotAliased] [-ValidateTargetName] [-Force] - [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] - [] +[-AuditSmb1Access] [-AutoShareServer] [-AutoShareWorkstation] [-CachedOpenLimit] +[-DisableCompression] [-DisableSmbEncryptionOnSecureConnection] [-DurableHandleV2TimeoutInSeconds] +[-EnableDownlevelTimewarp] [-EnableLeasing] [-EnableMultiChannel] [-EnableOplocks] +[-EnableSMB2Protocol] [-EnableSMBQUIC] [-EnableStrictNameChecking] [-EncryptData] +[-EncryptionCiphers] [-IrpStackSize] [-KeepAliveTime] [-MaxChannelPerSession] [-MaxMpxCount] +[-MaxSessionPerConnection] [-MaxThreadsPerQueue] [-MaxWorkItems] [-NullSessionShares] +[-OplockBreakWait] [-PendingClientTimeoutInSeconds] [-RejectUnencryptedAccess] +[-RequestCompression] [-RestrictNamedpipeAccessViaQuic] [-ServerHidden] [-Smb2CreditsMax] +[-Smb2CreditsMin] [-SmbServerNameHardeningLevel] [-TreatHostAsStableStorage] +[-ValidateAliasNotCircular] [-ValidateShareScope] [-ValidateShareScopeNotAliased] +[-ValidateTargetName] [-Force] [-CimSession ] [-ThrottleLimit ] [-AsJob] +[-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -221,6 +221,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -DisableCompression +{{ Fill DisableCompression Description }} + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -DisableSmbEncryptionOnSecureConnection Resets the disable SMB encryption on secure connection behavior to its default value. @@ -574,7 +589,6 @@ Accept wildcard characters: False ``` ### -RejectUnencryptedAccess - Resets the unencrypted access behavior to its default value. ```yaml @@ -589,6 +603,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -RequestCompression +{{ Fill RequestCompression Description }} + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -RestrictNamedpipeAccessViaQuic Resets the named pipes behavior when using SMB over QUIC to its default value. diff --git a/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md b/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md index c0c6880206..4f557bcbe0 100644 --- a/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md @@ -16,21 +16,22 @@ Sets the SMB client configuration. ## SYNTAX ``` -Set-SmbClientConfiguration [-ConnectionCountPerRssNetworkInterface ] - [-DirectoryCacheEntriesMax ] [-DirectoryCacheEntrySizeMax ] - [-DirectoryCacheLifetime ] [-DisableCompression ] [-DormantFileLimit ] - [-EnableBandwidthThrottling ] [-EnableByteRangeLockingOnReadOnlyFiles ] - [-EnableInsecureGuestLogons ] [-EnableLargeMtu ] - [-EnableLoadBalanceScaleOut ] [-EnableMultiChannel ] - [-EnableSecuritySignature ] [-EncryptionCiphers ] - [-ExtendedSessionTimeout ] [-FileInfoCacheEntriesMax ] - [-FileInfoCacheLifetime ] [-FileNotFoundCacheEntriesMax ] - [-FileNotFoundCacheLifetime ] [-ForceSMBEncryptionOverQuic ] [-KeepConn ] - [-MaxCmds ] [-MaximumConnectionCountPerServer ] [-OplocksDisabled ] - [-RequireSecuritySignature ] [-SessionTimeout ] [-SkipCertificateCheck ] - [-UseOpportunisticLocking ] [-WindowSizeThreshold ] [-Force] - [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] - [] +Set-SmbClientConfiguration [-CompressibilitySamplingSize ] +[-CompressibleThreshold ] [-ConnectionCountPerRssNetworkInterface ] +[-DirectoryCacheEntriesMax ] [-DirectoryCacheEntrySizeMax ] +[-DirectoryCacheLifetime ] [-DisableCompression ] [-DormantFileLimit ] +[-EnableBandwidthThrottling ] [-EnableByteRangeLockingOnReadOnlyFiles ] +[-EnableCompressibilitySampling ] [-EnableInsecureGuestLogons ] +[-EnableLargeMtu ] [-EnableLoadBalanceScaleOut ] [-EnableMultiChannel ] +[-EnableSecuritySignature ] [-EncryptionCiphers ] +[-ExtendedSessionTimeout ] [-FileInfoCacheEntriesMax ] +[-FileInfoCacheLifetime ] [-FileNotFoundCacheEntriesMax ] +[-FileNotFoundCacheLifetime ] [-ForceSMBEncryptionOverQuic ] [-KeepConn ] +[-MaxCmds ] [-MaximumConnectionCountPerServer ] [-OplocksDisabled ] +[-RequestCompression ] [-RequireSecuritySignature ] [-SessionTimeout ] +[-SkipCertificateCheck ] [-UseOpportunisticLocking ] +[-WindowSizeThreshold ] [-Force] [-CimSession ] [-ThrottleLimit ] +[-AsJob] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -101,6 +102,36 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -CompressibilitySamplingSize +{{ Fill CompressibilitySamplingSize Description }} + +```yaml +Type: UInt64 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CompressibleThreshold +{{ Fill CompressibleThreshold Description }} + +```yaml +Type: UInt64 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ConnectionCountPerRssNetworkInterface Specifies the SMB connection count per each RSS network interface. @@ -214,7 +245,6 @@ Accept wildcard characters: False ``` ### -EnableByteRangeLockingOnReadOnlyFiles - Indicates that byte range locking on read-only files is enabled. ```yaml @@ -229,6 +259,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -EnableCompressibilitySampling +{{ Fill EnableCompressibilitySampling Description }} + +```yaml +Type: Boolean +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -EnableInsecureGuestLogons Indicates whether SMB client will allow insecure guest logons to an SMB server. @@ -487,7 +532,6 @@ Accept wildcard characters: False ``` ### -OplocksDisabled - Indicates that opportunistic locks are disabled. ```yaml @@ -502,6 +546,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -RequestCompression +{{ Fill RequestCompression Description }} + +```yaml +Type: Boolean +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -RequireSecuritySignature Indicates that the security signature is required. diff --git a/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md b/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md index 5935b53cd5..562efd9d0b 100644 --- a/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md @@ -17,25 +17,26 @@ Sets the Server Message Block (SMB) server configuration. ``` Set-SmbServerConfiguration [-AnnounceComment ] [-AnnounceServer ] - [-AsynchronousCredits ] [-AuditSmb1Access ] [-AutoDisconnectTimeout ] - [-AutoShareServer ] [-AutoShareWorkstation ] [-CachedOpenLimit ] - [-DisableSmbEncryptionOnSecureConnection ] [-DurableHandleV2TimeoutInSeconds ] - [-EnableAuthenticateUserSharing ] [-EnableDownlevelTimewarp ] - [-EnableForcedLogoff ] [-EnableLeasing ] [-EnableMultiChannel ] - [-EnableOplocks ] [-EnableSecuritySignature ] [-EnableSMB1Protocol ] - [-EnableSMB2Protocol ] [-EnableSMBQUIC ] [-EnableStrictNameChecking ] - [-EncryptData ] [-EncryptionCiphers ] [-IrpStackSize ] - [-KeepAliveTime ] [-MaxChannelPerSession ] [-MaxMpxCount ] - [-MaxSessionPerConnection ] [-MaxThreadsPerQueue ] [-MaxWorkItems ] - [-NullSessionPipes ] [-NullSessionShares ] [-OplockBreakWait ] - [-PendingClientTimeoutInSeconds ] [-RejectUnencryptedAccess ] - [-RequireSecuritySignature ] [-RestrictNamedpipeAccessViaQuic ] - [-ServerHidden ] [-Smb2CreditsMax ] [-Smb2CreditsMin ] - [-SmbServerNameHardeningLevel ] [-TreatHostAsStableStorage ] - [-ValidateAliasNotCircular ] [-ValidateShareScope ] - [-ValidateShareScopeNotAliased ] [-ValidateTargetName ] [-Force] - [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] - [] +[-AsynchronousCredits ] [-AuditSmb1Access ] [-AutoDisconnectTimeout ] +[-AutoShareServer ] [-AutoShareWorkstation ] [-CachedOpenLimit ] +[-DisableCompression ] [-DisableSmbEncryptionOnSecureConnection ] +[-DurableHandleV2TimeoutInSeconds ] [-EnableAuthenticateUserSharing ] +[-EnableDownlevelTimewarp ] [-EnableForcedLogoff ] [-EnableLeasing ] +[-EnableMultiChannel ] [-EnableOplocks ] [-EnableSecuritySignature ] +[-EnableSMB1Protocol ] [-EnableSMB2Protocol ] [-EnableSMBQUIC ] +[-EnableStrictNameChecking ] [-EncryptData ] [-EncryptionCiphers ] +[-IrpStackSize ] [-KeepAliveTime ] [-MaxChannelPerSession ] +[-MaxMpxCount ] [-MaxSessionPerConnection ] [-MaxThreadsPerQueue ] +[-MaxWorkItems ] [-NullSessionPipes ] [-NullSessionShares ] +[-OplockBreakWait ] [-PendingClientTimeoutInSeconds ] +[-RejectUnencryptedAccess ] [-RequestCompression ] +[-RequireSecuritySignature ] [-RestrictNamedpipeAccessViaQuic ] +[-ServerHidden ] [-Smb2CreditsMax ] [-Smb2CreditsMin ] +[-SmbServerNameHardeningLevel ] [-TreatHostAsStableStorage ] +[-ValidateAliasNotCircular ] [-ValidateShareScope ] +[-ValidateShareScopeNotAliased ] [-ValidateTargetName ] [-Force] +[-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] +[] ``` ## DESCRIPTION @@ -277,6 +278,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -DisableCompression +{{ Fill DisableCompression Description }} + +```yaml +Type: Boolean +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -DisableSmbEncryptionOnSecureConnection Specifies that SMB encryption will also be used if configured on the SMB server. By default, QUIC @@ -714,7 +730,6 @@ Accept wildcard characters: False ``` ### -RejectUnencryptedAccess - Indicates whether the client that does not support encryption is denied access if it attempts to connect to an encrypted share. @@ -730,6 +745,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -RequestCompression +{{ Fill RequestCompression Description }} + +```yaml +Type: Boolean +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -RequireSecuritySignature Indicates whether the security signature is required. From e3ed591b93f34006d94a286683b4a81e980b9be4 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Thu, 15 Sep 2022 15:02:11 +0100 Subject: [PATCH 297/965] Adding new SMB compression parameter descriptions --- .../winserver2022-ps/smbshare/New-SmbShare.md | 142 ++++++++++-------- .../smbshare/Reset-SmbClientConfiguration.md | 12 +- .../smbshare/Reset-SmbServerConfiguration.md | 12 +- .../smbshare/Set-SmbClientConfiguration.md | 22 ++- .../smbshare/Set-SmbServerConfiguration.md | 14 +- 5 files changed, 124 insertions(+), 78 deletions(-) diff --git a/docset/winserver2022-ps/smbshare/New-SmbShare.md b/docset/winserver2022-ps/smbshare/New-SmbShare.md index c466e897e4..87801118e8 100644 --- a/docset/winserver2022-ps/smbshare/New-SmbShare.md +++ b/docset/winserver2022-ps/smbshare/New-SmbShare.md @@ -17,56 +17,68 @@ Creates an SMB share. ``` New-SmbShare [-Temporary] [-ContinuouslyAvailable ] [-Description ] - [-ConcurrentUserLimit ] [-CATimeout ] [-FolderEnumerationMode ] - [-CachingMode ] [-FullAccess ] [-ChangeAccess ] [-ReadAccess ] - [-NoAccess ] [-SecurityDescriptor ] [-Path] [-Name] - [[-ScopeName] ] [-EncryptData ] [-CompressData ] [-LeasingMode ] - [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] [] +[-ConcurrentUserLimit ] [-CATimeout ] +[-FolderEnumerationMode ] [-CachingMode ] +[-FullAccess ] [-ChangeAccess ] [-ReadAccess ] [-NoAccess ] +[-SecurityDescriptor ] [-Path] [-Name] [[-ScopeName] ] +[-EncryptData ] [-CompressData ] [-LeasingMode ] +[-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] +[] ``` ## DESCRIPTION -The **New-SmbShare** cmdlet exposes a file system folder to remote clients as a Server Message Block (SMB) share. +The `New-SmbShare` cmdlet exposes a file system folder to remote clients as a Server Message Block +(SMB) share. -To delete a share that was created by this cmdlet, use the Remove-SmbShare cmdlet. +To delete a share that was created by this cmdlet, use the `Remove-SmbShare` cmdlet. ## EXAMPLES ### Example 1: Create an SMB share +```powershell +$Parameters = @{ + Name = 'VMSFiles' + Path = 'C:\ClusterStorage\Volume1\VMFiles' + FullAccess = 'Contoso\Administrator', 'Contoso\Contoso-HV1$' +} +New-SmbShare @Parameters ``` -PS C:\>New-SmbShare -Name "VMSFiles" -Path "C:\ClusterStorage\Volume1\VMFiles" -FullAccess "Contoso\Administrator", "Contoso\Contoso-HV1$" -Name ScopeName Path Description ----- --------- ---- ----------- -VMSFiles Contoso-SO C:\ClusterStorage\Volume1\... -``` -This command creates an SMB share named "VMSFiles" and grants Full Access permissions to "Contoso\Administrator", and "Contoso\Contoso-HV1$". +This command creates an SMB share named `VMSFiles` and grants Full Access permissions to +`Contoso\Administrator`, and `Contoso\Contoso-HV1$`. + +This example uses splatting to pass parameter values from the `$Parameters` variable to the command. +Learn more about [Splatting](/powershell/module/microsoft.powershell.core/about/about_splatting). ### Example 2: Create an encrypted SMB share -``` -PS C:\>New-SmbShare -Name "Data" -Path "J:\Data" -EncryptData $True -Name ScopeName Path Description ----- --------- ---- ----------- -Data Contoso-FS J:\Data +```powershell +New-SmbShare -Name "Data" -Path "J:\Data" -EncryptData $True ``` This command creates an encrypted SMB share. ### Example 3: Create an SMB share with Multiple Permissions -``` -PS C:\>New-SmbShare -Name "VMSFiles" -Path "C:\ClusterStorage\Volume1\VMFiles" -ChangeAccess "Users" -FullAccess "Administrators" - -Name ScopeName Path Description ----- --------- ---- ----------- -VMSFiles Contoso-SO C:\ClusterStorage\Volume1\... +```powershell +$Parameters = @{ + Name = 'VMSFiles' + Path = 'C:\ClusterStorage\Volume1\VMFiles' + ChangeAccess = 'Users' + FullAccess = 'Administrators' +} +New-SmbShare @Parameters ``` -This command creates an SMB share named "VMSFiles" and grants Change permissions to the local "Users" group, and Full Access permissions to the local "Administrators" group. +This command creates an SMB share named `VMSFiles` and grants Change permissions to the local +`Users` group, and Full Access permissions to the local `Administrators` group. +This example uses splatting to pass parameter values from the `$Parameters` variable to the command. +Learn more about [Splatting](/powershell/module/microsoft.powershell.core/about/about_splatting). ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. ```yaml Type: SwitchParameter @@ -96,8 +108,7 @@ Accept wildcard characters: False ``` ### -CachingMode -Specifies the caching mode of the offline files for the SMB share. -There are five caching modes: +Specifies the caching mode of the offline files for the SMB share. There are five caching modes: - None. Prevents users from storing documents and programs offline. @@ -139,8 +150,8 @@ Accept wildcard characters: False ``` ### -ChangeAccess -Specifies which users are granted modify permission to access the share. -Multiple users can be specified by using a comma-separated list. +Specifies which users are granted modify permission to access the share. Multiple users can be +specified by using a comma-separated list. ```yaml Type: String[] @@ -155,9 +166,10 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml Type: CimSession[] @@ -188,8 +200,8 @@ Accept wildcard characters: False ### -ConcurrentUserLimit Specifies the maximum number of concurrently connected users that the new SMB share may accommodate. -If this parameter is set to zero (0), then the number of users is unlimited. -The default value is zero (0). +If this parameter is set to zero (0), then the number of users is unlimited. The default value is +zero (0). ```yaml Type: UInt32 @@ -219,10 +231,9 @@ Accept wildcard characters: False ``` ### -Description -Specifies an optional description of the SMB share. -A description of the share is displayed by running the Get-SmbShare cmdlet. -The description may not contain more than 256 characters. -The default value no description, or an empty description. +Specifies an optional description of the SMB share. A description of the share is displayed by +running the Get-SmbShare cmdlet. The description may not contain more than 256 characters. The +default value no description, or an empty description. ```yaml Type: String @@ -252,14 +263,14 @@ Accept wildcard characters: False ``` ### -FolderEnumerationMode -Specifies which files and folders in the SMB share are visible to users. -The acceptable values for this parameter are: +Specifies which files and folders in the SMB share are visible to users. The acceptable values for +this parameter are: -- AccessBased. -SMB does not display the files and folders for a share to a user unless that user has rights to access the files and folders. -By default, access-based enumeration is disabled for new SMB shares. -- Unrestricted. -SMB displays files and folders to a user even when the user does not have permission to access the items. +- AccessBased. SMB does not display the files and folders for a share to a user unless that user has + rights to access the files and folders. By default, access-based enumeration is disabled for new + SMB shares. +- Unrestricted. SMB displays files and folders to a user even when the user does not have permission + to access the items. The default value is Unrestricted. @@ -277,9 +288,11 @@ Accept wildcard characters: False ``` ### -FullAccess -Specifies which accounts are granted full permission to access the share. -Use a comma-separated list to specify multiple accounts. -An account may not be specified more than once in the *FullAccess*, *ChangeAccess*, or *ReadAccess* parameter lists, but may be specified once in the *FullAccess*, *ChangeAccess*, or *ReadAccess* parameter list and once in the *NoAccess* parameter list. +Specifies which accounts are granted full permission to access the share. Use a comma-separated list +to specify multiple accounts. An account may not be specified more than once in the **FullAccess**, +**ChangeAccess**, or **ReadAccess** parameter lists, but may be specified once in the +**FullAccess**, **ChangeAccess**, or **ReadAccess** parameter list and once in the **NoAccess** +parameter list. ```yaml Type: String[] @@ -295,11 +308,12 @@ Accept wildcard characters: False ### -LeasingMode -Specifies SMB leasing and oplock behaviors for application compatibility. The acceptable values for this parameter are: +Specifies SMB leasing and oplock behaviors for application compatibility. The acceptable values for +this parameter are: - `Full:` Use default lease and oplock behaviors from SMB3. - `Shared:` Grant read-caching lease but not write or handle-caching. -- `None:` = No oplocks or leases, behave like SMB1 (not recommended). +- `None:` No oplocks or leases, behave like SMB1 (not recommended). ```yaml Type: LeasingMode @@ -314,9 +328,9 @@ Accept wildcard characters: False ``` ### -Name -Specifies a name for the SMB share. -The name may be composed of any valid file name characters, but must be less than 80 characters long. -The names `pipe` and `mailslot` are reserved for use by the computer. +Specifies a name for the SMB share. The name may be composed of any valid file name characters, but +must be less than 80 characters long. The names `pipe` and `mailslot` are reserved for use by the +computer. ```yaml Type: String @@ -427,9 +441,11 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml Type: Int32 @@ -477,7 +493,10 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -486,9 +505,10 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS ### Microsoft.Management.Infrastructure.CimInstance#ROOT/Microsoft/Windows/SMB/MSFT_SmbShare -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. -The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. -This cmdlet returns a **MSFT_SmbShare** object that represents the SMB share. +The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the +namespace and class name for the underlying WMI object. This cmdlet returns a **MSFT_SmbShare** +object that represents the SMB share. ## NOTES diff --git a/docset/winserver2022-ps/smbshare/Reset-SmbClientConfiguration.md b/docset/winserver2022-ps/smbshare/Reset-SmbClientConfiguration.md index bfac2e5222..f19643e10e 100644 --- a/docset/winserver2022-ps/smbshare/Reset-SmbClientConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Reset-SmbClientConfiguration.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: SmbClientConfiguration.cdxml-help.xml Module Name: SmbShare -ms.date: 06/24/2022 +ms.date: 09/15/2022 online version: http://go.microsoft.com/fwlink/?LinkID=241959 schema: 2.0.0 title: Reset-SmbClientConfiguration @@ -34,10 +34,14 @@ The `Reset-SmbClientConfiguration` cmdlet resets SMB client configuration parame default values. > [!NOTE] -> This cmdlet is available beginning with 2022-06 Cumulative Update for Microsoft server operating +> - This cmdlet is available beginning with 2022-06 Cumulative Update for Microsoft server operating > system version 21H2 for x64-based Systems > ([KB5014665](https://support.microsoft.com/help/5014665)), and Cumulative Update for Windows 11, > version 22H2 ([KB5014668](https://support.microsoft.com/help/5014668)). +> - The **CompressibilitySampling** and **RequestCompression** parameters are available beginning +> with 2022-08 Cumulative Update for Microsoft server operating system version 21H2 for x64-based +> Systems ([KB5016693](https://support.microsoft.com/help/5016693)), and Cumulative Update for +> Windows 11, version 22H2 ([KB5016691](https://support.microsoft.com/help/5016691)). ## EXAMPLES @@ -104,7 +108,7 @@ Accept wildcard characters: False ``` ### -CompressibilitySampling -{{ Fill CompressibilitySampling Description }} +Resets the compression sampling behavior. ```yaml Type: SwitchParameter @@ -488,7 +492,7 @@ Accept wildcard characters: False ``` ### -RequestCompression -{{ Fill RequestCompression Description }} +Resets the SMB client request compression value to its default value. ```yaml Type: SwitchParameter diff --git a/docset/winserver2022-ps/smbshare/Reset-SmbServerConfiguration.md b/docset/winserver2022-ps/smbshare/Reset-SmbServerConfiguration.md index a2dd90c517..02df2615f6 100644 --- a/docset/winserver2022-ps/smbshare/Reset-SmbServerConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Reset-SmbServerConfiguration.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: SmbServerConfiguration.cdxml-help.xml Module Name: SmbShare -ms.date: 06/24/2022 +ms.date: 09/15/2022 online version: http://go.microsoft.com/fwlink/?LinkID=241959 schema: 2.0.0 title: Reset-SmbServerConfiguration @@ -39,10 +39,14 @@ default values. For more information on SMB server and protocol specifications, and [[MS-SMB2]:Server Message Block (SMB) Protocol Versions 2 and3](/openspecs/windows_protocols/ms-smb2/5606ad47-5ee0-437a-817e-70c366052962). > [!NOTE] -> This cmdlet is available beginning with 2022-06 Cumulative Update for Microsoft server operating +> - This cmdlet is available beginning with 2022-06 Cumulative Update for Microsoft server operating > system version 21H2 for x64-based Systems > ([KB5014665](https://support.microsoft.com/help/5014665)), and Cumulative Update for Windows 11, > version 22H2 ([KB5014668](https://support.microsoft.com/help/5014668)). +> - The **DisableCompression** and **RequestCompression** parameters are available beginning with +> 2022-08 Cumulative Update for Microsoft server operating system version 21H2 for x64-based Systems +> ([KB5016693](https://support.microsoft.com/help/5016693)), and Cumulative Update for Windows 11, +> version 22H2 ([KB5016691](https://support.microsoft.com/help/5016691)). ## EXAMPLES @@ -222,7 +226,7 @@ Accept wildcard characters: False ``` ### -DisableCompression -{{ Fill DisableCompression Description }} +Resets the SMB compression behavior to its default value. ```yaml Type: SwitchParameter @@ -604,7 +608,7 @@ Accept wildcard characters: False ``` ### -RequestCompression -{{ Fill RequestCompression Description }} +Resets the SMB server request compression value to its default value. ```yaml Type: SwitchParameter diff --git a/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md b/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md index 4f557bcbe0..a9a9c95c6a 100644 --- a/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md @@ -39,10 +39,15 @@ Set-SmbClientConfiguration [-CompressibilitySamplingSize ] The `Set-SmbClientConfiguration` cmdlet sets the Server Message Block (SMB) client configuration. > [!NOTE] -> The **EncryptionCiphers** parameter is available beginning with 2022-06 Cumulative Update for +> - The **EncryptionCiphers** parameter is available beginning with 2022-06 Cumulative Update for > Microsoft server operating system version 21H2 for x64-based Systems > ([KB5014665](https://support.microsoft.com/help/5014665)), and Cumulative Update for Windows 11, > version 22H2 ([KB5014668](https://support.microsoft.com/help/5014668)). +> - The **CompressibilitySamplingSize**, **CompressibleThreshold**, +> **EnableCompressibilitySampling**, and **RequestCompression** parameters are available beginning +> with 2022-08 Cumulative Update for Microsoft server operating system version 21H2 for x64-based +> Systems ([KB5016693](https://support.microsoft.com/help/5016693)), and Cumulative Update for +> Windows 11, version 22H2 ([KB5016691](https://support.microsoft.com/help/5016691)). ## EXAMPLES @@ -103,7 +108,7 @@ Accept wildcard characters: False ``` ### -CompressibilitySamplingSize -{{ Fill CompressibilitySamplingSize Description }} +Specifies the size in bytes to sample in a file to look for compressible data. ```yaml Type: UInt64 @@ -118,7 +123,7 @@ Accept wildcard characters: False ``` ### -CompressibleThreshold -{{ Fill CompressibleThreshold Description }} +Specifies the threshold in bytes in which to attempt to find compressible data. ```yaml Type: UInt64 @@ -260,7 +265,13 @@ Accept wildcard characters: False ``` ### -EnableCompressibilitySampling -{{ Fill EnableCompressibilitySampling Description }} +Controls the sampling behavior. SMB by default always attempts to compress the entire file when a +client or server requests it, without using compression sampling. With EnableCompressibilitySampling +set to '$true' SMB uses of an algorithm where it attempted to compress the first 524,288,000 bytes +(500 MiB) of a file during transfer and track that at least 104,857,600 bytes (100 MiB) compressed +within that 500 MiB range. If fewer than 100 MiB was compressible, SMB compression stopped trying to +compress the rest of the file. If at least 100 MiB compressed, SMB compression attempted to compress +the rest of the file. ```yaml Type: Boolean @@ -547,7 +558,8 @@ Accept wildcard characters: False ``` ### -RequestCompression -{{ Fill RequestCompression Description }} +Indicates if SMB client should always request compression even if server or application didn't +specify it. ```yaml Type: Boolean diff --git a/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md b/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md index 562efd9d0b..195ba511cd 100644 --- a/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: SmbServerConfiguration.cdxml-help.xml Module Name: SmbShare -ms.date: 06/24/2022 +ms.date: 09/15/2022 online version: /powershell/module/smbshare/set-smbserverconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SmbServerConfiguration @@ -47,10 +47,14 @@ For more information on SMB server and protocol specifications, see and [[MS-SMB2]:Server Message Block (SMB) Protocol Versions 2 and 3](/openspecs/windows_protocols/ms-smb2/5606ad47-5ee0-437a-817e-70c366052962). > [!NOTE] -> The **EncryptionCiphers** parameter is available beginning with 2022-06 Cumulative Update for +> - The **EncryptionCiphers** parameter is available beginning with 2022-06 Cumulative Update for > Microsoft server operating system version 21H2 for x64-based Systems > ([KB5014665](https://support.microsoft.com/help/5014665)), and Cumulative Update for Windows 11, > version 22H2 ([KB5014668](https://support.microsoft.com/help/5014668)). +> - The **DisableCompression** and **RequestCompression** parameters are available beginning with +> 2022-08 Cumulative Update for Microsoft server operating system version 21H2 for x64-based Systems +> ([KB5016693](https://support.microsoft.com/help/5016693)), and Cumulative Update for Windows 11, +> version 22H2 ([KB5016691](https://support.microsoft.com/help/5016691)). ## EXAMPLES @@ -279,7 +283,8 @@ Accept wildcard characters: False ``` ### -DisableCompression -{{ Fill DisableCompression Description }} +Indicated that the SMB server should never compress files even if client or application requested +it. ```yaml Type: Boolean @@ -746,7 +751,8 @@ Accept wildcard characters: False ``` ### -RequestCompression -{{ Fill RequestCompression Description }} +Indicates if SMB server should always request compression even if client or application didn't +specify it. ```yaml Type: Boolean From a600ba87c183cee87346b9f174f72da13a49600f Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Thu, 20 Oct 2022 15:07:01 +0100 Subject: [PATCH 298/965] Updated after feedback --- .../winserver2022-ps/smbshare/New-SmbShare.md | 62 ++++++++++++++----- .../smbshare/Reset-SmbClientConfiguration.md | 24 ++++--- .../smbshare/Reset-SmbServerConfiguration.md | 32 +++++----- .../smbshare/Set-SmbClientConfiguration.md | 58 ++++++++++------- .../smbshare/Set-SmbServerConfiguration.md | 50 ++++++++------- 5 files changed, 140 insertions(+), 86 deletions(-) diff --git a/docset/winserver2022-ps/smbshare/New-SmbShare.md b/docset/winserver2022-ps/smbshare/New-SmbShare.md index 87801118e8..f91120f9e3 100644 --- a/docset/winserver2022-ps/smbshare/New-SmbShare.md +++ b/docset/winserver2022-ps/smbshare/New-SmbShare.md @@ -17,16 +17,17 @@ Creates an SMB share. ``` New-SmbShare [-Temporary] [-ContinuouslyAvailable ] [-Description ] -[-ConcurrentUserLimit ] [-CATimeout ] -[-FolderEnumerationMode ] [-CachingMode ] -[-FullAccess ] [-ChangeAccess ] [-ReadAccess ] [-NoAccess ] -[-SecurityDescriptor ] [-Path] [-Name] [[-ScopeName] ] -[-EncryptData ] [-CompressData ] [-LeasingMode ] -[-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] -[] + [-ConcurrentUserLimit ] [-CATimeout ] + [-FolderEnumerationMode ] [-CachingMode ] + [-FullAccess ] [-ChangeAccess ] [-ReadAccess ] [-NoAccess ] + [-SecurityDescriptor ] [-Path] [-Name] [[-ScopeName] ] + [-EncryptData ] [-CompressData ] [-LeasingMode ] + [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION + The `New-SmbShare` cmdlet exposes a file system folder to remote clients as a Server Message Block (SMB) share. @@ -35,6 +36,7 @@ To delete a share that was created by this cmdlet, use the `Remove-SmbShare` cmd ## EXAMPLES ### Example 1: Create an SMB share + ```powershell $Parameters = @{ Name = 'VMSFiles' @@ -51,6 +53,7 @@ This example uses splatting to pass parameter values from the `$Parameters` vari Learn more about [Splatting](/powershell/module/microsoft.powershell.core/about/about_splatting). ### Example 2: Create an encrypted SMB share + ```powershell New-SmbShare -Name "Data" -Path "J:\Data" -EncryptData $True ``` @@ -58,6 +61,7 @@ New-SmbShare -Name "Data" -Path "J:\Data" -EncryptData $True This command creates an encrypted SMB share. ### Example 3: Create an SMB share with Multiple Permissions + ```powershell $Parameters = @{ Name = 'VMSFiles' @@ -77,6 +81,7 @@ Learn more about [Splatting](/powershell/module/microsoft.powershell.core/about/ ## PARAMETERS ### -AsJob + Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. @@ -93,6 +98,7 @@ Accept wildcard characters: False ``` ### -CATimeout + Specifies the continuous availability time-out for the share. ```yaml @@ -108,6 +114,7 @@ Accept wildcard characters: False ``` ### -CachingMode + Specifies the caching mode of the offline files for the SMB share. There are five caching modes: - None. @@ -135,6 +142,7 @@ Accept wildcard characters: False ``` ### -CATimeout + Specifies the continuous availability time-out for the share. ```yaml @@ -150,6 +158,7 @@ Accept wildcard characters: False ``` ### -ChangeAccess + Specifies which users are granted modify permission to access the share. Multiple users can be specified by using a comma-separated list. @@ -166,6 +175,7 @@ Accept wildcard characters: False ``` ### -CimSession + Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the @@ -184,6 +194,7 @@ Accept wildcard characters: False ``` ### -CompressData + Indicates that SMB compression is requested for all client connections that support it. ```yaml @@ -199,6 +210,7 @@ Accept wildcard characters: False ``` ### -ConcurrentUserLimit + Specifies the maximum number of concurrently connected users that the new SMB share may accommodate. If this parameter is set to zero (0), then the number of users is unlimited. The default value is zero (0). @@ -216,6 +228,7 @@ Accept wildcard characters: False ``` ### -ContinuouslyAvailable + Indicates that the share is continuously available. ```yaml @@ -231,6 +244,7 @@ Accept wildcard characters: False ``` ### -Description + Specifies an optional description of the SMB share. A description of the share is displayed by running the Get-SmbShare cmdlet. The description may not contain more than 256 characters. The default value no description, or an empty description. @@ -248,6 +262,7 @@ Accept wildcard characters: False ``` ### -EncryptData + Indicates that the share is encrypted. ```yaml @@ -263,13 +278,14 @@ Accept wildcard characters: False ``` ### -FolderEnumerationMode + Specifies which files and folders in the SMB share are visible to users. The acceptable values for this parameter are: -- AccessBased. SMB does not display the files and folders for a share to a user unless that user has +- AccessBased. SMB doesn't display the files and folders for a share to a user unless that user has rights to access the files and folders. By default, access-based enumeration is disabled for new SMB shares. -- Unrestricted. SMB displays files and folders to a user even when the user does not have permission +- Unrestricted. SMB displays files and folders to a user even when the user doesn't have permission to access the items. The default value is Unrestricted. @@ -288,6 +304,7 @@ Accept wildcard characters: False ``` ### -FullAccess + Specifies which accounts are granted full permission to access the share. Use a comma-separated list to specify multiple accounts. An account may not be specified more than once in the **FullAccess**, **ChangeAccess**, or **ReadAccess** parameter lists, but may be specified once in the @@ -328,9 +345,11 @@ Accept wildcard characters: False ``` ### -Name -Specifies a name for the SMB share. The name may be composed of any valid file name characters, but -must be less than 80 characters long. The names `pipe` and `mailslot` are reserved for use by the -computer. + +Specifies a name for the SMB share. The names `pipe` and `mailslot` are reserved for use by the +computer. Share names can be up to a maximum of 80 characters long. The SMB share name can use any +character allowed by Windows for files and directories, to learn more about naming conventions for +files read the [Naming Files, Paths, and Namespaces](/windows/win32/fileio/naming-a-file) articles. ```yaml Type: String @@ -345,6 +364,7 @@ Accept wildcard characters: False ``` ### -NoAccess + Specifies which accounts are denied access to the SMB share. Multiple accounts can be specified by supplying a comma-separated list. @@ -361,9 +381,10 @@ Accept wildcard characters: False ``` ### -Path + Specifies the path of the location of the folder to share. The path must be fully qualified. -Relative paths or paths that contain wildcard characters are not permitted. +Relative paths or paths that contain wildcard characters aren't permitted. ```yaml Type: String @@ -378,6 +399,7 @@ Accept wildcard characters: False ``` ### -ReadAccess + Specifies which users are granted read permission to access the share. Multiple users can be specified by supplying a comma-separated list. @@ -394,6 +416,7 @@ Accept wildcard characters: False ``` ### -ScopeName + Specifies the scope name of the share. ```yaml @@ -409,6 +432,7 @@ Accept wildcard characters: False ``` ### -SecurityDescriptor + Specifies the security descriptor for the SMB share in string format. ```yaml @@ -424,8 +448,9 @@ Accept wildcard characters: False ``` ### -Temporary + Specifies the lifetime of the new SMB share. -A temporary share does not persist beyond the next restart of the computer. +A temporary share doesn't persist beyond the next restart of the computer. By default, new SMB shares are persistent, and non-temporary. ```yaml @@ -441,6 +466,7 @@ Accept wildcard characters: False ``` ### -ThrottleLimit + Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the @@ -460,6 +486,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -475,10 +502,11 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. -The cmdlet is not run. +The cmdlet isn't run. -NOTE: The WhatIf switch does not work with this cmdlet. +NOTE: The WhatIf switch doesn't work with this cmdlet. ```yaml Type: SwitchParameter @@ -493,6 +521,7 @@ Accept wildcard characters: False ``` ### CommonParameters + This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see @@ -505,6 +534,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS ### Microsoft.Management.Infrastructure.CimInstance#ROOT/Microsoft/Windows/SMB/MSFT_SmbShare + The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. This cmdlet returns a **MSFT_SmbShare** diff --git a/docset/winserver2022-ps/smbshare/Reset-SmbClientConfiguration.md b/docset/winserver2022-ps/smbshare/Reset-SmbClientConfiguration.md index f19643e10e..9f02b87e26 100644 --- a/docset/winserver2022-ps/smbshare/Reset-SmbClientConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Reset-SmbClientConfiguration.md @@ -17,15 +17,15 @@ Resets the Server Message Block (SMB) client configuration parameters to their d ``` Reset-SmbClientConfiguration [-All] [-CompressibilitySampling] -[-ConnectionCountPerRssNetworkInterface] [-DirectoryCacheEntriesMax] [-DirectoryCacheEntrySizeMax] -[-DirectoryCacheLifetime] [-DisableCompression] [-DormantFileLimit] [-EnableBandwidthThrottling] -[-EnableByteRangeLockingOnReadOnlyFiles] [-EnableLargeMtu] [-EnableLoadBalanceScaleOut] -[-EnableMultiChannel] [-EncryptionCiphers] [-ExtendedSessionTimeout] [-FileInfoCacheEntriesMax] -[-FileInfoCacheLifetime] [-FileNotFoundCacheEntriesMax] [-FileNotFoundCacheLifetime] -[-ForceSMBEncryptionOverQuic] [-KeepConn] [-MaxCmds] [-MaximumConnectionCountPerServer] -[-OplocksDisabled] [-RequestCompression] [-SessionTimeout] [-SkipCertificateCheck] -[-UseOpportunisticLocking] [-WindowSizeThreshold] [-Force] [-CimSession ] -[-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] [] + [-ConnectionCountPerRssNetworkInterface] [-DirectoryCacheEntriesMax] [-DirectoryCacheEntrySizeMax] + [-DirectoryCacheLifetime] [-DisableCompression] [-DormantFileLimit] [-EnableBandwidthThrottling] + [-EnableByteRangeLockingOnReadOnlyFiles] [-EnableLargeMtu] [-EnableLoadBalanceScaleOut] + [-EnableMultiChannel] [-EncryptionCiphers] [-ExtendedSessionTimeout] [-FileInfoCacheEntriesMax] + [-FileInfoCacheLifetime] [-FileNotFoundCacheEntriesMax] [-FileNotFoundCacheLifetime] + [-ForceSMBEncryptionOverQuic] [-KeepConn] [-MaxCmds] [-MaximumConnectionCountPerServer] + [-OplocksDisabled] [-RequestCompression] [-SessionTimeout] [-SkipCertificateCheck] + [-UseOpportunisticLocking] [-WindowSizeThreshold] [-Force] [-CimSession ] + [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -38,6 +38,7 @@ default values. > system version 21H2 for x64-based Systems > ([KB5014665](https://support.microsoft.com/help/5014665)), and Cumulative Update for Windows 11, > version 22H2 ([KB5014668](https://support.microsoft.com/help/5014668)). +> > - The **CompressibilitySampling** and **RequestCompression** parameters are available beginning > with 2022-08 Cumulative Update for Microsoft server operating system version 21H2 for x64-based > Systems ([KB5016693](https://support.microsoft.com/help/5016693)), and Cumulative Update for @@ -108,6 +109,7 @@ Accept wildcard characters: False ``` ### -CompressibilitySampling + Resets the compression sampling behavior. ```yaml @@ -477,6 +479,7 @@ Accept wildcard characters: False ``` ### -OplocksDisabled + Resets the opportunistic locks disabled value to its default value. ```yaml @@ -492,6 +495,7 @@ Accept wildcard characters: False ``` ### -RequestCompression + Resets the SMB client request compression value to its default value. ```yaml @@ -609,7 +613,7 @@ Accept wildcard characters: False ### -WhatIf Shows what would happen if the cmdlet runs. -The cmdlet is not run. +The cmdlet isn't run. ```yaml Type: SwitchParameter diff --git a/docset/winserver2022-ps/smbshare/Reset-SmbServerConfiguration.md b/docset/winserver2022-ps/smbshare/Reset-SmbServerConfiguration.md index 02df2615f6..6bd824ae5f 100644 --- a/docset/winserver2022-ps/smbshare/Reset-SmbServerConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Reset-SmbServerConfiguration.md @@ -17,18 +17,18 @@ Resets the Server Message Block (SMB) server configuration parameters to their d ``` Reset-SmbServerConfiguration [-All] [-AnnounceComment] [-AnnounceServer] [-AsynchronousCredits] -[-AuditSmb1Access] [-AutoShareServer] [-AutoShareWorkstation] [-CachedOpenLimit] -[-DisableCompression] [-DisableSmbEncryptionOnSecureConnection] [-DurableHandleV2TimeoutInSeconds] -[-EnableDownlevelTimewarp] [-EnableLeasing] [-EnableMultiChannel] [-EnableOplocks] -[-EnableSMB2Protocol] [-EnableSMBQUIC] [-EnableStrictNameChecking] [-EncryptData] -[-EncryptionCiphers] [-IrpStackSize] [-KeepAliveTime] [-MaxChannelPerSession] [-MaxMpxCount] -[-MaxSessionPerConnection] [-MaxThreadsPerQueue] [-MaxWorkItems] [-NullSessionShares] -[-OplockBreakWait] [-PendingClientTimeoutInSeconds] [-RejectUnencryptedAccess] -[-RequestCompression] [-RestrictNamedpipeAccessViaQuic] [-ServerHidden] [-Smb2CreditsMax] -[-Smb2CreditsMin] [-SmbServerNameHardeningLevel] [-TreatHostAsStableStorage] -[-ValidateAliasNotCircular] [-ValidateShareScope] [-ValidateShareScopeNotAliased] -[-ValidateTargetName] [-Force] [-CimSession ] [-ThrottleLimit ] [-AsJob] -[-WhatIf] [-Confirm] [] + [-AuditSmb1Access] [-AutoShareServer] [-AutoShareWorkstation] [-CachedOpenLimit] + [-DisableCompression] [-DisableSmbEncryptionOnSecureConnection] [-DurableHandleV2TimeoutInSeconds] + [-EnableDownlevelTimewarp] [-EnableLeasing] [-EnableMultiChannel] [-EnableOplocks] + [-EnableSMB2Protocol] [-EnableSMBQUIC] [-EnableStrictNameChecking] [-EncryptData] + [-EncryptionCiphers] [-IrpStackSize] [-KeepAliveTime] [-MaxChannelPerSession] [-MaxMpxCount] + [-MaxSessionPerConnection] [-MaxThreadsPerQueue] [-MaxWorkItems] [-NullSessionShares] + [-OplockBreakWait] [-PendingClientTimeoutInSeconds] [-RejectUnencryptedAccess] + [-RequestCompression] [-RestrictNamedpipeAccessViaQuic] [-ServerHidden] [-Smb2CreditsMax] + [-Smb2CreditsMin] [-SmbServerNameHardeningLevel] [-TreatHostAsStableStorage] + [-ValidateAliasNotCircular] [-ValidateShareScope] [-ValidateShareScopeNotAliased] + [-ValidateTargetName] [-Force] [-CimSession ] [-ThrottleLimit ] [-AsJob] + [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -43,6 +43,7 @@ and [[MS-SMB2]:Server Message Block (SMB) Protocol Versions 2 and3](/openspecs/w > system version 21H2 for x64-based Systems > ([KB5014665](https://support.microsoft.com/help/5014665)), and Cumulative Update for Windows 11, > version 22H2 ([KB5014668](https://support.microsoft.com/help/5014668)). +> > - The **DisableCompression** and **RequestCompression** parameters are available beginning with > 2022-08 Cumulative Update for Microsoft server operating system version 21H2 for x64-based Systems > ([KB5016693](https://support.microsoft.com/help/5016693)), and Cumulative Update for Windows 11, @@ -226,6 +227,7 @@ Accept wildcard characters: False ``` ### -DisableCompression + Resets the SMB compression behavior to its default value. ```yaml @@ -593,6 +595,7 @@ Accept wildcard characters: False ``` ### -RejectUnencryptedAccess + Resets the unencrypted access behavior to its default value. ```yaml @@ -608,6 +611,7 @@ Accept wildcard characters: False ``` ### -RequestCompression + Resets the SMB server request compression value to its default value. ```yaml @@ -741,7 +745,7 @@ Accept wildcard characters: False ### -ValidateAliasNotCircular -Resets whether the aliases that are not circular are validated to its default value. +Resets whether the aliases that aren't circular are validated to its default value. ```yaml Type: SwitchParameter @@ -821,7 +825,7 @@ Accept wildcard characters: False ### -WhatIf -Shows what would happen if the cmdlet runs. The cmdlet is not run. +Shows what would happen if the cmdlet runs. The cmdlet isn't run. ```yaml Type: SwitchParameter diff --git a/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md b/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md index a9a9c95c6a..5e68f9fee4 100644 --- a/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md @@ -17,21 +17,21 @@ Sets the SMB client configuration. ``` Set-SmbClientConfiguration [-CompressibilitySamplingSize ] -[-CompressibleThreshold ] [-ConnectionCountPerRssNetworkInterface ] -[-DirectoryCacheEntriesMax ] [-DirectoryCacheEntrySizeMax ] -[-DirectoryCacheLifetime ] [-DisableCompression ] [-DormantFileLimit ] -[-EnableBandwidthThrottling ] [-EnableByteRangeLockingOnReadOnlyFiles ] -[-EnableCompressibilitySampling ] [-EnableInsecureGuestLogons ] -[-EnableLargeMtu ] [-EnableLoadBalanceScaleOut ] [-EnableMultiChannel ] -[-EnableSecuritySignature ] [-EncryptionCiphers ] -[-ExtendedSessionTimeout ] [-FileInfoCacheEntriesMax ] -[-FileInfoCacheLifetime ] [-FileNotFoundCacheEntriesMax ] -[-FileNotFoundCacheLifetime ] [-ForceSMBEncryptionOverQuic ] [-KeepConn ] -[-MaxCmds ] [-MaximumConnectionCountPerServer ] [-OplocksDisabled ] -[-RequestCompression ] [-RequireSecuritySignature ] [-SessionTimeout ] -[-SkipCertificateCheck ] [-UseOpportunisticLocking ] -[-WindowSizeThreshold ] [-Force] [-CimSession ] [-ThrottleLimit ] -[-AsJob] [-WhatIf] [-Confirm] [] + [-CompressibleThreshold ] [-ConnectionCountPerRssNetworkInterface ] + [-DirectoryCacheEntriesMax ] [-DirectoryCacheEntrySizeMax ] + [-DirectoryCacheLifetime ] [-DisableCompression ] [-DormantFileLimit ] + [-EnableBandwidthThrottling ] [-EnableByteRangeLockingOnReadOnlyFiles ] + [-EnableCompressibilitySampling ] [-EnableInsecureGuestLogons ] + [-EnableLargeMtu ] [-EnableLoadBalanceScaleOut ] [-EnableMultiChannel ] + [-EnableSecuritySignature ] [-EncryptionCiphers ] + [-ExtendedSessionTimeout ] [-FileInfoCacheEntriesMax ] + [-FileInfoCacheLifetime ] [-FileNotFoundCacheEntriesMax ] + [-FileNotFoundCacheLifetime ] [-ForceSMBEncryptionOverQuic ] [-KeepConn ] + [-MaxCmds ] [-MaximumConnectionCountPerServer ] [-OplocksDisabled ] + [-RequestCompression ] [-RequireSecuritySignature ] [-SessionTimeout ] + [-SkipCertificateCheck ] [-UseOpportunisticLocking ] + [-WindowSizeThreshold ] [-Force] [-CimSession ] [-ThrottleLimit ] + [-AsJob] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -43,6 +43,7 @@ The `Set-SmbClientConfiguration` cmdlet sets the Server Message Block (SMB) clie > Microsoft server operating system version 21H2 for x64-based Systems > ([KB5014665](https://support.microsoft.com/help/5014665)), and Cumulative Update for Windows 11, > version 22H2 ([KB5014668](https://support.microsoft.com/help/5014668)). +> > - The **CompressibilitySamplingSize**, **CompressibleThreshold**, > **EnableCompressibilitySampling**, and **RequestCompression** parameters are available beginning > with 2022-08 Cumulative Update for Microsoft server operating system version 21H2 for x64-based @@ -108,6 +109,7 @@ Accept wildcard characters: False ``` ### -CompressibilitySamplingSize + Specifies the size in bytes to sample in a file to look for compressible data. ```yaml @@ -123,6 +125,7 @@ Accept wildcard characters: False ``` ### -CompressibleThreshold + Specifies the threshold in bytes in which to attempt to find compressible data. ```yaml @@ -250,6 +253,7 @@ Accept wildcard characters: False ``` ### -EnableByteRangeLockingOnReadOnlyFiles + Indicates that byte range locking on read-only files is enabled. ```yaml @@ -265,13 +269,19 @@ Accept wildcard characters: False ``` ### -EnableCompressibilitySampling + Controls the sampling behavior. SMB by default always attempts to compress the entire file when a -client or server requests it, without using compression sampling. With EnableCompressibilitySampling -set to '$true' SMB uses of an algorithm where it attempted to compress the first 524,288,000 bytes -(500 MiB) of a file during transfer and track that at least 104,857,600 bytes (100 MiB) compressed -within that 500 MiB range. If fewer than 100 MiB was compressible, SMB compression stopped trying to -compress the rest of the file. If at least 100 MiB compressed, SMB compression attempted to compress -the rest of the file. +client or server requests it. With **EnableCompressibilitySampling** set to `$true`, SMB uses the +compression sampling algorithm where it attempts to compress the file based on the values +configured in the **CompressibiltySamplingSize** and **CompressibleThreshold** parameters. + +With **EnableCompressibilitySampling** set to `$true` and if you don't use the +**CompressibiltySamplingSize** and **CompressibleThreshold** parameters, the algorithm will by +default attempt to compress the first 524,288,000 bytes (500 MiB) of a file during transfer. The +algorithm will try to track that at least 104,857,600 bytes (100 MiB) compresses within that 500 MiB +range. If fewer than 100 MiB was compressible, SMB compression stopped trying to compress the rest +of the file. If at least 100 MiB compressed, SMB compression attempted to compress the rest of the +file. ```yaml Type: Boolean @@ -480,7 +490,7 @@ Accept wildcard characters: False ### -ForceSMBEncryptionOverQuic Specifies that the SMB client uses SMB encryption inside of the SMB over QUIC TLS 1.3 encrypted -tunnel even if the SMB server does not require it. +tunnel even if the SMB server doesn't require it. ```yaml Type: Boolean @@ -543,6 +553,7 @@ Accept wildcard characters: False ``` ### -OplocksDisabled + Indicates that opportunistic locks are disabled. ```yaml @@ -558,6 +569,7 @@ Accept wildcard characters: False ``` ### -RequestCompression + Indicates if SMB client should always request compression even if server or application didn't specify it. @@ -677,7 +689,7 @@ Accept wildcard characters: False ### -WhatIf Shows what would happen if the cmdlet runs. -The cmdlet is not run. +The cmdlet isn't run. ```yaml Type: SwitchParameter diff --git a/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md b/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md index 195ba511cd..d381318923 100644 --- a/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md @@ -17,26 +17,26 @@ Sets the Server Message Block (SMB) server configuration. ``` Set-SmbServerConfiguration [-AnnounceComment ] [-AnnounceServer ] -[-AsynchronousCredits ] [-AuditSmb1Access ] [-AutoDisconnectTimeout ] -[-AutoShareServer ] [-AutoShareWorkstation ] [-CachedOpenLimit ] -[-DisableCompression ] [-DisableSmbEncryptionOnSecureConnection ] -[-DurableHandleV2TimeoutInSeconds ] [-EnableAuthenticateUserSharing ] -[-EnableDownlevelTimewarp ] [-EnableForcedLogoff ] [-EnableLeasing ] -[-EnableMultiChannel ] [-EnableOplocks ] [-EnableSecuritySignature ] -[-EnableSMB1Protocol ] [-EnableSMB2Protocol ] [-EnableSMBQUIC ] -[-EnableStrictNameChecking ] [-EncryptData ] [-EncryptionCiphers ] -[-IrpStackSize ] [-KeepAliveTime ] [-MaxChannelPerSession ] -[-MaxMpxCount ] [-MaxSessionPerConnection ] [-MaxThreadsPerQueue ] -[-MaxWorkItems ] [-NullSessionPipes ] [-NullSessionShares ] -[-OplockBreakWait ] [-PendingClientTimeoutInSeconds ] -[-RejectUnencryptedAccess ] [-RequestCompression ] -[-RequireSecuritySignature ] [-RestrictNamedpipeAccessViaQuic ] -[-ServerHidden ] [-Smb2CreditsMax ] [-Smb2CreditsMin ] -[-SmbServerNameHardeningLevel ] [-TreatHostAsStableStorage ] -[-ValidateAliasNotCircular ] [-ValidateShareScope ] -[-ValidateShareScopeNotAliased ] [-ValidateTargetName ] [-Force] -[-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] -[] + [-AsynchronousCredits ] [-AuditSmb1Access ] [-AutoDisconnectTimeout ] + [-AutoShareServer ] [-AutoShareWorkstation ] [-CachedOpenLimit ] + [-DisableCompression ] [-DisableSmbEncryptionOnSecureConnection ] + [-DurableHandleV2TimeoutInSeconds ] [-EnableAuthenticateUserSharing ] + [-EnableDownlevelTimewarp ] [-EnableForcedLogoff ] [-EnableLeasing ] + [-EnableMultiChannel ] [-EnableOplocks ] [-EnableSecuritySignature ] + [-EnableSMB1Protocol ] [-EnableSMB2Protocol ] [-EnableSMBQUIC ] + [-EnableStrictNameChecking ] [-EncryptData ] [-EncryptionCiphers ] + [-IrpStackSize ] [-KeepAliveTime ] [-MaxChannelPerSession ] + [-MaxMpxCount ] [-MaxSessionPerConnection ] [-MaxThreadsPerQueue ] + [-MaxWorkItems ] [-NullSessionPipes ] [-NullSessionShares ] + [-OplockBreakWait ] [-PendingClientTimeoutInSeconds ] + [-RejectUnencryptedAccess ] [-RequestCompression ] + [-RequireSecuritySignature ] [-RestrictNamedpipeAccessViaQuic ] + [-ServerHidden ] [-Smb2CreditsMax ] [-Smb2CreditsMin ] + [-SmbServerNameHardeningLevel ] [-TreatHostAsStableStorage ] + [-ValidateAliasNotCircular ] [-ValidateShareScope ] + [-ValidateShareScopeNotAliased ] [-ValidateTargetName ] [-Force] + [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION @@ -51,6 +51,7 @@ and [[MS-SMB2]:Server Message Block (SMB) Protocol Versions 2 and 3](/openspecs/ > Microsoft server operating system version 21H2 for x64-based Systems > ([KB5014665](https://support.microsoft.com/help/5014665)), and Cumulative Update for Windows 11, > version 22H2 ([KB5014668](https://support.microsoft.com/help/5014668)). +> > - The **DisableCompression** and **RequestCompression** parameters are available beginning with > 2022-08 Cumulative Update for Microsoft server operating system version 21H2 for x64-based Systems > ([KB5016693](https://support.microsoft.com/help/5016693)), and Cumulative Update for Windows 11, @@ -283,6 +284,7 @@ Accept wildcard characters: False ``` ### -DisableCompression + Indicated that the SMB server should never compress files even if client or application requested it. @@ -735,7 +737,8 @@ Accept wildcard characters: False ``` ### -RejectUnencryptedAccess -Indicates whether the client that does not support encryption is denied access if it attempts to + +Indicates whether the client that doesn't support encryption is denied access if it attempts to connect to an encrypted share. ```yaml @@ -751,6 +754,7 @@ Accept wildcard characters: False ``` ### -RequestCompression + Indicates if SMB server should always request compression even if client or application didn't specify it. @@ -902,7 +906,7 @@ Accept wildcard characters: False ### -ValidateAliasNotCircular -Indicates whether the aliases that are not circular are validated. +Indicates whether the aliases that aren't circular are validated. ```yaml Type: Boolean @@ -982,7 +986,7 @@ Accept wildcard characters: False ### -WhatIf -Shows what would happen if the cmdlet runs. The cmdlet is not run. +Shows what would happen if the cmdlet runs. The cmdlet isn't run. ```yaml Type: SwitchParameter From 108b292eab93afda7a78f0b30b5e5905fb80832a Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Thu, 20 Oct 2022 15:27:43 +0100 Subject: [PATCH 299/965] Parameters updated after feedback --- .../smbshare/Set-SmbClientConfiguration.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md b/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md index 5e68f9fee4..acf5f018c3 100644 --- a/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md @@ -110,7 +110,9 @@ Accept wildcard characters: False ### -CompressibilitySamplingSize -Specifies the size in bytes to sample in a file to look for compressible data. +Specifies the size in bytes to sample in a file to look for compressible data. Although the +parameter type is **UInt64**, the sampling size can be specified up to a maximum of is 9,007,199,254,740,992 +(9 PiB). ```yaml Type: UInt64 @@ -126,7 +128,9 @@ Accept wildcard characters: False ### -CompressibleThreshold -Specifies the threshold in bytes in which to attempt to find compressible data. +Specifies the threshold in bytes in which to attempt to find compressible data. Although the +parameter type is **UInt64**, the threshold can be specified up to a maximum of is 9,007,199,254,740,992 +(9 PiB). ```yaml Type: UInt64 From 185bedc89caa5918780672a7531eb1eeaeb7d523 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Thu, 20 Oct 2022 15:50:02 +0100 Subject: [PATCH 300/965] Minor formatting updates --- docset/winserver2022-ps/smbshare/New-SmbShare.md | 4 ++-- .../smbshare/Reset-SmbClientConfiguration.md | 2 +- .../smbshare/Reset-SmbServerConfiguration.md | 2 +- .../smbshare/Set-SmbClientConfiguration.md | 2 +- .../smbshare/Set-SmbServerConfiguration.md | 14 +++++++------- 5 files changed, 12 insertions(+), 12 deletions(-) diff --git a/docset/winserver2022-ps/smbshare/New-SmbShare.md b/docset/winserver2022-ps/smbshare/New-SmbShare.md index f91120f9e3..548619c560 100644 --- a/docset/winserver2022-ps/smbshare/New-SmbShare.md +++ b/docset/winserver2022-ps/smbshare/New-SmbShare.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: SmbShare.cdxml-help.xml Module Name: SmbShare -ms.date: 12/20/2016 +ms.date: 10/20/2022 online version: https://learn.microsoft.com/powershell/module/smbshare/new-smbshare?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-SmbShare @@ -246,7 +246,7 @@ Accept wildcard characters: False ### -Description Specifies an optional description of the SMB share. A description of the share is displayed by -running the Get-SmbShare cmdlet. The description may not contain more than 256 characters. The +running the `Get-SmbShare` cmdlet. The description may not contain more than 256 characters. The default value no description, or an empty description. ```yaml diff --git a/docset/winserver2022-ps/smbshare/Reset-SmbClientConfiguration.md b/docset/winserver2022-ps/smbshare/Reset-SmbClientConfiguration.md index 9f02b87e26..ed457cbf4a 100644 --- a/docset/winserver2022-ps/smbshare/Reset-SmbClientConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Reset-SmbClientConfiguration.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: SmbClientConfiguration.cdxml-help.xml Module Name: SmbShare -ms.date: 09/15/2022 +ms.date: 10/20/2022 online version: http://go.microsoft.com/fwlink/?LinkID=241959 schema: 2.0.0 title: Reset-SmbClientConfiguration diff --git a/docset/winserver2022-ps/smbshare/Reset-SmbServerConfiguration.md b/docset/winserver2022-ps/smbshare/Reset-SmbServerConfiguration.md index 6bd824ae5f..cf4601108a 100644 --- a/docset/winserver2022-ps/smbshare/Reset-SmbServerConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Reset-SmbServerConfiguration.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: SmbServerConfiguration.cdxml-help.xml Module Name: SmbShare -ms.date: 09/15/2022 +ms.date: 10/20/2022 online version: http://go.microsoft.com/fwlink/?LinkID=241959 schema: 2.0.0 title: Reset-SmbServerConfiguration diff --git a/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md b/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md index acf5f018c3..b83857ebee 100644 --- a/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: SmbClientConfiguration.cdxml-help.xml Module Name: SmbShare -ms.date: 06/24/2022 +ms.date: 10/20/2022 online version: https://learn.microsoft.com/powershell/module/smbshare/set-smbclientconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SmbClientConfiguration diff --git a/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md b/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md index d381318923..f31981efd2 100644 --- a/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: SmbServerConfiguration.cdxml-help.xml Module Name: SmbShare -ms.date: 09/15/2022 +ms.date: 10/20/2022 online version: /powershell/module/smbshare/set-smbserverconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-SmbServerConfiguration @@ -71,9 +71,9 @@ This command sets the SMB Service configuration without user confirmation. ```powershell $Parameters = @{ - RequireSecuritySignature = $True - EnableSecuritySignature = $True - EncryptData = $True + RequireSecuritySignature = $true + EnableSecuritySignature = $true + EncryptData = $true Confirm = $false } Set-SmbServerConfiguration @Parameters @@ -86,7 +86,7 @@ splatting to pass parameter values from the `$Parameters` variable to the comman ### Example 3: Turn off the default server and workstations shares ```powershell -Set-SmbServerConfiguration -AutoShareServer $False -AutoShareWorkstation $False -Confirm:$false +Set-SmbServerConfiguration -AutoShareServer $false -AutoShareWorkstation $false -Confirm:$false ``` This command turns off the default server and workstations shares without user confirmation. @@ -94,7 +94,7 @@ This command turns off the default server and workstations shares without user c ### Example 4: Turn off server announcements ```powershell -Set-SmbServerConfiguration -ServerHidden $False -AnnounceServer $False -Confirm:$false +Set-SmbServerConfiguration -ServerHidden $false -AnnounceServer $false -Confirm:$false ``` This command turns off server announcements without user confirmation. @@ -788,7 +788,7 @@ Accept wildcard characters: False ### -RestrictNamedpipeAccessViaQuic -Specifies that named pipes are allowed when using SMB over QUIC. A value of $TRUE prevents use of +Specifies that named pipes are allowed when using SMB over QUIC. A value of `$true` prevents use of named pipes and is the default. ```yaml From fbbc4cab02b2964f273866be7b595a8568831962 Mon Sep 17 00:00:00 2001 From: Robin Harwood <19212983+robinharwood@users.noreply.github.com> Date: Mon, 7 Nov 2022 17:05:54 +0000 Subject: [PATCH 301/965] Apply suggestions from code review Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> Co-authored-by: Mikey Lombardi (He/Him) --- .../winserver2022-ps/smbshare/New-SmbShare.md | 23 +++++++------- .../smbshare/Reset-SmbClientConfiguration.md | 8 ++--- .../smbshare/Reset-SmbServerConfiguration.md | 6 ++-- .../smbshare/Set-SmbClientConfiguration.md | 31 +++++++++---------- .../smbshare/Set-SmbServerConfiguration.md | 15 ++++----- 5 files changed, 41 insertions(+), 42 deletions(-) diff --git a/docset/winserver2022-ps/smbshare/New-SmbShare.md b/docset/winserver2022-ps/smbshare/New-SmbShare.md index 548619c560..d162c0718e 100644 --- a/docset/winserver2022-ps/smbshare/New-SmbShare.md +++ b/docset/winserver2022-ps/smbshare/New-SmbShare.md @@ -247,7 +247,7 @@ Accept wildcard characters: False Specifies an optional description of the SMB share. A description of the share is displayed by running the `Get-SmbShare` cmdlet. The description may not contain more than 256 characters. The -default value no description, or an empty description. +default value is no description or an empty description. ```yaml Type: String @@ -282,13 +282,13 @@ Accept wildcard characters: False Specifies which files and folders in the SMB share are visible to users. The acceptable values for this parameter are: -- AccessBased. SMB doesn't display the files and folders for a share to a user unless that user has - rights to access the files and folders. By default, access-based enumeration is disabled for new - SMB shares. -- Unrestricted. SMB displays files and folders to a user even when the user doesn't have permission - to access the items. +- `AccessBased`. SMB doesn't display the files and folders for a share to a user unless that user + has rights to access the files and folders. By default, access-based enumeration is disabled for + new SMB shares. +- `Unrestricted`. SMB displays files and folders to a user even when the user doesn't have + permission to access the items. -The default value is Unrestricted. +The default value is `Unrestricted`. ```yaml Type: FolderEnumerationMode @@ -348,7 +348,7 @@ Accept wildcard characters: False Specifies a name for the SMB share. The names `pipe` and `mailslot` are reserved for use by the computer. Share names can be up to a maximum of 80 characters long. The SMB share name can use any -character allowed by Windows for files and directories, to learn more about naming conventions for +character allowed by Windows for files and directories. To learn more about naming conventions for files read the [Naming Files, Paths, and Namespaces](/windows/win32/fileio/naming-a-file) articles. ```yaml @@ -382,8 +382,7 @@ Accept wildcard characters: False ### -Path -Specifies the path of the location of the folder to share. -The path must be fully qualified. +Specifies the path of the location of the folder to share. The path must be fully qualified. Relative paths or paths that contain wildcard characters aren't permitted. ```yaml @@ -468,7 +467,7 @@ Accept wildcard characters: False ### -ThrottleLimit Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If -this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +this parameter is omitted or a value of `0` is entered, then Windows PowerShell calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. The throttle limit applies only to the current cmdlet, not to the session or to the computer. @@ -535,7 +534,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.Management.Infrastructure.CimInstance#ROOT/Microsoft/Windows/SMB/MSFT_SmbShare -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +The **Microsoft.Management.Infrastructure.CimInstance** object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. This cmdlet returns a **MSFT_SmbShare** object that represents the SMB share. diff --git a/docset/winserver2022-ps/smbshare/Reset-SmbClientConfiguration.md b/docset/winserver2022-ps/smbshare/Reset-SmbClientConfiguration.md index ed457cbf4a..e9cdb1efd0 100644 --- a/docset/winserver2022-ps/smbshare/Reset-SmbClientConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Reset-SmbClientConfiguration.md @@ -40,9 +40,9 @@ default values. > version 22H2 ([KB5014668](https://support.microsoft.com/help/5014668)). > > - The **CompressibilitySampling** and **RequestCompression** parameters are available beginning -> with 2022-08 Cumulative Update for Microsoft server operating system version 21H2 for x64-based -> Systems ([KB5016693](https://support.microsoft.com/help/5016693)), and Cumulative Update for -> Windows 11, version 22H2 ([KB5016691](https://support.microsoft.com/help/5016691)). +> with 2022-08 Cumulative Update for Microsoft server operating system version 21H2 for x64-based +> Systems ([KB5016693](https://support.microsoft.com/help/5016693)), and Cumulative Update for +> Windows 11, version 22H2 ([KB5016691](https://support.microsoft.com/help/5016691)). ## EXAMPLES @@ -110,7 +110,7 @@ Accept wildcard characters: False ### -CompressibilitySampling -Resets the compression sampling behavior. +Resets the compression sampling behavior to its default value. ```yaml Type: SwitchParameter diff --git a/docset/winserver2022-ps/smbshare/Reset-SmbServerConfiguration.md b/docset/winserver2022-ps/smbshare/Reset-SmbServerConfiguration.md index cf4601108a..e1583389f9 100644 --- a/docset/winserver2022-ps/smbshare/Reset-SmbServerConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Reset-SmbServerConfiguration.md @@ -45,9 +45,9 @@ and [[MS-SMB2]:Server Message Block (SMB) Protocol Versions 2 and3](/openspecs/w > version 22H2 ([KB5014668](https://support.microsoft.com/help/5014668)). > > - The **DisableCompression** and **RequestCompression** parameters are available beginning with -> 2022-08 Cumulative Update for Microsoft server operating system version 21H2 for x64-based Systems -> ([KB5016693](https://support.microsoft.com/help/5016693)), and Cumulative Update for Windows 11, -> version 22H2 ([KB5016691](https://support.microsoft.com/help/5016691)). +> 2022-08 Cumulative Update for Microsoft server operating system version 21H2 for x64-based +> Systems ([KB5016693](https://support.microsoft.com/help/5016693)), and Cumulative Update for +> Windows 11, version 22H2 ([KB5016691](https://support.microsoft.com/help/5016691)). ## EXAMPLES diff --git a/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md b/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md index b83857ebee..983a47389e 100644 --- a/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md @@ -45,10 +45,10 @@ The `Set-SmbClientConfiguration` cmdlet sets the Server Message Block (SMB) clie > version 22H2 ([KB5014668](https://support.microsoft.com/help/5014668)). > > - The **CompressibilitySamplingSize**, **CompressibleThreshold**, -> **EnableCompressibilitySampling**, and **RequestCompression** parameters are available beginning -> with 2022-08 Cumulative Update for Microsoft server operating system version 21H2 for x64-based -> Systems ([KB5016693](https://support.microsoft.com/help/5016693)), and Cumulative Update for -> Windows 11, version 22H2 ([KB5016691](https://support.microsoft.com/help/5016691)). +> **EnableCompressibilitySampling**, and **RequestCompression** parameters are available beginning +> with 2022-08 Cumulative Update for Microsoft server operating system version 21H2 for x64-based +> Systems ([KB5016693](https://support.microsoft.com/help/5016693)), and Cumulative Update for +> Windows 11, version 22H2 ([KB5016691](https://support.microsoft.com/help/5016691)). ## EXAMPLES @@ -111,8 +111,8 @@ Accept wildcard characters: False ### -CompressibilitySamplingSize Specifies the size in bytes to sample in a file to look for compressible data. Although the -parameter type is **UInt64**, the sampling size can be specified up to a maximum of is 9,007,199,254,740,992 -(9 PiB). +parameter type is **UInt64**, the sampling size can be specified up to a maximum of +`9,007,199,254,740,992` (9 PiB). ```yaml Type: UInt64 @@ -129,8 +129,8 @@ Accept wildcard characters: False ### -CompressibleThreshold Specifies the threshold in bytes in which to attempt to find compressible data. Although the -parameter type is **UInt64**, the threshold can be specified up to a maximum of is 9,007,199,254,740,992 -(9 PiB). +parameter type is **UInt64**, the threshold can be specified up to a maximum of +`9,007,199,254,740,992` (9 PiB). ```yaml Type: UInt64 @@ -279,13 +279,12 @@ client or server requests it. With **EnableCompressibilitySampling** set to `$tr compression sampling algorithm where it attempts to compress the file based on the values configured in the **CompressibiltySamplingSize** and **CompressibleThreshold** parameters. -With **EnableCompressibilitySampling** set to `$true` and if you don't use the -**CompressibiltySamplingSize** and **CompressibleThreshold** parameters, the algorithm will by -default attempt to compress the first 524,288,000 bytes (500 MiB) of a file during transfer. The -algorithm will try to track that at least 104,857,600 bytes (100 MiB) compresses within that 500 MiB -range. If fewer than 100 MiB was compressible, SMB compression stopped trying to compress the rest -of the file. If at least 100 MiB compressed, SMB compression attempted to compress the rest of the -file. +When you specify **EnableCompressibilitySampling** as `$true` and don't specify either the +**CompressibiltySamplingSize** or **CompressibleThreshold** parameters, the algorithm attempts to +compress the first `524,288,000` bytes (500 MiB) of a file during transfer. The algorithm tries to +track that at least `104,857,600` bytes (100 MiB) compresses within that 500 MiB range. If fewer +than 100 MiB was compressible, SMB compression stops trying to compress the rest of the file. If at +least 100 MiB compressed, SMB compression attempts to compress the rest of the file. ```yaml Type: Boolean @@ -574,7 +573,7 @@ Accept wildcard characters: False ### -RequestCompression -Indicates if SMB client should always request compression even if server or application didn't +Indicates if an SMB client should always request compression even if the server or application didn't specify it. ```yaml diff --git a/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md b/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md index f31981efd2..427e6f4d62 100644 --- a/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md @@ -53,9 +53,9 @@ and [[MS-SMB2]:Server Message Block (SMB) Protocol Versions 2 and 3](/openspecs/ > version 22H2 ([KB5014668](https://support.microsoft.com/help/5014668)). > > - The **DisableCompression** and **RequestCompression** parameters are available beginning with -> 2022-08 Cumulative Update for Microsoft server operating system version 21H2 for x64-based Systems -> ([KB5016693](https://support.microsoft.com/help/5016693)), and Cumulative Update for Windows 11, -> version 22H2 ([KB5016691](https://support.microsoft.com/help/5016691)). +> 2022-08 Cumulative Update for Microsoft server operating system version 21H2 for x64-based +> Systems ([KB5016693](https://support.microsoft.com/help/5016693)), and Cumulative Update for +> Windows 11, version 22H2 ([KB5016691](https://support.microsoft.com/help/5016691)). ## EXAMPLES @@ -285,7 +285,7 @@ Accept wildcard characters: False ### -DisableCompression -Indicated that the SMB server should never compress files even if client or application requested +Indicates that the SMB server should never compress files even if client or application requested it. ```yaml @@ -738,7 +738,7 @@ Accept wildcard characters: False ### -RejectUnencryptedAccess -Indicates whether the client that doesn't support encryption is denied access if it attempts to +Indicates whether a client that doesn't support encryption is denied access if it attempts to connect to an encrypted share. ```yaml @@ -755,8 +755,9 @@ Accept wildcard characters: False ### -RequestCompression -Indicates if SMB server should always request compression even if client or application didn't -specify it. +```suggestion +Indicates whether the SMB server should always request compression even if client or application +didn't specify it. ```yaml Type: Boolean From 7384f18f52c20bf66a9796048ece4835bb4a79d7 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Tue, 8 Nov 2022 15:15:06 +0000 Subject: [PATCH 302/965] Applied review suggestions --- .../winserver2022-ps/smbshare/New-SmbShare.md | 30 +++++++++++-------- .../smbshare/Set-SmbClientConfiguration.md | 4 +-- .../smbshare/Set-SmbServerConfiguration.md | 7 ++--- 3 files changed, 23 insertions(+), 18 deletions(-) diff --git a/docset/winserver2022-ps/smbshare/New-SmbShare.md b/docset/winserver2022-ps/smbshare/New-SmbShare.md index d162c0718e..7cfa601e28 100644 --- a/docset/winserver2022-ps/smbshare/New-SmbShare.md +++ b/docset/winserver2022-ps/smbshare/New-SmbShare.md @@ -66,14 +66,15 @@ This command creates an encrypted SMB share. $Parameters = @{ Name = 'VMSFiles' Path = 'C:\ClusterStorage\Volume1\VMFiles' - ChangeAccess = 'Users' + ChangeAccess = 'CONTOSO\Finance Users','CONTOSO\HR Users' FullAccess = 'Administrators' } New-SmbShare @Parameters ``` -This command creates an SMB share named `VMSFiles` and grants Change permissions to the local -`Users` group, and Full Access permissions to the local `Administrators` group. +This command creates an SMB share named `VMSFiles` and grants Change permissions to the domain +groups `CONTOSO\Finance Users` and `CONTOSO\HR Users`. Full Access permissions to the builtin +`Administrators` group. This example uses splatting to pass parameter values from the `$Parameters` variable to the command. Learn more about [Splatting](/powershell/module/microsoft.powershell.core/about/about_splatting). @@ -160,7 +161,8 @@ Accept wildcard characters: False ### -ChangeAccess Specifies which users are granted modify permission to access the share. Multiple users can be -specified by using a comma-separated list. +specified by using a comma-separated list. Each entry in the comma-separated list must be contained +within single or double quotes, for example `'CONTOSO\Finance Users','CONTOSO\HR Users'`. ```yaml Type: String[] @@ -306,10 +308,12 @@ Accept wildcard characters: False ### -FullAccess Specifies which accounts are granted full permission to access the share. Use a comma-separated list -to specify multiple accounts. An account may not be specified more than once in the **FullAccess**, -**ChangeAccess**, or **ReadAccess** parameter lists, but may be specified once in the -**FullAccess**, **ChangeAccess**, or **ReadAccess** parameter list and once in the **NoAccess** -parameter list. +to specify multiple accounts. Each entry in the comma-separated list must be contained within single +or double quotes, for example `'CONTOSO\Finance Users','CONTOSO\HR Users'`. + +An account may not be specified more than once in the **FullAccess**, **ChangeAccess**, or +**ReadAccess** parameter lists, but may be specified once in the **FullAccess**, **ChangeAccess**, +or **ReadAccess** parameter list and once in the **NoAccess** parameter list. ```yaml Type: String[] @@ -365,8 +369,9 @@ Accept wildcard characters: False ### -NoAccess -Specifies which accounts are denied access to the SMB share. -Multiple accounts can be specified by supplying a comma-separated list. +Specifies which accounts are denied access to the SMB share. Multiple accounts can be specified by +supplying a comma-separated list. Each entry in the comma-separated list must be contained within +single or double quotes, for example `'CONTOSO\Finance Users','CONTOSO\HR Users'`. ```yaml Type: String[] @@ -399,8 +404,9 @@ Accept wildcard characters: False ### -ReadAccess -Specifies which users are granted read permission to access the share. -Multiple users can be specified by supplying a comma-separated list. +Specifies which users are granted read permission to access the share. Multiple users can be +specified by supplying a comma-separated list. Each entry in the comma-separated list must be +contained within single or double quotes, for example `'CONTOSO\Finance Users','CONTOSO\HR Users'`. ```yaml Type: String[] diff --git a/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md b/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md index 983a47389e..cc2be9f7f7 100644 --- a/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md @@ -573,8 +573,8 @@ Accept wildcard characters: False ### -RequestCompression -Indicates if an SMB client should always request compression even if the server or application didn't -specify it. +Indicates if an SMB client should always request compression even if the server or application +didn't specify it. ```yaml Type: Boolean diff --git a/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md b/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md index 427e6f4d62..69753032b0 100644 --- a/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md @@ -738,7 +738,7 @@ Accept wildcard characters: False ### -RejectUnencryptedAccess -Indicates whether a client that doesn't support encryption is denied access if it attempts to +Indicates whether the client that doesn't support encryption is denied access if it attempts to connect to an encrypted share. ```yaml @@ -755,9 +755,8 @@ Accept wildcard characters: False ### -RequestCompression -```suggestion -Indicates whether the SMB server should always request compression even if client or application -didn't specify it. +Indicates if SMB server should always request compression even if client or application didn't +specify it. ```yaml Type: Boolean From e13fee33070e2f390b9a9988f7d2801f66367f15 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Wed, 9 Nov 2022 10:41:24 +0000 Subject: [PATCH 303/965] Updated Pool parameter clarity --- docset/winserver2012-ps/failoverclusters/Test-Cluster.md | 8 ++++---- .../winserver2012r2-ps/failoverclusters/Test-Cluster.md | 8 ++++---- docset/winserver2016-ps/failoverclusters/Test-Cluster.md | 8 ++++---- docset/winserver2019-ps/failoverclusters/Test-Cluster.md | 8 ++++---- docset/winserver2022-ps/failoverclusters/Test-Cluster.md | 8 ++++---- 5 files changed, 20 insertions(+), 20 deletions(-) diff --git a/docset/winserver2012-ps/failoverclusters/Test-Cluster.md b/docset/winserver2012-ps/failoverclusters/Test-Cluster.md index 8f281db584..392ea0a8c8 100644 --- a/docset/winserver2012-ps/failoverclusters/Test-Cluster.md +++ b/docset/winserver2012-ps/failoverclusters/Test-Cluster.md @@ -257,10 +257,10 @@ Accept wildcard characters: False Specifies the clustered storage pool or pools for which to run the cmdlet. When the specified storage pool is online and a virtual disk in the storage pool is assigned to a clustered role or Cluster Shared Volume, you must also specify the **Force** parameter to take the storage pool -offline for the duration of the storage tests. Otherwise, the specified storage pool must be taken -offline before the storage tests. If the **Pool** parameter is not specified, storage tests run on -all storage pools that are available for use in the cluster or that are in the cluster resource -offline or failed state. +offline for the duration of the storage tests. Otherwise, command will exit with an error. The +specified storage pool must be taken offline before running the storage tests. If the **Pool** +parameter is not specified, storage tests run on all storage pools that are available for use in the +cluster or that are in the cluster resource offline or failed state. The acceptable values for this parameter are: diff --git a/docset/winserver2012r2-ps/failoverclusters/Test-Cluster.md b/docset/winserver2012r2-ps/failoverclusters/Test-Cluster.md index 0fd0159848..71a78d35d0 100644 --- a/docset/winserver2012r2-ps/failoverclusters/Test-Cluster.md +++ b/docset/winserver2012r2-ps/failoverclusters/Test-Cluster.md @@ -275,10 +275,10 @@ Accept wildcard characters: False Specifies the clustered storage pool or pools for which to run the cmdlet. When the specified storage pool is online and a virtual disk in the storage pool is assigned to a clustered role or Cluster Shared Volume, you must also specify the **Force** parameter to take the storage pool -offline for the duration of the storage tests. Otherwise, the specified storage pool must be taken -offline before the storage tests. If the **Pool** parameter is not specified, storage tests run on -all storage pools that are available for use in the cluster or that are in the cluster resource -offline or failed state. +offline for the duration of the storage tests. Otherwise, command will exit with an error. The +specified storage pool must be taken offline before running the storage tests. If the **Pool** +parameter is not specified, storage tests run on all storage pools that are available for use in the +cluster or that are in the cluster resource offline or failed state. The acceptable values for this parameter are: diff --git a/docset/winserver2016-ps/failoverclusters/Test-Cluster.md b/docset/winserver2016-ps/failoverclusters/Test-Cluster.md index 0c49954549..90c6e8cd18 100644 --- a/docset/winserver2016-ps/failoverclusters/Test-Cluster.md +++ b/docset/winserver2016-ps/failoverclusters/Test-Cluster.md @@ -276,10 +276,10 @@ Accept wildcard characters: False Specifies the clustered storage pool or pools for which to run the cmdlet. When the specified storage pool is online and a virtual disk in the storage pool is assigned to a clustered role or Cluster Shared Volume, you must also specify the **Force** parameter to take the storage pool -offline for the duration of the storage tests. Otherwise, the specified storage pool must be taken -offline before the storage tests. If the **Pool** parameter is not specified, storage tests run on -all storage pools that are available for use in the cluster or that are in the cluster resource -offline or failed state. +offline for the duration of the storage tests. Otherwise, command will exit with an error. The +specified storage pool must be taken offline before running the storage tests. If the **Pool** +parameter is not specified, storage tests run on all storage pools that are available for use in the +cluster or that are in the cluster resource offline or failed state. The acceptable values for this parameter are: diff --git a/docset/winserver2019-ps/failoverclusters/Test-Cluster.md b/docset/winserver2019-ps/failoverclusters/Test-Cluster.md index 3316284619..a22be2ad62 100644 --- a/docset/winserver2019-ps/failoverclusters/Test-Cluster.md +++ b/docset/winserver2019-ps/failoverclusters/Test-Cluster.md @@ -276,10 +276,10 @@ Accept wildcard characters: False Specifies the clustered storage pool or pools for which to run the cmdlet. When the specified storage pool is online and a virtual disk in the storage pool is assigned to a clustered role or Cluster Shared Volume, you must also specify the **Force** parameter to take the storage pool -offline for the duration of the storage tests. Otherwise, the specified storage pool must be taken -offline before the storage tests. If the **Pool** parameter is not specified, storage tests run on -all storage pools that are available for use in the cluster or that are in the cluster resource -offline or failed state. +offline for the duration of the storage tests. Otherwise, command will exit with an error. The +specified storage pool must be taken offline before running the storage tests. If the **Pool** +parameter is not specified, storage tests run on all storage pools that are available for use in the +cluster or that are in the cluster resource offline or failed state. The acceptable values for this parameter are: diff --git a/docset/winserver2022-ps/failoverclusters/Test-Cluster.md b/docset/winserver2022-ps/failoverclusters/Test-Cluster.md index e20858c630..00a7f6091f 100644 --- a/docset/winserver2022-ps/failoverclusters/Test-Cluster.md +++ b/docset/winserver2022-ps/failoverclusters/Test-Cluster.md @@ -276,10 +276,10 @@ Accept wildcard characters: False Specifies the clustered storage pool or pools for which to run the cmdlet. When the specified storage pool is online and a virtual disk in the storage pool is assigned to a clustered role or Cluster Shared Volume, you must also specify the **Force** parameter to take the storage pool -offline for the duration of the storage tests. Otherwise, the specified storage pool must be taken -offline before the storage tests. If the **Pool** parameter is not specified, storage tests run on -all storage pools that are available for use in the cluster or that are in the cluster resource -offline or failed state. +offline for the duration of the storage tests. Otherwise, command will exit with an error. The +specified storage pool must be taken offline before running the storage tests. If the **Pool** +parameter is not specified, storage tests run on all storage pools that are available for use in the +cluster or that are in the cluster resource offline or failed state. The acceptable values for this parameter are: From 5929e78535b9a044526e731765e5bf46e2aa2c27 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Thu, 10 Nov 2022 10:29:40 +0000 Subject: [PATCH 304/965] Applied further review suggestions --- docset/winserver2022-ps/smbshare/New-SmbShare.md | 7 +++---- .../smbshare/Set-SmbClientConfiguration.md | 6 +++--- .../smbshare/Set-SmbServerConfiguration.md | 6 +++--- 3 files changed, 9 insertions(+), 10 deletions(-) diff --git a/docset/winserver2022-ps/smbshare/New-SmbShare.md b/docset/winserver2022-ps/smbshare/New-SmbShare.md index 7cfa601e28..caaf57c17e 100644 --- a/docset/winserver2022-ps/smbshare/New-SmbShare.md +++ b/docset/winserver2022-ps/smbshare/New-SmbShare.md @@ -454,9 +454,8 @@ Accept wildcard characters: False ### -Temporary -Specifies the lifetime of the new SMB share. -A temporary share doesn't persist beyond the next restart of the computer. -By default, new SMB shares are persistent, and non-temporary. +Specifies the new SMB share is temporary and will not persist beyond the next restart of the +computer. By default, new SMB shares aren't temporary. ```yaml Type: SwitchParameter @@ -511,7 +510,7 @@ Accept wildcard characters: False Shows what would happen if the cmdlet runs. The cmdlet isn't run. -NOTE: The WhatIf switch doesn't work with this cmdlet. +NOTE: The **WhatIf** switch doesn't work with this cmdlet. ```yaml Type: SwitchParameter diff --git a/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md b/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md index cc2be9f7f7..ba22ace807 100644 --- a/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Set-SmbClientConfiguration.md @@ -40,9 +40,9 @@ The `Set-SmbClientConfiguration` cmdlet sets the Server Message Block (SMB) clie > [!NOTE] > - The **EncryptionCiphers** parameter is available beginning with 2022-06 Cumulative Update for -> Microsoft server operating system version 21H2 for x64-based Systems -> ([KB5014665](https://support.microsoft.com/help/5014665)), and Cumulative Update for Windows 11, -> version 22H2 ([KB5014668](https://support.microsoft.com/help/5014668)). +> Microsoft server operating system version 21H2 for x64-based Systems +> ([KB5014665](https://support.microsoft.com/help/5014665)), and Cumulative Update for Windows 11, +> version 22H2 ([KB5014668](https://support.microsoft.com/help/5014668)). > > - The **CompressibilitySamplingSize**, **CompressibleThreshold**, > **EnableCompressibilitySampling**, and **RequestCompression** parameters are available beginning diff --git a/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md b/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md index 69753032b0..3481aedd8e 100644 --- a/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md +++ b/docset/winserver2022-ps/smbshare/Set-SmbServerConfiguration.md @@ -48,9 +48,9 @@ and [[MS-SMB2]:Server Message Block (SMB) Protocol Versions 2 and 3](/openspecs/ > [!NOTE] > - The **EncryptionCiphers** parameter is available beginning with 2022-06 Cumulative Update for -> Microsoft server operating system version 21H2 for x64-based Systems -> ([KB5014665](https://support.microsoft.com/help/5014665)), and Cumulative Update for Windows 11, -> version 22H2 ([KB5014668](https://support.microsoft.com/help/5014668)). +> Microsoft server operating system version 21H2 for x64-based Systems +> ([KB5014665](https://support.microsoft.com/help/5014665)), and Cumulative Update for Windows 11, +> version 22H2 ([KB5014668](https://support.microsoft.com/help/5014668)). > > - The **DisableCompression** and **RequestCompression** parameters are available beginning with > 2022-08 Cumulative Update for Microsoft server operating system version 21H2 for x64-based From 203774809619f201aee4fbfc0e4e754b837ac582 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Thu, 10 Nov 2022 11:02:11 +0000 Subject: [PATCH 305/965] Applied note formatting update --- docset/winserver2022-ps/smbshare/New-SmbShare.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/smbshare/New-SmbShare.md b/docset/winserver2022-ps/smbshare/New-SmbShare.md index caaf57c17e..9c1c45496e 100644 --- a/docset/winserver2022-ps/smbshare/New-SmbShare.md +++ b/docset/winserver2022-ps/smbshare/New-SmbShare.md @@ -510,7 +510,8 @@ Accept wildcard characters: False Shows what would happen if the cmdlet runs. The cmdlet isn't run. -NOTE: The **WhatIf** switch doesn't work with this cmdlet. +> [!NOTE] +> The **WhatIf** switch doesn't work with this cmdlet. ```yaml Type: SwitchParameter From 35da484403ce8d793fdd2cc03c36b6390e329702 Mon Sep 17 00:00:00 2001 From: Michael Lombardi Date: Fri, 4 Nov 2022 09:55:00 -0500 Subject: [PATCH 306/965] (AB#30887) Configure quality contributions project This change configures the repository for participation in the PowerShell Docs Quality Contributions project, replacing the Hacktoberfest issue template with one for the new project and setting up workflow automation. - Fixes AB#30887 --- .github/ISSUE_TEMPLATE/00-hacktoberfest.yml | 78 ------------------- .github/ISSUE_TEMPLATE/00-quality.yml | 85 +++++++++++++++++++++ .github/ISSUE_TEMPLATE/config.yml | 8 +- .github/workflows/quality.issue.yml | 75 ++++++++++++++++++ .github/workflows/quality.pr.yml | 39 ++++++++++ 5 files changed, 203 insertions(+), 82 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/00-hacktoberfest.yml create mode 100644 .github/ISSUE_TEMPLATE/00-quality.yml create mode 100644 .github/workflows/quality.issue.yml create mode 100644 .github/workflows/quality.pr.yml diff --git a/.github/ISSUE_TEMPLATE/00-hacktoberfest.yml b/.github/ISSUE_TEMPLATE/00-hacktoberfest.yml deleted file mode 100644 index e04511b3e6..0000000000 --- a/.github/ISSUE_TEMPLATE/00-hacktoberfest.yml +++ /dev/null @@ -1,78 +0,0 @@ -name: "🎃 Hacktoberfest 2022" -description: >- - File a new issue to tackle quality improvement opportunities for Hacktoberfest 2022 -title: "🎃 2022: " -body: - - type: markdown - attributes: - value: | - This issue's related to [Hacktoberfest 2022][01]. For more info, see the meta-issue below: - - - MicrosoftDocs/PowerShell-Docs#9257 - - [01]: https://hacktoberfest.com/participation/ - - type: checkboxes - id: prerequisites - attributes: - label: Prerequisites - description: >- - These steps are required. After you've completed each step, check the box for it before - moving on. - options: - - label: >- - **Existing Issue:** Search the existing Hacktoberfest issues for this repository. If - there's an issue that covers the quality area and articles you want to improve, pick a - different quality area or article set. Don't file a new issue for the same work. - Subscribe, react, or comment on that issue instead. - required: true - - label: >- - **Descriptive Title:** Write the title for this issue as a short synopsis. If possible, - provide context. For example, "🎃 2022: Command Syntax in Foo" instead of "🎃 2022: Foo" - required: true - - type: dropdown - id: QualityArea - validations: - required: true - attributes: - label: Quality Areas - description: | - Select one or more quality areas to improve on with your contribution. - - For more information, see the relevant section in the meta issue: - - - [Aliases][aliases]: Ensure cmdlet aliases are documented - - [Formatting code samples][code-samples]: Ensure proper casing, line length, etc in code samples - - [Formatting command syntax][command-syntax]: Ensure proper casing and formatting for command syntax, including cmdlets, types, etc. - - [Link References][link-refs]: Ensure links in conceptual docs are defined as numbered references - - [Markdown linting][md-linting]: Ensure content follows markdownlint rules - - [Spelling][spelling]: Ensure proper casing and spelling for words - - [aliases]: https://github.com/MicrosoftDocs/PowerShell-Docs/issues/9257#aliases - [code-samples]: https://github.com/MicrosoftDocs/PowerShell-Docs/issues/9257#formatting-code-samples - [command-syntax]: https://github.com/MicrosoftDocs/PowerShell-Docs/issues/9257#formatting-command-syntax - [link-refs]: https://github.com/MicrosoftDocs/PowerShell-Docs/issues/9257#link-references - [md-linting]: https://github.com/MicrosoftDocs/PowerShell-Docs/issues/9257#markdown-linting - [spelling]: https://github.com/MicrosoftDocs/PowerShell-Docs/issues/9257#spelling - multiple: true - options: - - Aliases - - Formatting code samples - - Formatting command syntax - - Link References - - Markdown linting - - Spelling - - type: textarea - id: ArticleList - validations: - required: true - attributes: - label: Article List - description: >- - Specify the articles you are committing to work on, one per line. You can specify each entry - as a path, the article's title, or the link to the article on Learn. If you specify an - article by path for a reference article, such as a cmdlet or about topic, specify the - version segment as `*.*`. - placeholder: | - - reference/*.*/Microsoft.PowerShell.Core/Add-History.md - - Add-History - - https://learn.microsoft.com/powershell/module/microsoft.powershell.core/add-history diff --git a/.github/ISSUE_TEMPLATE/00-quality.yml b/.github/ISSUE_TEMPLATE/00-quality.yml new file mode 100644 index 0000000000..351b77c1df --- /dev/null +++ b/.github/ISSUE_TEMPLATE/00-quality.yml @@ -0,0 +1,85 @@ +name: "ðŸ› ï¸ Quality Contribution" +description: >- + File a new issue to tackle quality improvement opportunities +title: "Quality: " +body: + - type: markdown + attributes: + value: | + This issue template is for the [PowerShell Docs Quality Contributions project][a1]. + + For more more info, see [Contributing quality improvements][a2] in our Contributor's Guide. + + [a1]: https://github.com/orgs/MicrosoftDocs/projects/15 + [a2]: https://learn.microsoft.com/powershell/scripting/community/contributing/quality-improvements + - type: checkboxes + id: prerequisites + attributes: + label: Prerequisites + description: >- + These steps are required. After you've completed each step, check the box for it before + moving on. + options: + - label: | + **Existing Issue:** + + Search the existing [quality issues][b1] for this repository. If there's an issue that + covers the quality area and articles you want to improve, pick a different quality area + or article set. Don't file a new issue for the same work. Subscribe, react, or comment + on that issue instead. + + [b1]: https://github.com/orgs/MicrosoftDocs/projects/15/views/4 + required: true + - label: | + **Descriptive Title:** + + Write the title for this issue as a short synopsis. If possible, provide context. For + example, "Quality: Command Syntax in Foo" instead of "Quality: Foo" + required: true + - type: dropdown + id: QualityArea + validations: + required: true + attributes: + label: Quality Areas + description: | + Select one or more quality areas to improve on with your contribution. + + For more information, see the relevant section in the meta issue: + + - [Aliases][c1]: Ensure cmdlet aliases are documented + - [Formatting code samples][c2]: Ensure proper casing, line length, etc in code samples + - [Formatting command syntax][c3]: Ensure proper casing and formatting for command syntax, including cmdlets, types, etc. + - [Link References][c4]: Ensure links in conceptual docs are defined as numbered references + - [Markdown linting][c5]: Ensure content follows markdownlint rules + - [Spelling][c6]: Ensure proper casing and spelling for words + + [c1]: https://learn.microsoft.com/powershell/scripting/community/contributing/quality-improvements#aliases + [c2]: https://learn.microsoft.com/powershell/scripting/community/contributing/quality-improvements#formatting-code-samples + [c3]: https://learn.microsoft.com/powershell/scripting/community/contributing/quality-improvements#formatting-command-syntax + [c4]: https://learn.microsoft.com/powershell/scripting/community/contributing/quality-improvements#link-references + [c5]: https://learn.microsoft.com/powershell/scripting/community/contributing/quality-improvements#markdown-linting + [c6]: https://learn.microsoft.com/powershell/scripting/community/contributing/quality-improvements#spelling + multiple: true + options: + - Aliases + - Formatting code samples + - Formatting command syntax + - Link References + - Markdown linting + - Spelling + - type: textarea + id: ArticleList + validations: + required: true + attributes: + label: Article List + description: >- + Specify the articles you are committing to work on, one per line. You can specify each entry + as a path, the article's title, or the link to the article on Learn. If you specify an + article by path for a reference article, such as a cmdlet or about topic, specify the + version segment as `*.*`. + placeholder: | + - reference/*.*/Microsoft.PowerShell.Core/Add-History.md + - Add-History + - https://learn.microsoft.com/powershell/module/microsoft.powershell.core/add-history diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 875634bf93..e25b7a998d 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,10 +1,10 @@ blank_issues_enabled: true contact_links: - - name: 🎃 Hacktoberfest 2022 - url: https://github.com/MicrosoftDocs/PowerShell-Docs/issues/9257 + - name: Quality Contributions + url: https://learn.microsoft.com/powershell/scripting/community/contributing/quality-improvements about: >- - If you'd like to participate in Hacktoberfest 2022, before filing an issue, check the info - and instructions. + If you'd like to commit to improving quality for the documentation, before filing an issue, + check the info and instructions. # - name: PowerShell Product Feedback # url: https://github.com/PowerShell/PowerShell/issues/new/choose # about: Please open feature requests for current PowerShell here. diff --git a/.github/workflows/quality.issue.yml b/.github/workflows/quality.issue.yml new file mode 100644 index 0000000000..636d3c0413 --- /dev/null +++ b/.github/workflows/quality.issue.yml @@ -0,0 +1,75 @@ +name: "Quality Contribution Issues" +on: + issues: + types: + - opened + +jobs: + # Check if the issue is for quality contributions; all other jobs depend on this one. + quality: + name: Is Quality Contribution? + runs-on: ubuntu-latest + outputs: + check: ${{ steps.is-quality.outputs.match != '' }} + steps: + - uses: actions-ecosystem/action-regex-match@v2 + id: is-quality + with: + text: ${{ github.event.issue.body }} + regex: "Quality: Foo" + flags: gm + + project: + name: Add to project + needs: quality + if: needs.quality.outputs.check == 'true' + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@v0.3.0 + with: + project-url: https://github.com/orgs/MicrosoftDocs/projects/15/views/1 + github-token: ${{ secrets.quality_token }} + + assign: + name: Assign to author + needs: quality + if: needs.quality.outputs.check == 'true' + runs-on: ubuntu-latest + steps: + - uses: actions-ecosystem/action-add-assignees@v1 + with: + github_token: ${{ secrets.github_token }} + assignees: ${{ github.event.issue.user.login }} + + label: + name: Add quality labels + needs: quality + if: needs.quality.outputs.check == 'true' + runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + include: + - regex: Aliases + label: quality-aliases + - regex: Formatting code samples + label: quality-format-code-samples + - regex: Formatting command syntax + label: quality-format-command-syntax + - regex: Link references + label: quality-link-references + - regex: Markdown linting + label: quality-markdownlint + - regex: Spelling + label: quality-spelling + steps: + - uses: actions-ecosystem/action-regex-match@v2 + id: matcher + with: + text: ${{ github.event.issue.body }} + regex: '^### Quality Areas\s*^.*${{ matrix.regex }}.*$' + flags: gm + - uses: actions-ecosystem/action-add-labels@v1 + if: steps.matcher.outputs.match != '' + with: + labels: ${{ matrix.label }} diff --git a/.github/workflows/quality.pr.yml b/.github/workflows/quality.pr.yml new file mode 100644 index 0000000000..ea7e33624a --- /dev/null +++ b/.github/workflows/quality.pr.yml @@ -0,0 +1,39 @@ +name: "Quality Contributions" +on: + pull_request_target: + branches: + - main + types: + - opened + - reopened + - edited + +defaults: + run: + shell: pwsh + +jobs: + # Check if the PR is for quality contributions; all other jobs depend on this one. + check: + name: Is Quality Contribution? + outputs: + title: ${{ steps.title.outputs.check == 'true' }} + runs-on: ubuntu-latest + steps: + - id: title + run: | + $Check = "${{ contains(github.event.pull_request.title, 'Quality:') }}" + "Check: $Check" + "::set-output name=check::$Check" + + project: + name: Add pull request to project + needs: check + if: | + needs.check.outputs.title == 'true' + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@v0.3.0 + with: + project-url: https://github.com/orgs/MicrosoftDocs/projects/15/views/1 + github-token: ${{ secrets.quality_token }} From 9b66e5de68a29994901c6f143d48dc289debb1c6 Mon Sep 17 00:00:00 2001 From: Lindsay <45809756+lindspea@users.noreply.github.com> Date: Wed, 16 Nov 2022 08:36:13 +0200 Subject: [PATCH 307/965] Update Format-SecureBootUEFI.md Fixed typo --- docset/winserver2022-ps/secureboot/Format-SecureBootUEFI.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/secureboot/Format-SecureBootUEFI.md b/docset/winserver2022-ps/secureboot/Format-SecureBootUEFI.md index 905798e824..f386d27542 100644 --- a/docset/winserver2022-ps/secureboot/Format-SecureBootUEFI.md +++ b/docset/winserver2022-ps/secureboot/Format-SecureBootUEFI.md @@ -38,7 +38,7 @@ The **Format-SecureBootUEFI** cmdlet receives certificates or hashes as input an The Set-SecureBootUEFI cmdlet uses this object to update the variable. If you specify a signable file, this cmdlet creates a file that has the specified name that has to be signed. -This cmdlet this runs on both UEFI and BIOS (non-UEFI) computers. +This cmdlet runs on both UEFI and BIOS (non-UEFI) computers. ## EXAMPLES From aa9586aa274874954d2bd2ca49e127f27f508617 Mon Sep 17 00:00:00 2001 From: Michael Lombardi Date: Wed, 16 Nov 2022 12:40:35 -0600 Subject: [PATCH 308/965] (AB#37680) Reorganize and rename issue templates Prior to this change, distinguishing between issue templates and links could be a little difficult. This change: - Reorders the issue templates so filing a bug is the first option, then suggesting an improvement, committing to a quality contribution, and finally reporting a product change - Updates the issue template titles to use imperative language with a call to action and links in the issue picker to be questions - Updates the Quality Contributions project links to point to the updated templates --- .github/ISSUE_TEMPLATE/{02-bug.yml => 00-bug.yml} | 2 +- .github/ISSUE_TEMPLATE/01-article.yml | 2 +- .github/ISSUE_TEMPLATE/{00-quality.yml => 02-quality.yml} | 4 ++-- .github/ISSUE_TEMPLATE/config.yml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) rename .github/ISSUE_TEMPLATE/{02-bug.yml => 00-bug.yml} (98%) rename .github/ISSUE_TEMPLATE/{00-quality.yml => 02-quality.yml} (96%) diff --git a/.github/ISSUE_TEMPLATE/02-bug.yml b/.github/ISSUE_TEMPLATE/00-bug.yml similarity index 98% rename from .github/ISSUE_TEMPLATE/02-bug.yml rename to .github/ISSUE_TEMPLATE/00-bug.yml index bf566cfebd..8aa79a0e42 100644 --- a/.github/ISSUE_TEMPLATE/02-bug.yml +++ b/.github/ISSUE_TEMPLATE/00-bug.yml @@ -1,4 +1,4 @@ -name: "🛠Report Documentation issue" +name: "🛠Report a documentation issue" description: >- Report an issue with current documentation. labels: diff --git a/.github/ISSUE_TEMPLATE/01-article.yml b/.github/ISSUE_TEMPLATE/01-article.yml index 9163cd3633..aaa3b8d222 100644 --- a/.github/ISSUE_TEMPLATE/01-article.yml +++ b/.github/ISSUE_TEMPLATE/01-article.yml @@ -1,4 +1,4 @@ -name: "💡 New Document Request/Idea" +name: "💡 Suggest a new document or idea" description: >- Suggest a new document or major rewrite of an existing one. labels: diff --git a/.github/ISSUE_TEMPLATE/00-quality.yml b/.github/ISSUE_TEMPLATE/02-quality.yml similarity index 96% rename from .github/ISSUE_TEMPLATE/00-quality.yml rename to .github/ISSUE_TEMPLATE/02-quality.yml index 351b77c1df..2d2ceadee8 100644 --- a/.github/ISSUE_TEMPLATE/00-quality.yml +++ b/.github/ISSUE_TEMPLATE/02-quality.yml @@ -1,6 +1,6 @@ -name: "ðŸ› ï¸ Quality Contribution" +name: "🦾 Commit to a Quality Contribution" description: >- - File a new issue to tackle quality improvement opportunities + File an issue to take part in the PowerShell Docs Quality Contributions project. title: "Quality: " body: - type: markdown diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index e25b7a998d..cf2a340140 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,6 +1,6 @@ blank_issues_enabled: true contact_links: - - name: Quality Contributions + - name: What's the Quality Contributions Project? url: https://learn.microsoft.com/powershell/scripting/community/contributing/quality-improvements about: >- If you'd like to commit to improving quality for the documentation, before filing an issue, From 5735eed173460076e05e1d2723cd062ebe7382e1 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Fri, 18 Nov 2022 09:46:28 +0530 Subject: [PATCH 309/965] Update Add-OdbcDsn.md Made changes to Example 4 as the variable used was incorrect --- docset/winserver2022-ps/wdac/Add-OdbcDsn.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/wdac/Add-OdbcDsn.md b/docset/winserver2022-ps/wdac/Add-OdbcDsn.md index f854da66bb..e75c12b3bc 100644 --- a/docset/winserver2022-ps/wdac/Add-OdbcDsn.md +++ b/docset/winserver2022-ps/wdac/Add-OdbcDsn.md @@ -58,7 +58,7 @@ Without *PassThru*, the cmdlet does not return anything. ### Example 4: Migrates DSNs to a newer version of a driver ``` PS C:\> $DsnArray = Get-OdbcDsn -DriverName 'SQL Server Native Client 10.0' -PS C:\> ForEach ($Dsn in $ DsnArr) { +PS C:\> ForEach ($Dsn in $ DsnArray) { Remove-OdbcDsn -InputObject $Dsn # You can change the property array as well, # if DSN attributes have been changed in the new driver version From fdac87ba3241219aa607ecb02171c707f36ff4f9 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Fri, 18 Nov 2022 12:23:40 +0530 Subject: [PATCH 310/965] Update New-ADUser.md Updated LDAP display name for Office --- docset/winserver2022-ps/activedirectory/New-ADUser.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/activedirectory/New-ADUser.md b/docset/winserver2022-ps/activedirectory/New-ADUser.md index 58104af6b3..aed3b4a952 100644 --- a/docset/winserver2022-ps/activedirectory/New-ADUser.md +++ b/docset/winserver2022-ps/activedirectory/New-ADUser.md @@ -842,7 +842,7 @@ Accept wildcard characters: False ### -Office Specifies the location of the user's office or place of business. This parameter sets the **Office** property of a user object. -The LDAP display name (**ldapDisplayName**) of this property is office. +The LDAP display name (**ldapDisplayName**) of this property is physicalDeliveryOfficeName. ```yaml Type: String From 5b80b43110fa334405d3801c6a18affc37a5f54a Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Fri, 18 Nov 2022 17:33:56 +0530 Subject: [PATCH 311/965] Update Set-NetTCPSetting.md Updated description for AutoReusePortRangeStartPort --- docset/winserver2022-ps/nettcpip/Set-NetTCPSetting.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/nettcpip/Set-NetTCPSetting.md b/docset/winserver2022-ps/nettcpip/Set-NetTCPSetting.md index 4683d44548..bd71122cfc 100644 --- a/docset/winserver2022-ps/nettcpip/Set-NetTCPSetting.md +++ b/docset/winserver2022-ps/nettcpip/Set-NetTCPSetting.md @@ -104,7 +104,9 @@ Accept wildcard characters: False ``` ### -AutoReusePortRangeStartPort -Specifies the number of ports for the auto-reuse port range, which is a port range used for local ephemeral port selection by outbound TCP connections for which either SO_REUSE_UNICASTPORT has been set on the socket, or for which connect() has been called without calling bind() on the socket. +Specifies the starting port for the auto-reuse port range. + +This parameter sets the starting port to send and receive TCP traffic, which is a port range used for local ephemeral port selection by outbound TCP connections for which either SO_REUSE_UNICASTPORT has been set on the socket, or for which connect() has been called without calling bind() on the socket. If you specify 0, the auto-reuse feature is disabled and ephemeral ports are drawn instead from the dynamic port range as specified by *DynamicPortRangeStartPort* and *DynamicPortRangeNumberOfPorts*, even if SO_REUSE_UNICASTPORT is set on a socket. From cde1f60b6afdf5685d400df02529b5b9e33365f9 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Mon, 21 Nov 2022 14:48:57 +0000 Subject: [PATCH 312/965] Bulk text formatting updates --- .../Get-ClusterFaultDomainXML.md | 4 +-- .../failoverclusters/Get-ClusterGroup.md | 4 +-- .../failoverclusters/Get-ClusterGroupSet.md | 4 +-- .../Get-ClusterGroupSetDependency.md | 4 +-- .../failoverclusters/Get-ClusterLog.md | 6 ++-- .../failoverclusters/Get-ClusterNetwork.md | 4 +-- .../Get-ClusterNetworkInterface.md | 4 +-- .../failoverclusters/Get-ClusterNode.md | 6 ++-- .../failoverclusters/Get-ClusterOwnerNode.md | 4 +-- .../failoverclusters/Get-ClusterParameter.md | 12 +++---- .../failoverclusters/Get-ClusterQuorum.md | 4 +-- .../failoverclusters/Get-ClusterResource.md | 8 ++--- .../Get-ClusterResourceDependency.md | 6 ++-- .../Get-ClusterResourceDependencyReport.md | 4 +-- .../Get-ClusterResourceType.md | 4 +-- .../Get-ClusterSharedVolume.md | 4 +-- .../Get-ClusterSharedVolumeState.md | 8 ++--- .../Get-ClusterStorageSpacesDirect.md | 6 ++-- .../Get-ClusterVMMonitoredItem.md | 8 ++--- .../failoverclusters/Grant-ClusterAccess.md | 4 +-- .../failoverclusters/Move-ClusterGroup.md | 6 ++-- .../failoverclusters/Move-ClusterResource.md | 4 +-- .../Move-ClusterSharedVolume.md | 6 ++-- .../Move-ClusterVirtualMachineRole.md | 10 +++--- .../failoverclusters/New-Cluster.md | 36 +++++++++---------- .../New-ClusterFaultDomain.md | 12 +++---- .../New-ClusterNameAccount.md | 8 ++--- .../failoverclusters/Remove-Cluster.md | 10 +++--- .../failoverclusters/Remove-ClusterAccess.md | 4 +-- 29 files changed, 102 insertions(+), 102 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterFaultDomainXML.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterFaultDomainXML.md index ca77d33678..1a44f3fde3 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterFaultDomainXML.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterFaultDomainXML.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterFaultDomain.cdxml-help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterfaultdomainxml?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterFaultDomainXML @@ -22,7 +22,7 @@ Get-ClusterFaultDomainXML [-Flags ] [-CimSession ] [-Throt ## DESCRIPTION -The **Get-ClusterFaultDomainXML** cmdlet gets the fault domain as an XML string. +The `Get-ClusterFaultDomainXML` cmdlet gets the fault domain as an XML string. ## EXAMPLES diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterGroup.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterGroup.md index 6d0e253488..e886242a5a 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterGroup.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterGroup.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clustergroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterGroup @@ -22,7 +22,7 @@ Get-ClusterGroup [[-Name] ] [-VMId ] [-InputObject ] [-IsGlobal ] [-CimSession ] [-Name ] [-Prov ## DESCRIPTION -The **Get-ClusterGroupSetDependency** cmdlet gets the cluster group sets based on dependency +The `Get-ClusterGroupSetDependency` cmdlet gets the cluster group sets based on dependency relationships. You can get all sets that are dependent on a specific set. ## EXAMPLES diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterLog.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterLog.md index b9b741055f..129b0cf5f7 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterLog.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterLog.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterlog?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterLog @@ -23,7 +23,7 @@ Get-ClusterLog [[-Node] ] [-Destination ] [-TimeSpan < ## DESCRIPTION -The **Get-ClusterLog** cmdlet creates a log file for all nodes, or a specific a node, in a failover +The `Get-ClusterLog` cmdlet creates a log file for all nodes, or a specific a node, in a failover cluster. When creating a log file for the cluster, you can specify the timespan that you want logged @@ -159,7 +159,7 @@ Accept wildcard characters: False ### -SkipClusterState -Indicates that the cmdlet does not add additional cluster state information to the cluster logs. +Indicates that the cmdlet doesn't add additional cluster state information to the cluster logs. ```yaml Type: SwitchParameter diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterNetwork.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterNetwork.md index 9b958c1ae0..dcd72b39c1 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterNetwork.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterNetwork.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusternetwork?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterNetwork @@ -22,7 +22,7 @@ Get-ClusterNetwork [[-Name] ] [-InputObject ] [-Clus ## DESCRIPTION -The **Get-ClusterNetwork** cmdlet gets information about one or more networks in a failover cluster. +The `Get-ClusterNetwork` cmdlet gets information about one or more networks in a failover cluster. A failover cluster requires network connectivity among nodes and between clients and nodes. ## EXAMPLES diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterNetworkInterface.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterNetworkInterface.md index 3a5d5ada6c..e7a88c6248 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterNetworkInterface.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterNetworkInterface.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusternetworkinterface?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterNetworkInterface @@ -22,7 +22,7 @@ Get-ClusterNetworkInterface [[-Name] ] [-Node ] [-InputObject ] [-Cluster ## DESCRIPTION -The **Get-ClusterNode** cmdlet gets information about one or more nodes, or servers, in a failover +The `Get-ClusterNode` cmdlet gets information about one or more nodes, or servers, in a failover cluster. Use this cmdlet to obtain information about the node status. To see the resources currently owned by a particular node, specify that node in this cmdlet and then pipe the results through the -**Get-ClusterResource** cmdlet. +`Get-ClusterResource` cmdlet. ## EXAMPLES diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterOwnerNode.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterOwnerNode.md index 580e0e1958..dc64a9ed26 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterOwnerNode.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterOwnerNode.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterownernode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterOwnerNode @@ -23,7 +23,7 @@ Get-ClusterOwnerNode [-Resource ] [-Group ] [-ResourceType ] [-InputObject ] [-Cl ## DESCRIPTION -The **Get-ClusterParameter** cmdlet gets detailed information about an object in a failover cluster, +The `Get-ClusterParameter` cmdlet gets detailed information about an object in a failover cluster, such as a cluster resource. This cmdlet is used to manage private properties for a cluster object. To get and set common properties for a cluster object, use the appropriate Get-Cluster* cmdlet to get the cluster object of interest and then set the property of interest on that cluster object @@ -31,17 +31,17 @@ directly. The type of detailed information you can obtain with this cmdlet depends on the cmdlet you combine with it. For example: -- If you use this cmdlet with the **Get-ClusterResource** cmdlet for a disk resource, then you can +- If you use this cmdlet with the `Get-ClusterResource` cmdlet for a disk resource, then you can obtain the disk signature or GUID of a disk and information about whether maintenance is turned on for that disk. -- If you use this cmdlet with the **Get-ClusterResource** cmdlet for a Network Name resource, then +- If you use this cmdlet with the `Get-ClusterResource` cmdlet for a Network Name resource, then you can obtain DNS-related information about the resource. -- If you use this cmdlet with the **Get-ClusterResource** cmdlet for an IP address resource, then +- If you use this cmdlet with the `Get-ClusterResource` cmdlet for an IP address resource, then you can obtain DHCP-related information about the IP Address resource. -- If you use this cmdlet with the **Get-ClusterResource** cmdlet for resources used by virtual +- If you use this cmdlet with the `Get-ClusterResource` cmdlet for resources used by virtual machines, then you can obtain details about the settings for the virtual machines. ## EXAMPLES diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterQuorum.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterQuorum.md index 8c34f8b912..159452c50c 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterQuorum.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterQuorum.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterquorum?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterQuorum @@ -21,7 +21,7 @@ Get-ClusterQuorum [[-Cluster] ] [-InputObject ] [] [-VMId ] [-InputObject

] [-Guid] [-InputOb ## DESCRIPTION -The **Get-ClusterResourceDependency** cmdlet gets information about the dependencies that have been +The `Get-ClusterResourceDependency` cmdlet gets information about the dependencies that have been configured between clustered resources in a failover cluster. Resource dependencies control the order in which resources are brought online or taken offline in the cluster. @@ -55,7 +55,7 @@ IP Address 2002:9d38:31ca:8:: ``` This example displays the dependencies for each resource in the clustered file server ─resource -group─ called cluster1FS12. Some resources do not have dependencies. +group─ called cluster1FS12. Some resources don't have dependencies. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceDependencyReport.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceDependencyReport.md index d6d6c10d7c..07e6ea29ee 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceDependencyReport.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceDependencyReport.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterresourcedependencyreport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterResourceDependencyReport @@ -22,7 +22,7 @@ Get-ClusterResourceDependencyReport [-Resource ] [-Group ] [-Inp ## DESCRIPTION -The **Get-ClusterResourceDependencyReport** cmdlet generates a report that lists the dependencies +The `Get-ClusterResourceDependencyReport` cmdlet generates a report that lists the dependencies between resources in a failover cluster. The report has a filename extension of MHT. For convenience in storing and finding the report, you diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceType.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceType.md index 869bb7b58d..191571539d 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceType.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceType.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterresourcetype?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterResourceType @@ -22,7 +22,7 @@ Get-ClusterResourceType [[-Name] ] [-InputObject ] [ ## DESCRIPTION -The **Get-ClusterResourceType** cmdlet gets information about one or more resource types in a +The `Get-ClusterResourceType` cmdlet gets information about one or more resource types in a failover cluster. Obtain information such as the name of the dynamic-link library (DLL) through which the Cluster service communicates with a particular resource type. diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterSharedVolume.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterSharedVolume.md index bcc6ac5550..d852eed946 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterSharedVolume.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterSharedVolume.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clustersharedvolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterSharedVolume @@ -22,7 +22,7 @@ Get-ClusterSharedVolume [[-Name] ] [-InputObject ] [ ## DESCRIPTION -The **Get-ClusterSharedVolume** cmdlet gets information about Cluster Shared Volumes in a failover +The `Get-ClusterSharedVolume` cmdlet gets information about Cluster Shared Volumes in a failover cluster. ## EXAMPLES diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterSharedVolumeState.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterSharedVolumeState.md index fd5e31f47b..c3913b1d57 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterSharedVolumeState.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterSharedVolumeState.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clustersharedvolumestate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterSharedVolumeState @@ -22,7 +22,7 @@ Get-ClusterSharedVolumeState [-Node ] [[-Name] ] [-CimSession ] ## DESCRIPTION -The **Get-ClusterStorageSpacesDirect** cmdlet gets the Storage Spaces Direct (S2D) settings from a +The `Get-ClusterStorageSpacesDirect` cmdlet gets the Storage Spaces Direct (S2D) settings from a cluster. ## EXAMPLES @@ -50,7 +50,7 @@ S2DEnabled : 1 ``` This command gets the S2D settings from cluster K0617-C1.contoso.com and pipes the cluster object to -**Get-ClusterStorageSpacesDirect**. +`Get-ClusterStorageSpacesDirect`. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterVMMonitoredItem.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterVMMonitoredItem.md index 1ef9bb3fdf..58f641a5e4 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterVMMonitoredItem.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterVMMonitoredItem.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clustervmmonitoreditem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterVMMonitoredItem @@ -37,7 +37,7 @@ Get-ClusterVMMonitoredItem [-Wait ] [-InputObject ] [-Cluster < ## DESCRIPTION -The **Get-ClusterVMMonitoredItem** cmdlet gets the list of services and events currently being +The `Get-ClusterVMMonitoredItem` cmdlet gets the list of services and events currently being monitored in the virtual machine. If one of those services fails or one of the events occurs, then the system responds by taking an action based on the failover configuration for the virtual machine resource. For example, the configuration might specify that the virtual machine be restarted. @@ -129,8 +129,8 @@ Accept wildcard characters: False ### -Wait -Specifies the time in seconds to wait for the cmdlet. If the *Wait* parameter is not specified, then -the cmdlet waits for completion. If `-Wait 0` is specified, then the call is initiated and the +Specifies the time in seconds to wait for the cmdlet. If the **Wait** parameter isn't specified, +then the cmdlet waits for completion. If `-Wait 0` is specified, then the call is initiated and the cmdlet returns without waiting. ```yaml diff --git a/docset/winserver2022-ps/failoverclusters/Grant-ClusterAccess.md b/docset/winserver2022-ps/failoverclusters/Grant-ClusterAccess.md index fcfae75956..cebc34ad3d 100644 --- a/docset/winserver2022-ps/failoverclusters/Grant-ClusterAccess.md +++ b/docset/winserver2022-ps/failoverclusters/Grant-ClusterAccess.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/grant-clusteraccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Grant-ClusterAccess @@ -22,7 +22,7 @@ Grant-ClusterAccess [-User] [-Full] [-ReadOnly] [-InputObject ## DESCRIPTION -The **Grant-ClusterAccess** cmdlet grants access to a failover cluster, either full access or +The `Grant-ClusterAccess` cmdlet grants access to a failover cluster, either full access or read-only access. To provide someone with read-only access to the cluster, use the **ReadOnly** parameter. diff --git a/docset/winserver2022-ps/failoverclusters/Move-ClusterGroup.md b/docset/winserver2022-ps/failoverclusters/Move-ClusterGroup.md index d95ac110ef..357b19c3e2 100644 --- a/docset/winserver2022-ps/failoverclusters/Move-ClusterGroup.md +++ b/docset/winserver2022-ps/failoverclusters/Move-ClusterGroup.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/move-clustergroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-ClusterGroup @@ -22,7 +22,7 @@ Move-ClusterGroup [[-Name] ] [[-Node] ] [-IgnoreLocked] [-Wait < ## DESCRIPTION -The **Move-ClusterGroup** cmdlet moves a clustered role (a resource group) from one node to another +The `Move-ClusterGroup` cmdlet moves a clustered role (a resource group) from one node to another in a failover cluster. Moving a resource group is a way of simulating failover. Running this cmdlet is also an appropriate @@ -166,7 +166,7 @@ Accept wildcard characters: False ### -Wait -Specifies the time in seconds to wait for the cmdlet. If the **Wait** parameter is not specified, +Specifies the time in seconds to wait for the cmdlet. If the **Wait** parameter isn't specified, then the cmdlet waits for completion. If `-Wait 0` is specified, then the call is initiated and the cmdlet returns without waiting. diff --git a/docset/winserver2022-ps/failoverclusters/Move-ClusterResource.md b/docset/winserver2022-ps/failoverclusters/Move-ClusterResource.md index 70dfbc7b95..9b66cadaf2 100644 --- a/docset/winserver2022-ps/failoverclusters/Move-ClusterResource.md +++ b/docset/winserver2022-ps/failoverclusters/Move-ClusterResource.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/move-clusterresource?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-ClusterResource @@ -22,7 +22,7 @@ Move-ClusterResource [[-Name] ] [[-Group] ] [-InputObject ] [[-Node] ] [-Wait ] ## DESCRIPTION -The **Move-ClusterSharedVolume** cmdlet moves a Cluster Shared Volume (CSV) to ownership by a +The `Move-ClusterSharedVolume` cmdlet moves a Cluster Shared Volume (CSV) to ownership by a different node in a failover cluster. On a failover cluster that uses CSVs, at any given time, access to each CSV is controlled by a @@ -123,7 +123,7 @@ Accept wildcard characters: False ### -Wait -Specifies the time in seconds to wait for the cmdlet. If the **Wait** parameter is not specified, +Specifies the time in seconds to wait for the cmdlet. If the **Wait** parameter isn't specified, then the cmdlet waits for completion. If `-Wait 0` is specified, then the call is initiated and the cmdlet returns without waiting. diff --git a/docset/winserver2022-ps/failoverclusters/Move-ClusterVirtualMachineRole.md b/docset/winserver2022-ps/failoverclusters/Move-ClusterVirtualMachineRole.md index c196d49dd1..bd1b933ace 100644 --- a/docset/winserver2022-ps/failoverclusters/Move-ClusterVirtualMachineRole.md +++ b/docset/winserver2022-ps/failoverclusters/Move-ClusterVirtualMachineRole.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/move-clustervirtualmachinerole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-ClusterVirtualMachineRole @@ -23,11 +23,11 @@ Move-ClusterVirtualMachineRole [[-Name] ] [[-Node] ] [-Cancel] ## DESCRIPTION -The **Move-ClusterVirtualMachineRole** cmdlet moves the ownership of a clustered virtual machine to +The `Move-ClusterVirtualMachineRole` cmdlet moves the ownership of a clustered virtual machine to a different node. This cmdlet is used to live migrate a clustered virtual machine. For quick migration, use -Move-ClusterGroup after using Get-ClusterResource and Set-ClusterParameter to set the +`Move-ClusterGroup` after using `Get-ClusterResource` and `Set-ClusterParameter` to set the **OfflineAction** parameter of the virtual machine resource to save state, or a value of 1. Note: This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) @@ -45,7 +45,7 @@ Virtual Machine1 node2 Online ``` This example performs a live migration of the clustered virtual machine named Virtual Machine1 to -the node named node2. The Windows PowerShell® prompt does not return until the action is complete. +the node named node2. The Windows PowerShell® prompt doesn't return until the action is complete. ### Example 2 @@ -239,7 +239,7 @@ Accept wildcard characters: False ### -Wait -Specifies the time in seconds to wait for the cmdlet. If the **Wait** parameter is not specified, +Specifies the time in seconds to wait for the cmdlet. If the **Wait** parameter isn't specified, then the cmdlet waits for completion. If `-Wait 0` is specified, then the call is initiated and the cmdlet returns without waiting. diff --git a/docset/winserver2022-ps/failoverclusters/New-Cluster.md b/docset/winserver2022-ps/failoverclusters/New-Cluster.md index cd6b937552..4dc07fedca 100644 --- a/docset/winserver2022-ps/failoverclusters/New-Cluster.md +++ b/docset/winserver2022-ps/failoverclusters/New-Cluster.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/new-cluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-Cluster @@ -23,7 +23,7 @@ New-Cluster [-Name] [-Node ] [-StaticAddress [-FaultDomain ] -FaultDomainType < ## DESCRIPTION -The **New-ClusterFaultDomain** cmdlet creates a fault domain in the cluster. Additionally, you can +The `New-ClusterFaultDomain` cmdlet creates a fault domain in the cluster. Additionally, you can specify the relationship between the fault domains when they are created. ## EXAMPLES @@ -124,10 +124,10 @@ Specifies the type of the fault domain that this cmdlet creates. The acceptable values for this parameter are: -- Site -- Rack -- Chassis -- Node +- **Site** +- **Rack** +- **Chassis** +- **Node** ```yaml Type: FaultDomainType diff --git a/docset/winserver2022-ps/failoverclusters/New-ClusterNameAccount.md b/docset/winserver2022-ps/failoverclusters/New-ClusterNameAccount.md index 05cb95a599..92033a8900 100644 --- a/docset/winserver2022-ps/failoverclusters/New-ClusterNameAccount.md +++ b/docset/winserver2022-ps/failoverclusters/New-ClusterNameAccount.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/new-clusternameaccount?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ClusterNameAccount @@ -31,7 +31,7 @@ New-ClusterNameAccount -Name -Credentials -Domain New-ClusterNameAccount -Name "cluster27" -Domain "production.contoso.com The first command prompts you for credentials, and then stores them in the **$Credential** variable. The second command creates a cluster name account for the current cluster in the specified domain. -The command supplies the credentials stored in $Credential to access Active Directory Domain +The command supplies the credentials stored in `$Credential` to access Active Directory Domain Services. ## PARAMETERS @@ -82,7 +82,7 @@ Accept wildcard characters: False ### -Credentials Specifies the credentials that this cmdlet uses when it connects to Active Directory Domain -Services. To obtain credentials, use the **Get-Credential** cmdlet. For more information, type +Services. To obtain credentials, use the `Get-Credential` cmdlet. For more information, type `Get-Help Get-Credential`. ```yaml diff --git a/docset/winserver2022-ps/failoverclusters/Remove-Cluster.md b/docset/winserver2022-ps/failoverclusters/Remove-Cluster.md index ad46bf9bb7..2cd3533ee5 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-Cluster.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-Cluster.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-cluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-Cluster @@ -22,7 +22,7 @@ Remove-Cluster [[-Cluster] ] [-CleanupAD] [-Force] [-InputObject Remove-Cluster -Force ``` This example destroys the local failover cluster and removes cluster configuration information from -the cluster nodes. The cmdlet does not prompt for confirmation. +the cluster nodes. The cmdlet doesn't prompt for confirmation. ### Example 3 @@ -57,7 +57,7 @@ PS C:\> Get-Cluster -Name Cluster1 | Remove-Cluster -Force -CleanupAD ``` This example destroys the cluster named Cluster1, removes cluster configuration information from the -cluster nodes, and deletes the cluster objects in Active Directory. The cmdlet does not prompt for +cluster nodes, and deletes the cluster objects in Active Directory. The cmdlet doesn't prompt for confirmation. ## PARAMETERS @@ -147,7 +147,7 @@ Accept wildcard characters: False ### -WhatIf -Shows what would happen if the cmdlet runs. The cmdlet is not run. +Shows what would happen if the cmdlet runs. The cmdlet isn't run. ```yaml Type: SwitchParameter diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterAccess.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterAccess.md index 09e432da12..acea4290c0 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterAccess.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterAccess.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clusteraccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterAccess @@ -22,7 +22,7 @@ Remove-ClusterAccess [[-User] ] [-InputObject ] [-Cl ## DESCRIPTION -The **Remove-ClusterAccess** cmdlet removes a user from the access list on the cluster. After this +The `Remove-ClusterAccess` cmdlet removes a user from the access list on the cluster. After this cmdlet is run, the user might still have access to the cluster if the user account is part of another user group which is on the cluster access list. From e98215467c9eb0cab1fcba1fd14c62ebc04ce04e Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Fri, 21 Oct 2022 18:58:11 +0100 Subject: [PATCH 313/965] Bulk text formatting updates --- .../failoverclusters/Add-ClusterCheckpoint.md | 2 +- .../failoverclusters/Add-ClusterDisk.md | 10 +++++----- .../failoverclusters/Add-ClusterFileServerRole.md | 13 +++++++------ .../Add-ClusterGenericApplicationRole.md | 15 ++++++++------- .../Add-ClusterGenericScriptRole.md | 15 ++++++++------- .../Add-ClusterGenericServiceRole.md | 15 ++++++++------- .../failoverclusters/Add-ClusterGroup.md | 2 +- .../Add-ClusterGroupSetDependency.md | 2 +- .../failoverclusters/Add-ClusterGroupToSet.md | 2 +- .../failoverclusters/Add-ClusterNode.md | 4 ++-- .../failoverclusters/Add-ClusterResource.md | 2 +- .../Add-ClusterResourceDependency.md | 4 ++-- .../failoverclusters/Add-ClusterResourceType.md | 2 +- .../Add-ClusterScaleOutFileServerRole.md | 8 ++++---- .../failoverclusters/Add-ClusterSharedVolume.md | 2 +- .../Add-ClusterVMMonitoredItem.md | 6 +++--- .../Add-ClusterVirtualMachineRole.md | 4 ++-- .../Add-ClusteriSCSITargetServerRole.md | 4 ++-- .../failoverclusters/Block-ClusterAccess.md | 8 ++++---- .../Clear-ClusterDiskReservation.md | 4 ++-- .../failoverclusters/Clear-ClusterNode.md | 6 +++--- .../Disable-ClusterStorageSpacesDirect.md | 4 ++-- .../Enable-ClusterStorageSpacesDirect.md | 12 ++++++------ .../failoverclusters/FailoverClusters.md | 8 ++++---- .../failoverclusters/Get-Cluster.md | 2 +- .../failoverclusters/Get-ClusterAccess.md | 2 +- .../failoverclusters/Get-ClusterAvailableDisk.md | 8 ++++---- .../failoverclusters/Get-ClusterCheckpoint.md | 2 +- .../failoverclusters/Get-ClusterDiagnosticInfo.md | 2 +- .../failoverclusters/Get-ClusterFaultDomain.md | 2 +- 30 files changed, 88 insertions(+), 84 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterCheckpoint.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterCheckpoint.md index dc05856d3b..8179610713 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterCheckpoint.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterCheckpoint.md @@ -23,7 +23,7 @@ Add-ClusterCheckpoint [[-ResourceName] ] [-CryptoCheckpointName ## DESCRIPTION -The **Add-ClusterCheckpoint** cmdlet adds a cryptographic key checkpoint or registry checkpoint for +The `Add-ClusterCheckpoint` cmdlet adds a cryptographic key checkpoint or registry checkpoint for a resource. Checkpoints help provide failover support for applications that store configuration information diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterDisk.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterDisk.md index de8b55ddaa..074cfa3e59 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterDisk.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterDisk.md @@ -21,13 +21,13 @@ Add-ClusterDisk [-InputObject] [-Cluster ] [ [-StaticAddress [-Parameters ] ## DESCRIPTION -The **Add-ClusterGenericApplicationRole** cmdlet configures high availability for an application -that was not originally designed to run in a failover cluster. +The `Add-ClusterGenericApplicationRole` cmdlet configures high availability for an application +that wasn't originally designed to run in a failover cluster. If an application is run as a Generic Application, the cluster software will start the application, then periodically query the operating system to see whether the application appears to be running. @@ -130,8 +130,9 @@ Accept wildcard characters: False ### -IgnoreNetwork Specifies one or more networks to ignore when running the cmdlet. Networks with DHCP enabled are -always included, but other networks need a static address to be specified using the *StaticAddress* -parameter or should be explicitly ignored with this *IgnoreNetwork* parameter. +always included, but other networks need a static address to be specified using the **StaticAddress** + +parameter or should be explicitly ignored with this **IgnoreNetwork** parameter. ```yaml Type: StringCollection @@ -197,7 +198,7 @@ Accept wildcard characters: False Specifies one or more static addresses to use when running the cmdlet. Networks with DHCP enabled are always included, but other networks need a static address to be specified using the -*StaticAddress* parameter or should be explicitly ignored with this *IgnoreNetwork* parameter. +**StaticAddress** parameter or should be explicitly ignored with this **IgnoreNetwork** parameter. ```yaml Type: StringCollection @@ -229,7 +230,7 @@ Accept wildcard characters: False ### -Wait -Specifies the time in seconds to wait for the cmdlet. If the *Wait* parameter is not specified, then +Specifies the time in seconds to wait for the cmdlet. If the **Wait** parameter isn't specified, then the cmdlet waits for completion. If `-Wait 0` is specified, then the call is initiated and the cmdlet returns without waiting. diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericScriptRole.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericScriptRole.md index f254cc8f3b..71bf0c4b48 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericScriptRole.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericScriptRole.md @@ -24,7 +24,7 @@ Add-ClusterGenericScriptRole -ScriptFilePath [-Storage [-CheckpointKey [[-GroupType] ] [-InputOb ## DESCRIPTION -The **Add-ClusterGroup** cmdlet adds an empty resource group to the failover cluster configuration, +The `Add-ClusterGroup` cmdlet adds an empty resource group to the failover cluster configuration, in preparation for adding clustered resources to the group. A resource group, or a clustered role, is the unit of failover. During failover, all resources in the resource group move together. diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupSetDependency.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupSetDependency.md index 19cde3dc48..f89c536c33 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupSetDependency.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupSetDependency.md @@ -31,7 +31,7 @@ Add-ClusterGroupSetDependency -InputObject [-Provider] ## DESCRIPTION -The **Add-ClusterGroupSetDependency** cmdlet adds a dependency to a cluster set. +The `Add-ClusterGroupSetDependency` cmdlet adds a dependency to a cluster set. ## EXAMPLES diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupToSet.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupToSet.md index 1f03f32cdd..1517d829e7 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupToSet.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupToSet.md @@ -31,7 +31,7 @@ Add-ClusterGroupToSet -InputObject [-Group] [-CimSessio ## DESCRIPTION -The **Add-ClusterGroupToSet** cmdlet adds a group to a set. A group can only belong to one set. +The `Add-ClusterGroupToSet` cmdlet adds a group to a set. A group can only belong to one set. ## EXAMPLES diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterNode.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterNode.md index a6844543dc..308e68666b 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterNode.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterNode.md @@ -22,7 +22,7 @@ Add-ClusterNode [[-Name] ] [-NoStorage] [-InputObject [[-Group] ] [-ResourceType] ] [[-Provider] ] ## DESCRIPTION -The **Add-ClusterResourceDependency** cmdlet adds a resource to the list of resources on which a +The `Add-ClusterResourceDependency` cmdlet adds a resource to the list of resources on which a particular resource depends, using AND as the connector, within a failover cluster. Existing -dependencies will remain on the list. If you specify the *InputObject* parameter, the *Resource* +dependencies will remain on the list. If you specify the **InputObject** parameter, the **Resource** parameter will be ignored. A dependent resource is brought online after the resources on which it depends. A dependent resource diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterResourceType.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterResourceType.md index 57867b2f1e..8701bb937a 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterResourceType.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterResourceType.md @@ -23,7 +23,7 @@ Add-ClusterResourceType [-Name] [-Dll] [[-DisplayName] ] [-Wait ] [-Infrastructure] -[-InputObject ] [-Cluster ] [] + [-InputObject ] [-Cluster ] [] ``` ## DESCRIPTION -The **Add-ClusterScaleOutFileServerRole** cmdlet creates a clustered file server for scale-out +The `Add-ClusterScaleOutFileServerRole` cmdlet creates a clustered file server for scale-out application data. A file server for scale-out application data provides storage for applications or virtual machines that leave files open for extended periods of time. Client connections are distributed across nodes for better throughput. This type of file server supports the Server Message -Block (SMB) protocol. It does not support the Network File System (NFS) protocol, or certain role +Block (SMB) protocol. It doesn't support the Network File System (NFS) protocol, or certain role services such as File Server Resource Manager (FSRM) or Distributed File System (DFS) Replication. Note: This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) @@ -143,7 +143,7 @@ Accept wildcard characters: False ### -Wait -Specifies the time in seconds to wait for the cmdlet. If the **Wait** parameter is not specified, +Specifies the time in seconds to wait for the cmdlet. If the **Wait** parameter isn't specified, then the cmdlet waits for completion. If `-Wait 0` is specified, then the call is initiated and the cmdlet returns without waiting. diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolume.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolume.md index c3441d9d7e..baf57e61bf 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolume.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolume.md @@ -22,7 +22,7 @@ Add-ClusterSharedVolume [[-Name] ] [-InputObject ] [ ## DESCRIPTION -The **Add-ClusterSharedVolume** cmdlet makes a volume available in the Cluster Shared Volumes in a +The `Add-ClusterSharedVolume` cmdlet makes a volume available in the Cluster Shared Volumes in a failover cluster. The Cluster Shared Volume must be chosen from the disks in Available Storage (that is, disks that have been added to the cluster but not assigned to a specific use in the cluster). diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterVMMonitoredItem.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterVMMonitoredItem.md index 7c7201f99b..681a30e550 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterVMMonitoredItem.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterVMMonitoredItem.md @@ -42,7 +42,7 @@ Add-ClusterVMMonitoredItem [-Service ] [-EventLog ] ## DESCRIPTION -The **Add-ClusterVMMonitoredItem** cmdlet configures monitoring for a service or an Event Tracing +The `Add-ClusterVMMonitoredItem` cmdlet configures monitoring for a service or an Event Tracing for Windows (ETW) event so that it is monitored on a virtual machine. If the service fails or the event occurs, then the system responds by taking an action based on the failover configuration for the virtual machine resource. For example, the configuration might specify that the virtual machine @@ -159,7 +159,7 @@ Accept wildcard characters: False ### -OverrideServiceRecoveryActions Specifies that the cluster service will fix, by overriding, the service recovery actions in the -event that it is not properly configured for monitoring. To be configured for monitoring the +event that it isn't properly configured for monitoring. To be configured for monitoring the following conditions need to be met: - None of the service recovery actions are set to Restart the computer. @@ -233,7 +233,7 @@ Accept wildcard characters: False ### -Wait -Specifies the time in seconds to wait for the cmdlet. If the *Wait* parameter is not specified, then +Specifies the time in seconds to wait for the cmdlet. If the **Wait** parameter isn't specified, then the cmdlet waits for completion. If `-Wait 0` is specified, then the call is initiated and the cmdlet returns without waiting. diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterVirtualMachineRole.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterVirtualMachineRole.md index 2f7ffd5f78..9607ec9b3f 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterVirtualMachineRole.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterVirtualMachineRole.md @@ -23,7 +23,7 @@ Add-ClusterVirtualMachineRole [-Name ] [[-VMName] ] [-VirtualMac ## DESCRIPTION -The **Add-ClusterVirtualMachineRole** cmdlet creates a clustered virtual machine, that is, a virtual +The `Add-ClusterVirtualMachineRole` cmdlet creates a clustered virtual machine, that is, a virtual machine that can be failed over if necessary to a different server in the failover cluster. By creating clustered virtual machines, you can consolidate multiple servers on one physical server @@ -75,7 +75,7 @@ Name OwnerNode print-VM1 node1 Online ``` -This example queries for virtual machines matching the wildcard characters *print* and configures +This example queries for virtual machines matching the wildcard characters **print** and configures them as clustered virtual machines. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusteriSCSITargetServerRole.md b/docset/winserver2022-ps/failoverclusters/Add-ClusteriSCSITargetServerRole.md index 6a059e3be8..a33ae06e91 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusteriSCSITargetServerRole.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusteriSCSITargetServerRole.md @@ -23,7 +23,7 @@ Add-ClusteriSCSITargetServerRole -Storage [-StaticAddress [-InputObject ] [-Clust ## DESCRIPTION -The **Block-ClusterAccess** cmdlet prevents the specified user or users from accessing a failover -cluster. If you do not want to completely block access and instead want to limit a user to using +The `Block-ClusterAccess` cmdlet prevents the specified user or users from accessing a failover +cluster. If you don't want to completely block access and instead want to limit a user to using Windows PowerShell® to view cluster settings (not change settings), then use the -**Grant-ClusterAccess** cmdlet with the **Readonly** parameter. +`Grant-ClusterAccess` cmdlet with the **Readonly** parameter. ## EXAMPLES @@ -107,7 +107,7 @@ Accept wildcard characters: False ### -WhatIf -Shows what would happen if the cmdlet runs. The cmdlet is not run. +Shows what would happen if the cmdlet runs. The cmdlet isn't run. ```yaml Type: SwitchParameter diff --git a/docset/winserver2022-ps/failoverclusters/Clear-ClusterDiskReservation.md b/docset/winserver2022-ps/failoverclusters/Clear-ClusterDiskReservation.md index c1daf11f4f..d3038c4ea6 100644 --- a/docset/winserver2022-ps/failoverclusters/Clear-ClusterDiskReservation.md +++ b/docset/winserver2022-ps/failoverclusters/Clear-ClusterDiskReservation.md @@ -22,7 +22,7 @@ Clear-ClusterDiskReservation [[-Node] ] -Disk [-For ## DESCRIPTION -The **Clear-ClusterDiskReservation** cmdlet clears the persistent reservation on a disk in a +The `Clear-ClusterDiskReservation` cmdlet clears the persistent reservation on a disk in a failover cluster. This cmdlet prompts for confirmation unless you specify the **Force** parameter. Note: This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) @@ -118,7 +118,7 @@ Accept wildcard characters: False ### -WhatIf -Shows what would happen if the cmdlet runs. The cmdlet is not run. +Shows what would happen if the cmdlet runs. The cmdlet isn't run. ```yaml Type: SwitchParameter diff --git a/docset/winserver2022-ps/failoverclusters/Clear-ClusterNode.md b/docset/winserver2022-ps/failoverclusters/Clear-ClusterNode.md index 3720f5222f..7c01017548 100644 --- a/docset/winserver2022-ps/failoverclusters/Clear-ClusterNode.md +++ b/docset/winserver2022-ps/failoverclusters/Clear-ClusterNode.md @@ -22,7 +22,7 @@ Clear-ClusterNode [[-Name] ] [-Force] [-Wait ] [-Cleanu ## DESCRIPTION -The **Clear-ClusterNode** cmdlet clears the cluster configuration from a node that was evicted from +The `Clear-ClusterNode` cmdlet clears the cluster configuration from a node that was evicted from a failover cluster. This cmdlet helps ensure that the failover cluster configuration has been completely removed from a node that was evicted. @@ -149,7 +149,7 @@ Accept wildcard characters: False ### -Wait -Specifies the time in seconds to wait for the cmdlet. If the **Wait** parameter is not specified, +Specifies the time in seconds to wait for the cmdlet. If the **Wait** parameter isn't specified, then the cmdlet waits for completion. If `-Wait 0` is specified, then the call is initiated and the cmdlet returns without waiting. @@ -167,7 +167,7 @@ Accept wildcard characters: False ### -WhatIf -Shows what would happen if the cmdlet runs. The cmdlet is not run. +Shows what would happen if the cmdlet runs. The cmdlet isn't run. ```yaml Type: SwitchParameter diff --git a/docset/winserver2022-ps/failoverclusters/Disable-ClusterStorageSpacesDirect.md b/docset/winserver2022-ps/failoverclusters/Disable-ClusterStorageSpacesDirect.md index 155077dac6..330f161a1a 100644 --- a/docset/winserver2022-ps/failoverclusters/Disable-ClusterStorageSpacesDirect.md +++ b/docset/winserver2022-ps/failoverclusters/Disable-ClusterStorageSpacesDirect.md @@ -22,7 +22,7 @@ Disable-ClusterStorageSpacesDirect [-CleanupCache ] [-CimSession ] [-Autoconfig ] [-Domain ] [] ## DESCRIPTION -The **Get-Cluster** cmdlet gets information about one or more failover clusters in a given domain. +The `Get-Cluster` cmdlet gets information about one or more failover clusters in a given domain. This cmdlet can obtain a variety of configuration and state information about a failover cluster, including the following items: diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterAccess.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterAccess.md index c4f8486b04..2741d67863 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterAccess.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterAccess.md @@ -22,7 +22,7 @@ Get-ClusterAccess [[-User] ] [-InputObject ] [-Clust ## DESCRIPTION -The **Get-ClusterAccess** cmdlet gets information about permissions that control access to a +The `Get-ClusterAccess` cmdlet gets information about permissions that control access to a failover cluster. A cluster can allow full access or read-only access. Read-only access limits the user to Windows diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterAvailableDisk.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterAvailableDisk.md index c8cbdf265f..6df5ec1fca 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterAvailableDisk.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterAvailableDisk.md @@ -12,7 +12,7 @@ title: Get-ClusterAvailableDisk ## SYNOPSIS Gets information about the disks that can support Failover Clustering and are visible to all nodes, -but are not yet part of the set of clustered disks. +but aren't yet part of the set of clustered disks. ## SYNTAX @@ -23,13 +23,13 @@ Get-ClusterAvailableDisk [[-Cluster] ] [-Disk ] [-All] ## DESCRIPTION -The **Get-ClusterAvailableDisk** cmdlet gets information about the disks that can support Failover -Clustering and are visible to all nodes, but are not yet part of the set of clustered disks. +The `Get-ClusterAvailableDisk` cmdlet gets information about the disks that can support Failover +Clustering and are visible to all nodes, but aren't yet part of the set of clustered disks. If a disk is unexpectedly missing from the list of disks that are available for use in the cluster, then make sure that the configuration of the storage allows the operating system on all clustered servers to recognize and mount the disk as needed. The disk must be a basic disk, not a dynamic -disk, and should not be exposed to any other servers. +disk, and shouldn't be exposed to any other servers. ## EXAMPLES diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterCheckpoint.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterCheckpoint.md index 8083b12bc8..28b7808ff3 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterCheckpoint.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterCheckpoint.md @@ -23,7 +23,7 @@ Get-ClusterCheckpoint [[-ResourceName] ] [-CheckpointName [] ## DESCRIPTION -The **Get-ClusterDiagnosticInfo** cmdlet gets diagnostics for a cluster that contains virtual +The `Get-ClusterDiagnosticInfo` cmdlet gets diagnostics for a cluster that contains virtual machines and produces a zip file containing the data. ## EXAMPLES diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterFaultDomain.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterFaultDomain.md index 1d97040df1..6c87c66f90 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterFaultDomain.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterFaultDomain.md @@ -22,7 +22,7 @@ Get-ClusterFaultDomain [[-Name] ] [-Type ] [-Id Date: Sat, 22 Oct 2022 09:13:51 +0100 Subject: [PATCH 314/965] Bulk text formatting updates --- .../Add-ClusterFileServerRole.md | 16 ++++++++-------- .../Add-ClusterGenericApplicationRole.md | 18 +++++++++--------- .../Add-ClusterGenericScriptRole.md | 16 ++++++++-------- .../Add-ClusterGenericServiceRole.md | 16 ++++++++-------- .../Add-ClusterGroupSetDependency.md | 2 +- .../failoverclusters/Add-ClusterNode.md | 5 +++-- .../Add-ClusterResourceType.md | 5 +++-- .../Add-ClusterScaleOutFileServerRole.md | 9 +++++---- .../Add-ClusterVMMonitoredItem.md | 6 +++--- .../Add-ClusterVirtualMachineRole.md | 16 +++++++++------- .../Add-ClusteriSCSITargetServerRole.md | 4 ++-- .../failoverclusters/Block-ClusterAccess.md | 2 +- .../Clear-ClusterDiskReservation.md | 5 +++-- .../failoverclusters/Clear-ClusterNode.md | 9 +++++---- .../Disable-ClusterStorageSpacesDirect.md | 2 +- .../Enable-ClusterStorageSpacesDirect.md | 6 +++--- .../failoverclusters/FailoverClusters.md | 3 ++- .../failoverclusters/Get-Cluster.md | 15 ++++++--------- .../failoverclusters/Get-ClusterAccess.md | 2 +- .../failoverclusters/Get-ClusterFaultDomain.md | 2 +- 20 files changed, 82 insertions(+), 77 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterFileServerRole.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterFileServerRole.md index 1f856d7f37..f5fc162b40 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterFileServerRole.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterFileServerRole.md @@ -30,8 +30,9 @@ When adding a clustered file server, specify a name for the file server, any IP that isn't automatically supplied by your DHCP settings, and the storage volume or volumes that the clustered file server should use. -Note: This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) -authentication on the server computer. +> [!NOTE] +> This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) +> authentication on the server computer. ## EXAMPLES @@ -92,9 +93,8 @@ Accept wildcard characters: False ### -IgnoreNetwork Specifies one or more networks to ignore when running the cmdlet. Networks with DHCP enabled are -always included, but other networks need a static address to be specified using the **StaticAddress** - -parameter or should be explicitly ignored with this **IgnoreNetwork** parameter. +always included, but other networks need a static address to be specified using the +**StaticAddress** parameter or should be explicitly ignored with this **IgnoreNetwork** parameter. ```yaml Type: StringCollection @@ -176,9 +176,9 @@ Accept wildcard characters: False ### -Wait -Specifies the time in seconds to wait for the cmdlet. If the **Wait** parameter isn't specified, then -the cmdlet waits for completion. If `-Wait 0` is specified, then the call is initiated and the -cmdlet returns without waiting. +Specifies the time in seconds to wait for the cmdlet. If the **Wait** parameter isn't specified, +then the cmdlet waits for completion. If the value `0` is specified, then the call is initiated and +the cmdlet returns without waiting. ```yaml Type: Int32 diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericApplicationRole.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericApplicationRole.md index cb96d54afc..d6717c9249 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericApplicationRole.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericApplicationRole.md @@ -32,8 +32,9 @@ If an application is run as a Generic Application, the cluster software will sta then periodically query the operating system to see whether the application appears to be running. If so, then it is presumed to be online and will not be restarted or failed over. -Note: This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) -authentication on the server computer. +> [!NOTE] +> This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) +> authentication on the server computer. ## EXAMPLES @@ -111,7 +112,7 @@ Accept wildcard characters: False ### -CommandLine -Specifies the Windows PowerShell® command line to use for the highly available generic application. +Specifies the Windows PowerShell command line to use for the highly available generic application. If the full path is specified, then the current directory is parsed out of the Windows PowerShell command line. @@ -130,9 +131,8 @@ Accept wildcard characters: False ### -IgnoreNetwork Specifies one or more networks to ignore when running the cmdlet. Networks with DHCP enabled are -always included, but other networks need a static address to be specified using the **StaticAddress** - -parameter or should be explicitly ignored with this **IgnoreNetwork** parameter. +always included, but other networks need a static address to be specified using the +**StaticAddress** parameter or should be explicitly ignored with this **IgnoreNetwork** parameter. ```yaml Type: StringCollection @@ -230,9 +230,9 @@ Accept wildcard characters: False ### -Wait -Specifies the time in seconds to wait for the cmdlet. If the **Wait** parameter isn't specified, then -the cmdlet waits for completion. If `-Wait 0` is specified, then the call is initiated and the -cmdlet returns without waiting. +Specifies the time in seconds to wait for the cmdlet. If the **Wait** parameter isn't specified, +then the cmdlet waits for completion. If the value `0` is specified, then the call is initiated and +the cmdlet returns without waiting. ```yaml Type: Int32 diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericScriptRole.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericScriptRole.md index 71bf0c4b48..d751690524 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericScriptRole.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericScriptRole.md @@ -31,8 +31,9 @@ The script provides the cluster software with information about the current stat application. As needed, the cluster software will restart or fail over the script. Through the script, the application will be restarted or failed over. -Note: This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) -authentication on the server computer. +> [!NOTE] +> This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) +> authentication on the server computer. ## EXAMPLES @@ -95,9 +96,8 @@ Accept wildcard characters: False ### -IgnoreNetwork Specifies one or more networks to ignore when running the cmdlet. Networks with DHCP enabled are -always included, but other networks need a static address to be specified using the **StaticAddress** - -parameter or should be explicitly ignored with this **IgnoreNetwork** parameter. +always included, but other networks need a static address to be specified using the +**StaticAddress** parameter or should be explicitly ignored with this **IgnoreNetwork** parameter. ```yaml Type: StringCollection @@ -195,9 +195,9 @@ Accept wildcard characters: False ### -Wait -Specifies the time in seconds to wait for the cmdlet. If the **Wait** parameter isn't specified, then -the cmdlet waits for completion. If `-Wait 0` is specified, then the call is initiated and the -cmdlet returns without waiting. +Specifies the time in seconds to wait for the cmdlet. If the **Wait** parameter isn't specified, +then the cmdlet waits for completion. If the value `0` is specified, then the call is initiated and +the cmdlet returns without waiting. ```yaml Type: Int32 diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericServiceRole.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericServiceRole.md index 326121576c..e3f782543e 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericServiceRole.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericServiceRole.md @@ -31,8 +31,9 @@ periodically query the Service Controller, which is a feature of the operating s whether the service appears to be running. If so, then it is presumed to be online, and will not be restarted or failed over. -Note: This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) -authentication on the server computer. +> [!NOTE] +> This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) +> authentication on the server computer. ## EXAMPLES @@ -99,9 +100,8 @@ Accept wildcard characters: False ### -IgnoreNetwork Specifies one or more networks to ignore when running the cmdlet. Networks with DHCP enabled are -always included, but other networks need a static address to be specified using the **StaticAddress** - -parameter or should be explicitly ignored with this **IgnoreNetwork** parameter. +always included, but other networks need a static address to be specified using the +**StaticAddress** parameter or should be explicitly ignored with this **IgnoreNetwork** parameter. ```yaml Type: StringCollection @@ -199,9 +199,9 @@ Accept wildcard characters: False ### -Wait -Specifies the time in seconds to wait for the cmdlet. If the **Wait** parameter isn't specified, then -the cmdlet waits for completion. If `-Wait 0` is specified, then the call is initiated and the -cmdlet returns without waiting. +Specifies the time in seconds to wait for the cmdlet. If the **Wait** parameter isn't specified, +then the cmdlet waits for completion. If the value `0` is specified, then the call is initiated and +the cmdlet returns without waiting. ```yaml Type: Int32 diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupSetDependency.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupSetDependency.md index f89c536c33..16d93d5239 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupSetDependency.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupSetDependency.md @@ -158,7 +158,7 @@ Accept wildcard characters: False ### -ThrottleLimit Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If -this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +this parameter is omitted or a value of `0` is entered, then Windows PowerShell calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. The throttle limit applies only to the current cmdlet, not to the session or to the computer. diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterNode.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterNode.md index 308e68666b..6daae97a3f 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterNode.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterNode.md @@ -29,8 +29,9 @@ Before adding the new node, you should run validation tests on the existing node proposed new node. By running the validation tests, you can confirm that the server to be added is connected correctly to the networks and storage and that it contains the same software updates. -Note: This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) -authentication on the server computer. +> [!NOTE] +> This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) +> authentication on the server computer. ## EXAMPLES diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterResourceType.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterResourceType.md index 8701bb937a..0503bbdd58 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterResourceType.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterResourceType.md @@ -30,8 +30,9 @@ The failover cluster software provides Resource DLL files for the most common ty Using the application programming interface (API) provided in the Microsoft Platform Software Development Kit (SDK), other vendors can add support for other resource types. -Note: This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) -authentication on the server computer. +> [!NOTE] +> This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) +> authentication on the server computer. ## EXAMPLES diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md index b4dadb2895..b3fabe307e 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md @@ -29,8 +29,9 @@ distributed across nodes for better throughput. This type of file server support Block (SMB) protocol. It doesn't support the Network File System (NFS) protocol, or certain role services such as File Server Resource Manager (FSRM) or Distributed File System (DFS) Replication. -Note: This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) -authentication on the server computer. +> [!NOTE] +> This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) +> authentication on the server computer. ## EXAMPLES @@ -144,8 +145,8 @@ Accept wildcard characters: False ### -Wait Specifies the time in seconds to wait for the cmdlet. If the **Wait** parameter isn't specified, -then the cmdlet waits for completion. If `-Wait 0` is specified, then the call is initiated and the -cmdlet returns without waiting. +then the cmdlet waits for completion. If the value `0` is specified, then the call is initiated and +the cmdlet returns without waiting. ```yaml Type: Int32 diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterVMMonitoredItem.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterVMMonitoredItem.md index 681a30e550..740aabb51c 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterVMMonitoredItem.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterVMMonitoredItem.md @@ -233,9 +233,9 @@ Accept wildcard characters: False ### -Wait -Specifies the time in seconds to wait for the cmdlet. If the **Wait** parameter isn't specified, then -the cmdlet waits for completion. If `-Wait 0` is specified, then the call is initiated and the -cmdlet returns without waiting. +Specifies the time in seconds to wait for the cmdlet. If the **Wait** parameter isn't specified, +then the cmdlet waits for completion. If the value `0` is specified, then the call is initiated and +the cmdlet returns without waiting. ```yaml Type: Int32 diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterVirtualMachineRole.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterVirtualMachineRole.md index 9607ec9b3f..01976b029c 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterVirtualMachineRole.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterVirtualMachineRole.md @@ -32,13 +32,15 @@ node, fails or requires scheduled maintenance, then another node begins to run t instead through a process known as failover. The virtual hard disk (VHD) file for the clustered virtual machine must be on the clustered disk used by that virtual machine. -**Note:** This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) -authentication on the server computer. - -**Note:** This cmdlet generates a .TMP file under the user temp folder, and you can't have more than -65535 .TMP files generated by this cmdlet, otherwise you will receive an exception "The File Exist". -For more information, please go to: -https://techcommunity.microsoft.com/t5/ITOps-Talk-Blog/TQA-Add-ClusterVirtualMachineRole-fails-with-the-error-quot-The/ba-p/713344 +> [!NOTE] +> +> - This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) +> authentication on the server computer. +> +> - This cmdlet generates a .TMP file under the user temp folder, and you can't have more than 65535 +> .TMP files generated by this cmdlet, otherwise you will receive an exception "The File Exist". For +> more information, please go to: +> https://techcommunity.microsoft.com/t5/ITOps-Talk-Blog/TQA-Add-ClusterVirtualMachineRole-fails-with-the-error-quot-The/ba-p/713344 ## EXAMPLES diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusteriSCSITargetServerRole.md b/docset/winserver2022-ps/failoverclusters/Add-ClusteriSCSITargetServerRole.md index a33ae06e91..70a75579c9 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusteriSCSITargetServerRole.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusteriSCSITargetServerRole.md @@ -169,8 +169,8 @@ Accept wildcard characters: False ### -Wait Specifies the time in seconds to wait for the cmdlet. If the **Wait** parameter isn't specified, -then the cmdlet waits for completion. If `-Wait 0` is specified, then the call is initiated and the -cmdlet returns without waiting. +then the cmdlet waits for completion. If the value `0` is specified, then the call is initiated and +the cmdlet returns without waiting. ```yaml Type: Int32 diff --git a/docset/winserver2022-ps/failoverclusters/Block-ClusterAccess.md b/docset/winserver2022-ps/failoverclusters/Block-ClusterAccess.md index 20be4f2608..be536dacaa 100644 --- a/docset/winserver2022-ps/failoverclusters/Block-ClusterAccess.md +++ b/docset/winserver2022-ps/failoverclusters/Block-ClusterAccess.md @@ -24,7 +24,7 @@ Block-ClusterAccess [-User] [-InputObject ] [-Clust The `Block-ClusterAccess` cmdlet prevents the specified user or users from accessing a failover cluster. If you don't want to completely block access and instead want to limit a user to using -Windows PowerShell® to view cluster settings (not change settings), then use the +Windows PowerShell to view cluster settings (not change settings), then use the `Grant-ClusterAccess` cmdlet with the **Readonly** parameter. ## EXAMPLES diff --git a/docset/winserver2022-ps/failoverclusters/Clear-ClusterDiskReservation.md b/docset/winserver2022-ps/failoverclusters/Clear-ClusterDiskReservation.md index d3038c4ea6..77730e5a9f 100644 --- a/docset/winserver2022-ps/failoverclusters/Clear-ClusterDiskReservation.md +++ b/docset/winserver2022-ps/failoverclusters/Clear-ClusterDiskReservation.md @@ -25,8 +25,9 @@ Clear-ClusterDiskReservation [[-Node] ] -Disk [-For The `Clear-ClusterDiskReservation` cmdlet clears the persistent reservation on a disk in a failover cluster. This cmdlet prompts for confirmation unless you specify the **Force** parameter. -Note: This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) -authentication on the server computer. +> [!NOTE] +> This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) +> authentication on the server computer. ## EXAMPLES diff --git a/docset/winserver2022-ps/failoverclusters/Clear-ClusterNode.md b/docset/winserver2022-ps/failoverclusters/Clear-ClusterNode.md index 7c01017548..5b78810dd4 100644 --- a/docset/winserver2022-ps/failoverclusters/Clear-ClusterNode.md +++ b/docset/winserver2022-ps/failoverclusters/Clear-ClusterNode.md @@ -26,8 +26,9 @@ The `Clear-ClusterNode` cmdlet clears the cluster configuration from a node that a failover cluster. This cmdlet helps ensure that the failover cluster configuration has been completely removed from a node that was evicted. -Note: This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) -authentication on the server computer. +> [!NOTE] +> This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) +> authentication on the server computer. ## EXAMPLES @@ -150,8 +151,8 @@ Accept wildcard characters: False ### -Wait Specifies the time in seconds to wait for the cmdlet. If the **Wait** parameter isn't specified, -then the cmdlet waits for completion. If `-Wait 0` is specified, then the call is initiated and the -cmdlet returns without waiting. +then the cmdlet waits for completion. If the value `0` is specified, then the call is initiated and +the cmdlet returns without waiting. ```yaml Type: Int32 diff --git a/docset/winserver2022-ps/failoverclusters/Disable-ClusterStorageSpacesDirect.md b/docset/winserver2022-ps/failoverclusters/Disable-ClusterStorageSpacesDirect.md index 330f161a1a..e68dd51454 100644 --- a/docset/winserver2022-ps/failoverclusters/Disable-ClusterStorageSpacesDirect.md +++ b/docset/winserver2022-ps/failoverclusters/Disable-ClusterStorageSpacesDirect.md @@ -116,7 +116,7 @@ Accept wildcard characters: False ### -ThrottleLimit Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If -this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +this parameter is omitted or a value of `0` is entered, then Windows PowerShell calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. The throttle limit applies only to the current cmdlet, not to the session or to the computer. diff --git a/docset/winserver2022-ps/failoverclusters/Enable-ClusterStorageSpacesDirect.md b/docset/winserver2022-ps/failoverclusters/Enable-ClusterStorageSpacesDirect.md index c0bcbdffad..48467e153e 100644 --- a/docset/winserver2022-ps/failoverclusters/Enable-ClusterStorageSpacesDirect.md +++ b/docset/winserver2022-ps/failoverclusters/Enable-ClusterStorageSpacesDirect.md @@ -97,8 +97,8 @@ Accept wildcard characters: False Indicates that this cmdlet that the pool should be automatically created and configured. When a pool already exists before Storage Spaces Direct is enabled the **AutoConfig** parameter becomes a no-op. -**AutoConfig** is set to true by default. If you don't want the pool to be automatically created, but -created manually, you should set **AutoConfig** to false. +**AutoConfig** is set to true by default. If you don't want the pool to be automatically created, +but created manually, you should set **AutoConfig** to false. ```yaml Type: Boolean @@ -251,7 +251,7 @@ Accept wildcard characters: False ### -ThrottleLimit Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If -this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +this parameter is omitted or a value of `0` is entered, then Windows PowerShell calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. The throttle limit applies only to the current cmdlet, not to the session or to the computer. diff --git a/docset/winserver2022-ps/failoverclusters/FailoverClusters.md b/docset/winserver2022-ps/failoverclusters/FailoverClusters.md index f9b96b147d..0884b5a781 100644 --- a/docset/winserver2022-ps/failoverclusters/FailoverClusters.md +++ b/docset/winserver2022-ps/failoverclusters/FailoverClusters.md @@ -109,7 +109,8 @@ but aren't yet part of the set of clustered disks. Retrieves a cryptographic key checkpoint or registry checkpoint for a resource. ### [Get-ClusterDiagnosticInfo](./Get-ClusterDiagnosticInfo.md) -Gets diagnostics for a cluster a cluster that contains VMs and produces a zip file containing the data. +Gets diagnostics for a cluster a cluster that contains VMs and produces a zip file containing the +data. ### [Get-ClusterFaultDomain](./Get-ClusterFaultDomain.md) Gets the cluster fault domains in a cluster. diff --git a/docset/winserver2022-ps/failoverclusters/Get-Cluster.md b/docset/winserver2022-ps/failoverclusters/Get-Cluster.md index 0715d16878..023d75f1b8 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-Cluster.md +++ b/docset/winserver2022-ps/failoverclusters/Get-Cluster.md @@ -26,11 +26,9 @@ The `Get-Cluster` cmdlet gets information about one or more failover clusters in This cmdlet can obtain a variety of configuration and state information about a failover cluster, including the following items: - -- State information about whether a backup is in progress. - - -- State information about whether the cluster is in a forced quorum state. - - -- Cross-network settings that are especially relevant for multi-site clusters. +- State information about whether a backup is in progress. +- State information about whether the cluster is in a forced quorum state. +- Cross-network settings that are especially relevant for multi-site clusters. To set a common property for the cluster, use this cmdlet to get the cluster object and then set the appropriate property on that cluster object directly. @@ -143,11 +141,10 @@ QuarantineThreshold : 3 This example shows default values for QuarantineThreshold and QuarantineDuration for the local cluster. - -- QuarantineThreshold: This is the number of times that a node can become isolated in an hour +- **QuarantineThreshold**: This is the number of times that a node can become isolated in an hour before the cluster will be quarantined. This is set to 3 by default. - - --QuarantineDuration: This setting, set to 7200 seconds or 2 hours by default, controls how long a - host will remain quarantined. +- **QuarantineDuration**: This setting, set to 7200 seconds or 2 hours by default, controls how long + a host will remain quarantined. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterAccess.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterAccess.md index 2741d67863..20f28b52ad 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterAccess.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterAccess.md @@ -26,7 +26,7 @@ The `Get-ClusterAccess` cmdlet gets information about permissions that control a failover cluster. A cluster can allow full access or read-only access. Read-only access limits the user to Windows -PowerShell® cmdlets that provide information about the cluster. +PowerShell cmdlets that provide information about the cluster. ## EXAMPLES diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterFaultDomain.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterFaultDomain.md index 6c87c66f90..f357adbd97 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterFaultDomain.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterFaultDomain.md @@ -118,7 +118,7 @@ Accept wildcard characters: False ### -ThrottleLimit Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If -this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +this parameter is omitted or a value of `0` is entered, then Windows PowerShell calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. The throttle limit applies only to the current cmdlet, not to the session or to the computer. From 839f6d0484253ff2cc86b008ce03bb6f3ce3b854 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Sat, 22 Oct 2022 09:26:20 +0100 Subject: [PATCH 315/965] Updates property name formatting --- docset/winserver2022-ps/failoverclusters/Get-Cluster.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/Get-Cluster.md b/docset/winserver2022-ps/failoverclusters/Get-Cluster.md index 023d75f1b8..058ff4200b 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-Cluster.md +++ b/docset/winserver2022-ps/failoverclusters/Get-Cluster.md @@ -138,8 +138,8 @@ QuarantineDuration : 7200 QuarantineThreshold : 3 ``` -This example shows default values for QuarantineThreshold and QuarantineDuration for the local -cluster. +This example shows default values for **QuarantineThreshold** and **QuarantineDuration** for the +local cluster. - **QuarantineThreshold**: This is the number of times that a node can become isolated in an hour before the cluster will be quarantined. This is set to 3 by default. From 2d11b59cfd4b32361973a410c990fdf8df90bd34 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Mon, 21 Nov 2022 16:58:10 +0000 Subject: [PATCH 316/965] Bulk text formatting updates --- .../failoverclusters/Start-ClusterResource.md | 6 ++--- .../failoverclusters/Stop-Cluster.md | 10 ++++----- .../failoverclusters/Stop-ClusterGroup.md | 8 +++---- .../failoverclusters/Stop-ClusterNode.md | 14 ++++++------ .../failoverclusters/Stop-ClusterResource.md | 8 +++---- .../failoverclusters/Suspend-ClusterNode.md | 16 +++++++------- .../Suspend-ClusterResource.md | 8 +++---- .../failoverclusters/Test-Cluster.md | 14 ++++++------ .../Test-ClusterResourceFailure.md | 4 ++-- .../Update-ClusterFunctionalLevel.md | 22 +++++++++---------- .../Update-ClusterIPResource.md | 4 ++-- .../Update-ClusterNetworkNameResource.md | 8 +++---- ...date-ClusterVirtualMachineConfiguration.md | 4 ++-- 13 files changed, 63 insertions(+), 63 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/Start-ClusterResource.md b/docset/winserver2022-ps/failoverclusters/Start-ClusterResource.md index 32e9f2ef8a..d30049f995 100644 --- a/docset/winserver2022-ps/failoverclusters/Start-ClusterResource.md +++ b/docset/winserver2022-ps/failoverclusters/Start-ClusterResource.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/start-clusterresource?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-ClusterResource @@ -22,7 +22,7 @@ Start-ClusterResource [[-Name] ] [-IgnoreLocked] [-ChooseBestNode] [-Wai ## DESCRIPTION -The **Start-ClusterResource** cmdlet brings a resource online in a failover cluster. Before the +The `Start-ClusterResource` cmdlet brings a resource online in a failover cluster. Before the resource is brought online, any resources that it depends are brought online. ## EXAMPLES @@ -136,7 +136,7 @@ Accept wildcard characters: False ### -Wait -Specifies the time in seconds to wait for the cmdlet. If the **Wait** parameter is not specified, +Specifies the time in seconds to wait for the cmdlet. If the **Wait** parameter isn't specified, then the cmdlet waits for completion. If `-Wait 0` is specified, then the call is initiated and the cmdlet returns without waiting. diff --git a/docset/winserver2022-ps/failoverclusters/Stop-Cluster.md b/docset/winserver2022-ps/failoverclusters/Stop-Cluster.md index 440af55564..37ae91f22e 100644 --- a/docset/winserver2022-ps/failoverclusters/Stop-Cluster.md +++ b/docset/winserver2022-ps/failoverclusters/Stop-Cluster.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/stop-cluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-Cluster @@ -32,7 +32,7 @@ Stop-Cluster [-Force] [-Wait ] [-InputObject ] [-WhatIf] [-Conf ## DESCRIPTION -The **Stop-Cluster** cmdlet stops the Cluster service on all nodes in a failover cluster, which will +The `Stop-Cluster` cmdlet stops the Cluster service on all nodes in a failover cluster, which will stop all services and applications configured in the cluster. A node can only function as part of the cluster when the Cluster service is running on that node. @@ -126,8 +126,8 @@ Accept wildcard characters: False ### -Wait -Specifies the time in seconds to wait for the cmdlet. If the *Wait* parameter is not specified, then -the cmdlet waits for completion. If `-Wait 0` is specified, then the call is initiated and the +Specifies the time in seconds to wait for the cmdlet. If the **Wait** parameter isn't specified, +then the cmdlet waits for completion. If `-Wait 0` is specified, then the call is initiated and the cmdlet returns without waiting. ```yaml @@ -144,7 +144,7 @@ Accept wildcard characters: False ### -WhatIf -Shows what would happen if the cmdlet runs. The cmdlet is not run. +Shows what would happen if the cmdlet runs. The cmdlet isn't run. ```yaml Type: SwitchParameter diff --git a/docset/winserver2022-ps/failoverclusters/Stop-ClusterGroup.md b/docset/winserver2022-ps/failoverclusters/Stop-ClusterGroup.md index 6f4f77d8e6..374b63cf95 100644 --- a/docset/winserver2022-ps/failoverclusters/Stop-ClusterGroup.md +++ b/docset/winserver2022-ps/failoverclusters/Stop-ClusterGroup.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/stop-clustergroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-ClusterGroup @@ -22,7 +22,7 @@ Stop-ClusterGroup [[-Name] ] [-IgnoreLocked] [-Wait ] [-InputObje ## DESCRIPTION -The **Stop-ClusterGroup** cmdlet stops one or more clustered roles, also known as resource groups, +The `Stop-ClusterGroup` cmdlet stops one or more clustered roles, also known as resource groups, on a failover cluster. If maintenance on a clustered role is needed, the clustered role can be stopped in an orderly @@ -110,8 +110,8 @@ Accept wildcard characters: False ### -Wait -Specifies the time in seconds to wait for the cmdlet. If the *Wait* parameter is not specified, then -the cmdlet waits for completion. If `-Wait 0` is specified, then the call is initiated and the +Specifies the time in seconds to wait for the cmdlet. If the **Wait** parameter isn't specified, +then the cmdlet waits for completion. If `-Wait 0` is specified, then the call is initiated and the cmdlet returns without waiting. ```yaml diff --git a/docset/winserver2022-ps/failoverclusters/Stop-ClusterNode.md b/docset/winserver2022-ps/failoverclusters/Stop-ClusterNode.md index bc0d293987..a6ad519888 100644 --- a/docset/winserver2022-ps/failoverclusters/Stop-ClusterNode.md +++ b/docset/winserver2022-ps/failoverclusters/Stop-ClusterNode.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/stop-clusternode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-ClusterNode @@ -22,9 +22,9 @@ Stop-ClusterNode [[-Name] ] [-Wait ] [-InputObject ] [-IgnoreLocked] [-Wait ] [-InputO ## DESCRIPTION -The **Stop-ClusterResource** cmdlet takes a resource offline in a failover cluster. Before the +The `Stop-ClusterResource` cmdlet takes a resource offline in a failover cluster. Before the resource is taken offline, any resources that depend on it are taken offline. ## EXAMPLES @@ -109,8 +109,8 @@ Accept wildcard characters: False ### -Wait -Specifies the time in seconds to wait for the cmdlet. If the *Wait* parameter is not specified, then -the cmdlet waits for completion. If `-Wait 0` is specified, then the call is initiated and the +Specifies the time in seconds to wait for the cmdlet. If the **Wait** parameter isn't specified, +then the cmdlet waits for completion. If `-Wait 0` is specified, then the call is initiated and the cmdlet returns without waiting. ```yaml diff --git a/docset/winserver2022-ps/failoverclusters/Suspend-ClusterNode.md b/docset/winserver2022-ps/failoverclusters/Suspend-ClusterNode.md index 22c3b947cc..7fb5ea536b 100644 --- a/docset/winserver2022-ps/failoverclusters/Suspend-ClusterNode.md +++ b/docset/winserver2022-ps/failoverclusters/Suspend-ClusterNode.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/suspend-clusternode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-ClusterNode @@ -23,8 +23,8 @@ Suspend-ClusterNode [[-Name] ] [-Drain] [-ForceDrain] [-Wait] ## DESCRIPTION -The **Suspend-ClusterNode** cmdlet suspends activity on a failover cluster node, that is, pauses the -node. If you use the *Drain* parameter, clustered roles currently running on the node will be +The `Suspend-ClusterNode` cmdlet suspends activity on a failover cluster node, that is, pauses the +node. If you use the **Drain** parameter, clustered roles currently running on the node will be drained before the node is paused. Pausing, or suspending, a node is usually done when applying software updates to the node. If you @@ -199,10 +199,10 @@ Accept wildcard characters: False ### -Wait -Specifies the time in seconds to wait for the cmdlet. If the *Wait* parameter is not specified, then -the call is initiated and the cmdlet returns without waiting. If specified with no value, then the -cmdlet waits for completion. If `-Wait 0` is specified, then the call is initiated and the cmdlet -returns without waiting. +Specifies the time in seconds to wait for the cmdlet. If the **Wait** parameter isn't specified, +then the call is initiated and the cmdlet returns without waiting. If specified with no value, then +the cmdlet waits for completion. If `-Wait 0` is specified, then the call is initiated and the +cmdlet returns without waiting. ```yaml Type: SwitchParameter @@ -218,7 +218,7 @@ Accept wildcard characters: False ### -WhatIf -Shows what would happen if the cmdlet runs. The cmdlet is not run. +Shows what would happen if the cmdlet runs. The cmdlet isn't run. ```yaml Type: SwitchParameter diff --git a/docset/winserver2022-ps/failoverclusters/Suspend-ClusterResource.md b/docset/winserver2022-ps/failoverclusters/Suspend-ClusterResource.md index c1e637c1e5..433fda4f67 100644 --- a/docset/winserver2022-ps/failoverclusters/Suspend-ClusterResource.md +++ b/docset/winserver2022-ps/failoverclusters/Suspend-ClusterResource.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/suspend-clusterresource?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-ClusterResource @@ -23,7 +23,7 @@ Suspend-ClusterResource [[-Name] ] [-VolumeName ] [-RedirectedAc ## DESCRIPTION -The **Suspend-ClusterResource** cmdlet turns on maintenance for a disk resource or Cluster Shared +The `Suspend-ClusterResource` cmdlet turns on maintenance for a disk resource or Cluster Shared Volume (CSV) so that a disk maintenance tool can be run without triggering failover. This cmdlet only applies to disks and CSVs. For Cluster Shared Volumes, turning on maintenance takes @@ -158,7 +158,7 @@ Accept wildcard characters: False ### -VolumeName Specifies the name of the volume to suspend. This parameter is only applicable to CSVs. If this -parameter is not specified, then the operation will be performed on all volumes on the CSV. +parameter isn't specified, then the operation will be performed on all volumes on the CSV. ```yaml Type: String @@ -174,7 +174,7 @@ Accept wildcard characters: False ### -WhatIf -Shows what would happen if the cmdlet runs. The cmdlet is not run. +Shows what would happen if the cmdlet runs. The cmdlet isn't run. ```yaml Type: SwitchParameter diff --git a/docset/winserver2022-ps/failoverclusters/Test-Cluster.md b/docset/winserver2022-ps/failoverclusters/Test-Cluster.md index 00a7f6091f..18d94b009f 100644 --- a/docset/winserver2022-ps/failoverclusters/Test-Cluster.md +++ b/docset/winserver2022-ps/failoverclusters/Test-Cluster.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/test-cluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-Cluster @@ -143,7 +143,7 @@ Accept wildcard characters: False Specifies the disk number or disks for which to run the cmdlet. If the specified disk is online and is assigned to a clustered role or Cluster Shared Volume, you must also specify the **Force** parameter to take the disk offline for the duration of the storage tests. Otherwise, the specified -disk must be offline before the cmdlet is run. If the **Disk** parameter is not specified, storage +disk must be offline before the cmdlet is run. If the **Disk** parameter isn't specified, storage tests run on all disks that are available for use in the cluster or that are in the cluster resource offline or failed state. @@ -155,7 +155,7 @@ The acceptable values for this parameter are: hexadecimal format is supported. - **System.String**. A string that represents the GUID of a GPT disk. - **ClusterResource**. A cluster resource object that represents a clustered disk. -- **CimInstance#MSFT_Disk**. An object returned from Get-Disk, from the Windows PowerShell storage +- **CimInstance#MSFT_Disk**. An object returned from `Get-Disk`, from the Windows PowerShell storage module. ```yaml @@ -173,8 +173,8 @@ Accept wildcard characters: False ### -Force Runs the cmdlet without prompting for confirmation. By default the cmdlet will ask for confirmation -from the user before proceeding. When combined with the **Disk** or **Pool** parameters, the disks or -storage pool is taken offline for the duration of the storage tests. +from the user before proceeding. When combined with the **Disk** or **Pool** parameters, the disks +or storage pool is taken offline for the duration of the storage tests. ```yaml Type: SwitchParameter @@ -278,7 +278,7 @@ storage pool is online and a virtual disk in the storage pool is assigned to a c Cluster Shared Volume, you must also specify the **Force** parameter to take the storage pool offline for the duration of the storage tests. Otherwise, command will exit with an error. The specified storage pool must be taken offline before running the storage tests. If the **Pool** -parameter is not specified, storage tests run on all storage pools that are available for use in the +parameter isn't specified, storage tests run on all storage pools that are available for use in the cluster or that are in the cluster resource offline or failed state. The acceptable values for this parameter are: @@ -318,7 +318,7 @@ Accept wildcard characters: False ### -WhatIf -Shows what would happen if the cmdlet runs. The cmdlet is not run. +Shows what would happen if the cmdlet runs. The cmdlet isn't run. ```yaml Type: SwitchParameter diff --git a/docset/winserver2022-ps/failoverclusters/Test-ClusterResourceFailure.md b/docset/winserver2022-ps/failoverclusters/Test-ClusterResourceFailure.md index e925018de7..b3bff79d8d 100644 --- a/docset/winserver2022-ps/failoverclusters/Test-ClusterResourceFailure.md +++ b/docset/winserver2022-ps/failoverclusters/Test-ClusterResourceFailure.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/test-clusterresourcefailure?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-ClusterResourceFailure @@ -22,7 +22,7 @@ Test-ClusterResourceFailure [[-Name] ] [-InputObject ] [-Clust ## DESCRIPTION -The **Test-ClusterResourceFailure** cmdlet simulates a failure of a cluster resource. +The `Test-ClusterResourceFailure` cmdlet simulates a failure of a cluster resource. Based on the failover and failback policies, when this cmdlet runs, the Cluster service moves the clustered role, or resource group, and attempts to bring the clustered resource online. This cmdlet diff --git a/docset/winserver2022-ps/failoverclusters/Update-ClusterFunctionalLevel.md b/docset/winserver2022-ps/failoverclusters/Update-ClusterFunctionalLevel.md index 20b485a204..66fc70df99 100644 --- a/docset/winserver2022-ps/failoverclusters/Update-ClusterFunctionalLevel.md +++ b/docset/winserver2022-ps/failoverclusters/Update-ClusterFunctionalLevel.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/update-clusterfunctionallevel?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-ClusterFunctionalLevel @@ -22,36 +22,36 @@ Update-ClusterFunctionalLevel [-Force] [-WhatIf] [-InputObject ] [-Clu ## DESCRIPTION -The **Update-ClusterFunctionalLevel** cmdlet updates the functional level of a mixed-version +The `Update-ClusterFunctionalLevel` cmdlet updates the functional level of a mixed-version cluster. You can update the cluster after all nodes have been updated. Starting with Windows Server 2016, you can add a node that runs a more recent version of the Windows operating system into a cluster of nodes that run a previous version of the Windows operating -system. To add a cluster node, use the **Add-ClusterNode** cmdlet. +system. To add a cluster node, use the `Add-ClusterNode` cmdlet. After you add a node that runs a different version of the Windows operating system, the cluster becomes a mixed-version cluster. You can implement a mixed-version cluster to continue to run while you upgrade the operating system on each node in the cluster. -We recommend that you upgrade all nodes in the cluster within a month. We do not recommend using a +We recommend that you upgrade all nodes in the cluster within a month. We don't recommend using a mixed-version cluster permanently. You can use this cmdlet to support a rolling operating system upgrade for a cluster. If you use cluster that runs Hyper-V in which all the nodes run Windows Server 2012 R2, you can upgrade the nodes of that cluster without downtime for your virtual machines. -First, drain one cluster node by specifying the *Drain* parameter of the **Suspend-ClusterNode** +First, drain one cluster node by specifying the **Drain** parameter of the `Suspend-ClusterNode` cmdlet. This cmdlet causes all virtual machines to live-migrate to one of the other hosts. -Next, remove the host from the cluster by using the **Remove-ClusterNode** cmdlet. +Next, remove the host from the cluster by using the `Remove-ClusterNode` cmdlet. -Next, install a new version of the operating system. Do not perform an upgrade or in-place +Next, install a new version of the operating system. Don't perform an upgrade or in-place installation. Next, add the Hyper-V role and the **Failover Clustering** feature by using the -**Install-WindowsFeature** cmdlet. For more information, type `Get-Help Install-WindowsFeature`. +`Install-WindowsFeature` cmdlet. For more information, type `Get-Help Install-WindowsFeature`. -Finally, add the node into the cluster by using the **Add-ClusterNode** cmdlet. +Finally, add the node into the cluster by using the `Add-ClusterNode` cmdlet. Repeat these steps for each node of the cluster. @@ -67,7 +67,7 @@ cluster_17 ``` This command tests whether an update would finish successfully. Because the command includes the -*WhatIf* common parameter, the command does not perform the update. +**WhatIf** common parameter, the command doesn't perform the update. ### Example 2: Update a cluster functional level @@ -135,7 +135,7 @@ Accept wildcard characters: False ### -WhatIf -Shows what would happen if the cmdlet runs. The cmdlet is not run. +Shows what would happen if the cmdlet runs. The cmdlet isn't run. ```yaml Type: SwitchParameter diff --git a/docset/winserver2022-ps/failoverclusters/Update-ClusterIPResource.md b/docset/winserver2022-ps/failoverclusters/Update-ClusterIPResource.md index 31e2ea4d45..9c41f45466 100644 --- a/docset/winserver2022-ps/failoverclusters/Update-ClusterIPResource.md +++ b/docset/winserver2022-ps/failoverclusters/Update-ClusterIPResource.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/update-clusteripresource?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-ClusterIPResource @@ -22,7 +22,7 @@ Update-ClusterIPResource [[-Name] ] [-Renew] [-Release] [-InputObject

] [-InputObject ] [-VMId ] ## DESCRIPTION -The **Update-ClusterVirtualMachineConfiguration** cmdlet refreshes the configuration of a clustered +The `Update-ClusterVirtualMachineConfiguration` cmdlet refreshes the configuration of a clustered virtual machine within a failover cluster. Use this cmdlet if a hardware device, such as a network adapter, is to be added or removed or the hardware configuration settings, such as the setting for virtual memory, are being changed for a clustered virtual machine. From 4de78cb068d2e52e9cc5959f4d2b132849c59869 Mon Sep 17 00:00:00 2001 From: Robin Harwood <19212983+robinharwood@users.noreply.github.com> Date: Tue, 22 Nov 2022 10:55:46 +0000 Subject: [PATCH 317/965] Apply suggestions from code review Co-authored-by: Mikey Lombardi (He/Him) --- .../failoverclusters/Add-ClusterVirtualMachineRole.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterVirtualMachineRole.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterVirtualMachineRole.md index 01976b029c..c4da6fd574 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterVirtualMachineRole.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterVirtualMachineRole.md @@ -37,8 +37,8 @@ virtual machine must be on the clustered disk used by that virtual machine. > - This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) > authentication on the server computer. > -> - This cmdlet generates a .TMP file under the user temp folder, and you can't have more than 65535 -> .TMP files generated by this cmdlet, otherwise you will receive an exception "The File Exist". For +> - This cmdlet generates a `.TMP` file under the user temp folder, and you can't have more than 65535 +> `.TMP` files generated by this cmdlet, otherwise you will receive an exception "The File Exist". For > more information, please go to: > https://techcommunity.microsoft.com/t5/ITOps-Talk-Blog/TQA-Add-ClusterVirtualMachineRole-fails-with-the-error-quot-The/ba-p/713344 @@ -77,7 +77,7 @@ Name OwnerNode print-VM1 node1 Online ``` -This example queries for virtual machines matching the wildcard characters **print** and configures +This example queries for virtual machines matching the wildcard characters `*print*` and configures them as clustered virtual machines. ## PARAMETERS From a986df2254822c71ffca67f3ee696565ca00ff79 Mon Sep 17 00:00:00 2001 From: Robin Harwood <19212983+robinharwood@users.noreply.github.com> Date: Tue, 22 Nov 2022 10:57:30 +0000 Subject: [PATCH 318/965] Apply suggestions from code review Co-authored-by: Mikey Lombardi (He/Him) --- .../failoverclusters/Move-ClusterVirtualMachineRole.md | 2 +- .../failoverclusters/New-ClusterFaultDomain.md | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/Move-ClusterVirtualMachineRole.md b/docset/winserver2022-ps/failoverclusters/Move-ClusterVirtualMachineRole.md index bd1b933ace..8003d655a6 100644 --- a/docset/winserver2022-ps/failoverclusters/Move-ClusterVirtualMachineRole.md +++ b/docset/winserver2022-ps/failoverclusters/Move-ClusterVirtualMachineRole.md @@ -45,7 +45,7 @@ Virtual Machine1 node2 Online ``` This example performs a live migration of the clustered virtual machine named Virtual Machine1 to -the node named node2. The Windows PowerShell® prompt doesn't return until the action is complete. +the node named node2. The Windows PowerShell prompt doesn't return until the action is complete. ### Example 2 diff --git a/docset/winserver2022-ps/failoverclusters/New-ClusterFaultDomain.md b/docset/winserver2022-ps/failoverclusters/New-ClusterFaultDomain.md index 6ac1d8d8a3..c21b651fee 100644 --- a/docset/winserver2022-ps/failoverclusters/New-ClusterFaultDomain.md +++ b/docset/winserver2022-ps/failoverclusters/New-ClusterFaultDomain.md @@ -124,10 +124,10 @@ Specifies the type of the fault domain that this cmdlet creates. The acceptable values for this parameter are: -- **Site** -- **Rack** -- **Chassis** -- **Node** +- `Site` +- `Rack` +- `Chassis` +- `Node` ```yaml Type: FaultDomainType From 514f8940406a4467679a06060cef9e284c9e6790 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Tue, 22 Nov 2022 11:03:32 +0000 Subject: [PATCH 319/965] Adjusted parameter text --- docset/winserver2022-ps/failoverclusters/Test-Cluster.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/failoverclusters/Test-Cluster.md b/docset/winserver2022-ps/failoverclusters/Test-Cluster.md index 18d94b009f..4d8ca66341 100644 --- a/docset/winserver2022-ps/failoverclusters/Test-Cluster.md +++ b/docset/winserver2022-ps/failoverclusters/Test-Cluster.md @@ -149,7 +149,7 @@ offline or failed state. The acceptable values for this parameter are: -- **Int32, Int64, Uint32, Uint64**. A number that represents a master boot record (MBR) signature of +- **Int32, Int64, Uint32, or Uint64**. A number that represents a master boot record (MBR) signature of the disk. - **System.String**. A string that represents a master boot record (MBR) signature of the disk, hexadecimal format is supported. From 7b0cfcd9d8d7ac92e1ba79451af30d2809451186 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Mon, 21 Nov 2022 16:45:59 +0000 Subject: [PATCH 320/965] Bulk text formatting updates --- .../Remove-ClusterCheckpoint.md | 6 ++--- .../Remove-ClusterFaultDomain.md | 8 +++---- .../failoverclusters/Remove-ClusterGroup.md | 8 +++---- .../Remove-ClusterGroupFromSet.md | 6 ++--- .../Remove-ClusterGroupSet.md | 6 ++--- .../Remove-ClusterGroupSetDependency.md | 6 ++--- .../failoverclusters/Remove-ClusterNode.md | 12 +++++----- .../Remove-ClusterResource.md | 6 ++--- .../Remove-ClusterResourceDependency.md | 6 ++--- .../Remove-ClusterResourceType.md | 6 ++--- .../Remove-ClusterSharedVolume.md | 6 ++--- .../Remove-ClusterVMMonitoredItem.md | 8 +++---- .../Repair-ClusterStorageSpacesDirect.md | 8 +++---- .../Reset-ClusterVMMonitoredState.md | 8 +++---- .../failoverclusters/Resume-ClusterNode.md | 8 +++---- .../Resume-ClusterResource.md | 6 ++--- .../Set-ClusterFaultDomain.md | 12 +++++----- .../Set-ClusterFaultDomainXML.md | 4 ++-- .../failoverclusters/Set-ClusterGroupSet.md | 16 +++++++------- .../failoverclusters/Set-ClusterLog.md | 12 +++++----- .../failoverclusters/Set-ClusterOwnerNode.md | 4 ++-- .../failoverclusters/Set-ClusterParameter.md | 4 ++-- .../failoverclusters/Set-ClusterQuorum.md | 6 ++--- .../Set-ClusterResourceDependency.md | 4 ++-- .../Set-ClusterStorageSpacesDirect.md | 22 +++++++++---------- .../Set-ClusterStorageSpacesDirectDisk.md | 16 +++++++------- .../failoverclusters/Start-Cluster.md | 12 +++++----- .../failoverclusters/Start-ClusterGroup.md | 6 ++--- .../failoverclusters/Start-ClusterNode.md | 14 ++++++------ 29 files changed, 123 insertions(+), 123 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterCheckpoint.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterCheckpoint.md index 358e061789..f6584dff5f 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterCheckpoint.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterCheckpoint.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clustercheckpoint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterCheckpoint @@ -23,7 +23,7 @@ Remove-ClusterCheckpoint [[-ResourceName] ] [-Force] [-CheckpointName [-Flags ] ## DESCRIPTION -The **Remove-ClusterFaultDomain** cmdlet removes a fault domain. The fault domain cannot be empty. +The `Remove-ClusterFaultDomain` cmdlet removes a fault domain. The fault domain cannot be empty. ## EXAMPLES @@ -173,7 +173,7 @@ Accept wildcard characters: False ### -PassThru -Returns an object representing the item with which you are working. By default, this cmdlet does not +Returns an object representing the item with which you are working. By default, this cmdlet doesn't generate any output. ```yaml @@ -210,7 +210,7 @@ Accept wildcard characters: False ### -WhatIf -Shows what would happen if the cmdlet runs. The cmdlet is not run. +Shows what would happen if the cmdlet runs. The cmdlet isn't run. ```yaml Type: SwitchParameter diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroup.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroup.md index 2467c39c14..445ed89784 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroup.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroup.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clustergroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterGroup @@ -22,7 +22,7 @@ Remove-ClusterGroup [-VMId ] [[-Name] ] [-Force] [-Remov ## DESCRIPTION -The **Remove-ClusterGroup** cmdlet removes a clustered role. also called a resource group, from a +The `Remove-ClusterGroup` cmdlet removes a clustered role. also called a resource group, from a failover cluster. Use this cmdlet to delete a group. If the group still has resources in it, then either remove the @@ -46,7 +46,7 @@ PS C:\> Remove-ClusterGroup -Name MyFileServer -Force ``` This example removes the clustered role named MyFileServer, if the resources have first been removed -from it. The cmdlet does not prompt for confirmation. +from it. The cmdlet doesn't prompt for confirmation. ### Example 3 @@ -175,7 +175,7 @@ Accept wildcard characters: False ### -WhatIf -Shows what would happen if the cmdlet runs. The cmdlet is not run. +Shows what would happen if the cmdlet runs. The cmdlet isn't run. ```yaml Type: SwitchParameter diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromSet.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromSet.md index 423a405ec2..2282dd0e2c 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromSet.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromSet.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterCollection.cdxml-help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clustergroupfromset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterGroupFromSet @@ -31,7 +31,7 @@ Remove-ClusterGroupFromSet -InputObject [-Group] ## DESCRIPTION -The **Remove-ClusterGroupFromSet** cmdlet removes a group from a set. +The `Remove-ClusterGroupFromSet` cmdlet removes a group from a set. ## EXAMPLES @@ -139,7 +139,7 @@ Accept wildcard characters: False ### -PassThru -Returns an object representing the item with which you are working. By default, this cmdlet does not +Returns an object representing the item with which you are working. By default, this cmdlet doesn't generate any output. ```yaml diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupSet.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupSet.md index 6966fbc46d..fd1e88b4ff 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupSet.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupSet.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterCollection.cdxml-help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clustergroupset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterGroupSet @@ -139,7 +139,7 @@ Accept wildcard characters: False ### -PassThru -Returns an object representing the item with which you are working. By default, this cmdlet does not +Returns an object representing the item with which you are working. By default, this cmdlet doesn't generate any output. ```yaml @@ -176,7 +176,7 @@ Accept wildcard characters: False ### -WhatIf -Shows what would happen if the cmdlet runs. The cmdlet is not run. +Shows what would happen if the cmdlet runs. The cmdlet isn't run. ```yaml Type: SwitchParameter diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupSetDependency.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupSetDependency.md index f75c4bccf6..ad938ec322 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupSetDependency.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupSetDependency.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterCollection.cdxml-help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clustergroupsetdependency?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterGroupSetDependency @@ -29,7 +29,7 @@ Remove-ClusterGroupSetDependency -InputObject [-Provider] ] [-Force] [-Wait ] ## DESCRIPTION -The **Remove-ClusterNode** cmdlet removes a node from a failover cluster. After the node is removed, +The `Remove-ClusterNode` cmdlet removes a node from a failover cluster. After the node is removed, the node no longer functions as part of the cluster unless the node is added back to the cluster. Removing a node is also called evicting a node from the cluster. @@ -116,8 +116,8 @@ Accept wildcard characters: False ### -IgnoreStorageConnectivityLoss -Indicates that this cmdlet does not check whether the cluster node contains non-shared storage, if -Storage Spaces Direct is enabled. If you do not specify this parameter, the cmdlet checks whether +Indicates that this cmdlet doesn't check whether the cluster node contains non-shared storage, if +Storage Spaces Direct is enabled. If you don't specify this parameter, the cmdlet checks whether this node has any Storage Spaces Direct storage. If this cmdlet finds Storage Spaces Direct storage, it prompts you for confirmation before it removes the node. @@ -167,7 +167,7 @@ Accept wildcard characters: False ### -Wait -Specifies the time in seconds to wait for the cmdlet. If the **Wait** parameter is not specified, +Specifies the time in seconds to wait for the cmdlet. If the **Wait** parameter isn't specified, then the cmdlet waits for completion. If `-Wait 0` is specified, then the call is initiated and the cmdlet returns without waiting. @@ -185,7 +185,7 @@ Accept wildcard characters: False ### -WhatIf -Shows what would happen if the cmdlet runs. The cmdlet is not run. +Shows what would happen if the cmdlet runs. The cmdlet isn't run. ```yaml Type: SwitchParameter diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterResource.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterResource.md index 459f903dfd..48d0a6e9db 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterResource.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterResource.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clusterresource?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterResource @@ -22,7 +22,7 @@ Remove-ClusterResource [[-Name] ] [-Force] [-InputObject ] [[-Provider] ] ## DESCRIPTION -The **Remove-ClusterResourceDependency** cmdlet removes a dependency between two resources in a +The `Remove-ClusterResourceDependency` cmdlet removes a dependency between two resources in a clustered role within a failover cluster. A dependent resource is brought online after the resources on which it depends. Likewise, a @@ -141,7 +141,7 @@ Accept wildcard characters: False ### -WhatIf -Shows what would happen if the cmdlet runs. The cmdlet is not run. +Shows what would happen if the cmdlet runs. The cmdlet isn't run. ```yaml Type: SwitchParameter diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterResourceType.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterResourceType.md index b722cac2da..60108eb3e7 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterResourceType.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterResourceType.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clusterresourcetype?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterResourceType @@ -22,7 +22,7 @@ Remove-ClusterResourceType [[-Name] ] [-InputObject ## DESCRIPTION -The **Remove-ClusterResourceType** cmdlet removes a resource type from a failover cluster. A +The `Remove-ClusterResourceType` cmdlet removes a resource type from a failover cluster. A resource type is a class of resource, such as physical disk, network name, or virtual machine, that is organized by the failover cluster. After a resource type is removed from a failover cluster, resources of that type will not be able to be used in the cluster. @@ -106,7 +106,7 @@ Accept wildcard characters: False ### -WhatIf -Shows what would happen if the cmdlet runs. The cmdlet is not run. +Shows what would happen if the cmdlet runs. The cmdlet isn't run. ```yaml Type: SwitchParameter diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolume.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolume.md index 95d3a69aee..c0e982724c 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolume.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolume.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clustersharedvolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterSharedVolume @@ -23,7 +23,7 @@ Remove-ClusterSharedVolume [[-Name] ] [-InputObject ## DESCRIPTION -The **Remove-ClusterSharedVolume** cmdlet removes a volume from the Cluster Shared Volumes in a +The `Remove-ClusterSharedVolume` cmdlet removes a volume from the Cluster Shared Volumes in a failover cluster, and places it in Available Storage in the cluster. After placing a volume in Available Storage, you can use the volume when you configure a new clustered role. @@ -122,7 +122,7 @@ Accept wildcard characters: False ### -WhatIf -Shows what would happen if the cmdlet runs. The cmdlet is not run. +Shows what would happen if the cmdlet runs. The cmdlet isn't run. ```yaml Type: SwitchParameter diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterVMMonitoredItem.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterVMMonitoredItem.md index 4cbf948a09..a5144c912b 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterVMMonitoredItem.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterVMMonitoredItem.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clustervmmonitoreditem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterVMMonitoredItem @@ -31,7 +31,7 @@ Remove-ClusterVMMonitoredItem [-InputObject ] [-Service ] [] ## DESCRIPTION -The **Reset-ClusterVMMonitoredState** cmdlet resets the Application Critical state of a virtual +The `Reset-ClusterVMMonitoredState` cmdlet resets the Application Critical state of a virtual machine, so that the virtual machine is no longer marked as being in a critical state in the cluster. Note: This cmdlet can only be run locally on the virtual machine or through Windows PowerShell® remoting to the virtual machine. @@ -41,8 +41,8 @@ This example resets the state of the virtual machine and clears the critical sta ### -Wait -Specifies the time in seconds to wait for the cmdlet. If the *Wait* parameter is not specified, then -the cmdlet waits for completion. If `-Wait 0` is specified, then the call is initiated and the +Specifies the time in seconds to wait for the cmdlet. If the **Wait** parameter isn't specified, +then the cmdlet waits for completion. If `-Wait 0` is specified, then the call is initiated and the cmdlet returns without waiting. ```yaml diff --git a/docset/winserver2022-ps/failoverclusters/Resume-ClusterNode.md b/docset/winserver2022-ps/failoverclusters/Resume-ClusterNode.md index 2b69ca24a5..873fe3c4dd 100644 --- a/docset/winserver2022-ps/failoverclusters/Resume-ClusterNode.md +++ b/docset/winserver2022-ps/failoverclusters/Resume-ClusterNode.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/resume-clusternode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-ClusterNode @@ -22,7 +22,7 @@ Resume-ClusterNode [[-Name] ] [[-Failback] ] [-VolumeName ] [-InputObject < ## DESCRIPTION -The **Resume-ClusterResource** cmdlet turns off maintenance for a disk resource or Cluster Shared +The `Resume-ClusterResource` cmdlet turns off maintenance for a disk resource or Cluster Shared Volume within a failover cluster. This cmdlet applies to disks and Cluster Shared Volumes only. We recommend that maintenance be @@ -106,7 +106,7 @@ Accept wildcard characters: False ### -VolumeName Specifies the name of the volume to suspend. This parameter is only applicable to Cluster Shared -Volumes. If this parameter is not specified, then the operation will be performed on all volumes on +Volumes. If this parameter isn't specified, then the operation will be performed on all volumes on the Cluster Shared Volume. ```yaml diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterFaultDomain.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterFaultDomain.md index bc0331dc75..af1ffa6b70 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterFaultDomain.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterFaultDomain.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterFaultDomain.cdxml-help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterfaultdomain?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterFaultDomain @@ -33,9 +33,9 @@ Set-ClusterFaultDomain -InputObject [-NewName ] [-Locati ## DESCRIPTION -The **Set-ClusterFaultDomain** cmdlet update an existing cluster fault domain. The *Name* parameter -should identify the current name. The *NewName* parameter should be specified only when renaming the -fault domain. +The `Set-ClusterFaultDomain` cmdlet update an existing cluster fault domain. The **Name** parameter +should identify the current name. The **NewName** parameter should be specified only when renaming +the fault domain. ## EXAMPLES @@ -113,7 +113,7 @@ Accept wildcard characters: False ### -FaultDomain Specifies the name of the fault domain that is the parent of this one. You should specify Empty if -the fault domain does not have a parent. +the fault domain doesn't have a parent. ```yaml Type: String @@ -225,7 +225,7 @@ Accept wildcard characters: False ### -PassThru -Returns an object representing the item with which you are working. By default, this cmdlet does not +Returns an object representing the item with which you are working. By default, this cmdlet doesn't generate any output. ```yaml diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterFaultDomainXML.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterFaultDomainXML.md index a92fa86061..3e6dd15ea4 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterFaultDomainXML.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterFaultDomainXML.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterFaultDomain.cdxml-help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterfaultdomainxml?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterFaultDomainXML @@ -22,7 +22,7 @@ Set-ClusterFaultDomainXML [-XML] [-Flags ] [-CimSession [-StartupSetting ] [-Level ] [-InputObject ] [-Clus ## DESCRIPTION -The **Set-ClusterLog** cmdlet sets the size and level of detail for the cluster log. The default +The `Set-ClusterLog` cmdlet sets the size and level of detail for the cluster log. The default level, `3`, includes errors, warnings, and additional information. ## EXAMPLES @@ -86,8 +86,8 @@ Accept wildcard characters: False ### -Level -Specifies the log level to set for the cluster. The acceptable values for this parameter are:`0` to -`5`. +Specifies the log level to set for the cluster. The acceptable values for this parameter are: **0** +to **5**. | Level | Error | Warning | Info | Verbose | Debug | |:-----|:-----|:-----|:-----|:-----|:-----| @@ -113,8 +113,8 @@ Accept wildcard characters: False ### -Size Specifies the log size to set for the cluster. The acceptable values for this parameter in Windows -2016 are:`8` MB to `1024` MB. The acceptable values for this parameter in Windows 2019 are:`8` MB to -`2048` MB. +2016 are: **8** MB to **1024** MB. The acceptable values for this parameter in Windows 2019 are: +**8** MB to **2048** MB. ```yaml Type: Int32 diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterOwnerNode.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterOwnerNode.md index 00d76df8b5..8511048461 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterOwnerNode.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterOwnerNode.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterownernode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterOwnerNode @@ -23,7 +23,7 @@ Set-ClusterOwnerNode [-Resource ] [-Group ] -Owners ] [[-Multiple] ] [-Creat ## DESCRIPTION -The **Set-ClusterParameter** cmdlet controls specific properties of an object in a failover cluster, +The `Set-ClusterParameter` cmdlet controls specific properties of an object in a failover cluster, such as a resource, a group, or a network. - For a disk resource, you can set the disk signature or GUID of a disk, and turn maintenance on diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterQuorum.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterQuorum.md index b91346d689..113f2fa2e9 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterQuorum.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterQuorum.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterquorum?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterQuorum @@ -23,7 +23,7 @@ Set-ClusterQuorum [-DiskOnly ] [-NoWitness] [-DiskWitness ] ## DESCRIPTION -The **Set-ClusterQuorum** cmdlet configures quorum options for a failover cluster. The quorum +The `Set-ClusterQuorum` cmdlet configures quorum options for a failover cluster. The quorum configuration in a failover cluster determines the number of failures that the cluster can sustain. If an additional failure occurs, the cluster must stop running. The relevant failures in this context are failures of nodes or, in some cases, of a disk witness (which contains a copy of the @@ -135,7 +135,7 @@ Accept wildcard characters: False ### -DiskOnly -Causes the cluster quorum to be set to disk only type. This is not recommended as it creates a +Causes the cluster quorum to be set to disk only type. This isn't recommended as it creates a single point of failure for the cluster. ```yaml diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterResourceDependency.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterResourceDependency.md index d7f47ca8f7..78eaaf2092 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterResourceDependency.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterResourceDependency.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterresourcedependency?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterResourceDependency @@ -22,7 +22,7 @@ Set-ClusterResourceDependency [[-Resource] ] [[-Dependency] ] ## DESCRIPTION -The **Set-ClusterResourceDependency** cmdlet specifies the resources that a particular resource +The `Set-ClusterResourceDependency` cmdlet specifies the resources that a particular resource depends on within a failover cluster. Existing dependencies will be overwritten by the dependencies that you specify. diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterStorageSpacesDirect.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterStorageSpacesDirect.md index 8ca511e6f9..29a83ae367 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterStorageSpacesDirect.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterStorageSpacesDirect.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterStorageSpacesDirect.cdxml-help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterstoragespacesdirect?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterStorageSpacesDirect @@ -23,7 +23,7 @@ Set-ClusterStorageSpacesDirect [-CacheState ] [-CacheModeHDD ] [-PhysicalDiskIds < ## DESCRIPTION -The **Set-ClusterStorageSpacesDirectDisk** cmdlet configures the system to enable Storage Spaces +The `Set-ClusterStorageSpacesDirectDisk` cmdlet configures the system to enable Storage Spaces Direct (S2D) to claim or not claim specific physical disks. Disks marked to be not claimed by S2D remain untouched so that they can be used for other purposes. @@ -38,9 +38,9 @@ S2D. Alternatively, you can run this cmdlet after you enable S2D. PS C:\> Set-ClusterStorageSpacesDirectDisk -CimSession "K0619-C1.contoso.com" -CanBeClaimed:$False -PhysicalDiskIds "55CD2E404B75A3FC","50014EE05950DD7C" ``` -This command configures the system that physical disks that have the IDs 55CD2E404B75A3FC and -50014EE05950DD7C cannot be claimed by S2D. In this example, the *CanBeClaimed* parameter is -explicitly specified as $False. Omitting that parameter has the same effect. +This command configures the system that physical disks that have the IDs `55CD2E404B75A3FC` and +`50014EE05950DD7C` cannot be claimed by S2D. In this example, the **CanBeClaimed** parameter is +explicitly specified as `$False`. Omitting that parameter has the same effect. ## PARAMETERS @@ -71,8 +71,8 @@ Accept wildcard characters: False ### -CanBeClaimed -Indicates that S2D can claim the physical disks specified by the *PhysicalDiskIds* parameter. If you -do not specify this parameter, this cmdlet indicates that the specified physical disks can be +Indicates that S2D can claim the physical disks specified by the **PhysicalDiskIds** parameter. If +you don't specify this parameter, this cmdlet indicates that the specified physical disks can be claimed. ```yaml @@ -161,7 +161,7 @@ Accept wildcard characters: False ### -WhatIf -Shows what would happen if the cmdlet runs. The cmdlet is not run. +Shows what would happen if the cmdlet runs. The cmdlet isn't run. ```yaml Type: SwitchParameter diff --git a/docset/winserver2022-ps/failoverclusters/Start-Cluster.md b/docset/winserver2022-ps/failoverclusters/Start-Cluster.md index 2b990db0e7..cfbe0d5e04 100644 --- a/docset/winserver2022-ps/failoverclusters/Start-Cluster.md +++ b/docset/winserver2022-ps/failoverclusters/Start-Cluster.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/start-cluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-Cluster @@ -11,7 +11,7 @@ title: Start-Cluster # Start-Cluster ## SYNOPSIS -Starts the Cluster service on all nodes of the cluster on which it is not yet started. +Starts the Cluster service on all nodes of the cluster on which it isn't yet started. ## SYNTAX @@ -21,9 +21,9 @@ Start-Cluster [[-Name] ] [-IgnorePersistentState] [-Wait ] [] [-IgnoreLocked] [-ChooseBestNode] [-Wait < ## DESCRIPTION -The **Start-ClusterGroup** cmdlet starts one or more clustered roles, also known as resource groups, +The `Start-ClusterGroup` cmdlet starts one or more clustered roles, also known as resource groups, on a failover cluster. With this cmdlet, a clustered role can be started again after stopping it for maintenance or diagnosis. @@ -134,7 +134,7 @@ Accept wildcard characters: False ### -Wait -Specifies the time in seconds to wait for the cmdlet. If the **Wait** parameter is not specified, +Specifies the time in seconds to wait for the cmdlet. If the **Wait** parameter isn't specified, then the cmdlet waits for completion. If `-Wait 0` is specified, then the call is initiated and the cmdlet returns without waiting. diff --git a/docset/winserver2022-ps/failoverclusters/Start-ClusterNode.md b/docset/winserver2022-ps/failoverclusters/Start-ClusterNode.md index abd7211e5c..bf5d8df6e1 100644 --- a/docset/winserver2022-ps/failoverclusters/Start-ClusterNode.md +++ b/docset/winserver2022-ps/failoverclusters/Start-ClusterNode.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/start-clusternode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-ClusterNode @@ -23,12 +23,12 @@ Start-ClusterNode [[-Name] ] [-ForceQuorum] [-ClearQuarantine] ## DESCRIPTION -The **Start-ClusterNode** cmdlet starts the Cluster service on a node in a failover cluster. If this +The `Start-ClusterNode` cmdlet starts the Cluster service on a node in a failover cluster. If this is the first node started, then it will wait for other nodes to join. The cluster will begin to run when a quorum has formed. This cmdlet with the **FixQuorum** parameter can be used to force quorum, that is, force the start -of a cluster node even if quorum has not been achieved. When quorum is forced on a given node, the +of a cluster node even if quorum hasn't been achieved. When quorum is forced on a given node, the copy of the cluster configuration that is on that node will be treated as the authoritative copy and will be replicated to all other nodes. Therefore, forcing quorum should be considered a last resort, because some cluster configuration changes could be lost. The ability to force quorum can be @@ -74,8 +74,8 @@ Name State node1 Joining ``` -This example forces the local node and the local cluster to start, even if quorum has not been -achieved. If quorum has not been achieved, then the copy of the cluster configuration that is on the +This example forces the local node and the local cluster to start, even if quorum hasn't been +achieved. If quorum hasn't been achieved, then the copy of the cluster configuration that is on the local node will be treated as the authoritative copy and will be replicated to all other nodes. This cmdlet should be considered a last resort, because some cluster configuration changes could be lost, such as recovery options for cluster service. @@ -115,7 +115,7 @@ Accept wildcard characters: False ### -ForceQuorum -Indicates that the cmdlet forces the start of a cluster node regardless if quorum is not formed. +Indicates that the cmdlet forces the start of a cluster node regardless if quorum isn't formed. ```yaml Type: SwitchParameter @@ -196,7 +196,7 @@ Accept wildcard characters: False ### -Wait -Specifies the time in seconds to wait for the cmdlet. If the **Wait** parameter is not specified, +Specifies the time in seconds to wait for the cmdlet. If the **Wait** parameter isn't specified, then the cmdlet waits for completion. If `-Wait 0` is specified, then the call is initiated and the cmdlet returns without waiting. From 9171aa1ef16f6e0ee4ea52b1af257ce191962f3f Mon Sep 17 00:00:00 2001 From: Robin Harwood <19212983+robinharwood@users.noreply.github.com> Date: Tue, 22 Nov 2022 11:00:06 +0000 Subject: [PATCH 321/965] Apply suggestions from code review Co-authored-by: Mikey Lombardi (He/Him) --- .../failoverclusters/Resume-ClusterNode.md | 7 +++++-- .../failoverclusters/Set-ClusterGroupSet.md | 2 +- .../failoverclusters/Set-ClusterLog.md | 8 ++++---- .../Set-ClusterStorageSpacesDirect.md | 16 ++++++++-------- 4 files changed, 18 insertions(+), 15 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/Resume-ClusterNode.md b/docset/winserver2022-ps/failoverclusters/Resume-ClusterNode.md index 873fe3c4dd..6074303a19 100644 --- a/docset/winserver2022-ps/failoverclusters/Resume-ClusterNode.md +++ b/docset/winserver2022-ps/failoverclusters/Resume-ClusterNode.md @@ -96,8 +96,11 @@ Accept wildcard characters: False ### -Failback Sets the policy to bring back drained workloads to the node. The acceptable values for this -parameter are: **NoFailback**, **Immediate**, and **Policy**. Policy can be configured to not -**failback**, **failback immediately**, or **failback** only during specific hours. +parameter are: + +- `NoFailBack` - Don't failback at all. +- `Immediate` - Failback immediately. +- `Policy` - Failback only during specific hours. ```yaml Type: ResumeClusterNodeFailbackType diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterGroupSet.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterGroupSet.md index 56bd1bf7ed..58be285f56 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterGroupSet.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterGroupSet.md @@ -196,7 +196,7 @@ Specifies the startup setting when the set is deemed ready. When delay it is whe specified in the **StartupCount** parameter are in pending in addition to the **StartupDelay** parameter. If it is online it is when **StartupCount** groups reach online in addition to the delay. -The acceptable values for this parameter are: **Delay** or **Online**. +The acceptable values for this parameter are: `Delay` or `Online`. ```yaml Type: StartupSettingType diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterLog.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterLog.md index 7a75608ed9..f06bec8430 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterLog.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterLog.md @@ -86,8 +86,8 @@ Accept wildcard characters: False ### -Level -Specifies the log level to set for the cluster. The acceptable values for this parameter are: **0** -to **5**. +Specifies the log level to set for the cluster. The acceptable values for this parameter are: `0` +to `5`. | Level | Error | Warning | Info | Verbose | Debug | |:-----|:-----|:-----|:-----|:-----|:-----| @@ -113,8 +113,8 @@ Accept wildcard characters: False ### -Size Specifies the log size to set for the cluster. The acceptable values for this parameter in Windows -2016 are: **8** MB to **1024** MB. The acceptable values for this parameter in Windows 2019 are: -**8** MB to **2048** MB. +2016 are: `8` MB to `1024` MB. The acceptable values for this parameter in Windows 2019 are: +`8` MB to `2048` MB. ```yaml Type: Int32 diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterStorageSpacesDirect.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterStorageSpacesDirect.md index 29a83ae367..cd38115f70 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterStorageSpacesDirect.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterStorageSpacesDirect.md @@ -67,9 +67,9 @@ Accept wildcard characters: False Specifies the cache mode of the hard disk drive. The acceptable values for this parameter are: -- **ReadOnly** -- **WriteOnly** -- **ReadWrite** +- `ReadOnly`` +- `WriteOnly`` +- `ReadWrite` ```yaml Type: CacheModeType @@ -88,9 +88,9 @@ Accept wildcard characters: False Specifies the cache mode of the solid state drive. The acceptable values for this parameter are: -- **ReadOnly** -- **WriteOnly** -- **ReadWrite** +- `ReadOnly`` +- `WriteOnly`` +- `ReadWrite` ```yaml Type: CacheModeType @@ -107,8 +107,8 @@ Accept wildcard characters: False ### -CacheState -Specifies the S2D cache state. The acceptable values for this parameter are: **Enabled** or -**Disabled**. The default value is **Enabled**. +Specifies the S2D cache state. The acceptable values for this parameter are: `Enabled` or +`Disabled`. The default value is `Enabled`. ```yaml Type: CacheStateType From dce5ff5f20330b91a0ecd32ffd7cd7590aeae499 Mon Sep 17 00:00:00 2001 From: "Mikey Lombardi (He/Him)" Date: Tue, 22 Nov 2022 09:26:13 -0600 Subject: [PATCH 322/965] Apply suggestions from code review --- .../failoverclusters/Set-ClusterStorageSpacesDirect.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterStorageSpacesDirect.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterStorageSpacesDirect.md index cd38115f70..11a268084e 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterStorageSpacesDirect.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterStorageSpacesDirect.md @@ -67,8 +67,8 @@ Accept wildcard characters: False Specifies the cache mode of the hard disk drive. The acceptable values for this parameter are: -- `ReadOnly`` -- `WriteOnly`` +- `ReadOnly` +- `WriteOnly` - `ReadWrite` ```yaml @@ -88,8 +88,8 @@ Accept wildcard characters: False Specifies the cache mode of the solid state drive. The acceptable values for this parameter are: -- `ReadOnly`` -- `WriteOnly`` +- `ReadOnly` +- `WriteOnly` - `ReadWrite` ```yaml From 7c223b5c874e61bf12a62d64e618a2d198f7291f Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Tue, 22 Nov 2022 14:53:41 +0000 Subject: [PATCH 323/965] Updated examples --- .../failoverclusters/Add-ClusterCheckpoint.md | 25 +++--- .../failoverclusters/Add-ClusterDisk.md | 26 ++---- .../Add-ClusterFileServerRole.md | 27 ++---- .../Add-ClusterGenericApplicationRole.md | 38 ++++---- .../Add-ClusterGenericScriptRole.md | 27 ++---- .../Add-ClusterGenericServiceRole.md | 14 +-- .../failoverclusters/Add-ClusterGroup.md | 7 +- .../Add-ClusterGroupSetDependency.md | 8 +- .../failoverclusters/Add-ClusterGroupToSet.md | 6 +- .../failoverclusters/Add-ClusterNode.md | 18 ++-- .../failoverclusters/Add-ClusterResource.md | 11 +-- .../Add-ClusterResourceDependency.md | 11 +-- .../Add-ClusterResourceType.md | 22 ++--- .../Add-ClusterScaleOutFileServerRole.md | 19 +--- .../Add-ClusterSharedVolume.md | 9 +- .../Add-ClusterVMMonitoredItem.md | 24 ++--- .../Add-ClusterVirtualMachineRole.md | 27 ++---- .../Add-ClusteriSCSITargetServerRole.md | 23 ++--- .../failoverclusters/Block-ClusterAccess.md | 6 +- .../Clear-ClusterDiskReservation.md | 12 +-- .../failoverclusters/Clear-ClusterNode.md | 10 +-- .../Disable-ClusterStorageSpacesDirect.md | 4 +- .../Enable-ClusterStorageSpacesDirect.md | 6 +- .../failoverclusters/Get-Cluster.md | 87 ++++--------------- .../failoverclusters/Get-ClusterAccess.md | 12 +-- .../Get-ClusterAvailableDisk.md | 27 +----- .../failoverclusters/Get-ClusterCheckpoint.md | 17 ++-- .../Get-ClusterDiagnosticInfo.md | 7 +- .../Get-ClusterFaultDomain.md | 7 +- 29 files changed, 177 insertions(+), 360 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterCheckpoint.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterCheckpoint.md index 8179610713..dccf280f6c 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterCheckpoint.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterCheckpoint.md @@ -36,26 +36,27 @@ local server. ### Example 1: Add registry checkpoint -``` -PS C:\> Add-ClusterCheckpoint -ResourceName "Cluster Name" -RegistryCheckpoint "software\clusname" -Resource Name --------- ---- -Cluster Name software\clusname +```powershell +Add-ClusterCheckpoint -ResourceName "Cluster Name" -RegistryCheckpoint "software\clusname" ``` -This example adds a registry checkpoint called software\clusname for the resource named cluster +This example adds a registry checkpoint called `software\clusname` for the resource named cluster name. ### Example 2: Add cryptographic checkpoint -``` -PS C:\> Get-ClusterResource -Name "Cluster Name" | Add-ClusterCheckpoint -CryptoCheckpointName "Microsoft Base Cryptographic Provider v1.0" -CryptoCheckpointType 1 -CryptoCheckpointKey "Crypto" -Resource Name Type Key --------- ---- ---- --- -Cluster Name Microsoft Base Cryptograph... 1 Crypto +```powershell +$parameters = @{ + CryptoCheckpointName = 'Microsoft Base Cryptographic Provider v1.0' + CryptoCheckpointType = '1' + CryptoCheckpointKey = 'Crypto' +} +Get-ClusterResource -Name "Cluster Name" | Add-ClusterCheckpoint @parameters ``` -This example adds a cryptographic checkpoint for the resource named Cluster Name. +This example adds a cryptographic checkpoint for the resource named Cluster Name. This example uses +splatting to pass parameter values from the `$Parameters` variable to the command. Learn more about +[Splatting](/powershell/module/microsoft.powershell.core/about/about_splatting). ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterDisk.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterDisk.md index 074cfa3e59..f9ea0216d4 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterDisk.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterDisk.md @@ -34,12 +34,8 @@ information about disks that you can add to the cluster. ### Example 1: Add available disks to the Available Storage group -``` -PS C:\> Get-ClusterAvailableDisk | Add-ClusterDisk -Name State Group ResourceType ----- ----- ----- ------------ -Cluster Disk 7 OnlinePending Available Storage Physical Disk -Cluster Disk 8 OnlinePending Available Storage Physical Disk +```powershell +Get-ClusterAvailableDisk | Add-ClusterDisk ``` This example identifies the disks that are ready to be added to the cluster, and then adds them to @@ -47,11 +43,8 @@ Available Storage cluster group. ### Example 2: Add a specific available disk to Available Storage -``` -PS C:\> Get-ClusterAvailableDisk | Where-Object -FilterScript { $_.ScsiAddress -Eq 50331651 } | Add-ClusterDisk -Name State Group ResourceType ----- ----- ----- ------------ -Cluster Disk 4 OnlinePending Available Storage Physical Disk +```powershell +Get-ClusterAvailableDisk | Where-Object -FilterScript { $_.ScsiAddress -Eq 50331651 } | Add-ClusterDisk ``` This example examines disks that are ready to be added to the cluster, finds the disk with a @@ -59,15 +52,12 @@ specific SCSI address, and adds it to Available Storage cluster group. ### Example 3: Cluster a physical disk -``` -PS C:\> Get-Disk -Number 11 | Add-ClusterDisk -Name State OwnerGroup ResourceType ----- ----- ---------- ------------ -Cluster Disk 5 OnlinePending Available Storage Physical Disk +```powershell +Get-Disk -Number 11 | Add-ClusterDisk ``` -This example clusters a physical disk. This cmdlet adds a physical disk to the **Available Storage** -for the cluster. +This example clusters a physical disk. This cmdlet adds a physical disk to the cluster _Available +Storage _. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterFileServerRole.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterFileServerRole.md index f5fc162b40..974a07138d 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterFileServerRole.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterFileServerRole.md @@ -38,38 +38,29 @@ clustered file server should use. ### Example 1: Create a clustered file server -``` -PS C:\> Add-ClusterFileServerRole -Storage "Cluster Disk 8" -Name OwnerNode State ----- --------- ----- -cluster1FS node1 Online +```powershell +Add-ClusterFileServerRole -Storage "Cluster Disk 8" ``` This example creates a clustered file server using Cluster Disk 8, and assigns a default name. ### Example 2: Create and name a clustered file server -``` -PS C:\> Add-ClusterFileServerRole -Storage "Cluster Disk 6" -Name cluster1FS12 -Name OwnerNode State ----- --------- ----- -cluster1FS12 node1 Online +```powershell +Add-ClusterFileServerRole -Storage "Cluster Disk 6" -Name cluster1FS12 ``` This example creates a clustered file server using Cluster Disk 6, and assigns the name -cluster1FS12. +`cluster1FS12`. ### Example 3: Create a clustered file server with no waiting for resources -``` -PS C:\> Add-ClusterFileServerRole -Storage "Cluster Disk 8" -Wait 0 -Name OwnerNode State ----- --------- ----- -cluster1FS node1 Pending +```powershell +Add-ClusterFileServerRole -Storage "Cluster Disk 8" -Wait 0 ``` -This example creates a clustered file server using Cluster Disk 8, and assigns a default name. The -cmdlet completes without waiting for all resources to come online. +This example creates a clustered file server using Cluster Disk 8, and assigns a default name. +The cmdlet completes without waiting for all resources to come online. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericApplicationRole.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericApplicationRole.md index d6717c9249..aaabec4a65 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericApplicationRole.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericApplicationRole.md @@ -40,38 +40,36 @@ If so, then it is presumed to be online and will not be restarted or failed over ### Example 1: Configure an application as a generic clustered application -``` -PS C:\> Add-ClusterGenericApplicationRole -CommandLine NewApplication.exe -Name OwnerNode State ----- --------- ----- -cluster1GenApp node2 Online +```powershell +Add-ClusterGenericApplicationRole -CommandLine NewApplication.exe ``` -This example configures NewApplication.exe as a generic clustered application. A default name will -be used for client access and this application requires no storage. +This example configures `NewApplication.exe` as a generic clustered application. +A default name will be used for client access and this application requires no storage. ### Example 2: Configure an application with storage and name -``` -PS C:\> Add-ClusterGenericApplicationRole -CommandLine NewApplication.exe -Storage "Cluster Disk 4" -Name NewApplication -Name OwnerNode State ----- --------- ----- -NewApplication node2 Online +```powershell +$parameters = @{ + CommandLine = 'NewApplication.exe' + Storage = 'Cluster Disk 4' + Name = 'NewApplication' +} +Add-ClusterGenericApplicationRole @parameters ``` -This example configures NewApplication.exe as a generic clustered application using Cluster Disk 4, -and assigns the name NewApplication. +This example configures `NewApplication.exe` as a generic clustered application using Cluster Disk 4, +and assigns the name NewApplication. This example uses splatting to pass parameter values from the +`$Parameters` variable to the command. Learn more about +[Splatting](/powershell/module/microsoft.powershell.core/about/about_splatting). ### Example 3: Configure application with no wait for resources -``` -PS C:\> Add-ClusterGenericApplicationRole -CommandLine NewApplication.exe -Wait 0 -Name OwnerNode State ----- --------- ----- -cluster1GenApp node2 Pending +```powershell +Add-ClusterGenericApplicationRole -CommandLine NewApplication.exe -Wait 0 ``` -This example configures NewApplication.exe as a generic clustered application and assigns the name +This example configures `NewApplication.exe` as a generic clustered application and assigns the name NewApplication. The cmdlet completes without waiting for all resources to come online. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericScriptRole.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericScriptRole.md index d751690524..6d3d48ed78 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericScriptRole.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericScriptRole.md @@ -39,38 +39,29 @@ script, the application will be restarted or failed over. ### Example 1: Configure a script to run on a failover cluster -``` -PS C:\> Add-ClusterGenericScriptRole -ScriptFilePath "script1.vbs" -Name OwnerNode State ----- --------- ----- -cluster1GenScript node2 Online +```powershell +Add-ClusterGenericScriptRole -ScriptFilePath "script1.vbs" ``` -This example configures the script named script1.vbs to run within a failover cluster, using +This example configures the script named `script1.vbs` to run within a failover cluster, using defaults for the name and IP address, and doesn't assign a disk. ### Example 2: Configure a script on a failover cluster and assign a clustered script name -``` -PS C:\> Add-ClusterGenericScriptRole -ScriptFilePath "script1.vbs" -Storage "Cluster Disk 4" -Name "script1" -Name OwnerNode State ----- --------- ----- -script1 node2 Online +```powershell +Add-ClusterGenericScriptRole -ScriptFilePath "script1.vbs" -Storage "Cluster Disk 4" -Name "script1" ``` -This example configures the script named script1.vbs to run within a failover cluster and use +This example configures the script named `script1.vbs` to run within a failover cluster and use Cluster Disk 4. The cmdlet assigns the clustered script the name script1. ### Example 3: Configure a script to run on a fail over cluster without waiting for resources -``` -PS C:\> Add-ClusterGenericScriptRole -ScriptFilePath "script1.vbs" -Wait 0 -Name OwnerNode State ----- --------- ----- -cluster1GenScript node2 Pending +```powershell +Add-ClusterGenericScriptRole -ScriptFilePath "script1.vbs" -Wait 0 ``` -This example configures the script called script1.vbs to run within a failover cluster, using +This example configures the script called `script1.vbs` to run within a failover cluster, using defaults for the name and IP address, and doesn't assign a disk. The cmdlet completes without waiting for all resources to come online. diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericServiceRole.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericServiceRole.md index e3f782543e..8cadb7497e 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericServiceRole.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericServiceRole.md @@ -39,11 +39,8 @@ restarted or failed over. ### Example 1: Configure a service that uses default values -``` -PS C:\> Add-ClusterGenericServiceRole -ServiceName "Service1" -Name OwnerNode State ----- --------- ----- -cluster1GenSvc node1 Online +```powershell +Add-ClusterGenericServiceRole -ServiceName "Service1" ``` This example configures Service1 as a generic clustered service, using defaults for the name and IP @@ -51,11 +48,8 @@ address, and doesn't assign a disk. ### Example 2: Configure a service that uses default values and a specified disk -``` -PS C:\> Add-ClusterGenericServiceRole -ServiceName "Service1" -Storage "Cluster Disk 6" -Name OwnerNode State ----- --------- ----- -cluster1GenSvc node1 Online +```powershell +Add-ClusterGenericServiceRole -ServiceName "Service1" -Storage "Cluster Disk 6" ``` This example configures Service1 as a generic clustered service using Cluster Disk 6, and assigns diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterGroup.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterGroup.md index fca4fcab4b..a4263d74a9 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterGroup.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterGroup.md @@ -31,11 +31,8 @@ is the unit of failover. During failover, all resources in the resource group mo ### Example 1: Add a resource group -``` -PS C:\> Add-ClusterGroup -Name "Group1" -Name OwnerNode State ----- --------- ----- -Group1 node1 Online +```powershell +Add-ClusterGroup -Name "Group1" ``` This example adds an empty resource group called Group1 to the failover cluster. diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupSetDependency.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupSetDependency.md index 16d93d5239..ed3360928c 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupSetDependency.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupSetDependency.md @@ -37,12 +37,12 @@ The `Add-ClusterGroupSetDependency` cmdlet adds a dependency to a cluster set. ### Example 1: Add a dependency to a provider set -``` -PS C:\> Add-ClusterGroupSetDependency -Name "Set001" -Provider "Provider002" +```powershell +Add-ClusterGroupSetDependency -Name "Set001" -Provider "Provider002" ``` -This command adds the set named Provider002 as a provider to the set named Set001. Both sets cannot -be empty. +This command adds the set named `Provider002` as a provider to the set named `Set001`. +Both sets cannot be empty. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupToSet.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupToSet.md index 1517d829e7..18a686fe2c 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupToSet.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupToSet.md @@ -37,11 +37,11 @@ The `Add-ClusterGroupToSet` cmdlet adds a group to a set. A group can only belon ### Example 1: Add a cluster group to a set -``` -PS C:\> Add-ClusterGroupToSet -Name "Set001" -Group "Group001" +```powershell +Add-ClusterGroupToSet -Name "Set001" -Group "Group001" ``` -This command adds the cluster group named Group001 to the set named Set001. +This command adds the cluster group named `Group001` to the set named `Set001`. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterNode.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterNode.md index 6daae97a3f..4a28c083d3 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterNode.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterNode.md @@ -37,25 +37,19 @@ connected correctly to the networks and storage and that it contains the same so ### Example 1 -``` -PS C:\> Add-ClusterNode -Name node4 -Name State ----- ----- -node4 Up +```powershell +Add-ClusterNode -Name node4 ``` -This example adds node named node4 to the local cluster. +This example adds node named `node4` to the local cluster. ### Example 2 -``` -PS C:\> Get-Cluster -Name cluster1 | Add-ClusterNode -Name node3 -Name State ----- ----- -node3 Up +```powershell +Get-Cluster -Name cluster1 | Add-ClusterNode -Name node3 ``` -This example adds the node named node3 to cluster called cluster1. +This example adds the node named `node3` to cluster called `cluster1`. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterResource.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterResource.md index 2d511f333d..28fe46754d 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterResource.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterResource.md @@ -30,15 +30,12 @@ which to add the resource. ### Example 1 -``` -PS C:\> Add-ClusterResource -Name resource1 -ResourceType "IP Address" -Group ClusterSrv1 -Name State Group ResourceType ----- ----- ----- ------------ -resource1 Offline ClusterSrv1 IP Address +```powershell +Add-ClusterResource -Name resource1 -ResourceType "IP Address" -Group ClusterSrv1 ``` -This example creates a new IP Address resource called resource1 on the local cluster. The cmdlet -configures the resource as part of the clustered role, or resource group, called ClusterSrv1. +This example creates a new IP Address resource called `resource1` on the local cluster. The cmdlet +configures the resource as part of the clustered role, or resource group, called `ClusterSrv1`. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterResourceDependency.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterResourceDependency.md index 3cc4f5dc1e..b6c0e7dd99 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterResourceDependency.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterResourceDependency.md @@ -35,15 +35,12 @@ is taken offline before the resources on which it depends. ### Example 1 -``` -PS C:\> Add-ClusterResourceDependency -Resource "FileServer-(cluster1FS12)" -Provider "Cluster Disk 4" -Name State Group ResourceType ----- ----- ----- ------------ -FileServer-(clus... Online cluster1FS12 File Server +```powershell +Add-ClusterResourceDependency -Resource "FileServer-(cluster1FS12)" -Provider "Cluster Disk 4" ``` -This example adds the resource named "Cluster Disk 4" to the list of resources on which the resource -called "FileServer-(cluster1FS12)" depends, using AND as the connector. +This example adds the resource named Cluster Disk 4 to the list of resources on which the resource +called `FileServer-(cluster1FS12)` depends. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterResourceType.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterResourceType.md index 0503bbdd58..440ec0b097 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterResourceType.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterResourceType.md @@ -38,27 +38,21 @@ Development Kit (SDK), other vendors can add support for other resource types. ### Example 1 -``` -PS C:\> Add-ClusterResourceType -Name ResType3 -InputObject C:\res3.dll -Name DisplayName ----- ----------- -ResType3 ResType3 +```powershell +Add-ClusterResourceType -Name ResType3 -InputObject C:\res3.dll ``` -This example creates ResType3 on the local cluster using res3.dll located on the provided resource -DLL file path C:\. +This example creates `ResType3` on the local cluster using `res3.dll` located on the provided +resource DLL file path `C:\`. ### Example 2 -``` -PS C:\> Add-ClusterResourceType -Name ResType4 -InputObject C:\res4.dll -DisplayName "Resource Type 4" -Name DisplayName ----- ----------- -ResType4 Resource Type 4 +```powershell +Add-ClusterResourceType -Name ResType4 -InputObject C:\res4.dll -DisplayName "Resource Type 4" ``` -This example creates ResType4 on the local cluster using res4.dll located on the provided resource -DLL file path C:\. The display name of the resource type is Resource Type 4. +This example creates `ResType4` on the local cluster using `res4.dll` located on the provided +resource DLL file path `C:\`. The display name of the resource type is `Resource Type 4`. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md index b3fabe307e..a71d8dd35f 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md @@ -38,29 +38,18 @@ services such as File Server Resource Manager (FSRM) or Distributed File System ### Example 1 ```powershell -PS C:\> Add-ClusterScaleOutFileServerRole +Add-ClusterScaleOutFileServerRole ``` -```output -Name OwnerNode State ----- --------- ----- -clusterSOFS CLUSTER-N2 Online -``` - This example creates a highly available scale-out file server role. ### Example 2 ```powershell -PS C:\> Add-ClusterScaleOutFileServerRole -Wait 0 -``` -```output -Name OwnerNode State ----- --------- ----- -clusterSOFS CLUSTER-N2 Pending +Add-ClusterScaleOutFileServerRole -Wait 0 ``` -This example creates a highly available scale out file server role. The cmdlet completes without -waiting for all resources to come online. +This example creates a highly available scale out file server role. +The cmdlet completes without waiting for all resources to come online. ### Example 3 diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolume.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolume.md index baf57e61bf..ea0842cfc3 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolume.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolume.md @@ -30,14 +30,11 @@ is, disks that have been added to the cluster but not assigned to a specific use ### Example 1 -``` -PS C:\> Add-ClusterSharedVolume -Name "Cluster Disk 4" -Name State Node ----- ----- ---- -Cluster Disk 4 Online node2 +```powershell +Add-ClusterSharedVolume -Name "Cluster Disk 4" ``` -This example adds Cluster Disk 4 to the Cluster Shared Volumes on the local cluster. +This example adds `Cluster Disk 4` to the Cluster Shared Volumes on the local cluster. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterVMMonitoredItem.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterVMMonitoredItem.md index 740aabb51c..ca457d4a17 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterVMMonitoredItem.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterVMMonitoredItem.md @@ -52,22 +52,24 @@ be restarted. ### Example 1 -``` -PS C:\> Add-ClusterVMMonitoredItem -VirtualMachine test-VM11 -EventLog "Microsoft-Windows-FailoverClustering-Manager/Admin" -EventSource "Microsoft-Windows-FailoverClustering-Manager" -EventId 4708 -Name ----- -Microsoft-Windows-FailoverClustering-Manager+Admin,Microsoft-Windows-FailoverClustering-Manager,4708 +```powershell +$parameters = @{ + VirtualMachine = 'test-VM11' + EventLog = 'Microsoft-Windows-FailoverClustering-Manager/Admin' + EventSource = 'Microsoft-Windows-FailoverClustering-Manager' + EventId = '4708' +} +Add-ClusterVMMonitoredItem @parameters ``` -This example adds monitoring for the ETW event ID 4708. +This example adds monitoring for the ETW event ID `4708`. This example uses splatting to pass +parameter values from the `$Parameters` variable to the command. Learn more about +[Splatting](/powershell/module/microsoft.powershell.core/about/about_splatting). ### Example 2 -``` -PS C:\> Add-ClusterVMMonitoredItem -VirtualMachine test-VM11 -Service spooler -Name ----- -Spooler +```powershell +Add-ClusterVMMonitoredItem -VirtualMachine test-VM11 -Service spooler ``` This example configures monitoring for the print spooler service. diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterVirtualMachineRole.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterVirtualMachineRole.md index c4da6fd574..af93422591 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterVirtualMachineRole.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterVirtualMachineRole.md @@ -46,35 +46,24 @@ virtual machine must be on the clustered disk used by that virtual machine. ### Example 1 -``` -PS C:\> Add-ClusterVirtualMachineRole -VirtualMachine VM1 -Name OwnerNode State ----- --------- ----- -Virtual Machine node1 Offline +```powershell +Add-ClusterVirtualMachineRole -VirtualMachine VM1 ``` -This example configures VM1 as a clustered virtual machine, and assigns a default name. +This example configures `VM1` as a clustered virtual machine, and assigns a default name. ### Example 2 -``` -PS C:\> Add-ClusterVirtualMachineRole -VirtualMachine VM1 -Name "MainServer1" -Name OwnerNode State ----- --------- ----- -MainServer1 node1 Offline +```powershell +Add-ClusterVirtualMachineRole -VirtualMachine VM1 -Name "MainServer1" ``` -This example configures VM1 as a clustered virtual machine, and assigns the name MainServer1. +This example configures `VM1` as a clustered virtual machine, and assigns the name `MainServer1`. ### Example 3 -``` -PS C:\> Get-VM -Name *print* | Add-ClusterVirtualMachineRole -Report file location: C:\Windows\cluster\Reports\Highly Available Virtual Machine 0ce88dce-eb6b-4c17-a512-d13bdbe5fcba on2011.11.28 At 15.37.33.mht - -Name OwnerNode State ----- --------- ----- -print-VM1 node1 Online +```powershell +Get-VM -Name *print* | Add-ClusterVirtualMachineRole ``` This example queries for virtual machines matching the wildcard characters `*print*` and configures diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusteriSCSITargetServerRole.md b/docset/winserver2022-ps/failoverclusters/Add-ClusteriSCSITargetServerRole.md index 70a75579c9..024fb38baf 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusteriSCSITargetServerRole.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusteriSCSITargetServerRole.md @@ -29,11 +29,8 @@ The `Add-ClusteriSCSITargetServerRole` cmdlet creates a highly available iSCSI T ### Example 1: Create a clustered target server -``` -PS C:\> Add-ClusteriSCSITargetServerRole -Storage "Cluster Disk 5" -Name OwnerNode State ----- --------- ----- -CLiSCSITarget node1 Online +```powershell +Add-ClusteriSCSITargetServerRole -Storage "Cluster Disk 5" ``` This example creates a clustered iSCSI Target server using Cluster Disk 5, and assigns a default @@ -41,23 +38,17 @@ name. ### Example 2 -``` -PS C:\> Add-ClusteriSCSITargetServerRole -Storage "Cluster Disk 5" -Name MyiSCSITarget -Name OwnerNode State ----- --------- ----- -MyiSCSITarget node1 Online +```powershell +Add-ClusteriSCSITargetServerRole -Storage "Cluster Disk 5" -Name MyiSCSITarget ``` This example creates a clustered iSCSI Target server using Cluster Disk 5, and assigns the name -MyiSCSITarget. +`MyiSCSITarget`. ### Example 3 -``` -PS C:\> Add-ClusteriSCSITargetServerRole -Storage "Cluster Disk 5" -Wait 0 -Name OwnerNode State ----- --------- ----- -CLiSCSITarget node1 Pending +```powershell +Add-ClusteriSCSITargetServerRole -Storage "Cluster Disk 5" -Wait 0 ``` This example creates a clustered iSCSI Target server using Cluster Disk 5, and assigns a default diff --git a/docset/winserver2022-ps/failoverclusters/Block-ClusterAccess.md b/docset/winserver2022-ps/failoverclusters/Block-ClusterAccess.md index be536dacaa..2ac5720e06 100644 --- a/docset/winserver2022-ps/failoverclusters/Block-ClusterAccess.md +++ b/docset/winserver2022-ps/failoverclusters/Block-ClusterAccess.md @@ -31,11 +31,11 @@ Windows PowerShell to view cluster settings (not change settings), then use the ### Example 1 -``` -PS C:\> Block-ClusterAccess -User contoso\johnj99 +```powershell +Block-ClusterAccess -User contoso\johnj99 ``` -This example prevents the user named johnj99 on the contoso domain from gaining access to the local +This example prevents the user named `johnj99` on the `contoso` domain from gaining access to the local cluster. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Clear-ClusterDiskReservation.md b/docset/winserver2022-ps/failoverclusters/Clear-ClusterDiskReservation.md index 77730e5a9f..a19e49604b 100644 --- a/docset/winserver2022-ps/failoverclusters/Clear-ClusterDiskReservation.md +++ b/docset/winserver2022-ps/failoverclusters/Clear-ClusterDiskReservation.md @@ -33,20 +33,20 @@ failover cluster. This cmdlet prompts for confirmation unless you specify the ** ### Example 1 -``` -PS C:\> Clear-ClusterDiskReservation -Disk 5 +```powershell +Clear-ClusterDiskReservation -Disk 5 ``` -This example clears the persistent reservation on Disk 5 on the local node after asking for user +This example clears the persistent reservation on `Disk 5` on the local node after asking for user confirmation. ### Example 2 -``` -C:\PS>Clear-ClusterDiskReservation -Disk 6 -Node node2 -Force +```powershell +Clear-ClusterDiskReservation -Disk 6 -Node node2 -Force ``` -This example clears the persistent reservation on Disk 6 on the node named node2 without asking for +This example clears the persistent reservation on `Disk 6` on the node named `node2` without asking for user confirmation. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Clear-ClusterNode.md b/docset/winserver2022-ps/failoverclusters/Clear-ClusterNode.md index 5b78810dd4..a579d48241 100644 --- a/docset/winserver2022-ps/failoverclusters/Clear-ClusterNode.md +++ b/docset/winserver2022-ps/failoverclusters/Clear-ClusterNode.md @@ -34,17 +34,17 @@ completely removed from a node that was evicted. ### Example 1 -``` -PS C:\> Clear-ClusterNode -Name node4 -Force +```powershell +Clear-ClusterNode -Name node4 -Force ``` -This example removes cluster configuration information from the node named node4 without asking for +This example removes cluster configuration information from the node named `node4` without asking for user confirmation. ### Example 2 -``` -PS C:\> Clear-ClusterNode +```powershell +Clear-ClusterNode ``` This example removes cluster configuration information from the local node after prompting for diff --git a/docset/winserver2022-ps/failoverclusters/Disable-ClusterStorageSpacesDirect.md b/docset/winserver2022-ps/failoverclusters/Disable-ClusterStorageSpacesDirect.md index e68dd51454..79d2255075 100644 --- a/docset/winserver2022-ps/failoverclusters/Disable-ClusterStorageSpacesDirect.md +++ b/docset/winserver2022-ps/failoverclusters/Disable-ClusterStorageSpacesDirect.md @@ -29,8 +29,8 @@ direct attached storage Storage Spaces Direct (S2D) on a cluster. ### Example 1: Disable Storage Spaces Direct -``` -PS C:\> Disable-ClusterStorageSpacesDirect +```powershell +Disable-ClusterStorageSpacesDirect ``` This command disables S2D on the cluster. diff --git a/docset/winserver2022-ps/failoverclusters/Enable-ClusterStorageSpacesDirect.md b/docset/winserver2022-ps/failoverclusters/Enable-ClusterStorageSpacesDirect.md index 48467e153e..2565394180 100644 --- a/docset/winserver2022-ps/failoverclusters/Enable-ClusterStorageSpacesDirect.md +++ b/docset/winserver2022-ps/failoverclusters/Enable-ClusterStorageSpacesDirect.md @@ -53,7 +53,7 @@ directly attached storage Storage Spaces Direct (S2D) on a cluster. ### Example 1: Enable Storage Spaces Direct ```powershell -PS C:\> Enable-ClusterStorageSpacesDirect +Enable-ClusterStorageSpacesDirect ``` This command enables S2D on the cluster. @@ -61,10 +61,10 @@ This command enables S2D on the cluster. ### Example 2: Enable Storage Spaces Direct specifying a Friendly Name ```powershell -PS C:\> Enable-ClusterStorageSpacesDirect -PoolFriendlyName 'Sales' +Enable-ClusterStorageSpacesDirect -PoolFriendlyName 'Sales' ``` -This command enables S2d on the cluster and sets a friendly name for the Storage Spaces Direct pool. +This command enables S2D on the cluster and sets a friendly name for the Storage Spaces Direct pool. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Get-Cluster.md b/docset/winserver2022-ps/failoverclusters/Get-Cluster.md index 058ff4200b..e8ab08e92e 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-Cluster.md +++ b/docset/winserver2022-ps/failoverclusters/Get-Cluster.md @@ -37,105 +37,48 @@ appropriate property on that cluster object directly. ### Example 1 -``` -PS C:\> Get-Cluster | Format-List -Property * -Domain : contoso.com -Name : cluster1 -AddEvictDelay : 60 -BackupInProgress : 0 -ClusSvcHangTimeout : 60 -ClusSvcRegroupOpeningTimeout : 5 -ClusSvcRegroupPruningTimeout : 5 -ClusSvcRegroupStageTimeout : 5 -ClusSvcRegroupTickInMilliseconds : 300 -ClusterGroupWaitDelay : 120 -MinimumNeverPreemptPriority : 3000 -MinimumPreemptorPriority : 1 -ClusterEnforcedAntiAffinity : 0 -ClusterLogLevel : 3 -ClusterLogSize : 300 -CrossSubnetDelay : 1000 -CrossSubnetThreshold : 5 -DefaultNetworkRole : 2 -Description : -FixQuorum : 0 -HangRecoveryAction : 3 -IgnorePersistentStateOnStartup : 0 -LogResourceControls : 0 -PlumbAllCrossSubnetRoutes : 0 -PreventQuorum : 0 -QuarantineDuration : 7200 -QuarantineThreshold : 3 -QuorumArbitrationTimeMax : 20 -RequestReplyTimeout : 60 -RootMemoryReserved : 4294967295 -RouteHistoryLength : 0 -SameSubnetDelay : 1000 -SameSubnetThreshold : 5 -SecurityLevel : 1 -SharedVolumeCompatibleFilters : {} -SharedVolumeIncompatibleFilters : {} -SharedVolumesRoot : C:\ClusterStorage -SharedVolumeSecurityDescriptor : {1, 0, 4, 128...} -ShutdownTimeoutInMinutes : 20 -UseNetftForSharedVolumes : 1 -UseClientAccessNetworksForSharedVolumes : 0 -SharedVolumeBlockCacheSizeInMB : 0 -WitnessDatabaseWriteTimeout : 300 -WitnessRestartInterval : 15 -EnableSharedVolumes : Enabled -DynamicQuorum : 1 -Id : af5881ef-0ff7-4b5c-bfed-098decbbf762 +```powershell +Get-Cluster | Format-List -Property * ``` This example displays state and property information for the local cluster in the form of a list. ### Example 2 -``` -PS C:\> Get-Cluster -Name cluster1 -Name ----- -cluster1 +```powershell +Get-Cluster -Name cluster1 ``` -This example gets information about a cluster named cluster1. +This example gets information about a cluster named `cluster1`. ### Example 3 -``` -PS C:\> Get-Cluster -Domain contoso.com -Name ----- -cluster1 -cluster2 -cluster3 +```powershell +Get-Cluster -Domain contoso.com ``` -This example gets information about each of the clusters in the contoso.com domain. +This example gets information about each of the clusters in the `contoso.com` domain. ### Example 4 -``` -PS C:\> Get-Cluster | ForEach-Object -Process {$_.CrossSubnetDelay = 1500} +```powershell +Get-Cluster | ForEach-Object -Process {$_.CrossSubnetDelay = 1500} ``` -This example sets the common property called CrossSubnetDelay for the local cluster to 1500. +This example sets the common property called `CrossSubnetDelay` for the local cluster to `1500`. ### Example 5 -``` -PS C:\> (Get-Cluster).DynamicQuorum = 1 +```powershell +(Get-Cluster).DynamicQuorum = 1 ``` This example enables the Dynamic Quorum feature for the cluster. ### Example 6 -``` -PS C:\> Get-Cluster | Format-List -Property Quarantine* -QuarantineDuration : 7200 -QuarantineThreshold : 3 +```powershell +Get-Cluster | Format-List -Property Quarantine* ``` This example shows default values for **QuarantineThreshold** and **QuarantineDuration** for the diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterAccess.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterAccess.md index 20f28b52ad..d80934c953 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterAccess.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterAccess.md @@ -32,16 +32,8 @@ PowerShell cmdlets that provide information about the cluster. ### Example 1 -``` -PS C:\> Get-ClusterAccess -IdentityReference AccessControlType ClusterRights ------------------ ----------------- ------------- -CONTOSO\user1 Deny Full -NT AUTHORITY\SYSTEM Allow Full -NT AUTHORITY\NETWORK SE... Allow Full -BUILTIN\Administrators Allow Full -CONTOSO\user2 Allow Read -NT SERVICE\MSDTC Allow Full +```powershell +Get-ClusterAccess ``` This example lists the level of permissions that have been assigned to users of this cluster, diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterAvailableDisk.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterAvailableDisk.md index 6df5ec1fca..dd435e7ab6 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterAvailableDisk.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterAvailableDisk.md @@ -35,35 +35,16 @@ disk, and shouldn't be exposed to any other servers. ### Example 1 -``` -PS C:\> Get-ClusterAvailableDisk -Cluster : cluster1 -Id : 2654136007 -Name : Cluster Disk 4 -Number : 7 -ScsiAddress : 50331651 -Size : 2097152000 -Partitions : {\\?\GLOBALROOT\Device\Harddisk7\Partition1\} - -Cluster : cluster1 -Id : 2654136015 -Name : Cluster Disk 5 -Number : 9 -ScsiAddress : 67108867 -Size : 2097152000 -Partitions : {\\?\GLOBALROOT\Device\Harddisk9\Partition1\} +```powershell +Get-ClusterAvailableDisk ``` This example lists the disks that are ready to be added to the cluster. ### Example 2 -``` -PS C:\> Get-ClusterAvailableDisk | Add-ClusterDisk -Name State Group ResourceType ----- ----- ----- ------------ -Cluster Disk 4 OnlinePending Available Storage Physical Disk -Cluster Disk 5 OnlinePending Available Storage Physical Disk +```powershell +Get-ClusterAvailableDisk | Add-ClusterDisk ``` This example adds all disks that are ready to be added to the local cluster. diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterCheckpoint.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterCheckpoint.md index 28b7808ff3..f7864c63d3 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterCheckpoint.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterCheckpoint.md @@ -36,26 +36,19 @@ local server. ### Example 1 -``` -PS C:\> Get-ClusterCheckpoint -Resource Name Type Key --------- ---- ---- --- -Cluster Name Microsoft Enhanced Cryptog... b5a571f2-c28b-48fa-b82f-a8... -Cluster Name software\clusname +```powershell +Get-ClusterCheckpoint ``` This example retrieves all cluster checkpoints. ### Example 2 -``` -PS C:\> Get-ClusterResource -ResourceName "Cluster Name" | Get-ClusterCheckpoint -CryptoCheckpoint -Resource Name Type Key --------- ---- ---- --- -Cluster Name Microsoft Enhanced Cryptog... b5a571f2-c28b-48fa-b82f-a8... +```powershell +Get-ClusterResource -ResourceName "Cluster Name" | Get-ClusterCheckpoint -CryptoCheckpoint ``` -This example retrieves the cryptographic checkpoints for the resource named Cluster Name. +This example retrieves the cryptographic checkpoints for the resource named `Cluster Name`. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterDiagnosticInfo.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterDiagnosticInfo.md index 871fefc3fb..3ce6ddd105 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterDiagnosticInfo.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterDiagnosticInfo.md @@ -38,12 +38,11 @@ machines and produces a zip file containing the data. ### Example 1: Write diagnostic info to the specified path -``` -PS C:\> Get-ClusterDiagnosticInfo -WriteToPath "C:\Users\MyUser\HealthTest\" -Writing to path : C:\Users\MyUser\HealthTest\ +```powershell +Get-ClusterDiagnosticInfo -WriteToPath "C:\Users\MyUser\HealthTest\" ``` -This command gets and writes the cluster Diagnostics to the folder C:\Users\MyUser\HealthTest\. +This command gets and writes the cluster Diagnostics to the folder `C:\Users\MyUser\HealthTest\`. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterFaultDomain.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterFaultDomain.md index f357adbd97..eb65989e86 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterFaultDomain.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterFaultDomain.md @@ -28,11 +28,8 @@ The `Get-ClusterFaultDomain` cmdlet gets the cluster fault domains in a cluster. ### Example 1: Get all fault domains in the cluster -``` -PS C:\> Get-ClusterFaultDomain -Name Type ParentName ChildrenNames ----- ---- ---------- ------------- -CONTOSO-VM-1101 Node +```powershell +Get-ClusterFaultDomain ``` This command gets all the fault domains in the cluster. From abead04b326d525e7d2559c12a4baf6f4d7d4486 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Tue, 22 Nov 2022 15:05:11 +0000 Subject: [PATCH 324/965] Minor formatting and ms.date update --- .../failoverclusters/Add-ClusterCheckpoint.md | 2 +- .../winserver2022-ps/failoverclusters/Add-ClusterDisk.md | 6 +++--- .../failoverclusters/Add-ClusterFileServerRole.md | 8 ++++---- .../failoverclusters/Add-ClusterGenericApplicationRole.md | 2 +- .../failoverclusters/Add-ClusterGenericScriptRole.md | 4 ++-- .../failoverclusters/Add-ClusterGenericServiceRole.md | 4 ++-- .../winserver2022-ps/failoverclusters/Add-ClusterGroup.md | 2 +- .../failoverclusters/Add-ClusterGroupSetDependency.md | 2 +- .../failoverclusters/Add-ClusterGroupToSet.md | 2 +- .../winserver2022-ps/failoverclusters/Add-ClusterNode.md | 2 +- .../failoverclusters/Add-ClusterResource.md | 2 +- .../failoverclusters/Add-ClusterResourceDependency.md | 4 ++-- .../failoverclusters/Add-ClusterResourceType.md | 2 +- .../failoverclusters/Add-ClusterScaleOutFileServerRole.md | 2 +- .../failoverclusters/Add-ClusterSharedVolume.md | 2 +- .../failoverclusters/Add-ClusterVMMonitoredItem.md | 2 +- .../failoverclusters/Add-ClusterVirtualMachineRole.md | 2 +- .../failoverclusters/Add-ClusteriSCSITargetServerRole.md | 8 ++++---- .../failoverclusters/Block-ClusterAccess.md | 2 +- .../failoverclusters/Clear-ClusterDiskReservation.md | 2 +- .../failoverclusters/Clear-ClusterNode.md | 2 +- .../Disable-ClusterStorageSpacesDirect.md | 2 +- .../failoverclusters/Enable-ClusterStorageSpacesDirect.md | 2 +- docset/winserver2022-ps/failoverclusters/Get-Cluster.md | 2 +- .../failoverclusters/Get-ClusterAccess.md | 2 +- .../failoverclusters/Get-ClusterAvailableDisk.md | 2 +- .../failoverclusters/Get-ClusterCheckpoint.md | 2 +- .../failoverclusters/Get-ClusterDiagnosticInfo.md | 2 +- .../failoverclusters/Get-ClusterFaultDomain.md | 2 +- 29 files changed, 40 insertions(+), 40 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterCheckpoint.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterCheckpoint.md index dccf280f6c..51a9976c2b 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterCheckpoint.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterCheckpoint.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustercheckpoint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterCheckpoint diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterDisk.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterDisk.md index f9ea0216d4..7326405675 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterDisk.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterDisk.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusterdisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterDisk @@ -56,8 +56,8 @@ specific SCSI address, and adds it to Available Storage cluster group. Get-Disk -Number 11 | Add-ClusterDisk ``` -This example clusters a physical disk. This cmdlet adds a physical disk to the cluster _Available -Storage _. +This example clusters a physical disk. This cmdlet adds a physical disk to the cluster +_Available Storage_. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterFileServerRole.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterFileServerRole.md index 974a07138d..b6dec92a4d 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterFileServerRole.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterFileServerRole.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusterfileserverrole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterFileServerRole @@ -42,7 +42,7 @@ clustered file server should use. Add-ClusterFileServerRole -Storage "Cluster Disk 8" ``` -This example creates a clustered file server using Cluster Disk 8, and assigns a default name. +This example creates a clustered file server using `Cluster Disk 8`, and assigns a default name. ### Example 2: Create and name a clustered file server @@ -50,7 +50,7 @@ This example creates a clustered file server using Cluster Disk 8, and assigns a Add-ClusterFileServerRole -Storage "Cluster Disk 6" -Name cluster1FS12 ``` -This example creates a clustered file server using Cluster Disk 6, and assigns the name +This example creates a clustered file server using `Cluster Disk 6`, and assigns the name `cluster1FS12`. ### Example 3: Create a clustered file server with no waiting for resources @@ -59,7 +59,7 @@ This example creates a clustered file server using Cluster Disk 6, and assigns t Add-ClusterFileServerRole -Storage "Cluster Disk 8" -Wait 0 ``` -This example creates a clustered file server using Cluster Disk 8, and assigns a default name. +This example creates a clustered file server using `Cluster Disk 8`, and assigns a default name. The cmdlet completes without waiting for all resources to come online. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericApplicationRole.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericApplicationRole.md index aaabec4a65..107b71a8ab 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericApplicationRole.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericApplicationRole.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustergenericapplicationrole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterGenericApplicationRole diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericScriptRole.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericScriptRole.md index 6d3d48ed78..75ca44412a 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericScriptRole.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericScriptRole.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustergenericscriptrole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterGenericScriptRole @@ -53,7 +53,7 @@ Add-ClusterGenericScriptRole -ScriptFilePath "script1.vbs" -Storage "Cluster Dis ``` This example configures the script named `script1.vbs` to run within a failover cluster and use -Cluster Disk 4. The cmdlet assigns the clustered script the name script1. +`Cluster Disk 4`. The cmdlet assigns the clustered script the name script1. ### Example 3: Configure a script to run on a fail over cluster without waiting for resources diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericServiceRole.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericServiceRole.md index 8cadb7497e..086af8c250 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericServiceRole.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterGenericServiceRole.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustergenericservicerole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterGenericServiceRole @@ -52,7 +52,7 @@ address, and doesn't assign a disk. Add-ClusterGenericServiceRole -ServiceName "Service1" -Storage "Cluster Disk 6" ``` -This example configures Service1 as a generic clustered service using Cluster Disk 6, and assigns +This example configures Service1 as a generic clustered service using `Cluster Disk 6`, and assigns defaults for the name and IP address. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterGroup.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterGroup.md index a4263d74a9..404e1ee423 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterGroup.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterGroup.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustergroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterGroup diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupSetDependency.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupSetDependency.md index ed3360928c..4315bd2ce2 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupSetDependency.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupSetDependency.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterCollection.cdxml-help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustergroupsetdependency?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterGroupSetDependency diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupToSet.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupToSet.md index 18a686fe2c..3ef301b854 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupToSet.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupToSet.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterCollection.cdxml-help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustergrouptoset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterGroupToSet diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterNode.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterNode.md index 4a28c083d3..4e4d8628fc 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterNode.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterNode.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusternode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterNode diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterResource.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterResource.md index 28fe46754d..4862f81828 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterResource.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterResource.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusterresource?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterResource diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterResourceDependency.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterResourceDependency.md index b6c0e7dd99..1755d22fd8 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterResourceDependency.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterResourceDependency.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusterresourcedependency?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterResourceDependency @@ -39,7 +39,7 @@ is taken offline before the resources on which it depends. Add-ClusterResourceDependency -Resource "FileServer-(cluster1FS12)" -Provider "Cluster Disk 4" ``` -This example adds the resource named Cluster Disk 4 to the list of resources on which the resource +This example adds the resource named `Cluster Disk 4` to the list of resources on which the resource called `FileServer-(cluster1FS12)` depends. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterResourceType.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterResourceType.md index 440ec0b097..ed7105b996 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterResourceType.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterResourceType.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusterresourcetype?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterResourceType diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md index a71d8dd35f..1dcb89538c 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterScaleOutFileServerRole.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusterscaleoutfileserverrole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterScaleOutFileServerRole diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolume.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolume.md index ea0842cfc3..b97e029476 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolume.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolume.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustersharedvolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterSharedVolume diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterVMMonitoredItem.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterVMMonitoredItem.md index ca457d4a17..843a1b3a6c 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterVMMonitoredItem.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterVMMonitoredItem.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustervmmonitoreditem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterVMMonitoredItem diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterVirtualMachineRole.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterVirtualMachineRole.md index af93422591..83e264702a 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterVirtualMachineRole.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterVirtualMachineRole.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustervirtualmachinerole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterVirtualMachineRole diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusteriSCSITargetServerRole.md b/docset/winserver2022-ps/failoverclusters/Add-ClusteriSCSITargetServerRole.md index 024fb38baf..b34106c245 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusteriSCSITargetServerRole.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusteriSCSITargetServerRole.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clusteriscsitargetserverrole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusteriSCSITargetServerRole @@ -33,7 +33,7 @@ The `Add-ClusteriSCSITargetServerRole` cmdlet creates a highly available iSCSI T Add-ClusteriSCSITargetServerRole -Storage "Cluster Disk 5" ``` -This example creates a clustered iSCSI Target server using Cluster Disk 5, and assigns a default +This example creates a clustered iSCSI Target server using `Cluster Disk 5`, and assigns a default name. ### Example 2 @@ -42,7 +42,7 @@ name. Add-ClusteriSCSITargetServerRole -Storage "Cluster Disk 5" -Name MyiSCSITarget ``` -This example creates a clustered iSCSI Target server using Cluster Disk 5, and assigns the name +This example creates a clustered iSCSI Target server using `Cluster Disk 5`, and assigns the name `MyiSCSITarget`. ### Example 3 @@ -51,7 +51,7 @@ This example creates a clustered iSCSI Target server using Cluster Disk 5, and a Add-ClusteriSCSITargetServerRole -Storage "Cluster Disk 5" -Wait 0 ``` -This example creates a clustered iSCSI Target server using Cluster Disk 5, and assigns a default +This example creates a clustered iSCSI Target server using `Cluster Disk 5`, and assigns a default name. The cmdlet completes without waiting for all resources to come online. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Block-ClusterAccess.md b/docset/winserver2022-ps/failoverclusters/Block-ClusterAccess.md index 2ac5720e06..7b635a947b 100644 --- a/docset/winserver2022-ps/failoverclusters/Block-ClusterAccess.md +++ b/docset/winserver2022-ps/failoverclusters/Block-ClusterAccess.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/block-clusteraccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Block-ClusterAccess diff --git a/docset/winserver2022-ps/failoverclusters/Clear-ClusterDiskReservation.md b/docset/winserver2022-ps/failoverclusters/Clear-ClusterDiskReservation.md index a19e49604b..e8f269a78c 100644 --- a/docset/winserver2022-ps/failoverclusters/Clear-ClusterDiskReservation.md +++ b/docset/winserver2022-ps/failoverclusters/Clear-ClusterDiskReservation.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/clear-clusterdiskreservation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-ClusterDiskReservation diff --git a/docset/winserver2022-ps/failoverclusters/Clear-ClusterNode.md b/docset/winserver2022-ps/failoverclusters/Clear-ClusterNode.md index a579d48241..b708b1d881 100644 --- a/docset/winserver2022-ps/failoverclusters/Clear-ClusterNode.md +++ b/docset/winserver2022-ps/failoverclusters/Clear-ClusterNode.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/clear-clusternode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Clear-ClusterNode diff --git a/docset/winserver2022-ps/failoverclusters/Disable-ClusterStorageSpacesDirect.md b/docset/winserver2022-ps/failoverclusters/Disable-ClusterStorageSpacesDirect.md index 79d2255075..57a17753e7 100644 --- a/docset/winserver2022-ps/failoverclusters/Disable-ClusterStorageSpacesDirect.md +++ b/docset/winserver2022-ps/failoverclusters/Disable-ClusterStorageSpacesDirect.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterStorageSpacesDirect.cdxml-help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/disable-clusterstoragespacesdirect?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-ClusterStorageSpacesDirect diff --git a/docset/winserver2022-ps/failoverclusters/Enable-ClusterStorageSpacesDirect.md b/docset/winserver2022-ps/failoverclusters/Enable-ClusterStorageSpacesDirect.md index 2565394180..b204a68942 100644 --- a/docset/winserver2022-ps/failoverclusters/Enable-ClusterStorageSpacesDirect.md +++ b/docset/winserver2022-ps/failoverclusters/Enable-ClusterStorageSpacesDirect.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Storage Spaces Direct with Windows PowerShell. external help file: ClusterStorageSpacesDirect.cdxml-help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/enable-clusterstoragespacesdirect?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-ClusterStorageSpacesDirect diff --git a/docset/winserver2022-ps/failoverclusters/Get-Cluster.md b/docset/winserver2022-ps/failoverclusters/Get-Cluster.md index e8ab08e92e..a851010ffb 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-Cluster.md +++ b/docset/winserver2022-ps/failoverclusters/Get-Cluster.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-cluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-Cluster diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterAccess.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterAccess.md index d80934c953..b70cb4f629 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterAccess.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterAccess.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusteraccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterAccess diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterAvailableDisk.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterAvailableDisk.md index dd435e7ab6..598bbfaf60 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterAvailableDisk.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterAvailableDisk.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusteravailabledisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterAvailableDisk diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterCheckpoint.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterCheckpoint.md index f7864c63d3..f20a1e0f58 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterCheckpoint.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterCheckpoint.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clustercheckpoint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterCheckpoint diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterDiagnosticInfo.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterDiagnosticInfo.md index 3ce6ddd105..67ac5aee37 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterDiagnosticInfo.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterDiagnosticInfo.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell-help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterdiagnosticinfo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterDiagnosticInfo diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterFaultDomain.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterFaultDomain.md index eb65989e86..4f51275df6 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterFaultDomain.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterFaultDomain.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterFaultDomain.cdxml-help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterfaultdomain?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterFaultDomain From f4dee919a3bed7b76af94b8108ca8ad3fda819c0 Mon Sep 17 00:00:00 2001 From: "microsoft-github-policy-service[bot]" <77245923+microsoft-github-policy-service[bot]@users.noreply.github.com> Date: Fri, 25 Nov 2022 06:23:08 +0000 Subject: [PATCH 325/965] Microsoft mandatory file --- SECURITY.md | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 SECURITY.md diff --git a/SECURITY.md b/SECURITY.md new file mode 100644 index 0000000000..e138ec5d6a --- /dev/null +++ b/SECURITY.md @@ -0,0 +1,41 @@ + + +## Security + +Microsoft takes the security of our software products and services seriously, which includes all source code repositories managed through our GitHub organizations, which include [Microsoft](https://github.com/microsoft), [Azure](https://github.com/Azure), [DotNet](https://github.com/dotnet), [AspNet](https://github.com/aspnet), [Xamarin](https://github.com/xamarin), and [our GitHub organizations](https://opensource.microsoft.com/). + +If you believe you have found a security vulnerability in any Microsoft-owned repository that meets [Microsoft's definition of a security vulnerability](https://aka.ms/opensource/security/definition), please report it to us as described below. + +## Reporting Security Issues + +**Please do not report security vulnerabilities through public GitHub issues.** + +Instead, please report them to the Microsoft Security Response Center (MSRC) at [https://msrc.microsoft.com/create-report](https://aka.ms/opensource/security/create-report). + +If you prefer to submit without logging in, send email to [secure@microsoft.com](mailto:secure@microsoft.com). If possible, encrypt your message with our PGP key; please download it from the [Microsoft Security Response Center PGP Key page](https://aka.ms/opensource/security/pgpkey). + +You should receive a response within 24 hours. If for some reason you do not, please follow up via email to ensure we received your original message. Additional information can be found at [microsoft.com/msrc](https://aka.ms/opensource/security/msrc). + +Please include the requested information listed below (as much as you can provide) to help us better understand the nature and scope of the possible issue: + + * Type of issue (e.g. buffer overflow, SQL injection, cross-site scripting, etc.) + * Full paths of source file(s) related to the manifestation of the issue + * The location of the affected source code (tag/branch/commit or direct URL) + * Any special configuration required to reproduce the issue + * Step-by-step instructions to reproduce the issue + * Proof-of-concept or exploit code (if possible) + * Impact of the issue, including how an attacker might exploit the issue + +This information will help us triage your report more quickly. + +If you are reporting for a bug bounty, more complete reports can contribute to a higher bounty award. Please visit our [Microsoft Bug Bounty Program](https://aka.ms/opensource/security/bounty) page for more details about our active programs. + +## Preferred Languages + +We prefer all communications to be in English. + +## Policy + +Microsoft follows the principle of [Coordinated Vulnerability Disclosure](https://aka.ms/opensource/security/cvd). + + From 646dda11c69d6469dfcfda98575c55b15b56f27d Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Wed, 23 Nov 2022 10:30:48 +0000 Subject: [PATCH 326/965] Bulk update of examples --- .../failoverclusters/Start-ClusterResource.md | 22 +++++------- .../failoverclusters/Stop-Cluster.md | 12 +++---- .../failoverclusters/Stop-ClusterGroup.md | 11 +++--- .../failoverclusters/Stop-ClusterNode.md | 20 ++++------- .../failoverclusters/Stop-ClusterResource.md | 13 +++---- .../failoverclusters/Suspend-ClusterNode.md | 36 +++++++------------ .../Suspend-ClusterResource.md | 20 ++++------- .../failoverclusters/Test-Cluster.md | 7 ++-- .../Test-ClusterResourceFailure.md | 11 +++--- .../Update-ClusterFunctionalLevel.md | 20 ++++------- .../Update-ClusterIPResource.md | 30 ++++++---------- .../Update-ClusterNetworkNameResource.md | 9 ++--- ...date-ClusterVirtualMachineConfiguration.md | 24 +++++-------- 13 files changed, 87 insertions(+), 148 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/Start-ClusterResource.md b/docset/winserver2022-ps/failoverclusters/Start-ClusterResource.md index d30049f995..56e387168a 100644 --- a/docset/winserver2022-ps/failoverclusters/Start-ClusterResource.md +++ b/docset/winserver2022-ps/failoverclusters/Start-ClusterResource.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 11/23/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/start-clusterresource?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-ClusterResource @@ -29,28 +29,22 @@ resource is brought online, any resources that it depends are brought online. ### Example 1 -``` -PS C:\> Start-ClusterResource -Name "IP Address 172.24.11.0" -Name State Group ResourceType ----- ----- ----- ------------ -IP Address 172.2... Online cluster1FS12 IP Address +```powershell +Start-ClusterResource -Name "IP Address 172.24.11.0" ``` -This example brings the resource called IP Address 172.24.11.0 online on the local cluster. Before +This example brings the resource called `IP Address 172.24.11.0` online on the local cluster. Before bringing the resource online, this cmdlet brings online any resources on which the resource depends. ### Example 2 -``` -PS C:\> Start-ClusterResource -Name "IP Address 172.24.11.0" -Wait 0 -Name State Group ResourceType ----- ----- ----- ------------ -IP Address 172.2... OnlinePending cluster1FS12 IP Address +```powershell +Start-ClusterResource -Name "IP Address 172.24.11.0" -Wait 0 ``` -This example brings the resource called IP Address 172.24.11.0 online on the local cluster. Before +This example brings the resource called `IP Address 172.24.11.0` online on the local cluster. Before bringing the resource online, this cmdlet brings online any resources on which the resource depends. -The Windows PowerShell® prompt returns as soon as the action has been initiated. +The Windows PowerShell prompt returns as soon as the action has been initiated. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Stop-Cluster.md b/docset/winserver2022-ps/failoverclusters/Stop-Cluster.md index 37ae91f22e..3c4a4b6d07 100644 --- a/docset/winserver2022-ps/failoverclusters/Stop-Cluster.md +++ b/docset/winserver2022-ps/failoverclusters/Stop-Cluster.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 11/23/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/stop-cluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-Cluster @@ -40,8 +40,8 @@ the cluster when the Cluster service is running on that node. ### Example 1: Stop Cluster service on all nodes of the local cluster -``` -PS C:\> Stop-Cluster +```powershell +Stop-Cluster ``` This example stops the Cluster service on all nodes in the local cluster, which will stop all @@ -49,11 +49,11 @@ services and applications configured in the cluster. ### Example 2: Stop Cluster service on all nodes of a cluster -``` -PS C:\> Stop-Cluster -Name cluster1 +```powershell +Stop-Cluster -Name cluster1 ``` -This example stops the Cluster service on all nodes in the cluster named cluster1, which will stop +This example stops the Cluster service on all nodes in the cluster named `cluster1`, which will stop all services and applications configured in the cluster. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Stop-ClusterGroup.md b/docset/winserver2022-ps/failoverclusters/Stop-ClusterGroup.md index 374b63cf95..dd5cf0d420 100644 --- a/docset/winserver2022-ps/failoverclusters/Stop-ClusterGroup.md +++ b/docset/winserver2022-ps/failoverclusters/Stop-ClusterGroup.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 11/23/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/stop-clustergroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-ClusterGroup @@ -32,14 +32,11 @@ fashion by using this cmdlet. ### Example 1: Stop a clustered role on the local cluster -``` -PS C:\> Stop-ClusterGroup FileServer1 -Name OwnerNode State ----- --------- ----- -FileServer1 node1 Offline +```powershell +Stop-ClusterGroup FileServer1 ``` -This example stops the clustered role, or resource group, called FileServer1 on the local cluster. +This example stops the clustered role, or resource group, called `FileServer1` on the local cluster. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Stop-ClusterNode.md b/docset/winserver2022-ps/failoverclusters/Stop-ClusterNode.md index a6ad519888..5457e52788 100644 --- a/docset/winserver2022-ps/failoverclusters/Stop-ClusterNode.md +++ b/docset/winserver2022-ps/failoverclusters/Stop-ClusterNode.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 11/23/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/stop-clusternode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-ClusterNode @@ -33,25 +33,19 @@ authentication on the server computer. ### Example 1: Stop Cluster service on a local cluster node -``` -PS C:\> Stop-ClusterNode -Name "node3" -Name State ----- ----- -node3 Down +```powershell +Stop-ClusterNode -Name "node3" ``` -This example stops the Cluster service on the node named node3 of the local cluster. +This example stops the Cluster service on the node named `node3` of the local cluster. ### Example 2: Stop Cluster service on a cluster node -``` -PS C:\> Stop-ClusterNode -Name "node1" -Cluster "cluster2" -Name State ----- ----- -node1 Down +```powershell +Stop-ClusterNode -Name "node1" -Cluster "cluster2" ``` -This example stops the Cluster service on the node named node1 on the cluster named cluster2. +This example stops the Cluster service on the node named `node1` on the cluster named `cluster2`. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Stop-ClusterResource.md b/docset/winserver2022-ps/failoverclusters/Stop-ClusterResource.md index cb4cebd43a..1b357f1cb9 100644 --- a/docset/winserver2022-ps/failoverclusters/Stop-ClusterResource.md +++ b/docset/winserver2022-ps/failoverclusters/Stop-ClusterResource.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 11/23/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/stop-clusterresource?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Stop-ClusterResource @@ -29,15 +29,12 @@ resource is taken offline, any resources that depend on it are taken offline. ### Example 1: Take a resource offline -``` -PS C:\> Stop-ClusterResource "IP Address 10.24.11.0" -Name State Group ResourceType ----- ----- ----- ------------ -IP Address 10.2... Offline cluster1FS12 IP Address +```powershell +Stop-ClusterResource "IP Address 10.24.11.0" ``` -This example takes the resource called IP Address 10.24.11.0 offline on the local cluster. Before -taking the resource offline, it takes offline any dependent resources. +This example takes the resource called `IP Address 10.24.11.0` offline on the local cluster. +Before taking the resource offline, it takes offline any dependent resources. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Suspend-ClusterNode.md b/docset/winserver2022-ps/failoverclusters/Suspend-ClusterNode.md index 7fb5ea536b..d8c2e11691 100644 --- a/docset/winserver2022-ps/failoverclusters/Suspend-ClusterNode.md +++ b/docset/winserver2022-ps/failoverclusters/Suspend-ClusterNode.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 11/23/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/suspend-clusternode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-ClusterNode @@ -35,45 +35,35 @@ stop, not pause, the Cluster service on that node. ### Example 1: Pause a node of the local cluster -``` -PS C:\> Suspend-ClusterNode -Name "node1" -Name State ----- ----- -node1 Paused +```powershell +Suspend-ClusterNode -Name "node1" ``` -This example pauses the node named node1 on the local cluster. +This example pauses the node named `node1` on the local cluster. ### Example 2: Pause a node of a cluster -``` -PS C:\> Suspend-ClusterNode "node2" -Cluster "cluster2" -Name State ----- ----- -node2 Paused +```powershell +Suspend-ClusterNode "node2" -Cluster "cluster2" ``` -This example pauses the node named node2 on the cluster named cluster2. +This example pauses the node named `node2` on the cluster named `cluster2`. ### Example 3: Pause a node and move its workloads -``` -PS C:\> Suspend-ClusterNode -Name "node1" -Target "node2" -Drain -Name State ----- ----- -node1 Paused +```powershell +Suspend-ClusterNode -Name "node1" -Target "node2" -Drain ``` -This example pauses the node named node1 and moves the workloads from it to the node named node2. +This example pauses the node named `node1` and moves the workloads from it to the node named `node2`. ### Example 4: Preview a pause operation -``` -PS C:\> Suspend-ClusterNode node1 -Drain -WhatIf -What if: Performing operation "Suspend-ClusterNode" on Target "node1". +```powershell +Suspend-ClusterNode node1 -Drain -WhatIf ``` -This example provides a preview of the operation that will be performed on the node named node1. +This example provides a preview of the operation that will be performed on the node named `node1`. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Suspend-ClusterResource.md b/docset/winserver2022-ps/failoverclusters/Suspend-ClusterResource.md index 433fda4f67..a7e277e1d1 100644 --- a/docset/winserver2022-ps/failoverclusters/Suspend-ClusterResource.md +++ b/docset/winserver2022-ps/failoverclusters/Suspend-ClusterResource.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 11/23/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/suspend-clusterresource?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Suspend-ClusterResource @@ -34,26 +34,20 @@ dependent resources offline, which interrupts client access. For other disks, Lo ### Example 1: Turn on maintenance for a CSV -``` -PS C:\> Suspend-ClusterResource -Name "Cluster Disk 2" -Name State Group ResourceType ----- ----- ----- ------------ -Cluster Disk 2 Online(Maintenance) Available Storage Physical Disk +```powershell +Suspend-ClusterResource -Name "Cluster Disk 2" ``` -This example turns on maintenance for CSV named Cluster Disk 2 so that you can run a disk +This example turns on maintenance for CSV named `Cluster Disk 2` so that you can run a disk maintenance tool without triggering failover. ### Example 2: Turn on maintenance for multiple volumes -``` -PS C:\> Get-ClusterSharedVolume -Name "Cluster Disk 5" | Suspend-ClusterResource -Name State Node ----- ----- ---- -Cluster Disk 5 Online node2 +```powershell +Get-ClusterSharedVolume -Name "Cluster Disk 5" | Suspend-ClusterResource ``` -This example turns on maintenance for all volumes on the CSV named Cluster Disk 5. +This example turns on maintenance for all volumes on the CSV named `Cluster Disk 5`. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Test-Cluster.md b/docset/winserver2022-ps/failoverclusters/Test-Cluster.md index 4d8ca66341..7543eaeeb0 100644 --- a/docset/winserver2022-ps/failoverclusters/Test-Cluster.md +++ b/docset/winserver2022-ps/failoverclusters/Test-Cluster.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 11/23/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/test-cluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-Cluster @@ -55,8 +55,9 @@ This example runs all applicable cluster validation tests on the local cluster. Test-Cluster -Node "node1", "node2" ``` -This example runs all cluster validation tests on the nodes named node1 and node2. If either node1 -or node2 is already a member of a cluster, then the tests will include all nodes in that cluster. +This example runs all cluster validation tests on the nodes named `node1` and `node2`. If either +`node1` or `node2` is already a member of a cluster, then the tests will include all nodes in that +cluster. ### Example 3: View tests and categories in cluster validation diff --git a/docset/winserver2022-ps/failoverclusters/Test-ClusterResourceFailure.md b/docset/winserver2022-ps/failoverclusters/Test-ClusterResourceFailure.md index b3bff79d8d..a315ba84b9 100644 --- a/docset/winserver2022-ps/failoverclusters/Test-ClusterResourceFailure.md +++ b/docset/winserver2022-ps/failoverclusters/Test-ClusterResourceFailure.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 11/23/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/test-clusterresourcefailure?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Test-ClusterResourceFailure @@ -32,14 +32,11 @@ can be used to simulate what actions the Cluster service will take when a resour ### Example 1: Simulate a failure -``` -PS C:\> Test-ClusterResourceFailure -Name "Cluster Disk 4" -Name State Group ResourceType ----- ----- ----- ------------ -Cluster Disk 4 Failed cluster12FS Physical Disk +```powershell +Test-ClusterResourceFailure -Name "Cluster Disk 4" ``` -This example simulates a failure in cluster resource named Cluster Disk 4. +This example simulates a failure in cluster resource named `Cluster Disk 4`. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Update-ClusterFunctionalLevel.md b/docset/winserver2022-ps/failoverclusters/Update-ClusterFunctionalLevel.md index 66fc70df99..b5bc580675 100644 --- a/docset/winserver2022-ps/failoverclusters/Update-ClusterFunctionalLevel.md +++ b/docset/winserver2022-ps/failoverclusters/Update-ClusterFunctionalLevel.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 11/23/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/update-clusterfunctionallevel?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-ClusterFunctionalLevel @@ -59,11 +59,8 @@ Repeat these steps for each node of the cluster. ### Example 1: Test a possible update -``` -PS C:\> Update-ClusterFunctionalLevel -WhatIf -Name ----- -cluster_17 +```powershell +Update-ClusterFunctionalLevel -WhatIf ``` This command tests whether an update would finish successfully. Because the command includes the @@ -71,15 +68,12 @@ This command tests whether an update would finish successfully. Because the comm ### Example 2: Update a cluster functional level -``` -PS C:\> Update-ClusterFunctionalLevel -Cluster "cluster_17" -Name ----- -cluster_17 +```powershell +Update-ClusterFunctionalLevel -Cluster "cluster_17" ``` -This command updates the cluster functional level of the cluster named cluster_17. All of the nodes -of this cluster must already be updated before you run this command. +This command updates the cluster functional level of the cluster named `cluster_17`. All of the +nodes of this cluster must already be updated before you run this command. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Update-ClusterIPResource.md b/docset/winserver2022-ps/failoverclusters/Update-ClusterIPResource.md index 9c41f45466..060952e92c 100644 --- a/docset/winserver2022-ps/failoverclusters/Update-ClusterIPResource.md +++ b/docset/winserver2022-ps/failoverclusters/Update-ClusterIPResource.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 11/23/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/update-clusteripresource?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-ClusterIPResource @@ -29,39 +29,29 @@ in a failover cluster. This cmdlet applies only to IP address resources that use ### Example 1: Update DHCP lease -``` -PS C:\> Update-ClusterIPResource -Name "Cluster IP Address" -Name State Group ResourceType ----- ----- ----- ------------ -Cluster IP Address Online Cluster Group IP Address +```powershell +Update-ClusterIPResource -Name "Cluster IP Address" ``` -This example updates the DHCP lease for the resource called Cluster IP Address if this resource is +This example updates the DHCP lease for the resource called `Cluster IP Address` if this resource is DHCP assigned. ### Example 2: Update DHCP leases for all clustered IP resources -``` -PS C:\> Get-ClusterResource | Where-Object -FilterScript {$_.ResourceType.Name -eq "IP Address"} | Update-ClusterIPResource -Name State Group ResourceType ----- ----- ----- ------------ -Cluster IP Address Online Cluster Group IP Address -IP Address 172.2... Online cluster1-Other IP Address -IP Address 172.2... Online cluster1-FS IP Address +```powershell +Get-ClusterResource | Where-Object -FilterScript {$_.ResourceType.Name -eq "IP Address"} | Update-ClusterIPResource ``` This example updates the DHCP lease for all of the clustered IP resources that are DHCP assigned. ### Example 3: Take a resource offline and release its lease -``` -PS C:\> Get-ClusterResource -Name "IP Address 10.24.11.0" | Stop-ClusterResource | Update-ClusterIPResource -Release -Name State Group ResourceType ----- ----- ----- ------------ -IP Address 10.2... Offline cluster1-Other IP Address +```powershell +$clusterResource = Get-ClusterResource -Name "IP Address 10.24.11.0" +$clusterResource | Stop-ClusterResource | Update-ClusterIPResource -Release ``` -This example takes the resource named IP Address 172.24.11.0 offline, and releases the DHCP lease +This example takes the resource named `IP Address 172.24.11.0` offline, and releases the DHCP lease for that resource. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Update-ClusterNetworkNameResource.md b/docset/winserver2022-ps/failoverclusters/Update-ClusterNetworkNameResource.md index cf59b33c81..8c77381709 100644 --- a/docset/winserver2022-ps/failoverclusters/Update-ClusterNetworkNameResource.md +++ b/docset/winserver2022-ps/failoverclusters/Update-ClusterNetworkNameResource.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 11/23/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/update-clusternetworknameresource?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-ClusterNetworkNameResource @@ -30,11 +30,8 @@ DNS server in a way that doesn't interrupt cluster availability. ### Example 1: Register name resources with a DNS server -``` -PS C:\> Get-ClusterResource -Name "Cluster Name" | Update-ClusterNetworkNameResource -Name State OwnerGroup ResourceType ----- ----- ---------- ------------ -Cluster Name Online Cluster Group Network Name +```powershell +Get-ClusterResource -Name "Cluster Name" | Update-ClusterNetworkNameResource ``` This example registers the Network Name resources of the local cluster with a DNS server. diff --git a/docset/winserver2022-ps/failoverclusters/Update-ClusterVirtualMachineConfiguration.md b/docset/winserver2022-ps/failoverclusters/Update-ClusterVirtualMachineConfiguration.md index 56f3487cac..af81362f86 100644 --- a/docset/winserver2022-ps/failoverclusters/Update-ClusterVirtualMachineConfiguration.md +++ b/docset/winserver2022-ps/failoverclusters/Update-ClusterVirtualMachineConfiguration.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 11/23/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/update-clustervirtualmachineconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Update-ClusterVirtualMachineConfiguration @@ -31,27 +31,21 @@ virtual memory, are being changed for a clustered virtual machine. ### Example 1: Refresh a clustered virtual machine on the local cluster -``` -PS C:\> Update-ClusterVirtualMachineConfiguration -Name "Virtual Machine Configuration VM1" -Name State Group ResourceType ----- ----- ----- ------------ -Virtual Machine ... Online Virtual Machine Virtual Machine ... +```powershell +Update-ClusterVirtualMachineConfiguration -Name "Virtual Machine Configuration VM1" ``` -This example refreshes the clustered virtual machine named Virtual Machine Configuration VM1 on the -local cluster. +This example refreshes the clustered virtual machine named `Virtual Machine Configuration VM1` on +the local cluster. ### Example 2: Refresh a clustered virtual machine on a cluster -``` -PS C:\> Update-ClusterVirtualMachineConfiguration -Name "Virtual Machine Configuration VM2" -Cluster cluster1 -Name State Group ResourceType ----- ----- ----- ------------ -Virtual Machine ... Online Virtual Machine Virtual Machine +```powershell +Update-ClusterVirtualMachineConfiguration -Name "Virtual Machine Configuration VM2" -Cluster cluster1 ``` -This example refreshes the clustered virtual machine named Virtual Machine Configuration VM2 on the -cluster named cluster1. +This example refreshes the clustered virtual machine named `Virtual Machine Configuration VM2` on +the cluster named `cluster1`. ## PARAMETERS From e25fd40bae03773b025a3938c03ec512d9e13c79 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Wed, 23 Nov 2022 12:11:21 +0000 Subject: [PATCH 327/965] Reflow of text and examples --- .../failoverclusters/Suspend-ClusterNode.md | 3 ++- .../failoverclusters/Update-ClusterIPResource.md | 3 ++- .../Update-ClusterVirtualMachineConfiguration.md | 10 ++++++++-- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/Suspend-ClusterNode.md b/docset/winserver2022-ps/failoverclusters/Suspend-ClusterNode.md index d8c2e11691..c89cd43819 100644 --- a/docset/winserver2022-ps/failoverclusters/Suspend-ClusterNode.md +++ b/docset/winserver2022-ps/failoverclusters/Suspend-ClusterNode.md @@ -55,7 +55,8 @@ This example pauses the node named `node2` on the cluster named `cluster2`. Suspend-ClusterNode -Name "node1" -Target "node2" -Drain ``` -This example pauses the node named `node1` and moves the workloads from it to the node named `node2`. +This example pauses the node named `node1` and moves the workloads from it to the node named +`node2`. ### Example 4: Preview a pause operation diff --git a/docset/winserver2022-ps/failoverclusters/Update-ClusterIPResource.md b/docset/winserver2022-ps/failoverclusters/Update-ClusterIPResource.md index 060952e92c..2ce3a1c072 100644 --- a/docset/winserver2022-ps/failoverclusters/Update-ClusterIPResource.md +++ b/docset/winserver2022-ps/failoverclusters/Update-ClusterIPResource.md @@ -39,7 +39,8 @@ DHCP assigned. ### Example 2: Update DHCP leases for all clustered IP resources ```powershell -Get-ClusterResource | Where-Object -FilterScript {$_.ResourceType.Name -eq "IP Address"} | Update-ClusterIPResource +$clusterIP = Get-ClusterResource | Where-Object {$_.ResourceType.Name -eq "IP Address"} +$clusterIP | Update-ClusterIPResource ``` This example updates the DHCP lease for all of the clustered IP resources that are DHCP assigned. diff --git a/docset/winserver2022-ps/failoverclusters/Update-ClusterVirtualMachineConfiguration.md b/docset/winserver2022-ps/failoverclusters/Update-ClusterVirtualMachineConfiguration.md index af81362f86..b118078f97 100644 --- a/docset/winserver2022-ps/failoverclusters/Update-ClusterVirtualMachineConfiguration.md +++ b/docset/winserver2022-ps/failoverclusters/Update-ClusterVirtualMachineConfiguration.md @@ -41,11 +41,17 @@ the local cluster. ### Example 2: Refresh a clustered virtual machine on a cluster ```powershell -Update-ClusterVirtualMachineConfiguration -Name "Virtual Machine Configuration VM2" -Cluster cluster1 +$parameters = @{ + Name = 'Virtual Machine Configuration VM2' + Cluster = 'cluster1' +} +Update-ClusterVirtualMachineConfiguration @parameters ``` This example refreshes the clustered virtual machine named `Virtual Machine Configuration VM2` on -the cluster named `cluster1`. +the cluster named `cluster1`. The example uses splatting to pass parameter values from +the `$Parameters` variable to the command. Learn more about +[Splatting](/powershell/module/microsoft.powershell.core/about/about_splatting). ## PARAMETERS From d0cfe20ac25748195c570ce14cfd4350a2e6fdfe Mon Sep 17 00:00:00 2001 From: LolaOy <103140748+LolaOy@users.noreply.github.com> Date: Mon, 26 Sep 2022 14:32:19 -0500 Subject: [PATCH 328/965] Adding GPU-P powershell commands to WS powershell doc --- .../hyper-v/Add-VMGpuPartitionAdapter.md | 398 ++++++++++++++++ .../hyper-v/Get-VMGpuPartitionAdapter.md | 156 +++++++ .../hyper-v/Get-VMHostPartitionableGpu.md | 136 ++++++ docset/winserver2022-ps/hyper-v/Hyper-V.md | 15 + .../hyper-v/Remove-VMGpuPartitionAdapter.md | 235 ++++++++++ .../hyper-v/Set-VMGpuPartitionAdapter.md | 427 ++++++++++++++++++ 6 files changed, 1367 insertions(+) create mode 100644 docset/winserver2022-ps/hyper-v/Add-VMGpuPartitionAdapter.md create mode 100644 docset/winserver2022-ps/hyper-v/Get-VMGpuPartitionAdapter.md create mode 100644 docset/winserver2022-ps/hyper-v/Get-VMHostPartitionableGpu.md create mode 100644 docset/winserver2022-ps/hyper-v/Remove-VMGpuPartitionAdapter.md create mode 100644 docset/winserver2022-ps/hyper-v/Set-VMGpuPartitionAdapter.md diff --git a/docset/winserver2022-ps/hyper-v/Add-VMGpuPartitionAdapter.md b/docset/winserver2022-ps/hyper-v/Add-VMGpuPartitionAdapter.md new file mode 100644 index 0000000000..f530668552 --- /dev/null +++ b/docset/winserver2022-ps/hyper-v/Add-VMGpuPartitionAdapter.md @@ -0,0 +1,398 @@ +--- +description: Add GPU Partition adapter to a virtual machine +external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml +Module Name: Hyper-V +ms.date: 09/22/2022 +online version: https://learn.microsoft.com/en-us/powershell/module/hyper-v/add-vmgpupartitionadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +--- + +# Add-VMGpuPartitionAdapter + +## SYNOPSIS +Add GPU Partition adapter to a virtual machine + +## SYNTAX + +### VMName (Default) +``` +Add-VMGpuPartitionAdapter [-CimSession ] [-ComputerName ] + [-Credential ] [-VMName] [-Passthru] [-InstancePath ] + [-MinPartitionVRAM ] [-MaxPartitionVRAM ] [-OptimalPartitionVRAM ] + [-MinPartitionEncode ] [-MaxPartitionEncode ] [-OptimalPartitionEncode ] + [-MinPartitionDecode ] [-MaxPartitionDecode ] [-OptimalPartitionDecode ] + [-MinPartitionCompute ] [-MaxPartitionCompute ] [-OptimalPartitionCompute ] [-WhatIf] + [-Confirm] [] +``` + +### VMObject +``` +Add-VMGpuPartitionAdapter [-VM] [-Passthru] [-InstancePath ] + [-MinPartitionVRAM ] [-MaxPartitionVRAM ] [-OptimalPartitionVRAM ] + [-MinPartitionEncode ] [-MaxPartitionEncode ] [-OptimalPartitionEncode ] + [-MinPartitionDecode ] [-MaxPartitionDecode ] [-OptimalPartitionDecode ] + [-MinPartitionCompute ] [-MaxPartitionCompute ] [-OptimalPartitionCompute ] [-WhatIf] + [-Confirm] [] +``` + +## DESCRIPTION +The **Add-VMGpuPartitionAdapter** cmdlet adds GPU Partition adapter to a virtual machine. With no parameter, it assigns a Full partition from an assignable GPU to a VM. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> $vm = Get-VM -name "TestVM" +Add-VMGpuPartitionAdapter -VM $vm +``` + +Assign a partition to a specific VM object. If you want to assign multiple GPU partitions run this command the number of times equal to the number of GPU partitions needed + +### Example 2 +```powershell +PS C:\> $vm = Get-VM -name "TestVM" +Add-VMGpuPartitionAdapter -VM $vm -Instancepath "SampleGPUInstancePath" +``` + +Assign a partition from a specific GPU to a VM. Where the instance path is the GPU device ID name on the Host + +## PARAMETERS + +### -CimSession +Runs the cmdlet in a remote session or on a remote computer. +Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +The default is the current session on the local computer. + +```yaml +Type: CimSession[] +Parameter Sets: VMName +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ComputerName +Specifies one or more Hyper-V hosts from which virtual machines are to be retrieved. +NetBIOS names, IP addresses, and fully qualified domain names are allowable. +The default is the local computer. +Use localhost or a dot (.) to specify the local computer explicitly. + +```yaml +Type: String[] +Parameter Sets: VMName +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Credential +Specifies one or more user accounts that have permission to perform this action. +The default is the current user. + +```yaml +Type: PSCredential[] +Parameter Sets: VMName +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InstancePath +Represents the Device Instance path of a GPU in the host. This value can be obtained from the “Name†property of the command Get-VMHostPartitionableGpu + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MaxPartitionCompute +Maximum number of compute assigned by the Host GPU. This is defined by the manufacturer driver. + +```yaml +Type: UInt64 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MaxPartitionDecode +Maximum number of decoders assigned by the Host GPU. This is defined by the manufacturer driver. + +```yaml +Type: UInt64 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MaxPartitionEncode +Maximum number of encoders assigned by the Host GPU. This is defined by the manufacturer driver. + +```yaml +Type: UInt64 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MaxPartitionVRAM +Maximum VRAM supported by the Host GPU. This is defined by the manufacturer driver. + +```yaml +Type: UInt64 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MinPartitionCompute +Minimum number of compute assigned by the Host GPU. This is defined by the manufacturer driver. + +```yaml +Type: UInt64 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MinPartitionDecode +Minimum number of decoders assigned by the Host GPU. This is defined by the manufacturer driver. + +```yaml +Type: UInt64 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MinPartitionEncode +Minimum number of encoders assigned by the Host GPU. This is defined by the manufacturer driver. + +```yaml +Type: UInt64 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MinPartitionVRAM +Minimum VRAM supported by the Host GPU. This is defined by the manufacturer driver. + +```yaml +Type: UInt64 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -OptimalPartitionCompute +Optimal number of compute assigned by the Host GPU. This is defined by the manufacturer driver. + +```yaml +Type: UInt64 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -OptimalPartitionDecode +Optimal number of decoders assigned by the Host GPU. This is defined by the manufacturer driver. + +```yaml +Type: UInt64 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -OptimalPartitionEncode +Optimal number of encoders assigned by the Host GPU. This is defined by the manufacturer driver. + +```yaml +Type: UInt64 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -OptimalPartitionVRAM +Optimal VRAM supported by the Host GPU. This is defined by the manufacturer driver. + +```yaml +Type: UInt64 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Passthru +Returns an object for each process that the cmdlet started. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -VM +Specifies the virtual machine on which the network adapter is to be added. + +```yaml +Type: VirtualMachine[] +Parameter Sets: VMObject +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -VMName +Specifies the name of the virtual machine on which the network adapter is to be added. + +```yaml +Type: String[] +Parameter Sets: VMName +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.HyperV.PowerShell.VirtualMachine[] + +### System.String[] + +## OUTPUTS + +### Microsoft.HyperV.PowerShell.VMGpuPartitionAdapter + +## NOTES + +## RELATED LINKS diff --git a/docset/winserver2022-ps/hyper-v/Get-VMGpuPartitionAdapter.md b/docset/winserver2022-ps/hyper-v/Get-VMGpuPartitionAdapter.md new file mode 100644 index 0000000000..071e1fdc55 --- /dev/null +++ b/docset/winserver2022-ps/hyper-v/Get-VMGpuPartitionAdapter.md @@ -0,0 +1,156 @@ +--- +description: Gets the information of assigned GPU partitions to a virtual machine. +external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml +Module Name: Hyper-V +ms.date: 09/22/2022 +online version: https://learn.microsoft.com/en-us/powershell/module/hyper-v/get-vmgpupartitionadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +--- + +# Get-VMGpuPartitionAdapter + +## SYNOPSIS +Gets the information of assigned GPU partitions to a virtual machine. + +## SYNTAX + +### VMName (Default) +``` +Get-VMGpuPartitionAdapter [-CimSession ] [-ComputerName ] + [-Credential ] [-VMName] [-AdapterId ] [] +``` + +### VMObject +``` +Get-VMGpuPartitionAdapter [-VM] [-AdapterId ] [] +``` + +## DESCRIPTION +The **Get-VMGpuPartitionAdapter** cmdlet gets the information of assigned graphic processing unit partitions to a virtual machine. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> $testvm = get-VM "TestVM" +Get-VMGpuPartitionAdapter -VM $testvm +``` + +Display the GPU information assigned to a VM object + +## PARAMETERS + +### -AdapterId +Virtual machine GPU partition identification number that you are interested in displaying + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CimSession +Runs the cmdlet in a remote session or on a remote computer. +Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +The default is the current session on the local computer. + +```yaml +Type: CimSession[] +Parameter Sets: VMName +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ComputerName +Specifies one or more Hyper-V hosts on the virtual network adapters are to be retrieved. +NetBIOS names, IP addresses, and fully qualified domain names are allowable. +The default is the local computer. +Use localhost or a dot (.) to specify the local computer explicitly. + +```yaml +Type: String[] +Parameter Sets: VMName +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Credential +Specifies one or more user accounts that have permission to perform this action. +The default is the current user. + +```yaml +Type: PSCredential[] +Parameter Sets: VMName +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -VM +Specifies the virtual machine whose virtual network adapters are to be retrieved. +. The asterisk, "*", is the wildcard. +If it is specified the cmdlet returns virtual network adapters from every virtual machine in the system. + +```yaml +Type: VirtualMachine[] +Parameter Sets: VMObject +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -VMName +Specifies the name of the virtual machine whose network adapters are to be retrieved. + +```yaml +Type: String[] +Parameter Sets: VMName +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String[] + +### Microsoft.HyperV.PowerShell.VirtualMachine[] + +## OUTPUTS + +### Microsoft.HyperV.PowerShell.VMGpuPartitionAdapter + +## NOTES + +## RELATED LINKS diff --git a/docset/winserver2022-ps/hyper-v/Get-VMHostPartitionableGpu.md b/docset/winserver2022-ps/hyper-v/Get-VMHostPartitionableGpu.md new file mode 100644 index 0000000000..950b6e098b --- /dev/null +++ b/docset/winserver2022-ps/hyper-v/Get-VMHostPartitionableGpu.md @@ -0,0 +1,136 @@ +--- +description: Gets the host machine’s partitionable GPU. +external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml +Module Name: Hyper-V +ms.date: 09/22/2022 +online version: https://learn.microsoft.com/en-us/powershell/module/hyper-v/get-vmhostpartitionablegpu?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +--- + +# Get-VMHostPartitionableGpu + +## SYNOPSIS +Gets the host machine’s partitionable GPU. + +## SYNTAX + +### ComputerName (Default) +``` +Get-VMHostPartitionableGpu [[-ComputerName] ] [[-Credential] ] [-Name ] + [] +``` + +### CimSession +``` +Get-VMHostPartitionableGpu [-CimSession] [-Name ] [] +``` + +## DESCRIPTION +The Get-VMHostPartitionableGpu cmdlet get the host machine’s partitionable Graphic Processing Unit. +This displays the information of the GPU as provided by the manufacturer driver. + +## EXAMPLES + +### Example 1 +``` +PS C:\> Get-VMHostPartitionableGpu +``` + +Gets the details of the local partitionable graphic processing unit on the host + +### Example 2 +```powershell +PS C:\> Get-VMHostPartitionableGpu -ComputerName "SampleHost" +``` + +Display a partitionable GPU by using the Host Name. This command will display all the GPU devices available for partitioning in the host: + +### Example 3 +```powershell +PS C:\> Get-VMHostPartitionableGpu -name "SampleGPUDeviceIDName" +``` + +Display a partitionable GPU by using the specific GPU Device Name. The result will show the details of the specific GPU listed: + +## PARAMETERS + +### -CimSession +Runs the cmdlet in a remote session or on a remote computer. +Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +The default is the current session on the local computer. + +```yaml +Type: CimSession[] +Parameter Sets: CimSession +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ComputerName +Specifies one or more Hyper-V hosts that run this cmdlet. +NetBIOS names, IP addresses, and fully qualified domain names are allowable. +The default is the local computer. +Use localhost or a dot (.) to specify the local computer explicitly. + +```yaml +Type: String[] +Parameter Sets: ComputerName +Aliases: + +Required: False +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Credential +Specifies one or more user accounts that have permission to perform this action. +The default is the current user. + +```yaml +Type: PSCredential[] +Parameter Sets: ComputerName +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +Specifies the name of the graphic processing unit to be retrieved + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Management.Infrastructure.CimSession[] + +## OUTPUTS + +### Microsoft.HyperV.PowerShell.VMHostPartitionableGpu + +## NOTES + +## RELATED LINKS diff --git a/docset/winserver2022-ps/hyper-v/Hyper-V.md b/docset/winserver2022-ps/hyper-v/Hyper-V.md index 01edc1f71a..66d5ae75b5 100644 --- a/docset/winserver2022-ps/hyper-v/Hyper-V.md +++ b/docset/winserver2022-ps/hyper-v/Hyper-V.md @@ -22,6 +22,9 @@ Adds a DVD drive to a virtual machine. ### [Add-VMFibreChannelHba](./Add-VMFibreChannelHba.md) Adds a virtual Fibre Channel host bus adapter to a virtual machine. +### [Add-VMGpuPartitionAdapter](./Add-VMGpuPartitionAdapter.md) +Add GPU Partition adapter to a virtual machine + ### [Add-VMGroupMember](./Add-VMGroupMember.md) Adds group members to a virtual machine group. @@ -187,6 +190,9 @@ Gets the firmware configuration of a virtual machine. ### [Get-VMFloppyDiskDrive](./Get-VMFloppyDiskDrive.md) Gets the floppy disk drives of a virtual machine or snapshot. +### [Get-VMGpuPartitionAdapter](./Get-VMGpuPartitionAdapter.md) +Gets the information of assigned GPU partitions to a virtual machine. + ### [Get-VMGroup](./Get-VMGroup.md) Gets virtual machine groups. @@ -199,6 +205,9 @@ Gets a Hyper-V host. ### [Get-VMHostCluster](./Get-VMHostCluster.md) Gets virtual machine host clusters. +### [Get-VMHostPartitionableGpu](./Get-VMHostPartitionableGpu.md) +Gets the host machine's partitionable GPU. + ### [Get-VMHostNumaNode](./Get-VMHostNumaNode.md) Gets the NUMA topology of a virtual machine host. @@ -388,6 +397,9 @@ Deletes a DVD drive from a virtual machine. ### [Remove-VMFibreChannelHba](./Remove-VMFibreChannelHba.md) Removes a Fibre Channel host bus adapter from a virtual machine. +### [Remove-VMGpuPartitionAdapter](./Remove-VMGpuPartitionAdapter.md) +Removes an assigned GPU partition from a virtual machine. + ### [Remove-VMGroup](./Remove-VMGroup.md) Removes a virtual machine group. @@ -538,6 +550,9 @@ Configures a Hyper-V host. ### [Set-VMHostCluster](./Set-VMHostCluster.md) Configures a virtual machine host cluster. +### [Set-VMHostPartitionableGpu](./Set-VMHostPartitionableGpu.md) +Configures host partitionable GPU to the number of partitions supported by the manufacturer. + ### [Set-VMKeyProtector](./Set-VMKeyProtector.md) Configures a key protector for a virtual machine. diff --git a/docset/winserver2022-ps/hyper-v/Remove-VMGpuPartitionAdapter.md b/docset/winserver2022-ps/hyper-v/Remove-VMGpuPartitionAdapter.md new file mode 100644 index 0000000000..8dbb8e5a9a --- /dev/null +++ b/docset/winserver2022-ps/hyper-v/Remove-VMGpuPartitionAdapter.md @@ -0,0 +1,235 @@ +--- +description: Removes an assigned GPU partition from a virtual machine. +external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml +Module Name: Hyper-V +ms.date: 09/22/2022 +online version: https://learn.microsoft.com/en-us/powershell/module/hyper-v/remove-vmgpupartitionadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 + +--- + +# Remove-VMGpuPartitionAdapter + +## SYNOPSIS +Removes an assigned GPU partition from a virtual machine. + +## SYNTAX + +### VMName (Default) +``` +Remove-VMGpuPartitionAdapter [-CimSession ] [-ComputerName ] + [-Credential ] [-VMName] [-Passthru] [-AdapterId ] [-WhatIf] [-Confirm] + [] +``` + +### VMObject +``` +Remove-VMGpuPartitionAdapter [-VM] [-Passthru] [-AdapterId ] [-WhatIf] [-Confirm] + [] +``` + +### Object +``` +Remove-VMGpuPartitionAdapter [-VMGpuPartitionAdapter] [-Passthru] [-WhatIf] + [-Confirm] [] +``` + +## DESCRIPTION +The **Remove-VMGpuPartitionAdapter** cmdlet removes an assigned graphic processing unit partition from a virtual machine and releases that partition back to the host GPU. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> $testvm = Get-VM "TestVM" +Remove-VMGpuPartitionAdapter -VM $testvm +``` + +Remove a partition assigned to a specific VM Object + +### Example 2 +```powershell +PS C:\> $testvm = Get-VM "TestVM" +$GPUpartition = Get-VMGpuPartitionAdapter -VM $testvm +Remove-VMGpuPartitionAdapter -VM $testvm -AdapterId $GPUpartiton[0].id +``` + +Remove a specific partition in a VM + +## PARAMETERS + +### -AdapterId +The virtual machine graphic processing unit partition identification number that you are interested in displaying. + +```yaml +Type: String +Parameter Sets: VMName, VMObject +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CimSession +Runs the cmdlet in a remote session or on a remote computer. +Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +The default is the current session on the local computer. + +```yaml +Type: CimSession[] +Parameter Sets: VMName +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ComputerName +Specifies one or more Hyper-V hosts on the virtual network adapters are to be retrieved. +NetBIOS names, IP addresses, and fully qualified domain names are allowable. +The default is the local computer. +Use localhost or a dot (.) to specify the local computer explicitly. + +```yaml +Type: String[] +Parameter Sets: VMName +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Credential +Specifies one or more user accounts that have permission to perform this action. +The default is the current user. + +```yaml +Type: PSCredential[] +Parameter Sets: VMName +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Passthru +Returns an object for each process that the cmdlet started. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -VM +Specifies the virtual machine whose virtual network adapters are to be retrieved. +. The asterisk, "*", is the wildcard. +If it is specified the cmdlet returns virtual network adapters from every virtual machine in the system. + +```yaml +Type: VirtualMachine[] +Parameter Sets: VMObject +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -VMGpuPartitionAdapter +GPU partition object obtained from **Microsoft.HyperV.PowerShell.Get-VMGpuPartitionAdapter**. + +```yaml +Type: VMGpuPartitionAdapter[] +Parameter Sets: Object +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -VMName +Specifies the name of the virtual machine whose network adapters are to be retrieved. + +```yaml +Type: String[] +Parameter Sets: VMName +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.HyperV.PowerShell.VirtualMachine[] + +### Microsoft.HyperV.PowerShell.VMGpuPartitionAdapter[] + +## OUTPUTS + +### Microsoft.HyperV.PowerShell.VMGpuPartitionAdapter + +## NOTES + +## RELATED LINKS diff --git a/docset/winserver2022-ps/hyper-v/Set-VMGpuPartitionAdapter.md b/docset/winserver2022-ps/hyper-v/Set-VMGpuPartitionAdapter.md new file mode 100644 index 0000000000..3e9ae21b26 --- /dev/null +++ b/docset/winserver2022-ps/hyper-v/Set-VMGpuPartitionAdapter.md @@ -0,0 +1,427 @@ +--- +description: Configures host partitionable GPU to the number of partitions supported by the manufacturer +external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml +Module Name: Hyper-V +ms.date: 09/22/2022 +online version: https://learn.microsoft.com/en-us/powershell/module/hyper-v/set-vmgpupartitionadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 + +--- + +# Set-VMGpuPartitionAdapter + +## SYNOPSIS +Configures host partitionable GPU to the number of partitions supported by the manufacturer + +## SYNTAX + +### VMName (Default) +``` +Set-VMGpuPartitionAdapter [-CimSession ] [-ComputerName ] + [-Credential ] [-VMName] [-Passthru] [-AdapterId ] + [-MinPartitionVRAM ] [-MaxPartitionVRAM ] [-OptimalPartitionVRAM ] + [-MinPartitionEncode ] [-MaxPartitionEncode ] [-OptimalPartitionEncode ] + [-MinPartitionDecode ] [-MaxPartitionDecode ] [-OptimalPartitionDecode ] + [-MinPartitionCompute ] [-MaxPartitionCompute ] [-OptimalPartitionCompute ] [-WhatIf] + [-Confirm] [] +``` + +### VMObject +``` +Set-VMGpuPartitionAdapter [-VM] [-Passthru] [-AdapterId ] + [-MinPartitionVRAM ] [-MaxPartitionVRAM ] [-OptimalPartitionVRAM ] + [-MinPartitionEncode ] [-MaxPartitionEncode ] [-OptimalPartitionEncode ] + [-MinPartitionDecode ] [-MaxPartitionDecode ] [-OptimalPartitionDecode ] + [-MinPartitionCompute ] [-MaxPartitionCompute ] [-OptimalPartitionCompute ] [-WhatIf] + [-Confirm] [] +``` + +### Object +``` +Set-VMGpuPartitionAdapter [-VMGpuPartitionAdapter] [-Passthru] + [-MinPartitionVRAM ] [-MaxPartitionVRAM ] [-OptimalPartitionVRAM ] + [-MinPartitionEncode ] [-MaxPartitionEncode ] [-OptimalPartitionEncode ] + [-MinPartitionDecode ] [-MaxPartitionDecode ] [-OptimalPartitionDecode ] + [-MinPartitionCompute ] [-MaxPartitionCompute ] [-OptimalPartitionCompute ] [-WhatIf] + [-Confirm] [] +``` + +## DESCRIPTION +The **Set-VMGpuPartitionAdapter** cmdlet Configures host partitionable GPU to the number of partitions supported by the manufacturer. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> Set-VMHostPartitionableGpu -ComputerName �SampleHost� -partitioncount 8 +``` + +Partition a GPU in a specific host + +### Example 2 +```powershell +PS C:\> $GPU = Get-VMHostPartitionableGpu -name "SampleGPUDeviceIDName" +Set-VMHostPartitionableGpu -Name $GPU -partitionCount 4 +``` + +Partition a GPU in a host using the GPU Device ID Name: + +## PARAMETERS + +### -AdapterId +The virtual machine graphic processing unit partition identification number that you are interested in displaying. + +```yaml +Type: String +Parameter Sets: VMName, VMObject +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CimSession +Runs the cmdlet in a remote session or on a remote computer. +Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +The default is the current session on the local computer. + +```yaml +Type: CimSession[] +Parameter Sets: VMName +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ComputerName +Specifies one or more Hyper-V hosts on the virtual network adapters are to be retrieved. +NetBIOS names, IP addresses, and fully qualified domain names are allowable. +The default is the local computer. +Use localhost or a dot (.) to specify the local computer explicitly. + +```yaml +Type: String[] +Parameter Sets: VMName +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Credential +Specifies one or more user accounts that have permission to perform this action. +The default is the current user. + +```yaml +Type: PSCredential[] +Parameter Sets: VMName +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MaxPartitionCompute + Maximum number of compute assigned by the Host GPU. This is defined by the manufacturer driver. + +```yaml +Type: UInt64 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MaxPartitionDecode +Maximum number of decoders assigned by the Host GPU. This is defined by the manufacturer driver. + +```yaml +Type: UInt64 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MaxPartitionEncode +Maximum number of encoders assigned by the Host GPU. This is defined by the manufacturer driver. + +```yaml +Type: UInt64 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MaxPartitionVRAM +Maximum VRAM supported by the Host GPU. This is defined by the manufacturer driver. + +```yaml +Type: UInt64 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MinPartitionCompute +Minimum number of compute assigned by the Host GPU. This is defined by the manufacturer driver. + +```yaml +Type: UInt64 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MinPartitionDecode +Minimum number of decoders assigned by the Host GPU. This is defined by the manufacturer driver. + +```yaml +Type: UInt64 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MinPartitionEncode +Minimum number of encoders assigned by the Host GPU. This is defined by the manufacturer driver. + +```yaml +Type: UInt64 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MinPartitionVRAM +Minimum VRAM supported by the Host GPU. This is defined by the manufacturer driver. + +```yaml +Type: UInt64 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -OptimalPartitionCompute +Optimal number of compute assigned by the Host GPU. This is defined by the manufacturer driver. + +```yaml +Type: UInt64 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -OptimalPartitionDecode +Optimal number of decoders assigned by the Host GPU. This is defined by the manufacturer driver. + +```yaml +Type: UInt64 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -OptimalPartitionEncode +Optimal number of encoders assigned by the Host GPU. This is defined by the manufacturer driver. + +```yaml +Type: UInt64 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -OptimalPartitionVRAM +Optimal VRAM supported by the Host GPU. This is defined by the manufacturer driver. + +```yaml +Type: UInt64 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Passthru +Returns an object for each process that the cmdlet started. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -VM +Specifies the virtual machine whose virtual network adapters are to be retrieved. +. The asterisk, "*", is the wildcard. +If it is specified the cmdlet returns virtual network adapters from every virtual machine in the system. + +```yaml +Type: VirtualMachine[] +Parameter Sets: VMObject +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -VMGpuPartitionAdapter +GPU partition object obtained from **Microsoft.HyperV.PowerShell.Get-VMGpuPartitionAdapter**. + +```yaml +Type: VMGpuPartitionAdapter[] +Parameter Sets: Object +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -VMName +Specifies the name of the virtual machine whose network adapters are to be retrieved. + +```yaml +Type: String[] +Parameter Sets: VMName +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String[] + +### Microsoft.HyperV.PowerShell.VirtualMachine[] + +### Microsoft.HyperV.PowerShell.VMGpuPartitionAdapter[] + +## OUTPUTS + +### Microsoft.HyperV.PowerShell.VMGpuPartitionAdapter + +## NOTES + +## RELATED LINKS From cfb03b82f88a20082815d75ac1c9e7f3a6bba1a4 Mon Sep 17 00:00:00 2001 From: LolaOy <103140748+LolaOy@users.noreply.github.com> Date: Mon, 24 Oct 2022 15:31:26 -0500 Subject: [PATCH 329/965] Add Set-VMGpuPartitionAdapter to Hyper-V module, add review comments Add Set-VMGpuPartitionAdapter to Hyper-V module., add review comments --- .../hyper-v/Add-VMGpuPartitionAdapter.md | 46 ++--- .../hyper-v/Get-VMGpuPartitionAdapter.md | 20 +- .../hyper-v/Get-VMHostPartitionableGpu.md | 20 +- docset/winserver2022-ps/hyper-v/Hyper-V.md | 7 +- .../hyper-v/Remove-VMGpuPartitionAdapter.md | 23 +-- .../hyper-v/Set-VMGpuPartitionAdapter.md | 60 +++--- .../hyper-v/Set-VMHostPartitionableGpu.md | 184 ++++++++++++++++++ 7 files changed, 267 insertions(+), 93 deletions(-) create mode 100644 docset/winserver2022-ps/hyper-v/Set-VMHostPartitionableGpu.md diff --git a/docset/winserver2022-ps/hyper-v/Add-VMGpuPartitionAdapter.md b/docset/winserver2022-ps/hyper-v/Add-VMGpuPartitionAdapter.md index f530668552..cbdc9ee09f 100644 --- a/docset/winserver2022-ps/hyper-v/Add-VMGpuPartitionAdapter.md +++ b/docset/winserver2022-ps/hyper-v/Add-VMGpuPartitionAdapter.md @@ -1,5 +1,5 @@ --- -description: Add GPU Partition adapter to a virtual machine +description: Adds a GPU partition adapter to a virtual machine. external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 09/22/2022 @@ -10,7 +10,7 @@ schema: 2.0.0 # Add-VMGpuPartitionAdapter ## SYNOPSIS -Add GPU Partition adapter to a virtual machine +Adds a GPU partition adapter to a virtual machine. ## SYNTAX @@ -36,25 +36,25 @@ Add-VMGpuPartitionAdapter [-VM] [-Passthru] [-InstancePath $vm = Get-VM -name "TestVM" +$vm = Get-VM -name "TestVM" Add-VMGpuPartitionAdapter -VM $vm ``` -Assign a partition to a specific VM object. If you want to assign multiple GPU partitions run this command the number of times equal to the number of GPU partitions needed +Assigns a partition to a specific VM object. If you want to assign multiple GPU partitions run this command the number of times equal to the number of GPU partitions needed. ### Example 2 ```powershell -PS C:\> $vm = Get-VM -name "TestVM" +$vm = Get-VM -name "TestVM" Add-VMGpuPartitionAdapter -VM $vm -Instancepath "SampleGPUInstancePath" ``` -Assign a partition from a specific GPU to a VM. Where the instance path is the GPU device ID name on the Host +Assigns a partition from a specific GPU to a VM where the instance path is the GPU device ID name on the host. ## PARAMETERS @@ -79,7 +79,7 @@ Accept wildcard characters: False Specifies one or more Hyper-V hosts from which virtual machines are to be retrieved. NetBIOS names, IP addresses, and fully qualified domain names are allowable. The default is the local computer. -Use localhost or a dot (.) to specify the local computer explicitly. +Use localhost or a dot ('.') to specify the local computer explicitly. ```yaml Type: String[] @@ -110,7 +110,7 @@ Accept wildcard characters: False ``` ### -InstancePath -Represents the Device Instance path of a GPU in the host. This value can be obtained from the “Name†property of the command Get-VMHostPartitionableGpu +Represents the Device Instance path of a GPU in the host. This value can be obtained from the "Name" property of the command Get-VMHostPartitionableGpu ```yaml Type: String @@ -125,7 +125,7 @@ Accept wildcard characters: False ``` ### -MaxPartitionCompute -Maximum number of compute assigned by the Host GPU. This is defined by the manufacturer driver. +The maximum number of compute assigned by the host GPU. This is defined by the manufacturer's driver. ```yaml Type: UInt64 @@ -140,7 +140,7 @@ Accept wildcard characters: False ``` ### -MaxPartitionDecode -Maximum number of decoders assigned by the Host GPU. This is defined by the manufacturer driver. +the maximum number of decoders assigned by the host GPU. This is defined by the manufacturer's driver. ```yaml Type: UInt64 @@ -155,7 +155,7 @@ Accept wildcard characters: False ``` ### -MaxPartitionEncode -Maximum number of encoders assigned by the Host GPU. This is defined by the manufacturer driver. +the maximum number of encoders assigned by the host GPU. This is defined by the manufacturer's driver. ```yaml Type: UInt64 @@ -170,7 +170,7 @@ Accept wildcard characters: False ``` ### -MaxPartitionVRAM -Maximum VRAM supported by the Host GPU. This is defined by the manufacturer driver. +the maximum VRAM supported by the host GPU. This is defined by the manufacturer's driver. ```yaml Type: UInt64 @@ -185,7 +185,7 @@ Accept wildcard characters: False ``` ### -MinPartitionCompute -Minimum number of compute assigned by the Host GPU. This is defined by the manufacturer driver. +the minimum number of compute assigned by the host GPU. This is defined by the manufacturer's driver. ```yaml Type: UInt64 @@ -200,7 +200,7 @@ Accept wildcard characters: False ``` ### -MinPartitionDecode -Minimum number of decoders assigned by the Host GPU. This is defined by the manufacturer driver. +the minimum number of decoders assigned by the host GPU. This is defined by the manufacturer's driver. ```yaml Type: UInt64 @@ -215,7 +215,7 @@ Accept wildcard characters: False ``` ### -MinPartitionEncode -Minimum number of encoders assigned by the Host GPU. This is defined by the manufacturer driver. +the minimum number of encoders assigned by the host GPU. This is defined by the manufacturer's driver. ```yaml Type: UInt64 @@ -230,7 +230,7 @@ Accept wildcard characters: False ``` ### -MinPartitionVRAM -Minimum VRAM supported by the Host GPU. This is defined by the manufacturer driver. +the minimum VRAM supported by the host GPU. This is defined by the manufacturer's driver. ```yaml Type: UInt64 @@ -245,7 +245,7 @@ Accept wildcard characters: False ``` ### -OptimalPartitionCompute -Optimal number of compute assigned by the Host GPU. This is defined by the manufacturer driver. +the optimal number of compute assigned by the host GPU. This is defined by the manufacturer's driver. ```yaml Type: UInt64 @@ -259,8 +259,8 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -OptimalPartitionDecode -Optimal number of decoders assigned by the Host GPU. This is defined by the manufacturer driver. +### -the optimalPartitionDecode +the optimal number of decoders assigned by the host GPU. This is defined by the manufacturer's driver. ```yaml Type: UInt64 @@ -275,7 +275,7 @@ Accept wildcard characters: False ``` ### -OptimalPartitionEncode -Optimal number of encoders assigned by the Host GPU. This is defined by the manufacturer driver. +the optimal number of encoders assigned by the host GPU. This is defined by the manufacturer's driver. ```yaml Type: UInt64 @@ -290,7 +290,7 @@ Accept wildcard characters: False ``` ### -OptimalPartitionVRAM -Optimal VRAM supported by the Host GPU. This is defined by the manufacturer driver. +the optimal VRAM supported by the host GPU. This is defined by the manufacturer's driver. ```yaml Type: UInt64 @@ -381,7 +381,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](httpS://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/docset/winserver2022-ps/hyper-v/Get-VMGpuPartitionAdapter.md b/docset/winserver2022-ps/hyper-v/Get-VMGpuPartitionAdapter.md index 071e1fdc55..ed3f711e2e 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMGpuPartitionAdapter.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMGpuPartitionAdapter.md @@ -26,22 +26,22 @@ Get-VMGpuPartitionAdapter [-VM] [-AdapterId ] [ $testvm = get-VM "TestVM" +$testvm = get-VM "TestVM" Get-VMGpuPartitionAdapter -VM $testvm ``` -Display the GPU information assigned to a VM object +Displays the GPU information assigned to a VM object ## PARAMETERS ### -AdapterId -Virtual machine GPU partition identification number that you are interested in displaying +A VM's GPU partition identification number used to display the GPU information assigned to a VM ```yaml Type: String @@ -73,10 +73,10 @@ Accept wildcard characters: False ``` ### -ComputerName -Specifies one or more Hyper-V hosts on the virtual network adapters are to be retrieved. -NetBIOS names, IP addresses, and fully qualified domain names are allowable. +Specifies that one or more Hyper-V hosts on the virtual network adapters are to be retrieved. +NetBIOS names, IP addresses, and fully qualified domain names are allowed. The default is the local computer. -Use localhost or a dot (.) to specify the local computer explicitly. +Use localhost or a dot ('.') to specify the local computer explicitly. ```yaml Type: String[] @@ -108,7 +108,7 @@ Accept wildcard characters: False ### -VM Specifies the virtual machine whose virtual network adapters are to be retrieved. -. The asterisk, "*", is the wildcard. +. The asterisk, ('*'), is the wildcard. If it is specified the cmdlet returns virtual network adapters from every virtual machine in the system. ```yaml @@ -120,7 +120,7 @@ Required: True Position: 0 Default value: None Accept pipeline input: True (ByValue) -Accept wildcard characters: False +Accept wildcard characters: true ``` ### -VMName @@ -139,7 +139,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/docset/winserver2022-ps/hyper-v/Get-VMHostPartitionableGpu.md b/docset/winserver2022-ps/hyper-v/Get-VMHostPartitionableGpu.md index 950b6e098b..8cc52abb73 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMHostPartitionableGpu.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMHostPartitionableGpu.md @@ -26,31 +26,31 @@ Get-VMHostPartitionableGpu [-CimSession] [-Name ] [ Get-VMHostPartitionableGpu +Get-VMHostPartitionableGpu ``` Gets the details of the local partitionable graphic processing unit on the host ### Example 2 ```powershell -PS C:\> Get-VMHostPartitionableGpu -ComputerName "SampleHost" +Get-VMHostPartitionableGpu -ComputerName "SampleHost" ``` -Display a partitionable GPU by using the Host Name. This command will display all the GPU devices available for partitioning in the host: +Displays a partitionable GPU by using the host name. This command will display all the GPU devices available for partitioning in the host. ### Example 3 ```powershell -PS C:\> Get-VMHostPartitionableGpu -name "SampleGPUDeviceIDName" +Get-VMHostPartitionableGpu -name "SampleGPUDeviceIDName" ``` -Display a partitionable GPU by using the specific GPU Device Name. The result will show the details of the specific GPU listed: +Displays a partitionable GPU by using the specific GPU device name. The result will show the details of the specific GPU listed. ## PARAMETERS @@ -75,7 +75,7 @@ Accept wildcard characters: False Specifies one or more Hyper-V hosts that run this cmdlet. NetBIOS names, IP addresses, and fully qualified domain names are allowable. The default is the local computer. -Use localhost or a dot (.) to specify the local computer explicitly. +Use localhost or a dot ('.') to specify the local computer explicitly. ```yaml Type: String[] @@ -106,7 +106,7 @@ Accept wildcard characters: False ``` ### -Name -Specifies the name of the graphic processing unit to be retrieved +Specifies the name of the graphic processing unit to be retrieved. ```yaml Type: String @@ -121,7 +121,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/docset/winserver2022-ps/hyper-v/Hyper-V.md b/docset/winserver2022-ps/hyper-v/Hyper-V.md index 66d5ae75b5..d98210af0e 100644 --- a/docset/winserver2022-ps/hyper-v/Hyper-V.md +++ b/docset/winserver2022-ps/hyper-v/Hyper-V.md @@ -23,7 +23,7 @@ Adds a DVD drive to a virtual machine. Adds a virtual Fibre Channel host bus adapter to a virtual machine. ### [Add-VMGpuPartitionAdapter](./Add-VMGpuPartitionAdapter.md) -Add GPU Partition adapter to a virtual machine +Adds a GPU partition adapter to a virtual machine. ### [Add-VMGroupMember](./Add-VMGroupMember.md) Adds group members to a virtual machine group. @@ -541,6 +541,9 @@ Sets the firmware configuration of a virtual machine. ### [Set-VMFloppyDiskDrive](./Set-VMFloppyDiskDrive.md) Configures a virtual floppy disk drive. +### [Set-VMGpuPartitionAdapter](./Set-VMGpuPartitionAdapter.md) +Assigns a partition of a GPU to a virtual machine. + ### [Set-VMHardDiskDrive](./Set-VMHardDiskDrive.md) Configures a virtual hard disk. @@ -551,7 +554,7 @@ Configures a Hyper-V host. Configures a virtual machine host cluster. ### [Set-VMHostPartitionableGpu](./Set-VMHostPartitionableGpu.md) -Configures host partitionable GPU to the number of partitions supported by the manufacturer. +Configures a host partitionable GPU to the number of partitions supported by the manufacturer. ### [Set-VMKeyProtector](./Set-VMKeyProtector.md) Configures a key protector for a virtual machine. diff --git a/docset/winserver2022-ps/hyper-v/Remove-VMGpuPartitionAdapter.md b/docset/winserver2022-ps/hyper-v/Remove-VMGpuPartitionAdapter.md index 8dbb8e5a9a..573ed49a22 100644 --- a/docset/winserver2022-ps/hyper-v/Remove-VMGpuPartitionAdapter.md +++ b/docset/winserver2022-ps/hyper-v/Remove-VMGpuPartitionAdapter.md @@ -35,21 +35,21 @@ Remove-VMGpuPartitionAdapter [-VMGpuPartitionAdapter] ``` ## DESCRIPTION -The **Remove-VMGpuPartitionAdapter** cmdlet removes an assigned graphic processing unit partition from a virtual machine and releases that partition back to the host GPU. +The 'Remove-VMGpuPartitionAdapter' cmdlet removes an assigned graphic processing unit partition from a virtual machine and releases that partition back to the host GPU. ## EXAMPLES ### Example 1 ```powershell -PS C:\> $testvm = Get-VM "TestVM" +$testvm = Get-VM "TestVM" Remove-VMGpuPartitionAdapter -VM $testvm ``` -Remove a partition assigned to a specific VM Object +Removes a partition assigned to a specific VM Object. ### Example 2 ```powershell -PS C:\> $testvm = Get-VM "TestVM" +$testvm = Get-VM "TestVM" $GPUpartition = Get-VMGpuPartitionAdapter -VM $testvm Remove-VMGpuPartitionAdapter -VM $testvm -AdapterId $GPUpartiton[0].id ``` @@ -59,7 +59,7 @@ Remove a specific partition in a VM ## PARAMETERS ### -AdapterId -The virtual machine graphic processing unit partition identification number that you are interested in displaying. +A VM's GPU partition identification number used to remove a GPU from a VM. ```yaml Type: String @@ -91,10 +91,8 @@ Accept wildcard characters: False ``` ### -ComputerName -Specifies one or more Hyper-V hosts on the virtual network adapters are to be retrieved. -NetBIOS names, IP addresses, and fully qualified domain names are allowable. -The default is the local computer. -Use localhost or a dot (.) to specify the local computer explicitly. +Specifies that one or more Hyper-V hosts on the virtual network adapters are to be retrieved. NetBIOS names, IP addresses, and fully qualified domain names are allowed. +The default is the local computer.Use localhost or a dot ('.') to specify the local computer explicitly. ```yaml Type: String[] @@ -140,8 +138,7 @@ Accept wildcard characters: False ``` ### -VM -Specifies the virtual machine whose virtual network adapters are to be retrieved. -. The asterisk, "*", is the wildcard. +Specifies the virtual machine whose virtual network adapters are to be retrieved. The asterisk, ('*'), is the wildcard. If it is specified the cmdlet returns virtual network adapters from every virtual machine in the system. ```yaml @@ -157,7 +154,7 @@ Accept wildcard characters: False ``` ### -VMGpuPartitionAdapter -GPU partition object obtained from **Microsoft.HyperV.PowerShell.Get-VMGpuPartitionAdapter**. +GPU partition object obtained from 'Get-VMGpuPartitionAdapter'. ```yaml Type: VMGpuPartitionAdapter[] @@ -218,7 +215,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/docset/winserver2022-ps/hyper-v/Set-VMGpuPartitionAdapter.md b/docset/winserver2022-ps/hyper-v/Set-VMGpuPartitionAdapter.md index 3e9ae21b26..244ee70795 100644 --- a/docset/winserver2022-ps/hyper-v/Set-VMGpuPartitionAdapter.md +++ b/docset/winserver2022-ps/hyper-v/Set-VMGpuPartitionAdapter.md @@ -1,5 +1,5 @@ --- -description: Configures host partitionable GPU to the number of partitions supported by the manufacturer +description: Assigns a partition of a GPU to a virtual machine. external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 09/22/2022 @@ -11,7 +11,7 @@ schema: 2.0.0 # Set-VMGpuPartitionAdapter ## SYNOPSIS -Configures host partitionable GPU to the number of partitions supported by the manufacturer +Assigns a partition of a GPU to a virtual machine. ## SYNTAX @@ -47,29 +47,22 @@ Set-VMGpuPartitionAdapter [-VMGpuPartitionAdapter] [-P ``` ## DESCRIPTION -The **Set-VMGpuPartitionAdapter** cmdlet Configures host partitionable GPU to the number of partitions supported by the manufacturer. +The 'Set-VMGpuPartitionAdapter' cmdlet assigns a partition of a GPU to a virtual machine. Running the command against a virtual machine assigns a full partition. Additional parameters exist to assign more specific options to a VM. ## EXAMPLES ### Example 1 ```powershell -PS C:\> Set-VMHostPartitionableGpu -ComputerName �SampleHost� -partitioncount 8 +$vm = get-vm test +Set-VMGpuPartitionAdapter -VM $vm ``` -Partition a GPU in a specific host - -### Example 2 -```powershell -PS C:\> $GPU = Get-VMHostPartitionableGpu -name "SampleGPUDeviceIDName" -Set-VMHostPartitionableGpu -Name $GPU -partitionCount 4 -``` - -Partition a GPU in a host using the GPU Device ID Name: +Assign a partition to a VM passing a VM object. ## PARAMETERS ### -AdapterId -The virtual machine graphic processing unit partition identification number that you are interested in displaying. +A VM's GPU partition identification number used to display the GPU information assigned to a VM. ```yaml Type: String @@ -84,8 +77,7 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -101,10 +93,9 @@ Accept wildcard characters: False ``` ### -ComputerName -Specifies one or more Hyper-V hosts on the virtual network adapters are to be retrieved. -NetBIOS names, IP addresses, and fully qualified domain names are allowable. +Specifies one or more Hyper-V hosts on the virtual network adapters are to be retrieved. NetBIOS names, IP addresses, and fully qualified domain names are allowed. The default is the local computer. -Use localhost or a dot (.) to specify the local computer explicitly. +Use localhost or a dot ('.') to specify the local computer explicitly. ```yaml Type: String[] @@ -135,7 +126,7 @@ Accept wildcard characters: False ``` ### -MaxPartitionCompute - Maximum number of compute assigned by the Host GPU. This is defined by the manufacturer driver. + The maximum number of compute assigned by the host GPU. This is defined by the manufacturer's driver. ```yaml Type: UInt64 @@ -150,7 +141,7 @@ Accept wildcard characters: False ``` ### -MaxPartitionDecode -Maximum number of decoders assigned by the Host GPU. This is defined by the manufacturer driver. +The maximum number of decoders assigned by the host GPU. This is defined by the manufacturer's driver. ```yaml Type: UInt64 @@ -165,7 +156,7 @@ Accept wildcard characters: False ``` ### -MaxPartitionEncode -Maximum number of encoders assigned by the Host GPU. This is defined by the manufacturer driver. +The maximum number of encoders assigned by the host GPU. This is defined by the manufacturer's driver. ```yaml Type: UInt64 @@ -180,7 +171,7 @@ Accept wildcard characters: False ``` ### -MaxPartitionVRAM -Maximum VRAM supported by the Host GPU. This is defined by the manufacturer driver. +The maximum VRAM supported by the host GPU. This is defined by the manufacturer's driver. ```yaml Type: UInt64 @@ -195,7 +186,7 @@ Accept wildcard characters: False ``` ### -MinPartitionCompute -Minimum number of compute assigned by the Host GPU. This is defined by the manufacturer driver. +The minimum number of compute assigned by the host GPU. This is defined by the manufacturer's driver. ```yaml Type: UInt64 @@ -210,7 +201,7 @@ Accept wildcard characters: False ``` ### -MinPartitionDecode -Minimum number of decoders assigned by the Host GPU. This is defined by the manufacturer driver. +The minimum number of decoders assigned by the host GPU. This is defined by the manufacturer's driver. ```yaml Type: UInt64 @@ -225,7 +216,7 @@ Accept wildcard characters: False ``` ### -MinPartitionEncode -Minimum number of encoders assigned by the Host GPU. This is defined by the manufacturer driver. +The minimum number of encoders assigned by the host GPU. This is defined by the manufacturer's driver. ```yaml Type: UInt64 @@ -240,7 +231,7 @@ Accept wildcard characters: False ``` ### -MinPartitionVRAM -Minimum VRAM supported by the Host GPU. This is defined by the manufacturer driver. +The minimum VRAM supported by the host GPU. This is defined by the manufacturer's driver. ```yaml Type: UInt64 @@ -255,7 +246,7 @@ Accept wildcard characters: False ``` ### -OptimalPartitionCompute -Optimal number of compute assigned by the Host GPU. This is defined by the manufacturer driver. +The optimal number of compute assigned by the host GPU. This is defined by the manufacturer's driver. ```yaml Type: UInt64 @@ -270,7 +261,7 @@ Accept wildcard characters: False ``` ### -OptimalPartitionDecode -Optimal number of decoders assigned by the Host GPU. This is defined by the manufacturer driver. +The optimal number of decoders assigned by the host GPU. This is defined by the manufacturer's driver. ```yaml Type: UInt64 @@ -285,7 +276,7 @@ Accept wildcard characters: False ``` ### -OptimalPartitionEncode -Optimal number of encoders assigned by the Host GPU. This is defined by the manufacturer driver. +The optimal number of encoders assigned by the host GPU. This is defined by the manufacturer's driver. ```yaml Type: UInt64 @@ -300,7 +291,7 @@ Accept wildcard characters: False ``` ### -OptimalPartitionVRAM -Optimal VRAM supported by the Host GPU. This is defined by the manufacturer driver. +The optimal VRAM supported by the host GPU. This is defined by the manufacturer's driver. ```yaml Type: UInt64 @@ -330,8 +321,7 @@ Accept wildcard characters: False ``` ### -VM -Specifies the virtual machine whose virtual network adapters are to be retrieved. -. The asterisk, "*", is the wildcard. +Specifies the virtual machine whose virtual network adapters are to be retrieved. The asterisk, ('*'), is the wildcard. If it is specified the cmdlet returns virtual network adapters from every virtual machine in the system. ```yaml @@ -347,7 +337,7 @@ Accept wildcard characters: False ``` ### -VMGpuPartitionAdapter -GPU partition object obtained from **Microsoft.HyperV.PowerShell.Get-VMGpuPartitionAdapter**. +GPU partition object obtained from 'Get-VMGpuPartitionAdapter'' ```yaml Type: VMGpuPartitionAdapter[] @@ -408,7 +398,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/docset/winserver2022-ps/hyper-v/Set-VMHostPartitionableGpu.md b/docset/winserver2022-ps/hyper-v/Set-VMHostPartitionableGpu.md new file mode 100644 index 0000000000..5b28f6ab86 --- /dev/null +++ b/docset/winserver2022-ps/hyper-v/Set-VMHostPartitionableGpu.md @@ -0,0 +1,184 @@ +--- +external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml +Module Name: Hyper-V +online version: +schema: 2.0.0 +--- + +# Set-VMHostPartitionableGpu + +## SYNOPSIS +Configures host partitionable GPU to the number of partitions supported by the manufacturer + +## SYNTAX + +### ComputerName (Default) +``` +Set-VMHostPartitionableGpu [[-ComputerName] ] [[-Credential] ] [-Passthru] + [-PartitionCount ] [] +``` + +### CimSession +``` +Set-VMHostPartitionableGpu [-CimSession] [-Passthru] [-PartitionCount ] + [] +``` + +### Object +``` +Set-VMHostPartitionableGpu [-HostPartitionableGpu] [-Passthru] + [-PartitionCount ] [] +``` + +### Name +``` +Set-VMHostPartitionableGpu [-Passthru] [-Name ] [-PartitionCount ] [] +``` + +## DESCRIPTION +The `Set-VMHostPartitionableGpu` cmdlet Configures host partitionable GPU to the number of partitions supported by the manufacturer. + +## EXAMPLES + +### Example 1 +```powershell +Set-VMHostPartitionableGpu -ComputerName SampleHost -partitioncount 8 +``` + +Partitions a GPU in a specific host. + +### Example 2 +```powershell +$GPU = Get-VMHostPartitionableGpu -name "SampleGPUDeviceIDName" +Set-VMHostPartitionableGpu -Name $GPU -partitionCount 4 +``` + +Partitions a GPU in a host using the GPU device ID name. + +## PARAMETERS + +### -CimSession +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +The default is the current session on the local computer. + +```yaml +Type: CimSession[] +Parameter Sets: CimSession +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ComputerName +Specifies one or more Hyper-V hosts on the virtual network adapters are to be retrieved. NetBIOS names, IP addresses, and fully qualified domain names are allowed. +The default is the local computer. +Use localhost or a dot ('.') to specify the local computer explicitly. + +```yaml +Type: String[] +Parameter Sets: ComputerName +Aliases: + +Required: False +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Credential +Specifies one or more user accounts that have permission to perform this action. +The default is the current user. + +```yaml +Type: PSCredential[] +Parameter Sets: ComputerName +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HostPartitionableGpu +Full GPU object, obtained by executing Get-VMHostPartitionableGpu. + +```yaml +Type: VMHostPartitionableGpu[] +Parameter Sets: Object +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +Specifies the name of the GPU. + +```yaml +Type: String +Parameter Sets: Name +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PartitionCount +Specifies the number of partitions that the GPU will assign. The number of partitions is defined by the manufacturer. + +```yaml +Type: UInt16 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Passthru +Returns an object for each process that the cmdlet started. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Management.Infrastructure.CimSession[] + +### Microsoft.HyperV.PowerShell.VMHostPartitionableGpu[] + +## OUTPUTS + +### Microsoft.HyperV.PowerShell.VMHostPartitionableGpu + +## NOTES + +## RELATED LINKS From 330c1bc71b5f7782afbbcba326e1ca53aba3760d Mon Sep 17 00:00:00 2001 From: LolaOy <103140748+LolaOy@users.noreply.github.com> Date: Mon, 7 Nov 2022 14:15:59 -0600 Subject: [PATCH 330/965] include missed review comments --- .../hyper-v/Add-VMGpuPartitionAdapter.md | 4 ++-- .../hyper-v/Get-VMGpuPartitionAdapter.md | 11 +++++------ .../hyper-v/Get-VMHostPartitionableGpu.md | 2 +- .../hyper-v/Remove-VMGpuPartitionAdapter.md | 11 +++++------ 4 files changed, 13 insertions(+), 15 deletions(-) diff --git a/docset/winserver2022-ps/hyper-v/Add-VMGpuPartitionAdapter.md b/docset/winserver2022-ps/hyper-v/Add-VMGpuPartitionAdapter.md index cbdc9ee09f..7bc54626b8 100644 --- a/docset/winserver2022-ps/hyper-v/Add-VMGpuPartitionAdapter.md +++ b/docset/winserver2022-ps/hyper-v/Add-VMGpuPartitionAdapter.md @@ -46,7 +46,7 @@ $vm = Get-VM -name "TestVM" Add-VMGpuPartitionAdapter -VM $vm ``` -Assigns a partition to a specific VM object. If you want to assign multiple GPU partitions run this command the number of times equal to the number of GPU partitions needed. +Assigns a partition to a specific VM object. ### Example 2 ```powershell @@ -381,7 +381,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](httpS://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/docset/winserver2022-ps/hyper-v/Get-VMGpuPartitionAdapter.md b/docset/winserver2022-ps/hyper-v/Get-VMGpuPartitionAdapter.md index ed3f711e2e..7d1998d6c5 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMGpuPartitionAdapter.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMGpuPartitionAdapter.md @@ -36,12 +36,12 @@ $testvm = get-VM "TestVM" Get-VMGpuPartitionAdapter -VM $testvm ``` -Displays the GPU information assigned to a VM object +Displays the GPU information assigned to a VM object. ## PARAMETERS ### -AdapterId -A VM's GPU partition identification number used to display the GPU information assigned to a VM +This is a VM's GPU partition identification number used to display the GPU information assigned to a VM. ```yaml Type: String @@ -73,7 +73,7 @@ Accept wildcard characters: False ``` ### -ComputerName -Specifies that one or more Hyper-V hosts on the virtual network adapters are to be retrieved. +Specifies one or more Hyper-V hosts on the virtual network adapters are to be retrieved. NetBIOS names, IP addresses, and fully qualified domain names are allowed. The default is the local computer. Use localhost or a dot ('.') to specify the local computer explicitly. @@ -107,8 +107,7 @@ Accept wildcard characters: False ``` ### -VM -Specifies the virtual machine whose virtual network adapters are to be retrieved. -. The asterisk, ('*'), is the wildcard. +Specifies the virtual machine whose virtual network adapters are to be retrieved. The asterisk, ('*'), is the wildcard. If it is specified the cmdlet returns virtual network adapters from every virtual machine in the system. ```yaml @@ -120,7 +119,7 @@ Required: True Position: 0 Default value: None Accept pipeline input: True (ByValue) -Accept wildcard characters: true +Accept wildcard characters: True ``` ### -VMName diff --git a/docset/winserver2022-ps/hyper-v/Get-VMHostPartitionableGpu.md b/docset/winserver2022-ps/hyper-v/Get-VMHostPartitionableGpu.md index 8cc52abb73..0c1ce185ec 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMHostPartitionableGpu.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMHostPartitionableGpu.md @@ -73,7 +73,7 @@ Accept wildcard characters: False ### -ComputerName Specifies one or more Hyper-V hosts that run this cmdlet. -NetBIOS names, IP addresses, and fully qualified domain names are allowable. +NetBIOS names, IP addresses, and fully qualified domain names are allowed. The default is the local computer. Use localhost or a dot ('.') to specify the local computer explicitly. diff --git a/docset/winserver2022-ps/hyper-v/Remove-VMGpuPartitionAdapter.md b/docset/winserver2022-ps/hyper-v/Remove-VMGpuPartitionAdapter.md index 573ed49a22..dc0efa46b7 100644 --- a/docset/winserver2022-ps/hyper-v/Remove-VMGpuPartitionAdapter.md +++ b/docset/winserver2022-ps/hyper-v/Remove-VMGpuPartitionAdapter.md @@ -45,7 +45,7 @@ $testvm = Get-VM "TestVM" Remove-VMGpuPartitionAdapter -VM $testvm ``` -Removes a partition assigned to a specific VM Object. +Removes a partition assigned to a specific VM object. ### Example 2 ```powershell @@ -54,12 +54,12 @@ $GPUpartition = Get-VMGpuPartitionAdapter -VM $testvm Remove-VMGpuPartitionAdapter -VM $testvm -AdapterId $GPUpartiton[0].id ``` -Remove a specific partition in a VM +Remove a specific partition in a VM. ## PARAMETERS ### -AdapterId -A VM's GPU partition identification number used to remove a GPU from a VM. +This is a VM's GPU partition identification number used to remove a GPU from a VM. ```yaml Type: String @@ -91,7 +91,7 @@ Accept wildcard characters: False ``` ### -ComputerName -Specifies that one or more Hyper-V hosts on the virtual network adapters are to be retrieved. NetBIOS names, IP addresses, and fully qualified domain names are allowed. +Specifies one or more Hyper-V hosts on the virtual network adapters are to be retrieved. NetBIOS names, IP addresses, and fully qualified domain names are allowed. The default is the local computer.Use localhost or a dot ('.') to specify the local computer explicitly. ```yaml @@ -107,8 +107,7 @@ Accept wildcard characters: False ``` ### -Credential -Specifies one or more user accounts that have permission to perform this action. -The default is the current user. +Specifies one or more user accounts that have permission to perform this action. The default is the current user. ```yaml Type: PSCredential[] From ae5551621499c0a96b056e00890a29b83f2ef89f Mon Sep 17 00:00:00 2001 From: LolaOy <103140748+LolaOy@users.noreply.github.com> Date: Wed, 9 Nov 2022 14:39:02 -0600 Subject: [PATCH 331/965] adding metadata details to Set-VMGpuPartitionAdapter --- docset/winserver2022-ps/hyper-v/Set-VMHostPartitionableGpu.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/hyper-v/Set-VMHostPartitionableGpu.md b/docset/winserver2022-ps/hyper-v/Set-VMHostPartitionableGpu.md index 5b28f6ab86..df43859261 100644 --- a/docset/winserver2022-ps/hyper-v/Set-VMHostPartitionableGpu.md +++ b/docset/winserver2022-ps/hyper-v/Set-VMHostPartitionableGpu.md @@ -1,7 +1,9 @@ --- +description: Assigns a partition of a GPU to a virtual machine. external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V -online version: +ms.date: 10/21/2022 +online version: https://learn.microsoft.com/en-us/powershell/module/hyper-v/set-vmhostpartitionablegpu?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- From ac7c8aeb867b77bedf3fc42e68f2ed5911477774 Mon Sep 17 00:00:00 2001 From: LolaOy <103140748+LolaOy@users.noreply.github.com> Date: Mon, 14 Nov 2022 16:24:24 -0600 Subject: [PATCH 332/965] Add title to each metadata section --- docset/winserver2022-ps/hyper-v/Add-VMGpuPartitionAdapter.md | 1 + docset/winserver2022-ps/hyper-v/Get-VMGpuPartitionAdapter.md | 1 + docset/winserver2022-ps/hyper-v/Get-VMHostPartitionableGpu.md | 1 + .../winserver2022-ps/hyper-v/Remove-VMGpuPartitionAdapter.md | 2 +- docset/winserver2022-ps/hyper-v/Set-VMGpuPartitionAdapter.md | 2 +- docset/winserver2022-ps/hyper-v/Set-VMHostPartitionableGpu.md | 3 ++- 6 files changed, 7 insertions(+), 3 deletions(-) diff --git a/docset/winserver2022-ps/hyper-v/Add-VMGpuPartitionAdapter.md b/docset/winserver2022-ps/hyper-v/Add-VMGpuPartitionAdapter.md index 7bc54626b8..bf3221f119 100644 --- a/docset/winserver2022-ps/hyper-v/Add-VMGpuPartitionAdapter.md +++ b/docset/winserver2022-ps/hyper-v/Add-VMGpuPartitionAdapter.md @@ -5,6 +5,7 @@ Module Name: Hyper-V ms.date: 09/22/2022 online version: https://learn.microsoft.com/en-us/powershell/module/hyper-v/add-vmgpupartitionadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 +title: Add-VMGpuPartitionAdapter --- # Add-VMGpuPartitionAdapter diff --git a/docset/winserver2022-ps/hyper-v/Get-VMGpuPartitionAdapter.md b/docset/winserver2022-ps/hyper-v/Get-VMGpuPartitionAdapter.md index 7d1998d6c5..47174cc758 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMGpuPartitionAdapter.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMGpuPartitionAdapter.md @@ -5,6 +5,7 @@ Module Name: Hyper-V ms.date: 09/22/2022 online version: https://learn.microsoft.com/en-us/powershell/module/hyper-v/get-vmgpupartitionadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 +title: Get-VMGpuPartitionAdapter --- # Get-VMGpuPartitionAdapter diff --git a/docset/winserver2022-ps/hyper-v/Get-VMHostPartitionableGpu.md b/docset/winserver2022-ps/hyper-v/Get-VMHostPartitionableGpu.md index 0c1ce185ec..95bbc5d857 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMHostPartitionableGpu.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMHostPartitionableGpu.md @@ -5,6 +5,7 @@ Module Name: Hyper-V ms.date: 09/22/2022 online version: https://learn.microsoft.com/en-us/powershell/module/hyper-v/get-vmhostpartitionablegpu?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 +title: Get-VMHostPartitionableGpu --- # Get-VMHostPartitionableGpu diff --git a/docset/winserver2022-ps/hyper-v/Remove-VMGpuPartitionAdapter.md b/docset/winserver2022-ps/hyper-v/Remove-VMGpuPartitionAdapter.md index dc0efa46b7..fc674b8c16 100644 --- a/docset/winserver2022-ps/hyper-v/Remove-VMGpuPartitionAdapter.md +++ b/docset/winserver2022-ps/hyper-v/Remove-VMGpuPartitionAdapter.md @@ -5,7 +5,7 @@ Module Name: Hyper-V ms.date: 09/22/2022 online version: https://learn.microsoft.com/en-us/powershell/module/hyper-v/remove-vmgpupartitionadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 - +title: Remove-VMGpuPartitionAdapter --- # Remove-VMGpuPartitionAdapter diff --git a/docset/winserver2022-ps/hyper-v/Set-VMGpuPartitionAdapter.md b/docset/winserver2022-ps/hyper-v/Set-VMGpuPartitionAdapter.md index 244ee70795..df7373e1e0 100644 --- a/docset/winserver2022-ps/hyper-v/Set-VMGpuPartitionAdapter.md +++ b/docset/winserver2022-ps/hyper-v/Set-VMGpuPartitionAdapter.md @@ -5,7 +5,7 @@ Module Name: Hyper-V ms.date: 09/22/2022 online version: https://learn.microsoft.com/en-us/powershell/module/hyper-v/set-vmgpupartitionadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 - +title: Set-VMGpuPartitionAdapter --- # Set-VMGpuPartitionAdapter diff --git a/docset/winserver2022-ps/hyper-v/Set-VMHostPartitionableGpu.md b/docset/winserver2022-ps/hyper-v/Set-VMHostPartitionableGpu.md index df43859261..4a27933799 100644 --- a/docset/winserver2022-ps/hyper-v/Set-VMHostPartitionableGpu.md +++ b/docset/winserver2022-ps/hyper-v/Set-VMHostPartitionableGpu.md @@ -1,10 +1,11 @@ --- -description: Assigns a partition of a GPU to a virtual machine. +description: Configures host partitionable GPU to the number of partitions supported by the manufacturer. external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 10/21/2022 online version: https://learn.microsoft.com/en-us/powershell/module/hyper-v/set-vmhostpartitionablegpu?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 +title: Set-VMHostPartitionableGpu --- # Set-VMHostPartitionableGpu From 2306c0e2fa08315425ff14a35f2b507e9cb3bccd Mon Sep 17 00:00:00 2001 From: LolaOy <103140748+LolaOy@users.noreply.github.com> Date: Tue, 15 Nov 2022 14:55:24 -0600 Subject: [PATCH 333/965] add review comments --- .../hyper-v/Add-VMGpuPartitionAdapter.md | 30 +++++++++---------- .../hyper-v/Get-VMGpuPartitionAdapter.md | 6 ++-- .../hyper-v/Get-VMHostPartitionableGpu.md | 9 +++--- .../hyper-v/Remove-VMGpuPartitionAdapter.md | 6 ++-- .../hyper-v/Set-VMGpuPartitionAdapter.md | 14 ++++----- .../hyper-v/Set-VMHostPartitionableGpu.md | 14 ++++----- 6 files changed, 39 insertions(+), 40 deletions(-) diff --git a/docset/winserver2022-ps/hyper-v/Add-VMGpuPartitionAdapter.md b/docset/winserver2022-ps/hyper-v/Add-VMGpuPartitionAdapter.md index bf3221f119..8cff32ec80 100644 --- a/docset/winserver2022-ps/hyper-v/Add-VMGpuPartitionAdapter.md +++ b/docset/winserver2022-ps/hyper-v/Add-VMGpuPartitionAdapter.md @@ -3,7 +3,7 @@ description: Adds a GPU partition adapter to a virtual machine. external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 09/22/2022 -online version: https://learn.microsoft.com/en-us/powershell/module/hyper-v/add-vmgpupartitionadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmgpupartitionadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-VMGpuPartitionAdapter --- @@ -47,7 +47,7 @@ $vm = Get-VM -name "TestVM" Add-VMGpuPartitionAdapter -VM $vm ``` -Assigns a partition to a specific VM object. +This example assigns a partition to a specific VM object. ### Example 2 ```powershell @@ -55,7 +55,7 @@ $vm = Get-VM -name "TestVM" Add-VMGpuPartitionAdapter -VM $vm -Instancepath "SampleGPUInstancePath" ``` -Assigns a partition from a specific GPU to a VM where the instance path is the GPU device ID name on the host. +This example assigns a partition from a specific GPU to a VM where the instance path is the GPU device ID name on the host. ## PARAMETERS @@ -111,7 +111,7 @@ Accept wildcard characters: False ``` ### -InstancePath -Represents the Device Instance path of a GPU in the host. This value can be obtained from the "Name" property of the command Get-VMHostPartitionableGpu +Represents the Device Instance path of a GPU in the host. This value can be obtained from the "Name" property of the command 'Get-VMHostPartitionableGpu'. ```yaml Type: String @@ -156,7 +156,7 @@ Accept wildcard characters: False ``` ### -MaxPartitionEncode -the maximum number of encoders assigned by the host GPU. This is defined by the manufacturer's driver. +The maximum number of encoders assigned by the host GPU. This is defined by the manufacturer's driver. ```yaml Type: UInt64 @@ -171,7 +171,7 @@ Accept wildcard characters: False ``` ### -MaxPartitionVRAM -the maximum VRAM supported by the host GPU. This is defined by the manufacturer's driver. +The maximum VRAM in byte supported by the host GPU. This is defined by the manufacturer's driver. ```yaml Type: UInt64 @@ -186,7 +186,7 @@ Accept wildcard characters: False ``` ### -MinPartitionCompute -the minimum number of compute assigned by the host GPU. This is defined by the manufacturer's driver. +The minimum number of compute assigned by the host GPU. This is defined by the manufacturer's driver. ```yaml Type: UInt64 @@ -201,7 +201,7 @@ Accept wildcard characters: False ``` ### -MinPartitionDecode -the minimum number of decoders assigned by the host GPU. This is defined by the manufacturer's driver. +The minimum number of decoders assigned by the host GPU. This is defined by the manufacturer's driver. ```yaml Type: UInt64 @@ -216,7 +216,7 @@ Accept wildcard characters: False ``` ### -MinPartitionEncode -the minimum number of encoders assigned by the host GPU. This is defined by the manufacturer's driver. +The minimum number of encoders assigned by the host GPU. This is defined by the manufacturer's driver. ```yaml Type: UInt64 @@ -231,7 +231,7 @@ Accept wildcard characters: False ``` ### -MinPartitionVRAM -the minimum VRAM supported by the host GPU. This is defined by the manufacturer's driver. +The minimum VRAM in byte supported by the host GPU. This is defined by the manufacturer's driver. ```yaml Type: UInt64 @@ -246,7 +246,7 @@ Accept wildcard characters: False ``` ### -OptimalPartitionCompute -the optimal number of compute assigned by the host GPU. This is defined by the manufacturer's driver. +The optimal number of compute assigned by the host GPU. This is defined by the manufacturer's driver. ```yaml Type: UInt64 @@ -260,8 +260,8 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -the optimalPartitionDecode -the optimal number of decoders assigned by the host GPU. This is defined by the manufacturer's driver. +### -OptimalPartitionDecode +The optimal number of decoders assigned by the host GPU. This is defined by the manufacturer's driver. ```yaml Type: UInt64 @@ -276,7 +276,7 @@ Accept wildcard characters: False ``` ### -OptimalPartitionEncode -the optimal number of encoders assigned by the host GPU. This is defined by the manufacturer's driver. +The optimal number of encoders assigned by the host GPU. This is defined by the manufacturer's driver. ```yaml Type: UInt64 @@ -291,7 +291,7 @@ Accept wildcard characters: False ``` ### -OptimalPartitionVRAM -the optimal VRAM supported by the host GPU. This is defined by the manufacturer's driver. +The optimal VRAM in byte supported by the host GPU. This is defined by the manufacturer's driver. ```yaml Type: UInt64 diff --git a/docset/winserver2022-ps/hyper-v/Get-VMGpuPartitionAdapter.md b/docset/winserver2022-ps/hyper-v/Get-VMGpuPartitionAdapter.md index 47174cc758..321ca734b1 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMGpuPartitionAdapter.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMGpuPartitionAdapter.md @@ -3,7 +3,7 @@ description: Gets the information of assigned GPU partitions to a virtual machin external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 09/22/2022 -online version: https://learn.microsoft.com/en-us/powershell/module/hyper-v/get-vmgpupartitionadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmgpupartitionadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMGpuPartitionAdapter --- @@ -37,7 +37,7 @@ $testvm = get-VM "TestVM" Get-VMGpuPartitionAdapter -VM $testvm ``` -Displays the GPU information assigned to a VM object. +This example gets the GPU information assigned to a VM object. ## PARAMETERS @@ -108,7 +108,7 @@ Accept wildcard characters: False ``` ### -VM -Specifies the virtual machine whose virtual network adapters are to be retrieved. The asterisk, ('*'), is the wildcard. +Specifies the virtual machine whose virtual network adapters are to be retrieved. The asterisk ('*') is the wildcard. If it is specified the cmdlet returns virtual network adapters from every virtual machine in the system. ```yaml diff --git a/docset/winserver2022-ps/hyper-v/Get-VMHostPartitionableGpu.md b/docset/winserver2022-ps/hyper-v/Get-VMHostPartitionableGpu.md index 95bbc5d857..c22e441be3 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMHostPartitionableGpu.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMHostPartitionableGpu.md @@ -3,7 +3,7 @@ description: Gets the host machine’s partitionable GPU. external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 09/22/2022 -online version: https://learn.microsoft.com/en-us/powershell/module/hyper-v/get-vmhostpartitionablegpu?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmhostpartitionablegpu?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VMHostPartitionableGpu --- @@ -37,14 +37,14 @@ This displays the information of the GPU as provided by the manufacturer's drive Get-VMHostPartitionableGpu ``` -Gets the details of the local partitionable graphic processing unit on the host +This example gets the details of the local partitionable graphic processing unit on the host. ### Example 2 ```powershell Get-VMHostPartitionableGpu -ComputerName "SampleHost" ``` -Displays a partitionable GPU by using the host name. This command will display all the GPU devices available for partitioning in the host. +This example gets a partitionable GPU by using the host name. This command will display all the GPU devices available for partitioning in the host. ### Example 3 ```powershell @@ -91,8 +91,7 @@ Accept wildcard characters: False ``` ### -Credential -Specifies one or more user accounts that have permission to perform this action. -The default is the current user. +Specifies one or more user accounts that have permission to perform this action. The default is the current user. ```yaml Type: PSCredential[] diff --git a/docset/winserver2022-ps/hyper-v/Remove-VMGpuPartitionAdapter.md b/docset/winserver2022-ps/hyper-v/Remove-VMGpuPartitionAdapter.md index fc674b8c16..a001c23afc 100644 --- a/docset/winserver2022-ps/hyper-v/Remove-VMGpuPartitionAdapter.md +++ b/docset/winserver2022-ps/hyper-v/Remove-VMGpuPartitionAdapter.md @@ -3,7 +3,7 @@ description: Removes an assigned GPU partition from a virtual machine. external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 09/22/2022 -online version: https://learn.microsoft.com/en-us/powershell/module/hyper-v/remove-vmgpupartitionadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmgpupartitionadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VMGpuPartitionAdapter --- @@ -45,7 +45,7 @@ $testvm = Get-VM "TestVM" Remove-VMGpuPartitionAdapter -VM $testvm ``` -Removes a partition assigned to a specific VM object. +This example removes a partition assigned to a specific VM object. ### Example 2 ```powershell @@ -54,7 +54,7 @@ $GPUpartition = Get-VMGpuPartitionAdapter -VM $testvm Remove-VMGpuPartitionAdapter -VM $testvm -AdapterId $GPUpartiton[0].id ``` -Remove a specific partition in a VM. +This example removes a specific partition object from a specific VM. ## PARAMETERS diff --git a/docset/winserver2022-ps/hyper-v/Set-VMGpuPartitionAdapter.md b/docset/winserver2022-ps/hyper-v/Set-VMGpuPartitionAdapter.md index df7373e1e0..a414677e20 100644 --- a/docset/winserver2022-ps/hyper-v/Set-VMGpuPartitionAdapter.md +++ b/docset/winserver2022-ps/hyper-v/Set-VMGpuPartitionAdapter.md @@ -3,7 +3,7 @@ description: Assigns a partition of a GPU to a virtual machine. external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 09/22/2022 -online version: https://learn.microsoft.com/en-us/powershell/module/hyper-v/set-vmgpupartitionadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmgpupartitionadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMGpuPartitionAdapter --- @@ -57,7 +57,7 @@ $vm = get-vm test Set-VMGpuPartitionAdapter -VM $vm ``` -Assign a partition to a VM passing a VM object. +This example assign a partition to a VM passing a VM object. ## PARAMETERS @@ -126,7 +126,7 @@ Accept wildcard characters: False ``` ### -MaxPartitionCompute - The maximum number of compute assigned by the host GPU. This is defined by the manufacturer's driver. +The maximum number of compute assigned by the host GPU. This is defined by the manufacturer's driver. ```yaml Type: UInt64 @@ -171,7 +171,7 @@ Accept wildcard characters: False ``` ### -MaxPartitionVRAM -The maximum VRAM supported by the host GPU. This is defined by the manufacturer's driver. +The maximum VRAM in byte supported by the host GPU. This is defined by the manufacturer's driver. ```yaml Type: UInt64 @@ -231,7 +231,7 @@ Accept wildcard characters: False ``` ### -MinPartitionVRAM -The minimum VRAM supported by the host GPU. This is defined by the manufacturer's driver. +The minimum VRAM in byte supported by the host GPU. This is defined by the manufacturer's driver. ```yaml Type: UInt64 @@ -291,7 +291,7 @@ Accept wildcard characters: False ``` ### -OptimalPartitionVRAM -The optimal VRAM supported by the host GPU. This is defined by the manufacturer's driver. +The optimal VRAM in byte supported by the host GPU. This is defined by the manufacturer's driver. ```yaml Type: UInt64 @@ -337,7 +337,7 @@ Accept wildcard characters: False ``` ### -VMGpuPartitionAdapter -GPU partition object obtained from 'Get-VMGpuPartitionAdapter'' +GPU partition object obtained from 'Get-VMGpuPartitionAdapter'. ```yaml Type: VMGpuPartitionAdapter[] diff --git a/docset/winserver2022-ps/hyper-v/Set-VMHostPartitionableGpu.md b/docset/winserver2022-ps/hyper-v/Set-VMHostPartitionableGpu.md index 4a27933799..6cca814585 100644 --- a/docset/winserver2022-ps/hyper-v/Set-VMHostPartitionableGpu.md +++ b/docset/winserver2022-ps/hyper-v/Set-VMHostPartitionableGpu.md @@ -1,9 +1,9 @@ --- -description: Configures host partitionable GPU to the number of partitions supported by the manufacturer. +description: Configures the host partitionable GPU to the number of partitions supported by the manufacturer. external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V ms.date: 10/21/2022 -online version: https://learn.microsoft.com/en-us/powershell/module/hyper-v/set-vmhostpartitionablegpu?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmhostpartitionablegpu?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMHostPartitionableGpu --- @@ -11,7 +11,7 @@ title: Set-VMHostPartitionableGpu # Set-VMHostPartitionableGpu ## SYNOPSIS -Configures host partitionable GPU to the number of partitions supported by the manufacturer +Configures the host partitionable GPU to the number of partitions supported by the manufacturer. ## SYNTAX @@ -39,7 +39,7 @@ Set-VMHostPartitionableGpu [-Passthru] [-Name ] [-PartitionCount Date: Tue, 15 Nov 2022 15:16:11 -0600 Subject: [PATCH 334/965] Use proper sentence casing --- docset/winserver2022-ps/hyper-v/Add-VMGpuPartitionAdapter.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/hyper-v/Add-VMGpuPartitionAdapter.md b/docset/winserver2022-ps/hyper-v/Add-VMGpuPartitionAdapter.md index 8cff32ec80..9fc0aac35f 100644 --- a/docset/winserver2022-ps/hyper-v/Add-VMGpuPartitionAdapter.md +++ b/docset/winserver2022-ps/hyper-v/Add-VMGpuPartitionAdapter.md @@ -141,7 +141,7 @@ Accept wildcard characters: False ``` ### -MaxPartitionDecode -the maximum number of decoders assigned by the host GPU. This is defined by the manufacturer's driver. +The maximum number of decoders assigned by the host GPU. This is defined by the manufacturer's driver. ```yaml Type: UInt64 From 96d6b129cf6682c1823a98884bf5b1030beca252 Mon Sep 17 00:00:00 2001 From: LolaOy <103140748+LolaOy@users.noreply.github.com> Date: Wed, 16 Nov 2022 11:58:06 -0600 Subject: [PATCH 335/965] review comment - byte supported to bytes supported --- .../winserver2022-ps/hyper-v/Add-VMGpuPartitionAdapter.md | 6 +++--- .../winserver2022-ps/hyper-v/Set-VMGpuPartitionAdapter.md | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docset/winserver2022-ps/hyper-v/Add-VMGpuPartitionAdapter.md b/docset/winserver2022-ps/hyper-v/Add-VMGpuPartitionAdapter.md index 9fc0aac35f..e86a3aa1c8 100644 --- a/docset/winserver2022-ps/hyper-v/Add-VMGpuPartitionAdapter.md +++ b/docset/winserver2022-ps/hyper-v/Add-VMGpuPartitionAdapter.md @@ -171,7 +171,7 @@ Accept wildcard characters: False ``` ### -MaxPartitionVRAM -The maximum VRAM in byte supported by the host GPU. This is defined by the manufacturer's driver. +The maximum VRAM in bytes supported by the host GPU. This is defined by the manufacturer's driver. ```yaml Type: UInt64 @@ -231,7 +231,7 @@ Accept wildcard characters: False ``` ### -MinPartitionVRAM -The minimum VRAM in byte supported by the host GPU. This is defined by the manufacturer's driver. +The minimum VRAM in bytes supported by the host GPU. This is defined by the manufacturer's driver. ```yaml Type: UInt64 @@ -291,7 +291,7 @@ Accept wildcard characters: False ``` ### -OptimalPartitionVRAM -The optimal VRAM in byte supported by the host GPU. This is defined by the manufacturer's driver. +The optimal VRAM in bytes supported by the host GPU. This is defined by the manufacturer's driver. ```yaml Type: UInt64 diff --git a/docset/winserver2022-ps/hyper-v/Set-VMGpuPartitionAdapter.md b/docset/winserver2022-ps/hyper-v/Set-VMGpuPartitionAdapter.md index a414677e20..a1171a5118 100644 --- a/docset/winserver2022-ps/hyper-v/Set-VMGpuPartitionAdapter.md +++ b/docset/winserver2022-ps/hyper-v/Set-VMGpuPartitionAdapter.md @@ -171,7 +171,7 @@ Accept wildcard characters: False ``` ### -MaxPartitionVRAM -The maximum VRAM in byte supported by the host GPU. This is defined by the manufacturer's driver. +The maximum VRAM in bytes supported by the host GPU. This is defined by the manufacturer's driver. ```yaml Type: UInt64 @@ -231,7 +231,7 @@ Accept wildcard characters: False ``` ### -MinPartitionVRAM -The minimum VRAM in byte supported by the host GPU. This is defined by the manufacturer's driver. +The minimum VRAM in bytes supported by the host GPU. This is defined by the manufacturer's driver. ```yaml Type: UInt64 @@ -291,7 +291,7 @@ Accept wildcard characters: False ``` ### -OptimalPartitionVRAM -The optimal VRAM in byte supported by the host GPU. This is defined by the manufacturer's driver. +The optimal VRAM in bytes supported by the host GPU. This is defined by the manufacturer's driver. ```yaml Type: UInt64 From 99fb4dd9e1ba2dd5f63259af24ae0dd1378b023b Mon Sep 17 00:00:00 2001 From: Sean Wheeler Date: Tue, 29 Nov 2022 17:14:01 -0600 Subject: [PATCH 336/965] fix character formatting and rebase --- docset/winserver2022-ps/hyper-v/Get-VMGpuPartitionAdapter.md | 5 +++-- .../winserver2022-ps/hyper-v/Remove-VMGpuPartitionAdapter.md | 5 +++-- docset/winserver2022-ps/hyper-v/Set-VMGpuPartitionAdapter.md | 5 +++-- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/docset/winserver2022-ps/hyper-v/Get-VMGpuPartitionAdapter.md b/docset/winserver2022-ps/hyper-v/Get-VMGpuPartitionAdapter.md index 321ca734b1..5df16d8162 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VMGpuPartitionAdapter.md +++ b/docset/winserver2022-ps/hyper-v/Get-VMGpuPartitionAdapter.md @@ -108,8 +108,9 @@ Accept wildcard characters: False ``` ### -VM -Specifies the virtual machine whose virtual network adapters are to be retrieved. The asterisk ('*') is the wildcard. -If it is specified the cmdlet returns virtual network adapters from every virtual machine in the system. +Specifies the virtual machine whose virtual network adapters are to be retrieved. The asterisk (`*`) +is the wildcard. If it is specified the cmdlet returns virtual network adapters from every virtual +machine in the system. ```yaml Type: VirtualMachine[] diff --git a/docset/winserver2022-ps/hyper-v/Remove-VMGpuPartitionAdapter.md b/docset/winserver2022-ps/hyper-v/Remove-VMGpuPartitionAdapter.md index a001c23afc..0815ce1194 100644 --- a/docset/winserver2022-ps/hyper-v/Remove-VMGpuPartitionAdapter.md +++ b/docset/winserver2022-ps/hyper-v/Remove-VMGpuPartitionAdapter.md @@ -137,8 +137,9 @@ Accept wildcard characters: False ``` ### -VM -Specifies the virtual machine whose virtual network adapters are to be retrieved. The asterisk, ('*'), is the wildcard. -If it is specified the cmdlet returns virtual network adapters from every virtual machine in the system. +Specifies the virtual machine whose virtual network adapters are to be retrieved. The asterisk (`*`) +is the wildcard. If it is specified the cmdlet returns virtual network adapters from every virtual +machine in the system. ```yaml Type: VirtualMachine[] diff --git a/docset/winserver2022-ps/hyper-v/Set-VMGpuPartitionAdapter.md b/docset/winserver2022-ps/hyper-v/Set-VMGpuPartitionAdapter.md index a1171a5118..e6311979a5 100644 --- a/docset/winserver2022-ps/hyper-v/Set-VMGpuPartitionAdapter.md +++ b/docset/winserver2022-ps/hyper-v/Set-VMGpuPartitionAdapter.md @@ -321,8 +321,9 @@ Accept wildcard characters: False ``` ### -VM -Specifies the virtual machine whose virtual network adapters are to be retrieved. The asterisk, ('*'), is the wildcard. -If it is specified the cmdlet returns virtual network adapters from every virtual machine in the system. +Specifies the virtual machine whose virtual network adapters are to be retrieved. The asterisk (`*`) +is the wildcard. If it is specified the cmdlet returns virtual network adapters from every virtual +machine in the system. ```yaml Type: VirtualMachine[] From af142c1d2608aea0f6cce77146f65bba9f4ec83f Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Wed, 30 Nov 2022 18:51:17 +0530 Subject: [PATCH 337/965] Update Set-NetAdapterSriov.md No vports parameter available for Set-NetAdapterSriov Updated the example accordingly. Fixes #https://github.com/MicrosoftDocs/windows-powershell-docs/issues/2903 --- docset/winserver2022-ps/netadapter/Set-NetAdapterSriov.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/netadapter/Set-NetAdapterSriov.md b/docset/winserver2022-ps/netadapter/Set-NetAdapterSriov.md index 962c209695..34ecc1cca9 100644 --- a/docset/winserver2022-ps/netadapter/Set-NetAdapterSriov.md +++ b/docset/winserver2022-ps/netadapter/Set-NetAdapterSriov.md @@ -54,10 +54,10 @@ This command sets the number of virtual functions available to 31 on the network ### Example 2: Set the number of virtual functions and VPorts on the specified network adapter ``` -PS C:\> Set-NetAdapterSriov -Name "Ethernet 2" -NumVFs 31 -VPorts 64 -NumQueuePairsForDefaultVPort 2 -NumQueuePairsForNonDefaultVPort 2 +PS C:\> Set-NetAdapterSriov -Name "Ethernet 2" -NumVFs 31 -NumQueuePairsForDefaultVPort 2 -NumQueuePairsForNonDefaultVPort 2 ``` -This command sets the number of virtual functions to 31 and the total number of VPorts to 64. +This command sets the number of virtual functions to 31. This results in 31 virtual functions and 32 virtual machine queues (VMQ), plus 1 used by the physical function. Since the number of queue pair is set to 2 for both default and non-default ports, the total number of queue pairs used is 128. From f58f36fe13271c6c589cf5d54a57d24de1f03788 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Wed, 30 Nov 2022 19:13:56 +0530 Subject: [PATCH 338/965] Update New-StorageTier.md Made changes to the example to reflect the tier name fixes #https://github.com/MicrosoftDocs/windows-powershell-docs/issues/2954 --- docset/winserver2022-ps/storage/New-StorageTier.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/storage/New-StorageTier.md b/docset/winserver2022-ps/storage/New-StorageTier.md index 8fe64164f3..9ed2ac55be 100644 --- a/docset/winserver2022-ps/storage/New-StorageTier.md +++ b/docset/winserver2022-ps/storage/New-StorageTier.md @@ -58,7 +58,7 @@ The **New-StorageTier** cmdlet creates a storage tier in a storage pool. ### Example 1: Create a storage tier ``` -PS C:\> New-StorageTier -StoragePoolFriendlyName "TierPool01" -FriendlyName "Standard_HDD_Tier" -MediaType HDD +PS C:\> New-StorageTier -StoragePoolFriendlyName "TierPool01" -FriendlyName "Tier11" -MediaType HDD ``` This command creates a storage tier for hard disk drives named Tier11 in the storage pool named TierPool01. From f4cb3b45998cb04ad8cd010564717d027bdfab5c Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Wed, 30 Nov 2022 19:25:35 +0530 Subject: [PATCH 339/965] Update Get-DfsnFolder.md Change the Accept wildcard characters: True for parameter -Path fixes #https://github.com/MicrosoftDocs/windows-powershell-docs/issues/2937 --- docset/winserver2019-ps/dfsn/Get-DfsnFolder.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/dfsn/Get-DfsnFolder.md b/docset/winserver2019-ps/dfsn/Get-DfsnFolder.md index 01e2efcb10..707b1215e1 100644 --- a/docset/winserver2019-ps/dfsn/Get-DfsnFolder.md +++ b/docset/winserver2019-ps/dfsn/Get-DfsnFolder.md @@ -99,7 +99,7 @@ Required: True Position: 0 Default value: None Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False +Accept wildcard characters: True ``` ### -ThrottleLimit From 2074a1e3a3d142a8718fd1565816441970a5022c Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Wed, 30 Nov 2022 20:52:09 +0530 Subject: [PATCH 340/965] Update Set-ClusterStorageSpacesDirectDisk.md Updated the example stating that omitting the parameter indicates that the specified physical disks can be claimed. Fixes #https://github.com/MicrosoftDocs/windows-powershell-docs/issues/2910 --- .../failoverclusters/Set-ClusterStorageSpacesDirectDisk.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterStorageSpacesDirectDisk.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterStorageSpacesDirectDisk.md index e0477a0663..5fa843cc60 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterStorageSpacesDirectDisk.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterStorageSpacesDirectDisk.md @@ -40,7 +40,7 @@ PS C:\> Set-ClusterStorageSpacesDirectDisk -CimSession "K0619-C1.contoso.com" -C This command configures the system that physical disks that have the IDs `55CD2E404B75A3FC` and `50014EE05950DD7C` cannot be claimed by S2D. In this example, the **CanBeClaimed** parameter is -explicitly specified as `$False`. Omitting that parameter has the same effect. +explicitly specified as `$False`. Omitting that parameter indicates that the specified physical disks can be claimed. ## PARAMETERS From 2fcfee363e4a2ddd1c0baad81bbcfd40973557fc Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Thu, 1 Dec 2022 16:36:14 +0530 Subject: [PATCH 341/965] Update New-ADUser.md Updated 2012 version of the document --- docset/winserver2012-ps/activedirectory/New-ADUser.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2012-ps/activedirectory/New-ADUser.md b/docset/winserver2012-ps/activedirectory/New-ADUser.md index 44a858d498..ec7bdc4511 100644 --- a/docset/winserver2012-ps/activedirectory/New-ADUser.md +++ b/docset/winserver2012-ps/activedirectory/New-ADUser.md @@ -989,7 +989,7 @@ Accept wildcard characters: False ### -Office Specifies the location of the user's office or place of business. This parameter sets the Office property of a user object. -The LDAP display name (ldapDisplayName) of this property is "office". +The LDAP display name (ldapDisplayName) of this property is "physicalDeliveryOfficeName". The following example shows how to set this parameter. From dc797613144f73b53f3705c1761b9551b729c07e Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Thu, 1 Dec 2022 16:36:44 +0530 Subject: [PATCH 342/965] Update New-ADUser.md updated 2016 version of the document --- docset/winserver2016-ps/activedirectory/New-ADUser.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2016-ps/activedirectory/New-ADUser.md b/docset/winserver2016-ps/activedirectory/New-ADUser.md index 3c8737362c..2d64c48b2c 100644 --- a/docset/winserver2016-ps/activedirectory/New-ADUser.md +++ b/docset/winserver2016-ps/activedirectory/New-ADUser.md @@ -840,7 +840,7 @@ Accept wildcard characters: False ### -Office Specifies the location of the user's office or place of business. This parameter sets the **Office** property of a user object. -The LDAP display name (**ldapDisplayName**) of this property is office. +The LDAP display name (**ldapDisplayName**) of this property is physicalDeliveryOfficeName. ```yaml Type: String From f329fad56c6c21b5c0cd590bc41f911ab78311cb Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Thu, 1 Dec 2022 16:37:10 +0530 Subject: [PATCH 343/965] Update New-ADUser.md Updated 2019 version of the document --- docset/winserver2019-ps/activedirectory/New-ADUser.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/activedirectory/New-ADUser.md b/docset/winserver2019-ps/activedirectory/New-ADUser.md index 908bc89c40..13ed127b26 100644 --- a/docset/winserver2019-ps/activedirectory/New-ADUser.md +++ b/docset/winserver2019-ps/activedirectory/New-ADUser.md @@ -840,7 +840,7 @@ Accept wildcard characters: False ### -Office Specifies the location of the user's office or place of business. This parameter sets the **Office** property of a user object. -The LDAP display name (**ldapDisplayName**) of this property is office. +The LDAP display name (**ldapDisplayName**) of this property is physicalDeliveryOfficeName. ```yaml Type: String From c796de613e67ad5582bf24625601081c687c1046 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Thu, 1 Dec 2022 16:37:34 +0530 Subject: [PATCH 344/965] Update New-ADUser.md Updated 2012r2 version of the document --- docset/winserver2012r2-ps/activedirectory/New-ADUser.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2012r2-ps/activedirectory/New-ADUser.md b/docset/winserver2012r2-ps/activedirectory/New-ADUser.md index c5f77c9baf..62bf050d69 100644 --- a/docset/winserver2012r2-ps/activedirectory/New-ADUser.md +++ b/docset/winserver2012r2-ps/activedirectory/New-ADUser.md @@ -844,7 +844,7 @@ Accept wildcard characters: False ### -Office Specifies the location of the user's office or place of business. This parameter sets the **Office** property of a user object. -The LDAP display name (**ldapDisplayName**) of this property is office. +The LDAP display name (**ldapDisplayName**) of this property is physicalDeliveryOfficeName. ```yaml Type: String From adc97e76467ccc718b7cbf6be19158ef32faf434 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Thu, 1 Dec 2022 16:40:55 +0530 Subject: [PATCH 345/965] Update Add-OdbcDsn.md Updated 2016 version of the document --- docset/winserver2016-ps/wdac/Add-OdbcDsn.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2016-ps/wdac/Add-OdbcDsn.md b/docset/winserver2016-ps/wdac/Add-OdbcDsn.md index 4e644cf79a..b88525173f 100644 --- a/docset/winserver2016-ps/wdac/Add-OdbcDsn.md +++ b/docset/winserver2016-ps/wdac/Add-OdbcDsn.md @@ -58,7 +58,7 @@ Without *PassThru*, the cmdlet does not return anything. ### Example 4: Migrates DSNs to a newer version of a driver ``` PS C:\> $DsnArray = Get-OdbcDsn -DriverName 'SQL Server Native Client 10.0' -PS C:\> ForEach ($Dsn in $ DsnArr) { +PS C:\> ForEach ($Dsn in $DsnArray) { Remove-OdbcDsn -InputObject $Dsn # You can change the property array as well, # if DSN attributes have been changed in the new driver version From 9c7235fe33db3a7bb1fd7e371764c582df51b861 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Thu, 1 Dec 2022 16:41:16 +0530 Subject: [PATCH 346/965] Update Add-OdbcDsn.md updated 2019 version of the document --- docset/winserver2019-ps/wdac/Add-OdbcDsn.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/wdac/Add-OdbcDsn.md b/docset/winserver2019-ps/wdac/Add-OdbcDsn.md index 46b159fb5f..2555fc7bd4 100644 --- a/docset/winserver2019-ps/wdac/Add-OdbcDsn.md +++ b/docset/winserver2019-ps/wdac/Add-OdbcDsn.md @@ -58,7 +58,7 @@ Without *PassThru*, the cmdlet does not return anything. ### Example 4: Migrates DSNs to a newer version of a driver ``` PS C:\> $DsnArray = Get-OdbcDsn -DriverName 'SQL Server Native Client 10.0' -PS C:\> ForEach ($Dsn in $ DsnArr) { +PS C:\> ForEach ($Dsn in $DsnArray) { Remove-OdbcDsn -InputObject $Dsn # You can change the property array as well, # if DSN attributes have been changed in the new driver version From 365b5550af817b76bcd4c972d842afba0b7888af Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Thu, 1 Dec 2022 16:42:44 +0530 Subject: [PATCH 347/965] Update Add-OdbcDsn.md Updated 2012 version of the document --- docset/winserver2012-ps/wdac/Add-OdbcDsn.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2012-ps/wdac/Add-OdbcDsn.md b/docset/winserver2012-ps/wdac/Add-OdbcDsn.md index 33d0daddb2..8adc874625 100644 --- a/docset/winserver2012-ps/wdac/Add-OdbcDsn.md +++ b/docset/winserver2012-ps/wdac/Add-OdbcDsn.md @@ -53,8 +53,8 @@ By default, this command does not return the driver object if the "PassThru" par ### 4: ``` -C:\PS> $dsnArr = Get-OdbcDsn -DriverName 'SQL Server Native Client 10.0' -C:\PS> foreach ($dsn in $dsnArr) { +C:\PS> $DsnArray = Get-OdbcDsn -DriverName 'SQL Server Native Client 10.0' +C:\PS> foreach ($dsn in $DsnArray) { Remove-OdbcDsn $dsn # You can change the property array as well, # if DSN attributes have been changed in the new driver version From 047b7d724185df27e6528fd99919daaf2cdb38ec Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Thu, 1 Dec 2022 16:43:09 +0530 Subject: [PATCH 348/965] Update Add-OdbcDsn.md updated 2012 r2 version of the document --- docset/winserver2012r2-ps/wdac/Add-OdbcDsn.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2012r2-ps/wdac/Add-OdbcDsn.md b/docset/winserver2012r2-ps/wdac/Add-OdbcDsn.md index 2ab96ead2f..52e1e32cfb 100644 --- a/docset/winserver2012r2-ps/wdac/Add-OdbcDsn.md +++ b/docset/winserver2012r2-ps/wdac/Add-OdbcDsn.md @@ -56,8 +56,8 @@ Without **PassThru**, the cmdlet does not return anything. ### Example 4: Migrates DSNs to a newer version of a driver ``` -PS C:\> $dsnArr = Get-OdbcDsn -DriverName 'SQL Server Native Client 10.0' -PS C:\> foreach ($dsn in $dsnArr) { +PS C:\> $DsnArray = Get-OdbcDsn -DriverName 'SQL Server Native Client 10.0' +PS C:\> foreach ($dsn in $DsnArray) { Remove-OdbcDsn -InputObject $dsn # You can change the property array as well, # if DSN attributes have been changed in the new driver version From 39009494ff0ee6761dbc089ff1972fdc1b48f222 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Thu, 1 Dec 2022 16:46:16 +0530 Subject: [PATCH 349/965] Update Set-NetAdapterSriov.md updated 2012 version of the document --- docset/winserver2012-ps/netadapter/Set-NetAdapterSriov.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2012-ps/netadapter/Set-NetAdapterSriov.md b/docset/winserver2012-ps/netadapter/Set-NetAdapterSriov.md index 6fa841f191..abe193c271 100644 --- a/docset/winserver2012-ps/netadapter/Set-NetAdapterSriov.md +++ b/docset/winserver2012-ps/netadapter/Set-NetAdapterSriov.md @@ -48,10 +48,10 @@ This example sets the number of VFs available to 31 on the network adapter named ### EXAMPLE 2 ``` -PS C:\>Set-NetAdapterSriov -Name "Ethernet 2" -NumVFs 31 -VPorts 64 -NumQueuePairsForDefaultVPort 2 -NumQueuePairsForNonDefaultVPort 2 +PS C:\>Set-NetAdapterSriov -Name "Ethernet 2" -NumVFs 31 -NumQueuePairsForDefaultVPort 2 -NumQueuePairsForNonDefaultVPort 2 ``` -This example sets the number of VFs to 31 and the total number of VPorts to 64. +This example sets the number of VFs to 31. This will result in 31 VF and `32` virtual machine queue (VMQ), plus 1 used by the physical function (PF). Since the number of queue pair is set to 2 for both default and non-default ports, the total number of queue pairs used will be `128`. From bd4c94280740215eaf9a0a3529bdaaf6752f481b Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Thu, 1 Dec 2022 16:46:39 +0530 Subject: [PATCH 350/965] Update Set-NetAdapterSriov.md updated 2016 version of the document --- docset/winserver2016-ps/netadapter/Set-NetAdapterSriov.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2016-ps/netadapter/Set-NetAdapterSriov.md b/docset/winserver2016-ps/netadapter/Set-NetAdapterSriov.md index 1eed29d4e5..74307ca1d3 100644 --- a/docset/winserver2016-ps/netadapter/Set-NetAdapterSriov.md +++ b/docset/winserver2016-ps/netadapter/Set-NetAdapterSriov.md @@ -54,10 +54,10 @@ This command sets the number of virtual functions available to 31 on the network ### Example 2: Set the number of virtual functions and VPorts on the specified network adapter ``` -PS C:\> Set-NetAdapterSriov -Name "Ethernet 2" -NumVFs 31 -VPorts 64 -NumQueuePairsForDefaultVPort 2 -NumQueuePairsForNonDefaultVPort 2 +PS C:\> Set-NetAdapterSriov -Name "Ethernet 2" -NumVFs 31 -NumQueuePairsForDefaultVPort 2 -NumQueuePairsForNonDefaultVPort 2 ``` -This command sets the number of virtual functions to 31 and the total number of VPorts to 64. +This command sets the number of virtual functions to 31. This results in 31 virtual functions and 32 virtual machine queues (VMQ), plus 1 used by the physical function. Since the number of queue pair is set to 2 for both default and non-default ports, the total number of queue pairs used is 128. From a401331f93cb1af6946b2fbf5875ac97d5692c5c Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Thu, 1 Dec 2022 16:47:04 +0530 Subject: [PATCH 351/965] Update Set-NetAdapterSriov.md updated 2019 version of the document --- docset/winserver2019-ps/netadapter/Set-NetAdapterSriov.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2019-ps/netadapter/Set-NetAdapterSriov.md b/docset/winserver2019-ps/netadapter/Set-NetAdapterSriov.md index 43085866d1..e27112b4a3 100644 --- a/docset/winserver2019-ps/netadapter/Set-NetAdapterSriov.md +++ b/docset/winserver2019-ps/netadapter/Set-NetAdapterSriov.md @@ -54,10 +54,10 @@ This command sets the number of virtual functions available to 31 on the network ### Example 2: Set the number of virtual functions and VPorts on the specified network adapter ``` -PS C:\> Set-NetAdapterSriov -Name "Ethernet 2" -NumVFs 31 -VPorts 64 -NumQueuePairsForDefaultVPort 2 -NumQueuePairsForNonDefaultVPort 2 +PS C:\> Set-NetAdapterSriov -Name "Ethernet 2" -NumVFs 31 -NumQueuePairsForDefaultVPort 2 -NumQueuePairsForNonDefaultVPort 2 ``` -This command sets the number of virtual functions to 31 and the total number of VPorts to 64. +This command sets the number of virtual functions to 31. This results in 31 virtual functions and 32 virtual machine queues (VMQ), plus 1 used by the physical function. Since the number of queue pair is set to 2 for both default and non-default ports, the total number of queue pairs used is 128. From e90778e1d71cdfeb3c73f60fa54afd6d3d069eb8 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Thu, 1 Dec 2022 16:47:30 +0530 Subject: [PATCH 352/965] Update Set-NetAdapterSriov.md updated 2012r2 version of the document --- docset/winserver2012r2-ps/netadapter/Set-NetAdapterSriov.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2012r2-ps/netadapter/Set-NetAdapterSriov.md b/docset/winserver2012r2-ps/netadapter/Set-NetAdapterSriov.md index a62748b2c0..82456c31c6 100644 --- a/docset/winserver2012r2-ps/netadapter/Set-NetAdapterSriov.md +++ b/docset/winserver2012r2-ps/netadapter/Set-NetAdapterSriov.md @@ -53,10 +53,10 @@ This example sets the number of VFs available to 31 on the network adapter named ### EXAMPLE 2 ``` -PS C:\>Set-NetAdapterSriov -Name "Ethernet 2" -NumVFs 31 -VPorts 64 -NumQueuePairsForDefaultVPort 2 -NumQueuePairsForNonDefaultVPort 2 +PS C:\>Set-NetAdapterSriov -Name "Ethernet 2" -NumVFs 31 -NumQueuePairsForDefaultVPort 2 -NumQueuePairsForNonDefaultVPort 2 ``` -This example sets the number of VFs to 31 and the total number of VPorts to 64. +This example sets the number of VFs to 31. This will result in 31 VF and `32` virtual machine queue (VMQ), plus 1 used by the physical function (PF). Since the number of queue pair is set to 2 for both default and non-default ports, the total number of queue pairs used will be `128`. From d468fa07ec958e85466ca65627ced145d9199954 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Thu, 1 Dec 2022 16:50:49 +0530 Subject: [PATCH 353/965] Update Set-ClusterStorageSpacesDirectDisk.md updated 2016 version of the document --- .../failoverclusters/Set-ClusterStorageSpacesDirectDisk.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2016-ps/failoverclusters/Set-ClusterStorageSpacesDirectDisk.md b/docset/winserver2016-ps/failoverclusters/Set-ClusterStorageSpacesDirectDisk.md index a4069455f8..cc941f7ae4 100644 --- a/docset/winserver2016-ps/failoverclusters/Set-ClusterStorageSpacesDirectDisk.md +++ b/docset/winserver2016-ps/failoverclusters/Set-ClusterStorageSpacesDirectDisk.md @@ -36,7 +36,7 @@ PS C:\> Set-ClusterStorageSpacesDirectDisk -CimSession "K0619-C1.contoso.com" -C This command configures the system that physical disks that have the IDs 55CD2E404B75A3FC and 50014EE05950DD7C cannot be claimed by S2D. In this example, the *CanBeClaimed* parameter is explicitly specified as $False. -Omitting that parameter has the same effect. +Omitting that parameter indicates that the specified physical disks can be claimed. ## PARAMETERS From 122945a908195b52f4bc0e599214eb3477366f03 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Thu, 1 Dec 2022 16:51:08 +0530 Subject: [PATCH 354/965] Update Set-ClusterStorageSpacesDirectDisk.md updated 2019 version of the document. --- .../failoverclusters/Set-ClusterStorageSpacesDirectDisk.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/failoverclusters/Set-ClusterStorageSpacesDirectDisk.md b/docset/winserver2019-ps/failoverclusters/Set-ClusterStorageSpacesDirectDisk.md index f4163d078c..85e0a8641e 100644 --- a/docset/winserver2019-ps/failoverclusters/Set-ClusterStorageSpacesDirectDisk.md +++ b/docset/winserver2019-ps/failoverclusters/Set-ClusterStorageSpacesDirectDisk.md @@ -36,7 +36,7 @@ PS C:\> Set-ClusterStorageSpacesDirectDisk -CimSession "K0619-C1.contoso.com" -C This command configures the system that physical disks that have the IDs 55CD2E404B75A3FC and 50014EE05950DD7C cannot be claimed by S2D. In this example, the *CanBeClaimed* parameter is explicitly specified as $False. -Omitting that parameter has the same effect. +Omitting that parameter indicates that the specified physical disks can be claimed. ## PARAMETERS From 4a59410fd928d65b293e6933b99cb397dc2cc5e7 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Thu, 1 Dec 2022 16:52:38 +0530 Subject: [PATCH 355/965] Update Get-DfsnFolder.md updated 2012 version of the document --- docset/winserver2012-ps/dfsn/Get-DfsnFolder.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2012-ps/dfsn/Get-DfsnFolder.md b/docset/winserver2012-ps/dfsn/Get-DfsnFolder.md index 628ff2b12d..e51619ffec 100644 --- a/docset/winserver2012-ps/dfsn/Get-DfsnFolder.md +++ b/docset/winserver2012-ps/dfsn/Get-DfsnFolder.md @@ -89,7 +89,7 @@ Required: True Position: 0 Default value: None Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False +Accept wildcard characters: True ``` ### -ThrottleLimit From 8f6d38829236af4a9405654c6c257cd945656371 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Thu, 1 Dec 2022 16:53:01 +0530 Subject: [PATCH 356/965] Update Get-DfsnFolder.md updated 2016 version of the document --- docset/winserver2016-ps/dfsn/Get-DfsnFolder.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2016-ps/dfsn/Get-DfsnFolder.md b/docset/winserver2016-ps/dfsn/Get-DfsnFolder.md index abe64a4f49..03c1e23766 100644 --- a/docset/winserver2016-ps/dfsn/Get-DfsnFolder.md +++ b/docset/winserver2016-ps/dfsn/Get-DfsnFolder.md @@ -99,7 +99,7 @@ Required: True Position: 0 Default value: None Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False +Accept wildcard characters: True ``` ### -ThrottleLimit From 2aa35485f2b5021cfce5745c5022f853279ef713 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Thu, 1 Dec 2022 16:53:22 +0530 Subject: [PATCH 357/965] Update Get-DfsnFolder.md updated 2022 version of the document --- docset/winserver2022-ps/dfsn/Get-DfsnFolder.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/dfsn/Get-DfsnFolder.md b/docset/winserver2022-ps/dfsn/Get-DfsnFolder.md index 011a41e7e9..64de12cd53 100644 --- a/docset/winserver2022-ps/dfsn/Get-DfsnFolder.md +++ b/docset/winserver2022-ps/dfsn/Get-DfsnFolder.md @@ -99,7 +99,7 @@ Required: True Position: 0 Default value: None Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False +Accept wildcard characters: True ``` ### -ThrottleLimit From d4e2a9b3c81bb41a04b9eca8c6fb48bde4741ccb Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Thu, 1 Dec 2022 16:53:44 +0530 Subject: [PATCH 358/965] Update Get-DfsnFolder.md updated 2012R2 version of the document --- docset/winserver2012r2-ps/dfsn/Get-DfsnFolder.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2012r2-ps/dfsn/Get-DfsnFolder.md b/docset/winserver2012r2-ps/dfsn/Get-DfsnFolder.md index 452806161e..48c6811b5e 100644 --- a/docset/winserver2012r2-ps/dfsn/Get-DfsnFolder.md +++ b/docset/winserver2012r2-ps/dfsn/Get-DfsnFolder.md @@ -91,7 +91,7 @@ Required: True Position: 0 Default value: None Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False +Accept wildcard characters: True ``` ### -ThrottleLimit From 24cb562e1ff382e91d0b917c025b751ad3f65c81 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Thu, 1 Dec 2022 16:55:16 +0530 Subject: [PATCH 359/965] Update New-StorageTier.md Updated the 2012r2 version of the document --- docset/winserver2012r2-ps/storage/New-StorageTier.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2012r2-ps/storage/New-StorageTier.md b/docset/winserver2012r2-ps/storage/New-StorageTier.md index 25dea5f314..c22cbdec72 100644 --- a/docset/winserver2012r2-ps/storage/New-StorageTier.md +++ b/docset/winserver2012r2-ps/storage/New-StorageTier.md @@ -45,7 +45,7 @@ The **New-StorageTier** cmdlet creates a storage tier in a storage pool. ### Example 1: Create a storage tier ``` -PS C:\> New-StorageTier -StoragePoolFriendlyName "TierPool01" -FriendlyName "Standard_HDD_Tier" -MediaType HDD +PS C:\> New-StorageTier -StoragePoolFriendlyName "TierPool01" -FriendlyName "Tier11" -MediaType HDD ``` This command creates a storage tier for hard disk drives named Tier11 in the storage pool named TierPool01. From fdb1661a288c40b73ad071fc70cec4a23f4c74e0 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Thu, 1 Dec 2022 16:55:40 +0530 Subject: [PATCH 360/965] Update New-StorageTier.md updated 2016 version of the document --- docset/winserver2016-ps/storage/New-StorageTier.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2016-ps/storage/New-StorageTier.md b/docset/winserver2016-ps/storage/New-StorageTier.md index 4ad21973bc..7d6d033970 100644 --- a/docset/winserver2016-ps/storage/New-StorageTier.md +++ b/docset/winserver2016-ps/storage/New-StorageTier.md @@ -58,7 +58,7 @@ The **New-StorageTier** cmdlet creates a storage tier in a storage pool. ### Example 1: Create a storage tier ``` -PS C:\> New-StorageTier -StoragePoolFriendlyName "TierPool01" -FriendlyName "Standard_HDD_Tier" -MediaType HDD +PS C:\> New-StorageTier -StoragePoolFriendlyName "TierPool01" -FriendlyName "Tier11" -MediaType HDD ``` This command creates a storage tier for hard disk drives named Tier11 in the storage pool named TierPool01. From af96b734c3175703853dbf97097faaff4b92ff9d Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Thu, 1 Dec 2022 16:56:03 +0530 Subject: [PATCH 361/965] Update New-StorageTier.md updated 2019 version of the document --- docset/winserver2019-ps/storage/New-StorageTier.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/storage/New-StorageTier.md b/docset/winserver2019-ps/storage/New-StorageTier.md index b073476e93..2785d081d5 100644 --- a/docset/winserver2019-ps/storage/New-StorageTier.md +++ b/docset/winserver2019-ps/storage/New-StorageTier.md @@ -58,7 +58,7 @@ The **New-StorageTier** cmdlet creates a storage tier in a storage pool. ### Example 1: Create a storage tier ``` -PS C:\> New-StorageTier -StoragePoolFriendlyName "TierPool01" -FriendlyName "Standard_HDD_Tier" -MediaType HDD +PS C:\> New-StorageTier -StoragePoolFriendlyName "TierPool01" -FriendlyName "Tier11" -MediaType HDD ``` This command creates a storage tier for hard disk drives named Tier11 in the storage pool named TierPool01. From 1507fa7739987df8fcb658324f3a32e0da3e1b59 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Thu, 1 Dec 2022 16:58:18 +0530 Subject: [PATCH 362/965] Update Set-NetTCPSetting.md updated 2016 version of the document --- docset/winserver2016-ps/nettcpip/Set-NetTCPSetting.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2016-ps/nettcpip/Set-NetTCPSetting.md b/docset/winserver2016-ps/nettcpip/Set-NetTCPSetting.md index 1859d01566..ab3dd43927 100644 --- a/docset/winserver2016-ps/nettcpip/Set-NetTCPSetting.md +++ b/docset/winserver2016-ps/nettcpip/Set-NetTCPSetting.md @@ -104,9 +104,9 @@ Accept wildcard characters: False ``` ### -AutoReusePortRangeStartPort -Specifies the number of ports for the auto-reuse port range, which is a port range used for local ephemeral port selection by outbound TCP connections for which either SO_REUSE_UNICASTPORT has been set on the socket, or for which connect() has been called without calling bind() on the socket. +Specifies the starting port for the auto-reuse port range. -If you specify 0, the auto-reuse feature is disabled and ephemeral ports are drawn instead from the dynamic port range as specified by *DynamicPortRangeStartPort* and *DynamicPortRangeNumberOfPorts*, even if SO_REUSE_UNICASTPORT is set on a socket. +This parameter sets the starting port to send and receive TCP traffic, which is a port range used for local ephemeral port selection by outbound TCP connections for which either SO_REUSE_UNICASTPORT has been set on the socket, or for which connect() has been called without calling bind() on the socket. ```yaml Type: UInt16 From f5985367267af9771768ea3178ce72de1a77c611 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Thu, 1 Dec 2022 16:58:44 +0530 Subject: [PATCH 363/965] Update Set-NetTCPSetting.md Updated 2019 version of the document --- docset/winserver2019-ps/nettcpip/Set-NetTCPSetting.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2019-ps/nettcpip/Set-NetTCPSetting.md b/docset/winserver2019-ps/nettcpip/Set-NetTCPSetting.md index 7437f4de59..9b4026b327 100644 --- a/docset/winserver2019-ps/nettcpip/Set-NetTCPSetting.md +++ b/docset/winserver2019-ps/nettcpip/Set-NetTCPSetting.md @@ -104,9 +104,9 @@ Accept wildcard characters: False ``` ### -AutoReusePortRangeStartPort -Specifies the number of ports for the auto-reuse port range, which is a port range used for local ephemeral port selection by outbound TCP connections for which either SO_REUSE_UNICASTPORT has been set on the socket, or for which connect() has been called without calling bind() on the socket. +Specifies the starting port for the auto-reuse port range. -If you specify 0, the auto-reuse feature is disabled and ephemeral ports are drawn instead from the dynamic port range as specified by *DynamicPortRangeStartPort* and *DynamicPortRangeNumberOfPorts*, even if SO_REUSE_UNICASTPORT is set on a socket. +This parameter sets the starting port to send and receive TCP traffic, which is a port range used for local ephemeral port selection by outbound TCP connections for which either SO_REUSE_UNICASTPORT has been set on the socket, or for which connect() has been called without calling bind() on the socket. ```yaml Type: UInt16 From 5d7ad85235bf06ff80183883086066c7abfec712 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Thu, 1 Dec 2022 16:59:09 +0530 Subject: [PATCH 364/965] Update Set-NetTCPSetting.md updated 2012R2 version of the document --- docset/winserver2012r2-ps/nettcpip/Set-NetTCPSetting.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2012r2-ps/nettcpip/Set-NetTCPSetting.md b/docset/winserver2012r2-ps/nettcpip/Set-NetTCPSetting.md index bf3d87b3c1..58d3534e6d 100644 --- a/docset/winserver2012r2-ps/nettcpip/Set-NetTCPSetting.md +++ b/docset/winserver2012r2-ps/nettcpip/Set-NetTCPSetting.md @@ -93,9 +93,9 @@ Accept wildcard characters: False ``` ### -AutoReusePortRangeStartPort -Specifies the number of ports for the auto-reuse port range, which is a port range used for local ephemeral port selection by outbound TCP connections for which either SO_REUSE_UNICASTPORT has been set on the socket, or for which connect() has been called without calling bind() on the socket. +Specifies the starting port for the auto-reuse port range. -If you specify 0, the auto-reuse feature is disabled and ephemeral ports are drawn instead from the dynamic port range as specified by *DynamicPortRangeStartPort* and *DynamicPortRangeNumberOfPorts*, even if SO_REUSE_UNICASTPORT is set on a socket. +This parameter sets the starting port to send and receive TCP traffic, which is a port range used for local ephemeral port selection by outbound TCP connections for which either SO_REUSE_UNICASTPORT has been set on the socket, or for which connect() has been called without calling bind() on the socket. ```yaml Type: UInt16 From 839b876ac5df0048381a33ace5e012d9f44763fc Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Fri, 2 Dec 2022 20:04:01 +0530 Subject: [PATCH 365/965] Update docset/winserver2012r2-ps/nettcpip/Set-NetTCPSetting.md Co-authored-by: Dario Woitasen <33589238+dariomws@users.noreply.github.com> --- docset/winserver2012r2-ps/nettcpip/Set-NetTCPSetting.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docset/winserver2012r2-ps/nettcpip/Set-NetTCPSetting.md b/docset/winserver2012r2-ps/nettcpip/Set-NetTCPSetting.md index 58d3534e6d..60d357506b 100644 --- a/docset/winserver2012r2-ps/nettcpip/Set-NetTCPSetting.md +++ b/docset/winserver2012r2-ps/nettcpip/Set-NetTCPSetting.md @@ -93,7 +93,6 @@ Accept wildcard characters: False ``` ### -AutoReusePortRangeStartPort -Specifies the starting port for the auto-reuse port range. This parameter sets the starting port to send and receive TCP traffic, which is a port range used for local ephemeral port selection by outbound TCP connections for which either SO_REUSE_UNICASTPORT has been set on the socket, or for which connect() has been called without calling bind() on the socket. From 2c0883aef0d83b67029964ced242034f6f65d8ba Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Fri, 2 Dec 2022 20:04:06 +0530 Subject: [PATCH 366/965] Update docset/winserver2012r2-ps/nettcpip/Set-NetTCPSetting.md Co-authored-by: Dario Woitasen <33589238+dariomws@users.noreply.github.com> --- docset/winserver2012r2-ps/nettcpip/Set-NetTCPSetting.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docset/winserver2012r2-ps/nettcpip/Set-NetTCPSetting.md b/docset/winserver2012r2-ps/nettcpip/Set-NetTCPSetting.md index 60d357506b..5c27ccd9d8 100644 --- a/docset/winserver2012r2-ps/nettcpip/Set-NetTCPSetting.md +++ b/docset/winserver2012r2-ps/nettcpip/Set-NetTCPSetting.md @@ -94,7 +94,9 @@ Accept wildcard characters: False ### -AutoReusePortRangeStartPort -This parameter sets the starting port to send and receive TCP traffic, which is a port range used for local ephemeral port selection by outbound TCP connections for which either SO_REUSE_UNICASTPORT has been set on the socket, or for which connect() has been called without calling bind() on the socket. +Specifies the starting port for the auto-reuse port range, which is a port range used for local ephemeral port selection by outbound TCP connections for which either SO_REUSE_UNICASTPORT has been set on the socket, or for which connect() has been called without calling bind() on the socket. + +This parameter is required if you specify a value other than 0 for the AutoReusePortRangeStartPort parameter. ```yaml Type: UInt16 From 443607a1a70a87b85493b8616ee12f095d5ccbc3 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Fri, 2 Dec 2022 20:04:30 +0530 Subject: [PATCH 367/965] Update docset/winserver2012-ps/wdac/Add-OdbcDsn.md Co-authored-by: Dario Woitasen <33589238+dariomws@users.noreply.github.com> --- docset/winserver2012-ps/wdac/Add-OdbcDsn.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2012-ps/wdac/Add-OdbcDsn.md b/docset/winserver2012-ps/wdac/Add-OdbcDsn.md index 8adc874625..8aa37df68a 100644 --- a/docset/winserver2012-ps/wdac/Add-OdbcDsn.md +++ b/docset/winserver2012-ps/wdac/Add-OdbcDsn.md @@ -51,7 +51,7 @@ PS C:\> $newDsn = Add-OdbcDsn MyPayroll -DriverName "SQL Server Native Client 10 This command is equivalent to example 2, but it saves the newly-created System DSN object into a PowerShell variable for future use. By default, this command does not return the driver object if the "PassThru" parameter is not specified: -### 4: +### Example 4: Migrates DSNs to a newer version of a driver ``` C:\PS> $DsnArray = Get-OdbcDsn -DriverName 'SQL Server Native Client 10.0' C:\PS> foreach ($dsn in $DsnArray) { From f3f26d9317d28de92e66a6298da8d87677d3deab Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sat, 3 Dec 2022 00:11:06 +0530 Subject: [PATCH 368/965] Update Set-NetAdapterSriov.md updated 2012 version of the article --- docset/winserver2012-ps/netadapter/Set-NetAdapterSriov.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2012-ps/netadapter/Set-NetAdapterSriov.md b/docset/winserver2012-ps/netadapter/Set-NetAdapterSriov.md index abe193c271..59edcb1d53 100644 --- a/docset/winserver2012-ps/netadapter/Set-NetAdapterSriov.md +++ b/docset/winserver2012-ps/netadapter/Set-NetAdapterSriov.md @@ -8,7 +8,7 @@ schema: 2.0.0 # Set-NetAdapterSriov ## SYNOPSIS -Sets the Single-Root I/O Virtualization (SR-IOV) properties of the network adapter, such as the number of virtual functions (VFs), the number of virtual ports (VPorts), and the number of queue pairs for default and non-default VPorts. +Sets the Single-Root I/O Virtualization (SR-IOV) properties of the network adapter, such as the number of virtual functions (VFs), and the number of queue pairs for default and non-default VPorts. ## SYNTAX From eccd5023ada0ef5b58098bcfef72394e72101f3b Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sat, 3 Dec 2022 00:13:08 +0530 Subject: [PATCH 369/965] Update Set-NetAdapterSriov.md updated 2016 version of the article --- docset/winserver2016-ps/netadapter/Set-NetAdapterSriov.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2016-ps/netadapter/Set-NetAdapterSriov.md b/docset/winserver2016-ps/netadapter/Set-NetAdapterSriov.md index 74307ca1d3..8d0e8b7907 100644 --- a/docset/winserver2016-ps/netadapter/Set-NetAdapterSriov.md +++ b/docset/winserver2016-ps/netadapter/Set-NetAdapterSriov.md @@ -11,7 +11,7 @@ title: Set-NetAdapterSriov # Set-NetAdapterSriov ## SYNOPSIS -Sets the SR-IOV properties of the network adapter, such as the number of virtual functions, the number of VPorts, and the number of queue pairs for default and non-default VPorts. +Sets the SR-IOV properties of the network adapter, such as the number of virtual functions, and the number of queue pairs for default and non-default VPorts. ## SYNTAX From c9ea90e8159a0913efece28e4972d9bc996219b5 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sat, 3 Dec 2022 00:15:14 +0530 Subject: [PATCH 370/965] Update Set-NetAdapterSriov.md Updated 2019 version of the article --- docset/winserver2019-ps/netadapter/Set-NetAdapterSriov.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/netadapter/Set-NetAdapterSriov.md b/docset/winserver2019-ps/netadapter/Set-NetAdapterSriov.md index e27112b4a3..b1b7acd8e8 100644 --- a/docset/winserver2019-ps/netadapter/Set-NetAdapterSriov.md +++ b/docset/winserver2019-ps/netadapter/Set-NetAdapterSriov.md @@ -38,7 +38,7 @@ Set-NetAdapterSriov -InputObject [-NumVFs ] [-Enabled Date: Sat, 3 Dec 2022 00:15:54 +0530 Subject: [PATCH 371/965] Update Set-NetAdapterSriov.md updated the 2022 version of the article --- docset/winserver2022-ps/netadapter/Set-NetAdapterSriov.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/netadapter/Set-NetAdapterSriov.md b/docset/winserver2022-ps/netadapter/Set-NetAdapterSriov.md index 34ecc1cca9..aebe32af26 100644 --- a/docset/winserver2022-ps/netadapter/Set-NetAdapterSriov.md +++ b/docset/winserver2022-ps/netadapter/Set-NetAdapterSriov.md @@ -11,7 +11,7 @@ title: Set-NetAdapterSriov # Set-NetAdapterSriov ## SYNOPSIS -Sets the SR-IOV properties of the network adapter, such as the number of virtual functions, the number of VPorts, and the number of queue pairs for default and non-default VPorts. +Sets the SR-IOV properties of the network adapter, such as the number of virtual functions, and the number of queue pairs for default and non-default VPorts. ## SYNTAX From 2974b6db5a80df2da88cd6880ba204fb5998db2f Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sat, 3 Dec 2022 00:20:14 +0530 Subject: [PATCH 372/965] Update Set-NetAdapterSriov.md updated 2012 R2version of the article --- docset/winserver2012r2-ps/netadapter/Set-NetAdapterSriov.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2012r2-ps/netadapter/Set-NetAdapterSriov.md b/docset/winserver2012r2-ps/netadapter/Set-NetAdapterSriov.md index 82456c31c6..2322ee3335 100644 --- a/docset/winserver2012r2-ps/netadapter/Set-NetAdapterSriov.md +++ b/docset/winserver2012r2-ps/netadapter/Set-NetAdapterSriov.md @@ -10,7 +10,7 @@ title: Set-NetAdapterSriov # Set-NetAdapterSriov ## SYNOPSIS -Sets the Single-Root I/O Virtualization (SR-IOV) properties of the network adapter, such as the number of virtual functions (VFs), the number of virtual ports (VPorts), and the number of queue pairs for default and non-default VPorts. +Sets the Single-Root I/O Virtualization (SR-IOV) properties of the network adapter, such as the number of virtual functions (VFs), and the number of queue pairs for default and non-default VPorts. ## SYNTAX From 4d7d4108b7d4ee54bff03771f7137510d9213e14 Mon Sep 17 00:00:00 2001 From: Denise Vangel-MSFT Date: Tue, 3 Jan 2023 11:37:25 -0800 Subject: [PATCH 373/965] Update Set-MpPreference.md --- docset/winserver2022-ps/defender/Set-MpPreference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/defender/Set-MpPreference.md b/docset/winserver2022-ps/defender/Set-MpPreference.md index 0a89cc1fcf..bedccf9973 100644 --- a/docset/winserver2022-ps/defender/Set-MpPreference.md +++ b/docset/winserver2022-ps/defender/Set-MpPreference.md @@ -2,7 +2,7 @@ description: The Set-MpPreference cmdlet configures preferences for Windows Defender scans and updates. external help file: MSFT_MpPreference.cdxml-help.xml Module Name: Defender -ms.date: 09/20/2022 +ms.date: 01/03/2023 online version: https://learn.microsoft.com/powershell/module/defender/set-mppreference?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-MpPreference From 3d70648870b769f980cd03a9e0099ce5cc58954f Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Wed, 23 Nov 2022 00:31:10 +0000 Subject: [PATCH 374/965] Buld update of examples --- .../Remove-ClusterCheckpoint.md | 19 +++----- .../Remove-ClusterFaultDomain.md | 10 ++--- .../failoverclusters/Remove-ClusterGroup.md | 22 +++++----- .../Remove-ClusterGroupFromSet.md | 9 ++-- .../Remove-ClusterGroupSet.md | 10 ++--- .../Remove-ClusterGroupSetDependency.md | 14 +++--- .../failoverclusters/Remove-ClusterNode.md | 15 ++++--- .../Remove-ClusterResource.md | 14 +++--- .../Remove-ClusterResourceDependency.md | 29 ++++++------- .../Remove-ClusterResourceType.md | 8 ++-- .../Remove-ClusterSharedVolume.md | 20 +++------ .../Remove-ClusterVMMonitoredItem.md | 14 +++--- .../Repair-ClusterStorageSpacesDirect.md | 11 +++-- .../Reset-ClusterVMMonitoredState.md | 8 ++-- .../failoverclusters/Resume-ClusterNode.md | 32 +++++--------- .../Resume-ClusterResource.md | 20 +++------ .../Set-ClusterFaultDomain.md | 12 +++--- .../Set-ClusterFaultDomainXML.md | 15 +++---- .../failoverclusters/Set-ClusterGroupSet.md | 10 ++--- .../failoverclusters/Set-ClusterLog.md | 18 +++----- .../failoverclusters/Set-ClusterOwnerNode.md | 18 ++++---- .../failoverclusters/Set-ClusterParameter.md | 43 ++++--------------- .../failoverclusters/Set-ClusterQuorum.md | 41 +++++++++--------- .../Set-ClusterResourceDependency.md | 29 ++++++++----- .../Set-ClusterStorageSpacesDirect.md | 10 ++--- .../Set-ClusterStorageSpacesDirectDisk.md | 20 ++++++--- .../failoverclusters/Start-Cluster.md | 20 +++------ .../failoverclusters/Start-ClusterGroup.md | 22 ++++------ .../failoverclusters/Start-ClusterNode.md | 27 ++++-------- 29 files changed, 234 insertions(+), 306 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterCheckpoint.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterCheckpoint.md index f6584dff5f..761620eead 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterCheckpoint.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterCheckpoint.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clustercheckpoint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterCheckpoint @@ -36,20 +36,13 @@ local server. ### Example 1 +```powershell +Get-ClusterResource "Cluster Name" | Remove-ClusterCheckpoint -RegistryCheckpoint +Remove-ClusterCheckpoint -Confirm:$false ``` -PS C:\> Get-ClusterResource "Cluster Name" | Remove-ClusterCheckpoint -RegistryCheckpoint - - -PS C:\> Remove-ClusterCheckpoint -Are you sure you want to remove registry checkpoint 'software\clusname' on resource 'Cluster Name'? - - -[Y] Yes [N] No [S] Suspend [?] Help (default is "Y"):Y -``` - -This example removes the registry checkpoint called software\clusname for the resource named Cluster -Name. +This example removes the registry checkpoint called `software\clusname` for the resource named +`Cluster Name` without user confirmation. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterFaultDomain.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterFaultDomain.md index 9cfdfa5bb8..ab3abaf597 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterFaultDomain.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterFaultDomain.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterFaultDomain.cdxml-help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clusterfaultdomain?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterFaultDomain @@ -39,11 +39,11 @@ The `Remove-ClusterFaultDomain` cmdlet removes a fault domain. The fault domain ### Example 1: Remove a cluster fault domain -``` -PS C:\> Remove-ClusterFaultDomain -Name "Rack001" +```powershell +Remove-ClusterFaultDomain -Name "Rack001" ``` -This command removes the cluster fault domain named Rack001. +This command removes the cluster fault domain named `Rack001`. ## PARAMETERS @@ -191,7 +191,7 @@ Accept wildcard characters: False ### -ThrottleLimit Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If -this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +this parameter is omitted or a value of `0` is entered, then Windows PowerShell calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. The throttle limit applies only to the current cmdlet, not to the session or to the computer. diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroup.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroup.md index 445ed89784..f94e8f4417 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroup.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroup.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clustergroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterGroup @@ -32,30 +32,30 @@ resources first, or specify the **RemoveResources** parameter. ### Example 1 -``` -PS C:\> Remove-ClusterGroup -Name MyFileServer +```powershell +Remove-ClusterGroup -Name MyFileServer ``` This example prompts the user for confirmation and then removes the clustered role named -MyFileServer, if the resources have first been removed from it. +`MyFileServer`, if the resources have first been removed from it. ### Example 2 -``` -PS C:\> Remove-ClusterGroup -Name MyFileServer -Force +```powershell +Remove-ClusterGroup -Name MyFileServer -Force ``` -This example removes the clustered role named MyFileServer, if the resources have first been removed +This example removes the clustered role named `MyFileServer`, if the resources have first been removed from it. The cmdlet doesn't prompt for confirmation. ### Example 3 -``` -PS C:\> Remove-ClusterGroup -Name MyFileServer -Force -RemoveResources +```powershell +Remove-ClusterGroup -Name MyFileServer -Force -RemoveResources ``` -This example removes the clustered role named MyFileServer, without prompting for confirmation. All -cluster resources in MyFileServer will be deleted. +This example removes the clustered role named `MyFileServer`, without prompting for confirmation. +All cluster resources in `MyFileServer` will be deleted. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromSet.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromSet.md index 2282dd0e2c..e41bdf7a8e 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromSet.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromSet.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterCollection.cdxml-help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clustergroupfromset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterGroupFromSet @@ -37,11 +37,12 @@ The `Remove-ClusterGroupFromSet` cmdlet removes a group from a set. ### Example 1: Remove a group from the specified group set -``` -PS C:\> Remove-ClusterGroupFromSet -Name "Set001" -Group "Group001" +```powershell +Remove-ClusterGroupSetDependency -Name "Set001" -Provider "Set002" ``` -This command removes the group named Group001 from group set named Set001. +This command removes the group set named `Set002` from being a provider for the group set named +`Set001`. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupSet.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupSet.md index fd1e88b4ff..2c12a7f65f 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupSet.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupSet.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterCollection.cdxml-help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clustergroupset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterGroupSet @@ -37,11 +37,11 @@ Removes a group set from the cluster. The group set cannot be a provider for ano ### Example 1: Remove a group set from the cluster -``` -PS C:\> Remove-ClusterGroupSet -Name "Set001" +```powershell +Remove-ClusterGroupSet -Name "Set001" ``` -This command removes the group set named Set001 from the cluster. +This command removes the group set named `Set001` from the cluster. ## PARAMETERS @@ -157,7 +157,7 @@ Accept wildcard characters: False ### -ThrottleLimit Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If -this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +this parameter is omitted or a value of `0` is entered, then Windows PowerShell calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. The throttle limit applies only to the current cmdlet, not to the session or to the computer. diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupSetDependency.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupSetDependency.md index ad938ec322..f75875aaa3 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupSetDependency.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupSetDependency.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterCollection.cdxml-help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clustergroupsetdependency?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterGroupSetDependency @@ -33,14 +33,12 @@ The `Remove-ClusterGroupSetDependency` cmdlet removes a dependency from a group ## EXAMPLES -### Example 1: Remove a group set dependency on another group set - -``` -PS C:\> Remove-ClusterGroupSetDependency -Name "Set001" -Provider "Set002" +```powershell +Remove-ClusterGroupSetDependency -Name "Set001" -Provider "Set002" ``` -This command removes the group set named Set002 from being a provider for the group set named -Set001. +This command removes the group set named `Set002` from being a provider for the group set named +`Set001`. ## PARAMETERS @@ -156,7 +154,7 @@ Accept wildcard characters: False ### -ThrottleLimit Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If -this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +this parameter is omitted or a value of `0` is entered, then Windows PowerShell calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. The throttle limit applies only to the current cmdlet, not to the session or to the computer. diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterNode.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterNode.md index fc09ff2335..93728e0245 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterNode.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterNode.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clusternode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterNode @@ -34,19 +34,20 @@ authentication on the server computer. ### Example 1 -``` -PS C:\> Remove-ClusterNode -Name node4 +```powershell +Remove-ClusterNode -Name node4 ``` -This example removes the node named node4 from the local cluster. +This example removes the node named `node4` from the local cluster. ### Example 2 -``` -PS C:\> Remove-ClusterNode -Name node4 -Force +```powershell +Remove-ClusterNode -Name node4 -Force ``` -This example removes the node named node4 from the local cluster without prompting for confirmation. +This example removes the node named `node4` from the local cluster without prompting for +confirmation. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterResource.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterResource.md index 48d0a6e9db..a1e01087de 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterResource.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterResource.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clusterresource?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterResource @@ -29,20 +29,20 @@ removing a resource, be sure to review whether any other resource is dependent o ### Example 1 -``` -PS C:\> Remove-ClusterResource -Name "Cluster Disk 4" +```powershell +Remove-ClusterResource -Name "Cluster Disk 4" ``` -This example prompts the user for confirmation and then deletes the cluster named Cluster Disk 4 +This example prompts the user for confirmation and then deletes the cluster named `Cluster Disk 4` from the local cluster. ### Example 2 -``` -PS C:\> Remove-ClusterResource -Name "Cluster Disk 5" -Force +```powershell +Remove-ClusterResource -Name "Cluster Disk 5" -Force ``` -This example deletes the cluster named Cluster Disk 5 from the local cluster without prompting for +This example deletes the cluster named `Cluster Disk 5` from the local cluster without prompting for confirmation. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterResourceDependency.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterResourceDependency.md index 6cd001d399..f2f45e0645 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterResourceDependency.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterResourceDependency.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clusterresourcedependency?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterResourceDependency @@ -34,27 +34,26 @@ offline might vary. ### Example 1 -``` -PS C:\> Remove-ClusterResourceDependency -Resource cluster1FS -Provider "IP Address 2001:4898:9:2:: (3)" -Name State Group ResourceType ----- ----- ----- ------------ -cluster1FS Online cluster1FS Network Name +```powershell +Remove-ClusterResourceDependency -Resource cluster1FS -Provider "IP Address 2001:4898:9:2:: (3)" ``` -This example removes the dependency between cluster resource cluster1FS and the resource named IP -Address 2001:4898:9:2:: (3). +This example removes the dependency between cluster resource `cluster1FS` and the resource named IP +Address `2001:4898:9:2:: (3)`. ### Example 2 -``` -PS C:\> Get-ClusterResource -Name cluster1FS | Remove-ClusterResourceDependency -Provider "IP Address 2001:4898:9:2:: (3)" -Name State Group ResourceType ----- ----- ----- ------------ -cluster1FS Online cluster1FS Network Name +```powershell +$parameters = @{ + Provider = 'IP Address 2001:4898:9:2:: (3)' +} +Get-ClusterResource -Name cluster1FS | Remove-ClusterResourceDependency @parameters ``` -This example removes the dependency between the cluster resource named cluster1FS and the resource -named IP Address 2001:4898:9:2:: (3). +This example removes the dependency between the cluster resource named `cluster1FS` and the resource +named IP Address `2001:4898:9:2:: (3)`. This example uses splatting to pass parameter values from +the `$Parameters` variable to the command. Learn more about +[Splatting](/powershell/module/microsoft.powershell.core/about/about_splatting). ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterResourceType.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterResourceType.md index 60108eb3e7..7cc4fd2475 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterResourceType.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterResourceType.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clusterresourcetype?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterResourceType @@ -31,11 +31,11 @@ resources of that type will not be able to be used in the cluster. ### Example 1 -``` -PS C:\> Remove-ClusterResourceType -Name ResType1 +```powershell +Remove-ClusterResourceType -Name ResType1 ``` -This example removes the registered resource type named ResType1 on the local cluster. +This example removes the registered resource type named `ResType1` on the local cluster. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolume.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolume.md index c0e982724c..98f83dd6ab 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolume.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolume.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clustersharedvolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterSharedVolume @@ -31,26 +31,20 @@ Available Storage, you can use the volume when you configure a new clustered rol ### Example 1 -``` -PS C:\> Remove-ClusterSharedVolume -Name "Cluster Disk 3" -Name State Group ResourceType ----- ----- ----- ------------ -Cluster Disk 3 Online Available Storage Physical Disk +```powershell +Remove-ClusterSharedVolume -Name "Cluster Disk 3" ``` -This example removes the CSV named Cluster Disk 3 from the Cluster Shared Volumes on the local +This example removes the CSV named `Cluster Disk 3` from the Cluster Shared Volumes on the local cluster, and places it in Available Storage. ### Example 2 -``` -PS C:\> Get-ClusterSharedVolume -Name "Cluster Disk 4" | Remove-ClusterSharedVolume -Name State Group ResourceType ----- ----- ----- ------------ -Cluster Disk 4 Online Available Storage Physical Disk +```powershell +Get-ClusterSharedVolume -Name "Cluster Disk 4" | Remove-ClusterSharedVolume ``` -This example removes the CSV named Cluster Disk 4 from the Cluster Shared Volumes on the local +This example removes the CSV named `Cluster Disk 4` from the Cluster Shared Volumes on the local cluster, and places it in Available Storage. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterVMMonitoredItem.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterVMMonitoredItem.md index a5144c912b..c314e06e1e 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterVMMonitoredItem.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterVMMonitoredItem.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clustervmmonitoreditem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterVMMonitoredItem @@ -39,19 +39,19 @@ no longer take an action, such as restarting the virtual machine. ### Example 1 -``` -PS C:\> Get-ClusterVMMonitoredItem -VirtualMachine VM1 | Remove-ClusterVMMonitoredItem -VirtualMachine VM1 +```powershell +Get-ClusterVMMonitoredItem -VirtualMachine VM1 | Remove-ClusterVMMonitoredItem -VirtualMachine VM1 ``` -This example removes all of the items being monitored on the virtual machine named VM1. +This example removes all of the items being monitored on the virtual machine named `VM1`. ### Example 2 -``` -PS C:\> Remove-ClusterVMMonitoredItem -VirtualMachine VM1 -Service spooler +```powershell +Remove-ClusterVMMonitoredItem -VirtualMachine VM1 -Service spooler ``` -This example removes monitoring on the print spooler service on the virtual machine named VM1. +This example removes monitoring on the print spooler service on the virtual machine named `VM1`. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Repair-ClusterStorageSpacesDirect.md b/docset/winserver2022-ps/failoverclusters/Repair-ClusterStorageSpacesDirect.md index efb2ef185f..4b952d36c0 100644 --- a/docset/winserver2022-ps/failoverclusters/Repair-ClusterStorageSpacesDirect.md +++ b/docset/winserver2022-ps/failoverclusters/Repair-ClusterStorageSpacesDirect.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterStorageSpacesDirect.cdxml-help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/repair-clusterstoragespacesdirect?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Repair-ClusterStorageSpacesDirect @@ -39,12 +39,11 @@ The `Repair-ClusterStorageSpacesDirect` cmdlet repairs Storage Spaces Direct (S2 ### Example 1: Repair S2D on all nodes -``` -PS C:\> Repair-ClusterStorageSpacesDirect -Verbose -Confirm:$False -VERBOSE: Performing operation 'Repair Cluster Storage Spaces Direct' on Target 'K0619-C1'. +```powershell +Repair-ClusterStorageSpacesDirect -Verbose -Confirm:$False ``` -This command repairs S2D on all nodes. +This command repairs S2D on all nodes without user confirmation. ## PARAMETERS @@ -181,7 +180,7 @@ Accept wildcard characters: False ### -ThrottleLimit Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If -this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +this parameter is omitted or a value of `0` is entered, then Windows PowerShell calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. The throttle limit applies only to the current cmdlet, not to the session or to the computer. diff --git a/docset/winserver2022-ps/failoverclusters/Reset-ClusterVMMonitoredState.md b/docset/winserver2022-ps/failoverclusters/Reset-ClusterVMMonitoredState.md index 061b581a06..7fb32af424 100644 --- a/docset/winserver2022-ps/failoverclusters/Reset-ClusterVMMonitoredState.md +++ b/docset/winserver2022-ps/failoverclusters/Reset-ClusterVMMonitoredState.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/reset-clustervmmonitoredstate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-ClusterVMMonitoredState @@ -25,14 +25,14 @@ Reset-ClusterVMMonitoredState [-Wait ] [] The `Reset-ClusterVMMonitoredState` cmdlet resets the Application Critical state of a virtual machine, so that the virtual machine is no longer marked as being in a critical state in the cluster. Note: This cmdlet can only be run locally on the virtual machine or through Windows -PowerShell® remoting to the virtual machine. +PowerShell remoting to the virtual machine. ## EXAMPLES ### Example 1 -``` -PS C:\> Reset-ClusterVMMoniteredState +```powershell +Reset-ClusterVMMoniteredState ``` This example resets the state of the virtual machine and clears the critical state. diff --git a/docset/winserver2022-ps/failoverclusters/Resume-ClusterNode.md b/docset/winserver2022-ps/failoverclusters/Resume-ClusterNode.md index 6074303a19..010b13211a 100644 --- a/docset/winserver2022-ps/failoverclusters/Resume-ClusterNode.md +++ b/docset/winserver2022-ps/failoverclusters/Resume-ClusterNode.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/resume-clusternode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-ClusterNode @@ -31,44 +31,32 @@ that are currently offline can be brought online on that node. ### Example 1 -``` -PS C:\> Resume-ClusterNode node1 -Name State ----- ----- -node1 Up +```powershell +Resume-ClusterNode node1 ``` This example resumes node1 on the local cluster. ### Example 2 -``` -PS C:\> Resume-ClusterNode node2 -Cluster mycluster -Name State ----- ----- -node2 Up +```powershell +Resume-ClusterNode node2 -Cluster mycluster ``` -This example resumes node2 on the cluster called mycluster. +This example resumes node2 on the cluster called `mycluster`. ### Example 3 -``` -PS C:\> Get-ClusterNode | Resume-ClusterNode -Name State ----- ----- -node1 Up +```powershell +Get-ClusterNode | Resume-ClusterNode ``` This example resumes all cluster nodes that are suspended, or paused, on the local cluster. ### Example 4 -``` -PS C:\> Get-ClusterNode | Resume-ClusterNode -Failback Immediate -Name State ----- ----- -node2 Up +```powershell +Get-ClusterNode | Resume-ClusterNode -Failback Immediate ``` This example resumes all cluster nodes that are suspended, or paused, on the local cluster and diff --git a/docset/winserver2022-ps/failoverclusters/Resume-ClusterResource.md b/docset/winserver2022-ps/failoverclusters/Resume-ClusterResource.md index 84071c18dc..40bb5ebb0c 100644 --- a/docset/winserver2022-ps/failoverclusters/Resume-ClusterResource.md +++ b/docset/winserver2022-ps/failoverclusters/Resume-ClusterResource.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/resume-clusterresource?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Resume-ClusterResource @@ -32,25 +32,19 @@ turned off for a disk or Cluster Shared Volume as soon as the maintenance tasks ### Example 1 -``` -PS C:\> Resume-ClusterResource "Cluster Disk 2" -Name State Group ResourceType ----- ----- ----- ------------ -Cluster Disk 2 Online Available Storage Physical Disk +```powershell +Resume-ClusterResource "Cluster Disk 2" ``` -This example turns off maintenance for the CSV named Cluster Disk 2. +This example turns off maintenance for the CSV named `Cluster Disk 2`. ### Example 2 -``` -PS C:\> Get-ClusterSharedVolume "Cluster Disk 5" | Resume-ClusterResource -Name State Node ----- ----- ---- -Cluster Disk 5 Online node2 +```powershell +Get-ClusterSharedVolume "Cluster Disk 5" | Resume-ClusterResource ``` -This example turns off maintenance for all volumes on the CSV named Cluster Disk 5. +This example turns off maintenance for all volumes on the CSV named `Cluster Disk 5`. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterFaultDomain.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterFaultDomain.md index af1ffa6b70..c8e0d6b1ae 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterFaultDomain.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterFaultDomain.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterFaultDomain.cdxml-help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterfaultdomain?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterFaultDomain @@ -41,12 +41,12 @@ the fault domain. ### Example 1: Update an existing fault domain -``` -PS C:\> Set-ClusterFaultDomain -Name "NMALIWA-VM-1101" -FaultDomain "Rack1" +```powershell +Set-ClusterFaultDomain -Name "VM-1101" -FaultDomain "Rack1" ``` -This command sets the parent of the fault domain named NMALIWA-VM-1101 to the fault domain named -Rack1. +This command sets the parent of the fault domain named `VM-1101` to the fault domain named +`Rack1`. ## PARAMETERS @@ -243,7 +243,7 @@ Accept wildcard characters: False ### -ThrottleLimit Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If -this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +this parameter is omitted or a value of `0` is entered, then Windows PowerShell calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. The throttle limit applies only to the current cmdlet, not to the session or to the computer. diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterFaultDomainXML.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterFaultDomainXML.md index 3e6dd15ea4..332012e235 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterFaultDomainXML.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterFaultDomainXML.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterFaultDomain.cdxml-help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterfaultdomainxml?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterFaultDomainXML @@ -26,12 +26,11 @@ The `Set-ClusterFaultDomainXML` cmdlet sets the cluster fault domain using XML. ## EXAMPLES -### Example 1: +### Example 1 -``` -PS C:\> Set-ClusterFaultDomainXML -XML @" +```powershell +Set-ClusterFaultDomainXML -XML @" - @@ -40,7 +39,6 @@ PS C:\> Set-ClusterFaultDomainXML -XML @" - @@ -49,7 +47,6 @@ PS C:\> Set-ClusterFaultDomainXML -XML @" - @@ -58,7 +55,6 @@ PS C:\> Set-ClusterFaultDomainXML -XML @" - @@ -67,7 +63,6 @@ PS C:\> Set-ClusterFaultDomainXML -XML @" - "@ ``` @@ -139,7 +134,7 @@ Accept wildcard characters: False ### -ThrottleLimit Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If -this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +this parameter is omitted or a value of `0` is entered, then Windows PowerShell calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. The throttle limit applies only to the current cmdlet, not to the session or to the computer. diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterGroupSet.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterGroupSet.md index 58be285f56..bb31bc8e2c 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterGroupSet.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterGroupSet.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterCollection.cdxml-help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clustergroupset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterGroupSet @@ -41,11 +41,11 @@ use the `Add-ClusterGroupSetDependency` and `Remove-ClusterGroupSetDependency` c ### Example 1: Change a group set to the specified startup setting -``` -PS C:\> Set-ClusterGroupSet -Name "Set002" -StartupSetting Online +```powershell +Set-ClusterGroupSet -Name "Set002" -StartupDelayTrigger Online ``` -This command changes the group set named Set002 to the startup setting Online. +This command changes the group set named `Set002` to the startup setting Online. ## PARAMETERS @@ -214,7 +214,7 @@ Accept wildcard characters: False ### -ThrottleLimit Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If -this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +this parameter is omitted or a value of `0` is entered, then Windows PowerShell calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. The throttle limit applies only to the current cmdlet, not to the session or to the computer. diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterLog.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterLog.md index f06bec8430..2a0254c6fd 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterLog.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterLog.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterlog?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterLog @@ -29,22 +29,16 @@ level, `3`, includes errors, warnings, and additional information. ### Example 1 -``` -PS C:\> Set-ClusterLog -Level 1 -Name ----- -cluster1 +```powershell +Set-ClusterLog -Level 1 ``` -This example sets the cluster log to a detail level of 1. +This example sets the cluster log to a detail level of `1`. ### Example 2 -``` -PS C:\> Set-ClusterLog -Size 1024 -Name ----- -cluster1 +```powershell +Set-ClusterLog -Size 1024 ``` This example sets the cluster log size to 1024 MB. diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterOwnerNode.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterOwnerNode.md index 8511048461..6d711db363 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterOwnerNode.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterOwnerNode.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterownernode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterOwnerNode @@ -32,21 +32,21 @@ failure of a resource or a clustered role. ### Example 1 -``` -PS C:\> Get-ClusterResource -Name "Cluster Disk 3" | Set-ClusterOwnerNode -Owners node1,node2 +```powershell +Get-ClusterResource -Name "Cluster Disk 3" | Set-ClusterOwnerNode -Owners node1,node2 ``` -This example sets the possible owners for cluster named Cluster Disk 3 on the local cluster to the -nodes named node1 and node2. +This example sets the possible owners for cluster named `Cluster Disk 3` on the local cluster to the +nodes named `node1` and `node2`. ### Example 2 -``` -PS C:\> Set-ClusterOwnerNode -Group cluster12FS -Owners node3,node2 +```powershell +Set-ClusterOwnerNode -Group cluster12FS -Owners node3,node2 ``` -This example sets the preferred owners for the clustered service named cluster12FS to the node named -node3 followed by the node named node2 on the local cluster. +This example sets the preferred owners for the clustered service named `cluster12FS` to the node +named `node3` followed by the node named `node2` on the local cluster. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterParameter.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterParameter.md index 62e1d8a723..6c0acd36c9 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterParameter.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterParameter.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterparameter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterParameter @@ -56,46 +56,21 @@ such as a resource, a group, or a network. ### Example 1 -``` -PS C:\> Get-ClusterResource -Name cluster1FS | Set-ClusterParameter -Name HostRecordTTL -Value 300 +```powershell +Get-ClusterResource -Name "Cluster Disk 3" | Set-ClusterOwnerNode -Owners node1,node2 ``` -This example configures the clustered resource called cluster1FS on the local cluster, by setting -the value of HostRecordTTL to 300. +This example sets the possible owners for cluster named `Cluster Disk 3` on the local cluster to the +nodes named `node1` and `node2`. ### Example 2 -``` -PS C:\> Get-ClusterResource -Name "Cluster IP Address" | Set-ClusterParameter -Multiple @{"Address"="172.24.22.168";"Network"="Cluster Network 2";"EnableDhcp"=1} -``` - -This example uses the **Multiple** parameter to configure the clustered resource called Cluster IP -Address, by setting the **Address**, **Network**, and **EnableDhcp** parameters simultaneously. - -### Example 3 - -``` -PS C:\> $res = Get-ClusterResource -Name "IP Address" - - - -PS C:\> $param1 = New-Object -ComObject Microsoft.FailoverClusters.PowerShell.ClusterParameter -Property $res,Address,10.55.88.46 - - - -PS C:\> $param2 = New-Object -ComObject Microsoft.FailoverClusters.PowerShell.ClusterParameter -Property $res,SubnetMask,255.0.0.0 - - - -PS C:\> $params = $param1,$param2 - - - -PS C:\> $params | Set-ClusterParameter +```powershell +Set-ClusterOwnerNode -Group cluster12FS -Owners node3,node2 ``` -This example configures the clustered resource called IP Address to use a new static IP. Because the -new address and subnet mask are required, both parameters must be passed to this cmdlet together. +This example sets the preferred owners for the clustered service named `cluster12FS` to the node +named `node3` followed by the node named `node2` on the local cluster. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterQuorum.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterQuorum.md index 113f2fa2e9..63b4265343 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterQuorum.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterQuorum.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterquorum?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterQuorum @@ -33,44 +33,45 @@ cluster configuration) or file share witness. ### Example 1 -``` -PS C:\> Set-ClusterQuorum -NodeMajority -Cluster QuorumResource QuorumType -------- -------------- ---------- -cluster1 NodeMajority +```powershell +Set-ClusterQuorum -NodeMajority ``` This example changes the quorum configuration to Node Majority on the local cluster. ### Example 2 -``` -PS C:\> Set-ClusterQuorum -DiskWitness "Cluster Disk 7" -Cluster QuorumResource QuorumType -------- -------------- ---------- -cluster1 Cluster Disk 7 NodeAndDiskMajority +```powershell +Set-ClusterQuorum -DiskWitness "Cluster Disk 7" ``` This example changes the quorum configuration to Node and Disk Majority on the local cluster, using -the disk resource named Cluster Disk 7 for the disk witness. +the disk resource named `Cluster Disk 7` for the disk witness. ### Example 3 -``` -PS C:\> Set-ClusterQuorum -NodeAndFileShareMajority \\fileserver\fsw -Cluster QuorumResource QuorumType -------- -------------- ---------- -cluster1 File Share Witness NodeAndFileShareMajority +```powershell +Set-ClusterQuorum -NodeAndFileShareMajority \\fileserver\fsw ``` This example changes the quorum configuration to Node and File Share Majority on the local cluster, -using the disk resource at \\\\fileserver\fsw for the file share witness. +using the disk resource at `\\fileserver\fsw` for the file share witness. ### Example 4 +```powershell +$parameters = @{ + CloudWitness = $true + AccountName = '' + AccessKey = '' +Set-ClusterQuorum @parameters ``` -PS C:\> Set-ClusterQuorum -CloudWitness -AccountName -AccessKey -``` + +This example changes the quorum configuration to use an Azure Storage Account to use as a Cloud +Witness. + +The example uses splatting to pass parameter values from the `$Parameters` variable to the command. +Learn more about [Splatting](/powershell/module/microsoft.powershell.core/about/about_splatting). ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterResourceDependency.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterResourceDependency.md index 78eaaf2092..e22c364f85 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterResourceDependency.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterResourceDependency.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterresourcedependency?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterResourceDependency @@ -35,28 +35,35 @@ deployments. ### Example 1 -``` -PS C:\> Set-ClusterResourceDependency -Resource cluster1FS12 -Dependency "[IP Address 151.56.48.0]" +```powershell +Set-ClusterResourceDependency -Resource cluster1FS12 -Dependency "[IP Address 151.56.48.0]" ``` -This example makes the resource called cluster1FS12 dependent on \[IP Address 151.56.48.0\]. +This example makes the resource called cluster1FS12 dependent on `[IP Address 151.56.48.0]`. ### Example 2 -``` -C:\PS>Set-ClusterResourceDependency -Resource cluster1FS12 -Dependency "[IP Address 151.56.48.0] or [New IP Address]" +```powershell +$parameters = @{ + Resource = 'cluster1FS12' + Dependency = '[IP Address 151.56.48.0]' +} +Set-ClusterResourceDependency @parameters ``` -This example makes the resource called cluster1FS12 dependent on either \[IP Address 151.56.48.0\] -or \[New IP Address\]. +This example makes the resource called `cluster1FS12` dependent on either `[IP Address 151.56.48.0]` +or `[New IP Address]`. + +This example uses splatting to pass parameter values from the `$Parameters` variable to the command. +Learn more about [Splatting](/powershell/module/microsoft.powershell.core/about/about_splatting). ### Example 3 -``` -C:\PS>Set-ClusterResourceDependency -Resource cluster1FS12 -Dependency "" +```powershell +Set-ClusterResourceDependency -Resource cluster1FS12 -Dependency "" ``` -This example clears the dependency list for the resource named cluster1FS12, so that it no longer +This example clears the dependency list for the resource named `cluster1FS12`, so that it no longer depends on any other resources. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterStorageSpacesDirect.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterStorageSpacesDirect.md index 11a268084e..b1c631c739 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterStorageSpacesDirect.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterStorageSpacesDirect.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterStorageSpacesDirect.cdxml-help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterstoragespacesdirect?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterStorageSpacesDirect @@ -29,12 +29,12 @@ The `Set-ClusterStorageSpacesDirect` cmdlet sets Storage Spaces Direct (S2D) cac ### Example 1: Set S2D cache parameters -``` -PS C:\> Set-ClusterStorageSpacesDirect -CimSession "K0619-C2.cfdev.nttest.contoso.com" -CacheModeHDD ReadWrite +```powershell +Set-ClusterStorageSpacesDirect -CimSession "cluster01.contoso.com" -CacheModeHDD ReadWrite ``` The following command sets the S2D cache parameter as ReadWrite on the cluster named -K0619-C2.cfdev.nttest.contoso.com. +`cluster01.contoso.com`. ## PARAMETERS @@ -179,7 +179,7 @@ Accept wildcard characters: False ### -ThrottleLimit Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If -this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +this parameter is omitted or a value of `0` is entered, then Windows PowerShell calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. The throttle limit applies only to the current cmdlet, not to the session or to the computer. diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterStorageSpacesDirectDisk.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterStorageSpacesDirectDisk.md index e0477a0663..f8b70b4f79 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterStorageSpacesDirectDisk.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterStorageSpacesDirectDisk.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterStorageSpacesDirect.cdxml-help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusterstoragespacesdirectdisk?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterStorageSpacesDirectDisk @@ -34,14 +34,24 @@ S2D. Alternatively, you can run this cmdlet after you enable S2D. ### Example 1: Configure disks not to be claimed -``` -PS C:\> Set-ClusterStorageSpacesDirectDisk -CimSession "K0619-C1.contoso.com" -CanBeClaimed:$False -PhysicalDiskIds "55CD2E404B75A3FC","50014EE05950DD7C" +```powershell +$parameters = @{ + CimSession = 'K0619-C1.contoso.com' + CanBeClaimed = $False + PhysicalDiskIds = '55CD2E404B75A3FC', + '50014EE05950DD7C' +} +Set-ClusterStorageSpacesDirectDisk @parameters ``` This command configures the system that physical disks that have the IDs `55CD2E404B75A3FC` and -`50014EE05950DD7C` cannot be claimed by S2D. In this example, the **CanBeClaimed** parameter is +`50014EE05950DD7C` cannot be claimed by S2D. In this example, the `CanBeClaimed` parameter is explicitly specified as `$False`. Omitting that parameter has the same effect. + +This example uses splatting to pass parameter values from the `$Parameters` variable to the command. +Learn more about [Splatting](/powershell/module/microsoft.powershell.core/about/about_splatting). + ## PARAMETERS ### -AsJob @@ -142,7 +152,7 @@ Accept wildcard characters: False ### -ThrottleLimit Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If -this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +this parameter is omitted or a value of `0` is entered, then Windows PowerShell calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. The throttle limit applies only to the current cmdlet, not to the session or to the computer. diff --git a/docset/winserver2022-ps/failoverclusters/Start-Cluster.md b/docset/winserver2022-ps/failoverclusters/Start-Cluster.md index cfbe0d5e04..584734064d 100644 --- a/docset/winserver2022-ps/failoverclusters/Start-Cluster.md +++ b/docset/winserver2022-ps/failoverclusters/Start-Cluster.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/start-cluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-Cluster @@ -32,26 +32,20 @@ authentication on the server computer. ### Example 1 -``` -PS C:\> Start-Cluster -Name ----- -mycluster +```powershell +Start-Cluster ``` This example starts all cluster nodes on the local cluster. ### Example 2 -``` -PS C:\> Start-Cluster -Name node2 -Name ----- -mycluster +```powershell +Start-Cluster -Name node2 ``` -This example starts all cluster nodes on the cluster of which the node named node2 is a part. A node -name is required if all cluster nodes are stopped. If the cluster is already running, then the +This example starts all cluster nodes on the cluster of which the node named `node2` is a part. A +node name is required if all cluster nodes are stopped. If the cluster is already running, then the cluster name, assuming the cluster name resource is online, can be used instead of the node name. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Start-ClusterGroup.md b/docset/winserver2022-ps/failoverclusters/Start-ClusterGroup.md index 051b1bb719..cdac379827 100644 --- a/docset/winserver2022-ps/failoverclusters/Start-ClusterGroup.md +++ b/docset/winserver2022-ps/failoverclusters/Start-ClusterGroup.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/start-clustergroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-ClusterGroup @@ -30,26 +30,20 @@ maintenance or diagnosis. ### Example 1 -``` -PS C:\> Start-ClusterGroup FileServer1 -Name OwnerNode State ----- --------- ----- -FileServer1 node1 Online +```powershell +Start-ClusterGroup FileServer1 ``` -This example starts the clustered file server, or resource group, called FileServer1. +This example starts the clustered file server, or resource group, called `FileServer1`. ### Example 2 -``` -PS C:\> Start-ClusterGroup FileServer1 -Wait 0 -Name OwnerNode State ----- --------- ----- -FileServer1 node1 Pending +```powershell +Start-ClusterGroup FileServer1 -Wait 0 ``` -This example starts the clustered file server, or resource group, called FileServer1. The Windows -PowerShell® prompt returns as soon as the action has been initiated. +This example starts the clustered file server, or resource group, called `FileServer1`. +The Windows PowerShell prompt returns as soon as the action has been initiated. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Start-ClusterNode.md b/docset/winserver2022-ps/failoverclusters/Start-ClusterNode.md index bf5d8df6e1..cff15cf5bc 100644 --- a/docset/winserver2022-ps/failoverclusters/Start-ClusterNode.md +++ b/docset/winserver2022-ps/failoverclusters/Start-ClusterNode.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 10/21/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/start-clusternode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Start-ClusterNode @@ -45,33 +45,24 @@ authentication on the server computer. ### Example 1 -``` -PS C:\> Start-ClusterNode -Name node3 -Name State ----- ----- -node3 Joining +```powershell +Start-ClusterNode -Name node3 ``` -This example starts the Cluster service on the node named node3 on the local cluster. +This example starts the Cluster service on the node named `node3` on the local cluster. ### Example 2 -``` -PS C:\> Start-ClusterNode -Name node1 -Cluster cluster2 -Name State ----- ----- -node1 Joining +```powershell +Start-ClusterNode -Name node1 -Cluster cluster2 ``` -This example starts the Cluster service on the node named node1 on the cluster named cluster2. +This example starts the Cluster service on the node named `node1` on the cluster named `cluster2`. ### Example 3 -``` -PS C:\> Start-ClusterNode -FixQuorum -Name State ----- ----- -node1 Joining +```powershell +Start-ClusterNode -FixQuorum ``` This example forces the local node and the local cluster to start, even if quorum hasn't been From 61b72521ed951ed88033300f2201ec6a99f7311d Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Wed, 23 Nov 2022 00:41:12 +0000 Subject: [PATCH 375/965] Build validation fix --- .../failoverclusters/Remove-ClusterGroupSetDependency.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupSetDependency.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupSetDependency.md index f75875aaa3..4e049418ac 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupSetDependency.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupSetDependency.md @@ -11,6 +11,8 @@ title: Remove-ClusterGroupSetDependency # Remove-ClusterGroupSetDependency ## SYNOPSIS +Removes a dependency from a group set. + ## SYNTAX ### Query (cdxml) (Default) @@ -33,6 +35,8 @@ The `Remove-ClusterGroupSetDependency` cmdlet removes a dependency from a group ## EXAMPLES +### Example 1: Remove a group set dependency on another group set + ```powershell Remove-ClusterGroupSetDependency -Name "Set001" -Provider "Set002" ``` From 7f42746b5334f77ed98acec878e020fda1603ae8 Mon Sep 17 00:00:00 2001 From: Robin Harwood <19212983+robinharwood@users.noreply.github.com> Date: Fri, 16 Dec 2022 10:28:57 +0000 Subject: [PATCH 376/965] Apply suggestions from code review Co-authored-by: Mikey Lombardi (He/Him) --- .../failoverclusters/Remove-ClusterGroup.md | 2 +- .../failoverclusters/Remove-ClusterResourceDependency.md | 6 +++--- .../winserver2022-ps/failoverclusters/Set-ClusterQuorum.md | 5 +++-- .../failoverclusters/Set-ClusterResourceDependency.md | 2 +- .../failoverclusters/Set-ClusterStorageSpacesDirectDisk.md | 3 +-- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroup.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroup.md index f94e8f4417..3d8a40be2e 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroup.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroup.md @@ -54,7 +54,7 @@ from it. The cmdlet doesn't prompt for confirmation. Remove-ClusterGroup -Name MyFileServer -Force -RemoveResources ``` -This example removes the clustered role named `MyFileServer`, without prompting for confirmation. +This example removes the clustered role named `MyFileServer`, without prompting for confirmation. All cluster resources in `MyFileServer` will be deleted. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterResourceDependency.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterResourceDependency.md index f2f45e0645..80beca8a57 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterResourceDependency.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterResourceDependency.md @@ -38,8 +38,8 @@ offline might vary. Remove-ClusterResourceDependency -Resource cluster1FS -Provider "IP Address 2001:4898:9:2:: (3)" ``` -This example removes the dependency between cluster resource `cluster1FS` and the resource named IP -Address `2001:4898:9:2:: (3)`. +This example removes the dependency between cluster resource `cluster1FS` and the resource named +`IP Address 2001:4898:9:2:: (3)`. ### Example 2 @@ -51,7 +51,7 @@ Get-ClusterResource -Name cluster1FS | Remove-ClusterResourceDependency @paramet ``` This example removes the dependency between the cluster resource named `cluster1FS` and the resource -named IP Address `2001:4898:9:2:: (3)`. This example uses splatting to pass parameter values from +named `IP Address 2001:4898:9:2:: (3)`. This example uses splatting to pass parameter values from the `$Parameters` variable to the command. Learn more about [Splatting](/powershell/module/microsoft.powershell.core/about/about_splatting). diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterQuorum.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterQuorum.md index 63b4265343..4a3ebb11af 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterQuorum.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterQuorum.md @@ -62,8 +62,9 @@ using the disk resource at `\\fileserver\fsw` for the file share witness. ```powershell $parameters = @{ CloudWitness = $true - AccountName = '' - AccessKey = '' + AccountName = '' + AccessKey = '' +} Set-ClusterQuorum @parameters ``` diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterResourceDependency.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterResourceDependency.md index e22c364f85..9a9bcc7e80 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterResourceDependency.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterResourceDependency.md @@ -46,7 +46,7 @@ This example makes the resource called cluster1FS12 dependent on `[IP Address 15 ```powershell $parameters = @{ Resource = 'cluster1FS12' - Dependency = '[IP Address 151.56.48.0]' + Dependency = '[IP Address 151.56.48.0] or [New IP Address]' } Set-ClusterResourceDependency @parameters ``` diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterStorageSpacesDirectDisk.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterStorageSpacesDirectDisk.md index f8b70b4f79..46a04f239a 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterStorageSpacesDirectDisk.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterStorageSpacesDirectDisk.md @@ -38,8 +38,7 @@ S2D. Alternatively, you can run this cmdlet after you enable S2D. $parameters = @{ CimSession = 'K0619-C1.contoso.com' CanBeClaimed = $False - PhysicalDiskIds = '55CD2E404B75A3FC', - '50014EE05950DD7C' + PhysicalDiskIds = '55CD2E404B75A3FC', '50014EE05950DD7C' } Set-ClusterStorageSpacesDirectDisk @parameters ``` From 55f8cbd57c1af420eaf4a7a61eba292f99d6b355 Mon Sep 17 00:00:00 2001 From: Robin Harwood <19212983+robinharwood@users.noreply.github.com> Date: Mon, 9 Jan 2023 14:48:01 +0000 Subject: [PATCH 377/965] Applied review suggestion Co-authored-by: Mikey Lombardi (He/Him) --- .../failoverclusters/Remove-ClusterResourceDependency.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterResourceDependency.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterResourceDependency.md index 80beca8a57..c024529e5a 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterResourceDependency.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterResourceDependency.md @@ -35,7 +35,11 @@ offline might vary. ### Example 1 ```powershell -Remove-ClusterResourceDependency -Resource cluster1FS -Provider "IP Address 2001:4898:9:2:: (3)" +$parameters = @{ + Resource = 'cluster1FS' + Provider = 'IP Address 2001:4898:9:2:: (3)' +} +Remove-ClusterResourceDependency @parameters ``` This example removes the dependency between cluster resource `cluster1FS` and the resource named From dfe9f32c0fd8b77a55c96a54790108a027836904 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Mon, 9 Jan 2023 15:21:19 +0000 Subject: [PATCH 378/965] Updated Remove-ClusterCheckpoint.md after feedback --- .../failoverclusters/Remove-ClusterCheckpoint.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterCheckpoint.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterCheckpoint.md index 761620eead..a00142bd42 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterCheckpoint.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterCheckpoint.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 01/09/2023 online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clustercheckpoint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterCheckpoint @@ -37,12 +37,12 @@ local server. ### Example 1 ```powershell -Get-ClusterResource "Cluster Name" | Remove-ClusterCheckpoint -RegistryCheckpoint -Remove-ClusterCheckpoint -Confirm:$false +$checkpoint = Get-ClusterCheckpoint -ResourceName "Cluster Name" -RegistryCheckpoint +$checkpoint | Remove-ClusterCheckpoint -Confirm:$false ``` -This example removes the registry checkpoint called `software\clusname` for the resource named -`Cluster Name` without user confirmation. +This example returns all registry checkpoints for the resource named `Cluster Name`, then removes +them without user confirmation. ## PARAMETERS From a313b229d77f0da34e673c34df5e90555b4f40e8 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Tue, 22 Nov 2022 22:41:55 +0000 Subject: [PATCH 379/965] Buld update of examples --- .../Get-ClusterFaultDomainXML.md | 11 +- .../failoverclusters/Get-ClusterGroup.md | 53 ++------ .../failoverclusters/Get-ClusterGroupSet.md | 23 +--- .../Get-ClusterGroupSetDependency.md | 18 +-- .../failoverclusters/Get-ClusterLog.md | 32 ++--- .../failoverclusters/Get-ClusterNetwork.md | 17 +-- .../Get-ClusterNetworkInterface.md | 22 +--- .../failoverclusters/Get-ClusterNode.md | 35 ++---- .../failoverclusters/Get-ClusterOwnerNode.md | 20 ++- .../failoverclusters/Get-ClusterParameter.md | 35 ++---- .../failoverclusters/Get-ClusterQuorum.md | 18 +-- .../failoverclusters/Get-ClusterResource.md | 117 ++++-------------- .../Get-ClusterResourceDependency.md | 27 ++-- .../Get-ClusterResourceDependencyReport.md | 23 ++-- .../Get-ClusterResourceType.md | 50 ++------ .../Get-ClusterSharedVolume.md | 28 ++--- .../Get-ClusterSharedVolumeState.md | 30 +---- .../Get-ClusterStorageSpacesDirect.md | 28 ++--- .../Get-ClusterVMMonitoredItem.md | 14 +-- .../failoverclusters/Grant-ClusterAccess.md | 14 +-- .../failoverclusters/Move-ClusterGroup.md | 44 +++---- .../failoverclusters/Move-ClusterResource.md | 13 +- .../Move-ClusterSharedVolume.md | 20 ++- .../Move-ClusterVirtualMachineRole.md | 50 +++----- .../failoverclusters/New-Cluster.md | 68 ++++------ .../New-ClusterFaultDomain.md | 15 +-- .../failoverclusters/New-ClusterGroupSet.md | 17 +-- .../New-ClusterNameAccount.md | 18 +-- .../failoverclusters/Remove-Cluster.md | 20 +-- .../failoverclusters/Remove-ClusterAccess.md | 8 +- 30 files changed, 264 insertions(+), 624 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterFaultDomainXML.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterFaultDomainXML.md index 1a44f3fde3..b98ce26c15 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterFaultDomainXML.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterFaultDomainXML.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterFaultDomain.cdxml-help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterfaultdomainxml?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterFaultDomainXML @@ -28,11 +28,8 @@ The `Get-ClusterFaultDomainXML` cmdlet gets the fault domain as an XML string. ### Example 1: Get all fault domains in the cluster in XML form -``` -PS C:\> Get-ClusterFaultDomainXML - - - +```powershell +Get-ClusterFaultDomainXML ``` This command gets all the fault domains in the cluster on the local node in XML form. @@ -103,7 +100,7 @@ Accept wildcard characters: False ### -ThrottleLimit Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If -this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +this parameter is omitted or a value of `0` is entered, then Windows PowerShell calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. The throttle limit applies only to the current cmdlet, not to the session or to the computer. diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterGroup.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterGroup.md index e886242a5a..dfe8bf2a7a 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterGroup.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterGroup.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clustergroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterGroup @@ -32,14 +32,8 @@ together. ### Example 1 -``` -PS C:\> Get-ClusterGroup -Name OwnerNode State ----- --------- ----- -Available Storage node1 Online -Cluster Group node2 Online -cluster1FS node1 Online -cluster1FS-Other node1 Online +```powershell +Get-ClusterGroup ``` This example lists the state and owner node of each clustered role, or resource group, in the local @@ -47,52 +41,29 @@ cluster. ### Example 2 -``` -PS C:\> Get-ClusterGroup -Name "Cluster Group" | Get-ClusterResource -Name State Group ResourceType ----- ----- ----- ------------ -Cluster Disk 1 Online Cluster Group Physical Disk -Cluster IP Address Online Cluster Group IP Address -Cluster IP Addre... Online Cluster Group IPv6 Address -Cluster Name Online Cluster Group Network Name +```powershell +Get-ClusterGroup -Name "Cluster Group" | Get-ClusterResource ``` -This example lists the resources in Cluster Group on the local cluster. +This example lists the resources in `Cluster Group` on the local cluster. ### Example 3 -``` -PS C:\> Get-ClusterNode -Name node1 | Get-ClusterGroup -Name OwnerNode State ----- --------- ----- -Cluster Group node1 Online +```powershell +Get-ClusterNode -Name node1 | Get-ClusterGroup ``` This example lists the clustered services and applications, or resource groups, that are currently -owned by node1 in the local cluster. +owned by `node1` in the local cluster. ### Example 4 -``` -PS C:\> Get-ClusterGroup -Name FileServer1 | Format-List -Property * -Cluster : Cluster1 -IsCoreGroup : False -OwnerNode : node1 -State : Online -Name : FileServer1 -Description : -PersistentState : 0 -FailoverThreshold : 4294967295 -FailoverPeriod : 6 -AutoFailbackType : 0 -FailbackWindowStart : 4294967295 -FailbackWindowEnd : 4294967295 -AntiAffinityClassNames : {} -Id : 189ec8ad-1831-4f57-9bb0-3ffb9cbb9227 +```powershell +Get-ClusterGroup -Name FileServer1 | Format-List -Property * ``` This example displays the properties of a clustered file server, or resource group, called -FileServer1, in the form of a list. +`FileServer1`, in the form of a list. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterGroupSet.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterGroupSet.md index b2fb1308a5..9a734e61da 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterGroupSet.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterGroupSet.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterCollection.cdxml-help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clustergroupset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterGroupSet @@ -28,23 +28,8 @@ The `Get-ClusterGroupSet` cmdlet gets all the group sets in the cluster. ### Example 1: Get all the group sets in the cluster -``` -PS C:\> Get-ClusterGroupSet -Name : Set1 -GroupNames : {g1} -ProviderNames : {Set2} -StartupDelayTrigger : Delay -StartupCount : 4294967295 -IsGlobal : False -StartupDelay : 20 - -Name : Set2 -GroupNames : {g2} -ProviderNames : {} -StartupDelayTrigger : Delay -StartupCount : 4294967295 -IsGlobal : False -StartupDelay : 20 +```powershell +Get-ClusterGroupSet ``` This command enumerates the group sets in the cluster. @@ -130,7 +115,7 @@ Accept wildcard characters: False ### -ThrottleLimit Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If -this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +this parameter is omitted or a value of `0` is entered, then Windows PowerShell calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. The throttle limit applies only to the current cmdlet, not to the session or to the computer. diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterGroupSetDependency.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterGroupSetDependency.md index d08fa943e5..b50111d023 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterGroupSetDependency.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterGroupSetDependency.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterCollection.cdxml-help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clustergroupsetdependency?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterGroupSetDependency @@ -30,19 +30,11 @@ relationships. You can get all sets that are dependent on a specific set. ### Example 1: Get all the group sets that are provided by the specified set -``` -PS C:\> Get-ClusterGroupSetDependency -Provider "Set2" - -Name : Set1 -GroupNames : {g1} -ProviderNames : {Set2} -StartupDelayTrigger : Delay -StartupCount : 4294967295 -IsGlobal : False -StartupDelay : 20 +```powershell +Get-ClusterGroupSetDependency -Provider "Set2" ``` -This command gets all the group sets that are provided by set named Set2. +This command gets all the group sets that are provided by set named `Set2`. ## PARAMETERS @@ -157,7 +149,7 @@ Accept wildcard characters: False ### -ThrottleLimit Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If -this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +this parameter is omitted or a value of `0` is entered, then Windows PowerShell calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. The throttle limit applies only to the current cmdlet, not to the session or to the computer. diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterLog.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterLog.md index 129b0cf5f7..335922ee3b 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterLog.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterLog.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterlog?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterLog @@ -36,25 +36,17 @@ authentication on the server computer. ### Example 1: Create a log file for the local cluster -``` -PS C:\> Get-ClusterLog -Mode LastWriteTime Length Name ----- ------------- ------ ---- --a--- 9/4/2008 3:53 PM 2211301 Cluster.log --a--- 9/4/2008 3:53 PM 1261025 Cluster.log +```powershell +Get-ClusterLog ``` This command creates a log file for the local cluster in the cluster reports folder -(C:\Windows\Cluster\Reports) on each node of the cluster. +`C:\Windows\Cluster\Reports` on each node of the cluster. ### Example 2: Create log files for each node and save them locally -``` -PS C:\> Get-ClusterLog -Destination . -Mode LastWriteTime Length Name ----- ------------- ------ ---- --a--- 9/4/2008 3:55 PM 2211301 node1_cluster.log --a--- 9/4/2008 3:55 PM 1261025 node2_cluster.log +```powershell +Get-ClusterLog -Destination . ``` This command creates a log file for each node of the local cluster, and copies all logs to the local @@ -62,16 +54,12 @@ folder. ### Example 3: Create a log file for the local cluster for previous five minutes -``` -PS C:\> Get-ClusterLog -TimeSpan 5 -Mode LastWriteTime Length Name ----- ------------- ------ ---- --a--- 9/4/2008 3:58 PM 128299 Cluster.log --a--- 9/4/2008 4:01 PM 104181 Cluster.log +```powershell +Get-ClusterLog -TimeSpan 5 ``` This command creates a log file for the local cluster in the cluster reports folder -(C:\Windows\Cluster\Reports) on each node of the cluster. The log covers the last 5 minutes. +`C:\Windows\Cluster\Reports` on each node of the cluster. The log covers the last 5 minutes. ## PARAMETERS @@ -95,7 +83,7 @@ Accept wildcard characters: False ### -Destination Specifies the location to which to copy one or more cluster logs. To copy to the current folder, use -`.` for this parameter input. Default location is C:\Windows\Cluster\Reports. +`.` for this parameter input. Default location is `C:\Windows\Cluster\Reports`. ```yaml Type: String diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterNetwork.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterNetwork.md index dcd72b39c1..dbcedc1bc5 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterNetwork.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterNetwork.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusternetwork?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterNetwork @@ -29,24 +29,19 @@ A failover cluster requires network connectivity among nodes and between clients ### Example 1 -``` -PS C:\> Get-ClusterNetwork -Name State ----- ----- -Cluster Network 1 Up -Cluster Network 2 Up -Cluster Network 3 Up +```powershell +Get-ClusterNetwork ``` This example gets information about the networks used by the local cluster. ### Example 2 -``` -PS C:\> (Get-ClusterNetwork -Name "Cluster Network 1").Name = "Cluster Network 3" +```powershell +(Get-ClusterNetwork -Name "Cluster Network 1").Name = "Cluster Network 3" ``` -This example renames Cluster Network 1 to Cluster Network 3. +This example renames `Cluster Network 1` to `Cluster Network 3`. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterNetworkInterface.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterNetworkInterface.md index e7a88c6248..cd6cb0187d 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterNetworkInterface.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterNetworkInterface.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusternetworkinterface?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterNetworkInterface @@ -30,29 +30,19 @@ and nodes. ### Example 1 -``` -PS C:\> Get-ClusterNetworkInterface -Name Node Network State ----- ---- ------- ----- -node1 - Local A ... node1 Cluster Network 1 Up -node2 - Local A ... node2 Cluster Network 1 Up -node1 - Local A ... node1 Cluster Network 2 Up -node2 - Local A ... node2 Cluster Network 2 Up +```powershell +Get-ClusterNetworkInterface ``` This example displays information about the physical network adapters used by the local cluster. ### Example 2 -``` -PS C:\> Get-ClusterNode -Name node1 | Get-ClusterNetworkInterface -Name Node Network State ----- ---- ------- ----- -node1 - Local A ... node1 Cluster Network 1 Up -node1 - Local A ... node1 Cluster Network 2 Up +```powershell +Get-ClusterNode -Name node1 | Get-ClusterNetworkInterface ``` -This example displays information about the physical network adapters used by node1 in the local +This example displays information about the physical network adapters used by `node1` in the local cluster. This cmdlet is equivalent to `Get-ClusterNetworkInterface -Node node1`. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterNode.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterNode.md index 03c340df5c..4f9aee9d36 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterNode.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterNode.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusternode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterNode @@ -33,45 +33,28 @@ a particular node, specify that node in this cmdlet and then pipe the results th ### Example 1 -``` -PS C:\> Get-ClusterNode -Name ID State ----- -- ----- -node1 1 Up -node2 2 Up -node3 3 Up -node4 4 Up +```powershell +Get-ClusterNode ``` This example displays the name, id, and state of each node, or server, in the local cluster. ### Example 2 -``` -PS C:\> Get-ClusterNode -Cluster cluster1 -Name ID State ----- -- ----- -node1 1 Up -node2 2 Up +```powershell +Get-ClusterNode -Cluster cluster1 ``` This example displays the name, id, and state of each node, or server, in the cluster named -cluster1. +`cluster1`. ### Example 3 -``` -PS C:\> Get-ClusterNode -Name node1 | Get-ClusterResource -Name State Group ResourceType ----- ----- ----- ------------ -Cluster Disk 1 Online Cluster Group Physical Disk -Cluster IP Address Online Cluster Group IP Address -Cluster IP Addre... Online Cluster Group IPv6 Address -Cluster Name Online Cluster Group Network Name -File Share Witness Offline Cluster Group File Share Witness +```powershell +Get-ClusterNode -Name node1 | Get-ClusterResource ``` -This example lists all cluster resources that are currently owned by node named node1 on the local +This example lists all cluster resources that are currently owned by node named `node1` on the local cluster. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterOwnerNode.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterOwnerNode.md index dc64a9ed26..a84bd012c0 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterOwnerNode.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterOwnerNode.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterownernode?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterOwnerNode @@ -34,26 +34,20 @@ failure of a resource or a clustered role. ### Example 1 -``` -PS C:\> Get-ClusterResource -Cluster "Cluster Disk 1" | Get-ClusterOwnerNode -ClusterObject OwnerNodes -------------- ---------- -Cluster Disk 1 {node1, node2} +```powershell +Get-ClusterResource -Cluster "Cluster Disk 1" | Get-ClusterOwnerNode ``` -This example lists the possible owners for the cluster named Cluster Disk 1 in the local cluster. +This example lists the possible owners for the cluster named `Cluster Disk 1` in the local cluster. ### Example 2 -``` -PS C:\> Get-ClusterGroup -Group cluster1FS12 | Get-ClusterOwnerNode -ClusterObject OwnerNodes -------------- ---------- -cluster1FS12 {} +```powershell +Get-ClusterGroup -Group cluster1FS12 | Get-ClusterOwnerNode ``` This example lists the preferred owners for the clustered file server, or resource group, called -cluster1FS12 on the local cluster. +`cluster1FS12` on the local cluster. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterParameter.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterParameter.md index d9958015e8..67413e7a79 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterParameter.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterParameter.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterparameter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterParameter @@ -48,41 +48,22 @@ with it. For example: ### Example 1 -``` -PS C:\> Get-ClusterResource -Name cluster1FS | Get-ClusterParameter -Object Name Value Type ------- ---- ----- ---- -cluster1FS Name cluster1FS String -cluster1FS DnsName cluster1FS String -cluster1FS RemapPipeNames 0 UInt32 -cluster1FS HostRecordTTL 1200 UInt32 -cluster1FS RegisterAllProvi... 0 UInt32 -cluster1FS PublishPTRRecords 0 UInt32 -cluster1FS TimerCallbackAdd... 5 UInt32 -cluster1FS ResourceData {1, 0, 0, 0...} ByteArray -cluster1FS StatusNetBIOS 0 UInt32 -cluster1FS StatusDNS 0 UInt32 -cluster1FS StatusKerberos 0 UInt32 -cluster1FS CreatingDC \\DOMAIN12-DC-05... String -cluster1FS LastDNSUpdateTime 10/15/2008 9:50:... DateTime -cluster1FS ObjectGUID 8054680893fd5943... String +```powershell +Get-ClusterResource -Name cluster1FS | Get-ClusterParameter ``` This example gets the parameters, including the detailed information, for the cluster resource named -cluster1FS on the local cluster. The displayed parameters will vary according to the type of +`cluster1FS` on the local cluster. The displayed parameters will vary according to the type of resource being viewed. ### Example 2 -``` -PS C:\> Get-ClusterResource -Name cluster1FS | Get-ClusterParameter -Name HostRecordTTL -Object Name Value Type ------- ---- ----- ---- -cluster1FS HostRecordTTL 1200 UInt32 +```powershell +Get-ClusterResource -Name cluster1FS | Get-ClusterParameter -Name HostRecordTTL ``` -This example displays the HostRecordTTL parameter for the cluster resource named cluster1FS on the -local cluster, if that parameter is applicable to cluster1FS. +This example displays the HostRecordTTL parameter for the cluster resource named `cluster1FS` on the +local cluster, if that parameter is applicable to `cluster1FS`. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterQuorum.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterQuorum.md index 159452c50c..18c77cdd94 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterQuorum.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterQuorum.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterquorum?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterQuorum @@ -33,25 +33,19 @@ a copy of the cluster configuration) or file share witness. ### Example 1 -``` -PS C:\> Get-ClusterQuorum -Cluster QuorumResource QuorumType -------- -------------- ---------- -cluster1 Cluster Disk 1 NodeAndDiskMajority +```powershell +Get-ClusterQuorum ``` This example displays the quorum configuration for the local cluster. ### Example 2 -``` -PS C:\> Get-ClusterQuorum -Cluster Cluster1 -Cluster QuorumResource QuorumType -------- -------------- ---------- -mycluster NodeMajority +```powershell +Get-ClusterQuorum -Cluster Cluster1 ``` -This example displays the quorum configuration for the cluster named Cluster1. +This example displays the quorum configuration for the cluster named `Cluster1`. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterResource.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterResource.md index 39c79be45b..f4192a30e7 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterResource.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterResource.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterresource?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterResource @@ -34,131 +34,64 @@ and `Set-ClusterParameter`. ### Example 1 -``` -PS C:\> Get-ClusterResource -Name State Group ResourceType ----- ----- ----- ------------ -Cluster Disk 1 Online Cluster Group Physical Disk -Cluster Disk 2 Online Available Storage Physical Disk -Cluster Disk 3 Online Available Storage Physical Disk -Cluster Disk 4 Online Available Storage Physical Disk -Cluster Disk 5 Online Available Storage Physical Disk -Cluster Disk 6 Online Available Storage Physical Disk -Cluster Disk 7 Online Available Storage Physical Disk -Cluster IP Address Online Cluster Group IP Address -Cluster IP Addre... Online Cluster Group IPv6 Address -Cluster Name Online Cluster Group Network Name +```powershell +Get-ClusterResource ``` This example lists all cluster resources on the local cluster. ### Example 2 -``` -PS C:\> Get-ClusterResource -Name "Cluster Disk 2" | Format-List -Property * -Cluster : cluster1 -IsCoreResource : False -IsNetworkClassResource : False -IsStorageClassResource : True -OwnerNode : node2 -ResourceType : Physical Disk -State : Online -OwnerGroup : Available Storage -Name : Cluster Disk 2 -MaintenanceMode : False -MonitorProcessId : 524 -Description : -SeparateMonitor : False -PersistentState : 1 -LooksAlivePollInterval : 4294967295 -IsAlivePollInterval : 4294967295 -RestartAction : 2 -RestartThreshold : 1 -RestartDelay : 500 -RestartPeriod : 900000 -RetryPeriodOnFailure : 3600000 -PendingTimeout : 180000 -DeadlockTimeout : 300000 -ResourceSpecificStatus : -Id : 6e394089-145a-4279-b75d-b14015cc36e4 +```powershell +Get-ClusterResource -Name "Cluster Disk 2" | Format-List -Property * ``` -This example displays information about Cluster Disk 2, on the local cluster, in the form of a list. +This example displays information about `Cluster Disk 2`, on the local cluster, in the form of a +list. ### Example 3 -``` -PS C:\> Get-ClusterResource -Name "Cluster Disk 2" | Get-ClusterParameter -Object Name Value Type ------- ---- ----- ---- -Cluster Disk 2 DiskIdType 0 UInt32 -Cluster Disk 2 DiskSignature 2654136047 UInt32 -Cluster Disk 2 DiskIdGuid String -Cluster Disk 2 DiskRunChkDsk 0 UInt32 -Cluster Disk 2 DiskUniqueIds {16, 0, 0, 0...} ByteArray -Cluster Disk 2 DiskVolumeInfo {1, 0, 0, 0...} ByteArray -Cluster Disk 2 DiskArbInterval 3 UInt32 -Cluster Disk 2 DiskPath String -Cluster Disk 2 DiskReload 0 UInt32 -Cluster Disk 2 MaintenanceMode 0 UInt32 -Cluster Disk 2 MaxIoLatency 1000 UInt32 -Cluster Disk 2 CsvEnforseWriteT... 0 UInt32 -Cluster Disk 2 DiskPnpUpdate {0, 0, 0, 0...} ByteArray +```powershell +Get-ClusterResource -Name "Cluster Disk 2" | Get-ClusterParameter ``` -This example displays detailed parameters for Cluster Disk 2 on the local cluster. +This example displays detailed parameters for `Cluster Disk 2` on the local cluster. ### Example 4 -``` -PS C:\> Get-ClusterGroup -Name FileServer1 | Get-ClusterResource -Name State Group ResourceType ----- ----- ----- ------------ -Cluster Disk 1 Online FileServer1 Physical Disk -Cluster IP Address Online FileServer1 IP Address -Cluster IP Addre... Online FileServer1 IPv6 Address -FileServer1 Online FileServer1 Network Name +```powershell +Get-ClusterGroup -Name FileServer1 | Get-ClusterResource ``` -This example lists cluster resources in cluster group named FileServer1, a clustered file server on -the local cluster. +This example lists cluster resources in cluster group named `FileServer1`, a clustered file server +on the local cluster. ### Example 5 -``` -PS C:\> Get-ClusterResource -Name "Cluster Disk 2" | ForEach-Object -Process {$_.RestartDelay = 600} +```powershell +Get-ClusterResource -Name "Cluster Disk 2" | ForEach-Object -Process {$_.RestartDelay = 600} ``` -This example sets the common property RestartDelay for the Cluster Disk 2 resource on the local -cluster to 600. +This example sets the common property `RestartDelay` for the `Cluster Disk 2` resource on the local +cluster to `600`. ### Example 6 -``` -PS C:\> Get-ClusterResource -Name "cluster pool 1" | Format-List -Property OwnerNode -OwnerNode : cluster-node1 +```powershell +Get-ClusterResource -Name "cluster pool 1" | Format-List -Property OwnerNode ``` This example shows how to display the owner of a cluster pooled disk. ### Example 7 -``` -PS C:\> Get-ClusterResource -Name *print-VM1 | Get-VM | Stop-VM -Verbose -VERBOSE: Current VMobject = Microsoft.HyperV.PowerShell.VirtualMachine[] -VERBOSE: Stop-VM will shutdown the virtual machine "print-VM1". - -Confirm -Hyper-V cannot shut down virtual machine print-VM1 because the Shutdown integration service is unavailable. To avoid -potential data loss, you can pause or save the state of the virtual machine. The other option is to turn off the -virtual machine, but data loss might occur. - - -[Y] Yes [N] No [S] Suspend [?] Help (default is "Y"):Y +```powershell +Get-ClusterResource -Name *print-VM1 | Get-VM | Stop-VM -Verbose -Confirm:$false ``` -This example enumerates the cluster resources for wildcard characters *print-VM1 and stops the -corresponding virtual machines. Verbose mode is turned on for details of the operation. +This example enumerates the cluster resources for wildcard characters `*print-VM1` and stops the +corresponding virtual machines without user confirmation.. Verbose mode is turned on for details of +the operation. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceDependency.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceDependency.md index 5bb6db0e97..3952d04225 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceDependency.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceDependency.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterresourcedependency?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterResourceDependency @@ -31,31 +31,20 @@ order in which resources are brought online or taken offline in the cluster. ### Example 1 -``` -PS C:\> Get-ClusterResourceDependency -Resource cluster1FS12 -Resource DependencyExpression --------- -------------------- -cluster1FS12 [IP Address 172.24.11.0] or [IP Add ... +```powershell +Get-ClusterResourceDependency -Resource cluster1FS12 ``` -This example displays the dependencies for the resource called cluster1FS12. +This example displays the dependencies for the resource called `cluster1FS12`. ### Example 2 -``` -PS C:\> Get-ClusterGroup -Name cluster1FS12 | Get-ClusterResource | Get-ClusterResourceDependency -Resource DependencyExpression --------- -------------------- -cluster1FS12 [IP Address 172.24.11.0] or [IP Add ... - -Cluster Disk 6 -IP Address 157.56.48.0 -IP Address 2001:4898:9:2:: -IP Address 2002:9d38:31ca:8:: +```powershell +Get-ClusterGroup -Name cluster1FS12 | Get-ClusterResource | Get-ClusterResourceDependency ``` -This example displays the dependencies for each resource in the clustered file server ─resource -group─ called cluster1FS12. Some resources don't have dependencies. +This example displays the dependencies for each resource in the clustered file server resource +group called `cluster1FS12`. Some resources don't have dependencies. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceDependencyReport.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceDependencyReport.md index 07e6ea29ee..a95a970b33 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceDependencyReport.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceDependencyReport.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterresourcedependencyreport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterResourceDependencyReport @@ -33,33 +33,30 @@ specify a destination folder into which to copy the report. ### Example 1 -``` -PS C:\> Get-ClusterResourceDependencyReport -Group cluster1FS12 -Mode LastWriteTime Length Name ----- ------------- ------ ---- --a--- 10/15/2008 6:29 PM 59299 fb509e66-8d02-4881-8184-6be5b1bfa4c2.mht +```powershell +Get-ClusterResourceDependencyReport -Group cluster1FS12 ``` This example creates a dependency report file for the clustered file server, or resource group, -named cluster1FS12 on the local cluster. +named `cluster1FS12` on the local cluster. ### Example 2 -``` -PS C:\> Get-ClusterResourceDependencyReport -Group cluster1FS12 | Copy-Item -Destination C:\users\user1 +```powershell +Get-ClusterResourceDependencyReport -Group cluster1FS12 | Copy-Item -Destination C:\users\user1 ``` This example creates a dependency report file for the clustered file server, or resource group, -named cluster1FS12 on the local cluster. The dependency report is copied to C:\users\user1. +named `cluster1FS12` on the local cluster. The dependency report is copied to `C:\users\user1`. ### Example 3 -``` -PS C:\> Get-ClusterGroup | Get-ClusterResourceDependencyReport | Copy-Item -Destination \\fileserver\share +```powershell +Get-ClusterGroup | Get-ClusterResourceDependencyReport | Copy-Item -Destination \\fileserver\share ``` This example creates a dependency report file for each clustered role, or resource group, on the -local cluster, and copies all reports to \\\\fileserver\share. +local cluster, and copies all reports to `\\fileserver\share`. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceType.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceType.md index 191571539d..edf3efa78a 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceType.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterResourceType.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterresourcetype?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterResourceType @@ -30,56 +30,20 @@ which the Cluster service communicates with a particular resource type. ### Example 1 -``` -PS C:\> Get-ClusterResourceType -Name DisplayName ----- ----------- -DFS Replicated Folder DFS Replicated Folder -DHCP Service DHCP Service -Distributed File System Distributed File System -Distributed Transaction Coordinator Distributed Transaction Coordinator -File Server File Server -File Share Witness File Share Quorum Witness -Generic Application Generic Application -Generic Script Generic Script -Generic Service Generic Service -IP Address IP Address -IPv6 Address IPv6 Address -IPv6 Tunnel Address IPv6 Tunnel Address -Microsoft iSNS iSNSClusRes -MSMQ (Resource Type Unavailable) -MSMQTriggers (Resource Type Unavailable) -Network Name Network Name -NFS Share NFS Share -Physical Disk Physical Disk -Print Spooler Print Spooler -Virtual Machine Virtual Machine -Virtual Machine Configuration Virtual Machine Configuration -Volume Shadow Copy Service Task Volume Shadow Copy Service Task -WINS Service WINS Service +```powershell +Get-ClusterResourceType ``` This example lists all the resource types that can be used in configurations on the local cluster. ### Example 2 -``` -PS C:\> Get-ClusterResourceType -Name "File Server" | Format-List -Property * -Cluster : Cluster1 -DisplayName : File Server -Name : file server -DllName : clusres.dll -Description : -AdminExtensions : {} -LooksAlivePollInterval : 5000 -IsAlivePollInterval : 60000 -PendingTimeout : 180000 -DeadlockTimeout : 300000 -Id : f582c84f-0066-0069-6c65-207365727665 +```powershell +Get-ClusterResourceType -Name "File Server" | Format-List -Property * ``` -This example gets information about the File Server resource type on the local cluster, and displays -the information in the form of a list. +This example gets information about the `File Server` resource type on the local cluster, and +displays the information in the form of a list. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterSharedVolume.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterSharedVolume.md index d852eed946..9b76c96b3f 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterSharedVolume.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterSharedVolume.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clustersharedvolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterSharedVolume @@ -29,37 +29,27 @@ cluster. ### Example 1 -``` -PS C:\> Get-ClusterSharedVolume -Name State Node ----- ----- ---- -Cluster Disk 3 Online node1 -Cluster Disk 4 Online node2 +```powershell +Get-ClusterSharedVolume ``` This example lists all the Cluster Shared Volumes on the local cluster. ### Example 2 -``` -PS C:\> Get-ClusterSharedVolume -Cluster cluster1 -Name State Node ----- ----- ---- -Cluster Disk 1 Online node4 +```powershell +Get-ClusterSharedVolume -Cluster cluster1 ``` -This example lists all the Cluster Shared Volumes on the cluster named cluster1. +This example lists all the Cluster Shared Volumes on the cluster named `cluster1`. ### Example 3 -``` -PS C:\> Get-ClusterSharedVolume -Name "Cluster Disk 4" -Name State Node ----- ----- ---- -Cluster Disk 4 Online node2 +```powershell +Get-ClusterSharedVolume -Name "Cluster Disk 4" ``` -This example displays the state of the Cluster Shared Volume called Cluster Disk 4. +This example displays the state of the Cluster Shared Volume called `Cluster Disk 4`. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterSharedVolumeState.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterSharedVolumeState.md index c3913b1d57..802901abd3 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterSharedVolumeState.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterSharedVolumeState.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clustersharedvolumestate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterSharedVolumeState @@ -26,32 +26,10 @@ The `Get-ClusterSharedVolumeState` cmdlet gets the state of Cluster Shared Volum ## EXAMPLES -### 1: +### Example 1 -``` -PS C:\> Get-ClusterSharedVolumeState -Name : Cluster Disk X -VolumeName : \\?\Volume{2297f079-53c2-41e9-94d1-483d61ea94d7}\ -Node : ClusterNode1 -State : Direct - -VolumeFriendlyName : Volume1 -RedirectedIOReason : NotRedirected - -Name : Cluster Disk Y -VolumeName : \\?\Volume{0312ef48-74c7-4a4d-946e-4bb4a397ad1f}\ -Node : ClusterNode2 -State : File System Redirected - -VolumeFriendlyName : Volume2 -RedirectedIOReason : UserRequest - -Name : Cluster Disk Z -VolumeName : \\?\Volume{c4689cef-83e3-4f47-9eaf-161a9e31c5a0}\ -Node : ClusterNode3 -State : Block Redirected -VolumeFriendlyName : Volume3 -RedirectedIOReason : NoDiskConnectivity +```powershell +Get-ClusterSharedVolumeState ``` This command gets the state of Cluster Shared Volumes on the local cluster. diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterStorageSpacesDirect.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterStorageSpacesDirect.md index 4d90a79698..699bc6420a 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterStorageSpacesDirect.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterStorageSpacesDirect.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterStorageSpacesDirect.cdxml-help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusterstoragespacesdirect?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterStorageSpacesDirect @@ -29,28 +29,20 @@ cluster. ### Example 1: Get the Storage Spaces Direct settings from a cluster -``` -PS C:\> Get-ClusterStorageSpacesDirect -Node "K0617-C1.contoso.com" -S2DCacheBehavior : Default -S2DCacheDesiredState : ReadWrite -S2DCacheMetadataReserveBytes : 34359738368 -S2DEnabled : 1 +```powershell +Get-ClusterStorageSpacesDirect -Node "K0617-C1.contoso.com" ``` -This command sets the S2D settings from the K0617-C1.contoso.com cluster. +This command sets the S2D settings from the `K0617-C1.contoso.com` cluster. -### Example 2: Get the Storage Spaces Direct settings from a cluster by using the pipeline operator for input +### Example 2: Get the Storage Spaces Direct settings from a cluster -``` -PS C:\> Get-Cluster "K0617-C1.contoso.com" | Get-ClusterStorageSpacesDirect -S2DCacheBehavior : Default -S2DCacheDesiredState : ReadWrite -S2DCacheMetadataReserveBytes : 34359738368 -S2DEnabled : 1 +```powershell +Get-Cluster "K0617-C1.contoso.com" | Get-ClusterStorageSpacesDirect ``` -This command gets the S2D settings from cluster K0617-C1.contoso.com and pipes the cluster object to -`Get-ClusterStorageSpacesDirect`. +This command gets the S2D settings from cluster `K0617-C1.contoso.com` and pipes the cluster object +to `Get-ClusterStorageSpacesDirect`. ## PARAMETERS @@ -117,7 +109,7 @@ Accept wildcard characters: False ### -ThrottleLimit Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If -this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +this parameter is omitted or a value of `0` is entered, then Windows PowerShell calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. The throttle limit applies only to the current cmdlet, not to the session or to the computer. diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterVMMonitoredItem.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterVMMonitoredItem.md index 58f641a5e4..255540b4c9 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterVMMonitoredItem.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterVMMonitoredItem.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clustervmmonitoreditem?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterVMMonitoredItem @@ -46,16 +46,12 @@ resource. For example, the configuration might specify that the virtual machine ### Example 1 -``` -PS C:\> Get-Cluster -Name Cluster1 | Get-ClusterVMMonitoredItem -VirtualMachine vm1 -Name ----- -Microsoft-Windows-FailoverClustering-Manager+Admin,Microsoft-Windows-FailoverClustering-Manager,4708 -Spooler +```powershell +Get-Cluster -Name Cluster1 | Get-ClusterVMMonitoredItem -VirtualMachine vm1 ``` -This example returns the services and events being monitored in the virtual machine named vm1 on the -cluster named Cluster1. +This example returns the services and events being monitored in the virtual machine named `vm1` on +the cluster named `Cluster1`. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Grant-ClusterAccess.md b/docset/winserver2022-ps/failoverclusters/Grant-ClusterAccess.md index cebc34ad3d..36f79e0725 100644 --- a/docset/winserver2022-ps/failoverclusters/Grant-ClusterAccess.md +++ b/docset/winserver2022-ps/failoverclusters/Grant-ClusterAccess.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/grant-clusteraccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Grant-ClusterAccess @@ -30,19 +30,19 @@ parameter. ### Example 1 -``` -PS C:\> Grant-ClusterAccess -User contoso\johnj99 -Full +```powershell +Grant-ClusterAccess -User contoso\johnj99 -Full ``` -This example grants full access to the local cluster to johnj99 in the contoso domain. +This example grants full access to the local cluster to `johnj99` in the `contoso` domain. ### Example 2 -``` -PS C:\> Grant-ClusterAccess -User contoso\johnj99 -ReadOnly +```powershell +Grant-ClusterAccess -User contoso\johnj99 -ReadOnly ``` -This example grants read-only access to the local cluster to johnj99 in the contoso domain. +This example grants read-only access to the local cluster to `johnj99` in the `contoso` domain. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Move-ClusterGroup.md b/docset/winserver2022-ps/failoverclusters/Move-ClusterGroup.md index 357b19c3e2..7efb078ef0 100644 --- a/docset/winserver2022-ps/failoverclusters/Move-ClusterGroup.md +++ b/docset/winserver2022-ps/failoverclusters/Move-ClusterGroup.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/move-clustergroup?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-ClusterGroup @@ -32,53 +32,39 @@ step to take in preparation for routine maintenance on a node. ### Example 1 -``` -PS C:\> Move-ClusterGroup -Name MyFileServer -Name OwnerNode State ----- --------- ----- -MyFileServer node1 Online +```powershell +Move-ClusterGroup -Name MyFileServer ``` -This example moves the clustered service called MyFileServer from the current owner node to any +This example moves the clustered service called `MyFileServer` from the current owner node to any other node. ### Example 2 -``` -PS C:\> Move-ClusterGroup -Name MyFileServer -Node node2 -Name OwnerNode State ----- --------- ----- -MyFileServer node2 Online +```powershell +Move-ClusterGroup -Name MyFileServer -Node node2 ``` -This example moves the resource group called MyFileServer from the current owner node to the node -named node2. +This example moves the resource group called `MyFileServer` from the current owner node to the node +named `node2`. ### Example 3 -``` -PS C:\> Get-ClusterNode node3 | Get-ClusterGroup | Move-ClusterGroup -Name OwnerNode State ----- --------- ----- -Available Storage node4 Online -Cluster Group node1 Online -MyFileServer node1 Online +```powershell +Get-ClusterNode node3 | Get-ClusterGroup | Move-ClusterGroup ``` -This example moves all resource groups that are currently owned by the node named node3 to other +This example moves all resource groups that are currently owned by the node named `node3` to other nodes. Use this cmdlet before performing maintenance on the specified node. ### Example 4 -``` -PS C:\> Move-ClusterGroup -Name MyFileServer -Node node2 -Wait 0 -Name OwnerNode State ----- --------- ----- -MyFileServer node2 Pending +```powershell +Move-ClusterGroup -Name MyFileServer -Node node2 -Wait 0 ``` -This example moves the resource group called MyFileServer from the current owner node to the node -named `node2`. Information about MyFileServer is displayed immediately, while it is in the process +This example moves the resource group called `MyFileServer` from the current owner node to the node +named `node2`. Information about `MyFileServer` is displayed immediately, while it is in the process of being moved. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Move-ClusterResource.md b/docset/winserver2022-ps/failoverclusters/Move-ClusterResource.md index 9b66cadaf2..8dbec364fd 100644 --- a/docset/winserver2022-ps/failoverclusters/Move-ClusterResource.md +++ b/docset/winserver2022-ps/failoverclusters/Move-ClusterResource.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/move-clusterresource?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-ClusterResource @@ -30,15 +30,12 @@ clustered resource will then fail over with that clustered role. ### Example 1 -``` -PS C:\> Move-ClusterResource -Name resource1 -Group group2 -Name State Group ResourceType ----- ----- ----- ------------ -resource1 Offline group2 IP Address +```powershell +Move-ClusterResource -Name resource1 -Group group2 ``` -This command moves the cluster resource called resource1 to the resource group called group2 on the -local cluster. +This command moves the cluster resource called `resource1` to the resource group called `group2` on +the local cluster. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Move-ClusterSharedVolume.md b/docset/winserver2022-ps/failoverclusters/Move-ClusterSharedVolume.md index 86eb029fba..5f024398cb 100644 --- a/docset/winserver2022-ps/failoverclusters/Move-ClusterSharedVolume.md +++ b/docset/winserver2022-ps/failoverclusters/Move-ClusterSharedVolume.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/move-clustersharedvolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-ClusterSharedVolume @@ -34,25 +34,19 @@ nodes. ### Example 1 -``` -PS C:\> Move-ClusterSharedVolume -Name "Cluster Disk 3" -Name State Node ----- ----- ---- -Cluster Disk 3 Online node2 +```powershell +Move-ClusterSharedVolume -Name "Cluster Disk 3" ``` -This example moves the Cluster Shared Volume called Cluster Disk 3 to another cluster node. +This example moves the Cluster Shared Volume called `Cluster Disk 3` to another cluster node. ### Example 2 -``` -PS C:\> Move-ClusterSharedVolume -Name "Cluster Disk 3" -Node node1 -Name State Node ----- ----- ---- -Cluster Disk 3 Online node1 +```powershell +Move-ClusterSharedVolume -Name "Cluster Disk 3" -Node node1 ``` -This example moves the Cluster Shared Volume called Cluster Disk 3 to the node named node1. +This example moves the Cluster Shared Volume called `Cluster Disk 3` to the node named `node1`. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Move-ClusterVirtualMachineRole.md b/docset/winserver2022-ps/failoverclusters/Move-ClusterVirtualMachineRole.md index 8003d655a6..8b03d0fcae 100644 --- a/docset/winserver2022-ps/failoverclusters/Move-ClusterVirtualMachineRole.md +++ b/docset/winserver2022-ps/failoverclusters/Move-ClusterVirtualMachineRole.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/move-clustervirtualmachinerole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-ClusterVirtualMachineRole @@ -37,58 +37,42 @@ authentication on the server computer. ### Example 1 -``` -PS C:\> Move-ClusterVirtualMachineRole -Name "Virtual Machine1" -Node node2 -Name OwnerNode State ----- --------- ----- -Virtual Machine1 node2 Online +```powershell +Move-ClusterVirtualMachineRole -Name "Virtual Machine1" -Node node2 ``` This example performs a live migration of the clustered virtual machine named Virtual Machine1 to -the node named node2. The Windows PowerShell prompt doesn't return until the action is complete. +the node named `node2`. The Windows PowerShell prompt doesn't return until the action is complete. ### Example 2 -``` -PS C:\> Get-ClusterGroup -Name "Virtual Machine1" | Move-ClusterVirtualMachineRole -Node node2 -Wait 0 -Name OwnerNode State ----- --------- ----- -Virtual Machine1 node2 Online +```powershell +Get-ClusterGroup -Name "Virtual Machine1" | Move-ClusterVirtualMachineRole -Node node2 -Wait 0 ``` -This example performs a live migration of clustered virtual machine named Virtual Machine1 to the -node named node2. The Windows PowerShell® prompt returns as soon as the action has been initiated. +This example performs a live migration of clustered virtual machine named `Virtual Machine1` to the +node named `node2`. The Windows PowerShell prompt returns as soon as the action has been initiated. ### Example 3 -``` -PS C:\> Move-ClusterVirtualMachineRole -Name "Virtual Machine1" -Cancel -Name OwnerNode State ----- --------- ----- -Virtual Machine1 node1 Online +```powershell +Move-ClusterVirtualMachineRole -Name "Virtual Machine1" -Cancel ``` -This example cancels the live migration in progress for the clustered virtual machine named Virtual -Machine1. +This example cancels the live migration in progress for the clustered virtual machine named `Virtual +Machine1`. ### Example 4 -``` -PS C:\> $groups = Get-ClusterNode -Name node1 | Get-ClusterGroup | Where-Object -FilterScript {$_ | Get-ClusterResource | Where-Object -FilterScript {$_.ResourceType -Like "Virtual Machine"}} - - -PS C:\> ForEach-Object -InputObject $groups -Process { $_ | Move-ClusterVirtualMachineRole -Node node2 } -Name OwnerNode State ----- --------- ----- -Virtual Machine1 node2 Online -Virtual Machine2 node2 Online -Virtual Machine3 node2 Online +```powershell +$groups = Get-ClusterNode -Name node1 | Get-ClusterGroup | Where-Object -FilterScript {$_ | Get-ClusterResource | Where-Object -FilterScript {$_.ResourceType -Like "Virtual Machine"}} +ForEach-Object -InputObject $groups -Process { $_ | Move-ClusterVirtualMachineRole -Node node2 } ``` This example performs a live migration of all clustered virtual machines that are currently owned by the node named node1 to the node named node2. The migration of each virtual machine should complete -before the next migration is started. Use this cmdlet before performing maintenance on the specified -node. +before the next migration is startqed. Use this cmdlet before performing maintenance on the +specified node. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/New-Cluster.md b/docset/winserver2022-ps/failoverclusters/New-Cluster.md index 4dc07fedca..da139180d0 100644 --- a/docset/winserver2022-ps/failoverclusters/New-Cluster.md +++ b/docset/winserver2022-ps/failoverclusters/New-Cluster.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/new-cluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-Cluster @@ -35,86 +35,66 @@ System Configuration, Network, Storage, and other types of tests. ### Example 1 ```powershell -PS C:\> New-Cluster -Name cluster1 -Node node1,node2,node3,node4 -``` -```output -Name ----- -cluster1 +New-Cluster -Name cluster1 -Node node1,node2,node3,node4 ``` -This example creates a four-node cluster named cluster1, using default settings for IP addressing. +This example creates a four-node cluster named `cluster1`, using default settings for IP addressing. ### Example 2 ```powershell -PS C:\> New-Cluster -Name cluster1 -Node node1,node2 -NoStorage -``` -```output -Name ----- -cluster1 +New-Cluster -Name cluster1 -Node node1,node2 -NoStorage ``` -This example creates a two-node cluster named cluster1. The cluster will not have any clustered +This example creates a two-node cluster named `cluster1`. The cluster will not have any clustered storage, or disk resources. Storage can be added using the `Get-ClusterAvailableDisk` cmdlet with the `Add-ClusterDisk` cmdlet. ### Example 3 ```powershell -PS C:\> New-Cluster -Name cluster1 -Node node1,node2,node3,node4 -StaticAddress 2.0.0.123 -``` -```output -Name ----- -cluster1 +New-Cluster -Name cluster1 -Node node1,node2,node3,node4 -StaticAddress 2.0.0.123 ``` -This example creates a four-node cluster named cluster1 that uses the static IP address 2.0.0.123. +This example creates a four-node cluster named `cluster1` that uses the static IP address +`2.0.0.123`. ### Example 4 ```powershell -PS C:\> New-Cluster -Name cluster1 -Node node1,node2,node3,node4 -StaticAddress 2.0.0.123,3.0.0.123 -``` -```output -Name ----- -cluster1 +New-Cluster -Name cluster1 -Node node1,node2,node3,node4 -StaticAddress 2.0.0.123,3.0.0.123 ``` -This example creates a four-node cluster named cluster1 that uses the static IP addresses 2.0.0.123 -and 3.0.0.123. +This example creates a four-node cluster named `cluster1` that uses the static IP addresses +`2.0.0.123` and `3.0.0.123`. ### Example 5 ```powershell -PS C:\> New-Cluster -Name cluster1 -Node node1,node2,node3,node4 -IgnoreNetwork 2.0.0.0/8 -``` -```output -Name ----- -cluster1 +New-Cluster -Name cluster1 -Node node1,node2,node3,node4 -IgnoreNetwork 2.0.0.0/8 ``` -This example creates a four-node cluster named cluster1. The cluster uses default settings for IP -addressing, and doesn't use the network 2.0.0.0/8. +This example creates a four-node cluster named `cluster1`. The cluster uses default settings for IP +addressing, and doesn't use the network `2.0.0.0/8`. ### Example 6 ```powershell -PS C:\> New-Cluster -Name cluster1 -Node node1,node2,node3,node4 -StaticAddress 2.0.0.123 -IgnoreNetwork 3.0.0.0/8 -``` -```output -Name ----- -cluster1 +$parameters = @{ + Name = 'cluster1' + Node = 'node1','node2','node3','node4' + StaticAddress = '2.0.0.123' + IgnoreNetwork = '3.0.0.0/8' +} +New-Cluster @parameters ``` This example creates a four-node cluster named cluster1. The cluster uses the static IP address 2.0.0.123, and doesn't use the network 3.0.0.0/8. +This example uses splatting to pass parameter values from the `$Parameters` variable to the command. +Learn more about [Splatting](/powershell/module/microsoft.powershell.core/about/about_splatting). + ## PARAMETERS ### -AdministrativeAccessPoint diff --git a/docset/winserver2022-ps/failoverclusters/New-ClusterFaultDomain.md b/docset/winserver2022-ps/failoverclusters/New-ClusterFaultDomain.md index c21b651fee..edf433e807 100644 --- a/docset/winserver2022-ps/failoverclusters/New-ClusterFaultDomain.md +++ b/docset/winserver2022-ps/failoverclusters/New-ClusterFaultDomain.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterFaultDomain.cdxml-help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/new-clusterfaultdomain?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ClusterFaultDomain @@ -30,15 +30,12 @@ specify the relationship between the fault domains when they are created. ### Example 1: Create a cluster fault domain in an existing fault domain -``` -PS C:\> New-ClusterFaultDomain -Type Rack -Name "Rack1" -FaultDomain "Site001" -Name Type ParentName ChildrenNames ----- ---- ---------- ------------- -Rack1 Rack Site1 +```powershell +New-ClusterFaultDomain -Type Rack -Name "Rack1" -FaultDomain "Site001" ``` -This command creates a cluster fault domain of type Rack named Rack1 in the existing fault domain -named Site001. +This command creates a cluster fault domain of type Rack named `Rack1` in the existing fault domain +named `Site001`. ## PARAMETERS @@ -193,7 +190,7 @@ Accept wildcard characters: False ### -ThrottleLimit Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If -this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +this parameter is omitted or a value of `0` is entered, then Windows PowerShell calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. The throttle limit applies only to the current cmdlet, not to the session or to the computer. diff --git a/docset/winserver2022-ps/failoverclusters/New-ClusterGroupSet.md b/docset/winserver2022-ps/failoverclusters/New-ClusterGroupSet.md index 93bd5dea36..14bee882e7 100644 --- a/docset/winserver2022-ps/failoverclusters/New-ClusterGroupSet.md +++ b/docset/winserver2022-ps/failoverclusters/New-ClusterGroupSet.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: ClusterCollection.cdxml-help.xml Module Name: FailoverClusters -ms.date: 10/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/new-clustergroupset?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ClusterGroupSet @@ -29,18 +29,11 @@ based on dependencies between sets. ### Example 1: Create a cluster group set -``` -PS C:\> New-ClusterGroupSet -Name "Set001" -Group "Group001" -Name : Set1 -GroupNames : {g1} -ProviderNames : {} -StartupDelayTrigger : Delay -StartupCount : 4294967295 -IsGlobal : False -StartupDelay : 20 +```powershell +New-ClusterGroupSet -Name "Set001" -Group "Group001" ``` -This command creates a cluster group set named Set001 that contains the group named Group001. +This command creates a cluster group set named `Set001` that contains the group named `Group001`. ## PARAMETERS @@ -139,7 +132,7 @@ Accept wildcard characters: False ### -ThrottleLimit Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If -this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +this parameter is omitted or a value of `0` is entered, then Windows PowerShell calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. The throttle limit applies only to the current cmdlet, not to the session or to the computer. diff --git a/docset/winserver2022-ps/failoverclusters/New-ClusterNameAccount.md b/docset/winserver2022-ps/failoverclusters/New-ClusterNameAccount.md index 92033a8900..b1c71cc0ec 100644 --- a/docset/winserver2022-ps/failoverclusters/New-ClusterNameAccount.md +++ b/docset/winserver2022-ps/failoverclusters/New-ClusterNameAccount.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/new-clusternameaccount?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ClusterNameAccount @@ -40,21 +40,21 @@ name account already exists for a cluster, this cmdlet has no effect. ### Example 1: Create a cluster name account for the current cluster -``` -PS C:\> New-ClusterNameAccount -Name "cluster_17" -Domain "production.contoso.com" +```powershell +New-ClusterNameAccount -Name "cluster_17" -Domain "production.contoso.com" ``` -This command creates a cluster name account for the current cluster in the specified domain. The -current cluster is the default value for the cluster on which this cmdlet operates. +This command creates a cluster name account for the current cluster in the specified domain. +The current cluster is the default value for the cluster on which this cmdlet operates. ### Example 2: Create a cluster name account by using credentials -``` -PS C:\> $Credential = Get-Credential -PS C:\> New-ClusterNameAccount -Name "cluster27" -Domain "production.contoso.com" -Credentials $Credential +```powershell +$Credential = Get-Credential +New-ClusterNameAccount -Name "cluster27" -Domain "production.contoso.com" -Credentials $Credential ``` -The first command prompts you for credentials, and then stores them in the **$Credential** variable. +The first command prompts you for credentials, and then stores them in the `$Credential` variable. The second command creates a cluster name account for the current cluster in the specified domain. The command supplies the credentials stored in `$Credential` to access Active Directory Domain diff --git a/docset/winserver2022-ps/failoverclusters/Remove-Cluster.md b/docset/winserver2022-ps/failoverclusters/Remove-Cluster.md index 2cd3533ee5..ef3dc1a22e 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-Cluster.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-Cluster.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-cluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-Cluster @@ -34,8 +34,8 @@ authentication on the server computer. ### Example 1 -``` -PS C:\> Remove-Cluster +```powershell +Remove-Cluster ``` This example prompts the user for confirmation, then destroys the local failover cluster and removes @@ -43,8 +43,8 @@ cluster configuration information from the cluster nodes. ### Example 2 -``` -PS C:\> Remove-Cluster -Force +```powershell +Remove-Cluster -Force ``` This example destroys the local failover cluster and removes cluster configuration information from @@ -52,13 +52,13 @@ the cluster nodes. The cmdlet doesn't prompt for confirmation. ### Example 3 -``` -PS C:\> Get-Cluster -Name Cluster1 | Remove-Cluster -Force -CleanupAD +```powershell +Get-Cluster -Name Cluster1 | Remove-Cluster -Force -CleanupAD ``` -This example destroys the cluster named Cluster1, removes cluster configuration information from the -cluster nodes, and deletes the cluster objects in Active Directory. The cmdlet doesn't prompt for -confirmation. +This example destroys the cluster named `Cluster1`, removes cluster configuration information from +the cluster nodes, and deletes the cluster objects in Active Directory. The cmdlet doesn't prompt +for confirmation. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterAccess.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterAccess.md index acea4290c0..58de9f269f 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterAccess.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterAccess.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/21/2022 +ms.date: 11/22/2022 online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clusteraccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterAccess @@ -30,11 +30,11 @@ another user group which is on the cluster access list. ### Example 1 -``` -PS C:\> Remove-ClusterAccess -User contoso\johnj99 +```powershell +Remove-ClusterAccess -User contoso\johnj99 ``` -This example removes the user johnj99 in the contoso domain from the access list of the local +This example removes the user `johnj99` in the `contoso` domain from the access list of the local cluster. After this cmdlet runs, the user might still have access to the cluster if the user is part of another user group granted access to the cluster. From 219b02ddafffba8d68462f5b278e9460641bd727 Mon Sep 17 00:00:00 2001 From: Robin Harwood <19212983+robinharwood@users.noreply.github.com> Date: Wed, 23 Nov 2022 16:23:31 +0000 Subject: [PATCH 380/965] Apply suggestions from code review Co-authored-by: Mikey Lombardi (He/Him) --- .../failoverclusters/Get-ClusterResource.md | 6 ++++-- .../failoverclusters/Move-ClusterVirtualMachineRole.md | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterResource.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterResource.md index f4192a30e7..236366b071 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterResource.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterResource.md @@ -69,7 +69,9 @@ on the local cluster. ### Example 5 ```powershell -Get-ClusterResource -Name "Cluster Disk 2" | ForEach-Object -Process {$_.RestartDelay = 600} +Get-ClusterResource -Name "Cluster Disk 2" | ForEach-Object -Process { + $_.RestartDelay = 600 +} ``` This example sets the common property `RestartDelay` for the `Cluster Disk 2` resource on the local @@ -90,7 +92,7 @@ Get-ClusterResource -Name *print-VM1 | Get-VM | Stop-VM -Verbose -Confirm:$false ``` This example enumerates the cluster resources for wildcard characters `*print-VM1` and stops the -corresponding virtual machines without user confirmation.. Verbose mode is turned on for details of +corresponding virtual machines without user confirmation. Verbose mode is turned on for details of the operation. ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Move-ClusterVirtualMachineRole.md b/docset/winserver2022-ps/failoverclusters/Move-ClusterVirtualMachineRole.md index 8b03d0fcae..4dbdc0583f 100644 --- a/docset/winserver2022-ps/failoverclusters/Move-ClusterVirtualMachineRole.md +++ b/docset/winserver2022-ps/failoverclusters/Move-ClusterVirtualMachineRole.md @@ -71,7 +71,7 @@ ForEach-Object -InputObject $groups -Process { $_ | Move-ClusterVirtualMachineRo This example performs a live migration of all clustered virtual machines that are currently owned by the node named node1 to the node named node2. The migration of each virtual machine should complete -before the next migration is startqed. Use this cmdlet before performing maintenance on the +before the next migration is started. Use this cmdlet before performing maintenance on the specified node. ## PARAMETERS From 1de26910a220bc0f2ab2ed83b02ccd14f555f519 Mon Sep 17 00:00:00 2001 From: Robin Harwood <19212983+robinharwood@users.noreply.github.com> Date: Mon, 9 Jan 2023 15:57:58 +0000 Subject: [PATCH 381/965] UpdateMove-ClusterVirtualMachineRole.md with review suggestion Co-authored-by: Mikey Lombardi (He/Him) --- .../failoverclusters/Move-ClusterVirtualMachineRole.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/failoverclusters/Move-ClusterVirtualMachineRole.md b/docset/winserver2022-ps/failoverclusters/Move-ClusterVirtualMachineRole.md index 4dbdc0583f..18bfaeb44d 100644 --- a/docset/winserver2022-ps/failoverclusters/Move-ClusterVirtualMachineRole.md +++ b/docset/winserver2022-ps/failoverclusters/Move-ClusterVirtualMachineRole.md @@ -65,7 +65,12 @@ Machine1`. ### Example 4 ```powershell -$groups = Get-ClusterNode -Name node1 | Get-ClusterGroup | Where-Object -FilterScript {$_ | Get-ClusterResource | Where-Object -FilterScript {$_.ResourceType -Like "Virtual Machine"}} +$vmGroups = Get-ClusterNode -Name node1 | + Get-ClusterGroup | + Where-Object -FilterScript { + Get-ClusterResource -InputObject $_ | + Where-Object ResourceType -Like "Virtual Machine" + } ForEach-Object -InputObject $groups -Process { $_ | Move-ClusterVirtualMachineRole -Node node2 } ``` From 088ad7f8b76617323b7f188171e113fbac1a4bc7 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Tue, 10 Jan 2023 10:46:55 +0000 Subject: [PATCH 382/965] Updated examples for Move-ClusterVirtualMachineRole --- .../Move-ClusterVirtualMachineRole.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/Move-ClusterVirtualMachineRole.md b/docset/winserver2022-ps/failoverclusters/Move-ClusterVirtualMachineRole.md index 18bfaeb44d..07ff08ea6e 100644 --- a/docset/winserver2022-ps/failoverclusters/Move-ClusterVirtualMachineRole.md +++ b/docset/winserver2022-ps/failoverclusters/Move-ClusterVirtualMachineRole.md @@ -71,13 +71,15 @@ $vmGroups = Get-ClusterNode -Name node1 | Get-ClusterResource -InputObject $_ | Where-Object ResourceType -Like "Virtual Machine" } -ForEach-Object -InputObject $groups -Process { $_ | Move-ClusterVirtualMachineRole -Node node2 } +ForEach-Object -InputObject $vmGroups -Process { $_ | Move-ClusterVirtualMachineRole -Node node2 } ``` -This example performs a live migration of all clustered virtual machines that are currently owned by -the node named node1 to the node named node2. The migration of each virtual machine should complete -before the next migration is started. Use this cmdlet before performing maintenance on the -specified node. +This example queries a specific cluster node, `node1`, to find the currently owned groups. The +example further filters the owned groups where there resource type is a virtual machine cluster +resource. The filtered groups are stored in the `$vmGroups` variable. For each cluster group in the +variable, the command will perform a live migration of all clustered virtual machines to the node +named `node2`. The migration of each virtual machine will complete before the next migration is +started. ## PARAMETERS From 7f9cd8fe937f17226e9deced326515a6c35b03ed Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Tue, 10 Jan 2023 10:59:29 +0000 Subject: [PATCH 383/965] Update ms.date --- .../failoverclusters/Move-ClusterVirtualMachineRole.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/failoverclusters/Move-ClusterVirtualMachineRole.md b/docset/winserver2022-ps/failoverclusters/Move-ClusterVirtualMachineRole.md index 07ff08ea6e..efa6adf023 100644 --- a/docset/winserver2022-ps/failoverclusters/Move-ClusterVirtualMachineRole.md +++ b/docset/winserver2022-ps/failoverclusters/Move-ClusterVirtualMachineRole.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/22/2022 +ms.date: 01/10/2023 online version: https://learn.microsoft.com/powershell/module/failoverclusters/move-clustervirtualmachinerole?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-ClusterVirtualMachineRole From 48147442c6a63fc77e9bf04844d63007181ab7a6 Mon Sep 17 00:00:00 2001 From: Ned pyle Date: Fri, 20 Jan 2023 16:46:41 -0800 Subject: [PATCH 384/965] Update Get-SmbShare.md Redesigned help to not be misleading about scopename vs cimsession and added a remote server example I am going to do this against get-smbshare, new-smbshare, set-smbshare, remove-smbshare as needed. --- .../winserver2022-ps/smbshare/Get-SmbShare.md | 53 ++++++++----------- 1 file changed, 23 insertions(+), 30 deletions(-) diff --git a/docset/winserver2022-ps/smbshare/Get-SmbShare.md b/docset/winserver2022-ps/smbshare/Get-SmbShare.md index d6ea9a170c..da9ed1b503 100644 --- a/docset/winserver2022-ps/smbshare/Get-SmbShare.md +++ b/docset/winserver2022-ps/smbshare/Get-SmbShare.md @@ -30,32 +30,17 @@ The **Get-SmbShare** cmdlet retrieves objects that represent the Server Message ## EXAMPLES -### Example 1: Get SMB shares +### Example 1: Get SMB shares on a local computer ``` PS C:\>Get-SMBShare Name ScopeName Path Description ---- --------- ---- ----------- ADMIN$ * C:\Windows Remote Admin C$ * C:\ Default share -ClusterStorage$ Contoso-SO C:\ClusterStorage Cluster Shared Volumes Def... D$ * D:\ Default share F$ * F:\ Default share -G$ * G:\ Default share -H$ * H:\ Default share -I$ Contoso-FS I:\ Cluster Default Share -I$ * I:\ Default share IPC$ * Remote IPC -J$ Contoso-FS J:\ Cluster Default Share -J$ * J:\ Default share -K$ * K:\ Default share -L$ * L:\ Default share -M$ * M:\ Default share -N$ * N:\ Default share -VMS1 Contoso-FS I:\VMS -VMS2 Contoso-FS J:\VMS -VMS3 Contoso-SO C:\ClusterStorage\Volume1\VMS -VMS4 Contoso-SO C:\ClusterStorage\Volume2\VMS -VMS5 * D:\VMS +VMS1 * I:\VMS ``` This command retrieves the SMB shares on the computer. @@ -65,21 +50,29 @@ This command retrieves the SMB shares on the computer. PS C:\>Get-SmbShare -Name "VMS1" Name ScopeName Path Description ---- --------- ---- ----------- -VMS1 Contoso-FS I:\VMS +VMS1 * I:\VMS ``` This command retrieves information about the SMB share named 'VMS1' on the local computer. -### Example 3: Display information about the SMB share named 'VMS1' on the local computer in a list +### Example 3: Display information about the SMB shares on a remote computer. ``` -PS C:\>Get-SmbShare -Name "VMS1" | Format-List -Name : VMS1 -ScopeName : Contoso-FS -Path : I:\VMS -Description : +PS C:\>get-smbshare -CimSession "NEDFS1" + +Name ScopeName Path Description PSComputerName +---- --------- ---- ----------- -------------- +ADMIN$ * C:\Windows Remote Admin ae-dfsr-sr-01 +C$ * C:\ Default share ae-dfsr-sr-01 +D$ * D:\ Default share ae-dfsr-sr-01 +E$ * E:\ Default share ae-dfsr-sr-01 +IPC$ * Remote IPC ae-dfsr-sr-01 +IT dept * D:\data\IT dept ae-dfsr-sr-01 +procedures * D:\hr\procedures ae-dfsr-sr-01 +VHD and ISO * D:\data\VHD and ISO ae-dfsr-sr-01 + ``` -This command displays the information about the SMB share named 'VMS1' on the local computer as a formatted list. +This command displays the information about the SMB shares on the remote computer NEDFS1. ### Example 4: Display all properties about a specific SMB share on the local computer in a list ``` @@ -99,7 +92,7 @@ EncryptData : False Name : VMS1 Path : I:\VMS Scoped : True -ScopeName : Contoso-FS +ScopeName : * SecurityDescriptor : O:BAG:DUD:(A;;FA;;;S-1-5-21-219828122-4198910963-4161819395-500)(A;;FA;;;S-1-5-21-219828122-419 8910963-4161819395-1106)(A;;FA;;;S-1-5-21-219828122-4198910963-4161819395-1109) ShadowCopy : False @@ -114,7 +107,7 @@ CimSystemProperties : Microsoft.Management.Infrastructure.CimSystemProperties This command displays all of the information about the SMB share named 'VMS1' on the local computer as a formatted list. -### Example 5: Get shares on the local computer that have scaled out availability +### Example 5: Get shares on the local failover cluster computer that have scale out availability ``` PS C:\>Get-SmbShare | Where-Object -Property AvailabilityType -Eq ScaleOut Name ScopeName Path Description @@ -126,7 +119,7 @@ VMS4 Contoso-SO C:\ClusterStorage\Vo This command retrieves the SMB shares on the computer that have scaled out availability. -### Example 6: Get shares that are connected to a specific server +### Example 6: Get shares that are connected to a local failover cluster file server resource named "Contoso-FS" ``` PS C:\>Get-SmbShare -ScopeName "Contoso-FS" Name ScopeName Path Description @@ -137,7 +130,7 @@ VMS1 Contoso-FS I:\VMS VMS2 Contoso-FS J:\VMS ``` -This command retrieves the SMB shares on the computer that are connected to the SMB server named Contoso-FS. +This command retrieves the SMB shares on the Windows Server failover cluster that are connected to the clustered file server resource named Contoso-FS. ## PARAMETERS @@ -342,7 +335,7 @@ Accept wildcard characters: False ``` ### -ScopeName -Specifies the scope of the share by name. +Specifies the scope of the share by name. For use with Windows Server failover cluster file server resources. ```yaml Type: String[] From 1cb3ca49ebfd36bce79b87a8835f5ee0e93936bb Mon Sep 17 00:00:00 2001 From: Ned pyle Date: Fri, 20 Jan 2023 16:55:36 -0800 Subject: [PATCH 385/965] Update Get-SmbShare.md for scopename and related example --- docset/winserver2022-ps/smbshare/New-SmbShare.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docset/winserver2022-ps/smbshare/New-SmbShare.md b/docset/winserver2022-ps/smbshare/New-SmbShare.md index 9c1c45496e..a3c5a3e9ee 100644 --- a/docset/winserver2022-ps/smbshare/New-SmbShare.md +++ b/docset/winserver2022-ps/smbshare/New-SmbShare.md @@ -39,8 +39,8 @@ To delete a share that was created by this cmdlet, use the `Remove-SmbShare` cmd ```powershell $Parameters = @{ - Name = 'VMSFiles' - Path = 'C:\ClusterStorage\Volume1\VMFiles' + Name = 'Public' + Path = 'D:\Public' FullAccess = 'Contoso\Administrator', 'Contoso\Contoso-HV1$' } New-SmbShare @Parameters @@ -422,7 +422,7 @@ Accept wildcard characters: False ### -ScopeName -Specifies the scope name of the share. +Specifies the scope name of the share. For use with Windows Server failover cluster file server resources. ```yaml Type: String From 09a9330ac2e977adc4327a5416ee3e78e9472c8c Mon Sep 17 00:00:00 2001 From: Ned pyle Date: Fri, 20 Jan 2023 17:00:52 -0800 Subject: [PATCH 386/965] Update Remove-SmbShare.md for scopename and related example --- docset/winserver2022-ps/smbshare/Remove-SmbShare.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docset/winserver2022-ps/smbshare/Remove-SmbShare.md b/docset/winserver2022-ps/smbshare/Remove-SmbShare.md index b5747a442b..9e27520442 100644 --- a/docset/winserver2022-ps/smbshare/Remove-SmbShare.md +++ b/docset/winserver2022-ps/smbshare/Remove-SmbShare.md @@ -50,12 +50,12 @@ Performing operation 'Remove-Share' on Target 'Contoso-FS,Data'. This command deletes the SMB share named Data. -### Example 2: Delete an SMB share without confirmation +### Example 2: Delete a Windows Server failover cluster file server resource SMB share without confirmation ``` PS C:\>Remove-SmbShare -Name "VMFiles" -ScopeName "Contoso-SO" -Force ``` -This command deletes the SMB share named VMFiles without user confirmation. +This command deletes the SMB share named VMFiles on the Contoso-SO file server resource without user confirmation. ## PARAMETERS @@ -153,7 +153,7 @@ Accept wildcard characters: False ``` ### -ScopeName -Specifies an array of the scopes of the SMB share to delete. +Specifies an array of the scopes of the SMB share to delete. For use with Windows Server failover cluster file server resources. ```yaml Type: String[] From 77550aa70d35b802920562f712ccb55accb2ff7d Mon Sep 17 00:00:00 2001 From: Ned pyle Date: Fri, 20 Jan 2023 17:13:13 -0800 Subject: [PATCH 387/965] Update Remove-SmbShare.md for scopename --- docset/winserver2022-ps/smbshare/Set-SmbShare.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/smbshare/Set-SmbShare.md b/docset/winserver2022-ps/smbshare/Set-SmbShare.md index 1b945df3c8..ce2929ed2e 100644 --- a/docset/winserver2022-ps/smbshare/Set-SmbShare.md +++ b/docset/winserver2022-ps/smbshare/Set-SmbShare.md @@ -323,7 +323,7 @@ Accept wildcard characters: False ``` ### -ScopeName -Specifies the scope name of the SMB share. +Specifies the scope name of the SMB share. For use with Windows Server failover cluster file server resources. ```yaml Type: String[] From 9c27e0e51997fb30bb241895e48bf6babe2b7d11 Mon Sep 17 00:00:00 2001 From: Ned pyle Date: Mon, 23 Jan 2023 12:39:50 -0800 Subject: [PATCH 388/965] Update docset/winserver2022-ps/smbshare/Get-SmbShare.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2022-ps/smbshare/Get-SmbShare.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/smbshare/Get-SmbShare.md b/docset/winserver2022-ps/smbshare/Get-SmbShare.md index da9ed1b503..a5f4a87637 100644 --- a/docset/winserver2022-ps/smbshare/Get-SmbShare.md +++ b/docset/winserver2022-ps/smbshare/Get-SmbShare.md @@ -55,7 +55,7 @@ VMS1 * I:\VMS This command retrieves information about the SMB share named 'VMS1' on the local computer. -### Example 3: Display information about the SMB shares on a remote computer. +### Example 3: Display information about the SMB shares on a remote computer ``` PS C:\>get-smbshare -CimSession "NEDFS1" From 168b8389867eec4e54aa1203982a2b08eaa21636 Mon Sep 17 00:00:00 2001 From: Ned pyle Date: Fri, 27 Jan 2023 16:39:00 -0800 Subject: [PATCH 389/965] Clarified support & fixed synopsis for global mapping Fixed the synopsis and updated the supported and unsupported scenarios for use of New-SmbGlobalMapping --- docset/winserver2022-ps/smbshare/New-SmbGlobalMapping.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/smbshare/New-SmbGlobalMapping.md b/docset/winserver2022-ps/smbshare/New-SmbGlobalMapping.md index d48686fbdf..2b4798997c 100644 --- a/docset/winserver2022-ps/smbshare/New-SmbGlobalMapping.md +++ b/docset/winserver2022-ps/smbshare/New-SmbGlobalMapping.md @@ -11,7 +11,7 @@ title: New-SmbGlobalMapping # New-SmbGlobalMapping ## SYNOPSIS -Specifies Server Message Block (SMB) leasing and oplock behaviors. +Creates an SMB global mapping. ## SYNTAX @@ -23,7 +23,7 @@ New-SmbGlobalMapping [[-LocalPath] ] [-RemotePath] -Credential ``` ## DESCRIPTION -The **New-SmbGlobalMapping** cmdlet creates an SMB global mapping on the SMB client to an SMB share. Global mappings allow all users to use the same mapping. Its primary use is for Windows Containers. +The **New-SmbGlobalMapping** cmdlet creates an SMB global mapping on the SMB client to an SMB share. Global mappings allow all users to use the same mapping. Its primary use is for Windows Containers. Global mappings support standalone and failover cluster SMB shares, they do not support DFS Namspace folder shares. ## EXAMPLES From 20760b3e46d800ae67041a19dd93ca7f71660a6d Mon Sep 17 00:00:00 2001 From: Ned pyle Date: Mon, 30 Jan 2023 12:27:58 -0800 Subject: [PATCH 390/965] Update docset/winserver2022-ps/smbshare/New-SmbGlobalMapping.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2022-ps/smbshare/New-SmbGlobalMapping.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/smbshare/New-SmbGlobalMapping.md b/docset/winserver2022-ps/smbshare/New-SmbGlobalMapping.md index 2b4798997c..9f3fdf6993 100644 --- a/docset/winserver2022-ps/smbshare/New-SmbGlobalMapping.md +++ b/docset/winserver2022-ps/smbshare/New-SmbGlobalMapping.md @@ -23,7 +23,7 @@ New-SmbGlobalMapping [[-LocalPath] ] [-RemotePath] -Credential ``` ## DESCRIPTION -The **New-SmbGlobalMapping** cmdlet creates an SMB global mapping on the SMB client to an SMB share. Global mappings allow all users to use the same mapping. Its primary use is for Windows Containers. Global mappings support standalone and failover cluster SMB shares, they do not support DFS Namspace folder shares. +The **New-SmbGlobalMapping** cmdlet creates an SMB global mapping on the SMB client to an SMB share. Global mappings allow all users to use the same mapping. Its primary use is for Windows Containers. Global mappings support standalone and failover cluster SMB shares, they do not support DFS Namespace folder shares. ## EXAMPLES From 096397f77a9b9695570f3560092c828e01c155af Mon Sep 17 00:00:00 2001 From: Michael Lombardi Date: Fri, 3 Feb 2023 12:29:55 -0600 Subject: [PATCH 391/965] (AB-62329) Update GHA/templates This change updates the github actions and templates to align with the label changes and use of project automation. - Fixes AB#62329 --- .github/ISSUE_TEMPLATE/00-bug.yml | 2 +- .github/ISSUE_TEMPLATE/01-article.yml | 2 +- .github/ISSUE_TEMPLATE/02-quality.yml | 2 ++ .github/workflows/quality.issue.yml | 11 ----------- .github/workflows/quality.pr.yml | 5 ++--- 5 files changed, 6 insertions(+), 16 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/00-bug.yml b/.github/ISSUE_TEMPLATE/00-bug.yml index 8aa79a0e42..1399a0e08e 100644 --- a/.github/ISSUE_TEMPLATE/00-bug.yml +++ b/.github/ISSUE_TEMPLATE/00-bug.yml @@ -2,7 +2,7 @@ name: "🛠Report a documentation issue" description: >- Report an issue with current documentation. labels: - - doc-bug + - issue-doc-bug - needs-triage body: - type: markdown diff --git a/.github/ISSUE_TEMPLATE/01-article.yml b/.github/ISSUE_TEMPLATE/01-article.yml index aaa3b8d222..944310c939 100644 --- a/.github/ISSUE_TEMPLATE/01-article.yml +++ b/.github/ISSUE_TEMPLATE/01-article.yml @@ -2,7 +2,7 @@ name: "💡 Suggest a new document or idea" description: >- Suggest a new document or major rewrite of an existing one. labels: - - doc-idea + - issue-doc-idea - needs-triage body: - type: checkboxes diff --git a/.github/ISSUE_TEMPLATE/02-quality.yml b/.github/ISSUE_TEMPLATE/02-quality.yml index 2d2ceadee8..9923e2f6d3 100644 --- a/.github/ISSUE_TEMPLATE/02-quality.yml +++ b/.github/ISSUE_TEMPLATE/02-quality.yml @@ -1,6 +1,8 @@ name: "🦾 Commit to a Quality Contribution" description: >- File an issue to take part in the PowerShell Docs Quality Contributions project. +labels: + - project-quality title: "Quality: " body: - type: markdown diff --git a/.github/workflows/quality.issue.yml b/.github/workflows/quality.issue.yml index 636d3c0413..de956745b2 100644 --- a/.github/workflows/quality.issue.yml +++ b/.github/workflows/quality.issue.yml @@ -19,17 +19,6 @@ jobs: regex: "Quality: Foo" flags: gm - project: - name: Add to project - needs: quality - if: needs.quality.outputs.check == 'true' - runs-on: ubuntu-latest - steps: - - uses: actions/add-to-project@v0.3.0 - with: - project-url: https://github.com/orgs/MicrosoftDocs/projects/15/views/1 - github-token: ${{ secrets.quality_token }} - assign: name: Assign to author needs: quality diff --git a/.github/workflows/quality.pr.yml b/.github/workflows/quality.pr.yml index ea7e33624a..ad1feedba6 100644 --- a/.github/workflows/quality.pr.yml +++ b/.github/workflows/quality.pr.yml @@ -33,7 +33,6 @@ jobs: needs.check.outputs.title == 'true' runs-on: ubuntu-latest steps: - - uses: actions/add-to-project@v0.3.0 + - uses: actions-ecosystem/action-add-labels@v1 with: - project-url: https://github.com/orgs/MicrosoftDocs/projects/15/views/1 - github-token: ${{ secrets.quality_token }} + labels: project-quality From a1b1a32c279674ce79dff0d12565e1906840367e Mon Sep 17 00:00:00 2001 From: Docs Allowlist Management Date: Mon, 13 Mar 2023 09:40:31 +0000 Subject: [PATCH 392/965] Remove ms.technology = windows paired with ms.prod=w10 from all content. replace with ms.prod = w10. --- docset/docfx.json | 1 - 1 file changed, 1 deletion(-) diff --git a/docset/docfx.json b/docset/docfx.json index db6155d8ff..9e769dcb50 100644 --- a/docset/docfx.json +++ b/docset/docfx.json @@ -67,7 +67,6 @@ "ROBOTS": "INDEX, FOLLOW", "breadcrumb_path": "/powershell/windows/bread/toc.json", "ms.prod": "w10", - "ms.technology": "windows", "ms.topic": "managed-reference", "ms.author": "jgerend", "author": "JasonGerend", From 4a1e7e79ba30d7b71376d22372b8f91b97dcb5f8 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Mon, 13 Mar 2023 11:49:25 +0000 Subject: [PATCH 393/965] Added alert tip to New-Cluster --- docset/winserver2022-ps/failoverclusters/New-Cluster.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/failoverclusters/New-Cluster.md b/docset/winserver2022-ps/failoverclusters/New-Cluster.md index da139180d0..0ef8af0462 100644 --- a/docset/winserver2022-ps/failoverclusters/New-Cluster.md +++ b/docset/winserver2022-ps/failoverclusters/New-Cluster.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/22/2022 +ms.date: 03/13/2023 online version: https://learn.microsoft.com/powershell/module/failoverclusters/new-cluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-Cluster @@ -30,6 +30,11 @@ Use Test-Cluster to run the validation tests. The tests will confirm that the ha are compatible with failover clustering. There are multiple types of tests, including Inventory, System Configuration, Network, Storage, and other types of tests. +> [!TIP] +> You should run the `New-Cluster` command from a cluster node or client that is the same version as +> the cluster nodes. Running `New-Cluster` from a lower-level (down-level) client machine may +> require `Update-ClusterFunctionalLevel` to be run after `New-Cluster` has been run. + ## EXAMPLES ### Example 1 From f0e263ccd9f091e3b49077ca2ecaa7458cb23be5 Mon Sep 17 00:00:00 2001 From: Robin Harwood <19212983+robinharwood@users.noreply.github.com> Date: Wed, 15 Mar 2023 10:22:34 +0000 Subject: [PATCH 394/965] Applied review suggestion Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2022-ps/failoverclusters/New-Cluster.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/failoverclusters/New-Cluster.md b/docset/winserver2022-ps/failoverclusters/New-Cluster.md index 0ef8af0462..98a6c68fd7 100644 --- a/docset/winserver2022-ps/failoverclusters/New-Cluster.md +++ b/docset/winserver2022-ps/failoverclusters/New-Cluster.md @@ -32,7 +32,7 @@ System Configuration, Network, Storage, and other types of tests. > [!TIP] > You should run the `New-Cluster` command from a cluster node or client that is the same version as -> the cluster nodes. Running `New-Cluster` from a lower-level (down-level) client machine may +> the cluster nodes. Running `New-Cluster` from a lower-level (down-level) client computer may > require `Update-ClusterFunctionalLevel` to be run after `New-Cluster` has been run. ## EXAMPLES From 4c76a07b2247b3bb6e4227c12e5dda1eb3e8459d Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Wed, 8 Feb 2023 13:55:23 +0000 Subject: [PATCH 395/965] Added new example to Get-Cluster --- .../failoverclusters/Get-Cluster.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/failoverclusters/Get-Cluster.md b/docset/winserver2022-ps/failoverclusters/Get-Cluster.md index a851010ffb..1474bd1952 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-Cluster.md +++ b/docset/winserver2022-ps/failoverclusters/Get-Cluster.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 11/22/2022 +ms.date: 02/08/2023 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-cluster?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-Cluster @@ -89,6 +89,18 @@ local cluster. - **QuarantineDuration**: This setting, set to 7200 seconds or 2 hours by default, controls how long a host will remain quarantined. +### Example 7 + +```powershell +(Get-Cluster).MaximumParallelMigrations = 2 +``` + +This example sets the cluster property MaximumParallelMigrations to a value of `2`, limiting the +number of live migrations that a cluster node can participate in. Both existing and new cluster +nodes inherit this value of `2` because it's a cluster property. Setting the cluster +property overrides any values configured using the [Set-VMHost](../hyper-v/Set-VMHost.md) +command. + ## PARAMETERS ### -Domain From 7a7470bc448eee875091354edaec0222ed143e22 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Wed, 8 Feb 2023 14:12:29 +0000 Subject: [PATCH 396/965] Add clarity to MaximumVirtualMachineMigrations parameter --- docset/winserver2022-ps/hyper-v/Set-VMHost.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/hyper-v/Set-VMHost.md b/docset/winserver2022-ps/hyper-v/Set-VMHost.md index af93a8d708..8879cb4707 100644 --- a/docset/winserver2022-ps/hyper-v/Set-VMHost.md +++ b/docset/winserver2022-ps/hyper-v/Set-VMHost.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V -ms.date: 12/20/2016 +ms.date: 02/08/2023 online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmhost?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-VMHost @@ -281,7 +281,10 @@ Accept wildcard characters: False ``` ### -MaximumVirtualMachineMigrations -Specifies the maximum number of live migrations that can be performed at the same time on the Hyper-V host. +Specifies the maximum number of live migrations that can be performed at the same time on the +Hyper-V host. If your host is part a Failover Cluster, the cluster property takes precedence any +values set by the **MaximumVirtualMachineMigrations** parameter. To check the cluster property, +you can run the PowerShell command `(Get-Cluster).MaximumParallelMigrations`. ```yaml Type: UInt32 From 7008927e03227d6f3b0700a4bd908199885ee781 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Tue, 14 Feb 2023 11:43:38 +0000 Subject: [PATCH 397/965] Updated Get-Cluster example --- docset/winserver2022-ps/failoverclusters/Get-Cluster.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docset/winserver2022-ps/failoverclusters/Get-Cluster.md b/docset/winserver2022-ps/failoverclusters/Get-Cluster.md index 1474bd1952..cfbf281f36 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-Cluster.md +++ b/docset/winserver2022-ps/failoverclusters/Get-Cluster.md @@ -95,6 +95,11 @@ local cluster. (Get-Cluster).MaximumParallelMigrations = 2 ``` +Beginning with the 2022-09 Cumulative Update, you can now configure the number of parallel live +migrations within a cluster. For more information, see +[KB5017381](https://support.microsoft.com/help/5017381) for Windows Server 2022 and +[KB5017382](https://support.microsoft.com/help/5017382) for Azure Stack HCI, version 21H2. + This example sets the cluster property MaximumParallelMigrations to a value of `2`, limiting the number of live migrations that a cluster node can participate in. Both existing and new cluster nodes inherit this value of `2` because it's a cluster property. Setting the cluster From 08d59640b292c1ee0ded06438a9f8bb879ffb3e3 Mon Sep 17 00:00:00 2001 From: Denise Vangel-MSFT Date: Tue, 21 Mar 2023 09:00:15 -0700 Subject: [PATCH 398/965] Update Set-MpPreference.md --- .../defender/Set-MpPreference.md | 20 ++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/defender/Set-MpPreference.md b/docset/winserver2022-ps/defender/Set-MpPreference.md index bedccf9973..f0d79583f0 100644 --- a/docset/winserver2022-ps/defender/Set-MpPreference.md +++ b/docset/winserver2022-ps/defender/Set-MpPreference.md @@ -2,7 +2,7 @@ description: The Set-MpPreference cmdlet configures preferences for Windows Defender scans and updates. external help file: MSFT_MpPreference.cdxml-help.xml Module Name: Defender -ms.date: 01/03/2023 +ms.date: 03/21/2023 online version: https://learn.microsoft.com/powershell/module/defender/set-mppreference?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-MpPreference @@ -46,6 +46,7 @@ Set-MpPreference [-ExclusionPath ] [-ExclusionExtension ] [- [-LowThreatDefaultAction ] [-ModerateThreatDefaultAction ] [-HighThreatDefaultAction ] [-SevereThreatDefaultAction ] [-Force] [-DisableBlockAtFirstSeen ] [-PUAProtection ] + [-ThrottleLimit ] [-AsJob] [] [-DisableGradualRelease ] [-DefinitionUpdatesChannel ] [-EngineUpdatesChannel ] [-PlatformUpdatesChannel ][-CloudBlockLevel ][-ServiceHealthReportInterval ] [-CloudBlockLevel ] [-CloudExtendedTimeout ] [-EnableNetworkProtection ] [-EnableControlledFolderAccess ] [-AttackSurfaceReductionOnlyExclusions ] [-ControlledFolderAccessAllowedApplications ] @@ -1440,6 +1441,23 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -ServiceHealthReportInterval +This policy setting configures the time interval (in minutes) for the service health reports to be sent from endpoints. + +If you do not configure this setting, the default value will be applied. The default value is set at 60 minutes (one hour). +If you configure this setting to 0, no service health reports will be sent. +The maximum value allowed to be set is 14400 minutes (ten days). + +```yaml +Type: UInt32 +Aliases: shri +Accepted values: 0-14400 +Position: Named +Default value: 60 +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -SevereThreatDefaultAction Specifies which automatic remediation action to take for a severe level threat. The acceptable values for this parameter are: From c3b591bfc4263f5bb2dab9d771e3ffbb3e509ef3 Mon Sep 17 00:00:00 2001 From: JosephPilov-MSFT <23519517+PiJoCoder@users.noreply.github.com> Date: Tue, 21 Mar 2023 11:12:53 -0500 Subject: [PATCH 399/965] Learn Editor: Update New-ScheduledTaskPrincipal.md --- .../scheduledtasks/New-ScheduledTaskPrincipal.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/scheduledtasks/New-ScheduledTaskPrincipal.md b/docset/winserver2022-ps/scheduledtasks/New-ScheduledTaskPrincipal.md index cca715d5c4..77bb366d96 100644 --- a/docset/winserver2022-ps/scheduledtasks/New-ScheduledTaskPrincipal.md +++ b/docset/winserver2022-ps/scheduledtasks/New-ScheduledTaskPrincipal.md @@ -140,10 +140,12 @@ The acceptable values for this parameter are: - None - Password - S4U -- Interactive +- - Interactive - Group - ServiceAccount - InteractiveOrPassword + +For more information on LogonType values, see [Principal.LogonType](/windows/win32/taskschd/principal-logontype#property-value) ```yaml Type: LogonTypeEnum @@ -272,3 +274,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Register-ScheduledTask](./Register-ScheduledTask.md) + From 0ec1862f1287574976bd6230a0a57b79c3fabfd7 Mon Sep 17 00:00:00 2001 From: JosephPilov-MSFT <23519517+PiJoCoder@users.noreply.github.com> Date: Tue, 21 Mar 2023 11:13:25 -0500 Subject: [PATCH 400/965] Learn Editor: Update New-ScheduledTaskPrincipal.md From 770c3380dae755d054c9ce2a1a722be744a5fcdb Mon Sep 17 00:00:00 2001 From: Michael Lombardi Date: Tue, 21 Mar 2023 12:38:05 -0500 Subject: [PATCH 401/965] (AB-62321) Update outputs for GHA This change updates the GitHub Actions workflows to use the environment file instead of the `::set-output` command. This is required by May 31, 2023, as [announced by GitHub][01]. [01]: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ --- .github/workflows/quality.pr.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/quality.pr.yml b/.github/workflows/quality.pr.yml index ad1feedba6..072672cdc8 100644 --- a/.github/workflows/quality.pr.yml +++ b/.github/workflows/quality.pr.yml @@ -24,7 +24,7 @@ jobs: run: | $Check = "${{ contains(github.event.pull_request.title, 'Quality:') }}" "Check: $Check" - "::set-output name=check::$Check" + "check=$Check" >> $env:GITHUB_OUTPUT project: name: Add pull request to project From 2fdb1b9495605a7624fb240fb5e0f06eadaad5b4 Mon Sep 17 00:00:00 2001 From: Denise Vangel-MSFT Date: Wed, 22 Mar 2023 11:28:33 -0700 Subject: [PATCH 402/965] Update Set-MpPreference.md --- docset/winserver2022-ps/defender/Set-MpPreference.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/defender/Set-MpPreference.md b/docset/winserver2022-ps/defender/Set-MpPreference.md index f0d79583f0..ebc82cdc85 100644 --- a/docset/winserver2022-ps/defender/Set-MpPreference.md +++ b/docset/winserver2022-ps/defender/Set-MpPreference.md @@ -2,7 +2,7 @@ description: The Set-MpPreference cmdlet configures preferences for Windows Defender scans and updates. external help file: MSFT_MpPreference.cdxml-help.xml Module Name: Defender -ms.date: 03/21/2023 +ms.date: 03/22/2023 online version: https://learn.microsoft.com/powershell/module/defender/set-mppreference?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-MpPreference @@ -1442,7 +1442,7 @@ Accept wildcard characters: False ``` ### -ServiceHealthReportInterval -This policy setting configures the time interval (in minutes) for the service health reports to be sent from endpoints. +This policy setting configures the time interval (in minutes) for the service health reports to be sent from endpoints. These are for Microsoft Defender Antivirus events 1150 and 1151. For more information, see [Microsoft Defender Antivirus event IDs](/microsoft-365/security/defender-endpoint/troubleshoot-microsoft-defender-antivirus#microsoft-defender-antivirus-event-ids). If you do not configure this setting, the default value will be applied. The default value is set at 60 minutes (one hour). If you configure this setting to 0, no service health reports will be sent. From 6b6dc42b9729d717f61d735deee28ff9ffbed85b Mon Sep 17 00:00:00 2001 From: Denise Vangel-MSFT Date: Wed, 22 Mar 2023 11:31:18 -0700 Subject: [PATCH 403/965] Update Set-MpPreference.md --- docset/winserver2019-ps/defender/Set-MpPreference.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2019-ps/defender/Set-MpPreference.md b/docset/winserver2019-ps/defender/Set-MpPreference.md index 7c99cf3d20..4c5ccfe3cb 100644 --- a/docset/winserver2019-ps/defender/Set-MpPreference.md +++ b/docset/winserver2019-ps/defender/Set-MpPreference.md @@ -2,7 +2,7 @@ description: Use this article to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: MSFT_MpPreference.cdxml-help.xml Module Name: Defender -ms.date: 09/20/2022 +ms.date: 03/22/2023 online version: https://learn.microsoft.com/powershell/module/defender/set-mppreference?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-MpPreference @@ -1024,7 +1024,7 @@ Accept wildcard characters: False ``` ### -ServiceHealthReportInterval -This policy setting configures the time interval (in minutes) for the service health reports to be sent from endpoints. +This policy setting configures the time interval (in minutes) for the service health reports to be sent from endpoints. These are for Microsoft Defender Antivirus events 1150 and 1151. For more information, see [Microsoft Defender Antivirus event IDs](/microsoft-365/security/defender-endpoint/troubleshoot-microsoft-defender-antivirus#microsoft-defender-antivirus-event-ids). If you don’t configure this setting, the default value will be applied. The default value is set at 60 minutes (one hour). If you configure this setting to 0, no service health reports will be sent. From 944db4361953c63810a6ff29f9a81e58197b500a Mon Sep 17 00:00:00 2001 From: JosephPilov-MSFT <23519517+PiJoCoder@users.noreply.github.com> Date: Sat, 25 Mar 2023 12:32:37 -0500 Subject: [PATCH 404/965] Update docset/winserver2022-ps/scheduledtasks/New-ScheduledTaskPrincipal.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- .../scheduledtasks/New-ScheduledTaskPrincipal.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/scheduledtasks/New-ScheduledTaskPrincipal.md b/docset/winserver2022-ps/scheduledtasks/New-ScheduledTaskPrincipal.md index 77bb366d96..9e37ee0348 100644 --- a/docset/winserver2022-ps/scheduledtasks/New-ScheduledTaskPrincipal.md +++ b/docset/winserver2022-ps/scheduledtasks/New-ScheduledTaskPrincipal.md @@ -145,7 +145,7 @@ The acceptable values for this parameter are: - ServiceAccount - InteractiveOrPassword -For more information on LogonType values, see [Principal.LogonType](/windows/win32/taskschd/principal-logontype#property-value) +For more information about LogonType values, see [Principal.LogonType](/windows/win32/taskschd/principal-logontype#property-value) ```yaml Type: LogonTypeEnum From 89694e73c107044fcd560586eebf57b10ec7a5f6 Mon Sep 17 00:00:00 2001 From: JosephPilov-MSFT <23519517+PiJoCoder@users.noreply.github.com> Date: Sat, 25 Mar 2023 12:33:02 -0500 Subject: [PATCH 405/965] Update docset/winserver2022-ps/scheduledtasks/New-ScheduledTaskPrincipal.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- .../scheduledtasks/New-ScheduledTaskPrincipal.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/scheduledtasks/New-ScheduledTaskPrincipal.md b/docset/winserver2022-ps/scheduledtasks/New-ScheduledTaskPrincipal.md index 9e37ee0348..0606602fab 100644 --- a/docset/winserver2022-ps/scheduledtasks/New-ScheduledTaskPrincipal.md +++ b/docset/winserver2022-ps/scheduledtasks/New-ScheduledTaskPrincipal.md @@ -140,7 +140,7 @@ The acceptable values for this parameter are: - None - Password - S4U -- - Interactive +- Interactive - Group - ServiceAccount - InteractiveOrPassword From d2825f825d2a2cdb546cf4ce75dc9503f44c4a4e Mon Sep 17 00:00:00 2001 From: Meghan Stewart <33289333+mestew@users.noreply.github.com> Date: Thu, 30 Mar 2023 14:04:13 -0700 Subject: [PATCH 406/965] Default processingtype for get-windowsupdatelog is XML --- docset/winserver2016-ps/windowsupdate/Get-WindowsUpdateLog.md | 2 +- docset/winserver2019-ps/windowsupdate/Get-WindowsUpdateLog.md | 2 +- docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docset/winserver2016-ps/windowsupdate/Get-WindowsUpdateLog.md b/docset/winserver2016-ps/windowsupdate/Get-WindowsUpdateLog.md index 5f97bb34b9..8e3bb19471 100644 --- a/docset/winserver2016-ps/windowsupdate/Get-WindowsUpdateLog.md +++ b/docset/winserver2016-ps/windowsupdate/Get-WindowsUpdateLog.md @@ -151,7 +151,7 @@ The acceptable values for this parameter are: - CSV (comma-separated values) - XML -By default, the value is CSV. +By default, the value is XML. The temporary files are in $env:TEMP\WindowsUpdateLog. ```yaml diff --git a/docset/winserver2019-ps/windowsupdate/Get-WindowsUpdateLog.md b/docset/winserver2019-ps/windowsupdate/Get-WindowsUpdateLog.md index 4fd192bc4b..1f8c425539 100644 --- a/docset/winserver2019-ps/windowsupdate/Get-WindowsUpdateLog.md +++ b/docset/winserver2019-ps/windowsupdate/Get-WindowsUpdateLog.md @@ -151,7 +151,7 @@ The acceptable values for this parameter are: - CSV (comma-separated values) - XML -By default, the value is CSV. +By default, the value is XML. The temporary files are in $env:TEMP\WindowsUpdateLog. ```yaml diff --git a/docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md b/docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md index 940475fdaf..2f9e8132ec 100644 --- a/docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md +++ b/docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md @@ -151,7 +151,7 @@ The acceptable values for this parameter are: - CSV (comma-separated values) - XML -By default, the value is CSV. +By default, the value is XML. The temporary files are in $env:TEMP\WindowsUpdateLog. ```yaml From 901152d1a68488dd78b17c7d58951c443cd71f0c Mon Sep 17 00:00:00 2001 From: Sa Yang <31430559+yangsa666@users.noreply.github.com> Date: Tue, 4 Apr 2023 11:12:25 +0800 Subject: [PATCH 407/965] Update Set-MpPreference.md According to the Syntax [-ScanScheduleTime ] The original example `PS C:\> Set-MpPreference -SignatureScheduleTime 120` should be a mistake. The correct example should be `PS C:\> Set-MpPreference -SignatureScheduleTime 02:00:00` --- docset/winserver2022-ps/defender/Set-MpPreference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/defender/Set-MpPreference.md b/docset/winserver2022-ps/defender/Set-MpPreference.md index ebc82cdc85..793842a17b 100644 --- a/docset/winserver2022-ps/defender/Set-MpPreference.md +++ b/docset/winserver2022-ps/defender/Set-MpPreference.md @@ -93,7 +93,7 @@ This command configures preferences to check for definition updates every day. ### Example 2: Schedule a time of day to check for definition updates ``` -PS C:\> Set-MpPreference -SignatureScheduleTime 120 +PS C:\> Set-MpPreference -SignatureScheduleTime 02:00:00 ``` This command configures preferences to check for definition updates 120 minutes after midnight on days when it's scheduled to check. From 73b1cff627ec25fb23332781a8193ed914295030 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Fri, 14 Apr 2023 19:44:14 +0530 Subject: [PATCH 408/965] Update Set-MpPreference.md Added AllowSwitchToAsyncInspection parameter fixes https://github.com/MicrosoftDocs/windows-powershell-docs/issues/3252 --- .../defender/Set-MpPreference.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/docset/winserver2022-ps/defender/Set-MpPreference.md b/docset/winserver2022-ps/defender/Set-MpPreference.md index ebc82cdc85..59c419e3ce 100644 --- a/docset/winserver2022-ps/defender/Set-MpPreference.md +++ b/docset/winserver2022-ps/defender/Set-MpPreference.md @@ -145,6 +145,24 @@ Accept pipeline input: False Accept wildcard characters: False ``` + +### -AllowSwitchToAsyncInspection + +Specifies whether to enable a performance optimization that allows synchronously inspected network flows to switch to async inspection once they've been checked and validated. + +```yaml +Type: Boolean +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: Enabled +Accept pipeline input: False +Accept wildcard characters: False +``` + + ### -AsJob Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. From 3b7fbec08d84c5c780245d7e2229056999fca4b9 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Fri, 14 Apr 2023 19:46:08 +0530 Subject: [PATCH 409/965] Update Set-MpPreference.md --- docset/winserver2022-ps/defender/Set-MpPreference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/defender/Set-MpPreference.md b/docset/winserver2022-ps/defender/Set-MpPreference.md index 59c419e3ce..85a0dc8c4d 100644 --- a/docset/winserver2022-ps/defender/Set-MpPreference.md +++ b/docset/winserver2022-ps/defender/Set-MpPreference.md @@ -40,7 +40,7 @@ Set-MpPreference [-ExclusionPath ] [-ExclusionExtension ] [- [-DisableCatchupFullScan ] [-DisableCatchupQuickScan ] [-DisableEmailScanning ] [-DisableRemovableDriveScanning ] [-DisableRestorePoint ] [-DisableScanningMappedNetworkDrivesForFullScan ] [-DisableScanningNetworkFiles ] - [-DisableIOAVProtection ] + [-DisableIOAVProtection ] [-AllowSwitchToAsyncInspection ] [-UILockdown ] [-ThreatIDDefaultAction_Ids ] [-ThreatIDDefaultAction_Actions ] [-UnknownThreatDefaultAction ] [-LowThreatDefaultAction ] [-ModerateThreatDefaultAction ] From 88416fc5e9cfe688dbeb3c6ae1aa6ad1883b5d64 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Fri, 14 Apr 2023 19:46:13 +0530 Subject: [PATCH 410/965] Update Set-MpPreference.md --- .../defender/Set-MpPreference.md | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/defender/Set-MpPreference.md b/docset/winserver2019-ps/defender/Set-MpPreference.md index 4c5ccfe3cb..277a3efca6 100644 --- a/docset/winserver2019-ps/defender/Set-MpPreference.md +++ b/docset/winserver2019-ps/defender/Set-MpPreference.md @@ -24,7 +24,7 @@ Set-MpPreference [-ExclusionPath ] [-ExclusionExtension ] [- [-CheckForSignaturesBeforeRunningScan ] [-ScanPurgeItemsAfterDelay ] [-ScanOnlyIfIdleEnabled ] [-ScanParameters ] [-ScanScheduleDay ] [-ScanScheduleQuickScanTime ] [-ScanScheduleOffset ] [-SignatureFirstAuGracePeriod ] - [-ScanScheduleTime ] + [-ScanScheduleTime ] [-AllowSwitchToAsyncInspection ] [-SignatureAuGracePeriod ] [-SignatureDefinitionUpdateFileSharesSources ] [-SignatureDisableUpdateOnStartupWithoutEngine ] [-SignatureFallbackOrder ] [-SignatureScheduleDay ] [-SignatureScheduleTime ] [-SignatureUpdateCatchupInterval ] @@ -85,6 +85,23 @@ This command configures preferences to check for definition updates 120 minutes ## PARAMETERS +### -AllowSwitchToAsyncInspection + +Specifies whether to enable a performance optimization that allows synchronously inspected network flows to switch to async inspection once they've been checked and validated. + +```yaml +Type: Boolean +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: Enabled +Accept pipeline input: False +Accept wildcard characters: False +``` + + ### -AsJob Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. From e64280ed27cc483c48c356ba651fdf905c1cc5c5 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Fri, 14 Apr 2023 19:46:23 +0530 Subject: [PATCH 411/965] Update Set-MpPreference.md --- .../defender/Set-MpPreference.md | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/docset/winserver2016-ps/defender/Set-MpPreference.md b/docset/winserver2016-ps/defender/Set-MpPreference.md index 0f158508da..5d60ca8509 100644 --- a/docset/winserver2016-ps/defender/Set-MpPreference.md +++ b/docset/winserver2016-ps/defender/Set-MpPreference.md @@ -35,7 +35,7 @@ Set-MpPreference [-ExclusionPath ] [-ExclusionExtension ] [- [-DisableCatchupFullScan ] [-DisableCatchupQuickScan ] [-DisableCpuThrottleOnIdleScans ] [-DisableEmailScanning ] [-DisableRemovableDriveScanning ] [-DisableRestorePoint ] [-DisableScanningMappedNetworkDrivesForFullScan ] [-DisableScanningNetworkFiles ] - [-UILockdown ] [-ThreatIDDefaultAction_Ids ] + [-UILockdown ] [-ThreatIDDefaultAction_Ids ] [-AllowSwitchToAsyncInspection ] [-ThreatIDDefaultAction_Actions ] [-UnknownThreatDefaultAction ] [-LowThreatDefaultAction ] [-ModerateThreatDefaultAction ] [-HighThreatDefaultAction ] [-SevereThreatDefaultAction ] [-Force] @@ -102,6 +102,23 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -AllowSwitchToAsyncInspection + +Specifies whether to enable a performance optimization that allows synchronously inspected network flows to switch to async inspection once they've been checked and validated. + +```yaml +Type: Boolean +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: Enabled +Accept pipeline input: False +Accept wildcard characters: False +``` + + ### -CheckForSignaturesBeforeRunningScan Indicates whether to check for new virus and spyware definitions before Windows Defender runs a scan. If you specify a value of $True, Windows Defender checks for new definitions. From 448fd4fc37c37a9cffbf9f392bf6ef6194e6ade4 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Fri, 14 Apr 2023 19:51:23 +0530 Subject: [PATCH 412/965] Update Set-MpPreference.md made changes to -CheckForSignaturesBeforeRunningScan as per group policy description Fixes https://github.com/MicrosoftDocs/windows-powershell-docs/issues/3251 --- docset/winserver2022-ps/defender/Set-MpPreference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/defender/Set-MpPreference.md b/docset/winserver2022-ps/defender/Set-MpPreference.md index ebc82cdc85..2656182bd5 100644 --- a/docset/winserver2022-ps/defender/Set-MpPreference.md +++ b/docset/winserver2022-ps/defender/Set-MpPreference.md @@ -220,7 +220,7 @@ Accept wildcard characters: False Indicates whether to check for new virus and spyware definitions before Windows Defender runs a scan. If you specify a value of $True, Windows Defender checks for new definitions. If you specify $False or don't specify a value, the scan begins with existing definitions. -This value applies to scheduled scans and to scans that you start from the command line, but it doesn't affect scans that you start from the user interface. +This setting applies to scheduled scans, but it has no effect on scans initiated manually from the user interface or to the ones started from the command line using "mpcmdrun -Scan" ```yaml Type: Boolean From 1b35e81f6e54a39ca16a105b3b5508bfb1a322cf Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Fri, 14 Apr 2023 19:52:33 +0530 Subject: [PATCH 413/965] Update Set-MpPreference.md --- docset/winserver2019-ps/defender/Set-MpPreference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/defender/Set-MpPreference.md b/docset/winserver2019-ps/defender/Set-MpPreference.md index 4c5ccfe3cb..3e47d7bbec 100644 --- a/docset/winserver2019-ps/defender/Set-MpPreference.md +++ b/docset/winserver2019-ps/defender/Set-MpPreference.md @@ -114,7 +114,7 @@ Accept wildcard characters: False Indicates whether to check for new virus and spyware definitions before Windows Defender runs a scan. If you specify a value of `$True`, Windows Defender checks for new definitions. If you specify `$False` or don’t specify a value, the scan begins with existing definitions. -This value applies to scheduled scans, but it doesn’t affect scans that you start from the user interface or to scans that you start from the command line. +This setting applies to scheduled scans, but it has no effect on scans initiated manually from the user interface or to the ones started from the command line using "mpcmdrun -Scan" ```yaml Type: Boolean From 7582c115bca4ce95ecb3838bbe44352a4f3a3148 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Fri, 14 Apr 2023 19:52:35 +0530 Subject: [PATCH 414/965] Update Set-MpPreference.md --- docset/winserver2016-ps/defender/Set-MpPreference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2016-ps/defender/Set-MpPreference.md b/docset/winserver2016-ps/defender/Set-MpPreference.md index 0f158508da..76f27dd2ab 100644 --- a/docset/winserver2016-ps/defender/Set-MpPreference.md +++ b/docset/winserver2016-ps/defender/Set-MpPreference.md @@ -106,7 +106,7 @@ Accept wildcard characters: False Indicates whether to check for new virus and spyware definitions before Windows Defender runs a scan. If you specify a value of $True, Windows Defender checks for new definitions. If you specify $False or don't specify a value, the scan begins with existing definitions. -This value applies to scheduled scans and to scans that you start from the command line, but it doesn't affect scans that you start from the user interface. +This setting applies to scheduled scans, but it has no effect on scans initiated manually from the user interface or to the ones started from the command line using "mpcmdrun -Scan" ```yaml Type: Boolean From f4a64864e5eb3071ad517485835df4285c010b0c Mon Sep 17 00:00:00 2001 From: Jay Simmons Date: Sat, 15 Apr 2023 09:33:59 -0700 Subject: [PATCH 415/965] Create PowerShell documentation for new Windows LAPS feature --- .../laps/Find-LapsADExtendedRights.md | 153 +++++++ .../laps/Get-LapsAADPassword.md | 240 ++++++++++ .../laps/Get-LapsADPassword.md | 428 ++++++++++++++++++ .../laps/Get-LapsDiagnostics.md | 155 +++++++ .../laps/Invoke-LapsPolicyProcessing.md | 65 +++ docset/winserver2022-ps/laps/LAPS.md | 79 ++++ .../laps/Reset-LapsPassword.md | 73 +++ .../laps/Set-LapsADAuditing.md | 209 +++++++++ .../laps/Set-LapsADComputerSelfPermission.md | 171 +++++++ .../laps/Set-LapsADPasswordExpirationTime.md | 187 ++++++++ .../laps/Set-LapsADReadPasswordPermission.md | 234 ++++++++++ .../laps/Set-LapsADResetPasswordPermission.md | 234 ++++++++++ .../laps/Update-LapsADSchema.md | 119 +++++ 13 files changed, 2347 insertions(+) create mode 100644 docset/winserver2022-ps/laps/Find-LapsADExtendedRights.md create mode 100644 docset/winserver2022-ps/laps/Get-LapsAADPassword.md create mode 100644 docset/winserver2022-ps/laps/Get-LapsADPassword.md create mode 100644 docset/winserver2022-ps/laps/Get-LapsDiagnostics.md create mode 100644 docset/winserver2022-ps/laps/Invoke-LapsPolicyProcessing.md create mode 100644 docset/winserver2022-ps/laps/LAPS.md create mode 100644 docset/winserver2022-ps/laps/Reset-LapsPassword.md create mode 100644 docset/winserver2022-ps/laps/Set-LapsADAuditing.md create mode 100644 docset/winserver2022-ps/laps/Set-LapsADComputerSelfPermission.md create mode 100644 docset/winserver2022-ps/laps/Set-LapsADPasswordExpirationTime.md create mode 100644 docset/winserver2022-ps/laps/Set-LapsADReadPasswordPermission.md create mode 100644 docset/winserver2022-ps/laps/Set-LapsADResetPasswordPermission.md create mode 100644 docset/winserver2022-ps/laps/Update-LapsADSchema.md diff --git a/docset/winserver2022-ps/laps/Find-LapsADExtendedRights.md b/docset/winserver2022-ps/laps/Find-LapsADExtendedRights.md new file mode 100644 index 0000000000..691282afe9 --- /dev/null +++ b/docset/winserver2022-ps/laps/Find-LapsADExtendedRights.md @@ -0,0 +1,153 @@ +--- +description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. +external help file: lapspsh.dll-Help.xml +Module Name: LAPS +online version: https://learn.microsoft.com/powershell/module/laps/find-lapsadextendedrights?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +Locale: en-US +ms.date: 04/10/2023 +title: Find-LapsADExtendedRights +--- + +# Find-LapsADExtendedRights + +## SYNOPSIS + +Queries Active Directory to find principals that have been granted permission to read Windows Local +Administrator Password Solution (LAPS) password attributes. + +## SYNTAX + +```powershell +Find-LapsADExtendedRights [-Credential ] -Identity [-Domain ] + [-DomainController ] [-IncludeComputers] [] +``` + +## DESCRIPTION + +The **Find-LapsADExtendedRights** cmdlet is used by administrators to query which principals have +been granted permissions to read the LAPS password attributes. + +## EXAMPLES + +### Example 1 + +```powershell +PS C:\> Find-LapsADExtendedRights -Identity LapsTestOU + +ObjectDN ExtendedRightHolders +-------- -------------------- +OU=LapsTestOU,DC=laps,DC=com {NT AUTHORITY\SYSTEM, LAPS\Domain Admins, LAPS\LapsAdmins} +``` + +This example shows how to run the cmdlet. + +## PARAMETERS + +### -Credential + +Specifies the credentials to use when updating Active Directory. If not specified the current user's +credentials will be used. + +```yaml +Type: System.Management.Automation.PSCredential +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Domain + +Specifies which Active Directory domain to connect to. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DomainController + +Specifies which Active Directory domain controller to connect to. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Identity + +Specifies which Active Directory Organizational Unit to query. + +This parameter accepts several different name formats which influence the criteria used in the +resultant Active Directory search. The supported name formats are as follows: + +distinguishedName (begins with a "CN=") +name (for all other inputs) + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName, ByValue) +Accept wildcard characters: False +``` + +### -IncludeComputers + +Specify this parameter to also check computer objects for the permissions. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String[] + +## OUTPUTS + +### System.Object + +## NOTES + +## RELATED LINKS + +[Windows LAPS Overview](https://go.microsoft.com/fwlink/?linkid=2233901) diff --git a/docset/winserver2022-ps/laps/Get-LapsAADPassword.md b/docset/winserver2022-ps/laps/Get-LapsAADPassword.md new file mode 100644 index 0000000000..88526d1ff6 --- /dev/null +++ b/docset/winserver2022-ps/laps/Get-LapsAADPassword.md @@ -0,0 +1,240 @@ +--- +description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. +external help file: LAPS-help.xml +Module Name: LAPS +online version: https://learn.microsoft.com/powershell/module/laps/get-lapsaadpassword?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +Locale: en-US +ms.date: 04/10/2023 +title: Get-LapsAADPassword +--- + +# Get-LapsAADPassword + +## SYNOPSIS + +Queries Azure Active Directory for the Windows Local Administrator Password Solution (LAPS) +credentials on a specified Azure AD device. + +## SYNTAX + +```powershell +Get-LapsAADPassword -DeviceIds [-IncludePasswords] [-IncludeHistory] [-AsPlainText] + [] +``` + +## DESCRIPTION + +The **Get-LapsAADPassword** cmdlet allows administrators to retrieve LAPS passwords and password +history for an Azure Active Directory-joined device. This is implemented by sending queries to +Microsoft Graph over the deviceLocalCredentials collection. + +The **Get-LapsAADPassword** cmdlet supports two basic modes when querying LAPS passwords: + +The first mode queries for non-sensitive metadata, for example time the password was backed up to +Azure and the expected expiration time of a password. This mode requires that the client be granted +the Microsoft Graph `DeviceLocalCredential.ReadBasic.All` permission. + +The second mode queries for all password information including both the metadata information +described above and the clear-text form of the password(s). This mode requires that the client be +granted the Microsoft Graph `DeviceLocalCredential.Read.All` permission. + +The '-DeviceIds' parameter accepts either device names or device IDs, but the underlying Microsoft +Graph queries only supports querying by device ID. To support this the cmdlet will map a device name +input to its corresponding device ID by issuing a separate Microsoft Graph query. This extra query +requires the `Device.Read.All` permission. If the target is a Microsoft Managed Desktop device, the +`DeviceManagementManagedDevices.Read.All` permission may also be required. + +> [!TIP] +> If there are multiple devices in the tenant with the same name, the cmdlet will fail. The +> workaround is to input the device ID directly. + +> [!IMPORTANT] +> The **Get-LapsAADPassword** cmdlet is implemented as a wrapper around the Microsoft Graph +> PowerShell library which must be manually installed on the device before **Get-LapsAADPassword** +> can work. Additional configuration steps are required in your Azure Active Directory tenant to +> enable authentication to Microsoft Graph and to grant the necessary Microsoft Graph permissions as +> described above. See the following topic for more information: +> [Get started with Windows LAPS and Azure Active Directory](https://go.microsoft.com/fwlink/?linkid=2233704) + +The -Verbose parameter may be used to get additional information about the cmdlet's operation. + +## EXAMPLES + +### Example 1 + +```powershell +PS C:\> Connect-MgGraph -TenantId b20f5886-bddf-43bb-aee6-dda0c87c5fa2 -ClientId +9fa98e34-277f-47fa-9847-e36bdf6bca1f Welcome To Microsoft Graph! PS C:\> Get-LapsAADPassword +-DeviceIds LAPSAAD + +DeviceName DeviceId PasswordExpirationTime +---------- -------- ---------------------- +LAPSAAD dfc6d5f0-225a-4b46-adcf-73a349a31e70 4/22/2023 8:45:29 AM +``` + +This example shows how to query basic LAPS password metadata information for the target device which +is specified by device name. + +### Example 2 + +```powershell +PS C:\> Connect-MgGraph -TenantId b20f5886-bddf-43bb-aee6-dda0c87c5fa2 -ClientId 9fa98e34-277f-47fa-9847-e36bdf6bca1f +Welcome To Microsoft Graph! +PS C:\> Get-LapsAADPassword -DeviceIds dfc6d5f0-225a-4b46-adcf-73a349a31e70 -IncludePasswords + +DeviceName : LAPSAAD +DeviceId : dfc6d5f0-225a-4b46-adcf-73a349a31e70 +Account : LapsAdmin +Password : System.Security.SecureString +PasswordExpirationTime : 4/22/2023 8:45:29 AM +PasswordUpdateTime : 4/11/2023 8:45:29 AM +``` + +This example shows how to query the full LAPS password information for the target device which is +specified by device ID. + +### Example 3 + +```powershell +PS C:\> Connect-MgGraph -TenantId b20f5886-bddf-43bb-aee6-dda0c87c5fa2 -ClientId 9fa98e34-277f-47fa-9847-e36bdf6bca1f +Welcome To Microsoft Graph! +PS C:\> Get-LapsAADPassword -DeviceIds dfc6d5f0-225a-4b46-adcf-73a349a31e70 -IncludePasswords -AsPlainText + +DeviceName : LAPSAAD +DeviceId : dfc6d5f0-225a-4b46-adcf-73a349a31e70 +Account : LapsAdmin +Password : g4q22s[Xz8}!T32[4;Z#0M}v35udF[xB0}iB;P@xk%9E9Tgw,W]7)vx9O!- +PasswordExpirationTime : 4/22/2023 8:45:29 AM +PasswordUpdateTime : 4/11/2023 8:45:29 AM +``` + +This example shows how to query the full LAPS password information for the target device which is +specified by device ID, and displaying the password in clear-text form. + +### Example 4 + +```powershell +PS C:\> Connect-MgGraph -TenantId b20f5886-bddf-43bb-aee6-dda0c87c5fa2 -ClientId 9fa98e34-277f-47fa-9847-e36bdf6bca1f +Welcome To Microsoft Graph! +PS C:\> Get-LapsAADPassword -DeviceIds lapsAAD -IncludePasswords -AsPlainText -IncludeHistory + +DeviceName : LAPSAAD +DeviceId : dfc6d5f0-225a-4b46-adcf-73a349a31e70 +Account : LapsAdmin +Password : ]5j)1fi]Rv&Pj+IMiAzq1R9b+yJ.@Q,80#01U541vsC8$Vv${hac8TJlkT8 +PasswordExpirationTime : 4/22/2023 8:55:20 AM +PasswordUpdateTime : 4/11/2023 8:55:21 AM + +DeviceName : LAPSAAD +DeviceId : dfc6d5f0-225a-4b46-adcf-73a349a31e70 +Account : LapsAdmin +Password : t&.1P%9891]24I0X4AA4O22a30R1lz(ar7N9{tTf349.Iz{L82O6v{I+,gg +PasswordExpirationTime : +PasswordUpdateTime : 4/11/2023 8:55:16 AM + +DeviceName : LAPSAAD +DeviceId : dfc6d5f0-225a-4b46-adcf-73a349a31e70 +Account : LapsAdmin +Password : g4q22s[Xz8}!T32[4;Z#0M}v35udF[xB0}iB;P@xk%9E9Tgw,W]7)vx9O!- +PasswordExpirationTime : +PasswordUpdateTime : 4/11/2023 8:45:29 AM +``` + +This example shows how to query the full LAPS password information for the target device which is +specified by device name, requesting password history, and displaying the passwords in clear-text +form. + +## PARAMETERS + +### -AsPlainText + +Specify this parameter to return the LAPS passwords in clear-text format. The default behavior is to +return the LAPS passwords wrapped in a .NET SecureString object. + +> [!IMPORTANT] +> Using this parameter exposes the returned clear-text password to casual viewing and may pose a +> security risk. This parameter should be used with caution and only in support or testing +> situations. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DeviceIds + +Specifies the device name or device ID to query LAPS credentials. + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -IncludeHistory + +Specifies that any older LAPS credentials on the device object should also be displayed. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -IncludePasswords + +Specifies whether to return password information. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None + +## OUTPUTS + +### System.Object + +## NOTES + +## RELATED LINKS + +[Windows LAPS Overview](https://go.microsoft.com/fwlink/?linkid=2233901) +[Get started with Windows LAPS and Azure Active Directory](https://go.microsoft.com/fwlink/?linkid=2233704) \ No newline at end of file diff --git a/docset/winserver2022-ps/laps/Get-LapsADPassword.md b/docset/winserver2022-ps/laps/Get-LapsADPassword.md new file mode 100644 index 0000000000..fd292c92c3 --- /dev/null +++ b/docset/winserver2022-ps/laps/Get-LapsADPassword.md @@ -0,0 +1,428 @@ +--- +description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. +external help file: lapspsh.dll-Help.xml +Module Name: LAPS +online version: https://learn.microsoft.com/powershell/module/laps/get-lapsadpassword?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +Locale: en-US +ms.date: 04/10/2023 +title: Get-LapsADPassword +--- + +# Get-LapsADPassword + +## SYNOPSIS + +Queries Windows Local Administrator Password Solution (LAPS) credentials from Active Directory on a +specified AD computer or domain controller object. + +## SYNTAX + +### NormalMode (Default) + +```powershell +Get-LapsADPassword [-Credential ] [-DecryptionCredential ] [-IncludeHistory] + [-AsPlainText] [-Identity] [] +``` + +### DomainMode + +```powershell +Get-LapsADPassword [-Credential ] [-DecryptionCredential ] [-IncludeHistory] + [-AsPlainText] [-Identity] -Domain [] +``` + +### DomainControllerMode + +```powershell +Get-LapsADPassword [-Credential ] [-DecryptionCredential ] [-IncludeHistory] + [-AsPlainText] [-Identity] -DomainController [] +``` + +### SnapshotBrowserMode + +```powershell +Get-LapsADPassword [-Credential ] [-DecryptionCredential ] [-IncludeHistory] + [-AsPlainText] -Port [-Identity] [-DomainController ] [] +``` + +### RecoveryMode + +```powershell +Get-LapsADPassword [-IncludeHistory] [-AsPlainText] [-RecoveryMode] [-Identity] [] +``` + +### SnapshotBrowserRecoveryMode + +```powershell +Get-LapsADPassword [-IncludeHistory] [-AsPlainText] [-RecoveryMode] -Port [-Identity] + [] +``` + +## DESCRIPTION + +The **Get-LapsADPassword** cmdlet allows administrators to retrieve LAPS passwords and password +history for an Active Directory computer or domain controller object. Depending on policy +configuration, LAPS passwords may be stored in either clear-text form or encrypted form. The +**Get-LapsADPassword** cmdlet will automatically perform decryption of encrypted passwords. + +The **Get-LapsADPassword** cmdlet may also be used to connected to a mounted Active Directory snapshot. + +The -Verbose parameter may be used to get additional information about the cmdlet's operation. + +## EXAMPLES + +### Example 1 + +```powershell +PS C:\> Get-LapsADPassword lapsClient + +ComputerName : LAPSCLIENT +DistinguishedName : CN=LAPSCLIENT,OU=LapsTestOU,DC=laps,DC=com +Account : Administrator +Password : System.Security.SecureString +PasswordUpdateTime : 4/9/2023 10:03:41 AM +ExpirationTimestamp : 4/14/2023 10:03:41 AM +Source : CleartextPassword +DecryptionStatus : NotApplicable +AuthorizedDecryptor : NotApplicable +``` + +This example demonstrates querying the current LAPS password for the 'lapsClient' computer in the +current domain. The password was stored in Active Directory in clear-text form and did not require +decryption. The password was returned wrapped in a SecureString object. + +### Example 2 + +```powershell +PS C:\> Get-LapsADPassword -Identity lapsClient -DomainController lapsDC -AsPlainText + +ComputerName : LAPSCLIENT +DistinguishedName : CN=LAPSCLIENT,OU=LapsTestOU,DC=laps,DC=com +Account : Administrator +Password : k8P]Xl5T-ky!aj4s21el3S#.x44!e{8+,{L!M +PasswordUpdateTime : 4/9/2023 10:03:41 AM +ExpirationTimestamp : 4/14/2023 10:03:41 AM +Source : CleartextPassword +DecryptionStatus : NotApplicable +AuthorizedDecryptor : NotApplicable +``` + +This example demonstrates querying the current LAPS password on a specific domain controller +('lapsDC'), for the 'lapsClient' computer, requesting that the password be displayed in clear-text +form. The password was stored in Active Directory in clear-text form and did not require decryption. +The password was returned in clear-text form. + +### Example 3 + +```powershell +PS C:\> Get-LapsADPassword -Identity $lapsClient2 -Domain laps.com -AsPlainText -IncludeHistory + +ComputerName : LAPSCLIENT2 +DistinguishedName : CN=LAPSCLIENT2,OU=LapsTestEncryptedOU,DC=laps,DC=com +Account : Administrator +Password : q64!7KI3BOe/&S%buM0nBaW{B]261zN5L0{;{ +PasswordUpdateTime : 4/9/2023 9:39:38 AM +ExpirationTimestamp : 4/14/2023 9:39:38 AM +Source : EncryptedPassword +DecryptionStatus : Success +AuthorizedDecryptor : LAPS\LAPS Admins + +ComputerName : LAPSCLIENT2 +DistinguishedName : CN=LAPSCLIENT2,OU=LapsTestEncryptedOU,DC=laps,DC=com +Account : Administrator +Password : O{P61q6bu(3kZ6&#p2y.&F$cWd;0dm8!]Wl5j +PasswordUpdateTime : 4/9/2023 9:38:10 AM +ExpirationTimestamp : +Source : EncryptedPasswordHistory +DecryptionStatus : Success +AuthorizedDecryptor : LAPS\LAPS Admins +``` + +This example demonstrates querying the current LAPS password for the 'lapsClient2' computer, in a +specific Active Directory domain ('laps.com'), requesting that the password be displayed in +clear-text form. The password was stored in Active Directory in encrypted form and was successfully +decrypted. + +Note that ExpirationTimestamp will always be empty for any older LAPS passwords returned. + +### Example 4 + +```powershell +PS C:\> Get-LapsADPassword -Identity lapsDC.laps.com -AsPlainText + +ComputerName : LAPSDC +DistinguishedName : CN=LAPSDC,OU=Domain Controllers,DC=laps,DC=com +Account : Administrator +Password : 118y$rsw.3y58yG]on$Hii +PasswordUpdateTime : 4/9/2023 10:17:51 AM +ExpirationTimestamp : 4/19/2023 10:17:51 AM +Source : EncryptedDSRMPassword +DecryptionStatus : Success +AuthorizedDecryptor : LAPS\Domain Admins +``` + +This example demonstrates querying the current LAPS password for the 'lapsDC.laps.com' domain +controller, requesting that the password be displayed in clear-text form. The password was stored in +Active Directory in encrypted form and was successfully decrypted. + +### Example 5 + +```powershell +PS C:\> Get-LapsADPassword lapsClient2 + +ComputerName : LAPSDC +DistinguishedName : CN=LAPSDC,OU=Domain Controllers,DC=laps,DC=com +Account : +Password : +PasswordUpdateTime : 4/9/2023 10:17:51 AM +ExpirationTimestamp : 4/19/2023 10:17:51 AM +Source : EncryptedDSRMPassword +DecryptionStatus : Unauthorized +AuthorizedDecryptor : LAPS\Domain Admins +``` + +This example demonstrates querying the current LAPS password for the 'lapsDC' domain controller when +the user does not have permissions to decrypt the LAPS DSRM password. + +### Example 6 + +```powershell +PS C:\> Get-LapsADPassword lapsLegacyClient -AsPlainText + +ComputerName : LAPSLEGACYCLIENT +DistinguishedName : CN=LAPSLEGACYCLIENT,OU=LegacyLapsOU,DC=laps,DC=com +Account : +Password : Z#x}&7BluHf3{r+C218 +PasswordUpdateTime : +ExpirationTimestamp : 5/14/2023 1:55:39 PM +Source : LegacyLapsCleartextPassword +DecryptionStatus : NotApplicable +AuthorizedDecryptor : NotApplicable +``` + +This example demonstrates querying the current LAPS password for the 'lapsLegacyClient' machine +which is currently running in legacy LAPS emulation mode. Note that when querying legacy LAPS-style +passwords, the Account and PasswordUpdateTime fields will always be unavailable. + +### Example 7 + +```powershell +PS C:\> Get-LapsADPassword -Identity lapsClient -Port 50000 -AsPlainText + +ComputerName : LAPSCLIENT +DistinguishedName : CN=LAPSCLIENT,OU=LapsTestOU,DC=laps,DC=com +Account : Administrator +Password : H6UycL[vj#zzTNVpS//G2{j&t9aO}k[K5l4)X +PasswordUpdateTime : 4/15/2023 6:51:45 AM +ExpirationTimestamp : 4/20/2023 6:51:45 AM +Source : CleartextPassword +DecryptionStatus : NotApplicable +AuthorizedDecryptor : NotApplicable +``` + +This example demonstrates querying an Active Directory Snapshot browser instance for the current +LAPS password for the 'LAPSCLIENT' machine. This example assumes that that the snapshot browser has +been previously started on the local machine listening on an LDAP port of 50000. + +## PARAMETERS + +### -AsPlainText + +Specify this parameter to return the LAPS passwords in clear-text format. The default behavior is to +return the LAPS passwords wrapped in a .NET SecureString object. + +> [!IMPORTANT] Using this parameter exposes the returned clear-text password to casual viewing and +> may pose a security risk. This parameter should be used with caution and only in support or +> testing situations. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Credential + +Specifies a set of credentials to use when querying Active Directory for the LAPS credentials. If +not specified the current user's credentials will be used. + +```yaml +Type: System.Management.Automation.PSCredential +Parameter Sets: NormalMode, DomainMode, DomainControllerMode, SnapshotBrowserMode +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DecryptionCredential + +Specifies a set of credentials to use when decrypting encrypted LAPS credentials. If not specified +the current user's credentials will be used. + +```yaml +Type: System.Management.Automation.PSCredential +Parameter Sets: NormalMode, DomainMode, DomainControllerMode, SnapshotBrowserMode +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Domain + +Specifies which Active Directory domain to connect to. + +```yaml +Type: System.String +Parameter Sets: DomainMode +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DomainController + +Specifies which Active Directory domain controller to connect to, or the remote server on which an +Active Directory snapshot browser is running. + +```yaml +Type: System.String +Parameter Sets: DomainControllerMode +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +```yaml +Type: System.String +Parameter Sets: SnapshotBrowserMode +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Identity + +Specifies which Active Directory computer or domain controller object to retrieve LAPS credentials +from. + +This parameter accepts several different name formats which influence the criteria used when +searching Active Directory for the target device. The supported name formats are as follows: + +distinguishedName (begins with a "CN=") +samAccountName (begins with a '$") +dnsHostName (contains at least one '.' character) +name (for all other inputs) + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName, ByValue) +Accept wildcard characters: False +``` + +### -IncludeHistory + +Specifies that any older LAPS credentials on the computer object should also be displayed. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Port + +Specifies which Active Directory Snapshot Browser port to connect to. + +```yaml +Type: System.Nullable`1[System.Int32] +Parameter Sets: SnapshotBrowserMode, SnapshotBrowserRecoveryMode +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -RecoveryMode + +This parameter provides a last-ditch option when it is no longer possible to decrypt a given LAPS +credential via the normal mechanisms. For example, this might be necessary if a LAPS credential was +encrypted against a group which has since been deleted. + +>[!IMPORTANT] +>When specifying this parameter, you MUST be logged-in locally as a Domain Administrator on a writable domain controller. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: RecoveryMode, SnapshotBrowserRecoveryMode +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String[] + +## OUTPUTS + +### System.Object + +## NOTES + +## RELATED LINKS + +[Windows LAPS Overview](https://go.microsoft.com/fwlink/?linkid=2233901) +[Get started with Windows LAPS and Windows Server Active Directory](https://go.microsoft.com/fwlink/?linkid=2233705) diff --git a/docset/winserver2022-ps/laps/Get-LapsDiagnostics.md b/docset/winserver2022-ps/laps/Get-LapsDiagnostics.md new file mode 100644 index 0000000000..33a61a6bd7 --- /dev/null +++ b/docset/winserver2022-ps/laps/Get-LapsDiagnostics.md @@ -0,0 +1,155 @@ +--- +description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. +external help file: LAPS-help.xml +Module Name: LAPS +online version: https://learn.microsoft.com/powershell/module/laps/get-lapsdiagnostics?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +Locale: en-US +ms.date: 04/10/2023 +title: Get-LapsDiagnostics +--- + +# Get-LapsDiagnostics + +## SYNOPSIS + +Collects Windows Local Administrator Password Solution (LAPS) logs and tracing from the local +machine. + +## SYNTAX + +```powershell +Get-LapsDiagnostics [[-OutputFolder] ] [-CollectNetworkTrace] [-ResetPassword] [] +``` + +## DESCRIPTION + +The **Get-LapsDiagnostics** cmdlet collects LAPS logs and tracing from the local machine, and copies +them into a .zip file. This cmdlet is primarily intended for support and testing scenarios but of +course may be used at any time. The name of the resultant .zip file includes the machine name and +current timestamp, and by default is written under the %TEMP%\LapsDiagnostics folder. The output +folder may be customized using the -OutputFolder parameter. + +## EXAMPLES + +### Example 1 + +```powershell +PS C:\> Get-LapsDiagnostics +Get-LapsDiagnostics: all data for this run was written to the following zip file: + +C:\Users\ADMINI~1\AppData\Local\Temp\LapsDiagnostics\LapsDiagnostics_LAPSCLIENT_2023041004_072649.zip +``` + +This example demonstrates basic collection of LAPS diagnostic info using all default parameters. + +### Example 2 + +```powershell +PS C:\> Get-LapsDiagnostics -OutputFolder c:\LapsDiagFolder +Get-LapsDiagnostics: all data for this run was written to the following zip file: + +c:\LapsDiagFolder\LapsDiagnostics_LAPSCLIENT_2023041004_072702.zip +``` + +This example demonstrates basic collection of LAPS diagnostic info to a specific output folder. + +### Example 3 + +```powershell +PS C:\> Get-LapsDiagnostics -OutputFolder c:\LapsDiagFolder -ResetPassword +Get-LapsDiagnostics: all data for this run was written to the following zip file: + +c:\LapsDiagFolder\LapsDiagnostics_LAPSCLIENT_2023041004_072709.zip +``` + +This example demonstrates basic collection of LAPS diagnostic info across a forced password reset +operation to a specific output folder. + +### Example 4 + +```powershell +PS C:\> Get-LapsDiagnostics -CollectNetworkTrace +Get-LapsDiagnostics: all data for this run was written to the following zip file: + +C:\Users\ADMINI~1\AppData\Local\Temp\LapsDiagnostics\LapsDiagnostics_LAPSCLIENT_2023041004_072719.zip +``` + +This example demonstrates basic collection of LAPS diagnostic info while also collecting network +tracing. + +## PARAMETERS + +### -CollectNetworkTrace + +Specifies that network tracing should also be collected and included in the resultant .zip file. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -OutputFolder + +Specifies that the resultant .zip file should be placed under the specified folder. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResetPassword + +Specifies that logs and tracing should be collected across a forced password reset for the currently +managed local account. In this mode the cmdlet collects tracing across a call to the +**Reset-LapsPassword** cmdlet. + +If this parameter is not specified, the cmdlet collects tracing across a call to the +**Invoke-LapsProcessingCycle** cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None + +## OUTPUTS + +### System.Object + +## NOTES + +## RELATED LINKS + +[Windows LAPS Overview](https://go.microsoft.com/fwlink/?linkid=2233901) diff --git a/docset/winserver2022-ps/laps/Invoke-LapsPolicyProcessing.md b/docset/winserver2022-ps/laps/Invoke-LapsPolicyProcessing.md new file mode 100644 index 0000000000..5f6b3b63cd --- /dev/null +++ b/docset/winserver2022-ps/laps/Invoke-LapsPolicyProcessing.md @@ -0,0 +1,65 @@ +--- +description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. +external help file: lapspsh.dll-Help.xml +Module Name: LAPS +online version: https://learn.microsoft.com/powershell/module/laps/invoke-lapspolicyprocessing?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +Locale: en-US +ms.date: 04/10/2023 +title: Invoke-LapsPolicyProcessing +--- + +# Invoke-LapsPolicyProcessing + +## SYNOPSIS + +Causes Windows Local Administrator Password Solution (LAPS) to process the currently configured LAPS policy. + +## SYNTAX + +```powershell +Invoke-LapsPolicyProcessing [] +``` + +## DESCRIPTION + +The **Invoke-LapsPolicyProcessing** cmdlet tells Windows Local Administrator Password Solution +(LAPS) to process the currently configured LAPS policy. + +The cmdlet does not return detailed information about the results of the operation. See +[Use Windows LAPS event logs](https://go.microsoft.com/fwlink/?linkid=2234103) for more +information on querying the resultant event log entries to get specific information on the outcome +of the operation. + +## EXAMPLES + +### Example 1 + +```powershell +PS C:\> Invoke-LapsPolicyProcessing +``` + +This example shows how to run the Invoke-LapsPolicyProcessing cmdlet. + +## PARAMETERS + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None + +## OUTPUTS + +### System.Object + +## NOTES + +## RELATED LINKS + +[Windows LAPS Overview](https://go.microsoft.com/fwlink/?linkid=2233901) diff --git a/docset/winserver2022-ps/laps/LAPS.md b/docset/winserver2022-ps/laps/LAPS.md new file mode 100644 index 0000000000..72c2a65358 --- /dev/null +++ b/docset/winserver2022-ps/laps/LAPS.md @@ -0,0 +1,79 @@ +--- +description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. +Module Name: LAPS +Module Guid: 8eb7ddf9-7890-49ae-9af1-3b41d7e63c41 +Download Help Link: https://aka.ms/winsvr-2022-pshelp +Help Version: 1.0.0.0 +Locale: en-US +ms.date: 04/10/2023 +title: LAPS +--- + +# LAPS Module + +## Description + +This reference provides cmdlet descriptions and syntax for all Windows Local Administrator Password +Solution (LAPS)-specific cmdlets. It lists the cmdlets in alphabetical order. + +## LAPS Cmdlets + +### [Find-LapsADExtendedRights](Find-LapsADExtendedRights.md) + +Queries Active Directory to find principals that have been granted permission to read Windows Local +Administrator Password Solution (LAPS) password attributes. + +### [Get-LapsAADPassword](Get-LapsAADPassword.md) + +Queries Azure Active Directory for the Windows Local Administrator Password Solution (LAPS) +credentials on a specified Azure AD device. + +### [Get-LapsADPassword](Get-LapsADPassword.md) + +Queries Windows Local Administrator Password Solution (LAPS) credentials from Active Directory on a +specified AD computer or domain controller object. + +### [Get-LapsDiagnostics](Get-LapsDiagnostics.md) + +Collects Windows Local Administrator Password Solution (LAPS) logs and tracing from the local +machine. + +### [Invoke-LapsPolicyProcessing](Invoke-LapsPolicyProcessing.md) + +Causes Windows Local Administrator Password Solution (LAPS) to process the currently configured LAPS +policy. + +### [Reset-LapsPassword](Reset-LapsPassword.md) + +Causes Windows Local Administrator Password Solution (LAPS) to immediately rotate the password for +the currently managed local account. + +### [Set-LapsADAuditing](Set-LapsADAuditing.md) + +Configures an Active Directory Organizational Unit to enable auditing on the Windows Local +Administrator Password Solution (LAPS) password schema attributes. + +### [Set-LapsADComputerSelfPermission](Set-LapsADComputerSelfPermission.md) + +Configures permissions on an Active Directory Organizational Unit to enable computers in that OU to +update their LAPS passwords. + +### [Set-LapsADPasswordExpirationTime](Set-LapsADPasswordExpirationTime.md) + +Sets the Windows Local Administrator Password Solution (LAPS) password expiration timestamp on an +Active Directory computer or domain controller object. + +### [Set-LapsADReadPasswordPermission](Set-LapsADReadPasswordPermission.md) + +Configures security on an Active Directory Organizational Unit to grant specific users or groups +permission to query Windows Local Administrator Password Solution (LAPS) passwords. + +### [Set-LapsADResetPasswordPermission](Set-LapsADResetPasswordPermission.md) + +Configures security on an Active Directory Organizational Unit to grant specific users or groups +permission to set the Windows Local Administrator Password Solution (LAPS) password expiration time. + +### [Update-LapsADSchema](Update-LapsADSchema.md) + +Extends the Active Directory schema with the Windows Local Administrator Password Solution (LAPS) +schema attributes. diff --git a/docset/winserver2022-ps/laps/Reset-LapsPassword.md b/docset/winserver2022-ps/laps/Reset-LapsPassword.md new file mode 100644 index 0000000000..d19eabfe38 --- /dev/null +++ b/docset/winserver2022-ps/laps/Reset-LapsPassword.md @@ -0,0 +1,73 @@ +--- +description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. +external help file: lapspsh.dll-Help.xml +Module Name: LAPS +online version: https://learn.microsoft.com/powershell/module/laps/reset-lapspassword?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +Locale: en-US +ms.date: 04/10/2023 +title: Reset-LapsPassword +--- + +# Reset-LapsPassword + +## SYNOPSIS + +Causes Windows Local Administrator Password Solution (LAPS) to immediately rotate the password for +the currently managed local account. + +## SYNTAX + +```powershell +Reset-LapsPassword [] +``` + +## DESCRIPTION + +The **Reset-LapsPassword** cmdlet tells Windows Local Administrator Password Solution (LAPS) to +immediately rotate the password for the currently managed local account. This operation is performed +regardless of the state of the current password, for example it does not matter whether the current +password is considered expired or not. + +> [!IMPORTANT] +> This cmdlet is intended and recommended only for rare situations that require an +> immediate password rotation, for example as a response to a machine security breach situation. +> Excessively frequent usage of this cmdlet is not recommended. + +The cmdlet does not return detailed information about the results of the operation. See +[Use Windows LAPS event logs](https://go.microsoft.com/fwlink/?linkid=2234103) for more +information on querying the resultant event log entries to get specific information on the outcome +of the operation. + +## EXAMPLES + +### Example 1 + +```powershell +PS C:\> Reset-LapsPassword +``` + +This example shows how to run the Reset-LapsPassword cmdlet. + +## PARAMETERS + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None + +## OUTPUTS + +### System.Object + +## NOTES + +## RELATED LINKS + +[Windows LAPS Overview](https://go.microsoft.com/fwlink/?linkid=2233901) diff --git a/docset/winserver2022-ps/laps/Set-LapsADAuditing.md b/docset/winserver2022-ps/laps/Set-LapsADAuditing.md new file mode 100644 index 0000000000..3f8be8d695 --- /dev/null +++ b/docset/winserver2022-ps/laps/Set-LapsADAuditing.md @@ -0,0 +1,209 @@ +--- +description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. +external help file: lapspsh.dll-Help.xml +Module Name: LAPS +online version: https://learn.microsoft.com/powershell/module/laps/set-lapsadauditing?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +Locale: en-US +ms.date: 04/10/2023 +title: Set-LapsADAuditing +--- + +# Set-LapsADAuditing + +## SYNOPSIS + +Configures an Active Directory Organizational Unit to enable auditing on the Windows Local +Administrator Password Solution (LAPS) password schema attributes. + +## SYNTAX + +``` +Set-LapsADAuditing [-Credential ] -Identity -AuditedPrincipals + [-AuditType ] [-Domain ] [-DomainController ] [-WhatIf] [-Confirm] + [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 + +```powershell +PS C:\> Set-LapsADAuditing -Identity LapsTestOU -AuditedPrincipals "laps.com\LapsAdmin" -AuditType Success +OU=LapsTestOU,DC=laps,DC=com +``` + +This example demonstrates configuring Success audits on an OU. + +### Example 2 + +```powershell +PS C:\> Set-LapsADAuditing -Identity LapsTestOU -AuditedPrincipals "laps.com\LapsAdminsGroup" -AuditType Failure +OU=LapsTestOU,DC=laps,DC=com +``` + +This example demonstrates configuring Failure audits on an OU. + +## PARAMETERS + +### -AuditedPrincipals + +Specifies which users or groups should be configured for auditing. Users or groups may be specified +in either name or SID format. If specified in name format, the name must always include the +identifying domain name portion unless the name maps to a well-known or built-in account. + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AuditType + +Specifies whether to configure Success or Failure auditing. + +```yaml +Type: System.Security.AccessControl.AuditFlags +Parameter Sets: (All) +Aliases: +Accepted values: None, Success, Failure + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Credential + +Specifies the credentials to use when updating Active Directory. If not specified the current user's +credentials will be used. + +```yaml +Type: System.Management.Automation.PSCredential +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Domain + +Specifies which Active Directory domain to connect to. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DomainController + +Specifies which Active Directory domain controller to connect to. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Identity + +Specifies which Active Directory Organizational Unit to update. + +This parameter accepts several different name formats which influence the criteria used in the +resultant Active Directory search. The supported name formats are as follows: + +distinguishedName (begins with a "CN=") +name (for all other inputs) + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName, ByValue) +Accept wildcard characters: False +``` + +### -Confirm + +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf + +Shows what would happen if the cmdlet runs. The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String[] + +## OUTPUTS + +### System.Object + +## NOTES + +## RELATED LINKS + +[Windows LAPS Overview](https://go.microsoft.com/fwlink/?linkid=2233901) diff --git a/docset/winserver2022-ps/laps/Set-LapsADComputerSelfPermission.md b/docset/winserver2022-ps/laps/Set-LapsADComputerSelfPermission.md new file mode 100644 index 0000000000..c02f744b10 --- /dev/null +++ b/docset/winserver2022-ps/laps/Set-LapsADComputerSelfPermission.md @@ -0,0 +1,171 @@ +--- +description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. +external help file: lapspsh.dll-Help.xml +Module Name: LAPS +online version: https://learn.microsoft.com/powershell/module/laps/set-lapsadcomputerselfpermission?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +Locale: en-US +ms.date: 04/10/2023 +title: Set-LapsADComputerSelfPermission +--- + +# Set-LapsADComputerSelfPermission + +## SYNOPSIS + +Configures permissions on an Active Directory Organizational Unit to enable computers in that OU to +update their Windows Local Administrator Password Solution (LAPS) passwords. + +## SYNTAX + +``` +Set-LapsADComputerSelfPermission -Identity [-Domain ] [-DomainController ] + [-Credential ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION + +The **Set-LapsADComputerSelfPermission** cmdlet is used by administrators to configure security +permissions on an Active Directory Organizational Unit (OU) to allow computers in that OU to update +their LAPS passwords. + +## EXAMPLES + +### Example 1 + +```powershell +PS C:\> Set-LapsADComputerSelfPermission -Identity LapsTestOU + +Name DistinguishedName +---- ----------------- +LapsTestOU OU=LapsTestOU,DC=laps,DC=com +``` + +This example demonstrates how to run the cmdlet. + +## PARAMETERS + +### -Credential + +Specifies the credentials to use when updating Active Directory. If not specified the current user's +credentials will be used. + +```yaml +Type: System.Management.Automation.PSCredential +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Domain + +Specifies which Active Directory domain to connect to. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DomainController + +Specifies which Active Directory domain controller to connect to. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Identity + +Specifies which Active Directory Organizational Unit to update. + +This parameter accepts several different name formats which influence the criteria used in the +resultant Active Directory search. The supported name formats are as follows: + +distinguishedName (begins with a "CN=") +name (for all other inputs) + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName, ByValue) +Accept wildcard characters: False +``` + +### -Confirm + +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf + +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String[] + +## OUTPUTS + +### System.Object + +## NOTES + +## RELATED LINKS + +[Windows LAPS Overview](https://go.microsoft.com/fwlink/?linkid=2233901) diff --git a/docset/winserver2022-ps/laps/Set-LapsADPasswordExpirationTime.md b/docset/winserver2022-ps/laps/Set-LapsADPasswordExpirationTime.md new file mode 100644 index 0000000000..8e128b22d0 --- /dev/null +++ b/docset/winserver2022-ps/laps/Set-LapsADPasswordExpirationTime.md @@ -0,0 +1,187 @@ +--- +description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. +external help file: lapspsh.dll-Help.xml +Module Name: LAPS +online version: https://learn.microsoft.com/powershell/module/laps/set-lapsadpasswordexpirationtime?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +Locale: en-US +ms.date: 04/10/2023 +title: Set-LapsADPasswordExpirationTime +--- + +# Set-LapsADPasswordExpirationTime + +## SYNOPSIS + +Sets the Windows Local Administrator Password Solution (LAPS) password expiration timestamp on an +Active Directory computer or domain controller object. + +## SYNTAX + +```powershell +Set-LapsADPasswordExpirationTime [-Credential ] -Identity [-WhenEffective ] + [-Domain ] [-DomainController ] [] +``` + +## DESCRIPTION + +The **Set-LapsADPasswordExpirationTime** cmdlet is used by administrators to configure the LAPS +password expiration time on an Active Directory computer or domain controller object. + +> [!TIP] +> Running this cmdlet sets the LAPS password expiration time on the Active Directory computer or +> domain controller object, but the new expiration time will not be honored until the next time the +> target device executes a LAPS policy processing cycle. + +## EXAMPLES + +### Example 1 + +```powershell +PS C:\> Set-LapsADPasswordExpirationTime -Identity lapsClient + +DistinguishedName Status +----------------- ------ +CN=LAPSCLIENT,OU=LapsTestOU,DC=laps,DC=com PasswordReset +``` + +This examples show setting the LAPS password expiration time to the current time (or in other words, +expiring the password immediately). + +### Example 2 + +```powershell +PS C:\> Set-LapsADPasswordExpirationTime -Identity lapsFe -WhenEffective (Get-Date -Date "07/04/2023 13:00:00") + +DistinguishedName Status +----------------- ------ +CN=LAPSCLIENT,OU=LapsTestOU,DC=laps,DC=com PasswordReset +``` + +This examples show setting the LAPS password expiration time to a specific date. + +### Example 3 + +```powershell +PS C:\> Set-LapsADPasswordExpirationTime -Identity lapsFe -WhenEffective (DateTime::Now.AddDays(1)) + +DistinguishedName Status +----------------- ------ +CN=LAPSCLIENT,OU=LapsTestOU,DC=laps,DC=com PasswordReset +``` + +This examples show setting the LAPS password expiration time to one day in the future. + +## PARAMETERS + +### -Credential + +Specifies the credentials to use when updating Active Directory. If not specified the current user's +credentials will be used. + +```yaml +Type: System.Management.Automation.PSCredential +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Domain + +Specifies which Active Directory domain to connect to. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DomainController + +Specifies which Active Directory domain controller to connect to. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Identity + +Specifies which Active Directory computer or domain controller object to set the LAPS password +expiration time on. + +This parameter accepts several different name formats which influence the criteria used when +searching Active Directory for the target device. The supported name formats are as follows: + +distinguishedName (begins with a "CN=") +samAccountName (begins with a '$") +dnsHostName (contains at least one '.' character) +name (for all other inputs) + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName, ByValue) +Accept wildcard characters: False +``` + +### -WhenEffective + +Specifies the new LAPS password expiration time. If not specified the current time will be used, in +other words the password is immediately expired. + +```yaml +Type: System.DateTime +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String[] + +## OUTPUTS + +### System.Object + +## NOTES + +## RELATED LINKS + +[Windows LAPS Overview](https://go.microsoft.com/fwlink/?linkid=2233901) diff --git a/docset/winserver2022-ps/laps/Set-LapsADReadPasswordPermission.md b/docset/winserver2022-ps/laps/Set-LapsADReadPasswordPermission.md new file mode 100644 index 0000000000..faddd76397 --- /dev/null +++ b/docset/winserver2022-ps/laps/Set-LapsADReadPasswordPermission.md @@ -0,0 +1,234 @@ +--- +description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. +external help file: lapspsh.dll-Help.xml +Module Name: LAPS +online version: https://learn.microsoft.com/powershell/module/laps/set-lapsadreadpasswordpermission?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +Locale: en-US +ms.date: 04/10/2023 +title: Set-LapsADReadPasswordPermission +--- + +# Set-LapsADReadPasswordPermission + +## SYNOPSIS + +Configures security on an Active Directory Organizational Unit to grant specific users or groups +permission to query Windows Local Administrator Password Solution (LAPS) passwords. + +## SYNTAX + +```powershell +Set-LapsADReadPasswordPermission [-Credential ] -Identity + -AllowedPrincipals [-Domain ] [-DomainController ] [-WhatIf] [-Confirm] + [] +``` + +## DESCRIPTION + +The **Set-LapsADReadPasswordPermission** cmdlet is used by administrators to configure security +permissions on an Active Directory Organizational Unit (OU) to allow specific users or groups to +query LAPS passwords on computers in that OU. Users and groups must be fully qualified with both +domain and user name components; the only exception to this is when the specified name resolves to a +built-in principal (for example "Domain Admins"). + +## EXAMPLES + +### Example 1 + +```powershell +PS C:\> Set-LapsADReadPasswordPermission -Identity LapsTestOU -AllowedPrincipals "Domain Admins" + +Name DistinguishedName +---- ----------------- +LapsTestOU OU=LapsTestOU,DC=laps,DC=com +``` + +This example shows how to run the cmdlet with an isolated name that successfully maps to a +well-known user or group. + +### Example 2 + +```powershell +PS C:\> Set-LapsADReadPasswordPermission -Identity LapsTestOU -AllowedPrincipals @("S-1-5-21-2889755270-1324585639-743026605-1215") + +Name DistinguishedName +---- ----------------- +LapsTestOU OU=LapsTestOU,DC=laps,DC=com +``` + +This example shows how to run the cmdlet specifying a user SID as input. + +### Example 3 + +```powershell +PS C:\> Set-LapsADReadPasswordPermission -Identity 'OU=LapsTestOU,DC=laps,DC=com' -AllowedPrincipals @("laps.com\LapsAdmin1", "LapsAdmin2@laps.com") + +Name DistinguishedName +---- ----------------- +LapsTestOU OU=LapsTestOU,DC=laps,DC=com +``` + +This example shows how to run the cmdlet specifying two fully qualified user names (in different +formats) as input. + +### Example 4 + +```powershell +PS C:\> Set-LapsADReadPasswordPermission -Identity LapsTestOU -AllowedPrincipals @("LapsAdministratorsGroup") +Set-LapsADReadPasswordPermission : The 'LapsAdministratorsGroup' account appears to be an isolated name but is not a well-known name. Please use a +fully qualified name instead, such as "LAPSAdmins@contoso.com" or "contoso\LAPSAdmins" +At line:1 char:1 ++ Set-LapsADReadPasswordPermission -Identity LapsTestOU -AllowedPrincip ... ++ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + + CategoryInfo : InvalidArgument: (:) [Set-LapsADReadPasswordPermission], LapsPowershellException + + FullyQualifiedErrorId : Invalid principal specified,Microsoft.Windows.LAPS.SetLapsADReadPasswordPermission +``` + +This example shows a failure caused by specifying an isolated name that did not resolve to a +well-known or built-in account. The fix for this error would be to add a domain name qualifier to +the input name, for example "LapsAdministratorsGroup@laps.com". + +## PARAMETERS + +### -AllowedPrincipals + +Specifies which users or groups should be granted the permissions. Users or groups may be specified +in either name or SID format. If specified in name format, the name must always include the +identifying domain name portion unless the name maps to a well-known or built-in account. + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Credential + +Specifies the credentials to use when updating Active Directory. If not specified the current user's +credentials will be used. + +```yaml +Type: System.Management.Automation.PSCredential +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Domain + +Specifies which Active Directory domain to connect to. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DomainController + +Specifies which Active Directory domain controller to connect to. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Identity + +Specifies which Active Directory Organizational Unit to update. + +This parameter accepts several different name formats which influence the criteria used in the +resultant Active Directory search. The supported name formats are as follows: + +distinguishedName (begins with a "CN=") +name (for all other inputs) + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Confirm + +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf + +Shows what would happen if the cmdlet runs. The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String[] + +## OUTPUTS + +### System.Object + +## NOTES + +## RELATED LINKS + +[Windows LAPS Overview](https://go.microsoft.com/fwlink/?linkid=2233901) diff --git a/docset/winserver2022-ps/laps/Set-LapsADResetPasswordPermission.md b/docset/winserver2022-ps/laps/Set-LapsADResetPasswordPermission.md new file mode 100644 index 0000000000..87eaa3c4b0 --- /dev/null +++ b/docset/winserver2022-ps/laps/Set-LapsADResetPasswordPermission.md @@ -0,0 +1,234 @@ +--- +description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. +external help file: lapspsh.dll-Help.xml +Module Name: LAPS +online version: https://learn.microsoft.com/powershell/module/laps/set-lapsadresetpasswordpermission?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +Locale: en-US +ms.date: 04/10/2023 +title: Set-LapsADResetPasswordPermission +--- + +# Set-LapsADResetPasswordPermission + +## SYNOPSIS + +Configures security on an Active Directory Organizational Unit to grant specific users or groups +permission to set the Windows Local Administrator Password Solution (LAPS) password expiration time. + +## SYNTAX + +```powershell +Set-LapsADResetPasswordPermission [-Credential ] -Identity + -AllowedPrincipals [-Domain ] [-DomainController ] [-WhatIf] [-Confirm] + [] +``` + +## DESCRIPTION + +The **Set-LapsADResetPasswordPermission** cmdlet is used by administrators to configure security +permissions on an Active Directory Organizational Unit (OU) to allow specific users or groups to +reset the LAPS password expiration time on computers in that OU. Users and groups must be fully +qualified with both domain and user name components; the only exception to this is when the +specified name resolves to a built-in principal (for example "Domain Admins"). + +## EXAMPLES + +### Example 1 + +```powershell +PS C:\> Set-LapsADResetPasswordPermission -Identity LapsTestOU -AllowedPrincipals "Domain Admins" + +Name DistinguishedName +---- ----------------- +LapsTestOU OU=LapsTestOU,DC=laps,DC=com +``` + +This example shows how to run the cmdlet with an isolated name that successfully maps to a +well-known user or group. + +### Example 2 + +```powershell +PS C:\> Set-LapsADResetPasswordPermission -Identity LapsTestOU -AllowedPrincipals @("S-1-5-21-2889755270-1324585639-743026605-1215") + +Name DistinguishedName +---- ----------------- +LapsTestOU OU=LapsTestOU,DC=laps,DC=com +``` + +This example shows how to run the cmdlet specifying a user SID as input. + +### Example 3 + +```powershell +PS C:\> Set-LapsADResetPasswordPermission -Identity 'OU=LapsTestOU,DC=laps,DC=com' -AllowedPrincipals @("laps.com\LapsAdmin1", "LapsAdmin2@laps.com") + +Name DistinguishedName +---- ----------------- +LapsTestOU OU=LapsTestOU,DC=laps,DC=com +``` + +This example shows how to run the cmdlet specifying two fully qualified user names (in different +formats) as input. + +### Example 4 + +```powershell +PS C:\> Set-LapsADResetPasswordPermission -Identity LapsTestOU -AllowedPrincipals @("LapsAdministratorsGroup") +Set-LapsADReadPasswordPermission : The 'LapsAdministratorsGroup' account appears to be an isolated name but is not a well-known name. Please use a +fully qualified name instead, such as "LapsAdministratorsGroup@contoso.com" or "contoso\LapsAdministratorsGroup" +At line:1 char:1 ++ Set-LapsADReadPasswordPermission -Identity LapsTestOU -AllowedPrincip ... ++ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + + CategoryInfo : InvalidArgument: (:) [Set-LapsADReadPasswordPermission], LapsPowershellException + + FullyQualifiedErrorId : Invalid principal specified,Microsoft.Windows.LAPS.SetLapsADReadPasswordPermission +``` + +This example shows a failure caused by specifying an isolated name that did not resolve to a +well-known or built-in account. The fix for this error would be to add a domain name qualifier to +the input name, for example "LapsAdministratorsGroup@laps.com". + +## PARAMETERS + +### -AllowedPrincipals + +Specifies which users or groups should be granted the permissions. Users or groups may be specified +in either name or SID format. If specified in name format, the name must always include the +identifying domain name portion unless the name maps to a well-known or built-in account. + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Credential + +Specifies the credentials to use when updating Active Directory. If not specified the current user's +credentials will be used. + +```yaml +Type: System.Management.Automation.PSCredential +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Domain + +Specifies which Active Directory domain to connect to. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DomainController + +Specifies which Active Directory domain controller to connect to. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Identity + +Specifies which Active Directory Organizational Unit to update. + +This parameter accepts several different name formats which influence the criteria used in the +resultant Active Directory search. The supported name formats are as follows: + +distinguishedName (begins with a "CN=") +name (for all other inputs) + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Confirm + +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf + +Shows what would happen if the cmdlet runs. The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String[] + +## OUTPUTS + +### System.Object + +## NOTES + +## RELATED LINKS + +[Windows LAPS Overview](https://go.microsoft.com/fwlink/?linkid=2233901) diff --git a/docset/winserver2022-ps/laps/Update-LapsADSchema.md b/docset/winserver2022-ps/laps/Update-LapsADSchema.md new file mode 100644 index 0000000000..5952d03ef7 --- /dev/null +++ b/docset/winserver2022-ps/laps/Update-LapsADSchema.md @@ -0,0 +1,119 @@ +--- +description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. +external help file: lapspsh.dll-Help.xml +Module Name: LAPS +online version: https://learn.microsoft.com/powershell/module/laps/update-lapsadschema?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +Locale: en-US +ms.date: 04/10/2023 +title: Update-LapsADSchema +--- + +# Update-LapsADSchema + +## SYNOPSIS + +Extends the Active Directory schema with the Windows Local Administrator Password Solution (LAPS) +schema attributes. + +## SYNTAX + +```powershell +Update-LapsADSchema [-Credential ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION + +The **Update-LapsADSchema** cmdlet extends the Active Directory schema with the Windows Local +Administrator Password Solution (LAPS) schema attributes. The specific nature of the schema +extensions is documented in +[Windows LAPS schema extensions reference](https://go.microsoft.com/fwlink/?linkid=2233804). + +The -Verbose parameter may be used to get additional information about the cmdlet's operation. + +## EXAMPLES + +### Example 1 + +```powershell +PS C:\> Update-LapsADSchema + +The 'ms-LAPS-Password' schema attribute needs to be added to the AD schema. +Do you want to proceed? +[Y] Yes [A] Yes to All [N] No [L] No to All [S] Suspend [?] Help (default is "Y"): A +``` + +This example shows how to run the Update-LapsADSchema cmdlet. + +## PARAMETERS + +### -Credential + +Specifies a set of credentials to use when extending the schema. If not specified the current user's +credentials will be used. + +```yaml +Type: System.Management.Automation.PSCredential +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm + +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf + +Shows what would happen if the cmdlet runs. The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None + +## OUTPUTS + +### System.Object + +## NOTES + +## RELATED LINKS + +[Windows LAPS Overview](https://go.microsoft.com/fwlink/?linkid=2233901) +[Windows LAPS schema extensions reference](https://go.microsoft.com/fwlink/?linkid=2233804) From 3018aaa874e0099963a60160bd2148d4552d02d1 Mon Sep 17 00:00:00 2001 From: Jay Simmons Date: Sat, 15 Apr 2023 09:54:03 -0700 Subject: [PATCH 416/965] Fix !Important block. --- docset/winserver2022-ps/laps/Get-LapsADPassword.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docset/winserver2022-ps/laps/Get-LapsADPassword.md b/docset/winserver2022-ps/laps/Get-LapsADPassword.md index fd292c92c3..78061a1b7a 100644 --- a/docset/winserver2022-ps/laps/Get-LapsADPassword.md +++ b/docset/winserver2022-ps/laps/Get-LapsADPassword.md @@ -232,9 +232,10 @@ been previously started on the local machine listening on an LDAP port of 50000. Specify this parameter to return the LAPS passwords in clear-text format. The default behavior is to return the LAPS passwords wrapped in a .NET SecureString object. -> [!IMPORTANT] Using this parameter exposes the returned clear-text password to casual viewing and -> may pose a security risk. This parameter should be used with caution and only in support or -> testing situations. +> [!IMPORTANT] +> Using this parameter exposes the returned clear-text password to casual viewing and may pose a +> security risk. This parameter should be used with caution and only in support or testing +> situations. ```yaml Type: System.Management.Automation.SwitchParameter From d920e0e0222ee1795685f42099f4b424b6c6f099 Mon Sep 17 00:00:00 2001 From: Sean Wheeler Date: Sat, 15 Apr 2023 12:36:57 -0500 Subject: [PATCH 417/965] Remove language label from syntax blocks The syntax blocks should not have the PowerShell language label. They BNF-style syntax descriptions not PowerShell code. --- .../laps/Find-LapsADExtendedRights.md | 2 +- .../winserver2022-ps/laps/Get-LapsAADPassword.md | 2 +- .../winserver2022-ps/laps/Get-LapsADPassword.md | 16 ++++++++-------- .../winserver2022-ps/laps/Get-LapsDiagnostics.md | 2 +- .../laps/Invoke-LapsPolicyProcessing.md | 2 +- .../winserver2022-ps/laps/Reset-LapsPassword.md | 2 +- .../laps/Set-LapsADPasswordExpirationTime.md | 2 +- .../laps/Set-LapsADReadPasswordPermission.md | 2 +- .../laps/Set-LapsADResetPasswordPermission.md | 2 +- .../winserver2022-ps/laps/Update-LapsADSchema.md | 2 +- 10 files changed, 17 insertions(+), 17 deletions(-) diff --git a/docset/winserver2022-ps/laps/Find-LapsADExtendedRights.md b/docset/winserver2022-ps/laps/Find-LapsADExtendedRights.md index 691282afe9..0013e71489 100644 --- a/docset/winserver2022-ps/laps/Find-LapsADExtendedRights.md +++ b/docset/winserver2022-ps/laps/Find-LapsADExtendedRights.md @@ -18,7 +18,7 @@ Administrator Password Solution (LAPS) password attributes. ## SYNTAX -```powershell +``` Find-LapsADExtendedRights [-Credential ] -Identity [-Domain ] [-DomainController ] [-IncludeComputers] [] ``` diff --git a/docset/winserver2022-ps/laps/Get-LapsAADPassword.md b/docset/winserver2022-ps/laps/Get-LapsAADPassword.md index 88526d1ff6..b25b3226a1 100644 --- a/docset/winserver2022-ps/laps/Get-LapsAADPassword.md +++ b/docset/winserver2022-ps/laps/Get-LapsAADPassword.md @@ -18,7 +18,7 @@ credentials on a specified Azure AD device. ## SYNTAX -```powershell +```s Get-LapsAADPassword -DeviceIds [-IncludePasswords] [-IncludeHistory] [-AsPlainText] [] ``` diff --git a/docset/winserver2022-ps/laps/Get-LapsADPassword.md b/docset/winserver2022-ps/laps/Get-LapsADPassword.md index 78061a1b7a..050ef83ae0 100644 --- a/docset/winserver2022-ps/laps/Get-LapsADPassword.md +++ b/docset/winserver2022-ps/laps/Get-LapsADPassword.md @@ -20,41 +20,41 @@ specified AD computer or domain controller object. ### NormalMode (Default) -```powershell +``` Get-LapsADPassword [-Credential ] [-DecryptionCredential ] [-IncludeHistory] [-AsPlainText] [-Identity] [] ``` ### DomainMode -```powershell +``` Get-LapsADPassword [-Credential ] [-DecryptionCredential ] [-IncludeHistory] [-AsPlainText] [-Identity] -Domain [] ``` ### DomainControllerMode -```powershell +``` Get-LapsADPassword [-Credential ] [-DecryptionCredential ] [-IncludeHistory] [-AsPlainText] [-Identity] -DomainController [] ``` ### SnapshotBrowserMode -```powershell +``` Get-LapsADPassword [-Credential ] [-DecryptionCredential ] [-IncludeHistory] [-AsPlainText] -Port [-Identity] [-DomainController ] [] ``` ### RecoveryMode -```powershell +``` Get-LapsADPassword [-IncludeHistory] [-AsPlainText] [-RecoveryMode] [-Identity] [] ``` ### SnapshotBrowserRecoveryMode -```powershell +``` Get-LapsADPassword [-IncludeHistory] [-AsPlainText] [-RecoveryMode] -Port [-Identity] [] ``` @@ -141,7 +141,7 @@ AuthorizedDecryptor : LAPS\LAPS Admins This example demonstrates querying the current LAPS password for the 'lapsClient2' computer, in a specific Active Directory domain ('laps.com'), requesting that the password be displayed in -clear-text form. The password was stored in Active Directory in encrypted form and was successfully +clear-text form. The password was stored in Active Directory in encrypted form and was successfully decrypted. Note that ExpirationTimestamp will always be empty for any older LAPS passwords returned. @@ -164,7 +164,7 @@ AuthorizedDecryptor : LAPS\Domain Admins This example demonstrates querying the current LAPS password for the 'lapsDC.laps.com' domain controller, requesting that the password be displayed in clear-text form. The password was stored in -Active Directory in encrypted form and was successfully decrypted. +Active Directory in encrypted form and was successfully decrypted. ### Example 5 diff --git a/docset/winserver2022-ps/laps/Get-LapsDiagnostics.md b/docset/winserver2022-ps/laps/Get-LapsDiagnostics.md index 33a61a6bd7..e8f6848f55 100644 --- a/docset/winserver2022-ps/laps/Get-LapsDiagnostics.md +++ b/docset/winserver2022-ps/laps/Get-LapsDiagnostics.md @@ -18,7 +18,7 @@ machine. ## SYNTAX -```powershell +``` Get-LapsDiagnostics [[-OutputFolder] ] [-CollectNetworkTrace] [-ResetPassword] [] ``` diff --git a/docset/winserver2022-ps/laps/Invoke-LapsPolicyProcessing.md b/docset/winserver2022-ps/laps/Invoke-LapsPolicyProcessing.md index 5f6b3b63cd..07c734ffe8 100644 --- a/docset/winserver2022-ps/laps/Invoke-LapsPolicyProcessing.md +++ b/docset/winserver2022-ps/laps/Invoke-LapsPolicyProcessing.md @@ -17,7 +17,7 @@ Causes Windows Local Administrator Password Solution (LAPS) to process the curre ## SYNTAX -```powershell +``` Invoke-LapsPolicyProcessing [] ``` diff --git a/docset/winserver2022-ps/laps/Reset-LapsPassword.md b/docset/winserver2022-ps/laps/Reset-LapsPassword.md index d19eabfe38..5914604ec8 100644 --- a/docset/winserver2022-ps/laps/Reset-LapsPassword.md +++ b/docset/winserver2022-ps/laps/Reset-LapsPassword.md @@ -18,7 +18,7 @@ the currently managed local account. ## SYNTAX -```powershell +``` Reset-LapsPassword [] ``` diff --git a/docset/winserver2022-ps/laps/Set-LapsADPasswordExpirationTime.md b/docset/winserver2022-ps/laps/Set-LapsADPasswordExpirationTime.md index 8e128b22d0..c1ce99c815 100644 --- a/docset/winserver2022-ps/laps/Set-LapsADPasswordExpirationTime.md +++ b/docset/winserver2022-ps/laps/Set-LapsADPasswordExpirationTime.md @@ -18,7 +18,7 @@ Active Directory computer or domain controller object. ## SYNTAX -```powershell +``` Set-LapsADPasswordExpirationTime [-Credential ] -Identity [-WhenEffective ] [-Domain ] [-DomainController ] [] ``` diff --git a/docset/winserver2022-ps/laps/Set-LapsADReadPasswordPermission.md b/docset/winserver2022-ps/laps/Set-LapsADReadPasswordPermission.md index faddd76397..a98fdf04b1 100644 --- a/docset/winserver2022-ps/laps/Set-LapsADReadPasswordPermission.md +++ b/docset/winserver2022-ps/laps/Set-LapsADReadPasswordPermission.md @@ -18,7 +18,7 @@ permission to query Windows Local Administrator Password Solution (LAPS) passwor ## SYNTAX -```powershell +``` Set-LapsADReadPasswordPermission [-Credential ] -Identity -AllowedPrincipals [-Domain ] [-DomainController ] [-WhatIf] [-Confirm] [] diff --git a/docset/winserver2022-ps/laps/Set-LapsADResetPasswordPermission.md b/docset/winserver2022-ps/laps/Set-LapsADResetPasswordPermission.md index 87eaa3c4b0..93813295e1 100644 --- a/docset/winserver2022-ps/laps/Set-LapsADResetPasswordPermission.md +++ b/docset/winserver2022-ps/laps/Set-LapsADResetPasswordPermission.md @@ -18,7 +18,7 @@ permission to set the Windows Local Administrator Password Solution (LAPS) passw ## SYNTAX -```powershell +``` Set-LapsADResetPasswordPermission [-Credential ] -Identity -AllowedPrincipals [-Domain ] [-DomainController ] [-WhatIf] [-Confirm] [] diff --git a/docset/winserver2022-ps/laps/Update-LapsADSchema.md b/docset/winserver2022-ps/laps/Update-LapsADSchema.md index 5952d03ef7..821c0439b4 100644 --- a/docset/winserver2022-ps/laps/Update-LapsADSchema.md +++ b/docset/winserver2022-ps/laps/Update-LapsADSchema.md @@ -18,7 +18,7 @@ schema attributes. ## SYNTAX -```powershell +``` Update-LapsADSchema [-Credential ] [-WhatIf] [-Confirm] [] ``` From 73d6b1d463f0861f17bee460a1496c3ad0b80164 Mon Sep 17 00:00:00 2001 From: Sean Wheeler Date: Sat, 15 Apr 2023 13:08:41 -0500 Subject: [PATCH 418/965] Formatting and PS Style cleanup - Cmdlet names in backticks - File paths in backticks - Parameter values in backticks - Parameter names in bold - No blank line after SYNOPSIS header - List items must be bulleted or numbered --- .../laps/Find-LapsADExtendedRights.md | 7 ++--- .../laps/Get-LapsAADPassword.md | 17 +++++------ .../laps/Get-LapsADPassword.md | 29 ++++++++++--------- .../laps/Get-LapsDiagnostics.md | 22 +++++++------- .../laps/Invoke-LapsPolicyProcessing.md | 6 ++-- .../laps/Reset-LapsPassword.md | 3 +- .../laps/Set-LapsADAuditing.md | 5 ++-- .../laps/Set-LapsADComputerSelfPermission.md | 12 ++++---- .../laps/Set-LapsADPasswordExpirationTime.md | 7 ++--- .../laps/Set-LapsADReadPasswordPermission.md | 17 +++++------ .../laps/Set-LapsADResetPasswordPermission.md | 7 ++--- .../laps/Update-LapsADSchema.md | 5 ++-- 12 files changed, 65 insertions(+), 72 deletions(-) diff --git a/docset/winserver2022-ps/laps/Find-LapsADExtendedRights.md b/docset/winserver2022-ps/laps/Find-LapsADExtendedRights.md index 0013e71489..eb0bddc7b6 100644 --- a/docset/winserver2022-ps/laps/Find-LapsADExtendedRights.md +++ b/docset/winserver2022-ps/laps/Find-LapsADExtendedRights.md @@ -12,7 +12,6 @@ title: Find-LapsADExtendedRights # Find-LapsADExtendedRights ## SYNOPSIS - Queries Active Directory to find principals that have been granted permission to read Windows Local Administrator Password Solution (LAPS) password attributes. @@ -25,7 +24,7 @@ Find-LapsADExtendedRights [-Credential ] -Identity [-Do ## DESCRIPTION -The **Find-LapsADExtendedRights** cmdlet is used by administrators to query which principals have +The `Find-LapsADExtendedRights` cmdlet is used by administrators to query which principals have been granted permissions to read the LAPS password attributes. ## EXAMPLES @@ -100,8 +99,8 @@ Specifies which Active Directory Organizational Unit to query. This parameter accepts several different name formats which influence the criteria used in the resultant Active Directory search. The supported name formats are as follows: -distinguishedName (begins with a "CN=") -name (for all other inputs) +- distinguishedName (begins with a "CN=") +- name (for all other inputs) ```yaml Type: System.String[] diff --git a/docset/winserver2022-ps/laps/Get-LapsAADPassword.md b/docset/winserver2022-ps/laps/Get-LapsAADPassword.md index b25b3226a1..4da61966aa 100644 --- a/docset/winserver2022-ps/laps/Get-LapsAADPassword.md +++ b/docset/winserver2022-ps/laps/Get-LapsAADPassword.md @@ -12,24 +12,23 @@ title: Get-LapsAADPassword # Get-LapsAADPassword ## SYNOPSIS - Queries Azure Active Directory for the Windows Local Administrator Password Solution (LAPS) credentials on a specified Azure AD device. ## SYNTAX -```s +``` Get-LapsAADPassword -DeviceIds [-IncludePasswords] [-IncludeHistory] [-AsPlainText] [] ``` ## DESCRIPTION -The **Get-LapsAADPassword** cmdlet allows administrators to retrieve LAPS passwords and password +The `Get-LapsAADPassword` cmdlet allows administrators to retrieve LAPS passwords and password history for an Azure Active Directory-joined device. This is implemented by sending queries to Microsoft Graph over the deviceLocalCredentials collection. -The **Get-LapsAADPassword** cmdlet supports two basic modes when querying LAPS passwords: +The `Get-LapsAADPassword` cmdlet supports two basic modes when querying LAPS passwords: The first mode queries for non-sensitive metadata, for example time the password was backed up to Azure and the expected expiration time of a password. This mode requires that the client be granted @@ -39,7 +38,7 @@ The second mode queries for all password information including both the metadata described above and the clear-text form of the password(s). This mode requires that the client be granted the Microsoft Graph `DeviceLocalCredential.Read.All` permission. -The '-DeviceIds' parameter accepts either device names or device IDs, but the underlying Microsoft +The **DeviceIds** parameter accepts either device names or device IDs, but the underlying Microsoft Graph queries only supports querying by device ID. To support this the cmdlet will map a device name input to its corresponding device ID by issuing a separate Microsoft Graph query. This extra query requires the `Device.Read.All` permission. If the target is a Microsoft Managed Desktop device, the @@ -50,14 +49,14 @@ requires the `Device.Read.All` permission. If the target is a Microsoft Managed > workaround is to input the device ID directly. > [!IMPORTANT] -> The **Get-LapsAADPassword** cmdlet is implemented as a wrapper around the Microsoft Graph -> PowerShell library which must be manually installed on the device before **Get-LapsAADPassword** +> The `Get-LapsAADPassword` cmdlet is implemented as a wrapper around the Microsoft Graph +> PowerShell library which must be manually installed on the device before `Get-LapsAADPassword` > can work. Additional configuration steps are required in your Azure Active Directory tenant to > enable authentication to Microsoft Graph and to grant the necessary Microsoft Graph permissions as > described above. See the following topic for more information: > [Get started with Windows LAPS and Azure Active Directory](https://go.microsoft.com/fwlink/?linkid=2233704) -The -Verbose parameter may be used to get additional information about the cmdlet's operation. +The **Verbose** may be used to get additional information about the cmdlet's operation. ## EXAMPLES @@ -171,7 +170,7 @@ Accept wildcard characters: False ### -DeviceIds -Specifies the device name or device ID to query LAPS credentials. +Specifies the device name or device ID to query LAPS credentials. ```yaml Type: System.String[] diff --git a/docset/winserver2022-ps/laps/Get-LapsADPassword.md b/docset/winserver2022-ps/laps/Get-LapsADPassword.md index 050ef83ae0..2010f21eeb 100644 --- a/docset/winserver2022-ps/laps/Get-LapsADPassword.md +++ b/docset/winserver2022-ps/laps/Get-LapsADPassword.md @@ -12,7 +12,6 @@ title: Get-LapsADPassword # Get-LapsADPassword ## SYNOPSIS - Queries Windows Local Administrator Password Solution (LAPS) credentials from Active Directory on a specified AD computer or domain controller object. @@ -21,15 +20,15 @@ specified AD computer or domain controller object. ### NormalMode (Default) ``` -Get-LapsADPassword [-Credential ] [-DecryptionCredential ] [-IncludeHistory] - [-AsPlainText] [-Identity] [] +Get-LapsADPassword [-Credential ] [-DecryptionCredential ] + [-IncludeHistory] [-AsPlainText] [-Identity] [] ``` ### DomainMode ``` -Get-LapsADPassword [-Credential ] [-DecryptionCredential ] [-IncludeHistory] - [-AsPlainText] [-Identity] -Domain [] +Get-LapsADPassword [-Credential ] [-DecryptionCredential ] + [-IncludeHistory] [-AsPlainText] [-Identity] -Domain [] ``` ### DomainControllerMode @@ -42,33 +41,35 @@ Get-LapsADPassword [-Credential ] [-DecryptionCredential ] [-DecryptionCredential ] [-IncludeHistory] - [-AsPlainText] -Port [-Identity] [-DomainController ] [] +Get-LapsADPassword [-Credential ] [-DecryptionCredential ] + [-IncludeHistory] [-AsPlainText] -Port [-Identity] [-DomainController ] + [] ``` ### RecoveryMode ``` -Get-LapsADPassword [-IncludeHistory] [-AsPlainText] [-RecoveryMode] [-Identity] [] +Get-LapsADPassword [-IncludeHistory] [-AsPlainText] [-RecoveryMode] [-Identity] + [] ``` ### SnapshotBrowserRecoveryMode ``` -Get-LapsADPassword [-IncludeHistory] [-AsPlainText] [-RecoveryMode] -Port [-Identity] - [] +Get-LapsADPassword [-IncludeHistory] [-AsPlainText] [-RecoveryMode] -Port + [-Identity] [] ``` ## DESCRIPTION -The **Get-LapsADPassword** cmdlet allows administrators to retrieve LAPS passwords and password +The `Get-LapsADPassword` cmdlet allows administrators to retrieve LAPS passwords and password history for an Active Directory computer or domain controller object. Depending on policy configuration, LAPS passwords may be stored in either clear-text form or encrypted form. The -**Get-LapsADPassword** cmdlet will automatically perform decryption of encrypted passwords. +`Get-LapsADPassword` cmdlet will automatically perform decryption of encrypted passwords. -The **Get-LapsADPassword** cmdlet may also be used to connected to a mounted Active Directory snapshot. +The `Get-LapsADPassword` cmdlet may also be used to connected to a mounted Active Directory snapshot. -The -Verbose parameter may be used to get additional information about the cmdlet's operation. +The **Verbose** may be used to get additional information about the cmdlet's operation. ## EXAMPLES diff --git a/docset/winserver2022-ps/laps/Get-LapsDiagnostics.md b/docset/winserver2022-ps/laps/Get-LapsDiagnostics.md index e8f6848f55..6186411aa7 100644 --- a/docset/winserver2022-ps/laps/Get-LapsDiagnostics.md +++ b/docset/winserver2022-ps/laps/Get-LapsDiagnostics.md @@ -12,23 +12,23 @@ title: Get-LapsDiagnostics # Get-LapsDiagnostics ## SYNOPSIS - Collects Windows Local Administrator Password Solution (LAPS) logs and tracing from the local machine. ## SYNTAX ``` -Get-LapsDiagnostics [[-OutputFolder] ] [-CollectNetworkTrace] [-ResetPassword] [] +Get-LapsDiagnostics [[-OutputFolder] ] [-CollectNetworkTrace] [-ResetPassword] + [] ``` ## DESCRIPTION -The **Get-LapsDiagnostics** cmdlet collects LAPS logs and tracing from the local machine, and copies -them into a .zip file. This cmdlet is primarily intended for support and testing scenarios but of -course may be used at any time. The name of the resultant .zip file includes the machine name and -current timestamp, and by default is written under the %TEMP%\LapsDiagnostics folder. The output -folder may be customized using the -OutputFolder parameter. +The `Get-LapsDiagnostics` cmdlet collects LAPS logs and tracing from the local machine, and copies +them into a `.zip` file. This cmdlet is primarily intended for support and testing scenarios but of +course may be used at any time. The name of the resultant `.zip` file includes the machine name and +current timestamp, and by default is written under the `$env:TEMP\LapsDiagnostics` folder. The +output folder may be customized using the **OutputFolder**. ## EXAMPLES @@ -82,7 +82,7 @@ tracing. ### -CollectNetworkTrace -Specifies that network tracing should also be collected and included in the resultant .zip file. +Specifies that network tracing should also be collected and included in the resultant `.zip` file. ```yaml Type: System.Management.Automation.SwitchParameter @@ -98,7 +98,7 @@ Accept wildcard characters: False ### -OutputFolder -Specifies that the resultant .zip file should be placed under the specified folder. +Specifies that the resultant `.zip` file should be placed under the specified folder. ```yaml Type: System.String @@ -116,10 +116,10 @@ Accept wildcard characters: False Specifies that logs and tracing should be collected across a forced password reset for the currently managed local account. In this mode the cmdlet collects tracing across a call to the -**Reset-LapsPassword** cmdlet. +`Reset-LapsPassword` cmdlet. If this parameter is not specified, the cmdlet collects tracing across a call to the -**Invoke-LapsProcessingCycle** cmdlet. +`Invoke-LapsProcessingCycle` cmdlet. ```yaml Type: System.Management.Automation.SwitchParameter diff --git a/docset/winserver2022-ps/laps/Invoke-LapsPolicyProcessing.md b/docset/winserver2022-ps/laps/Invoke-LapsPolicyProcessing.md index 07c734ffe8..b02a4ab4ce 100644 --- a/docset/winserver2022-ps/laps/Invoke-LapsPolicyProcessing.md +++ b/docset/winserver2022-ps/laps/Invoke-LapsPolicyProcessing.md @@ -12,8 +12,8 @@ title: Invoke-LapsPolicyProcessing # Invoke-LapsPolicyProcessing ## SYNOPSIS - -Causes Windows Local Administrator Password Solution (LAPS) to process the currently configured LAPS policy. +Causes Windows Local Administrator Password Solution (LAPS) to process the currently configured LAPS +policy. ## SYNTAX @@ -23,7 +23,7 @@ Invoke-LapsPolicyProcessing [] ## DESCRIPTION -The **Invoke-LapsPolicyProcessing** cmdlet tells Windows Local Administrator Password Solution +The `Invoke-LapsPolicyProcessing` cmdlet tells Windows Local Administrator Password Solution (LAPS) to process the currently configured LAPS policy. The cmdlet does not return detailed information about the results of the operation. See diff --git a/docset/winserver2022-ps/laps/Reset-LapsPassword.md b/docset/winserver2022-ps/laps/Reset-LapsPassword.md index 5914604ec8..d880412796 100644 --- a/docset/winserver2022-ps/laps/Reset-LapsPassword.md +++ b/docset/winserver2022-ps/laps/Reset-LapsPassword.md @@ -12,7 +12,6 @@ title: Reset-LapsPassword # Reset-LapsPassword ## SYNOPSIS - Causes Windows Local Administrator Password Solution (LAPS) to immediately rotate the password for the currently managed local account. @@ -24,7 +23,7 @@ Reset-LapsPassword [] ## DESCRIPTION -The **Reset-LapsPassword** cmdlet tells Windows Local Administrator Password Solution (LAPS) to +The `Reset-LapsPassword` cmdlet tells Windows Local Administrator Password Solution (LAPS) to immediately rotate the password for the currently managed local account. This operation is performed regardless of the state of the current password, for example it does not matter whether the current password is considered expired or not. diff --git a/docset/winserver2022-ps/laps/Set-LapsADAuditing.md b/docset/winserver2022-ps/laps/Set-LapsADAuditing.md index 3f8be8d695..7eaa46aaa6 100644 --- a/docset/winserver2022-ps/laps/Set-LapsADAuditing.md +++ b/docset/winserver2022-ps/laps/Set-LapsADAuditing.md @@ -12,7 +12,6 @@ title: Set-LapsADAuditing # Set-LapsADAuditing ## SYNOPSIS - Configures an Active Directory Organizational Unit to enable auditing on the Windows Local Administrator Password Solution (LAPS) password schema attributes. @@ -140,8 +139,8 @@ Specifies which Active Directory Organizational Unit to update. This parameter accepts several different name formats which influence the criteria used in the resultant Active Directory search. The supported name formats are as follows: -distinguishedName (begins with a "CN=") -name (for all other inputs) +- distinguishedName (begins with a "CN=") +- name (for all other inputs) ```yaml Type: System.String[] diff --git a/docset/winserver2022-ps/laps/Set-LapsADComputerSelfPermission.md b/docset/winserver2022-ps/laps/Set-LapsADComputerSelfPermission.md index c02f744b10..6776574293 100644 --- a/docset/winserver2022-ps/laps/Set-LapsADComputerSelfPermission.md +++ b/docset/winserver2022-ps/laps/Set-LapsADComputerSelfPermission.md @@ -12,20 +12,20 @@ title: Set-LapsADComputerSelfPermission # Set-LapsADComputerSelfPermission ## SYNOPSIS - Configures permissions on an Active Directory Organizational Unit to enable computers in that OU to update their Windows Local Administrator Password Solution (LAPS) passwords. ## SYNTAX ``` -Set-LapsADComputerSelfPermission -Identity [-Domain ] [-DomainController ] - [-Credential ] [-WhatIf] [-Confirm] [] +Set-LapsADComputerSelfPermission -Identity [-Domain ] + [-DomainController ] [-Credential ] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION -The **Set-LapsADComputerSelfPermission** cmdlet is used by administrators to configure security +The `Set-LapsADComputerSelfPermission` cmdlet is used by administrators to configure security permissions on an Active Directory Organizational Unit (OU) to allow computers in that OU to update their LAPS passwords. @@ -101,8 +101,8 @@ Specifies which Active Directory Organizational Unit to update. This parameter accepts several different name formats which influence the criteria used in the resultant Active Directory search. The supported name formats are as follows: -distinguishedName (begins with a "CN=") -name (for all other inputs) +- distinguishedName (begins with a "CN=") +- name (for all other inputs) ```yaml Type: System.String[] diff --git a/docset/winserver2022-ps/laps/Set-LapsADPasswordExpirationTime.md b/docset/winserver2022-ps/laps/Set-LapsADPasswordExpirationTime.md index c1ce99c815..77aed60311 100644 --- a/docset/winserver2022-ps/laps/Set-LapsADPasswordExpirationTime.md +++ b/docset/winserver2022-ps/laps/Set-LapsADPasswordExpirationTime.md @@ -12,20 +12,19 @@ title: Set-LapsADPasswordExpirationTime # Set-LapsADPasswordExpirationTime ## SYNOPSIS - Sets the Windows Local Administrator Password Solution (LAPS) password expiration timestamp on an Active Directory computer or domain controller object. ## SYNTAX ``` -Set-LapsADPasswordExpirationTime [-Credential ] -Identity [-WhenEffective ] - [-Domain ] [-DomainController ] [] +Set-LapsADPasswordExpirationTime [-Credential ] -Identity + [-WhenEffective ] [-Domain ] [-DomainController ] [] ``` ## DESCRIPTION -The **Set-LapsADPasswordExpirationTime** cmdlet is used by administrators to configure the LAPS +The `Set-LapsADPasswordExpirationTime` cmdlet is used by administrators to configure the LAPS password expiration time on an Active Directory computer or domain controller object. > [!TIP] diff --git a/docset/winserver2022-ps/laps/Set-LapsADReadPasswordPermission.md b/docset/winserver2022-ps/laps/Set-LapsADReadPasswordPermission.md index a98fdf04b1..488ad86c7b 100644 --- a/docset/winserver2022-ps/laps/Set-LapsADReadPasswordPermission.md +++ b/docset/winserver2022-ps/laps/Set-LapsADReadPasswordPermission.md @@ -12,7 +12,6 @@ title: Set-LapsADReadPasswordPermission # Set-LapsADReadPasswordPermission ## SYNOPSIS - Configures security on an Active Directory Organizational Unit to grant specific users or groups permission to query Windows Local Administrator Password Solution (LAPS) passwords. @@ -26,11 +25,11 @@ Set-LapsADReadPasswordPermission [-Credential ] -Identity Set-LapsADAuditing -Identity LapsTestOU -AuditedPrincipals "laps.com\LapsAdminsGroup" -AuditType Failure +Set-LapsADAuditing -Identity LapsTestOU -AuditedPrincipals "laps.com\LapsAdminsGroup" -AuditType Failure OU=LapsTestOU,DC=laps,DC=com ``` diff --git a/docset/winserver2022-ps/laps/Set-LapsADComputerSelfPermission.md b/docset/winserver2022-ps/laps/Set-LapsADComputerSelfPermission.md index 6776574293..5878118f08 100644 --- a/docset/winserver2022-ps/laps/Set-LapsADComputerSelfPermission.md +++ b/docset/winserver2022-ps/laps/Set-LapsADComputerSelfPermission.md @@ -34,8 +34,10 @@ their LAPS passwords. ### Example 1 ```powershell -PS C:\> Set-LapsADComputerSelfPermission -Identity LapsTestOU +Set-LapsADComputerSelfPermission -Identity LapsTestOU +``` +```Output Name DistinguishedName ---- ----------------- LapsTestOU OU=LapsTestOU,DC=laps,DC=com diff --git a/docset/winserver2022-ps/laps/Set-LapsADPasswordExpirationTime.md b/docset/winserver2022-ps/laps/Set-LapsADPasswordExpirationTime.md index 77aed60311..96863f1726 100644 --- a/docset/winserver2022-ps/laps/Set-LapsADPasswordExpirationTime.md +++ b/docset/winserver2022-ps/laps/Set-LapsADPasswordExpirationTime.md @@ -37,8 +37,10 @@ password expiration time on an Active Directory computer or domain controller ob ### Example 1 ```powershell -PS C:\> Set-LapsADPasswordExpirationTime -Identity lapsClient +Set-LapsADPasswordExpirationTime -Identity lapsClient +``` +```Output DistinguishedName Status ----------------- ------ CN=LAPSCLIENT,OU=LapsTestOU,DC=laps,DC=com PasswordReset @@ -50,8 +52,10 @@ expiring the password immediately). ### Example 2 ```powershell -PS C:\> Set-LapsADPasswordExpirationTime -Identity lapsFe -WhenEffective (Get-Date -Date "07/04/2023 13:00:00") +Set-LapsADPasswordExpirationTime -Identity lapsClient -WhenEffective (Get-Date -Date "07/04/2023 13:00:00") +``` +```Output DistinguishedName Status ----------------- ------ CN=LAPSCLIENT,OU=LapsTestOU,DC=laps,DC=com PasswordReset @@ -62,8 +66,10 @@ This examples show setting the LAPS password expiration time to a specific date. ### Example 3 ```powershell -PS C:\> Set-LapsADPasswordExpirationTime -Identity lapsFe -WhenEffective (DateTime::Now.AddDays(1)) +Set-LapsADPasswordExpirationTime -Identity lapsClient -WhenEffective (DateTime::Now.AddDays(1)) +``` +```Output DistinguishedName Status ----------------- ------ CN=LAPSCLIENT,OU=LapsTestOU,DC=laps,DC=com PasswordReset @@ -130,10 +136,10 @@ expiration time on. This parameter accepts several different name formats which influence the criteria used when searching Active Directory for the target device. The supported name formats are as follows: -distinguishedName (begins with a "CN=") -samAccountName (begins with a '$") -dnsHostName (contains at least one '.' character) -name (for all other inputs) +- distinguishedName (begins with a "CN=") +- samAccountName (begins with a `$`) +- dnsHostName (contains at least one `.` character) +- name (for all other inputs) ```yaml Type: System.String[] diff --git a/docset/winserver2022-ps/laps/Set-LapsADReadPasswordPermission.md b/docset/winserver2022-ps/laps/Set-LapsADReadPasswordPermission.md index 488ad86c7b..1936e942da 100644 --- a/docset/winserver2022-ps/laps/Set-LapsADReadPasswordPermission.md +++ b/docset/winserver2022-ps/laps/Set-LapsADReadPasswordPermission.md @@ -36,8 +36,10 @@ built-in principal, such as `Domain Admins`. ### Example 1 ```powershell -PS C:\> Set-LapsADReadPasswordPermission -Identity LapsTestOU -AllowedPrincipals "Domain Admins" +Set-LapsADReadPasswordPermission -Identity LapsTestOU -AllowedPrincipals "Domain Admins" +``` +```Output Name DistinguishedName ---- ----------------- LapsTestOU OU=LapsTestOU,DC=laps,DC=com @@ -49,8 +51,10 @@ well-known user or group. ### Example 2 ```powershell -PS C:\> Set-LapsADReadPasswordPermission -Identity LapsTestOU -AllowedPrincipals @("S-1-5-21-2889755270-1324585639-743026605-1215") +Set-LapsADReadPasswordPermission -Identity LapsTestOU -AllowedPrincipals @("S-1-5-21-2889755270-1324585639-743026605-1215") +``` +```Output Name DistinguishedName ---- ----------------- LapsTestOU OU=LapsTestOU,DC=laps,DC=com @@ -61,8 +65,10 @@ This example shows how to run the cmdlet specifying a user SID as input. ### Example 3 ```powershell -PS C:\> Set-LapsADReadPasswordPermission -Identity 'OU=LapsTestOU,DC=laps,DC=com' -AllowedPrincipals @("laps.com\LapsAdmin1", "LapsAdmin2@laps.com") +Set-LapsADReadPasswordPermission -Identity 'OU=LapsTestOU,DC=laps,DC=com' -AllowedPrincipals @("laps.com\LapsAdmin1", "LapsAdmin2@laps.com") +``` +```Output Name DistinguishedName ---- ----------------- LapsTestOU OU=LapsTestOU,DC=laps,DC=com @@ -74,9 +80,13 @@ formats. ### Example 4 ```powershell -PS C:\> Set-LapsADReadPasswordPermission -Identity LapsTestOU -AllowedPrincipals @("LapsAdministratorsGroup") -Set-LapsADReadPasswordPermission : The 'LapsAdministratorsGroup' account appears to be an isolated name but is not a well-known name. Please use a -fully qualified name instead, such as "LAPSAdmins@contoso.com" or "contoso\LAPSAdmins" +Set-LapsADReadPasswordPermission -Identity LapsTestOU -AllowedPrincipals @("LapsAdministratorsGroup") +``` + +```Output +Set-LapsADReadPasswordPermission : The 'LapsAdministratorsGroup' account appears to be an isolated +name but is not a well-known name. Please use a fully qualified name instead, such as +"LAPSAdmins@contoso.com" or "contoso\LAPSAdmins" At line:1 char:1 + Set-LapsADReadPasswordPermission -Identity LapsTestOU -AllowedPrincip ... + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/docset/winserver2022-ps/laps/Set-LapsADResetPasswordPermission.md b/docset/winserver2022-ps/laps/Set-LapsADResetPasswordPermission.md index b60c54b486..c4a0cff861 100644 --- a/docset/winserver2022-ps/laps/Set-LapsADResetPasswordPermission.md +++ b/docset/winserver2022-ps/laps/Set-LapsADResetPasswordPermission.md @@ -36,8 +36,10 @@ specified name resolves to a built-in principal (for example "Domain Admins"). ### Example 1 ```powershell -PS C:\> Set-LapsADResetPasswordPermission -Identity LapsTestOU -AllowedPrincipals "Domain Admins" +Set-LapsADResetPasswordPermission -Identity LapsTestOU -AllowedPrincipals "Domain Admins" +``` +```Output Name DistinguishedName ---- ----------------- LapsTestOU OU=LapsTestOU,DC=laps,DC=com @@ -49,8 +51,10 @@ well-known user or group. ### Example 2 ```powershell -PS C:\> Set-LapsADResetPasswordPermission -Identity LapsTestOU -AllowedPrincipals @("S-1-5-21-2889755270-1324585639-743026605-1215") +Set-LapsADResetPasswordPermission -Identity LapsTestOU -AllowedPrincipals @("S-1-5-21-2889755270-1324585639-743026605-1215") +``` +```Output Name DistinguishedName ---- ----------------- LapsTestOU OU=LapsTestOU,DC=laps,DC=com @@ -61,8 +65,10 @@ This example shows how to run the cmdlet specifying a user SID as input. ### Example 3 ```powershell -PS C:\> Set-LapsADResetPasswordPermission -Identity 'OU=LapsTestOU,DC=laps,DC=com' -AllowedPrincipals @("laps.com\LapsAdmin1", "LapsAdmin2@laps.com") +Set-LapsADResetPasswordPermission -Identity 'OU=LapsTestOU,DC=laps,DC=com' -AllowedPrincipals @("laps.com\LapsAdmin1", "LapsAdmin2@laps.com") +``` +```Output Name DistinguishedName ---- ----------------- LapsTestOU OU=LapsTestOU,DC=laps,DC=com @@ -74,9 +80,13 @@ formats) as input. ### Example 4 ```powershell -PS C:\> Set-LapsADResetPasswordPermission -Identity LapsTestOU -AllowedPrincipals @("LapsAdministratorsGroup") -Set-LapsADReadPasswordPermission : The 'LapsAdministratorsGroup' account appears to be an isolated name but is not a well-known name. Please use a -fully qualified name instead, such as "LapsAdministratorsGroup@contoso.com" or "contoso\LapsAdministratorsGroup" +Set-LapsADResetPasswordPermission -Identity LapsTestOU -AllowedPrincipals @("LapsAdministratorsGroup") +``` + +```Output +Set-LapsADReadPasswordPermission : The 'LapsAdministratorsGroup' account appears to be an isolated +name but is not a well-known name. Please use a fully qualified name instead, such as +"LapsAdministratorsGroup@contoso.com" or "contoso\LapsAdministratorsGroup" At line:1 char:1 + Set-LapsADReadPasswordPermission -Identity LapsTestOU -AllowedPrincip ... + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/docset/winserver2022-ps/laps/Update-LapsADSchema.md b/docset/winserver2022-ps/laps/Update-LapsADSchema.md index 43ca246850..b42063d797 100644 --- a/docset/winserver2022-ps/laps/Update-LapsADSchema.md +++ b/docset/winserver2022-ps/laps/Update-LapsADSchema.md @@ -23,7 +23,7 @@ Update-LapsADSchema [-Credential ] [-WhatIf] [-Confirm] [ Update-LapsADSchema +Update-LapsADSchema +``` +```Output The 'ms-LAPS-Password' schema attribute needs to be added to the AD schema. Do you want to proceed? [Y] Yes [A] Yes to All [N] No [L] No to All [S] Suspend [?] Help (default is "Y"): A ``` -This example shows how to run the Update-LapsADSchema cmdlet. +This example extends the AD schema to add the LAPS attributes. ## PARAMETERS @@ -115,4 +117,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS [Windows LAPS Overview](https://go.microsoft.com/fwlink/?linkid=2233901) + [Windows LAPS schema extensions reference](https://go.microsoft.com/fwlink/?linkid=2233804) From bc9dd2722edbedd4ddfe3a0ea68ba0ae2be6e94f Mon Sep 17 00:00:00 2001 From: Jay Simmons Date: Sat, 15 Apr 2023 11:32:18 -0700 Subject: [PATCH 420/965] Remove dangling character. --- docset/winserver2022-ps/laps/Get-LapsAADPassword.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/laps/Get-LapsAADPassword.md b/docset/winserver2022-ps/laps/Get-LapsAADPassword.md index b25b3226a1..852aeb04a3 100644 --- a/docset/winserver2022-ps/laps/Get-LapsAADPassword.md +++ b/docset/winserver2022-ps/laps/Get-LapsAADPassword.md @@ -18,7 +18,7 @@ credentials on a specified Azure AD device. ## SYNTAX -```s +``` Get-LapsAADPassword -DeviceIds [-IncludePasswords] [-IncludeHistory] [-AsPlainText] [] ``` From dbef4cc0525858d4f16986eb4ad56e4edff74f62 Mon Sep 17 00:00:00 2001 From: Sean Wheeler Date: Sat, 15 Apr 2023 14:00:19 -0500 Subject: [PATCH 421/965] Grammar cleanup - which vs that - see https://owl.purdue.edu/owl/general_writing/grammar/that_vs_which.html - avoid using `will` - more formatting cleanup --- .../laps/Find-LapsADExtendedRights.md | 8 +-- .../laps/Get-LapsAADPassword.md | 42 ++++++----- .../laps/Get-LapsADPassword.md | 70 +++++++++++-------- .../laps/Get-LapsDiagnostics.md | 2 +- .../laps/Invoke-LapsPolicyProcessing.md | 2 +- .../laps/Reset-LapsPassword.md | 6 +- .../laps/Set-LapsADAuditing.md | 10 +-- .../laps/Set-LapsADComputerSelfPermission.md | 10 +-- .../laps/Set-LapsADPasswordExpirationTime.md | 20 +++--- .../laps/Set-LapsADReadPasswordPermission.md | 12 ++-- .../laps/Set-LapsADResetPasswordPermission.md | 25 +++---- .../laps/Update-LapsADSchema.md | 6 +- 12 files changed, 117 insertions(+), 96 deletions(-) diff --git a/docset/winserver2022-ps/laps/Find-LapsADExtendedRights.md b/docset/winserver2022-ps/laps/Find-LapsADExtendedRights.md index 78b9266cfb..500e2ddfc4 100644 --- a/docset/winserver2022-ps/laps/Find-LapsADExtendedRights.md +++ b/docset/winserver2022-ps/laps/Find-LapsADExtendedRights.md @@ -47,8 +47,8 @@ This example shows how to run the cmdlet. ### -Credential -Specifies the credentials to use when updating Active Directory. If not specified the current user's -credentials will be used. +Specifies the credentials to use when updating Active Directory. If not specified, the current +user's credentials are used. ```yaml Type: System.Management.Automation.PSCredential @@ -98,10 +98,10 @@ Accept wildcard characters: False Specifies which Active Directory Organizational Unit to query. -This parameter accepts several different name formats which influence the criteria used in the +This parameter accepts several different name formats that influence the criteria used in the resultant Active Directory search. The supported name formats are as follows: -- distinguishedName (begins with a "CN=") +- distinguishedName (begins with a `CN=`) - name (for all other inputs) ```yaml diff --git a/docset/winserver2022-ps/laps/Get-LapsAADPassword.md b/docset/winserver2022-ps/laps/Get-LapsAADPassword.md index eb74c60bc7..6bed0d7f03 100644 --- a/docset/winserver2022-ps/laps/Get-LapsAADPassword.md +++ b/docset/winserver2022-ps/laps/Get-LapsAADPassword.md @@ -39,21 +39,21 @@ described above and the clear-text form of the password(s). This mode requires t granted the Microsoft Graph `DeviceLocalCredential.Read.All` permission. The **DeviceIds** parameter accepts either device names or device IDs, but the underlying Microsoft -Graph queries only supports querying by device ID. To support this the cmdlet will map a device name -input to its corresponding device ID by issuing a separate Microsoft Graph query. This extra query -requires the `Device.Read.All` permission. If the target is a Microsoft Managed Desktop device, the -`DeviceManagementManagedDevices.Read.All` permission may also be required. +Graph queries only supports querying by device ID. To support this query, the cmdlet maps a device +name input to its corresponding device ID by issuing a separate Microsoft Graph query. This extra +query requires the `Device.Read.All` permission. If the target is a Microsoft Managed Desktop +device, the `DeviceManagementManagedDevices.Read.All` permission may also be required. > [!TIP] -> If there are multiple devices in the tenant with the same name, the cmdlet will fail. The -> workaround is to input the device ID directly. +> If there are multiple devices in the tenant with the same name, the cmdlet fails. The workaround +> is to input the device ID directly. > [!IMPORTANT] -> The `Get-LapsAADPassword` cmdlet is implemented as a wrapper around the Microsoft Graph -> PowerShell library which must be manually installed on the device before `Get-LapsAADPassword` -> can work. Additional configuration steps are required in your Azure Active Directory tenant to -> enable authentication to Microsoft Graph and to grant the necessary Microsoft Graph permissions as -> described above. See the following topic for more information: +> The `Get-LapsAADPassword` cmdlet is implemented as a wrapper around the Microsoft Graph PowerShell +> library, which must be manually installed on the device before `Get-LapsAADPassword` can work. +> Additional configuration steps are required in your Azure Active Directory tenant to enable +> authentication to Microsoft Graph and to grant the necessary Microsoft Graph permissions. For more +> information, see > [Get started with Windows LAPS and Azure Active Directory](https://go.microsoft.com/fwlink/?linkid=2233704) The **Verbose** may be used to get additional information about the cmdlet's operation. @@ -75,7 +75,7 @@ DeviceName DeviceId PasswordExpirationTime LAPSAAD dfc6d5f0-225a-4b46-adcf-73a349a31e70 4/22/2023 8:45:29 AM ``` -This example shows how to query basic LAPS password metadata information for the target device which +This example shows how to query basic LAPS password metadata information for the target device that is specified by device name. ### Example 2 @@ -93,15 +93,18 @@ PasswordExpirationTime : 4/22/2023 8:45:29 AM PasswordUpdateTime : 4/11/2023 8:45:29 AM ``` -This example shows how to query the full LAPS password information for the target device which is +This example shows how to query the full LAPS password information for the target device that is specified by device ID. ### Example 3 ```powershell Connect-MgGraph -TenantId b20f5886-bddf-43bb-aee6-dda0c87c5fa2 -ClientId 9fa98e34-277f-47fa-9847-e36bdf6bca1f -Welcome To Microsoft Graph! Get-LapsAADPassword -DeviceIds dfc6d5f0-225a-4b46-adcf-73a349a31e70 -IncludePasswords -AsPlainText +``` + +```Output +Welcome To Microsoft Graph! DeviceName : LAPSAAD DeviceId : dfc6d5f0-225a-4b46-adcf-73a349a31e70 @@ -111,15 +114,18 @@ PasswordExpirationTime : 4/22/2023 8:45:29 AM PasswordUpdateTime : 4/11/2023 8:45:29 AM ``` -This example shows how to query the full LAPS password information for the target device which is +This example shows how to query the full LAPS password information for the target device that is specified by device ID, and displaying the password in clear-text form. ### Example 4 ```powershell Connect-MgGraph -TenantId b20f5886-bddf-43bb-aee6-dda0c87c5fa2 -ClientId 9fa98e34-277f-47fa-9847-e36bdf6bca1f -Welcome To Microsoft Graph! Get-LapsAADPassword -DeviceIds lapsAAD -IncludePasswords -AsPlainText -IncludeHistory +``` + +```Output +Welcome To Microsoft Graph! DeviceName : LAPSAAD DeviceId : dfc6d5f0-225a-4b46-adcf-73a349a31e70 @@ -143,7 +149,7 @@ PasswordExpirationTime : PasswordUpdateTime : 4/11/2023 8:45:29 AM ``` -This example shows how to query the full LAPS password information for the target device which is +This example shows how to query the full LAPS password information for the target device that is specified by device name, requesting password history, and displaying the passwords in clear-text form. @@ -152,7 +158,7 @@ form. ### -AsPlainText Specify this parameter to return the LAPS passwords in clear-text format. The default behavior is to -return the LAPS passwords wrapped in a .NET SecureString object. +return the LAPS passwords wrapped in a .NET **SecureString** object. > [!IMPORTANT] > Using this parameter exposes the returned clear-text password to casual viewing and may pose a diff --git a/docset/winserver2022-ps/laps/Get-LapsADPassword.md b/docset/winserver2022-ps/laps/Get-LapsADPassword.md index 2520c9417c..98a11c9c5e 100644 --- a/docset/winserver2022-ps/laps/Get-LapsADPassword.md +++ b/docset/winserver2022-ps/laps/Get-LapsADPassword.md @@ -65,9 +65,10 @@ Get-LapsADPassword [-IncludeHistory] [-AsPlainText] [-RecoveryMode] -Port [!IMPORTANT] > Using this parameter exposes the returned clear-text password to casual viewing and may pose a @@ -255,7 +268,7 @@ Accept wildcard characters: False ### -Credential Specifies a set of credentials to use when querying Active Directory for the LAPS credentials. If -not specified the current user's credentials will be used. +not specified, the current user's credentials are used. ```yaml Type: System.Management.Automation.PSCredential @@ -271,8 +284,8 @@ Accept wildcard characters: False ### -DecryptionCredential -Specifies a set of credentials to use when decrypting encrypted LAPS credentials. If not specified -the current user's credentials will be used. +Specifies a set of credentials to use when decrypting encrypted LAPS credentials. If not specified, +the current user's credentials are used. ```yaml Type: System.Management.Automation.PSCredential @@ -336,13 +349,13 @@ Accept wildcard characters: False Specifies which Active Directory computer or domain controller object to retrieve LAPS credentials from. -This parameter accepts several different name formats which influence the criteria used when +This parameter accepts several different name formats that influence the criteria used when searching Active Directory for the target device. The supported name formats are as follows: -distinguishedName (begins with a "CN=") -samAccountName (begins with a '$") -dnsHostName (contains at least one '.' character) -name (for all other inputs) +- distinguishedName (begins with a `CN=`) +- samAccountName (begins with a '$") +- dnsHostName (contains at least one '.' character) +- name (for all other inputs) ```yaml Type: System.String[] @@ -390,12 +403,13 @@ Accept wildcard characters: False ### -RecoveryMode -This parameter provides a last-ditch option when it is no longer possible to decrypt a given LAPS +This parameter provides a last-ditch option when it's no longer possible to decrypt a given LAPS credential via the normal mechanisms. For example, this might be necessary if a LAPS credential was -encrypted against a group which has since been deleted. +encrypted against a group that has since been deleted. >[!IMPORTANT] ->When specifying this parameter, you MUST be logged-in locally as a Domain Administrator on a writable domain controller. +> When specifying this parameter, you MUST be logged-in locally as a Domain Administrator on a +> writable domain controller. ```yaml Type: System.Management.Automation.SwitchParameter diff --git a/docset/winserver2022-ps/laps/Get-LapsDiagnostics.md b/docset/winserver2022-ps/laps/Get-LapsDiagnostics.md index ca34ed862d..5bb0ad8332 100644 --- a/docset/winserver2022-ps/laps/Get-LapsDiagnostics.md +++ b/docset/winserver2022-ps/laps/Get-LapsDiagnostics.md @@ -130,7 +130,7 @@ Specifies that logs and tracing should be collected across a forced password res managed local account. In this mode the cmdlet collects tracing across a call to the `Reset-LapsPassword` cmdlet. -If this parameter is not specified, the cmdlet collects tracing across a call to the +If this parameter isn't specified, the cmdlet collects tracing across a call to the `Invoke-LapsProcessingCycle` cmdlet. ```yaml diff --git a/docset/winserver2022-ps/laps/Invoke-LapsPolicyProcessing.md b/docset/winserver2022-ps/laps/Invoke-LapsPolicyProcessing.md index ad6c3ff8af..337dbc397d 100644 --- a/docset/winserver2022-ps/laps/Invoke-LapsPolicyProcessing.md +++ b/docset/winserver2022-ps/laps/Invoke-LapsPolicyProcessing.md @@ -26,7 +26,7 @@ Invoke-LapsPolicyProcessing [] The `Invoke-LapsPolicyProcessing` cmdlet tells Windows Local Administrator Password Solution (LAPS) to process the currently configured LAPS policy. -The cmdlet does not return detailed information about the results of the operation. See +The cmdlet doesn't return detailed information about the results of the operation. See [Use Windows LAPS event logs](https://go.microsoft.com/fwlink/?linkid=2234103) for more information on querying the resultant event log entries to get specific information on the outcome of the operation. diff --git a/docset/winserver2022-ps/laps/Reset-LapsPassword.md b/docset/winserver2022-ps/laps/Reset-LapsPassword.md index 2bcc24379d..1fc2e7ef34 100644 --- a/docset/winserver2022-ps/laps/Reset-LapsPassword.md +++ b/docset/winserver2022-ps/laps/Reset-LapsPassword.md @@ -25,15 +25,15 @@ Reset-LapsPassword [] The `Reset-LapsPassword` cmdlet tells Windows Local Administrator Password Solution (LAPS) to immediately rotate the password for the currently managed local account. This operation is performed -regardless of the state of the current password, for example it does not matter whether the current +regardless of the state of the current password, for example it doesn't matter whether the current password is considered expired or not. > [!IMPORTANT] > This cmdlet is intended and recommended only for rare situations that require an > immediate password rotation, for example as a response to a machine security breach situation. -> Excessively frequent usage of this cmdlet is not recommended. +> Excessively frequent usage of this cmdlet isn't recommended. -The cmdlet does not return detailed information about the results of the operation. See +The cmdlet doesn't return detailed information about the results of the operation. See [Use Windows LAPS event logs](https://go.microsoft.com/fwlink/?linkid=2234103) for more information on querying the resultant event log entries to get specific information on the outcome of the operation. diff --git a/docset/winserver2022-ps/laps/Set-LapsADAuditing.md b/docset/winserver2022-ps/laps/Set-LapsADAuditing.md index 15a128a969..3c70ae0615 100644 --- a/docset/winserver2022-ps/laps/Set-LapsADAuditing.md +++ b/docset/winserver2022-ps/laps/Set-LapsADAuditing.md @@ -85,8 +85,8 @@ Accept wildcard characters: False ### -Credential -Specifies the credentials to use when updating Active Directory. If not specified the current user's -credentials will be used. +Specifies the credentials to use when updating Active Directory. If not specified, the current +user's credentials are used. ```yaml Type: System.Management.Automation.PSCredential @@ -136,10 +136,10 @@ Accept wildcard characters: False Specifies which Active Directory Organizational Unit to update. -This parameter accepts several different name formats which influence the criteria used in the +This parameter accepts several different name formats that influence the criteria used in the resultant Active Directory search. The supported name formats are as follows: -- distinguishedName (begins with a "CN=") +- distinguishedName (begins with a `CN=`) - name (for all other inputs) ```yaml @@ -172,7 +172,7 @@ Accept wildcard characters: False ### -WhatIf -Shows what would happen if the cmdlet runs. The cmdlet is not run. +Shows what would happen if the cmdlet runs. The cmdlet isn't run. ```yaml Type: System.Management.Automation.SwitchParameter diff --git a/docset/winserver2022-ps/laps/Set-LapsADComputerSelfPermission.md b/docset/winserver2022-ps/laps/Set-LapsADComputerSelfPermission.md index 5878118f08..2c7770cb14 100644 --- a/docset/winserver2022-ps/laps/Set-LapsADComputerSelfPermission.md +++ b/docset/winserver2022-ps/laps/Set-LapsADComputerSelfPermission.md @@ -49,8 +49,8 @@ This example demonstrates how to run the cmdlet. ### -Credential -Specifies the credentials to use when updating Active Directory. If not specified the current user's -credentials will be used. +Specifies the credentials to use when updating Active Directory. If not specified, the current +user's credentials are used. ```yaml Type: System.Management.Automation.PSCredential @@ -100,10 +100,10 @@ Accept wildcard characters: False Specifies which Active Directory Organizational Unit to update. -This parameter accepts several different name formats which influence the criteria used in the +This parameter accepts several different name formats that influence the criteria used in the resultant Active Directory search. The supported name formats are as follows: -- distinguishedName (begins with a "CN=") +- distinguishedName (begins with a `CN=`) - name (for all other inputs) ```yaml @@ -137,7 +137,7 @@ Accept wildcard characters: False ### -WhatIf Shows what would happen if the cmdlet runs. -The cmdlet is not run. +The cmdlet isn't run. ```yaml Type: System.Management.Automation.SwitchParameter diff --git a/docset/winserver2022-ps/laps/Set-LapsADPasswordExpirationTime.md b/docset/winserver2022-ps/laps/Set-LapsADPasswordExpirationTime.md index 96863f1726..d0c1db5451 100644 --- a/docset/winserver2022-ps/laps/Set-LapsADPasswordExpirationTime.md +++ b/docset/winserver2022-ps/laps/Set-LapsADPasswordExpirationTime.md @@ -29,8 +29,8 @@ password expiration time on an Active Directory computer or domain controller ob > [!TIP] > Running this cmdlet sets the LAPS password expiration time on the Active Directory computer or -> domain controller object, but the new expiration time will not be honored until the next time the -> target device executes a LAPS policy processing cycle. +> domain controller object, but the new expiration time isn't honored until the next time the target +> device executes a LAPS policy processing cycle. ## EXAMPLES @@ -46,8 +46,8 @@ DistinguishedName Status CN=LAPSCLIENT,OU=LapsTestOU,DC=laps,DC=com PasswordReset ``` -This examples show setting the LAPS password expiration time to the current time (or in other words, -expiring the password immediately). +This example shows setting the LAPS password expiration time to the current time, which expires the +password immediately. ### Example 2 @@ -81,8 +81,8 @@ This examples show setting the LAPS password expiration time to one day in the f ### -Credential -Specifies the credentials to use when updating Active Directory. If not specified the current user's -credentials will be used. +Specifies the credentials to use when updating Active Directory. If not specified, the current +user's credentials are used. ```yaml Type: System.Management.Automation.PSCredential @@ -133,10 +133,10 @@ Accept wildcard characters: False Specifies which Active Directory computer or domain controller object to set the LAPS password expiration time on. -This parameter accepts several different name formats which influence the criteria used when +This parameter accepts several different name formats that influence the criteria used when searching Active Directory for the target device. The supported name formats are as follows: -- distinguishedName (begins with a "CN=") +- distinguishedName (begins with a `CN=`) - samAccountName (begins with a `$`) - dnsHostName (contains at least one `.` character) - name (for all other inputs) @@ -155,8 +155,8 @@ Accept wildcard characters: False ### -WhenEffective -Specifies the new LAPS password expiration time. If not specified the current time will be used, in -other words the password is immediately expired. +Specifies the new LAPS password expiration time. If not specified, the current time is used, which +expires the password is immediately. ```yaml Type: System.DateTime diff --git a/docset/winserver2022-ps/laps/Set-LapsADReadPasswordPermission.md b/docset/winserver2022-ps/laps/Set-LapsADReadPasswordPermission.md index 1936e942da..24501ed5bd 100644 --- a/docset/winserver2022-ps/laps/Set-LapsADReadPasswordPermission.md +++ b/docset/winserver2022-ps/laps/Set-LapsADReadPasswordPermission.md @@ -94,7 +94,7 @@ At line:1 char:1 + FullyQualifiedErrorId : Invalid principal specified,Microsoft.Windows.LAPS.SetLapsADReadPasswordPermission ``` -This example shows a failure caused by specifying an isolated name that did not resolve to a +This example shows a failure caused by specifying an isolated name that didn't resolve to a well-known or built-in account. The fix for this error would be to add a domain name qualifier to the input name, for example `LapsAdministratorsGroup@laps.com`. @@ -120,8 +120,8 @@ Accept wildcard characters: False ### -Credential -Specifies the credentials to use when updating Active Directory. If not specified the current user's -credentials will be used. +Specifies the credentials to use when updating Active Directory. If not specified, the current +user's credentials are used. ```yaml Type: System.Management.Automation.PSCredential @@ -171,10 +171,10 @@ Accept wildcard characters: False Specifies which Active Directory Organizational Unit to update. -This parameter accepts several different name formats which influence the criteria used in the +This parameter accepts several different name formats that influence the criteria used in the resultant Active Directory search. The supported name formats are as follows: -- distinguishedName (begins with a "CN=") +- distinguishedName (begins with a `CN=`) - name (for all other inputs) ```yaml @@ -207,7 +207,7 @@ Accept wildcard characters: False ### -WhatIf -Shows what would happen if the cmdlet runs. The cmdlet is not run. +Shows what would happen if the cmdlet runs. The cmdlet isn't run. ```yaml Type: System.Management.Automation.SwitchParameter diff --git a/docset/winserver2022-ps/laps/Set-LapsADResetPasswordPermission.md b/docset/winserver2022-ps/laps/Set-LapsADResetPasswordPermission.md index c4a0cff861..aa413f9830 100644 --- a/docset/winserver2022-ps/laps/Set-LapsADResetPasswordPermission.md +++ b/docset/winserver2022-ps/laps/Set-LapsADResetPasswordPermission.md @@ -12,8 +12,9 @@ title: Set-LapsADResetPasswordPermission # Set-LapsADResetPasswordPermission ## SYNOPSIS -Configures security on an Active Directory Organizational Unit to grant specific users or groups -permission to set the Windows Local Administrator Password Solution (LAPS) password expiration time. +Configures security on an Active Directory (AD) Organizational Unit (OU) to grant specific users or +groups permission to set the Windows Local Administrator Password Solution (LAPS) password +expiration time. ## SYNTAX @@ -26,10 +27,10 @@ Set-LapsADResetPasswordPermission [-Credential ] -Identity [!IMPORTANT] -> When specifying this parameter, you MUST be logged-in locally as a Domain Administrator on a +> When specifying this parameter, you must be logged-in locally as a Domain Administrator on a > writable domain controller. ```yaml diff --git a/docset/winserver2022-ps/laps/Invoke-LapsPolicyProcessing.md b/docset/winserver2022-ps/laps/Invoke-LapsPolicyProcessing.md index 337dbc397d..ca931a1bd3 100644 --- a/docset/winserver2022-ps/laps/Invoke-LapsPolicyProcessing.md +++ b/docset/winserver2022-ps/laps/Invoke-LapsPolicyProcessing.md @@ -12,7 +12,7 @@ title: Invoke-LapsPolicyProcessing # Invoke-LapsPolicyProcessing ## SYNOPSIS -Causes Windows Local Administrator Password Solution (LAPS) to process the currently configured LAPS +Causes Windows Local Administrator Password Solution (LAPS) to process the currently configured policy. ## SYNTAX @@ -23,13 +23,12 @@ Invoke-LapsPolicyProcessing [] ## DESCRIPTION -The `Invoke-LapsPolicyProcessing` cmdlet tells Windows Local Administrator Password Solution -(LAPS) to process the currently configured LAPS policy. +The `Invoke-LapsPolicyProcessing` cmdlet tells LAPS to process the currently configured policy. The cmdlet doesn't return detailed information about the results of the operation. See -[Use Windows LAPS event logs](https://go.microsoft.com/fwlink/?linkid=2234103) for more -information on querying the resultant event log entries to get specific information on the outcome -of the operation. +[Use Windows LAPS event logs](https://go.microsoft.com/fwlink/?linkid=2234103) for more information +on querying the resultant event log entries to get specific information on the outcome of the +operation. ## EXAMPLES diff --git a/docset/winserver2022-ps/laps/LAPS.md b/docset/winserver2022-ps/laps/LAPS.md index 72c2a65358..9d4605d564 100644 --- a/docset/winserver2022-ps/laps/LAPS.md +++ b/docset/winserver2022-ps/laps/LAPS.md @@ -1,5 +1,6 @@ --- -description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. +description: This reference provides cmdlet descriptions and syntax for all Windows Local Administrator Password +Solution (LAPS) module. Module Name: LAPS Module Guid: 8eb7ddf9-7890-49ae-9af1-3b41d7e63c41 Download Help Link: https://aka.ms/winsvr-2022-pshelp @@ -14,24 +15,24 @@ title: LAPS ## Description This reference provides cmdlet descriptions and syntax for all Windows Local Administrator Password -Solution (LAPS)-specific cmdlets. It lists the cmdlets in alphabetical order. +Solution (LAPS) module. It lists the cmdlets in alphabetical order. ## LAPS Cmdlets ### [Find-LapsADExtendedRights](Find-LapsADExtendedRights.md) -Queries Active Directory to find principals that have been granted permission to read Windows Local -Administrator Password Solution (LAPS) password attributes. +Queries Active Directory (AD) to find principals that have been granted permission to read Windows +Local Administrator Password Solution (LAPS) password attributes. ### [Get-LapsAADPassword](Get-LapsAADPassword.md) -Queries Azure Active Directory for the Windows Local Administrator Password Solution (LAPS) +Queries Azure Active Directory (AAD) for the Windows Local Administrator Password Solution (LAPS) credentials on a specified Azure AD device. ### [Get-LapsADPassword](Get-LapsADPassword.md) -Queries Windows Local Administrator Password Solution (LAPS) credentials from Active Directory on a -specified AD computer or domain controller object. +Queries Windows Local Administrator Password Solution (LAPS) credentials from Active Directory (AD) +on a specified AD computer or domain controller object. ### [Get-LapsDiagnostics](Get-LapsDiagnostics.md) @@ -40,7 +41,7 @@ machine. ### [Invoke-LapsPolicyProcessing](Invoke-LapsPolicyProcessing.md) -Causes Windows Local Administrator Password Solution (LAPS) to process the currently configured LAPS +Causes Windows Local Administrator Password Solution (LAPS) to process the currently configured policy. ### [Reset-LapsPassword](Reset-LapsPassword.md) @@ -50,30 +51,31 @@ the currently managed local account. ### [Set-LapsADAuditing](Set-LapsADAuditing.md) -Configures an Active Directory Organizational Unit to enable auditing on the Windows Local +Configures an Active Directory (AD) Organizational Unit (OU) to enable auditing on the Windows Local Administrator Password Solution (LAPS) password schema attributes. ### [Set-LapsADComputerSelfPermission](Set-LapsADComputerSelfPermission.md) -Configures permissions on an Active Directory Organizational Unit to enable computers in that OU to -update their LAPS passwords. +Configures permissions on an Active Directory (AD) Organizational Unit (OU) to enable computers in +that OU to update their Windows Local Administrator Password Solution (LAPS) passwords. ### [Set-LapsADPasswordExpirationTime](Set-LapsADPasswordExpirationTime.md) Sets the Windows Local Administrator Password Solution (LAPS) password expiration timestamp on an -Active Directory computer or domain controller object. +Active Directory (AD) computer or domain controller object. ### [Set-LapsADReadPasswordPermission](Set-LapsADReadPasswordPermission.md) -Configures security on an Active Directory Organizational Unit to grant specific users or groups -permission to query Windows Local Administrator Password Solution (LAPS) passwords. +Configures security on an Active Directory (AD) Organizational Unit (OU) to grant specific users or +groups permission to query Windows Local Administrator Password Solution (LAPS) passwords. ### [Set-LapsADResetPasswordPermission](Set-LapsADResetPasswordPermission.md) -Configures security on an Active Directory Organizational Unit to grant specific users or groups -permission to set the Windows Local Administrator Password Solution (LAPS) password expiration time. +Configures security on an Active Directory (AD) Organizational Unit (OU) to grant specific users or +groups permission to set the Windows Local Administrator Password Solution (LAPS) password +expiration time. ### [Update-LapsADSchema](Update-LapsADSchema.md) -Extends the Active Directory schema with the Windows Local Administrator Password Solution (LAPS) -schema attributes. +Extends the Active Directory (AD) schema with the Windows Local Administrator Password Solution +(LAPS) schema attributes. diff --git a/docset/winserver2022-ps/laps/Reset-LapsPassword.md b/docset/winserver2022-ps/laps/Reset-LapsPassword.md index 1fc2e7ef34..65d605e3a0 100644 --- a/docset/winserver2022-ps/laps/Reset-LapsPassword.md +++ b/docset/winserver2022-ps/laps/Reset-LapsPassword.md @@ -23,10 +23,9 @@ Reset-LapsPassword [] ## DESCRIPTION -The `Reset-LapsPassword` cmdlet tells Windows Local Administrator Password Solution (LAPS) to -immediately rotate the password for the currently managed local account. This operation is performed -regardless of the state of the current password, for example it doesn't matter whether the current -password is considered expired or not. +The `Reset-LapsPassword` cmdlet tells LAPS to immediately rotate the password for the currently +managed local account. This operation is performed regardless of the state of the current password, +for example it doesn't matter whether the current password is considered expired or not. > [!IMPORTANT] > This cmdlet is intended and recommended only for rare situations that require an @@ -34,9 +33,9 @@ password is considered expired or not. > Excessively frequent usage of this cmdlet isn't recommended. The cmdlet doesn't return detailed information about the results of the operation. See -[Use Windows LAPS event logs](https://go.microsoft.com/fwlink/?linkid=2234103) for more -information on querying the resultant event log entries to get specific information on the outcome -of the operation. +[Use Windows LAPS event logs](https://go.microsoft.com/fwlink/?linkid=2234103) for more information +on querying the resultant event log entries to get specific information on the outcome of the +operation. ## EXAMPLES diff --git a/docset/winserver2022-ps/laps/Set-LapsADAuditing.md b/docset/winserver2022-ps/laps/Set-LapsADAuditing.md index 3c70ae0615..4b92621d7b 100644 --- a/docset/winserver2022-ps/laps/Set-LapsADAuditing.md +++ b/docset/winserver2022-ps/laps/Set-LapsADAuditing.md @@ -12,7 +12,7 @@ title: Set-LapsADAuditing # Set-LapsADAuditing ## SYNOPSIS -Configures an Active Directory Organizational Unit to enable auditing on the Windows Local +Configures an Active Directory (AD) Organizational Unit (OU) to enable auditing on the Windows Local Administrator Password Solution (LAPS) password schema attributes. ## SYNTAX @@ -35,7 +35,7 @@ Set-LapsADAuditing -Identity LapsTestOU -AuditedPrincipals "laps.com\LapsAdmin" OU=LapsTestOU,DC=laps,DC=com ``` -This example demonstrates configuring Success audits on an OU. +This example demonstrates configuring `Success` audits on an OU. ### Example 2 @@ -44,15 +44,15 @@ Set-LapsADAuditing -Identity LapsTestOU -AuditedPrincipals "laps.com\LapsAdminsG OU=LapsTestOU,DC=laps,DC=com ``` -This example demonstrates configuring Failure audits on an OU. +This example demonstrates configuring `Failure` audits on an OU. ## PARAMETERS ### -AuditedPrincipals -Specifies which users or groups should be configured for auditing. Users or groups may be specified -in either name or SID format. If specified in name format, the name must always include the -identifying domain name portion unless the name maps to a well-known or built-in account. +Specifies the name of the users or groups should be configured for auditing. Users or groups may be +specified in either name or SID format. If specified in name format, the name must always include +the identifying domain name portion unless the name maps to a well-known or built-in account. ```yaml Type: System.String[] @@ -85,8 +85,8 @@ Accept wildcard characters: False ### -Credential -Specifies the credentials to use when updating Active Directory. If not specified, the current -user's credentials are used. +Specifies the credentials to use when updating AD. If not specified, the current user's credentials +are used. ```yaml Type: System.Management.Automation.PSCredential @@ -102,7 +102,7 @@ Accept wildcard characters: False ### -Domain -Specifies which Active Directory domain to connect to. +Specifies the name of the domain to connect to. ```yaml Type: System.String @@ -118,7 +118,7 @@ Accept wildcard characters: False ### -DomainController -Specifies which Active Directory domain controller to connect to. +Specifies the name of the domain controller to connect to. ```yaml Type: System.String @@ -134,10 +134,10 @@ Accept wildcard characters: False ### -Identity -Specifies which Active Directory Organizational Unit to update. +Specifies the name of the OU to update. This parameter accepts several different name formats that influence the criteria used in the -resultant Active Directory search. The supported name formats are as follows: +resultant AD search. The supported name formats are as follows: - distinguishedName (begins with a `CN=`) - name (for all other inputs) diff --git a/docset/winserver2022-ps/laps/Set-LapsADComputerSelfPermission.md b/docset/winserver2022-ps/laps/Set-LapsADComputerSelfPermission.md index 2c7770cb14..e95452f787 100644 --- a/docset/winserver2022-ps/laps/Set-LapsADComputerSelfPermission.md +++ b/docset/winserver2022-ps/laps/Set-LapsADComputerSelfPermission.md @@ -12,8 +12,8 @@ title: Set-LapsADComputerSelfPermission # Set-LapsADComputerSelfPermission ## SYNOPSIS -Configures permissions on an Active Directory Organizational Unit to enable computers in that OU to -update their Windows Local Administrator Password Solution (LAPS) passwords. +Configures permissions on an Active Directory (AD) Organizational Unit (OU) to enable computers in +that OU to update their Windows Local Administrator Password Solution (LAPS) passwords. ## SYNTAX @@ -26,8 +26,7 @@ Set-LapsADComputerSelfPermission -Identity [-Domain ] ## DESCRIPTION The `Set-LapsADComputerSelfPermission` cmdlet is used by administrators to configure security -permissions on an Active Directory Organizational Unit (OU) to allow computers in that OU to update -their LAPS passwords. +permissions on an OU to allow computers in that OU to update their LAPS passwords. ## EXAMPLES @@ -49,7 +48,7 @@ This example demonstrates how to run the cmdlet. ### -Credential -Specifies the credentials to use when updating Active Directory. If not specified, the current +Specifies the credentials to use when updating AD. If not specified, the current user's credentials are used. ```yaml @@ -66,7 +65,7 @@ Accept wildcard characters: False ### -Domain -Specifies which Active Directory domain to connect to. +Specifies the name of the domain to connect to. ```yaml Type: System.String @@ -82,7 +81,7 @@ Accept wildcard characters: False ### -DomainController -Specifies which Active Directory domain controller to connect to. +Specifies the name of the domain controller to connect to. ```yaml Type: System.String @@ -98,10 +97,10 @@ Accept wildcard characters: False ### -Identity -Specifies which Active Directory Organizational Unit to update. +Specifies the name of the OU to update. This parameter accepts several different name formats that influence the criteria used in the -resultant Active Directory search. The supported name formats are as follows: +resultant AD search. The supported name formats are as follows: - distinguishedName (begins with a `CN=`) - name (for all other inputs) @@ -136,8 +135,7 @@ Accept wildcard characters: False ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet isn't run. +Shows what would happen if the cmdlet runs. The cmdlet isn't run. ```yaml Type: System.Management.Automation.SwitchParameter diff --git a/docset/winserver2022-ps/laps/Set-LapsADPasswordExpirationTime.md b/docset/winserver2022-ps/laps/Set-LapsADPasswordExpirationTime.md index d0c1db5451..22dc59c194 100644 --- a/docset/winserver2022-ps/laps/Set-LapsADPasswordExpirationTime.md +++ b/docset/winserver2022-ps/laps/Set-LapsADPasswordExpirationTime.md @@ -13,7 +13,7 @@ title: Set-LapsADPasswordExpirationTime ## SYNOPSIS Sets the Windows Local Administrator Password Solution (LAPS) password expiration timestamp on an -Active Directory computer or domain controller object. +Active Directory (AD) computer or domain controller object. ## SYNTAX @@ -25,12 +25,12 @@ Set-LapsADPasswordExpirationTime [-Credential ] -Identity [!TIP] -> Running this cmdlet sets the LAPS password expiration time on the Active Directory computer or -> domain controller object, but the new expiration time isn't honored until the next time the target -> device executes a LAPS policy processing cycle. +> Running this cmdlet sets the LAPS password expiration time on the AD computer or domain controller +> object, but the new expiration time isn't honored until the next time the target device executes a +> LAPS policy processing cycle. ## EXAMPLES @@ -81,8 +81,8 @@ This examples show setting the LAPS password expiration time to one day in the f ### -Credential -Specifies the credentials to use when updating Active Directory. If not specified, the current -user's credentials are used. +Specifies the credentials to use when updating AD. If not specified, the current user's credentials +are used. ```yaml Type: System.Management.Automation.PSCredential @@ -98,7 +98,7 @@ Accept wildcard characters: False ### -Domain -Specifies which Active Directory domain to connect to. +Specifies the name of the domain to connect to. ```yaml Type: System.String @@ -114,7 +114,7 @@ Accept wildcard characters: False ### -DomainController -Specifies which Active Directory domain controller to connect to. +Specifies the name of the domain controller to connect to. ```yaml Type: System.String @@ -130,11 +130,11 @@ Accept wildcard characters: False ### -Identity -Specifies which Active Directory computer or domain controller object to set the LAPS password -expiration time on. +Specifies the name of the computer or domain controller object to set the LAPS password expiration +time on. This parameter accepts several different name formats that influence the criteria used when -searching Active Directory for the target device. The supported name formats are as follows: +searching AD for the target device. The supported name formats are as follows: - distinguishedName (begins with a `CN=`) - samAccountName (begins with a `$`) diff --git a/docset/winserver2022-ps/laps/Set-LapsADReadPasswordPermission.md b/docset/winserver2022-ps/laps/Set-LapsADReadPasswordPermission.md index 24501ed5bd..99456a051e 100644 --- a/docset/winserver2022-ps/laps/Set-LapsADReadPasswordPermission.md +++ b/docset/winserver2022-ps/laps/Set-LapsADReadPasswordPermission.md @@ -12,8 +12,8 @@ title: Set-LapsADReadPasswordPermission # Set-LapsADReadPasswordPermission ## SYNOPSIS -Configures security on an Active Directory Organizational Unit to grant specific users or groups -permission to query Windows Local Administrator Password Solution (LAPS) passwords. +Configures security on an Active Directory (AD) Organizational Unit (OU) to grant specific users or +groups permission to query Windows Local Administrator Password Solution (LAPS) passwords. ## SYNTAX @@ -26,10 +26,10 @@ Set-LapsADReadPasswordPermission [-Credential ] -Identity ] [-WhatIf] [-Confirm] [ Date: Sat, 15 Apr 2023 14:52:53 -0500 Subject: [PATCH 423/965] Update description metadata - Descriptions should be unique - This improves SEO --- docset/winserver2022-ps/laps/Find-LapsADExtendedRights.md | 2 +- docset/winserver2022-ps/laps/Get-LapsAADPassword.md | 2 +- docset/winserver2022-ps/laps/Get-LapsADPassword.md | 2 +- docset/winserver2022-ps/laps/Get-LapsDiagnostics.md | 2 +- docset/winserver2022-ps/laps/Invoke-LapsPolicyProcessing.md | 2 +- docset/winserver2022-ps/laps/Reset-LapsPassword.md | 2 +- docset/winserver2022-ps/laps/Set-LapsADAuditing.md | 2 +- .../winserver2022-ps/laps/Set-LapsADComputerSelfPermission.md | 2 +- .../winserver2022-ps/laps/Set-LapsADPasswordExpirationTime.md | 2 +- .../winserver2022-ps/laps/Set-LapsADReadPasswordPermission.md | 2 +- .../winserver2022-ps/laps/Set-LapsADResetPasswordPermission.md | 2 +- docset/winserver2022-ps/laps/Update-LapsADSchema.md | 3 ++- 12 files changed, 13 insertions(+), 12 deletions(-) diff --git a/docset/winserver2022-ps/laps/Find-LapsADExtendedRights.md b/docset/winserver2022-ps/laps/Find-LapsADExtendedRights.md index c9d82f5e65..0df4fb363d 100644 --- a/docset/winserver2022-ps/laps/Find-LapsADExtendedRights.md +++ b/docset/winserver2022-ps/laps/Find-LapsADExtendedRights.md @@ -1,5 +1,5 @@ --- -description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. +description: Queries Active Directory (AD) to find principals that have been granted permission to read Windows Local Administrator Password Solution (LAPS) password attributes. external help file: lapspsh.dll-Help.xml Module Name: LAPS online version: https://learn.microsoft.com/powershell/module/laps/find-lapsadextendedrights?view=windowsserver2022-ps&wt.mc_id=ps-gethelp diff --git a/docset/winserver2022-ps/laps/Get-LapsAADPassword.md b/docset/winserver2022-ps/laps/Get-LapsAADPassword.md index ddd9c16d1c..5bad16447c 100644 --- a/docset/winserver2022-ps/laps/Get-LapsAADPassword.md +++ b/docset/winserver2022-ps/laps/Get-LapsAADPassword.md @@ -1,5 +1,5 @@ --- -description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. +description: Queries Azure Active Directory (AAD) for the Windows Local Administrator Password Solution (LAPS) credentials on a specified Azure AD device. external help file: LAPS-help.xml Module Name: LAPS online version: https://learn.microsoft.com/powershell/module/laps/get-lapsaadpassword?view=windowsserver2022-ps&wt.mc_id=ps-gethelp diff --git a/docset/winserver2022-ps/laps/Get-LapsADPassword.md b/docset/winserver2022-ps/laps/Get-LapsADPassword.md index 1446e1132e..007a82beb3 100644 --- a/docset/winserver2022-ps/laps/Get-LapsADPassword.md +++ b/docset/winserver2022-ps/laps/Get-LapsADPassword.md @@ -1,5 +1,5 @@ --- -description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. +description: Queries Windows Local Administrator Password Solution (LAPS) credentials from Active Directory (AD) on a specified AD computer or domain controller object. external help file: lapspsh.dll-Help.xml Module Name: LAPS online version: https://learn.microsoft.com/powershell/module/laps/get-lapsadpassword?view=windowsserver2022-ps&wt.mc_id=ps-gethelp diff --git a/docset/winserver2022-ps/laps/Get-LapsDiagnostics.md b/docset/winserver2022-ps/laps/Get-LapsDiagnostics.md index 5bb0ad8332..2ee760b3e9 100644 --- a/docset/winserver2022-ps/laps/Get-LapsDiagnostics.md +++ b/docset/winserver2022-ps/laps/Get-LapsDiagnostics.md @@ -1,5 +1,5 @@ --- -description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. +description: Collects Windows Local Administrator Password Solution (LAPS) logs and tracing from the local machine. external help file: LAPS-help.xml Module Name: LAPS online version: https://learn.microsoft.com/powershell/module/laps/get-lapsdiagnostics?view=windowsserver2022-ps&wt.mc_id=ps-gethelp diff --git a/docset/winserver2022-ps/laps/Invoke-LapsPolicyProcessing.md b/docset/winserver2022-ps/laps/Invoke-LapsPolicyProcessing.md index ca931a1bd3..01655b4a8c 100644 --- a/docset/winserver2022-ps/laps/Invoke-LapsPolicyProcessing.md +++ b/docset/winserver2022-ps/laps/Invoke-LapsPolicyProcessing.md @@ -1,5 +1,5 @@ --- -description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. +description: Causes Windows Local Administrator Password Solution (LAPS) to process the currently configured policy. external help file: lapspsh.dll-Help.xml Module Name: LAPS online version: https://learn.microsoft.com/powershell/module/laps/invoke-lapspolicyprocessing?view=windowsserver2022-ps&wt.mc_id=ps-gethelp diff --git a/docset/winserver2022-ps/laps/Reset-LapsPassword.md b/docset/winserver2022-ps/laps/Reset-LapsPassword.md index 65d605e3a0..dbc005ee7e 100644 --- a/docset/winserver2022-ps/laps/Reset-LapsPassword.md +++ b/docset/winserver2022-ps/laps/Reset-LapsPassword.md @@ -1,5 +1,5 @@ --- -description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. +description: Causes Windows Local Administrator Password Solution (LAPS) to immediately rotate the password for the currently managed local account. external help file: lapspsh.dll-Help.xml Module Name: LAPS online version: https://learn.microsoft.com/powershell/module/laps/reset-lapspassword?view=windowsserver2022-ps&wt.mc_id=ps-gethelp diff --git a/docset/winserver2022-ps/laps/Set-LapsADAuditing.md b/docset/winserver2022-ps/laps/Set-LapsADAuditing.md index 4b92621d7b..bdee473f46 100644 --- a/docset/winserver2022-ps/laps/Set-LapsADAuditing.md +++ b/docset/winserver2022-ps/laps/Set-LapsADAuditing.md @@ -1,5 +1,5 @@ --- -description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. +description: Configures an Active Directory (AD) Organizational Unit (OU) to enable auditing on the Windows Local Administrator Password Solution (LAPS) password schema attributes. external help file: lapspsh.dll-Help.xml Module Name: LAPS online version: https://learn.microsoft.com/powershell/module/laps/set-lapsadauditing?view=windowsserver2022-ps&wt.mc_id=ps-gethelp diff --git a/docset/winserver2022-ps/laps/Set-LapsADComputerSelfPermission.md b/docset/winserver2022-ps/laps/Set-LapsADComputerSelfPermission.md index e95452f787..4539be98c8 100644 --- a/docset/winserver2022-ps/laps/Set-LapsADComputerSelfPermission.md +++ b/docset/winserver2022-ps/laps/Set-LapsADComputerSelfPermission.md @@ -1,5 +1,5 @@ --- -description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. +description: Configures permissions on an Active Directory (AD) Organizational Unit (OU) to enable computers in that OU to update their Windows Local Administrator Password Solution (LAPS) passwords. external help file: lapspsh.dll-Help.xml Module Name: LAPS online version: https://learn.microsoft.com/powershell/module/laps/set-lapsadcomputerselfpermission?view=windowsserver2022-ps&wt.mc_id=ps-gethelp diff --git a/docset/winserver2022-ps/laps/Set-LapsADPasswordExpirationTime.md b/docset/winserver2022-ps/laps/Set-LapsADPasswordExpirationTime.md index 22dc59c194..097e5cef19 100644 --- a/docset/winserver2022-ps/laps/Set-LapsADPasswordExpirationTime.md +++ b/docset/winserver2022-ps/laps/Set-LapsADPasswordExpirationTime.md @@ -1,5 +1,5 @@ --- -description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. +description: Sets the Windows Local Administrator Password Solution (LAPS) password expiration timestamp on an Active Directory (AD) computer or domain controller object. external help file: lapspsh.dll-Help.xml Module Name: LAPS online version: https://learn.microsoft.com/powershell/module/laps/set-lapsadpasswordexpirationtime?view=windowsserver2022-ps&wt.mc_id=ps-gethelp diff --git a/docset/winserver2022-ps/laps/Set-LapsADReadPasswordPermission.md b/docset/winserver2022-ps/laps/Set-LapsADReadPasswordPermission.md index 99456a051e..50971ab84e 100644 --- a/docset/winserver2022-ps/laps/Set-LapsADReadPasswordPermission.md +++ b/docset/winserver2022-ps/laps/Set-LapsADReadPasswordPermission.md @@ -1,5 +1,5 @@ --- -description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. +description: Configures security on an Active Directory (AD) Organizational Unit (OU) to grant specific users or groups permission to query Windows Local Administrator Password Solution (LAPS) passwords. external help file: lapspsh.dll-Help.xml Module Name: LAPS online version: https://learn.microsoft.com/powershell/module/laps/set-lapsadreadpasswordpermission?view=windowsserver2022-ps&wt.mc_id=ps-gethelp diff --git a/docset/winserver2022-ps/laps/Set-LapsADResetPasswordPermission.md b/docset/winserver2022-ps/laps/Set-LapsADResetPasswordPermission.md index 304566803e..eae1ea4a3a 100644 --- a/docset/winserver2022-ps/laps/Set-LapsADResetPasswordPermission.md +++ b/docset/winserver2022-ps/laps/Set-LapsADResetPasswordPermission.md @@ -1,5 +1,5 @@ --- -description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. +description: Configures security on an Active Directory (AD) Organizational Unit (OU) to grant specific users or groups permission to set the Windows Local Administrator Password Solution (LAPS) password expiration time. external help file: lapspsh.dll-Help.xml Module Name: LAPS online version: https://learn.microsoft.com/powershell/module/laps/set-lapsadresetpasswordpermission?view=windowsserver2022-ps&wt.mc_id=ps-gethelp diff --git a/docset/winserver2022-ps/laps/Update-LapsADSchema.md b/docset/winserver2022-ps/laps/Update-LapsADSchema.md index 7b0c96b558..533f7dc0ea 100644 --- a/docset/winserver2022-ps/laps/Update-LapsADSchema.md +++ b/docset/winserver2022-ps/laps/Update-LapsADSchema.md @@ -1,5 +1,6 @@ --- -description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. +description: Extends the Active Directory (AD) schema with the Windows Local Administrator Password Solution +(LAPS) schema attributes. external help file: lapspsh.dll-Help.xml Module Name: LAPS online version: https://learn.microsoft.com/powershell/module/laps/update-lapsadschema?view=windowsserver2022-ps&wt.mc_id=ps-gethelp From d806c78afe84a472a1d6203f2d4b65b61550fb9c Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sun, 16 Apr 2023 05:48:12 +0530 Subject: [PATCH 424/965] Update docset/winserver2022-ps/defender/Set-MpPreference.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2022-ps/defender/Set-MpPreference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/defender/Set-MpPreference.md b/docset/winserver2022-ps/defender/Set-MpPreference.md index 85a0dc8c4d..d6f791808f 100644 --- a/docset/winserver2022-ps/defender/Set-MpPreference.md +++ b/docset/winserver2022-ps/defender/Set-MpPreference.md @@ -148,7 +148,7 @@ Accept wildcard characters: False ### -AllowSwitchToAsyncInspection -Specifies whether to enable a performance optimization that allows synchronously inspected network flows to switch to async inspection once they've been checked and validated. +Specifies whether to enable a performance optimization that allows synchronously inspected network flows to switch to async inspection once they have been checked and validated. ```yaml Type: Boolean From 7713ff6f2ba1ecaf6aa7d317e4a088aac32abb2d Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sun, 16 Apr 2023 05:48:23 +0530 Subject: [PATCH 425/965] Update docset/winserver2016-ps/defender/Set-MpPreference.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2016-ps/defender/Set-MpPreference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2016-ps/defender/Set-MpPreference.md b/docset/winserver2016-ps/defender/Set-MpPreference.md index 5d60ca8509..a30d61400d 100644 --- a/docset/winserver2016-ps/defender/Set-MpPreference.md +++ b/docset/winserver2016-ps/defender/Set-MpPreference.md @@ -104,7 +104,7 @@ Accept wildcard characters: False ### -AllowSwitchToAsyncInspection -Specifies whether to enable a performance optimization that allows synchronously inspected network flows to switch to async inspection once they've been checked and validated. +Specifies whether to enable a performance optimization that allows synchronously inspected network flows to switch to async inspection once they have been checked and validated. ```yaml Type: Boolean From c7b1206eab968a6cd07693203a50388af8553699 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sun, 16 Apr 2023 05:48:53 +0530 Subject: [PATCH 426/965] Update docset/winserver2019-ps/defender/Set-MpPreference.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2019-ps/defender/Set-MpPreference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/defender/Set-MpPreference.md b/docset/winserver2019-ps/defender/Set-MpPreference.md index 277a3efca6..f7d5841ce0 100644 --- a/docset/winserver2019-ps/defender/Set-MpPreference.md +++ b/docset/winserver2019-ps/defender/Set-MpPreference.md @@ -87,7 +87,7 @@ This command configures preferences to check for definition updates 120 minutes ### -AllowSwitchToAsyncInspection -Specifies whether to enable a performance optimization that allows synchronously inspected network flows to switch to async inspection once they've been checked and validated. +Specifies whether to enable a performance optimization that allows synchronously inspected network flows to switch to async inspection once they have been checked and validated. ```yaml Type: Boolean From 99037ca0e761a2b9b63786b8d9b49542938ed540 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sun, 16 Apr 2023 05:49:19 +0530 Subject: [PATCH 427/965] Update docset/winserver2022-ps/defender/Set-MpPreference.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2022-ps/defender/Set-MpPreference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/defender/Set-MpPreference.md b/docset/winserver2022-ps/defender/Set-MpPreference.md index 2656182bd5..1c936f9d41 100644 --- a/docset/winserver2022-ps/defender/Set-MpPreference.md +++ b/docset/winserver2022-ps/defender/Set-MpPreference.md @@ -220,7 +220,7 @@ Accept wildcard characters: False Indicates whether to check for new virus and spyware definitions before Windows Defender runs a scan. If you specify a value of $True, Windows Defender checks for new definitions. If you specify $False or don't specify a value, the scan begins with existing definitions. -This setting applies to scheduled scans, but it has no effect on scans initiated manually from the user interface or to the ones started from the command line using "mpcmdrun -Scan" +This setting applies to scheduled scans, but it has no effect on scans initiated manually from the user interface or on scans started from the command line using "mpcmdrun -Scan" ```yaml Type: Boolean From 7279398c96bfe85dcd65bb1d75c940fde962a512 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sun, 16 Apr 2023 05:49:33 +0530 Subject: [PATCH 428/965] Update docset/winserver2016-ps/defender/Set-MpPreference.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2016-ps/defender/Set-MpPreference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2016-ps/defender/Set-MpPreference.md b/docset/winserver2016-ps/defender/Set-MpPreference.md index 76f27dd2ab..df9caeeca9 100644 --- a/docset/winserver2016-ps/defender/Set-MpPreference.md +++ b/docset/winserver2016-ps/defender/Set-MpPreference.md @@ -106,7 +106,7 @@ Accept wildcard characters: False Indicates whether to check for new virus and spyware definitions before Windows Defender runs a scan. If you specify a value of $True, Windows Defender checks for new definitions. If you specify $False or don't specify a value, the scan begins with existing definitions. -This setting applies to scheduled scans, but it has no effect on scans initiated manually from the user interface or to the ones started from the command line using "mpcmdrun -Scan" +This setting applies to scheduled scans, but it has no effect on scans initiated manually from the user interface or on scans started from the command line using "mpcmdrun -Scan" ```yaml Type: Boolean From 78f1bade7475ad631eeea63badb51d4a4197e652 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sun, 16 Apr 2023 05:49:48 +0530 Subject: [PATCH 429/965] Update docset/winserver2019-ps/defender/Set-MpPreference.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2019-ps/defender/Set-MpPreference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/defender/Set-MpPreference.md b/docset/winserver2019-ps/defender/Set-MpPreference.md index 3e47d7bbec..d9910b2313 100644 --- a/docset/winserver2019-ps/defender/Set-MpPreference.md +++ b/docset/winserver2019-ps/defender/Set-MpPreference.md @@ -114,7 +114,7 @@ Accept wildcard characters: False Indicates whether to check for new virus and spyware definitions before Windows Defender runs a scan. If you specify a value of `$True`, Windows Defender checks for new definitions. If you specify `$False` or don’t specify a value, the scan begins with existing definitions. -This setting applies to scheduled scans, but it has no effect on scans initiated manually from the user interface or to the ones started from the command line using "mpcmdrun -Scan" +This setting applies to scheduled scans, but it has no effect on scans initiated manually from the user interface or on scans started from the command line using "mpcmdrun -Scan" ```yaml Type: Boolean From c1198ae5cb3604d0da6833c5653a16621d07ab36 Mon Sep 17 00:00:00 2001 From: Jay Simmons Date: Sun, 16 Apr 2023 04:52:12 -0700 Subject: [PATCH 430/965] Minor fixes on top of previous edits. --- .../winserver2022-ps/laps/Get-LapsAADPassword.md | 7 +++---- docset/winserver2022-ps/laps/Get-LapsADPassword.md | 14 +++++++------- docset/winserver2022-ps/laps/LAPS.md | 2 +- .../winserver2022-ps/laps/Update-LapsADSchema.md | 2 +- 4 files changed, 12 insertions(+), 13 deletions(-) diff --git a/docset/winserver2022-ps/laps/Get-LapsAADPassword.md b/docset/winserver2022-ps/laps/Get-LapsAADPassword.md index 5bad16447c..5cffde76a8 100644 --- a/docset/winserver2022-ps/laps/Get-LapsAADPassword.md +++ b/docset/winserver2022-ps/laps/Get-LapsAADPassword.md @@ -51,12 +51,11 @@ device, the `DeviceManagementManagedDevices.Read.All` permission may also be req > [!IMPORTANT] > The `Get-LapsAADPassword` cmdlet is implemented as a wrapper around the Microsoft Graph PowerShell > library, which must be manually installed on the device before `Get-LapsAADPassword` can work. -> Additional configuration steps are required in your AAD tenant to enable -> authentication to Microsoft Graph and to grant the necessary Microsoft Graph permissions. For more -> information, see +> Additional configuration steps are required in your AAD tenant to enable authentication to +> Microsoft Graph and to grant the necessary Microsoft Graph permissions. For more information, see > [Get started with Windows LAPS and Azure Active Directory](https://go.microsoft.com/fwlink/?linkid=2233704) -The **Verbose** may be used to get additional information about the cmdlet's operation. +The **Verbose** parameter may be used to get additional information about the cmdlet's operation. ## EXAMPLES diff --git a/docset/winserver2022-ps/laps/Get-LapsADPassword.md b/docset/winserver2022-ps/laps/Get-LapsADPassword.md index 007a82beb3..bd66614048 100644 --- a/docset/winserver2022-ps/laps/Get-LapsADPassword.md +++ b/docset/winserver2022-ps/laps/Get-LapsADPassword.md @@ -68,10 +68,10 @@ history for an Active Directory computer or domain controller object. Depending configuration, LAPS passwords may be stored in either clear-text form or encrypted form. The `Get-LapsADPassword` cmdlet automatically decrypts encrypted passwords. -The `Get-LapsADPassword` cmdlet may also be used to connected to a mounted AD +The `Get-LapsADPassword` cmdlet may also be used to connect to a mounted AD snapshot. -The **Verbose** may be used to get additional information about the cmdlet's operation. +The **Verbose** parameter may be used to get additional information about the cmdlet's operation. ## EXAMPLES @@ -181,7 +181,7 @@ AD in encrypted form and was successfully decrypted. ### Example 5 ```powershell -Get-LapsADPassword LAPSCLIENT2 +Get-LapsADPassword LAPSDC ``` ```Output @@ -196,13 +196,13 @@ DecryptionStatus : Unauthorized AuthorizedDecryptor : LAPS\Domain Admins ``` -This example demonstrates querying the current LAPS password for the `lapsDC` domain controller when +This example demonstrates querying the current LAPS password for the `LAPSDC` domain controller when the user doesn't have permissions to decrypt the LAPS DSRM password. ### Example 6 ```powershell -Get-LapsADPassword lapsLegacyClient -AsPlainText +Get-LapsADPassword LAPSLEGACYCLIENT -AsPlainText ``` ```Output @@ -217,7 +217,7 @@ DecryptionStatus : NotApplicable AuthorizedDecryptor : NotApplicable ``` -This example demonstrates querying the current LAPS password for the 'lapsLegacyClient' machine +This example demonstrates querying the current LAPS password for the 'LAPSLEGACYCLIENT' machine which is currently running in legacy LAPS emulation mode. > [!NOTE] @@ -391,7 +391,7 @@ Accept wildcard characters: False ### -Port -Specifies the name of the AD Snapshot Browser port to connect to. +Specifies the AD Snapshot Browser port to connect to. ```yaml Type: System.Nullable`1[System.Int32] diff --git a/docset/winserver2022-ps/laps/LAPS.md b/docset/winserver2022-ps/laps/LAPS.md index 9d4605d564..55d22549f6 100644 --- a/docset/winserver2022-ps/laps/LAPS.md +++ b/docset/winserver2022-ps/laps/LAPS.md @@ -14,7 +14,7 @@ title: LAPS ## Description -This reference provides cmdlet descriptions and syntax for all Windows Local Administrator Password +This reference provides cmdlet descriptions and syntax for the Windows Local Administrator Password Solution (LAPS) module. It lists the cmdlets in alphabetical order. ## LAPS Cmdlets diff --git a/docset/winserver2022-ps/laps/Update-LapsADSchema.md b/docset/winserver2022-ps/laps/Update-LapsADSchema.md index 533f7dc0ea..15daffa46f 100644 --- a/docset/winserver2022-ps/laps/Update-LapsADSchema.md +++ b/docset/winserver2022-ps/laps/Update-LapsADSchema.md @@ -28,7 +28,7 @@ The `Update-LapsADSchema` cmdlet extends the AD schema with the LAPS schema attr nature of the schema extensions is documented in [Windows LAPS schema extensions reference](https://go.microsoft.com/fwlink/?linkid=2233804). -The **Verbose** may be used to get additional information about the cmdlet's operation. +The **Verbose** parameter may be used to get additional information about the cmdlet's operation. ## EXAMPLES From 0c20452ccb5f8cb0b3982f670f2abd6b423eee07 Mon Sep 17 00:00:00 2001 From: Jay Simmons Date: Sun, 16 Apr 2023 05:12:39 -0700 Subject: [PATCH 431/965] Remove "Welcome to MS Graph" from output examples since this spew may or may not be present in actual operation. --- docset/winserver2022-ps/laps/Get-LapsAADPassword.md | 8 -------- 1 file changed, 8 deletions(-) diff --git a/docset/winserver2022-ps/laps/Get-LapsAADPassword.md b/docset/winserver2022-ps/laps/Get-LapsAADPassword.md index 5cffde76a8..dbe3857fd4 100644 --- a/docset/winserver2022-ps/laps/Get-LapsAADPassword.md +++ b/docset/winserver2022-ps/laps/Get-LapsAADPassword.md @@ -67,8 +67,6 @@ Get-LapsAADPassword -DeviceIds LAPSAAD ``` ```Output -Welcome To Microsoft Graph! - DeviceName DeviceId PasswordExpirationTime ---------- -------- ---------------------- LAPSAAD dfc6d5f0-225a-4b46-adcf-73a349a31e70 4/22/2023 8:45:29 AM @@ -85,8 +83,6 @@ Get-LapsAADPassword -DeviceIds dfc6d5f0-225a-4b46-adcf-73a349a31e70 -IncludePass ``` ```Output -Welcome To Microsoft Graph! - DeviceName : LAPSAAD DeviceId : dfc6d5f0-225a-4b46-adcf-73a349a31e70 Account : LapsAdmin @@ -106,8 +102,6 @@ Get-LapsAADPassword -DeviceIds dfc6d5f0-225a-4b46-adcf-73a349a31e70 -IncludePass ``` ```Output -Welcome To Microsoft Graph! - DeviceName : LAPSAAD DeviceId : dfc6d5f0-225a-4b46-adcf-73a349a31e70 Account : LapsAdmin @@ -127,8 +121,6 @@ Get-LapsAADPassword -DeviceIds lapsAAD -IncludePasswords -AsPlainText -IncludeHi ``` ```Output -Welcome To Microsoft Graph! - DeviceName : LAPSAAD DeviceId : dfc6d5f0-225a-4b46-adcf-73a349a31e70 Account : LapsAdmin From c2c4039d1ba6144e5d3ed53dc7073e80641a6982 Mon Sep 17 00:00:00 2001 From: Jay Simmons Date: Sun, 16 Apr 2023 05:24:02 -0700 Subject: [PATCH 432/965] Clone new LAPS PSH content into the winserver2019-ps/laps folder and fixup "online version" links to match. --- .../laps/Find-LapsADExtendedRights.md | 154 ++++++ .../laps/Get-LapsAADPassword.md | 243 ++++++++++ .../laps/Get-LapsADPassword.md | 451 ++++++++++++++++++ .../laps/Get-LapsDiagnostics.md | 167 +++++++ .../laps/Invoke-LapsPolicyProcessing.md | 64 +++ docset/winserver2019-ps/laps/LAPS.md | 81 ++++ .../laps/Reset-LapsPassword.md | 71 +++ .../laps/Set-LapsADAuditing.md | 208 ++++++++ .../laps/Set-LapsADComputerSelfPermission.md | 171 +++++++ .../laps/Set-LapsADPasswordExpirationTime.md | 192 ++++++++ .../laps/Set-LapsADReadPasswordPermission.md | 243 ++++++++++ .../laps/Set-LapsADResetPasswordPermission.md | 244 ++++++++++ .../laps/Update-LapsADSchema.md | 121 +++++ docset/winserver2022-ps/laps/LAPS.md | 2 +- 14 files changed, 2411 insertions(+), 1 deletion(-) create mode 100644 docset/winserver2019-ps/laps/Find-LapsADExtendedRights.md create mode 100644 docset/winserver2019-ps/laps/Get-LapsAADPassword.md create mode 100644 docset/winserver2019-ps/laps/Get-LapsADPassword.md create mode 100644 docset/winserver2019-ps/laps/Get-LapsDiagnostics.md create mode 100644 docset/winserver2019-ps/laps/Invoke-LapsPolicyProcessing.md create mode 100644 docset/winserver2019-ps/laps/LAPS.md create mode 100644 docset/winserver2019-ps/laps/Reset-LapsPassword.md create mode 100644 docset/winserver2019-ps/laps/Set-LapsADAuditing.md create mode 100644 docset/winserver2019-ps/laps/Set-LapsADComputerSelfPermission.md create mode 100644 docset/winserver2019-ps/laps/Set-LapsADPasswordExpirationTime.md create mode 100644 docset/winserver2019-ps/laps/Set-LapsADReadPasswordPermission.md create mode 100644 docset/winserver2019-ps/laps/Set-LapsADResetPasswordPermission.md create mode 100644 docset/winserver2019-ps/laps/Update-LapsADSchema.md diff --git a/docset/winserver2019-ps/laps/Find-LapsADExtendedRights.md b/docset/winserver2019-ps/laps/Find-LapsADExtendedRights.md new file mode 100644 index 0000000000..b18a92a38f --- /dev/null +++ b/docset/winserver2019-ps/laps/Find-LapsADExtendedRights.md @@ -0,0 +1,154 @@ +--- +description: Queries Active Directory (AD) to find principals that have been granted permission to read Windows Local Administrator Password Solution (LAPS) password attributes. +external help file: lapspsh.dll-Help.xml +Module Name: LAPS +online version: https://learn.microsoft.com/powershell/module/laps/find-lapsadextendedrights?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +Locale: en-US +ms.date: 04/10/2023 +title: Find-LapsADExtendedRights +--- + +# Find-LapsADExtendedRights + +## SYNOPSIS +Queries Active Directory (AD) to find principals that have been granted permission to read Windows +Local Administrator Password Solution (LAPS) password attributes. + +## SYNTAX + +``` +Find-LapsADExtendedRights [-Credential ] -Identity [-Domain ] + [-DomainController ] [-IncludeComputers] [] +``` + +## DESCRIPTION + +The `Find-LapsADExtendedRights` cmdlet is used by administrators to query which principals have +been granted permissions to read the LAPS password attributes. + +## EXAMPLES + +### Example 1 + +```powershell +Find-LapsADExtendedRights -Identity LapsTestOU +``` + +```Output +ObjectDN ExtendedRightHolders +-------- -------------------- +OU=LapsTestOU,DC=laps,DC=com {NT AUTHORITY\SYSTEM, LAPS\Domain Admins, LAPS\LapsAdmins} +``` + +This example shows how to run the cmdlet. + +## PARAMETERS + +### -Credential + +Specifies the credentials to use when updating AD. If not specified, the current +user's credentials are used. + +```yaml +Type: System.Management.Automation.PSCredential +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Domain + +Specifies the name of the domain to connect to. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DomainController + +Specifies the name of the domain controller to connect to. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Identity + +Specifies the name of the OU to query. + +This parameter accepts several different name formats that influence the criteria used in the +resultant AD search. The supported name formats are as follows: + +- distinguishedName (begins with a `CN=`) +- name (for all other inputs) + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName, ByValue) +Accept wildcard characters: False +``` + +### -IncludeComputers + +Specify this parameter to also check computer objects for the permissions. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String[] + +## OUTPUTS + +### System.Object + +## NOTES + +## RELATED LINKS + +[Windows LAPS Overview](https://go.microsoft.com/fwlink/?linkid=2233901) diff --git a/docset/winserver2019-ps/laps/Get-LapsAADPassword.md b/docset/winserver2019-ps/laps/Get-LapsAADPassword.md new file mode 100644 index 0000000000..480ba0bc76 --- /dev/null +++ b/docset/winserver2019-ps/laps/Get-LapsAADPassword.md @@ -0,0 +1,243 @@ +--- +description: Queries Azure Active Directory (AAD) for the Windows Local Administrator Password Solution (LAPS) credentials on a specified Azure AD device. +external help file: LAPS-help.xml +Module Name: LAPS +online version: https://learn.microsoft.com/powershell/module/laps/get-lapsaadpassword?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +Locale: en-US +ms.date: 04/10/2023 +title: Get-LapsAADPassword +--- + +# Get-LapsAADPassword + +## SYNOPSIS +Queries Azure Active Directory (AAD) for the Windows Local Administrator Password Solution (LAPS) +credentials on a specified Azure AD device. + +## SYNTAX + +``` +Get-LapsAADPassword -DeviceIds [-IncludePasswords] [-IncludeHistory] [-AsPlainText] + [] +``` + +## DESCRIPTION + +The `Get-LapsAADPassword` cmdlet allows administrators to retrieve LAPS passwords and password +history for an AAD-joined device. This is implemented by sending queries to Microsoft Graph over the +deviceLocalCredentials collection. + +The `Get-LapsAADPassword` cmdlet supports two basic modes when querying LAPS passwords: + +The first mode queries for non-sensitive metadata, for example time the password was backed up to +Azure and the expected expiration time of a password. This mode requires that the client be granted +the Microsoft Graph `DeviceLocalCredential.ReadBasic.All` permission. + +The second mode queries for all password information including both the metadata information +described above and the clear-text form of the password(s). This mode requires that the client be +granted the Microsoft Graph `DeviceLocalCredential.Read.All` permission. + +The **DeviceIds** parameter accepts either device names or device IDs, but the underlying Microsoft +Graph queries only supports querying by device ID. To support this query, the cmdlet maps a device +name input to its corresponding device ID by issuing a separate Microsoft Graph query. This extra +query requires the `Device.Read.All` permission. If the target is a Microsoft Managed Desktop +device, the `DeviceManagementManagedDevices.Read.All` permission may also be required. + +> [!TIP] +> If there are multiple devices in the tenant with the same name, the cmdlet fails. The workaround +> is to input the device ID directly. + +> [!IMPORTANT] +> The `Get-LapsAADPassword` cmdlet is implemented as a wrapper around the Microsoft Graph PowerShell +> library, which must be manually installed on the device before `Get-LapsAADPassword` can work. +> Additional configuration steps are required in your AAD tenant to enable authentication to +> Microsoft Graph and to grant the necessary Microsoft Graph permissions. For more information, see +> [Get started with Windows LAPS and Azure Active Directory](https://go.microsoft.com/fwlink/?linkid=2233704) + +The **Verbose** parameter may be used to get additional information about the cmdlet's operation. + +## EXAMPLES + +### Example 1 + +```powershell +Connect-MgGraph -TenantId b20f5886-bddf-43bb-aee6-dda0c87c5fa2 -ClientId 9fa98e34-277f-47fa-9847-e36bdf6bca1f +Get-LapsAADPassword -DeviceIds LAPSAAD +``` + +```Output +DeviceName DeviceId PasswordExpirationTime +---------- -------- ---------------------- +LAPSAAD dfc6d5f0-225a-4b46-adcf-73a349a31e70 4/22/2023 8:45:29 AM +``` + +This example shows how to query basic LAPS password metadata information for the target device that +is specified by device name. + +### Example 2 + +```powershell +Connect-MgGraph -TenantId b20f5886-bddf-43bb-aee6-dda0c87c5fa2 -ClientId 9fa98e34-277f-47fa-9847-e36bdf6bca1f +Get-LapsAADPassword -DeviceIds dfc6d5f0-225a-4b46-adcf-73a349a31e70 -IncludePasswords +``` + +```Output +DeviceName : LAPSAAD +DeviceId : dfc6d5f0-225a-4b46-adcf-73a349a31e70 +Account : LapsAdmin +Password : System.Security.SecureString +PasswordExpirationTime : 4/22/2023 8:45:29 AM +PasswordUpdateTime : 4/11/2023 8:45:29 AM +``` + +This example shows how to query the full LAPS password information for the target device that is +specified by device ID. + +### Example 3 + +```powershell +Connect-MgGraph -TenantId b20f5886-bddf-43bb-aee6-dda0c87c5fa2 -ClientId 9fa98e34-277f-47fa-9847-e36bdf6bca1f +Get-LapsAADPassword -DeviceIds dfc6d5f0-225a-4b46-adcf-73a349a31e70 -IncludePasswords -AsPlainText +``` + +```Output +DeviceName : LAPSAAD +DeviceId : dfc6d5f0-225a-4b46-adcf-73a349a31e70 +Account : LapsAdmin +Password : g4q22s[Xz8}!T32[4;Z#0M}v35udF[xB0}iB;P@xk%9E9Tgw,W]7)vx9O!- +PasswordExpirationTime : 4/22/2023 8:45:29 AM +PasswordUpdateTime : 4/11/2023 8:45:29 AM +``` + +This example shows how to query the full LAPS password information for the target device that is +specified by device ID, and displaying the password in clear-text form. + +### Example 4 + +```powershell +Connect-MgGraph -TenantId b20f5886-bddf-43bb-aee6-dda0c87c5fa2 -ClientId 9fa98e34-277f-47fa-9847-e36bdf6bca1f +Get-LapsAADPassword -DeviceIds lapsAAD -IncludePasswords -AsPlainText -IncludeHistory +``` + +```Output +DeviceName : LAPSAAD +DeviceId : dfc6d5f0-225a-4b46-adcf-73a349a31e70 +Account : LapsAdmin +Password : ]5j)1fi]Rv&Pj+IMiAzq1R9b+yJ.@Q,80#01U541vsC8$Vv${hac8TJlkT8 +PasswordExpirationTime : 4/22/2023 8:55:20 AM +PasswordUpdateTime : 4/11/2023 8:55:21 AM + +DeviceName : LAPSAAD +DeviceId : dfc6d5f0-225a-4b46-adcf-73a349a31e70 +Account : LapsAdmin +Password : t&.1P%9891]24I0X4AA4O22a30R1lz(ar7N9{tTf349.Iz{L82O6v{I+,gg +PasswordExpirationTime : +PasswordUpdateTime : 4/11/2023 8:55:16 AM + +DeviceName : LAPSAAD +DeviceId : dfc6d5f0-225a-4b46-adcf-73a349a31e70 +Account : LapsAdmin +Password : g4q22s[Xz8}!T32[4;Z#0M}v35udF[xB0}iB;P@xk%9E9Tgw,W]7)vx9O!- +PasswordExpirationTime : +PasswordUpdateTime : 4/11/2023 8:45:29 AM +``` + +This example shows how to query the full LAPS password information for the target device that is +specified by device name, requesting password history, and displaying the passwords in clear-text +form. + +## PARAMETERS + +### -AsPlainText + +Specify this parameter to return the LAPS passwords in clear-text format. The default behavior is to +return the LAPS passwords wrapped in a .NET **SecureString** object. + +> [!IMPORTANT] +> Using this parameter exposes the returned clear-text password to casual viewing and may pose a +> security risk. This parameter should be used with caution and only in support or testing +> situations. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DeviceIds + +Specifies the device name or device ID to query LAPS credentials. + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -IncludeHistory + +Specifies that any older LAPS credentials on the device object should also be displayed. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -IncludePasswords + +Specifies whether to return password information. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None + +## OUTPUTS + +### System.Object + +## NOTES + +## RELATED LINKS + +[Windows LAPS Overview](https://go.microsoft.com/fwlink/?linkid=2233901) + +[Get started with Windows LAPS and Azure Active Directory](https://go.microsoft.com/fwlink/?linkid=2233704) \ No newline at end of file diff --git a/docset/winserver2019-ps/laps/Get-LapsADPassword.md b/docset/winserver2019-ps/laps/Get-LapsADPassword.md new file mode 100644 index 0000000000..2b69a31a90 --- /dev/null +++ b/docset/winserver2019-ps/laps/Get-LapsADPassword.md @@ -0,0 +1,451 @@ +--- +description: Queries Windows Local Administrator Password Solution (LAPS) credentials from Active Directory (AD) on a specified AD computer or domain controller object. +external help file: lapspsh.dll-Help.xml +Module Name: LAPS +online version: https://learn.microsoft.com/powershell/module/laps/get-lapsadpassword?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +Locale: en-US +ms.date: 04/10/2023 +title: Get-LapsADPassword +--- + +# Get-LapsADPassword + +## SYNOPSIS +Queries Windows Local Administrator Password Solution (LAPS) credentials from Active Directory (AD) +on a specified AD computer or domain controller object. + +## SYNTAX + +### NormalMode (Default) + +``` +Get-LapsADPassword [-Credential ] [-DecryptionCredential ] + [-IncludeHistory] [-AsPlainText] [-Identity] [] +``` + +### DomainMode + +``` +Get-LapsADPassword [-Credential ] [-DecryptionCredential ] + [-IncludeHistory] [-AsPlainText] [-Identity] -Domain [] +``` + +### DomainControllerMode + +``` +Get-LapsADPassword [-Credential ] [-DecryptionCredential ] + [-IncludeHistory] [-AsPlainText] [-Identity] -DomainController + [] +``` + +### SnapshotBrowserMode + +``` +Get-LapsADPassword [-Credential ] [-DecryptionCredential ] + [-IncludeHistory] [-AsPlainText] -Port [-Identity] [-DomainController ] + [] +``` + +### RecoveryMode + +``` +Get-LapsADPassword [-IncludeHistory] [-AsPlainText] [-RecoveryMode] [-Identity] + [] +``` + +### SnapshotBrowserRecoveryMode + +``` +Get-LapsADPassword [-IncludeHistory] [-AsPlainText] [-RecoveryMode] -Port + [-Identity] [] +``` + +## DESCRIPTION + +The `Get-LapsADPassword` cmdlet allows administrators to retrieve LAPS passwords and password +history for an Active Directory computer or domain controller object. Depending on policy +configuration, LAPS passwords may be stored in either clear-text form or encrypted form. The +`Get-LapsADPassword` cmdlet automatically decrypts encrypted passwords. + +The `Get-LapsADPassword` cmdlet may also be used to connect to a mounted AD +snapshot. + +The **Verbose** parameter may be used to get additional information about the cmdlet's operation. + +## EXAMPLES + +### Example 1 + +```powershell +Get-LapsADPassword LAPSCLIENT +``` + +```Output +ComputerName : LAPSCLIENT +DistinguishedName : CN=LAPSCLIENT,OU=LapsTestOU,DC=laps,DC=com +Account : Administrator +Password : System.Security.SecureString +PasswordUpdateTime : 4/9/2023 10:03:41 AM +ExpirationTimestamp : 4/14/2023 10:03:41 AM +Source : CleartextPassword +DecryptionStatus : NotApplicable +AuthorizedDecryptor : NotApplicable +``` + +This example demonstrates querying the current LAPS password for the `LAPSCLIENT` computer in the +current domain. The password was stored in AD in clear-text form and didn't require decryption. The +password was returned wrapped in a **SecureString** object. + +### Example 2 + +```powershell +Get-LapsADPassword -Identity LAPSCLIENT -DomainController lapsDC -AsPlainText +``` + +```Output +ComputerName : LAPSCLIENT +DistinguishedName : CN=LAPSCLIENT,OU=LapsTestOU,DC=laps,DC=com +Account : Administrator +Password : k8P]Xl5T-ky!aj4s21el3S#.x44!e{8+,{L!M +PasswordUpdateTime : 4/9/2023 10:03:41 AM +ExpirationTimestamp : 4/14/2023 10:03:41 AM +Source : CleartextPassword +DecryptionStatus : NotApplicable +AuthorizedDecryptor : NotApplicable +``` + +This example demonstrates querying the current LAPS password on a specific domain controller +(`lapsDC`), for the `LAPSCLIENT` computer, requesting that the password be displayed in clear-text +form. The password was stored in AD in clear-text form and didn't require decryption. The password +was returned in clear-text form. + +### Example 3 + +```powershell +Get-LapsADPassword -Identity LAPSCLIENT2 -Domain laps.com -AsPlainText -IncludeHistory +``` + +```Output +ComputerName : LAPSCLIENT2 +DistinguishedName : CN=LAPSCLIENT2,OU=LapsTestEncryptedOU,DC=laps,DC=com +Account : Administrator +Password : q64!7KI3BOe/&S%buM0nBaW{B]261zN5L0{;{ +PasswordUpdateTime : 4/9/2023 9:39:38 AM +ExpirationTimestamp : 4/14/2023 9:39:38 AM +Source : EncryptedPassword +DecryptionStatus : Success +AuthorizedDecryptor : LAPS\LAPS Admins + +ComputerName : LAPSCLIENT2 +DistinguishedName : CN=LAPSCLIENT2,OU=LapsTestEncryptedOU,DC=laps,DC=com +Account : Administrator +Password : O{P61q6bu(3kZ6&#p2y.&F$cWd;0dm8!]Wl5j +PasswordUpdateTime : 4/9/2023 9:38:10 AM +ExpirationTimestamp : +Source : EncryptedPasswordHistory +DecryptionStatus : Success +AuthorizedDecryptor : LAPS\LAPS Admins +``` + +This example demonstrates querying the current LAPS password for the `LAPSCLIENT2` computer, in a +specific AD domain (`laps.com`), requesting that the password be displayed in +clear-text form. The password was stored in AD in encrypted form and was successfully +decrypted. + +> [!NOTE] +> **ExpirationTimestamp** is always empty for any older LAPS passwords returned. + +### Example 4 + +```powershell +Get-LapsADPassword -Identity lapsDC.laps.com -AsPlainText +``` + +```Output +ComputerName : LAPSDC +DistinguishedName : CN=LAPSDC,OU=Domain Controllers,DC=laps,DC=com +Account : Administrator +Password : 118y$rsw.3y58yG]on$Hii +PasswordUpdateTime : 4/9/2023 10:17:51 AM +ExpirationTimestamp : 4/19/2023 10:17:51 AM +Source : EncryptedDSRMPassword +DecryptionStatus : Success +AuthorizedDecryptor : LAPS\Domain Admins +``` + +This example demonstrates querying the current LAPS password for the `lapsDC.laps.com` domain +controller, requesting that the password be displayed in clear-text form. The password was stored in +AD in encrypted form and was successfully decrypted. + +### Example 5 + +```powershell +Get-LapsADPassword LAPSDC +``` + +```Output +ComputerName : LAPSDC +DistinguishedName : CN=LAPSDC,OU=Domain Controllers,DC=laps,DC=com +Account : +Password : +PasswordUpdateTime : 4/9/2023 10:17:51 AM +ExpirationTimestamp : 4/19/2023 10:17:51 AM +Source : EncryptedDSRMPassword +DecryptionStatus : Unauthorized +AuthorizedDecryptor : LAPS\Domain Admins +``` + +This example demonstrates querying the current LAPS password for the `LAPSDC` domain controller when +the user doesn't have permissions to decrypt the LAPS DSRM password. + +### Example 6 + +```powershell +Get-LapsADPassword LAPSLEGACYCLIENT -AsPlainText +``` + +```Output +ComputerName : LAPSLEGACYCLIENT +DistinguishedName : CN=LAPSLEGACYCLIENT,OU=LegacyLapsOU,DC=laps,DC=com +Account : +Password : Z#x}&7BluHf3{r+C218 +PasswordUpdateTime : +ExpirationTimestamp : 5/14/2023 1:55:39 PM +Source : LegacyLapsCleartextPassword +DecryptionStatus : NotApplicable +AuthorizedDecryptor : NotApplicable +``` + +This example demonstrates querying the current LAPS password for the 'LAPSLEGACYCLIENT' machine +which is currently running in legacy LAPS emulation mode. + +> [!NOTE] +> When querying legacy LAPS-style passwords, the **Account** and **PasswordUpdateTime** fields are +> always unavailable. + +### Example 7 + +```powershell +Get-LapsADPassword -Identity LAPSCLIENT -Port 50000 -AsPlainText +``` + +```Output +ComputerName : LAPSCLIENT +DistinguishedName : CN=LAPSCLIENT,OU=LapsTestOU,DC=laps,DC=com +Account : Administrator +Password : H6UycL[vj#zzTNVpS//G2{j&t9aO}k[K5l4)X +PasswordUpdateTime : 4/15/2023 6:51:45 AM +ExpirationTimestamp : 4/20/2023 6:51:45 AM +Source : CleartextPassword +DecryptionStatus : NotApplicable +AuthorizedDecryptor : NotApplicable +``` + +This example demonstrates querying an AD Snapshot browser instance for the current LAPS password for +the `LAPSCLIENT` machine. This example assumes that that the snapshot browser has been previously +started on the local machine listening on an LDAP port of `50000`. + +## PARAMETERS + +### -AsPlainText + +Specify this parameter to return the LAPS passwords in clear-text format. The default behavior is to +return the LAPS passwords wrapped in a .NET **SecureString** object. + +> [!IMPORTANT] +> Using this parameter exposes the returned clear-text password to casual viewing and may pose a +> security risk. This parameter should be used with caution and only in support or testing +> situations. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Credential + +Specifies a set of credentials to use when querying AD for the LAPS credentials. If not specified, +the current user's credentials are used. + +```yaml +Type: System.Management.Automation.PSCredential +Parameter Sets: NormalMode, DomainMode, DomainControllerMode, SnapshotBrowserMode +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DecryptionCredential + +Specifies a set of credentials to use when decrypting encrypted LAPS credentials. If not specified, +the current user's credentials are used. + +```yaml +Type: System.Management.Automation.PSCredential +Parameter Sets: NormalMode, DomainMode, DomainControllerMode, SnapshotBrowserMode +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Domain + +Specifies the name of the domain to connect to. + +```yaml +Type: System.String +Parameter Sets: DomainMode +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DomainController + +Specifies the name of the domain controller to connect to, or the remote server on which an AD +Snapshot Browser is running. + +```yaml +Type: System.String +Parameter Sets: DomainControllerMode +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +```yaml +Type: System.String +Parameter Sets: SnapshotBrowserMode +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Identity + +Specifies the name of the computer or domain controller object to retrieve LAPS credentials from. + +This parameter accepts several different name formats that influence the criteria used when +searching AD for the target device. The supported name formats are as follows: + +- distinguishedName (begins with a `CN=`) +- samAccountName (begins with a '$") +- dnsHostName (contains at least one '.' character) +- name (for all other inputs) + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName, ByValue) +Accept wildcard characters: False +``` + +### -IncludeHistory + +Specifies that any older LAPS credentials on the computer object should also be displayed. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Port + +Specifies the AD Snapshot Browser port to connect to. + +```yaml +Type: System.Nullable`1[System.Int32] +Parameter Sets: SnapshotBrowserMode, SnapshotBrowserRecoveryMode +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -RecoveryMode + +This parameter provides a last-ditch option when it's no longer possible to decrypt a given LAPS +credential via the normal mechanisms. For example, this might be necessary if a LAPS credential was +encrypted against a group that has since been deleted. + +>[!IMPORTANT] +> When specifying this parameter, you must be logged-in locally as a Domain Administrator on a +> writable domain controller. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: RecoveryMode, SnapshotBrowserRecoveryMode +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String[] + +## OUTPUTS + +### System.Object + +## NOTES + +## RELATED LINKS + +[Windows LAPS Overview](https://go.microsoft.com/fwlink/?linkid=2233901) + +[Get started with Windows LAPS and Windows Server Active Directory](https://go.microsoft.com/fwlink/?linkid=2233705) diff --git a/docset/winserver2019-ps/laps/Get-LapsDiagnostics.md b/docset/winserver2019-ps/laps/Get-LapsDiagnostics.md new file mode 100644 index 0000000000..bf989e7bce --- /dev/null +++ b/docset/winserver2019-ps/laps/Get-LapsDiagnostics.md @@ -0,0 +1,167 @@ +--- +description: Collects Windows Local Administrator Password Solution (LAPS) logs and tracing from the local machine. +external help file: LAPS-help.xml +Module Name: LAPS +online version: https://learn.microsoft.com/powershell/module/laps/get-lapsdiagnostics?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +Locale: en-US +ms.date: 04/10/2023 +title: Get-LapsDiagnostics +--- + +# Get-LapsDiagnostics + +## SYNOPSIS +Collects Windows Local Administrator Password Solution (LAPS) logs and tracing from the local +machine. + +## SYNTAX + +``` +Get-LapsDiagnostics [[-OutputFolder] ] [-CollectNetworkTrace] [-ResetPassword] + [] +``` + +## DESCRIPTION + +The `Get-LapsDiagnostics` cmdlet collects LAPS logs and tracing from the local machine, and copies +them into a `.zip` file. This cmdlet is primarily intended for support and testing scenarios but of +course may be used at any time. The name of the resultant `.zip` file includes the machine name and +current timestamp, and by default is written under the `$env:TEMP\LapsDiagnostics` folder. The +output folder may be customized using the **OutputFolder**. + +## EXAMPLES + +### Example 1 + +```powershell +Get-LapsDiagnostics +``` + +```Output +Get-LapsDiagnostics: all data for this run was written to the following zip file: + +C:\Users\ADMINI~1\AppData\Local\Temp\LapsDiagnostics\LapsDiagnostics_LAPSCLIENT_2023041004_072649.zip +``` + +This example demonstrates basic collection of LAPS diagnostic info using all default parameters. + +### Example 2 + +```powershell +Get-LapsDiagnostics -OutputFolder c:\LapsDiagFolder +``` + +```Output +Get-LapsDiagnostics: all data for this run was written to the following zip file: + +c:\LapsDiagFolder\LapsDiagnostics_LAPSCLIENT_2023041004_072702.zip +``` + +This example demonstrates basic collection of LAPS diagnostic info to a specific output folder. + +### Example 3 + +```powershell +Get-LapsDiagnostics -OutputFolder c:\LapsDiagFolder -ResetPassword +``` + +```Output +Get-LapsDiagnostics: all data for this run was written to the following zip file: + +c:\LapsDiagFolder\LapsDiagnostics_LAPSCLIENT_2023041004_072709.zip +``` + +This example demonstrates basic collection of LAPS diagnostic info across a forced password reset +operation to a specific output folder. + +### Example 4 + +```powershell +Get-LapsDiagnostics -CollectNetworkTrace +``` + +```Output +Get-LapsDiagnostics: all data for this run was written to the following zip file: + +C:\Users\ADMINI~1\AppData\Local\Temp\LapsDiagnostics\LapsDiagnostics_LAPSCLIENT_2023041004_072719.zip +``` + +This example demonstrates basic collection of LAPS diagnostic info while also collecting network +tracing. + +## PARAMETERS + +### -CollectNetworkTrace + +Specifies that network tracing should also be collected and included in the resultant `.zip` file. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -OutputFolder + +Specifies that the resultant `.zip` file should be placed under the specified folder. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResetPassword + +Specifies that logs and tracing should be collected across a forced password reset for the currently +managed local account. In this mode the cmdlet collects tracing across a call to the +`Reset-LapsPassword` cmdlet. + +If this parameter isn't specified, the cmdlet collects tracing across a call to the +`Invoke-LapsProcessingCycle` cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None + +## OUTPUTS + +### System.Object + +## NOTES + +## RELATED LINKS + +[Windows LAPS Overview](https://go.microsoft.com/fwlink/?linkid=2233901) diff --git a/docset/winserver2019-ps/laps/Invoke-LapsPolicyProcessing.md b/docset/winserver2019-ps/laps/Invoke-LapsPolicyProcessing.md new file mode 100644 index 0000000000..86fd2c0c58 --- /dev/null +++ b/docset/winserver2019-ps/laps/Invoke-LapsPolicyProcessing.md @@ -0,0 +1,64 @@ +--- +description: Causes Windows Local Administrator Password Solution (LAPS) to process the currently configured policy. +external help file: lapspsh.dll-Help.xml +Module Name: LAPS +online version: https://learn.microsoft.com/powershell/module/laps/invoke-lapspolicyprocessing?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +Locale: en-US +ms.date: 04/10/2023 +title: Invoke-LapsPolicyProcessing +--- + +# Invoke-LapsPolicyProcessing + +## SYNOPSIS +Causes Windows Local Administrator Password Solution (LAPS) to process the currently configured +policy. + +## SYNTAX + +``` +Invoke-LapsPolicyProcessing [] +``` + +## DESCRIPTION + +The `Invoke-LapsPolicyProcessing` cmdlet tells LAPS to process the currently configured policy. + +The cmdlet doesn't return detailed information about the results of the operation. See +[Use Windows LAPS event logs](https://go.microsoft.com/fwlink/?linkid=2234103) for more information +on querying the resultant event log entries to get specific information on the outcome of the +operation. + +## EXAMPLES + +### Example 1 + +```powershell +Invoke-LapsPolicyProcessing +``` + +This example starts the processing of the configured LAPS policy. + +## PARAMETERS + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None + +## OUTPUTS + +### System.Object + +## NOTES + +## RELATED LINKS + +[Windows LAPS Overview](https://go.microsoft.com/fwlink/?linkid=2233901) diff --git a/docset/winserver2019-ps/laps/LAPS.md b/docset/winserver2019-ps/laps/LAPS.md new file mode 100644 index 0000000000..8128683a39 --- /dev/null +++ b/docset/winserver2019-ps/laps/LAPS.md @@ -0,0 +1,81 @@ +--- +description: This reference provides cmdlet descriptions and syntax for the Windows Local Administrator Password +Solution (LAPS) module. +Module Name: LAPS +Module Guid: 8eb7ddf9-7890-49ae-9af1-3b41d7e63c41 +Download Help Link: https://aka.ms/winsvr-2019-pshelp +Help Version: 1.0.0.0 +Locale: en-US +ms.date: 04/10/2023 +title: LAPS +--- + +# LAPS Module + +## Description + +This reference provides cmdlet descriptions and syntax for the Windows Local Administrator Password +Solution (LAPS) module. It lists the cmdlets in alphabetical order. + +## LAPS Cmdlets + +### [Find-LapsADExtendedRights](Find-LapsADExtendedRights.md) + +Queries Active Directory (AD) to find principals that have been granted permission to read Windows +Local Administrator Password Solution (LAPS) password attributes. + +### [Get-LapsAADPassword](Get-LapsAADPassword.md) + +Queries Azure Active Directory (AAD) for the Windows Local Administrator Password Solution (LAPS) +credentials on a specified Azure AD device. + +### [Get-LapsADPassword](Get-LapsADPassword.md) + +Queries Windows Local Administrator Password Solution (LAPS) credentials from Active Directory (AD) +on a specified AD computer or domain controller object. + +### [Get-LapsDiagnostics](Get-LapsDiagnostics.md) + +Collects Windows Local Administrator Password Solution (LAPS) logs and tracing from the local +machine. + +### [Invoke-LapsPolicyProcessing](Invoke-LapsPolicyProcessing.md) + +Causes Windows Local Administrator Password Solution (LAPS) to process the currently configured +policy. + +### [Reset-LapsPassword](Reset-LapsPassword.md) + +Causes Windows Local Administrator Password Solution (LAPS) to immediately rotate the password for +the currently managed local account. + +### [Set-LapsADAuditing](Set-LapsADAuditing.md) + +Configures an Active Directory (AD) Organizational Unit (OU) to enable auditing on the Windows Local +Administrator Password Solution (LAPS) password schema attributes. + +### [Set-LapsADComputerSelfPermission](Set-LapsADComputerSelfPermission.md) + +Configures permissions on an Active Directory (AD) Organizational Unit (OU) to enable computers in +that OU to update their Windows Local Administrator Password Solution (LAPS) passwords. + +### [Set-LapsADPasswordExpirationTime](Set-LapsADPasswordExpirationTime.md) + +Sets the Windows Local Administrator Password Solution (LAPS) password expiration timestamp on an +Active Directory (AD) computer or domain controller object. + +### [Set-LapsADReadPasswordPermission](Set-LapsADReadPasswordPermission.md) + +Configures security on an Active Directory (AD) Organizational Unit (OU) to grant specific users or +groups permission to query Windows Local Administrator Password Solution (LAPS) passwords. + +### [Set-LapsADResetPasswordPermission](Set-LapsADResetPasswordPermission.md) + +Configures security on an Active Directory (AD) Organizational Unit (OU) to grant specific users or +groups permission to set the Windows Local Administrator Password Solution (LAPS) password +expiration time. + +### [Update-LapsADSchema](Update-LapsADSchema.md) + +Extends the Active Directory (AD) schema with the Windows Local Administrator Password Solution +(LAPS) schema attributes. diff --git a/docset/winserver2019-ps/laps/Reset-LapsPassword.md b/docset/winserver2019-ps/laps/Reset-LapsPassword.md new file mode 100644 index 0000000000..f6657361fc --- /dev/null +++ b/docset/winserver2019-ps/laps/Reset-LapsPassword.md @@ -0,0 +1,71 @@ +--- +description: Causes Windows Local Administrator Password Solution (LAPS) to immediately rotate the password for the currently managed local account. +external help file: lapspsh.dll-Help.xml +Module Name: LAPS +online version: https://learn.microsoft.com/powershell/module/laps/reset-lapspassword?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +Locale: en-US +ms.date: 04/10/2023 +title: Reset-LapsPassword +--- + +# Reset-LapsPassword + +## SYNOPSIS +Causes Windows Local Administrator Password Solution (LAPS) to immediately rotate the password for +the currently managed local account. + +## SYNTAX + +``` +Reset-LapsPassword [] +``` + +## DESCRIPTION + +The `Reset-LapsPassword` cmdlet tells LAPS to immediately rotate the password for the currently +managed local account. This operation is performed regardless of the state of the current password, +for example it doesn't matter whether the current password is considered expired or not. + +> [!IMPORTANT] +> This cmdlet is intended and recommended only for rare situations that require an +> immediate password rotation, for example as a response to a machine security breach situation. +> Excessively frequent usage of this cmdlet isn't recommended. + +The cmdlet doesn't return detailed information about the results of the operation. See +[Use Windows LAPS event logs](https://go.microsoft.com/fwlink/?linkid=2234103) for more information +on querying the resultant event log entries to get specific information on the outcome of the +operation. + +## EXAMPLES + +### Example 1 + +```powershell +Reset-LapsPassword +``` + +This example forces immediate rotation of the managed local account. + +## PARAMETERS + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None + +## OUTPUTS + +### System.Object + +## NOTES + +## RELATED LINKS + +[Windows LAPS Overview](https://go.microsoft.com/fwlink/?linkid=2233901) diff --git a/docset/winserver2019-ps/laps/Set-LapsADAuditing.md b/docset/winserver2019-ps/laps/Set-LapsADAuditing.md new file mode 100644 index 0000000000..bff3843852 --- /dev/null +++ b/docset/winserver2019-ps/laps/Set-LapsADAuditing.md @@ -0,0 +1,208 @@ +--- +description: Configures an Active Directory (AD) Organizational Unit (OU) to enable auditing on the Windows Local Administrator Password Solution (LAPS) password schema attributes. +external help file: lapspsh.dll-Help.xml +Module Name: LAPS +online version: https://learn.microsoft.com/powershell/module/laps/set-lapsadauditing?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +Locale: en-US +ms.date: 04/10/2023 +title: Set-LapsADAuditing +--- + +# Set-LapsADAuditing + +## SYNOPSIS +Configures an Active Directory (AD) Organizational Unit (OU) to enable auditing on the Windows Local +Administrator Password Solution (LAPS) password schema attributes. + +## SYNTAX + +``` +Set-LapsADAuditing [-Credential ] -Identity -AuditedPrincipals + [-AuditType ] [-Domain ] [-DomainController ] [-WhatIf] [-Confirm] + [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 + +```powershell +Set-LapsADAuditing -Identity LapsTestOU -AuditedPrincipals "laps.com\LapsAdmin" -AuditType Success +OU=LapsTestOU,DC=laps,DC=com +``` + +This example demonstrates configuring `Success` audits on an OU. + +### Example 2 + +```powershell +Set-LapsADAuditing -Identity LapsTestOU -AuditedPrincipals "laps.com\LapsAdminsGroup" -AuditType Failure +OU=LapsTestOU,DC=laps,DC=com +``` + +This example demonstrates configuring `Failure` audits on an OU. + +## PARAMETERS + +### -AuditedPrincipals + +Specifies the name of the users or groups should be configured for auditing. Users or groups may be +specified in either name or SID format. If specified in name format, the name must always include +the identifying domain name portion unless the name maps to a well-known or built-in account. + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AuditType + +Specifies whether to configure Success or Failure auditing. + +```yaml +Type: System.Security.AccessControl.AuditFlags +Parameter Sets: (All) +Aliases: +Accepted values: None, Success, Failure + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Credential + +Specifies the credentials to use when updating AD. If not specified, the current user's credentials +are used. + +```yaml +Type: System.Management.Automation.PSCredential +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Domain + +Specifies the name of the domain to connect to. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DomainController + +Specifies the name of the domain controller to connect to. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Identity + +Specifies the name of the OU to update. + +This parameter accepts several different name formats that influence the criteria used in the +resultant AD search. The supported name formats are as follows: + +- distinguishedName (begins with a `CN=`) +- name (for all other inputs) + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName, ByValue) +Accept wildcard characters: False +``` + +### -Confirm + +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf + +Shows what would happen if the cmdlet runs. The cmdlet isn't run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String[] + +## OUTPUTS + +### System.Object + +## NOTES + +## RELATED LINKS + +[Windows LAPS Overview](https://go.microsoft.com/fwlink/?linkid=2233901) diff --git a/docset/winserver2019-ps/laps/Set-LapsADComputerSelfPermission.md b/docset/winserver2019-ps/laps/Set-LapsADComputerSelfPermission.md new file mode 100644 index 0000000000..33aca11f0e --- /dev/null +++ b/docset/winserver2019-ps/laps/Set-LapsADComputerSelfPermission.md @@ -0,0 +1,171 @@ +--- +description: Configures permissions on an Active Directory (AD) Organizational Unit (OU) to enable computers in that OU to update their Windows Local Administrator Password Solution (LAPS) passwords. +external help file: lapspsh.dll-Help.xml +Module Name: LAPS +online version: https://learn.microsoft.com/powershell/module/laps/set-lapsadcomputerselfpermission?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +Locale: en-US +ms.date: 04/10/2023 +title: Set-LapsADComputerSelfPermission +--- + +# Set-LapsADComputerSelfPermission + +## SYNOPSIS +Configures permissions on an Active Directory (AD) Organizational Unit (OU) to enable computers in +that OU to update their Windows Local Administrator Password Solution (LAPS) passwords. + +## SYNTAX + +``` +Set-LapsADComputerSelfPermission -Identity [-Domain ] + [-DomainController ] [-Credential ] [-WhatIf] [-Confirm] + [] +``` + +## DESCRIPTION + +The `Set-LapsADComputerSelfPermission` cmdlet is used by administrators to configure security +permissions on an OU to allow computers in that OU to update their LAPS passwords. + +## EXAMPLES + +### Example 1 + +```powershell +Set-LapsADComputerSelfPermission -Identity LapsTestOU +``` + +```Output +Name DistinguishedName +---- ----------------- +LapsTestOU OU=LapsTestOU,DC=laps,DC=com +``` + +This example demonstrates how to run the cmdlet. + +## PARAMETERS + +### -Credential + +Specifies the credentials to use when updating AD. If not specified, the current +user's credentials are used. + +```yaml +Type: System.Management.Automation.PSCredential +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Domain + +Specifies the name of the domain to connect to. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DomainController + +Specifies the name of the domain controller to connect to. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Identity + +Specifies the name of the OU to update. + +This parameter accepts several different name formats that influence the criteria used in the +resultant AD search. The supported name formats are as follows: + +- distinguishedName (begins with a `CN=`) +- name (for all other inputs) + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName, ByValue) +Accept wildcard characters: False +``` + +### -Confirm + +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf + +Shows what would happen if the cmdlet runs. The cmdlet isn't run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String[] + +## OUTPUTS + +### System.Object + +## NOTES + +## RELATED LINKS + +[Windows LAPS Overview](https://go.microsoft.com/fwlink/?linkid=2233901) diff --git a/docset/winserver2019-ps/laps/Set-LapsADPasswordExpirationTime.md b/docset/winserver2019-ps/laps/Set-LapsADPasswordExpirationTime.md new file mode 100644 index 0000000000..2a0a2381dd --- /dev/null +++ b/docset/winserver2019-ps/laps/Set-LapsADPasswordExpirationTime.md @@ -0,0 +1,192 @@ +--- +description: Sets the Windows Local Administrator Password Solution (LAPS) password expiration timestamp on an Active Directory (AD) computer or domain controller object. +external help file: lapspsh.dll-Help.xml +Module Name: LAPS +online version: https://learn.microsoft.com/powershell/module/laps/set-lapsadpasswordexpirationtime?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +Locale: en-US +ms.date: 04/10/2023 +title: Set-LapsADPasswordExpirationTime +--- + +# Set-LapsADPasswordExpirationTime + +## SYNOPSIS +Sets the Windows Local Administrator Password Solution (LAPS) password expiration timestamp on an +Active Directory (AD) computer or domain controller object. + +## SYNTAX + +``` +Set-LapsADPasswordExpirationTime [-Credential ] -Identity + [-WhenEffective ] [-Domain ] [-DomainController ] [] +``` + +## DESCRIPTION + +The `Set-LapsADPasswordExpirationTime` cmdlet is used by administrators to configure the LAPS +password expiration time on an AD computer or domain controller object. + +> [!TIP] +> Running this cmdlet sets the LAPS password expiration time on the AD computer or domain controller +> object, but the new expiration time isn't honored until the next time the target device executes a +> LAPS policy processing cycle. + +## EXAMPLES + +### Example 1 + +```powershell +Set-LapsADPasswordExpirationTime -Identity lapsClient +``` + +```Output +DistinguishedName Status +----------------- ------ +CN=LAPSCLIENT,OU=LapsTestOU,DC=laps,DC=com PasswordReset +``` + +This example shows setting the LAPS password expiration time to the current time, which expires the +password immediately. + +### Example 2 + +```powershell +Set-LapsADPasswordExpirationTime -Identity lapsClient -WhenEffective (Get-Date -Date "07/04/2023 13:00:00") +``` + +```Output +DistinguishedName Status +----------------- ------ +CN=LAPSCLIENT,OU=LapsTestOU,DC=laps,DC=com PasswordReset +``` + +This examples show setting the LAPS password expiration time to a specific date. + +### Example 3 + +```powershell +Set-LapsADPasswordExpirationTime -Identity lapsClient -WhenEffective (DateTime::Now.AddDays(1)) +``` + +```Output +DistinguishedName Status +----------------- ------ +CN=LAPSCLIENT,OU=LapsTestOU,DC=laps,DC=com PasswordReset +``` + +This examples show setting the LAPS password expiration time to one day in the future. + +## PARAMETERS + +### -Credential + +Specifies the credentials to use when updating AD. If not specified, the current user's credentials +are used. + +```yaml +Type: System.Management.Automation.PSCredential +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Domain + +Specifies the name of the domain to connect to. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DomainController + +Specifies the name of the domain controller to connect to. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Identity + +Specifies the name of the computer or domain controller object to set the LAPS password expiration +time on. + +This parameter accepts several different name formats that influence the criteria used when +searching AD for the target device. The supported name formats are as follows: + +- distinguishedName (begins with a `CN=`) +- samAccountName (begins with a `$`) +- dnsHostName (contains at least one `.` character) +- name (for all other inputs) + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName, ByValue) +Accept wildcard characters: False +``` + +### -WhenEffective + +Specifies the new LAPS password expiration time. If not specified, the current time is used, which +expires the password is immediately. + +```yaml +Type: System.DateTime +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String[] + +## OUTPUTS + +### System.Object + +## NOTES + +## RELATED LINKS + +[Windows LAPS Overview](https://go.microsoft.com/fwlink/?linkid=2233901) diff --git a/docset/winserver2019-ps/laps/Set-LapsADReadPasswordPermission.md b/docset/winserver2019-ps/laps/Set-LapsADReadPasswordPermission.md new file mode 100644 index 0000000000..47c3f012a7 --- /dev/null +++ b/docset/winserver2019-ps/laps/Set-LapsADReadPasswordPermission.md @@ -0,0 +1,243 @@ +--- +description: Configures security on an Active Directory (AD) Organizational Unit (OU) to grant specific users or groups permission to query Windows Local Administrator Password Solution (LAPS) passwords. +external help file: lapspsh.dll-Help.xml +Module Name: LAPS +online version: https://learn.microsoft.com/powershell/module/laps/set-lapsadreadpasswordpermission?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +Locale: en-US +ms.date: 04/10/2023 +title: Set-LapsADReadPasswordPermission +--- + +# Set-LapsADReadPasswordPermission + +## SYNOPSIS +Configures security on an Active Directory (AD) Organizational Unit (OU) to grant specific users or +groups permission to query Windows Local Administrator Password Solution (LAPS) passwords. + +## SYNTAX + +``` +Set-LapsADReadPasswordPermission [-Credential ] -Identity + -AllowedPrincipals [-Domain ] [-DomainController ] [-WhatIf] [-Confirm] + [] +``` + +## DESCRIPTION + +The `Set-LapsADReadPasswordPermission` cmdlet is used by administrators to configure security +permissions on an OU to allow specific users or groups to query LAPS passwords on computers in that +OU. Users and groups must be fully qualified with both domain and user name components. The only +exception to this is when the specified name resolves to a built-in principal, such as +`Domain Admins`. + +## EXAMPLES + +### Example 1 + +```powershell +Set-LapsADReadPasswordPermission -Identity LapsTestOU -AllowedPrincipals "Domain Admins" +``` + +```Output +Name DistinguishedName +---- ----------------- +LapsTestOU OU=LapsTestOU,DC=laps,DC=com +``` + +This example shows how to run the cmdlet with an isolated name that successfully maps to a +well-known user or group. + +### Example 2 + +```powershell +Set-LapsADReadPasswordPermission -Identity LapsTestOU -AllowedPrincipals @("S-1-5-21-2889755270-1324585639-743026605-1215") +``` + +```Output +Name DistinguishedName +---- ----------------- +LapsTestOU OU=LapsTestOU,DC=laps,DC=com +``` + +This example shows how to run the cmdlet specifying a user SID as input. + +### Example 3 + +```powershell +Set-LapsADReadPasswordPermission -Identity 'OU=LapsTestOU,DC=laps,DC=com' -AllowedPrincipals @("laps.com\LapsAdmin1", "LapsAdmin2@laps.com") +``` + +```Output +Name DistinguishedName +---- ----------------- +LapsTestOU OU=LapsTestOU,DC=laps,DC=com +``` + +This example shows how to run the cmdlet specifying two fully qualified user names in different +formats. + +### Example 4 + +```powershell +Set-LapsADReadPasswordPermission -Identity LapsTestOU -AllowedPrincipals @("LapsAdministratorsGroup") +``` + +```Output +Set-LapsADReadPasswordPermission : The 'LapsAdministratorsGroup' account appears to be an isolated +name but is not a well-known name. Please use a fully qualified name instead, such as +"LAPSAdmins@contoso.com" or "contoso\LAPSAdmins" +At line:1 char:1 ++ Set-LapsADReadPasswordPermission -Identity LapsTestOU -AllowedPrincip ... ++ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + + CategoryInfo : InvalidArgument: (:) [Set-LapsADReadPasswordPermission], LapsPowershellException + + FullyQualifiedErrorId : Invalid principal specified,Microsoft.Windows.LAPS.SetLapsADReadPasswordPermission +``` + +This example shows a failure caused by specifying an isolated name that didn't resolve to a +well-known or built-in account. The fix for this error would be to add a domain name qualifier to +the input name, for example `LapsAdministratorsGroup@laps.com`. + +## PARAMETERS + +### -AllowedPrincipals + +Specifies the name of the users or groups should be granted the permissions. Users or groups may be +specified in either name or SID format. If specified in name format, the name must always include +the identifying domain name portion unless the name maps to a well-known or built-in account. + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Credential + +Specifies the credentials to use when updating AD. If not specified, the current +user's credentials are used. + +```yaml +Type: System.Management.Automation.PSCredential +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Domain + +Specifies the name of the domain to connect to. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DomainController + +Specifies the name of the domain controller to connect to. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Identity + +Specifies the name of the OU to update. + +This parameter accepts several different name formats that influence the criteria used in the +resultant AD search. The supported name formats are as follows: + +- distinguishedName (begins with a `CN=`) +- name (for all other inputs) + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Confirm + +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf + +Shows what would happen if the cmdlet runs. The cmdlet isn't run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String[] + +## OUTPUTS + +### System.Object + +## NOTES + +## RELATED LINKS + +[Windows LAPS Overview](https://go.microsoft.com/fwlink/?linkid=2233901) diff --git a/docset/winserver2019-ps/laps/Set-LapsADResetPasswordPermission.md b/docset/winserver2019-ps/laps/Set-LapsADResetPasswordPermission.md new file mode 100644 index 0000000000..675eae07c5 --- /dev/null +++ b/docset/winserver2019-ps/laps/Set-LapsADResetPasswordPermission.md @@ -0,0 +1,244 @@ +--- +description: Configures security on an Active Directory (AD) Organizational Unit (OU) to grant specific users or groups permission to set the Windows Local Administrator Password Solution (LAPS) password expiration time. +external help file: lapspsh.dll-Help.xml +Module Name: LAPS +online version: https://learn.microsoft.com/powershell/module/laps/set-lapsadresetpasswordpermission?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +Locale: en-US +ms.date: 04/10/2023 +title: Set-LapsADResetPasswordPermission +--- + +# Set-LapsADResetPasswordPermission + +## SYNOPSIS +Configures security on an Active Directory (AD) Organizational Unit (OU) to grant specific users or +groups permission to set the Windows Local Administrator Password Solution (LAPS) password +expiration time. + +## SYNTAX + +``` +Set-LapsADResetPasswordPermission [-Credential ] -Identity + -AllowedPrincipals [-Domain ] [-DomainController ] [-WhatIf] [-Confirm] + [] +``` + +## DESCRIPTION + +The `Set-LapsADResetPasswordPermission` cmdlet is used by administrators to configure security +permissions on an OU to allow specific users or groups to reset the LAPS password expiration time on +computers in that OU. Users and groups must be fully qualified with both domain and user name +components. The only exception to this is when the specified name resolves to a built-in principal, +such as `Domain Admins`. + +## EXAMPLES + +### Example 1 + +```powershell +Set-LapsADResetPasswordPermission -Identity LapsTestOU -AllowedPrincipals "Domain Admins" +``` + +```Output +Name DistinguishedName +---- ----------------- +LapsTestOU OU=LapsTestOU,DC=laps,DC=com +``` + +This example shows how to run the cmdlet with an isolated name that successfully maps to a +well-known user or group. + +### Example 2 + +```powershell +Set-LapsADResetPasswordPermission -Identity LapsTestOU -AllowedPrincipals @("S-1-5-21-2889755270-1324585639-743026605-1215") +``` + +```Output +Name DistinguishedName +---- ----------------- +LapsTestOU OU=LapsTestOU,DC=laps,DC=com +``` + +This example shows how to run the cmdlet specifying a user SID as input. + +### Example 3 + +```powershell +Set-LapsADResetPasswordPermission -Identity 'OU=LapsTestOU,DC=laps,DC=com' -AllowedPrincipals @("laps.com\LapsAdmin1", "LapsAdmin2@laps.com") +``` + +```Output +Name DistinguishedName +---- ----------------- +LapsTestOU OU=LapsTestOU,DC=laps,DC=com +``` + +This example shows how to run the cmdlet specifying two fully qualified user names in different +formats. + +### Example 4 + +```powershell +Set-LapsADResetPasswordPermission -Identity LapsTestOU -AllowedPrincipals @("LapsAdministratorsGroup") +``` + +```Output +Set-LapsADReadPasswordPermission : The 'LapsAdministratorsGroup' account appears to be an isolated +name but is not a well-known name. Please use a fully qualified name instead, such as +"LapsAdministratorsGroup@contoso.com" or "contoso\LapsAdministratorsGroup" +At line:1 char:1 ++ Set-LapsADReadPasswordPermission -Identity LapsTestOU -AllowedPrincip ... ++ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + + CategoryInfo : InvalidArgument: (:) [Set-LapsADReadPasswordPermission], LapsPowershellException + + FullyQualifiedErrorId : Invalid principal specified,Microsoft.Windows.LAPS.SetLapsADReadPasswordPermission +``` + +This example shows a failure caused by specifying an isolated name that didn't resolve to a +well-known or built-in account. The fix for this error would be to add a domain name qualifier to +the input name, for example "LapsAdministratorsGroup@laps.com". + +## PARAMETERS + +### -AllowedPrincipals + +Specifies the name of the users or groups should be granted the permissions. Users or groups may be +specified in either name or SID format. If specified in name format, the name must always include +the identifying domain name portion unless the name maps to a well-known or built-in account. + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Credential + +Specifies the credentials to use when updating AD. If not specified, the current user's credentials +are used. + +```yaml +Type: System.Management.Automation.PSCredential +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Domain + +Specifies the name of the domain to connect to. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DomainController + +Specifies the name of the domain controller to connect to. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Identity + +Specifies the name of the OU to update. + +This parameter accepts several different name formats that influence the criteria used in the +resultant AD search. The supported name formats are as follows: + +- distinguishedName (begins with a `CN=`) +- name (for all other inputs) + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Confirm + +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf + +Shows what would happen if the cmdlet runs. The cmdlet isn't run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String[] + +## OUTPUTS + +### System.Object + +## NOTES + +## RELATED LINKS + +[Windows LAPS Overview](https://go.microsoft.com/fwlink/?linkid=2233901) diff --git a/docset/winserver2019-ps/laps/Update-LapsADSchema.md b/docset/winserver2019-ps/laps/Update-LapsADSchema.md new file mode 100644 index 0000000000..2608593912 --- /dev/null +++ b/docset/winserver2019-ps/laps/Update-LapsADSchema.md @@ -0,0 +1,121 @@ +--- +description: Extends the Active Directory (AD) schema with the Windows Local Administrator Password Solution +(LAPS) schema attributes. +external help file: lapspsh.dll-Help.xml +Module Name: LAPS +online version: https://learn.microsoft.com/powershell/module/laps/update-lapsadschema?view=windowsserver2019-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +Locale: en-US +ms.date: 04/10/2023 +title: Update-LapsADSchema +--- + +# Update-LapsADSchema + +## SYNOPSIS +Extends the Active Directory (AD) schema with the Windows Local Administrator Password Solution +(LAPS) schema attributes. + +## SYNTAX + +``` +Update-LapsADSchema [-Credential ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION + +The `Update-LapsADSchema` cmdlet extends the AD schema with the LAPS schema attributes. The specific +nature of the schema extensions is documented in +[Windows LAPS schema extensions reference](https://go.microsoft.com/fwlink/?linkid=2233804). + +The **Verbose** parameter may be used to get additional information about the cmdlet's operation. + +## EXAMPLES + +### Example 1 + +```powershell +Update-LapsADSchema +``` + +```Output +The 'ms-LAPS-Password' schema attribute needs to be added to the AD schema. +Do you want to proceed? +[Y] Yes [A] Yes to All [N] No [L] No to All [S] Suspend [?] Help (default is "Y"): A +``` + +This example extends the AD schema to add the LAPS attributes. + +## PARAMETERS + +### -Credential + +Specifies a set of credentials to use when extending the schema. If not specified, the current +user's credentials are used. + +```yaml +Type: System.Management.Automation.PSCredential +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm + +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf + +Shows what would happen if the cmdlet runs. The cmdlet isn't run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None + +## OUTPUTS + +### System.Object + +## NOTES + +## RELATED LINKS + +[Windows LAPS Overview](https://go.microsoft.com/fwlink/?linkid=2233901) + +[Windows LAPS schema extensions reference](https://go.microsoft.com/fwlink/?linkid=2233804) diff --git a/docset/winserver2022-ps/laps/LAPS.md b/docset/winserver2022-ps/laps/LAPS.md index 55d22549f6..c13436bc3d 100644 --- a/docset/winserver2022-ps/laps/LAPS.md +++ b/docset/winserver2022-ps/laps/LAPS.md @@ -1,5 +1,5 @@ --- -description: This reference provides cmdlet descriptions and syntax for all Windows Local Administrator Password +description: This reference provides cmdlet descriptions and syntax for the Windows Local Administrator Password Solution (LAPS) module. Module Name: LAPS Module Guid: 8eb7ddf9-7890-49ae-9af1-3b41d7e63c41 From 3bfcb139db5a2c7ad9ec220ba6b202c5afaf096b Mon Sep 17 00:00:00 2001 From: MattTB <49200399+mtrilbybassett@users.noreply.github.com> Date: Wed, 19 Apr 2023 16:28:01 -0400 Subject: [PATCH 433/965] Update Update-LapsADSchema.md --- docset/winserver2019-ps/laps/Update-LapsADSchema.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docset/winserver2019-ps/laps/Update-LapsADSchema.md b/docset/winserver2019-ps/laps/Update-LapsADSchema.md index 2608593912..4c056d6f84 100644 --- a/docset/winserver2019-ps/laps/Update-LapsADSchema.md +++ b/docset/winserver2019-ps/laps/Update-LapsADSchema.md @@ -1,6 +1,5 @@ --- -description: Extends the Active Directory (AD) schema with the Windows Local Administrator Password Solution -(LAPS) schema attributes. +description: Extends the Active Directory (AD) schema with the Windows Local Administrator Password Solution (LAPS) schema attributes. external help file: lapspsh.dll-Help.xml Module Name: LAPS online version: https://learn.microsoft.com/powershell/module/laps/update-lapsadschema?view=windowsserver2019-ps&wt.mc_id=ps-gethelp From 92eb5626efccf34ea00e1a7be31c2df3df180e7a Mon Sep 17 00:00:00 2001 From: MattTB <49200399+mtrilbybassett@users.noreply.github.com> Date: Thu, 20 Apr 2023 14:19:44 -0400 Subject: [PATCH 434/965] Update LAPS.md --- docset/winserver2019-ps/laps/LAPS.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docset/winserver2019-ps/laps/LAPS.md b/docset/winserver2019-ps/laps/LAPS.md index 8128683a39..902661693d 100644 --- a/docset/winserver2019-ps/laps/LAPS.md +++ b/docset/winserver2019-ps/laps/LAPS.md @@ -1,6 +1,5 @@ --- -description: This reference provides cmdlet descriptions and syntax for the Windows Local Administrator Password -Solution (LAPS) module. +description: This reference provides cmdlet descriptions and syntax for the Windows Local Administrator Password Solution (LAPS) module. Module Name: LAPS Module Guid: 8eb7ddf9-7890-49ae-9af1-3b41d7e63c41 Download Help Link: https://aka.ms/winsvr-2019-pshelp From df3b0c11bb9df0e12d880cda6b1fa5286189314e Mon Sep 17 00:00:00 2001 From: MattTB <49200399+mtrilbybassett@users.noreply.github.com> Date: Thu, 20 Apr 2023 14:21:41 -0400 Subject: [PATCH 435/965] Update LAPS.md --- docset/winserver2022-ps/laps/LAPS.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/laps/LAPS.md b/docset/winserver2022-ps/laps/LAPS.md index c13436bc3d..84b98e43a0 100644 --- a/docset/winserver2022-ps/laps/LAPS.md +++ b/docset/winserver2022-ps/laps/LAPS.md @@ -1,6 +1,5 @@ --- -description: This reference provides cmdlet descriptions and syntax for the Windows Local Administrator Password -Solution (LAPS) module. +description: This reference provides cmdlet descriptions and syntax for the Windows Local Administrator Password Solution (LAPS) module. Module Name: LAPS Module Guid: 8eb7ddf9-7890-49ae-9af1-3b41d7e63c41 Download Help Link: https://aka.ms/winsvr-2022-pshelp From 9cadf9876b6d87daddffc0b906bce092138edbf9 Mon Sep 17 00:00:00 2001 From: MattTB <49200399+mtrilbybassett@users.noreply.github.com> Date: Thu, 20 Apr 2023 15:04:46 -0400 Subject: [PATCH 436/965] Update Update-LapsADSchema.md --- docset/winserver2022-ps/laps/Update-LapsADSchema.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/laps/Update-LapsADSchema.md b/docset/winserver2022-ps/laps/Update-LapsADSchema.md index 15daffa46f..9f4c825eb7 100644 --- a/docset/winserver2022-ps/laps/Update-LapsADSchema.md +++ b/docset/winserver2022-ps/laps/Update-LapsADSchema.md @@ -1,6 +1,5 @@ --- -description: Extends the Active Directory (AD) schema with the Windows Local Administrator Password Solution -(LAPS) schema attributes. +description: Extends the Active Directory (AD) schema with the Windows Local Administrator Password Solution (LAPS) schema attributes. external help file: lapspsh.dll-Help.xml Module Name: LAPS online version: https://learn.microsoft.com/powershell/module/laps/update-lapsadschema?view=windowsserver2022-ps&wt.mc_id=ps-gethelp From 4d0ff81435cd4576945b65b367bc8b2a86227e0b Mon Sep 17 00:00:00 2001 From: Tina Burden Date: Thu, 27 Apr 2023 08:35:44 -0700 Subject: [PATCH 437/965] Apply suggestions from code review Co-authored-by: Dario Woitasen <33589238+dariomws@users.noreply.github.com> --- docset/winserver2016-ps/defender/Set-MpPreference.md | 2 +- docset/winserver2019-ps/defender/Set-MpPreference.md | 2 +- docset/winserver2022-ps/defender/Set-MpPreference.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docset/winserver2016-ps/defender/Set-MpPreference.md b/docset/winserver2016-ps/defender/Set-MpPreference.md index df9caeeca9..9adcabb2a6 100644 --- a/docset/winserver2016-ps/defender/Set-MpPreference.md +++ b/docset/winserver2016-ps/defender/Set-MpPreference.md @@ -106,7 +106,7 @@ Accept wildcard characters: False Indicates whether to check for new virus and spyware definitions before Windows Defender runs a scan. If you specify a value of $True, Windows Defender checks for new definitions. If you specify $False or don't specify a value, the scan begins with existing definitions. -This setting applies to scheduled scans, but it has no effect on scans initiated manually from the user interface or on scans started from the command line using "mpcmdrun -Scan" +This setting applies to scheduled scans, but it has no effect on scans initiated manually from the user interface or scans started from the command line using "mpcmdrun -Scan". ```yaml Type: Boolean diff --git a/docset/winserver2019-ps/defender/Set-MpPreference.md b/docset/winserver2019-ps/defender/Set-MpPreference.md index d9910b2313..d2dbe48781 100644 --- a/docset/winserver2019-ps/defender/Set-MpPreference.md +++ b/docset/winserver2019-ps/defender/Set-MpPreference.md @@ -114,7 +114,7 @@ Accept wildcard characters: False Indicates whether to check for new virus and spyware definitions before Windows Defender runs a scan. If you specify a value of `$True`, Windows Defender checks for new definitions. If you specify `$False` or don’t specify a value, the scan begins with existing definitions. -This setting applies to scheduled scans, but it has no effect on scans initiated manually from the user interface or on scans started from the command line using "mpcmdrun -Scan" +This setting applies to scheduled scans, but it has no effect on scans initiated manually from the user interface or on scans started from the command line using "mpcmdrun -Scan". ```yaml Type: Boolean diff --git a/docset/winserver2022-ps/defender/Set-MpPreference.md b/docset/winserver2022-ps/defender/Set-MpPreference.md index 1c936f9d41..32289f87fe 100644 --- a/docset/winserver2022-ps/defender/Set-MpPreference.md +++ b/docset/winserver2022-ps/defender/Set-MpPreference.md @@ -220,7 +220,7 @@ Accept wildcard characters: False Indicates whether to check for new virus and spyware definitions before Windows Defender runs a scan. If you specify a value of $True, Windows Defender checks for new definitions. If you specify $False or don't specify a value, the scan begins with existing definitions. -This setting applies to scheduled scans, but it has no effect on scans initiated manually from the user interface or on scans started from the command line using "mpcmdrun -Scan" +This setting applies to scheduled scans, but it has no effect on scans initiated manually from the user interface or on scans started from the command line using "mpcmdrun -Scan". ```yaml Type: Boolean From eab5ed4de9f1b4887a70eaefa52f11ff7abcc77b Mon Sep 17 00:00:00 2001 From: Sean Wheeler Date: Thu, 27 Apr 2023 10:22:46 -0700 Subject: [PATCH 438/965] Update Add-CAAuthorityInformationAccess.md Removed example 3 - does not use this cmdlet --- .../Add-CAAuthorityInformationAccess.md | 24 +++++-------------- 1 file changed, 6 insertions(+), 18 deletions(-) diff --git a/docset/winserver2022-ps/adcsadministration/Add-CAAuthorityInformationAccess.md b/docset/winserver2022-ps/adcsadministration/Add-CAAuthorityInformationAccess.md index 47fbb01a14..260ae18376 100644 --- a/docset/winserver2022-ps/adcsadministration/Add-CAAuthorityInformationAccess.md +++ b/docset/winserver2022-ps/adcsadministration/Add-CAAuthorityInformationAccess.md @@ -40,32 +40,20 @@ An AIA URI should specify either an AIA extension or an OCSP extension, but not ## EXAMPLES ### Example 1: Add AIA to the specified authority -``` -PS C:\> Add-CAAuthorityInformationAccess -AddToCertificateAia -Uri http://ca1.corp.contoso.com/pki + +```powershell +Add-CAAuthorityInformationAccess -AddToCertificateAia -Uri http://ca1.corp.contoso.com/pki ``` This command adds Authority Information Access (AIA) for the specified certification authority to 'http://ca1.corp.contoso.com/pki'. ### Example 2: Add AIA for OCSP -``` -PS C:\> Add-CAAuthorityInformationAccess -AddToCertificateOcsp -Uri http://www.corp.contoso.com/ocsp. -``` - -This command adds AIA for OCSP pointing to `http://www.corp.contoso.com/ocsp`. -### Example 3: Remove all AIA entries +```powershell +Add-CAAuthorityInformationAccess -AddToCertificateOcsp -Uri http://www.corp.contoso.com/ocsp. ``` -PS C:\> $AIA = Get-CAAuthorityInformationAccess - -PS C:\> $AIA | Remove-CAAuthorityInformationAccess -``` - -This example removes all AIA entries - -The first command gets the certificate authority information and stores the information in the variable named $AIA. - -The second command removes all the AIA entries that are stored in the $AIA variable. +This command adds AIA for OCSP pointing to `http://www.corp.contoso.com/ocsp`. ## PARAMETERS From 1297c6a9c76f005b3feb5a16ddc767791a732e56 Mon Sep 17 00:00:00 2001 From: Sean Wheeler Date: Thu, 27 Apr 2023 10:32:13 -0700 Subject: [PATCH 439/965] Add remove example to Remove cmdlet --- .../Remove-CAAuthorityInformationAccess.md | 20 +++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/docset/winserver2022-ps/adcsadministration/Remove-CAAuthorityInformationAccess.md b/docset/winserver2022-ps/adcsadministration/Remove-CAAuthorityInformationAccess.md index 528f65cb7c..735c39b2ef 100644 --- a/docset/winserver2022-ps/adcsadministration/Remove-CAAuthorityInformationAccess.md +++ b/docset/winserver2022-ps/adcsadministration/Remove-CAAuthorityInformationAccess.md @@ -53,6 +53,18 @@ PS C:\> Remove-CAAuthorityInformationAccess -Uri "http://www.contoso.com/pki/orc This command removes all AIA and OCSP entries that match the URL `http://www.contoso.com/pki/orca1.crt`. +### Example 4: Remove all AIA entries + +```powershell +$AIA = Get-CAAuthorityInformationAccess +$AIA | Remove-CAAuthorityInformationAccess +``` + +This example removes all AIA entries + +The first command gets the certificate authority information and stores the information in the variable named $AIA. + +The second command removes all the AIA entries that are stored in the $AIA variable. ## PARAMETERS ### -AddToCertificateAia @@ -61,7 +73,7 @@ Indicates that the cmdlet adds the AIA URI. ```yaml Type: SwitchParameter Parameter Sets: RemoveAsAIA -Aliases: +Aliases: Required: False Position: Named @@ -76,7 +88,7 @@ Indicates that the cmdlet adds an Online Responder's URI. ```yaml Type: SwitchParameter Parameter Sets: RemoveAsOCSP -Aliases: +Aliases: Required: False Position: Named @@ -106,7 +118,7 @@ Forces the command to run without asking for user confirmation. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -122,7 +134,7 @@ This information is added to the CA properties and registry. ```yaml Type: String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: 1 From 2f4168efcbad09a0cc9da096d0e5f825fac1d4ba Mon Sep 17 00:00:00 2001 From: Mike Soule Date: Thu, 27 Apr 2023 14:41:05 -0700 Subject: [PATCH 440/965] m --- temp | 1 + 1 file changed, 1 insertion(+) create mode 100644 temp diff --git a/temp b/temp new file mode 100644 index 0000000000..8b13789179 --- /dev/null +++ b/temp @@ -0,0 +1 @@ + From 8f8ee5f1c4f5f84b1eaa4df78f1282f5fe6066d5 Mon Sep 17 00:00:00 2001 From: Mike Soule Date: Thu, 27 Apr 2023 14:42:44 -0700 Subject: [PATCH 441/965] Clean --- temp | 1 - 1 file changed, 1 deletion(-) delete mode 100644 temp diff --git a/temp b/temp deleted file mode 100644 index 8b13789179..0000000000 --- a/temp +++ /dev/null @@ -1 +0,0 @@ - From 3f98e1d9f4bddb3998b139a2dd00bbb053ae559f Mon Sep 17 00:00:00 2001 From: Anthony Howell Date: Thu, 27 Apr 2023 14:43:39 -0700 Subject: [PATCH 442/965] fix header spacing --- .../activedirectory/New-ADUser.md | 74 +++++++++++++++++++ 1 file changed, 74 insertions(+) diff --git a/docset/winserver2022-ps/activedirectory/New-ADUser.md b/docset/winserver2022-ps/activedirectory/New-ADUser.md index aed3b4a952..dd6ee070c0 100644 --- a/docset/winserver2022-ps/activedirectory/New-ADUser.md +++ b/docset/winserver2022-ps/activedirectory/New-ADUser.md @@ -11,6 +11,7 @@ title: New-ADUser # New-ADUser ## SYNOPSIS + Creates an Active Directory user. ## SYNTAX @@ -37,6 +38,7 @@ New-ADUser [-WhatIf] [-Confirm] [-AccountExpirationDate ] [-AccountNot ``` ## DESCRIPTION + The **New-ADUser** cmdlet creates an Active Directory user. You can set commonly used user property values by using the cmdlet parameters. @@ -68,7 +70,9 @@ Then pass these objects through the pipeline to the **New-ADUser** cmdlet to cre ## EXAMPLES + ### Example 1: Create a user with an imported certificate + ``` PS C:\> New-ADUser -Name "ChewDavid" -Certificate (New-Object System.Security.Cryptography.X509Certificates.X509Certificate -ArgumentList "Export.cer") ``` @@ -76,6 +80,7 @@ PS C:\> New-ADUser -Name "ChewDavid" -Certificate (New-Object System.Security.Cr This command creates a user named ChewDavid with a certificate imported from the file Export.cer. ### Example 2: Create a user and set properties + ``` PS C:\> New-ADUser -Name "ChewDavid" -OtherAttributes @{'title'="director";'mail'="chewdavid@fabrikam.com"} ``` @@ -83,6 +88,7 @@ PS C:\> New-ADUser -Name "ChewDavid" -OtherAttributes @{'title'="director";'mail This command creates a new user named ChewDavid and sets the **title** and **mail** properties on the new object. ### Example 3: Create an inetOrgPerson user + ``` PS C:\> New-ADUser -Name "ChewDavid" -Type iNetOrgPerson -Path "DC=AppNC" -Server lds.Fabrikam.com:50000 ``` @@ -90,6 +96,7 @@ PS C:\> New-ADUser -Name "ChewDavid" -Type iNetOrgPerson -Path "DC=AppNC" -Serve This command creates an **inetOrgPerson**-class user named ChewDavid on an AD LDS instance. ### Example 4: Create a user and set password + ``` PS C:\> New-ADUser -Name "ChewDavid" -Accountpassword (Read-Host -AsSecureString "AccountPassword") -Enabled $true ``` @@ -99,6 +106,7 @@ This command creates a new user named ChewDavid and sets the account password. ## PARAMETERS ### -AccountExpirationDate + Specifies the expiration date for an account. This parameter sets the **AccountExpirationDate** property of an account object. The LDAP display name (**ldapDisplayName**) for this property is accountExpires. @@ -121,6 +129,7 @@ Accept wildcard characters: False ``` ### -AccountNotDelegated + Indicates whether the security context of the user is delegated to a service. When this parameter is set to $True, the security context of the account is not delegated to a service even when the service account is set as trusted for Kerberos delegation. This parameter sets the **AccountNotDelegated** property for an Active Directory account. @@ -143,6 +152,7 @@ Accept wildcard characters: False ``` ### -AccountPassword + Specifies a new password value for an account. This value is stored as an encrypted string. @@ -172,6 +182,7 @@ Accept wildcard characters: False ``` ### -AllowReversiblePasswordEncryption + Indicates whether reversible password encryption is allowed for the account. This parameter sets the **AllowReversiblePasswordEncryption** property of the account. This parameter also sets the **ADS_UF_ENCRYPTED_TEXT_PASSWORD_ALLOWED** flag of the Active Directory User Account Control (UAC) attribute. @@ -195,6 +206,7 @@ Accept wildcard characters: False ### -AuthenticationPolicy + Specifies an Active Directory Domain Services authentication policy object. Specify the authentication policy object in one of the following formats: @@ -220,6 +232,7 @@ Accept wildcard characters: False ``` ### -AuthenticationPolicySilo + Specifies an Active Directory Domain Services authentication policy silo object. Specify the authentication policy silo object in one of the following formats: @@ -245,6 +258,7 @@ Accept wildcard characters: False ``` ### -AuthType + Specifies the authentication method to use. The acceptable values for this parameter are: @@ -269,6 +283,7 @@ Accept wildcard characters: False ``` ### -CannotChangePassword + Indicates whether the account password can be changed. This parameter sets the **CannotChangePassword** property of an account. The acceptable values for this parameter are: @@ -289,6 +304,7 @@ Accept wildcard characters: False ``` ### -Certificates + Specifies the DER-encoded X.509v3 certificates of the account. These certificates include the public key certificates issued to this account by the Microsoft Certificate Service. This parameter sets the Certificates property of the account object. The LDAP display name (ldapDisplayName) for this property is userCertificate. ```yaml @@ -304,6 +320,7 @@ Accept wildcard characters: False ``` ### -ChangePasswordAtLogon + Indicates whether a password must be changed during the next logon attempt. The acceptable values for this parameter are: @@ -325,6 +342,7 @@ Accept wildcard characters: False ``` ### -City + Specifies the user's town or city. This parameter sets the **City** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is l. @@ -342,6 +360,7 @@ Accept wildcard characters: False ``` ### -Company + Specifies the user's company. This parameter sets the **Company** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is company. @@ -359,6 +378,7 @@ Accept wildcard characters: False ``` ### -CompoundIdentitySupported + Specifies whether an account supports Kerberos service tickets which includes the authorization data for the user's device. This value sets the compound identity supported flag of the Active Directory **msDS-SupportedEncryptionTypes** attribute. The acceptable values for this parameter are: @@ -382,6 +402,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -397,6 +418,7 @@ Accept wildcard characters: False ``` ### -Country + Specifies the country or region code for the user's language of choice. This parameter sets the **Country** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is c. @@ -415,6 +437,7 @@ Accept wildcard characters: False ``` ### -Credential + Specifies the user account credentials to use to perform this task. The default credentials are the credentials of the currently logged on user unless the cmdlet is run from an Active Directory PowerShell provider drive. If the cmdlet is run from such a provider drive, the account associated with the drive is the default. @@ -440,6 +463,7 @@ Accept wildcard characters: False ``` ### -Department + Specifies the user's department. This parameter sets the **Department** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is department. @@ -457,6 +481,7 @@ Accept wildcard characters: False ``` ### -Description + Specifies a description of the object. This parameter sets the value of the **Description** property for the user object. The LDAP display name (**ldapDisplayName**) for this property is description. @@ -474,6 +499,7 @@ Accept wildcard characters: False ``` ### -DisplayName + Specifies the display name of the object. This parameter sets the **DisplayName** property of the user object. The LDAP display name (**ldapDisplayName**) for this property is displayName. @@ -491,6 +517,7 @@ Accept wildcard characters: False ``` ### -Division + Specifies the user's division. This parameter sets the **Division** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is division. @@ -508,6 +535,7 @@ Accept wildcard characters: False ``` ### -EmailAddress + Specifies the user's e-mail address. This parameter sets the **EmailAddress** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is mail. @@ -525,6 +553,7 @@ Accept wildcard characters: False ``` ### -EmployeeID + Specifies the user's employee ID. This parameter sets the **EmployeeID** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is employeeID. @@ -542,6 +571,7 @@ Accept wildcard characters: False ``` ### -EmployeeNumber + Specifies the user's employee number. This parameter sets the **EmployeeNumber** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is employeeNumber. @@ -559,6 +589,7 @@ Accept wildcard characters: False ``` ### -Enabled + Specifies if an account is enabled. An enabled account requires a password. This parameter sets the **Enabled** property for an account object. @@ -581,6 +612,7 @@ Accept wildcard characters: False ``` ### -Fax + Specifies the user's fax phone number. This parameter sets the **Fax** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is facsimileTelephoneNumber. @@ -598,6 +630,7 @@ Accept wildcard characters: False ``` ### -GivenName + Specifies the user's given name. This parameter sets the **GivenName** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is givenName. @@ -615,6 +648,7 @@ Accept wildcard characters: False ``` ### -HomeDirectory + Specifies a user's home directory. This parameter sets the **HomeDirectory** property of a user object. The LDAP display name (**ldapDisplayName**) for this property is homeDirectory. @@ -632,6 +666,7 @@ Accept wildcard characters: False ``` ### -HomeDrive + Specifies a drive that is associated with the UNC path defined by the **HomeDirectory** property. The drive letter is specified as ``: where `` indicates the letter of the drive to associate. The `` must be a single, uppercase letter and the colon is required. @@ -651,6 +686,7 @@ Accept wildcard characters: False ``` ### -HomePage + Specifies the URL of the home page of the object. This parameter sets the **homePage** property of a user object. The LDAP display name (**ldapDisplayName**) for this property is wWWHomePage. @@ -668,6 +704,7 @@ Accept wildcard characters: False ``` ### -HomePhone + Specifies the user's home telephone number. This parameter sets the **HomePhone** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is homePhone. @@ -685,6 +722,7 @@ Accept wildcard characters: False ``` ### -Initials + Specifies the initials that represent part of a user's name. You can use this value for the user's middle initial. This parameter sets the **Initials** property of a user object. @@ -703,6 +741,7 @@ Accept wildcard characters: False ``` ### -Instance + Specifies an instance of a user object to use as a template for a new user object. You can use an instance of an existing user object as a template or you can construct a new user object for template use. @@ -731,6 +770,7 @@ Accept wildcard characters: False ``` ### -KerberosEncryptionType + Specifies whether an account supports Kerberos encryption types which are used during creation of service tickets. This value sets the encryption types supported flags of the Active Directory **msDS-SupportedEncryptionTypes** attribute. Possible values for this parameter are: @@ -762,6 +802,7 @@ Accept wildcard characters: False ``` ### -LogonWorkstations + Specifies the computers that the user can access. To specify more than one computer, create a single comma-separated list. You can identify a computer by using the Security Account Manager (SAM) account name (sAMAccountName) or the DNS host name of the computer. @@ -782,6 +823,7 @@ Accept wildcard characters: False ``` ### -Manager + Specifies the user's manager. This parameter sets the **Manager** property of a user object. This parameter is set by providing one of the following property values. @@ -806,6 +848,7 @@ Accept wildcard characters: False ``` ### -MobilePhone + Specifies the user's mobile phone number. This parameter sets the **MobilePhone** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is mobile. @@ -823,6 +866,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of the object. This parameter sets the **Name** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is name. @@ -840,6 +884,7 @@ Accept wildcard characters: False ``` ### -Office + Specifies the location of the user's office or place of business. This parameter sets the **Office** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is physicalDeliveryOfficeName. @@ -857,6 +902,7 @@ Accept wildcard characters: False ``` ### -OfficePhone + Specifies the user's office telephone number. This parameter sets the **OfficePhone** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is telephoneNumber. @@ -874,6 +920,7 @@ Accept wildcard characters: False ``` ### -Organization + Specifies the user's organization. This parameter sets the **Organization** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is o. @@ -891,6 +938,7 @@ Accept wildcard characters: False ``` ### -OtherAttributes + Specifies object attribute values for attributes that are not represented by cmdlet parameters. You can set one or more parameters at the same time with this parameter. If an attribute takes more than one value, you can assign multiple values. @@ -921,6 +969,7 @@ Accept wildcard characters: False ``` ### -OtherName + Specifies a name in addition to a user's given name and surname, such as the user's middle name. This parameter sets the **OtherName** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is middleName. @@ -938,6 +987,7 @@ Accept wildcard characters: False ``` ### -PassThru + Returns an object representing the item with which you are working. By default, this cmdlet does not generate any output. @@ -954,6 +1004,7 @@ Accept wildcard characters: False ``` ### -PasswordNeverExpires + Specifies whether the password of an account can expire. This parameter sets the **PasswordNeverExpires** property of an account object. This parameter also sets the **ADS_UF_DONT_EXPIRE_PASSWD** flag of the Active Directory User Account Control attribute. @@ -977,6 +1028,7 @@ Accept wildcard characters: False ``` ### -PasswordNotRequired + Specifies whether the account requires a password. A password is not required for a new account. This parameter sets the **PasswordNotRequired** property of an account object. @@ -994,6 +1046,7 @@ Accept wildcard characters: False ``` ### -Path + Specifies the X.500 path of the OU or container where the new object is created. In many cases, a default value is used for the *Path* parameter if no value is specified. @@ -1031,6 +1084,7 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` ### -POBox + Specifies the user's post office box number. This parameter sets the **POBox** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is postOfficeBox. @@ -1047,6 +1101,7 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` ### -PostalCode + Specifies the user's postal code or zip code. This parameter sets the **PostalCode** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is postalCode. @@ -1064,6 +1119,7 @@ Accept wildcard characters: False ``` ### -PrincipalsAllowedToDelegateToAccount + Specifies an array of principal objects. This parameter sets the **msDS-AllowedToActOnBehalfOfOtherIdentity** attribute of a computer account object. @@ -1080,6 +1136,7 @@ Accept wildcard characters: False ``` ### -ProfilePath + Specifies a path to the user's profile. This value can be a local absolute path or a Universal Naming Convention (UNC) path. This parameter sets the **ProfilePath** property of the user object. @@ -1098,6 +1155,7 @@ Accept wildcard characters: False ``` ### -SamAccountName + Specifies the Security Account Manager (SAM) account name of the user, group, computer, or service account. The maximum length of the description is 256 characters. To be compatible with older operating systems, create a SAM account name that is 20 characters or less. @@ -1119,6 +1177,7 @@ Accept wildcard characters: False ``` ### -ScriptPath + Specifies a path to the user's log on script. This value can be a local absolute path or a Universal Naming Convention (UNC) path. This parameter sets the **ScriptPath** property of the user object. @@ -1137,6 +1196,7 @@ Accept wildcard characters: False ``` ### -Server + Specifies the AD DS instance to connect to, by providing one of the following values for a corresponding domain name or directory server. The service may be any of the following: AD LDS, AD DS, or Active Directory snapshot instance. @@ -1172,6 +1232,7 @@ Accept wildcard characters: False ``` ### -ServicePrincipalNames + Specifies the service principal names for the account. This parameter sets the **ServicePrincipalNames** property of the account. The LDAP display name (**ldapDisplayName**) for this property is servicePrincipalName. @@ -1190,6 +1251,7 @@ Accept wildcard characters: False ``` ### -SmartcardLogonRequired + Specifies whether a smart card is required to logon. This parameter sets the **SmartCardLoginRequired** property for a user object. This parameter also sets the **ADS_UF_SMARTCARD_REQUIRED** flag of the Active Directory User Account Control attribute. @@ -1211,6 +1273,7 @@ Accept wildcard characters: False ``` ### -State + Specifies the user's or Organizational Unit's state or province. This parameter sets the **State** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is st. @@ -1228,6 +1291,7 @@ Accept wildcard characters: False ``` ### -StreetAddress + Specifies the user's street address. This parameter sets the **StreetAddress** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is streetAddress. @@ -1245,6 +1309,7 @@ Accept wildcard characters: False ``` ### -Surname + Specifies the user's last name or surname. This parameter sets the **Surname** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is sn. @@ -1262,6 +1327,7 @@ Accept wildcard characters: False ``` ### -Title + Specifies the user's title. This parameter sets the **Title** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is title. @@ -1279,6 +1345,7 @@ Accept wildcard characters: False ``` ### -TrustedForDelegation + Indicates whether an account is trusted for Kerberos delegation. A service that runs under an account that is trusted for Kerberos delegation can assume the identity of a client requesting the service. This parameter sets the **TrustedForDelegation** property of an account object. @@ -1301,6 +1368,7 @@ Accept wildcard characters: False ``` ### -Type + Specifies the type of object to create. Set the *Type* parameter to the LDAP display name of the Active Directory schema class that represents the type of object that you want to create. The selected type must be a subclass of the User schema class. @@ -1319,6 +1387,7 @@ Accept wildcard characters: False ``` ### -UserPrincipalName + Specifies a user principal name (UPN) in the format `@`. A UPN is a friendly name assigned by an administrator that is shorter than the LDAP distinguished name used by the system and easier to remember. The UPN is independent of the user object's distinguished name, so a user object can be moved or renamed without affecting the user logon name. @@ -1337,6 +1406,7 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. @@ -1353,20 +1423,24 @@ Accept wildcard characters: False ``` ### CommonParameters + This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### None or Microsoft.ActiveDirectory.Management.ADUser + A user object that is a template for the new user object is received by the *Instance* parameter. ## OUTPUTS ### None or Microsoft.ActiveDirectory.Management.ADUser + Returns the new user object when the *PassThru* parameter is specified. By default, this cmdlet does not generate any output. ## NOTES + * This cmdlet does not work with an Active Directory snapshot. * This cmdlet does not work with a read-only domain controller. From 627a12bf4c673e0ffbfd685d9c9239a6125e4467 Mon Sep 17 00:00:00 2001 From: Anthony Howell Date: Thu, 27 Apr 2023 14:46:33 -0700 Subject: [PATCH 443/965] switch * to _ --- .../activedirectory/New-ADUser.md | 50 +++++++++---------- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/docset/winserver2022-ps/activedirectory/New-ADUser.md b/docset/winserver2022-ps/activedirectory/New-ADUser.md index dd6ee070c0..a8983a17a4 100644 --- a/docset/winserver2022-ps/activedirectory/New-ADUser.md +++ b/docset/winserver2022-ps/activedirectory/New-ADUser.md @@ -42,27 +42,27 @@ New-ADUser [-WhatIf] [-Confirm] [-AccountExpirationDate ] [-AccountNot The **New-ADUser** cmdlet creates an Active Directory user. You can set commonly used user property values by using the cmdlet parameters. -You can set property values that are not associated with cmdlet parameters by using the *OtherAttributes* parameter. +You can set property values that are not associated with cmdlet parameters by using the _OtherAttributes_ parameter. When using this parameter, be sure to place single quotes around the attribute name. -You must specify the *SamAccountName* parameter to create a user. +You must specify the _SamAccountName_ parameter to create a user. You can use the **New-ADUser** cmdlet to create different types of user accounts such as iNetOrgPerson accounts. -To do this in Active Directory Domain Services (AD DS), set the *Type* parameter to the Lightweight Directory Access Protocol (LDAP) display name for the type of account you want to create. +To do this in Active Directory Domain Services (AD DS), set the _Type_ parameter to the Lightweight Directory Access Protocol (LDAP) display name for the type of account you want to create. This type can be any class in the Active Directory schema that is a subclass of user and that has an object category of person. -The *Path* parameter specifies the container or organizational unit (OU) for the new user. -When you do not specify the *Path* parameter, the cmdlet creates a user object in the default container for user objects in the domain. +The _Path_ parameter specifies the container or organizational unit (OU) for the new user. +When you do not specify the _Path_ parameter, the cmdlet creates a user object in the default container for user objects in the domain. The following methods explain different ways to create an object by using this cmdlet. Method 1: Use the **New-ADUser** cmdlet, specify the required parameters, and set any additional property values by using the cmdlet parameters. Method 2: Use a template to create the new object. -To do this, create a new user object or retrieve a copy of an existing user object and set the *Instance* parameter to this object. -The object provided to the *Instance* parameter is used as a template for the new object. +To do this, create a new user object or retrieve a copy of an existing user object and set the _Instance_ parameter to this object. +The object provided to the _Instance_ parameter is used as a template for the new object. You can override property values from the template by setting cmdlet parameters. -For examples and more information, see the *Instance* parameter description for this cmdlet. +For examples and more information, see the _Instance_ parameter description for this cmdlet. Method 3: Use the Import-Csv cmdlet with the **New-ADUser** cmdlet to create multiple Active Directory user objects. To do this, use the **Import-Csv** cmdlet to create the custom objects from a comma-separated value (CSV) file that contains a list of object properties. @@ -446,7 +446,7 @@ To specify this parameter, you can type a user name, such as User1 or Domain01\U If you specify a user name for this parameter, the cmdlet prompts for a password. You can also create a **PSCredential** object by using a script or by using the **Get-Credential** cmdlet. -You can then set the *Credential* parameter to the **PSCredential** object. +You can then set the _Credential_ parameter to the **PSCredential** object. If the acting credentials do not have directory-level permission to perform the task, Active Directory PowerShell returns a terminating error. @@ -749,11 +749,11 @@ You can construct a new user object using the Windows PowerShell command line or Method 1: Use an existing user object as a template for a new object. To retrieve an instance of an existing user object, use a cmdlet such as **Get-ADUser**. -Then provide this object to the *Instance* parameter of the **New-ADUser** cmdlet to create a new user object. +Then provide this object to the _Instance_ parameter of the **New-ADUser** cmdlet to create a new user object. You can override property values of the new object by setting the appropriate parameters. Method 2: Create a new **ADUser** object and set the property values by using the Windows PowerShell command line interface. -Then pass this object to the *Instance* parameter of the **New-ADUser** cmdlet to create the new Active Directory user object. +Then pass this object to the _Instance_ parameter of the **New-ADUser** cmdlet to create the new Active Directory user object. Note: Specified attributes are not validated, so attempting to set attributes that do not exist or cannot be set raises an error. @@ -1049,28 +1049,28 @@ Accept wildcard characters: False Specifies the X.500 path of the OU or container where the new object is created. -In many cases, a default value is used for the *Path* parameter if no value is specified. +In many cases, a default value is used for the _Path_ parameter if no value is specified. The rules for determining the default value are given below. Note that rules listed first are evaluated first and when a default value can be determined, no further rules are evaluated. -In Active Directory Domain Services (AD DS) environments, a default value for *Path* is set in the following cases: +In Active Directory Domain Services (AD DS) environments, a default value for _Path_ is set in the following cases: - If the cmdlet is run from an Active Directory PowerShell provider drive, the parameter is set to the current path of the provider drive. - If the cmdlet has a default path, this is used. -For example: in New-ADUser, the *Path* parameter defaults to the Users container. -- If none of the previous cases apply, the default value of *Path* is set to the default partition or naming context of the target domain. +For example: in New-ADUser, the _Path_ parameter defaults to the Users container. +- If none of the previous cases apply, the default value of _Path_ is set to the default partition or naming context of the target domain. -In AD LDS environments, a default value for *Path* is set in the following cases: +In AD LDS environments, a default value for _Path_ is set in the following cases: - If the cmdlet is run from an Active Directory module for PowerShell provider drive, the parameter is set to the current path of the provider drive. - If the cmdlet has a default path, this is used. -For example: in **New-ADUser**, the *Path* parameter defaults to the Users container. -- If the target AD LDS instance has a default naming context, the default value of *Path* is set to the default naming context. +For example: in **New-ADUser**, the _Path_ parameter defaults to the Users container. +- If the target AD LDS instance has a default naming context, the default value of _Path_ is set to the default naming context. To specify a default naming context for an AD LDS environment, set the **msDS-defaultNamingContext** property of the Active Directory directory service agent object (**nTDSDSA**) for the AD LDS instance. -- If none of the previous cases apply, the *Path* parameter does not take any default value. +- If none of the previous cases apply, the _Path_ parameter does not take any default value. -Note: The Active Directory Provider cmdlets, such New-Item, Remove-Item, Remove-ItemProperty, *Rename-Item*, and Set-ItemProperty also contain a *Path* property. -However, for the Active Directory Provider cmdlets, the *Path* parameter identifies the path of the actual object rather than the container. +Note: The Active Directory Provider cmdlets, such New-Item, Remove-Item, Remove-ItemProperty, *Rename-Item*, and Set-ItemProperty also contain a _Path_ property. +However, for the Active Directory Provider cmdlets, the _Path_ parameter identifies the path of the actual object rather than the container. ```yaml Type: String @@ -1215,7 +1215,7 @@ Directory server values: The default value for this parameter is determined by one of the following methods in the order that they are listed: -- By using the *Server* value from objects passed through the pipeline +- By using the _Server_ value from objects passed through the pipeline - By using the server information associated with the AD DS Windows PowerShell provider drive, when the cmdlet runs in that drive - By using the domain of the computer running Windows PowerShell @@ -1370,7 +1370,7 @@ Accept wildcard characters: False ### -Type Specifies the type of object to create. -Set the *Type* parameter to the LDAP display name of the Active Directory schema class that represents the type of object that you want to create. +Set the _Type_ parameter to the LDAP display name of the Active Directory schema class that represents the type of object that you want to create. The selected type must be a subclass of the User schema class. If this parameter is not specified it defaults to User. @@ -1430,13 +1430,13 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### None or Microsoft.ActiveDirectory.Management.ADUser -A user object that is a template for the new user object is received by the *Instance* parameter. +A user object that is a template for the new user object is received by the _Instance_ parameter. ## OUTPUTS ### None or Microsoft.ActiveDirectory.Management.ADUser -Returns the new user object when the *PassThru* parameter is specified. +Returns the new user object when the _PassThru_ parameter is specified. By default, this cmdlet does not generate any output. ## NOTES From 2a3c856bdb2a3daafacce289202b3869c3512d73 Mon Sep 17 00:00:00 2001 From: Anthony Howell Date: Thu, 27 Apr 2023 14:48:36 -0700 Subject: [PATCH 444/965] cmdlet backticks --- .../activedirectory/New-ADUser.md | 38 +++++++++---------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/docset/winserver2022-ps/activedirectory/New-ADUser.md b/docset/winserver2022-ps/activedirectory/New-ADUser.md index a8983a17a4..5081770549 100644 --- a/docset/winserver2022-ps/activedirectory/New-ADUser.md +++ b/docset/winserver2022-ps/activedirectory/New-ADUser.md @@ -39,7 +39,7 @@ New-ADUser [-WhatIf] [-Confirm] [-AccountExpirationDate ] [-AccountNot ## DESCRIPTION -The **New-ADUser** cmdlet creates an Active Directory user. +The `New-ADUser` cmdlet creates an Active Directory user. You can set commonly used user property values by using the cmdlet parameters. You can set property values that are not associated with cmdlet parameters by using the _OtherAttributes_ parameter. @@ -47,7 +47,7 @@ When using this parameter, be sure to place single quotes around the attribute n You must specify the _SamAccountName_ parameter to create a user. -You can use the **New-ADUser** cmdlet to create different types of user accounts such as iNetOrgPerson accounts. +You can use the `New-ADUser` cmdlet to create different types of user accounts such as iNetOrgPerson accounts. To do this in Active Directory Domain Services (AD DS), set the _Type_ parameter to the Lightweight Directory Access Protocol (LDAP) display name for the type of account you want to create. This type can be any class in the Active Directory schema that is a subclass of user and that has an object category of person. @@ -56,7 +56,7 @@ When you do not specify the _Path_ parameter, the cmdlet creates a user object i The following methods explain different ways to create an object by using this cmdlet. -Method 1: Use the **New-ADUser** cmdlet, specify the required parameters, and set any additional property values by using the cmdlet parameters. +Method 1: Use the `New-ADUser` cmdlet, specify the required parameters, and set any additional property values by using the cmdlet parameters. Method 2: Use a template to create the new object. To do this, create a new user object or retrieve a copy of an existing user object and set the _Instance_ parameter to this object. @@ -64,9 +64,9 @@ The object provided to the _Instance_ parameter is used as a template for the ne You can override property values from the template by setting cmdlet parameters. For examples and more information, see the _Instance_ parameter description for this cmdlet. -Method 3: Use the Import-Csv cmdlet with the **New-ADUser** cmdlet to create multiple Active Directory user objects. -To do this, use the **Import-Csv** cmdlet to create the custom objects from a comma-separated value (CSV) file that contains a list of object properties. -Then pass these objects through the pipeline to the **New-ADUser** cmdlet to create the user objects. +Method 3: Use the Import-Csv cmdlet with the `New-ADUser` cmdlet to create multiple Active Directory user objects. +To do this, use the `Import-Csv` cmdlet to create the custom objects from a comma-separated value (CSV) file that contains a list of object properties. +Then pass these objects through the pipeline to the `New-ADUser` cmdlet to create the user objects. ## EXAMPLES @@ -380,14 +380,14 @@ Accept wildcard characters: False ### -CompoundIdentitySupported Specifies whether an account supports Kerberos service tickets which includes the authorization data for the user's device. -This value sets the compound identity supported flag of the Active Directory **msDS-SupportedEncryptionTypes** attribute. +This value sets the compound identity supported flag of the Active Directory `msDS-SupportedEncryptionTypes` attribute. The acceptable values for this parameter are: - $False or 0 - $True or 1 -Warning: Domain-joined Windows systems and services such as clustering manage their own **msDS-SupportedEncryptionTypes** attribute. -Therefore any changes to the flag on the **msDS-SupportedEncryptionTypes** attribute are overwritten by the service or system that manages the setting. +Warning: Domain-joined Windows systems and services such as clustering manage their own `msDS-SupportedEncryptionTypes` attribute. +Therefore any changes to the flag on the `msDS-SupportedEncryptionTypes` attribute are overwritten by the service or system that manages the setting. ```yaml Type: Boolean @@ -445,7 +445,7 @@ If the cmdlet is run from such a provider drive, the account associated with the To specify this parameter, you can type a user name, such as User1 or Domain01\User01 or you can specify a **PSCredential** object. If you specify a user name for this parameter, the cmdlet prompts for a password. -You can also create a **PSCredential** object by using a script or by using the **Get-Credential** cmdlet. +You can also create a **PSCredential** object by using a script or by using the `Get-Credential` cmdlet. You can then set the _Credential_ parameter to the **PSCredential** object. If the acting credentials do not have directory-level permission to perform the task, Active Directory PowerShell returns a terminating error. @@ -748,12 +748,12 @@ You can use an instance of an existing user object as a template or you can cons You can construct a new user object using the Windows PowerShell command line or by using a script. Method 1: Use an existing user object as a template for a new object. -To retrieve an instance of an existing user object, use a cmdlet such as **Get-ADUser**. -Then provide this object to the _Instance_ parameter of the **New-ADUser** cmdlet to create a new user object. +To retrieve an instance of an existing user object, use a cmdlet such as `Get-ADUser`. +Then provide this object to the _Instance_ parameter of the `New-ADUser` cmdlet to create a new user object. You can override property values of the new object by setting the appropriate parameters. Method 2: Create a new **ADUser** object and set the property values by using the Windows PowerShell command line interface. -Then pass this object to the _Instance_ parameter of the **New-ADUser** cmdlet to create the new Active Directory user object. +Then pass this object to the _Instance_ parameter of the `New-ADUser` cmdlet to create the new Active Directory user object. Note: Specified attributes are not validated, so attempting to set attributes that do not exist or cannot be set raises an error. @@ -772,7 +772,7 @@ Accept wildcard characters: False ### -KerberosEncryptionType Specifies whether an account supports Kerberos encryption types which are used during creation of service tickets. -This value sets the encryption types supported flags of the Active Directory **msDS-SupportedEncryptionTypes** attribute. +This value sets the encryption types supported flags of the Active Directory `msDS-SupportedEncryptionTypes` attribute. Possible values for this parameter are: - None @@ -785,8 +785,8 @@ None removes all encryption types from the account, resulting in the KDC being u DES is a weak encryption type that is not supported by default since Windows 7 and Windows Server 2008 R2. -Warning: Domain-joined Windows systems and services such as clustering manage their own **msDS-SupportedEncryptionTypes** attribute. -Therefore any changes to the flag on the **msDS-SupportedEncryptionTypes** attribute are overwritten by the service or system that manages the setting. +Warning: Domain-joined Windows systems and services such as clustering manage their own `msDS-SupportedEncryptionTypes` attribute. +Therefore any changes to the flag on the `msDS-SupportedEncryptionTypes` attribute are overwritten by the service or system that manages the setting. ```yaml Type: ADKerberosEncryptionType @@ -1064,9 +1064,9 @@ In AD LDS environments, a default value for _Path_ is set in the following cases - If the cmdlet is run from an Active Directory module for PowerShell provider drive, the parameter is set to the current path of the provider drive. - If the cmdlet has a default path, this is used. -For example: in **New-ADUser**, the _Path_ parameter defaults to the Users container. +For example: in `New-ADUser`, the _Path_ parameter defaults to the Users container. - If the target AD LDS instance has a default naming context, the default value of _Path_ is set to the default naming context. -To specify a default naming context for an AD LDS environment, set the **msDS-defaultNamingContext** property of the Active Directory directory service agent object (**nTDSDSA**) for the AD LDS instance. +To specify a default naming context for an AD LDS environment, set the `msDS-defaultNamingContext` property of the Active Directory directory service agent object (**nTDSDSA**) for the AD LDS instance. - If none of the previous cases apply, the _Path_ parameter does not take any default value. Note: The Active Directory Provider cmdlets, such New-Item, Remove-Item, Remove-ItemProperty, *Rename-Item*, and Set-ItemProperty also contain a _Path_ property. @@ -1121,7 +1121,7 @@ Accept wildcard characters: False ### -PrincipalsAllowedToDelegateToAccount Specifies an array of principal objects. -This parameter sets the **msDS-AllowedToActOnBehalfOfOtherIdentity** attribute of a computer account object. +This parameter sets the `msDS-AllowedToActOnBehalfOfOtherIdentity` attribute of a computer account object. ```yaml Type: ADPrincipal[] From 916b6826038b19bd567801d54110a4c999409310 Mon Sep 17 00:00:00 2001 From: Kevin Marquette Date: Thu, 27 Apr 2023 21:51:10 +0000 Subject: [PATCH 445/965] auto format --- .../activedirectory/Get-ADComputer.md | 108 +++++++++++------- 1 file changed, 67 insertions(+), 41 deletions(-) diff --git a/docset/winserver2022-ps/activedirectory/Get-ADComputer.md b/docset/winserver2022-ps/activedirectory/Get-ADComputer.md index d8920e3020..7b978a715c 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADComputer.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADComputer.md @@ -11,11 +11,13 @@ title: Get-ADComputer # Get-ADComputer ## SYNOPSIS + Gets one or more Active Directory computers. ## SYNTAX ### Filter (Default) + ```powershell Get-ADComputer [-AuthType ] [-Credential ] -Filter [-Properties ] [-ResultPageSize ] [-ResultSetSize ] [-SearchBase ] [-SearchScope ] @@ -23,12 +25,14 @@ Get-ADComputer [-AuthType ] [-Credential ] -Filter ] [-Credential ] [-Identity] [-Partition ] [-Properties ] [-Server ] [] ``` ### LdapFilter + ```powershell Get-ADComputer [-AuthType ] [-Credential ] -LDAPFilter [-Properties ] [-ResultPageSize ] [-ResultSetSize ] [-SearchBase ] @@ -36,25 +40,27 @@ Get-ADComputer [-AuthType ] [-Credential ] -LDAPFilter ``` ## DESCRIPTION + The **Get-ADComputer** cmdlet gets a computer or performs a search to retrieve multiple computers. -The *Identity* parameter specifies the Active Directory computer to retrieve. +The _Identity_ parameter specifies the Active Directory computer to retrieve. You can identify a computer by its distinguished name, GUID, security identifier (SID) or Security Accounts Manager (SAM) account name. -You can also set the parameter to a computer object variable, such as `$` or pass a computer object through the pipeline to the *Identity* parameter. +You can also set the parameter to a computer object variable, such as `$` or pass a computer object through the pipeline to the _Identity_ parameter. -To search for and retrieve more than one computer, use the *Filter* or *LDAPFilter* parameters. -The *Filter* parameter uses the PowerShell Expression Language to write query strings for Active Directory. -PowerShell Expression Language syntax provides rich type conversion support for value types received by the *Filter* parameter. -For more information about the *Filter* parameter syntax, type `Get-Help` [about_ActiveDirectory_Filter](/previous-versions/windows/server/hh531527(v=ws.10)). -If you have existing Lightweight Directory Access Protocol (LDAP) query strings, you can use the *LDAPFilter* parameter. +To search for and retrieve more than one computer, use the _Filter_ or _LDAPFilter_ parameters. +The _Filter_ parameter uses the PowerShell Expression Language to write query strings for Active Directory. +PowerShell Expression Language syntax provides rich type conversion support for value types received by the _Filter_ parameter. +For more information about the _Filter_ parameter syntax, type `Get-Help` [about_ActiveDirectory_Filter](/previous-versions/windows/server/hh531527(v=ws.10)). +If you have existing Lightweight Directory Access Protocol (LDAP) query strings, you can use the _LDAPFilter_ parameter. This cmdlet retrieves a default set of computer object properties. -To retrieve additional properties use the *Properties* parameter. -For more information about the how to determine the properties for computer objects, see the *Properties* parameter description. +To retrieve additional properties use the _Properties_ parameter. +For more information about the how to determine the properties for computer objects, see the _Properties_ parameter description. ## EXAMPLES ### Example 1: Get specific computer that shows all properties + ```powershell PS C:\> Get-ADComputer -Identity "User01-SRV1" -Properties * @@ -140,6 +146,7 @@ whenCreated : 3/16/2009 4:15:00 PM This command gets a specific computer showing all the properties. ### Example 2: Get all computers with a name starting with a particular string + ```powershell PS C:\> Get-ADComputer -Filter 'Name -like "User01*"' -Properties IPv4Address | FT Name,DNSHostName,IPv4Address -A name dnshostname ipv4address @@ -151,6 +158,7 @@ User01-SRV2 User01-SRV2.User01.com 10.194.100.3 This command gets all the computers with a name starting with a particular string and shows the name, dns hostname, and IPv4 address. ### Example 3: Gets all computers that have changed their password in specific time frame + ```powershell PS C:\> $Date = [DateTime]::Today.AddDays(-90) PS C:\> Get-ADComputer -Filter 'PasswordLastSet -ge $Date' -Properties PasswordLastSet | FT Name,PasswordLastSet @@ -163,6 +171,7 @@ USER01-SRV5 3/12/2009 7:05:45 PM This command gets all the computers that have changed their password in the last 90 days. ### Example 4: Get computer accounts in a specific location using an LDAPFilter + ```powershell PS C:\> Get-ADComputer -LDAPFilter "(name=*laptop*)" -SearchBase "CN=Computers,DC= User01,DC=com" name @@ -171,9 +180,10 @@ pattiful-laptop davidche-laptop ``` -This command gets the computer accounts in the location CN=Computers,DC=User01,DC=com that are listed as laptops by using an *LDAPFilter*. +This command gets the computer accounts in the location CN=Computers,DC=User01,DC=com that are listed as laptops by using an _LDAPFilter_. ### Example 5: Get all computer accounts using a filter + ```powershell PS C:\> Get-ADComputer -Filter * ``` @@ -181,6 +191,7 @@ PS C:\> Get-ADComputer -Filter * This command gets all computer accounts. ### Example 6: Get all computers with a name starting with Computer01 or Computer02 + ```powershell PS C:\> Get-ADComputer -Filter 'Name -like "Computer01*" -or Name -like "Computer02*"' -Properties IPv4Address | FT Name,DNSHostName,IPv4Address -A name dnshostname ipv4address @@ -190,6 +201,7 @@ Computer02-SRV2 Computer02-SRV2.Computer02.com 10.194.100.3 ``` ### Example 7: Get all computers with a name starting with a string AND password last set before 30 days + ```powershell PS C:\> $Date = [DateTime]::Today.AddDays(-30) PS C:\> Get-ADComputer -Filter 'Name -like "Computer01*" -and PasswordLastSet -ge $Date' -Properties IPv4Address | FT Name,DNSHostName,IPv4Address -A @@ -200,10 +212,10 @@ Computer01-SRV1 Computer01-SRV1.Computer01.com 10.194.99.181 This command shows the name, DNS hostname, and IPv4 address. - ## PARAMETERS ### -AuthType + Specifies the authentication method to use. The acceptable values for this parameter are: @@ -228,6 +240,7 @@ Accept wildcard characters: False ``` ### -Credential + Specifies the user account credentials to use to perform this task. The default credentials are the credentials of the currently logged on user unless the cmdlet is run from an Active Directory module for Windows PowerShell provider drive. If the cmdlet is run from such a provider drive, the account associated with the drive is the default. @@ -236,7 +249,7 @@ To specify this parameter, you can type a user name, such as User1 or Domain01\U If you specify a user name for this parameter, the cmdlet prompts for a password. You can also create a **PSCredential** object by using a script or by using the **Get-Credential** cmdlet. -You can then set the *Credential* parameter to the **PSCredential** object. +You can then set the _Credential_ parameter to the **PSCredential** object. If the acting credentials do not have directory-level permission to perform the task, Active Directory module for Windows PowerShell returns a terminating error. @@ -253,11 +266,12 @@ Accept wildcard characters: False ``` ### -Filter + Specifies a query string that retrieves Active Directory objects. This string uses the Windows PowerShell Expression Language syntax. -The Windows PowerShell Expression Language syntax provides rich type-conversion support for value types received by the *Filter* parameter. +The Windows PowerShell Expression Language syntax provides rich type-conversion support for value types received by the _Filter_ parameter. The syntax uses an in-order representation, which means that the operator is placed between the operand and the value. -For more information about the *Filter* parameter, type `Get-Help` [about_ActiveDirectory_Filter](/previous-versions/windows/server/hh531527(v=ws.10)). +For more information about the _Filter_ parameter, type `Get-Help` [about_ActiveDirectory_Filter](/previous-versions/windows/server/hh531527(v=ws.10)). Syntax: @@ -281,10 +295,9 @@ The following syntax uses Backus-Naur form to show how to use the Windows PowerS For a list of supported types for \, type `Get-Help about_ActiveDirectory_ObjectModel`. -Note: Windows PowerShell wildcards other than \*, such as ?, are not supported by the *Filter* syntax. - -Note: To query using LDAP query strings, use the *LDAPFilter* parameter. +Note: Windows PowerShell wildcards other than \*, such as ?, are not supported by the _Filter_ syntax. +Note: To query using LDAP query strings, use the _LDAPFilter_ parameter. ```yaml Type: String @@ -299,13 +312,14 @@ Accept wildcard characters: False ``` ### -Identity + Specifies an Active Directory computer object by providing one of the following property values. The identifier in parentheses is the LDAP display name for the attribute. The acceptable values for this parameter are: - A distinguished name -- A GUID (objectGUID) -- A security identifier (objectSid) +- A GUID (objectGUID) +- A security identifier (objectSid) - A Security Accounts Manager account name (sAMAccountName) The cmdlet searches the default naming context or partition to find the object. @@ -327,10 +341,11 @@ Accept wildcard characters: False ``` ### -LDAPFilter + Specifies an LDAP query string that is used to filter Active Directory objects. You can use this parameter to run your existing LDAP queries. -The *Filter* parameter syntax supports the same functionality as the LDAP syntax. -For more information, see the *Filter* parameter description or type `Get-Help` [about_ActiveDirectory_Filter](/previous-versions/windows/server/hh531527(v=ws.10)). +The _Filter_ parameter syntax supports the same functionality as the LDAP syntax. +For more information, see the _Filter_ parameter description or type `Get-Help` [about_ActiveDirectory_Filter](/previous-versions/windows/server/hh531527(v=ws.10)). ```yaml Type: String @@ -345,27 +360,28 @@ Accept wildcard characters: False ``` ### -Partition + Specifies the distinguished name of an Active Directory partition. The distinguished name must be one of the naming contexts on the current directory server. -The cmdlet searches this partition to find the object defined by the *Identity* parameter. +The cmdlet searches this partition to find the object defined by the _Identity_ parameter. -In many cases, a default value is used for the *Partition* parameter if no value is specified. +In many cases, a default value is used for the _Partition_ parameter if no value is specified. The rules for determining the default value are given below. Note that rules listed first are evaluated first and once a default value can be determined, no further rules are evaluated. -In Active Directory Domain Services environments, a default value for *Partition* is set in the following cases: +In Active Directory Domain Services environments, a default value for _Partition_ is set in the following cases: -- If the *Identity* parameter is set to a distinguished name, the default value of *Partition* is automatically generated from this distinguished name. -- If running cmdlets from an Active Directory provider drive, the default value of *Partition* is automatically generated from the current path in the drive. -- If none of the previous cases apply, the default value of *Partition* is set to the default partition or naming context of the target domain. +- If the _Identity_ parameter is set to a distinguished name, the default value of _Partition_ is automatically generated from this distinguished name. +- If running cmdlets from an Active Directory provider drive, the default value of _Partition_ is automatically generated from the current path in the drive. +- If none of the previous cases apply, the default value of _Partition_ is set to the default partition or naming context of the target domain. -In Active Directory Lightweight Directory Services (AD LDS) environments, a default value for *Partition* is set in the following cases: +In Active Directory Lightweight Directory Services (AD LDS) environments, a default value for _Partition_ is set in the following cases: -- If the *Identity* parameter is set to a distinguished name, the default value of *Partition* is automatically generated from this distinguished name. -- If running cmdlets from an Active Directory provider drive, the default value of *Partition* is automatically generated from the current path in the drive. -- If the target AD LDS instance has a default naming context, the default value of *Partition* is set to the default naming context. -To specify a default naming context for an AD LDS environment, set the **msDS-defaultNamingContext** property of the Active Directory directory service agent (DSA) object (**nTDSDSA**) for the AD LDS instance. -- If none of the previous cases apply, the *Partition* parameter will not take any default value. +- If the _Identity_ parameter is set to a distinguished name, the default value of _Partition_ is automatically generated from this distinguished name. +- If running cmdlets from an Active Directory provider drive, the default value of _Partition_ is automatically generated from the current path in the drive. +- If the target AD LDS instance has a default naming context, the default value of _Partition_ is set to the default naming context. +To specify a default naming context for an AD LDS environment, set the **msDS-defaultNamingContext** property of the Active Directory directory service agent (DSA) object (**nTDSDSA**) for the AD LDS instance. +- If none of the previous cases apply, the _Partition_ parameter will not take any default value. ```yaml Type: String @@ -380,6 +396,7 @@ Accept wildcard characters: False ``` ### -Properties + Specifies the properties of the output object to retrieve from the server. Use this parameter to retrieve properties that are not included in the default set. @@ -404,6 +421,7 @@ Accept wildcard characters: False ``` ### -ResultPageSize + Specifies the number of objects to include in one page for an Active Directory Domain Services query. The default is 256 objects per page. @@ -421,6 +439,7 @@ Accept wildcard characters: False ``` ### -ResultSetSize + Specifies the maximum number of objects to return for an Active Directory Domain Services query. If you want to receive all of the objects, set this parameter to $Null (null value). You can use Ctrl+C to stop the query and return of objects. @@ -440,6 +459,7 @@ Accept wildcard characters: False ``` ### -SearchBase + Specifies an Active Directory path to search under. When you run a cmdlet from an Active Directory provider drive, the default value of this parameter is the current path of the drive. @@ -449,8 +469,8 @@ When you run a cmdlet outside of an Active Directory provider drive against an A When you run a cmdlet outside of an Active Directory provider drive against an AD LDS target, the default value is the default naming context of the target AD LDS instance if one has been specified by setting the **msDS-defaultNamingContext** property of the Active Directory directory service agent object (**nTDSDSA**) for the AD LDS instance. If no default naming context has been specified for the target AD LDS instance, then this parameter has no default value. -When the value of the *SearchBase* parameter is set to an empty string and you are connected to a global catalog port, all partitions are searched. -If the value of the *SearchBase* parameter is set to an empty string and you are not connected to a global catalog port, an error is thrown. +When the value of the _SearchBase_ parameter is set to an empty string and you are connected to a global catalog port, all partitions are searched. +If the value of the _SearchBase_ parameter is set to an empty string and you are not connected to a global catalog port, an error is thrown. ```yaml Type: String @@ -465,6 +485,7 @@ Accept wildcard characters: False ``` ### -SearchScope + Specifies the scope of an Active Directory search. The acceptable values for this parameter are: @@ -490,17 +511,18 @@ Accept wildcard characters: False ``` ### -Server + Specifies the Active Directory Domain Services instance to connect to, by providing one of the following values for a corresponding domain name or directory server. The service may be any of the following: Active Directory Lightweight Domain Services, Active Directory Domain Services or Active Directory snapshot instance. -Specify the Active Directory Domain Services instance in one of the following ways: +Specify the Active Directory Domain Services instance in one of the following ways: Domain name values: - Fully qualified domain name - NetBIOS name -Directory server values: +Directory server values: - Fully qualified directory server name - NetBIOS name @@ -508,7 +530,7 @@ Directory server values: The default value for this parameter is determined by one of the following methods in the order that they are listed: -- By using the *Server* value from objects passed through the pipeline +- By using the _Server_ value from objects passed through the pipeline - By using the server information associated with the Active Directory Domain Services Windows PowerShell provider drive, when the cmdlet runs in that drive - By using the domain of the computer running Windows PowerShell @@ -525,20 +547,23 @@ Accept wildcard characters: False ``` ### CommonParameters + This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### None or Microsoft.ActiveDirectory.Management.ADComputer -A computer object is received by the *Identity* parameter. + +A computer object is received by the _Identity_ parameter. ## OUTPUTS ### Microsoft.ActiveDirectory.Management.ADComputer + Returns one or more computer objects. This Get-ADComputer cmdlet returns a default set of **ADComputer** property values. -To retrieve additional **ADComputer** properties, use the *Properties* parameter of this cmdlet. +To retrieve additional **ADComputer** properties, use the _Properties_ parameter of this cmdlet. To view the properties for an **ADComputer** object, see the following examples. To run these examples, replace \ with a computer identifier such as the SAM account name of your local computer. @@ -552,7 +577,8 @@ To get a list of all the properties of an ADComputer object, use the following c `Get-ADComputer`\`-Properties ALL | Get-Member` ## NOTES -* This cmdlet does not work with AD LDS with its default schema. By default AD LDS schema does not have a computer class, but if the schema is extended to include it, this cmdlet will work with LDS. + +- This cmdlet does not work with AD LDS with its default schema. By default AD LDS schema does not have a computer class, but if the schema is extended to include it, this cmdlet will work with LDS. ## RELATED LINKS From 64cb2d62b148bc360866e984d0c35dc66a0a627a Mon Sep 17 00:00:00 2001 From: Kevin Marquette Date: Thu, 27 Apr 2023 21:59:36 +0000 Subject: [PATCH 446/965] fix code blocks --- .../activedirectory/Get-ADComputer.md | 40 ++++++++++++++----- 1 file changed, 31 insertions(+), 9 deletions(-) diff --git a/docset/winserver2022-ps/activedirectory/Get-ADComputer.md b/docset/winserver2022-ps/activedirectory/Get-ADComputer.md index 7b978a715c..2cb88a4e26 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADComputer.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADComputer.md @@ -62,7 +62,10 @@ For more information about the how to determine the properties for computer obje ### Example 1: Get specific computer that shows all properties ```powershell -PS C:\> Get-ADComputer -Identity "User01-SRV1" -Properties * +Get-ADComputer -Identity "User01-SRV1" -Properties * +``` + +```Output AccountExpirationDate : @@ -148,7 +151,11 @@ This command gets a specific computer showing all the properties. ### Example 2: Get all computers with a name starting with a particular string ```powershell -PS C:\> Get-ADComputer -Filter 'Name -like "User01*"' -Properties IPv4Address | FT Name,DNSHostName,IPv4Address -A +Get-ADComputer -Filter 'Name -like "User01*"' -Properties IPv4Address | + Format-Table Name,DNSHostName,IPv4Address -AutoSize +``` + +```Output name dnshostname ipv4address ---- ----------- ----------- User01-SRV1 User01-SRV1.User01.com 10.194.99.181 @@ -160,8 +167,12 @@ This command gets all the computers with a name starting with a particular strin ### Example 3: Gets all computers that have changed their password in specific time frame ```powershell -PS C:\> $Date = [DateTime]::Today.AddDays(-90) -PS C:\> Get-ADComputer -Filter 'PasswordLastSet -ge $Date' -Properties PasswordLastSet | FT Name,PasswordLastSet +$Date = [DateTime]::Today.AddDays(-90) +Get-ADComputer -Filter 'PasswordLastSet -ge $Date' -Properties PasswordLastSet | + Format-Table Name,PasswordLastSet +``` + +```Output Name PasswordLastSet ---- --------------- USER01-SRV4 3/12/2009 6:40:37 PM @@ -173,7 +184,10 @@ This command gets all the computers that have changed their password in the last ### Example 4: Get computer accounts in a specific location using an LDAPFilter ```powershell -PS C:\> Get-ADComputer -LDAPFilter "(name=*laptop*)" -SearchBase "CN=Computers,DC= User01,DC=com" +Get-ADComputer -LDAPFilter "(name=*laptop*)" -SearchBase "CN=Computers,DC= User01,DC=com" +``` + +```Output name ---- pattiful-laptop @@ -185,7 +199,7 @@ This command gets the computer accounts in the location CN=Computers,DC=User01,D ### Example 5: Get all computer accounts using a filter ```powershell -PS C:\> Get-ADComputer -Filter * +Get-ADComputer -Filter * ``` This command gets all computer accounts. @@ -193,7 +207,11 @@ This command gets all computer accounts. ### Example 6: Get all computers with a name starting with Computer01 or Computer02 ```powershell -PS C:\> Get-ADComputer -Filter 'Name -like "Computer01*" -or Name -like "Computer02*"' -Properties IPv4Address | FT Name,DNSHostName,IPv4Address -A +Get-ADComputer -Filter 'Name -like "Computer01*" -or Name -like "Computer02*"' -Properties IPv4Address | + Format-Table Name,DNSHostName,IPv4Address -AutoSize +``` + +```Output name dnshostname ipv4address ---- ----------- ----------- Computer01-SRV1 Computer01-SRV1.Computer01.com 10.194.99.181 @@ -203,8 +221,12 @@ Computer02-SRV2 Computer02-SRV2.Computer02.com 10.194.100.3 ### Example 7: Get all computers with a name starting with a string AND password last set before 30 days ```powershell -PS C:\> $Date = [DateTime]::Today.AddDays(-30) -PS C:\> Get-ADComputer -Filter 'Name -like "Computer01*" -and PasswordLastSet -ge $Date' -Properties IPv4Address | FT Name,DNSHostName,IPv4Address -A +$Date = [DateTime]::Today.AddDays(-30) +Get-ADComputer -Filter 'Name -like "Computer01*" -and PasswordLastSet -ge $Date' -Properties IPv4Address | + Format-Table Name,DNSHostName,IPv4Address -AutoSize +``` + +```Output name dnshostname ipv4address ---- ----------- ----------- Computer01-SRV1 Computer01-SRV1.Computer01.com 10.194.99.181 From 5c317fd4c7d69332577384dc3ed4765d04f09d94 Mon Sep 17 00:00:00 2001 From: Matthew Dowst <7384306+mdowst@users.noreply.github.com> Date: Thu, 27 Apr 2023 15:00:01 -0700 Subject: [PATCH 447/965] syntax cleanup on Get-WindowsUpdateLog.md --- .../windowsupdate/Get-WindowsUpdateLog.md | 52 +++++++++++++------ 1 file changed, 36 insertions(+), 16 deletions(-) diff --git a/docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md b/docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md index 2f9e8132ec..5f980d3b27 100644 --- a/docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md +++ b/docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md @@ -11,28 +11,37 @@ title: Get-WindowsUpdateLog # Get-WindowsUpdateLog ## SYNOPSIS + Merges Windows Update .etl files into a single log file. ## SYNTAX -``` +```powershell Get-WindowsUpdateLog [[-ETLPath] ] [[-LogPath] ] [-ProcessingType ] [-ForceFlush] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Get-WindowsUpdateLog** cmdlet merges and converts Windows Update .etl files into a single readable WindowsUpdate.log file. -Windows Update Agent uses Event Tracing for Windows (ETW) to generate diagnostic logs. -Windows Update no longer directly produces a WindowsUpdate.log file. + +The **Get-WindowsUpdateLog** cmdlet merges and converts Windows Update .etl files into a single +readable WindowsUpdate.log file. Windows Update Agent uses Event Tracing for Windows (ETW) to +generate diagnostic logs. Windows Update no longer directly produces a WindowsUpdate.log file. Instead, it produces .etl files that are not immediately readable as written. -For Windows 10 versions prior to 1709 (OS Build 16299), this cmdlet requires access to a Microsoft symbol server, and log decoding must be run from a Windows 10 version earlier than 1709. Logs from Windows 10, version 1709 onward do not require a Microsoft symbol server, and need to be decoded from Windows 10, versions 1709 or higher. +For Windows 10 versions prior to 1709 (OS Build 16299), this cmdlet requires access to a Microsoft +symbol server, and log decoding must be run from a Windows 10 version earlier than 1709. Logs from +Windows 10, version 1709 onward do not require a Microsoft symbol server, and need to be decoded +from Windows 10, versions 1709 or higher. ## EXAMPLES ### Example 1: Merge and convert Windows Update trace files + +```powershell +Get-WindowsUpdateLog ``` -PS C:\> Get-WindowsUpdateLog + +```Output Converting C:\Windows\logs\WindowsUpdate into C:\Users\Admin\Desktop\WindowsUpdate.log @@ -70,11 +79,13 @@ The command completed successfully. WindowsUpdate.log written to C:\Users\admin\Desktop\WindowsUpdate.log ``` -This command merges and converts Windows Update trace files (.etl files) into a single readable WindowsUpdate.log file. +This command merges and converts Windows Update trace files (.etl files) into a single readable +WindowsUpdate.log file. ## PARAMETERS ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -90,8 +101,9 @@ Accept wildcard characters: False ``` ### -ETLPath -Specifies an array of paths of Windows Update .etl files to convert into WindowsUpdate.log. -The default value for this parameter is the Windows Update trace file directory for the current device. + +Specifies an array of paths of Windows Update .etl files to convert into WindowsUpdate.log. The +default value for this parameter is the Windows Update trace file directory for the current device. The acceptable values for this parameter are: - The full path of a directory that contains one or more .etl files. @@ -111,10 +123,11 @@ Accept wildcard characters: False ``` ### -ForceFlush -Indicates that this cmdlet forces the Windows Update Agent on the current device to flush all of its traces to .etl files. -This process stops the Update Orchestrator and Windows Update services. -Running this cmdlet with this parameter requires administrative credentials. -You can start Windows PowerShell with administrative credentials by using the Run as administrator command. + +Indicates that this cmdlet forces the Windows Update Agent on the current device to flush all of its +traces to .etl files. This process stops the Update Orchestrator and Windows Update services. +Running this cmdlet with this parameter requires administrative credentials. You can start Windows +PowerShell with administrative credentials by using the Run as administrator command. ```yaml Type: SwitchParameter @@ -129,6 +142,7 @@ Accept wildcard characters: False ``` ### -LogPath + Specifies the full path to which **Get-WindowsUpdateLog** writes WindowsUpdate.log. The default value is WindowsUpdate.log in the Desktop folder of the current user. @@ -145,8 +159,9 @@ Accept wildcard characters: False ``` ### -ProcessingType -Specifies the file type that **Get-WindowsUpdateLog** uses for temporary files that are created during intermediate processing. -The acceptable values for this parameter are: + +Specifies the file type that **Get-WindowsUpdateLog** uses for temporary files that are created +during intermediate processing. The acceptable values for this parameter are: - CSV (comma-separated values) - XML @@ -168,6 +183,7 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. @@ -184,7 +200,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS From a595a087e545e9525ac7e1015891897d7ded680b Mon Sep 17 00:00:00 2001 From: Anthony Howell Date: Thu, 27 Apr 2023 15:01:46 -0700 Subject: [PATCH 448/965] fixing line length --- .../activedirectory/New-ADUser.md | 407 ++++++++++++++---- 1 file changed, 316 insertions(+), 91 deletions(-) diff --git a/docset/winserver2022-ps/activedirectory/New-ADUser.md b/docset/winserver2022-ps/activedirectory/New-ADUser.md index 5081770549..991c11d78f 100644 --- a/docset/winserver2022-ps/activedirectory/New-ADUser.md +++ b/docset/winserver2022-ps/activedirectory/New-ADUser.md @@ -42,35 +42,40 @@ New-ADUser [-WhatIf] [-Confirm] [-AccountExpirationDate ] [-AccountNot The `New-ADUser` cmdlet creates an Active Directory user. You can set commonly used user property values by using the cmdlet parameters. -You can set property values that are not associated with cmdlet parameters by using the _OtherAttributes_ parameter. -When using this parameter, be sure to place single quotes around the attribute name. +You can set property values that are not associated with cmdlet parameters by using the +_OtherAttributes_ parameter. When using this parameter, be sure to place single quotes around the +attribute name. You must specify the _SamAccountName_ parameter to create a user. -You can use the `New-ADUser` cmdlet to create different types of user accounts such as iNetOrgPerson accounts. -To do this in Active Directory Domain Services (AD DS), set the _Type_ parameter to the Lightweight Directory Access Protocol (LDAP) display name for the type of account you want to create. -This type can be any class in the Active Directory schema that is a subclass of user and that has an object category of person. +You can use the `New-ADUser` cmdlet to create different types of user accounts such as iNetOrgPerson +accounts. To do this in Active Directory Domain Services (AD DS), set the _Type_ parameter to the +Lightweight Directory Access Protocol (LDAP) display name for the type of account you want to +create. This type can be any class in the Active Directory schema that is a subclass of user and +that has an object category of person. -The _Path_ parameter specifies the container or organizational unit (OU) for the new user. -When you do not specify the _Path_ parameter, the cmdlet creates a user object in the default container for user objects in the domain. +The _Path_ parameter specifies the container or organizational unit (OU) for the new user. When you +do not specify the _Path_ parameter, the cmdlet creates a user object in the default container for +user objects in the domain. The following methods explain different ways to create an object by using this cmdlet. -Method 1: Use the `New-ADUser` cmdlet, specify the required parameters, and set any additional property values by using the cmdlet parameters. +Method 1: Use the `New-ADUser` cmdlet, specify the required parameters, and set any additional +property values by using the cmdlet parameters. -Method 2: Use a template to create the new object. -To do this, create a new user object or retrieve a copy of an existing user object and set the _Instance_ parameter to this object. -The object provided to the _Instance_ parameter is used as a template for the new object. -You can override property values from the template by setting cmdlet parameters. -For examples and more information, see the _Instance_ parameter description for this cmdlet. +Method 2: Use a template to create the new object. To do this, create a new user object or retrieve +a copy of an existing user object and set the _Instance_ parameter to this object. The object +provided to the _Instance_ parameter is used as a template for the new object. You can override +property values from the template by setting cmdlet parameters. For examples and more information, +see the _Instance_ parameter description for this cmdlet. -Method 3: Use the Import-Csv cmdlet with the `New-ADUser` cmdlet to create multiple Active Directory user objects. -To do this, use the `Import-Csv` cmdlet to create the custom objects from a comma-separated value (CSV) file that contains a list of object properties. -Then pass these objects through the pipeline to the `New-ADUser` cmdlet to create the user objects. +Method 3: Use the Import-Csv cmdlet with the `New-ADUser` cmdlet to create multiple Active Directory +user objects. To do this, use the `Import-Csv` cmdlet to create the custom objects from a +comma-separated value (CSV) file that contains a list of object properties. Then pass these objects +through the pipeline to the `New-ADUser` cmdlet to create the user objects. ## EXAMPLES - ### Example 1: Create a user with an imported certificate ``` @@ -85,7 +90,8 @@ This command creates a user named ChewDavid with a certificate imported from the PS C:\> New-ADUser -Name "ChewDavid" -OtherAttributes @{'title'="director";'mail'="chewdavid@fabrikam.com"} ``` -This command creates a new user named ChewDavid and sets the **title** and **mail** properties on the new object. +This command creates a new user named ChewDavid and sets the **title** and **mail** properties on +the new object. ### Example 3: Create an inetOrgPerson user @@ -108,12 +114,17 @@ This command creates a new user named ChewDavid and sets the account password. ### -AccountExpirationDate Specifies the expiration date for an account. + This parameter sets the **AccountExpirationDate** property of an account object. + The LDAP display name (**ldapDisplayName**) for this property is accountExpires. Use the **DateTime** syntax when you specify this parameter. + Time is assumed to be local time unless otherwise specified. + When a time value is not specified, the time is assumed to 12:00:00 AM local time. + When a date is not specified, the date is assumed to be the current date. ```yaml @@ -130,10 +141,15 @@ Accept wildcard characters: False ### -AccountNotDelegated -Indicates whether the security context of the user is delegated to a service. -When this parameter is set to $True, the security context of the account is not delegated to a service even when the service account is set as trusted for Kerberos delegation. +Indicates whether the security context of the user is delegated to a service. When this parameter is +set to $True, the security context of the account is not delegated to a service even when the +service account is set as trusted for Kerberos delegation. + This parameter sets the **AccountNotDelegated** property for an Active Directory account. -This parameter also sets the **ADS_UF_NOT_DELEGATED** flag of the Active Directory User Account Control (UAC) attribute. + +This parameter also sets the **ADS_UF_NOT_DELEGATED** flag of the Active Directory User Account +Control (UAC) attribute. + The acceptable values for this parameter are: - $False or 0 @@ -154,18 +170,23 @@ Accept wildcard characters: False ### -AccountPassword Specifies a new password value for an account. + This value is stored as an encrypted string. The following conditions apply based on the manner in which the password parameter is used: -- $Null password is specified: No password is set and the account is disabled unless it is requested to be enabled. -- No password is specified: No password is set and the account is disabled unless it is requested to be enabled. -- User password is specified: Password is set and the account is disabled unless it is requested to be enabled. +- $Null password is specified: No password is set and the account is disabled unless it is requested + to be enabled. +- No password is specified: No password is set and the account is disabled unless it is requested to + be enabled. +- User password is specified: Password is set and the account is disabled unless it is requested to + be enabled. -User accounts, by default, are created without a password. -If you provide a password, an attempt will be made to set that password however, this can fail due to password policy restrictions. -The user account will still be created and you may use Set-ADAccountPassword to set the password on that account. -In order to ensure that accounts remain secure, user accounts will never be enabled unless a valid password is set or **PasswordNotRequired** is set to $True. +User accounts, by default, are created without a password. If you provide a password, an attempt +will be made to set that password however, this can fail due to password policy restrictions. The +user account will still be created and you may use Set-ADAccountPassword to set the password on that +account. In order to ensure that accounts remain secure, user accounts will never be enabled unless +a valid password is set or **PasswordNotRequired** is set to $True. The account is created if the password fails for any reason. @@ -184,8 +205,12 @@ Accept wildcard characters: False ### -AllowReversiblePasswordEncryption Indicates whether reversible password encryption is allowed for the account. + This parameter sets the **AllowReversiblePasswordEncryption** property of the account. -This parameter also sets the **ADS_UF_ENCRYPTED_TEXT_PASSWORD_ALLOWED** flag of the Active Directory User Account Control (UAC) attribute. + +This parameter also sets the **ADS_UF_ENCRYPTED_TEXT_PASSWORD_ALLOWED** flag of the Active Directory +User Account Control (UAC) attribute. + The acceptable values for this parameter are: - $False or 0 @@ -208,13 +233,15 @@ Accept wildcard characters: False ### -AuthenticationPolicy Specifies an Active Directory Domain Services authentication policy object. + Specify the authentication policy object in one of the following formats: - Distinguished name - GUID - Name -This parameter can also get this object through the pipeline or you can set this parameter to an object instance. +This parameter can also get this object through the pipeline or you can set this parameter to an +object instance. The cmdlet searches the default naming context or partition to find the object. If the cmdlet finds two or more objects, the cmdlet returns a non-terminating error. @@ -234,13 +261,15 @@ Accept wildcard characters: False ### -AuthenticationPolicySilo Specifies an Active Directory Domain Services authentication policy silo object. + Specify the authentication policy silo object in one of the following formats: - Distinguished name - GUID - Name -This parameter can also get this object through the pipeline or you can set this parameter to an object instance. +This parameter can also get this object through the pipeline or you can set this parameter to an +object instance. The cmdlet searches the default naming context or partition to find the object. If the cmdlet finds two or more objects, the cmdlet returns a non-terminating error. @@ -285,7 +314,9 @@ Accept wildcard characters: False ### -CannotChangePassword Indicates whether the account password can be changed. + This parameter sets the **CannotChangePassword** property of an account. + The acceptable values for this parameter are: - $False or 0 @@ -305,7 +336,10 @@ Accept wildcard characters: False ### -Certificates -Specifies the DER-encoded X.509v3 certificates of the account. These certificates include the public key certificates issued to this account by the Microsoft Certificate Service. This parameter sets the Certificates property of the account object. The LDAP display name (ldapDisplayName) for this property is userCertificate. +Specifies the DER-encoded X.509v3 certificates of the account. These certificates include the public +key certificates issued to this account by the Microsoft Certificate Service. This parameter sets +the Certificates property of the account object. The LDAP display name (ldapDisplayName) for this +property is userCertificate. ```yaml Type: X509Certificate[] @@ -322,12 +356,14 @@ Accept wildcard characters: False ### -ChangePasswordAtLogon Indicates whether a password must be changed during the next logon attempt. + The acceptable values for this parameter are: - $False or 0 - $True or 1 -This parameter cannot be set to $True or 1 for an account that also has the **PasswordNeverExpires** property set to $True. +This parameter cannot be set to $True or 1 for an account that also has the **PasswordNeverExpires** +property set to $True. ```yaml Type: Boolean @@ -344,7 +380,9 @@ Accept wildcard characters: False ### -City Specifies the user's town or city. + This parameter sets the **City** property of a user object. + The LDAP display name (**ldapDisplayName**) of this property is l. ```yaml @@ -362,7 +400,9 @@ Accept wildcard characters: False ### -Company Specifies the user's company. + This parameter sets the **Company** property of a user object. + The LDAP display name (**ldapDisplayName**) of this property is company. ```yaml @@ -379,15 +419,21 @@ Accept wildcard characters: False ### -CompoundIdentitySupported -Specifies whether an account supports Kerberos service tickets which includes the authorization data for the user's device. -This value sets the compound identity supported flag of the Active Directory `msDS-SupportedEncryptionTypes` attribute. +Specifies whether an account supports Kerberos service tickets which includes the authorization data +for the user's device. + +This value sets the compound identity supported flag of the Active Directory +`msDS-SupportedEncryptionTypes` attribute. + The acceptable values for this parameter are: - $False or 0 - $True or 1 -Warning: Domain-joined Windows systems and services such as clustering manage their own `msDS-SupportedEncryptionTypes` attribute. -Therefore any changes to the flag on the `msDS-SupportedEncryptionTypes` attribute are overwritten by the service or system that manages the setting. +Warning: Domain-joined Windows systems and services such as clustering manage their own +`msDS-SupportedEncryptionTypes` attribute. Therefore any changes to the flag on the +`msDS-SupportedEncryptionTypes` attribute are overwritten by the service or system that manages the +setting. ```yaml Type: Boolean @@ -420,8 +466,11 @@ Accept wildcard characters: False ### -Country Specifies the country or region code for the user's language of choice. + This parameter sets the **Country** property of a user object. + The LDAP display name (**ldapDisplayName**) of this property is c. + This value is not used by Windows 2000. ```yaml @@ -439,16 +488,25 @@ Accept wildcard characters: False ### -Credential Specifies the user account credentials to use to perform this task. -The default credentials are the credentials of the currently logged on user unless the cmdlet is run from an Active Directory PowerShell provider drive. -If the cmdlet is run from such a provider drive, the account associated with the drive is the default. -To specify this parameter, you can type a user name, such as User1 or Domain01\User01 or you can specify a **PSCredential** object. +The default credentials are the credentials of the currently logged on user unless the cmdlet is run +from an Active Directory PowerShell provider drive. + +If the cmdlet is run from such a provider drive, the account associated with the drive is the +default. + +To specify this parameter, you can type a user name, such as User1 or Domain01\User01 or you can +specify a **PSCredential** object. + If you specify a user name for this parameter, the cmdlet prompts for a password. -You can also create a **PSCredential** object by using a script or by using the `Get-Credential` cmdlet. +You can also create a **PSCredential** object by using a script or by using the `Get-Credential` +cmdlet. + You can then set the _Credential_ parameter to the **PSCredential** object. -If the acting credentials do not have directory-level permission to perform the task, Active Directory PowerShell returns a terminating error. +If the acting credentials do not have directory-level permission to perform the task, Active +Directory PowerShell returns a terminating error. ```yaml Type: PSCredential @@ -465,7 +523,9 @@ Accept wildcard characters: False ### -Department Specifies the user's department. + This parameter sets the **Department** property of a user object. + The LDAP display name (**ldapDisplayName**) of this property is department. ```yaml @@ -483,7 +543,9 @@ Accept wildcard characters: False ### -Description Specifies a description of the object. + This parameter sets the value of the **Description** property for the user object. + The LDAP display name (**ldapDisplayName**) for this property is description. ```yaml @@ -501,7 +563,9 @@ Accept wildcard characters: False ### -DisplayName Specifies the display name of the object. + This parameter sets the **DisplayName** property of the user object. + The LDAP display name (**ldapDisplayName**) for this property is displayName. ```yaml @@ -519,7 +583,9 @@ Accept wildcard characters: False ### -Division Specifies the user's division. + This parameter sets the **Division** property of a user object. + The LDAP display name (**ldapDisplayName**) of this property is division. ```yaml @@ -537,7 +603,9 @@ Accept wildcard characters: False ### -EmailAddress Specifies the user's e-mail address. + This parameter sets the **EmailAddress** property of a user object. + The LDAP display name (**ldapDisplayName**) of this property is mail. ```yaml @@ -555,7 +623,9 @@ Accept wildcard characters: False ### -EmployeeID Specifies the user's employee ID. + This parameter sets the **EmployeeID** property of a user object. + The LDAP display name (**ldapDisplayName**) of this property is employeeID. ```yaml @@ -573,7 +643,9 @@ Accept wildcard characters: False ### -EmployeeNumber Specifies the user's employee number. + This parameter sets the **EmployeeNumber** property of a user object. + The LDAP display name (**ldapDisplayName**) of this property is employeeNumber. ```yaml @@ -591,9 +663,14 @@ Accept wildcard characters: False ### -Enabled Specifies if an account is enabled. + An enabled account requires a password. + This parameter sets the **Enabled** property for an account object. -This parameter also sets the **ADS_UF_ACCOUNTDISABLE** flag of the Active Directory User Account Control (UAC) attribute. + +This parameter also sets the **ADS_UF_ACCOUNTDISABLE** flag of the Active Directory User Account +Control (UAC) attribute. + The acceptable values for this parameter are: - $False or 0 @@ -614,7 +691,9 @@ Accept wildcard characters: False ### -Fax Specifies the user's fax phone number. + This parameter sets the **Fax** property of a user object. + The LDAP display name (**ldapDisplayName**) of this property is facsimileTelephoneNumber. ```yaml @@ -632,7 +711,9 @@ Accept wildcard characters: False ### -GivenName Specifies the user's given name. + This parameter sets the **GivenName** property of a user object. + The LDAP display name (**ldapDisplayName**) of this property is givenName. ```yaml @@ -650,7 +731,9 @@ Accept wildcard characters: False ### -HomeDirectory Specifies a user's home directory. + This parameter sets the **HomeDirectory** property of a user object. + The LDAP display name (**ldapDisplayName**) for this property is homeDirectory. ```yaml @@ -668,9 +751,14 @@ Accept wildcard characters: False ### -HomeDrive Specifies a drive that is associated with the UNC path defined by the **HomeDirectory** property. -The drive letter is specified as ``: where `` indicates the letter of the drive to associate. + +The drive letter is specified as ``: where `` indicates the letter of the +drive to associate. + The `` must be a single, uppercase letter and the colon is required. + This parameter sets the **HomeDrive** property of the user object. + The LDAP display name (**ldapDisplayName**) for this property is homeDrive. ```yaml @@ -688,7 +776,9 @@ Accept wildcard characters: False ### -HomePage Specifies the URL of the home page of the object. + This parameter sets the **homePage** property of a user object. + The LDAP display name (**ldapDisplayName**) for this property is wWWHomePage. ```yaml @@ -706,7 +796,9 @@ Accept wildcard characters: False ### -HomePhone Specifies the user's home telephone number. + This parameter sets the **HomePhone** property of a user object. + The LDAP display name (**ldapDisplayName**) of this property is homePhone. ```yaml @@ -724,8 +816,11 @@ Accept wildcard characters: False ### -Initials Specifies the initials that represent part of a user's name. + You can use this value for the user's middle initial. + This parameter sets the **Initials** property of a user object. + The LDAP display name (**ldapDisplayName**) of this property is initials. ```yaml @@ -744,18 +839,28 @@ Accept wildcard characters: False Specifies an instance of a user object to use as a template for a new user object. -You can use an instance of an existing user object as a template or you can construct a new user object for template use. +You can use an instance of an existing user object as a template or you can construct a new user +object for template use. + You can construct a new user object using the Windows PowerShell command line or by using a script. Method 1: Use an existing user object as a template for a new object. + To retrieve an instance of an existing user object, use a cmdlet such as `Get-ADUser`. -Then provide this object to the _Instance_ parameter of the `New-ADUser` cmdlet to create a new user object. + +Then provide this object to the _Instance_ parameter of the `New-ADUser` cmdlet to create a new user +object. + You can override property values of the new object by setting the appropriate parameters. -Method 2: Create a new **ADUser** object and set the property values by using the Windows PowerShell command line interface. -Then pass this object to the _Instance_ parameter of the `New-ADUser` cmdlet to create the new Active Directory user object. +Method 2: Create a new **ADUser** object and set the property values by using the Windows PowerShell +command line interface. + +Then pass this object to the _Instance_ parameter of the `New-ADUser` cmdlet to create the new +Active Directory user object. -Note: Specified attributes are not validated, so attempting to set attributes that do not exist or cannot be set raises an error. +Note: Specified attributes are not validated, so attempting to set attributes that do not exist or +cannot be set raises an error. ```yaml Type: ADUser @@ -771,8 +876,12 @@ Accept wildcard characters: False ### -KerberosEncryptionType -Specifies whether an account supports Kerberos encryption types which are used during creation of service tickets. -This value sets the encryption types supported flags of the Active Directory `msDS-SupportedEncryptionTypes` attribute. +Specifies whether an account supports Kerberos encryption types which are used during creation of +service tickets. + +This value sets the encryption types supported flags of the Active Directory +`msDS-SupportedEncryptionTypes` attribute. + Possible values for this parameter are: - None @@ -781,12 +890,17 @@ Possible values for this parameter are: - AES128 - AES256 -None removes all encryption types from the account, resulting in the KDC being unable to issue service tickets for services using the account. +None removes all encryption types from the account, resulting in the KDC being unable to issue +service tickets for services using the account. -DES is a weak encryption type that is not supported by default since Windows 7 and Windows Server 2008 R2. +DES is a weak encryption type that is not supported by default since Windows 7 and Windows Server +2008 R2. -Warning: Domain-joined Windows systems and services such as clustering manage their own `msDS-SupportedEncryptionTypes` attribute. -Therefore any changes to the flag on the `msDS-SupportedEncryptionTypes` attribute are overwritten by the service or system that manages the setting. +Warning: Domain-joined Windows systems and services such as clustering manage their own +`msDS-SupportedEncryptionTypes` attribute. + +Therefore any changes to the flag on the `msDS-SupportedEncryptionTypes` attribute are overwritten +by the service or system that manages the setting. ```yaml Type: ADKerberosEncryptionType @@ -804,8 +918,12 @@ Accept wildcard characters: False ### -LogonWorkstations Specifies the computers that the user can access. + To specify more than one computer, create a single comma-separated list. -You can identify a computer by using the Security Account Manager (SAM) account name (sAMAccountName) or the DNS host name of the computer. + +You can identify a computer by using the Security Account Manager (SAM) account name +(sAMAccountName) or the DNS host name of the computer. + The SAM account name is the same as the NetBIOS name of the computer. The LDAP display name (**ldapDisplayName**) for this property is userWorkStations. @@ -825,9 +943,13 @@ Accept wildcard characters: False ### -Manager Specifies the user's manager. + This parameter sets the **Manager** property of a user object. + This parameter is set by providing one of the following property values. + Note: The identifier in parentheses is the LDAP display name for the property. + The acceptable values for this parameter are: - A distinguished name @@ -850,7 +972,9 @@ Accept wildcard characters: False ### -MobilePhone Specifies the user's mobile phone number. + This parameter sets the **MobilePhone** property of a user object. + The LDAP display name (**ldapDisplayName**) of this property is mobile. ```yaml @@ -868,7 +992,9 @@ Accept wildcard characters: False ### -Name Specifies the name of the object. + This parameter sets the **Name** property of a user object. + The LDAP display name (**ldapDisplayName**) of this property is name. ```yaml @@ -886,7 +1012,9 @@ Accept wildcard characters: False ### -Office Specifies the location of the user's office or place of business. + This parameter sets the **Office** property of a user object. + The LDAP display name (**ldapDisplayName**) of this property is physicalDeliveryOfficeName. ```yaml @@ -904,7 +1032,9 @@ Accept wildcard characters: False ### -OfficePhone Specifies the user's office telephone number. + This parameter sets the **OfficePhone** property of a user object. + The LDAP display name (**ldapDisplayName**) of this property is telephoneNumber. ```yaml @@ -922,7 +1052,9 @@ Accept wildcard characters: False ### -Organization Specifies the user's organization. + This parameter sets the **Organization** property of a user object. + The LDAP display name (**ldapDisplayName**) of this property is o. ```yaml @@ -940,21 +1072,31 @@ Accept wildcard characters: False ### -OtherAttributes Specifies object attribute values for attributes that are not represented by cmdlet parameters. + You can set one or more parameters at the same time with this parameter. + If an attribute takes more than one value, you can assign multiple values. -To identify an attribute, specify the LDAP display name (**ldapDisplayName**) defined for it in the Active Directory schema. + +To identify an attribute, specify the LDAP display name (**ldapDisplayName**) defined for it in the +Active Directory schema. To specify a single value for an attribute: -`-OtherAttributes @{'AttributeLDAPDisplayName'=value}` +```powershell +-OtherAttributes @{'AttributeLDAPDisplayName'=value} +``` To specify multiple values for an attribute: -`-OtherAttributes @{'AttributeLDAPDisplayName'=value1,value2,...}` +```powershell +-OtherAttributes @{'AttributeLDAPDisplayName'=value1,value2,...} +``` To specify values for multiple attributes: -`-OtherAttributes @{'Attribute1LDAPDisplayName'=value; 'Attribute2LDAPDisplayName'=value1,value2;...}` +```powershell +-OtherAttributes @{'Attribute1LDAPDisplayName'=value; 'Attribute2LDAPDisplayName'=value1,value2;...} +``` ```yaml Type: Hashtable @@ -971,7 +1113,9 @@ Accept wildcard characters: False ### -OtherName Specifies a name in addition to a user's given name and surname, such as the user's middle name. + This parameter sets the **OtherName** property of a user object. + The LDAP display name (**ldapDisplayName**) of this property is middleName. ```yaml @@ -989,6 +1133,7 @@ Accept wildcard characters: False ### -PassThru Returns an object representing the item with which you are working. + By default, this cmdlet does not generate any output. ```yaml @@ -1006,14 +1151,19 @@ Accept wildcard characters: False ### -PasswordNeverExpires Specifies whether the password of an account can expire. + This parameter sets the **PasswordNeverExpires** property of an account object. -This parameter also sets the **ADS_UF_DONT_EXPIRE_PASSWD** flag of the Active Directory User Account Control attribute. + +This parameter also sets the **ADS_UF_DONT_EXPIRE_PASSWD** flag of the Active Directory User Account +Control attribute. + The acceptable values for this parameter are: - $False or 0 - $True or 1 -Note: This parameter cannot be set to $True or 1 for an account that also has the **ChangePasswordAtLogon** property set to $True. +Note: This parameter cannot be set to $True or 1 for an account that also has the +**ChangePasswordAtLogon** property set to $True. ```yaml Type: Boolean @@ -1030,7 +1180,9 @@ Accept wildcard characters: False ### -PasswordNotRequired Specifies whether the account requires a password. + A password is not required for a new account. + This parameter sets the **PasswordNotRequired** property of an account object. ```yaml @@ -1050,27 +1202,39 @@ Accept wildcard characters: False Specifies the X.500 path of the OU or container where the new object is created. In many cases, a default value is used for the _Path_ parameter if no value is specified. + The rules for determining the default value are given below. -Note that rules listed first are evaluated first and when a default value can be determined, no further rules are evaluated. -In Active Directory Domain Services (AD DS) environments, a default value for _Path_ is set in the following cases: +Note that rules listed first are evaluated first and when a default value can be determined, no +further rules are evaluated. + +In Active Directory Domain Services (AD DS) environments, a default value for _Path_ is set in the +following cases: -- If the cmdlet is run from an Active Directory PowerShell provider drive, the parameter is set to the current path of the provider drive. -- If the cmdlet has a default path, this is used. -For example: in New-ADUser, the _Path_ parameter defaults to the Users container. -- If none of the previous cases apply, the default value of _Path_ is set to the default partition or naming context of the target domain. +- If the cmdlet is run from an Active Directory PowerShell provider drive, the parameter is set to + the current path of the provider drive. +- If the cmdlet has a default path, this is used. For example: in New-ADUser, the _Path_ parameter + defaults to the Users container. +- If none of the previous cases apply, the default value of _Path_ is set to the default partition + or naming context of the target domain. In AD LDS environments, a default value for _Path_ is set in the following cases: -- If the cmdlet is run from an Active Directory module for PowerShell provider drive, the parameter is set to the current path of the provider drive. -- If the cmdlet has a default path, this is used. -For example: in `New-ADUser`, the _Path_ parameter defaults to the Users container. -- If the target AD LDS instance has a default naming context, the default value of _Path_ is set to the default naming context. -To specify a default naming context for an AD LDS environment, set the `msDS-defaultNamingContext` property of the Active Directory directory service agent object (**nTDSDSA**) for the AD LDS instance. +- If the cmdlet is run from an Active Directory module for PowerShell provider drive, the parameter + is set to the current path of the provider drive. +- If the cmdlet has a default path, this is used. For example: in `New-ADUser`, the _Path_ parameter + defaults to the Users container. +- If the target AD LDS instance has a default naming context, the default value of _Path_ is set to + the default naming context. To specify a default naming context for an AD LDS environment, set the + `msDS-defaultNamingContext` property of the Active Directory directory service agent object + (**nTDSDSA**) for the AD LDS instance. - If none of the previous cases apply, the _Path_ parameter does not take any default value. -Note: The Active Directory Provider cmdlets, such New-Item, Remove-Item, Remove-ItemProperty, *Rename-Item*, and Set-ItemProperty also contain a _Path_ property. -However, for the Active Directory Provider cmdlets, the _Path_ parameter identifies the path of the actual object rather than the container. +Note: The Active Directory Provider cmdlets, such New-Item, Remove-Item, Remove-ItemProperty, +*Rename-Item*, and Set-ItemProperty also contain a _Path_ property. + +However, for the Active Directory Provider cmdlets, the _Path_ parameter identifies the path of the +actual object rather than the container. ```yaml Type: String @@ -1086,7 +1250,9 @@ Accept wildcard characters: False ### -POBox Specifies the user's post office box number. + This parameter sets the **POBox** property of a user object. + The LDAP display name (**ldapDisplayName**) of this property is postOfficeBox. ```yaml @@ -1103,7 +1269,9 @@ Accept wildcard characters: False ### -PostalCode Specifies the user's postal code or zip code. + This parameter sets the **PostalCode** property of a user object. + The LDAP display name (**ldapDisplayName**) of this property is postalCode. ```yaml @@ -1121,7 +1289,9 @@ Accept wildcard characters: False ### -PrincipalsAllowedToDelegateToAccount Specifies an array of principal objects. -This parameter sets the `msDS-AllowedToActOnBehalfOfOtherIdentity` attribute of a computer account object. + +This parameter sets the `msDS-AllowedToActOnBehalfOfOtherIdentity` attribute of a computer account +object. ```yaml Type: ADPrincipal[] @@ -1138,8 +1308,11 @@ Accept wildcard characters: False ### -ProfilePath Specifies a path to the user's profile. + This value can be a local absolute path or a Universal Naming Convention (UNC) path. + This parameter sets the **ProfilePath** property of the user object. + The LDAP display name (**ldapDisplayName**) for this property is profilePath. ```yaml @@ -1156,13 +1329,20 @@ Accept wildcard characters: False ### -SamAccountName -Specifies the Security Account Manager (SAM) account name of the user, group, computer, or service account. +Specifies the Security Account Manager (SAM) account name of the user, group, computer, or service +account. + The maximum length of the description is 256 characters. -To be compatible with older operating systems, create a SAM account name that is 20 characters or less. + +To be compatible with older operating systems, create a SAM account name that is 20 characters or +less. + This parameter sets the **SAMAccountName** for an account object. + The LDAP display name (**ldapDisplayName**) for this property is sAMAccountName. -Note: If the string value provided is not terminated with a $ character, the system adds one if needed. +Note: If the string value provided is not terminated with a $ character, the system adds one if +needed. ```yaml Type: String @@ -1179,8 +1359,11 @@ Accept wildcard characters: False ### -ScriptPath Specifies a path to the user's log on script. + This value can be a local absolute path or a Universal Naming Convention (UNC) path. + This parameter sets the **ScriptPath** property of the user object. + The LDAP display name (**ldapDisplayName**) for this property is scriptPath. ```yaml @@ -1197,7 +1380,9 @@ Accept wildcard characters: False ### -Server -Specifies the AD DS instance to connect to, by providing one of the following values for a corresponding domain name or directory server. +Specifies the AD DS instance to connect to, by providing one of the following values for a +corresponding domain name or directory server. + The service may be any of the following: AD LDS, AD DS, or Active Directory snapshot instance. Specify the AD DS instance in one of the following ways: @@ -1213,10 +1398,12 @@ Directory server values: - NetBIOS name - Fully qualified directory server name and port -The default value for this parameter is determined by one of the following methods in the order that they are listed: +The default value for this parameter is determined by one of the following methods in the order that +they are listed: - By using the _Server_ value from objects passed through the pipeline -- By using the server information associated with the AD DS Windows PowerShell provider drive, when the cmdlet runs in that drive +- By using the server information associated with the AD DS Windows PowerShell provider drive, when + the cmdlet runs in that drive - By using the domain of the computer running Windows PowerShell ```yaml @@ -1234,9 +1421,14 @@ Accept wildcard characters: False ### -ServicePrincipalNames Specifies the service principal names for the account. + This parameter sets the **ServicePrincipalNames** property of the account. + The LDAP display name (**ldapDisplayName**) for this property is servicePrincipalName. -To enter multiple values, use the following syntax: `,,...`. If the values contain spaces or otherwise require quotation marks, use the following syntax: `"","",...""`." + +To enter multiple values, use the following syntax: `,,...`. If the values +contain spaces or otherwise require quotation marks, use the following syntax: +`"","",...""`." ```yaml Type: String[] @@ -1253,8 +1445,12 @@ Accept wildcard characters: False ### -SmartcardLogonRequired Specifies whether a smart card is required to logon. + This parameter sets the **SmartCardLoginRequired** property for a user object. -This parameter also sets the **ADS_UF_SMARTCARD_REQUIRED** flag of the Active Directory User Account Control attribute. + +This parameter also sets the **ADS_UF_SMARTCARD_REQUIRED** flag of the Active Directory User Account +Control attribute. + The acceptable values for this parameter are: - $False or 0 @@ -1275,7 +1471,9 @@ Accept wildcard characters: False ### -State Specifies the user's or Organizational Unit's state or province. + This parameter sets the **State** property of a user object. + The LDAP display name (**ldapDisplayName**) of this property is st. ```yaml @@ -1293,7 +1491,9 @@ Accept wildcard characters: False ### -StreetAddress Specifies the user's street address. + This parameter sets the **StreetAddress** property of a user object. + The LDAP display name (**ldapDisplayName**) of this property is streetAddress. ```yaml @@ -1311,7 +1511,9 @@ Accept wildcard characters: False ### -Surname Specifies the user's last name or surname. + This parameter sets the **Surname** property of a user object. + The LDAP display name (**ldapDisplayName**) of this property is sn. ```yaml @@ -1329,7 +1531,9 @@ Accept wildcard characters: False ### -Title Specifies the user's title. + This parameter sets the **Title** property of a user object. + The LDAP display name (**ldapDisplayName**) of this property is title. ```yaml @@ -1347,9 +1551,15 @@ Accept wildcard characters: False ### -TrustedForDelegation Indicates whether an account is trusted for Kerberos delegation. -A service that runs under an account that is trusted for Kerberos delegation can assume the identity of a client requesting the service. + +A service that runs under an account that is trusted for Kerberos delegation can assume the identity +of a client requesting the service. + This parameter sets the **TrustedForDelegation** property of an account object. -This value also sets the **ADS_UF_TRUSTED_FOR_DELEGATION** flag of the Active Directory User Account Control attribute. + +This value also sets the **ADS_UF_TRUSTED_FOR_DELEGATION** flag of the Active Directory User Account +Control attribute. + The acceptable values for this parameter are: - $False or 0 @@ -1370,8 +1580,12 @@ Accept wildcard characters: False ### -Type Specifies the type of object to create. -Set the _Type_ parameter to the LDAP display name of the Active Directory schema class that represents the type of object that you want to create. + +Set the _Type_ parameter to the LDAP display name of the Active Directory schema class that +represents the type of object that you want to create. + The selected type must be a subclass of the User schema class. + If this parameter is not specified it defaults to User. ```yaml @@ -1389,9 +1603,15 @@ Accept wildcard characters: False ### -UserPrincipalName Specifies a user principal name (UPN) in the format `@`. -A UPN is a friendly name assigned by an administrator that is shorter than the LDAP distinguished name used by the system and easier to remember. -The UPN is independent of the user object's distinguished name, so a user object can be moved or renamed without affecting the user logon name. -When logging on using a UPN, users no longer have to choose a domain from a list on the logon dialog box. + +A UPN is a friendly name assigned by an administrator that is shorter than the LDAP distinguished +name used by the system and easier to remember. + +The UPN is independent of the user object's distinguished name, so a user object can be moved or +renamed without affecting the user logon name. + +When logging on using a UPN, users no longer have to choose a domain from a list on the logon dialog +box. ```yaml Type: String @@ -1408,6 +1628,7 @@ Accept wildcard characters: False ### -WhatIf Shows what would happen if the cmdlet runs. + The cmdlet is not run. ```yaml @@ -1424,7 +1645,10 @@ Accept wildcard characters: False ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -1437,6 +1661,7 @@ A user object that is a template for the new user object is received by the _Ins ### None or Microsoft.ActiveDirectory.Management.ADUser Returns the new user object when the _PassThru_ parameter is specified. + By default, this cmdlet does not generate any output. ## NOTES From 9fde6786015aa571b4d43c48a1a8cea060e8d619 Mon Sep 17 00:00:00 2001 From: Anthony Howell Date: Thu, 27 Apr 2023 15:04:16 -0700 Subject: [PATCH 449/965] backticks around $true/$false --- .../activedirectory/New-ADUser.md | 48 +++++++++---------- 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/docset/winserver2022-ps/activedirectory/New-ADUser.md b/docset/winserver2022-ps/activedirectory/New-ADUser.md index 991c11d78f..4c22fdde9e 100644 --- a/docset/winserver2022-ps/activedirectory/New-ADUser.md +++ b/docset/winserver2022-ps/activedirectory/New-ADUser.md @@ -142,7 +142,7 @@ Accept wildcard characters: False ### -AccountNotDelegated Indicates whether the security context of the user is delegated to a service. When this parameter is -set to $True, the security context of the account is not delegated to a service even when the +set to `$True`, the security context of the account is not delegated to a service even when the service account is set as trusted for Kerberos delegation. This parameter sets the **AccountNotDelegated** property for an Active Directory account. @@ -152,8 +152,8 @@ Control (UAC) attribute. The acceptable values for this parameter are: -- $False or 0 -- $True or 1 +- `$False` or 0 +- `$True` or 1 ```yaml Type: Boolean @@ -186,7 +186,7 @@ User accounts, by default, are created without a password. If you provide a pass will be made to set that password however, this can fail due to password policy restrictions. The user account will still be created and you may use Set-ADAccountPassword to set the password on that account. In order to ensure that accounts remain secure, user accounts will never be enabled unless -a valid password is set or **PasswordNotRequired** is set to $True. +a valid password is set or **PasswordNotRequired** is set to `$True`. The account is created if the password fails for any reason. @@ -213,8 +213,8 @@ User Account Control (UAC) attribute. The acceptable values for this parameter are: -- $False or 0 -- $True or 1 +- `$False` or 0 +- `$True` or 1 ```yaml Type: Boolean @@ -319,8 +319,8 @@ This parameter sets the **CannotChangePassword** property of an account. The acceptable values for this parameter are: -- $False or 0 -- $True or 1 +- `$False` or 0 +- `$True` or 1 ```yaml Type: Boolean @@ -359,11 +359,11 @@ Indicates whether a password must be changed during the next logon attempt. The acceptable values for this parameter are: -- $False or 0 -- $True or 1 +- `$False` or 0 +- `$True` or 1 -This parameter cannot be set to $True or 1 for an account that also has the **PasswordNeverExpires** -property set to $True. +This parameter cannot be set to `$True` or 1 for an account that also has the +**PasswordNeverExpires** property set to `$True`. ```yaml Type: Boolean @@ -427,8 +427,8 @@ This value sets the compound identity supported flag of the Active Directory The acceptable values for this parameter are: -- $False or 0 -- $True or 1 +- `$False` or 0 +- `$True` or 1 Warning: Domain-joined Windows systems and services such as clustering manage their own `msDS-SupportedEncryptionTypes` attribute. Therefore any changes to the flag on the @@ -673,8 +673,8 @@ Control (UAC) attribute. The acceptable values for this parameter are: -- $False or 0 -- $True or 1 +- `$False` or 0 +- `$True` or 1 ```yaml Type: Boolean @@ -1159,11 +1159,11 @@ Control attribute. The acceptable values for this parameter are: -- $False or 0 -- $True or 1 +- `$False` or 0 +- `$True` or 1 -Note: This parameter cannot be set to $True or 1 for an account that also has the -**ChangePasswordAtLogon** property set to $True. +Note: This parameter cannot be set to `$True` or 1 for an account that also has the +**ChangePasswordAtLogon** property set to `$True`. ```yaml Type: Boolean @@ -1453,8 +1453,8 @@ Control attribute. The acceptable values for this parameter are: -- $False or 0 -- $True or 1 +- `$False` or 0 +- `$True` or 1 ```yaml Type: Boolean @@ -1562,8 +1562,8 @@ Control attribute. The acceptable values for this parameter are: -- $False or 0 -- $True or 1 +- `$False` or 0 +- `$True` or 1 ```yaml Type: Boolean From f3ae6a7e382a1fa984dab27d6960c8bdde9165ea Mon Sep 17 00:00:00 2001 From: Matthew Dowst <7384306+mdowst@users.noreply.github.com> Date: Thu, 27 Apr 2023 15:06:04 -0700 Subject: [PATCH 450/965] fix syntax block --- .../winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md b/docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md index 5f980d3b27..7d5c54362c 100644 --- a/docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md +++ b/docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md @@ -16,9 +16,9 @@ Merges Windows Update .etl files into a single log file. ## SYNTAX -```powershell -Get-WindowsUpdateLog [[-ETLPath] ] [[-LogPath] ] [-ProcessingType ] [-ForceFlush] - [-WhatIf] [-Confirm] [] +``` +Get-WindowsUpdateLog [[-ETLPath] ] [[-LogPath] ] +[-ProcessingType ] [-ForceFlush] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION From d12059f476d503a6f7163a92766a547f4cf9e29c Mon Sep 17 00:00:00 2001 From: Anthony Howell Date: Thu, 27 Apr 2023 15:07:20 -0700 Subject: [PATCH 451/965] decorating code blocks --- docset/winserver2022-ps/activedirectory/New-ADUser.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docset/winserver2022-ps/activedirectory/New-ADUser.md b/docset/winserver2022-ps/activedirectory/New-ADUser.md index 4c22fdde9e..4486e570b2 100644 --- a/docset/winserver2022-ps/activedirectory/New-ADUser.md +++ b/docset/winserver2022-ps/activedirectory/New-ADUser.md @@ -16,7 +16,7 @@ Creates an Active Directory user. ## SYNTAX -``` +```powershell New-ADUser [-WhatIf] [-Confirm] [-AccountExpirationDate ] [-AccountNotDelegated ] [-AccountPassword ] [-AllowReversiblePasswordEncryption ] [-AuthenticationPolicy ] [-AuthenticationPolicySilo ] @@ -78,7 +78,7 @@ through the pipeline to the `New-ADUser` cmdlet to create the user objects. ### Example 1: Create a user with an imported certificate -``` +```powershell PS C:\> New-ADUser -Name "ChewDavid" -Certificate (New-Object System.Security.Cryptography.X509Certificates.X509Certificate -ArgumentList "Export.cer") ``` @@ -86,7 +86,7 @@ This command creates a user named ChewDavid with a certificate imported from the ### Example 2: Create a user and set properties -``` +```powershell PS C:\> New-ADUser -Name "ChewDavid" -OtherAttributes @{'title'="director";'mail'="chewdavid@fabrikam.com"} ``` @@ -95,7 +95,7 @@ the new object. ### Example 3: Create an inetOrgPerson user -``` +```powershell PS C:\> New-ADUser -Name "ChewDavid" -Type iNetOrgPerson -Path "DC=AppNC" -Server lds.Fabrikam.com:50000 ``` @@ -103,7 +103,7 @@ This command creates an **inetOrgPerson**-class user named ChewDavid on an AD LD ### Example 4: Create a user and set password -``` +```powershell PS C:\> New-ADUser -Name "ChewDavid" -Accountpassword (Read-Host -AsSecureString "AccountPassword") -Enabled $true ``` From 13896ef7827628386dbf83dc533dd00b506a7063 Mon Sep 17 00:00:00 2001 From: Anthony Howell Date: Thu, 27 Apr 2023 15:07:37 -0700 Subject: [PATCH 452/965] removing prompt --- docset/winserver2022-ps/activedirectory/New-ADUser.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docset/winserver2022-ps/activedirectory/New-ADUser.md b/docset/winserver2022-ps/activedirectory/New-ADUser.md index 4486e570b2..22cb44a886 100644 --- a/docset/winserver2022-ps/activedirectory/New-ADUser.md +++ b/docset/winserver2022-ps/activedirectory/New-ADUser.md @@ -79,7 +79,7 @@ through the pipeline to the `New-ADUser` cmdlet to create the user objects. ### Example 1: Create a user with an imported certificate ```powershell -PS C:\> New-ADUser -Name "ChewDavid" -Certificate (New-Object System.Security.Cryptography.X509Certificates.X509Certificate -ArgumentList "Export.cer") +New-ADUser -Name "ChewDavid" -Certificate (New-Object System.Security.Cryptography.X509Certificates.X509Certificate -ArgumentList "Export.cer") ``` This command creates a user named ChewDavid with a certificate imported from the file Export.cer. @@ -87,7 +87,7 @@ This command creates a user named ChewDavid with a certificate imported from the ### Example 2: Create a user and set properties ```powershell -PS C:\> New-ADUser -Name "ChewDavid" -OtherAttributes @{'title'="director";'mail'="chewdavid@fabrikam.com"} +New-ADUser -Name "ChewDavid" -OtherAttributes @{'title'="director";'mail'="chewdavid@fabrikam.com"} ``` This command creates a new user named ChewDavid and sets the **title** and **mail** properties on @@ -96,7 +96,7 @@ the new object. ### Example 3: Create an inetOrgPerson user ```powershell -PS C:\> New-ADUser -Name "ChewDavid" -Type iNetOrgPerson -Path "DC=AppNC" -Server lds.Fabrikam.com:50000 +New-ADUser -Name "ChewDavid" -Type iNetOrgPerson -Path "DC=AppNC" -Server lds.Fabrikam.com:50000 ``` This command creates an **inetOrgPerson**-class user named ChewDavid on an AD LDS instance. @@ -104,7 +104,7 @@ This command creates an **inetOrgPerson**-class user named ChewDavid on an AD LD ### Example 4: Create a user and set password ```powershell -PS C:\> New-ADUser -Name "ChewDavid" -Accountpassword (Read-Host -AsSecureString "AccountPassword") -Enabled $true +New-ADUser -Name "ChewDavid" -Accountpassword (Read-Host -AsSecureString "AccountPassword") -Enabled $true ``` This command creates a new user named ChewDavid and sets the account password. From 05f852e404ed0f2ce4d1752b6081b313f70a889a Mon Sep 17 00:00:00 2001 From: Anthony Howell Date: Thu, 27 Apr 2023 15:08:24 -0700 Subject: [PATCH 453/965] fixing casing --- docset/winserver2022-ps/activedirectory/New-ADUser.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/activedirectory/New-ADUser.md b/docset/winserver2022-ps/activedirectory/New-ADUser.md index 22cb44a886..15db90ac50 100644 --- a/docset/winserver2022-ps/activedirectory/New-ADUser.md +++ b/docset/winserver2022-ps/activedirectory/New-ADUser.md @@ -104,7 +104,7 @@ This command creates an **inetOrgPerson**-class user named ChewDavid on an AD LD ### Example 4: Create a user and set password ```powershell -New-ADUser -Name "ChewDavid" -Accountpassword (Read-Host -AsSecureString "AccountPassword") -Enabled $true +New-ADUser -Name "ChewDavid" -AccountPassword (Read-Host -AsSecureString "AccountPassword") -Enabled $true ``` This command creates a new user named ChewDavid and sets the account password. From 3b68bbc20f2b671f89c52b99ed320f90c7001696 Mon Sep 17 00:00:00 2001 From: Anthony Howell Date: Thu, 27 Apr 2023 15:12:09 -0700 Subject: [PATCH 454/965] switch param update --- docset/winserver2022-ps/activedirectory/New-ADUser.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docset/winserver2022-ps/activedirectory/New-ADUser.md b/docset/winserver2022-ps/activedirectory/New-ADUser.md index 15db90ac50..59cd73f367 100644 --- a/docset/winserver2022-ps/activedirectory/New-ADUser.md +++ b/docset/winserver2022-ps/activedirectory/New-ADUser.md @@ -452,7 +452,7 @@ Accept wildcard characters: False Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -1137,7 +1137,7 @@ Returns an object representing the item with which you are working. By default, this cmdlet does not generate any output. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -1632,7 +1632,7 @@ Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi From 95b5bdd685b9555cc3d0357218157f71d6992b56 Mon Sep 17 00:00:00 2001 From: Mike Soule Date: Thu, 27 Apr 2023 15:13:02 -0700 Subject: [PATCH 455/965] formatting --- .../Uninstall-AdcsWebEnrollment.md | 23 +++++++++++++------ 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/docset/winserver2022-ps/adcsdeployment/Uninstall-AdcsWebEnrollment.md b/docset/winserver2022-ps/adcsdeployment/Uninstall-AdcsWebEnrollment.md index 71f7303ed9..869c76a973 100644 --- a/docset/winserver2022-ps/adcsdeployment/Uninstall-AdcsWebEnrollment.md +++ b/docset/winserver2022-ps/adcsdeployment/Uninstall-AdcsWebEnrollment.md @@ -20,13 +20,16 @@ Uninstall-AdcsWebEnrollment [-Force] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Uninstall-AdcsWebEnrollment** cmdlet removes the Certification Authority (CA) Web Enrollment role service. + +The `Uninstall-AdcsWebEnrollment` cmdlet removes the Certification Authority (CA) Web Enrollment +role service. ## EXAMPLES ### Example 1: Uninstall the CA Web Enrollment role service -``` -PS C:\> Uninstall-AdcsWebEnrollment -Force + +```powershell +Uninstall-AdcsWebEnrollment -Force ``` This command uninstalls the CA Web Enrollment role service without requiring confirmation. @@ -34,6 +37,7 @@ This command uninstalls the CA Web Enrollment role service without requiring con ## PARAMETERS ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -49,6 +53,7 @@ Accept wildcard characters: False ``` ### -Force + Forces the command to run without asking for user confirmation. ```yaml @@ -64,6 +69,7 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. @@ -80,7 +86,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -91,11 +101,10 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.CertificateServices.Deployment.Common.WEP.WebEnrollmentResult ## NOTES -* Ensure you run Windows PowerShell as an administrator. You can use the *Force* parameter to bypass the prompt for confirmation. - +- Ensure you run Windows PowerShell as an administrator. You can use the **Force** parameter to + bypass the prompt for confirmation. ## RELATED LINKS [Install-AdcsWebEnrollment](./Install-AdcsWebEnrollment.md) - From ae11c64549c0007557e308285db8b7be188d8a2d Mon Sep 17 00:00:00 2001 From: Anthony Howell Date: Thu, 27 Apr 2023 15:13:42 -0700 Subject: [PATCH 456/965] string and boolean --- .../activedirectory/New-ADUser.md | 96 +++++++++---------- 1 file changed, 48 insertions(+), 48 deletions(-) diff --git a/docset/winserver2022-ps/activedirectory/New-ADUser.md b/docset/winserver2022-ps/activedirectory/New-ADUser.md index 59cd73f367..8afbf91da2 100644 --- a/docset/winserver2022-ps/activedirectory/New-ADUser.md +++ b/docset/winserver2022-ps/activedirectory/New-ADUser.md @@ -156,7 +156,7 @@ The acceptable values for this parameter are: - `$True` or 1 ```yaml -Type: Boolean +Type: System.Boolean Parameter Sets: (All) Aliases: @@ -217,7 +217,7 @@ The acceptable values for this parameter are: - `$True` or 1 ```yaml -Type: Boolean +Type: System.Boolean Parameter Sets: (All) Aliases: @@ -323,7 +323,7 @@ The acceptable values for this parameter are: - `$True` or 1 ```yaml -Type: Boolean +Type: System.Boolean Parameter Sets: (All) Aliases: @@ -366,7 +366,7 @@ This parameter cannot be set to `$True` or 1 for an account that also has the **PasswordNeverExpires** property set to `$True`. ```yaml -Type: Boolean +Type: System.Boolean Parameter Sets: (All) Aliases: @@ -386,7 +386,7 @@ This parameter sets the **City** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is l. ```yaml -Type: String + System.String Parameter Sets: (All) Aliases: @@ -406,7 +406,7 @@ This parameter sets the **Company** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is company. ```yaml -Type: String + System.String Parameter Sets: (All) Aliases: @@ -436,7 +436,7 @@ Warning: Domain-joined Windows systems and services such as clustering manage th setting. ```yaml -Type: Boolean +Type: System.Boolean Parameter Sets: (All) Aliases: @@ -474,7 +474,7 @@ The LDAP display name (**ldapDisplayName**) of this property is c. This value is not used by Windows 2000. ```yaml -Type: String + System.String Parameter Sets: (All) Aliases: @@ -529,7 +529,7 @@ This parameter sets the **Department** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is department. ```yaml -Type: String + System.String Parameter Sets: (All) Aliases: @@ -549,7 +549,7 @@ This parameter sets the value of the **Description** property for the user objec The LDAP display name (**ldapDisplayName**) for this property is description. ```yaml -Type: String + System.String Parameter Sets: (All) Aliases: @@ -569,7 +569,7 @@ This parameter sets the **DisplayName** property of the user object. The LDAP display name (**ldapDisplayName**) for this property is displayName. ```yaml -Type: String + System.String Parameter Sets: (All) Aliases: @@ -589,7 +589,7 @@ This parameter sets the **Division** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is division. ```yaml -Type: String + System.String Parameter Sets: (All) Aliases: @@ -609,7 +609,7 @@ This parameter sets the **EmailAddress** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is mail. ```yaml -Type: String + System.String Parameter Sets: (All) Aliases: @@ -629,7 +629,7 @@ This parameter sets the **EmployeeID** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is employeeID. ```yaml -Type: String + System.String Parameter Sets: (All) Aliases: @@ -649,7 +649,7 @@ This parameter sets the **EmployeeNumber** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is employeeNumber. ```yaml -Type: String + System.String Parameter Sets: (All) Aliases: @@ -677,7 +677,7 @@ The acceptable values for this parameter are: - `$True` or 1 ```yaml -Type: Boolean +Type: System.Boolean Parameter Sets: (All) Aliases: @@ -697,7 +697,7 @@ This parameter sets the **Fax** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is facsimileTelephoneNumber. ```yaml -Type: String + System.String Parameter Sets: (All) Aliases: @@ -717,7 +717,7 @@ This parameter sets the **GivenName** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is givenName. ```yaml -Type: String + System.String Parameter Sets: (All) Aliases: @@ -737,7 +737,7 @@ This parameter sets the **HomeDirectory** property of a user object. The LDAP display name (**ldapDisplayName**) for this property is homeDirectory. ```yaml -Type: String + System.String Parameter Sets: (All) Aliases: @@ -762,7 +762,7 @@ This parameter sets the **HomeDrive** property of the user object. The LDAP display name (**ldapDisplayName**) for this property is homeDrive. ```yaml -Type: String + System.String Parameter Sets: (All) Aliases: @@ -782,7 +782,7 @@ This parameter sets the **homePage** property of a user object. The LDAP display name (**ldapDisplayName**) for this property is wWWHomePage. ```yaml -Type: String + System.String Parameter Sets: (All) Aliases: @@ -802,7 +802,7 @@ This parameter sets the **HomePhone** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is homePhone. ```yaml -Type: String + System.String Parameter Sets: (All) Aliases: @@ -824,7 +824,7 @@ This parameter sets the **Initials** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is initials. ```yaml -Type: String + System.String Parameter Sets: (All) Aliases: @@ -929,7 +929,7 @@ The SAM account name is the same as the NetBIOS name of the computer. The LDAP display name (**ldapDisplayName**) for this property is userWorkStations. ```yaml -Type: String + System.String Parameter Sets: (All) Aliases: @@ -978,7 +978,7 @@ This parameter sets the **MobilePhone** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is mobile. ```yaml -Type: String + System.String Parameter Sets: (All) Aliases: @@ -998,7 +998,7 @@ This parameter sets the **Name** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is name. ```yaml -Type: String + System.String Parameter Sets: (All) Aliases: @@ -1018,7 +1018,7 @@ This parameter sets the **Office** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is physicalDeliveryOfficeName. ```yaml -Type: String + System.String Parameter Sets: (All) Aliases: @@ -1038,7 +1038,7 @@ This parameter sets the **OfficePhone** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is telephoneNumber. ```yaml -Type: String + System.String Parameter Sets: (All) Aliases: @@ -1058,7 +1058,7 @@ This parameter sets the **Organization** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is o. ```yaml -Type: String + System.String Parameter Sets: (All) Aliases: @@ -1119,7 +1119,7 @@ This parameter sets the **OtherName** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is middleName. ```yaml -Type: String + System.String Parameter Sets: (All) Aliases: @@ -1166,7 +1166,7 @@ Note: This parameter cannot be set to `$True` or 1 for an account that also has **ChangePasswordAtLogon** property set to `$True`. ```yaml -Type: Boolean +Type: System.Boolean Parameter Sets: (All) Aliases: @@ -1186,7 +1186,7 @@ A password is not required for a new account. This parameter sets the **PasswordNotRequired** property of an account object. ```yaml -Type: Boolean +Type: System.Boolean Parameter Sets: (All) Aliases: @@ -1237,7 +1237,7 @@ However, for the Active Directory Provider cmdlets, the _Path_ parameter identif actual object rather than the container. ```yaml -Type: String + System.String Parameter Sets: (All) Aliases: @@ -1256,7 +1256,7 @@ This parameter sets the **POBox** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is postOfficeBox. ```yaml -Type: String + System.String Parameter Sets: (All) Aliases: @@ -1275,7 +1275,7 @@ This parameter sets the **PostalCode** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is postalCode. ```yaml -Type: String + System.String Parameter Sets: (All) Aliases: @@ -1316,7 +1316,7 @@ This parameter sets the **ProfilePath** property of the user object. The LDAP display name (**ldapDisplayName**) for this property is profilePath. ```yaml -Type: String + System.String Parameter Sets: (All) Aliases: @@ -1345,7 +1345,7 @@ Note: If the string value provided is not terminated with a $ character, the sys needed. ```yaml -Type: String + System.String Parameter Sets: (All) Aliases: @@ -1367,7 +1367,7 @@ This parameter sets the **ScriptPath** property of the user object. The LDAP display name (**ldapDisplayName**) for this property is scriptPath. ```yaml -Type: String + System.String Parameter Sets: (All) Aliases: @@ -1407,7 +1407,7 @@ they are listed: - By using the domain of the computer running Windows PowerShell ```yaml -Type: String + System.String Parameter Sets: (All) Aliases: @@ -1431,7 +1431,7 @@ contain spaces or otherwise require quotation marks, use the following syntax: `"","",...""`." ```yaml -Type: String[] + System.String[] Parameter Sets: (All) Aliases: @@ -1457,7 +1457,7 @@ The acceptable values for this parameter are: - `$True` or 1 ```yaml -Type: Boolean +Type: System.Boolean Parameter Sets: (All) Aliases: @@ -1477,7 +1477,7 @@ This parameter sets the **State** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is st. ```yaml -Type: String + System.String Parameter Sets: (All) Aliases: @@ -1497,7 +1497,7 @@ This parameter sets the **StreetAddress** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is streetAddress. ```yaml -Type: String + System.String Parameter Sets: (All) Aliases: @@ -1517,7 +1517,7 @@ This parameter sets the **Surname** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is sn. ```yaml -Type: String + System.String Parameter Sets: (All) Aliases: @@ -1537,7 +1537,7 @@ This parameter sets the **Title** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is title. ```yaml -Type: String + System.String Parameter Sets: (All) Aliases: @@ -1566,7 +1566,7 @@ The acceptable values for this parameter are: - `$True` or 1 ```yaml -Type: Boolean +Type: System.Boolean Parameter Sets: (All) Aliases: @@ -1589,7 +1589,7 @@ The selected type must be a subclass of the User schema class. If this parameter is not specified it defaults to User. ```yaml -Type: String + System.String Parameter Sets: (All) Aliases: @@ -1614,7 +1614,7 @@ When logging on using a UPN, users no longer have to choose a domain from a list box. ```yaml -Type: String + System.String Parameter Sets: (All) Aliases: From 23ed7ec360069753d3e8c0d11235f0185dfa9925 Mon Sep 17 00:00:00 2001 From: Anthony Howell Date: Thu, 27 Apr 2023 15:14:47 -0700 Subject: [PATCH 457/965] fixing string --- .../activedirectory/New-ADUser.md | 76 +++++++++---------- 1 file changed, 38 insertions(+), 38 deletions(-) diff --git a/docset/winserver2022-ps/activedirectory/New-ADUser.md b/docset/winserver2022-ps/activedirectory/New-ADUser.md index 8afbf91da2..32c50a1287 100644 --- a/docset/winserver2022-ps/activedirectory/New-ADUser.md +++ b/docset/winserver2022-ps/activedirectory/New-ADUser.md @@ -386,7 +386,7 @@ This parameter sets the **City** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is l. ```yaml - System.String +Type: System.String Parameter Sets: (All) Aliases: @@ -406,7 +406,7 @@ This parameter sets the **Company** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is company. ```yaml - System.String +Type: System.String Parameter Sets: (All) Aliases: @@ -474,7 +474,7 @@ The LDAP display name (**ldapDisplayName**) of this property is c. This value is not used by Windows 2000. ```yaml - System.String +Type: System.String Parameter Sets: (All) Aliases: @@ -529,7 +529,7 @@ This parameter sets the **Department** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is department. ```yaml - System.String +Type: System.String Parameter Sets: (All) Aliases: @@ -549,7 +549,7 @@ This parameter sets the value of the **Description** property for the user objec The LDAP display name (**ldapDisplayName**) for this property is description. ```yaml - System.String +Type: System.String Parameter Sets: (All) Aliases: @@ -569,7 +569,7 @@ This parameter sets the **DisplayName** property of the user object. The LDAP display name (**ldapDisplayName**) for this property is displayName. ```yaml - System.String +Type: System.String Parameter Sets: (All) Aliases: @@ -589,7 +589,7 @@ This parameter sets the **Division** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is division. ```yaml - System.String +Type: System.String Parameter Sets: (All) Aliases: @@ -609,7 +609,7 @@ This parameter sets the **EmailAddress** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is mail. ```yaml - System.String +Type: System.String Parameter Sets: (All) Aliases: @@ -629,7 +629,7 @@ This parameter sets the **EmployeeID** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is employeeID. ```yaml - System.String +Type: System.String Parameter Sets: (All) Aliases: @@ -649,7 +649,7 @@ This parameter sets the **EmployeeNumber** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is employeeNumber. ```yaml - System.String +Type: System.String Parameter Sets: (All) Aliases: @@ -697,7 +697,7 @@ This parameter sets the **Fax** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is facsimileTelephoneNumber. ```yaml - System.String +Type: System.String Parameter Sets: (All) Aliases: @@ -717,7 +717,7 @@ This parameter sets the **GivenName** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is givenName. ```yaml - System.String +Type: System.String Parameter Sets: (All) Aliases: @@ -737,7 +737,7 @@ This parameter sets the **HomeDirectory** property of a user object. The LDAP display name (**ldapDisplayName**) for this property is homeDirectory. ```yaml - System.String +Type: System.String Parameter Sets: (All) Aliases: @@ -762,7 +762,7 @@ This parameter sets the **HomeDrive** property of the user object. The LDAP display name (**ldapDisplayName**) for this property is homeDrive. ```yaml - System.String +Type: System.String Parameter Sets: (All) Aliases: @@ -782,7 +782,7 @@ This parameter sets the **homePage** property of a user object. The LDAP display name (**ldapDisplayName**) for this property is wWWHomePage. ```yaml - System.String +Type: System.String Parameter Sets: (All) Aliases: @@ -802,7 +802,7 @@ This parameter sets the **HomePhone** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is homePhone. ```yaml - System.String +Type: System.String Parameter Sets: (All) Aliases: @@ -824,7 +824,7 @@ This parameter sets the **Initials** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is initials. ```yaml - System.String +Type: System.String Parameter Sets: (All) Aliases: @@ -929,7 +929,7 @@ The SAM account name is the same as the NetBIOS name of the computer. The LDAP display name (**ldapDisplayName**) for this property is userWorkStations. ```yaml - System.String +Type: System.String Parameter Sets: (All) Aliases: @@ -978,7 +978,7 @@ This parameter sets the **MobilePhone** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is mobile. ```yaml - System.String +Type: System.String Parameter Sets: (All) Aliases: @@ -998,7 +998,7 @@ This parameter sets the **Name** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is name. ```yaml - System.String +Type: System.String Parameter Sets: (All) Aliases: @@ -1018,7 +1018,7 @@ This parameter sets the **Office** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is physicalDeliveryOfficeName. ```yaml - System.String +Type: System.String Parameter Sets: (All) Aliases: @@ -1038,7 +1038,7 @@ This parameter sets the **OfficePhone** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is telephoneNumber. ```yaml - System.String +Type: System.String Parameter Sets: (All) Aliases: @@ -1058,7 +1058,7 @@ This parameter sets the **Organization** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is o. ```yaml - System.String +Type: System.String Parameter Sets: (All) Aliases: @@ -1119,7 +1119,7 @@ This parameter sets the **OtherName** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is middleName. ```yaml - System.String +Type: System.String Parameter Sets: (All) Aliases: @@ -1237,7 +1237,7 @@ However, for the Active Directory Provider cmdlets, the _Path_ parameter identif actual object rather than the container. ```yaml - System.String +Type: System.String Parameter Sets: (All) Aliases: @@ -1256,7 +1256,7 @@ This parameter sets the **POBox** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is postOfficeBox. ```yaml - System.String +Type: System.String Parameter Sets: (All) Aliases: @@ -1275,7 +1275,7 @@ This parameter sets the **PostalCode** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is postalCode. ```yaml - System.String +Type: System.String Parameter Sets: (All) Aliases: @@ -1316,7 +1316,7 @@ This parameter sets the **ProfilePath** property of the user object. The LDAP display name (**ldapDisplayName**) for this property is profilePath. ```yaml - System.String +Type: System.String Parameter Sets: (All) Aliases: @@ -1345,7 +1345,7 @@ Note: If the string value provided is not terminated with a $ character, the sys needed. ```yaml - System.String +Type: System.String Parameter Sets: (All) Aliases: @@ -1367,7 +1367,7 @@ This parameter sets the **ScriptPath** property of the user object. The LDAP display name (**ldapDisplayName**) for this property is scriptPath. ```yaml - System.String +Type: System.String Parameter Sets: (All) Aliases: @@ -1407,7 +1407,7 @@ they are listed: - By using the domain of the computer running Windows PowerShell ```yaml - System.String +Type: System.String Parameter Sets: (All) Aliases: @@ -1431,7 +1431,7 @@ contain spaces or otherwise require quotation marks, use the following syntax: `"","",...""`." ```yaml - System.String[] +Type: System.String[] Parameter Sets: (All) Aliases: @@ -1477,7 +1477,7 @@ This parameter sets the **State** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is st. ```yaml - System.String +Type: System.String Parameter Sets: (All) Aliases: @@ -1497,7 +1497,7 @@ This parameter sets the **StreetAddress** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is streetAddress. ```yaml - System.String +Type: System.String Parameter Sets: (All) Aliases: @@ -1517,7 +1517,7 @@ This parameter sets the **Surname** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is sn. ```yaml - System.String +Type: System.String Parameter Sets: (All) Aliases: @@ -1537,7 +1537,7 @@ This parameter sets the **Title** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is title. ```yaml - System.String +Type: System.String Parameter Sets: (All) Aliases: @@ -1589,7 +1589,7 @@ The selected type must be a subclass of the User schema class. If this parameter is not specified it defaults to User. ```yaml - System.String +Type: System.String Parameter Sets: (All) Aliases: @@ -1614,7 +1614,7 @@ When logging on using a UPN, users no longer have to choose a domain from a list box. ```yaml - System.String +Type: System.String Parameter Sets: (All) Aliases: From 05823ef9614e4d427f6fdec0a76485a02dcb4648 Mon Sep 17 00:00:00 2001 From: Anthony Howell Date: Thu, 27 Apr 2023 15:15:16 -0700 Subject: [PATCH 458/965] updating credential --- docset/winserver2022-ps/activedirectory/New-ADUser.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/activedirectory/New-ADUser.md b/docset/winserver2022-ps/activedirectory/New-ADUser.md index 32c50a1287..ecf73e6331 100644 --- a/docset/winserver2022-ps/activedirectory/New-ADUser.md +++ b/docset/winserver2022-ps/activedirectory/New-ADUser.md @@ -509,7 +509,7 @@ If the acting credentials do not have directory-level permission to perform the Directory PowerShell returns a terminating error. ```yaml -Type: PSCredential +Type: System.Management.Automation.PSCredential Parameter Sets: (All) Aliases: From 9b16e0c0388a1a3c7108479bfa94ea5ed0c28fdd Mon Sep 17 00:00:00 2001 From: Vanda Paladino Date: Thu, 27 Apr 2023 18:16:03 -0400 Subject: [PATCH 459/965] Corrections to Disable-ServerManagerStandardUserRemoting.md --- ...sable-ServerManagerStandardUserRemoting.md | 60 ++++++++++++++----- 1 file changed, 44 insertions(+), 16 deletions(-) diff --git a/docset/winserver2022-ps/ServerManager/Disable-ServerManagerStandardUserRemoting.md b/docset/winserver2022-ps/ServerManager/Disable-ServerManagerStandardUserRemoting.md index 425e762d18..ad1acd6bfc 100644 --- a/docset/winserver2022-ps/ServerManager/Disable-ServerManagerStandardUserRemoting.md +++ b/docset/winserver2022-ps/ServerManager/Disable-ServerManagerStandardUserRemoting.md @@ -11,8 +11,10 @@ title: Disable-ServerManagerStandardUserRemoting # Disable-ServerManagerStandardUserRemoting ## SYNOPSIS -Disables access for specified standard users to event, service, performance counter, and role and feature inventory data that is collected by Server Manager for a server. -This cmdlet performs the opposite action, for specified users, of the Enable-ServerManagerStandardUserRemoting cmdlet. + +Disables access for specified standard users to event, service, performance counter, and role and +feature inventory data that is collected by Server Manager for a server. This cmdlet performs the +opposite action, for specified users, of the Enable-ServerManagerStandardUserRemoting cmdlet. ## SYNTAX @@ -21,40 +23,57 @@ Disable-ServerManagerStandardUserRemoting [-User] [-Force] [-WhatIf] ``` ## DESCRIPTION -Disables access for one or more standard, non-Administrator users to event, service, performance counter, and role and feature inventory data for a server that you are managing by using Server Manager. -The cmdlet restores the default, administrator-only access to this data, and must be run locally on the server that is being managed by using Server Manager. -The cmdlet works by performing the following actions: -- Deletes access rights for specified standard users to the root\cimv2 namespace on the local server (for access to role and feature inventory information). +Disables access for one or more standard, non-Administrator users to event, service, performance +counter, and role and feature inventory data for a server that you are managing by using Server +Manager. The cmdlet restores the default, administrator-only access to this data, and must be run +locally on the server that is being managed by using Server Manager. The cmdlet works by performing +the following actions: + +- Deletes access rights for specified standard users to the root\cimv2 namespace on the local server + (for access to role and feature inventory information). -- Removes specified standard users from user groups (Remote Management Users, Event Log Readers, and Performance Log Readers) that allow remote access to event and performance counter logs on the local server. +- Removes specified standard users from user groups (Remote Management Users, Event Log Readers, and + Performance Log Readers) that allow remote access to event and performance counter logs on the + local server. -- Removes access rights in the Service Control Manager for specified standard users who have access to the status of services on the local server. +- Removes access rights in the Service Control Manager for specified standard users who have access + to the status of services on the local server. ## EXAMPLES ### Example 1 + ```powershell Disable-ServerManagerStandardUserRemoting -User JennyL ``` -In the following example, the administrator disables access to event, performance counter, service status, and role and feature inventory data for a server that is being managed by using either a local or remote Server Manager console, and for which there is a standard user named JennyL. +In this example, the administrator disables access to event, performance counter, service +status, and role and feature inventory data for a server that is being managed by using either a +local or remote Server Manager console, and for which there is a standard user named JennyL. ### Example 2 + ```powershell Disable-ServerManagerStandardUserRemoting -User JennyL -WhatIf ``` -In the following example, the administrator views the outcome of running a command to deny a standard user named JennyL access to event, performance counter, service status, and role and feature inventory data for a server that is being managed by using the Server Manager console running on either the local or a remote computer. -The `WhatIf` parameter is added, meaning that the command actions are not carried out. +In this example, the administrator views the outcome of running a command to deny a standard user +named JennyL access to event, performance counter, service status, and role and feature inventory +data for a server that is being managed by using the Server Manager console running on either the +local or a remote computer. The **WhatIf** parameter is added, meaning that the command actions are +not carried out. ### Example 3 + ```powershell Disable-ServerManagerStandardUserRemoting -User JennyL -Confirm ``` -In the following example, the administrator denies a standard user named JennyL access to event, performance counter, service status, and role and feature inventory data for a server that is being managed by using the Server Manager console running on either the local or a remote computer. -The `Confirm` parameter is added, meaning that the command prompts for confirmation before performing the action. +In this example, the administrator denies a standard user named JennyL access to event, performance +counter, service status, and role and feature inventory data for a server that is being managed by +using the Server Manager console running on either the local or a remote computer. The **Confirm** +parameter is added, meaning that the command prompts for confirmation before performing the action. ## PARAMETERS @@ -75,7 +94,10 @@ Accept wildcard characters: False ``` ### -User -Specifies the user account name of a standard user who runs Server Manager, and no longer requires access to event, performance counter, service, and role and feature inventory data for a server that is being managed by using either a local or remote Server Manager console. + +Specifies the user account name of a standard user who runs Server Manager and no longer requires +access to event, performance counter, service, and role and feature inventory data for a server that +is being managed by using either a local or remote Server Manager console. ```yaml Type: String[] @@ -90,6 +112,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -105,7 +128,8 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. + +Shows what would happen if the cmdlet were run. The cmdlet is not run. ```yaml @@ -121,7 +145,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: `-Debug`, -`ErrorAction`, -`ErrorVariable`, +-`InformationAction`, -`InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, +`-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS From 9295375b98275f6ee5af9255abd5de55b3b9b9db Mon Sep 17 00:00:00 2001 From: Kevin Marquette Date: Thu, 27 Apr 2023 22:19:22 +0000 Subject: [PATCH 460/965] fix long lines --- .../activedirectory/Get-ADComputer.md | 213 ++++++++++++------ 1 file changed, 138 insertions(+), 75 deletions(-) diff --git a/docset/winserver2022-ps/activedirectory/Get-ADComputer.md b/docset/winserver2022-ps/activedirectory/Get-ADComputer.md index 2cb88a4e26..eab19f43cb 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADComputer.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADComputer.md @@ -19,24 +19,27 @@ Gets one or more Active Directory computers. ### Filter (Default) ```powershell -Get-ADComputer [-AuthType ] [-Credential ] -Filter [-Properties ] - [-ResultPageSize ] [-ResultSetSize ] [-SearchBase ] [-SearchScope ] - [-Server ] [] +Get-ADComputer [-AuthType ] [-Credential ] + -Filter [-Properties ] [-ResultPageSize ] + [-ResultSetSize ] [-SearchBase ] [-SearchScope ] + [-Server ] [] ``` ### Identity ```powershell -Get-ADComputer [-AuthType ] [-Credential ] [-Identity] - [-Partition ] [-Properties ] [-Server ] [] +Get-ADComputer [-AuthType ] [-Credential ] + [-Identity] [-Partition ] [-Properties ] + [-Server ] [] ``` ### LdapFilter ```powershell Get-ADComputer [-AuthType ] [-Credential ] -LDAPFilter - [-Properties ] [-ResultPageSize ] [-ResultSetSize ] [-SearchBase ] - [-SearchScope ] [-Server ] [] + [-Properties ] [-ResultPageSize ] [-ResultSetSize ] + [-SearchBase ] [-SearchScope ] [-Server ] + [] ``` ## DESCRIPTION @@ -44,18 +47,25 @@ Get-ADComputer [-AuthType ] [-Credential ] -LDAPFilter The **Get-ADComputer** cmdlet gets a computer or performs a search to retrieve multiple computers. The _Identity_ parameter specifies the Active Directory computer to retrieve. -You can identify a computer by its distinguished name, GUID, security identifier (SID) or Security Accounts Manager (SAM) account name. -You can also set the parameter to a computer object variable, such as `$` or pass a computer object through the pipeline to the _Identity_ parameter. - -To search for and retrieve more than one computer, use the _Filter_ or _LDAPFilter_ parameters. -The _Filter_ parameter uses the PowerShell Expression Language to write query strings for Active Directory. -PowerShell Expression Language syntax provides rich type conversion support for value types received by the _Filter_ parameter. -For more information about the _Filter_ parameter syntax, type `Get-Help` [about_ActiveDirectory_Filter](/previous-versions/windows/server/hh531527(v=ws.10)). -If you have existing Lightweight Directory Access Protocol (LDAP) query strings, you can use the _LDAPFilter_ parameter. - -This cmdlet retrieves a default set of computer object properties. -To retrieve additional properties use the _Properties_ parameter. -For more information about the how to determine the properties for computer objects, see the _Properties_ parameter description. +You can identify a computer by its distinguished name, GUID, security identifier +(SID) or Security Accounts Manager (SAM) account name. You can also set the +parameter to a computer object variable, such as `$` or +pass a computer object through the pipeline to the _Identity_ parameter. + +To search for and retrieve more than one computer, use the _Filter_ or +_LDAPFilter_ parameters. The _Filter_ parameter uses the PowerShell Expression +Language to write query strings for Active Directory. PowerShell Expression +Language syntax provides rich type conversion support for value types received +by the _Filter_ parameter. For more information about the _Filter_ parameter +syntax, type `Get-Help` +[about_ActiveDirectory_Filter](/previous-versions/windows/server/hh531527(v=ws.10)). +If you have existing Lightweight Directory Access Protocol (LDAP) query strings, +you can use the _LDAPFilter_ parameter. + +This cmdlet retrieves a default set of computer object properties. To retrieve +additional properties use the _Properties_ parameter. For more information about +the how to determine the properties for computer objects, see the _Properties_ +parameter description. ## EXAMPLES @@ -162,7 +172,8 @@ User01-SRV1 User01-SRV1.User01.com 10.194.99.181 User01-SRV2 User01-SRV2.User01.com 10.194.100.3 ``` -This command gets all the computers with a name starting with a particular string and shows the name, dns hostname, and IPv4 address. +This command gets all the computers with a name starting with a particular +string and shows the name, dns hostname, and IPv4 address. ### Example 3: Gets all computers that have changed their password in specific time frame @@ -194,7 +205,9 @@ pattiful-laptop davidche-laptop ``` -This command gets the computer accounts in the location CN=Computers,DC=User01,DC=com that are listed as laptops by using an _LDAPFilter_. +This command gets the computer accounts in the location +CN=Computers,DC=User01,DC=com that are listed as laptops by using an +_LDAPFilter_. ### Example 5: Get all computer accounts using a filter @@ -263,17 +276,23 @@ Accept wildcard characters: False ### -Credential -Specifies the user account credentials to use to perform this task. -The default credentials are the credentials of the currently logged on user unless the cmdlet is run from an Active Directory module for Windows PowerShell provider drive. -If the cmdlet is run from such a provider drive, the account associated with the drive is the default. +Specifies the user account credentials to use to perform this task. The default +credentials are the credentials of the currently logged on user unless the +cmdlet is run from an Active Directory module for Windows PowerShell provider +drive. If the cmdlet is run from such a provider drive, the account associated +with the drive is the default. -To specify this parameter, you can type a user name, such as User1 or Domain01\User01 or you can specify a **PSCredential** object. -If you specify a user name for this parameter, the cmdlet prompts for a password. +To specify this parameter, you can type a user name, such as User1 or +Domain01\User01 or you can specify a **PSCredential** object. If you specify a +user name for this parameter, the cmdlet prompts for a password. -You can also create a **PSCredential** object by using a script or by using the **Get-Credential** cmdlet. -You can then set the _Credential_ parameter to the **PSCredential** object. +You can also create a **PSCredential** object by using a script or by using the +**Get-Credential** cmdlet. You can then set the _Credential_ parameter to the +**PSCredential** object. -If the acting credentials do not have directory-level permission to perform the task, Active Directory module for Windows PowerShell returns a terminating error. +If the acting credentials do not have directory-level permission to perform the +task, Active Directory module for Windows PowerShell returns a terminating +error. ```yaml Type: PSCredential @@ -289,15 +308,18 @@ Accept wildcard characters: False ### -Filter -Specifies a query string that retrieves Active Directory objects. -This string uses the Windows PowerShell Expression Language syntax. -The Windows PowerShell Expression Language syntax provides rich type-conversion support for value types received by the _Filter_ parameter. -The syntax uses an in-order representation, which means that the operator is placed between the operand and the value. -For more information about the _Filter_ parameter, type `Get-Help` [about_ActiveDirectory_Filter](/previous-versions/windows/server/hh531527(v=ws.10)). +Specifies a query string that retrieves Active Directory objects. This string +uses the Windows PowerShell Expression Language syntax. The Windows PowerShell +Expression Language syntax provides rich type-conversion support for value types +received by the _Filter_ parameter. The syntax uses an in-order representation, +which means that the operator is placed between the operand and the value. For +more information about the _Filter_ parameter, type `Get-Help` +[about_ActiveDirectory_Filter](/previous-versions/windows/server/hh531527(v=ws.10)). Syntax: -The following syntax uses Backus-Naur form to show how to use the Windows PowerShell Expression Language for this parameter. +The following syntax uses Backus-Naur form to show how to use the Windows +PowerShell Expression Language for this parameter. \ ::= "{" \ "}" @@ -317,7 +339,8 @@ The following syntax uses Backus-Naur form to show how to use the Windows PowerS For a list of supported types for \, type `Get-Help about_ActiveDirectory_ObjectModel`. -Note: Windows PowerShell wildcards other than \*, such as ?, are not supported by the _Filter_ syntax. +Note: Windows PowerShell wildcards other than \*, such as ?, are not supported +by the _Filter_ syntax. Note: To query using LDAP query strings, use the _LDAPFilter_ parameter. @@ -345,10 +368,12 @@ The acceptable values for this parameter are: - A Security Accounts Manager account name (sAMAccountName) The cmdlet searches the default naming context or partition to find the object. -If the identifier given is a distinguished name, the partition to search is computed from that distinguished name. -If two or more objects are found, the cmdlet returns a non-terminating error. +If the identifier given is a distinguished name, the partition to search is +computed from that distinguished name. If two or more objects are found, the +cmdlet returns a non-terminating error. -This parameter can also get this object through the pipeline or you can set this parameter to a computer object instance. +This parameter can also get this object through the pipeline or you can set this +parameter to a computer object instance. ```yaml Type: ADComputer @@ -365,9 +390,10 @@ Accept wildcard characters: False ### -LDAPFilter Specifies an LDAP query string that is used to filter Active Directory objects. -You can use this parameter to run your existing LDAP queries. -The _Filter_ parameter syntax supports the same functionality as the LDAP syntax. -For more information, see the _Filter_ parameter description or type `Get-Help` [about_ActiveDirectory_Filter](/previous-versions/windows/server/hh531527(v=ws.10)). +You can use this parameter to run your existing LDAP queries. The _Filter_ +parameter syntax supports the same functionality as the LDAP syntax. For more +information, see the _Filter_ parameter description or type `Get-Help` +[about_ActiveDirectory_Filter](/previous-versions/windows/server/hh531527(v=ws.10)). ```yaml Type: String @@ -387,22 +413,33 @@ Specifies the distinguished name of an Active Directory partition. The distinguished name must be one of the naming contexts on the current directory server. The cmdlet searches this partition to find the object defined by the _Identity_ parameter. -In many cases, a default value is used for the _Partition_ parameter if no value is specified. -The rules for determining the default value are given below. -Note that rules listed first are evaluated first and once a default value can be determined, no further rules are evaluated. - -In Active Directory Domain Services environments, a default value for _Partition_ is set in the following cases: - -- If the _Identity_ parameter is set to a distinguished name, the default value of _Partition_ is automatically generated from this distinguished name. -- If running cmdlets from an Active Directory provider drive, the default value of _Partition_ is automatically generated from the current path in the drive. -- If none of the previous cases apply, the default value of _Partition_ is set to the default partition or naming context of the target domain. - -In Active Directory Lightweight Directory Services (AD LDS) environments, a default value for _Partition_ is set in the following cases: - -- If the _Identity_ parameter is set to a distinguished name, the default value of _Partition_ is automatically generated from this distinguished name. -- If running cmdlets from an Active Directory provider drive, the default value of _Partition_ is automatically generated from the current path in the drive. -- If the target AD LDS instance has a default naming context, the default value of _Partition_ is set to the default naming context. -To specify a default naming context for an AD LDS environment, set the **msDS-defaultNamingContext** property of the Active Directory directory service agent (DSA) object (**nTDSDSA**) for the AD LDS instance. +In many cases, a default value is used for the _Partition_ parameter if no value +is specified. The rules for determining the default value are given below. Note +that rules listed first are evaluated first and once a default value can be +determined, no further rules are evaluated. + +In Active Directory Domain Services environments, a default value for +_Partition_ is set in the following cases: + +- If the _Identity_ parameter is set to a distinguished name, the default value + of _Partition_ is automatically generated from this distinguished name. +- If running cmdlets from an Active Directory provider drive, the default value + of _Partition_ is automatically generated from the current path in the drive. +- If none of the previous cases apply, the default value of _Partition_ is set + to the default partition or naming context of the target domain. + +In Active Directory Lightweight Directory Services (AD LDS) environments, a +default value for _Partition_ is set in the following cases: + +- If the _Identity_ parameter is set to a distinguished name, the default value + of _Partition_ is automatically generated from this distinguished name. +- If running cmdlets from an Active Directory provider drive, the default value + of _Partition_ is automatically generated from the current path in the drive. +- If the target AD LDS instance has a default naming context, the default value + of _Partition_ is set to the default naming context. To specify a default + naming context for an AD LDS environment, set the + **msDS-defaultNamingContext** property of the Active Directory directory + service agent (DSA) object (**nTDSDSA**) for the AD LDS instance. - If none of the previous cases apply, the _Partition_ parameter will not take any default value. ```yaml @@ -425,10 +462,13 @@ Use this parameter to retrieve properties that are not included in the default s Specify properties for this parameter as a comma-separated list of names. To display all of the attributes that are set on the object, specify * (asterisk). -To specify an individual extended property, use the name of the property. -For properties that are not default or extended properties, you must specify the LDAP display name of the attribute. +To specify an individual extended property, use the name of the property. For +properties that are not default or extended properties, you must specify the +LDAP display name of the attribute. -To retrieve properties and display them for an object, you can use the Get-* cmdlet associated with the object and pass the output to the **Get-Member** cmdlet. +To retrieve properties and display them for an object, you can use the Get-* +cmdlet associated with the object and pass the output to the **Get-Member** +cmdlet. ```yaml Type: String[] @@ -444,7 +484,8 @@ Accept wildcard characters: False ### -ResultPageSize -Specifies the number of objects to include in one page for an Active Directory Domain Services query. +Specifies the number of objects to include in one page for an Active Directory +Domain Services query. The default is 256 objects per page. @@ -484,15 +525,25 @@ Accept wildcard characters: False Specifies an Active Directory path to search under. -When you run a cmdlet from an Active Directory provider drive, the default value of this parameter is the current path of the drive. +When you run a cmdlet from an Active Directory provider drive, the default value +of this parameter is the current path of the drive. -When you run a cmdlet outside of an Active Directory provider drive against an Active Directory Domain Services target, the default value of this parameter is the default naming context of the target domain. +When you run a cmdlet outside of an Active Directory provider drive against an +Active Directory Domain Services target, the default value of this parameter is +the default naming context of the target domain. -When you run a cmdlet outside of an Active Directory provider drive against an AD LDS target, the default value is the default naming context of the target AD LDS instance if one has been specified by setting the **msDS-defaultNamingContext** property of the Active Directory directory service agent object (**nTDSDSA**) for the AD LDS instance. -If no default naming context has been specified for the target AD LDS instance, then this parameter has no default value. +When you run a cmdlet outside of an Active Directory provider drive against an +AD LDS target, the default value is the default naming context of the target AD +LDS instance if one has been specified by setting the +**msDS-defaultNamingContext** property of the Active Directory directory service +agent object (**nTDSDSA**) for the AD LDS instance. If no default naming context +has been specified for the target AD LDS instance, then this parameter has no +default value. -When the value of the _SearchBase_ parameter is set to an empty string and you are connected to a global catalog port, all partitions are searched. -If the value of the _SearchBase_ parameter is set to an empty string and you are not connected to a global catalog port, an error is thrown. +When the value of the _SearchBase_ parameter is set to an empty string and you +are connected to a global catalog port, all partitions are searched. If the +value of the _SearchBase_ parameter is set to an empty string and you are not +connected to a global catalog port, an error is thrown. ```yaml Type: String @@ -534,8 +585,11 @@ Accept wildcard characters: False ### -Server -Specifies the Active Directory Domain Services instance to connect to, by providing one of the following values for a corresponding domain name or directory server. -The service may be any of the following: Active Directory Lightweight Domain Services, Active Directory Domain Services or Active Directory snapshot instance. +Specifies the Active Directory Domain Services instance to connect to, by +providing one of the following values for a corresponding domain name or +directory server. The service may be any of the following: Active Directory +Lightweight Domain Services, Active Directory Domain Services or Active +Directory snapshot instance. Specify the Active Directory Domain Services instance in one of the following ways: @@ -550,10 +604,12 @@ Directory server values: - NetBIOS name - Fully qualified directory server name and port -The default value for this parameter is determined by one of the following methods in the order that they are listed: +The default value for this parameter is determined by one of the following +methods in the order that they are listed: - By using the _Server_ value from objects passed through the pipeline -- By using the server information associated with the Active Directory Domain Services Windows PowerShell provider drive, when the cmdlet runs in that drive +- By using the server information associated with the Active Directory Domain + Services Windows PowerShell provider drive, when the cmdlet runs in that drive - By using the domain of the computer running Windows PowerShell ```yaml @@ -570,7 +626,11 @@ Accept wildcard characters: False ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, +-ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, +-OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. +For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -588,7 +648,8 @@ This Get-ADComputer cmdlet returns a default set of **ADComputer** property valu To retrieve additional **ADComputer** properties, use the _Properties_ parameter of this cmdlet. To view the properties for an **ADComputer** object, see the following examples. -To run these examples, replace \ with a computer identifier such as the SAM account name of your local computer. +To run these examples, replace \ with a computer identifier such as +the SAM account name of your local computer. To get a list of the default set of properties of an ADComputer object, use the following command: @@ -600,7 +661,9 @@ To get a list of all the properties of an ADComputer object, use the following c ## NOTES -- This cmdlet does not work with AD LDS with its default schema. By default AD LDS schema does not have a computer class, but if the schema is extended to include it, this cmdlet will work with LDS. +- This cmdlet does not work with AD LDS with its default schema. By default AD + LDS schema does not have a computer class, but if the schema is extended to + include it, this cmdlet will work with LDS. ## RELATED LINKS From 45dbfe3d852f281cf39a0fd0a9011892070d36c5 Mon Sep 17 00:00:00 2001 From: Anthony Howell Date: Thu, 27 Apr 2023 15:22:10 -0700 Subject: [PATCH 461/965] splats --- .../winserver2022-ps/activedirectory/New-ADUser.md | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/activedirectory/New-ADUser.md b/docset/winserver2022-ps/activedirectory/New-ADUser.md index ecf73e6331..056f044860 100644 --- a/docset/winserver2022-ps/activedirectory/New-ADUser.md +++ b/docset/winserver2022-ps/activedirectory/New-ADUser.md @@ -79,7 +79,11 @@ through the pipeline to the `New-ADUser` cmdlet to create the user objects. ### Example 1: Create a user with an imported certificate ```powershell -New-ADUser -Name "ChewDavid" -Certificate (New-Object System.Security.Cryptography.X509Certificates.X509Certificate -ArgumentList "Export.cer") +$splat = @{ + Name = 'ChewDavid' + Certificate = (New-Object System.Security.Cryptography.X509Certificates.X509Certificate -ArgumentList "Export.cer") +} +New-ADUser @splat ``` This command creates a user named ChewDavid with a certificate imported from the file Export.cer. @@ -104,7 +108,12 @@ This command creates an **inetOrgPerson**-class user named ChewDavid on an AD LD ### Example 4: Create a user and set password ```powershell -New-ADUser -Name "ChewDavid" -AccountPassword (Read-Host -AsSecureString "AccountPassword") -Enabled $true +$splat = @{ + Name = "ChewDavid" + AccountPassword = (Read-Host -AsSecureString "AccountPassword") + Enabled = $true +} +New-ADUser @splat ``` This command creates a new user named ChewDavid and sets the account password. From b0ed61ed717ed08bb257b06437e143b8fa8792f3 Mon Sep 17 00:00:00 2001 From: Matthew Dowst <7384306+mdowst@users.noreply.github.com> Date: Thu, 27 Apr 2023 15:24:25 -0700 Subject: [PATCH 462/965] Update docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md Co-authored-by: Mikey Lombardi (He/Him) --- docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md b/docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md index 7d5c54362c..457407902f 100644 --- a/docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md +++ b/docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md @@ -23,7 +23,7 @@ Get-WindowsUpdateLog [[-ETLPath] ] [[-LogPath] ] ## DESCRIPTION -The **Get-WindowsUpdateLog** cmdlet merges and converts Windows Update .etl files into a single +The `Get-WindowsUpdateLog` cmdlet merges and converts Windows Update .etl files into a single readable WindowsUpdate.log file. Windows Update Agent uses Event Tracing for Windows (ETW) to generate diagnostic logs. Windows Update no longer directly produces a WindowsUpdate.log file. Instead, it produces .etl files that are not immediately readable as written. From c53ff60af4024ba31a7922f99e9ec4e4ad075a19 Mon Sep 17 00:00:00 2001 From: Joe Gast Date: Thu, 27 Apr 2023 15:24:26 -0700 Subject: [PATCH 463/965] ConvertTo-HGSKeyProtector.md - documentation formatting --- .../hgsclient/ConvertTo-HgsKeyProtector.md | 89 +++++++++++-------- 1 file changed, 53 insertions(+), 36 deletions(-) diff --git a/docset/winserver2022-ps/hgsclient/ConvertTo-HgsKeyProtector.md b/docset/winserver2022-ps/hgsclient/ConvertTo-HgsKeyProtector.md index 3bdff425d8..427ca8e4cb 100644 --- a/docset/winserver2022-ps/hgsclient/ConvertTo-HgsKeyProtector.md +++ b/docset/winserver2022-ps/hgsclient/ConvertTo-HgsKeyProtector.md @@ -16,49 +16,55 @@ Converts a key protector into a Host Guardian Service key protector. ## SYNTAX ``` -ConvertTo-HgsKeyProtector [-Bytes] [-CimSession ] [-ThrottleLimit ] [-AsJob] - [] +ConvertTo-HgsKeyProtector [-Bytes] [-CimSession ] [-ThrottleLimit ] +[-AsJob] [] ``` ## DESCRIPTION -The **ConvertTo-HgsKeyProtector** cmdlet converts an existing key protector into a Host Guardian Service key protector object. -Specify the existing key protector as a byte array. -You might use this cmdlet to import a key protector from a virtual machine configuration file. + +The **ConvertTo-HgsKeyProtector** cmdlet converts an existing key protector into a Host Guardian +Service key protector object. Specify the existing key protector as a byte array. You might use this +cmdlet to import a key protector from a virtual machine configuration file. ## EXAMPLES ### Example 1: Convert a key protector -``` -PS C:\> $VirtualTPM = Get-VMTPM -Name "Shielded Virtual Machine 17" -PS C:\> $VirtualMachineKeyProtector = $VirtualTPM.KeyProtector -PS C:\> $KeyProtector = ConvertTo-HgsKeyProtector -Bytes $VirtualMachineKeyProtector + +```powershell +$VirtualTPM = Get-VMTPM -Name "Shielded Virtual Machine 17" +$VirtualMachineKeyProtector = $VirtualTPM.KeyProtector +$KeyProtector = ConvertTo-HgsKeyProtector -Bytes $VirtualMachineKeyProtector ``` -The first command gets the Trusted Platform Module (TPM) object for the virtual machine named Shielded Virtual Machine 17. -The command stores the object in the **$VirtualTPM** variable. +The first command gets the Trusted Platform Module (TPM) object for the virtual machine named +Shielded Virtual Machine 17. The command stores the object in the **$VirtualTPM** variable. -The second command stores the **KeyProtector** property of the object stored in **$VirtualTPM** in the **$VirtualMachineKeyProtector** variable. +The second command stores the **KeyProtector** property of the object stored in **$VirtualTPM** in +the **$VirtualMachineKeyProtector** variable. -The final command creates a Host Guardian Service key protector object from the byte array representation stored in **$VirtualMachineKeyProtector**. -The command stores the new key protector in the **$KeyProtector** variable. +The final command creates a Host Guardian Service key protector object from the byte array +representation stored in **$VirtualMachineKeyProtector**. The command stores the new key protector +in the **$KeyProtector** variable. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -68,13 +74,14 @@ Accept wildcard characters: False ``` ### -Bytes -Specifies the existing key protector as a byte array. -This cmdlet generates a key protector object from the existing key protector that this parameter specifies. + +Specifies the existing key protector as a byte array. This cmdlet generates a key protector object +from the existing key protector that this parameter specifies. ```yaml Type: Byte[] Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: 1 @@ -84,9 +91,11 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml Type: CimSession[] @@ -101,14 +110,17 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -118,21 +130,26 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ## OUTPUTS ### Microsoft.Management.Infrastructure.CimInstance#MSFT_HgsKeyProtector + This cmdlet returns a key protector. -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. -The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. +The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the +namespace and class name for the underlying WMI object. ## NOTES ## RELATED LINKS -[New-HgsKeyProtector](./New-HgsKeyProtector.md) - +[New-HgsKeyProtector](./New-HgsKeyProtector.md) \ No newline at end of file From 7bf41f3e942e9a2ea2903204b5638c9599f10b4a Mon Sep 17 00:00:00 2001 From: Matthew Dowst <7384306+mdowst@users.noreply.github.com> Date: Thu, 27 Apr 2023 15:24:35 -0700 Subject: [PATCH 464/965] Update docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md Co-authored-by: Mikey Lombardi (He/Him) --- docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md b/docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md index 457407902f..f0ec8ebb12 100644 --- a/docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md +++ b/docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md @@ -24,7 +24,7 @@ Get-WindowsUpdateLog [[-ETLPath] ] [[-LogPath] ] ## DESCRIPTION The `Get-WindowsUpdateLog` cmdlet merges and converts Windows Update .etl files into a single -readable WindowsUpdate.log file. Windows Update Agent uses Event Tracing for Windows (ETW) to +readable `WindowsUpdate.log` file. Windows Update Agent uses Event Tracing for Windows (ETW) to generate diagnostic logs. Windows Update no longer directly produces a WindowsUpdate.log file. Instead, it produces .etl files that are not immediately readable as written. From 37628e4f8ce5867786e6ebe5ddc26352b8cd8348 Mon Sep 17 00:00:00 2001 From: Matthew Dowst <7384306+mdowst@users.noreply.github.com> Date: Thu, 27 Apr 2023 15:24:43 -0700 Subject: [PATCH 465/965] Update docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md Co-authored-by: Mikey Lombardi (He/Him) --- docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md b/docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md index f0ec8ebb12..6e27328531 100644 --- a/docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md +++ b/docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md @@ -25,7 +25,7 @@ Get-WindowsUpdateLog [[-ETLPath] ] [[-LogPath] ] The `Get-WindowsUpdateLog` cmdlet merges and converts Windows Update .etl files into a single readable `WindowsUpdate.log` file. Windows Update Agent uses Event Tracing for Windows (ETW) to -generate diagnostic logs. Windows Update no longer directly produces a WindowsUpdate.log file. +generate diagnostic logs. Windows Update no longer directly produces a `WindowsUpdate.log` file. Instead, it produces .etl files that are not immediately readable as written. For Windows 10 versions prior to 1709 (OS Build 16299), this cmdlet requires access to a Microsoft From 608c7350b90f17eff4a5e470f5d740af22835dd8 Mon Sep 17 00:00:00 2001 From: Matthew Dowst <7384306+mdowst@users.noreply.github.com> Date: Thu, 27 Apr 2023 15:24:55 -0700 Subject: [PATCH 466/965] Update docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md Co-authored-by: Mikey Lombardi (He/Him) --- docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md b/docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md index 6e27328531..68d8207751 100644 --- a/docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md +++ b/docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md @@ -79,8 +79,8 @@ The command completed successfully. WindowsUpdate.log written to C:\Users\admin\Desktop\WindowsUpdate.log ``` -This command merges and converts Windows Update trace files (.etl files) into a single readable -WindowsUpdate.log file. +This command merges and converts Windows Update trace files (`.etl` files) into a single readable +`WindowsUpdate.log` file. ## PARAMETERS From b7d27421eb29283718aee37a9e1381db8eb576fe Mon Sep 17 00:00:00 2001 From: Matthew Dowst <7384306+mdowst@users.noreply.github.com> Date: Thu, 27 Apr 2023 15:25:07 -0700 Subject: [PATCH 467/965] Update docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md Co-authored-by: Mikey Lombardi (He/Him) --- docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md b/docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md index 68d8207751..a42604ce19 100644 --- a/docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md +++ b/docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md @@ -102,7 +102,7 @@ Accept wildcard characters: False ### -ETLPath -Specifies an array of paths of Windows Update .etl files to convert into WindowsUpdate.log. The +Specifies an array of paths of Windows Update `.etl` files to convert into `WindowsUpdate.log`. The default value for this parameter is the Windows Update trace file directory for the current device. The acceptable values for this parameter are: From 27132656ec1cc02f1159a19f281da55d7530bae0 Mon Sep 17 00:00:00 2001 From: Matthew Dowst <7384306+mdowst@users.noreply.github.com> Date: Thu, 27 Apr 2023 15:25:21 -0700 Subject: [PATCH 468/965] Update docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md Co-authored-by: Mikey Lombardi (He/Him) --- docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md b/docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md index a42604ce19..a3339d5001 100644 --- a/docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md +++ b/docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md @@ -160,7 +160,7 @@ Accept wildcard characters: False ### -ProcessingType -Specifies the file type that **Get-WindowsUpdateLog** uses for temporary files that are created +Specifies the file type that `Get-WindowsUpdateLog` uses for temporary files that are created during intermediate processing. The acceptable values for this parameter are: - CSV (comma-separated values) From 58c6bc844bcfdee0fb1df28b4e9baab5d79d083c Mon Sep 17 00:00:00 2001 From: Matthew Dowst <7384306+mdowst@users.noreply.github.com> Date: Thu, 27 Apr 2023 15:25:29 -0700 Subject: [PATCH 469/965] Update docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md Co-authored-by: Mikey Lombardi (He/Him) --- docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md b/docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md index a3339d5001..5eadba6ccf 100644 --- a/docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md +++ b/docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md @@ -125,7 +125,7 @@ Accept wildcard characters: False ### -ForceFlush Indicates that this cmdlet forces the Windows Update Agent on the current device to flush all of its -traces to .etl files. This process stops the Update Orchestrator and Windows Update services. +traces to `.etl` files. This process stops the Update Orchestrator and Windows Update services. Running this cmdlet with this parameter requires administrative credentials. You can start Windows PowerShell with administrative credentials by using the Run as administrator command. From d5cbe2c1961cb8897314262b6f793a095ab1744d Mon Sep 17 00:00:00 2001 From: Joe Gast Date: Thu, 27 Apr 2023 15:30:41 -0700 Subject: [PATCH 470/965] Export-HgsGuardian.md - documentation formatting --- .../hgsclient/Export-HgsGuardian.md | 21 ++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/docset/winserver2022-ps/hgsclient/Export-HgsGuardian.md b/docset/winserver2022-ps/hgsclient/Export-HgsGuardian.md index 0da9f3fd5f..a99e1ddbec 100644 --- a/docset/winserver2022-ps/hgsclient/Export-HgsGuardian.md +++ b/docset/winserver2022-ps/hgsclient/Export-HgsGuardian.md @@ -20,22 +20,26 @@ Export-HgsGuardian [-InputObject] [-Path] [ Get-HgsGuardian -Name "Guardian11" | Export-HGsGuardian -Path "C:\LocalHGSFiles\Guardian11.xml" + +```powershell +Get-HgsGuardian -Name "Guardian11" | Export-HGsGuardian -Path "C:\LocalHGSFiles\Guardian11.xml" ``` -This command uses the **Get-HgsGuardian** cmdlet to get the guardian named Guardian11, and then passes the object to the current cmdlet by using the pipeline operator. -That cmdlet exports the guardian to the specified file. +This command uses the **Get-HgsGuardian** cmdlet to get the guardian named `Guardian11`, and then +passes the object to the current cmdlet by using the pipeline operator. That cmdlet exports the +guardian to the specified file. ## PARAMETERS ### -InputObject -Specifies the input to this cmdlet. + +Specifies the input to this cmdlet. You can use this parameter, or you can pipe the input to this cmdlet. ```yaml @@ -51,6 +55,7 @@ Accept wildcard characters: False ``` ### -Path + Specifies the path to the file to write an XML representation of the guardian. ```yaml @@ -66,7 +71,10 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -83,4 +91,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [New-HgsGuardian](./New-HgsGuardian.md) [Remove-HgsGuardian](./Remove-HgsGuardian.md) - From 556ce69d47ecd25c19c581d1e6d2b51c909d2fd3 Mon Sep 17 00:00:00 2001 From: Joe Gast Date: Thu, 27 Apr 2023 15:35:39 -0700 Subject: [PATCH 471/965] Get-HgsAttestationBaselinePolicy.md - documentation formatting --- .../Get-HgsAttestationBaselinePolicy.md | 30 ++++++++++++------- 1 file changed, 20 insertions(+), 10 deletions(-) diff --git a/docset/winserver2022-ps/hgsclient/Get-HgsAttestationBaselinePolicy.md b/docset/winserver2022-ps/hgsclient/Get-HgsAttestationBaselinePolicy.md index fa8b295e29..657264cbf5 100644 --- a/docset/winserver2022-ps/hgsclient/Get-HgsAttestationBaselinePolicy.md +++ b/docset/winserver2022-ps/hgsclient/Get-HgsAttestationBaselinePolicy.md @@ -26,31 +26,35 @@ Get-HgsAttestationBaselinePolicy [-Console] [-SkipValidation] [ Get-HgsAttestationBaselinePolicy -Path "C:\Logs\AttestationBaselinePolicy001" -Force ``` -This command generates a byte array that represents the baseline policy in the file C:\Logs\AttestationBaselinePolicy001. +This command generates a byte array that represents the baseline policy in the file `C:\Logs\AttestationBaselinePolicy001`. ## PARAMETERS ### -Console + Indicates that this cmdlet operates in console mode. ```yaml Type: SwitchParameter Parameter Sets: Console -Aliases: +Aliases: Required: True Position: Named @@ -60,12 +64,13 @@ Accept wildcard characters: False ``` ### -Force + Indicates that this cmdlet overwrites an existing file that the **Output** object specifies. ```yaml Type: SwitchParameter Parameter Sets: File -Aliases: +Aliases: Required: False Position: Named @@ -75,6 +80,7 @@ Accept wildcard characters: False ``` ### -Path + Specifies a file path. This cmdlet writes the policy to the file that this parameter specifies. @@ -91,12 +97,13 @@ Accept wildcard characters: False ``` ### -SkipValidation + Indicates that this cmdlet skips validation. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -106,7 +113,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -117,4 +128,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS - From dce9d8ff78b3f1b424c0189c733d19d551ab5a39 Mon Sep 17 00:00:00 2001 From: Matthew Dowst <7384306+mdowst@users.noreply.github.com> Date: Thu, 27 Apr 2023 15:37:09 -0700 Subject: [PATCH 472/965] added backticks to file names and extensions --- .../windowsupdate/Get-WindowsUpdateLog.md | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md b/docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md index 5eadba6ccf..8f9e914656 100644 --- a/docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md +++ b/docset/winserver2022-ps/windowsupdate/Get-WindowsUpdateLog.md @@ -12,7 +12,7 @@ title: Get-WindowsUpdateLog ## SYNOPSIS -Merges Windows Update .etl files into a single log file. +Merges Windows Update `.etl` files into a single log file. ## SYNTAX @@ -23,10 +23,10 @@ Get-WindowsUpdateLog [[-ETLPath] ] [[-LogPath] ] ## DESCRIPTION -The `Get-WindowsUpdateLog` cmdlet merges and converts Windows Update .etl files into a single +The `Get-WindowsUpdateLog` cmdlet merges and converts Windows Update `.etl` files into a single readable `WindowsUpdate.log` file. Windows Update Agent uses Event Tracing for Windows (ETW) to generate diagnostic logs. Windows Update no longer directly produces a `WindowsUpdate.log` file. -Instead, it produces .etl files that are not immediately readable as written. +Instead, it produces `.etl` files that are not immediately readable as written. For Windows 10 versions prior to 1709 (OS Build 16299), this cmdlet requires access to a Microsoft symbol server, and log decoding must be run from a Windows 10 version earlier than 1709. Logs from @@ -106,9 +106,9 @@ Specifies an array of paths of Windows Update `.etl` files to convert into `Wind default value for this parameter is the Windows Update trace file directory for the current device. The acceptable values for this parameter are: -- The full path of a directory that contains one or more .etl files. -- The full path of a single .etl file. -- A comma-separated list of full paths of .etl files. +- The full path of a directory that contains one or more `.etl` files. +- The full path of a single `.etl` file. +- A comma-separated list of full paths of `.etl` files. ```yaml Type: String[] @@ -143,8 +143,8 @@ Accept wildcard characters: False ### -LogPath -Specifies the full path to which **Get-WindowsUpdateLog** writes WindowsUpdate.log. -The default value is WindowsUpdate.log in the Desktop folder of the current user. +Specifies the full path to which `Get-WindowsUpdateLog` writes `WindowsUpdate.log`. +The default value is `WindowsUpdate.log` in the Desktop folder of the current user. ```yaml Type: String @@ -163,11 +163,11 @@ Accept wildcard characters: False Specifies the file type that `Get-WindowsUpdateLog` uses for temporary files that are created during intermediate processing. The acceptable values for this parameter are: -- CSV (comma-separated values) -- XML +- `CSV` (comma-separated values) +- `XML` -By default, the value is XML. -The temporary files are in $env:TEMP\WindowsUpdateLog. +By default, the value is `XML`. +The temporary files are in `$env:TEMP\WindowsUpdateLog`. ```yaml Type: String From 814df203d7faddfd320bac2c0d592a920638b57d Mon Sep 17 00:00:00 2001 From: Missy Januszko Date: Thu, 27 Apr 2023 18:37:33 -0400 Subject: [PATCH 473/965] clean up line length, CR/LF, trailing spaces --- .../defender/Add-MpPreference.md | 127 +++++++++++------- 1 file changed, 80 insertions(+), 47 deletions(-) diff --git a/docset/winserver2022-ps/defender/Add-MpPreference.md b/docset/winserver2022-ps/defender/Add-MpPreference.md index 993db0e5ed..7bcdb31a2d 100644 --- a/docset/winserver2022-ps/defender/Add-MpPreference.md +++ b/docset/winserver2022-ps/defender/Add-MpPreference.md @@ -16,31 +16,37 @@ Modifies settings for Windows Defender. ## SYNTAX ``` -Add-MpPreference [-ExclusionPath ] [-ExclusionExtension ] [-ExclusionProcess ] - [-ExclusionIpAddress ] [-ThreatIDDefaultAction_Ids ] - [-ThreatIDDefaultAction_Actions ] [-AttackSurfaceReductionOnlyExclusions ] - [-ControlledFolderAccessAllowedApplications ] [-ControlledFolderAccessProtectedFolders ] - [-AttackSurfaceReductionRules_Ids ] [-AttackSurfaceReductionRules_Actions ] - [-Force] [-CimSession ] [-ThrottleLimit ] [-AsJob] [] +Add-MpPreference [-ExclusionPath ] [-ExclusionExtension ] +[-ExclusionProcess ] [-ExclusionIpAddress ] +[-ThreatIDDefaultAction_Ids ] [-ThreatIDDefaultAction_Actions ] +[-AttackSurfaceReductionOnlyExclusions ] +[-ControlledFolderAccessAllowedApplications ] +[-ControlledFolderAccessProtectedFolders ] [-AttackSurfaceReductionRules_Ids ] +[-AttackSurfaceReductionRules_Actions ] [-Force] [-CimSession ] +[-ThrottleLimit ] [-AsJob] [] ``` ## DESCRIPTION -The **Add-MpPreference** cmdlet modifies settings for Windows Defender. -Use this cmdlet to add exclusions for file name extensions, paths, and processes, and to add default actions for high, moderate, and low threats. + +The `Add-MpPreference` cmdlet modifies settings for Windows Defender. Use this cmdlet to add +exclusions for file name extensions, paths, and processes, and to add default actions for high, +moderate, and low threats. ## EXAMPLES ### Example 1: Add a folder to the exclusion list + ```powershell -Add-MpPreference -ExclusionPath "C:\Temp" +Add-MpPreference -ExclusionPath 'C:\Temp' ``` This command adds the folder C:\Temp to the exclusion list. The command disables Windows Defender scheduled and real-time scanning for files in this folder. ### Example 2: Allow an application to access folders + ```powershell -Add-MpPreference -ControlledFolderAccessAllowedApplications "c:\apps\test.exe" +Add-MpPreference -ControlledFolderAccessAllowedApplications 'c:\apps\test.exe' ``` This command allows the specified application to make changes in controlled folders. @@ -48,14 +54,17 @@ This command allows the specified application to make changes in controlled fold ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. + +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml Type: SwitchParameter @@ -70,9 +79,15 @@ Accept wildcard characters: False ``` ### -AttackSurfaceReductionOnlyExclusions -Specifies the files and paths to exclude from attack surface reduction (ASR) rules. Specifies the folders or files and resources that should be excluded from ASR rules. Enter a folder path or a fully qualified resource name. For example, `C:\Windows` excludes all files in that directory. `C:\Windows\App.exe` excludes only that specific file in that specific folder. -See the [ASR rules](/windows/security/threat-protection/microsoft-defender-atp/enable-attack-surface-reduction#exclude-files-and-folders-from-asr-rules) topic for more information about excluding files and folders from ASR rules. +Specifies the files and paths to exclude from attack surface reduction (ASR) rules. Specifies the +folders or files and resources that should be excluded from ASR rules. Enter a folder path or a +fully qualified resource name. For example, `C:\Windows` excludes all files in that directory. +`C:\Windows\App.exe` excludes only that specific file in that specific folder. + +See the +[ASR rules](/windows/security/threat-protection/microsoft-defender-atp/enable-attack-surface-reduction#exclude-files-and-folders-from-asr-rules) +topic for more information about excluding files and folders from ASR rules. ```yaml Type: String[] @@ -87,8 +102,10 @@ Accept wildcard characters: False ``` ### -AttackSurfaceReductionRules_Actions -Specifies the states of attack surface reduction rules specified by using the **AttackSurfaceReductionRules_Ids** parameter. -If you add multiple rules as a comma-separated list, specify their states separately as a comma-separated list. + +Specifies the states of attack surface reduction rules specified by using the +**AttackSurfaceReductionRules_Ids** parameter. If you add multiple rules as a comma-separated list, +specify their states separately as a comma-separated list. ```yaml Type: ASRRuleActionType[] @@ -103,10 +120,10 @@ Accept wildcard characters: False ``` ### -AttackSurfaceReductionRules_Ids -Specifies the IDs of attack surface reduction rules. -Use the **AttackSurfaceReductionRules_Actions** parameter to specify the state for each rule. -If you add multiple rules as a comma-separated list, specify their states separately as a comma-separated list. +Specifies the IDs of attack surface reduction rules. Use the **AttackSurfaceReductionRules_Actions** +parameter to specify the state for each rule. If you add multiple rules as a comma-separated list, +specify their states separately as a comma-separated list. ```yaml Type: String[] @@ -121,9 +138,11 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml Type: CimSession[] @@ -138,6 +157,7 @@ Accept wildcard characters: False ``` ### -ControlledFolderAccessAllowedApplications + Specifies applications that can make changes in controlled folders. ```yaml @@ -153,6 +173,7 @@ Accept wildcard characters: False ``` ### -ControlledFolderAccessProtectedFolders + Specifies more folders to protect. ```yaml @@ -168,8 +189,9 @@ Accept wildcard characters: False ``` ### -ExclusionExtension -Specifies an array of file name extensions, such as obj or lib, to exclude from scheduled, custom, and real-time scanning. -This cmdlet adds these file name extensions to the exclusions. + +Specifies an array of file name extensions, such as obj or lib, to exclude from scheduled, custom, +and real-time scanning. This cmdlet adds these file name extensions to the exclusions. ```yaml Type: String[] @@ -184,6 +206,7 @@ Accept wildcard characters: False ``` ### -ExclusionIpAddress + Specifies an array of IP addresses to exclude from scheduled and real-time scanning. ```yaml @@ -199,6 +222,7 @@ Accept wildcard characters: False ``` ### -ExclusionPath + Specifies an array of file paths to exclude from scheduled and real-time scanning. You can specify a folder to exclude all the files under the folder. @@ -215,11 +239,11 @@ Accept wildcard characters: False ``` ### -ExclusionProcess -Specifies an array of processes, as paths to process images. -This cmdlet excludes any files opened by the processes that you specify from scheduled and real-time scanning. -Specifying this parameter excludes files opened by executable programs only. -The cmdlet does not exclude the processes themselves. -To exclude a process, specify it by using the **ExclusionPath** parameter. + +Specifies an array of processes, as paths to process images. This cmdlet excludes any files opened +by the processes that you specify from scheduled and real-time scanning. Specifying this parameter +excludes files opened by executable programs only. The cmdlet does not exclude the processes +themselves. To exclude a process, specify it by using the **ExclusionPath** parameter. ```yaml Type: String[] @@ -234,6 +258,7 @@ Accept wildcard characters: False ``` ### -Force + Forces the command to run without asking for user confirmation. ```yaml @@ -249,15 +274,16 @@ Accept wildcard characters: False ``` ### -ThreatIDDefaultAction_Actions -Specifies an array of the actions to take for the IDs specified by using the **ThreatIDDefaultAction_Ids** parameter. -The acceptable values for this parameter are: - -- 1: Clean -- 2: Quarantine -- 3: Remove -- 6: Allow -- 8: UserDefined -- 9: NoAction + +Specifies an array of the actions to take for the IDs specified by using the +**ThreatIDDefaultAction_Ids** parameter. The acceptable values for this parameter are: + +- 1: Clean +- 2: Quarantine +- 3: Remove +- 6: Allow +- 8: UserDefined +- 9: NoAction - 10: Block ```yaml @@ -274,6 +300,7 @@ Accept wildcard characters: False ``` ### -ThreatIDDefaultAction_Ids + Specifies an array of threat IDs. This cmdlet adds the default action for the threat IDs that you specify. @@ -290,9 +317,12 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml Type: Int32 @@ -307,7 +337,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -322,4 +356,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Remove-MpPreference](./Remove-MpPreference.md) [Set-MpPreference](./Set-MpPreference.md) - From 94a2007685285666d0e2b1b75d4bc3332a91ada8 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Thu, 27 Apr 2023 18:37:55 -0400 Subject: [PATCH 474/965] Style fixes --- .../addsdeployment/Install-ADDSDomain.md | 226 ++++++++++++------ 1 file changed, 149 insertions(+), 77 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md index 0f1e46292d..e3552bfc8a 100644 --- a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md +++ b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md @@ -11,39 +11,56 @@ title: Install-ADDSDomain # Install-ADDSDomain ## SYNOPSIS + Creates a new domain in an existing Active Directory forest. ## SYNTAX ``` Install-ADDSDomain [-SkipPreChecks] -NewDomainName -ParentDomainName - [-SafeModeAdministratorPassword ] [-ADPrepCredential ] [-AllowDomainReinstall] - [-CreateDnsDelegation] [-Credential ] [-DatabasePath ] - [-DnsDelegationCredential ] [-NoDnsOnNetwork] [-DomainMode ] - [-DomainType ] [-NoGlobalCatalog] [-InstallDns] [-LogPath ] - [-NewDomainNetbiosName ] [-NoRebootOnCompletion] [-ReplicationSourceDC ] [-SiteName ] - [-SkipAutoConfigureDns] [-SysvolPath ] [-Force] [-WhatIf] [-Confirm] [] +[-SafeModeAdministratorPassword ] [-ADPrepCredential ] +[-AllowDomainReinstall] [-CreateDnsDelegation] [-Credential ] +[-DatabasePath ] [-DnsDelegationCredential ] [-NoDnsOnNetwork] +[-DomainMode ] [-DomainType ] [-NoGlobalCatalog] [-InstallDns] +[-LogPath ] [-NewDomainNetbiosName ] [-NoRebootOnCompletion] +[-ReplicationSourceDC ] [-SiteName ] [-SkipAutoConfigureDns] +[-SysvolPath ] [-Force] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Install-ADDSDomain** cmdlet installs an Active Directory domain configuration. + +The `Install-ADDSDomain` cmdlet installs an Active Directory domain configuration. ## EXAMPLES ### Example 1: Install a new child domain + ``` -PS C:\> Install-ADDSDomain -Credential (Get-Credential CORP\EnterpriseAdmin1) -NewDomainName child -ParentDomainName "corp.contoso.com" -InstallDNS -CreateDNSDelegation -DomainMode Win2003 -ReplicationSourceDC "DC1.corp.contoso.com" -SiteName "Houston" -DatabasePath "D:\NTDS" -SYSVOLPath "D:\SYSVOL" -LogPath "E:\Logs" -NoRebootOnCompletion +Install-ADDSDomain -Credential (Get-Credential CORP\EnterpriseAdmin1) ` +-NewDomainName child -ParentDomainName "corp.contoso.com" -InstallDNS ` +-CreateDNSDelegation -DomainMode Win2003 ` +-ReplicationSourceDC "DC1.corp.contoso.com" -SiteName "Houston" ` +-DatabasePath "D:\NTDS" -SYSVOLPath "D:\SYSVOL" -LogPath "E:\Logs" ` +-NoRebootOnCompletion ``` -This command installs a new child domain named child.corp.contoso.com using credentials of CORP\EnterpriseAdmin1. -This command also installs a DNS server, creates a DNS delegation in the corp.contoso.com domain, sets the domain functional level to Windows Server 2003, makes the domain controller a global catalog server in a site named Houston, uses DC1.corp.contoso.com as the replication source domain controller, installs the Active Directory database and SYSVOL on the D:\ drive. -Additionally this command also installs the log files on the E:\ drive, has the server not automatically restart after the domain installation is complete and causes the user to be prompted to provide and confirm the Directory Services Restore Mode (DSRM) password to complete and commit the installation of the domain in Active Directory. +This command installs a new child domain named child.corp.contoso.com using credentials of +CORP\EnterpriseAdmin1. This command also installs a DNS server, creates a DNS delegation in the +corp.contoso.com domain, sets the domain functional level to Windows Server 2003, makes the domain +controller a global catalog server in a site named Houston, uses DC1.corp.contoso.com as the +replication source domain controller, installs the Active Directory database and SYSVOL on the `D:\` +drive. Additionally this command also installs the log files on the `E:\` drive, has the server not +automatically restart after the domain installation is complete and causes the user to be prompted +to provide and confirm the Directory Services Restore Mode (DSRM) password to complete and commit +the installation of the domain in Active Directory. ## PARAMETERS ### -ADPrepCredential -Specifies the user name and password that corresponds to the account to be used for running operations to prepare Active Directory prior to the installation of this domain. -Use the **Get-Credential** cmdlet to prompt the user to supply a password. + +Specifies the user name and password that corresponds to the account to be used for running +operations to prepare Active Directory prior to the installation of this domain. Use the +**Get-Credential** cmdlet to prompt the user to supply a password. ```yaml Type: PSCredential @@ -58,6 +75,7 @@ Accept wildcard characters: False ``` ### -AllowDomainReinstall + Indicates that the cmdlet recreates an existing domain. ```yaml @@ -73,6 +91,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -88,9 +107,10 @@ Accept wildcard characters: False ``` ### -CreateDnsDelegation -Indicates that the cmdlet creates a DNS delegation that references the new DNS server that you install along with the domain controller. -Valid for Active Directory-integrated DNS only. -The default is computed automatically based on the environment. + +Indicates that the cmdlet creates a DNS delegation that references the new DNS server that you +install along with the domain controller. Valid for Active Directory-integrated DNS only. The +default is computed automatically based on the environment. ```yaml Type: SwitchParameter @@ -105,8 +125,9 @@ Accept wildcard characters: False ``` ### -Credential -Specifies the user name and password that corresponds to the account used to install the domain controller. -Use the **Get-Credential** cmdlet to prompt the user to supply a password. + +Specifies the user name and password that corresponds to the account used to install the domain +controller. Use the **Get-Credential** cmdlet to prompt the user to supply a password. ```yaml Type: PSCredential @@ -121,8 +142,10 @@ Accept wildcard characters: False ``` ### -DatabasePath -Specifies the fully qualified, non-Universal Naming Convention (UNC) path to a directory on a fixed disk of the local computer that contains the domain database, for instance, C:\Windows\NTDS. -The default is %SYSTEMROOT%\NTDS. + +Specifies the fully qualified, non-Universal Naming Convention (UNC) path to a directory on a fixed +disk of the local computer that contains the domain database, for instance, `C:\Windows\NTDS`. The +default is `%SYSTEMROOT%\NTDS`. ```yaml Type: String @@ -137,8 +160,10 @@ Accept wildcard characters: False ``` ### -DnsDelegationCredential -Specifies the user name and password (account credentials) for creating the DNS delegation. -This parameter is skipped if the value for the *CreateDnsDelegation* parameter is either specified or computed to be $false. + +Specifies the user name and password (account credentials) for creating the DNS delegation. This +parameter is skipped if the value for the _CreateDnsDelegation_ parameter is either specified or +computed to be $false. ```yaml Type: PSCredential @@ -153,9 +178,11 @@ Accept wildcard characters: False ``` ### -DomainMode -Specifies the domain functional level of the first domain in the creation of a new forest. -Supported values for this parameter can be either a valid integer or a corresponding enumerated string value. -For instance, to set the domain mode level to Windows Server 2008 R2, you can specify either a value of 4 or Win2008R2. + +Specifies the domain functional level of the first domain in the creation of a new forest. Supported +values for this parameter can be either a valid integer or a corresponding enumerated string value. +For instance, to set the domain mode level to Windows Server 2008 R2, you can specify either a value +of 4 or Win2008R2. The acceptable values for this parameter are: @@ -183,9 +210,10 @@ Accept wildcard characters: False ``` ### -DomainType -Specifies the type of domain that this cmdlet creates. -You can create a new domain tree in an existing forest (supported values are TreeDomain or tree) or a child of an existing domain (supported values are ChildDomain or child). -The default is ChildDomain. + +Specifies the type of domain that this cmdlet creates. You can create a new domain tree in an +existing forest (supported values are TreeDomain or tree) or a child of an existing domain +(supported values are ChildDomain or child). The default is ChildDomain. ```yaml Type: DomainType @@ -201,6 +229,7 @@ Accept wildcard characters: False ``` ### -Force + Forces the command to run without asking for user confirmation. ```yaml @@ -216,12 +245,18 @@ Accept wildcard characters: False ``` ### -InstallDns -Indicates that the cmdlet installs and configures the DNS Server service for the domain or domain tree. -For domain installation, if this parameter is left unspecified and the parent domain (or in the case of a domain tree, the forest root domain) already hosts and stores the DNS names for the domain, then the default for this parameter is $true and the DNS server is installed. -Otherwise, if DNS domain names are hosted outside of Active Directory, the default is $false and no DNS server is installed. -To test if DNS domain names are hosted outside of Active Directory, this cmdlet uses a start of authority (SOA) type DNS query. -For instance, if the value of *NewDomainName* parameter is corp.contoso.com, Active Directory performs an SOA query for corp.contoso.com and ensures that the zone name in the response is corp.contoso.com. +Indicates that the cmdlet installs and configures the DNS Server service for the domain or domain +tree. For domain installation, if this parameter is left unspecified and the parent domain (or in +the case of a domain tree, the forest root domain) already hosts and stores the DNS names for the +domain, then the default for this parameter is $true and the DNS server is installed. Otherwise, if +DNS domain names are hosted outside of Active Directory, the default is $false and no DNS server is +installed. + +To test if DNS domain names are hosted outside of Active Directory, this cmdlet uses a start of +authority (SOA) type DNS query. For instance, if the value of _NewDomainName_ parameter is +corp.contoso.com, Active Directory performs an SOA query for corp.contoso.com and ensures that the +zone name in the response is corp.contoso.com. ```yaml Type: SwitchParameter @@ -236,8 +271,10 @@ Accept wildcard characters: False ``` ### -LogPath -Specifies the fully qualified, non-UNC path to a directory on a fixed disk of the local computer that contains the domain log files, for instance, C:\Windows\Logs. -The default is %SYSTEMROOT%\NTDS. + +Specifies the fully qualified, non-UNC path to a directory on a fixed disk of the local computer +that contains the domain log files, for instance, `C:\Windows\Logs`. The default is +`%SYSTEMROOT%\NTDS`. ```yaml Type: String @@ -252,9 +289,11 @@ Accept wildcard characters: False ``` ### -NewDomainName -Specifies the new domain name that this cmdlet installs. -If the value set for the *DomainType* parameter is set to TreeDomain, this parameter can be used to specify the fully qualified domain name (FQDN) for the new domain tree. -If the value set for the *DomainType* parameter is set to ChildDomain, this parameter can be used to specify a single label domain name for the child domain. + +Specifies the new domain name that this cmdlet installs. If the value set for the _DomainType_ +parameter is set to TreeDomain, this parameter can be used to specify the fully qualified domain +name (FQDN) for the new domain tree. If the value set for the _DomainType_ parameter is set to +ChildDomain, this parameter can be used to specify a single label domain name for the child domain. ```yaml Type: String @@ -269,16 +308,21 @@ Accept wildcard characters: False ``` ### -NewDomainNetbiosName -Specifies the NetBIOS name for the new domain. -For NetBIOS names to be valid for use with this parameter they must be single label names of 15 characters or less. -If this parameter is set with a valid NetBIOS name value, then promotion continues with the name specified. -If this parameter is not set, then the default is automatically computed from the value of the *NewDomainName* parameter. +Specifies the NetBIOS name for the new domain. For NetBIOS names to be valid for use with this +parameter they must be single label names of 15 characters or less. -For instance, if this parameter is not specified and a single-label prefix domain name of 15 characters or less is specified within the value of the *NewDomainName* parameter, then promotion continues with an automatically generated NetBIOS domain name. -For example, the prefix label corp within a full domain name value of corp.contoso.com would be a successful name choice. +If this parameter is set with a valid NetBIOS name value, then promotion continues with the name +specified. If this parameter is not set, then the default is automatically computed from the value +of the _NewDomainName_ parameter. -Note that if the name value given for this parameter is a name of 16 characters or more, then the domain installation will fail. +For instance, if this parameter is not specified and a single-label prefix domain name of 15 +characters or less is specified within the value of the _NewDomainName_ parameter, then promotion +continues with an automatically generated NetBIOS domain name. For example, the prefix label corp +within a full domain name value of corp.contoso.com would be a successful name choice. + +Note that if the name value given for this parameter is a name of 16 characters or more, then the +domain installation will fail. ```yaml Type: String @@ -293,13 +337,17 @@ Accept wildcard characters: False ``` ### -NoDnsOnNetwork -Indicates that the DNS service is not available on the network. -This parameter is used only when the IP setting of the network adapter for this computer is not configured with the name of a DNS server for name resolution. -It indicates that a DNS server is installed on this computer for name resolution. -Otherwise, the IP settings of the network adapter must first be configured with the address of a DNS server. -Omitting this parameter (the default) indicates that the TCP/IP client settings of the network adapter on this server computer is used to contact a DNS server. -Therefore, if you do not specify this parameter, ensure that TCP/IP client settings are first configured with a preferred DNS server address. +Indicates that the DNS service is not available on the network. This parameter is used only when the +IP setting of the network adapter for this computer is not configured with the name of a DNS server +for name resolution. It indicates that a DNS server is installed on this computer for name +resolution. Otherwise, the IP settings of the network adapter must first be configured with the +address of a DNS server. + +Omitting this parameter (the default) indicates that the TCP/IP client settings of the network +adapter on this server computer is used to contact a DNS server. Therefore, if you do not specify +this parameter, ensure that TCP/IP client settings are first configured with a preferred DNS server +address. ```yaml Type: SwitchParameter @@ -314,6 +362,7 @@ Accept wildcard characters: False ``` ### -NoGlobalCatalog + Specifies that the read-only domain controller (RODC) will not be a global catalog server. By default, the domain controller that you are installing is a global catalog server. @@ -330,9 +379,12 @@ Accept wildcard characters: False ``` ### -NoRebootOnCompletion -Indicates that the cmdlet does not reboot the computer upon completion. -By default, reboot upon completion occurs when this cmdlet is used and this parameter is omitted. -As a general rule, Microsoft support recommends that you not use this parameter except for testing or troubleshooting purposes because once configuration has completed the server will not function correctly as either a member server or a DC until it is rebooted. + +Indicates that the cmdlet does not reboot the computer upon completion. By default, reboot upon +completion occurs when this cmdlet is used and this parameter is omitted. As a general rule, +Microsoft support recommends that you not use this parameter except for testing or troubleshooting +purposes because once configuration has completed the server will not function correctly as either a +member server or a DC until it is rebooted. ```yaml Type: SwitchParameter @@ -347,6 +399,7 @@ Accept wildcard characters: False ``` ### -ParentDomainName + Specifies the fully qualified domain name (FQDN) of an existing parent domain. ```yaml @@ -362,8 +415,10 @@ Accept wildcard characters: False ``` ### -ReplicationSourceDC -Specifies the fully qualified domain name (FQDN) of the domain controller to be used as the source for replicating to this domain. -The default value for this parameter is automatically computed from the environment. + +Specifies the fully qualified domain name (FQDN) of the domain controller to be used as the source +for replicating to this domain. The default value for this parameter is automatically computed from +the environment. ```yaml Type: String @@ -378,15 +433,19 @@ Accept wildcard characters: False ``` ### -SafeModeAdministratorPassword -Specifies the password for the administrator account when the computer is started in Safe Mode or a variant of Safe Mode, such as Directory Services Restore Mode. -You must supply a password that meets the password complexity rules of the domain and the password cannot be blank. -If specified with a value, the value must be a secure string. + +Specifies the password for the administrator account when the computer is started in Safe Mode or a +variant of Safe Mode, such as Directory Services Restore Mode. You must supply a password that meets +the password complexity rules of the domain and the password cannot be blank. If specified with a +value, the value must be a secure string. If this parameter is not specified, the cmdlet prompts you to enter and confirm a masked password. -This is the preferred usage when running the cmdlet interactively. -If there are no other arguments specified with the cmdlet, you are prompted to enter a masked password for this parameter but no confirmation of the password entered is made. -This is not recommended as it could allow a mistyped password to be configured. -Another available advanced option is to use the **ConvertTo-SecureString** cmdlet and specify the password string inline as unmasked console input, which is also not a recommended security best practice in production deployments. +This is the preferred usage when running the cmdlet interactively. If there are no other arguments +specified with the cmdlet, you are prompted to enter a masked password for this parameter but no +confirmation of the password entered is made. This is not recommended as it could allow a mistyped +password to be configured. Another available advanced option is to use the +**ConvertTo-SecureString** cmdlet and specify the password string inline as unmasked console input, +which is also not a recommended security best practice in production deployments. ```yaml Type: SecureString @@ -401,9 +460,10 @@ Accept wildcard characters: False ``` ### -SiteName -Specifies the name of an existing site where you can place the new domain controller. -The default value is the site that is associated with the subnet that includes the IP address of this server. -If no such site exists, the default is the site of the replication source domain controller. + +Specifies the name of an existing site where you can place the new domain controller. The default +value is the site that is associated with the subnet that includes the IP address of this server. If +no such site exists, the default is the site of the replication source domain controller. ```yaml Type: String @@ -418,8 +478,9 @@ Accept wildcard characters: False ``` ### -SkipAutoConfigureDns -Indicates that the cmdlet skips automatic configuration of DNS client settings, forwarders, and root hints. -This parameter is in effect only if the DNS Server service is already installed. + +Indicates that the cmdlet skips automatic configuration of DNS client settings, forwarders, and root +hints. This parameter is in effect only if the DNS Server service is already installed. ```yaml Type: SwitchParameter @@ -434,10 +495,14 @@ Accept wildcard characters: False ``` ### -SkipPreChecks -Indicates that the cmdlet performs only a base set of validations. -This behavior is equivalent to the validations that were performed when using Dcpromo.exe in earlier versions of Windows Server to add a new domain. -When this switch parameter is set, it specifies that additional preliminary checks should be bypassed. -For more information on the scope of these additional preliminary checks that the ADDSDeployment module performs by default when using Windows Server 2012, refer to the table in the section ADPrep and Prerequisite Checking Architecture in [AD DS Simplified Administration](https://go.microsoft.com/fwlink/?LinkID=237244). + +Indicates that the cmdlet performs only a base set of validations. This behavior is equivalent to +the validations that were performed when using Dcpromo.exe in earlier versions of Windows Server to +add a new domain. When this switch parameter is set, it specifies that additional preliminary checks +should be bypassed. For more information on the scope of these additional preliminary checks that +the ADDSDeployment module performs by default when using Windows Server 2012, refer to the table in +the section ADPrep and Prerequisite Checking Architecture in +[AD DS Simplified Administration](https://go.microsoft.com/fwlink/?LinkID=237244). ```yaml Type: SwitchParameter @@ -452,8 +517,9 @@ Accept wildcard characters: False ``` ### -SysvolPath -Specifies the fully qualified, non-UNC path to a directory on a fixed disk of the local computer, for example, C:\Windows\SYSVOL. -The default is %SYSTEMROOT%\SYSVOL. + +Specifies the fully qualified, non-UNC path to a directory on a fixed disk of the local computer, +for example, `C:\Windows\SYSVOL`. The default is `%SYSTEMROOT%\SYSVOL`. ```yaml Type: String @@ -468,6 +534,7 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. @@ -484,14 +551,20 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ## OUTPUTS ## NOTES -* When a new domain tree is created in an existing forest, a two-way, transitive tree root trust is established by default. + +- When a new domain tree is created in an existing forest, a two-way, transitive tree root trust is + established by default. ## RELATED LINKS @@ -504,4 +577,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Get-Credential](https://go.microsoft.com/fwlink/?LinkID=293936) [ConvertTo-SecureString](https://go.microsoft.com/fwlink/p/?LinkId=113291) - From be6dbd9ee78d40ad7e7146a6b507549571c72968 Mon Sep 17 00:00:00 2001 From: Joe Gast Date: Thu, 27 Apr 2023 15:39:54 -0700 Subject: [PATCH 475/965] Get-HgsClienConfiguration.md - documentation formatting --- .../hgsclient/Get-HgsClientConfiguration.md | 58 ++++++++++++------- 1 file changed, 37 insertions(+), 21 deletions(-) diff --git a/docset/winserver2022-ps/hgsclient/Get-HgsClientConfiguration.md b/docset/winserver2022-ps/hgsclient/Get-HgsClientConfiguration.md index aabf41fd10..6e46797846 100644 --- a/docset/winserver2022-ps/hgsclient/Get-HgsClientConfiguration.md +++ b/docset/winserver2022-ps/hgsclient/Get-HgsClientConfiguration.md @@ -16,16 +16,20 @@ Gets the configuration of a Host Guardian Service client. ## SYNTAX ``` -Get-HgsClientConfiguration [-CimSession ] [-ThrottleLimit ] [-AsJob] [] +Get-HgsClientConfiguration [-CimSession ] [-ThrottleLimit ] [-AsJob] + [] ``` ## DESCRIPTION -The **Get-HgsClientConfiguration** cmdlet get the configuration of the local Host Guardian Service client. + +The **Get-HgsClientConfiguration** cmdlet get the configuration of the local Host Guardian Service +client. ## EXAMPLES ### Example 1: Get client configuration -``` + +```powershell PS C:\> Get-HgsClientConfiguration ``` @@ -34,20 +38,22 @@ This command gets the configuration of the local Host Guardian Service client. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -57,9 +63,11 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml Type: CimSession[] @@ -74,14 +82,17 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -91,20 +102,25 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ## OUTPUTS ### CimInstance#MSFT_HgsClientConfiguration + This cmdlet returns the configuration of a Host Guardian Service client as a **CimInstance** object. -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. -The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. +The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the +namespace and class name for the underlying WMI object. ## NOTES ## RELATED LINKS [Set-HgsClientConfiguration](./Set-HgsClientConfiguration.md) - From e425fb9c52e624802ef21984e431492ddd4571ba Mon Sep 17 00:00:00 2001 From: Missy Januszko Date: Thu, 27 Apr 2023 18:40:36 -0400 Subject: [PATCH 476/965] Add cr/lf and remove extra cr/lf --- docset/winserver2022-ps/defender/Defender.md | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/defender/Defender.md b/docset/winserver2022-ps/defender/Defender.md index 61e9e2d9fb..e9d673959e 100644 --- a/docset/winserver2022-ps/defender/Defender.md +++ b/docset/winserver2022-ps/defender/Defender.md @@ -10,7 +10,9 @@ title: Defender --- # Defender Module + ## Description + This reference provides functions descriptions and syntax for all Defender-specific functions. It lists the functions in alphabetical order based on the verb at the beginning of the functions. @@ -18,40 +20,51 @@ It lists the functions in alphabetical order based on the verb at the beginning > You might also hear these functions being referred to as cmdlets. They were designed to appear like cmdlets, even though they were developed as PowerShell functions. ## Defender Cmdlets + ### [Add-MpPreference](./Add-MpPreference.md) + Modifies settings for Windows Defender. ### [Get-MpComputerStatus](./Get-MpComputerStatus.md) + Gets the status of antimalware software on the computer. ### [Get-MpPreference](./Get-MpPreference.md) + Gets preferences for the Windows Defender scans and updates. ### [Get-MpThreat](./Get-MpThreat.md) + Gets the history of threats detected on the computer. ### [Get-MpThreatCatalog](./Get-MpThreatCatalog.md) + Gets known threats from the definitions catalog. ### [Get-MpThreatDetection](./Get-MpThreatDetection.md) + Gets active and past malware threats that Windows Defender detected. ### [Remove-MpPreference](./Remove-MpPreference.md) + Removes exclusions or default actions. ### [Remove-MpThreat](./Remove-MpThreat.md) + Removes active threats from a computer. ### [Set-MpPreference](./Set-MpPreference.md) + Configures preferences for Windows Defender scans and updates. ### [Start-MpScan](./Start-MpScan.md) + Starts a scan on a computer. ### [Start-MpWDOScan](./Start-MpWDOScan.md) + Starts a Windows Defender offline scan. ### [Update-MpSignature](./Update-MpSignature.md) -Updates the antimalware definitions on a computer. - +Updates the antimalware definitions on a computer. From a0f547648254ea17a275b2124645113f51c83da3 Mon Sep 17 00:00:00 2001 From: Joe Gast Date: Thu, 27 Apr 2023 15:43:44 -0700 Subject: [PATCH 477/965] Get-HgsGuardian.md - documentation formatting --- .../hgsclient/Get-HgsGuardian.md | 45 ++++++++++++------- 1 file changed, 28 insertions(+), 17 deletions(-) diff --git a/docset/winserver2022-ps/hgsclient/Get-HgsGuardian.md b/docset/winserver2022-ps/hgsclient/Get-HgsGuardian.md index 57044caab4..fa06f2f03a 100644 --- a/docset/winserver2022-ps/hgsclient/Get-HgsGuardian.md +++ b/docset/winserver2022-ps/hgsclient/Get-HgsGuardian.md @@ -21,6 +21,7 @@ Get-HgsGuardian [[-Name] ] [-CimSession ] [-ThrottleLimi ``` ## DESCRIPTION + The **Get-HgsGuardian** cmdlet gets Host Guardian Service guardian objects from persistent storage. For a computer configured in **HostGuardianService** mode, this cmdlet returns no result. The **New-HgsKeyProtector** cmdlet requires **HgsGuardian** objects. @@ -28,14 +29,16 @@ The **New-HgsKeyProtector** cmdlet requires **HgsGuardian** objects. ## EXAMPLES ### Example 1: Get all guardians -``` -PS C:\> Get-HgsGuardian + +```powershell +Get-HgsGuardian ``` This command gets all guardians configured for this computer. ### Example 2: Get a guardian by using its name -``` + +```powershell PS C:\> Get-HgsGuardian -Name "Guardian11" ``` @@ -44,20 +47,22 @@ This command gets a guardian named Guardian11. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -67,6 +72,7 @@ Accept wildcard characters: False ``` ### -CimSession + Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. @@ -84,12 +90,13 @@ Accept wildcard characters: False ``` ### -Name + Specifies an array of names of guardians to get. ```yaml Type: String[] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: 1 @@ -99,14 +106,17 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml Type: Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -116,13 +126,15 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ## OUTPUTS ### CimInstance#MSFT_HgsGuardian + The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. @@ -137,4 +149,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [New-HgsGuardian](./New-HgsGuardian.md) [Remove-HgsGuardian](./Remove-HgsGuardian.md) - From 5f9fba60214f5cc31ba53b3d12ee4865bbf0d7fb Mon Sep 17 00:00:00 2001 From: Dave Carroll Date: Thu, 27 Apr 2023 15:43:49 -0700 Subject: [PATCH 478/965] pshsummit doc-a-thon --- .../tls/Disable-TlsCipherSuite.md | 33 ++++--- .../tls/Disable-TlsEccCurve.md | 35 +++++--- .../tls/Disable-TlsSessionTicketKey.md | 43 ++++++---- .../tls/Enable-TlsCipherSuite.md | 85 +++++++++++-------- .../tls/Enable-TlsEccCurve.md | 45 +++++++--- .../tls/Enable-TlsSessionTicketKey.md | 69 +++++++++------ .../tls/Export-TlsSessionTicketKey.md | 54 +++++++----- .../tls/Get-TlsCipherSuite.md | 53 +++++++----- .../winserver2022-ps/tls/Get-TlsEccCurve.md | 34 +++++--- .../tls/New-TlsSessionTicketKey.md | 50 ++++++----- docset/winserver2022-ps/tls/TLS.md | 18 +++- 11 files changed, 332 insertions(+), 187 deletions(-) diff --git a/docset/winserver2022-ps/tls/Disable-TlsCipherSuite.md b/docset/winserver2022-ps/tls/Disable-TlsCipherSuite.md index c6c10e50b6..f3237d81ef 100644 --- a/docset/winserver2022-ps/tls/Disable-TlsCipherSuite.md +++ b/docset/winserver2022-ps/tls/Disable-TlsCipherSuite.md @@ -15,21 +15,24 @@ Disables a TLS cipher suite. ## SYNTAX -``` +```powershell Disable-TlsCipherSuite [-Name] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Disable-TlsCipherSuite** cmdlet disables a cipher suite. -This cmdlet removes the cipher suite from the list of Transport Layer Security (TLS) protocol cipher suites for the computer. -For more information about the TLS cipher suites, see the documentation for the Enable-TlsCipherSuite cmdlet or type `Get-Help Enable-TlsCipherSuite`. +The `Disable-TlsCipherSuite` cmdlet disables a cipher suite. This cmdlet removes the cipher suite +from the list of Transport Layer Security (TLS) protocol cipher suites for the computer. + +For more information about the TLS cipher suites, see the documentation for the +Enable-TlsCipherSuite cmdlet or type `Get-Help Enable-TlsCipherSuite`. ## EXAMPLES ### Example 1: Disable a cipher suite -``` -PS C:\>Disable-TlsCipherSuite -Name "TLS_RSA_WITH_3DES_EDE_CBC_SHA" + +```powershell +Disable-TlsCipherSuite -Name 'TLS_RSA_WITH_3DES_EDE_CBC_SHA' ``` This command disables the cipher suite named TLS_RSA_WITH_3DES_EDE_CBC_SHA. @@ -38,12 +41,13 @@ The command removes the cipher suite from the list of TLS protocol cipher suites ## PARAMETERS ### -Name + Specifies the name of the TLS cipher suite to disable. ```yaml -Type: String +Type: System.String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: 1 @@ -53,10 +57,11 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -68,10 +73,11 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -83,7 +89,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see about_CommonParameters +(http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -96,4 +106,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Enable-TlsCipherSuite](./Enable-TlsCipherSuite.md) [Get-TlsCipherSuite](./Get-TlsCipherSuite.md) - diff --git a/docset/winserver2022-ps/tls/Disable-TlsEccCurve.md b/docset/winserver2022-ps/tls/Disable-TlsEccCurve.md index 53de56b95c..4bdcb38f43 100644 --- a/docset/winserver2022-ps/tls/Disable-TlsEccCurve.md +++ b/docset/winserver2022-ps/tls/Disable-TlsEccCurve.md @@ -11,35 +11,40 @@ title: Disable-TlsEccCurve # Disable-TlsEccCurve ## SYNOPSIS -Disables the Elliptic Curve Cryptography (ECC) cipher suites available for TLS(Transport Layer Security) for a computer. +Disables the Elliptic Curve Cryptography (ECC) cipher suites available for TLS(Transport Layer +Security) for a computer. ## SYNTAX -``` +```powershell Disable-TlsEccCurve [-Name] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -This Command disables the Elliptic Curve Cryptography (ECC) cipher suites available for TLS(Transport Layer Security) for a computer. + +This Command disables the Elliptic Curve Cryptography (ECC) cipher suites available for +TLS(Transport Layer Security) for a computer. ## EXAMPLES ### Example 1 -``` -PS C:\> Disable-TlsEccCurve -Name curve25519 + +```powershell +Disable-TlsEccCurve -Name curve25519 ``` -This will disable the ECC Curve "curve25519". +This will disable the ECC Curve 'curve25519'. ## PARAMETERS ### -Name + Specifies the name of the ECC curve to disable. ```yaml -Type: String +Type: System.String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: 0 @@ -49,10 +54,11 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -64,11 +70,12 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -80,13 +87,16 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### System.String - ## OUTPUTS ### System.Object @@ -94,4 +104,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS - diff --git a/docset/winserver2022-ps/tls/Disable-TlsSessionTicketKey.md b/docset/winserver2022-ps/tls/Disable-TlsSessionTicketKey.md index 787c866fae..4484be28be 100644 --- a/docset/winserver2022-ps/tls/Disable-TlsSessionTicketKey.md +++ b/docset/winserver2022-ps/tls/Disable-TlsSessionTicketKey.md @@ -15,26 +15,31 @@ Disables a TLS session ticket key. ## SYNTAX -``` +```powershell Disable-TlsSessionTicketKey [-ServiceAccountName] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Disable-TlsSessionTicketKey** cmdlet disables an administrator managed Transport Layer Security (TLS) session ticket key for the service account. -The cmdlet disables the key for the TLS session by deleting the key and the corresponding rule that uses the key. -When you disable a TLS session ticket key for the service account, the service account cannot decrypt existing TLS session tickets. -Disabling the TLS session ticket key can affect the performance of the TLS server. -The TLS server cannot create new session tickets and must negotiate session information between the client and the server every time the client connects to the TLS server. +The `Disable-TlsSessionTicketKey` cmdlet disables an administrator managed Transport Layer +Security (TLS) session ticket key for the service account. The cmdlet disables the key for the TLS +session by deleting the key and the corresponding rule that uses the key. + +When you disable a TLS session ticket key for the service account, the service account cannot +decrypt existing TLS session tickets. Disabling the TLS session ticket key can affect the +performance of the TLS server. The TLS server cannot create new session tickets and must negotiate +session information between the client and the server every time the client connects to the TLS +server. TLS creates a session ticket by using the TLS Session Resumption without Server-Side State mechanism. -For more information, see New-TlsSessionTicketKey or type `Get-Help New-TlsSessionTicketKey`. +For more information, see `New-TlsSessionTicketKey` or type `Get-Help New-TlsSessionTicketKey`. ## EXAMPLES -### Example 1: Disable a TLS session ticket key. -``` -PS C:\> Disable-TlsSessionTicketKey -ServiceAccountName "NetworkService" +### Example 1: Disable a TLS session ticket key + +```powershell +Disable-TlsSessionTicketKey -ServiceAccountName NetworkService ``` This command disables the TLS session ticket key for the service account named NetworkService. @@ -42,14 +47,15 @@ This command disables the TLS session ticket key for the service account named N ## PARAMETERS ### -ServiceAccountName + Specifies the name of a service account. The cmdlet disables the TLS session ticket key for the service account. Only System, LocalService, NetworkService, and SID of virtual accounts are supported. ```yaml -Type: NTAccount +Type: System.Security.Principal.NTAccount Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: 1 @@ -59,10 +65,11 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -74,11 +81,12 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -90,7 +98,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see about_CommonParameters +(http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -105,4 +117,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [New-TlsSessionTicketKey](./New-TlsSessionTicketKey.md) [Export-TlsSessionTicketKey](./Export-TlsSessionTicketKey.md) - diff --git a/docset/winserver2022-ps/tls/Enable-TlsCipherSuite.md b/docset/winserver2022-ps/tls/Enable-TlsCipherSuite.md index 2ca91dcda9..4bb14b43a4 100644 --- a/docset/winserver2022-ps/tls/Enable-TlsCipherSuite.md +++ b/docset/winserver2022-ps/tls/Enable-TlsCipherSuite.md @@ -15,61 +15,70 @@ Enables a TLS cipher suite. ## SYNTAX -``` +```powershell Enable-TlsCipherSuite [[-Position] ] [-Name] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Enable-TlsCipherSuite** cmdlet enables a cipher suite. -This cmdlet adds the cipher suite to the list of Transport Layer Security (TLS) protocol cipher suites for the computer. -If you do not specify a position in the list, this cmdlet adds it at the lowest position. No restart is required for changes to take effect. -If a cipher suite is not enabled for TLS based secure channel (Schannel) registry settings, then the cipher suite is not used. +The `Enable-TlsCipherSuite` cmdlet enables a cipher suite. This cmdlet adds the cipher suite to the +list of Transport Layer Security (TLS) protocol cipher suites for the computer. If you do not +specify a position in the list, this cmdlet adds it at the lowest position. No restart is required +for changes to take effect. + +If a cipher suite is not enabled for TLS based secure channel (Schannel) registry settings, then the +cipher suite is not used. -This cmdlet is based on Cryptography Next Generation (CNG) Cryptographic Configuration. -Schannel registry settings and settings specified by means of Security Support Provider Interface (SSPI) by each app can override CNG Cryptographic Configuration. -Other settings under HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL can also configure cipher suites. -These settings can impact whether a cipher suite can be used. -For example, disabling of SHA hashes supported by TLS disables the corresponding cipher suites. -Additionally, applications can limit the algorithms using SSPI. -For more information about TLS settings, see [How to restrict the use of certain cryptographic algorithms and protocols in Schannel.dll](https://support.microsoft.com/kb/245030). +This cmdlet is based on Cryptography Next Generation (CNG) Cryptographic Configuration. Schannel +registry settings and settings specified by means of Security Support Provider Interface (SSPI) by +each app can override CNG Cryptographic Configuration. Other settings under +HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL can also configure +cipher suites. These settings can impact whether a cipher suite can be used. For example, disabling +of SHA hashes supported by TLS disables the corresponding cipher suites. Additionally, applications +can limit the algorithms using SSPI. For more information about TLS settings, see +[How to restrict the use of certain cryptographic algorithms and protocols in Schannel.dll](https://support.microsoft.com/kb/245030). ## EXAMPLES ### Example 1: Enable a cipher suite -``` -PS C:\>Enable-TlsCipherSuite -Name "TLS_DHE_DSS_WITH_AES_256_CBC_SHA" + +```powershell +Enable-TlsCipherSuite -Name TLS_DHE_DSS_WITH_AES_256_CBC_SHA ``` This command enables cipher suite named TLS_DHE_DSS_WITH_AES_256_CBC_SHA. This command adds the cipher suite the TLS cipher suite list as the lowest priority. ### Example 2: Enable a cipher suite as the lowest priority -``` -PS C:\>Enable-TlsCipherSuite -Name "TLS_DHE_DSS_WITH_AES_256_CBC_SHA" -Position 4294967295 + +```powershell +Enable-TlsCipherSuite -Name TLS_DHE_DSS_WITH_AES_256_CBC_SHA -Position 4294967295 ``` -This command enables cipher suite named TLS_DHE_DSS_WITH_AES_256_CBC_SHA. -This command adds the cipher suite the TLS cipher suite list as the lowest priority. -Unlike the first example, this command explicitly specifies position number 4294967295, which is the value of CRYPT_PRIORITY_BOTTOM. +This command enables cipher suite named TLS_DHE_DSS_WITH_AES_256_CBC_SHA. This command adds the +cipher suite the TLS cipher suite list as the lowest priority. Unlike the first example, this +command explicitly specifies position number 4294967295, which is the value of +CRYPT_PRIORITY_BOTTOM. ### Example 3: Enable a cipher suite as the highest priority -``` -PS C:\>Enable-TlsCipherSuite -Name "TLS_DHE_DSS_WITH_AES_256_CBC_SHA" -Position 0 + +```powershell +Enable-TlsCipherSuite -Name TLS_DHE_DSS_WITH_AES_256_CBC_SHA -Position 0 ``` -This command enables cipher suite named TLS_DHE_DSS_WITH_AES_256_CBC_SHA. -This command adds the cipher suite the TLS cipher suite list at position 0, which is the highest priority. +This command enables cipher suite named TLS_DHE_DSS_WITH_AES_256_CBC_SHA. This command adds the +cipher suite the TLS cipher suite list at position 0, which is the highest priority. ## PARAMETERS ### -Name + Specifies the name of the TLS cipher suite to enable. ```yaml -Type: String +Type: System.String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: 1 @@ -79,16 +88,19 @@ Accept wildcard characters: False ``` ### -Position + Specifies the position at which to insert the cipher suite in the ordered list of TLS cipher suites. -The cmdlet inserts the cipher suite at the position that this parameter specifies, ahead of any existing cipher suites. +The cmdlet inserts the cipher suite at the position that this parameter specifies, ahead of any +existing cipher suites. -Specify a value of 0 or CRYPT_PRIORITY_TOP to insert the function at the top of the list. -Specify a value of 4294967295 or 0xFFFFFFFF or CRYPT_PRIORITY_BOTTOM to insert the function at the end of the list. +Specify a value of 0 or CRYPT_PRIORITY_TOP to insert the function at the top of the list. Specify a +value of 4294967295 or 0xFFFFFFFF or CRYPT_PRIORITY_BOTTOM to insert the function at the end of the +list. ```yaml -Type: UInt32 +Type: System.UInt32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: 2 @@ -98,10 +110,11 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -113,10 +126,11 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -128,7 +142,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see about_CommonParameters +(http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -141,4 +159,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Disable-TlsCipherSuite](./Disable-TlsCipherSuite.md) [Get-TlsCipherSuite](./Get-TlsCipherSuite.md) - diff --git a/docset/winserver2022-ps/tls/Enable-TlsEccCurve.md b/docset/winserver2022-ps/tls/Enable-TlsEccCurve.md index 8a938b9d85..6bcc2e8b46 100644 --- a/docset/winserver2022-ps/tls/Enable-TlsEccCurve.md +++ b/docset/winserver2022-ps/tls/Enable-TlsEccCurve.md @@ -15,31 +15,35 @@ Enables Elliptic Curve Cryptography (ECC) cipher suites available for TLS. ## SYNTAX -``` +```powershell Enable-TlsEccCurve [[-Position] ] [-Name] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION + Enables Elliptic Curve Cryptography (ECC) cipher suites available for TLS for a computer. ## EXAMPLES ### Example 1 -``` -PS C:\> Enable-TlsEccCurve "NistP384" -Position 0 + +```powershell +Enable-TlsEccCurve 'NistP384' -Position 0 ``` -This command enables Elliptic Curve Cryptography cipher suite named "NistP384" at position 0, which is the highest priority. +This command enables Elliptic Curve Cryptography cipher suite named 'NistP384' at position 0, which +is the highest priority. ## PARAMETERS ### -Name + Specifies the name of the ECC cipher suite to enable. ```yaml -Type: String +Type: System.String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: 0 @@ -49,14 +53,19 @@ Accept wildcard characters: False ``` ### -Position -Specifies the position at which to insert the cipher suite in the ordered list of ECC cipher suites. The cmdlet inserts the cipher suite at the position that this parameter specifies, ahead of any existing cipher suites. -Specify a value of 0 or CRYPT_PRIORITY_TOP to insert the function at the top of the list. Specify a value of 4294967295 or 0xFFFFFFFF or CRYPT_PRIORITY_BOTTOM to insert the function at the end of the list. +Specifies the position at which to insert the cipher suite in the ordered list of ECC cipher suites. +The cmdlet inserts the cipher suite at the position that this parameter specifies, ahead of any +existing cipher suites. + +Specify a value of 0 or CRYPT_PRIORITY_TOP to insert the function at the top of the list. Specify a +value of 4294967295 or 0xFFFFFFFF or CRYPT_PRIORITY_BOTTOM to insert the function at the end of the +list. ```yaml -Type: UInt32 +Type: System.UInt32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: 1 @@ -66,10 +75,11 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -81,11 +91,12 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -97,13 +108,16 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### System.String - ## OUTPUTS ### System.Object @@ -112,3 +126,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS +[Get-TlsEccCurve](./Get-TlsEccCurv.md) + +[Disable-TlsEccCurve](./Disable-TlsEccCurve.md) diff --git a/docset/winserver2022-ps/tls/Enable-TlsSessionTicketKey.md b/docset/winserver2022-ps/tls/Enable-TlsSessionTicketKey.md index c245c41048..fb8848b513 100644 --- a/docset/winserver2022-ps/tls/Enable-TlsSessionTicketKey.md +++ b/docset/winserver2022-ps/tls/Enable-TlsSessionTicketKey.md @@ -15,14 +15,17 @@ Configures a TLS server with a TLS session ticket key. ## SYNTAX -``` +```powershell Enable-TlsSessionTicketKey [-ServiceAccountName] [-Path] [-Password] [-Force] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Enable-TlsSessionTicketKey** cmdlet configures a Transport Layer Security (TLS) server with an administrator-managed TLS session ticket key, created with New-TlsSessionTicketKey, and configures the rule that uses the key for the application service account. -For example, Internet Information Services (IIS) runs under System account so the **ServiceAccountName** parameter should be System. + +The `Enable-TlsSessionTicketKey` cmdlet configures a Transport Layer Security (TLS) server with an +administrator-managed TLS session ticket key, created with New-TlsSessionTicketKey, and configures +the rule that uses the key for the application service account. For example, Internet Information +Services (IIS) runs under System account so the __ServiceAccountName_ parameter should be System. TLS creates a session ticket by using the TLS Session Resumption without Server-Side State mechanism. For more information, see New-TlsSessionTicketKey or type `Get-Help New-TlsSessionTicketKey`. @@ -30,34 +33,42 @@ For more information, see New-TlsSessionTicketKey or type `Get-Help New-TlsSessi ## EXAMPLES ### Example 1: Configure a TLS server with a TLS session ticket key for the NetworkService account -``` -PS C:\>$Password = Read-Host -AsSecureString -PS C:\> Enable-TlsSessionTicketKey -Password $Password -Path "C:\KeyConfig\TlsSessionTicketKey.config" -ServiceAccountName "NetworkService" + +```powershell +$Password = Read-Host -AsSecureString +Enable-TlsSessionTicketKey -Password $Password -Path 'C:\KeyConfig\TlsSessionTicketKey.config' -ServiceAccountName NetworkService ``` -The second command configures the session ticket key for the TLS server. -The command specifies the path for the configuration file on the TLS server, and specifies that the TLS session use the password stored in **$Password** to access the configuration file and configure the key for the specified service account. +The second command configures the session ticket key for the TLS server. The command specifies the +path for the configuration file on the TLS server, and specifies that the TLS session use the +password stored in `$Password` to access the configuration file and configure the key for the +specified service account. ### Example 2: Configure a TLS server with a TLS session ticket key for System account -``` -PS C:\>$Password = Read-Host -AsSecureString -PS C:\> Enable-TlsSessionTicketKey -Password $Password -Path "C:\KeyConfig\TlsSessionTicketKey.config" -ServiceAccountName "System" + +```powershell +$Password = Read-Host -AsSecureString +Enable-TlsSessionTicketKey -Password $Password -Path 'C:\KeyConfig\TlsSessionTicketKey.config' -ServiceAccountName System ``` -The second command configures the session ticket key for the TLS server. -The command specifies the path for the configuration file on the TLS server, and specifies that the TLS session use the password stored in **$Password** to access the configuration file and configure the key for the specified service account. +The second command configures the session ticket key for the TLS server. The command specifies the +path for the configuration file on the TLS server, and specifies that the TLS session use the +password stored in `$Password` to access the configuration file and configure the key for the +specified service account. ## PARAMETERS ### -Force + Forces the command to run without asking for user confirmation. -If you specify this parameter, the cmdlet overwrites the existing session ticket key and configuration. +If you specify this parameter, the cmdlet overwrites the existing session ticket key and +configuration. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -67,12 +78,13 @@ Accept wildcard characters: False ``` ### -Password + Specifies the password, as a secure string, for the configuration file of the TLS server. ```yaml -Type: SecureString +Type: System.Security.SecureString Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: 1 @@ -82,10 +94,11 @@ Accept wildcard characters: False ``` ### -Path + Specifies the path of the configuration file for the TLS server. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: FullName @@ -97,14 +110,15 @@ Accept wildcard characters: False ``` ### -ServiceAccountName + Specifies the name of a service account. The cmdlet configures the TLS session ticket key for the service account. Only System, LocalService, NetworkService, and SID of virtual accounts are supported. ```yaml -Type: NTAccount +Type: System.Security.Principal.NTAccount Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: 3 @@ -114,10 +128,11 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -129,11 +144,12 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -145,7 +161,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see about_CommonParameters +(http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -160,4 +180,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Export-TlsSessionTicketKey](./Export-TlsSessionTicketKey.md) [Disable-TlsSessionTicketKey](./Disable-TlsSessionTicketKey.md) - diff --git a/docset/winserver2022-ps/tls/Export-TlsSessionTicketKey.md b/docset/winserver2022-ps/tls/Export-TlsSessionTicketKey.md index 6cd6a6a65f..7bc764ee8c 100644 --- a/docset/winserver2022-ps/tls/Export-TlsSessionTicketKey.md +++ b/docset/winserver2022-ps/tls/Export-TlsSessionTicketKey.md @@ -15,42 +15,49 @@ Exports a TLS session ticket key. ## SYNTAX -``` +```powershell Export-TlsSessionTicketKey [-ServiceAccountName] [[-Path] ] [-Password] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Export-TlsSessionTicketKey** cmdlet exports the administrator managed Transport Layer Security (TLS) session ticket key for a service account. -TLS creates a session ticket by using the TLS Session Resumption without Server-Side State mechanism. -For more information, see New-TlsSessionTicketKey or type `Get-Help New-TlsSessionTicketKey`. +The `Export-TlsSessionTicketKey` cmdlet exports the administrator managed Transport Layer Security +(TLS) session ticket key for a service account. + +TLS creates a session ticket by using the TLS Session Resumption without Server-Side State +mechanism. For more information, see New-TlsSessionTicketKey or type +`Get-Help New-TlsSessionTicketKey`. ## EXAMPLES ### Example 1: Export a TLS session ticket key -``` -PS C:\>$Password = Read-Host -AsSecureString -PS C:\> Export-TlsSessionTicketKey -Password $Password -Path "C:\KeyConfig\TlsSessionTicketKey.config" -ServiceAccountName "NetworkService" + +```powershell +$Password = Read-Host -AsSecureString +Export-TlsSessionTicketKey -Password $Password -Path 'C:\KeyConfig\TlsSessionTicketKey.config' -ServiceAccountName NetworkService ``` -The first command prompts the user to enter a password by using the **Read-Host** cmdlet. +The first command prompts the user to enter a password by using the `Read-Host` cmdlet. The command masks the password that the user types at the prompt. For more information, type `Get-Help Read-Host`. -The command stores the password in the **$Password** variable. +The command stores the password in the `$Password` variable. -The second command exports the session ticket key for the service account named NetworkService from the configuration file on the TLS server. -The command specifies the path for the configuration file on the TLS server, and specifies that the TLS session use the password stored in **$Password** to access the configuration file. +The second command exports the session ticket key for the service account named NetworkService from +the configuration file on the TLS server. The command specifies the path for the configuration file +on the TLS server, and specifies that the TLS session use the password stored in `$Password` to +access the configuration file. ## PARAMETERS ### -Password + Specifies the password, as a secure string, for the key. ```yaml -Type: SecureString +Type: System.Security.SecureString Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: 1 @@ -60,10 +67,11 @@ Accept wildcard characters: False ``` ### -Path + Specifies the path of the configuration file for the TLS server. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: FullName @@ -75,14 +83,15 @@ Accept wildcard characters: False ``` ### -ServiceAccountName + Specifies the name of a service account. The cmdlet exports the configuration of the TLS session ticket key for the service account. Only System, LocalService, NetworkService, and SID of virtual accounts are supported. ```yaml -Type: NTAccount +Type: System.Security.Principal.NTAccount Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: 3 @@ -92,10 +101,11 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -107,11 +117,12 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -123,7 +134,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see about_CommonParameters +(http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -138,4 +153,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [New-TlsSessionTicketKey](./New-TlsSessionTicketKey.md) [Disable-TlsSessionTicketKey](./Disable-TlsSessionTicketKey.md) - diff --git a/docset/winserver2022-ps/tls/Get-TlsCipherSuite.md b/docset/winserver2022-ps/tls/Get-TlsCipherSuite.md index 730e1f0a3c..fe10b9b74d 100644 --- a/docset/winserver2022-ps/tls/Get-TlsCipherSuite.md +++ b/docset/winserver2022-ps/tls/Get-TlsCipherSuite.md @@ -15,29 +15,36 @@ Gets the TLS cipher suites for a computer. ## SYNTAX -``` +```powershell Get-TlsCipherSuite [[-Name] ] [] ``` ## DESCRIPTION -The **Get-TlsCipherSuite** cmdlet gets an ordered collection of cipher suites for a computer that Transport Layer Security (TLS) can use. -For more information about the TLS cipher suites, see the documentation for the Enable-TlsCipherSuite cmdlet or type `Get-Help Enable-TlsCipherSuite`. +The `Get-TlsCipherSuite` cmdlet gets an ordered collection of cipher suites for a computer that +Transport Layer Security (TLS) can use. + +For more information about the TLS cipher suites, see the documentation for the +`Enable-TlsCipherSuite` cmdlet or type `Get-Help Enable-TlsCipherSuite`. For more information about protocol versions , see [BCRYPT_KDF_TLS_PRF (L"TLS_PRF")](/windows/desktop/api/bcrypt/nf-bcrypt-bcryptderivekey#bcrypt_kdf_tls_prf-ltls_prf). ## EXAMPLES ### Example 1: Get all cipher suites + +```powershell +Get-TlsCipherSuite ``` -PS C:\>Get-TlsCipherSuite + +```output KeyType : 0 Certificate : RSA MaximumExchangeLength : 65536 MinimumExchangeLength : 0 Exchange : ECDH HashLength : 0 -Hash : +Hash : CipherBlockLength : 16 CipherLength : 256 BaseCipherSuite : 49200 @@ -46,14 +53,13 @@ Cipher : AES Name : TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 Protocols : {771} - KeyType : 0 Certificate : RSA MaximumExchangeLength : 65536 MinimumExchangeLength : 0 Exchange : ECDH HashLength : 0 -Hash : +Hash : CipherBlockLength : 16 CipherLength : 128 BaseCipherSuite : 49199 @@ -66,8 +72,12 @@ Protocols : {771} This command gets all TLS cipher suites for the computer. ### Example 2: Get the cipher suites that match a string + +```powershell +Get-TlsCipherSuite -Name AES ``` -PS C:\>Get-TlsCipherSuite -Name "AES" + +```output KeyType : 0 Certificate : ECDSA MaximumExchangeLength : 65536 @@ -99,23 +109,24 @@ Name : TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 Protocols : {771, 65277} ``` -This command gets all the cipher suites that have names that contain the string `AES`. -Note that the name match is case sensitive and this command returns no output for the name `aes`. -The output includes a field for the TLS/SSL protocols supported by the cipher. -See [Cipher Suites in TLS/SSL (Schannel SSP)](/windows/desktop/secauthn/cipher-suites-in-schannel) for more information. - +This command gets all the cipher suites that have names that contain the string `AES`. Note that the +name match is case sensitive and this command returns no output for the name `aes`. The output +includes a field for the TLS/SSL protocols supported by the cipher. See +[Cipher Suites in TLS/SSL (Schannel SSP)](/windows/desktop/secauthn/cipher-suites-in-schannel) for +more information. ## PARAMETERS ### -Name -Specifies the name of the TLS cipher suite to get. -The cmdlet gets cipher suites that match the string that this cmdlet specifies, so you can specify a partial name. -The name match is case sensitive. + +Specifies the name of the TLS cipher suite to get. The cmdlet gets cipher suites that match the +string that this cmdlet specifies, so you can specify a partial name. The name match is case +sensitive. ```yaml -Type: String +Type: System.String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: 1 @@ -125,7 +136,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see about_CommonParameters +(http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/docset/winserver2022-ps/tls/Get-TlsEccCurve.md b/docset/winserver2022-ps/tls/Get-TlsEccCurve.md index f8cd2ffdeb..f1107762d9 100644 --- a/docset/winserver2022-ps/tls/Get-TlsEccCurve.md +++ b/docset/winserver2022-ps/tls/Get-TlsEccCurve.md @@ -14,51 +14,57 @@ Gets the list of Elliptic Curve Cryptography (ECC) cipher suites available for T ## SYNTAX -``` +```powershell Get-TlsEccCurve [[-Name] ] [] ``` ## DESCRIPTION + Gets the list of Elliptic Curve Cryptography (ECC) cipher suites available for TLS for a computer. ## EXAMPLES ### Example 1: Get all ECC curves + ```powershell Get-TlsEccCurve ``` This generates the following output: - +```output curve25519 NistP256 NistP384 - +``` This command gets all ECC curves for the computer. ### Example 2: Get the ECC curves that match a string + ```powershell Get-TlsEccCurve -Name 'Nist' ``` This generates the following output: - +```output NistP256 NistP384 +``` - -This command gets all the ECC curves that have names that contain the string 'Nist' (case-sensitive). +This command gets all the ECC curves that have names that contain the string 'Nist' +(case-sensitive). ## PARAMETERS ### -Name -Specifies the name of the ECC curve to get. The cmdlet gets ECC curves that match the string that this cmdlet specifies, so you can specify a partial name. This parameter is case-sensitive. + +Specifies the name of the ECC curve to get. The cmdlet gets ECC curves that match the string that +this cmdlet specifies, so you can specify a partial name. This parameter is case-sensitive. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: None @@ -70,13 +76,16 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### System.String - ## OUTPUTS ### System.Object @@ -84,6 +93,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS -[Enable-TlsEccCurve]() -[Disable-TlsEccCurve]() +[Enable-TlsEccCurve](./Enable-TlsEccCurv.md) + +[Disable-TlsEccCurve](./Disable-TlsEccCurve.md) diff --git a/docset/winserver2022-ps/tls/New-TlsSessionTicketKey.md b/docset/winserver2022-ps/tls/New-TlsSessionTicketKey.md index d24d957a2a..c1c609a4b6 100644 --- a/docset/winserver2022-ps/tls/New-TlsSessionTicketKey.md +++ b/docset/winserver2022-ps/tls/New-TlsSessionTicketKey.md @@ -15,45 +15,51 @@ Creates a TLS session ticket key configuration file. ## SYNTAX -``` +```powershell New-TlsSessionTicketKey [[-Path] ] [-Password] [] ``` ## DESCRIPTION -The **New-TlsSessionTicketKey** cmdlet creates a password protected Transport Layer Security (TLS) Session Ticket key configuration file. -TLS creates a session ticket by using the TLS Session Resumption without Server-Side State mechanism. -This mechanism helps to improve the performance of TLS. -The TLS server uses this mechanism to create a key to encrypt a session ticket. -The client can later use the encrypted session ticket to resume communication with the TLS server. -Otherwise, the client must restart the communication by acquiring of new session ticket. -For more information, see [RFC 5077, Transport Layer Security (TLS) Session Resumption without Server-Side State](http://rfc5077.openrfc.org/). +The `New-TlsSessionTicketKey` cmdlet creates a password protected Transport Layer Security (TLS) +Session Ticket key configuration file. + +TLS creates a session ticket by using the TLS Session Resumption without Server-Side State +mechanism. This mechanism helps to improve the performance of TLS. The TLS server uses this +mechanism to create a key to encrypt a session ticket. The client can later use the encrypted +session ticket to resume communication with the TLS server. Otherwise, the client must restart the +communication by acquiring of new session ticket. For more information, see +[RFC 5077, Transport Layer Security (TLS) Session Resumption without Server-Side State](http://rfc5077.openrfc.org/). ## EXAMPLES ### Example 1: Create a TLS session ticket key -``` -PS C:\> $Password = Read-Host -AsSecureString -PS C:\> New-TlsSessionTicketKey -Password $Password -Path "C:\KeyConfig\TlsSessionTicketKey.config" + +```powershell +$Password = Read-Host -AsSecureString +New-TlsSessionTicketKey -Password $Password -Path 'C:\KeyConfig\TlsSessionTicketKey.config' ``` -The first command prompts the user to enter a password by using the **Read-Host** cmdlet. +The first command prompts the user to enter a password by using the `Read-Host` cmdlet. The command masks the password that the user types at the prompt. For more information, type `Get-Help Read-Host`. -The command stores the password in the **$Password** variable. +The command stores the password in the `$Password` variable. -The second command creates the session ticket key configuration file which can be used to enable the TLS session ticket for a service account. -The command specifies the path for the output configuration file on the TLS server, and specifies that the TLS session use the password stored in **$Password** to access the configuration file. +The second command creates the session ticket key configuration file which can be used to enable the +TLS session ticket for a service account. The command specifies the path for the output +configuration file on the TLS server, and specifies that the TLS session use the password stored in +`$Password` to access the configuration file. ## PARAMETERS ### -Password + Specifies the password, as a secure string, for the configuration file of the TLS server. ```yaml -Type: SecureString +Type: System.Security.SecureString Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: 1 @@ -63,11 +69,12 @@ Accept wildcard characters: False ``` ### -Path + Specifies the path of the configuration file for the TLS server. The cmdlet outputs the generated configuration file to this path. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: FullName @@ -79,7 +86,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see about_CommonParameters +(http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -94,4 +105,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Export-TlsSessionTicketKey](./Export-TlsSessionTicketKey.md) [Disable-TlsSessionTicketKey](./Disable-TlsSessionTicketKey.md) - diff --git a/docset/winserver2022-ps/tls/TLS.md b/docset/winserver2022-ps/tls/TLS.md index 22db00bac3..48a9178549 100644 --- a/docset/winserver2022-ps/tls/TLS.md +++ b/docset/winserver2022-ps/tls/TLS.md @@ -8,37 +8,51 @@ title: TLS --- # TLS Module + ## Description -This reference provides cmdlet descriptions and syntax for all Transport Layer Security (TLS) cmdlets. It lists the cmdlets in alphabetical order based on the verb at the beginning of the cmdlet. + +This reference provides cmdlet descriptions and syntax for all Transport Layer Security (TLS) +cmdlets. It lists the cmdlets in alphabetical order based on the verb at the beginning of the +cmdlet. ## TLS Cmdlets + ### [Disable-TlsCipherSuite](Disable-TlsCipherSuite.md) + Disables a TLS cipher suite. ### [Disable-TlsEccCurve](Disable-TlsEccCurve.md) + Disables TLS Ecc Curve. ### [Disable-TlsSessionTicketKey](Disable-TlsSessionTicketKey.md) + Disables a TLS session ticket key. ### [Enable-TlsEccCurve](Enable-TlsEccCurve.md) + Enables TLS Ecc Curve. ### [Enable-TlsCipherSuite](Enable-TlsCipherSuite.md) + Enables a TLS cipher suite. ### [Enable-TlsSessionTicketKey](Enable-TlsSessionTicketKey.md) + Configures a TLS server with a TLS session ticket key. ### [Export-TlsSessionTicketKey](Export-TlsSessionTicketKey.md) + Exports a TLS session ticket key. ### [Get-TlsCipherSuite](Get-TlsCipherSuite.md) + Gets the list of cipher suites for TLS for a computer. ### [Get-TlsEccCurve](Get-TlsEccCurve.md) + Gets the status TLS Ecc Curve. ### [New-TlsSessionTicketKey](New-TlsSessionTicketKey.md) -Creates a TLS session ticket key configuration file. +Creates a TLS session ticket key configuration file. From 4564613e064cf3ba929e5c54a19009a96a7d0447 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Thu, 27 Apr 2023 18:46:27 -0400 Subject: [PATCH 479/965] Undoing line continuation from previous commit --- .../winserver2022-ps/addsdeployment/Install-ADDSDomain.md | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md index e3552bfc8a..0c893d1361 100644 --- a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md +++ b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md @@ -36,12 +36,7 @@ The `Install-ADDSDomain` cmdlet installs an Active Directory domain configuratio ### Example 1: Install a new child domain ``` -Install-ADDSDomain -Credential (Get-Credential CORP\EnterpriseAdmin1) ` --NewDomainName child -ParentDomainName "corp.contoso.com" -InstallDNS ` --CreateDNSDelegation -DomainMode Win2003 ` --ReplicationSourceDC "DC1.corp.contoso.com" -SiteName "Houston" ` --DatabasePath "D:\NTDS" -SYSVOLPath "D:\SYSVOL" -LogPath "E:\Logs" ` --NoRebootOnCompletion +Install-ADDSDomain -Credential (Get-Credential CORP\EnterpriseAdmin1) -NewDomainName child -ParentDomainName "corp.contoso.com" -InstallDNS -CreateDNSDelegation -DomainMode Win2003 -ReplicationSourceDC "DC1.corp.contoso.com" -SiteName "Houston" -DatabasePath "D:\NTDS" -SYSVOLPath "D:\SYSVOL" -LogPath "E:\Logs" -NoRebootOnCompletion ``` This command installs a new child domain named child.corp.contoso.com using credentials of From 40b308bff40b7d375fdcdb7c4b66df522c157d59 Mon Sep 17 00:00:00 2001 From: Michael Svegmar Date: Fri, 28 Apr 2023 00:48:56 +0200 Subject: [PATCH 480/965] Formatted Get-NetVirtualizationProviderAddress --- .../Get-NetVirtualizationProviderAddress.md | 103 +++++++++++------- 1 file changed, 64 insertions(+), 39 deletions(-) diff --git a/docset/winserver2022-ps/netwnv/Get-NetVirtualizationProviderAddress.md b/docset/winserver2022-ps/netwnv/Get-NetVirtualizationProviderAddress.md index ae359a03ee..ad2dc6a7e0 100644 --- a/docset/winserver2022-ps/netwnv/Get-NetVirtualizationProviderAddress.md +++ b/docset/winserver2022-ps/netwnv/Get-NetVirtualizationProviderAddress.md @@ -23,25 +23,32 @@ Get-NetVirtualizationProviderAddress [-ProviderAddress ] [-InterfaceIn ``` ## DESCRIPTION -The **Get-NetVirtualizationProviderAddress** cmdlet gets Provider Addresses configured in Microsoft® Hyper-V® Server 2016 Network Virtualization. -A Provider Address is an IPv4 or IPv6 address that Network Virtualization uses for multiple virtual Customer Addresses. -For more information, see [Network Virtualization technical details](https://technet.microsoft.com/library/jj134174.aspx) on TechNet. -You can specify which Provider Addresses to get by using address state, interface index, prefix length, IP address, or VLAN ID. -You can use this cmdlet to get Provider Addresses for other cmdlets, such as the Set-NetVirtualizationProviderAddress cmdlet or the Remove-NetVirtualizationProviderAddress cmdlet. +The `Get-NetVirtualizationProviderAddress` cmdlet gets Provider Addresses configured in Microsoft® +Hyper-V® Server 2016 Network Virtualization. A Provider Address is an IPv4 or IPv6 address that +Network Virtualization uses for multiple virtual Customer Addresses. For more information, see +[Network Virtualization technical details](https://technet.microsoft.com/library/jj134174.aspx) on +TechNet. + +You can specify which Provider Addresses to get by using address state, interface index, prefix +length, IP address, or VLAN ID. You can use this cmdlet to get Provider Addresses for other cmdlets, +such as the `Set-NetVirtualizationProviderAddress` cmdlet or the +`Remove-NetVirtualizationProviderAddress` cmdlet. ## EXAMPLES ### Example 1: Get Provider Addresses for an interface -``` -PS C:\> Get-NetVirtualizationProviderAddress -InterfaceIndex 13 + +```powershell +Get-NetVirtualizationProviderAddress -InterfaceIndex 13 ``` This command gets the Provider Address for the interface with the specified index. ### Example 2: Get a specific Provider Address -``` -PS C:\>Get-NetVirtualizationProviderAddress -ProviderAddress "172.16.2.3" + +```powershell +Get-NetVirtualizationProviderAddress -ProviderAddress '172.16.2.3' ``` This command gets the Provider Address that has the IP address 172.16.2.3. @@ -49,22 +56,22 @@ This command gets the Provider Address that has the IP address 172.16.2.3. ## PARAMETERS ### -AddressState -Specifies an array of states of Provider Addresses. -The acceptable values for this parameter are: + +Specifies an array of states of Provider Addresses. The acceptable values for this parameter are: - Preferred. -The address is unique. + The address is unique. - Tentative. -The address is not yet verified. + The address is not yet verified. - Duplicate. -There is a duplicate address on the network. + There is a duplicate address on the network. - Invalid. -The address lifetime has expired. + The address lifetime has expired. - Deprecated. -The address cannot start new connections. + The address cannot start new connections. ```yaml -Type: AddressState[] +Type: AddressState [] Parameter Sets: (All) Aliases: Accepted values: Invalid, Tentative, Duplicate, Deprecated, Preferred @@ -77,10 +84,12 @@ Accept wildcard characters: False ``` ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. + +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -92,12 +101,14 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml -Type: CimSession[] +Type: Microsoft.Management.Infrastructure.CimSession[] Parameter Sets: (All) Aliases: Session @@ -109,10 +120,12 @@ Accept wildcard characters: False ``` ### -InterfaceIndex -Specifies an array of indexes for network interfaces that have Hyper-V Server 2016 Network Virtualization enabled. + +Specifies an array of indexes for network interfaces that have Hyper-V Server 2016 Network +Virtualization enabled. ```yaml -Type: UInt32[] +Type: System.UInt32[] Parameter Sets: (All) Aliases: @@ -124,10 +137,11 @@ Accept wildcard characters: False ``` ### -MACAddress + Specifies an array of media access control (MAC) addresses that corresponds to the Provider Address. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: (All) Aliases: @@ -139,12 +153,14 @@ Accept wildcard characters: False ``` ### -ManagedByCluster -Specifies an array of Boolean values that determines whether a highly available Provider Address configuration entry exists on a Hyper-V Network Virtualization gateway. -If you use a Provider Address cluster resource, this value is $True; otherwise, the value is $False. -This parameter is a read-only parameter, used by an administrator to diagnose problems. + +Specifies an array of Boolean values that determines whether a highly available Provider Address +configuration entry exists on a Hyper-V Network Virtualization gateway. If you use a Provider +Address cluster resource, this value is $True; otherwise, the value is $False. This parameter is a +read-only parameter, used by an administrator to diagnose problems. ```yaml -Type: Boolean[] +Type: System.Boolean[] Parameter Sets: (All) Aliases: @@ -156,10 +172,11 @@ Accept wildcard characters: False ``` ### -PrefixLength + Specifies an array of lengths of IP prefixes. ```yaml -Type: Byte[] +Type: System.Byte[] Parameter Sets: (All) Aliases: @@ -171,11 +188,12 @@ Accept wildcard characters: False ``` ### -ProviderAddress + Specifies an array of IP addresses. You can use IPv4 and IPv6 addresses. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: (All) Aliases: @@ -187,12 +205,15 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: (All) Aliases: @@ -204,10 +225,11 @@ Accept wildcard characters: False ``` ### -VlanID + Specifies an array of IDs for VLANs for Provider Addresses. ```yaml -Type: UInt16[] +Type: System.UInt16[] Parameter Sets: (All) Aliases: @@ -219,7 +241,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -234,4 +260,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Remove-NetVirtualizationProviderAddress](./Remove-NetVirtualizationProviderAddress.md) [Set-NetVirtualizationProviderAddress](./Set-NetVirtualizationProviderAddress.md) - From 2eaf210f1e509576a1afa0fb659fd0b61d975a5f Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Thu, 27 Apr 2023 18:49:09 -0400 Subject: [PATCH 481/965] Adding powershell label to code block --- docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md index 0c893d1361..cf406e6335 100644 --- a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md +++ b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md @@ -35,7 +35,7 @@ The `Install-ADDSDomain` cmdlet installs an Active Directory domain configuratio ### Example 1: Install a new child domain -``` +```powershell Install-ADDSDomain -Credential (Get-Credential CORP\EnterpriseAdmin1) -NewDomainName child -ParentDomainName "corp.contoso.com" -InstallDNS -CreateDNSDelegation -DomainMode Win2003 -ReplicationSourceDC "DC1.corp.contoso.com" -SiteName "Houston" -DatabasePath "D:\NTDS" -SYSVOLPath "D:\SYSVOL" -LogPath "E:\Logs" -NoRebootOnCompletion ``` From 1280f77e7d56d6a523c8f2060e53c81a9495ff8e Mon Sep 17 00:00:00 2001 From: Joe Gast Date: Thu, 27 Apr 2023 15:52:34 -0700 Subject: [PATCH 482/965] Grant-HgsKeyProtectorAccess.md - documentation formatting --- .../hgsclient/ConvertTo-HgsKeyProtector.md | 4 +- .../hgsclient/Export-HgsGuardian.md | 2 +- .../hgsclient/Grant-HgsKeyProtectorAccess.md | 55 +++++++++++-------- 3 files changed, 36 insertions(+), 25 deletions(-) diff --git a/docset/winserver2022-ps/hgsclient/ConvertTo-HgsKeyProtector.md b/docset/winserver2022-ps/hgsclient/ConvertTo-HgsKeyProtector.md index 427ca8e4cb..e51776c176 100644 --- a/docset/winserver2022-ps/hgsclient/ConvertTo-HgsKeyProtector.md +++ b/docset/winserver2022-ps/hgsclient/ConvertTo-HgsKeyProtector.md @@ -62,7 +62,7 @@ For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -79,7 +79,7 @@ Specifies the existing key protector as a byte array. This cmdlet generates a ke from the existing key protector that this parameter specifies. ```yaml -Type: Byte[] +Type: System.Byte[] Parameter Sets: (All) Aliases: diff --git a/docset/winserver2022-ps/hgsclient/Export-HgsGuardian.md b/docset/winserver2022-ps/hgsclient/Export-HgsGuardian.md index a99e1ddbec..3026278601 100644 --- a/docset/winserver2022-ps/hgsclient/Export-HgsGuardian.md +++ b/docset/winserver2022-ps/hgsclient/Export-HgsGuardian.md @@ -59,7 +59,7 @@ Accept wildcard characters: False Specifies the path to the file to write an XML representation of the guardian. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: FilePath diff --git a/docset/winserver2022-ps/hgsclient/Grant-HgsKeyProtectorAccess.md b/docset/winserver2022-ps/hgsclient/Grant-HgsKeyProtectorAccess.md index 948f9e3b82..adc8414e9a 100644 --- a/docset/winserver2022-ps/hgsclient/Grant-HgsKeyProtectorAccess.md +++ b/docset/winserver2022-ps/hgsclient/Grant-HgsKeyProtectorAccess.md @@ -16,49 +16,54 @@ Grants access to a guardian for a key protector. ## SYNTAX ### InputObject + ``` -Grant-HgsKeyProtectorAccess -KeyProtector -Guardian [-AllowUntrustedRoot] - [-AllowExpired] [] +Grant-HgsKeyProtectorAccess -KeyProtector -Guardian + [-AllowUntrustedRoot] [-AllowExpired] [] ``` ### FriendlyName ``` -Grant-HgsKeyProtectorAccess -KeyProtector -GuardianFriendlyName [-AllowUntrustedRoot] - [-AllowExpired] [] +Grant-HgsKeyProtectorAccess -KeyProtector -GuardianFriendlyName + [-AllowUntrustedRoot] [-AllowExpired] [] ``` ## DESCRIPTION + The **Grant-HgsKeyProtectorAccess** cmdlet grants a Host Guardian Service guardian access to a key protector. This operation requires the private signing key of the owner of the key protector. ## EXAMPLES ### Example 1: Grant access to a guardian -``` -PS C:\> $Owner = Get-HgsGuardian -Name "Guardian06" -PS C:\> $Guardian01 = Get-HgsGuardian -Name "Guardian11" -PS C:\> $KeyProtector = New-HgsKeyProtector -Owner $Owner -PS C:\> Grant-HgsKeyProtectorAccess -KeyProtector $KeyProtector -Guardian $Guardian01 + +```powershell +$Owner = Get-HgsGuardian -Name "Guardian06" +$Guardian01 = Get-HgsGuardian -Name "Guardian11" +$KeyProtector = New-HgsKeyProtector -Owner $Owner +Grant-HgsKeyProtectorAccess -KeyProtector $KeyProtector -Guardian $Guardian01 ``` -The first command gets the guardian object named Guardian06 by using the **Get-HgsGuardian** cmdlet, and then stores that object in the **$Owner** variable. +The first command gets the guardian object named `Guardian06` by using the `Get-HgsGuardian` cmdlet, +and then stores that object in the `$Owner` variable. -The second commands get the guardian object named Guardian11, and then stores it in the **$Guardian01** variable. +The second commands get the guardian object named `Guardian11`, and then stores it in the `$Guardian01` variable. The third command creates a key protector. -The command defines Guardian06, stored in **$Owner**, as the **Owner**. +The command defines `Guardian06`, stored in `$Owner`, as the **Owner**. -The final command grants access to the guardian stored in **$Guardian01** for the key protector. +The final command grants access to the guardian stored in `$Guardian01` for the key protector. ## PARAMETERS ### -AllowExpired + Indicates that this cmdlet can grant permissions to a guardian that contains certificates that are expired. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -68,12 +73,13 @@ Accept wildcard characters: False ``` ### -AllowUntrustedRoot + Indicates that this cmdlet can grant permissions to a guardian that uses self-signed certificates. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -83,12 +89,13 @@ Accept wildcard characters: False ``` ### -Guardian + Specifies a guardian to which to grant access to the key. ```yaml Type: CimInstance Parameter Sets: InputObject -Aliases: +Aliases: Required: True Position: Named @@ -98,12 +105,13 @@ Accept wildcard characters: False ``` ### -GuardianFriendlyName + Specifies a friendly name for the guardian. ```yaml Type: String Parameter Sets: FriendlyName -Aliases: +Aliases: Required: True Position: Named @@ -113,12 +121,13 @@ Accept wildcard characters: False ``` ### -KeyProtector + Specifies the key protector to which to grant access. ```yaml Type: CimInstance Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -128,15 +137,18 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ## OUTPUTS ### CimInstance#MSFT_HgsKeyProtector -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. -The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. + +The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the +namespace and class name for the underlying WMI object. ## NOTES @@ -147,4 +159,3 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Revoke-HgsKeyProtectorAccess](./Revoke-HgsKeyProtectorAccess.md) [Get-HgsGuardian](./Get-HgsGuardian.md) - From 7cb1b6fc2d3d053e3ab93781badbde329242379c Mon Sep 17 00:00:00 2001 From: Missy Januszko Date: Thu, 27 Apr 2023 18:56:35 -0400 Subject: [PATCH 483/965] Add CR/LF, remove trailing spaces --- .../defender/Get-MpComputerStatus.md | 48 ++++++++++++------ .../defender/Get-MpPreference.md | 50 +++++++++++++------ .../winserver2022-ps/defender/Get-MpThreat.md | 48 ++++++++++++------ .../defender/Get-MpThreatCatalog.md | 44 ++++++++++------ 4 files changed, 129 insertions(+), 61 deletions(-) diff --git a/docset/winserver2022-ps/defender/Get-MpComputerStatus.md b/docset/winserver2022-ps/defender/Get-MpComputerStatus.md index 3b839ac75c..bb9c3c3753 100644 --- a/docset/winserver2022-ps/defender/Get-MpComputerStatus.md +++ b/docset/winserver2022-ps/defender/Get-MpComputerStatus.md @@ -16,15 +16,19 @@ Gets the status of antimalware software on the computer. ## SYNTAX ``` -Get-MpComputerStatus [-CimSession ] [-ThrottleLimit ] [-AsJob] [] +Get-MpComputerStatus [-CimSession ] [-ThrottleLimit ] [-AsJob] +[] ``` ## DESCRIPTION -The **Get-MpComputerStatus** cmdlet gets the status of antimalware software installed on the computer. + +The `Get-MpComputerStatus` cmdlet gets the status of antimalware software installed on the +computer. ## EXAMPLES ### Example 1: Get the computer status + ``` PS C:\> Get-MpComputerStatus AMEngineVersion : 1.1.9700.0 @@ -66,14 +70,17 @@ This command gets the status of antimalware protection software installed on the ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. + +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml Type: SwitchParameter @@ -88,9 +95,11 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml Type: CimSession[] @@ -105,9 +114,12 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml Type: Int32 @@ -122,12 +134,16 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). -## INPUTS + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ## OUTPUTS ## NOTES ## RELATED LINKS + [Get-MpComputerStatus Properties](/previous-versions/windows/desktop/defender/msft-mpcomputerstatus#properties) diff --git a/docset/winserver2022-ps/defender/Get-MpPreference.md b/docset/winserver2022-ps/defender/Get-MpPreference.md index f37d733b47..edc27371bf 100644 --- a/docset/winserver2022-ps/defender/Get-MpPreference.md +++ b/docset/winserver2022-ps/defender/Get-MpPreference.md @@ -16,15 +16,20 @@ Gets preferences for the Windows Defender scans and updates. ## SYNTAX ``` -Get-MpPreference [-CimSession ] [-ThrottleLimit ] [-AsJob] [] +Get-MpPreference [-CimSession ] [-ThrottleLimit ] [-AsJob] +[] ``` ## DESCRIPTION -The **Get-MpPreference** cmdlet gets preferences for the Windows Defender scans and updates. For more information about the preferences that this cmdlet retrieves, see [Windows Defender Preferences Class](/previous-versions/windows/desktop/legacy/dn455323(v=vs.85)). + +The `Get-MpPreference` cmdlet gets preferences for the Windows Defender scans and updates. For more +information about the preferences that this cmdlet retrieves, see +[Windows Defender Preferences Class](/previous-versions/windows/desktop/legacy/dn455323(v=vs.85)). ## EXAMPLES ### Example 1: View the scheduled scan day + ``` PS C:\> $Preferences = Get-MpPreference PS C:\> $Preferences.ScanScheduleDay @@ -32,19 +37,23 @@ PS C:\> $Preferences.ScanScheduleDay The first command gets the preferences, and then stores them in the **$Preferences** variable. -The second command uses standard dot syntax to display the **ScanScheduleDay** property of the object stored in the **$Preferences** variable. +The second command uses standard dot syntax to display the **ScanScheduleDay** property of the +object stored in the **$Preferences** variable. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. + +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml Type: SwitchParameter @@ -59,9 +68,11 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml Type: CimSession[] @@ -76,9 +87,12 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml Type: Int32 @@ -93,7 +107,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/docset/winserver2022-ps/defender/Get-MpThreat.md b/docset/winserver2022-ps/defender/Get-MpThreat.md index 289d13177f..73688aa3a1 100644 --- a/docset/winserver2022-ps/defender/Get-MpThreat.md +++ b/docset/winserver2022-ps/defender/Get-MpThreat.md @@ -16,22 +16,27 @@ Gets the history of threats detected on the computer. ## SYNTAX ### DefaultSet (Default) + ``` Get-MpThreat [] ``` ### ById + ``` Get-MpThreat [-ThreatID ] [-CimSession ] [-ThrottleLimit ] [-AsJob] - [] +[] ``` ## DESCRIPTION -The **Get-MpThreat** cmdlet gets the history of threats that Windows Defender detected on the computer. + +The `Get-MpThreat` cmdlet gets the history of threats that Windows Defender detected on the +computer. ## EXAMPLES ### Example 1: Get the history of a detected threat + ``` PS C:\> Get-MpThreat -ThreatID 1994 ``` @@ -41,14 +46,17 @@ This command gets the history of the threat on the local computer that has the I ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. + +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml Type: SwitchParameter @@ -63,9 +71,11 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml Type: CimSession[] @@ -80,6 +90,7 @@ Accept wildcard characters: False ``` ### -ThreatID + Specifies an array of threat IDs. This cmdlet gets the history of the threats that you specify. @@ -96,9 +107,12 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml Type: Int32 @@ -113,7 +127,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/docset/winserver2022-ps/defender/Get-MpThreatCatalog.md b/docset/winserver2022-ps/defender/Get-MpThreatCatalog.md index ec4adeab88..b6999aafca 100644 --- a/docset/winserver2022-ps/defender/Get-MpThreatCatalog.md +++ b/docset/winserver2022-ps/defender/Get-MpThreatCatalog.md @@ -16,23 +16,27 @@ Gets known threats from the definitions catalog. ## SYNTAX ### DefaultSet (Default) + ``` Get-MpThreatCatalog [] ``` ### ById + ``` Get-MpThreatCatalog [-ThreatID ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [] ``` ## DESCRIPTION + The **Get-MpThreatCatalog** cmdlet gets known threats from the Windows Defender definitions catalog. The definitions catalog contains references to all known threats that Windows Defender can identify. ## EXAMPLES ### Example 1: Get a known threat from the definitions catalog + ``` PS C:\> Get-MpThreatCatalog -ThreatID 1994 ``` @@ -42,14 +46,17 @@ This command gets the known threat that has the ID 1994. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. + +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml Type: SwitchParameter @@ -64,9 +71,11 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml Type: CimSession[] @@ -81,6 +90,7 @@ Accept wildcard characters: False ``` ### -ThreatID + Specifies an array of threat IDs. This cmdlet gets the threats that you specify from the definitions catalog. @@ -97,9 +107,12 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml Type: Int32 @@ -114,7 +127,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -129,4 +146,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Remove-MpThreat](./Remove-MpThreat.md) [Get-MpThreatDetection](./Get-MpThreatDetection.md) - From d72072d19e36cc2645651e3c9ae4c80c27a2c450 Mon Sep 17 00:00:00 2001 From: Vanda Paladino Date: Thu, 27 Apr 2023 19:00:31 -0400 Subject: [PATCH 484/965] Update docset/winserver2022-ps/ServerManager/Disable-ServerManagerStandardUserRemoting.md Co-authored-by: Mikey Lombardi (He/Him) --- .../ServerManager/Disable-ServerManagerStandardUserRemoting.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/ServerManager/Disable-ServerManagerStandardUserRemoting.md b/docset/winserver2022-ps/ServerManager/Disable-ServerManagerStandardUserRemoting.md index ad1acd6bfc..f937e76e5c 100644 --- a/docset/winserver2022-ps/ServerManager/Disable-ServerManagerStandardUserRemoting.md +++ b/docset/winserver2022-ps/ServerManager/Disable-ServerManagerStandardUserRemoting.md @@ -30,7 +30,7 @@ Manager. The cmdlet restores the default, administrator-only access to this data locally on the server that is being managed by using Server Manager. The cmdlet works by performing the following actions: -- Deletes access rights for specified standard users to the root\cimv2 namespace on the local server +- Deletes access rights for specified standard users to the `root\cimv2` namespace on the local server (for access to role and feature inventory information). - Removes specified standard users from user groups (Remote Management Users, Event Log Readers, and From 9aa9086d4b20090c47b893ce0c797e112f622852 Mon Sep 17 00:00:00 2001 From: Vanda Paladino Date: Thu, 27 Apr 2023 19:00:45 -0400 Subject: [PATCH 485/965] Update docset/winserver2022-ps/ServerManager/Disable-ServerManagerStandardUserRemoting.md Co-authored-by: Mikey Lombardi (He/Him) --- .../ServerManager/Disable-ServerManagerStandardUserRemoting.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/ServerManager/Disable-ServerManagerStandardUserRemoting.md b/docset/winserver2022-ps/ServerManager/Disable-ServerManagerStandardUserRemoting.md index f937e76e5c..65c4711433 100644 --- a/docset/winserver2022-ps/ServerManager/Disable-ServerManagerStandardUserRemoting.md +++ b/docset/winserver2022-ps/ServerManager/Disable-ServerManagerStandardUserRemoting.md @@ -14,7 +14,7 @@ title: Disable-ServerManagerStandardUserRemoting Disables access for specified standard users to event, service, performance counter, and role and feature inventory data that is collected by Server Manager for a server. This cmdlet performs the -opposite action, for specified users, of the Enable-ServerManagerStandardUserRemoting cmdlet. +opposite action, for specified users, of the `Enable-ServerManagerStandardUserRemoting` cmdlet. ## SYNTAX From 2b6e10ad7c9ac76ae78a90f1316c5101d6807ce0 Mon Sep 17 00:00:00 2001 From: Vanda Paladino Date: Thu, 27 Apr 2023 19:00:56 -0400 Subject: [PATCH 486/965] Update docset/winserver2022-ps/ServerManager/Disable-ServerManagerStandardUserRemoting.md Co-authored-by: Mikey Lombardi (He/Him) --- .../ServerManager/Disable-ServerManagerStandardUserRemoting.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/ServerManager/Disable-ServerManagerStandardUserRemoting.md b/docset/winserver2022-ps/ServerManager/Disable-ServerManagerStandardUserRemoting.md index 65c4711433..f4c12ec6ce 100644 --- a/docset/winserver2022-ps/ServerManager/Disable-ServerManagerStandardUserRemoting.md +++ b/docset/winserver2022-ps/ServerManager/Disable-ServerManagerStandardUserRemoting.md @@ -59,7 +59,7 @@ Disable-ServerManagerStandardUserRemoting -User JennyL -WhatIf ``` In this example, the administrator views the outcome of running a command to deny a standard user -named JennyL access to event, performance counter, service status, and role and feature inventory +named `JennyL` access to event, performance counter, service status, and role and feature inventory data for a server that is being managed by using the Server Manager console running on either the local or a remote computer. The **WhatIf** parameter is added, meaning that the command actions are not carried out. From 3ce768c4454df6637578a88eb29be4d639501707 Mon Sep 17 00:00:00 2001 From: Vanda Paladino Date: Thu, 27 Apr 2023 19:01:04 -0400 Subject: [PATCH 487/965] Update docset/winserver2022-ps/ServerManager/Disable-ServerManagerStandardUserRemoting.md Co-authored-by: Mikey Lombardi (He/Him) --- .../ServerManager/Disable-ServerManagerStandardUserRemoting.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/ServerManager/Disable-ServerManagerStandardUserRemoting.md b/docset/winserver2022-ps/ServerManager/Disable-ServerManagerStandardUserRemoting.md index f4c12ec6ce..0f8bc185ea 100644 --- a/docset/winserver2022-ps/ServerManager/Disable-ServerManagerStandardUserRemoting.md +++ b/docset/winserver2022-ps/ServerManager/Disable-ServerManagerStandardUserRemoting.md @@ -70,7 +70,7 @@ not carried out. Disable-ServerManagerStandardUserRemoting -User JennyL -Confirm ``` -In this example, the administrator denies a standard user named JennyL access to event, performance +In this example, the administrator denies a standard user named `JennyL` access to event, performance counter, service status, and role and feature inventory data for a server that is being managed by using the Server Manager console running on either the local or a remote computer. The **Confirm** parameter is added, meaning that the command prompts for confirmation before performing the action. From b734f76aad5e11d4d779b3c605226e807734f9e5 Mon Sep 17 00:00:00 2001 From: Vanda Paladino Date: Thu, 27 Apr 2023 19:01:15 -0400 Subject: [PATCH 488/965] Update docset/winserver2022-ps/ServerManager/Disable-ServerManagerStandardUserRemoting.md Co-authored-by: Mikey Lombardi (He/Him) --- .../Disable-ServerManagerStandardUserRemoting.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/docset/winserver2022-ps/ServerManager/Disable-ServerManagerStandardUserRemoting.md b/docset/winserver2022-ps/ServerManager/Disable-ServerManagerStandardUserRemoting.md index 0f8bc185ea..df94e867b7 100644 --- a/docset/winserver2022-ps/ServerManager/Disable-ServerManagerStandardUserRemoting.md +++ b/docset/winserver2022-ps/ServerManager/Disable-ServerManagerStandardUserRemoting.md @@ -146,10 +146,7 @@ Accept wildcard characters: False ### CommonParameters -This cmdlet supports the common parameters: `-Debug`, -`ErrorAction`, -`ErrorVariable`, --`InformationAction`, -`InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, -`-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see -[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS From 5bb9cb5a7e78c995ff8c58286b0ced9c8e5b3935 Mon Sep 17 00:00:00 2001 From: Dave Carroll Date: Thu, 27 Apr 2023 16:03:59 -0700 Subject: [PATCH 489/965] fix output --- docset/winserver2022-ps/tls/Get-TlsEccCurve.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/docset/winserver2022-ps/tls/Get-TlsEccCurve.md b/docset/winserver2022-ps/tls/Get-TlsEccCurve.md index f1107762d9..e71d7d9417 100644 --- a/docset/winserver2022-ps/tls/Get-TlsEccCurve.md +++ b/docset/winserver2022-ps/tls/Get-TlsEccCurve.md @@ -30,8 +30,6 @@ Gets the list of Elliptic Curve Cryptography (ECC) cipher suites available for T Get-TlsEccCurve ``` -This generates the following output: - ```output curve25519 NistP256 @@ -46,8 +44,6 @@ This command gets all ECC curves for the computer. Get-TlsEccCurve -Name 'Nist' ``` -This generates the following output: - ```output NistP256 NistP384 From c2bbd4ac4b45349d15df4bfd2021e8dda7d1f27e Mon Sep 17 00:00:00 2001 From: 53883 Date: Fri, 28 Apr 2023 01:05:29 +0200 Subject: [PATCH 490/965] formatting changes --- .../ServerManager/Get-WindowsFeature.md | 83 ++++++++++++++----- 1 file changed, 60 insertions(+), 23 deletions(-) diff --git a/docset/winserver2022-ps/ServerManager/Get-WindowsFeature.md b/docset/winserver2022-ps/ServerManager/Get-WindowsFeature.md index 2cde727771..6aa9c5af6a 100644 --- a/docset/winserver2022-ps/ServerManager/Get-WindowsFeature.md +++ b/docset/winserver2022-ps/ServerManager/Get-WindowsFeature.md @@ -11,43 +11,55 @@ title: Get-WindowsFeature # Get-WindowsFeature ## SYNOPSIS -Gets information about Windows Server roles, role services, and features that are available for installation and installed on a specified server. +Gets information about Windows Server roles, role services, and features that are available for +installation and installed on a specified server. ## SYNTAX ``` -Get-WindowsFeature [[-Name] ] [-Vhd ] [-ComputerName ] [-Credential ] - [-LogPath ] [] +Get-WindowsFeature [[-Name] ] [-Vhd ] [-ComputerName ] +[-Credential ] [-LogPath ] [] ``` ## DESCRIPTION -The `Get-WindowsFeature` cmdlet gets information about features that are both available for installation and already installed on a computer that is running Windows Server or an offline virtual hard disk (VHD) that is running Windows Server. + +The `Get-WindowsFeature` cmdlet gets information about features that are both available for +installation and already installed on a computer that is running Windows Server or an offline +virtual hard disk (VHD) that is running Windows Server. ## EXAMPLES ### Example 1 + ```powershell Get-WindowsFeature -ComputerName Server1 -Credential contoso.com\user1 ``` -This example gets a list of features that is available and installed on the target computer named Server1. -The credentials for user user1 in the Contoso.com domain, a user who has Administrator rights on Server1, are provided. +This example gets a list of features that is available and installed on the +target computer named Server1. +The credentials for user user1 in the Contoso.com domain, a user who has +Administrator rights on Server1, are provided. ### Example 2 + ```powershell Get-WindowsFeature -Vhd D:\ps-test\vhd1.vhd ``` -This example returns a list of features that is available and installed on the specified offline VHD located at D:\ps-test\vhd1.vhd. +This example returns a list of features that is available and installed on the specified offline VHD +located at D:\ps-test\vhd1.vhd. ### Example 3 + ```powershell Get-WindowsFeature -Name AD*, Web* ``` -This example returns a list of available and installed features that have a command ID starting with AD or Web. +This example returns a list of available and installed features that have a command ID starting with +AD or Web. ### Example 4 + ```powershell Get-WindowsFeature -ComputerName Server01 | Where Installed ``` @@ -55,23 +67,34 @@ Get-WindowsFeature -ComputerName Server01 | Where Installed This example returns a list of features installed on a specified server, Server01. ### Example 5 + ```powershell Get-WindowsFeature -ComputerName Server01 | Where InstallState -Eq Removed ``` -This example returns a list of features on a specified server, Server01, that have installation files removed from the local side-by-side store, and require an external file source for installation. +This example returns a list of features on a specified server, Server01, that have installation +files removed from the local side-by-side store, and require an external file source for +installation. ## PARAMETERS ### -ComputerName -Gets the list of available features from the specified remote computer that is running Windows Server. -The parameter accepts only one computer name. -If this parameter is not added, or no computer name is specified, the default target is the local computer. -Valid values for the parameter include a NetBIOS name, an IP address, or a fully qualified domain name of a remote computer. -To use a remote computer's IP address as the value of this parameter, your command must include the `Credential` parameter. -The computer must either be configured for HTTPS transport, or the IP address of the remote computer must be included in the WinRM TrustedHosts list on the local computer. -For information about adding a computer name to the WinRM TrustedHosts list, see "How to Add a Computer to the Trusted Host List" in [about_Remote_Troubleshooting](https://go.microsoft.com/fwlink/p/?LinkID=135188). +Gets the list of available features from the specified remote computer that is running +Windows Server. +The parameter accepts only one computer name. +If this parameter is not added, or no computer name is specified, the default target is the local +computer. +Valid values for the parameter include a NetBIOS name, an IP address, or a fully qualified domain +name of a remote computer. + +To use a remote computer's IP address as the value of this parameter, your command must include the +`Credential` parameter. +The computer must either be configured for HTTPS transport, or the IP address of the remote computer +must be included in the WinRM TrustedHosts list on the local computer. +For information about adding a computer name to the WinRM TrustedHosts list, see "How to Add a +Computer to the Trusted Host List" in +[about_Remote_Troubleshooting](https://go.microsoft.com/fwlink/p/?LinkID=135188). ```yaml Type: String @@ -86,15 +109,18 @@ Accept wildcard characters: False ``` ### -Credential + Specifies a user account that has access rights to perform this action. -If the parameter is not added, or no value is specified, the default value of this parameter is the current user. +If the parameter is not added, or no value is specified, the default value of this parameter is the +current user. Enter a user name in one of the following formats. Quotation marks are optional. -- "UserName" -- "Domain\User" -- "User@Domain.com" --- A Credential object returned by the [Get-Credential](https://go.microsoft.com/fwlink/p/?LinkID=113311) cmdlet. +-- A Credential object returned by the + [Get-Credential](https://go.microsoft.com/fwlink/p/?LinkID=113311) cmdlet. If a user name is entered, then a prompt for a password is displayed. @@ -111,6 +137,7 @@ Accept wildcard characters: False ``` ### -LogPath + Specifies a name and path to a log file. Add this parameter if the results of this cmdlet must be stored in a log. @@ -127,6 +154,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the command IDs of roles, role services, or features about which to return information. ```yaml @@ -142,19 +170,25 @@ Accept wildcard characters: False ``` ### -Vhd + Specifies the path to an offline VHD. -The path can either point to a VHD file, or to a location on which the VHD is already mounted by using Deployment Image Servicing and Management (DISM) tools. +The path can either point to a VHD file, or to a location on which the VHD is already mounted by +using Deployment Image Servicing and Management (DISM) tools. The VHD can be on a local disk on the target computer, or on a network shared folder. If the VHD is in a network shared folder, then the value of this parameter is a UNC path to the VHD. -In this case, the computer account of the computer that you are using to mount the VHD must have read and write permissions (Read/Write permissions in the File Sharing dialog box, or Full Control on the Security tab of the folder Properties dialog box) on the shared folder, or the VHD will not be accessible. +In this case, the computer account of the computer that you are using to mount the VHD must have +read and write permissions (Read/Write permissions in the File Sharing dialog box, or Full Control +on the Security tab of the folder Properties dialog box) on the shared folder, or the VHD will not +be accessible. Local loopback UNC paths are not supported. Use either of the following formats for the computer account: DOMAIN\SERVERNAME$ or SERVERNAME$. Add the `ComputerName` parameter to specify the target computer you want to use to mount the VHD. If the `ComputerName` parameter is not specified, then the local computer is used. The computer that you are using to mount the VHD must be running Windows Server. -Any local path, such as D:\myFolder, that is specified by using this parameter is always relative to the target computer. +Any local path, such as D:\myFolder, that is specified by using this parameter is always relative to +the target computer. ```yaml Type: String @@ -169,7 +203,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -190,4 +228,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Enable-ServerManagerStandardUserRemoting](./Enable-ServerManagerStandardUserRemoting.md) [Disable-ServerManagerStandardUserRemoting](./Disable-ServerManagerStandardUserRemoting.md) - From e4274fcd850374ccbdfdfa9ef78c891e8a4d8065 Mon Sep 17 00:00:00 2001 From: Joe Gast Date: Thu, 27 Apr 2023 16:06:12 -0700 Subject: [PATCH 491/965] Changed files to use full class names --- .../hgsclient/ConvertTo-HgsKeyProtector.md | 7 ++++--- .../winserver2022-ps/hgsclient/Export-HgsGuardian.md | 2 +- .../hgsclient/Get-HgsAttestationBaselinePolicy.md | 8 ++++---- .../hgsclient/Get-HgsClientConfiguration.md | 6 +++--- docset/winserver2022-ps/hgsclient/Get-HgsGuardian.md | 2 +- .../hgsclient/Grant-HgsKeyProtectorAccess.md | 4 ++-- .../winserver2022-ps/hgsclient/Import-HgsGuardian.md | 8 ++++---- docset/winserver2022-ps/hgsclient/New-HgsGuardian.md | 10 +++++----- .../winserver2022-ps/hgsclient/New-HgsKeyProtector.md | 4 ++-- .../winserver2022-ps/hgsclient/Remove-HgsGuardian.md | 4 ++-- .../hgsclient/Set-HgsClientConfiguration.md | 6 +++--- .../hgsclient/Test-HgsClientConfiguration.md | 4 ++-- 12 files changed, 33 insertions(+), 32 deletions(-) diff --git a/docset/winserver2022-ps/hgsclient/ConvertTo-HgsKeyProtector.md b/docset/winserver2022-ps/hgsclient/ConvertTo-HgsKeyProtector.md index e51776c176..aec3e59df8 100644 --- a/docset/winserver2022-ps/hgsclient/ConvertTo-HgsKeyProtector.md +++ b/docset/winserver2022-ps/hgsclient/ConvertTo-HgsKeyProtector.md @@ -11,6 +11,7 @@ title: ConvertTo-HgsKeyProtector # ConvertTo-HgsKeyProtector ## SYNOPSIS + Converts a key protector into a Host Guardian Service key protector. ## SYNTAX @@ -98,7 +99,7 @@ or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. Th current session on the local computer. ```yaml -Type: CimSession[] +Type: Microsoft.Management.Infrastructure.CimSession[] Parameter Sets: (All) Aliases: Session @@ -118,7 +119,7 @@ computer. The throttle limit applies only to the current cmdlet, not to the sess computer. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: (All) Aliases: @@ -152,4 +153,4 @@ namespace and class name for the underlying WMI object. ## RELATED LINKS -[New-HgsKeyProtector](./New-HgsKeyProtector.md) \ No newline at end of file +[New-HgsKeyProtector](./New-HgsKeyProtector.md) diff --git a/docset/winserver2022-ps/hgsclient/Export-HgsGuardian.md b/docset/winserver2022-ps/hgsclient/Export-HgsGuardian.md index 3026278601..3524873d41 100644 --- a/docset/winserver2022-ps/hgsclient/Export-HgsGuardian.md +++ b/docset/winserver2022-ps/hgsclient/Export-HgsGuardian.md @@ -43,7 +43,7 @@ Specifies the input to this cmdlet. You can use this parameter, or you can pipe the input to this cmdlet. ```yaml -Type: CimInstance +Type: Microsoft.Management.Infrastructure.CimInstance Parameter Sets: (All) Aliases: Guardian diff --git a/docset/winserver2022-ps/hgsclient/Get-HgsAttestationBaselinePolicy.md b/docset/winserver2022-ps/hgsclient/Get-HgsAttestationBaselinePolicy.md index 657264cbf5..b36cff4f3e 100644 --- a/docset/winserver2022-ps/hgsclient/Get-HgsAttestationBaselinePolicy.md +++ b/docset/winserver2022-ps/hgsclient/Get-HgsAttestationBaselinePolicy.md @@ -52,7 +52,7 @@ This command generates a byte array that represents the baseline policy in the f Indicates that this cmdlet operates in console mode. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: Console Aliases: @@ -68,7 +68,7 @@ Accept wildcard characters: False Indicates that this cmdlet overwrites an existing file that the **Output** object specifies. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: File Aliases: @@ -85,7 +85,7 @@ Specifies a file path. This cmdlet writes the policy to the file that this parameter specifies. ```yaml -Type: String +Type: System.String Parameter Sets: File Aliases: FilePath @@ -101,7 +101,7 @@ Accept wildcard characters: False Indicates that this cmdlet skips validation. ```yaml -Type: SwitchParameter +Type: System.Diagnostics.Switch Parameter Sets: (All) Aliases: diff --git a/docset/winserver2022-ps/hgsclient/Get-HgsClientConfiguration.md b/docset/winserver2022-ps/hgsclient/Get-HgsClientConfiguration.md index 6e46797846..3c5333ca11 100644 --- a/docset/winserver2022-ps/hgsclient/Get-HgsClientConfiguration.md +++ b/docset/winserver2022-ps/hgsclient/Get-HgsClientConfiguration.md @@ -51,7 +51,7 @@ For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml -Type: SwitchParameter +Type: System.Diagnostics.Switch Parameter Sets: (All) Aliases: @@ -70,7 +70,7 @@ or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. Th current session on the local computer. ```yaml -Type: CimSession[] +Type: Microsoft.Management.Infrastructure.CimSession[] Parameter Sets: (All) Aliases: Session @@ -90,7 +90,7 @@ computer. The throttle limit applies only to the current cmdlet, not to the sess computer. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: (All) Aliases: diff --git a/docset/winserver2022-ps/hgsclient/Get-HgsGuardian.md b/docset/winserver2022-ps/hgsclient/Get-HgsGuardian.md index fa06f2f03a..e936114040 100644 --- a/docset/winserver2022-ps/hgsclient/Get-HgsGuardian.md +++ b/docset/winserver2022-ps/hgsclient/Get-HgsGuardian.md @@ -60,7 +60,7 @@ For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: diff --git a/docset/winserver2022-ps/hgsclient/Grant-HgsKeyProtectorAccess.md b/docset/winserver2022-ps/hgsclient/Grant-HgsKeyProtectorAccess.md index adc8414e9a..48222ba9d5 100644 --- a/docset/winserver2022-ps/hgsclient/Grant-HgsKeyProtectorAccess.md +++ b/docset/winserver2022-ps/hgsclient/Grant-HgsKeyProtectorAccess.md @@ -61,7 +61,7 @@ The final command grants access to the guardian stored in `$Guardian01` for the Indicates that this cmdlet can grant permissions to a guardian that contains certificates that are expired. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -77,7 +77,7 @@ Accept wildcard characters: False Indicates that this cmdlet can grant permissions to a guardian that uses self-signed certificates. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: diff --git a/docset/winserver2022-ps/hgsclient/Import-HgsGuardian.md b/docset/winserver2022-ps/hgsclient/Import-HgsGuardian.md index add47de27f..e7d4eeb04b 100644 --- a/docset/winserver2022-ps/hgsclient/Import-HgsGuardian.md +++ b/docset/winserver2022-ps/hgsclient/Import-HgsGuardian.md @@ -39,7 +39,7 @@ This command imports a guardian from the specified .xml file. Indicates whether to allow guardian creation with certificates that are expired. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -54,7 +54,7 @@ Accept wildcard characters: False Indicates whether to allow a guardian to be created using self-signed certificates. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -99,7 +99,7 @@ Accept wildcard characters: False Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -114,7 +114,7 @@ Accept wildcard characters: False Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi diff --git a/docset/winserver2022-ps/hgsclient/New-HgsGuardian.md b/docset/winserver2022-ps/hgsclient/New-HgsGuardian.md index 456a7e403d..f39c2cc776 100644 --- a/docset/winserver2022-ps/hgsclient/New-HgsGuardian.md +++ b/docset/winserver2022-ps/hgsclient/New-HgsGuardian.md @@ -69,7 +69,7 @@ The passwords stored in the **$SecureStringPassword01** and **$SecureStringPassw Indicates that this cmdlet can create a guardian by using certificates that are expired. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: AcceptCertificates, ByThumbprints Aliases: @@ -84,7 +84,7 @@ Accept wildcard characters: False Indicates that this cmdlet can create a guardian by using self-signed certificates. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: AcceptCertificates, ByThumbprints Aliases: @@ -149,7 +149,7 @@ If you specify this parameter, the new guardian does not have a trusted root. Therefore, you must also specify the **AllowUntrustedRoot** parameter. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: GenerateCertificates Aliases: @@ -225,7 +225,7 @@ Accept wildcard characters: False Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -241,7 +241,7 @@ Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi diff --git a/docset/winserver2022-ps/hgsclient/New-HgsKeyProtector.md b/docset/winserver2022-ps/hgsclient/New-HgsKeyProtector.md index f44550e6c4..97471f1a1e 100644 --- a/docset/winserver2022-ps/hgsclient/New-HgsKeyProtector.md +++ b/docset/winserver2022-ps/hgsclient/New-HgsKeyProtector.md @@ -53,7 +53,7 @@ The command also grants access to the guardians stored in **$GuardianA** and **$ Indicates that this cmdlet can create a key protector by using certificates that are expired. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -68,7 +68,7 @@ Accept wildcard characters: False Indicates that this cmdlet can create a key protector by using self-signed certificates. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: diff --git a/docset/winserver2022-ps/hgsclient/Remove-HgsGuardian.md b/docset/winserver2022-ps/hgsclient/Remove-HgsGuardian.md index 2bebe40b1f..d1b362105a 100644 --- a/docset/winserver2022-ps/hgsclient/Remove-HgsGuardian.md +++ b/docset/winserver2022-ps/hgsclient/Remove-HgsGuardian.md @@ -73,7 +73,7 @@ Accept wildcard characters: False Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -89,7 +89,7 @@ Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi diff --git a/docset/winserver2022-ps/hgsclient/Set-HgsClientConfiguration.md b/docset/winserver2022-ps/hgsclient/Set-HgsClientConfiguration.md index 938cf954e6..71a70340ea 100644 --- a/docset/winserver2022-ps/hgsclient/Set-HgsClientConfiguration.md +++ b/docset/winserver2022-ps/hgsclient/Set-HgsClientConfiguration.md @@ -79,7 +79,7 @@ Indicates that this cmdlet changes the mode of client from Host Guardian Service A change in mode to Local resets the attestation server and key protection server URLs. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: ChangeToLocalMode Aliases: @@ -140,7 +140,7 @@ Accept wildcard characters: False Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -156,7 +156,7 @@ Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi diff --git a/docset/winserver2022-ps/hgsclient/Test-HgsClientConfiguration.md b/docset/winserver2022-ps/hgsclient/Test-HgsClientConfiguration.md index f2a3aab4bc..f91352588f 100644 --- a/docset/winserver2022-ps/hgsclient/Test-HgsClientConfiguration.md +++ b/docset/winserver2022-ps/hgsclient/Test-HgsClientConfiguration.md @@ -58,7 +58,7 @@ Performs an attestation attempt using the fallback HGS server. Specifies that the HGS client should only attest against the fallback attestation server. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: Fallback Aliases: @@ -73,7 +73,7 @@ Accept wildcard characters: False Specifies that the HGS client should only attest against the primary attestation server. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: Primary Aliases: From 560447f4637485496775ab5290f17225d4456aed Mon Sep 17 00:00:00 2001 From: Paula Kingsley Date: Thu, 27 Apr 2023 16:10:28 -0700 Subject: [PATCH 492/965] Line breaks and bold asterisks and stuff --- .../winserver2022-ps/grouppolicy/Get-GPO.md | 107 ++++++++++++------ 1 file changed, 73 insertions(+), 34 deletions(-) diff --git a/docset/winserver2022-ps/grouppolicy/Get-GPO.md b/docset/winserver2022-ps/grouppolicy/Get-GPO.md index 1c955208c6..29dd4f43ce 100644 --- a/docset/winserver2022-ps/grouppolicy/Get-GPO.md +++ b/docset/winserver2022-ps/grouppolicy/Get-GPO.md @@ -16,32 +16,42 @@ Gets one GPO or all the GPOs in a domain. ## SYNTAX ### ByGUID (Default) + ``` Get-GPO [-Guid] [[-Domain] ] [[-Server] ] [-All] [] ``` ### ByName + ``` Get-GPO [-Name] [[-Domain] ] [[-Server] ] [-All] [] ``` ### GetAll + ``` Get-GPO [[-Domain] ] [[-Server] ] [-All] [] ``` ## DESCRIPTION + The **Get-GPO** cmdlet gets one Group Policy Object (GPO) or all the GPOs in a domain. -You can specify a GPO by its display name or by its globally unique identifier (GUID) to get a single GPO, or you can get all the GPOs in the domain through the *All* parameter. +You can specify a GPO by its display name or by its globally unique identifier (GUID) to get a +single GPO, or you can get all the GPOs in the domain through the **All** parameter. This cmdlet returns one or more objects that represent the requested GPOs. -By default, properties of the requested GPOs are printed to the display; however, you can also pipe the output of the **Get-GPO** cmdlet to other Group Policy cmdlets. +By default, properties of the requested GPOs are printed to the display; however, you can also pipe +the output of the **Get-GPO** cmdlet to other Group Policy cmdlets. ## EXAMPLES ### Example 1: Get a single GPO from a domain + +```powershell +Get-GPO -Name "Group Policy Test" +``` + ``` -PS C:\> Get-GPO -Name "Group Policy Test" DisplayName : Group Policy Test DomainName : contoso.com @@ -66,12 +76,17 @@ WmiFilter : ``` This command gets the GPO named Group Policy Test. -The GPO must exist in the domain of the user that is running the session (or, for startup and shutdown scripts, the computer). +The GPO must exist in the domain of the user that is running the session (or, for startup and +shutdown scripts, the computer). The command gets the GPO information by contacting the primary domain controller (PDC). ### Example 2: Get a single GPO by GUID + +```powershell +Get-GPO -Guid 31a09564-cd4a-4520-98fa-446a2af23b4b -Domain "sales.contoso.com" ``` -PS C:\> Get-GPO -Guid 31a09564-cd4a-4520-98fa-446a2af23b4b -Domain "sales.contoso.com" + +```output DisplayName : Group Policy Test DomainName : sales.contoso.com @@ -95,13 +110,16 @@ ComputerVersion : AD Version: 0, SysVol Version: 0 WmiFilter : ``` -This command gets the GPO that has the ID (GUID) 331a09564-cd4a-4520-98fa-446a2af23b4b in the sales.contoso.com domain. -If the domain of the user that is running the session (or, for startup and shutdown scripts, the computer) is different that sales.contoso.com, a trust must exist between the two domains. +This command gets the GPO that has the ID (GUID) 331a09564-cd4a-4520-98fa-446a2af23b4b in the +sales.contoso.com domain. +If the domain of the user that is running the session (or, for startup and shutdown scripts, the +computer) is different that sales.contoso.com, a trust must exist between the two domains. The command retrieves the GPO information by contacting the PDC (in the sales.contoso.com domain). ### Example 3: Get all GPOs from a domain -``` -PS C:\> Get-GPO -All -Domain "sales.contoso.com" + +```powershell +Get-GPO -All -Domain "sales.contoso.com" ``` This command get all the GPOs in the sales.contoso.com domain. @@ -109,6 +127,7 @@ This command get all the GPOs in the sales.contoso.com domain. ## PARAMETERS ### -All + Indicates that the cmdlet gets all the GPOs in the domain. ```yaml @@ -124,19 +143,24 @@ Accept wildcard characters: False ``` ### -Domain + Specifies the domain for this cmdlet. You must specify the fully qualified domain name (FQDN) of the domain. For the **Get-GPO** cmdlet, the GPO (or GPOs) to that this cmdlet gets must exist in this domain. -If you do not specify the *Domain* parameter, the domain of the user that is running the current session is used. -If the cmdlet is being run from a computer startup or shutdown script, the domain of the computer is used. +If you do not specify the **Domain** parameter, the domain of the user that is running the current +session is used. +If the cmdlet is being run from a computer startup or shutdown script, the domain of the computer +is used. For more information, see the Notes section in the full Help. -If you specify a domain that is different from the domain of the user that is running the current session (or, for a startup or shutdown script, the computer), a trust must exist between that domain and the domain of the user or the computer. +If you specify a domain that is different from the domain of the user that is running the current +session (or, for a startup or shutdown script, the computer), a trust must exist between that +domain and the domain of the user or the computer. -You can also refer to the *Domain* parameter by its built-in alias, domainname. -For more information, see about_Aliases. +You can also refer to the **Domain** parameter by its built-in alias, **domainname.** +For more information, see **about_Aliases.** ```yaml Type: String @@ -151,10 +175,11 @@ Accept wildcard characters: False ``` ### -Guid + Specifies the GPO to retrieve by its globally unique identifier (GUID). The GUID uniquely identifies the GPO. -You can also refer to the *Guid* parameter by its built-in alias, id. +You can also refer to the **Guid** parameter by its built-in alias, **id.** ```yaml Type: Guid @@ -169,13 +194,14 @@ Accept wildcard characters: False ``` ### -Name + Specifies the GPO to retrieve by its display name. The display name is not guaranteed to be unique in the domain. If another GPO with the same display name exists in the domain an error occurs. You can use the Guid parameter to uniquely identify a GPO. -You can also refer to the *Name* parameter by its built-in alias, displayname. +You can also refer to the **Name** parameter by its built-in alias, **displayname.** ```yaml Type: String @@ -190,12 +216,14 @@ Accept wildcard characters: False ``` ### -Server + Specifies the name of the domain controller that this cmdlet contacts to complete the operation. You can specify either the fully qualified domain name (FQDN) or the host name. -If you do not specify the name by using the Server parameter, the primary domain controller (PDC) emulator is contacted. +If you do not specify the name by using the Server parameter, the primary domain controller (PDC) +emulator is contacted. -You can also refer to the Server parameter by its built-in alias, dc. +You can also refer to the **Server** parameter by its built-in alias, **dc.** ```yaml Type: String @@ -210,11 +238,16 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. +For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### Microsoft.GroupPolicy.Gpo + You can pipe a GPO for which to get information to this cmdlet. You can pipe GPO objects into this cmdlet to display information about the GPOs. Collections that contain GPOs from different domains are not supported. @@ -222,24 +255,30 @@ Collections that contain GPOs from different domains are not supported. ## OUTPUTS ### Microsoft.GroupPolicy.Gpo + This cmdlet returns an object that represents the requested GPO. ## NOTES -* You can use the *Domain* parameter to explicitly specify the domain for this cmdlet. - - If you do not explicitly specify the domain, the cmdlet uses a default domain. -The default domain is the domain that is used to access network resources by the security context under which the current session is running. -This domain is typically the domain of the user that is running the session. -For example, the domain of the user who started the session by opening Windows PowerShell from the Program Files menu, or the domain of a user that is specified in a runas command. -However, computer startup and shutdown scripts run under the context of the LocalSystem account. -The LocalSystem account is a built-in local account, and it accesses network resources under the context of the computer account. -Therefore, when this cmdlet is run from a startup or shutdown script, the default domain is the domain to which the computer is joined. - - Only one domain can be used by an instance of this cmdlet. -If you pipe a collection of GPO (Microsoft.GroupPolicy.Gpo) objects to this cmdlet, the DomainName property of the first GPO object in the collection specifies the domain for the cmdlet. -This is because domainname is a built-in alias for the *Domain* parameter, and the *Domain* parameter can take its value by property name from the pipeline. -A non-terminating error occurs for any GPOs in the collection that are not in this domain. -If this domain is different from the domain of the user account (for startup or shutdown scripts, the computer account), a trust must exist between the two domains. + +- You can use the **Domain** parameter to explicitly specify the domain for this cmdlet. + + If you do not explicitly specify the domain, the cmdlet uses a default domain. The default domain + is the domain that is used to access network resources by the security context under which the + current session is running. This domain is typically the domain of the user that is running the + session. For example, the domain of the user who started the session by opening Windows PowerShell + from the Program Files menu, or the domain of a user that is specified in a runas command. + However, computer startup and shutdown scripts run under the context of the LocalSystem account. + The LocalSystem account is a built-in local account, and it accesses network resources under the + context of the computer account. Therefore, when this cmdlet is run from a startup or shutdown + script, the default domain is the domain to which the computer is joined. + + Only one domain can be used by an instance of this cmdlet. If you pipe a collection of GPO + (Microsoft.GroupPolicy.Gpo) objects to this cmdlet, the DomainName property of the first GPO + object in the collection specifies the domain for the cmdlet. This is because **domainname** is a + built-in alias for the **Domain** parameter, and the **Domain** parameter can take its value by + property name from the pipeline. A non-terminating error occurs for any GPOs in the collection + that are not in this domain. If this domain is different from the domain of the user account (for + startup or shutdown scripts, the computer account), a trust must exist between the two domains. ## RELATED LINKS From 913ad4c92ce87c128ada55a8c1b84fd62809ea11 Mon Sep 17 00:00:00 2001 From: 53883 Date: Fri, 28 Apr 2023 01:11:14 +0200 Subject: [PATCH 493/965] typenames --- .../ServerManager/Get-WindowsFeature.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docset/winserver2022-ps/ServerManager/Get-WindowsFeature.md b/docset/winserver2022-ps/ServerManager/Get-WindowsFeature.md index 6aa9c5af6a..1a47056053 100644 --- a/docset/winserver2022-ps/ServerManager/Get-WindowsFeature.md +++ b/docset/winserver2022-ps/ServerManager/Get-WindowsFeature.md @@ -97,7 +97,7 @@ Computer to the Trusted Host List" in [about_Remote_Troubleshooting](https://go.microsoft.com/fwlink/p/?LinkID=135188). ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: Cn @@ -120,12 +120,12 @@ Quotation marks are optional. -- "Domain\User" -- "User@Domain.com" -- A Credential object returned by the - [Get-Credential](https://go.microsoft.com/fwlink/p/?LinkID=113311) cmdlet. + [Get-Credential](https://go.microsoft.com/fwlink/p/?LinkID=113311) cmdlet. If a user name is entered, then a prompt for a password is displayed. ```yaml -Type: PSCredential +Type: System.Management.Automation.PSCredential Parameter Sets: (All) Aliases: @@ -142,7 +142,7 @@ Specifies a name and path to a log file. Add this parameter if the results of this cmdlet must be stored in a log. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -158,7 +158,7 @@ Accept wildcard characters: False Specifies the command IDs of roles, role services, or features about which to return information. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: (All) Aliases: @@ -191,7 +191,7 @@ Any local path, such as D:\myFolder, that is specified by using this parameter i the target computer. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: From 5eea27043019992c9d744539b7379caf945ff692 Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Thu, 27 Apr 2023 18:31:49 -0400 Subject: [PATCH 494/965] Resolved formatting issues to comply with PowerShell-Docs style guide. --- .../Add-CertificateEnrollmentPolicyServer.md | 126 ++++++++++++------ 1 file changed, 83 insertions(+), 43 deletions(-) diff --git a/docset/winserver2022-ps/pki/Add-CertificateEnrollmentPolicyServer.md b/docset/winserver2022-ps/pki/Add-CertificateEnrollmentPolicyServer.md index fc8b19a27d..e39c378093 100644 --- a/docset/winserver2022-ps/pki/Add-CertificateEnrollmentPolicyServer.md +++ b/docset/winserver2022-ps/pki/Add-CertificateEnrollmentPolicyServer.md @@ -11,83 +11,109 @@ title: Add-CertificateEnrollmentPolicyServer # Add-CertificateEnrollmentPolicyServer ## SYNOPSIS + Adds an enrollment policy server to the current user or local system configuration. ## SYNTAX ``` Add-CertificateEnrollmentPolicyServer [-NoClobber] -Url [-RequireStrongValidation] - [-Credential ] -context [-AutoEnrollmentEnabled] [-WhatIf] [-Confirm] - [] + [-Credential ] -context [-AutoEnrollmentEnabled] [-WhatIf] + [-Confirm] [] ``` ## DESCRIPTION -The **Add-CertificateEnrollmentPolicyServer** cmdlet adds an enrollment policy server to the current user or local system configuration. -If an enrollment policy server already exists, then this cmdlet will overwrite it. -Group Policy can be configured to prevent enrollment policy servers from being added. -Delegation may be required when using this cmdlet with Windows PowerShell® remoting and changing user configuration. +The `Add-CertificateEnrollmentPolicyServer` cmdlet adds an enrollment policy server to the current +user or local system configuration. If an enrollment policy server already exists, then this cmdlet +will overwrite it. Group Policy can be configured to prevent enrollment policy servers from being +added. + +Delegation may be required when using this cmdlet with Windows PowerShell remoting and changing +user configuration. ## EXAMPLES ### EXAMPLE 1 -``` -PS C:\>Add-CertificateEnrollmentPolicyServer -Url $url -Context Machine + +```powershell +Add-CertificateEnrollmentPolicyServer -Url $url -Context Machine ``` -This example loads a policy from $url using Windows integrated authentication under the computer context, using the computer account credentials. -This example also adds the policy server to the local computer configuration. -Auto enrollment is off and strong validation is off. +This example loads a policy from `$url` using Windows integrated authentication under the computer +context, using the computer account credentials. This example also adds the policy server to the +local computer configuration. Auto enrollment is off and strong validation is off. ### EXAMPLE 2 -``` -PS C:\>$cert = Get-ChildItem -Path cert:\LocalMachine\My\EEDEF61D4FF6EDBAAD538BB08CCAADDC3EE28FF -PS C:\>Add-CertificateEnrollmentPolicyServer -Url $cert.EnrollmentPolicyEndPoint.Url -Credential $cert -Context Machine +```powershell +$cert = Get-ChildItem -Path cert:\LocalMachine\My\EEDEF61D4FF6EDBAAD538BB08CCAADDC3EE28FF + +$parameters = @{ + Url = $cert.EnrollmentPolicyEndPoint.Url + Credential = $cert + Context = 'Machine' +} +Add-CertificateEnrollmentPolicyServer @parameters ``` -This example loads a policy using $cert as the authentication credential and adds the policy to the local computer local configuration since the context is the local computer (Machine). +This example loads a policy using `$cert` as the authentication credential and adds the policy to +the local computer local configuration since the context is the local computer (Machine). ### EXAMPLE 3 -``` -PS C:\>$up = Get-Credential -PS C:\>Add-CertificateEnrollmentPolicyServer -Url $url -Context Machine -Credential $up +```powershell +$up = Get-Credential + +Add-CertificateEnrollmentPolicyServer -Url $url -Context Machine -Credential $up ``` -This example loads a policy using the username and password from $url. +This example loads a policy using the username and password from `$url`. This example adds the policy server to the local computer configuration. ### EXAMPLE 4 -``` -PS C:\>$cert = Get-ChildItem -Path cert:\CurrentUser\My\EEDEF61D4FF6EDBAAD538BB08CCAADDC3EE28FF -PS C:\>Add-CertificateEnrollmentPolicyServer -Url $cert.EnrollmentPolicyEndPoint.Url -Credential $cert.PSPath -Context Machine +```powershell +$cert = Get-ChildItem -Path cert:\CurrentUser\My\EEDEF61D4FF6EDBAAD538BB08CCAADDC3EE28FF + +$parameters = @{ + Url = $cert.EnrollmentPolicyEnd + Credential = $cert.PSPath + Context = 'Machine' +} +Add-CertificateEnrollmentPolicyServer @parameters ``` -This example loads policy using the Path object for a certificate. -Use the certificate to authenticate to the URL and add the policy server into the local user configuration. +This example loads policy using the Path object for a certificate. Use the certificate to +authenticate to the URL and add the policy server into the local user configuration. ### EXAMPLE 5 + +```powershell +$up = Get-Credential + +Add-CertificateEnrollmentPolicyServer -Url $url -Context User -Credential $up -WhatIf ``` -PS C:\>$up = Get-Credential -PS C:\>Add-CertificateEnrollmentPolicyServer -Url $url -Context User -Credential $up -WhatIf +```Output What if: Policy successfully loaded from {$url} using username/password credentials. Policy server configuration will be added to current user context. ``` -This example shows that if the policy cannot be loaded or if there is a conflict with an identifier (ID) or URL, then this will be the output. +This example shows that if the policy cannot be loaded or if there is a conflict with an identifier +(ID) or URL, then this will be the output. -If the policy server already exists, then the output will state that the existing policy server configuration will be overwritten. +If the policy server already exists, then the output will state that the existing policy server +configuration will be overwritten. ## PARAMETERS ### -AutoEnrollmentEnabled + Enables auto-enrollment for the policy server being added. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -99,10 +125,11 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -114,12 +141,13 @@ Accept wildcard characters: False ``` ### -Credential -Specifies the credential used to authenticate to the policy server. -This credential can be a **PSCredential** object, which is a username and password, an x509 certificate, or a path to an x509 certificate. -Kerberos authentication is used if no credential is specified. + +Specifies the credential used to authenticate to the policy server. This credential can be a +**PSCredential** object, which is a username and password, an x509 certificate, or a path to an x509 +certificate. Kerberos authentication is used if no credential is specified. ```yaml -Type: PkiCredential +Type: Microsoft.CertificateServices.Commands.PkiCredential Parameter Sets: (All) Aliases: @@ -131,10 +159,11 @@ Accept wildcard characters: False ``` ### -NoClobber + Prevents an enrollment policy server from overwriting an existing one. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -146,10 +175,12 @@ Accept wildcard characters: False ``` ### -RequireStrongValidation -Specifies that the certificate obtained through this enrollment policy server must be trusted on the client. + +Specifies that the certificate obtained through this enrollment policy server must be trusted on the +client. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -161,10 +192,11 @@ Accept wildcard characters: False ``` ### -Url + Identifies the uniform resource locator (URL) of the enrollment policy server to configure. ```yaml -Type: Uri +Type: System.Uri Parameter Sets: (All) Aliases: @@ -176,6 +208,7 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. @@ -191,11 +224,13 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -context -Stores information about the policy server in the configuration for the Current User or Local computer. +### -Context + +Stores information about the policy server in the configuration for the Current User or Local +computer. ```yaml -Type: Context +Type: Microsoft.CertificateServices.Commands.Context Parameter Sets: (All) Aliases: Accepted values: Machine, User @@ -208,16 +243,22 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### Microsoft.CertificateServices.Commands.EnrollmentPolicyServer + The **EnrollmentPolicyServer** object contains information about the certificate enrollment policy. ## OUTPUTS ### Microsoft.CertificateServices.Commands.EnrollmentPolicyServer + The **EnrollmentPolicyServer** object contains information about the certificate enrollment policy. ## NOTES @@ -231,4 +272,3 @@ The **EnrollmentPolicyServer** object contains information about the certificate [Get-CertificateEnrollmentPolicyServer](./Get-CertificateEnrollmentPolicyServer.md) [Remove-CertificateEnrollmentPolicyServer](./Remove-CertificateEnrollmentPolicyServer.md) - From 665042742385d26c34a89fde35007f9e512a39bd Mon Sep 17 00:00:00 2001 From: thepowerstring Date: Thu, 27 Apr 2023 16:13:58 -0700 Subject: [PATCH 495/965] Update Set-ADUser.md Updated set-aduser help --- .../activedirectory/Set-ADUser.md | 387 ++++++++++++------ 1 file changed, 252 insertions(+), 135 deletions(-) diff --git a/docset/winserver2022-ps/activedirectory/Set-ADUser.md b/docset/winserver2022-ps/activedirectory/Set-ADUser.md index 42e7f3940e..3e75667534 100644 --- a/docset/winserver2022-ps/activedirectory/Set-ADUser.md +++ b/docset/winserver2022-ps/activedirectory/Set-ADUser.md @@ -11,11 +11,13 @@ title: Set-ADUser # Set-ADUser ## SYNOPSIS + Modifies an Active Directory user. ## SYNTAX ### Identity + ``` Set-ADUser [-WhatIf] [-Confirm] [-AccountExpirationDate ] [-AccountNotDelegated ] [-Add ] [-AllowReversiblePasswordEncryption ] @@ -38,12 +40,14 @@ Set-ADUser [-WhatIf] [-Confirm] [-AccountExpirationDate ] [-AccountNot ``` ### Instance + ``` Set-ADUser [-WhatIf] [-Confirm] [-AuthType ] [-Credential ] -Instance [-PassThru] [-SamAccountName ] [-Server ] [] ``` ## DESCRIPTION + The **Set-ADUser** cmdlet modifies the properties of an Active Directory user. You can modify commonly used property values by using the cmdlet parameters. You can set property values that are not associated with cmdlet parameters by using the *Add*, *Remove*, *Replace*, and *Clear* parameters. @@ -70,6 +74,7 @@ To specify a default naming context for an AD LDS environment, set the **msDS-de ## EXAMPLES ### Example 1: Set properties for a user + ```powershell PS C:\> Set-ADUser -Identity ChewDavid -HomePage 'http://fabrikam.com/employees/ChewDavid' -LogonWorkstations 'ChewDavid-DSKTOP,ChewDavid-LPTOP' ``` @@ -77,6 +82,7 @@ PS C:\> Set-ADUser -Identity ChewDavid -HomePage 'http://fabrikam.com/employees/ This command sets the specified user's **homepage** property to http://fabrikam.com/employees/ChewDavid and the **LogonWorkstations** property to ChewDavid-DSKTOP,ChewDavid-LPTOP. ### Example 2: Set properties for multiple users + ```powershell PS C:\> Get-ADUser -Filter 'Name -like "*"' -SearchBase 'OU=HumanResources,OU=UserAccounts,DC=FABRIKAM,DC=COM' -Properties DisplayName | % {Set-ADUser $_ -DisplayName ($_.Surname + ' ' + $_.GivenName)} ``` @@ -85,6 +91,7 @@ This command gets all the users in the directory that are located in the OU=Huma The command sets the **DisplayName** property on these user objects to the concatenation of the **Surname** property and the **GivenName** property. ### Example 3: Set properties + ```powershell PS C:\> Set-ADUser -Identity GlenJohn -Replace @{title="director";mail="glenjohn@fabrikam.com"} ``` @@ -92,6 +99,7 @@ PS C:\> Set-ADUser -Identity GlenJohn -Replace @{title="director";mail="glenjohn This command sets the specified user's **title** property to director and the **mail** property to glenjohn@fabrikam.com. ### Example 4: Modify a user otherMailbox property + ```powershell PS C:\> Set-ADUser -Identity GlenJohn -Remove @{otherMailbox="glen.john"} -Add @{url="fabrikam.com"} -Replace @{title="manager"} -Clear description ``` @@ -99,6 +107,7 @@ PS C:\> Set-ADUser -Identity GlenJohn -Remove @{otherMailbox="glen.john"} -Add @ This command modifies the user with the SAM account name GlenJohn's object by removing glen.john from the **otherMailbox** property, adding fabrikam.com to the **url** property, replacing the **title** property with manager, and clearing the **description** property. ### Example 5: Set user properties to a local instance + ```powershell PS C:\> $User = Get-ADUser -Identity GlenJohn -Properties mail,department PS C:\> $User.mail = "glen@fabrikam.com" @@ -109,6 +118,7 @@ PS C:\> Set-ADUser -Instance $User This example sets the **mail** and **department** properties on the user object with the SAM account name GlenJohn by using the *Instance* parameter. ### Example 6: Set attributes for a user + ```powershell PS C:\> $Hours = New-Object byte[] 21 PS C:\> $Hours[5] = 255; $Hours[8] = 255; $Hours[11] = 255; $Hours[14] = 255; $Hours[17] = 255; @@ -123,6 +133,7 @@ This example sets the user logon hours to Monday through Friday from 8:00 AM to It updates the **logonHours** attribute with the specified byte array and the **description** attribute with the specified string. ### Example 7: Set a property for a user + ```powershell PS C:\> $Manager = Get-ADUser -Identity GlenJohn -Server Corp-DC01 PS C:\> Set-ADUser -Identity ChewDavid -Manager $Manager -Server Branch-DC02 @@ -131,6 +142,7 @@ PS C:\> Set-ADUser -Identity ChewDavid -Manager $Manager -Server Branch-DC02 This example sets the **Manager** property for the user with the SAM account name of ChewDavid where the manager, GlenJohn, is a user in another domain. ### Example 8: Get a user and set a property + ```powershell PS C:\> Get-ADUser -Identity "DavidChew" | Set-ADUser -Manager "ElisaDaugherty" ``` @@ -141,6 +153,7 @@ The command uses the **Get-ADUser** cmdlet to get the user DavidChew, and then p ## PARAMETERS ### -AccountExpirationDate + Specifies the expiration date for an account. This parameter sets the AccountExpirationDate property of an account object. The LDAP display name (ldapDisplayName) for this property is accountExpires. @@ -163,6 +176,7 @@ Accept wildcard characters: False ``` ### -AccountNotDelegated + Indicates whether the security context of the user is delegated to a service. When this parameter is set to $True, the security context of the account is not delegated to a service even when the service account is set as trusted for Kerberos delegation. This parameter sets the **AccountNotDelegated** property for an Active Directory account. @@ -185,11 +199,13 @@ Accept wildcard characters: False ``` ### -Add -Specifies values to add to an object property. -Use this parameter to add one or more values to a property that cannot be modified using a cmdlet parameter. -To modify an object property, you must use the LDAP display name. -You can specify multiple values to a property by specifying a comma-separated list of values, and more than one property by separating them using a semicolon. If any of the properties have a null or empty value the cmdlet will return an error. -The format for this parameter is: + +Specifies values to add to an object property. Use this parameter to add one or more values to a +property that cannot be modified using a cmdlet parameter. To modify an object property, you must +use the LDAP display name. You can specify multiple values to a property by specifying a +comma-separated list of values, and more than one property by separating them using a semicolon. If +any of the properties have a null or empty value the cmdlet will return an error. The format for +this parameter is: `-Add @{Attribute1LDAPDisplayName=value1, value2, ...; Attribute2LDAPDisplayName=value1, value2, ...; AttributeNLDAPDisplayName=value1, value2, ...}` @@ -213,10 +229,11 @@ Accept wildcard characters: False ``` ### -AllowReversiblePasswordEncryption -Indicates whether reversible password encryption is allowed for the account. -This parameter sets the **AllowReversiblePasswordEncryption** property of the account. -This parameter also sets the **ADS_UF_ENCRYPTED_TEXT_PASSWORD_ALLOWED** flag of the Active Directory User Account Control (UAC) attribute. -The acceptable values for this parameter are: + +Indicates whether reversible password encryption is allowed for the account. This parameter sets the +**AllowReversiblePasswordEncryption** property of the account. This parameter also sets the +**ADS_UF_ENCRYPTED_TEXT_PASSWORD_ALLOWED** flag of the Active Directory User Account Control (UAC) +attribute. The acceptable values for this parameter are: - $False or 0 - $True or 1 @@ -234,14 +251,16 @@ Accept wildcard characters: False ``` ### -AuthenticationPolicy + Specifies an Active Directory Domain Services authentication policy object. -Specify the authentication policy object in one of the following formats: +Specify the authentication policy object in one of the following formats: - Distinguished name - GUID - Name -This parameter can also get this object through the pipeline or you can set this parameter to an object instance. +This parameter can also get this object through the pipeline or you can set this parameter to an +object instance. The cmdlet searches the default naming context or partition to find the object. If the cmdlet finds two or more objects, the cmdlet returns a non-terminating error. @@ -259,14 +278,16 @@ Accept wildcard characters: False ``` ### -AuthenticationPolicySilo + Specifies an Active Directory Domain Services authentication policy silo object. -Specify the authentication policy silo object in one of the following formats: +Specify the authentication policy silo object in one of the following formats: - Distinguished name - GUID - Name -This parameter can also get this object through the pipeline or you can set this parameter to an object instance. +This parameter can also get this object through the pipeline or you can set this parameter to an +object instance. The cmdlet searches the default naming context or partition to find the object. If the cmdlet finds two or more objects, the cmdlet returns a non-terminating error. @@ -284,6 +305,7 @@ Accept wildcard characters: False ``` ### -AuthType + Specifies the authentication method to use. The acceptable values for this parameter are: @@ -308,6 +330,7 @@ Accept wildcard characters: False ``` ### -CannotChangePassword + Indicates whether the account password can be changed. This parameter sets the **CannotChangePassword** property of an account. The acceptable values for this parameter are: @@ -328,11 +351,12 @@ Accept wildcard characters: False ``` ### -Certificates -Specifies an array of certificates. -The cmdlet modifies the DER-encoded X.509v3 certificates of the account. -These certificates include the public key certificates issued to this account by the Microsoft Certificate Service. -This parameter sets the **Certificates** property of the account object. -The Lightweight Directory Access Protocol (LDAP) display name (**ldapDisplayName**) for this property is userCertificate. + +Specifies an array of certificates. The cmdlet modifies the DER-encoded X.509v3 certificates of the +account. These certificates include the public key certificates issued to this account by the +Microsoft Certificate Service. This parameter sets the **Certificates** property of the account +object. The Lightweight Directory Access Protocol (LDAP) display name (**ldapDisplayName**) for this +property is userCertificate. To add values: @@ -355,7 +379,7 @@ For example, use the following syntax to add and remove **Certificates** values: `-Certificates @{Add=value1;Remove=value3}` -The operators are applied in the following sequence: +The operators are applied in the following sequence: - Remove - Add @@ -374,7 +398,8 @@ Accept wildcard characters: False ``` ### -ChangePasswordAtLogon -Indicates whether a password must be changed during the next logon attempt. + +Indicates whether a password must be changed during the next logon attempt. The acceptable values for this parameter are: - $False or 0 @@ -393,6 +418,7 @@ Accept wildcard characters: False ``` ### -City + Specifies the user's town or city. This parameter sets the **City** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is l. @@ -410,15 +436,16 @@ Accept wildcard characters: False ``` ### -Clear -Specifies an array of object properties that are cleared in the directory. -Use this parameter to clear one or more values of a property that cannot be modified using a cmdlet parameter. -To modify an object property, you must use the LDAP display name. -You can modify more than one property by specifying a comma-separated list. -The format for this parameter is: + +Specifies an array of object properties that are cleared in the directory. Use this parameter to +clear one or more values of a property that cannot be modified using a cmdlet parameter. To modify +an object property, you must use the LDAP display name. You can modify more than one property by +specifying a comma-separated list. The format for this parameter is: `-Clear Attribute1LDAPDisplayName, Attribute2LDAPDisplayName` -When you use the *Add*, *Remove*, *Replace*, and *Clear* parameters together, the operations are performed in the following order: +When you use the *Add*, *Remove*, *Replace*, and *Clear* parameters together, the operations are +performed in the following order: - **Remove** - **Add** @@ -438,6 +465,7 @@ Accept wildcard characters: False ``` ### -Company + Specifies the user's company. This parameter sets the **Company** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is company. @@ -455,15 +483,18 @@ Accept wildcard characters: False ``` ### -CompoundIdentitySupported -Indicates whether an account supports Kerberos service tickets which includes the authorization data for the user's device. -This value sets the compound identity supported flag of the Active Directory **msDS-SupportedEncryptionTypes** attribute. -The acceptable values for this parameter are: + +Indicates whether an account supports Kerberos service tickets which includes the authorization data +for the user's device. This value sets the compound identity supported flag of the Active Directory +**msDS-SupportedEncryptionTypes** attribute. The acceptable values for this parameter are: - $False or 0 - $True or 1 -Warning: Domain-joined Windows systems and services such as clustering manage their own **msDS-SupportedEncryptionTypes** attribute. -Therefore any changes to the flag on the **msDS-SupportedEncryptionTypes** attribute are overwritten by the service or system that manages the setting. +Warning: Domain-joined Windows systems and services such as clustering manage their own +**msDS-SupportedEncryptionTypes** attribute. Therefore any changes to the flag on the +**msDS-SupportedEncryptionTypes** attribute are overwritten by the service or system that manages +the setting. ```yaml Type: Boolean @@ -478,6 +509,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -493,6 +525,7 @@ Accept wildcard characters: False ``` ### -Country + Specifies the country or region code for the user's language of choice. This parameter sets the **Country** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is c. @@ -511,17 +544,20 @@ Accept wildcard characters: False ``` ### -Credential -Specifies the user account credentials to use to perform this task. -The default credentials are the credentials of the currently logged on user unless the cmdlet is run from an Active Directory PowerShell provider drive. -If the cmdlet is run from such a provider drive, the account associated with the drive is the default. + +Specifies the user account credentials to use to perform this task. The default credentials are the +credentials of the currently logged on user unless the cmdlet is run from an Active Directory +PowerShell provider drive. If the cmdlet is run from such a provider drive, the account associated +with the drive is the default. To specify this parameter, you can type a user name, such as `User1` or `Domain01\User01` or you can specify a **PSCredential** object. If you specify a user name for this parameter, the cmdlet prompts for a password. -You can also create a **PSCredential** object by using a script or by using the Get-Credential cmdlet. -You can then set the *Credential* parameter to the **PSCredential** object. +You can also create a **PSCredential** object by using a script or by using the Get-Credential +cmdlet. You can then set the _Credential_ parameter to the **PSCredential** object. -If the acting credentials do not have directory-level permission to perform the task, Active Directory PowerShell returns a terminating error. +If the acting credentials do not have directory-level permission to perform the task, Active +Directory PowerShell returns a terminating error. ```yaml Type: PSCredential @@ -536,6 +572,7 @@ Accept wildcard characters: False ``` ### -Department + Specifies the user's department. This parameter sets the **Department** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is department. @@ -553,6 +590,7 @@ Accept wildcard characters: False ``` ### -Description + Specifies a description of the object. This parameter sets the value of the **Description** property for the user object. The LDAP display name (**ldapDisplayName**) for this property is description. @@ -570,6 +608,7 @@ Accept wildcard characters: False ``` ### -DisplayName + Specifies the display name of the object. This parameter sets the **DisplayName** property of the user object. The LDAP display name (**ldapDisplayName**) for this property is displayName. @@ -587,6 +626,7 @@ Accept wildcard characters: False ``` ### -Division + Specifies the user's division. This parameter sets the **Division** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is division. @@ -604,6 +644,7 @@ Accept wildcard characters: False ``` ### -EmailAddress + Specifies the user's e-mail address. This parameter sets the **EmailAddress** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is mail. @@ -621,6 +662,7 @@ Accept wildcard characters: False ``` ### -EmployeeID + Specifies the user's employee ID. This parameter sets the **EmployeeID** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is employeeID. @@ -638,6 +680,7 @@ Accept wildcard characters: False ``` ### -EmployeeNumber + Specifies the user's employee number. This parameter sets the **EmployeeNumber** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is employeeNumber. @@ -655,11 +698,11 @@ Accept wildcard characters: False ``` ### -Enabled -Indicates whether an account is enabled. -An enabled account requires a password. -This parameter sets the **Enabled** property for an account object. -This parameter also sets the **ADS_UF_ACCOUNTDISABLE** flag of the Active Directory User Account Control (UAC) attribute. -The acceptable values for this parameter are: + +Indicates whether an account is enabled. An enabled account requires a password. This parameter sets +the **Enabled** property for an account object. This parameter also sets the +**ADS_UF_ACCOUNTDISABLE** flag of the Active Directory User Account Control (UAC) attribute. The +acceptable values for this parameter are: - $False or 0 - $True or 1 @@ -677,6 +720,7 @@ Accept wildcard characters: False ``` ### -Fax + Specifies the user's fax phone number. This parameter sets the **Fax** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is facsimileTelephoneNumber. @@ -694,6 +738,7 @@ Accept wildcard characters: False ``` ### -GivenName + Specifies the user's given name. This parameter sets the **GivenName** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is givenName. @@ -711,6 +756,7 @@ Accept wildcard characters: False ``` ### -HomeDirectory + Specifies a user's home directory. This parameter sets the **HomeDirectory** property of a user object. The LDAP display name (**ldapDisplayName**) for this property is homeDirectory. @@ -728,11 +774,12 @@ Accept wildcard characters: False ``` ### -HomeDrive + Specifies a drive that is associated with the UNC path defined by the **HomeDirectory** property. -The drive letter is specified as ``: where `` indicates the letter of the drive to associate. -The `` must be a single, uppercase letter and the colon is required. -This parameter sets the **HomeDrive** property of the user object. -The LDAP display name (**ldapDisplayName**) for this property is homeDrive. +The drive letter is specified as ``: where `` indicates the letter of the +drive to associate. The `` must be a single, uppercase letter and the colon is +required. This parameter sets the **HomeDrive** property of the user object. The LDAP display name +(**ldapDisplayName**) for this property is homeDrive. ```yaml Type: String @@ -747,6 +794,7 @@ Accept wildcard characters: False ``` ### -HomePage + Specifies the URL of the home page of the object. This parameter sets the **homePage** property of an Active Directory object. The LDAP display name (**ldapDisplayName**) for this property is wWWHomePage. @@ -764,6 +812,7 @@ Accept wildcard characters: False ``` ### -HomePhone + Specifies the user's home telephone number. This parameter sets the **HomePhone** property of a user. The LDAP display name (**ldapDisplayName**) of this property is homePhone. @@ -781,19 +830,21 @@ Accept wildcard characters: False ``` ### -Identity + Specifies an Active Directory user object by providing one of the following property values. The identifier in parentheses is the LDAP display name for the attribute. The acceptable values for this parameter are: - A distinguished name -- A GUID (objectGUID) -- A security identifier (objectSid) +- A GUID (objectGUID) +- A security identifier (objectSid) - A SAM account name (sAMAccountName) The cmdlet searches the default naming context or partition to find the object. If two or more objects are found, the cmdlet returns a non-terminating error. -This parameter can also get this object through the pipeline or you can set this parameter to an object instance. +This parameter can also get this object through the pipeline or you can set this parameter to an +object instance. ```yaml Type: ADUser @@ -808,6 +859,7 @@ Accept wildcard characters: False ``` ### -Initials + Specifies the initials that represent part of a user's name. You can use this value for the user's middle initial. This parameter sets the **Initials** property of a user. @@ -826,12 +878,15 @@ Accept wildcard characters: False ``` ### -Instance -Specifies an **ADUser** object that identifies the Active Directory user object that should be modified and the set of changes that should be made to that object. -When this parameter is specified, any modifications made to the **ADUser** object are also made to the corresponding Active Directory object. -The cmdlet only updates the object properties that have changed. -The **ADUser** object specified as the value of the *Instance* parameter must have been retrieved by using the **Get-ADUser** cmdlet. -When you specify the *Instance* parameter, you cannot specify other parameters that set individual properties on the object. +Specifies an **ADUser** object that identifies the Active Directory user object that should be +modified and the set of changes that should be made to that object. When this parameter is +specified, any modifications made to the **ADUser** object are also made to the corresponding Active +Directory object. The cmdlet only updates the object properties that have changed. + +The **ADUser** object specified as the value of the _Instance_ parameter must have been retrieved by +using the **Get-ADUser** cmdlet. When you specify the _Instance_ parameter, you cannot specify other +parameters that set individual properties on the object. ```yaml Type: ADUser @@ -846,9 +901,10 @@ Accept wildcard characters: False ``` ### -KerberosEncryptionType -Specifies whether an account supports Kerberos encryption types which are used during creation of service tickets. -This value sets the encryption types supported flags of the Active Directory **msDS-SupportedEncryptionTypes** attribute. -The acceptable values for this parameter are: + +Specifies whether an account supports Kerberos encryption types which are used during creation of +service tickets. This value sets the encryption types supported flags of the Active Directory +**msDS-SupportedEncryptionTypes** attribute. The acceptable values for this parameter are: - None - DES @@ -856,12 +912,16 @@ The acceptable values for this parameter are: - AES128 - AES256 -None removes all encryption types from the account, resulting in the KDC being unable to issue service tickets for services using the account. +None removes all encryption types from the account, resulting in the KDC being unable to issue +service tickets for services using the account. -DES is a weak encryption type that is not supported by default since Windows 7 and Windows Server 2008 R2. +DES is a weak encryption type that is not supported by default since Windows 7 and Windows Server +2008 R2. -Warning: Domain-joined Windows systems and services such as clustering manage their own **msDS-SupportedEncryptionTypes** attribute. -Therefore any changes to the flag on the **msDS-SupportedEncryptionTypes** attribute are overwritten by the service or system that manages the setting. +Warning: Domain-joined Windows systems and services such as clustering manage their own +**msDS-SupportedEncryptionTypes** attribute. Therefore any changes to the flag on the +**msDS-SupportedEncryptionTypes** attribute are overwritten by the service or system that manages +the setting. ```yaml Type: ADKerberosEncryptionType @@ -877,10 +937,11 @@ Accept wildcard characters: False ``` ### -LogonWorkstations -Specifies the computers that the user can access. -To specify more than one computer, create a single comma-separated list. -You can identify a computer by using the Security Account Manager (SAM) account name (sAMAccountName) or the DNS host name of the computer. -The SAM account name is the same as the NetBIOS name of the computer. + +Specifies the computers that the user can access. To specify more than one computer, create a single +comma-separated list. You can identify a computer by using the Security Account Manager (SAM) +account name (sAMAccountName) or the DNS host name of the computer. The SAM account name is the same +as the NetBIOS name of the computer. The LDAP display name (**ldapDisplayName**) for this property is userWorkStations. @@ -897,6 +958,7 @@ Accept wildcard characters: False ``` ### -Manager + Specifies the user's manager. This parameter sets the **Manager** property of a user object. This parameter is set by providing one of the following property values. @@ -904,8 +966,8 @@ Note: The identifier in parentheses is the LDAP display name for the property. The acceptable values for this parameter are: - A distinguished name -- A GUID (objectGUID) -- A security identifier (objectSid) +- A GUID (objectGUID) +- A security identifier (objectSid) - A SAM account name (sAMAccountName) The LDAP display name (**ldapDisplayName**) of this property is manager. @@ -923,6 +985,7 @@ Accept wildcard characters: False ``` ### -MobilePhone + Specifies the user's mobile phone number. This parameter sets the **MobilePhone** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is mobile. @@ -940,6 +1003,7 @@ Accept wildcard characters: False ``` ### -Office + Specifies the location of the user's office or place of business. This parameter sets the **Office** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is physicalDeliveryOfficeName. @@ -957,6 +1021,7 @@ Accept wildcard characters: False ``` ### -OfficePhone + Specifies the user's office telephone number. This parameter sets the **OfficePhone** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is telephoneNumber. @@ -974,6 +1039,7 @@ Accept wildcard characters: False ``` ### -Organization + Specifies the user's organization. This parameter sets the **Organization** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is o. @@ -991,6 +1057,7 @@ Accept wildcard characters: False ``` ### -OtherName + Specifies a name in addition to a user's given name and surname, such as the user's middle name. This parameter sets the **OtherName** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is middleName. @@ -1008,27 +1075,35 @@ Accept wildcard characters: False ``` ### -Partition + Specifies the distinguished name of an Active Directory partition. The distinguished name must be one of the naming contexts on the current directory server. -The cmdlet searches this partition to find the object defined by the *Identity* parameter. +The cmdlet searches this partition to find the object defined by the _Identity_ parameter. -In many cases, a default value is used for the *Partition* parameter if no value is specified. -The rules for determining the default value are given below. -Note that rules listed first are evaluated first and when a default value can be determined, no further rules are evaluated. +In many cases, a default value is used for the _Partition_ parameter if no value is specified. The +rules for determining the default value are given below. Note that rules listed first are evaluated +first and when a default value can be determined, no further rules are evaluated. -In AD DS environments, a default value for *Partition* are set in the following cases: +In AD DS environments, a default value for _Partition_ are set in the following cases: -- If the *Identity* parameter is set to a distinguished name, the default value of *Partition* is automatically generated from this distinguished name. -- If running cmdlets from an Active Directory provider drive, the default value of *Partition* is automatically generated from the current path in the drive. -- If none of the previous cases apply, the default value of *Partition* is set to the default partition or naming context of the target domain. +- If the _Identity_ parameter is set to a distinguished name, the default value of _Partition_ is + automatically generated from this distinguished name. +- If running cmdlets from an Active Directory provider drive, the default value of _Partition_ is + automatically generated from the current path in the drive. +- If none of the previous cases apply, the default value of_Partition_ is set to the default + partition or naming context of the target domain. -In AD LDS environments, a default value for *Partition* will be set in the following cases: +In AD LDS environments, a default value for _Partition_ will be set in the following cases: -- If the *Identity* parameter is set to a distinguished name, the default value of *Partition* is automatically generated from this distinguished name. -- If running cmdlets from an Active Directory provider drive, the default value of *Partition* is automatically generated from the current path in the drive. -- If the target AD LDS instance has a default naming context, the default value of *Partition* is set to the default naming context. -To specify a default naming context for an AD LDS environment, set the **msDS-defaultNamingContext** property of the Active Directory directory service agent object (**nTDSDSA**) for the AD LDS instance. -- If none of the previous cases apply, the *Partition* parameter does not take any default value. +- If the _Identity_ parameter is set to a distinguished name, the default value of _Partition_ is + automatically generated from this distinguished name. +- If running cmdlets from an Active Directory provider drive, the default value of _Partition_ is + automatically generated from the current path in the drive. +- If the target AD LDS instance has a default naming context, the default value of _Partition_ is + set to the default naming context. To specify a default naming context for an AD LDS environment, + set the **msDS-defaultNamingContext** property of the Active Directory directory service agent + object (**nTDSDSA**) for the AD LDS instance. +- If none of the previous cases apply, the _Partition_ parameter does not take any default value. ```yaml Type: String @@ -1043,6 +1118,7 @@ Accept wildcard characters: False ``` ### -PassThru + Returns an object representing the item with which you are working. By default, this cmdlet does not generate any output. @@ -1059,15 +1135,17 @@ Accept wildcard characters: False ``` ### -PasswordNeverExpires -Specifies whether the password of an account can expire. -This parameter sets the **PasswordNeverExpires** property of an account object. -This parameter also sets the **ADS_UF_DONT_EXPIRE_PASSWD** flag of the Active Directory User Account Control attribute. -The acceptable values for this parameter are: + +Specifies whether the password of an account can expire. This parameter sets the +**PasswordNeverExpires** property of an account object. This parameter also sets the +**ADS_UF_DONT_EXPIRE_PASSWD** flag of the Active Directory User Account Control attribute. The +acceptable values for this parameter are: - $False or 0 - $True or 1 -Note: This parameter cannot be set to $True or 1 for an account that also has the **ChangePasswordAtLogon** property set to $True. +Note: This parameter cannot be set to $True or 1 for an account that also has the +**ChangePasswordAtLogon** property set to $True. ```yaml Type: Boolean @@ -1082,10 +1160,11 @@ Accept wildcard characters: False ``` ### -PasswordNotRequired -Specifies whether the account requires a password. -This parameter sets the **PasswordNotRequired** property of an account, such as a user or computer account. -This parameter also sets the **ADS_UF_PASSWD_NOTREQD** flag of the Active Directory User Account Control attribute. -The acceptable values for this parameter are: + +Specifies whether the account requires a password. This parameter sets the **PasswordNotRequired** +property of an account, such as a user or computer account. This parameter also sets the +**ADS_UF_PASSWD_NOTREQD** flag of the Active Directory User Account Control attribute. The +acceptable values for this parameter are: - $False or 0 - $True or 1 @@ -1103,6 +1182,7 @@ Accept wildcard characters: False ``` ### -POBox + Specifies the user's post office box number. This parameter sets the **POBox** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is postOfficeBox. @@ -1120,6 +1200,7 @@ Accept wildcard characters: False ``` ### -PostalCode + Specifies the postal code or zip code. This parameter sets the **PostalCode** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is postalCode. @@ -1137,8 +1218,9 @@ Accept wildcard characters: False ``` ### -PrincipalsAllowedToDelegateToAccount -Specifies an array of principal objects. -This parameter sets the **msDS-AllowedToActOnBehalfOfOtherIdentity** attribute of a computer account object. + +Specifies an array of principal objects. This parameter sets the +**msDS-AllowedToActOnBehalfOfOtherIdentity** attribute of a computer account object. ```yaml Type: ADPrincipal[] @@ -1153,6 +1235,7 @@ Accept wildcard characters: False ``` ### -ProfilePath + Specifies a path to the user's profile. This value can be a local absolute path or a Universal Naming Convention (UNC) path. This parameter sets the **ProfilePath** property of the user object. @@ -1171,15 +1254,18 @@ Accept wildcard characters: False ``` ### -Remove -Specifies that the cmdlet remove values of an object property. -Use this parameter to remove one or more values of a property that cannot be modified using a cmdlet parameter. -To remove an object property, you must use the LDAP display name. -You can specify multiple values to a property by specifying a comma-separated list of values, and more than one property by separating them using a semicolon. If any of the properties have a null or empty value the cmdlet will return an error. -The format for this parameter is: + +Specifies that the cmdlet remove values of an object property. Use this parameter to remove one or +more values of a property that cannot be modified using a cmdlet parameter. To remove an object +property, you must use the LDAP display name. You can specify multiple values to a property by +specifying a comma-separated list of values, and more than one property by separating them using a +semicolon. If any of the properties have a null or empty value the cmdlet will return an error. The +format for this parameter is: `-Remove @{Attribute1LDAPDisplayName=value1, value2, ...; Attribute2LDAPDisplayName=value1, value2, ...; AttributeNLDAPDisplayName=value1, value2, ...}` -When you use the *Add*, *Remove*, *Replace*, and *Clear* parameters together, the parameters are applied in the following sequence: +When you use the _Add_, _Remove_, _Replace_, and _Clear_ parameters together, the parameters are +applied in the following sequence: - **Remove** - **Add** @@ -1199,15 +1285,18 @@ Accept wildcard characters: False ``` ### -Replace -Specifies values for an object property that will replace the current values. -Use this parameter to replace one or more values of a property that cannot be modified using a cmdlet parameter. -To modify an object property, you must use the LDAP display name. -You can specify multiple values to a property by specifying a comma-separated list of values, and more than one property by separating them using a semicolon. If any of the properties have a null or empty value the cmdlet will return an error. -The format for this parameter is: + +Specifies values for an object property that will replace the current values. Use this parameter to +replace one or more values of a property that cannot be modified using a cmdlet parameter. To modify +an object property, you must use the LDAP display name. You can specify multiple values to a +property by specifying a comma-separated list of values, and more than one property by separating +them using a semicolon. If any of the properties have a null or empty value the cmdlet will return +an error. The format for this parameter is: `-Replace @{Attribute1LDAPDisplayName=value1, value2, ...; Attribute2LDAPDisplayName=value1, value2, ...; AttributeNLDAPDisplayName=value1, value2, ...}` -When you use the *Add*, *Remove*, *Replace*, and *Clear* parameters together, the operations will be performed in the following order: +When you use the _Add_, _Remove_, _Replace_, and _Clear_ parameters together, the operations will be +performed in the following order: - **Remove** - **Add** @@ -1227,13 +1316,15 @@ Accept wildcard characters: False ``` ### -SamAccountName -Specifies the Security Account Manager (SAM) account name of the user, group, computer, or service account. -The maximum length of the description is 256 characters. -To be compatible with older operating systems, create a SAM account name that is 20 characters or less. -This parameter sets the **SAMAccountName** for an account object. -The LDAP display name (**ldapDisplayName**) for this property is sAMAccountName. -Note: If the string value provided is not terminated with a $ character, the system adds one if needed. +Specifies the Security Account Manager (SAM) account name of the user, group, computer, or service +account. The maximum length of the description is 256 characters. To be compatible with older +operating systems, create a SAM account name that is 20 characters or less. This parameter sets the +**SAMAccountName** for an account object. The LDAP display name (**ldapDisplayName**) for this +property is sAMAccountName. + +Note: If the string value provided is not terminated with a $ character, the system adds one if +needed. ```yaml Type: String @@ -1248,6 +1339,7 @@ Accept wildcard characters: False ``` ### -ScriptPath + Specifies a path to the user's log on script. This value can be a local absolute path or a Universal Naming Convention (UNC) path. This parameter sets the **ScriptPath** property of the user. @@ -1266,26 +1358,29 @@ Accept wildcard characters: False ``` ### -Server + Specifies the AD DS instance to connect to, by providing one of the following values for a corresponding domain name or directory server. The service may be any of the following: AD LDS, AD DS, or Active Directory snapshot instance. -Specify the AD DS instance in one of the following ways: +Specify the AD DS instance in one of the following ways: Domain name values: - Fully qualified domain name - NetBIOS name -Directory server values: +Directory server values: - Fully qualified directory server name - NetBIOS name - Fully qualified directory server name and port -The default value for this parameter is determined by one of the following methods in the order that they are listed: +The default value for this parameter is determined by one of the following methods in the order that +they are listed: -- By using the *Server* value from objects passed through the pipeline -- By using the server information associated with the AD DS Windows PowerShell provider drive, when the cmdlet runs in that drive +- By using the _Server_ value from objects passed through the pipeline +- By using the server information associated with the AD DS Windows PowerShell provider drive, when + the cmdlet runs in that drive - By using the domain of the computer running Windows PowerShell ```yaml @@ -1301,7 +1396,11 @@ Accept wildcard characters: False ``` ### -ServicePrincipalNames -Specifies the service principal names for the account. This parameter sets the ServicePrincipalNames property of the account. The LDAP display name (ldapDisplayName) for this property is servicePrincipalName. This parameter uses the following syntax to add, remove, replace or clear service principal name values. + +Specifies the service principal names for the account. This parameter sets the ServicePrincipalNames +property of the account. The LDAP display name (ldapDisplayName) for this property is +servicePrincipalName. This parameter uses the following syntax to add, remove, replace or clear +service principal name values. Syntax: @@ -1321,7 +1420,8 @@ To clear all values: `-ServicePrincipalNames $null` -You can specify more than one change by using a list separated by semicolons. For example, use the following syntax to add and remove service principal names. +You can specify more than one change by using a list separated by semicolons. For example, use the +following syntax to add and remove service principal names. `@{Add=value1,value2,...};@{Remove=value3,value4,...}` @@ -1348,10 +1448,11 @@ Accept wildcard characters: False ``` ### -SmartcardLogonRequired -Indicates whether a smart card is required to logon. -This parameter sets the **SmartCardLoginRequired** property for a user. -This parameter also sets the **ADS_UF_SMARTCARD_REQUIRED** flag of the Active Directory User Account Control attribute. -The acceptable values for this parameter are: + +Indicates whether a smart card is required to logon. This parameter sets the +**SmartCardLoginRequired** property for a user. This parameter also sets the +**ADS_UF_SMARTCARD_REQUIRED** flag of the Active Directory User Account Control attribute. The +acceptable values for this parameter are: - $False or 0 - $True or 1 @@ -1369,6 +1470,7 @@ Accept wildcard characters: False ``` ### -State + Specifies the user's state or province. This parameter sets the **State** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is st. @@ -1386,6 +1488,7 @@ Accept wildcard characters: False ``` ### -StreetAddress + Specifies the user's street address. This parameter sets the **StreetAddress** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is streetAddress. @@ -1403,6 +1506,7 @@ Accept wildcard characters: False ``` ### -Surname + Specifies the user's last name or surname. This parameter sets the **Surname** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is sn. @@ -1420,6 +1524,7 @@ Accept wildcard characters: False ``` ### -Title + Specifies the user's title. This parameter sets the **Title** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is title. @@ -1437,11 +1542,12 @@ Accept wildcard characters: False ``` ### -TrustedForDelegation -Specifies whether an account is trusted for Kerberos delegation. -A service that runs under an account that is trusted for Kerberos delegation can assume the identity of a client requesting the service. -This parameter sets the **TrustedForDelegation** property of an account object. -This value also sets the **ADS_UF_TRUSTED_FOR_DELEGATION** flag of the Active Directory User Account Control attribute. -The acceptable values for this parameter are: + +Specifies whether an account is trusted for Kerberos delegation. A service that runs under an +account that is trusted for Kerberos delegation can assume the identity of a client requesting the +service. This parameter sets the **TrustedForDelegation** property of an account object. This value +also sets the **ADS_UF_TRUSTED_FOR_DELEGATION** flag of the Active Directory User Account Control +attribute. The acceptable values for this parameter are: - $False or 0 - $True or 1 @@ -1459,10 +1565,12 @@ Accept wildcard characters: False ``` ### -UserPrincipalName -Specifies a user principal name (UPN) in the format `@`. -A UPN is a friendly name assigned by an administrator that is shorter than the LDAP distinguished name used by the system and easier to remember. -The UPN is independent of the user object's distinguished name, so a user object can be moved or renamed without affecting the user logon name. -When logging on using a UPN, users don't have to choose a domain from a list on the logon dialog box. + +Specifies a user principal name (UPN) in the format `@`. A UPN is a friendly +name assigned by an administrator that is shorter than the LDAP distinguished name used by the +system and easier to remember. The UPN is independent of the user object's distinguished name, so a +user object can be moved or renamed without affecting the user logon name. When logging on using a +UPN, users don't have to choose a domain from a list on the logon dialog box. ```yaml Type: String @@ -1477,6 +1585,7 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. @@ -1493,24 +1602,32 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### None or Microsoft.ActiveDirectory.Management.ADUser -A user object is received by the *Identity* parameter. -A user object that was retrieved by using the **Get-ADUser** cmdlet and then modified is received by the *Instance* parameter. +A user object is received by the _Identity_ parameter. + +A user object that was retrieved by using the **Get-ADUser** cmdlet and then modified is received by +the _Instance_ parameter. ## OUTPUTS ### None or Microsoft.ActiveDirectory.Management.ADUser + Returns the modified user object when the **PassThru** parameter is specified. By default, this cmdlet does not generate any output. ## NOTES -* This cmdlet does not work with an Active Directory snapshot. -* This cmdlet does not work with a read-only domain controller. + +- This cmdlet does not work with an Active Directory snapshot. +- This cmdlet does not work with a read-only domain controller. ## RELATED LINKS From 6a1ac530cfd2a62b13cf0526b4e173e3961e961f Mon Sep 17 00:00:00 2001 From: Mike Soule Date: Thu, 27 Apr 2023 15:51:39 -0700 Subject: [PATCH 496/965] formatting --- .../Uninstall-AdcsOnlineResponder.md | 22 +++++++++++++------ 1 file changed, 15 insertions(+), 7 deletions(-) diff --git a/docset/winserver2022-ps/adcsdeployment/Uninstall-AdcsOnlineResponder.md b/docset/winserver2022-ps/adcsdeployment/Uninstall-AdcsOnlineResponder.md index 966c1f06a7..7965f84d3c 100644 --- a/docset/winserver2022-ps/adcsdeployment/Uninstall-AdcsOnlineResponder.md +++ b/docset/winserver2022-ps/adcsdeployment/Uninstall-AdcsOnlineResponder.md @@ -20,13 +20,15 @@ Uninstall-AdcsOnlineResponder [-Force] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Uninstall-AdcsOnlineResponder** cmdlet uninstalls the Online Responder role service. + +The `Uninstall-AdcsOnlineResponder` cmdlet uninstalls the Online Responder role service. ## EXAMPLES ### Example 1: Uninstall the Online Responder role service -``` -PS C:\> Uninstall-AdcsOnlineResponder -Force + +```powershell +Uninstall-AdcsOnlineResponder -Force ``` This command removes Online Responder role service without requiring confirmation. @@ -34,6 +36,7 @@ This command removes Online Responder role service without requiring confirmatio ## PARAMETERS ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -49,6 +52,7 @@ Accept wildcard characters: False ``` ### -Force + Forces the command to run without asking for user confirmation. ```yaml @@ -64,6 +68,7 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml @@ -79,7 +84,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -90,11 +99,10 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.CertificateServices.Deployment.Common.OCSP.OnlineResponderResult ## NOTES -* Ensure you run Windows PowerShell as an administrator. You can use the *Force* parameter to bypass the prompt for confirmation. - +- Ensure you run Windows PowerShell as an administrator. You can use the **Force** parameter to + bypass the prompt for confirmation. ## RELATED LINKS [Install-AdcsOnlineResponder](./Install-AdcsOnlineResponder.md) - From 9239bcce5f1fb7757e0f1d097a945f010f023c70 Mon Sep 17 00:00:00 2001 From: Dave Carroll Date: Thu, 27 Apr 2023 16:20:24 -0700 Subject: [PATCH 497/965] fix about_CommonParameters link, syntax code block --- docset/winserver2022-ps/tls/Disable-TlsCipherSuite.md | 5 ++--- docset/winserver2022-ps/tls/Disable-TlsEccCurve.md | 2 +- docset/winserver2022-ps/tls/Disable-TlsSessionTicketKey.md | 5 ++--- docset/winserver2022-ps/tls/Enable-TlsCipherSuite.md | 5 ++--- docset/winserver2022-ps/tls/Enable-TlsEccCurve.md | 2 +- docset/winserver2022-ps/tls/Enable-TlsSessionTicketKey.md | 5 ++--- docset/winserver2022-ps/tls/Export-TlsSessionTicketKey.md | 5 ++--- docset/winserver2022-ps/tls/Get-TlsCipherSuite.md | 5 ++--- docset/winserver2022-ps/tls/Get-TlsEccCurve.md | 2 +- docset/winserver2022-ps/tls/New-TlsSessionTicketKey.md | 5 ++--- 10 files changed, 17 insertions(+), 24 deletions(-) diff --git a/docset/winserver2022-ps/tls/Disable-TlsCipherSuite.md b/docset/winserver2022-ps/tls/Disable-TlsCipherSuite.md index f3237d81ef..7cfddda317 100644 --- a/docset/winserver2022-ps/tls/Disable-TlsCipherSuite.md +++ b/docset/winserver2022-ps/tls/Disable-TlsCipherSuite.md @@ -15,7 +15,7 @@ Disables a TLS cipher suite. ## SYNTAX -```powershell +``` Disable-TlsCipherSuite [-Name] [-WhatIf] [-Confirm] [] ``` @@ -92,8 +92,7 @@ Accept wildcard characters: False This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, --WarningAction, and -WarningVariable. For more information, see about_CommonParameters -(http://go.microsoft.com/fwlink/?LinkID=113216). +-WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/docset/winserver2022-ps/tls/Disable-TlsEccCurve.md b/docset/winserver2022-ps/tls/Disable-TlsEccCurve.md index 4bdcb38f43..15bf0bfb36 100644 --- a/docset/winserver2022-ps/tls/Disable-TlsEccCurve.md +++ b/docset/winserver2022-ps/tls/Disable-TlsEccCurve.md @@ -16,7 +16,7 @@ Security) for a computer. ## SYNTAX -```powershell +``` Disable-TlsEccCurve [-Name] [-WhatIf] [-Confirm] [] ``` diff --git a/docset/winserver2022-ps/tls/Disable-TlsSessionTicketKey.md b/docset/winserver2022-ps/tls/Disable-TlsSessionTicketKey.md index 4484be28be..56ef9a12e0 100644 --- a/docset/winserver2022-ps/tls/Disable-TlsSessionTicketKey.md +++ b/docset/winserver2022-ps/tls/Disable-TlsSessionTicketKey.md @@ -15,7 +15,7 @@ Disables a TLS session ticket key. ## SYNTAX -```powershell +``` Disable-TlsSessionTicketKey [-ServiceAccountName] [-WhatIf] [-Confirm] [] ``` @@ -101,8 +101,7 @@ Accept wildcard characters: False This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, --WarningAction, and -WarningVariable. For more information, see about_CommonParameters -(http://go.microsoft.com/fwlink/?LinkID=113216). +-WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/docset/winserver2022-ps/tls/Enable-TlsCipherSuite.md b/docset/winserver2022-ps/tls/Enable-TlsCipherSuite.md index 4bb14b43a4..d4ee7939b4 100644 --- a/docset/winserver2022-ps/tls/Enable-TlsCipherSuite.md +++ b/docset/winserver2022-ps/tls/Enable-TlsCipherSuite.md @@ -15,7 +15,7 @@ Enables a TLS cipher suite. ## SYNTAX -```powershell +``` Enable-TlsCipherSuite [[-Position] ] [-Name] [-WhatIf] [-Confirm] [] ``` @@ -145,8 +145,7 @@ Accept wildcard characters: False This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, --WarningAction, and -WarningVariable. For more information, see about_CommonParameters -(http://go.microsoft.com/fwlink/?LinkID=113216). +-WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/docset/winserver2022-ps/tls/Enable-TlsEccCurve.md b/docset/winserver2022-ps/tls/Enable-TlsEccCurve.md index 6bcc2e8b46..1a02e62046 100644 --- a/docset/winserver2022-ps/tls/Enable-TlsEccCurve.md +++ b/docset/winserver2022-ps/tls/Enable-TlsEccCurve.md @@ -15,7 +15,7 @@ Enables Elliptic Curve Cryptography (ECC) cipher suites available for TLS. ## SYNTAX -```powershell +``` Enable-TlsEccCurve [[-Position] ] [-Name] [-WhatIf] [-Confirm] [] ``` diff --git a/docset/winserver2022-ps/tls/Enable-TlsSessionTicketKey.md b/docset/winserver2022-ps/tls/Enable-TlsSessionTicketKey.md index fb8848b513..95a7c66ee8 100644 --- a/docset/winserver2022-ps/tls/Enable-TlsSessionTicketKey.md +++ b/docset/winserver2022-ps/tls/Enable-TlsSessionTicketKey.md @@ -15,7 +15,7 @@ Configures a TLS server with a TLS session ticket key. ## SYNTAX -```powershell +``` Enable-TlsSessionTicketKey [-ServiceAccountName] [-Path] [-Password] [-Force] [-WhatIf] [-Confirm] [] ``` @@ -164,8 +164,7 @@ Accept wildcard characters: False This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, --WarningAction, and -WarningVariable. For more information, see about_CommonParameters -(http://go.microsoft.com/fwlink/?LinkID=113216). +-WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/docset/winserver2022-ps/tls/Export-TlsSessionTicketKey.md b/docset/winserver2022-ps/tls/Export-TlsSessionTicketKey.md index 7bc764ee8c..31d1cc0a04 100644 --- a/docset/winserver2022-ps/tls/Export-TlsSessionTicketKey.md +++ b/docset/winserver2022-ps/tls/Export-TlsSessionTicketKey.md @@ -15,7 +15,7 @@ Exports a TLS session ticket key. ## SYNTAX -```powershell +``` Export-TlsSessionTicketKey [-ServiceAccountName] [[-Path] ] [-Password] [-WhatIf] [-Confirm] [] ``` @@ -137,8 +137,7 @@ Accept wildcard characters: False This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, --WarningAction, and -WarningVariable. For more information, see about_CommonParameters -(http://go.microsoft.com/fwlink/?LinkID=113216). +-WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/docset/winserver2022-ps/tls/Get-TlsCipherSuite.md b/docset/winserver2022-ps/tls/Get-TlsCipherSuite.md index fe10b9b74d..a8e08f3e1b 100644 --- a/docset/winserver2022-ps/tls/Get-TlsCipherSuite.md +++ b/docset/winserver2022-ps/tls/Get-TlsCipherSuite.md @@ -15,7 +15,7 @@ Gets the TLS cipher suites for a computer. ## SYNTAX -```powershell +``` Get-TlsCipherSuite [[-Name] ] [] ``` @@ -139,8 +139,7 @@ Accept wildcard characters: False This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, --WarningAction, and -WarningVariable. For more information, see about_CommonParameters -(http://go.microsoft.com/fwlink/?LinkID=113216). +-WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/docset/winserver2022-ps/tls/Get-TlsEccCurve.md b/docset/winserver2022-ps/tls/Get-TlsEccCurve.md index e71d7d9417..86196f45cf 100644 --- a/docset/winserver2022-ps/tls/Get-TlsEccCurve.md +++ b/docset/winserver2022-ps/tls/Get-TlsEccCurve.md @@ -14,7 +14,7 @@ Gets the list of Elliptic Curve Cryptography (ECC) cipher suites available for T ## SYNTAX -```powershell +``` Get-TlsEccCurve [[-Name] ] [] ``` diff --git a/docset/winserver2022-ps/tls/New-TlsSessionTicketKey.md b/docset/winserver2022-ps/tls/New-TlsSessionTicketKey.md index c1c609a4b6..7e4e5fdacd 100644 --- a/docset/winserver2022-ps/tls/New-TlsSessionTicketKey.md +++ b/docset/winserver2022-ps/tls/New-TlsSessionTicketKey.md @@ -15,7 +15,7 @@ Creates a TLS session ticket key configuration file. ## SYNTAX -```powershell +``` New-TlsSessionTicketKey [[-Path] ] [-Password] [] ``` @@ -89,8 +89,7 @@ Accept wildcard characters: False This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, --WarningAction, and -WarningVariable. For more information, see about_CommonParameters -(http://go.microsoft.com/fwlink/?LinkID=113216). +-WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS From f9be55fd79d2024f9c69154bfe2fe871c8e7fb37 Mon Sep 17 00:00:00 2001 From: Dave Carroll Date: Thu, 27 Apr 2023 16:22:53 -0700 Subject: [PATCH 498/965] fix related links --- docset/winserver2022-ps/tls/Enable-TlsEccCurve.md | 2 +- docset/winserver2022-ps/tls/Get-TlsEccCurve.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/tls/Enable-TlsEccCurve.md b/docset/winserver2022-ps/tls/Enable-TlsEccCurve.md index 1a02e62046..5cd1f20a3f 100644 --- a/docset/winserver2022-ps/tls/Enable-TlsEccCurve.md +++ b/docset/winserver2022-ps/tls/Enable-TlsEccCurve.md @@ -126,6 +126,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Get-TlsEccCurve](./Get-TlsEccCurv.md) +[Get-TlsEccCurve](./Get-TlsEccCurve.md) [Disable-TlsEccCurve](./Disable-TlsEccCurve.md) diff --git a/docset/winserver2022-ps/tls/Get-TlsEccCurve.md b/docset/winserver2022-ps/tls/Get-TlsEccCurve.md index 86196f45cf..d634a709fb 100644 --- a/docset/winserver2022-ps/tls/Get-TlsEccCurve.md +++ b/docset/winserver2022-ps/tls/Get-TlsEccCurve.md @@ -90,6 +90,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Enable-TlsEccCurve](./Enable-TlsEccCurv.md) +[Enable-TlsEccCurve](./Enable-TlsEccCurve.md) [Disable-TlsEccCurve](./Disable-TlsEccCurve.md) From de0ffc5cee661b84a7ad69bda8e27d8c118b879e Mon Sep 17 00:00:00 2001 From: Dave Carroll Date: Thu, 27 Apr 2023 16:39:24 -0700 Subject: [PATCH 499/965] fix HKLM and ECC curve --- docset/winserver2022-ps/tls/Disable-TlsEccCurve.md | 2 +- docset/winserver2022-ps/tls/Enable-TlsCipherSuite.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/tls/Disable-TlsEccCurve.md b/docset/winserver2022-ps/tls/Disable-TlsEccCurve.md index 15bf0bfb36..6508d6a846 100644 --- a/docset/winserver2022-ps/tls/Disable-TlsEccCurve.md +++ b/docset/winserver2022-ps/tls/Disable-TlsEccCurve.md @@ -33,7 +33,7 @@ TLS(Transport Layer Security) for a computer. Disable-TlsEccCurve -Name curve25519 ``` -This will disable the ECC Curve 'curve25519'. +This will disable the ECC Curve `curve25519`. ## PARAMETERS diff --git a/docset/winserver2022-ps/tls/Enable-TlsCipherSuite.md b/docset/winserver2022-ps/tls/Enable-TlsCipherSuite.md index d4ee7939b4..fc1e26723c 100644 --- a/docset/winserver2022-ps/tls/Enable-TlsCipherSuite.md +++ b/docset/winserver2022-ps/tls/Enable-TlsCipherSuite.md @@ -32,7 +32,7 @@ cipher suite is not used. This cmdlet is based on Cryptography Next Generation (CNG) Cryptographic Configuration. Schannel registry settings and settings specified by means of Security Support Provider Interface (SSPI) by each app can override CNG Cryptographic Configuration. Other settings under -HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL can also configure +`HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL` can also configure cipher suites. These settings can impact whether a cipher suite can be used. For example, disabling of SHA hashes supported by TLS disables the corresponding cipher suites. Additionally, applications can limit the algorithms using SSPI. For more information about TLS settings, see From 7b3d1e7ff931dd4e3771eef1b4c8a5e806d53562 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Thu, 27 Apr 2023 19:43:35 -0400 Subject: [PATCH 500/965] Converting codeblock example to use splatted parameters --- .../addsdeployment/Install-ADDSDomain.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md index cf406e6335..bb47b2d967 100644 --- a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md +++ b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md @@ -36,7 +36,21 @@ The `Install-ADDSDomain` cmdlet installs an Active Directory domain configuratio ### Example 1: Install a new child domain ```powershell -Install-ADDSDomain -Credential (Get-Credential CORP\EnterpriseAdmin1) -NewDomainName child -ParentDomainName "corp.contoso.com" -InstallDNS -CreateDNSDelegation -DomainMode Win2003 -ReplicationSourceDC "DC1.corp.contoso.com" -SiteName "Houston" -DatabasePath "D:\NTDS" -SYSVOLPath "D:\SYSVOL" -LogPath "E:\Logs" -NoRebootOnCompletion +$HashArguments = @{ + Credential = (Get-Credential CORP\EnterpriseAdmin1) + NewDomainName = "child" + ParentDomainName = "corp.contoso.com" + InstallDNS = $true + CreateDNSDelegation = $true + DomainMode = "Win2003" + ReplicationSourceDC = "DC1.corp.contoso.com" + SiteName = "Houston" + DatabasePath = "D:\NTDS" + SYSVOLPath = "D:\SYSVOL" + LogPath = "E:\Logs" + NoRebootOnCompletion = $true +} +Install-ADDSDomain @HashArguments ``` This command installs a new child domain named child.corp.contoso.com using credentials of From 71565590ebcfb5c72a839cdcd0e79ca756f16d3f Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Thu, 27 Apr 2023 19:44:10 -0400 Subject: [PATCH 501/965] Changing Types to full names --- .../addsdeployment/Install-ADDSDomain.md | 48 +++++++++---------- 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md index bb47b2d967..bc9667fd64 100644 --- a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md +++ b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md @@ -72,7 +72,7 @@ operations to prepare Active Directory prior to the installation of this domain. **Get-Credential** cmdlet to prompt the user to supply a password. ```yaml -Type: PSCredential +Type: System.Management.Automation.PSCredential Parameter Sets: (All) Aliases: @@ -88,7 +88,7 @@ Accept wildcard characters: False Indicates that the cmdlet recreates an existing domain. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -104,7 +104,7 @@ Accept wildcard characters: False Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -122,7 +122,7 @@ install along with the domain controller. Valid for Active Directory-integrated default is computed automatically based on the environment. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -139,7 +139,7 @@ Specifies the user name and password that corresponds to the account used to ins controller. Use the **Get-Credential** cmdlet to prompt the user to supply a password. ```yaml -Type: PSCredential +Type: System.Management.Automation.PSCredential Parameter Sets: (All) Aliases: @@ -157,7 +157,7 @@ disk of the local computer that contains the domain database, for instance, `C:\ default is `%SYSTEMROOT%\NTDS`. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -175,7 +175,7 @@ parameter is skipped if the value for the _CreateDnsDelegation_ parameter is eit computed to be $false. ```yaml -Type: PSCredential +Type: System.Management.Automation.PSCredential Parameter Sets: (All) Aliases: @@ -206,7 +206,7 @@ The domain functional level cannot be lower than the forest functional level, bu The default is automatically computed and set. ```yaml -Type: DomainMode +Type: System.DirectoryServices.ActiveDirectory.DomainMode Parameter Sets: (All) Aliases: Accepted values: Win2008, Win2008R2, Win2012, Win2012R2, WinThreshold, Default @@ -242,7 +242,7 @@ Accept wildcard characters: False Forces the command to run without asking for user confirmation. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -268,7 +268,7 @@ corp.contoso.com, Active Directory performs an SOA query for corp.contoso.com an zone name in the response is corp.contoso.com. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -286,7 +286,7 @@ that contains the domain log files, for instance, `C:\Windows\Logs`. The default `%SYSTEMROOT%\NTDS`. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -305,7 +305,7 @@ name (FQDN) for the new domain tree. If the value set for the _DomainType_ param ChildDomain, this parameter can be used to specify a single label domain name for the child domain. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -334,7 +334,7 @@ Note that if the name value given for this parameter is a name of 16 characters domain installation will fail. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -359,7 +359,7 @@ this parameter, ensure that TCP/IP client settings are first configured with a p address. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -376,7 +376,7 @@ Specifies that the read-only domain controller (RODC) will not be a global catal By default, the domain controller that you are installing is a global catalog server. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -396,7 +396,7 @@ purposes because once configuration has completed the server will not function c member server or a DC until it is rebooted. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -412,7 +412,7 @@ Accept wildcard characters: False Specifies the fully qualified domain name (FQDN) of an existing parent domain. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -430,7 +430,7 @@ for replicating to this domain. The default value for this parameter is automati the environment. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -457,7 +457,7 @@ password to be configured. Another available advanced option is to use the which is also not a recommended security best practice in production deployments. ```yaml -Type: SecureString +Type: System.Security.SecureString Parameter Sets: (All) Aliases: @@ -475,7 +475,7 @@ value is the site that is associated with the subnet that includes the IP addres no such site exists, the default is the site of the replication source domain controller. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -492,7 +492,7 @@ Indicates that the cmdlet skips automatic configuration of DNS client settings, hints. This parameter is in effect only if the DNS Server service is already installed. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -514,7 +514,7 @@ the section ADPrep and Prerequisite Checking Architecture in [AD DS Simplified Administration](https://go.microsoft.com/fwlink/?LinkID=237244). ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -531,7 +531,7 @@ Specifies the fully qualified, non-UNC path to a directory on a fixed disk of th for example, `C:\Windows\SYSVOL`. The default is `%SYSTEMROOT%\SYSVOL`. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -548,7 +548,7 @@ Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi From a8ee2662c5643d476ed8481db6c837043126003c Mon Sep 17 00:00:00 2001 From: Steven Judd Date: Thu, 27 Apr 2023 16:49:31 -0700 Subject: [PATCH 502/965] updating doc to standards --- .../scheduledtasks/Disable-ScheduledTask.md | 77 +++++++++++++------ 1 file changed, 52 insertions(+), 25 deletions(-) diff --git a/docset/winserver2022-ps/scheduledtasks/Disable-ScheduledTask.md b/docset/winserver2022-ps/scheduledtasks/Disable-ScheduledTask.md index 7aef0cebe0..80065671ce 100644 --- a/docset/winserver2022-ps/scheduledtasks/Disable-ScheduledTask.md +++ b/docset/winserver2022-ps/scheduledtasks/Disable-ScheduledTask.md @@ -16,25 +16,32 @@ Disables a scheduled task. ## SYNTAX ### Name + ``` Disable-ScheduledTask [-TaskName] [[-TaskPath] ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [] ``` ### Object + ``` -Disable-ScheduledTask [-InputObject] [-CimSession ] [-ThrottleLimit ] - [-AsJob] [] +Disable-ScheduledTask [-InputObject] [-CimSession ] + [-ThrottleLimit ] [-AsJob] [] ``` ## DESCRIPTION -The **Disable-ScheduledTask** cmdlet disables a scheduled task. + +The `Disable-ScheduledTask` cmdlet disables a scheduled task. ## EXAMPLES ### Example 1: Disable a scheduled task + +```powershell +Disable-ScheduledTask -TaskName 'SystemScan' ``` -PS C:\> Disable-ScheduledTask -TaskName "SystemScan" + +```output TaskPath TaskName State -------- -------- -------- \ SystemScan Disabled @@ -43,24 +50,31 @@ TaskPath TaskName State This command disables the SystemScan task in the root folder. ### Example 2: Disable all scheduled tasks in a folder + +```powershell +Get-ScheduledTask -TaskPath '\UpdateTasks\' | Disable-ScheduledTask ``` -PS C:\> Get-ScheduledTask -TaskPath "\UpdateTasks\" | Disable-ScheduledTask + +```output TaskPath TaskName State -------- -------- -------- \UpdateTasks\ UpdateApps Disabled \UpdateTasks\ UpdateDrivers Disabled ``` -This command uses the **Get-Scheduledtask** cmdlet to get all scheduled tasks in the \UpdateTasks\ folder. -The command pipes this information to the **Disable-ScheduledTasks** cmdlet, which disables these scheduled tasks. +This command uses the `Get-Scheduledtask` cmdlet to get all scheduled tasks in the `\UpdateTasks\` +folder. The command pipes this information to the `Disable-ScheduledTasks` cmdlet, which disables +these scheduled tasks. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. + +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -72,12 +86,15 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer +name or a session object, such as the output of a +[New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or +[Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The +default is the current session on the local computer. ```yaml -Type: CimSession[] +Type: Microsoft.Management.Infrastructure.CimSession[] Parameter Sets: (All) Aliases: Session @@ -89,10 +106,11 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the input object that is used in a pipeline command. ```yaml -Type: CimInstance +Type: Microsoft.Management.Infrastructure.CimInstance Parameter Sets: Object Aliases: @@ -104,10 +122,11 @@ Accept wildcard characters: False ``` ### -TaskName + Specifies the name of a scheduled task. ```yaml -Type: String +Type: System.String Parameter Sets: Name Aliases: @@ -119,12 +138,14 @@ Accept wildcard characters: False ``` ### -TaskPath -Specifies an array of one or more paths for scheduled tasks in Task Scheduler namespace. You can use **"*"** for a wildcard character query. -You can use **\\*** for the root folder. To specify a full TaskPath you need to include the leading and trailing **\\**. -If you do not specify a path, the cmdlet uses the root folder. + +Specifies an array of one or more paths for scheduled tasks in Task Scheduler namespace. You can use +`*` for a wildcard character query. You can use `\` for the root folder. To specify a full TaskPath +you need to include the leading and trailing `\`. If you do not specify a path, the cmdlet uses the +root folder. ```yaml -Type: String +Type: System.String Parameter Sets: Name Aliases: @@ -136,12 +157,15 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: (All) Aliases: @@ -153,7 +177,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -182,4 +210,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Stop-ScheduledTask](./Stop-ScheduledTask.md) [Unregister-ScheduledTask](./Unregister-ScheduledTask.md) - From a3ab025ab0deb5b4d6b56258e22d93da79517294 Mon Sep 17 00:00:00 2001 From: Steven Judd Date: Thu, 27 Apr 2023 17:18:06 -0700 Subject: [PATCH 503/965] Update docset/winserver2022-ps/scheduledtasks/Disable-ScheduledTask.md Co-authored-by: Mikey Lombardi (He/Him) --- docset/winserver2022-ps/scheduledtasks/Disable-ScheduledTask.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/scheduledtasks/Disable-ScheduledTask.md b/docset/winserver2022-ps/scheduledtasks/Disable-ScheduledTask.md index 80065671ce..cfce69068c 100644 --- a/docset/winserver2022-ps/scheduledtasks/Disable-ScheduledTask.md +++ b/docset/winserver2022-ps/scheduledtasks/Disable-ScheduledTask.md @@ -41,7 +41,7 @@ The `Disable-ScheduledTask` cmdlet disables a scheduled task. Disable-ScheduledTask -TaskName 'SystemScan' ``` -```output +```Output TaskPath TaskName State -------- -------- -------- \ SystemScan Disabled From 7ebb2b938e5ea4d0cc314ab1a882829cee3d0c6e Mon Sep 17 00:00:00 2001 From: Steven Judd Date: Thu, 27 Apr 2023 17:18:17 -0700 Subject: [PATCH 504/965] Update docset/winserver2022-ps/scheduledtasks/Disable-ScheduledTask.md Co-authored-by: Mikey Lombardi (He/Him) --- docset/winserver2022-ps/scheduledtasks/Disable-ScheduledTask.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/scheduledtasks/Disable-ScheduledTask.md b/docset/winserver2022-ps/scheduledtasks/Disable-ScheduledTask.md index cfce69068c..2f5a05c71a 100644 --- a/docset/winserver2022-ps/scheduledtasks/Disable-ScheduledTask.md +++ b/docset/winserver2022-ps/scheduledtasks/Disable-ScheduledTask.md @@ -55,7 +55,7 @@ This command disables the SystemScan task in the root folder. Get-ScheduledTask -TaskPath '\UpdateTasks\' | Disable-ScheduledTask ``` -```output +```Output TaskPath TaskName State -------- -------- -------- \UpdateTasks\ UpdateApps Disabled From ea8816d184abd8ce47708fbdaec5238161eedae8 Mon Sep 17 00:00:00 2001 From: Steven Judd Date: Thu, 27 Apr 2023 17:18:48 -0700 Subject: [PATCH 505/965] Update docset/winserver2022-ps/scheduledtasks/Disable-ScheduledTask.md Co-authored-by: Mikey Lombardi (He/Him) --- docset/winserver2022-ps/scheduledtasks/Disable-ScheduledTask.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/scheduledtasks/Disable-ScheduledTask.md b/docset/winserver2022-ps/scheduledtasks/Disable-ScheduledTask.md index 2f5a05c71a..9634455765 100644 --- a/docset/winserver2022-ps/scheduledtasks/Disable-ScheduledTask.md +++ b/docset/winserver2022-ps/scheduledtasks/Disable-ScheduledTask.md @@ -140,7 +140,7 @@ Accept wildcard characters: False ### -TaskPath Specifies an array of one or more paths for scheduled tasks in Task Scheduler namespace. You can use -`*` for a wildcard character query. You can use `\` for the root folder. To specify a full TaskPath +`*` for a wildcard character query. You can use `\` for the root folder. To specify a full **TaskPath** you need to include the leading and trailing `\`. If you do not specify a path, the cmdlet uses the root folder. From edd019695da5c5feb6031e3851399721fe7d7aeb Mon Sep 17 00:00:00 2001 From: Michael Svegmar Date: Fri, 28 Apr 2023 03:15:59 +0200 Subject: [PATCH 506/965] Formatting improvements --- .../Get-NetVirtualizationProviderAddress.md | 23 ++++++++----------- 1 file changed, 9 insertions(+), 14 deletions(-) diff --git a/docset/winserver2022-ps/netwnv/Get-NetVirtualizationProviderAddress.md b/docset/winserver2022-ps/netwnv/Get-NetVirtualizationProviderAddress.md index ad2dc6a7e0..78b1e3e79b 100644 --- a/docset/winserver2022-ps/netwnv/Get-NetVirtualizationProviderAddress.md +++ b/docset/winserver2022-ps/netwnv/Get-NetVirtualizationProviderAddress.md @@ -51,7 +51,7 @@ This command gets the Provider Address for the interface with the specified inde Get-NetVirtualizationProviderAddress -ProviderAddress '172.16.2.3' ``` -This command gets the Provider Address that has the IP address 172.16.2.3. +This command gets the Provider Address that has the IP address `172.16.2.3`. ## PARAMETERS @@ -59,16 +59,11 @@ This command gets the Provider Address that has the IP address 172.16.2.3. Specifies an array of states of Provider Addresses. The acceptable values for this parameter are: -- Preferred. - The address is unique. -- Tentative. - The address is not yet verified. -- Duplicate. - There is a duplicate address on the network. -- Invalid. - The address lifetime has expired. -- Deprecated. - The address cannot start new connections. +- `Preferred` - The address is unique. +- `Tentative` - The address is not yet verified. +- `Duplicate` - There is a duplicate address on the network. +- `Invalid` - The address lifetime has expired. +- `Deprecated` - The address cannot start new connections. ```yaml Type: AddressState [] @@ -154,10 +149,10 @@ Accept wildcard characters: False ### -ManagedByCluster -Specifies an array of Boolean values that determines whether a highly available Provider Address +Specifies an array of **Boolean** values that determines whether a highly available Provider Address configuration entry exists on a Hyper-V Network Virtualization gateway. If you use a Provider -Address cluster resource, this value is $True; otherwise, the value is $False. This parameter is a -read-only parameter, used by an administrator to diagnose problems. +Address cluster resource, this value is `$true`. Otherwise, the value is `$false`. This parameter is +a read-only parameter, used by an administrator to diagnose problems. ```yaml Type: System.Boolean[] From 7e409a5c97fbbae9c0463e55f89178c2120879a0 Mon Sep 17 00:00:00 2001 From: Mike Soule Date: Thu, 27 Apr 2023 20:01:01 -0700 Subject: [PATCH 507/965] formatting --- ...tall-AdcsNetworkDeviceEnrollmentService.md | 23 +++++++++++++------ 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/docset/winserver2022-ps/adcsdeployment/Uninstall-AdcsNetworkDeviceEnrollmentService.md b/docset/winserver2022-ps/adcsdeployment/Uninstall-AdcsNetworkDeviceEnrollmentService.md index 9f3b2e778c..17ff193233 100644 --- a/docset/winserver2022-ps/adcsdeployment/Uninstall-AdcsNetworkDeviceEnrollmentService.md +++ b/docset/winserver2022-ps/adcsdeployment/Uninstall-AdcsNetworkDeviceEnrollmentService.md @@ -20,13 +20,16 @@ Uninstall-AdcsNetworkDeviceEnrollmentService [-Force] [-WhatIf] [-Confirm] [ Uninstall-AdcsNetworkDeviceEnrollmentService -Force + +```powershell +Uninstall-AdcsNetworkDeviceEnrollmentService -Force ``` This command uninstalls the NDES role service and does not prompt for user input. @@ -34,6 +37,7 @@ This command uninstalls the NDES role service and does not prompt for user input ## PARAMETERS ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -49,6 +53,7 @@ Accept wildcard characters: False ``` ### -Force + Forces the command to run without asking for user confirmation. ```yaml @@ -64,6 +69,7 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. @@ -80,7 +86,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -91,11 +101,10 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.CertificateServices.Deployment.Common.NDES.NetworkDeviceEnrollmentServiceResult ## NOTES -* Ensure you run Windows PowerShell as an administrator. You can use the *Force* parameter to bypass the prompt for confirmation. - +- Ensure you run Windows PowerShell as an administrator. You can use the **Force** parameter to + bypass the prompt for confirmation. ## RELATED LINKS [Install-AdcsNetworkDeviceEnrollmentService](./Install-AdcsNetworkDeviceEnrollmentService.md) - From 42a54c324705342396e97b72d04223b1b8ec6f23 Mon Sep 17 00:00:00 2001 From: Mike Soule Date: Thu, 27 Apr 2023 20:17:02 -0700 Subject: [PATCH 508/965] formatting #3365 --- .../Uninstall-AdcsEnrollmentWebService.md | 59 +++++++++++++------ 1 file changed, 41 insertions(+), 18 deletions(-) diff --git a/docset/winserver2022-ps/adcsdeployment/Uninstall-AdcsEnrollmentWebService.md b/docset/winserver2022-ps/adcsdeployment/Uninstall-AdcsEnrollmentWebService.md index 4453069bd0..6136dfa6a1 100644 --- a/docset/winserver2022-ps/adcsdeployment/Uninstall-AdcsEnrollmentWebService.md +++ b/docset/winserver2022-ps/adcsdeployment/Uninstall-AdcsEnrollmentWebService.md @@ -16,40 +16,53 @@ Uninstalls the Certificate Enrollment Web service or individual instances of it. ## SYNTAX ### UninstallSingleInstance (Default) + ``` -Uninstall-AdcsEnrollmentWebService -CAConfig -AuthenticationType [-Force] - [-WhatIf] [-Confirm] [] +Uninstall-AdcsEnrollmentWebService -CAConfig -AuthenticationType + [-Force] [-WhatIf] [-Confirm] [] ``` ### UninstallAll + ``` -Uninstall-AdcsEnrollmentWebService [-AllEnrollmentServices] [-Force] [-WhatIf] [-Confirm] [] +Uninstall-AdcsEnrollmentWebService [-AllEnrollmentServices] [-Force] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION -The **Uninstall-AdcsEnrollmentWebService** cmdlet uninstalls the Certificate Enrollment Web Service either entirely removing all instances of it or partially by removing individual instances. + +The `Uninstall-AdcsEnrollmentWebService` cmdlet uninstalls the Certificate Enrollment Web Service +either entirely removing all instances of it or partially by removing individual instances. ## EXAMPLES ### Example 1: Uninstall all Enrollment Web Service role services -``` -PS C:\> Uninstall-AdcsEnrollmentWebService -AllEnrollmentServices -Force + +```powershell +Uninstall-AdcsEnrollmentWebService -AllEnrollmentServices -Force ``` -This command uninstalls all the Enrollment Web Service role services without prompting for confirmation. +This command uninstalls all the Enrollment Web Service role services without prompting for +confirmation. ### Example 2: Uninstall an Enrollment Web Service role service using the specified CA -``` -PS C:\> Uninstall-AdcsEnrollmentWebService -CAConfig "APP1.corp.contoso.com\corp-APP1-CA" -AuthenticationType Certificate + +```powershell +$params = @{ + CAConfig = "APP1.corp.contoso.com\corp-APP1-CA" + AuthenticationType = Certificate +} +Uninstall-AdcsEnrollmentWebService @params ``` -This command uninstalls the Certificate Enrollment Web Service using the CA specified by the configuration named APP1.corp.contoso.com\corp-APP1-CA. -The CA configuration is the CA Computer Name and CA common name separated by a backslash. -The authentication type in use is Certificate. +This command uninstalls the Certificate Enrollment Web Service using the CA specified by the +configuration named `APP1.corp.contoso.com\corp-APP1-CA`. The CA configuration is the CA Computer +Name and CA common name separated by a backslash. The authentication type in use is Certificate. ## PARAMETERS ### -AllEnrollmentServices + Indicates that this cmdlet removes all Certificate Enrollment Web Service instances. ```yaml @@ -65,6 +78,7 @@ Accept wildcard characters: False ``` ### -AuthenticationType + Specifies the authentication type of the of enrollment services instance to be uninstalled. ```yaml @@ -81,8 +95,10 @@ Accept wildcard characters: False ``` ### -CAConfig -Specifies the configuration string of the certification authority (CA) for which this cmdlet uninstalls enrollment services. -This parameter is used to identify which instance of the Certificate Enrollment Web Service is to be uninstalled when multiple are present. + +Specifies the configuration string of the certification authority (CA) for which this cmdlet +uninstalls enrollment services. This parameter is used to identify which instance of the Certificate +Enrollment Web Service is to be uninstalled when multiple are present. ```yaml Type: String @@ -97,6 +113,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -112,6 +129,7 @@ Accept wildcard characters: False ``` ### -Force + Forces the command to run without asking for user confirmation. ```yaml @@ -127,6 +145,7 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml @@ -142,7 +161,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -157,11 +180,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.CertificateServices.Deployment.Common.CES.EnrollmentServiceResult ## NOTES -* The application directories are removed from their respective instance folders in the file system. The uninstall command does not remove the Secure Sockets Layer/Transport Layer Security (SSL/TLS) or the secure hypertext transfer protocol (https) bindings. - +- The application directories are removed from their respective instance folders in the file system. + The uninstall command does not remove the Secure Sockets Layer/Transport Layer Security (SSL/TLS) + or the secure hypertext transfer protocol (https) bindings. ## RELATED LINKS [Install-AdcsEnrollmentWebService](./Install-AdcsEnrollmentWebService.md) - From def7fd86adbb7fd6d023d2630fc672215430a9e5 Mon Sep 17 00:00:00 2001 From: Mike Soule Date: Thu, 27 Apr 2023 20:24:14 -0700 Subject: [PATCH 509/965] formatting #3367 --- ...ninstall-AdcsEnrollmentPolicyWebService.md | 57 +++++++++++++------ 1 file changed, 40 insertions(+), 17 deletions(-) diff --git a/docset/winserver2022-ps/adcsdeployment/Uninstall-AdcsEnrollmentPolicyWebService.md b/docset/winserver2022-ps/adcsdeployment/Uninstall-AdcsEnrollmentPolicyWebService.md index 08cb12cd6f..8a64854e8c 100644 --- a/docset/winserver2022-ps/adcsdeployment/Uninstall-AdcsEnrollmentPolicyWebService.md +++ b/docset/winserver2022-ps/adcsdeployment/Uninstall-AdcsEnrollmentPolicyWebService.md @@ -16,38 +16,48 @@ Uninstalls the Certificate Enrollment Policy Web service. ## SYNTAX ### UninstallSingleInstance (Default) + ``` -Uninstall-AdcsEnrollmentPolicyWebService -AuthenticationType [-KeyBasedRenewal] [-Force] - [-WhatIf] [-Confirm] [] +Uninstall-AdcsEnrollmentPolicyWebService -AuthenticationType + [-KeyBasedRenewal] [-Force] [-WhatIf] [-Confirm] [] ``` ### UninstallAll + ``` -Uninstall-AdcsEnrollmentPolicyWebService [-AllPolicyServers] [-Force] [-WhatIf] [-Confirm] [] +Uninstall-AdcsEnrollmentPolicyWebService [-AllPolicyServers] [-Force] + [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Uninstall-AdcsEnrollmentPolicyWebService** cmdlet uninstalls the Certificate Enrollment Policy (CEP) Web Service. + +The `Uninstall-AdcsEnrollmentPolicyWebService` cmdlet uninstalls the Certificate Enrollment Policy +(CEP) Web Service. ## EXAMPLES ### Example 1: Uninstall all configuration in the CEP Web Service -``` -PS C:\> Uninstall-AdcsEnrollmentPolicyWebService -AllPolicyServers -Force + +```powershell +Uninstall-AdcsEnrollmentPolicyWebService -AllPolicyServers -Force ``` -This command uninstalls all configurations in the CEP Web Service without prompting for confirmation. +This command uninstalls all configurations in the CEP Web Service without prompting for +confirmation. ### Example 2: Uninstall an instance of the CEP Web Service -``` -PS C:\> Uninstall-AdcsEnrollmentPolicyWebService -AuthenticationType Certificate -KeyBasedRenewal -Force + +```powershell +Uninstall-AdcsEnrollmentPolicyWebService -AuthenticationType Certificate -KeyBasedRenewal -Force ``` -This command uninstalls the instance of CEP Web Service that is utilizing certificate authentication and is in key-based renewal mode without prompting for confirmation. +This command uninstalls the instance of CEP Web Service that is utilizing certificate authentication +and is in key-based renewal mode without prompting for confirmation. ## PARAMETERS ### -AllPolicyServers + Indicates that the cmdlet uninstall all instances of the CEP Web Service. ```yaml @@ -63,7 +73,9 @@ Accept wildcard characters: False ``` ### -AuthenticationType -Specifies the authentication type for the CEP Web Service instance to be uninstalled when multiple instances are present. + +Specifies the authentication type for the CEP Web Service instance to be uninstalled when multiple +instances are present. ```yaml Type: AuthenticationType @@ -79,6 +91,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -94,6 +107,7 @@ Accept wildcard characters: False ``` ### -Force + Forces the command to run without asking for user confirmation. ```yaml @@ -109,10 +123,12 @@ Accept wildcard characters: False ``` ### -KeyBasedRenewal -Indicates that this cmdlet uninstalls the instance of the CEP Web Service running in key-based renewal mode. -This parameter is optional. -It is used to distinguish which instance of the CEP Web Service is to be uninstalled if there are multiple instances that use the same authentication type. -If this option is not specified, the instance of the CEP Web Service that is using the defined AuthenticationType that is not enabled for KeyBasedRenewal mode is uninstalled. + +Indicates that this cmdlet uninstalls the instance of the CEP Web Service running in key-based +renewal mode. This parameter is optional. It is used to distinguish which instance of the CEP Web +Service is to be uninstalled if there are multiple instances that use the same authentication type. +If this option is not specified, the instance of the CEP Web Service that is using the defined +AuthenticationType that is not enabled for KeyBasedRenewal mode is uninstalled. ```yaml Type: SwitchParameter @@ -127,6 +143,7 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml @@ -142,7 +159,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -155,7 +176,9 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.CertificateServices.Deployment.Common.CEP.EnrollmentPolicyServiceResult ## NOTES -* Ensure you run Windows PowerShell as an administrator. You can use the *Force* parameter to bypass the prompt for confirmation. + +- Ensure you run Windows PowerShell as an administrator. You can use the **Force** parameter to + bypass the prompt for confirmation. ## RELATED LINKS From 5231e1a31992520fe74b8b263fc67f14c0e7d050 Mon Sep 17 00:00:00 2001 From: Mike Soule Date: Thu, 27 Apr 2023 20:29:26 -0700 Subject: [PATCH 510/965] formatting #3369 --- .../Uninstall-AdcsCertificationAuthority.md | 29 ++++++++++++++----- 1 file changed, 21 insertions(+), 8 deletions(-) diff --git a/docset/winserver2022-ps/adcsdeployment/Uninstall-AdcsCertificationAuthority.md b/docset/winserver2022-ps/adcsdeployment/Uninstall-AdcsCertificationAuthority.md index c742f5bd18..e9eeb9fb6c 100644 --- a/docset/winserver2022-ps/adcsdeployment/Uninstall-AdcsCertificationAuthority.md +++ b/docset/winserver2022-ps/adcsdeployment/Uninstall-AdcsCertificationAuthority.md @@ -16,24 +16,30 @@ Uninstalls the CA role service and removes the configuration information. ## SYNTAX ``` -Uninstall-AdcsCertificationAuthority [-Force] [-WhatIf] [-Confirm] [] +Uninstall-AdcsCertificationAuthority [-Force] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION -The **Uninstall-AdcsCertificationAuthority** cmdlet removes the Active certificate authority (CA) role and removes the configuration information. + +The `Uninstall-AdcsCertificationAuthority` cmdlet removes the Active certificate authority (CA) role +and removes the configuration information. ## EXAMPLES ### Example 1: Uninstall the Active Directory CA role service -``` -PS C:\> Uninstall-AdcsCertificationAuthority -Force + +```powershell +Uninstall-AdcsCertificationAuthority -Force ``` -This command uninstalls the Active Directory Certification Authority role service and does not prompt for user confirmation. +This command uninstalls the Active Directory Certification Authority role service and does not +prompt for user confirmation. ## PARAMETERS ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -49,6 +55,7 @@ Accept wildcard characters: False ``` ### -Force + Forces the command to run without asking for user confirmation. ```yaml @@ -64,6 +71,7 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. @@ -80,7 +88,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -91,9 +103,10 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.CertificateServices.Deployment.Common.CA.CertificationAuthoritySetupResult ## NOTES -* To uninstall the CA role service, ensure you run Windows PowerShell as an administrator. You can run the command with the *Force* parameter to bypass the prompt for confirmation. + +- To uninstall the CA role service, ensure you run Windows PowerShell as an administrator. You can + run the command with the *Force* parameter to bypass the prompt for confirmation. ## RELATED LINKS [Install-AdcsCertificationAuthority](./Install-AdcsCertificationAuthority.md) - From 936422748128320bd6aca602afb7e790f4f42899 Mon Sep 17 00:00:00 2001 From: Mike Soule Date: Thu, 27 Apr 2023 20:34:08 -0700 Subject: [PATCH 511/965] formatting #3371 --- .../Install-AdcsWebEnrollment.md | 59 ++++++++++++------- 1 file changed, 38 insertions(+), 21 deletions(-) diff --git a/docset/winserver2022-ps/adcsdeployment/Install-AdcsWebEnrollment.md b/docset/winserver2022-ps/adcsdeployment/Install-AdcsWebEnrollment.md index 926740034d..c1e3cf65b4 100644 --- a/docset/winserver2022-ps/adcsdeployment/Install-AdcsWebEnrollment.md +++ b/docset/winserver2022-ps/adcsdeployment/Install-AdcsWebEnrollment.md @@ -16,13 +16,15 @@ Installs the Certification Authority Web Enrollment. ## SYNTAX ``` -Install-AdcsWebEnrollment [-CAConfig ] [-Force] [-Credential ] [-WhatIf] [-Confirm] - [] +Install-AdcsWebEnrollment [-CAConfig ] [-Force] + [-Credential ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Install-AdcsWebEnrollment** cmdlet performs initial installation and configuration of the Certification Authority (CA) Web Enrollment role service. -To remove the Web Enrollment role service use the **Uninstall-AdcsWebEnrollment** cmdlet. + +The `Install-AdcsWebEnrollment` cmdlet performs initial installation and configuration of the +Certification Authority (CA) Web Enrollment role service. To remove the Web Enrollment role service +use the `Uninstall-AdcsWebEnrollment` cmdlet. You can import the cmdlet by running the following commands from Windows PowerShell: @@ -32,24 +34,30 @@ You can import the cmdlet by running the following commands from Windows PowerSh ## EXAMPLES ### Example 1: Install the Web Enrollment role service to a CA with confirmation -``` -PS C:\> Install-AdcsWebEnrollment -CAConfig "\" + +```powershell +Install-AdcsWebEnrollment -CAConfig "\" ``` -This command installs the Web Enrollment role service to a CA specified by `\`. -Replace the computer name of the CA for `` and replace the CA common name for `` when running the command. +This command installs the Web Enrollment role service to a CA specified by +`\`. Replace the computer name of the CA for `` and +replace the CA common name for `` when running the command. ### Example 1: Install the Web Enrollment role service to a CA without confirmation -``` -PS C:\> Install-AdcsWebEnrollment -CAConfig "\" -Force + +```powershell +Install-AdcsWebEnrollment -CAConfig "\" -Force ``` -This command installs the Web Enrollment role service to a CA specified by `\` without requiring user confirmation. -Replace the computer name of the CA for `` and replace the CA common name for `` when running the command. +This command installs the Web Enrollment role service to a CA specified by +`\` without requiring user confirmation. Replace the computer name of +the CA for `` and replace the CA common name for `` when running the +command. ## PARAMETERS ### -CAConfig + Specifies the CA config parameter string. Do not specify this if there is a local CA installed. @@ -66,6 +74,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -81,11 +90,12 @@ Accept wildcard characters: False ``` ### -Credential -Specifies a **PSCredential** object for the CA Web Enrollment. -To obtain a credential object, use the **Get-Credential** cmdlet. -For more information, type `Get-Help Get-Credential`. -If the Web Enrollment service is configured to use Standalone CA, then an account that is a member of the local Administrators on the CA is required. -If the Web Enrollment service is configured to use an Enterprise CA, then an account that is a member of Domain Admins is required. + +Specifies a `PSCredential` object for the CA Web Enrollment. To obtain a credential object, use the +`Get-Credential` cmdlet. For more information, type `Get-Help Get-Credential`. If the Web Enrollment +service is configured to use Standalone CA, then an account that is a member of the local +Administrators on the CA is required. If the Web Enrollment service is configured to use an +Enterprise CA, then an account that is a member of Domain Admins is required. ```yaml Type: PSCredential @@ -100,6 +110,7 @@ Accept wildcard characters: False ``` ### -Force + Forces the command to run without asking for user confirmation. ```yaml @@ -115,6 +126,7 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml @@ -130,7 +142,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -143,12 +159,13 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.CertificateServices.Deployment.Common.WEP.WebEnrollmentResult ## NOTES -* Ensure you run Windows PowerShell as an administrator. You can use the *Force* parameter to bypass the prompt for confirmation. -To see parameters, run the following command: `Install-AdcsWebEnrollment -?` + +- Ensure you run Windows PowerShell as an administrator. You can use the **Force** parameter to + bypass the prompt for confirmation. To see parameters, run the following command: + `Install-AdcsWebEnrollment -?` ## RELATED LINKS [Uninstall-AdcsWebEnrollment](./Uninstall-AdcsWebEnrollment.md) [Get-Credential](https://go.microsoft.com/fwlink/?LinkID=293936) - From 7f2cccb9b9d511867c51c02c9a4450a43c55e0ae Mon Sep 17 00:00:00 2001 From: Mike Soule Date: Thu, 27 Apr 2023 20:39:24 -0700 Subject: [PATCH 512/965] formatting #3373 --- .../Install-AdcsOnlineResponder.md | 49 ++++++++++++------- 1 file changed, 32 insertions(+), 17 deletions(-) diff --git a/docset/winserver2022-ps/adcsdeployment/Install-AdcsOnlineResponder.md b/docset/winserver2022-ps/adcsdeployment/Install-AdcsOnlineResponder.md index 7b3fd3a601..708cb93bd6 100644 --- a/docset/winserver2022-ps/adcsdeployment/Install-AdcsOnlineResponder.md +++ b/docset/winserver2022-ps/adcsdeployment/Install-AdcsOnlineResponder.md @@ -16,12 +16,15 @@ Installs the Online Responder service. ## SYNTAX ``` -Install-AdcsOnlineResponder [-Force] [-Credential ] [-WhatIf] [-Confirm] [] +Install-AdcsOnlineResponder [-Force] [-Credential ] [-WhatIf] + [-Confirm] [] ``` ## DESCRIPTION -The **Install-AdcsOnlineResponder** cmdlet installs the Online Responder service, which provides Online Certificate Status Protocol (OSCP) services. -To remove the role service, use the **Uninstall-AdcsOnlineResponder** cmdlet. + +The `Install-AdcsOnlineResponder` cmdlet installs the Online Responder service, which provides +Online Certificate Status Protocol (OSCP) services. To remove the role service, use the +`Uninstall-AdcsOnlineResponder` cmdlet. You can import the cmdlet by running the following commands from Windows PowerShell: @@ -31,15 +34,17 @@ You can import the cmdlet by running the following commands from Windows PowerSh ## EXAMPLES ### Example 1: Install the Online Responder role service -``` -PS C:\> Install-AdcsOnlineResponder + +```powershell +Install-AdcsOnlineResponder ``` This command installs the Online Responder role service. ### Example 2: Force the installation of the Online Responder role service -``` -PS C:\> Install-AdcsOnlineResponder -Force + +```powershell +Install-AdcsOnlineResponder -Force ``` This command forces the installation of the Online Responder role service. @@ -47,6 +52,7 @@ This command forces the installation of the Online Responder role service. ## PARAMETERS ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -62,12 +68,14 @@ Accept wildcard characters: False ``` ### -Credential -Specifies a **PSCredential** object for the Online Responder service. -To obtain a credential object, use the **Get-Credential** cmdlet. -For more information, type `Get-Help Get-Credential`. -You can install the Online Responder role service only on servers that are members of Active Directory Domain Services (AD DS) domains. -If you are installing an online responder configured to use a standalone certification authority (CA), then an account that is a member of the local Administrators group of the target server is required. -If you are installing an online responder to target an Enterprise CA, then an account that is a member of the Domain Admins group is required. + +Specifies a **PSCredential** object for the Online Responder service. To obtain a credential object, +use the `Get-Credential` cmdlet. For more information, type `Get-Help Get-Credential`. You can +install the Online Responder role service only on servers that are members of Active Directory +Domain Services (AD DS) domains. If you are installing an online responder configured to use a +standalone certification authority (CA), then an account that is a member of the local +Administrators group of the target server is required. If you are installing an online responder to +target an Enterprise CA, then an account that is a member of the Domain Admins group is required. ```yaml Type: PSCredential @@ -82,6 +90,7 @@ Accept wildcard characters: False ``` ### -Force + Forces the command to run without asking for user confirmation. ```yaml @@ -97,6 +106,7 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. @@ -113,7 +123,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -124,12 +138,13 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.CertificateServices.Deployment.Common.OCSP.OnlineResponderResult ## NOTES -* Ensure you run Windows PowerShell as an administrator. You can use the *Force* parameter to bypass the prompt for confirmation. -To see parameters, run the following command: `Install-AdcsOnlineResponder -?` + +- Ensure you run Windows PowerShell as an administrator. You can use the **Force** parameter to + bypass the prompt for confirmation. To see parameters, run the following command: + `Install-AdcsOnlineResponder -?` ## RELATED LINKS [Uninstall-AdcsOnlineResponder](./Uninstall-AdcsOnlineResponder.md) [Get-Credential](https://go.microsoft.com/fwlink/?LinkID=293936) - From 3655dae19ca3e0441a37fd554945f55186654096 Mon Sep 17 00:00:00 2001 From: Mike Soule Date: Thu, 27 Apr 2023 21:08:36 -0700 Subject: [PATCH 513/965] formatting #3375 --- ...tall-AdcsNetworkDeviceEnrollmentService.md | 150 ++++++++++++------ 1 file changed, 105 insertions(+), 45 deletions(-) diff --git a/docset/winserver2022-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md b/docset/winserver2022-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md index 2e00333a74..eaaf43bd58 100644 --- a/docset/winserver2022-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md +++ b/docset/winserver2022-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md @@ -16,27 +16,36 @@ Installs the NDES role service. ## SYNTAX ### DefaultParameterSet (Default) + ``` -Install-AdcsNetworkDeviceEnrollmentService [-ApplicationPoolIdentity] [-RAName ] [-RAEmail ] - [-RACompany ] [-RADepartment ] [-RACity ] [-RAState ] [-RACountry ] - [-SigningProviderName ] [-SigningKeyLength ] [-EncryptionProviderName ] - [-EncryptionKeyLength ] [-CAConfig ] [-Force] [-Credential ] [-WhatIf] [-Confirm] - [] +Install-AdcsNetworkDeviceEnrollmentService [-ApplicationPoolIdentity] + [-RAName ] [-RAEmail ] [-RACompany ] + [-RADepartment ] [-RACity ] [-RAState ] + [-RACountry ] [-SigningProviderName ] + [-SigningKeyLength ] [-EncryptionProviderName ] + [-EncryptionKeyLength ] [-CAConfig ] [-Force] + [-Credential ] [-WhatIf] [-Confirm] [] ``` ### ServiceAccountParameterSet + ``` -Install-AdcsNetworkDeviceEnrollmentService -ServiceAccountName -ServiceAccountPassword - [-RAName ] [-RAEmail ] [-RACompany ] [-RADepartment ] [-RACity ] - [-RAState ] [-RACountry ] [-SigningProviderName ] [-SigningKeyLength ] - [-EncryptionProviderName ] [-EncryptionKeyLength ] [-CAConfig ] [-Force] - [-Credential ] [-WhatIf] [-Confirm] [] +Install-AdcsNetworkDeviceEnrollmentService -ServiceAccountName + -ServiceAccountPassword [-RAName ] + [-RAEmail ] [-RACompany ] [-RADepartment ] + [-RACity ] [-RAState ] [-RACountry ] + [-SigningProviderName ] [-SigningKeyLength ] + [-EncryptionProviderName ] [-EncryptionKeyLength ] + [-CAConfig ] [-Force] [-Credential ] [-WhatIf] + [-Confirm] [] ``` ## DESCRIPTION -The **Install-AdcsNetworkDeviceEnrollmentService** cmdlet performs the configuration of the Network Device Enrollment Service (NDES) role service. -To remove the NDES role service, use the **Uninstall-AdcsNetworkDeviceEnrollmentService** cmdlet. +The `Install-AdcsNetworkDeviceEnrollmentService` cmdlet performs the configuration of the Network +Device Enrollment Service (NDES) role service. + +To remove the NDES role service, use the `Uninstall-AdcsNetworkDeviceEnrollmentService` cmdlet. You can import the cmdlet by running the following commands from Windows PowerShell: @@ -48,42 +57,70 @@ Int is equivalent to Int32 in the [.NET Framework](https://msdn.microsoft.com/en ## EXAMPLES ### Example 1: Display the default NDES settings -``` -PS C:\> Install-AdcsNetworkDeviceEnrollmentService -ApplicationPoolIdentity -WhatIf + +```powershell +Install-AdcsNetworkDeviceEnrollmentService -ApplicationPoolIdentity -WhatIf ``` This command displays the default NDES settings that will be configured if it is installed. ### Example 2: Display the default NDES settings using a service account name and password -``` -PS C:\> Install-AdcsNetworkDeviceEnrollmentService -ServiceAccountName "CONTOSO\svcNDES" -ServiceAccountPassword (read-host "Set user password" -assecurestring) -WhatIf + +```powershell +$params = @{ + ServiceAccountName = "CONTOSO\svcNDES" + ServiceAccountPassword = (read-host "Set user password" -assecurestring) + WhatIf = $true +} +Install-AdcsNetworkDeviceEnrollmentService @params ``` -This command displays the default settings when NDES is using a service account without making any changes to the configuration. -This command uses the service account named "CONTOSO\svcNDES" that is a member of the local computer's IIS_USRS group. +This command displays the default settings when NDES is using a service account without making any +changes to the configuration. This command uses the service account named `"CONTOSO\svcNDES"` that +is a member of the local computer's `IIS_USRS` group. ### Example 3: Install NDES using the application pool identity -``` -PS C:\> Install-AdcsNetworkDeviceEnrollmentService -ApplicationPoolIdentity -CAConfig "\" + +```powershell +$params = @{ + ApplicationPoolIdentity = $true + CAConfig = "\" +} +Install-AdcsNetworkDeviceEnrollmentService @params ``` -This command installs NDES using the application pool identity to use a remote CA as specified by the CA computer `\`. -Substitute the appropriate CA computer name and common name for `` and ``. +This command installs NDES using the application pool identity to use a remote CA as specified by +the CA computer `\`. Substitute the appropriate CA computer name and +common name for `` and ``. ### Example 4: Install NDES using a specific service account -``` -PS C:\> Install-AdcsNetworkDeviceEnrollmentService -ServiceAccountName "CONTOSO\svcNDES" -ServiceAccountPassword (read-host "Set user password" -assecurestring) -CAConfig "CAComputerName\CAName" -RAName "Contoso-NDES-RA" -RACountry "US" -RACompany "Contoso" -SigningProviderName "Microsoft Strong Cryptographic Provider" -SigningKeyLength 4096 -EncryptionProviderName "Microsoft Strong Cryptographic Provider" -EncryptionKeyLength 4096 + +```powershell +$params = @{ + ServiceAccountName = "CONTOSO\svcNDES" + ServiceAccountPassword = (read-host "Set user password" -assecurestring) + CAConfig = "CAComputerName\CAName" + RAName = "Contoso-NDES-RA" + RACountry = "US" + RACompany = "Contoso" + SigningProviderName = "Microsoft Strong Cryptographic Provider" + SigningKeyLength = 4096 + EncryptionProviderName = "Microsoft Strong Cryptographic Provider" + EncryptionKeyLength = 4096 +} +Install-AdcsNetworkDeviceEnrollmentService @params ``` -This command installs the NDES using a service account named "CONTOSO\svcNDES" that is a member of the local computer's IIS_USRS group. -The command also specifies several non-default parameters. +This command installs the NDES using a service account named `"CONTOSO\svcNDES"` that is a member of +the local computer's `IIS_USRS` group. The command also specifies several non-default parameters. ## PARAMETERS ### -ApplicationPoolIdentity -Indicates that the cmdlet the identity that the Network Device Enrollment Service (NDES) uses when communicating with the certification authority (CA). -This parameter is only valid when NDES is using a remote CA. -If the CA is local, the application pool identity account cannot be used. + +Indicates that the cmdlet the identity that the Network Device Enrollment Service (NDES) uses when +communicating with the certification authority (CA). This parameter is only valid when NDES is using +a remote CA. If the CA is local, the application pool identity account cannot be used. ```yaml Type: SwitchParameter @@ -98,9 +135,10 @@ Accept wildcard characters: False ``` ### -CAConfig -Specifies remote certification authority (CA) that the Network Device Enrollment Service uses. -This parameter is mandatory when used within the *ApplicationPoolIdentity* parameter. -Do not use this parameter when a local CA is installed. + +Specifies remote certification authority (CA) that the Network Device Enrollment Service uses. This +parameter is mandatory when used within the **ApplicationPoolIdentity** parameter. Do not use this +parameter when a local CA is installed. ```yaml Type: String @@ -115,6 +153,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -130,12 +169,13 @@ Accept wildcard characters: False ``` ### -Credential -Specifies a **PSCredential** object that this cmdlet use to connect to the NDES role service. -To obtain a credential object, use the **Get-Credential** cmdlet. -For more information, type `Get-Help Get-Credential`. -The NDES must be installed on a server that is a member of an Active Directory Domain Services (AD DS) domain. -If NDES is configured to use a Standalone CA, then an account that is a member of the local Administrators on the CA is required. -If NDES is installed to use an Enterprise CA, then using an account that is a member of Domain Admins group is required. + +Specifies a **PSCredential** object that this cmdlet use to connect to the NDES role service. To +obtain a credential object, use the `Get-Credential` cmdlet. For more information, type +`Get-Help Get-Credential`. The NDES must be installed on a server that is a member of an Active +Directory Domain Services (AD DS) domain. If NDES is configured to use a Standalone CA, then an +account that is a member of the local Administrators on the CA is required. If NDES is installed to +use an Enterprise CA, then using an account that is a member of Domain Admins group is required. ```yaml Type: PSCredential @@ -150,6 +190,7 @@ Accept wildcard characters: False ``` ### -EncryptionKeyLength + Specifies the encryption key length. This option is not valid if you use existing keys during installation. @@ -166,7 +207,9 @@ Accept wildcard characters: False ``` ### -EncryptionProviderName -Specifies the name of the encryption provider, such as the name of cryptographic service provider (CSP). + +Specifies the name of the encryption provider, such as the name of cryptographic service provider +(CSP). ```yaml Type: String @@ -181,6 +224,7 @@ Accept wildcard characters: False ``` ### -Force + Forces the command to run without asking for user confirmation. ```yaml @@ -196,6 +240,7 @@ Accept wildcard characters: False ``` ### -RACity + Specifies the city of the registration authority. ```yaml @@ -211,6 +256,7 @@ Accept wildcard characters: False ``` ### -RACompany + Specifies the organization or company that the registration authority represents. ```yaml @@ -226,6 +272,7 @@ Accept wildcard characters: False ``` ### -RACountry + Specifies the country of the registration authority. ```yaml @@ -241,6 +288,7 @@ Accept wildcard characters: False ``` ### -RADepartment + Specifies the department of the registration authority. ```yaml @@ -256,6 +304,7 @@ Accept wildcard characters: False ``` ### -RAEmail + Specifies the email address of the registration authority. ```yaml @@ -271,6 +320,7 @@ Accept wildcard characters: False ``` ### -RAName + Specifies the name of the NDES registration authority. ```yaml @@ -286,7 +336,9 @@ Accept wildcard characters: False ``` ### -RAState -Specifies the state or province (geographical political boundary), if applicable, of the registration authority. + +Specifies the state or province (geographical political boundary), if applicable, of the +registration authority. ```yaml Type: String @@ -301,6 +353,7 @@ Accept wildcard characters: False ``` ### -ServiceAccountName + Specifies the name of the account that is used by the Network Device Enrollment Service. ```yaml @@ -316,6 +369,7 @@ Accept wildcard characters: False ``` ### -ServiceAccountPassword + Specifies the password of the service account that is used by the Network Device Enrollment Service. ```yaml @@ -331,6 +385,7 @@ Accept wildcard characters: False ``` ### -SigningKeyLength + Specifies the signing key length. ```yaml @@ -346,6 +401,7 @@ Accept wildcard characters: False ``` ### -SigningProviderName + Specifies the name of the signing device. ```yaml @@ -361,6 +417,7 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml @@ -376,7 +433,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -395,14 +456,13 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.CertificateServices.Deployment.Common.NDES.NetworkDeviceEnrollmentServiceResult ## NOTES -* Ensure you run Windows PowerShell as an administrator. You can use the *Force* parameter to bypass the prompt for confirmation. -To see parameters, run the following command: `Install-AdcsNetworkDeviceEnrollmentService -?` - +- Ensure you run Windows PowerShell as an administrator. You can use the **Force** parameter to bypass + the prompt for confirmation. To see parameters, run the following command: + `Install-AdcsNetworkDeviceEnrollmentService -?` ## RELATED LINKS [Uninstall-AdcsNetworkDeviceEnrollmentService](./Uninstall-AdcsNetworkDeviceEnrollmentService.md) [Get-Credential](https://go.microsoft.com/fwlink/?LinkID=293936) - From c57f4892df762555017967e7b28976efd4c636b9 Mon Sep 17 00:00:00 2001 From: Missy Januszko Date: Fri, 28 Apr 2023 12:22:40 -0400 Subject: [PATCH 514/965] add backticks --- .../defender/Add-MpPreference.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docset/winserver2022-ps/defender/Add-MpPreference.md b/docset/winserver2022-ps/defender/Add-MpPreference.md index 7bcdb31a2d..96c95090d6 100644 --- a/docset/winserver2022-ps/defender/Add-MpPreference.md +++ b/docset/winserver2022-ps/defender/Add-MpPreference.md @@ -190,7 +190,7 @@ Accept wildcard characters: False ### -ExclusionExtension -Specifies an array of file name extensions, such as obj or lib, to exclude from scheduled, custom, +Specifies an array of file name extensions, such as `obj` or `lib`, to exclude from scheduled, custom, and real-time scanning. This cmdlet adds these file name extensions to the exclusions. ```yaml @@ -278,13 +278,13 @@ Accept wildcard characters: False Specifies an array of the actions to take for the IDs specified by using the **ThreatIDDefaultAction_Ids** parameter. The acceptable values for this parameter are: -- 1: Clean -- 2: Quarantine -- 3: Remove -- 6: Allow -- 8: UserDefined -- 9: NoAction -- 10: Block +- `1`: Clean +- `2`: Quarantine +- `3`: Remove +- `6`: Allow +- `8`: UserDefined +- `9`: NoAction +- `10`: Block ```yaml Type: ThreatAction[] From 21958329fa06c8394fbacd55b151e2a09c1b08a2 Mon Sep 17 00:00:00 2001 From: Michael Date: Fri, 28 Apr 2023 10:02:37 -0700 Subject: [PATCH 515/965] Update docset/winserver2022-ps/adcsdeployment/Install-AdcsWebEnrollment.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- .../adcsdeployment/Install-AdcsWebEnrollment.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/adcsdeployment/Install-AdcsWebEnrollment.md b/docset/winserver2022-ps/adcsdeployment/Install-AdcsWebEnrollment.md index c1e3cf65b4..c0be238bf9 100644 --- a/docset/winserver2022-ps/adcsdeployment/Install-AdcsWebEnrollment.md +++ b/docset/winserver2022-ps/adcsdeployment/Install-AdcsWebEnrollment.md @@ -162,7 +162,8 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable - Ensure you run Windows PowerShell as an administrator. You can use the **Force** parameter to bypass the prompt for confirmation. To see parameters, run the following command: - `Install-AdcsWebEnrollment -?` + + `Install-AdcsWebEnrollment -?` ## RELATED LINKS From f0d5f0cda7f81140e514ef2fa125d79a4d8b2581 Mon Sep 17 00:00:00 2001 From: Michael Date: Fri, 28 Apr 2023 10:04:11 -0700 Subject: [PATCH 516/965] Update docset/winserver2022-ps/adcsdeployment/Install-AdcsOnlineResponder.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- .../adcsdeployment/Install-AdcsOnlineResponder.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/adcsdeployment/Install-AdcsOnlineResponder.md b/docset/winserver2022-ps/adcsdeployment/Install-AdcsOnlineResponder.md index 708cb93bd6..165a724c60 100644 --- a/docset/winserver2022-ps/adcsdeployment/Install-AdcsOnlineResponder.md +++ b/docset/winserver2022-ps/adcsdeployment/Install-AdcsOnlineResponder.md @@ -141,7 +141,8 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable - Ensure you run Windows PowerShell as an administrator. You can use the **Force** parameter to bypass the prompt for confirmation. To see parameters, run the following command: - `Install-AdcsOnlineResponder -?` + + `Install-AdcsOnlineResponder -?` ## RELATED LINKS From 6aad9b170917a1ee8c3ae676a5439b105157c46a Mon Sep 17 00:00:00 2001 From: Phil Bossman Date: Fri, 28 Apr 2023 10:04:50 -0700 Subject: [PATCH 517/965] Backup-GPO --- .../grouppolicy/Backup-GPO.md | 156 +++++++++++------- 1 file changed, 96 insertions(+), 60 deletions(-) diff --git a/docset/winserver2022-ps/grouppolicy/Backup-GPO.md b/docset/winserver2022-ps/grouppolicy/Backup-GPO.md index a97f3ac027..75b88aa35f 100644 --- a/docset/winserver2022-ps/grouppolicy/Backup-GPO.md +++ b/docset/winserver2022-ps/grouppolicy/Backup-GPO.md @@ -11,79 +11,95 @@ title: Backup-GPO # Backup-GPO ## SYNOPSIS + Backs up one GPO or all the GPOs in a domain. ## SYNTAX ### BackupOne(GUID) (Default) + ``` -Backup-GPO -Guid -Path [-Comment ] [-Domain ] [-Server ] [-WhatIf] - [-Confirm] [] +Backup-GPO -Guid -Path [-Comment ] [-Domain ] [-Server ] + [-WhatIf] [-Confirm] [] ``` ### BackupOne(Name) + ``` -Backup-GPO [-Name] -Path [-Comment ] [-Domain ] [-Server ] [-WhatIf] - [-Confirm] [] +Backup-GPO [-Name] -Path [-Comment ] [-Domain ] + [-Server ] [-WhatIf] [-Confirm] [] ``` ### BackupAll + ``` -Backup-GPO -Path [-Comment ] [-Domain ] [-Server ] [-All] [-WhatIf] [-Confirm] - [] +Backup-GPO -Path [-Comment ] [-Domain ] [-Server ] [-All] + [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Backup-GPO** cmdlet backs up a specified Group Policy Object (GPO) or all the GPOs in a domain to a backup directory. -The backup directory and GPO must already exist. + +The **Backup-GPO** cmdlet backs up a specified Group Policy Object (GPO) or all the GPOs in a domain +to a backup directory. The backup directory and GPO must already exist. ## EXAMPLES ### Example 1: Backup a GPO to a specific directory + +```powershell +Backup-Gpo -Name TestGPO -Path C:\GpoBackups -Comment "Weekly Backup" ``` -PS C:\> Backup-Gpo -Name TestGPO -Path C:\GpoBackups -Comment "Weekly Backup" -DisplayName : TestGPO +```output +DisplayName : TestGPO GpoId : 35c12ab3-956c-45d5-973b-46b17d225f47 - Id : 2b509d4e-40f5-4337-82f7-458584555d0c - BackupDirectory : C:\GpoBackups - CreationTime : 2/25/2009 8:48:19 PM - DomainName : contoso.com - Comment : Weekly Backup ``` -This command backs up the "TestGPO" GPO to the C:\GpoBackups directory. +This command backs up the `TestGPO` GPO to the `C:\GpoBackups` directory. The specified comment is included in the GPO backup. ### Example 2: Backup a GPO with the specified GUID to a directory -``` -PS C:\> Backup-Gpo -GUID fa4a9473-6e2a-4b87-ab78-175e68d97bde -Domain "contoso.com" -Server "DC1" -Path "\\Server1\GpoBackups" + +```powershell +$params = @{ + GUID = 'fa4a9473-6e2a-4b87-ab78-175e68d97bde' + Domain = 'contoso.com' + Server = 'DC1' + Path = '\\Server1\GpoBackups' +} +Backup-Gpo @params ``` -This command backs up the GPO with the specified GUID in the contoso.com domain to the \\\\Server1\GpoBackups directory. -The domain controller at DC1.contoso.com is contacted to complete the operation. +This command backs up the GPO with the specified **GUID** in the `contoso.com` domain to the +`\\Server1\GpoBackups` directory. The domain controller at `DC1` is contacted to complete +the operation. -If the domain of the user running the session (or, for startup and shutdown scripts, the computer) is different from the contoso.com domain, a trust must exist between the two domains or the command fails. +If the domain of the user running the session (or, for startup and shutdown scripts, the computer) +is different from the `contoso.com` domain, a trust must exist between the two domains or the command +fails. ### Example 3: Backup all GPOs in the domain of the user that is running the session + ``` -PS C:\> Backup-Gpo -All -Path "\\Server1\GpoBackups" +Backup-Gpo -All -Path "\\Server1\GpoBackups" ``` -This command backs up all the GPOs in the domain of the user that is running the session (or, for startup and shutdown scripts, the computer) to the \\\\Server1\GpoBackups directory. +This command backs up all the GPOs in the domain of the user that is running the session (or, for +startup and shutdown scripts, the computer) to the `\\Server1\GpoBackups` directory. ## PARAMETERS ### -All + Specifies that all the GPOs in the domain are backed up. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: BackupAll Aliases: @@ -95,11 +111,12 @@ Accept wildcard characters: False ``` ### -Comment -Specifies a comment for the backed-up GPO. -The comment string must be enclosed in double-quotation or single-quotation marks and can contain 2,047 characters. + +Specifies a comment for the backed-up GPO. The comment string must be enclosed in double-quotation +or single-quotation marks and can contain 2,047 characters. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -111,10 +128,11 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -126,21 +144,25 @@ Accept wildcard characters: False ``` ### -Domain -Specifies the domain for this cmdlet. -You must specify the fully qualified domain name (FQDN) of the domain (for example: sales.contoso.com). + +Specifies the domain for this cmdlet. You must specify the fully qualified domain name (FQDN) of the +domain (for example: sales.contoso.com). For the **Backup-GPO** cmdlet, the GPO to back up must exist in this domain. -If you do not specify the *Domain* parameter, the domain of the user that is running the current session is used. -(If the cmdlet is being run from a computer startup or shutdown script, the domain of the computer is used.) For more information, see the Notes section in the full Help. +If you do not specify the **Domain** parameter, the domain of the user that is running the current +session is used. (If the cmdlet is being run from a computer startup or shutdown script, the domain +of the computer is used.) For more information, see the Notes section in the full Help. -If you specify a domain that is different from the domain of the user that is running the current session (or, for a startup or shutdown script, the computer), a trust must exist between that domain and the domain of the user (or the computer). +If you specify a domain that is different from the domain of the user that is running the current +session (or, for a startup or shutdown script, the computer), a trust must exist between that domain +and the domain of the user (or the computer). -You can also refer to Domain by its built-in alias, domainname. -For more information, see about_Aliases. +You can also refer to Domain by its built-in alias, domain name. +For more information, see [about_Aliases](????????). ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DomainName @@ -152,14 +174,15 @@ Accept wildcard characters: False ``` ### -Guid + Specifies the GPO to backup by its globally unique identifier (GUID). -The GUID uniquely identifies the GPO. +The `GUID` uniquely identifies the GPO. -You can also refer to the *Guid* parameter by its built-in alias, id. -For more information, see **about_Aliases**. +You can also refer to the **Guid** parameter by its built-in alias, id. +For more information, see [about_Aliases](????????????). ```yaml -Type: Guid +Type: Guid ???????????? Parameter Sets: BackupOne(GUID) Aliases: Id @@ -171,17 +194,18 @@ Accept wildcard characters: False ``` ### -Name + Specifies the GPO to backup by its display name. The display name is not guaranteed to be unique in the domain. If another GPO with the same display name exists in the domain an error occurs. -You can use the *Guid* parameter to uniquely identify a GPO. +You can use the **Guid** parameter to uniquely identify a GPO. -You can also refer to the Name parameter by its built-in alias, displayname. -For more information, see **about_Aliases**. +You can also refer to the Name parameter by its built-in alias, **DisplayName**. +For more information, see [about_Aliases](??????????????). ```yaml -Type: String +Type: System.String Parameter Sets: BackupOne(Name) Aliases: DisplayName @@ -193,12 +217,13 @@ Accept wildcard characters: False ``` ### -Path -Specifies the path to the backup directory; for instance, "C:\Backups" or "\\\\MyServer\Backups". + +Specifies the path to the backup directory; for instance, `C:\Backups` or `\\MyServer\Backups`. ```yaml -Type: String +Type: System.String Parameter Sets: (All) -Aliases: backupLocation +Aliases: BackupLocation Required: True Position: Named @@ -208,13 +233,14 @@ Accept wildcard characters: False ``` ### -Server + Specifies the name of the domain controller that this cmdlet contacts to complete the operation. You can specify either the fully qualified domain name (FQDN) or the host name. -If you do not specify the name by using the *Server* parameter, the PDC emulator is contacted. +If you do not specify the name by using the **Server** parameter, the PDC emulator is contacted. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DC @@ -226,11 +252,12 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -242,29 +269,38 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### Microsoft.GroupPolicy.Gpo + A GPO to be backed up. Collections that contain GPOs from different domains are not supported. ## OUTPUTS ### Microsoft.GroupPolicy.GpoBackup + This cmdlet returns an object that represents the file that holds the settings of the backed-up GPO. ## NOTES -* You can use the *Domain* parameter to explicitly specify the domain for this cmdlet. - - If you do not explicitly specify the domain, the cmdlet uses a default domain. -The default domain is the domain that is used to access network resources by the security context under which the current session is running. -This domain is typically the domain of the user that is running the session. -For instance, the domain of the user who started the session by opening Windows PowerShell from the Program Files menu, or the domain of a user that is specified in a runas command. -However, computer startup and shutdown scripts run under the context of the LocalSystem account. -The LocalSystem account is a built-in local account, and it accesses network resources under the context of the computer account. -Therefore, when this cmdlet is run from a startup or shutdown script, the default domain is the domain to which the computer is joined. + +* You can use the **Domain** parameter to explicitly specify the domain for this cmdlet. + + If you do not explicitly specify the domain, the cmdlet uses a default domain. The default domain + is the domain that is used to access network resources by the security context under which the + current session is running. This domain is typically the domain of the user that is running the + session. For instance, the domain of the user who started the session by opening Windows + PowerShell from the Program Files menu, or the domain of a user that is specified in a runas + command. However, computer startup and shutdown scripts run under the context of the LocalSystem + account. The LocalSystem account is a built-in local account, and it accesses network resources + under the context of the computer account. Therefore, when this cmdlet is run from a startup or + shutdown script, the default domain is the domain to which the computer is joined. ## RELATED LINKS From 274a6205d27e13fce9e78c60e59cde6b43de209d Mon Sep 17 00:00:00 2001 From: Michael Date: Fri, 28 Apr 2023 10:09:12 -0700 Subject: [PATCH 518/965] Update docset/winserver2022-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- .../Install-AdcsNetworkDeviceEnrollmentService.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md b/docset/winserver2022-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md index eaaf43bd58..ae7a518bce 100644 --- a/docset/winserver2022-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md +++ b/docset/winserver2022-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md @@ -459,7 +459,8 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable - Ensure you run Windows PowerShell as an administrator. You can use the **Force** parameter to bypass the prompt for confirmation. To see parameters, run the following command: - `Install-AdcsNetworkDeviceEnrollmentService -?` + + `Install-AdcsNetworkDeviceEnrollmentService -?` ## RELATED LINKS From 144aa2a41f5e2b072f192bff2983f956fb32ce2b Mon Sep 17 00:00:00 2001 From: Michael Date: Fri, 28 Apr 2023 10:09:38 -0700 Subject: [PATCH 519/965] Update docset/winserver2022-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- .../Install-AdcsNetworkDeviceEnrollmentService.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md b/docset/winserver2022-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md index ae7a518bce..e98a27bb33 100644 --- a/docset/winserver2022-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md +++ b/docset/winserver2022-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md @@ -170,7 +170,7 @@ Accept wildcard characters: False ### -Credential -Specifies a **PSCredential** object that this cmdlet use to connect to the NDES role service. To +Specifies a **PSCredential** object that this cmdlet uses to connect to the NDES role service. To obtain a credential object, use the `Get-Credential` cmdlet. For more information, type `Get-Help Get-Credential`. The NDES must be installed on a server that is a member of an Active Directory Domain Services (AD DS) domain. If NDES is configured to use a Standalone CA, then an From 0904a986abc2b310f7fe7d996e7171b6407347ec Mon Sep 17 00:00:00 2001 From: Michael Date: Fri, 28 Apr 2023 10:09:52 -0700 Subject: [PATCH 520/965] Update docset/winserver2022-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- .../Install-AdcsNetworkDeviceEnrollmentService.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md b/docset/winserver2022-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md index e98a27bb33..f46637c5da 100644 --- a/docset/winserver2022-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md +++ b/docset/winserver2022-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md @@ -136,7 +136,7 @@ Accept wildcard characters: False ### -CAConfig -Specifies remote certification authority (CA) that the Network Device Enrollment Service uses. This +Specifies the remote certification authority (CA) that the Network Device Enrollment Service uses. This parameter is mandatory when used within the **ApplicationPoolIdentity** parameter. Do not use this parameter when a local CA is installed. From 7634b815f38bc02e565fe50b05aaf99411c2f823 Mon Sep 17 00:00:00 2001 From: Michael Date: Fri, 28 Apr 2023 10:13:51 -0700 Subject: [PATCH 521/965] Update Install-AdcsNetworkDeviceEnrollmentService.md --- .../Install-AdcsNetworkDeviceEnrollmentService.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md b/docset/winserver2022-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md index f46637c5da..e97b1ee959 100644 --- a/docset/winserver2022-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md +++ b/docset/winserver2022-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md @@ -118,8 +118,8 @@ the local computer's `IIS_USRS` group. The command also specifies several non-de ### -ApplicationPoolIdentity -Indicates that the cmdlet the identity that the Network Device Enrollment Service (NDES) uses when -communicating with the certification authority (CA). This parameter is only valid when NDES is using +Indicates the identity that the Network Device Enrollment Service (NDES) uses when communicating +with the certification authority (CA). This parameter is only valid when NDES is using a remote CA. If the CA is local, the application pool identity account cannot be used. ```yaml From 8bcc337e5877a1fe495b93a5eef99d16a722b872 Mon Sep 17 00:00:00 2001 From: Phil Bossman Date: Fri, 28 Apr 2023 10:17:47 -0700 Subject: [PATCH 522/965] Copy-GPO --- .../winserver2022-ps/grouppolicy/Copy-GPO.md | 249 +++++++++++------- 1 file changed, 150 insertions(+), 99 deletions(-) diff --git a/docset/winserver2022-ps/grouppolicy/Copy-GPO.md b/docset/winserver2022-ps/grouppolicy/Copy-GPO.md index 525a1af1b3..7dfa83cf2e 100644 --- a/docset/winserver2022-ps/grouppolicy/Copy-GPO.md +++ b/docset/winserver2022-ps/grouppolicy/Copy-GPO.md @@ -11,108 +11,131 @@ title: Copy-GPO # Copy-GPO ## SYNOPSIS + Copies a GPO. ## SYNTAX ### SourcebyGUID (Default) + ``` Copy-GPO -SourceGuid -TargetName [-SourceDomain ] [-TargetDomain ] - [-SourceDomainController ] [-TargetDomainController ] [-MigrationTable ] [-CopyAcl] - [-WhatIf] [-Confirm] [] + [-SourceDomainController ] [-TargetDomainController ] [-MigrationTable ] + [-CopyAcl] [-WhatIf] [-Confirm] [] ``` ### SourcebyName + ``` -Copy-GPO [-SourceName] -TargetName [-SourceDomain ] [-TargetDomain ] - [-SourceDomainController ] [-TargetDomainController ] [-MigrationTable ] [-CopyAcl] - [-WhatIf] [-Confirm] [] +Copy-GPO [-SourceName] -TargetName [-SourceDomain ] + [-TargetDomain ] [-SourceDomainController ] [-TargetDomainController ] + [-MigrationTable ] [-CopyAcl] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Copy-GPO** cmdlet creates a destination Group Policy Object (GPO) and copies the settings from the source GPO to the new GPO. -The cmdlet can be used to copy a GPO from one domain to another domain within the same forest. -You can specify a migration table to map security principals and paths when copying across domains. -You can also specify whether to copy the access control list (ACL) from the source GPO to the destination GPO. -This cmdlet does not copy the source GPO if a GPO with the specified target display name already exists in the destination domain. -In this case, an error occurs and the GPO is not copied. +The **Copy-GPO** cmdlet creates a destination Group Policy Object (GPO) and copies the settings from +the source GPO to the new GPO. The cmdlet can be used to copy a GPO from one domain to another +domain within the same forest. You can specify a migration table to map security principals and +paths when copying across domains. You can also specify whether to copy the access control list +(ACL) from the source GPO to the destination GPO. + +This cmdlet does not copy the source GPO if a GPO with the specified target display name already +exists in the destination domain. In this case, an error occurs and the GPO is not copied. ## EXAMPLES ### Example 1: Copy a GPO + +```powershell +Copy-GPO -SourceName "TestGpo1" -TargetName "TestGpo2" ``` -PS C:\> Copy-GPO -SourceName "TestGpo1" -TargetName "TestGpo2" -DisplayName : TestGpo2 +```Output +DisplayName : TestGpo2 DomainName : contoso.com - Owner : CONTOSO\Domain - Admins Id : 37eeb072-cc31-42bb-8c3a-446c2b6ddd3f - GpoStatus : AllSettingsEnabled - Description : - CreationTime : 2/25/2009 9:12:05 PM - ModificationTime : 2/25/2009 9:12:05 PM - UserVersion : AD Version: 1, SysVol Version: 1 - ComputerVersion : AD Version: 1, SysVol Version: 1 - WmiFilter : ``` -This command copies the TestGpo1 GPO to a GPO named TestGpo2. +This command copies the `TestGpo1` GPO to a GPO named `TestGpo2`. The GPOs exist in the domain of the user that is running the session. ### Example 2: Copy a GPO from a domain to another domain -``` -PS C:\> Copy-GPO -SourceName "TestGpo1" -SourceDomain "test.contoso.com" TargetName "TestGpo1" -TargetDomain "sales.contoso.com" + +```powershell +$params = @{ + SourceName = 'TestGpo1"' + SourceDomain = 'test.contoso.com' + TargetName = 'TestGpo1' + TargetDomain = 'sales.contoso.com' +} +Copy-GPO @params ``` -This command copies the TestGpo1 GPO from the test.contoso.com domain to a GPO named TestGpo1 in the sales.contoso.com domain. +This command copies the `TestGpo1` GPO from the `test.contoso.com` domain to a GPO named `TestGpo1` +in the `sales.contoso.com` domain. -A trust relationship must exist between the source domain and the destination domain. -In addition, if the source domain or the destination domain (or both) is different than the domain of the user that is running the session.a trust must exist between that domain and the domain of the user. +A trust relationship must exist between the source domain and the destination domain. In addition, +if the source domain or the destination domain (or both) is different than the domain of the user +that is running the session.a trust must exist between that domain and the domain of the user. ### Example 3: Copy all GPOs from a domain to another domain -``` -PS C:\> Get-GPO -All -Domain "sales1.contoso.com" | ForEach-Object {$_ | Copy-GPO -TargetName ($_.DisplayName) -TargetDomain "sales2.contoso.com" -CopyAcl -MigrationTable "c:\tables\MigrationTable.migtable"} -``` -This command copies all the GPOs in the sales1.contoso.com domain to the sales2.contoso.com domain. +```powershell +Get-GPO -All -Domain "sales1.contoso.com" | ForEach-Object { + $params = @{ + 'TargetName' = $_.DisplayName + } -All the GPOs in the source domain are retrieved by using the **Get-GPO** cmdlet using the *All* parameter. -The output of **Get-GPO** is piped into the ForEach-Object command. -When each GPO is evaluated, it is piped into **Copy-GPO** and its display name is specified for the *TargetName* parameter "-TargetName ($_.DisplayName)". -The *CopyACL* parameter is specified to copy the ACLs for each GPO to the destination domain. -The *MigrationTable* parameter specifies a migration table to use to migrate Security principals and UNC paths to the destination domain. -Both the *CopyACL* and the *MigrationTable* parameters are optional. +?????????????????????? -If a GPO with the same display name as a source GPO already exists in the destination domain, an error occurs when this command attempts to copy the source GPO. -Because this command copies all GPOs in the source domain, errors occur for default GPOs; for instance, the Default Domain Policy GPO and the Default Domain Controllers Policy GPO. -These GPOs are not copied. -You can suppress these error messages by supplying the *ErrorAction* parameter with a value of SilentlyContinue to **Copy-GPO**. -For more information about the *ErrorAction* parameter, see about_CommonParameters. + $_ | Copy-GPO -TargetName ($_.DisplayName) -TargetDomain "sales2.contoso.com" -CopyAcl -MigrationTable 'c:\tables\MigrationTable.migtable' } +``` -The destination GPOs that were successfully copied are returned by this command. -By default, they are printed to the display, but you can add commands to the end of the pipeline to further configure these GPOs. -For example you can add a Set-GPLink cmdlet to the end of the pipeline to link all the destination GPOs to a site, domain, or organizational unit. +This command copies all the GPOs in the sales1.contoso.com domain to the sales2.contoso.com domain. -A trust relationship must exist between the source domain and the destination domain. -In addition, if the source domain or the destination domain (or both) is different than the domain of the user that is running the session a trust must exist between that domain and the domain of the user or the computer. +All the GPOs in the source domain are retrieved by using the **Get-GPO** cmdlet using the **All** +parameter. The output of **Get-GPO** is piped into the ForEach-Object command. When each GPO is +evaluated, it is piped into **Copy-GPO** and its display name is specified for the **TargetName** +parameter `-TargetName ($_.DisplayName)`. The **CopyACL** parameter is specified to copy the ACLs for +each GPO to the destination domain. The **MigrationTable** parameter specifies a migration table to +use to migrate Security principals and UNC paths to the destination domain. Both the **CopyACL** and +the **MigrationTable** parameters are optional. + +If a GPO with the same display name as a source GPO already exists in the destination domain, an +error occurs when this command attempts to copy the source GPO. Because this command copies all GPOs +in the source domain, errors occur for default GPOs; for instance, the Default Domain Policy GPO and +the Default Domain Controllers Policy GPO. These GPOs are not copied. You can suppress these error +messages by supplying the **ErrorAction** parameter with a value of SilentlyContinue to +**Copy-GPO**. For more information about the **ErrorAction** parameter, see +[about_CommonParameters](?????????). + +The destination GPOs that were successfully copied are returned by this command. By default, they +are printed to the display, but you can add commands to the end of the pipeline to further configure +these GPOs. For example you can add a Set-GPLink cmdlet to the end of the pipeline to link all the +destination GPOs to a site, domain, or organizational unit. + +A trust relationship must exist between the source domain and the destination domain. In addition, +if the source domain or the destination domain (or both) is different than the domain of the user +that is running the session a trust must exist between that domain and the domain of the user or the +computer. ## PARAMETERS ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -124,10 +147,11 @@ Accept wildcard characters: False ``` ### -CopyAcl + Indicates that the cmdlet copies the ACL of the source GPO to the destination GPO. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -139,13 +163,15 @@ Accept wildcard characters: False ``` ### -MigrationTable -Specifies the location of the migration table to use for the command. -You must specify the full path to the file; for instance, \\\\Server1\MigrationTables\TestToSalesTable.migtable. -If you supply a migration table, security principals and Universal Naming Convention (UNC) paths are mapped to the destination GPO when you copy a GPO across domains. -If you do not supply a migration table, security principals and UNC paths are not modified in the destination GPO. + +Specifies the location of the migration table to use for the command. You must specify the full path +to the file; for instance, `\\Server1\MigrationTables\TestToSalesTable.migtable`. If you supply a +migration table, security principals and Universal Naming Convention (UNC) paths are mapped to the +destination GPO when you copy a GPO across domains. If you do not supply a migration table, security +principals and UNC paths are not modified in the destination GPO. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -157,20 +183,23 @@ Accept wildcard characters: False ``` ### -SourceDomain + Specifies the domain of the source GPO. You must specify the fully qualified domain name (FQDN) of the domain. -If you do not specify the *SourceDomain* parameter, the domain of the user that is running the current session is used. -If the cmdlet is being run from a computer startup or shutdown script, the domain of the computer is used. -For more information, see the Notes section in the full Help. +If you do not specify the **SourceDomain** parameter, the domain of the user that is running the +current session is used. If the cmdlet is being run from a computer startup or shutdown script, the +domain of the computer is used. For more information, see the Notes section in the full Help. -If you specify a domain that is different from the domain of the user that is running the current session (or, for a startup or shutdown script, the computer), a trust must exist between that domain and the domain of the user or the computer. +If you specify a domain that is different from the domain of the user that is running the current +session (or, for a startup or shutdown script, the computer), a trust must exist between that domain +and the domain of the user or the computer. -You can also refer to the *SourceDomain* parameter by its built-in alias, domainname. -For more information, see about_Aliases. +You can also refer to the **SourceDomain** parameter by its built-in alias, **DomainName**. For more +information, see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DomainName @@ -182,13 +211,15 @@ Accept wildcard characters: False ``` ### -SourceDomainController -Specifies the name of the domain controller that this cmdlet contacts for the source domain. -You can specify either the fully qualified domain name (FQDN) or the host name. -If you do not specify the name by using the *SourceDomainController* parameter, the primary domain controller (PDC) emulator is contacted. +Specifies the name of the domain controller that this cmdlet contacts for the source domain. You can +specify either the fully qualified domain name (FQDN) or the host name. + +If you do not specify the name by using the **SourceDomainController** parameter, the primary domain +controller (PDC) emulator is contacted. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -200,13 +231,14 @@ Accept wildcard characters: False ``` ### -SourceGuid -Specifies the source GPO by its globally unique identifier (GUID). -The GUID uniquely identifies the GPO. -You can also refer to the *SourceGuid* parameter by its built-in alias, id. +Specifies the source GPO by its globally unique identifier `GUID`. The `GUID` uniquely identifies the +GPO. + +You can also refer to the **SourceGuid** parameter by its built-in alias, `Id`. ```yaml -Type: Guid +Type: System.Management.Automation.Guid Parameter Sets: SourcebyGUID Aliases: Id @@ -218,16 +250,19 @@ Accept wildcard characters: False ``` ### -SourceName + Specifies the source GPO by its display name. -The display name is not guaranteed to be unique in the domain. -If another GPO with the same display name exists in the domain an error occurs. -You can use the *SourceGuid* parameter to uniquely identify a GPO. +The display name is not guaranteed to be unique in the domain. If another GPO with the same display +name exists in the domain an error occurs. You can use the **SourceGuid** parameter to uniquely +identify a GPO. -You can also refer to the *SourceName* parameter by its built-in alias, displayname. +You can also refer to the **SourceDomain** parameter by its built-in alias, **DomainName**. For more +information, see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). +parameter by its built-in alias, **DisplayName**. ```yaml -Type: String +Type: System.String Parameter Sets: SourcebyName Aliases: DisplayName @@ -239,17 +274,19 @@ Accept wildcard characters: False ``` ### -TargetDomain + Specifies the domain to which you want to copy the GPO. You must specify the fully qualified domain name (FQDN) of the domain. -If you do not specify the *TargetDomain* parameter, the domain of the user that is running the current session is used. -If the cmdlet is being run from a computer startup or shutdown script, the domain of the computer is used. -For more information, see the Notes section in the full Help. +If you do not specify the **TargetDomain** parameter, the domain of the user that is running the +current session is used. If the cmdlet is being run from a computer startup or shutdown script, the +domain of the computer is used. For more information, see the Notes section in the full Help. -If you specify a domain that is different from the domain of the user that is running the current session, a trust must exist between that domain and the domain of the user or the computer. +If you specify a domain that is different from the domain of the user that is running the current +session, a trust must exist between that domain and the domain of the user or the computer. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -261,13 +298,15 @@ Accept wildcard characters: False ``` ### -TargetDomainController + Specifies the name of the domain controller that this cmdlet contacts for the destination domain. You can specify either the FQDN or the host name. -If you do not specify the name by using the *TargetDomainController* parameter, the primary domain controller primary domain controller (PDC) emulator is contacted. +If you do not specify the name by using the **TargetDomainController** parameter, the primary domain +controller primary domain controller (PDC) emulator is contacted. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -279,11 +318,12 @@ Accept wildcard characters: False ``` ### -TargetName -Specifies the display name for the destination GPO. -If another GPO with the same display name exists in the target domain, an error occurs. + +Specifies the display name for the destination GPO. If another GPO with the same display name exists +in the target domain, an error occurs. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -295,11 +335,11 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -311,11 +351,16 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### Microsoft.GroupPolicy.Gpo + The cmdlet takes a GPO as input. GPO objects that are piped into the cmdlet are used as the source GPO. Collections that contain GPOs from different domains are not supported. @@ -323,20 +368,26 @@ Collections that contain GPOs from different domains are not supported. ## OUTPUTS ### Microsoft.GroupPolicy.Gpo + This cmdlet outputs a copy of the specified GPO. ## NOTES -* You can use the **Copy-GPO** cmdlet to copy a GPO within a domain or from one domain to another within the same forest. - - You can use the *SourceDomain* and *TargetDomain* parameters to explicitly specify the source domain or the target domain for this cmdlet. - If you do not explicitly specify the domain, the cmdlet uses a default domain. -The default domain is the domain that is used to access network resources by the security context under which the current session is running. -This domain is typically the domain of the user that is running the session. -For example, the domain of the user who started the session by opening Windows PowerShell from the Program Files menu, or the domain of a user that is specified in a runas command. -However, computer startup and shutdown scripts run under the context of the LocalSystem account. -The LocalSystem account is a built-in local account, and it accesses network resources under the context of the computer account. -Therefore, when this cmdlet is run from a startup or shutdown script, the default domain is the domain to which the computer is joined. +* You can use the **Copy-GPO** cmdlet to copy a GPO within a domain or from one domain to another + within the same forest. + + You can use the **SourceDomain** and **TargetDomain** parameters to explicitly specify the source + domain or the target domain for this cmdlet. + + If you do not explicitly specify the domain, the cmdlet uses a default domain. The default domain + is the domain that is used to access network resources by the security context under which the + current session is running. This domain is typically the domain of the user that is running the + session. For example, the domain of the user who started the session by opening Windows PowerShell + from the Program Files menu, or the domain of a user that is specified in a runas command. + However, computer startup and shutdown scripts run under the context of the LocalSystem account. + The LocalSystem account is a built-in local account, and it accesses network resources under the + context of the computer account. Therefore, when this cmdlet is run from a startup or shutdown + script, the default domain is the domain to which the computer is joined. ## RELATED LINKS From 7872d44746f17c538cb3d3b182447349fa214676 Mon Sep 17 00:00:00 2001 From: Phil Bossman Date: Fri, 28 Apr 2023 10:41:01 -0700 Subject: [PATCH 523/965] Get-GPInheritance --- .../grouppolicy/Get-GPInheritance.md | 262 +++++++++--------- 1 file changed, 135 insertions(+), 127 deletions(-) diff --git a/docset/winserver2022-ps/grouppolicy/Get-GPInheritance.md b/docset/winserver2022-ps/grouppolicy/Get-GPInheritance.md index 6596bb565a..ef6812986e 100644 --- a/docset/winserver2022-ps/grouppolicy/Get-GPInheritance.md +++ b/docset/winserver2022-ps/grouppolicy/Get-GPInheritance.md @@ -11,6 +11,7 @@ title: Get-GPInheritance # Get-GPInheritance ## SYNOPSIS + Gets Group Policy inheritance information for a specified domain or OU. ## SYNTAX @@ -20,166 +21,160 @@ Get-GPInheritance [-Target] [-Domain ] [-Server ] [ Get-GPInheritance -Target "ou=MyOU,dc=contoso,dc=com" -ContainerName : myou - -ContainerType : OU - -Path : ou=myou,dc=contoso,dc=com - -GpoInheritanceBlocked : No -GpoLinks : {TestGPO-0, TestGPO-1, TestGPO-2, TestGPO-3...} +```powershell +Get-GPInheritance -Target 'ou=MyOU,dc=contoso,dc=com' +``` +```Output +ContainerName : myou +ContainerType : OU +Path : ou=myou,dc=contoso,dc=com +GpoInheritanceBlocked : No +GpoLinks : {TestGPO-0, TestGPO-1, TestGPO-2, TestGPO-3...} InheritedGpoLinks : {TestGPO-2, TestGPO-3, Default Domain Policy} ``` -This command gets Group Policy inheritance information for the OU named MyOU in the contoso.com domain. +This command gets Group Policy inheritance information for the OU named MyOU in the `contoso.com` +domain. -The **GpoLinks** property contains a list of all the GPOs that are linked directly to the GPO, whether their links are enabled or not. +The **GpoLinks** property contains a list of all the GPOs that are linked directly to the GPO, +whether their links are enabled or not. -The **InheritedGpoLinks** property contains a list of all the GPOs that are applied when Group Policy is processed on the client. -TestGPO-2 and TestGPO-3 appear in this list because their links are enabled. +The **InheritedGpoLinks** property contains a list of all the GPOs that are applied when Group +Policy is processed on the client. `TestGPO-2` and `TestGPO-3` appear in this list because their +links are enabled. -The Default Domain Policy GPO is inherited from the contoso.com domain. -If inheritance is blocked, it does not appear in the **InheritedGpoLinks** property unless its link is enforced at the domain. +The Default Domain Policy GPO is inherited from the `contoso.com` domain. If inheritance is blocked, +it does not appear in the **InheritedGpoLinks** property unless its link is enforced at the domain. If its link is enforced, it appears first in the list. ### Example 2: Get Group Policy inheritance for a specific domain -``` -PS C:\> Get-GPInheritance -Target "dc=contoso,dc=com" -Domain "contoso.com" -Server "DomainController1" -Name : contoso.com - -ContainerType : Domain - -Path : dc=contoso,dc=com - -GpoInheritanceBlocked : No - -GpoLinks : {Default Domain Policy} -InheritedGpoLinks : {Default Domain Policy} +```powershell +Get-GPInheritance -Target "dc=contoso,dc=com" -Domain "contoso.com" -Server "DomainController1" ``` -This command gets Group Policy inheritance information for the contoso.com domain. -The domain controller with the host name DomainController1 is contacted to complete the operation. - -The domain does not have to be explicitly specified using the *Domain* parameter in this example. -If the domain of the user that is running the session (or, for startup and shutdown scripts, the computer) is the same as the target domain, or a trust exists between it and the target domain, you do not have to specify the *Domain* parameter. - -### Example 3: Get GPOs that are linked to a specific organizational unit by evaluating the SOM object +```Output +Name : contoso.com +ContainerType : Domain +Path : dc=contoso,dc=com +GpoInheritanceBlocked : No +GpoLinks : {Default Domain Policy} +InheritedGpoLinks : {Default Domain Policy} ``` -PS C:\> (Get-GPInheritance -Target "ou=myou,dc=contoso,dc=com").GpoLinks | foreach-object { Get-GPO -Name ($_.DisplayName)} - -DisplayName : TestGPO-3 - -DomainName : contoso.com - -Owner : CONTOSO\Domain Admins - -Id : d02126d4-82e8-4e87-b4a0-2d44b6891411 - -GpoStatus : AllSettingsEnabled - -Description : - -CreationTime : 2/27/2009 2:59:51 PM - -ModificationTime : 2/27/2009 4:00:44 PM -UserVersion : AD Version: 13, SysVol Version: 13 +This command gets Group Policy inheritance information for the `contoso.com` domain. The domain +controller with the host name `DomainController1` is contacted to complete the operation. -ComputerVersion : AD Version: 0, SysVol Version: 0 +The domain does not have to be explicitly specified using the **Domain** parameter in this example. If +the domain of the user that is running the session (or, for startup and shutdown scripts, the +computer) is the same as the target domain, or a trust exists between it and the target domain, you +do not have to specify the **Domain** parameter. -WmiFilter : +### Example 3: Get GPOs that are linked to a specific organizational unit by evaluating the SOM + object +```powershell +(Get-GPInheritance -Target "ou=myou,dc=contoso,dc=com").GpoLinks | + Foreach-Object { Get-GPO -Name ($_.DisplayName) } +``` +```Output +DisplayName : TestGPO-3 +DomainName : contoso.com +Owner : CONTOSO\Domain Admins +Id : d02126d4-82e8-4e87-b4a0-2d44b6891411 +GpoStatus : AllSettingsEnabled +Description : +CreationTime : 2/27/2009 2:59:51 PM +ModificationTime : 2/27/2009 4:00:44 PM +UserVersion : AD Version: 13, SysVol Version: 13 +ComputerVersion : AD Version: 0, SysVol Version: 0 +WmiFilter : -DisplayName : TestGPO-2 - -DomainName : contoso.com - -Owner : CONTOSO\Domain Admins - -Id : 375865b2-3b5f-480f-8f56-2a994ea6e725 - -GpoStatus : AllSettingsEnabled - -Description : - -CreationTime : 2/26/2009 11:28:08 PM - -ModificationTime : 3/1/2009 11:07:30 AM - -UserVersion : AD Version: 0, SysVol Version: 0 - -ComputerVersion : AD Version: 1, SysVol Version: 1 +DisplayName : TestGPO-2 +DomainName : contoso.com +Owner : CONTOSO\Domain Admins +Id : 375865b2-3b5f-480f-8f56-2a994ea6e725 +GpoStatus : AllSettingsEnabled +Description : +CreationTime : 2/26/2009 11:28:08 PM +ModificationTime : 3/1/2009 11:07:30 AM +UserVersion : AD Version: 0, SysVol Version: 0 +ComputerVersion : AD Version: 1, SysVol Version: 1 WmiFilter : ``` -This command evaluates the SOM object (Microsoft.GroupPolicy.SOM) returned by **Get-GPInheritance** and returns the GPOs that are linked to the MyOU organizational unit. -You can use this command to set properties of the GPOs by piping its output into other cmdlets. -For instance, you can pipe the output to the **Set-GPPermissions** cmdlet to delegate permissions to administrators of the OU for each of the GPOs linked to the OU. +This command evaluates the SOM object `Microsoft.GroupPolicy.SOM` returned by **Get-GPInheritance** +and returns the GPOs that are linked to the MyOU organizational unit. You can use this command to +set properties of the GPOs by piping its output into other cmdlets. For instance, you can pipe the +output to the **Set-GPPermissions** cmdlet to delegate permissions to administrators of the OU for +each of the GPOs linked to the OU. The **GpoLinks** property of the SOM object contains a list of all the GPO links for the OU. -Each object in this list is of type **Microsoft.GroupPolicy.GpoLink**. +Each object in this list is of type `Microsoft.GroupPolicy.GpoLink`. The following shows one such object: -GpoId : d02126d4-82e8-4e87-b4a0-2d44b6891411 - +GpoId : d02126d4-82e8-4e87-b4a0-2d44b6891411 DisplayName : TestGPO-3 +Enabled : True +Enforced : False +Target : ou=myou,dc=contoso,dc=com +Order : 1 -Enabled : True - -Enforced : False - -Target : ou=myou,dc=contoso,dc=com - -Order : 1 - -The collection is piped into a foreach-object command, which retrieves each GPO by using the DisplayName property of the GpoLink object. +The collection is piped into a foreach-object command, which retrieves each GPO by using the +DisplayName property of the GpoLink object. ## PARAMETERS ### -Domain + Specifies the domain for this cmdlet. You must specify the fully qualified domain name (FQDN) of the domain. -For the **Get-GPInheritance** cmdlet, this is typically the domain of the container (domain or OU) for which you want to retrieve inheritance information. -If the specified domain is different than the domain of the container, a trust must exist between the two domains. +For the **Get-GPInheritance** cmdlet, this is typically the domain of the container (domain or OU) +for which you want to retrieve inheritance information. If the specified domain is different than +the domain of the container, a trust must exist between the two domains. -If you do not specify the *Domain* parameter, the domain of the user that is running the current session is used. -If the cmdlet is being run from a computer startup or shutdown script, the domain of the computer is used. -For more information, see the Notes section in the full Help. +If you do not specify the **Domain** parameter, the domain of the user that is running the current +session is used. If the cmdlet is being run from a computer startup or shutdown script, the domain +of the computer is used. For more information, see the Notes section in the full Help. -If you specify a domain that is different from the domain of the user that is running the current session (or, for a startup or shutdown script, the computer), a trust must exist between that domain and the domain of the user or the computer. +If you specify a domain that is different from the domain of the user that is running the current +session (or, for a startup or shutdown script, the computer), a trust must exist between that domain +and the domain of the user or the computer. -You can also refer to the *Domain* parameter by its built-in alias, domainname. -For more information, see about_Aliases. +You can also refer to the **Domain** parameter by its built-in alias, `DomainName`. For more +information, see [about_Aliases](???????). ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DomainName @@ -191,15 +186,17 @@ Accept wildcard characters: False ``` ### -Server -Specifies the name of the domain controller that this cmdlet contacts to complete the operation. -You can specify either the fully qualified domain name (FQDN) or the host name. -If you do not specify the name by using the *Server* parameter, the primary domain controller (PDC) emulator is contacted. +Specifies the name of the domain controller that this cmdlet contacts to complete the operation. You +can specify either the fully qualified domain name (FQDN) or the host name. + +If you do not specify the name by using the **Server** parameter, the primary domain controller +(PDC) emulator is contacted. -You can also refer to the *Server* parameter by its built-in alias, dc. +You can also refer to the **Server** parameter by its built-in alias, dc. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DC @@ -211,15 +208,17 @@ Accept wildcard characters: False ``` ### -Target -Specifies the domain or the OU for which to retrieve the Group Policy inheritance information by its Lightweight Directory Access Protocol (LDAP) distinguished name. -For instance, the MyOU organizational unit in the contoso.com domain is specified as ou=MyOU,dc=contoso,dc=com. -You can also refer to the *Target* parameter by its built-in alias, path. +Specifies the domain or the OU for which to retrieve the Group Policy inheritance information by its +Lightweight Directory Access Protocol (LDAP) distinguished name. For instance, the `MyOU` +organizational unit in the `contoso.com` domain is specified as `ou=MyOU,dc=contoso,dc=com`. + +You can also refer to the **Target** parameter by its built-in alias, **Path**. ```yaml -Type: String +Type: System.String Parameter Sets: (All) -Aliases: path +Aliases: Path Required: True Position: 0 @@ -229,30 +228,39 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### Microsoft.GroupPolicy.Som + An object that represents a domain or an OU. ## OUTPUTS ### Microsoft.GroupPolicy.Som -This cmdlet returns an object that represents the domain or OU. -The **GpoInheritanceBlocked** property indicates whether inheritance is blocked. -You can modify inheritance for the domain or OU by using the **Set-GPInheritance** cmdlet. + +This cmdlet returns an object that represents the domain or OU. The **GpoInheritanceBlocked** +property indicates whether inheritance is blocked. You can modify inheritance for the domain or OU +by using the **Set-GPInheritance** cmdlet. ## NOTES + * You can use the *Domain* parameter to explicitly specify the domain for this cmdlet. - If you do not explicitly specify the domain, the cmdlet uses a default domain. -The default domain is the domain that is used to access network resources by the security context under which the current session is running. -This domain is typically the domain of the user that is running the session. -For example, the domain of the user who started the session by opening Windows PowerShell from the Program Files menu, or the domain of a user that is specified in a runas command. -However, computer startup and shutdown scripts run under the context of the LocalSystem account. -The LocalSystem account is a built-in local account, and it accesses network resources under the context of the computer account. -Therefore, when this cmdlet is run from a startup or shutdown script, the default domain is the domain to which the computer is joined. + If you do not explicitly specify the domain, the cmdlet uses a default domain. The default domain + is the domain that is used to access network resources by the security context under which the + current session is running. This domain is typically the domain of the user that is running the + session. For example, the domain of the user who started the session by opening Windows PowerShell + from the Program Files menu, or the domain of a user that is specified in a runas command. + However, computer startup and shutdown scripts run under the context of the LocalSystem account. + The LocalSystem account is a built-in local account, and it accesses network resources under the + context of the computer account. Therefore, when this cmdlet is run from a startup or shutdown + script, the default domain is the domain to which the computer is joined. ## RELATED LINKS From a9fae1e996966b868534a68c57db75c6c7038cba Mon Sep 17 00:00:00 2001 From: Phil Bossman Date: Fri, 28 Apr 2023 11:08:00 -0700 Subject: [PATCH 524/965] Backup-GPO --- docset/winserver2022-ps/grouppolicy/Backup-GPO.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/grouppolicy/Backup-GPO.md b/docset/winserver2022-ps/grouppolicy/Backup-GPO.md index 75b88aa35f..15e39f23f1 100644 --- a/docset/winserver2022-ps/grouppolicy/Backup-GPO.md +++ b/docset/winserver2022-ps/grouppolicy/Backup-GPO.md @@ -178,7 +178,7 @@ Accept wildcard characters: False Specifies the GPO to backup by its globally unique identifier (GUID). The `GUID` uniquely identifies the GPO. -You can also refer to the **Guid** parameter by its built-in alias, id. +You can also refer to the **Guid** parameter by its built-in alias, **Id**. For more information, see [about_Aliases](????????????). ```yaml From 610c2d1bbc6b9d69e9eb3ac44fa14a1094a962e7 Mon Sep 17 00:00:00 2001 From: Phil Bossman Date: Fri, 28 Apr 2023 11:08:24 -0700 Subject: [PATCH 525/965] Get-GPInheritance --- .../grouppolicy/Get-GPInheritance.md | 2 +- .../winserver2022-ps/grouppolicy/Get-GPO.md | 162 ++++++++++-------- .../grouppolicy/Get-GPOReport.md | 22 +-- .../grouppolicy/Get-GPPermission.md | 20 ++- .../grouppolicy/Get-GPPrefRegistryValue.md | 22 +-- .../grouppolicy/Get-GPRegistryValue.md | 20 ++- .../grouppolicy/Get-GPResultantSetOfPolicy.md | 10 +- .../grouppolicy/Get-GPStarterGPO.md | 21 ++- .../grouppolicy/Import-GPO.md | 32 ++-- .../grouppolicy/Invoke-GPUpdate.md | 16 +- .../grouppolicy/New-GPLink.md | 25 +-- .../winserver2022-ps/grouppolicy/New-GPO.md | 52 +++--- .../grouppolicy/New-GPStarterGPO.md | 22 +-- .../grouppolicy/Remove-GPLink.md | 25 +-- .../grouppolicy/Remove-GPO.md | 23 +-- .../grouppolicy/Remove-GPPrefRegistryValue.md | 28 +-- .../grouppolicy/Remove-GPRegistryValue.md | 28 +-- .../grouppolicy/Rename-GPO.md | 26 +-- .../grouppolicy/Restore-GPO.md | 28 +-- .../grouppolicy/Set-GPInheritance.md | 19 +- .../grouppolicy/Set-GPLink.md | 25 +-- .../grouppolicy/Set-GPPermission.md | 28 +-- .../grouppolicy/Set-GPPrefRegistryValue.md | 30 ++-- .../grouppolicy/Set-GPRegistryValue.md | 34 ++-- 24 files changed, 402 insertions(+), 318 deletions(-) diff --git a/docset/winserver2022-ps/grouppolicy/Get-GPInheritance.md b/docset/winserver2022-ps/grouppolicy/Get-GPInheritance.md index ef6812986e..d2d2b1413c 100644 --- a/docset/winserver2022-ps/grouppolicy/Get-GPInheritance.md +++ b/docset/winserver2022-ps/grouppolicy/Get-GPInheritance.md @@ -193,7 +193,7 @@ can specify either the fully qualified domain name (FQDN) or the host name. If you do not specify the name by using the **Server** parameter, the primary domain controller (PDC) emulator is contacted. -You can also refer to the **Server** parameter by its built-in alias, dc. +You can also refer to the **Server** parameter by its built-in alias, **DC**. ```yaml Type: System.String diff --git a/docset/winserver2022-ps/grouppolicy/Get-GPO.md b/docset/winserver2022-ps/grouppolicy/Get-GPO.md index 1c955208c6..8b298a097c 100644 --- a/docset/winserver2022-ps/grouppolicy/Get-GPO.md +++ b/docset/winserver2022-ps/grouppolicy/Get-GPO.md @@ -11,28 +11,34 @@ title: Get-GPO # Get-GPO ## SYNOPSIS + Gets one GPO or all the GPOs in a domain. ## SYNTAX ### ByGUID (Default) + ``` Get-GPO [-Guid] [[-Domain] ] [[-Server] ] [-All] [] ``` ### ByName + ``` Get-GPO [-Name] [[-Domain] ] [[-Server] ] [-All] [] ``` ### GetAll + ``` Get-GPO [[-Domain] ] [[-Server] ] [-All] [] ``` ## DESCRIPTION -The **Get-GPO** cmdlet gets one Group Policy Object (GPO) or all the GPOs in a domain. -You can specify a GPO by its display name or by its globally unique identifier (GUID) to get a single GPO, or you can get all the GPOs in the domain through the *All* parameter. + +The **Get-GPO** cmdlet gets one Group Policy Object (GPO) or all the GPOs in a domain. You can +specify a GPO by its display name or by its globally unique identifier (GUID) to get a single GPO, +or you can get all the GPOs in the domain through the **All** parameter. This cmdlet returns one or more objects that represent the requested GPOs. By default, properties of the requested GPOs are printed to the display; however, you can also pipe the output of the **Get-GPO** cmdlet to other Group Policy cmdlets. @@ -40,79 +46,71 @@ By default, properties of the requested GPOs are printed to the display; however ## EXAMPLES ### Example 1: Get a single GPO from a domain -``` -PS C:\> Get-GPO -Name "Group Policy Test" -DisplayName : Group Policy Test - -DomainName : contoso.com - -Owner : CONTOSO\Domain Admins - -Id : 31a09564-cd4a-4520-98fa-446a2af23b4b -GpoStatus : AllSettingsEnabled +```powershell +Get-GPO -Name "Group Policy Test" +``` +```Output +DisplayName : Group Policy Test +DomainName : contoso.com +Owner : CONTOSO\Domain Admins +Id : 31a09564-cd4a-4520-98fa-446a2af23b4b +GpoStatus : AllSettingsEnabled Description : - -CreationTime : 2/26/2009 12:15:42 AM - -ModificationTime : 2/26/2009 12:15:42 AM - -UserVersion : AD Version: 0, SysVol Version: 0 - -ComputerVersion : AD Version: 0, SysVol Version: 0 - +CreationTime : 2/26/2009 12:15:42 AM +ModificationTime : 2/26/2009 12:15:42 AM +UserVersion : AD Version: 0, SysVol Version: 0 +ComputerVersion : AD Version: 0, SysVol Version: 0 WmiFilter : ``` -This command gets the GPO named Group Policy Test. -The GPO must exist in the domain of the user that is running the session (or, for startup and shutdown scripts, the computer). -The command gets the GPO information by contacting the primary domain controller (PDC). +This command gets the GPO named `Group Policy Test`. The GPO must exist in the domain of the user that +is running the session (or, for startup and shutdown scripts, the computer). The command gets the +GPO information by contacting the primary domain controller (PDC). ### Example 2: Get a single GPO by GUID -``` -PS C:\> Get-GPO -Guid 31a09564-cd4a-4520-98fa-446a2af23b4b -Domain "sales.contoso.com" -DisplayName : Group Policy Test - -DomainName : sales.contoso.com -Owner : SALES\Domain Admins - -Id : 31a09564-cd4a-4520-98fa-446a2af23b4b - -GpoStatus : AllSettingsEnabled - -Description : - -CreationTime : 2/26/2009 12:15:42 AM - -ModificationTime : 2/26/2009 12:15:42 AM - -UserVersion : AD Version: 0, SysVol Version: 0 - -ComputerVersion : AD Version: 0, SysVol Version: 0 +```powershell +Get-GPO -Guid 31a09564-cd4a-4520-98fa-446a2af23b4b -Domain "sales.contoso.com" +``` +```Output +DisplayName : Group Policy Test +DomainName : sales.contoso.com +Owner : SALES\Domain Admins +Id : 31a09564-cd4a-4520-98fa-446a2af23b4b +GpoStatus : AllSettingsEnabled +Description : +CreationTime : 2/26/2009 12:15:42 AM +ModificationTime : 2/26/2009 12:15:42 AM +UserVersion : AD Version: 0, SysVol Version: 0 +ComputerVersion : AD Version: 0, SysVol Version: 0 WmiFilter : ``` -This command gets the GPO that has the ID (GUID) 331a09564-cd4a-4520-98fa-446a2af23b4b in the sales.contoso.com domain. -If the domain of the user that is running the session (or, for startup and shutdown scripts, the computer) is different that sales.contoso.com, a trust must exist between the two domains. -The command retrieves the GPO information by contacting the PDC (in the sales.contoso.com domain). +This command gets the GPO that has the ID (GUID) `331a09564-cd4a-4520-98fa-446a2af23b4b` in the +`sales.contoso.com` domain. If the domain of the user that is running the session (or, for startup and +shutdown scripts, the computer) is different that `sales.contoso.com`, a trust must exist between the +two domains. The command retrieves the GPO information by contacting the PDC (in the +`sales.contoso.com` domain). ### Example 3: Get all GPOs from a domain -``` -PS C:\> Get-GPO -All -Domain "sales.contoso.com" + +```powershell +Get-GPO -All -Domain "sales.contoso.com" ``` -This command get all the GPOs in the sales.contoso.com domain. +This command get all the GPOs in the `sales.contoso.com` domain. ## PARAMETERS ### -All + Indicates that the cmdlet gets all the GPOs in the domain. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -124,22 +122,23 @@ Accept wildcard characters: False ``` ### -Domain -Specifies the domain for this cmdlet. -You must specify the fully qualified domain name (FQDN) of the domain. + +Specifies the domain for this cmdlet. You must specify the fully qualified domain name (FQDN) of the +domain. For the **Get-GPO** cmdlet, the GPO (or GPOs) to that this cmdlet gets must exist in this domain. -If you do not specify the *Domain* parameter, the domain of the user that is running the current session is used. -If the cmdlet is being run from a computer startup or shutdown script, the domain of the computer is used. -For more information, see the Notes section in the full Help. +If you do not specify the **Domain** parameter, the domain of the user that is running the current +session is used. If the cmdlet is being run from a computer startup or shutdown script, the domain +of the computer is used. For more information, see the Notes section in the full Help. If you specify a domain that is different from the domain of the user that is running the current session (or, for a startup or shutdown script, the computer), a trust must exist between that domain and the domain of the user or the computer. -You can also refer to the *Domain* parameter by its built-in alias, domainname. -For more information, see about_Aliases. +You can also refer to the **Domain** parameter by its built-in alias, **DomainName**. +For more information, see [about_Aliases](????????????). ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DomainName @@ -151,10 +150,11 @@ Accept wildcard characters: False ``` ### -Guid -Specifies the GPO to retrieve by its globally unique identifier (GUID). -The GUID uniquely identifies the GPO. -You can also refer to the *Guid* parameter by its built-in alias, id. +Specifies the GPO to retrieve by its globally unique identifier (GUID). The GUID uniquely identifies +the GPO. + +You can also refer to the **Guid** parameter by its built-in alias, **Id**. ```yaml Type: Guid @@ -169,16 +169,17 @@ Accept wildcard characters: False ``` ### -Name + Specifies the GPO to retrieve by its display name. -The display name is not guaranteed to be unique in the domain. -If another GPO with the same display name exists in the domain an error occurs. -You can use the Guid parameter to uniquely identify a GPO. +The display name is not guaranteed to be unique in the domain. If another GPO with the same display +name exists in the domain an error occurs. You can use the **Guid** parameter to uniquely identify a +GPO. -You can also refer to the *Name* parameter by its built-in alias, displayname. +You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. ```yaml -Type: String +Type: System.String Parameter Sets: ByName Aliases: DisplayName @@ -190,15 +191,17 @@ Accept wildcard characters: False ``` ### -Server -Specifies the name of the domain controller that this cmdlet contacts to complete the operation. -You can specify either the fully qualified domain name (FQDN) or the host name. -If you do not specify the name by using the Server parameter, the primary domain controller (PDC) emulator is contacted. +Specifies the name of the domain controller that this cmdlet contacts to complete the operation. You +can specify either the fully qualified domain name (FQDN) or the host name. -You can also refer to the Server parameter by its built-in alias, dc. +If you do not specify the name by using the **Server** parameter, the primary domain controller +(PDC) emulator is contacted. + +You can also refer to the **Server** parameter by its built-in alias, **DC**. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DC @@ -210,21 +213,28 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### Microsoft.GroupPolicy.Gpo -You can pipe a GPO for which to get information to this cmdlet. -You can pipe GPO objects into this cmdlet to display information about the GPOs. -Collections that contain GPOs from different domains are not supported. + +You can pipe a GPO for which to get information to this cmdlet. You can pipe GPO objects into this +cmdlet to display information about the GPOs. Collections that contain GPOs from different domains +are not supported. ## OUTPUTS ### Microsoft.GroupPolicy.Gpo + This cmdlet returns an object that represents the requested GPO. ## NOTES + * You can use the *Domain* parameter to explicitly specify the domain for this cmdlet. If you do not explicitly specify the domain, the cmdlet uses a default domain. diff --git a/docset/winserver2022-ps/grouppolicy/Get-GPOReport.md b/docset/winserver2022-ps/grouppolicy/Get-GPOReport.md index 9baf2d109e..21269fcb82 100644 --- a/docset/winserver2022-ps/grouppolicy/Get-GPOReport.md +++ b/docset/winserver2022-ps/grouppolicy/Get-GPOReport.md @@ -74,7 +74,7 @@ Because no *Path* parameter is supplied, the report is written to the display. Indicates that the cmdlet generates a report for all GPOs in the domain. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: ReportAll Aliases: @@ -101,11 +101,11 @@ For more information, see the Notes section in the full Help. If you specify a domain that is different from the domain of the user that is running the current session or, (for a startup or shutdown script, the computer), a trust must exist between that domain and the domain of the user or the computer. -You can also refer to Domain by its built-in alias, domainname. -For more information, see about_Aliases. +You can also refer to Domain by its built-in alias, **DomainName**. +For more information, see [about_Aliases](????????????). ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DomainName @@ -120,7 +120,7 @@ Accept wildcard characters: False Specifies the GPO for which to generate the report by its globally unique identifier (GUID). The GUID uniquely identifies the GPO. -You can also refer to the *Guid* parameter by its built-in alias, id. +You can also refer to the *Guid* parameter by its built-in alias, **Id**. For more information, see **about_Aliases**. ```yaml @@ -142,11 +142,11 @@ The display name is not guaranteed to be unique in the domain. If another GPO with the same display name exists in the domain an error occurs. You can use the *Guid* parameter to uniquely identify a GPO. -You can also refer to the *Name* parameter by its built-in alias, displayname. +You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. For more information, see **about_Aliases**. ```yaml -Type: String +Type: System.String Parameter Sets: ByName Aliases: DisplayName @@ -162,7 +162,7 @@ Specifies the path to the report file; for instance, c:\Reports\GpoReport.xml. If no path is specified, the report is printed to the display. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -199,11 +199,11 @@ You can specify either the fully qualified domain name (FQDN) or the host name. If you do not specify the name by using the *Server* parameter, the primary domain controller (PDC) emulator is contacted. -You can refer to this parameter by its built-in alias, dc. +You can refer to this parameter by its built-in alias, **DC**. For more information, see **about_Aliases**. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DC @@ -215,6 +215,7 @@ Accept wildcard characters: False ``` ### CommonParameters + This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -229,6 +230,7 @@ Collections that contain GPOs from different domains are not supported. This cmdlet does not generate any output. ## NOTES + * You can use the *Domain* parameter to explicitly specify the domain for this cmdlet. If you do not explicitly specify the domain, the cmdlet uses a default domain. diff --git a/docset/winserver2022-ps/grouppolicy/Get-GPPermission.md b/docset/winserver2022-ps/grouppolicy/Get-GPPermission.md index f34e9fe4e5..994af42cbb 100644 --- a/docset/winserver2022-ps/grouppolicy/Get-GPPermission.md +++ b/docset/winserver2022-ps/grouppolicy/Get-GPPermission.md @@ -121,7 +121,7 @@ For more information about the ErrorAction parameter, see about_CommonParameters Indicates that the cmdlet gets the permission level for each user, group, or computer that has permissions on the GPO. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -145,10 +145,10 @@ For more information, see the Notes section in the full Help. If you specify a domain that is different from the domain of the user that is running the current session (or, for a startup or shutdown script, the computer), a trust must exist between that domain and the domain of the user or the computer. You can also refer to the *Server* parameter by its built-in alias, domain. -For more information, see about_Aliases. +For more information, see [about_Aliases](????????????). ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: Domain @@ -163,7 +163,7 @@ Accept wildcard characters: False Specifies the GPO from which to retrieve the permission level by its globally unique identifier (GUID). The GUID uniquely identifies the GPO. -You can also refer to the *Guid* parameter by its built-in alias, id. +You can also refer to the *Guid* parameter by its built-in alias, **Id**. For more information, see **about_Aliases**. ```yaml @@ -185,11 +185,11 @@ The display name is not guaranteed to be unique in the domain. If another GPO with the same display name exists in the domain an error occurs. You can use the *Guid* parameter to uniquely identify a GPO. -You can also refer to the *Name* parameter by its built-in alias, displayname. +You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. For more information, see **about_Aliases**. ```yaml -Type: String +Type: System.String Parameter Sets: SourcebyName Aliases: DisplayName @@ -206,11 +206,11 @@ You can specify either the fully qualified domain name (FQDN) or the host name. If you do not specify the name by using the *Server* parameter, the PDC emulator is contacted. -You can also refer to the *Server* parameter by its built-in alias, dc. +You can also refer to the *Server* parameter by its built-in alias, **DC**. For more information, see **about_Aliases**. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DC @@ -235,7 +235,7 @@ For instance, in the contoso.com domain, to specify: - The computer "computer-01", use "contoso\computer-01" or "computer-01". ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -271,6 +271,7 @@ Accept wildcard characters: False ``` ### CommonParameters + This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -285,6 +286,7 @@ Collections that contain GPOs from different domains are not supported. This cmdlet returns an object that represents permissions for the specified security principal (user, group, or computer) on the GPO. ## NOTES + * You can use the *DomainName* parameter to explicitly specify the domain for this cmdlet. If you do not explicitly specify the domain, the cmdlet uses the default domain. diff --git a/docset/winserver2022-ps/grouppolicy/Get-GPPrefRegistryValue.md b/docset/winserver2022-ps/grouppolicy/Get-GPPrefRegistryValue.md index c39a536324..6f28fa2543 100644 --- a/docset/winserver2022-ps/grouppolicy/Get-GPPrefRegistryValue.md +++ b/docset/winserver2022-ps/grouppolicy/Get-GPPrefRegistryValue.md @@ -137,11 +137,11 @@ For more information, see the Notes section in the full Help. If you specify a domain that is different from the domain of the user that is running the current session (or, for a startup or shutdown script, the computer), a trust must exist between that domain and the domain of the user or the computer. -You can also refer to the *Domain* parameter by its built-in alias, domainname. -For more information, see about_Aliases. +You can also refer to the **Domain** parameter by its built-in alias, **DomainName**. +For more information, see [about_Aliases](????????????)s](????????????). ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DomainName @@ -156,7 +156,7 @@ Accept wildcard characters: False Specifies the GPO from which this cmdlet gets the Registry preference item by its globally unique identifier (GUID). The GUID uniquely identifies the GPO. -You can also refer to the *Guid* parameter by its built-in alias, id. +You can also refer to the *Guid* parameter by its built-in alias, **Id**. For more information, see **about_Aliases**. ```yaml @@ -194,7 +194,7 @@ You can also refer to the Key parameter by its built-in alias, FullKeyPath. For more information, see **about_Aliases**. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: FullKeyPath @@ -212,11 +212,11 @@ The display name is not guaranteed to be unique in the domain. If another GPO with the same display name exists in the domain an error occurs. You can use the *Guid* parameter to uniquely identify a GPO. -You can also refer to the *Name* parameter by its built-in alias, displayname. +You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. For more information, **see about_Aliases**. ```yaml -Type: String +Type: System.String Parameter Sets: GetByName Aliases: DisplayName @@ -248,11 +248,11 @@ You can specify either the fully qualified domain name (FQDN) or the host name. If you do not specify the name through the *Server* parameter, the primary domain controller (PDC) emulator is contacted. -You can also refer to the *Server* parameter by its built-in alias, dc. +You can also refer to the *Server* parameter by its built-in alias, **DC**. For more information, see **about_Aliases**. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DC @@ -272,7 +272,7 @@ When you want to gets Registry preference items for a registry key and all its f When you want to get Registry preference items only for a specific registry value, specify this parameter together with the *Key* parameter. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -284,6 +284,7 @@ Accept wildcard characters: False ``` ### CommonParameters + This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -303,6 +304,7 @@ You can pipe these objects to the following cmdlets: - Remove-GPPrefRegistryValue ## NOTES + * If a Registry preference item for the specified registry key or value is not found, a non-terminating error occurs. You can use the *Domain* parameter to explicitly specify the domain for this cmdlet. diff --git a/docset/winserver2022-ps/grouppolicy/Get-GPRegistryValue.md b/docset/winserver2022-ps/grouppolicy/Get-GPRegistryValue.md index 39c70eb80e..9995255eca 100644 --- a/docset/winserver2022-ps/grouppolicy/Get-GPRegistryValue.md +++ b/docset/winserver2022-ps/grouppolicy/Get-GPRegistryValue.md @@ -110,11 +110,11 @@ For more information, see the Notes section in the full Help. If you specify a domain that is different from the domain of the user that is running the current session (or, for a startup or shutdown script, the computer), a trust must exist between that domain and the domain of the user or the computer. -You can also refer to Domain by its built-in alias, domainname. -For more information, see about_Aliases. +You can also refer to Domain by its built-in alias, **DomainName**. +For more information, see [about_Aliases](????????????). ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DomainName @@ -129,7 +129,7 @@ Accept wildcard characters: False Specifies the GPO from which to retrieve the registry-based policy setting by its globally unique identifier (GUID). The GUID uniquely identifies the GPO. -You can also refer to the *Guid* parameter by its built-in alias, id. +You can also refer to the *Guid* parameter by its built-in alias, **Id**. For more information, see **about_Aliases**. ```yaml @@ -164,7 +164,7 @@ You can also refer to the *Key* parameter by its built-in alias FullKeyPath. For more information, see **about_Aliases**. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: FullKeyPath @@ -182,11 +182,11 @@ The display name is not guaranteed to be unique in the domain. If another GPO with the same display name exists in the domain an error occurs. You can use the *Guid* parameter to uniquely identify a GPO. -You can also refer to the *Name* parameter by its built-in alias, displayname. +You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. For more information, see **about_Aliases**. ```yaml -Type: String +Type: System.String Parameter Sets: GetByName Aliases: DisplayName @@ -204,7 +204,7 @@ You can specify either the fully qualified domain name (FQDN) or the host name. If you do not specify the name by using the *Server* parameter, the primary domain controller (PDC) emulator is contacted. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DC @@ -223,7 +223,7 @@ For the default value of a registry key, specify "(default)" or an empty string You must also specify the *Key* parameter with this parameter. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -235,6 +235,7 @@ Accept wildcard characters: False ``` ### CommonParameters + This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -254,6 +255,7 @@ These objects can be piped into the following cmdlets: - Remove-GPRegistryValue ## NOTES + * The hive of the registry key that you specify (HKLM or HKCU) indicates whether the registry-based policy setting is retrieved from Computer Configuration or User Configuration. If the specified registry key cannot be located in policy (the registry key is not configured), a corresponding error message is displayed. diff --git a/docset/winserver2022-ps/grouppolicy/Get-GPResultantSetOfPolicy.md b/docset/winserver2022-ps/grouppolicy/Get-GPResultantSetOfPolicy.md index 1c6d3749f1..c21e039b05 100644 --- a/docset/winserver2022-ps/grouppolicy/Get-GPResultantSetOfPolicy.md +++ b/docset/winserver2022-ps/grouppolicy/Get-GPResultantSetOfPolicy.md @@ -91,7 +91,7 @@ You can specify the computer name in one of the following formats: - Computer name (host name): for instance, computer-01. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -106,10 +106,10 @@ Accept wildcard characters: False Specifies the path to the report file; for instance, c:\Reports\GpRsopReport.xml. You can also refer to the *Path* parameter by its built-in alias, filepath. -For more information, see about_Aliases. +For more information, see [about_Aliases](????????????). ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -151,7 +151,7 @@ You can specify the user name in one of the following formats: - User name: for example, someuser. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -163,6 +163,7 @@ Accept wildcard characters: False ``` ### CommonParameters + This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -176,6 +177,7 @@ This cmdlet does not take any object as input. This cmdlet returns an RSoP object. ## NOTES + * This cmdlet provides only the logging results for a specified computer and user. You must use the GPMC to generate RSoP modeling information. ## RELATED LINKS diff --git a/docset/winserver2022-ps/grouppolicy/Get-GPStarterGPO.md b/docset/winserver2022-ps/grouppolicy/Get-GPStarterGPO.md index e72606c58e..ca2c81a4fc 100644 --- a/docset/winserver2022-ps/grouppolicy/Get-GPStarterGPO.md +++ b/docset/winserver2022-ps/grouppolicy/Get-GPStarterGPO.md @@ -83,7 +83,7 @@ The command uses the **Get-SPStarterGPO** cmdlet to get the Starter GPO and is t Returns all the Starter GPOs in the domain. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -106,11 +106,11 @@ For more information, see the Notes section in the full Help. If you specify a domain that is different from the domain of the user that is running the current session (or, for a startup or shutdown script, the computer), a trust must exist between that domain and the domain of the user, or the computer. -You can also refer to the *Domain* parameter by its built-in alias, domainname. -For more information, see about_Aliases. +You can also refer to the **Domain** parameter by its built-in alias, **DomainName**. +For more information, see [about_Aliases](????????????). ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DomainName @@ -125,7 +125,7 @@ Accept wildcard characters: False Specifies the Starter GPO that this cmdlet gets by its globally unique identifier (GUID). The GUID uniquely identifies the Starter GPO. -You can also refer to the *Guid* parameter by its built-in alias, id. +You can also refer to the *Guid* parameter by its built-in alias, **Id**. For more information, see **about_Aliases**. ```yaml @@ -147,11 +147,11 @@ The display name is not guaranteed to be unique in the domain. If another Starter GPO with the same display name exists in the domain an error occurs. You can use the *Guid* parameter to uniquely identify a Starter GPO. -You can also refer to the *Name* parameter by its built-in alias, displayname. +You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. For more information, see **about_Aliases**. ```yaml -Type: String +Type: System.String Parameter Sets: ByName Aliases: DisplayName @@ -168,11 +168,11 @@ You can specify either the fully qualified domain name (FQDN) or the host name. If you do not specify the name by using the *Server* parameter, the primary domain controller (PDC) emulator is contacted. -You can also refer to the *Server* parameter by its built-in alias, dc. +You can also refer to the *Server* parameter by its built-in alias, **DC**. For more information, see **about_Aliases**. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DC @@ -184,11 +184,13 @@ Accept wildcard characters: False ``` ### CommonParameters + This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### Microsoft.GroupPolicy.StarterGpo + You can pipe a Starter GPO to this cmdlet. ## OUTPUTS @@ -197,6 +199,7 @@ You can pipe a Starter GPO to this cmdlet. This cmdlet returns a Starter GPO object. ## NOTES + * You can use the *Domain* parameter to explicitly specify the domain for this cmdlet. If you do not explicitly specify the domain, the cmdlet uses a default domain. diff --git a/docset/winserver2022-ps/grouppolicy/Import-GPO.md b/docset/winserver2022-ps/grouppolicy/Import-GPO.md index 3b8bbdf63a..773d8dc279 100644 --- a/docset/winserver2022-ps/grouppolicy/Import-GPO.md +++ b/docset/winserver2022-ps/grouppolicy/Import-GPO.md @@ -114,11 +114,11 @@ Specifies the display name of the backed-up GPO from which this cmdlet imports t The most recent backup of the GPO is used. You can use the *BackupId* parameter to specify a particular version to use when multiple backups of the same GPO exist in the backup directory. -You can also refer to the *BackupGpoName* parameter by its built-in alias, displayname. -For more information, see about_Aliases. +You can also refer to the *BackupGpoName* parameter by its built-in alias, **DisplayName**. +For more information, see [about_Aliases](????????????). ```yaml -Type: String +Type: System.String Parameter Sets: ImportName Aliases: DisplayName @@ -136,7 +136,7 @@ You can use this parameter to specify a particular version of a backed-up GPO in The backup ID is different from the ID of the GPO that was backed up. -You can also refer to the *BackupId* parameter by its built-in alias, id. +You can also refer to the *BackupId* parameter by its built-in alias, **Id**. For more information, see **about_Aliases**. ```yaml @@ -155,7 +155,7 @@ Accept wildcard characters: False Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -170,7 +170,7 @@ Accept wildcard characters: False Indicates that the cmdlet creates a GPO from the backup if the specified target GPO does not exist. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -193,11 +193,11 @@ For more information, see the Notes section in the full Help. If you specify a domain that is different from the domain of the user that is running the current session (or, for a startup or shutdown script, the computer), a trust must exist between that domain and the domain of the user, or the computer. -You can also refer to the *Domain* parameter by its built-in alias, domainname. +You can also refer to the **Domain** parameter by its built-in alias, **DomainName**. For more information, see **about_Aliases**. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DomainName @@ -213,7 +213,7 @@ Specifies the path to a migration table file. You can use a migration table to map security principals and UNC paths across domains. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -230,7 +230,7 @@ Specifies the path to the backup directory. You can also refer to the *Path* parameter by its built-in aliases: backuplocation or backupdirectory. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: backupLocation, BackupDirectory @@ -247,10 +247,10 @@ You can specify either the fully qualified domain name (FQDN) or the host name If you do not specify the name by using the *Server* parameter, the primary domain controller (PDC) emulator is contacted. -You can also refer to the *Server* parameter by its built-in alias, dc. +You can also refer to the *Server* parameter by its built-in alias, **DC**. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DC @@ -286,7 +286,7 @@ Use the *CreateIfNeeded* parameter to force the GPO to be created if it does not You must specify either the *TargetGuid* parameter or the *TargetName* parameter. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -298,11 +298,12 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -314,6 +315,7 @@ Accept wildcard characters: False ``` ### CommonParameters + This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -324,9 +326,11 @@ You can pipe an object that represents a GPO backup on the file system to this c ## OUTPUTS ### Microsoft.GroupPolicy.Gpo + This cmdlet returns an object that represents the GPO after the settings have been imported. ## NOTES + * You can use the **Import-GPO** to copy settings from a GPO backup in one domain to the same domain or another domain in the same or different forest. You can use the *Domain* parameter to explicitly specify the domain for this cmdlet. diff --git a/docset/winserver2022-ps/grouppolicy/Invoke-GPUpdate.md b/docset/winserver2022-ps/grouppolicy/Invoke-GPUpdate.md index 546f059eca..bdd8f98387 100644 --- a/docset/winserver2022-ps/grouppolicy/Invoke-GPUpdate.md +++ b/docset/winserver2022-ps/grouppolicy/Invoke-GPUpdate.md @@ -62,7 +62,7 @@ To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?L For more information about Windows PowerShell® background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -80,7 +80,7 @@ This is required for those Group Policy client side extensions (CSEs) that do no This parameter has no effect if there are no CSEs called that require a restart. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -106,7 +106,7 @@ You can specify the computer name in one of the following formats: If the computer name is not specified, the computer in which this cmdlet is run will have its Group Policy settings refreshed. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DNSHostName @@ -121,7 +121,7 @@ Accept wildcard characters: False Forces the command to run without asking for user confirmation. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: NonSyncSet Aliases: @@ -140,7 +140,7 @@ Examples include per-user Software Installation policy settings and the Folder R This parameter has no effect if there are no CSEs called that require a logoff. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -182,7 +182,7 @@ On a client computer, by default, Group Policy processes synchronously at comput On a server, by default, Group Policy processes synchronously at computer startup and at user logon. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: SyncSet Aliases: @@ -205,7 +205,7 @@ The acceptable values for this parameter are: If the *Target* parameter is not specified both user and computer policy settings are refreshed. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -217,6 +217,7 @@ Accept wildcard characters: False ``` ### CommonParameters + This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -230,6 +231,7 @@ This cmdlet does not take any object as input. This cmdlet does not generate any output. ## NOTES + * This cmdlet does not support scheduling a Group Policy refresh for computers running Windows XP or earlier. * In order to successfully schedule a Group Policy refresh for computers using this cmdlet, the following Firewall rules must be set on each client computer to allow the following connections: diff --git a/docset/winserver2022-ps/grouppolicy/New-GPLink.md b/docset/winserver2022-ps/grouppolicy/New-GPLink.md index ec429931b1..334cced92d 100644 --- a/docset/winserver2022-ps/grouppolicy/New-GPLink.md +++ b/docset/winserver2022-ps/grouppolicy/New-GPLink.md @@ -87,7 +87,7 @@ This command links the TestGPO GPO to the site named Test-Site and sets the link Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -116,11 +116,11 @@ For more information, see the Notes section in the full Help. If you specify a domain that is different from the domain of the user that is running the current session (or, for a startup or shutdown script, the computer), a trust must exist between that domain and the domain of the user, or the computer. -You can also refer to *Domain* by its built-in alias, domainname. -For more information, see about_Aliases. +You can also refer to *Domain* by its built-in alias, **DomainName**. +For more information, see [about_Aliases](????????????). ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DomainName @@ -161,7 +161,7 @@ Accept wildcard characters: False Specifies the GPO to link by its globally unique identifier (GUID). The GUID uniquely identifies the GPO in the domain. -You can also refer to the Guid parameter by its built-in alias, id. +You can also refer to the Guid parameter by its built-in alias, **Id**. For more information, see **about_Aliases**. ```yaml @@ -206,11 +206,11 @@ The display name is not guaranteed to be unique in the domain. If another GPO with the same display name exists in the domain, an error occurs. You can use the *Guid* parameter to uniquely identify a GPO. -You can also refer to the *Name* parameter by its built-in alias, displayname. +You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. For more information, see **about_Aliases**. ```yaml -Type: String +Type: System.String Parameter Sets: LinkbyName Aliases: DisplayName @@ -252,11 +252,11 @@ You can specify either the FQDN or the host name. If you do not specify the name by using the *Server* parameter, the primary domain controller (PDC) emulator is contacted. -You can also refer to the *Server* parameter by its built-in alias, dc. +You can also refer to the *Server* parameter by its built-in alias, **DC**. For more information, see **about_Aliases**. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DC @@ -272,7 +272,7 @@ Specifies the LDAP distinguished name of the site, domain, or OU to which to lin For example, for the MyOU organizational unit in the contoso.com domain, the LDAP distinguished name is ou=MyOU,dc=contoso,dc=com. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -284,11 +284,12 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -300,6 +301,7 @@ Accept wildcard characters: False ``` ### CommonParameters + This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -314,6 +316,7 @@ Collections that contain GPOs from different domains are not supported. This cmdlet returns an object that represents the link between the GPO and the site, domain, or OU. ## NOTES + * To link a GPO to a site, domain, or OU, you must have Link GPOs permission on that site, domain, or OU. By default, only domain administrators and enterprise administrators have this privilege for domains and OUs. Enterprise administrators and domain administrators of the forest root domain have this privilege for sites. You can use the *Domain* parameter to explicitly specify the domain for this cmdlet. diff --git a/docset/winserver2022-ps/grouppolicy/New-GPO.md b/docset/winserver2022-ps/grouppolicy/New-GPO.md index 20fef85fe3..5594bf6127 100644 --- a/docset/winserver2022-ps/grouppolicy/New-GPO.md +++ b/docset/winserver2022-ps/grouppolicy/New-GPO.md @@ -102,7 +102,7 @@ Use the comment to document the GPO and its implementation in your environment. Or, if you insert keywords in the comment, you can use the keyword filter to find GPOs that have matching keywords. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -117,7 +117,7 @@ Accept wildcard characters: False Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -144,11 +144,11 @@ For more information, see the Notes section in the full help. If you specify a domain that is different from the domain of the user running the current session (or the computer for a startup or shutdown script), then a trust must exist between that domain and the domain of the user, or computer. -You can also refer to the *Domain* by its built-in alias, domainname. -For more information, see about_Aliases. +You can also refer to the *Domain* by its built-in alias, **DomainName**. +For more information, see [about_Aliases](????????????). ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DomainName @@ -164,11 +164,11 @@ Specifies a display name for the new GPO. If another GPO with the same display name exists in the domain an error occurs. -You can also refer to the *Name* parameter by its built-in alias, displayname. +You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. For more information, see **about_Aliases**. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DisplayName @@ -185,11 +185,11 @@ You can specify either the fully qualified domain name (FQDN) or the host name. If you do not specify the name by using the *Server* parameter, the primary domain controller (PDC) emulator is contacted. -You can also refer to the *Server* parameter by its built-in alias, dc. +You can also refer to the *Server* parameter by its built-in alias, **DC**. For more information, see **about_Aliases**. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DC @@ -205,7 +205,7 @@ Specifies a Starter GPO by its globally unique identifier (GUID). The GUID uniquely identifies the Starter GPO. If a Starter GPO is specified, the GPO is created with its settings. -You can also refer to the *StarterGpoGuid* parameter by its built-in alias, id. +You can also refer to the **StarterGpoGuid* *parameter by its built-in alias, **Id**. For more information, see **about_Aliases**. ```yaml @@ -228,13 +228,13 @@ If a Starter GPO is specified, the GPO is created with its settings. The display name is not guaranteed to be unique in the domain. If another Starter GPO with the same display name exists in the domain, an error occurs. -You can use the *StarterGpoGuid* parameter to uniquely identify a Starter GPO. +You can use the **StarterGpoGuid* *parameter to uniquely identify a Starter GPO. -You can also refer to the *Name* parameter by its built-in alias, displayname. +You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. For more information, see **about_Aliases**. ```yaml -Type: String +Type: System.String Parameter Sets: NewStarterName Aliases: @@ -246,11 +246,12 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -262,30 +263,37 @@ Accept wildcard characters: False ``` ### CommonParameters + This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### Microsoft.GroupPolicy.StarterGpo + You can pipe a Starter GPO that has predefined settings to this cmdlet. ## OUTPUTS ### Microsoft.GroupPolicy.Gpo + This cmdlet returns the GPO that was created. ## NOTES -* Only domain administrators, enterprise administrators, and members of the Group Policy creator owners group can create GPOs. These users must run Windows PowerShell in an elevated state. + +* Only domain administrators, enterprise administrators, and members of the Group Policy creator + owners group can create GPOs. These users must run Windows PowerShell in an elevated state. You can use the *Domain* parameter to explicitly specify the domain for this cmdlet. - If you do not explicitly specify the domain, the cmdlet uses a default domain. -The default domain is the domain that is used to access network resources by the security context under which the current session is running. -This domain is typically the domain of the user that is running the session. -For instance, the domain of the user who started the session by opening Windows PowerShell from the Program Files menu, or the domain of a user that is specified in a RunAs command. -However, computer startup and shutdown scripts run under the context of the LocalSystem account. -The LocalSystem account is a built-in local account, and it accesses network resources under the context of the computer account. -Therefore, when this cmdlet is run from a startup or shutdown script, the default domain is the domain to which the computer is joined. + If you do not explicitly specify the domain, the cmdlet uses a default domain. The default domain + is the domain that is used to access network resources by the security context under which the + current session is running. This domain is typically the domain of the user that is running the + session. For instance, the domain of the user who started the session by opening Windows + PowerShell from the Program Files menu, or the domain of a user that is specified in a RunAs + command. However, computer startup and shutdown scripts run under the context of the LocalSystem + account. The LocalSystem account is a built-in local account, and it accesses network resources + under the context of the computer account. Therefore, when this cmdlet is run from a startup or + shutdown script, the default domain is the domain to which the computer is joined. ## RELATED LINKS diff --git a/docset/winserver2022-ps/grouppolicy/New-GPStarterGPO.md b/docset/winserver2022-ps/grouppolicy/New-GPStarterGPO.md index 89e2dd5812..fc9e8ec80a 100644 --- a/docset/winserver2022-ps/grouppolicy/New-GPStarterGPO.md +++ b/docset/winserver2022-ps/grouppolicy/New-GPStarterGPO.md @@ -41,7 +41,7 @@ Specifies a comment for the new Starter GPO. The comment string must be enclosed in double-quotation marks or single-quotation marks and can contain a maximum of 2,047 characters. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -56,7 +56,7 @@ Accept wildcard characters: False Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -76,11 +76,11 @@ If you specify a domain that is different from the domain of the user that is ru If you do not specify the *Domain* parameter, the domain of the user that is running the current session is used. -You can also refer to the *Domain* parameter by its built-in alias, domainname. -For more information, see about_Aliases. +You can also refer to the **Domain** parameter by its built-in alias, **DomainName**. +For more information, see [about_Aliases](????????????). ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DomainName @@ -96,11 +96,11 @@ Specifies the display name for the new Starter GPO. If another Starter GPO with the same display name exists in the domain, an error occurs. -You can also refer to the *Name* parameter by its built-in alias, displayname. +You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. For more information, see **about_Aliases**. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DisplayName @@ -117,11 +117,11 @@ You can specify either the fully qualified domain name (FQDN) or the host name. If you do not specify the name by using the *Server* parameter, the primary domain controller (PDC) emulator is contacted. -You can also refer to the *Server* parameter by its built-in alias, dc. +You can also refer to the *Server* parameter by its built-in alias, **DC**. For more information, see **about_Aliases**. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DC @@ -133,11 +133,12 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -149,6 +150,7 @@ Accept wildcard characters: False ``` ### CommonParameters + This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/docset/winserver2022-ps/grouppolicy/Remove-GPLink.md b/docset/winserver2022-ps/grouppolicy/Remove-GPLink.md index eab0ff3518..a71aded868 100644 --- a/docset/winserver2022-ps/grouppolicy/Remove-GPLink.md +++ b/docset/winserver2022-ps/grouppolicy/Remove-GPLink.md @@ -100,7 +100,7 @@ The GPOs for which links have been removed are returned. Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -129,11 +129,11 @@ For more information, see the Notes section in the full Help. If you specify a domain that is different from the domain of the user that is running the current session (or, for a startup or shutdown script, the computer), a trust must exist between that domain and the domain of the user, or the computer. -You can also refer to the *Domain* parameter by its built-in alias, domainname. -For more information, see about_Aliases. +You can also refer to the **Domain** parameter by its built-in alias, **DomainName**. +For more information, see [about_Aliases](????????????). ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DomainName @@ -170,11 +170,11 @@ The display name is not guaranteed to be unique in the domain. If another GPO with the same display name exists in the domain an error occurs. You can use the *Guid* parameter to uniquely identify a GPO. -You can also refer to the *Name* parameter by its built-in alias, displayname. +You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. For more information, see **about_Aliases**. ```yaml -Type: String +Type: System.String Parameter Sets: LinkbyName Aliases: DisplayName @@ -191,11 +191,11 @@ You can specify either the fully qualified domain name (FQDN) or the host name. If you do not specify the name by using the *Server* parameter, the primary domain controller (PDC) emulator is contacted. -You can also refer to the *Server* parameter by its built-in alias, dc. +You can also refer to the *Server* parameter by its built-in alias, **DC**. For more information, see **about_Aliases**. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DC @@ -211,7 +211,7 @@ Specifies the Lightweight Directory Access Protocol (LDAP) distinguished name of For instance, for the MyOU organizational unit in the contoso.com domain, the LDAP distinguished name is ou=MyOU,dc=contoso,dc=com. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -223,11 +223,14 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter +nt.Automation.SwitchParameter + Parameter Sets: (All) Aliases: wi @@ -239,6 +242,7 @@ Accept wildcard characters: False ``` ### CommonParameters + This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -249,6 +253,7 @@ This cmdlet accepts an object that represents the link between a GPO and a site, ## OUTPUTS ### Microsoft.GroupPolicy.Gpo + This cmdlet returns the GPO for which the link has been removed. ## NOTES diff --git a/docset/winserver2022-ps/grouppolicy/Remove-GPO.md b/docset/winserver2022-ps/grouppolicy/Remove-GPO.md index 9d1833d5f9..f7bf2c7d83 100644 --- a/docset/winserver2022-ps/grouppolicy/Remove-GPO.md +++ b/docset/winserver2022-ps/grouppolicy/Remove-GPO.md @@ -54,7 +54,7 @@ Because the *KeepLinks* parameter is not specified, links between the GPO and al Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -74,7 +74,7 @@ If you do not specify the *Domain* parameter, the domain of the computer that yo If you specify a domain that differs from the domain of your user object, a trust must exist between the domain from which you want to remove the GPO and the domain of your user object. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DomainName @@ -89,8 +89,8 @@ Accept wildcard characters: False Specifies the GPO to remove by its globally unique identifier (GUID). The GUID uniquely identifies the GPO. -You can also refer to the *Guid* parameter by its built-in alias, id. -For more information, see about_Aliases. +You can also refer to the *Guid* parameter by its built-in alias, **Id**. +For more information, see [about_Aliases](????????????). ```yaml Type: Guid @@ -108,7 +108,7 @@ Accept wildcard characters: False Indicates that the cmdlet preserves the links to the GPO in the specified domain, including OUs, and all sites when the GPO is removed. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -126,11 +126,11 @@ The display name is not guaranteed to be unique in the domain. If another GPO with the same display name exists in the domain an error occurs. You can use the *Guid* parameter to uniquely identify a GPO. -You can also refer to the *Name* parameter by its built-in alias, displayname. +You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. For more information, see **about_Aliases**. ```yaml -Type: String +Type: System.String Parameter Sets: ByName Aliases: DisplayName @@ -147,11 +147,11 @@ You can specify either the fully qualified domain name (FQDN) or the host name. If you do not specify the name by using the *Server* parameter, the primary domain controller (PDC) emulator is contacted. -You can also refer to the *Server* parameter by its built-in alias, dc. +You can also refer to the *Server* parameter by its built-in alias, **DC**. For more information, see **about_Aliases**. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DC @@ -163,11 +163,12 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -179,6 +180,7 @@ Accept wildcard characters: False ``` ### CommonParameters + This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -193,6 +195,7 @@ Collections that contain GPOs from different domains are not supported. This cmdlet does not generate any output. ## NOTES + * When you remove a GPO, by default, all links to that GPO in the domain of the GPO are deleted. To remove a link to a GPO, you must have permission to link Group Policy Objects for the organizational unit or domain. If you do not have rights to delete a link, the GPO is deleted, but the link remains. Links from other domains and sites are not removed. The link to a deleted GPO appears in the GPMC as Not Found. To remove Not Found links, you must either have permission on the site, domain, or organizational unit containing the link, or ask someone with sufficient rights to delete it. ## RELATED LINKS diff --git a/docset/winserver2022-ps/grouppolicy/Remove-GPPrefRegistryValue.md b/docset/winserver2022-ps/grouppolicy/Remove-GPPrefRegistryValue.md index a25862a870..74b6db5286 100644 --- a/docset/winserver2022-ps/grouppolicy/Remove-GPPrefRegistryValue.md +++ b/docset/winserver2022-ps/grouppolicy/Remove-GPPrefRegistryValue.md @@ -127,7 +127,7 @@ For more information about the *ErrorAction* parameter, see about_CommonParamete Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -166,11 +166,11 @@ If you do not specify the *Domain* parameter, the domain of the user that is run If you specify a domain that is different from the domain of the user that is running the current session, a trust must exist between that domain and the domain of the user or the computer. -You can also refer to the Domain parameter by its built-in alias, domainname. -For more information, see about_Aliases. +You can also refer to the Domain parameter by its built-in alias, **DomainName**. +For more information, see [about_Aliases](????????????). ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DomainName @@ -185,7 +185,7 @@ Accept wildcard characters: False Specifies the GPO from which to remove the Registry preference item by its globally unique identifier (GUID). The GUID uniquely identifies the GPO. -You can also refer to the *Guid* parameter by its built-in alias, id. +You can also refer to the *Guid* parameter by its built-in alias, **Id**. ```yaml Type: Guid @@ -214,7 +214,7 @@ The *Key* parameter can be specified with or without the *ValueName* parameter: You can also refer to the *Key* parameter by its built-in alias, FullKeyPath. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: FullKeyPath @@ -232,10 +232,10 @@ The display name is not guaranteed to be unique in the domain. If another GPO with the same display name exists in the domain an error occurs. You can use the Guid parameter to uniquely identify a GPO. -You can also refer to the *Name* parameter by its built-in alias, displayname. +You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. ```yaml -Type: String +Type: System.String Parameter Sets: GetByName Aliases: DisplayName @@ -267,10 +267,10 @@ You can specify either the fully qualified domain name (FQDN) or the host name. If you do not specify the name by using the *Server* parameter, the primary domain controller (PDC) emulator is contacted. -You can also refer to the *Server* parameter by its built-in alias, dc. +You can also refer to the *Server* parameter by its built-in alias, **DC**. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DC @@ -286,7 +286,7 @@ Specifies the name of a registry value for which to remove all Registry preferen If you specify the *ValueName* parameter, you must also specify the *Key* parameter. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -298,11 +298,12 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -314,6 +315,7 @@ Accept wildcard characters: False ``` ### CommonParameters + This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -327,9 +329,11 @@ Collections that contain GPOs from different domains are not supported. ## OUTPUTS ### Microsoft.GroupPolicy.Gpo + This cmdlet returns the GPO from which the Registry preference item or items that have been removed. ## NOTES + * You can use the *Domain* parameter to explicitly specify the domain for this cmdlet. If you do not explicitly specify the domain, the cmdlet uses a default domain. diff --git a/docset/winserver2022-ps/grouppolicy/Remove-GPRegistryValue.md b/docset/winserver2022-ps/grouppolicy/Remove-GPRegistryValue.md index ed4f76e7fc..02ae68e1c6 100644 --- a/docset/winserver2022-ps/grouppolicy/Remove-GPRegistryValue.md +++ b/docset/winserver2022-ps/grouppolicy/Remove-GPRegistryValue.md @@ -83,7 +83,7 @@ If there are registry-based policy settings in User Configuration that configure Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -106,11 +106,11 @@ For more information, see the Notes section in the full Help. If you specify a domain that is different from the domain of the user that is running the current session (or, for a startup or shutdown script, the computer), a trust must exist between that domain and the domain of the user or the computer. -You can also refer to the *Domain* parameter by its built-in alias, domainname. -For more information, see about_Aliases. +You can also refer to the **Domain** parameter by its built-in alias, **DomainName**. +For more information, see [about_Aliases](????????????). ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DomainName @@ -125,7 +125,7 @@ Accept wildcard characters: False Specifies the GPO from which to remove the registry-based policy setting by its globally unique identifier (GUID). The GUID uniquely identifies the GPO. -You can also refer to the *Guid* parameter by its built-in alias, id. +You can also refer to the *Guid* parameter by its built-in alias, **Id**. ```yaml Type: Guid @@ -158,7 +158,7 @@ If there are registry-based policy settings that configure any subkeys or their You can also refer to the Key parameter by its built-in alias, FullKeyPath. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: FullKeyPath @@ -176,10 +176,10 @@ The display name is not guaranteed to be unique in the domain. If another GPO with the same display name exists in the domain an error occurs. You can use the *Guid* parameter to uniquely identify a GPO. -You can also refer to the *Name* parameter by its built-in alias, displayname. +You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. ```yaml -Type: String +Type: System.String Parameter Sets: GetByName Aliases: DisplayName @@ -196,10 +196,10 @@ You can specify either the fully qualified domain name (FQDN) or the host name. If you do not specify the name by using the *Server* parameter, the primary domain controller (PDC) emulator is contacted. -You can also refer to the *Server* parameter by its built-in alias, dc. +You can also refer to the *Server* parameter by its built-in alias, **DC**. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DC @@ -215,7 +215,7 @@ Specifies the name of the registry value for which to remove the registry-based If you specify the *ValueName* parameter, you must also specify the *Key* parameter. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -227,11 +227,12 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -243,6 +244,7 @@ Accept wildcard characters: False ``` ### CommonParameters + This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -254,9 +256,11 @@ Collections that contain GPOs from different domains are not supported. ## OUTPUTS ### Microsoft.GroupPolicy.Gpo + This cmdlet returns the GPO from which the registry-based policy setting (or settings) has been removed. ## NOTES + * The hive of the registry key that you specify -- HKEY_LOCAL_MACHINE (HKLM) or HKEY_CURRENT_USER (HKCU) indicates whether the registry-based policy setting is removed from Computer Configuration or User Configuration. If a value for the registry key cannot be located (the registry key is not configured) or if subkeys are present, an error occurs and a corresponding error message is displayed. diff --git a/docset/winserver2022-ps/grouppolicy/Rename-GPO.md b/docset/winserver2022-ps/grouppolicy/Rename-GPO.md index 1ddf05409b..091e8aa30c 100644 --- a/docset/winserver2022-ps/grouppolicy/Rename-GPO.md +++ b/docset/winserver2022-ps/grouppolicy/Rename-GPO.md @@ -57,7 +57,7 @@ This command renames the GPO named SampleGPO to SecurityGPO. Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -80,11 +80,11 @@ For more information, see the Notes section in the full Help. If you specify a domain that is different from the domain of the user that is running the current session (or, for a startup or shutdown script, the computer), a trust must exist between that domain and the domain of the user or the computer. -You can also refer to the *Domain* parameter by its built-in alias, domainname. -For more information, see about_Aliases. +You can also refer to the **Domain** parameter by its built-in alias, **DomainName**. +For more information, see [about_Aliases](????????????). ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DomainName @@ -99,7 +99,7 @@ Accept wildcard characters: False Specifies the GPO to rename by its globally unique identifier (GUID). The GUID uniquely identifies the GPO. -You can also refer to the *Guid* parameter by its built-in alias, id. +You can also refer to the *Guid* parameter by its built-in alias, **Id**. ```yaml Type: Guid @@ -120,10 +120,10 @@ The display name is not guaranteed to be unique in the domain. If another GPO with the same display name exists in the domain, an error occurs. You can use the *Guid* parameter to uniquely identify a GPO. -You can also refer to the Name parameter by its built-in alias, displayname. +You can also refer to the Name parameter by its built-in alias, **DisplayName**. ```yaml -Type: String +Type: System.String Parameter Sets: RenameByName Aliases: DisplayName @@ -140,10 +140,10 @@ You can specify either the fully qualified domain name (FQDN) or the host name. If you do not specify the name by using the *Server* parameter, the primary domain controller (PDC) emulator is contacted. -You can also refer to the *Server* parameter by its built-in alias, dc. +You can also refer to the *Server* parameter by its built-in alias, **DC**. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DC @@ -159,7 +159,7 @@ Specifies the new display name of the GPO. Because the display name may not be unique, an error is returned if another GPO in the domain has the same display name. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -171,11 +171,12 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -187,6 +188,7 @@ Accept wildcard characters: False ``` ### CommonParameters + This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -198,9 +200,11 @@ Collections that contain GPOs from different domains are not supported. ## OUTPUTS ### Microsoft.GroupPolicy.Gpo + This cmdlet returns the GPO with the new display name. ## NOTES + * You can use the *Domain* parameter to explicitly specify the domain for this cmdlet. If you do not explicitly specify the domain, the cmdlet uses a default domain. diff --git a/docset/winserver2022-ps/grouppolicy/Restore-GPO.md b/docset/winserver2022-ps/grouppolicy/Restore-GPO.md index 7a4dce9dfe..bb9ae259ee 100644 --- a/docset/winserver2022-ps/grouppolicy/Restore-GPO.md +++ b/docset/winserver2022-ps/grouppolicy/Restore-GPO.md @@ -95,7 +95,7 @@ Indicates that the cmdlet restores all GPOs in the domain that have backups in t Each GPO is restored from its most recent backup in the directory. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: RestoreAll Aliases: @@ -129,7 +129,7 @@ Accept wildcard characters: False Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -153,11 +153,11 @@ For more information, see the Notes section in the full Help. If you specify a domain that is different from the domain of the user that is running the current session (or, for a startup or shutdown script, the computer), a trust must exist between that domain and the domain of the user or the computer. -You can also refer to the *Domain* parameter by its built-in alias, domainname. -For more information, see about_Aliases. +You can also refer to the **Domain** parameter by its built-in alias, **DomainName**. +For more information, see [about_Aliases](????????????). ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DomainName @@ -175,7 +175,7 @@ The GUID uniquely identifies the GPO. The GPO is restored from its most recent backup in the backup directory. To specify a different backup than the most recent backup, use the *BackupId* parameter. -You can also refer to the *Guid* parameter by its built-in alias, id. +You can also refer to the *Guid* parameter by its built-in alias, **Id**. ```yaml Type: Guid @@ -198,10 +198,10 @@ The display name is not guaranteed to be unique in the domain. If another GPO with the same display name exists in the domain an error occurs. You can use the *Guid* parameter to uniquely identify a GPO. -You can also refer to the Name parameter by its built-in alias, displayname. +You can also refer to the Name parameter by its built-in alias, **DisplayName**. ```yaml -Type: String +Type: System.String Parameter Sets: RestoreFromGpo(Name) Aliases: DisplayName @@ -218,7 +218,7 @@ Specifies the path to the backup directory. You can also refer to the *Path* parameter by its built-in alias, backuplocation. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: backupLocation, BackupDirectory @@ -235,10 +235,10 @@ You can specify either the fully qualified domain name (FQDN) or the host name. If you do not specify the name by using the *Server* parameter, the primary domain controller (PDC) emulator is contacted. -You can also refer to the *Server* parameter by its built-in alias, dc. +You can also refer to the *Server* parameter by its built-in alias, **DC**. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DC @@ -250,11 +250,12 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -266,6 +267,7 @@ Accept wildcard characters: False ``` ### CommonParameters + This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -276,9 +278,11 @@ You can pipe a GPO backup, a separate file that holds the settings of a GPO that ## OUTPUTS ### Microsoft.GroupPolicy.Gpo + This cmdlet returns the restored GPO. ## NOTES + * You can use the *Domain* parameter to explicitly specify the domain for this cmdlet. If you do not explicitly specify the domain, the cmdlet uses a default domain. diff --git a/docset/winserver2022-ps/grouppolicy/Set-GPInheritance.md b/docset/winserver2022-ps/grouppolicy/Set-GPInheritance.md index 95f813e267..1f9bb13edc 100644 --- a/docset/winserver2022-ps/grouppolicy/Set-GPInheritance.md +++ b/docset/winserver2022-ps/grouppolicy/Set-GPInheritance.md @@ -79,7 +79,7 @@ For instance, the Default Domain Policy GPO is linked at the domain level. Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -103,11 +103,11 @@ For more information, see the Notes section in the full Help. If you specify a domain that is different from the domain of the user that is running the current session (or, for a startup or shutdown script, the computer), a trust must exist between that domain and the domain of the user or the computer. -You can also refer to the *Domain* parameter by its built-in alias, domainname. -For more information, see about_Aliases. +You can also refer to the **Domain** parameter by its built-in alias, **DomainName**. +For more information, see [about_Aliases](????????????). ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DomainName @@ -143,10 +143,10 @@ You can specify either the fully qualified domain name (FQDN) or the host name. If you do not specify the name by using the *Server* parameter, the primary domain controller (PDC) emulator is contacted. -You can also refer to the Server parameter by its built-in alias, dc. +You can also refer to the **Server** parameter by its built-in alias, **DC**. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DC @@ -164,7 +164,7 @@ For instance, the MyOU organizational unit in the contoso.com domain is specifie You can also refer to the *Target* parameter by its built-in alias, path. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: path @@ -176,11 +176,12 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -192,6 +193,7 @@ Accept wildcard characters: False ``` ### CommonParameters + This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -207,6 +209,7 @@ The properties of this object that are displayed by default describe the Group P The **GpoInheritanceBlocked** property indicates whether inheritance is blocked. ## NOTES + * GPO links that are enforced cannot be blocked. This cmdlet should be used sparingly. Casual use of this cmdlet can complicate troubleshooting. You can use the *Domain* parameter to explicitly specify the domain for this cmdlet. diff --git a/docset/winserver2022-ps/grouppolicy/Set-GPLink.md b/docset/winserver2022-ps/grouppolicy/Set-GPLink.md index fb4de3f6d6..b8836d0ff0 100644 --- a/docset/winserver2022-ps/grouppolicy/Set-GPLink.md +++ b/docset/winserver2022-ps/grouppolicy/Set-GPLink.md @@ -86,7 +86,7 @@ Inheritance cannot be blocked for this link at containers that are at lower-leve Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -115,11 +115,11 @@ For more information, see the Notes section in the full Help. If you specify a domain that is different from the domain of the user that is running the current session (or, for a startup or shutdown script, the computer), a trust must exist between that domain and the domain of the user or the computer. -You can also refer to the *Domain* parameter by its built-in alias, domainname. -For more information, see about_Aliases. +You can also refer to the **Domain** parameter by its built-in alias, **DomainName**. +For more information, see [about_Aliases](????????????). ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DomainName @@ -163,7 +163,7 @@ Accept wildcard characters: False Specifies the GPO of the link by its globally unique identifier (GUID). The GUID uniquely identifies the GPO. -You can also refer to the *Guid* parameter by its built-in alias, id. +You can also refer to the *Guid* parameter by its built-in alias, **Id**. ```yaml Type: Guid @@ -206,10 +206,10 @@ The display name is not guaranteed to be unique in the domain. If another GPO with the same display name exists in the domain, an error occurs. You can use the *Guid* parameter to uniquely identify a GPO. -You can also refer to the *Name* parameter by its built-in alias, displayname. +You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. ```yaml -Type: String +Type: System.String Parameter Sets: LinkName Aliases: DisplayName @@ -250,10 +250,10 @@ You can specify either the fully qualified domain name (FQDN) or the host name. If you do not specify the name by using the *Server* parameter, the primary domain controller (PDC) emulator is contacted. -You can also refer to the *Server* parameter by its built-in alias, dc. +You can also refer to the *Server* parameter by its built-in alias, **DC**. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DC @@ -269,7 +269,7 @@ Specifies the Lightweight Directory Access Protocol (LDAP) distinguished name of For instance, for the MyOU organizational unit in the contoso.com domain, the LDAP distinguished name is "ou=MyOU,dc=contoso,dc=com". ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -281,11 +281,12 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -297,6 +298,7 @@ Accept wildcard characters: False ``` ### CommonParameters + This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -310,6 +312,7 @@ A GPO link between a GPO and a site, domain, or OU. This cmdlet returns the GPO link after the change has been applied. ## NOTES + * You can use the *Domain* parameter to explicitly specify the domain for this cmdlet. If you do not explicitly specify the domain, the cmdlet uses a default domain. diff --git a/docset/winserver2022-ps/grouppolicy/Set-GPPermission.md b/docset/winserver2022-ps/grouppolicy/Set-GPPermission.md index cacf142074..4946bfbde8 100644 --- a/docset/winserver2022-ps/grouppolicy/Set-GPPermission.md +++ b/docset/winserver2022-ps/grouppolicy/Set-GPPermission.md @@ -112,7 +112,7 @@ For more information about the *ErrorAction* parameter, see about_CommonParamete Specifies that the permission level is set for the specified security principal for all GPOs in the domain. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: PermissionAll Aliases: @@ -127,7 +127,7 @@ Accept wildcard characters: False Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -151,10 +151,10 @@ For more information, see the Notes section in the full Help. If you specify a domain that is different from the domain of the user that is running the current session (or, for a startup or shutdown script, the computer), a trust must exist between that domain and the domain of the user or the computer. You can also refer to the *DomainName* parameter by its built-in alias, domain. -For more information, see about_Aliases. +For more information, see [about_Aliases](????????????). ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: Domain @@ -169,7 +169,7 @@ Accept wildcard characters: False Specifies the GPO for which to set the permission level by its globally unique identifier (GUID). The GUID uniquely identifies the GPO. -You can also refer to the *Guid* parameter by its built-in alias, id. +You can also refer to the *Guid* parameter by its built-in alias, **Id**. ```yaml Type: Guid @@ -190,10 +190,10 @@ The display name is not guaranteed to be unique in the domain. If another GPO with the same display name exists in the domain, an error occurs. You can use the *Guid* parameter to uniquely identify a GPO. -You can also refer to the Name parameter by its built-in alias, displayname. +You can also refer to the Name parameter by its built-in alias, **DisplayName**. ```yaml -Type: String +Type: System.String Parameter Sets: PermissionOne(Name) Aliases: DisplayName @@ -233,7 +233,7 @@ Specifies that the existing permission level for the group or user is removed be If a security principal is already granted a permission level that is higher than the specified permission level and you do not use the *Replace* parameter, no change is made. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -250,10 +250,10 @@ You can specify either the fully qualified domain name (FQDN) or the host name. If you do not specify the name by using the *Server* parameter, the primary domain controller (PDC) emulator is contacted. -You can also refer to the *Server* parameter by its built-in alias, dc. +You can also refer to the *Server* parameter by its built-in alias, **DC**. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DC @@ -278,7 +278,7 @@ For instance, in the contoso.com domain, to specify: - The computer "computer-01", use "contoso\computer-01" or "computer-01". ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -313,11 +313,12 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -329,6 +330,7 @@ Accept wildcard characters: False ``` ### CommonParameters + This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -340,9 +342,11 @@ Collections that contain GPOs from different domains are not supported. ## OUTPUTS ### Microsoft.GroupPolicy.Gpo + This cmdlet returns an object that represents the GPO for which the permission level was set. ## NOTES + * You can use the *DomainName* parameter to explicitly specify the domain for this cmdlet. If you do not explicitly specify the domain, the cmdlet uses a default domain. diff --git a/docset/winserver2022-ps/grouppolicy/Set-GPPrefRegistryValue.md b/docset/winserver2022-ps/grouppolicy/Set-GPPrefRegistryValue.md index b84ce1fa3d..c5613937a2 100644 --- a/docset/winserver2022-ps/grouppolicy/Set-GPPrefRegistryValue.md +++ b/docset/winserver2022-ps/grouppolicy/Set-GPPrefRegistryValue.md @@ -196,7 +196,7 @@ Accept wildcard characters: False Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -236,7 +236,7 @@ You can use the **Remove-GPPrefRegistryValue** cmdlet to remove any existing Reg This ensures that after you create the disabled Registry preference item, it will be the only Registry preference item associated with the key or value in the specified configuration in the GPO. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -259,11 +259,11 @@ For more information, see the Notes section in the full Help. If you specify a domain that is different from the domain of the user that is running the current session (or, for a startup or shutdown script, the computer), a trust must exist between that domain and the domain of the user or the computer. -You can also refer to the *Domain* parameter by its built-in alias, domainname. -For more information, see about_Aliases. +You can also refer to the **Domain** parameter by its built-in alias, **DomainName**. +For more information, see [about_Aliases](????????????). ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DomainName @@ -278,7 +278,7 @@ Accept wildcard characters: False Specifies the GPO in which to configure the Registry preference item by its globally unique identifier (GUID). The GUID uniquely identifies the GPO. -You can also refer to the *Guid* parameter by its built-in alias, id. +You can also refer to the *Guid* parameter by its built-in alias, **Id**. ```yaml Type: Guid @@ -305,7 +305,7 @@ You can configure a preference registry setting for a registry key or a registry - To configure a setting for a registry value, specify the *Key* parameter together with the *ValueName*, *Value*, and *Type* parameters. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: FullKeyPath @@ -323,10 +323,10 @@ The display name is not guaranteed to be unique in the domain. If another GPO with the same display name exists in the domain, an error occurs. You can use the *Guid* parameter to uniquely identify a GPO. -You can also refer to the *Name* parameter by its built-in alias, displayname. +You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. ```yaml -Type: String +Type: System.String.String.String Parameter Sets: ByName Aliases: DisplayName @@ -366,10 +366,10 @@ You can specify either the fully qualified domain name (FQDN) or the host name. If you do not specify the name by using the *Server* parameter, the primary domain controller (PDC) emulator is contacted. -You can also refer to the *Server* parameter by its built-in alias, dc. +You can also refer to the *Server* parameter by its built-in alias, **DC**. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DC @@ -439,7 +439,7 @@ When you configure a Registry preference item for a registry key, do not specify When you configure a Registry preference item for a registry value, specify this parameter together with the *Key*, *Value*, and *Type* parameters. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -451,11 +451,12 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -467,6 +468,7 @@ Accept wildcard characters: False ``` ### CommonParameters + This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -478,9 +480,11 @@ Collections that contain GPOs from different domains are not supported. ## OUTPUTS ### Microsoft.GroupPolicy.Gpo + This cmdlet returns the GPO in which the Registry preference item was configured. ## NOTES + * You can use the *Domain* parameter to explicitly specify the domain for this cmdlet. If you do not explicitly specify the domain, the cmdlet uses a default domain. diff --git a/docset/winserver2022-ps/grouppolicy/Set-GPRegistryValue.md b/docset/winserver2022-ps/grouppolicy/Set-GPRegistryValue.md index 2b70c0f4fd..cd278aa380 100644 --- a/docset/winserver2022-ps/grouppolicy/Set-GPRegistryValue.md +++ b/docset/winserver2022-ps/grouppolicy/Set-GPRegistryValue.md @@ -140,7 +140,7 @@ By using the *Additive* parameter for a registry-based policy setting, you can s You cannot specify the *Disable* parameter with this parameter. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -155,7 +155,7 @@ Accept wildcard characters: False Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -183,7 +183,7 @@ To remove a policy setting from a GPO without affecting existing registry keys o You cannot specify the *Additive*, *Type*, *Value*, or *ValuePrefix* parameters with the *Disable* parameter. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -206,11 +206,11 @@ For more information, see the Notes section in the full Help. If you specify a domain that is different from the domain of the user that is running the current session (or, for a startup or shutdown script, the computer), a trust must exist between that domain and the domain of the user or the computer. -You can also refer to the *Domain* parameter by its built-in alias, domainname. -For more information, see about_Aliases. +You can also refer to the **Domain** parameter by its built-in alias, **DomainName**. +For more information, see [about_Aliases](????????????). ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DomainName @@ -225,7 +225,7 @@ Accept wildcard characters: False Specifies the GPO in which to configure the registry-based policy setting by its globally unique identifier (GUID). The GUID uniquely identifies the GPO. -You can also refer to the *Guid* parameter by its built-in alias, id. +You can also refer to the *Guid* parameter by its built-in alias, **Id**. ```yaml Type: Guid @@ -251,7 +251,7 @@ The key must be in one of the two following registry hives: You can also refer to the Key parameter by its built-in alias, FullKeyPath. ```yaml -Type: String +Type: System.String.String Parameter Sets: (All) Aliases: FullKeyPath @@ -269,10 +269,10 @@ The display name is not guaranteed to be unique in the domain. If another GPO with the same display name exists in the domain, an error occurs. You can use the *Guid* parameter to uniquely identify a GPO. -You can also refer to the *Name* parameter by its built-in alias, displayname. +You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. ```yaml -Type: String +Type: System.String Parameter Sets: ByName Aliases: DisplayName @@ -289,10 +289,10 @@ You can specify either the fully qualified domain name (FQDN) or the host name. If you do not specify the name by using the *Server* parameter, the primary domain controller (PDC) emulator is contacted. -You can also refer to the *Server* parameter by its built-in alias, dc. +You can also refer to the *Server* parameter by its built-in alias, **DC**. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DC @@ -367,7 +367,7 @@ Only the String and ExpandString data types are supported for an array of values You cannot specify this parameter with the *ValuePrefix* parameter. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: (All) Aliases: @@ -394,7 +394,7 @@ Only the String and ExpandString data types are supported with the *ValuePrefix* You cannot specify this parameter with the *ValueName* parameter or the *Disable* parameter. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -406,11 +406,12 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -422,6 +423,7 @@ Accept wildcard characters: False ``` ### CommonParameters + This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -433,9 +435,11 @@ Collections that contain GPOs from different domains are not supported. ## OUTPUTS ### Microsoft.GroupPolicy.Gpo + This cmdlet returns the GPO in which the registry-based policy setting has been configured. ## NOTES + * The hive of the registry key that you specify, HKEY_LOCAL_MACHINE (HKLM) or HKEY_CURRENT_USER (HKCU), determines whether the registry-based policy setting is in Computer Configuration or User Configuration. You can use the *Domain* parameter to explicitly specify the domain for this cmdlet. From a1f2948d339c59f121721849ca92ed7ba43e57ce Mon Sep 17 00:00:00 2001 From: Mike Soule Date: Fri, 28 Apr 2023 15:57:19 -0700 Subject: [PATCH 526/965] formatting #3380 --- .../Install-AdcsEnrollmentWebService.md | 154 ++++++++++++------ 1 file changed, 100 insertions(+), 54 deletions(-) diff --git a/docset/winserver2022-ps/adcsdeployment/Install-AdcsEnrollmentWebService.md b/docset/winserver2022-ps/adcsdeployment/Install-AdcsEnrollmentWebService.md index fc002127dc..55148e8e6e 100644 --- a/docset/winserver2022-ps/adcsdeployment/Install-AdcsEnrollmentWebService.md +++ b/docset/winserver2022-ps/adcsdeployment/Install-AdcsEnrollmentWebService.md @@ -16,24 +16,31 @@ Performs the initial configuration of the Certificate Enrollment Web service. ## SYNTAX ### DefaultParameterSet (Default) + ``` -Install-AdcsEnrollmentWebService [-CAConfig ] [-ApplicationPoolIdentity] - [-AuthenticationType ] [-SSLCertThumbprint ] [-RenewalOnly] - [-AllowKeyBasedRenewal] [-Force] [-Credential ] [-WhatIf] [-Confirm] [] +Install-AdcsEnrollmentWebService [-CAConfig ] +[-ApplicationPoolIdentity] [-AuthenticationType ] +[-SSLCertThumbprint ] [-RenewalOnly] [-AllowKeyBasedRenewal] +[-Force] [-Credential ] [-WhatIf] [-Confirm] +[] ``` ### ServiceAccountParameterSet + ``` -Install-AdcsEnrollmentWebService [-CAConfig ] -ServiceAccountName - -ServiceAccountPassword [-AuthenticationType ] - [-SSLCertThumbprint ] [-RenewalOnly] [-AllowKeyBasedRenewal] [-Force] [-Credential ] - [-WhatIf] [-Confirm] [] +Install-AdcsEnrollmentWebService [-CAConfig ] +-ServiceAccountName -ServiceAccountPassword +[-AuthenticationType ] [-SSLCertThumbprint ] +[-RenewalOnly] [-AllowKeyBasedRenewal] [-Force] [-Credential ] +[-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Install-AdcsEnrollmentWebService** cmdlet performs the configuration of Certificate Enrollment Web service. -It is also used to create additional instances of the service within an existing installation. -To remove the Certificate Enrollment Web Service role service use the **Uninstall-AdcsEnrollmentWebService** cmdlet. + +The `Install-AdcsEnrollmentWebService` cmdlet performs the configuration of the Certificate +Enrollment Web service. It is also used to create and configure additional instances of the service +within an existing installation. To remove the Certificate Enrollment Web Service role service use +the `Uninstall-AdcsEnrollmentWebService` cmdlet. You can import the cmdlet by running the following commands from Windows PowerShell: @@ -43,27 +50,45 @@ You can import the cmdlet by running the following commands from Windows PowerSh ## EXAMPLES ### Example 1: Installs the Certificate Enrollment Web Service to use the certification authority -``` -PS C:\> Install-AdcsEnrollmentWebService -ApplicationPoolIdentity -CAConfig "CA1.contoso.com\contoso-CA1-CA" -SSLCertThumbprint "Thumbprint001" -AuthenticationType Certificate + +```powershell +$params = @{ + ApplicationPoolIdentity = $true + CAConfig = "CA1.contoso.com\contoso-CA1-CA" + SSLCertThumbprint = "a909502dd82ae41433e6f83886b00d4277a32a7b" + AuthenticationType = Certificate +} +Install-AdcsEnrollmentWebService @params ``` -This command installs the Certificate Enrollment Web Service to use the certification authority with a computer name of CA1.contoso.com and a CA common name contoso-CA1-CA. -The identity of the Certificate Enrollment Web Service is specified as the default application pool identity. -The authentication type is certificate based. +This command installs the Certificate Enrollment Web Service to use the certification authority with +a computer name of `CA1.contoso.com` and a CA common name `contoso-CA1-CA`. The identity of the +Certificate Enrollment Web Service is specified as the default application pool identity. The +authentication type is certificate based. ### Example 2: Installs the Certificate Enrollment Web Service to use the certification authority that prompts for password -``` -PS C:\> Install-AdcsEnrollmentWebService -CAConfig "APP1.corp.contoso.com\corp-APP1-CA" -SSLCertThumbprint "Thumbprint001" -ServiceAccountName "Corp\CEPAcct1" -ServiceAccountPassword (read-host "Set user password" -assecurestring) + +```powershell +$params = @{ + CAConfig = "APP1.corp.contoso.com\corp-APP1-CA" + SSLCertThumbprint = "a909502dd82ae41433e6f83886b00d4277a32a7b" + ServiceAccountName = "Corp\CEPAcct1" + ServiceAccountPassword = (Read-Host "Set user password" -AsSecureString) +} +Install-AdcsEnrollmentWebService @params ``` -This command installs the Certificate Enrollment Web Service to use the certification authority with a computer name of APP1.corp.contoso.com and a CA common name corp-APP1-CA. -The identity of the Certificate Enrollment Web Service is specified as CEPAcct1 from the Corp domain. -The command will prompt for the user password. +This command installs the Certificate Enrollment Web Service to use the certification authority with +a computer name of `APP1.corp.contoso.com` and a CA common name `corp-APP1-CA`. The identity of the +Certificate Enrollment Web Service is specified as `CEPAcct1` from the `Corp` domain. The command +will prompt for the user password. ## PARAMETERS ### -AllowKeyBasedRenewal -Indicates that the cmdlet accept key based renewal requests for the enrollment server, which are valid client certificates for authentication that do not directly map to a security principal. + +Indicates that the cmdlet accepts key based renewal requests for the enrollment server, which are +valid client certificates for authentication that do not directly map to a security principal. ```yaml Type: SwitchParameter @@ -78,11 +103,13 @@ Accept wildcard characters: False ``` ### -ApplicationPoolIdentity -Indicates that the cmdlet uses the application pool identity that the Certificate Enrollment Web Service uses when communicating with the Certification Authority (CA). -This parameter is only valid when Certificate Enrollment Web Service targets a remote CA. -If not specified, the local application pool identity is used. -This parameter is only valid when installing the first instance of the Certificate Enrollment Web Service. -If this installation will be for an additional instance of Certificate Enrollment Web Service on this server, then this parameter should not be specified. + +Indicates that the cmdlet configures the Certificate Enrollment Web Service to use the application +pool identity when communicating with the Certification Authority (CA). This parameter is only valid +when Certificate Enrollment Web Service targets a remote CA. If not specified, the local application +pool identity is used. This parameter is only valid when installing the first instance of the +Certificate Enrollment Web Service. If this installation will be for an additional instance of +Certificate Enrollment Web Service on this server, then this parameter should not be specified. ```yaml Type: SwitchParameter @@ -97,6 +124,7 @@ Accept wildcard characters: False ``` ### -AuthenticationType + Specifies the authentication type. The acceptable values for this parameter are: @@ -118,12 +146,13 @@ Accept wildcard characters: False ``` ### -CAConfig -Specifies the configuration string of the CA used by the Certificate Enrollment Web Service to process enrollment requests. -This parameter depends upon whether a local CA is installed. -If the CA is local, then the parameter is optional and defaults to the local CA when not specified. -If there is not a local CA, then the parameter is required. -The input is the configuration string is `\`. -Replace the computer name of the (CA) for `` and replace the CA common name for ``. + +Specifies the configuration string of the CA used by the Certificate Enrollment Web Service to +process enrollment requests. This parameter depends upon whether a local CA is installed. If the CA +is local, then the parameter is optional and defaults to the local CA when not specified. If there +is not a local CA, then the parameter is required. The input of the configuration string is +`\`. Replace the computer name of the (CA) for `` and +replace the CA common name for ``. ```yaml Type: String @@ -138,6 +167,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -153,12 +183,14 @@ Accept wildcard characters: False ``` ### -Credential -Specifies the credentials for installing the Certificate Enrollment Web Service. -To obtain a credential object, use the **Get-Credential** cmdlet. -For more information, type `Get-Help Get-Credential`. -The Certificate Enrollment Web Service must be installed on a server that is a member of an Active Directory Domain Services (AD DS) domain. -If the Certificate Enrollment Web Service is configured to use a Standalone certification authority (CA), then an account that is a member of the local Administrators on the CA is required. -If the Enrollment Web Service is installed to use an Enterprise CA, then using an account that is a member of Domain Admins group is required. + +Specifies the credentials for installing the Certificate Enrollment Web Service. To obtain a +credential object, use the `Get-Credential` cmdlet. For more information, type +`Get-Help Get-Credential`. The Certificate Enrollment Web Service must be installed on a server that +is a member of an Active Directory Domain Services (AD DS) domain. If the Certificate Enrollment Web +Service is configured to use a Standalone certification authority (CA), then an account that is a +member of the local Administrators on the CA is required. If the Enrollment Web Service is installed +to use an Enterprise CA, then using an account that is a member of Domain Admins group is required. ```yaml Type: PSCredential @@ -173,6 +205,7 @@ Accept wildcard characters: False ``` ### -Force + Forces the command to run without asking for user confirmation. ```yaml @@ -188,6 +221,7 @@ Accept wildcard characters: False ``` ### -RenewalOnly + Indicates that the cmdlet enables renewal only mode. ```yaml @@ -203,12 +237,14 @@ Accept wildcard characters: False ``` ### -SSLCertThumbprint -Specifies the hash or thumbprint of the Secure Sockets Layer/Transport Layer Security (SSL/TLS) certificate for a web site as a string value. -This parameter is optional. -If used, it establishes the necessary binding with Internet Information Server (IIS) to enable support for the required SSL/TLS connectivity. -If a binding already exists within IIS, specifying this parameter overwrites the existing binding. -If this parameter is not specified, any existing binding is used. -If no bindings exist, installation succeeds, but the service will not function until the binding is established manually. + +Specifies the hash or thumbprint of the Secure Sockets Layer/Transport Layer Security (SSL/TLS) +certificate for a web site as a string value. This parameter is optional. If used, it establishes +the necessary binding with Internet Information Server (IIS) to enable support for the required +SSL/TLS connectivity. If a binding already exists within IIS, specifying this parameter overwrites +the existing binding. If this parameter is not specified, any existing binding is used. If no +bindings exist, installation succeeds, but the service will not function until the binding is +established manually. ```yaml Type: String @@ -223,9 +259,10 @@ Accept wildcard characters: False ``` ### -ServiceAccountName -Specifies the domain account for use with the service. -The input string should be in the form of `\`. -For instance, to specify an account named WebEnroll in the Corp.contoso.com domain, you would type `CORP\WebEnroll`. + +Specifies the domain account for use with the service. The input string should be in the form of +`\`. For instance, to specify an account named `WebEnroll` in the +`Corp.contoso.com` domain, you would type `CORP\WebEnroll`. ```yaml Type: String @@ -240,6 +277,7 @@ Accept wildcard characters: False ``` ### -ServiceAccountPassword + Specifies the password for the domain account used as the service account. ```yaml @@ -255,6 +293,7 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. @@ -271,7 +310,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -290,15 +333,18 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.CertificateServices.Deployment.Common.CES.EnrollmentServiceResult ## NOTES -* Ensure you run Windows PowerShell as an administrator. You can use the *Force* parameter to bypass the prompt for confirmation. -To see parameters, run the following command: `Install-AdcsEnrollmentWebService cmdlet -?` -* You can get the CA configuration, which is the computer name and CA name by running certutil without any parameters. You can see the SSL certificate thumbprints assigned to the local computer by running the following commands: - - `cd cert:\LocalMachine\My` - - `dir | format-list` + +- Ensure you run Windows PowerShell as an administrator. You can use the **Force** parameter to + bypass the prompt for confirmation. To see parameters, run the following command: + `Install-AdcsEnrollmentWebService cmdlet -?` +- You can get the CA configuration, which is the computer name and CA name by running certutil + without any parameters. You can see the SSL certificate thumbprints assigned to the local computer + by running the following commands: + - `cd cert:\LocalMachine\My` + - `dir | format-list` ## RELATED LINKS [Uninstall-AdcsEnrollmentWebService](./Uninstall-AdcsEnrollmentWebService.md) [Get-Credential](https://go.microsoft.com/fwlink/?LinkID=293936) - From 75c71e62abc836c5c87414a091d7c552cd2a56df Mon Sep 17 00:00:00 2001 From: Michael Date: Fri, 28 Apr 2023 16:00:30 -0700 Subject: [PATCH 527/965] Update Install-AdcsEnrollmentWebService.md --- .../adcsdeployment/Install-AdcsEnrollmentWebService.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docset/winserver2022-ps/adcsdeployment/Install-AdcsEnrollmentWebService.md b/docset/winserver2022-ps/adcsdeployment/Install-AdcsEnrollmentWebService.md index 55148e8e6e..c8d78cffd5 100644 --- a/docset/winserver2022-ps/adcsdeployment/Install-AdcsEnrollmentWebService.md +++ b/docset/winserver2022-ps/adcsdeployment/Install-AdcsEnrollmentWebService.md @@ -19,10 +19,10 @@ Performs the initial configuration of the Certificate Enrollment Web service. ``` Install-AdcsEnrollmentWebService [-CAConfig ] -[-ApplicationPoolIdentity] [-AuthenticationType ] -[-SSLCertThumbprint ] [-RenewalOnly] [-AllowKeyBasedRenewal] -[-Force] [-Credential ] [-WhatIf] [-Confirm] -[] + [-ApplicationPoolIdentity] [-AuthenticationType ] + [-SSLCertThumbprint ] [-RenewalOnly] [-AllowKeyBasedRenewal] + [-Force] [-Credential ] [-WhatIf] [-Confirm] + [] ``` ### ServiceAccountParameterSet From fba1b748db6703eea7c1105f572162837750f84b Mon Sep 17 00:00:00 2001 From: Mike Soule Date: Fri, 28 Apr 2023 16:10:16 -0700 Subject: [PATCH 528/965] formatting #3382 --- .../Install-AdcsEnrollmentPolicyWebService.md | 103 ++++++++++++------ 1 file changed, 71 insertions(+), 32 deletions(-) diff --git a/docset/winserver2022-ps/adcsdeployment/Install-AdcsEnrollmentPolicyWebService.md b/docset/winserver2022-ps/adcsdeployment/Install-AdcsEnrollmentPolicyWebService.md index 10cd13901e..2329c67e18 100644 --- a/docset/winserver2022-ps/adcsdeployment/Install-AdcsEnrollmentPolicyWebService.md +++ b/docset/winserver2022-ps/adcsdeployment/Install-AdcsEnrollmentPolicyWebService.md @@ -11,19 +11,23 @@ title: Install-AdcsEnrollmentPolicyWebService # Install-AdcsEnrollmentPolicyWebService ## SYNOPSIS -Performs the configuration of Certificate Enrollment Policy Web service. +Performs the configuration of Certificate Enrollment Policy Web Service. ## SYNTAX ``` -Install-AdcsEnrollmentPolicyWebService [-AuthenticationType ] [-SSLCertThumbprint ] - [-KeyBasedRenewal] [-Force] [-Credential ] [-WhatIf] [-Confirm] [] +Install-AdcsEnrollmentPolicyWebService + [-AuthenticationType ] [-SSLCertThumbprint ] + [-KeyBasedRenewal] [-Force] [-Credential ] [-WhatIf] + [-Confirm] [] ``` ## DESCRIPTION -The **Install-AdcsEnrollmentPolicyWebService** cmdlet performs the configuration of Certificate Enrollment Policy Web service. -It is also used to create additional instances of the service within an existing installation. -To remove the certification authority (CA) role service use the **Uninstall-AdcsEnrollmentPolicyWebService** cmdlet. + +The `Install-AdcsEnrollmentPolicyWebService` cmdlet performs the configuration of Certificate +Enrollment Policy Web Service. It is also used to create and configure additional instances of the +service within an existing installation. To remove the certification authority (CA) role service use +the `Uninstall-AdcsEnrollmentPolicyWebService` cmdlet. You can import the cmdlet by running the following commands from Windows PowerShell: @@ -33,30 +37,51 @@ You can import the cmdlet by running the following commands from Windows PowerSh ## EXAMPLES ### Example 1: Install the Certificate Enrollment Policy Web Service using Kerberos -``` -PS C:\> Install-AdcsEnrollmentPolicyWebService -AuthenticationType Kerberos -SSLCertThumbprint "sslCertThumbPrint" + +```powershell +$params = @{ + AuthenticationType = Kerberos + SSLCertThumbprint = "a909502dd82ae41433e6f83886b00d4277a32a7b" +} +Install-AdcsEnrollmentPolicyWebService @params ``` -This command installs the Certificate Enrollment Policy Web Service using Kerberos for authentication. -For information on obtaining a certificate thumbprint using Windows PowerShell, see [Certificate Provider](https://go.microsoft.com/fwlink/?LinkId=225044). +This command installs the Certificate Enrollment Policy Web Service using Kerberos for +authentication. For information on obtaining a certificate thumbprint using Windows PowerShell, see +[Certificate Provider](https://go.microsoft.com/fwlink/?LinkId=225044). ### Example 2: Install the Certificate Enrollment Policy Web Service specifying a username and password -``` -PS C:\> Install-AdcsEnrollmentPolicyWebService -AuthenticationType Username -SSLCertThumbprint "sslCertThumbPrint" + +```powershell +$params = @{ + AuthenticationType = Username + SSLCertThumbprint = "a909502dd82ae41433e6f83886b00d4277a32a7b" +} +Install-AdcsEnrollmentPolicyWebService @params ``` -This command installs the Certificate Enrollment Policy Web Service specifying that a username and password is used for authentication. +This command installs the Certificate Enrollment Policy Web Service specifying that a username and +password is used for authentication. ### Example 3: Install the Certificate Enrollment Policy Web Service specifying a username and password for Key-Based Renewal -``` -PS C:\> Install-AdcsEnrollmentPolicyWebService -AuthenticationType Username -SSLCertThumbprint -KeyBasedRenewal + +```powershell +$params = @{ + AuthenticationType = Username + SSLCertThumbprint = "a909502dd82ae41433e6f83886b00d4277a32a7b" + KeyBasedRenewal = $true +} +Install-AdcsEnrollmentPolicyWebService @params ``` -This command installs the Certificate Enrollment Policy Web Service specifying that a username and password is used for authentication and configures the service for Key-Based Renewal of the certificate. +This command installs the Certificate Enrollment Policy Web Service specifying that a username and +password is used for authentication and configures the service for Key-Based Renewal of the +certificate. ## PARAMETERS ### -AuthenticationType + Specifies the authentication type used by the Certificate Enrollment Policy Web Service. The acceptable values for this parameter are: @@ -78,6 +103,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -93,11 +119,12 @@ Accept wildcard characters: False ``` ### -Credential -Specifies the credentials for installing the Enrollment Policy Web Service. -To obtain a credential object, use the **Get-Credential** cmdlet. -For more information, type `Get-Help Get-Credential`. -The Enrollment Policy Web Service must be installed on a server that is a member of an Active Directory Domain Services (AD DS) domain. -You must use an account that is a member of Domain Admins group to install this service. + +Specifies the credentials for installing the Enrollment Policy Web Service. To obtain a credential +object, use the `Get-Credential` cmdlet. For more information, type `Get-Help Get-Credential`. The +Enrollment Policy Web Service must be installed on a server that is a member of an Active Directory +Domain Services (AD DS) domain. You must use an account that is a member of Domain Admins group to +install this service. ```yaml Type: PSCredential @@ -112,6 +139,7 @@ Accept wildcard characters: False ``` ### -Force + Forces the command to run without asking for user confirmation. ```yaml @@ -127,9 +155,11 @@ Accept wildcard characters: False ``` ### -KeyBasedRenewal -Indicates that this cmdlet configures the Certificate Enrollment Policy Web Service to operate in key-based renewal mode. -Key-based renewal allows certificate clients to renew their certificates using the key of their existing certificate for authentication. -When in key-based renewal mode, the service will only return certificate templates that are set for key based renewal. + +Indicates that this cmdlet configures the Certificate Enrollment Policy Web Service to operate in +key-based renewal mode. Key-based renewal allows certificate clients to renew their certificates +using the key of their existing certificate for authentication. When in key-based renewal mode, the +service will only return certificate templates that are set for key based renewal. ```yaml Type: SwitchParameter @@ -144,7 +174,9 @@ Accept wildcard characters: False ``` ### -SSLCertThumbprint -Specifies the thumbprint of the certificate used by Internet Information Service (IIS) to enable support for required Secure Sockets Layer (SSL). + +Specifies the thumbprint of the certificate used by Internet Information Service (IIS) to enable +support for required Secure Sockets Layer/Transport Layer Security (SSL/TLS). ```yaml Type: String @@ -159,6 +191,7 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml @@ -174,7 +207,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -191,15 +228,17 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.CertificateServices.Deployment.Common.CEP.EnrollmentPolicyServiceResult ## NOTES -* Ensure you run Windows PowerShell as an administrator. You can use the *Force* parameter to bypass the prompt for confirmation. - To see parameters, run the following command: `Install-AdcsEnrollmentPolicyWebService -?` +- Ensure you run Windows PowerShell as an administrator. You can use the **Force** parameter to + bypass the prompt for confirmation. To see parameters, run the following command: + `Install-AdcsEnrollmentPolicyWebService -?` -* You can get the CA configuration, which is the computer name and CA name by running certutil without any parameters. You can see the certificate SSL certificate thumbprints assigned to the local computer by running the following commands: - - `cd cert:\LocalMachine\My` - - `dir | format-list` +- You can get the CA configuration, which is the computer name and CA name by running certutil + without any parameters. You can see the certificate SSL certificate thumbprints assigned to the + local computer by running the following commands: + - `cd cert:\LocalMachine\My` + - `dir | format-list` ## RELATED LINKS [Uninstall-AdcsEnrollmentPolicyWebService](./Uninstall-AdcsEnrollmentPolicyWebService.md) - From 744abdd793032b8d1c2562e7bef78cf3b18c99c9 Mon Sep 17 00:00:00 2001 From: Mike Soule Date: Fri, 28 Apr 2023 16:32:37 -0700 Subject: [PATCH 529/965] formatting #3384 --- .../Install-AdcsCertificationAuthority.md | 191 +++++++++++++----- 1 file changed, 138 insertions(+), 53 deletions(-) diff --git a/docset/winserver2022-ps/adcsdeployment/Install-AdcsCertificationAuthority.md b/docset/winserver2022-ps/adcsdeployment/Install-AdcsCertificationAuthority.md index 450e657cb3..696c3d9bf8 100644 --- a/docset/winserver2022-ps/adcsdeployment/Install-AdcsCertificationAuthority.md +++ b/docset/winserver2022-ps/adcsdeployment/Install-AdcsCertificationAuthority.md @@ -11,93 +11,145 @@ title: Install-AdcsCertificationAuthority # Install-AdcsCertificationAuthority ## SYNOPSIS -Performs installation and configuration of the AD CS Certification Authority role service. +Performs installation and configuration of the Active Directory Certificate Services (AD CS) +Certification Authority (CA) role service. ## SYNTAX ### NewKeyParameterSet (Default) + ``` -Install-AdcsCertificationAuthority [-AllowAdministratorInteraction] [-ValidityPeriod ] - [-ValidityPeriodUnits ] [-CACommonName ] [-CADistinguishedNameSuffix ] - [-CAType ] [-CryptoProviderName ] [-DatabaseDirectory ] [-HashAlgorithmName ] - [-IgnoreUnicode] [-KeyLength ] [-LogDirectory ] [-OutputCertRequestFile ] - [-OverwriteExistingCAinDS] [-OverwriteExistingKey] [-ParentCA ] [-OverwriteExistingDatabase] - [-Credential ] [-Force] [-WhatIf] [-Confirm] [] +Install-AdcsCertificationAuthority [-AllowAdministratorInteraction] + [-ValidityPeriod ] [-ValidityPeriodUnits ] + [-CACommonName ] [-CADistinguishedNameSuffix ] + [-CAType ] [-CryptoProviderName ] + [-DatabaseDirectory ] [-HashAlgorithmName ] + [-IgnoreUnicode] [-KeyLength ] [-LogDirectory ] + [-OutputCertRequestFile ] [-OverwriteExistingCAinDS] + [-OverwriteExistingKey] [-ParentCA ] [-OverwriteExistingDatabase] + [-Credential ] [-Force] [-WhatIf] [-Confirm] + [] ``` ### ExistingCertificateParameterSet + ``` -Install-AdcsCertificationAuthority [-AllowAdministratorInteraction] [-CertFilePassword ] - [-CertFile ] [-CAType ] [-CertificateID ] [-DatabaseDirectory ] - [-LogDirectory ] [-OverwriteExistingKey] [-OverwriteExistingDatabase] [-Credential ] - [-Force] [-WhatIf] [-Confirm] [] +Install-AdcsCertificationAuthority [-AllowAdministratorInteraction] + [-CertFilePassword ] [-CertFile ] [-CAType ] + [-CertificateID ] [-DatabaseDirectory ] + [-LogDirectory ] [-OverwriteExistingKey] + [-OverwriteExistingDatabase] [-Credential ] [-Force] + [-WhatIf] [-Confirm] [] ``` ### ExistingKeyParameterSet + ``` -Install-AdcsCertificationAuthority [-AllowAdministratorInteraction] [-ValidityPeriod ] - [-ValidityPeriodUnits ] [-CADistinguishedNameSuffix ] [-CAType ] - [-CryptoProviderName ] [-DatabaseDirectory ] [-HashAlgorithmName ] [-IgnoreUnicode] - [-KeyContainerName ] [-LogDirectory ] [-OutputCertRequestFile ] - [-OverwriteExistingCAinDS] [-ParentCA ] [-OverwriteExistingDatabase] [-Credential ] - [-Force] [-WhatIf] [-Confirm] [] +Install-AdcsCertificationAuthority [-AllowAdministratorInteraction] + [-ValidityPeriod ] [-ValidityPeriodUnits ] + [-CADistinguishedNameSuffix ] [-CAType ] + [-CryptoProviderName ] [-DatabaseDirectory ] + [-HashAlgorithmName ] [-IgnoreUnicode] [-KeyContainerName ] + [-LogDirectory ] [-OutputCertRequestFile ] + [-OverwriteExistingCAinDS] [-ParentCA ] + [-OverwriteExistingDatabase] [-Credential ] [-Force] + [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Install-AdcsCertificationAuthority** cmdlet performs installation and configuration of the Active Directory Certificate Services (AD CS) Certification Authority (CA) role service. -To remove the certification authority role service use the **Uninstall-AdcsCertificationAuthority** cmdlet. + +The `Install-AdcsCertificationAuthority` cmdlet performs installation and configuration of the +Active Directory Certificate Services (AD CS) Certification Authority (CA) role service. To remove +the certification authority role service use the `Uninstall-AdcsCertificationAuthority` cmdlet. You can import the cmdlet by running the following commands from Windows PowerShell: - `Install-WindowsFeature Adcs-Cert-Authority` -To include the Certification Authority and Certificate Templates consoles in a CA installation, you must use the *IncludeManagementTools* parameter at the end of the `Install-WindowsFeature Adcs-Cert-Authority` command. +To include the Certification Authority and Certificate Templates consoles in a CA installation, you +must use the **IncludeManagementTools** parameter at the end of the +`Install-WindowsFeature Adcs-Cert-Authority` command. -Int is equivalent to Int32 in the [.NET Framework](/dotnet/csharp/language-reference/builtin-types/built-in-types). +Int is equivalent to Int32 in the +[.NET Framework](/dotnet/csharp/language-reference/builtin-types/built-in-types). ## EXAMPLES ### Example 1: Install a new Standalone Root CA with default settings + ```powershell -PS C:\> Install-AdcsCertificationAuthority -CAType StandaloneRootCa +Install-AdcsCertificationAuthority -CAType StandaloneRootCa ``` This command installs a new Standalone Root CA with default settings. ### Example 2: Install a new Enterprise Root CA using a specific provider and key length + ```powershell -PS C:\> Install-AdcsCertificationAuthority -CAType EnterpriseRootCa -CryptoProviderName "ECDSA_P256#Microsoft Software Key Storage Provider" -KeyLength 256 -HashAlgorithmName SHA256 +$params = @{ + CAType = EnterpriseRootCa + CryptoProviderName = "ECDSA_P256#Microsoft Software Key Storage Provider" + KeyLength = 256 + HashAlgorithmName = SHA256 +} +Install-AdcsCertificationAuthority @params ``` -This command installs a new Enterprise Root CA using the provider named ECDSA_P256 Microsoft Software Key Storage Provider, key length of 256, and the hash algorithm named SHA 256. +This command installs a new Enterprise Root CA using the provider named ECDSA_P256 Microsoft +Software Key Storage Provider, key length of 256, and the hash algorithm named SHA 256. ### Example 3: Install a new Enterprise Root CA using a specific provider and a validity period + ```powershell -PS C:\> Install-AdcsCertificationAuthority -CAType EnterpriseRootCa -CryptoProviderName "RSA#Microsoft Software Key Storage Provider" -KeyLength 2048 -HashAlgorithmName SHA1 -ValidityPeriod Years -ValidityPeriodUnits 3 +$params = @{ + CAType = EnterpriseRootCa + CryptoProviderName = "RSA#Microsoft Software Key Storage Provider" + KeyLength = 2048 + HashAlgorithmName = SHA1 + ValidityPeriod = Years + ValidityPeriodUnits = 3 +} +Install-AdcsCertificationAuthority @params ``` -This command installs a new Enterprise Root CA using a RSA algorithm using the provider named Microsoft Software Key Storage Provider, a key length of 2048, a hash algorithm named SHA 1, and validity period of three years. +This command installs a new Enterprise Root CA using the RSA algorithm using the provider named +Microsoft Software Key Storage Provider, a key length of 2048, a hash algorithm named SHA 1, and +validity period of three years. ### Example 4: Install a new Enterprise Subordinate CA using a parent CA + ```powershell -PS C:\> Install-AdcsCertificationAuthority -CAType EnterpriseSubordinateCa -ParentCA SERVER75.corp.contoso.com\SERVER75-CA +$params = @{ + CAType = EnterpriseSubordinateCa + ParentCA = "SERVER75.corp.contoso.com\SERVER75-CA" +} +Install-AdcsCertificationAuthority @params ``` -This command installs a new Enterprise subordinate CA, the parent CA is SERVER75 in the CORP domain of Contoso.com. +This command installs a new Enterprise subordinate CA, the parent CA is `SERVER75` in the CORP domain +of Contoso.com. ### Example 5: Install a new Enterprise Subordinate CA using an existing certificate + ```powershell -PS C:\> Install-AdcsCertificationAuthority -CAType EnterpriseSubordinateCa -CertFile C:\Cert\SERVER80-CA.p12 -CertFilePassword (read-host "Set user password" -assecurestring) +$params = @{ + CAType = EnterpriseSubordinateCa + CertFile = "C:\Cert\SERVER80-CA.p12" + CertFilePassword = (Read-Host "Set user password" -AsSecureString) +} +Install-AdcsCertificationAuthority @params ``` -This command installs an Enterprise Subordinate CA using an existing certificate from a PFX/P12 file that is located on the local C:\Cert folder named SERVER80-CA.p12. +This command installs an Enterprise Subordinate CA using an existing certificate from a PFX/P12 file +that is located on the local `C:\Cert` folder named `SERVER80-CA.p12`. ## PARAMETERS ### -AllowAdministratorInteraction -Indicates that the cmdlet enables prompting when the private key is accessed. -This is not required for any of the Microsoft default providers. -For enhanced security components, such as a hardware security module (HSM), review the enhanced security component vendor documentation. + +Indicates that the cmdlet enables prompting when the private key is accessed. This is not required +for any of the Microsoft default providers. For enhanced security components, such as a hardware +security module (HSM), review the enhanced security component vendor documentation. ```yaml Type: SwitchParameter @@ -112,6 +164,7 @@ Accept wildcard characters: False ``` ### -CACommonName + Specifies the certification authority common name. ```yaml @@ -127,6 +180,7 @@ Accept wildcard characters: False ``` ### -CADistinguishedNameSuffix + Specifies the certification authority distinguished name suffix. ```yaml @@ -142,6 +196,7 @@ Accept wildcard characters: False ``` ### -CAType + Specifies the type of certification authority that this cmdlet installs. The acceptable values for this parameter are: @@ -164,6 +219,7 @@ Accept wildcard characters: False ``` ### -CertFile + Specifies the file name of certification authority PKCS #12 formatted certificate file. ```yaml @@ -179,6 +235,7 @@ Accept wildcard characters: False ``` ### -CertFilePassword + Specifies the password for certification authority certificate file. ```yaml @@ -194,6 +251,7 @@ Accept wildcard characters: False ``` ### -CertificateID + Specifies the thumbprint or serial number of certification authority certificate. ```yaml @@ -209,6 +267,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -224,13 +283,14 @@ Accept wildcard characters: False ``` ### -Credential -Specifies a **PSCredential** object for the connection to AD DS. -To obtain a credential object, use the **Get-Credential** cmdlet. -For more information, type `Get-Help Get-Credential`. -To install an enterprise certification authority, the computer must be joined to an AD DS domain and a user account that is a member of the Enterprise Admin group is required. -To install a standalone certification authority, the computer can be in a workgroup or AD DS domain. -If the computer is in a workgroup, a user account that is a member of Administrators is required. -If the computer is in an AD DS domain, a user account that is a member of Domain Admins is required. + +Specifies a **PSCredential** object for the connection to AD DS. To obtain a credential object, use +the `Get-Credential` cmdlet. For more information, type `Get-Help Get-Credential`. To install an +enterprise certification authority, the computer must be joined to an AD DS domain and a user +account that is a member of the Enterprise Admin group is required. To install a standalone +certification authority, the computer can be in a workgroup or AD DS domain. If the computer is in a +workgroup, a user account that is a member of Administrators is required. If the computer is in an +AD DS domain, a user account that is a member of Domain Admins is required. ```yaml Type: PSCredential @@ -245,7 +305,9 @@ Accept wildcard characters: False ``` ### -CryptoProviderName -Specifies the name of the cryptographic service provider (CSP) or key storage provider (KSP) that is used to generate or store the private key for the CA. + +Specifies the name of the cryptographic service provider (CSP) or key storage provider (KSP) that is +used to generate or store the private key for the CA. ```yaml Type: String @@ -260,6 +322,7 @@ Accept wildcard characters: False ``` ### -DatabaseDirectory + Specifies the folder location of the certification authority database. ```yaml @@ -275,6 +338,7 @@ Accept wildcard characters: False ``` ### -Force + Forces the command to run without asking for user confirmation. ```yaml @@ -290,6 +354,7 @@ Accept wildcard characters: False ``` ### -HashAlgorithmName + Specifies the signature hash algorithm used by the certification authority. ```yaml @@ -305,6 +370,7 @@ Accept wildcard characters: False ``` ### -IgnoreUnicode + Indicates that the cmdlet allows Unicode characters in the certification authority name string. ```yaml @@ -320,6 +386,7 @@ Accept wildcard characters: False ``` ### -KeyContainerName + Specifies the name of an existing private key container. ```yaml @@ -335,6 +402,7 @@ Accept wildcard characters: False ``` ### -KeyLength + Specifies the bit length for new certification authority key. ```yaml @@ -350,6 +418,7 @@ Accept wildcard characters: False ``` ### -LogDirectory + Specifies the folder location of the certification authority database log. ```yaml @@ -365,7 +434,8 @@ Accept wildcard characters: False ``` ### -OutputCertRequestFile -Specifies the folder location for certificate request file. + +Specifies the folder location for the certificate request file. ```yaml Type: String @@ -380,7 +450,9 @@ Accept wildcard characters: False ``` ### -OverwriteExistingCAinDS -Indicates that the cmdlet overwrites the computer object in the Active Directory Domain Service domain with the same computer name. + +Indicates that the cmdlet overwrites the computer object in the Active Directory Domain Service +domain with the same computer name. ```yaml Type: SwitchParameter @@ -395,6 +467,7 @@ Accept wildcard characters: False ``` ### -OverwriteExistingDatabase + Indicates that the cmdlet overwrites the existing certification authority database. ```yaml @@ -410,6 +483,7 @@ Accept wildcard characters: False ``` ### -OverwriteExistingKey + Indicates that the cmdlet overwrites the existing key container with the same name. ```yaml @@ -425,6 +499,7 @@ Accept wildcard characters: False ``` ### -ParentCA + Specifies the configuration string of the parent certification authority that will certify this CA. ```yaml @@ -440,8 +515,10 @@ Accept wildcard characters: False ``` ### -ValidityPeriod -Specifies the validity period of the certification authority (CA) certificate in hours, days, weeks, months or years. -If this is a subordinate CA, do not use this parameter, because the validity period is determined by the parent CA. + +Specifies the validity period of the certification authority (CA) certificate in hours, days, weeks, +months or years. If this is a subordinate CA, do not use this parameter, because the validity period +is determined by the parent CA. ```yaml Type: ValidityPeriod @@ -457,8 +534,9 @@ Accept wildcard characters: False ``` ### -ValidityPeriodUnits -Specifies the validity period of the CA certificate. -If this is a subordinate CA, do not specify this parameter because the validity period is determined by the parent CA. + +Specifies the validity period of the CA certificate. If this is a subordinate CA, do not specify +this parameter because the validity period is determined by the parent CA. ```yaml Type: Int32 @@ -473,8 +551,8 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml Type: SwitchParameter @@ -489,7 +567,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, `-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, `-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, +`-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, +`-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -512,9 +594,12 @@ This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVar ### Microsoft.CertificateServices.Deployment.Common.CA.CertificationAuthoritySetupResult ## NOTES -* Ensure you run Windows PowerShell as an administrator. You can use the *force* parameter to bypass the prompt for confirmation. -To see parameters, run the following command: `Install-AdcsCertificationAuthority -?` -If you have installation issues, try using the *verbose* parameter to get verbose output and review the information in the %windir%\cerocm.log file. + +- Ensure you run Windows PowerShell as an administrator. You can use the **force** parameter to + bypass the prompt for confirmation. To see parameters, run the following command: + `Install-AdcsCertificationAuthority -?` +- If you have installation issues, try using the **verbose** parameter to get verbose output and + review the information in the %windir%\cerocm.log file. ## RELATED LINKS From ebc982cd9061f89277e5bfa5c38edbb6fcc39972 Mon Sep 17 00:00:00 2001 From: Mike Soule Date: Fri, 28 Apr 2023 16:35:16 -0700 Subject: [PATCH 530/965] formatting #3386 --- .../adcsdeployment/ADCSDeployment.md | 21 ++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/docset/winserver2022-ps/adcsdeployment/ADCSDeployment.md b/docset/winserver2022-ps/adcsdeployment/ADCSDeployment.md index bed2db8405..adc52c534b 100644 --- a/docset/winserver2022-ps/adcsdeployment/ADCSDeployment.md +++ b/docset/winserver2022-ps/adcsdeployment/ADCSDeployment.md @@ -10,44 +10,59 @@ title: ADCSDeployment --- # ADCSDeployment Module + ## Description -This topic contains the brief descriptions of the Windows PowerShell® cmdlets that are for use in deploying Active Directory Certificate Services (AD CS). Each cmdlet in the table is linked to additional information about that cmdlet. + +This topic contains the brief descriptions of the Windows PowerShell® cmdlets that are for use in +deploying Active Directory Certificate Services (AD CS). Each cmdlet in the table is linked to +additional information about that cmdlet. ## ADCSDeployment Cmdlets + ### [Install-AdcsCertificationAuthority](./Install-AdcsCertificationAuthority.md) + Performs installation and configuration of the AD CS Certification Authority role service. ### [Install-AdcsEnrollmentPolicyWebService](./Install-AdcsEnrollmentPolicyWebService.md) + Performs the configuration of Certificate Enrollment Policy Web service. ### [Install-AdcsEnrollmentWebService](./Install-AdcsEnrollmentWebService.md) + Performs the initial configuration of the Certificate Enrollment Web service. ### [Install-AdcsNetworkDeviceEnrollmentService](./Install-AdcsNetworkDeviceEnrollmentService.md) + Installs the NDES role service. ### [Install-AdcsOnlineResponder](./Install-AdcsOnlineResponder.md) + Installs the Online Responder service. ### [Install-AdcsWebEnrollment](./Install-AdcsWebEnrollment.md) + Installs the Certification Authority Web Enrollment. ### [Uninstall-AdcsCertificationAuthority](./Uninstall-AdcsCertificationAuthority.md) + Uninstalls the CA role service and removes the configuration information. ### [Uninstall-AdcsEnrollmentPolicyWebService](./Uninstall-AdcsEnrollmentPolicyWebService.md) + Uninstalls the Certificate Enrollment Policy Web service. ### [Uninstall-AdcsEnrollmentWebService](./Uninstall-AdcsEnrollmentWebService.md) + Uninstalls the Certificate Enrollment Web service or individual instances of it. ### [Uninstall-AdcsNetworkDeviceEnrollmentService](./Uninstall-AdcsNetworkDeviceEnrollmentService.md) + Uninstalls the NDES role service. ### [Uninstall-AdcsOnlineResponder](./Uninstall-AdcsOnlineResponder.md) + Uninstalls the Online Responder service. ### [Uninstall-AdcsWebEnrollment](./Uninstall-AdcsWebEnrollment.md) -Uninstalls the CA Web Enrollment role service. - +Uninstalls the CA Web Enrollment role service. From 563c76c91561625eee8f94350c33d2cf8c8e58b2 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Sat, 29 Apr 2023 15:48:40 -0400 Subject: [PATCH 531/965] Fixing cmdlet reference style --- .../winserver2022-ps/addsdeployment/Install-ADDSDomain.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md index bc9667fd64..8a10d3d524 100644 --- a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md +++ b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md @@ -69,7 +69,7 @@ the installation of the domain in Active Directory. Specifies the user name and password that corresponds to the account to be used for running operations to prepare Active Directory prior to the installation of this domain. Use the -**Get-Credential** cmdlet to prompt the user to supply a password. +`Get-Credential` cmdlet to prompt the user to supply a password. ```yaml Type: System.Management.Automation.PSCredential @@ -136,7 +136,7 @@ Accept wildcard characters: False ### -Credential Specifies the user name and password that corresponds to the account used to install the domain -controller. Use the **Get-Credential** cmdlet to prompt the user to supply a password. +controller. Use the `Get-Credential` cmdlet to prompt the user to supply a password. ```yaml Type: System.Management.Automation.PSCredential @@ -453,7 +453,7 @@ This is the preferred usage when running the cmdlet interactively. If there are specified with the cmdlet, you are prompted to enter a masked password for this parameter but no confirmation of the password entered is made. This is not recommended as it could allow a mistyped password to be configured. Another available advanced option is to use the -**ConvertTo-SecureString** cmdlet and specify the password string inline as unmasked console input, +`ConvertTo-SecureString` cmdlet and specify the password string inline as unmasked console input, which is also not a recommended security best practice in production deployments. ```yaml From f67495bec1aaec94ab301eccdb523b74003be27e Mon Sep 17 00:00:00 2001 From: Vanda Paladino Date: Sat, 29 Apr 2023 17:10:06 -0400 Subject: [PATCH 532/965] Corrections to Enable-ServerManagerStandardUserRemoting.md Get-WindowsFeature.md Install-WindowsFeature.md ServerManager.md Uninstall-WindowsFeature.md Disable-ServerManagerStandardUserRemoting.md --- ...sable-ServerManagerStandardUserRemoting.md | 7 +- ...nable-ServerManagerStandardUserRemoting.md | 77 +++++-- .../ServerManager/Get-WindowsFeature.md | 90 +++++--- .../ServerManager/Install-WindowsFeature.md | 198 +++++++++++------- .../ServerManager/ServerManager.md | 25 ++- .../ServerManager/Uninstall-WindowsFeature.md | 124 +++++++---- 6 files changed, 345 insertions(+), 176 deletions(-) diff --git a/docset/winserver2022-ps/ServerManager/Disable-ServerManagerStandardUserRemoting.md b/docset/winserver2022-ps/ServerManager/Disable-ServerManagerStandardUserRemoting.md index df94e867b7..6e0dda0aa1 100644 --- a/docset/winserver2022-ps/ServerManager/Disable-ServerManagerStandardUserRemoting.md +++ b/docset/winserver2022-ps/ServerManager/Disable-ServerManagerStandardUserRemoting.md @@ -50,7 +50,7 @@ Disable-ServerManagerStandardUserRemoting -User JennyL In this example, the administrator disables access to event, performance counter, service status, and role and feature inventory data for a server that is being managed by using either a -local or remote Server Manager console, and for which there is a standard user named JennyL. +local or remote Server Manager console, and for which there is a standard user named `JennyL`. ### Example 2 @@ -146,7 +146,10 @@ Accept wildcard characters: False ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/docset/winserver2022-ps/ServerManager/Enable-ServerManagerStandardUserRemoting.md b/docset/winserver2022-ps/ServerManager/Enable-ServerManagerStandardUserRemoting.md index 7b39cba245..a4d66d22e3 100644 --- a/docset/winserver2022-ps/ServerManager/Enable-ServerManagerStandardUserRemoting.md +++ b/docset/winserver2022-ps/ServerManager/Enable-ServerManagerStandardUserRemoting.md @@ -11,7 +11,10 @@ title: Enable-ServerManagerStandardUserRemoting # Enable-ServerManagerStandardUserRemoting ## SYNOPSIS -Provides one or more standard, non-Administrator users access to event, service, performance counter, and role and feature inventory data for a server that you are managing by using Server Manager. + +Provides one or more standard, non-Administrator users access to event, service, performance +counter, and role and feature inventory data for a server that you are managing by using Server +Manager. ## SYNTAX @@ -20,48 +23,69 @@ Enable-ServerManagerStandardUserRemoting [-User] [-Force] [-WhatIf] [ ``` ## DESCRIPTION -Provides one or more standard, non-Administrator users access to event, service, performance counter, and role and feature inventory data for a server that you are managing, either locally or remotely, by using Server Manager. -The cmdlet must be run locally on the server that you are managing by using Server Manager. -The cmdlet works by performing the following actions: -- Adds access rights for specified standard users to the root\cimv2 namespace on the local server (for access to role and feature inventory information). +Provides one or more standard, non-Administrator users access to event, service, performance +counter, and role and feature inventory data for a server that you are managing, either locally or +remotely, by using Server Manager. The cmdlet must be run locally on the server that you are +managing by using Server Manager. The cmdlet works by performing the following actions: + +- Adds access rights for specified standard users to the root\cimv2 namespace on the local server + (for access to role and feature inventory information). -- Adds specified standard users to required user groups (Remote Management Users, Event Log Readers, and Performance Log Readers) that allow remote access to event and performance counter logs on the managed server. +- Adds specified standard users to required user groups (Remote Management Users, Event Log Readers, + and Performance Log Readers) that allow remote access to event and performance counter logs on the + managed server. -- Changes access rights in the Service Control Manager to allow specified standard users remote access to the status of services on the managed server. +- Changes access rights in the Service Control Manager to allow specified standard users remote + access to the status of services on the managed server. -This cmdlet does not provide standard users access to bpa (BPA) results, or allow standard users to run BPA scans. -Aside from the preceding list of changes, this cmdlet provides no additional access that a standard user does not already have, by default, on managed servers. +This cmdlet does not provide standard users access to bpa (BPA) results, or allow standard users to +run BPA scans. Aside from the preceding list of changes, this cmdlet provides no additional access +that a standard user does not already have, by default, on managed servers. -Running this cmdlet has security implications for your network environment because it grants specified non-Administrator users access rights to information that, by default, is restricted to members of the Administrators group on the local computer. -The cmdlet provides access to other WMI providers in the root\cimv2 namespace, but only those providers that can be used by standard users. -We recommend that you run this cmdlet only when you must add a specific standard user to the users who require access to remote server data by using Server Manager. -Additionally, you should promptly run `Disable-ServerManagerStandardUserRemoting` to deny this access to users as soon as they no longer require it. +Running this cmdlet has security implications for your network environment because it grants +specified non-Administrator users access rights to information that, by default, is restricted to +members of the Administrators group on the local computer. The cmdlet provides access to other WMI +providers in the root\cimv2 namespace, but only those providers that can be used by standard users. +We recommend that you run this cmdlet only when you must add a specific standard user to the users +who require access to remote server data by using Server Manager. Additionally, you should promptly +run `Disable-ServerManagerStandardUserRemoting` to deny this access to users as soon as they no +longer require it. ## EXAMPLES ### Example 1 + ```powershell Enable-ServerManagerStandardUserRemoting -User JennyL ``` -In the following example, the administrator gives a standard user named JennyL access to event, performance counter, service status, and role and feature inventory data on a server that is being managed, either locally or remotely, by using Server Manager. +In this example, the administrator gives a standard user named `JennyL` access to event, performance +counter, service status, and role and feature inventory data on a server that is being managed, +either locally or remotely, by using Server Manager. ### Example 2 + ```powershell Enable-ServerManagerStandardUserRemoting -User JennyL -WhatIf ``` -In the following example, the administrator views the outcome of running a command to give a standard user named JennyL access to event, performance counter, service status, and role and feature inventory data on a server that is being managed, either locally or remotely, by using Server Manager. -The `WhatIf` parameter is added, meaning that the command actions are not carried out. +In the following example, the administrator views the outcome of running a command to give a +standard user named JennyL access to event, performance counter, service status, and role and +feature inventory data on a server that is being managed, either locally or remotely, by using +Server Manager. The `WhatIf` parameter is added, meaning that the command actions are not carried +out. ### Example 3 + ```powershell Enable-ServerManagerStandardUserRemoting -User JennyL -Confirm ``` -In the following example, the administrator gives a standard user named JennyL access to event, performance counter, service status, and role and feature inventory data on a server that is being managed, either locally or remotely, by using Server Manager. -The `Confirm` parameter is added, meaning that the command prompts for confirmation before performing the action. +In the following example, the administrator gives a standard user named `JennyL` access to event, +performance counter, service status, and role and feature inventory data on a server that is being +managed, either locally or remotely, by using Server Manager. The `Confirm` parameter is added, +meaning that the command prompts for confirmation before performing the action. ## PARAMETERS @@ -82,7 +106,10 @@ Accept wildcard characters: False ``` ### -User -Specifies the user account name of a standard user who runs Server Manager, and requires access to event, performance counter, service, and role and feature inventory data for remote servers that are managed by using the local Server Manager console. + +Specifies the user account name of a standard user who runs Server Manager, and requires access to +event, performance counter, service, and role and feature inventory data for remote servers that are +managed by using the local Server Manager console. ```yaml Type: String[] @@ -97,6 +124,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -111,7 +139,8 @@ Accept pipeline input: False Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. + +Shows what would happen if the cmdlet were run. The cmdlet is not run. ```yaml @@ -127,11 +156,16 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### None + ## OUTPUTS ### System.Object @@ -147,4 +181,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Uninstall-WindowsFeature](./Uninstall-WindowsFeature.md) [Disable-ServerManagerStandardUserRemoting](./Disable-ServerManagerStandardUserRemoting.md) - diff --git a/docset/winserver2022-ps/ServerManager/Get-WindowsFeature.md b/docset/winserver2022-ps/ServerManager/Get-WindowsFeature.md index 2cde727771..c1cbcb28ba 100644 --- a/docset/winserver2022-ps/ServerManager/Get-WindowsFeature.md +++ b/docset/winserver2022-ps/ServerManager/Get-WindowsFeature.md @@ -11,7 +11,9 @@ title: Get-WindowsFeature # Get-WindowsFeature ## SYNOPSIS -Gets information about Windows Server roles, role services, and features that are available for installation and installed on a specified server. + +Gets information about Windows Server roles, role services, and features that are available for +installation and installed on a specified server. ## SYNTAX @@ -21,57 +23,73 @@ Get-WindowsFeature [[-Name] ] [-Vhd ] [-ComputerName ] ``` ## DESCRIPTION -The `Get-WindowsFeature` cmdlet gets information about features that are both available for installation and already installed on a computer that is running Windows Server or an offline virtual hard disk (VHD) that is running Windows Server. + +The `Get-WindowsFeature` cmdlet gets information about features that are both available for +installation and already installed on a computer that is running Windows Server, or an offline +virtual hard disk (VHD) that is running Windows Server. ## EXAMPLES ### Example 1 + ```powershell Get-WindowsFeature -ComputerName Server1 -Credential contoso.com\user1 ``` -This example gets a list of features that is available and installed on the target computer named Server1. -The credentials for user user1 in the Contoso.com domain, a user who has Administrator rights on Server1, are provided. +This example gets a list of features that are available and installed on the target computer named `Server1`. +The credentials for user `user1` in the Contoso.com domain, a user who has Administrator rights on `Server1`, are provided. ### Example 2 + ```powershell Get-WindowsFeature -Vhd D:\ps-test\vhd1.vhd ``` -This example returns a list of features that is available and installed on the specified offline VHD located at D:\ps-test\vhd1.vhd. +This example returns a list of features that are available and installed on the specified offline +VHD located at `D:\ps-test\vhd1.vhd`. ### Example 3 + ```powershell Get-WindowsFeature -Name AD*, Web* ``` -This example returns a list of available and installed features that have a command ID starting with AD or Web. +This example returns a list of available and installed features that have a command ID starting with +`AD` or `Web`. ### Example 4 + ```powershell Get-WindowsFeature -ComputerName Server01 | Where Installed ``` -This example returns a list of features installed on a specified server, Server01. +This example returns a list of features installed on a specified server, `Server01`. ### Example 5 + ```powershell Get-WindowsFeature -ComputerName Server01 | Where InstallState -Eq Removed ``` -This example returns a list of features on a specified server, Server01, that have installation files removed from the local side-by-side store, and require an external file source for installation. +This example returns a list of features on a specified server, `Server01`, that have installation +files removed from the local side-by-side store and require an external file source for +installation. ## PARAMETERS ### -ComputerName -Gets the list of available features from the specified remote computer that is running Windows Server. -The parameter accepts only one computer name. -If this parameter is not added, or no computer name is specified, the default target is the local computer. -Valid values for the parameter include a NetBIOS name, an IP address, or a fully qualified domain name of a remote computer. -To use a remote computer's IP address as the value of this parameter, your command must include the `Credential` parameter. -The computer must either be configured for HTTPS transport, or the IP address of the remote computer must be included in the WinRM TrustedHosts list on the local computer. -For information about adding a computer name to the WinRM TrustedHosts list, see "How to Add a Computer to the Trusted Host List" in [about_Remote_Troubleshooting](https://go.microsoft.com/fwlink/p/?LinkID=135188). +Gets the list of available features from the specified remote computer that is running Windows +Server. The parameter accepts only one computer name. If this parameter is not added, or no computer +name is specified, the default target is the local computer. Valid values for the parameter include +a NetBIOS name, an IP address, or a fully qualified domain name of a remote computer. + +To use a remote computer's IP address as the value of this parameter, your command must include the +**Credential** parameter. The computer must either be configured for HTTPS transport, or the IP +address of the remote computer must be included in the WinRM TrustedHosts list on the local +computer. For information about adding a computer name to the WinRM TrustedHosts list, see "How to +Add a Computer to the Trusted Host List" in +[about_Remote_Troubleshooting](https://go.microsoft.com/fwlink/p/?LinkID=135188). ```yaml Type: String @@ -86,10 +104,10 @@ Accept wildcard characters: False ``` ### -Credential -Specifies a user account that has access rights to perform this action. -If the parameter is not added, or no value is specified, the default value of this parameter is the current user. -Enter a user name in one of the following formats. -Quotation marks are optional. + +Specifies a user account that has access rights to perform this action. If the parameter is not +added, or no value is specified, the default value of this parameter is the current user. Enter a +user name in one of the following formats. Quotation marks are optional. -- "UserName" -- "Domain\User" @@ -111,6 +129,7 @@ Accept wildcard characters: False ``` ### -LogPath + Specifies a name and path to a log file. Add this parameter if the results of this cmdlet must be stored in a log. @@ -127,6 +146,7 @@ Accept wildcard characters: False ``` ### -Name + Specifies the command IDs of roles, role services, or features about which to return information. ```yaml @@ -142,19 +162,22 @@ Accept wildcard characters: False ``` ### -Vhd -Specifies the path to an offline VHD. -The path can either point to a VHD file, or to a location on which the VHD is already mounted by using Deployment Image Servicing and Management (DISM) tools. -The VHD can be on a local disk on the target computer, or on a network shared folder. -If the VHD is in a network shared folder, then the value of this parameter is a UNC path to the VHD. -In this case, the computer account of the computer that you are using to mount the VHD must have read and write permissions (Read/Write permissions in the File Sharing dialog box, or Full Control on the Security tab of the folder Properties dialog box) on the shared folder, or the VHD will not be accessible. -Local loopback UNC paths are not supported. -Use either of the following formats for the computer account: DOMAIN\SERVERNAME$ or SERVERNAME$. +Specifies the path to an offline VHD. The path can either point to a VHD file, or to a location on +which the VHD is already mounted by using Deployment Image Servicing and Management (DISM) tools. -Add the `ComputerName` parameter to specify the target computer you want to use to mount the VHD. -If the `ComputerName` parameter is not specified, then the local computer is used. -The computer that you are using to mount the VHD must be running Windows Server. -Any local path, such as D:\myFolder, that is specified by using this parameter is always relative to the target computer. +The VHD can be on a local disk on the target computer or on a network shared folder. If the VHD is +in a network shared folder, then the value of this parameter is a UNC path to the VHD. In this case, +the computer account of the computer that you are using to mount the VHD must have read and write +permissions (Read/Write permissions in the File Sharing dialog box or Full Control on the Security +tab of the folder Properties dialog box) on the shared folder or the VHD will not be accessible. +Local loopback UNC paths are not supported. Use either of the following formats for the computer +account: DOMAIN\SERVERNAME$ or SERVERNAME$. + +Add the **ComputerName** parameter to specify the target computer you want to use to mount the VHD. +If the **ComputerName** parameter is not specified, then the local computer is used. The computer +that you are using to mount the VHD must be running Windows Server. Any local path, such as +`D:\myFolder`, that is specified by using this parameter is always relative to the target computer. ```yaml Type: String @@ -169,7 +192,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -190,4 +217,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Enable-ServerManagerStandardUserRemoting](./Enable-ServerManagerStandardUserRemoting.md) [Disable-ServerManagerStandardUserRemoting](./Disable-ServerManagerStandardUserRemoting.md) - diff --git a/docset/winserver2022-ps/ServerManager/Install-WindowsFeature.md b/docset/winserver2022-ps/ServerManager/Install-WindowsFeature.md index 261f9bffb8..68a5e2a1a5 100644 --- a/docset/winserver2022-ps/ServerManager/Install-WindowsFeature.md +++ b/docset/winserver2022-ps/ServerManager/Install-WindowsFeature.md @@ -11,11 +11,14 @@ title: Install-WindowsFeature # Install-WindowsFeature ## SYNOPSIS -Installs one or more roles, role services, or features on either the local or a specified remote server that is running Windows Server. + +Installs one or more roles, role services, or features on either the local or a specified remote +server that is running Windows Server. ## SYNTAX ### ComponentNamesAndRunningComputer (Default) + ``` Install-WindowsFeature [-Name] [-Restart] [-IncludeAllSubFeature] [-IncludeManagementTools] [-Source ] [-ComputerName ] [-Credential ] [-LogPath ] [-WhatIf] @@ -23,6 +26,7 @@ Install-WindowsFeature [-Name] [-Restart] [-IncludeAllSubFeature] [- ``` ### ComponentNamesAndVhdPath + ``` Install-WindowsFeature [-Name] -Vhd [-IncludeAllSubFeature] [-IncludeManagementTools] [-Source ] [-ComputerName ] [-Credential ] [-LogPath ] [-WhatIf] @@ -30,6 +34,7 @@ Install-WindowsFeature [-Name] -Vhd [-IncludeAllSubFeature] ``` ### ConfigurationFile + ``` Install-WindowsFeature -ConfigurationFilePath [-Vhd ] [-Restart] [-Source ] [-ComputerName ] [-Credential ] [-LogPath ] [-WhatIf] [-Confirm] @@ -37,76 +42,101 @@ Install-WindowsFeature -ConfigurationFilePath [-Vhd ] [-Restart ``` ## DESCRIPTION -The `Install-WindowsFeature` cmdlet installs the specified features on a computer that is running Windows Server, or on an offline virtual hard disk (VHD) on which Windows Server is installed. -This cmdlet works similarly to the installation of roles and features in Server Manager, with an important exception: the cmdlet does not install management tools for the features by default. -To install management tools such as snap-ins on a target server, you must add the `IncludeManagementTools` parameter to your command. -This cmdlet requires elevation; you must be running a Windows PowerShell session as an administrator to use this cmdlet. +The `Install-WindowsFeature` cmdlet installs the specified features on a computer that is running +Windows Server, or on an offline virtual hard disk (VHD) on which Windows Server is installed. This +cmdlet works similarly to the installation of roles and features in Server Manager, with an +important exception: the cmdlet does not install management tools for the features by default. To +install management tools such as snap-ins on a target server, you must add the +`IncludeManagementTools` parameter to your command. + +This cmdlet requires elevation; you must be running a Windows PowerShell session as an administrator +to use this cmdlet. ## EXAMPLES ### Example 1 + ```powershell Install-WindowsFeature -Name Web-Server -IncludeAllSubFeature -ComputerName Server1 -WhatIf ``` -This example shows what is installed with Web Server (IIS), including all role services, on a computer named Server1. -By adding the `WhatIf` parameter, you can view the results of the installation command without running it. +This example shows what is installed with Web Server (IIS), including all role services, on a +computer named `Server1`. By adding the **WhatIf** parameter, you can view the results of the +installation command without running it. ### Example 2 + ```powershell Install-WindowsFeature -Name Web-Server -IncludeAllSubFeature -IncludeManagementTools -ComputerName Server1 -Credential contoso.com\johnj99 ``` -This example installs Web Server (IIS), including all role services and applicable management tools, on a computer named Server1, by using the credentials of a user account named contoso.com\johnj99. +This example installs Web Server (IIS), including all role services and applicable management tools, +on a computer named `Server1`, by using the credentials of a user account named `contoso.com\johnj99`. ### Example 3 + ```powershell Install-WindowsFeature -ConfigurationFilePath d:\ConfigurationFiles\ADCSConfigFile.xml ``` -This example installs all roles, role services and features that are specified in a configuration file named ADCSConfigFile.xml. -The configuration file was created by clicking Export configuration settings on the Confirm installation selections page of the Add Roles and Features Wizard in Server Manager. +This example installs all roles, role services and features that are specified in a configuration +file named `ADCSConfigFile.xml`. The configuration file was created by clicking Export configuration +settings on the Confirm installation selections page of the Add Roles and Features Wizard in Server +Manager. ### Example 4 + ```powershell -PS> $servers = ('server1', 'server2') -PS> foreach ($server in $servers) {Install-WindowsFeature -ConfigurationFilePath D:\ConfigurationFiles\ADCSConfigFile.xml -ComputerName $server} +$servers = ('server1', 'server2') +foreach ($server in $servers) {Install-WindowsFeature -ConfigurationFilePath D:\ConfigurationFiles\ADCSConfigFile.xml -ComputerName $server} ``` -This example installs Active Directory Certificate Services (AD CS) as specified in a configuration file named ADCSConfigFile.xml. -AD CS is installed on a list of computers that is contained in the variable $servers. -The configuration file was created by clicking Export configuration settings on the Confirm installation selections page of the Add Roles and Feature Wizard in Server Manager. -On the first line, the value of the $servers variable is set; on the second line, the installation instructions in the ADCSConfigFile.xml configuration file are applied to each of the servers that has been named in $servers. +This example installs Active Directory Certificate Services (AD CS) as specified in a configuration +file named `ADCSConfigFile.xml`. AD CS is installed on a list of computers that is contained in the +variable `$servers`. The configuration file was created by clicking Export configuration settings on +the Confirm installation selections page of the Add Roles and Feature Wizard in Server Manager. On +the first line, the value of the `$servers` variable is set; on the second line, the installation +instructions in the ADCSConfigFile.xml configuration file are applied to each of the servers that +has been named in `$servers`. ### Example 5 + ```powershell Get-WindowsFeature -Name Web-* | Install-WindowsFeature ``` -This example retrieves a list of all Windows features beginning with the characters Web, and then pipes the resulting list to `Install-WindowsFeature`. -The result of this cmdlet is all features that start with Web are installed on the local computer. +This example retrieves a list of all Windows features beginning with the characters `Web`, and then +pipes the resulting list to `Install-WindowsFeature`. The result of this cmdlet is all features that +start with `Web` are installed on the local computer. ### Example 6 + ```powershell Install-WindowsFeature -Name Web-Server -Source \\server2\winsxs ``` -This example installs Web Server (IIS) on the local computer, specifying that the source of feature files for the installation is a folder, winsxs, on a computer named Server2. -The computer account of the local computer must have Read permissions on the specified share. +This example installs Web Server (IIS) on the local computer, specifying that the source of feature +files for the installation is a folder, `winsxs`, on a computer named `Server2`. The computer +account of the local computer must have Read permissions on the specified share. ## PARAMETERS ### -ComputerName -Installs one or more available features on a specified remote computer. -This parameter accepts only one computer name. -If this parameter is not added, or no computer name is specified, the default target is the local computer. -Valid values for the parameter include a NetBIOS name, an IP address, or a fully qualified domain name of a remote computer that is running Windows Server +Installs one or more available features on a specified remote computer. This parameter accepts only +one computer name. If this parameter is not added, or no computer name is specified, the default +target is the local computer. + +Valid values for the parameter include a NetBIOS name, an IP address, or a fully qualified domain +name of a remote computer that is running Windows Server -To use an IP address of a remote computer as the value of this parameter, your command must include the `Credential` parameter. -The computer must either be configured for HTTPS transport, or the IP address of the remote computer must be included in the WinRM TrustedHosts list on the local computer. -For information about adding a computer name to the WinRM TrustedHosts list, see "How to Add a Computer to the Trusted Host List" in [about_Remote_Troubleshooting](https://go.microsoft.com/fwlink/p/?LinkID=135188). +To use an IP address of a remote computer as the value of this parameter, your command must include +the **Credential** parameter. The computer must either be configured for HTTPS transport, or the IP +address of the remote computer must be included in the WinRM TrustedHosts list on the local +computer. For information about adding a computer name to the WinRM TrustedHosts list, see "How to +Add a Computer to the Trusted Host List" in +[about_Remote_Troubleshooting](https://go.microsoft.com/fwlink/p/?LinkID=135188). ```yaml Type: String @@ -121,9 +151,12 @@ Accept wildcard characters: False ``` ### -ConfigurationFilePath -Provides a single path to a configuration file which specifies roles and features to be installed, and any configuration parameters needed. -The path can be specified by using a local relative path (such as D:\myfolder) or by using built-in environment variables prefixed with the `$env` tag (such as $env:systemdrive\filename). -A configuration file can be generated by running the Add Roles and Feature Wizard in Server Manager. + +Provides a single path to a configuration file which specifies roles and features to be installed +and any configuration parameters needed. The path can be specified by using a local relative path +(such as `D:\myfolder`) or by using built-in environment variables prefixed with the `$env` tag (such +as `$env:systemdrive\filename`). A configuration file can be generated by running the Add Roles and +Feature Wizard in Server Manager. If this parameter is specified, then the Name parameter cannot be used. @@ -140,10 +173,10 @@ Accept wildcard characters: False ``` ### -Credential -Specifies a user account that has access rights to perform this action. -If the parameter is not added, or no value is specified, the default value of this parameter is the current user. -Enter a user name in one of the following formats. -Quotation marks are optional. + +Specifies a user account that has access rights to perform this action. If the parameter is not +added, or no value is specified, the default value of this parameter is the current user. Enter a +user name in one of the following formats. Quotation marks are optional. "UserName" @@ -151,7 +184,8 @@ Quotation marks are optional. "User@Domain.com" -A Credential object returned by the [Get-Credential](https://go.microsoft.com/fwlink/p/?LinkID=113311) cmdlet. +A Credential object returned by the +[Get-Credential](https://go.microsoft.com/fwlink/p/?LinkID=113311) cmdlet. If a user name is entered, then a prompt for a password is displayed. @@ -168,7 +202,9 @@ Accept wildcard characters: False ``` ### -IncludeAllSubFeature -Specifies that all subordinate role services, and all subfeatures of parent roles, role services, or features specified by the `Name` parameter should be installed. + +Specifies that all subordinate role services and all subfeatures of parent roles, role services, or +features specified by the **Name** parameter should be installed. ```yaml Type: SwitchParameter @@ -183,8 +219,9 @@ Accept wildcard characters: False ``` ### -IncludeManagementTools + Specifies that all applicable management tools of the roles, role services, or features specified by -the `Name` parameter should be installed. +the **Name** parameter should be installed. Note: Although management tools are installed by default when you are installing features by using the Add Roles and Feature Wizard, management tools are not installed by default when you install @@ -204,8 +241,9 @@ Accept wildcard characters: False ``` ### -LogPath -Specifies a name and path to a log file. -Add this parameter if the results of your command must be stored in a log. + +Specifies a name and path to a log file. Add this parameter if the results of your command must be +stored in a log. ```yaml Type: String @@ -220,9 +258,9 @@ Accept wildcard characters: False ``` ### -Name -Specifies a list of features to install. -This parameter does not support wildcard characters. -If this parameter is specified, then the **ConfigurationFilePath** parameter cannot be used. + +Specifies a list of features to install. This parameter does not support wildcard characters. If +this parameter is specified, then the **ConfigurationFilePath** parameter cannot be used. ```yaml Type: Feature[] @@ -237,8 +275,10 @@ Accept wildcard characters: False ``` ### -Restart -Specifies that the target computer is restarted automatically, if a restart is required by the installation process for the specified roles or features. -This parameter cannot be used with the `Vhd` parameter. + +Specifies that the target computer is restarted automatically if a restart is required by the +installation process for the specified roles or features. This parameter cannot be used with the +**Vhd** parameter. ```yaml Type: SwitchParameter @@ -253,25 +293,34 @@ Accept wildcard characters: False ``` ### -Source -Specifies the path to feature files, if the files are not available in the local feature store of the target computer or VHD. -Valid values for this parameter are either a network path or the path to a Windows image file (WIM). -If you are installing roles or features on an offline VHD, you must use a mounted WIM. -It is not necessary to mount the WIM file for installing on a running physical computer, because a WIM is mounted internally for deployments to a physical computer. -Specify the path by using a local relative path, or by using built-in environment variables that are prefixed with the `$env` tag as shown in the following examples. -If this parameter is used in combination with the -ComputerName parameter, the source path must be accessible by the target computer (e.g. local devices/drives/paths on the client system will cause the installation to fail). +Specifies the path to feature files if the files are not available in the local feature store of +the target computer or VHD. Valid values for this parameter are either a network path or the path to +a Windows image file (WIM). If you are installing roles or features on an offline VHD, you must use +a mounted WIM. It is not necessary to mount the WIM file for installing on a running physical +computer, because a WIM is mounted internally for deployments to a physical computer. Specify the +path by using a local relative path, or by using built-in environment variables that are prefixed +with the `$env` tag as shown in the following examples. + +If this parameter is used in combination with the **-ComputerName** parameter, the source path must +be accessible by the target computer (e.g. local devices/drives/paths on the client system will +cause the installation to fail). -The path specified in this parameter is only used if the command cannot find feature files in the local side-by-side store of the specified target computer or VHD. -The command searches for feature files in the following order: +The path specified in this parameter is only used if the command cannot find feature files in the +local side-by-side store of the specified target computer or VHD. The command searches for feature +files in the following order: 1) On the target computer or offline VHD. -2) Path specified as the value of this parameter. -If you add a UNC path, verify that the computer account of the target server has Read permissions on the share. -The computer account should be in one of the following formats: DOMAIN\SERVERNAME$ or SERVER$ +2) Path specified as the value of this parameter. If you add a UNC path, verify that the computer +account of the target server has Read permissions on the share. The computer account should be in +one of the following formats: DOMAIN\SERVERNAME$ or SERVER$ -3) Repository path specified by the Group Policy Object (GPO), Specify settings for optional component installation and component repair, located in Computer Configuration/Administrative Templates/System in Local Group Policy Editor. -This Group Policy setting controls the following Windows Registry setting: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\Servicing\LocalSourcePath. +3) Repository path specified by the Group Policy Object (GPO). Specify settings for optional +component installation and component repair located in Computer Configuration/Administrative +Templates/System in Local Group Policy Editor. This Group Policy setting controls the following +Windows Registry setting: +HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\Servicing\LocalSourcePath. 4) Windows Update. @@ -290,19 +339,22 @@ Accept wildcard characters: False ``` ### -Vhd -Specifies the path to an offline VHD. -The path can either point to a VHD file, or to a location on which the VHD is already mounted by using Deployment Image Servicing and Management (DISM) tools. -The VHD can be on a local disk on the target computer, or on a network shared folder. -If the VHD is in a network shared folder, then the value of this parameter is a UNC path to the VHD. -In this case, the computer account of the computer that you are using to mount the VHD must have read and write permissions (Read/Write permissions in the File Sharing dialog box, or Full Control on the Security tab of the folder Properties dialog box) on the shared folder, or the VHD will not be accessible. -Local loopback UNC paths are not supported. -Use either of the following formats for the computer account: DOMAIN\SERVERNAME$ or SERVERNAME$. +Specifies the path to an offline VHD. The path can either point to a VHD file or to a location on +which the VHD is already mounted by using Deployment Image Servicing and Management (DISM) tools. + +The VHD can be on a local disk on the target computer or on a network shared folder. If the VHD is +in a network shared folder, then the value of this parameter is a UNC path to the VHD. In this case, +the computer account of the computer that you are using to mount the VHD must have read and write +permissions (Read/Write permissions in the File Sharing dialog box or Full Control on the Security +tab of the folder Properties dialog box) on the shared folder or the VHD will not be accessible. +Local loopback UNC paths are not supported. Use either of the following formats for the computer +account: DOMAIN\SERVERNAME$ or SERVERNAME$. -Add the `ComputerName` parameter to specify the target computer you want to use to mount the VHD. -If the `ComputerName` parameter is not specified, then the local computer is used. -The computer that you are using to mount the VHD must be running Windows Server. -Any local path, such as D:\myFolder, that is specified by using this parameter is always relative to the target computer. +Add the **ComputerName** parameter to specify the target computer you want to use to mount the VHD. +If the **ComputerName** parameter is not specified, then the local computer is used. The computer that +you are using to mount the VHD must be running Windows Server. Any local path, such as `D:\myFolder`. +that is specified by using this parameter is always relative to the target computer. ```yaml Type: String @@ -329,6 +381,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -344,7 +397,8 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. + +Shows what would happen if the cmdlet were run. The cmdlet is not run. ```yaml @@ -360,7 +414,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/docset/winserver2022-ps/ServerManager/ServerManager.md b/docset/winserver2022-ps/ServerManager/ServerManager.md index 25a3063080..35c3b26067 100644 --- a/docset/winserver2022-ps/ServerManager/ServerManager.md +++ b/docset/winserver2022-ps/ServerManager/ServerManager.md @@ -12,21 +12,34 @@ title: ServerManager # ServerManager Module ## Description -This reference provides cmdlet descriptions and syntax for all Server Manager-specific cmdlets. It lists the cmdlets in alphabetical order based on the verb at the beginning of the cmdlet. + +This reference provides cmdlet descriptions and syntax for all Server Manager-specific cmdlets. It +lists the cmdlets in alphabetical order based on the verb at the beginning of the cmdlet. ## ServerManager Cmdlets + ### [Disable-ServerManagerStandardUserRemoting](./Disable-ServerManagerStandardUserRemoting.md) -Disables access for specified standard users to event, service, performance counter, and role and feature inventory data that is collected by Server Manager for a server. + +Disables access for specified standard users to event, service, performance counter, and role and +feature inventory data that is collected by Server Manager for a server. ### [Enable-ServerManagerStandardUserRemoting](./Enable-ServerManagerStandardUserRemoting.md) -Provides one or more standard, non-Administrator users access to event, service, performance counter, and role and feature inventory data for a server that you are managing by using Server Manager. + +Provides one or more standard, non-Administrator, users access to event, service, performance +counter, and role and feature inventory data for a server that you are managing by using Server +Manager. ### [Get-WindowsFeature](./Get-WindowsFeature.md) -Gets information about Windows Server roles, role services, and features that are available for installation and installed on a specified server. + +Gets information about Windows Server roles, role services, and features that are available for +installation and installed on a specified server. ### [Install-WindowsFeature](./Install-WindowsFeature.md) -Installs one or more roles, role services, or features on either the local or a specified remote server that is running Windows Server. + +Installs one or more roles, role services, or features on either the local or a specified remote +server that is running Windows Server. ### [Uninstall-WindowsFeature](./Uninstall-WindowsFeature.md) -Uninstalls specified Windows Server roles, role services, and features from a computer that is running Windows Server. +Uninstalls specified Windows Server roles, role services, and features from a computer that is +running Windows Server. diff --git a/docset/winserver2022-ps/ServerManager/Uninstall-WindowsFeature.md b/docset/winserver2022-ps/ServerManager/Uninstall-WindowsFeature.md index aea16d4696..945e109d70 100644 --- a/docset/winserver2022-ps/ServerManager/Uninstall-WindowsFeature.md +++ b/docset/winserver2022-ps/ServerManager/Uninstall-WindowsFeature.md @@ -11,12 +11,15 @@ title: Uninstall-WindowsFeature # Uninstall-WindowsFeature ## SYNOPSIS -Uninstalls specified Windows Server roles, role services, and features from a computer that is running Windows Server. -By adding the Remove parameter, also deletes feature files, or payload, from a computer. + +Uninstalls specified Windows Server roles, role services, and features from a computer that is +running Windows Server. By adding the Remove parameter, also deletes feature files or payload, from +a computer. ## SYNTAX ### RunningComputer (Default) + ``` Uninstall-WindowsFeature [-Name] [-Restart] [-IncludeManagementTools] [-Remove] [-ComputerName ] [-Credential ] [-LogPath ] [-WhatIf] [-Confirm] @@ -24,6 +27,7 @@ Uninstall-WindowsFeature [-Name] [-Restart] [-IncludeManagementTools ``` ### VhdPath + ``` Uninstall-WindowsFeature [-Name] [-Vhd ] [-IncludeManagementTools] [-Remove] [-ComputerName ] [-Credential ] [-LogPath ] [-WhatIf] [-Confirm] @@ -31,14 +35,21 @@ Uninstall-WindowsFeature [-Name] [-Vhd ] [-IncludeManagement ``` ## DESCRIPTION -The `Uninstall-WindowsFeature` cmdlet uninstalls and optionally removes specified roles, role services, and features from a computer that is running Windows Server, or from an offline virtual hard disk (VHD) on which Windows Server is installed. -This cmdlet works similarly to the uninstallation of roles and features in Server Manager, with an important exception: by default, management tools are not uninstalled when you run the `Uninstall-WindowsFeature` cmdlet; you must add the `IncludeManagementTools` parameter to uninstall associated management tools. -This cmdlet requires elevation; you must be running a Windows PowerShell session as an administrator to use this cmdlet. +The `Uninstall-WindowsFeature` cmdlet uninstalls and optionally removes specified roles, role +services, and features from a computer that is running Windows Server or from an offline virtual +hard disk (VHD) on which Windows Server is installed. This cmdlet works similarly to the +uninstallation of roles and features in Server Manager with an important exception: by default, +management tools are not uninstalled when you run the `Uninstall-WindowsFeature` cmdlet; you must +add the `IncludeManagementTools` parameter to uninstall associated management tools. + +This cmdlet requires elevation; you must be running a Windows PowerShell session as an administrator +to use this cmdlet. ## EXAMPLES ### Example 1 + ```powershell Get-WindowsFeature | Where-Object -FilterScript { $_.Installed -Eq $TRUE } | Uninstall-WindowsFeature ``` @@ -46,32 +57,40 @@ Get-WindowsFeature | Where-Object -FilterScript { $_.Installed -Eq $TRUE } | Uni This example uninstalls any roles or features that are currently installed on the target server. ### Example 2 + ```powershell Uninstall-WindowsFeature -Name Web-Server -ComputerName Server1 -Credential contoso\user1 ``` -This example removes Web Server (IIS) from Server1, including all role services. -The user account specified to perform the operation is contoso\user1. +This example removes Web Server (IIS) from `Server1`, including all role services. The user account +specified to perform the operation is `contoso\user1`. ### Example 3 + ``` Get-WindowsFeature | Where-Object -FilterScript { $_.Installed -Eq $FALSE } | Uninstall-WindowsFeature -Remove ``` -This example deletes the feature files for any roles or features that currently are not installed on the local server. +This example deletes the feature files for any roles or features that currently are not installed on +the local server. ## PARAMETERS ### -ComputerName + Uninstalls and optionally removes one or more roles or features from a specified remote computer. -This parameter accepts only one computer name. -If this parameter is not added, or no computer name is specified, the default target is the local computer. +This parameter accepts only one computer name. If this parameter is not added or no computer name +is specified, the default target is the local computer. -Valid values for the parameter include a NetBIOS name, an IP address, or a fully qualified domain name of a remote computer that is running Windows Server. +Valid values for the parameter include a NetBIOS name, an IP address, or a fully qualified domain +name of a remote computer that is running Windows Server. -To use an IP address of a remote computer as the value of this parameter, your command must include the `Credential` parameter. -The computer must either be configured for HTTPS transport, or the IP address of the remote computer must be included in the WinRM TrustedHosts list on the local computer. -For information about adding a computer name to the WinRM TrustedHosts list, see "How to Add a Computer to the Trusted Host List" in [about_Remote_Troubleshooting](https://go.microsoft.com/fwlink/p/?LinkID=135188). +To use an IP address of a remote computer as the value of this parameter, your command must include +the **Credential** parameter. The computer must either be configured for HTTPS transport or the IP +address of the remote computer must be included in the WinRM TrustedHosts list on the local +computer. For information about adding a computer name to the WinRM TrustedHosts list, see "How to +Add a Computer to the Trusted Host List" in +[about_Remote_Troubleshooting](https://go.microsoft.com/fwlink/p/?LinkID=135188). ```yaml Type: String @@ -86,10 +105,10 @@ Accept wildcard characters: False ``` ### -Credential -Specifies a user account that has access rights to perform this action. -If the parameter is not added, or no value is specified, the default value of this parameter is the current user. -Enter a user name in one of the following formats. -Quotation marks are optional. + +Specifies a user account that has access rights to perform this action. If the parameter is not +added or no value is specified, the default value of this parameter is the current user. Enter a +user name in one of the following formats. Quotation marks are optional. -- "UserName" -- "Domain\User" @@ -111,8 +130,11 @@ Accept wildcard characters: False ``` ### -IncludeManagementTools -Specifies the uninstallation of all applicable management tools along with the roles, role services, or features that are specified in the `Name` parameter. -Note that by default, management tools are not uninstalled when you run the `Uninstall-WindowsFeature` cmdlet; you must add this parameter to uninstall associated management tools. + +Specifies the uninstallation of all applicable management tools along with the roles, role services, +or features that are specified in the `Name` parameter. Note that by default, management tools are +not uninstalled when you run the `Uninstall-WindowsFeature` cmdlet; you must add this parameter to +uninstall associated management tools. ```yaml Type: SwitchParameter @@ -127,8 +149,9 @@ Accept wildcard characters: False ``` ### -LogPath -Specifies a name and path to a log file. -Add this parameter if the results of this cmdlet must be stored in a log. + +Specifies a name and path to a log file. Add this parameter if the results of this cmdlet must be +stored in a log. ```yaml Type: String @@ -143,8 +166,8 @@ Accept wildcard characters: False ``` ### -Name -Specifies a list of features to uninstall. -This parameter does not support wildcard characters. + +Specifies a list of features to uninstall. This parameter does not support wildcard characters. ```yaml Type: Feature[] @@ -159,11 +182,14 @@ Accept wildcard characters: False ``` ### -Remove -Deletes feature files for the specified features from the side-by-side store, located at %SystemDrive%:\Windows\WinSxS. -If the feature is not yet uninstalled, the command uninstalls the feature. -When you delete feature files, features that depend upon the files you remove are also deleted. -When you delete feature files for a subfeature, and no other subfeatures for the parent feature are installed, then files for the entire parent role or feature are deleted. +Deletes feature files for the specified features from the side-by-side store, located at +`%SystemDrive%:\Windows\WinSxS`. If the feature is not yet uninstalled, the command uninstalls the +feature. + +When you delete feature files, features that depend upon the files you remove are also deleted. When +you delete feature files for a subfeature, and no other subfeatures for the parent feature are +installed, then files for the entire parent role or feature are deleted. ```yaml Type: SwitchParameter @@ -178,8 +204,10 @@ Accept wildcard characters: False ``` ### -Restart -Specifies that the target computer is restarted automatically, if a restart is required by the uninstallation process for the specified roles or features. -This parameter cannot be used with the `Vhd` parameter. + +Specifies that the target computer is restarted automatically, if a restart is required by the +uninstallation process for the specified roles or features. This parameter cannot be used with the +**Vhd** parameter. ```yaml Type: SwitchParameter @@ -194,19 +222,22 @@ Accept wildcard characters: False ``` ### -Vhd -Specifies the path to an offline VHD. -The path can either point to a VHD file, or to a location on which the VHD is already mounted by using Deployment Image Servicing and Management (DISM) tools. -The VHD can be on a local disk on the target computer, or on a network shared folder. -If the VHD is in a network shared folder, then the value of this parameter is a UNC path to the VHD. -In this case, the computer account of the computer that you are using to mount the VHD must have read and write permissions (Read/Write permissions in the File Sharing dialog box, or Full Control on the Security tab of the folder Properties dialog box) on the shared folder, or the VHD will not be accessible. -Local loopback UNC paths are not supported. -Use either of the following formats for the computer account: DOMAIN\SERVERNAME$ or SERVERNAME$. +Specifies the path to an offline VHD. The path can either point to a VHD file or to a location on +which the VHD is already mounted by using Deployment Image Servicing and Management (DISM) tools. + +The VHD can be on a local disk on the target computer or on a network shared folder. If the VHD is +in a network shared folder, then the value of this parameter is a UNC path to the VHD. In this case, +the computer account of the computer that you are using to mount the VHD must have read and write +permissions (Read/Write permissions in the File Sharing dialog box or Full Control on the Security +tab of the folder Properties dialog box) on the shared folder or the VHD will not be accessible. +Local loopback UNC paths are not supported. Use either of the following formats for the computer +account: DOMAIN\SERVERNAME$ or SERVERNAME$. -Add the `ComputerName` parameter to specify the target computer you want to use to mount the VHD. -If the `ComputerName` parameter is not specified, then the local computer is used. -The computer that you are using to mount the VHD must be running Windows Server. -Any local path, such as D:\myFolder, that is specified by using this parameter is always relative to the target computer. +Add the **ComputerName** parameter to specify the target computer you want to use to mount the VHD. +If the **ComputerName** parameter is not specified, then the local computer is used. The computer +that you are using to mount the VHD must be running Windows Server. Any local path, such as +`D:\myFolder`, that is specified by using this parameter is always relative to the target computer. ```yaml Type: String @@ -221,6 +252,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -236,7 +268,8 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. + +Shows what would happen if the cmdlet were run. The cmdlet is not run. ```yaml @@ -252,7 +285,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -273,4 +310,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Enable-ServerManagerStandardUserRemoting](./Enable-ServerManagerStandardUserRemoting.md) [Disable-ServerManagerStandardUserRemoting](./Disable-ServerManagerStandardUserRemoting.md) - From 672034158f9ca9522f0e4629140674a28d9fa7cb Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Sat, 29 Apr 2023 17:41:03 -0400 Subject: [PATCH 533/965] Spelling dictionary addition --- .vscode/cspell/winmodules/dictionaries/winps.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/.vscode/cspell/winmodules/dictionaries/winps.txt b/.vscode/cspell/winmodules/dictionaries/winps.txt index 24bfe10a49..d664bd7483 100644 --- a/.vscode/cspell/winmodules/dictionaries/winps.txt +++ b/.vscode/cspell/winmodules/dictionaries/winps.txt @@ -1,2 +1,3 @@ ADCS NTDS +RODC From 84282be48cc14010233598e73ab635e055d4a857 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Sat, 29 Apr 2023 17:42:04 -0400 Subject: [PATCH 534/965] Style guideline fixes --- .../addsdeployment/ADDSDeployment.md | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/ADDSDeployment.md b/docset/winserver2022-ps/addsdeployment/ADDSDeployment.md index e24a63062e..188d313afc 100644 --- a/docset/winserver2022-ps/addsdeployment/ADDSDeployment.md +++ b/docset/winserver2022-ps/addsdeployment/ADDSDeployment.md @@ -10,38 +10,49 @@ title: ADDSDeployment --- # ADDSDeployment Module + ## Description + The following contains the names and a brief description of each ADDSDeployment cmdlet. ## ADDSDeployment Cmdlets + ### [Add-ADDSReadOnlyDomainControllerAccount](./Add-ADDSReadOnlyDomainControllerAccount.md) + Creates a RODC account that can be used to install an RODC in Active Directory. ### [Install-ADDSDomain](./Install-ADDSDomain.md) + Installs an Active Directory domain configuration. ### [Install-ADDSDomainController](./Install-ADDSDomainController.md) + Installs a domain controller in Active Directory. ### [Install-ADDSForest](./Install-ADDSForest.md) + Installs an Active Directory forest configuration. ### [Test-ADDSDomainControllerInstallation](./Test-ADDSDomainControllerInstallation.md) + Runs the prerequisites (only) for installing a domain controller in Active Directory. ### [Test-ADDSDomainControllerUninstallation](./Test-ADDSDomainControllerUninstallation.md) + Runs the prerequisites for uninstalling a domain controller in Active Directory. ### [Test-ADDSDomainInstallation](./Test-ADDSDomainInstallation.md) + Runs the prerequisites for installing a new Active Directory domain configuration. ### [Test-ADDSForestInstallation](./Test-ADDSForestInstallation.md) + Runs the prerequisites for installing a new forest in Active Directory. ### [Test-ADDSReadOnlyDomainControllerAccountCreation](./Test-ADDSReadOnlyDomainControllerAccountCreation.md) + Runs the prerequisites for adding a RODC account. ### [Uninstall-ADDSDomainController](./Uninstall-ADDSDomainController.md) -Uninstalls a domain controller in Active Directory. - +Uninstalls a domain controller in Active Directory. From 80b070d2aa4d77f36e2a6d2edc3176d8ac70500c Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Sun, 30 Apr 2023 20:59:02 -0400 Subject: [PATCH 535/965] Fix formatting for New-SelfSignedCertificate. --- .../pki/New-SelfSignedCertificate.md | 761 +++++++++++------- 1 file changed, 465 insertions(+), 296 deletions(-) diff --git a/docset/winserver2022-ps/pki/New-SelfSignedCertificate.md b/docset/winserver2022-ps/pki/New-SelfSignedCertificate.md index 701e9f0668..d5f3cc4a7f 100644 --- a/docset/winserver2022-ps/pki/New-SelfSignedCertificate.md +++ b/docset/winserver2022-ps/pki/New-SelfSignedCertificate.md @@ -11,6 +11,7 @@ title: New-SelfSignedCertificate # New-SelfSignedCertificate ## SYNOPSIS + Creates a new self-signed certificate for testing purposes. ## SYNTAX @@ -18,132 +19,229 @@ Creates a new self-signed certificate for testing purposes. ``` New-SelfSignedCertificate [-SecurityDescriptor ] [-TextExtension ] [-Extension ] [-HardwareKeyUsage ] - [-KeyUsageProperty ] [-KeyUsage ] [-KeyProtection ] - [-KeyExportPolicy ] [-KeyLength ] [-KeyAlgorithm ] [-SmimeCapabilities] - [-ExistingKey] [-KeyLocation ] [-SignerReader ] [-Reader ] [-SignerPin ] - [-Pin ] [-KeyDescription ] [-KeyFriendlyName ] [-Container ] - [-Provider ] [-CurveExport ] [-KeySpec ] [-Type ] - [-FriendlyName ] [-NotAfter ] [-NotBefore ] [-SerialNumber ] - [-Subject ] [-DnsName ] [-SuppressOid ] [-HashAlgorithm ] - [-AlternateSignatureAlgorithm] [-TestRoot] [-Signer ] [-CloneCert ] + [-KeyUsageProperty ] [-KeyUsage ] + [-KeyProtection ] [-KeyExportPolicy ] + [-KeyLength ] [-KeyAlgorithm ] [-SmimeCapabilities] [-ExistingKey] + [-KeyLocation ] [-SignerReader ] [-Reader ] + [-SignerPin ] [-Pin ] [-KeyDescription ] + [-KeyFriendlyName ] [-Container ] [-Provider ] + [-CurveExport ] [-KeySpec ] [-Type ] + [-FriendlyName ] [-NotAfter ] [-NotBefore ] + [-SerialNumber ] [-Subject ] [-DnsName ] + [-SuppressOid ] [-HashAlgorithm ] [-AlternateSignatureAlgorithm] + [-TestRoot] [-Signer ] [-CloneCert ] [-CertStoreLocation ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **New-SelfSignedCertificate** cmdlet creates a self-signed certificate for testing purposes. -Using the **CloneCert** parameter, a test certificate can be created based on an existing certificate with all settings copied from the original certificate except for the public key. -The cmdlet creates a new key of the same algorithm and length. -Delegation may be required when using this cmdlet with Windows PowerShell remoting and changing user configuration. +The `New-SelfSignedCertificate` cmdlet creates a self-signed certificate for testing purposes. Using +the **CloneCert** parameter, a test certificate can be created based on an existing certificate with +all settings copied from the original certificate except for the public key. The cmdlet creates a +new key of the same algorithm and length. + +Delegation may be required when using this cmdlet with Windows PowerShell remoting and changing user +configuration. ## EXAMPLES ### EXAMPLE 1 -``` -PS C:\> New-SelfSignedCertificate -DnsName "www.fabrikam.com", "www.contoso.com" -CertStoreLocation "cert:\LocalMachine\My" + +```powershell +$params = @{ + DnsName = 'www.fabrikam.com', 'www.contoso.com' + CertStoreLocation = 'Cert:\LocalMachine\My' +} +New-SelfSignedCertificate @params ``` -This example creates a self-signed SSL server certificate in the computer MY store with the subject alternative name set to www.fabrikam.com, www.contoso.com and Subject and Issuer name set to www.fabrikam.com. +This example creates a self-signed SSL server certificate in the computer MY store with the subject +alternative names `www.fabrikam.com` and `www.contoso.com` and the Subject and Issuer name set to +`www.fabrikam.com`. ### EXAMPLE 2 -``` -PS C:\> Set-Location -Path "cert:\LocalMachine\My" + +```powershell +Set-Location -Path 'Cert:\LocalMachine\My' PS Cert:\LocalMachine\My> $OldCert = (Get-ChildItem -Path E42DBC3B3F2771990A9B3E35D0C3C422779DACD7) PS Cert:\LocalMachine\My> New-SelfSignedCertificate -CloneCert $OldCert ``` -This example creates a copy of the certificate specified by the **CloneCert** parameter and puts it in the computer MY store. +This example creates a copy of the certificate specified by the **CloneCert** parameter and puts it +in the computer MY store. ### EXAMPLE 3 -``` -PS C:\>New-SelfSignedCertificate -Type Custom -Subject "E=patti.fuller@contoso.com,CN=Patti Fuller" -TextExtension @("2.5.29.37={text}1.3.6.1.5.5.7.3.4","2.5.29.17={text}email=patti.fuller@contoso.com&upn=pattifuller@contoso.com") -KeyAlgorithm RSA -KeyLength 2048 -SmimeCapabilities -CertStoreLocation "Cert:\CurrentUser\My" + +```powershell +$params = @{ + Type = 'Custom' + Subject = 'E=patti.fuller@contoso.com,CN=Patti Fuller' + TextExtension = @( + '2.5.29.37={text}1.3.6.1.5.5.7.3.4', + '2.5.29.17={text}email=patti.fuller@contoso.com&upn=pattifuller@contoso.com' ) + KeyAlgorithm = 'RSA' + KeyLength = 2048 + SmimeCapabilities = $true + CertStoreLocation = 'Cert:\CurrentUser\My' +} +New-SelfSignedCertificate @params ``` -This example creates a self-signed S/MIME certificate in the user MY store. -The certificate uses the default provider, which is the Microsoft Software Key Storage Provider. -The certificate uses an RSA asymmetric key with a key size of 2048 bits. -This certificate has the subject alternative names of patti.fuller@contoso.com as RFC822 and pattifuller@contoso.com as Principal Name. +This example creates a self-signed S/MIME certificate in the user MY store. The certificate uses the +default provider, which is the `Microsoft Software Key Storage Provider`. The certificate uses an +`RSA` asymmetric key with a key size of `2048` bits. This certificate has the subject alternative +names of `patti.fuller@contoso.com` as RFC822 and `pattifuller@contoso.com` as Principal Name. -This command does not specify the **NotAfter** parameter. -Therefore, the certificate expires in one year. +This command does not specify the **NotAfter** parameter. Therefore, the certificate expires in one +year. ### EXAMPLE 4 -``` -PS C:\>New-SelfSignedCertificate -Type Custom -Subject "CN=Patti Fuller,OU=UserAccounts,DC=corp,DC=contoso,DC=com" -TextExtension @("2.5.29.37={text}1.3.6.1.5.5.7.3.2","2.5.29.17={text}upn=pattifuller@contoso.com") -KeyUsage DigitalSignature -KeyAlgorithm RSA -KeyLength 2048 -CertStoreLocation "Cert:\CurrentUser\My" + +```powershell +$params = @{ + Type = 'Custom' + Subject = 'CN=Patti Fuller,OU=UserAccounts,DC=corp,DC=contoso,DC=com' + TextExtension = @( + '2.5.29.37={text}1.3.6.1.5.5.7.3.2', + '2.5.29.17={text}upn=pattifuller@contoso.com' ) + KeyUsage = 'DigitalSignature' + KeyAlgorithm = 'RSA' + KeyLength = 2048 + CertStoreLocation = 'Cert:\CurrentUser\My' +} +New-SelfSignedCertificate @params ``` -This example creates a self-signed client authentication certificate in the user MY store. -The certificate uses the default provider, which is the Microsoft Software Key Storage Provider. -The certificate uses an RSA asymmetric key with a key size of 2048 bits. -The certificate has a subject alternative name of pattifuller@contoso.com. +This example creates a self-signed client authentication certificate in the user MY store. The +certificate uses the default provider, which is the `Microsoft Software Key Storage Provider`. The +certificate uses an `RSA` asymmetric key with a key size of `2048` bits. The certificate has a +subject alternative name of `pattifuller@contoso.com`. The certificate expires in one year. ### EXAMPLE 5 -``` -PS C:\>New-SelfSignedCertificate -Type Custom -Subject "CN=Patti Fuller,OU=UserAccounts,DC=corp,DC=contoso,DC=com" -TextExtension @("2.5.29.37={text}1.3.6.1.5.5.7.3.2","2.5.29.17={text}upn=pattifuller@contoso.com") -KeyUsage DigitalSignature -KeyAlgorithm ECDSA_nistP256 -CurveExport CurveName -CertStoreLocation "Cert:\CurrentUser\My" + +```powershell +$params = @{ + Type = 'Custom' + Subject = 'CN=Patti Fuller,OU=UserAccounts,DC=corp,DC=contoso,DC=com' + TextExtension @( + '2.5.29.37={text}1.3.6.1.5.5.7.3.2', + '2.5.29.17={text}upn=pattifuller@contoso.com' ) + KeyUsage = 'DigitalSignature' + KeyAlgorithm = 'ECDSA_nistP256' + CurveExport = 'CurveName' + CertStoreLocation = 'Cert:\CurrentUser\My' +} +New-SelfSignedCertificate @params ``` -This example creates a self-signed client authentication certificate in the user MY store. -The certificate uses the default provider, which is the Microsoft Software Key Storage Provider. -The certificate uses an elliptic curve asymmetric key and the curve parameters nist256, which creates a 256-bit key. -The subject alternative name is pattifuller@contoso.com. +This example creates a self-signed client authentication certificate in the user MY store. The +certificate uses the default provider, which is the `Microsoft Software Key Storage Provider`. The +certificate uses an elliptic curve asymmetric key and the curve parameters nist256, which creates a +256-bit key. The subject alternative name is `pattifuller@contoso.com`. The certificate expires in one year. ### EXAMPLE 6 -``` -PS C:\>New-SelfSignedCertificate -Type Custom -Provider "Microsoft Platform Crypto Provider" -Subject "CN=Patti Fuller" -TextExtension @("2.5.29.37={text}1.3.6.1.5.5.7.3.2","2.5.29.17={text}upn=pattifuller@contoso.com") -KeyExportPolicy NonExportable -KeyUsage DigitalSignature -KeyAlgorithm RSA -KeyLength 2048 -CertStoreLocation "Cert:\CurrentUser\My" + +```powershell +$params = @{ + Type = 'Custom' + Provider = 'Microsoft Platform Crypto Provider' + Subject = 'CN=Patti Fuller' + TextExtension = @( + '2.5.29.37={text}1.3.6.1.5.5.7.3.2', + '2.5.29.17={text}upn=pattifuller@contoso.com' ) + KeyExportPolicy = 'NonExportable' + KeyUsage = 'DigitalSignature' + KeyAlgorithm = 'RSA' + KeyLength = 2048 + CertStoreLocation = 'Cert:\CurrentUser\My' +} +New-SelfSignedCertificate @params ``` -This example creates a self-signed client authentication certificate in the user MY store. -The certificate uses the Microsoft Platform Crypto Provider. -This provider uses the Trusted Platform Module (TPM) of the device to create the asymmetric key. -The key is an RSA 2048-bit key that cannot be exported. -The subject alternative name is pattifuller@contoso.com. -The certificate expires in one year. +This example creates a self-signed client authentication certificate in the user MY store. The +certificate uses the `Microsoft Platform Crypto Provider`. This provider uses the Trusted Platform +Module (TPM) of the device to create the asymmetric key. The certificate uses an `RSA` asymmetric +key with a key size of `2048` bits. The key is not exportable. The subject alternative name is +`pattifuller@contoso.com`. The certificate expires in one year. ### EXAMPLE 7 -``` -PS C:\>New-SelfSignedCertificate -Type Custom -Container test* -Subject "CN=Patti Fuller" -TextExtension @("2.5.29.37={text}1.3.6.1.5.5.7.3.2","2.5.29.17={text}upn=pattifuller@contoso.com") -KeyUsage DigitalSignature -KeyAlgorithm RSA -KeyLength 2048 -NotAfter (Get-Date).AddMonths(6) + +```powershell +$params = @{ + Type = 'Custom' + Container = 'test*' + Subject = 'CN=Patti Fuller' + TextExtension = @( + '2.5.29.37={text}1.3.6.1.5.5.7.3.2', + '2.5.29.17={text}upn=pattifuller@contoso.com' ) + KeyUsage = 'DigitalSignature' + KeyAlgorithm = 'RSA' + KeyLength = 2048 + NotAfter = (Get-Date).AddMonths(6) +} +New-SelfSignedCertificate @params ``` -This example creates a self-signed client authentication certificate in the user MY store. -The certificate uses the default provider, which is the Microsoft Software Key Storage Provider. -The certificate uses an RSA asymmetric key with a key size of 2048 bits. -The subject alternative name is pattifuller@contoso.com. +This example creates a self-signed client authentication certificate in the user MY store. The +certificate uses the default provider, which is the `Microsoft Software Key Storage Provider`. The +certificate uses an `RSA` asymmetric key with a key size of `2048` bits. The subject alternative +name is `pattifuller@contoso.com`. -This command specifies a value for **NotAfter**. -The certificate expires in six months. +This command specifies a value for **NotAfter**. The certificate expires in six months. ### EXAMPLE 8 -``` -PS C:\>New-SelfSignedCertificate -Type Custom -Subject "E=patti.fuller@contoso.com,CN=Patti Fuller" -TextExtension @("2.5.29.37={text}1.3.6.1.5.5.7.3.4","2.5.29.17={text}email=patti.fuller@contoso.com&email=pattifuller@contoso.com") -KeyAlgorithm RSA -KeyLength 2048 -SmimeCapabilities -CertStoreLocation "Cert:\CurrentUser\My" + +```powershell +$params = @{ + Type = 'Custom' + Subject = 'E=patti.fuller@contoso.com,CN=Patti Fuller' + TextExtension = @( + '2.5.29.37={text}1.3.6.1.5.5.7.3.4', + '2.5.29.17={text}email=patti.fuller@contoso.com&email=pattifuller@contoso.com' ) + KeyAlgorithm = 'RSA' + KeyLength = 2048 + SmimeCapabilities = $true + CertStoreLocation = 'Cert:\CurrentUser\My' +} +New-SelfSignedCertificate @params ``` -This example creates a self-signed S/MIME certificate in the user MY store. -The certificate uses the default provider, which is the Microsoft Software Key Storage Provider. -The certificate uses an RSA asymmetric key with a key size of 2048 bits. -This certificate has the subject alternative names of patti.fuller@contoso.com and pattifuller@contoso.com both as RFC822. +This example creates a self-signed S/MIME certificate in the user MY store. The certificate uses the +default provider, which is the `Microsoft Software Key Storage Provider`. The certificate uses an +`RSA` asymmetric key with a key size of `2048` bits. This certificate has the subject alternative +names of `patti.fuller@contoso.com` and `pattifuller@contoso.com` both as RFC822. -This command does not specify the **NotAfter** parameter. -Therefore, the certificate expires in one year. +This command does not specify the **NotAfter** parameter. Therefore, the certificate expires in one +year. ### EXAMPLE 9 -``` -PS C:\> New-SelfSignedCertificate -Subject "localhost" -TextExtension @("2.5.29.17={text}DNS=localhost&IPAddress=127.0.0.1&IPAddress=::1") + +```powershell +$params = @{ + Subject = 'localhost' + TextExtension = @('2.5.29.17={text}DNS=localhost&IPAddress=127.0.0.1&IPAddress=::1') +} +New-SelfSignedCertificate @params ``` -This example creates a self-signed SSL server certificate with Subject and Issuer name set to `localhost` and with subject alternative name set to IPAddress `127.0.0.1` and `::1` via TextExtension. +This example creates a self-signed SSL server certificate with Subject and Issuer name set to +`localhost` and with subject alternative name set to IPAddress `127.0.0.1` and `::1` via +**TextExtension**. ## PARAMETERS ### -AlternateSignatureAlgorithm -Indicates that this cmdlet uses RSA-PSS (PKCSv2.1) or an elliptic curve cryptography (ECC) equivalent. -If you do not specify this parameter, the cmdlet uses the default, RSA-PSS (PKCSv1.5) or an ECC equivalent. + +Indicates that this cmdlet uses RSA-PSS (PKCSv2.1) or an elliptic curve cryptography (ECC) +equivalent. If you do not specify this parameter, the cmdlet uses the default, RSA-PSS (PKCSv1.5) or +an ECC equivalent. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -155,14 +253,16 @@ Accept wildcard characters: False ``` ### -CertStoreLocation -Specifies the certificate store in which to store the new certificate. -If the current path is Cert:\CurrentUser or Cert:\CurrentUser\My, the default store is Cert:\CurrentUser\My. -If the current path is Cert:\LocalMachine or Cert:\LocalMachine\My, the default store is Cert:\LocalMachine\My. -Otherwise, you must specify Cert:\CurrentUser\My or Cert:\LocalMachine\My for this parameter. -This parameter does not support other certificate stores. + +Specifies the certificate store in which to store the new certificate. If the current path is +`Cert:\CurrentUser` or `Cert:\CurrentUser\My`, the default store is `Cert:\CurrentUser\My`. If the +current path is `Cert:\LocalMachine` or `Cert:\LocalMachine\My`, the default store is +`Cert:\LocalMachine\My`. Otherwise, you must specify `Cert:\CurrentUser\My` or +`Cert:\LocalMachine\My` for this parameter. This parameter does not support other certificate +stores. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -174,13 +274,16 @@ Accept wildcard characters: False ``` ### -CloneCert -Identifies the certificate to copy when creating a new certificate. -The certificate being cloned can be identified by an X509 certificate or the file path in the certificate provider. -When this parameter is used, all fields and extensions of the certificate will be inherited except the public key, a new key of the same algorithm and length will be created, and the **NotAfter** and **NotBefore** fields. -The default validity period will be the same as the certificate to copy, except that the **NotBefore** field will be set to ten minutes in the past. + +Identifies the certificate to copy when creating a new certificate. The certificate being cloned can +be identified by an X509 certificate or the file path in the certificate provider. When this +parameter is used, all fields and extensions of the certificate will be inherited except the +**NotAfter** and **NotBefore** fields and the public key. A new key of the same algorithm and length +will be created. The default validity period will be the same as the certificate to copy, except +that the **NotBefore** field will be set to ten minutes in the past. ```yaml -Type: Certificate +Type: Microsoft.CertificateServices.Commands.Certificate Parameter Sets: (All) Aliases: @@ -192,10 +295,11 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -207,16 +311,17 @@ Accept wildcard characters: False ``` ### -Container + Specifies the name of the container in which this cmdlet stores the key for the new certificate. -When you create a key, a trailing asterisk (*) indicates that the rest of the container name string is a prefix. -An appended GUID string makes the container name unique. +When you create a key, a trailing asterisk (`*`) indicates that the rest of the container name +string is a prefix. An appended GUID string makes the container name unique. When you use an existing key, the container name must identify an existing key. You may also have to specify the provider. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -228,18 +333,20 @@ Accept wildcard characters: False ``` ### -CurveExport -Specifies how the public key parameters for an elliptic curve key are represented in the new certificate. -The acceptable values for this parameter are: -- CurveParameters -- CurveName -- None (default) +Specifies how the public key parameters for an elliptic curve key are represented in the new +certificate. The acceptable values for this parameter are: -The default value, None, indicates that this cmdlet uses the default value from the underlying key storage provider (KSP). -This parameter is not supported with the RSA algorithm or with cryptographic service providers (CSPs). +- `CurveParameters` +- `CurveName` +- `None` + +The default value, `None`, indicates that this cmdlet uses the default value from the underlying key +storage provider (KSP). This parameter is not supported with the RSA algorithm or with cryptographic +service providers (CSPs). ```yaml -Type: CurveParametersExportType +Type: Microsoft.CertificateServices.Commands.CurveParametersExportType Parameter Sets: (All) Aliases: Accepted values: None, CurveParameters, CurveName @@ -252,12 +359,14 @@ Accept wildcard characters: False ``` ### -DnsName -Specifies one or more DNS names to put into the subject alternative name extension of the certificate when a certificate to be copied is not specified via the **CloneCert** parameter. -The first DNS name is also saved as the Subject Name. -If no signing certificate is specified, the first DNS name is also saved as the Issuer Name. + +Specifies one or more DNS names to put into the subject alternative name extension of the +certificate when a certificate to be copied is not specified via the **CloneCert** parameter. The +first DNS name is also saved as the Subject Name. If no signing certificate is specified, the first +DNS name is also saved as the Issuer Name. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: (All) Aliases: @@ -269,16 +378,17 @@ Accept wildcard characters: False ``` ### -ExistingKey -Indicates that this cmdlet uses an existing key. -If you do not specify this parameter, this cmdlet creates a new key. -Creating a certificate from an existing key creates a new key with a new container. -When you use an existing key, specify values for the **Container** parameter, the **Provider** parameter, and the **CertStoreLocation** parameter. -**CertStoreLocation** determines the context. +Indicates that this cmdlet uses an existing key. If you do not specify this parameter, this cmdlet +creates a new key. Creating a certificate from an existing key creates a new key with a new +container. + +When you use an existing key, specify values for the **Container** parameter, the **Provider** +parameter, and the **CertStoreLocation** parameter. **CertStoreLocation** determines the context. The context is user or computer. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -290,10 +400,12 @@ Accept wildcard characters: False ``` ### -Extension -Specifies an array of certificate extensions, as **X509Extension** objects, that this cmdlet includes in the new certificate. + +Specifies an array of certificate extensions, as **X509Extension** objects, that this cmdlet +includes in the new certificate. ```yaml -Type: X509Extension[] +Type: System.Security.Cryptography.X509Certificates.X509Extension[] Parameter Sets: (All) Aliases: @@ -305,10 +417,11 @@ Accept wildcard characters: False ``` ### -FriendlyName + Specifies a friendly name for the new certificate. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -320,21 +433,23 @@ Accept wildcard characters: False ``` ### -HardwareKeyUsage -Specifies how a hardware key associated with the new certificate may be used. -This parameter applies only when you specify the Microsoft Platform Crypto Provider. -The acceptable values for this parameter are: -- None (default) -- SignatureKey -- EncryptionKey -- GenericKey -- StorageKey -- IdentityKey +Specifies how a hardware key associated with the new certificate may be used. This parameter applies +only when you specify the Microsoft Platform Crypto Provider. The acceptable values for this +parameter are: + +- `None` +- `SignatureKey` +- `EncryptionKey` +- `GenericKey` +- `StorageKey` +- `IdentityKey` -The default value, None, indicates that this cmdlet uses the default value from the underlying KSP. +The default value, `None`, indicates that this cmdlet uses the default value from the underlying +KSP. ```yaml -Type: HardwareKeyUsage[] +Type: Microsoft.CertificateServices.Commands.HardwareKeyUsage[] Parameter Sets: (All) Aliases: Accepted values: None, SignatureKey, EncryptionKey, GenericKey, StorageKey, IdentityKey @@ -347,11 +462,12 @@ Accept wildcard characters: False ``` ### -HashAlgorithm -Specifies the name of the hash algorithm to use to sign the new certificate. -The default hash algorithm depends on the provider that stores the private key used to sign the new certificate. + +Specifies the name of the hash algorithm to use to sign the new certificate. The default hash +algorithm depends on the provider that stores the private key used to sign the new certificate. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -363,8 +479,10 @@ Accept wildcard characters: False ``` ### -KeyAlgorithm -Specifies the name of the algorithm that creates the asymmetric keys that are associated with the new certificate. -Available asymmetric key algorithms are RSA and Elliptic Curve Digital Signature Algorithms (ECDSA). + +Specifies the name of the algorithm that creates the asymmetric keys that are associated with the +new certificate. Available asymmetric key algorithms are RSA and Elliptic Curve Digital Signature +Algorithms (ECDSA). The elliptic curve algorithm syntax is the following: @@ -372,10 +490,11 @@ The elliptic curve algorithm syntax is the following: To obtain a value for curvename, use the `certutil -displayEccCurve` command. -Valid curve names contain a value in the **Curve OID** column in the output of the `certutil -displayEccCurve` command. +Valid curve names contain a value in the **Curve OID** column in the output of the +`certutil -displayEccCurve` command. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -387,10 +506,11 @@ Accept wildcard characters: False ``` ### -KeyDescription + Specifies a description for the private key that is associated with the new certificate. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -402,14 +522,16 @@ Accept wildcard characters: False ``` ### -KeyExportPolicy -Specifies the policy that governs the export of the private key that is associated with the certificate. -The default value of ExportableEncrypted is not compatible with KSP and CSPs that do not allow key export. -These include the Microsoft Smart Card Key Storage Provider and the Microsoft Platform Crypto Key Storage Provider. -Specify NonExportable for providers that do not allow key export. +Specifies the policy that governs the export of the private key that is associated with the +certificate. + +The default value of `ExportableEncrypted` is not compatible with KSP and CSPs that do not allow key +export. These include the Microsoft Smart Card Key Storage Provider and the Microsoft Platform +Crypto Key Storage Provider. Specify `NonExportable` for providers that do not allow key export. ```yaml -Type: KeyExportPolicy[] +Type: Microsoft.CertificateServices.Commands.KeyExportPolicy[] Parameter Sets: (All) Aliases: Accepted values: NonExportable, ExportableEncrypted, Exportable @@ -422,10 +544,11 @@ Accept wildcard characters: False ``` ### -KeyFriendlyName + Specifies a friendly name for the private key that is associated with the new certificate. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -437,10 +560,11 @@ Accept wildcard characters: False ``` ### -KeyLength + Specifies the length, in bits, of the key that is associated with the new certificate. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: (All) Aliases: @@ -452,11 +576,12 @@ Accept wildcard characters: False ``` ### -KeyLocation -Specifies the file system location where this cmdlet stores the private keys associated with the new certificate. -Specify this parameter only when you specify the Microsoft Platform Crypto Provider. + +Specifies the file system location where this cmdlet stores the private keys associated with the new +certificate. Specify this parameter only when you specify the Microsoft Platform Crypto Provider. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -468,20 +593,22 @@ Accept wildcard characters: False ``` ### -KeyProtection -Specifies the level of protection required to access the private key that is associated with the certificate. -The acceptable values for this parameter are: -- Protect -- ProtectHigh -- ProtectFingerPrint -- None (default) +Specifies the level of protection required to access the private key that is associated with the +certificate. The acceptable values for this parameter are: + +- `Protect` +- `ProtectHigh` +- `ProtectFingerPrint` +- `None` -The default value, None, indicates that this cmdlet uses the default value from the underlying KSP or CSP. -For most KSPs and CSPs, the default means that no user interface is required to create and use the private key. -A user interface is required if the provider always requires a user interface, such as a smart card, or if the default configuration of the provider has been changed. +The default value, `None`, indicates that this cmdlet uses the default value from the underlying KSP +or CSP. For most KSPs and CSPs, the default means that no user interface is required to create and +use the private key. A user interface is required if the provider always requires a user interface, +such as a smart card, or if the default configuration of the provider has been changed. ```yaml -Type: KeyProtection[] +Type: Microsoft.CertificateServices.Commands.KeyProtection[] Parameter Sets: (All) Aliases: Accepted values: None, Protect, ProtectHigh, ProtectFingerPrint @@ -494,20 +621,22 @@ Accept wildcard characters: False ``` ### -KeySpec -Specifies whether the private key associated with the new certificate can be used for signing, encryption, or both. -The acceptable values for this parameter are: -- KeyExchange -- Signature -- None (default) +Specifies whether the private key associated with the new certificate can be used for signing, +encryption, or both. The acceptable values for this parameter are: -The default value, None, indicates that this cmdlet uses the default value from the underlying CSP. +- `KeyExchange` +- `Signature` +- `None` -If the private key is managed by a legacy CSP, the value is KeyExchange or Signature. -If the key is managed by a Cryptography Next Generation (CNG) KSP, the value is None. +The default value, `None`, indicates that this cmdlet uses the default value from the underlying +CSP. + +If the private key is managed by a legacy CSP, the value is `KeyExchange` or `Signature`. If the key +is managed by a Cryptography Next Generation (CNG) KSP, the value is `None`. ```yaml -Type: KeySpec +Type: Microsoft.CertificateServices.Commands.KeySpec Parameter Sets: (All) Aliases: Accepted values: None, KeyExchange, Signature @@ -520,24 +649,26 @@ Accept wildcard characters: False ``` ### -KeyUsage -Specifies the key usages set in the key usage extension of the certificate. -The acceptable values for this parameter are: -- CertSign -- CRLSign -- DataEncipherment -- DecipherOnly -- DigitalSignature -- EncipherOnly -- KeyAgreement -- KeyEncipherment -- None (default) -- NonRepudiation +Specifies the key usages set in the key usage extension of the certificate. The acceptable values +for this parameter are: + +- `CertSign` +- `CRLSign` +- `DataEncipherment` +- `DecipherOnly` +- `DigitalSignature` +- `EncipherOnly` +- `KeyAgreement` +- `KeyEncipherment` +- `None` +- `NonRepudiation` -The value, **None**, indicates that this cmdlet does not include the **KeyUsage** extension in the new certificate. +The value, `None`, indicates that this cmdlet does not include the **KeyUsage** extension in the new +certificate. ```yaml -Type: KeyUsage[] +Type: Microsoft.CertificateServices.Commands.KeyUsage[] Parameter Sets: (All) Aliases: Accepted values: None, EncipherOnly, CRLSign, CertSign, KeyAgreement, DataEncipherment, KeyEncipherment, NonRepudiation, DigitalSignature, DecipherOnly @@ -550,19 +681,21 @@ Accept wildcard characters: False ``` ### -KeyUsageProperty -Specifies the key usages for the key usages property of the private key. -The acceptable values for this parameter are: -- All -- Decrypt -- KeyAgreement -- None (default) -- Sign +Specifies the key usages for the key usages property of the private key. The acceptable values for +this parameter are: -The default value, **None**, indicates that this cmdlet uses the default value from the underlying KSP. +- `All` +- `Decrypt` +- `KeyAgreement` +- `None` +- `Sign` + +The default value, `None`, indicates that this cmdlet uses the default value from the underlying +KSP. ```yaml -Type: KeyUsageProperty[] +Type: Microsoft.CertificateServices.Commands.KeyUsageProperty[] Parameter Sets: (All) Aliases: Accepted values: None, Decrypt, Sign, KeyAgreement, All @@ -575,12 +708,13 @@ Accept wildcard characters: False ``` ### -NotAfter -Specifies the date and time, as a **DateTime** object, that the certificate expires. -To obtain a **DateTime** object, use the Get-Date cmdlet. -The default value for this parameter is one year after the certificate was created. + +Specifies the date and time, as a **DateTime** object, that the certificate expires. To obtain a +**DateTime** object, use the Get-Date cmdlet. The default value for this parameter is one year after +the certificate was created. ```yaml -Type: DateTime +Type: System.DateTime Parameter Sets: (All) Aliases: @@ -592,11 +726,12 @@ Accept wildcard characters: False ``` ### -NotBefore -Specifies the date and time, as a **DateTime** object, when the certificate becomes valid. -The default value for this parameter is 10 minutes before the certificate was created. + +Specifies the date and time, as a **DateTime** object, when the certificate becomes valid. The +default value for this parameter is 10 minutes before the certificate was created. ```yaml -Type: DateTime +Type: System.DateTime Parameter Sets: (All) Aliases: @@ -608,10 +743,12 @@ Accept wildcard characters: False ``` ### -Pin -Specifies the personal identification number (PIN) used to access the private key of the new certificate. + +Specifies the personal identification number (PIN) used to access the private key of the new +certificate. ```yaml -Type: SecureString +Type: System.SecureString Parameter Sets: (All) Aliases: @@ -623,20 +760,22 @@ Accept wildcard characters: False ``` ### -Provider -Specifies the name of the KSP or CSP that this cmdlet uses to create the certificate. See [Cryptographic Providers](/windows/desktop/SecCertEnroll/understanding-cryptographic-providers) for more information. -Some acceptable values include: - -- Microsoft Software Key Storage Provider -- Microsoft Smart Card Key Storage Provider -- Microsoft Platform Crypto Provider -- Microsoft Strong Cryptographic Provider -- Microsoft Enhanced Cryptographic Provider v1.0 -- Microsoft Enhanced RSA and AES Cryptographic Provider -- Microsoft Base Cryptographic Provider v1.0 + +Specifies the name of the KSP or CSP that this cmdlet uses to create the certificate. See +[Cryptographic Providers](/windows/desktop/SecCertEnroll/understanding-cryptographic-providers) for +more information. Some acceptable values include: + +- `Microsoft Software Key Storage Provider` +- `Microsoft Smart Card Key Storage Provider` +- `Microsoft Platform Crypto Provider` +- `Microsoft Strong Cryptographic Provider` +- `Microsoft Enhanced Cryptographic Provider v1.0` +- `Microsoft Enhanced RSA and AES Cryptographic Provider` +- `Microsoft Base Cryptographic Provider v1.0` - The name of a third party KSP or CSP ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -648,10 +787,12 @@ Accept wildcard characters: False ``` ### -Reader -Specifies the name of the smart card reader on which to store the private key for the new certificate. + +Specifies the name of the smart card reader on which to store the private key for the new +certificate. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -663,12 +804,13 @@ Accept wildcard characters: False ``` ### -SecurityDescriptor -Specifies the private key security descriptor as a **FileSecurity** object. -Read access is required to use the private key. -This parameter does not apply to providers that do not support security descriptors on private keys, including the smart card CSP and smart card KSP. + +Specifies the private key security descriptor as a **FileSecurity** object. Read access is required +to use the private key. This parameter does not apply to providers that do not support security +descriptors on private keys, including the smart card CSP and smart card KSP. ```yaml -Type: FileSecurity +Type: System.Security.AccessControl.FileSecurity Parameter Sets: (All) Aliases: @@ -680,11 +822,12 @@ Accept wildcard characters: False ``` ### -SerialNumber -Specifies a serial number, as a hexadecimal string, that is associated with the new certificate. -If you do not specify this parameter, this cmdlet assigns a pseudo-randomly generated 16 byte value. + +Specifies a serial number, as a hexadecimal string, that is associated with the new certificate. If +you do not specify this parameter, this cmdlet assigns a pseudo-randomly generated 16-byte value. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -696,12 +839,13 @@ Accept wildcard characters: False ``` ### -Signer -Specifies a **Certificate** object with which this cmdlet signs the new certificate. -This value must be in the Personal certificate store of the user or device. -This cmdlet must have read access to the private key of the certificate. + +Specifies a **Certificate** object with which this cmdlet signs the new certificate. This value must +be in the Personal certificate store of the user or device. This cmdlet must have read access to the +private key of the certificate. ```yaml -Type: Certificate +Type: Microsoft.CertificateServices.Commands.Certificate Parameter Sets: (All) Aliases: @@ -713,10 +857,12 @@ Accept wildcard characters: False ``` ### -SignerPin -Specifies the PIN that is required to access the private key of the certificate that is used to sign the new certificate. + +Specifies the PIN that is required to access the private key of the certificate that is used to sign +the new certificate. ```yaml -Type: SecureString +Type: System.SecureString Parameter Sets: (All) Aliases: @@ -728,10 +874,11 @@ Accept wildcard characters: False ``` ### -SignerReader + Specifies the name of the smart card reader that is used to sign the new certificate. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -743,10 +890,12 @@ Accept wildcard characters: False ``` ### -SmimeCapabilities -Indicates that the new certificate includes available encryption algorithms to a Secure/Multipurpose Internet Mail Extensions (S/MIME) capabilities extension. + +Indicates that the new certificate includes available encryption algorithms to a Secure/Multipurpose +Internet Mail Extensions (S/MIME) capabilities extension. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -758,13 +907,15 @@ Accept wildcard characters: False ``` ### -Subject -Specifies the string that appears in the subject of the new certificate. -This cmdlet prefixes `CN=` to any value that does not contain an equal sign. -For multiple subject relative distinguished names (also known as RDNs), separate each subject relative distinguished name with a comma (,). -If the value of the relative distinguished name contains commas, separate each subject relative distinguished name with a semicolon (;). + +Specifies the string that appears in the subject of the new certificate. This cmdlet prefixes `CN=` +to any value that does not contain an equal sign. For multiple subject relative distinguished names +(also known as RDNs), separate each subject relative distinguished name with a comma (`,`). If the +value of the relative distinguished name contains commas, separate each subject relative +distinguished name with a semicolon (`;`). ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -776,10 +927,12 @@ Accept wildcard characters: False ``` ### -SuppressOid -Specifies an array of object identifier (also known as OID) strings that identify default extensions to be removed from the new certificate. + +Specifies an array of object identifier (also known as OID) strings that identify default extensions +to be removed from the new certificate. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: (All) Aliases: @@ -791,14 +944,16 @@ Accept wildcard characters: False ``` ### -TestRoot -Indicates that this cmdlet signs the new certificate by using a built-in test certificate. -This cmdlet adds the built-in test certificate to the intermediate certification authority (CA) certificate store of the device. -This parameter is for test purposes only. -The private key of the test root certificate is essentially public. +Indicates that this cmdlet signs the new certificate by using a built-in test certificate. This +cmdlet adds the built-in test certificate to the intermediate certification authority (CA) +certificate store of the device. + +This parameter is for test purposes only. The private key of the test root certificate is +essentially public. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -810,147 +965,153 @@ Accept wildcard characters: False ``` ### -TextExtension -Specifies an array of certificate extensions, as strings, which this cmdlet includes in the new certificate. -Each string must employ one of the following formats: -oid`=`base64String, where oid is the object identifier of the extension and base64String is a value that you provide. -After decoding base64String, the value must be valid Abstract Syntax Notation One (ASN.1). -For more information, see [Abstract Syntax Notation One (ASN.1): Specification of basic notation](http://www.itu.int/ITU-T/studygroups/com17/languages/X.680-0207.pdf). +Specifies an array of certificate extensions, as strings, which this cmdlet includes in the new +certificate. Each string must employ one of the following formats: + +oid`=`base64String, where oid is the object identifier of the extension and base64String is a value +that you provide. After decoding base64String, the value must be valid Abstract Syntax Notation One +(ASN.1). For more information, see +[Abstract Syntax Notation One (ASN.1): Specification of basic notation](http://www.itu.int/ITU-T/studygroups/com17/languages/X.680-0207.pdf). -oid`={hex}`hexidecimalString, where oid is the object identifier of the extension and hexidecimalString is a value that you provide. -After decoding hexidecimalString, the value must be valid ASN.1. +oid`={hex}`hexidecimalString, where oid is the object identifier of the extension and +hexidecimalString is a value that you provide. After decoding hexidecimalString, the value must be +valid ASN.1. -oid`={text}`String, where oid is the object identifier of the extension and String is a value that you provide. -String must contain a textual representation of the extension value in a format specific to each object ID. -When String is processed, it will be encoded into an ASN.1 extension value before being placed into the new certificate as an extension. +oid`={text}`String, where oid is the object identifier of the extension and String is a value that +you provide. String must contain a textual representation of the extension value in a format +specific to each object ID. When String is processed, it will be encoded into an ASN.1 extension +value before being placed into the new certificate as an extension. -To specify that an extension is critical, insert {critical} immediately following `oid=` in any of the previous cases. +To specify that an extension is critical, insert `{critical}` immediately following `oid=` in any of +the previous cases. -The object identifiers of some common extensions are as follows: +The object identifiers of some common extensions are as follows: - Application Policy. -1.3.6.1.4.1.311.21.10 +`1.3.6.1.4.1.311.21.10` - Application Policy Mappings. -1.3.6.1.4.1.311.21.11 +`1.3.6.1.4.1.311.21.11` - Basic Constraints. -2.5.29.19 +`2.5.29.19` - Certificate Policies. -2.5.29.32 +`2.5.29.32` - Enhanced Key Usage. -2.5.29.37 +`2.5.29.37` - Name Constraints. -2.5.29.30 +`2.5.29.30` - Policy Mappings. -2.5.29.33 +`2.5.29.33` - Subject Alternative Name. -2.5.29.17 +`2.5.29.17` Application Policy -1.3.6.1.4.1.311.21.10={text}token=value&token=value… -The tokens have the following possible values: +`1.3.6.1.4.1.311.21.10={text}token=value&token=value…` +The tokens have the following possible values: - Flags. 0xhexidecimalNumber - GUID. -A globally unique ID, such as this example: f7c3ac41-b8ce-4fb4-aa58-3d1dc0e36b39 +A globally unique ID, such as this example: `f7c3ac41-b8ce-4fb4-aa58-3d1dc0e36b39` - Notice. Text notice - OID. -Object identifier in dotted decimal notation, such as this example: 1.2.3.4.5 +Object identifier in dotted decimal notation, such as this example: `1.2.3.4.5` - URL. -The URL of a host, such as this example: http://computer07.contoso.com +The URL of a host, such as this example: `http://computer07.contoso.com` -To specify an Application Policy extension, specify the first object identifier, followed by zero or more other **token=value** entries. -These entries are subordinate to the preceding object identifier. -Specify subsequent object identifiers, each followed by its subordinate **token=value** entries. +To specify an Application Policy extension, specify the first object identifier, followed by zero or +more other **token=value** entries. These entries are subordinate to the preceding object +identifier. Specify subsequent object identifiers, each followed by its subordinate **token=value** +entries. Application Policy Mappings -1.3.6.1.4.1.311.21.11={text}oid=oid&oid=oid… +`1.3.6.1.4.1.311.21.11={text}oid=oid&oid=oid…` Certificate Policies -2.5.29.32={text}token=value&token=value… -The tokens have the following possible values: +`2.5.29.32={text}token=value&token=value…` +The tokens have the following possible values: - Flags. 0xhexidecimalNumber - GUID. -A globally unique ID, such as this example: f7c3ac41-b8ce-4fb4-aa58-3d1dc0e36b39 +A globally unique ID, such as this example: `f7c3ac41-b8ce-4fb4-aa58-3d1dc0e36b39` - Notice. Text notice - OID. -Object ID in dotted decimal notation, such as this example: 1.2.3.4.5 +Object ID in dotted decimal notation, such as this example: `1.2.3.4.5` - URL. -The URL of a host, such as this example: http://computer07.contoso.com +The URL of a host, such as this example: `http://computer07.contoso.com` -To specify a Certificate Policies extension, follow the same syntax as an Application Policy extension. +To specify a Certificate Policies extension, follow the same syntax as an Application Policy +extension. Enhanced Key Usage Object Identifiers -2.5.29.37={text}oid,oid… -These key usages have the following object identifiers: +`2.5.29.37={text}oid,oid…` +These key usages have the following object identifiers: - Client Authentication. -1.3.6.1.5.5.7.3.2 +`1.3.6.1.5.5.7.3.2` - Server Authentication. -1.3.6.1.5.5.7.3.1 +`1.3.6.1.5.5.7.3.1` - Secure Email. -1.3.6.1.5.5.7.3.4 +`1.3.6.1.5.5.7.3.4` - Code Signing. -1.3.6.1.5.5.7.3.3 +`1.3.6.1.5.5.7.3.3` - Timestamp Signing. -1.3.6.1.5.5.7.3.8 +`1.3.6.1.5.5.7.3.8` -Name Constraints -2.5.29.30={text}subtree=subtreeValue&token=value&token=value& …&subtree=subtreeValue&token=value&token=value… -The subtreeValue can have the following values: +Name Constraints `2.5.29.30={text}subtree=subtreeValue&token=value&token=value&` +`…&subtree=subtreeValue&token=value&token=value…` The subtreeValue can have the following values: -- Include. +- `Include`. Permitted names -- Exclude. +- `Exclude`. Excluded names -The tokens have the following possible values: +The tokens have the following possible values: - DirectoryName. -CN=Name,DC=Domain,DC=com +`CN=Name,DC=Domain,DC=com` - DNS. -A computer name in the following format: computer.contoso.com +A computer name in the following format: `computer.contoso.com` - Email. -An email address, such as this example: admin@contoso.com +An email address, such as this example: `admin@contoso.com` - IPAddress. IPV4 address,IPV4 subnet mask or IPV6 address,IPV6 subnet mask - RegisteredID. -ID in dotted decimal notation, such as this example: 1.2.3.4.5 +ID in dotted decimal notation, such as this example: `1.2.3.4.5` - UPN. -A user principal name in the following format: admin@contoso.com +A user principal name in the following format: `admin@contoso.com` - URL. -The URL of a host, such as this example: http://computer07.contoso.com/index.html +The URL of a host, such as this example: `http://computer07.contoso.com/index.html` Policy Mapping -2.5.29.33={text}oid=oid&oid=oid… +`2.5.29.33={text}oid=oid&oid=oid…` Subject Alternative Name Syntax -2.5.29.17={text}token=value&token=value… -The tokens have the following possible values: +`2.5.29.17={text}token=value&token=value…` +The tokens have the following possible values: - UPN. -A user principal name in the following format: admin@contoso.com +A user principal name in the following format: `admin@contoso.com` - Email. -An email address, such as this example: admin@contoso.com +An email address, such as this example: `admin@contoso.com` - DNS. -A computer name in the following format: computer.contoso.com +A computer name in the following format: `computer.contoso.com` - DirectoryName. -CN=Name,DC=Domain,DC=com +`CN=Name,DC=Domain,DC=com` - URL. -The URL of a host, such as this example: http://computer07.contoso.com/index.html +The URL of a host, such as this example: `http://computer07.contoso.com/index.html` - IPAddress. An IP address - RegisteredID. -ID in dotted decimal notation, such as this example: 1.2.3.4.5 +ID in dotted decimal notation, such as this example: `1.2.3.4.5` - GUID. -A globally unique ID, such as this example: f7c3ac41-b8ce-4fb4-aa58-3d1dc0e36b39 +A globally unique ID, such as this example: `f7c3ac41-b8ce-4fb4-aa58-3d1dc0e36b39` ```yaml -Type: String[] +Type: System.String[] Parameter Sets: (All) Aliases: @@ -962,10 +1123,11 @@ Accept wildcard characters: False ``` ### -Type + Specifies the type of certificate that this cmdlet creates. ```yaml -Type: CertificateType +Type: Microsoft.CertificateServices.Commands.CertificateType Parameter Sets: (All) Aliases: Accepted values: Custom, CodeSigningCert, DocumentEncryptionCert, SSLServerAuthentication, DocumentEncryptionCertLegacyCsp @@ -978,11 +1140,11 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -994,16 +1156,23 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### Microsoft.CertificateServices.Commands.Certificate -The **Certificate** object can either be provided as a Path object to a certificate or an **X509Certificate2** object. + +The **Certificate** object can either be provided as a Path object to a certificate or an +**X509Certificate2** object. ## OUTPUTS ### System.Security.Cryptography.X509Certificates.X509Certificate2 + An **X509Certificate2** object for the certificate that has been created. ## NOTES From 0eb523a230a3e4a18555e849ba8598535d332286 Mon Sep 17 00:00:00 2001 From: Phil Bossman Date: Sun, 30 Apr 2023 19:55:33 -0700 Subject: [PATCH 536/965] Sync --- .../grouppolicy/Get-GPInheritance.md | 2 +- .../winserver2022-ps/grouppolicy/Get-GPO.md | 4 +- .../grouppolicy/Get-GPOReport.md | 149 ++++++++++------- .../grouppolicy/Get-GPPermission.md | 37 +++-- .../grouppolicy/Get-GPPrefRegistryValue.md | 25 +-- .../grouppolicy/Get-GPRegistryValue.md | 28 ++-- .../grouppolicy/Get-GPResultantSetOfPolicy.md | 21 +-- .../grouppolicy/Get-GPStarterGPO.md | 29 ++-- .../grouppolicy/Import-GPO.md | 153 +++++++++++------- .../grouppolicy/Invoke-GPUpdate.md | 25 +-- .../grouppolicy/New-GPLink.md | 31 ++-- .../winserver2022-ps/grouppolicy/New-GPO.md | 30 ++-- .../grouppolicy/New-GPStarterGPO.md | 16 +- .../grouppolicy/Remove-GPLink.md | 30 ++-- .../grouppolicy/Remove-GPO.md | 25 +-- .../grouppolicy/Remove-GPPrefRegistryValue.md | 25 +-- .../grouppolicy/Remove-GPRegistryValue.md | 23 +-- .../grouppolicy/Rename-GPO.md | 19 ++- .../grouppolicy/Restore-GPO.md | 39 +++-- .../grouppolicy/Set-GPInheritance.md | 22 +-- .../grouppolicy/Set-GPLink.md | 27 ++-- .../grouppolicy/Set-GPPermission.md | 27 ++-- .../grouppolicy/Set-GPPrefRegistryValue.md | 41 ++--- .../grouppolicy/Set-GPRegistryValue.md | 35 ++-- 24 files changed, 514 insertions(+), 349 deletions(-) diff --git a/docset/winserver2022-ps/grouppolicy/Get-GPInheritance.md b/docset/winserver2022-ps/grouppolicy/Get-GPInheritance.md index d2d2b1413c..20da4a4d34 100644 --- a/docset/winserver2022-ps/grouppolicy/Get-GPInheritance.md +++ b/docset/winserver2022-ps/grouppolicy/Get-GPInheritance.md @@ -250,7 +250,7 @@ by using the **Set-GPInheritance** cmdlet. ## NOTES -* You can use the *Domain* parameter to explicitly specify the domain for this cmdlet. +* You can use the **Domain** parameter to explicitly specify the domain for this cmdlet. If you do not explicitly specify the domain, the cmdlet uses a default domain. The default domain is the domain that is used to access network resources by the security context under which the diff --git a/docset/winserver2022-ps/grouppolicy/Get-GPO.md b/docset/winserver2022-ps/grouppolicy/Get-GPO.md index 8b298a097c..b58e26e7a3 100644 --- a/docset/winserver2022-ps/grouppolicy/Get-GPO.md +++ b/docset/winserver2022-ps/grouppolicy/Get-GPO.md @@ -235,7 +235,7 @@ This cmdlet returns an object that represents the requested GPO. ## NOTES -* You can use the *Domain* parameter to explicitly specify the domain for this cmdlet. +* You can use the **Domain** parameter to explicitly specify the domain for this cmdlet. If you do not explicitly specify the domain, the cmdlet uses a default domain. The default domain is the domain that is used to access network resources by the security context under which the current session is running. @@ -247,7 +247,7 @@ Therefore, when this cmdlet is run from a startup or shutdown script, the defaul Only one domain can be used by an instance of this cmdlet. If you pipe a collection of GPO (Microsoft.GroupPolicy.Gpo) objects to this cmdlet, the DomainName property of the first GPO object in the collection specifies the domain for the cmdlet. -This is because domainname is a built-in alias for the *Domain* parameter, and the *Domain* parameter can take its value by property name from the pipeline. +This is because domainname is a built-in alias for the **Domain** parameter, and the **Domain** parameter can take its value by property name from the pipeline. A non-terminating error occurs for any GPOs in the collection that are not in this domain. If this domain is different from the domain of the user account (for startup or shutdown scripts, the computer account), a trust must exist between the two domains. diff --git a/docset/winserver2022-ps/grouppolicy/Get-GPOReport.md b/docset/winserver2022-ps/grouppolicy/Get-GPOReport.md index 21269fcb82..b82d36521a 100644 --- a/docset/winserver2022-ps/grouppolicy/Get-GPOReport.md +++ b/docset/winserver2022-ps/grouppolicy/Get-GPOReport.md @@ -11,66 +11,81 @@ title: Get-GPOReport # Get-GPOReport ## SYNOPSIS + Generates a report either in XML or HTML format for a specified GPO or for all GPOs in a domain. ## SYNTAX ### ByGUID (Default) + ``` Get-GPOReport [-Guid] [-ReportType] [[-Path] ] [[-Domain] ] [[-Server] ] [] ``` ### ByName + ``` Get-GPOReport [-Name] [-ReportType] [[-Path] ] [[-Domain] ] [[-Server] ] [] ``` ### ReportAll + ``` -Get-GPOReport [-ReportType] [[-Path] ] [[-Domain] ] [[-Server] ] [-All] - [] +Get-GPOReport [-ReportType] [[-Path] ] [[-Domain] ] + [[-Server] ] [-All] [] ``` ## DESCRIPTION -The **Get-GPOReport** cmdlet generates a report in either XML or HTML format that describes properties and policy settings for a specified Group Policy Object (GPO) or for all GPOs in a domain. -The information that is reported for each GPO includes: details, links, security filtering, Windows Management Instrumentation (WMI) filtering, delegation, and computer and user configurations. -You can specify the *All* parameter to generate a report for every GPO in the domain, or you can specify either the *Name* or *Guid* parameter to generate a report for a single GPO. -You can also pipe GPO objects into this cmdlet. -If you specify a file through the *Path* parameter, the report is written to a file; otherwise, it is printed to the display. +The **Get-GPOReport** cmdlet generates a report in either XML or HTML format that describes +properties and policy settings for a specified Group Policy Object (GPO) or for all GPOs in a +domain. The information that is reported for each GPO includes: details, links, security filtering, +Windows Management Instrumentation (WMI) filtering, delegation, and computer and user +configurations. + +You can specify the **All** parameter to generate a report for every GPO in the domain, or you can +specify either the **Name** or **Guid** parameter to generate a report for a single GPO. You can +also pipe GPO objects into this cmdlet. If you specify a file through the **Path** parameter, the +report is written to a file; otherwise, it is printed to the display. ## EXAMPLES ### Example 1: Generate an HTML report for the specified GPO -``` -PS C:\> Get-GPOReport -Name "TestGPO1" -ReportType HTML -Path "C:\GPOReports\GPOReport1.html" + +```powershell +Get-GPOReport -Name "TestGPO1" -ReportType HTML -Path "C:\GPOReports\GPOReport1.html" ``` -This command generates a report in HTML format for the GPO TestGPO1 and writes it to the file C:\GPOReports\GPOReport1.html +This command generates a report in HTML format for the GPO `TestGPO1` and writes it to the file `C:\GPOReports\GPOReport1.html` ### Example 2: Generate an XML report for each GPO in the specified domain -``` -PS C:\> Get-GPOReport -All -Domain "sales.contoso.com" -Server "DC1" -ReportType XML -Path "C:\GPOReports\GPOReportsAll.xml" + +```powershell +Get-GPOReport -All -Domain "sales.contoso.com" -Server "DC1" -ReportType XML -Path "C:\GPOReports\GPOReportsAll.xml" ``` -This command generates a report in XML format for each GPO in the sales.contoso.com domain and writes it to the file C:\GPOReports\GPOReportsAll.xml. -The DC1.sales.contoso.com domain controller is contacted to complete the operation. +This command generates a report in XML format for each GPO in the `sales.contoso.com` domain and +writes it to the file `C:\GPOReports\GPOReportsAll.xml`. The `DC1` domain controller is contacted to +complete the operation. -If the domain of the user account (or, for startup and shutdown scripts, the computer account) is different from sales.contoso2.com, a trust must exist between the two domains. +If the domain of the user account (or, for startup and shutdown scripts, the computer account) is +different from `sales.contoso2.com`, a trust must exist between the two domains. ### Example 3: Generate an XML report for a GPO with the specified GUID -``` -PS C:\> Get-GPOReport -GUID 73624cc9-e8f2-4f05-8802-193fae8773ce -ReportType XML + +```powershell +Get-GPOReport -GUID 73624cc9-e8f2-4f05-8802-193fae8773ce -ReportType XML ``` -This command generates a report in XML format for the GPO with the specified GUID. -Because no *Path* parameter is supplied, the report is written to the display. +This command generates a report in XML format for the GPO with the specified `GUID`. +Because no **Path** parameter is supplied, the report is written to the display. ## PARAMETERS ### -All + Indicates that the cmdlet generates a report for all GPOs in the domain. ```yaml @@ -86,23 +101,26 @@ Accept wildcard characters: False ``` ### -Domain -Specifies the domain for this cmdlet. -You must specify the fully qualified domain name (FQDN) of the domain. + +Specifies the domain for this cmdlet. You must specify the fully qualified domain name (FQDN) of the +domain. For the **Get-GPOReport** cmdlet: - If a single GPO is specified, it must exist in this domain. -- If the *All* parameter is specified, a report is generated for each GPO in this domain. +- If the **All** parameter is specified, a report is generated for each GPO in this domain. -If you do not specify the *Domain* parameter, the domain of the user that is running the current session is used. -If the cmdlet is being run from a computer startup or shutdown script, the domain of the computer is used. -For more information, see the Notes section in the full Help. +If you do not specify the **Domain** parameter, the domain of the user that is running the current +session is used. If the cmdlet is being run from a computer startup or shutdown script, the domain +of the computer is used. For more information, see the Notes section in the full Help. -If you specify a domain that is different from the domain of the user that is running the current session or, (for a startup or shutdown script, the computer), a trust must exist between that domain and the domain of the user or the computer. +If you specify a domain that is different from the domain of the user that is running the current +session or, (for a startup or shutdown script, the computer), a trust must exist between that domain +and the domain of the user or the computer. -You can also refer to Domain by its built-in alias, **DomainName**. -For more information, see [about_Aliases](????????????). +You can also refer to Domain by its built-in alias, **DomainName**. For more information, see +[about_Aliases](????????????). ```yaml Type: System.String @@ -117,11 +135,12 @@ Accept wildcard characters: False ``` ### -Guid -Specifies the GPO for which to generate the report by its globally unique identifier (GUID). -The GUID uniquely identifies the GPO. -You can also refer to the *Guid* parameter by its built-in alias, **Id**. -For more information, see **about_Aliases**. +Specifies the GPO for which to generate the report by its globally unique identifier (GUID). The +GUID uniquely identifies the GPO. + +You can also refer to the **Guid** parameter by its built-in alias, **Id**. +For more information, see [about_Aliases](????????). ```yaml Type: Guid @@ -136,14 +155,15 @@ Accept wildcard characters: False ``` ### -Name + Specifies the GPO for which to generate the report by its display name. -The display name is not guaranteed to be unique in the domain. -If another GPO with the same display name exists in the domain an error occurs. -You can use the *Guid* parameter to uniquely identify a GPO. +The display name is not guaranteed to be unique in the domain. If another GPO with the same display +name exists in the domain an error occurs. You can use the **Guid** parameter to uniquely identify a +GPO. You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. -For more information, see **about_Aliases**. +For more information, see [about_Aliases](????????). ```yaml Type: System.String @@ -158,7 +178,8 @@ Accept wildcard characters: False ``` ### -Path -Specifies the path to the report file; for instance, c:\Reports\GpoReport.xml. + +Specifies the path to the report file; for instance, `c:\Reports\GpoReport.xml`. If no path is specified, the report is printed to the display. ```yaml @@ -174,6 +195,7 @@ Accept wildcard characters: False ``` ### -ReportType + Specifies the format of the report. You must specify either Html (for HTML format) or Xml (for XML format). These values are not case sensitive. @@ -194,13 +216,15 @@ Accept wildcard characters: False ``` ### -Server -Specifies the name of the domain controller that this cmdlet contacts to complete the operation. -You can specify either the fully qualified domain name (FQDN) or the host name. -If you do not specify the name by using the *Server* parameter, the primary domain controller (PDC) emulator is contacted. +Specifies the name of the domain controller that this cmdlet contacts to complete the operation. You +can specify either the fully qualified domain name (FQDN) or the host name. + +If you do not specify the name by using the **Server** parameter, the primary domain controller +(PDC) emulator is contacted. -You can refer to this parameter by its built-in alias, **DC**. -For more information, see **about_Aliases**. +You can refer to this parameter by its built-in alias, **DC**. For more information, see +[about_Aliases](????????). ```yaml Type: System.String @@ -216,36 +240,45 @@ Accept wildcard characters: False ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### Microsoft.GroupPolicy.Gpo + An object that represents a GPO. Collections that contain GPOs from different domains are not supported. ## OUTPUTS ### None + This cmdlet does not generate any output. ## NOTES -* You can use the *Domain* parameter to explicitly specify the domain for this cmdlet. - - If you do not explicitly specify the domain, the cmdlet uses a default domain. -The default domain is the domain that is used to access network resources by the security context under which the current session is running. -This domain is typically the domain of the user that is running the session. -For instance, the domain of the user who started the session by opening Windows PowerShell from the Program Files menu, or the domain of a user that is specified in a runas command. -However, computer startup and shutdown scripts run under the context of the LocalSystem account. -The LocalSystem account is a built-in local account, and it accesses network resources under the context of the computer account. -Therefore, when this cmdlet is run from a startup or shutdown script, the default domain is the domain to which the computer is joined. - - Only one domain can be used by an instance of this cmdlet. -If you pipe a collection of GPO (Microsoft.GroupPolicy.Gpo) objects to this cmdlet, the **DomainName** property of the first GPO object in the collection specifies the domain for the cmdlet. -This is because domainname is a built-in alias for the *Domain* parameter, and the *Domain* parameter can take its value by property name from the pipeline. -A non-terminating error occurs for any GPOs in the collection that are not in this domain. -If this domain is different from the domain of the user account, for startup or shutdown scripts, the computer account, a trust must exist between the two domains. +* You can use the **Domain** parameter to explicitly specify the domain for this cmdlet. + + If you do not explicitly specify the domain, the cmdlet uses a default domain. The default domain + is the domain that is used to access network resources by the security context under which the + current session is running. This domain is typically the domain of the user that is running the + session. For instance, the domain of the user who started the session by opening Windows + PowerShell from the Program Files menu, or the domain of a user that is specified in a runas + command. However, computer startup and shutdown scripts run under the context of the LocalSystem + account. The LocalSystem account is a built-in local account, and it accesses network resources + under the context of the computer account. Therefore, when this cmdlet is run from a startup or + shutdown script, the default domain is the domain to which the computer is joined. + + Only one domain can be used by an instance of this cmdlet. If you pipe a collection of GPO + (Microsoft.GroupPolicy.Gpo) objects to this cmdlet, the **DomainName** property of the first GPO + object in the collection specifies the domain for the cmdlet. This is because domainname is a + built-in alias for the **Domain** parameter, and the **Domain** parameter can take its value by + property name from the pipeline. A non-terminating error occurs for any GPOs in the collection + that are not in this domain. If this domain is different from the domain of the user account, for + startup or shutdown scripts, the computer account, a trust must exist between the two domains. ## RELATED LINKS diff --git a/docset/winserver2022-ps/grouppolicy/Get-GPPermission.md b/docset/winserver2022-ps/grouppolicy/Get-GPPermission.md index 994af42cbb..2d04002ead 100644 --- a/docset/winserver2022-ps/grouppolicy/Get-GPPermission.md +++ b/docset/winserver2022-ps/grouppolicy/Get-GPPermission.md @@ -29,16 +29,16 @@ Get-GPPermission [-Name] [-TargetName ] [-TargetType Get-GPPermission -Name "TestGpo" -TargetName "Domain Users" -TargetType Group +```powershell +Get-GPPermission -Name "TestGpo" -TargetName "Domain Users" -TargetType Group Trustee : Domain Users TrusteeType : Group @@ -51,8 +51,8 @@ Inherited : False This command gets the permission level for the Domain Users group on the GPO named TestGpo. ### Example 2: Get the permission level for group on the specified GPO with the specified GUID -``` -PS C:\> Get-GPPermission -Domain "Sales.Contoso.com" -Server "DC1" -GUID fa4a9473-6e2a-4b87-ab78-175e68d97bde -TargetName "Domain Admins" -TargetType Group +```powershell +Get-GPPermission -Domain "Sales.Contoso.com" -Server "DC1" -GUID fa4a9473-6e2a-4b87-ab78-175e68d97bde -TargetName "Domain Admins" -TargetType Group ``` This command gets the permission level for the Domain Admins group on the GPO with the GUID fa4a9473-6e2a-4b78-175e68d97bde in the Sales.Contoso.com domain. @@ -61,8 +61,8 @@ The DC1.sales.contoso.com domain controller is contacted to complete the operati If the domain of the user that is running the session (or, for startup and shutdown scripts, the computer) is different from the sales.contoso.com domain, a trust must exist between the two domains, or the command fails. ### Example 3: Get the permission level for all security principals on the specified GPO -``` -PS C:\> Get-GPPermission -Name "TestGPO" -All +```powershell +Get-GPPermission -Name "TestGPO" -All Trustee : Authenticated Users TrusteeType : WellKnownGroup @@ -93,8 +93,8 @@ Inherited : False This command gets the permission level for each security principal that has permissions on the GPO named TestGPO. ### Example 4: Get the display name of each GPO for a specific permissions -``` -PS C:\> Get-GPO -All | foreach-object { if($_ | Get-GPPermission -TargetName "contoso\Domain Admins" -TargetType Group -ErrorAction SilentlyContinue) {$_.DisplayName}} +```powershell +Get-GPO -All | foreach-object { if($_ | Get-GPPermission -TargetName "contoso\Domain Admins" -TargetType Group -ErrorAction SilentlyContinue) {$_.DisplayName}} Default Domain Policy TestGPO-1 @@ -118,6 +118,7 @@ For more information about the ErrorAction parameter, see about_CommonParameters ## PARAMETERS ### -All + Indicates that the cmdlet gets the permission level for each user, group, or computer that has permissions on the GPO. ```yaml @@ -138,7 +139,7 @@ You must specify the fully qualified domain name (FQDN) of the domain. For the **Get-GPPermission** cmdlet, the GPO for which to get the permission level must exist in this domain. -If you do not specify the *Domain* parameter, the domain of the user that is running the current session is used. +If you do not specify the **Domain** parameter, the domain of the user that is running the current session is used. If the cmdlet is being run from a computer startup or shutdown script, the domain of the computer is used. For more information, see the Notes section in the full Help. @@ -160,11 +161,12 @@ Accept wildcard characters: False ``` ### -Guid + Specifies the GPO from which to retrieve the permission level by its globally unique identifier (GUID). The GUID uniquely identifies the GPO. -You can also refer to the *Guid* parameter by its built-in alias, **Id**. -For more information, see **about_Aliases**. +You can also refer to the **Guid** parameter by its built-in alias, **Id**. +For more information, see [about_Aliases](????????). ```yaml Type: Guid @@ -183,10 +185,10 @@ Specifies the GPO from which to retrieve the permission level by its display nam The display name is not guaranteed to be unique in the domain. If another GPO with the same display name exists in the domain an error occurs. -You can use the *Guid* parameter to uniquely identify a GPO. +You can use the **Guid** parameter to uniquely identify a GPO. You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. -For more information, see **about_Aliases**. +For more information, see [about_Aliases](????????). ```yaml Type: System.String @@ -201,13 +203,14 @@ Accept wildcard characters: False ``` ### -Server + Specifies the name of the domain controller that this cmdlet contacts to complete the operation. You can specify either the fully qualified domain name (FQDN) or the host name. -If you do not specify the name by using the *Server* parameter, the PDC emulator is contacted. +If you do not specify the name by using the **Server** parameter, the PDC emulator is contacted. You can also refer to the *Server* parameter by its built-in alias, **DC**. -For more information, see **about_Aliases**. +For more information, see [about_Aliases](????????). ```yaml Type: System.String diff --git a/docset/winserver2022-ps/grouppolicy/Get-GPPrefRegistryValue.md b/docset/winserver2022-ps/grouppolicy/Get-GPPrefRegistryValue.md index 6f28fa2543..083b9cc04d 100644 --- a/docset/winserver2022-ps/grouppolicy/Get-GPPrefRegistryValue.md +++ b/docset/winserver2022-ps/grouppolicy/Get-GPPrefRegistryValue.md @@ -44,8 +44,8 @@ You can use this information to browse for Registry preference items. ## EXAMPLES ### Example 1: Get the Registry preference item value -``` -PS C:\> Get-GPPrefRegistryValue -Name "TestGPO" -Context User -Key "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey" -ValueName "ValueOne" +```powershell +Get-GPPrefRegistryValue -Name "TestGPO" -Context User -Key "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey" -ValueName "ValueOne" KeyPath : SOFTWARE\Microsoft\ExampleKey FullKeyPath : HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey Hive : LocalMachine @@ -62,8 +62,8 @@ HasValue : True This command gets the Registry preference item that is configured for the registry value HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey with value name ValueOne from User Configuration in the GPO named TestGPO. ### Example 2: Get all Registry preference items -``` -PS C:\> Get-GPPrefRegistryValue -Name "TestGPO" -Context User -Key "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey" +```powershell +Get-GPPrefRegistryValue -Name "TestGPO" -Context User -Key "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey" KeyPath : SOFTWARE\Microsoft\ExampleKey FullKeyPath : HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey Hive : LocalMachine @@ -126,12 +126,13 @@ Accept wildcard characters: False ``` ### -Domain + Specifies the domain for this cmdlet. You must specify the fully qualified domain name (FQDN) of the domain. For the **Get-GPPrefRegistryValue** cmdlet, the GPO for which to get the Registry preference item must exist in this domain. -If you do not specify the *Domain* parameter, the domain of the user that is running the current session is used. +If you do not specify the **Domain** parameter, the domain of the user that is running the current session is used. If the cmdlet is being run from a computer startup or shutdown script, the domain of the computer is used. For more information, see the Notes section in the full Help. @@ -153,11 +154,12 @@ Accept wildcard characters: False ``` ### -Guid + Specifies the GPO from which this cmdlet gets the Registry preference item by its globally unique identifier (GUID). The GUID uniquely identifies the GPO. -You can also refer to the *Guid* parameter by its built-in alias, **Id**. -For more information, see **about_Aliases**. +You can also refer to the **Guid** parameter by its built-in alias, **Id**. +For more information, see [about_Aliases](????????). ```yaml Type: Guid @@ -191,7 +193,7 @@ The *Key* parameter can be specified with or without the *ValueName* parameter: - If the *ValueName* parameter is not specified, all Registry preference items that configure the registry key and any of its first-level values are retrieved. You can also refer to the Key parameter by its built-in alias, FullKeyPath. -For more information, see **about_Aliases**. +For more information, see [about_Aliases](????????). ```yaml Type: System.String @@ -210,7 +212,7 @@ Specifies the GPO from which this cmdlet gets the Registry preference item by it The display name is not guaranteed to be unique in the domain. If another GPO with the same display name exists in the domain an error occurs. -You can use the *Guid* parameter to uniquely identify a GPO. +You can use the **Guid** parameter to uniquely identify a GPO. You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. For more information, **see about_Aliases**. @@ -243,13 +245,14 @@ Accept wildcard characters: False ``` ### -Server + Specifies the name of the domain controller that this cmdlet contacts to complete the operation. You can specify either the fully qualified domain name (FQDN) or the host name. If you do not specify the name through the *Server* parameter, the primary domain controller (PDC) emulator is contacted. You can also refer to the *Server* parameter by its built-in alias, **DC**. -For more information, see **about_Aliases**. +For more information, see [about_Aliases](????????). ```yaml Type: System.String @@ -307,7 +310,7 @@ You can pipe these objects to the following cmdlets: * If a Registry preference item for the specified registry key or value is not found, a non-terminating error occurs. - You can use the *Domain* parameter to explicitly specify the domain for this cmdlet. + You can use the **Domain** parameter to explicitly specify the domain for this cmdlet. If you do not explicitly specify the domain, the cmdlet uses a default domain. The default domain is the domain that is used to access network resources by the security context under which the current session is running. diff --git a/docset/winserver2022-ps/grouppolicy/Get-GPRegistryValue.md b/docset/winserver2022-ps/grouppolicy/Get-GPRegistryValue.md index 9995255eca..edbe15752c 100644 --- a/docset/winserver2022-ps/grouppolicy/Get-GPRegistryValue.md +++ b/docset/winserver2022-ps/grouppolicy/Get-GPRegistryValue.md @@ -11,6 +11,7 @@ title: Get-GPRegistryValue # Get-GPRegistryValue ## SYNOPSIS + Gets one or more registry-based policy settings under either Computer Configuration or User Configuration in a GPO. ## SYNTAX @@ -47,8 +48,8 @@ You can use this information to browse for registry-based policy settings. ## EXAMPLES ### Example 1: Get the group policy registry value from the specified key -``` -PS C:\> Get-GPRegistryValue -Name TestGPO -Key "HKEY_CURRENT_USER\Software\Policies\Microsoft\ExampleKey" -ValueName "ValueOne" +```powershell +Get-GPRegistryValue -Name TestGPO -Key "HKEY_CURRENT_USER\Software\Policies\Microsoft\ExampleKey" -ValueName "ValueOne" KeyPath : Software\Policies\Microsoft\ExampleKey FullKeyPath : HKEY_CURRENT_USER\Software\Policies\Microsoft\ExampleKey Hive : CurrentUser @@ -62,8 +63,8 @@ HasValue : True This command gets the registry-based policy setting that configures the registry value HKEY_CURRENT_USER\Software\Policies\Microsoft\ExampleKey:ValueOne from User Configuration in the GPO named TestGPO. ### Example 2: Get all group policy registry values from the specified key -``` -PS C:\> Get-GPRegistryValue -Name "TestGPO" -Key "HKCU\Software\Policies\Microsoft\ExampleKey" +```powershell +Get-GPRegistryValue -Name "TestGPO" -Key "HKCU\Software\Policies\Microsoft\ExampleKey" KeyPath : Software\Policies\Microsoft\ExampleKey FullKeyPath : HKEY_CURRENT_USER\Software\Policies\Microsoft\ExampleKey Hive : CurrentUser @@ -99,12 +100,13 @@ The second registry-based policy setting (ValueTwo) is disabled (its **PolicySta ## PARAMETERS ### -Domain + Specifies the domain for this cmdlet. You must specify the fully qualified domain name (FQDN) of the domain (for instance: sales.contoso.com). For the **Get-GPRegistryValue** cmdlet, the GPO for which to get registry-based policy settings must exist in this domain. -If you do not specify the *Domain* parameter, the domain of the user that is running the current session is used. +If you do not specify the **Domain** parameter, the domain of the user that is running the current session is used. If the cmdlet is being run from a computer startup or shutdown script, the domain of the computer is used. For more information, see the Notes section in the full Help. @@ -126,11 +128,12 @@ Accept wildcard characters: False ``` ### -Guid + Specifies the GPO from which to retrieve the registry-based policy setting by its globally unique identifier (GUID). The GUID uniquely identifies the GPO. -You can also refer to the *Guid* parameter by its built-in alias, **Id**. -For more information, see **about_Aliases**. +You can also refer to the **Guid** parameter by its built-in alias, **Id**. +For more information, see [about_Aliases](????????). ```yaml Type: Guid @@ -161,7 +164,7 @@ You can specify: - The Key parameter together with the *ValueName* parameter to get the registry-based policy setting that configures a specific registry value. You can also refer to the *Key* parameter by its built-in alias FullKeyPath. -For more information, see **about_Aliases**. +For more information, see [about_Aliases](????????). ```yaml Type: System.String @@ -180,10 +183,10 @@ Specifies the GPO from which this cmdlet gets the registry-based policy setting The display name is not guaranteed to be unique in the domain. If another GPO with the same display name exists in the domain an error occurs. -You can use the *Guid* parameter to uniquely identify a GPO. +You can use the **Guid** parameter to uniquely identify a GPO. You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. -For more information, see **about_Aliases**. +For more information, see [about_Aliases](????????). ```yaml Type: System.String @@ -198,10 +201,11 @@ Accept wildcard characters: False ``` ### -Server + Specifies the name of the domain controller that this cmdlet contacts to complete the operation. You can specify either the fully qualified domain name (FQDN) or the host name. -If you do not specify the name by using the *Server* parameter, the primary domain controller (PDC) emulator is contacted. +If you do not specify the name by using the **Server** parameter, the primary domain controller (PDC) emulator is contacted. ```yaml Type: System.String @@ -260,7 +264,7 @@ These objects can be piped into the following cmdlets: If the specified registry key cannot be located in policy (the registry key is not configured), a corresponding error message is displayed. - You can use the *Domain* parameter to explicitly specify the domain for this cmdlet. + You can use the **Domain** parameter to explicitly specify the domain for this cmdlet. If you do not explicitly specify the domain, the cmdlet uses a default domain. The default domain is the domain that is used to access network resources by the security context under which the current session is running. diff --git a/docset/winserver2022-ps/grouppolicy/Get-GPResultantSetOfPolicy.md b/docset/winserver2022-ps/grouppolicy/Get-GPResultantSetOfPolicy.md index c21e039b05..62d8618523 100644 --- a/docset/winserver2022-ps/grouppolicy/Get-GPResultantSetOfPolicy.md +++ b/docset/winserver2022-ps/grouppolicy/Get-GPResultantSetOfPolicy.md @@ -11,6 +11,7 @@ title: Get-GPResultantSetOfPolicy # Get-GPResultantSetOfPolicy ## SYNOPSIS + Gets and writes the RSoP information for a user, a computer, or both to a file. ## SYNTAX @@ -26,8 +27,8 @@ The **Get-GPResultantSetOfPolicy** cmdlet gets and writes the Resultant Set of P ## EXAMPLES ### Example 1: Generate a report for the default user that is running on the current session -``` -PS C:\> Get-GPResultantSetOfPolicy -ReportType Xml -Path "c:\reports\LocalUserAndComputerReport.xml" +```powershell +Get-GPResultantSetOfPolicy -ReportType Xml -Path "c:\reports\LocalUserAndComputerReport.xml" RsopMode : Logging Namespace : \\COMPUTER-02-PC\Root\Rsop\NS2BBE3F29_794F_4EAE_B9DB_0A2310622534 LoggingComputer : COMPUTER-02 @@ -39,8 +40,8 @@ This command generates a report for the default user that is running on the curr The report is generated in XML format, and is written to the specified file. ### Example 2: Generate a report for the specified computer -``` -PS C:\> Get-GPResultantSetOfPolicy -ReportType Xml -Computer "computer-08.contso.com" -Path "c:\reports\computer-08.xml" +```powershell +Get-GPResultantSetOfPolicy -ReportType Xml -Computer "computer-08.contso.com" -Path "c:\reports\computer-08.xml" RsopMode : Logging Namespace : \\computer-08.contoso.com\Root\Rsop\NS643B2E66_8F54_4407_A813_7D47173B0922 LoggingComputer : computer-08.contoso.com @@ -53,8 +54,8 @@ The computer is specified by its fully qualified domain name (FQDN), computer-08 The report is generated in XML format, and is written to the specified file. ### Example 3: Generate a report for the specified user in HTML format and save it to the specified file -``` -PS C:\> Get-GPResultantSetOfPolicy -User "Contoso\PattiFul" -ReportType Html -Path "c:\reports\UserReport.html" +```powershell +Get-GPResultantSetOfPolicy -User "Contoso\PattiFul" -ReportType Html -Path "c:\reports\UserReport.html" RsopMode : Logging Namespace : \\COMPUTER-02\Root\Rsop\NS78355E76_C754_41B5_8F5E_B61551837A62 LoggingComputer : COMPUTER-02 @@ -65,8 +66,8 @@ LoggingMode : User This command generates a report for the specified user (contoso\someuser) in HTML format and saves it to the specified file. ### Example 4: Generate a report for the specified computer and user in HTML format and save it to the specified file -``` -PS C:\> Get-GPResultantSetOfPolicy -user someuser -computer contoso.com\computer-08 -reporttype html -path c:\reports\UserAndComputerReport.html +```powershell +Get-GPResultantSetOfPolicy -user someuser -computer contoso.com\computer-08 -reporttype html -path c:\reports\UserAndComputerReport.html RsopMode : Logging Namespace : \\computer-08\Root\Rsop\NS72116C25_6570_4586_9B79_FC4F71372E57 LoggingComputer : contoso.com\computer-08 @@ -103,9 +104,10 @@ Accept wildcard characters: False ``` ### -Path + Specifies the path to the report file; for instance, c:\Reports\GpRsopReport.xml. -You can also refer to the *Path* parameter by its built-in alias, filepath. +You can also refer to the **Path** parameter by its built-in alias, filepath. For more information, see [about_Aliases](????????????). ```yaml @@ -121,6 +123,7 @@ Accept wildcard characters: False ``` ### -ReportType + Specifies the format of the RSoP report. You must specify either Html (for HTML format) or Xml (for XML format). These values are not case sensitive. diff --git a/docset/winserver2022-ps/grouppolicy/Get-GPStarterGPO.md b/docset/winserver2022-ps/grouppolicy/Get-GPStarterGPO.md index ca2c81a4fc..b0810a906d 100644 --- a/docset/winserver2022-ps/grouppolicy/Get-GPStarterGPO.md +++ b/docset/winserver2022-ps/grouppolicy/Get-GPStarterGPO.md @@ -11,6 +11,7 @@ title: Get-GPStarterGPO # Get-GPStarterGPO ## SYNOPSIS + Gets one Starter GPO or all Starter GPOs in a domain. ## SYNTAX @@ -32,15 +33,15 @@ Get-GPStarterGPO [-Domain ] [-Server ] [-All] [ Get-GPStarterGPO -Name "Windows Vista EC User" +```powershell +Get-GPStarterGPO -Name "Windows Vista EC User" DisplayName : Windows Vista EC User Id : 8780588e-ef91-442b-bd5f-2d50de7abf76 Owner : BUILTIN\Administrators @@ -59,8 +60,8 @@ For more information about each of these settings, see the [Windows Vista Securi This command gets the Starter GPO named Windows Vista EC User. ### Example 2: Get a Starter GPO by name using the pipeline operator -``` -PS C:\> Get-GPStarterGPO -Name "Windows Vista EC User" | New-GPO -Name "TestGPO" -Comment "Create a GPO by using a Starter GPO" +```powershell +Get-GPStarterGPO -Name "Windows Vista EC User" | New-GPO -Name "TestGPO" -Comment "Create a GPO by using a Starter GPO" DisplayName : TestGPO DomainName : contoso.com Owner : CONTOSO\Domain Admins @@ -95,12 +96,13 @@ Accept wildcard characters: False ``` ### -Domain + Specifies the domain for this cmdlet. You must specify the fully qualified domain name (FQDN) of the domain. For the **Get-GPStarterGPO** cmdlet, the Starter GPO must exist in this domain. -If you do not specify the *Domain* parameter, the domain of the user that is running the current session is used. +If you do not specify the **Domain** parameter, the domain of the user that is running the current session is used. If the cmdlet is being run from a computer startup or shutdown script, the domain of the computer is used. For more information, see the Notes section in the full Help. @@ -125,8 +127,8 @@ Accept wildcard characters: False Specifies the Starter GPO that this cmdlet gets by its globally unique identifier (GUID). The GUID uniquely identifies the Starter GPO. -You can also refer to the *Guid* parameter by its built-in alias, **Id**. -For more information, see **about_Aliases**. +You can also refer to the **Guid** parameter by its built-in alias, **Id**. +For more information, see [about_Aliases](????????). ```yaml Type: Guid @@ -145,10 +147,10 @@ Specifies the display name of the Starter GPO that this cmdlet. The display name is not guaranteed to be unique in the domain. If another Starter GPO with the same display name exists in the domain an error occurs. -You can use the *Guid* parameter to uniquely identify a Starter GPO. +You can use the **Guid** parameter to uniquely identify a Starter GPO. You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. -For more information, see **about_Aliases**. +For more information, see [about_Aliases](????????). ```yaml Type: System.String @@ -163,13 +165,14 @@ Accept wildcard characters: False ``` ### -Server + Specifies the name of the domain controller that this cmdlet contacts to complete the operation. You can specify either the fully qualified domain name (FQDN) or the host name. -If you do not specify the name by using the *Server* parameter, the primary domain controller (PDC) emulator is contacted. +If you do not specify the name by using the **Server** parameter, the primary domain controller (PDC) emulator is contacted. You can also refer to the *Server* parameter by its built-in alias, **DC**. -For more information, see **about_Aliases**. +For more information, see [about_Aliases](????????). ```yaml Type: System.String @@ -200,7 +203,7 @@ This cmdlet returns a Starter GPO object. ## NOTES -* You can use the *Domain* parameter to explicitly specify the domain for this cmdlet. +* You can use the **Domain** parameter to explicitly specify the domain for this cmdlet. If you do not explicitly specify the domain, the cmdlet uses a default domain. The default domain is the domain that is used to access network resources by the security context under which the current session is running. diff --git a/docset/winserver2022-ps/grouppolicy/Import-GPO.md b/docset/winserver2022-ps/grouppolicy/Import-GPO.md index 773d8dc279..f3cdc72ba3 100644 --- a/docset/winserver2022-ps/grouppolicy/Import-GPO.md +++ b/docset/winserver2022-ps/grouppolicy/Import-GPO.md @@ -11,44 +11,51 @@ title: Import-GPO # Import-GPO ## SYNOPSIS + Imports the Group Policy settings from a backed-up GPO into a specified GPO. ## SYNTAX ### ImportGUID (Default) + ``` Import-GPO -BackupId -Path [-TargetGuid ] [-TargetName ] - [-MigrationTable ] [-CreateIfNeeded] [-Domain ] [-Server ] [-WhatIf] [-Confirm] - [] + [-MigrationTable ] [-CreateIfNeeded] [-Domain ] [-Server ] [-WhatIf] + [-Confirm] [] ``` ### ImportName + ``` Import-GPO -BackupGpoName -Path [-TargetGuid ] [-TargetName ] - [-MigrationTable ] [-CreateIfNeeded] [-Domain ] [-Server ] [-WhatIf] [-Confirm] - [] + [-MigrationTable ] [-CreateIfNeeded] [-Domain ] [-Server ] [-WhatIf] + [-Confirm] [] ``` ## DESCRIPTION + The **Import-GPO** cmdlet imports the settings from a Group Policy Object (GPO) backup into a specified target GPO. The target GPO can be in a different domain or forest than the backup that was made and it does not have to exist prior to the operation. -Use the *Path* parameter to specify the location of the backup and then use the *BackupGpoName* parameter to specify the GPO name of the backup to use, or the *BackupId* parameter to specify the backup ID (GUID) of the backup to use. +Use the **Path** parameter to specify the location of the backup and then use the **BackupGpoName** parameter to specify the GPO name of the backup to use, or the **BackupId** parameter to specify the backup ID (GUID) of the backup to use. If you specify a GPO name, the cmdlet imports the most recent backup. To import an earlier version of a GPO backup, you must use the *BackupID* parameter to specify the unique backup ID for the particular version. This is the GUID that uniquely identifies the backup within its backup directory. -Use the *TargetName* parameter or the *TargetGuid* parameter to specify the target GPO into which the settings should be imported. -Use the optional *MigrationTable* parameter to map security principals and Universal Naming Convention (UNC) paths across domains. +Use the **TargetName** parameter or the **TargetGuid** parameter to specify the target GPO into which the settings should be imported. +Use the optional **MigrationTable** parameter to map security principals and Universal Naming Convention (UNC) paths across domains. Use the *CreateIfNeeded* parameter to create a new GPO if the specified target GPO does not exist. ## EXAMPLES ### Example 1: Import the settings from the latest backup to another directory in the same domain + +```powershell +import-gpo -BackupGpoName TestGPO -TargetName TestGPO -path c:\backups ``` -PS C:\> import-gpo -BackupGpoName TestGPO -TargetName TestGPO -path c:\backups +```Output DisplayName : TestGPO DomainName : contoso.com Owner : CONTOSO\Domain Admins @@ -62,13 +69,18 @@ ComputerVersion : AD Version: 5, SysVol Version: 5 WmiFilter : ``` -This command imports the settings from the most recent backup of the GPO named TestGPO in the c:\backups directory into a GPO of the same name in the current domain. -If a GPO named TestGPO does not exist in the current domain, the command fails because the CreateIfNeeded parameter is not specified. +This command imports the settings from the most recent backup of the GPO named `TestGPO` in the +`c:\backups` directory into a GPO of the same name in the current domain. If a GPO named TestGPO +does not exist in the current domain, the command fails because the CreateIfNeeded parameter is not +specified. ### Example 2: Import the settings from specified backup in the same directory in the same domain + +```powershell +import-gpo -BackupId A491D730-F3ED-464C-B8C9-F50562C536AA -TargetName TestGPO -path c:\backups -CreateIfNeeded ``` -PS C:\> import-gpo -BackupId A491D730-F3ED-464C-B8C9-F50562C536AA -TargetName TestGPO -path c:\backups -CreateIfNeeded +```Output DisplayName : TestGPO DomainName : contoso.com Owner : CONTOSO\Domain Admins @@ -82,14 +94,18 @@ ComputerVersion : AD Version: 6, SysVol Version: 6 WmiFilter : ``` -This command imports the settings from the specified backup in the c:\backups directory into a GPO that is named TestGPO in the current domain. -The BackupId parameter is used to specify the GUID of the GPO backup to use. -Because the CreateIfNeeded parameter is specified, if a GPO named TestGPO does not exist in the current domain, one is created before the settings are imported. +This command imports the settings from the specified backup in the c:\backups directory into a GPO +that is named TestGPO in the current domain. The BackupId parameter is used to specify the GUID of +the GPO backup to use. Because the CreateIfNeeded parameter is specified, if a GPO named TestGPO +does not exist in the current domain, one is created before the settings are imported. ### Example 3: Import the settings from the latest backup to another directory to the current domain + +```powershell +Import-GPO -BackupGpoName TestGPO -Path D:\Backups -TargetName NewTestGPO -MigrationTable D:\Tables\Migtable1.migtable -CreateIfNeeded ``` -PS C:\> Import-GPO -BackupGpoName TestGPO -Path D:\Backups -TargetName NewTestGPO -MigrationTable D:\Tables\Migtable1.migtable -CreateIfNeeded +```Output DisplayName : NewTestGPO DomainName : contoso.com Owner : CONTOSO\Domain Admins @@ -103,19 +119,21 @@ ComputerVersion : AD Version: 1, SysVol Version: 1 WmiFilter : ``` -This command imports the settings from the most recent backup of the GPO named TestGPO from the d:\backups directory to a GPO named NewTestGPO in the current domain. -The specified migration table is used to migrate security principals and UNC paths to the new GPO. -Because the CreateIfNeeded parameter is specified, the GPO is created if it does not already exist. +This command imports the settings from the most recent backup of the GPO named TestGPO from the +d:\backups directory to a GPO named NewTestGPO in the current domain. The specified migration table +is used to migrate security principals and UNC paths to the new GPO. Because the CreateIfNeeded +parameter is specified, the GPO is created if it does not already exist. ## PARAMETERS ### -BackupGpoName -Specifies the display name of the backed-up GPO from which this cmdlet imports the settings. -The most recent backup of the GPO is used. -You can use the *BackupId* parameter to specify a particular version to use when multiple backups of the same GPO exist in the backup directory. -You can also refer to the *BackupGpoName* parameter by its built-in alias, **DisplayName**. -For more information, see [about_Aliases](????????????). +Specifies the display name of the backed-up GPO from which this cmdlet imports the settings. The +most recent backup of the GPO is used. You can use the *BackupId* parameter to specify a particular +version to use when multiple backups of the same GPO exist in the backup directory. + +You can also refer to the **BackupGpoName** parameter by its built-in alias, **DisplayName**. For +more information, see [about_Aliases](????????????). ```yaml Type: System.String @@ -130,14 +148,15 @@ Accept wildcard characters: False ``` ### -BackupId -Specifies the backup ID of a GPO backup. -The backup ID is a globally unique identifier (GUID) that uniquely identifies the backup. -You can use this parameter to specify a particular version of a backed-up GPO in the backup directory. + +Specifies the backup ID of a GPO backup. The backup ID is a globally unique identifier (GUID) that +uniquely identifies the backup. You can use this parameter to specify a particular version of a +backed-up GPO in the backup directory. The backup ID is different from the ID of the GPO that was backed up. -You can also refer to the *BackupId* parameter by its built-in alias, **Id**. -For more information, see **about_Aliases**. +You can also refer to the *BackupId* parameter by its built-in alias, **Id**. For more information, +see [about_Aliases](????????). ```yaml Type: Guid @@ -152,6 +171,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -167,6 +187,7 @@ Accept wildcard characters: False ``` ### -CreateIfNeeded + Indicates that the cmdlet creates a GPO from the backup if the specified target GPO does not exist. ```yaml @@ -182,19 +203,22 @@ Accept wildcard characters: False ``` ### -Domain -Specifies the domain for this cmdlet. -You must specify the fully qualified domain name (FQDN) of the domain. + +Specifies the domain for this cmdlet. You must specify the fully qualified domain name (FQDN) of the +domain. For the **Import-GPO** cmdlet, this is the domain into which you want to import the GPO. -If you do not specify the *Domain* parameter, the domain of the user that is running the current session is used. -If the cmdlet is being run from a computer startup or shutdown script, the domain of the computer is used. -For more information, see the Notes section in the full Help. +If you do not specify the **Domain** parameter, the domain of the user that is running the current +session is used. If the cmdlet is being run from a computer startup or shutdown script, the domain +of the computer is used. For more information, see the Notes section in the full Help. -If you specify a domain that is different from the domain of the user that is running the current session (or, for a startup or shutdown script, the computer), a trust must exist between that domain and the domain of the user, or the computer. +If you specify a domain that is different from the domain of the user that is running the current +session (or, for a startup or shutdown script, the computer), a trust must exist between that domain +and the domain of the user, or the computer. -You can also refer to the **Domain** parameter by its built-in alias, **DomainName**. -For more information, see **about_Aliases**. +You can also refer to the **Domain** parameter by its built-in alias, **DomainName**. For more +information, see [about_Aliases](????????). ```yaml Type: System.String @@ -209,8 +233,9 @@ Accept wildcard characters: False ``` ### -MigrationTable -Specifies the path to a migration table file. -You can use a migration table to map security principals and UNC paths across domains. + +Specifies the path to a migration table file. You can use a migration table to map security +principals and UNC paths across domains. ```yaml Type: System.String @@ -225,9 +250,11 @@ Accept wildcard characters: False ``` ### -Path + Specifies the path to the backup directory. -You can also refer to the *Path* parameter by its built-in aliases: backuplocation or backupdirectory. +You can also refer to the **Path** parameter by its built-in aliases: backuplocation or +backupdirectory. ```yaml Type: System.String @@ -242,10 +269,11 @@ Accept wildcard characters: False ``` ### -Server -Specifies the name of the domain controller that this cmdlet contacts to complete the operation. -You can specify either the fully qualified domain name (FQDN) or the host name -If you do not specify the name by using the *Server* parameter, the primary domain controller (PDC) emulator is contacted. +Specifies the name of the domain controller that this cmdlet contacts to complete the operation. You +can specify either the fully qualified domain name (FQDN) or the host name + +If you do not specify the name by using the **Server** parameter, the primary domain controller (PDC) emulator is contacted. You can also refer to the *Server* parameter by its built-in alias, **DC**. @@ -262,10 +290,11 @@ Accept wildcard characters: False ``` ### -TargetGuid -Specifies the GUID of the GPO into which this cmdlet imports the settings. -Use the *CreateIfNeeded* parameter to force the GPO to be created if it does not already exist in the domain. -You must specify either the *TargetGuid* parameter or the *TargetName* parameter. +Specifies the GUID of the GPO into which this cmdlet imports the settings. Use the *CreateIfNeeded* +parameter to force the GPO to be created if it does not already exist in the domain. + +You must specify either the **TargetGuid** parameter or the **TargetName** parameter. ```yaml Type: Guid @@ -280,10 +309,12 @@ Accept wildcard characters: False ``` ### -TargetName -Specifies the display name of the GPO into which the settings are to be imported. -Use the *CreateIfNeeded* parameter to force the GPO to be created if it does not already exist in the domain. -You must specify either the *TargetGuid* parameter or the *TargetName* parameter. +Specifies the display name of the GPO into which the settings are to be imported. Use the +*CreateIfNeeded* parameter to force the GPO to be created if it does not already exist in the +domain. + +You must specify either the **TargetGuid** parameter or the **TargetName** parameter. ```yaml Type: System.String @@ -316,11 +347,15 @@ Accept wildcard characters: False ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### Microsoft.GroupPolicy.GpoBackup + You can pipe an object that represents a GPO backup on the file system to this cmdlet. ## OUTPUTS @@ -331,16 +366,20 @@ This cmdlet returns an object that represents the GPO after the settings have be ## NOTES -* You can use the **Import-GPO** to copy settings from a GPO backup in one domain to the same domain or another domain in the same or different forest. +* You can use the **Import-GPO** to copy settings from a GPO backup in one domain to the same domain + or another domain in the same or different forest. - You can use the *Domain* parameter to explicitly specify the domain for this cmdlet. + You can use the **Domain** parameter to explicitly specify the domain for this cmdlet. - If you do not explicitly specify the domain, the cmdlet uses a default domain. -The default domain is the domain that is used to access network resources by the security context under which the current session is running. -This domain is typically the domain of the user that is running the session for example, the domain of the user who started the session by opening Windows PowerShell or the domain of a user that is specified in a runas command. -However, computer startup and shutdown scripts run under the context of the LocalSystem account. -The LocalSystem account is a built-in local account, and it accesses network resources under the context of the computer account. -Therefore, when this cmdlet is run from a startup or shutdown script, the default domain is the domain to which the computer is joined. + If you do not explicitly specify the domain, the cmdlet uses a default domain. The default domain + is the domain that is used to access network resources by the security context under which the + current session is running. This domain is typically the domain of the user that is running the + session for example, the domain of the user who started the session by opening Windows PowerShell + or the domain of a user that is specified in a runas command. However, computer startup and + shutdown scripts run under the context of the LocalSystem account. The LocalSystem account is a + built-in local account, and it accesses network resources under the context of the computer + account. Therefore, when this cmdlet is run from a startup or shutdown script, the default domain + is the domain to which the computer is joined. ## RELATED LINKS diff --git a/docset/winserver2022-ps/grouppolicy/Invoke-GPUpdate.md b/docset/winserver2022-ps/grouppolicy/Invoke-GPUpdate.md index bdd8f98387..ea710c80e1 100644 --- a/docset/winserver2022-ps/grouppolicy/Invoke-GPUpdate.md +++ b/docset/winserver2022-ps/grouppolicy/Invoke-GPUpdate.md @@ -11,25 +11,31 @@ title: Invoke-GPUpdate # Invoke-GPUpdate ## SYNOPSIS + Schedules a remote Group Policy refresh on the specified computer. ## SYNTAX ### NonSyncSet (Default) + ``` -Invoke-GPUpdate [-AsJob] [-Boot] [[-Computer] ] [[-RandomDelayInMinutes] ] [-Force] [-LogOff] - [-Target ] [] +Invoke-GPUpdate [-AsJob] [-Boot] [[-Computer] ] [[-RandomDelayInMinutes] ] [-Force] +[-LogOff] [-Target ] [] ``` ### SyncSet + ``` Invoke-GPUpdate [-AsJob] [-Boot] [[-Computer] ] [[-RandomDelayInMinutes] ] [-LogOff] - [-Target ] [-Sync] [] +[-Target ] [-Sync] [] ``` ## DESCRIPTION -The **Invoke-GPUpdate** cmdlet refreshes Group Policy settings, including security settings that are set on remote computers by scheduling the running of the Gpupdate command on a remote computer. -You can combine this cmdlet in a scripted fashion to schedule the Gpupdate command on a group of computers. + +The **Invoke-GPUpdate** cmdlet refreshes Group Policy settings, including security settings that are +set on remote computers by scheduling the running of the Gpupdate command on a remote computer. You +can combine this cmdlet in a scripted fashion to schedule the Gpupdate command on a group of +computers. The refresh can be scheduled to immediately start a refresh of policy settings or wait for a specified period of time, up to a maximum of 31 days. To avoid putting a load on the network, the refresh times will be offset by a random delay. @@ -37,15 +43,15 @@ To avoid putting a load on the network, the refresh times will be offset by a ra ## EXAMPLES ### Example 1: Schedule a Group Policy refresh on the current computer -``` -PS C:\> Invoke-GPUpdate +```powershell +Invoke-GPUpdate ``` This command schedules a Group Policy refresh on the computer on which you are running the **Invoke-GPUpdate** cmdlet. ### Example 2: Schedule a Group Policy refresh on a remote computer -``` -PS C:\> Invoke-GPUpdate -Computer "CONTOSO\COMPUTER-02" -Target "User" +```powershell +Invoke-GPUpdate -Computer "CONTOSO\COMPUTER-02" -Target "User" ``` This command schedules a Group Policy refresh on a remote computer named CONTOSO\COMPUTER-02 that only schedule to update the user policy settings in synchronous mode. @@ -228,6 +234,7 @@ This cmdlet does not take any object as input. ## OUTPUTS ### None + This cmdlet does not generate any output. ## NOTES diff --git a/docset/winserver2022-ps/grouppolicy/New-GPLink.md b/docset/winserver2022-ps/grouppolicy/New-GPLink.md index 334cced92d..a39da391ff 100644 --- a/docset/winserver2022-ps/grouppolicy/New-GPLink.md +++ b/docset/winserver2022-ps/grouppolicy/New-GPLink.md @@ -11,6 +11,7 @@ title: New-GPLink # New-GPLink ## SYNOPSIS + Links a GPO to a site, domain, or OU. ## SYNTAX @@ -38,8 +39,8 @@ You can use other parameters to specify whether the link is enabled, whether the ## EXAMPLES ### Example 1: Create and link a GPO to a domain -``` -PS C:\> New-GPO -Name "MyGPO" | New-GPLink -Target "ou=MyOU,dc=contoso,dc=com" -LinkEnabled Yes +```powershell +New-GPO -Name "MyGPO" | New-GPLink -Target "ou=MyOU,dc=contoso,dc=com" -LinkEnabled Yes GpoId : c25daa3e-5d05-43b3-87ca-0a237882fd63 DisplayName : MyGPO Enabled : True @@ -55,8 +56,8 @@ Because this command can take a GPO as input, you can insert any command that re For instance, you can insert **Set-GPPermissions** commands to set permissions on the GPO, Set-GPRegistryValue cmdlet to configure one or more registry-based policy settings for the GPO, or the **Set-GPPrefRegistryValue** cmdlet to configure one or more Registry preference items for the GPO. ### Example 2: Link a GPO in the domain of the user -``` -PS C:\> New-GPLink -Name "TestGPO" -Target "dc=contoso,dc=com" +```powershell +New-GPLink -Name "TestGPO" -Target "dc=contoso,dc=com" GpoId : d5a3b4e7-e37a-4070-846c-568689eaa838 DisplayName : TestGPO Enabled : True @@ -69,8 +70,8 @@ This command links the TestGPO GPO in the domain of the user (or, for a startup If the domain of the user, or the computer, is different than contoso.com, a trust relationship must exist between the two domains. ### Example 3: Link a GPO to a site and enforce the link -``` -PS C:\> New-GPLink -name "TestGPO" -Target "Test-Site" -Enforced Yes +```powershell +New-GPLink -name "TestGPO" -Target "Test-Site" -Enforced Yes GpoId : d5a3b4e7-e37a-4070-846c-568689eaa838 DisplayName : TestGPO Enabled : True @@ -84,6 +85,7 @@ This command links the TestGPO GPO to the site named Test-Site and sets the link ## PARAMETERS ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -99,6 +101,7 @@ Accept wildcard characters: False ``` ### -Domain + Specifies the domain for this cmdlet. You must specify the fully qualified domain name (FQDN) of the domain. @@ -110,7 +113,7 @@ For the **New-GPLink** cmdlet: To specify a domain to link to, use the *Target* parameter. -If you do not specify the *Domain* parameter, the domain of the user that is running the current session is used. +If you do not specify the **Domain** parameter, the domain of the user that is running the current session is used. If the cmdlet is being run from a computer startup or shutdown script, the domain of the computer is used. For more information, see the Notes section in the full Help. @@ -158,11 +161,12 @@ Accept wildcard characters: False ``` ### -Guid + Specifies the GPO to link by its globally unique identifier (GUID). The GUID uniquely identifies the GPO in the domain. You can also refer to the Guid parameter by its built-in alias, **Id**. -For more information, see **about_Aliases**. +For more information, see [about_Aliases](????????). ```yaml Type: Guid @@ -204,10 +208,10 @@ Specifies the GPO to link by its display name. The display name is not guaranteed to be unique in the domain. If another GPO with the same display name exists in the domain, an error occurs. -You can use the *Guid* parameter to uniquely identify a GPO. +You can use the **Guid** parameter to uniquely identify a GPO. You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. -For more information, see **about_Aliases**. +For more information, see [about_Aliases](????????). ```yaml Type: System.String @@ -247,13 +251,14 @@ Accept wildcard characters: False ``` ### -Server + Specifies the name of the domain controller that this cmdlet contacts to complete the operation. You can specify either the FQDN or the host name. -If you do not specify the name by using the *Server* parameter, the primary domain controller (PDC) emulator is contacted. +If you do not specify the name by using the **Server** parameter, the primary domain controller (PDC) emulator is contacted. You can also refer to the *Server* parameter by its built-in alias, **DC**. -For more information, see **about_Aliases**. +For more information, see [about_Aliases](????????). ```yaml Type: System.String @@ -319,7 +324,7 @@ This cmdlet returns an object that represents the link between the GPO and the s * To link a GPO to a site, domain, or OU, you must have Link GPOs permission on that site, domain, or OU. By default, only domain administrators and enterprise administrators have this privilege for domains and OUs. Enterprise administrators and domain administrators of the forest root domain have this privilege for sites. - You can use the *Domain* parameter to explicitly specify the domain for this cmdlet. + You can use the **Domain** parameter to explicitly specify the domain for this cmdlet. If you do not explicitly specify the domain, the cmdlet uses a default domain. The default domain is the domain that is used to access network resources by the security context under which the current session is running. diff --git a/docset/winserver2022-ps/grouppolicy/New-GPO.md b/docset/winserver2022-ps/grouppolicy/New-GPO.md index 5594bf6127..64399c4b2f 100644 --- a/docset/winserver2022-ps/grouppolicy/New-GPO.md +++ b/docset/winserver2022-ps/grouppolicy/New-GPO.md @@ -11,6 +11,7 @@ title: New-GPO # New-GPO ## SYNOPSIS + Creates a GPO. ## SYNTAX @@ -44,8 +45,8 @@ The cmdlet returns a **GPO** object, which represents the created GPO that you c ## EXAMPLES ### Example 1: Create a GPO in the domain of the user -``` -PS C:\> New-GPO -Name TestGPO -Comment "This is a test GPO." +```powershell +New-GPO -Name TestGPO -Comment "This is a test GPO." DisplayName : TestGPO DomainName : contoso.com Owner : CONTOSO\Domain Admins @@ -63,16 +64,16 @@ This command creates a GPO in the domain of the user. The GPO is created with the specified comment. ### Example 2: Create a GPO in the domain of the user that is pre-populated with the settings of the Starter GPO -``` -PS C:\> New-GPO -Name "FromStarterGPO" -StarterGPOName "Windows Vista EC Computer Starter GPO" +```powershell +New-GPO -Name "FromStarterGPO" -StarterGPOName "Windows Vista EC Computer Starter GPO" ``` This command creates a GPO named FromStarterGPO in the domain of the user. The GPO is pre-populated with the settings of the Starter GPO. ### Example 3: Create a GPO in the domain of the user and link it to an OU -``` -PS C:\> new-gpo -name TestGPO | new-gplink -target "ou=marketing,dc=contoso,dc=com" | set-gppermissions -permissionlevel gpoedit -targetname "Marketing Admins" -targettype group +```powershell +new-gpo -name TestGPO | new-gplink -target "ou=marketing,dc=contoso,dc=com" | set-gppermissions -permissionlevel gpoedit -targetname "Marketing Admins" -targettype group DisplayName : TestGPO DomainName : contoso.com @@ -114,6 +115,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -129,6 +131,7 @@ Accept wildcard characters: False ``` ### -Domain + Specifies the domain for this cmdlet. You must specify the fully qualified domain name (FQDN) of the domain. @@ -138,7 +141,7 @@ For the **New-GPO** cmdlet: - If a Starter GPO is specified, it must exist in this domain. -If you do not specify the *Domain* parameter, then the domain of the user running the current session is used. +If you do not specify the **Domain** parameter, then the domain of the user running the current session is used. If the cmdlet is being run from a computer startup or shutdown script, the domain of the computer is used. For more information, see the Notes section in the full help. @@ -165,7 +168,7 @@ Specifies a display name for the new GPO. If another GPO with the same display name exists in the domain an error occurs. You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. -For more information, see **about_Aliases**. +For more information, see [about_Aliases](????????). ```yaml Type: System.String @@ -180,13 +183,14 @@ Accept wildcard characters: False ``` ### -Server + Specifies the name of the domain controller that this cmdlet contacts to complete the operation. You can specify either the fully qualified domain name (FQDN) or the host name. -If you do not specify the name by using the *Server* parameter, the primary domain controller (PDC) emulator is contacted. +If you do not specify the name by using the **Server** parameter, the primary domain controller (PDC) emulator is contacted. You can also refer to the *Server* parameter by its built-in alias, **DC**. -For more information, see **about_Aliases**. +For more information, see [about_Aliases](????????). ```yaml Type: System.String @@ -206,7 +210,7 @@ The GUID uniquely identifies the Starter GPO. If a Starter GPO is specified, the GPO is created with its settings. You can also refer to the **StarterGpoGuid* *parameter by its built-in alias, **Id**. -For more information, see **about_Aliases**. +For more information, see [about_Aliases](????????). ```yaml Type: Guid @@ -231,7 +235,7 @@ If another Starter GPO with the same display name exists in the domain, an error You can use the **StarterGpoGuid* *parameter to uniquely identify a Starter GPO. You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. -For more information, see **about_Aliases**. +For more information, see [about_Aliases](????????). ```yaml Type: System.String @@ -283,7 +287,7 @@ This cmdlet returns the GPO that was created. * Only domain administrators, enterprise administrators, and members of the Group Policy creator owners group can create GPOs. These users must run Windows PowerShell in an elevated state. - You can use the *Domain* parameter to explicitly specify the domain for this cmdlet. + You can use the **Domain** parameter to explicitly specify the domain for this cmdlet. If you do not explicitly specify the domain, the cmdlet uses a default domain. The default domain is the domain that is used to access network resources by the security context under which the diff --git a/docset/winserver2022-ps/grouppolicy/New-GPStarterGPO.md b/docset/winserver2022-ps/grouppolicy/New-GPStarterGPO.md index fc9e8ec80a..d9777e8a7d 100644 --- a/docset/winserver2022-ps/grouppolicy/New-GPStarterGPO.md +++ b/docset/winserver2022-ps/grouppolicy/New-GPStarterGPO.md @@ -11,6 +11,7 @@ title: New-GPStarterGPO # New-GPStarterGPO ## SYNOPSIS + Creates a Starter GPO. ## SYNTAX @@ -27,8 +28,8 @@ If the Starter GPOs folder does not exist in the SYSVOL when the **New-GPStarter ## EXAMPLES ### Example 1: Create a Starter GPO -``` -PS C:\> New-GPStarterGPO -Name StarterSecurity -Comment "Security Template" +```powershell +New-GPStarterGPO -Name StarterSecurity -Comment "Security Template" ``` This command creates a Starter GPO with the display name StarterSecurity. @@ -53,6 +54,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -68,13 +70,14 @@ Accept wildcard characters: False ``` ### -Domain + Specifies the domain for this cmdlet. You must specify the fully qualified domain name (FQDN) of the domain. Cross-domain creation of Starter GPOs is not supported. If you specify a domain that is different from the domain of the user that is running the current session, an error occurs. -If you do not specify the *Domain* parameter, the domain of the user that is running the current session is used. +If you do not specify the **Domain** parameter, the domain of the user that is running the current session is used. You can also refer to the **Domain** parameter by its built-in alias, **DomainName**. For more information, see [about_Aliases](????????????). @@ -97,7 +100,7 @@ Specifies the display name for the new Starter GPO. If another Starter GPO with the same display name exists in the domain, an error occurs. You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. -For more information, see **about_Aliases**. +For more information, see [about_Aliases](????????). ```yaml Type: System.String @@ -112,13 +115,14 @@ Accept wildcard characters: False ``` ### -Server + Specifies the name of the domain controller that this cmdlet contacts to complete the operation. You can specify either the fully qualified domain name (FQDN) or the host name. -If you do not specify the name by using the *Server* parameter, the primary domain controller (PDC) emulator is contacted. +If you do not specify the name by using the **Server** parameter, the primary domain controller (PDC) emulator is contacted. You can also refer to the *Server* parameter by its built-in alias, **DC**. -For more information, see **about_Aliases**. +For more information, see [about_Aliases](????????). ```yaml Type: System.String diff --git a/docset/winserver2022-ps/grouppolicy/Remove-GPLink.md b/docset/winserver2022-ps/grouppolicy/Remove-GPLink.md index a71aded868..9d80f52e96 100644 --- a/docset/winserver2022-ps/grouppolicy/Remove-GPLink.md +++ b/docset/winserver2022-ps/grouppolicy/Remove-GPLink.md @@ -11,6 +11,7 @@ title: Remove-GPLink # Remove-GPLink ## SYNOPSIS + Removes a GPO link from a site, domain or OU. ## SYNTAX @@ -34,8 +35,8 @@ This cmdlet does not delete the actual GPO or any other links between the specif ## EXAMPLES ### Example 1: Remove the specified GPO link -``` -PS C:\> Remove-GPLink -Name "MyGPO" -Target "OU=MyOU,dc=contoso,dc=com" +```powershell +Remove-GPLink -Name "MyGPO" -Target "OU=MyOU,dc=contoso,dc=com" DisplayName : MyGPO DomainName : contoso.com Owner : CONTOSO\Domain Admins @@ -52,15 +53,15 @@ WmiFilter : This command removes the link between the GPO named MyGPO and the MyOU organizational unit in the contoso.com domain. ### Example 2: Remove the link between the specified GPO and the default site -``` -PS C:\> Remove-GPLink -Name "MyGPO" -Target "Default-First-Site-Name" +```powershell +Remove-GPLink -Name "MyGPO" -Target "Default-First-Site-Name" ``` This command removes the link between the GPO named MyGPO and the default site. ### Example 3: Remove the links for all GPOs that are linked to the specified organizational unit -``` -PS C:\> (Get-GPInheritance -Target "ou=myou,dc=contoso,dc=com").GpoLinks | Remove-GPLink +```powershell +(Get-GPInheritance -Target "ou=myou,dc=contoso,dc=com").GpoLinks | Remove-GPLink DisplayName : TestGPO-3 DomainName : contoso.com Owner : CONTOSO\Domain Admins @@ -97,6 +98,7 @@ The GPOs for which links have been removed are returned. ## PARAMETERS ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -112,6 +114,7 @@ Accept wildcard characters: False ``` ### -Domain + Specifies the domain for this cmdlet. You must specify the fully qualified domain name (FQDN) of the domain. @@ -145,11 +148,12 @@ Accept wildcard characters: False ``` ### -Guid + Specifies the GPO for which to remove the link by its globally unique identifier (GUID). The GUID uniquely identifies the GPO. -You can also refer to the *Guid* parameter by its built-in aliases, id and gpoid. -For more information, see **about_Aliases**. +You can also refer to the **Guid** parameter by its built-in aliases, id and gpoid. +For more information, see [about_Aliases](????????). ```yaml Type: Guid @@ -164,14 +168,15 @@ Accept wildcard characters: False ``` ### -Name + Specifies the GPO for which to remove the link by its display name. The display name is not guaranteed to be unique in the domain. If another GPO with the same display name exists in the domain an error occurs. -You can use the *Guid* parameter to uniquely identify a GPO. +You can use the **Guid** parameter to uniquely identify a GPO. You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. -For more information, see **about_Aliases**. +For more information, see [about_Aliases](????????). ```yaml Type: System.String @@ -186,13 +191,14 @@ Accept wildcard characters: False ``` ### -Server + Specifies the name of the domain controller that this cmdlet contacts to complete the operation. You can specify either the fully qualified domain name (FQDN) or the host name. -If you do not specify the name by using the *Server* parameter, the primary domain controller (PDC) emulator is contacted. +If you do not specify the name by using the **Server** parameter, the primary domain controller (PDC) emulator is contacted. You can also refer to the *Server* parameter by its built-in alias, **DC**. -For more information, see **about_Aliases**. +For more information, see [about_Aliases](????????). ```yaml Type: System.String diff --git a/docset/winserver2022-ps/grouppolicy/Remove-GPO.md b/docset/winserver2022-ps/grouppolicy/Remove-GPO.md index f7bf2c7d83..c7d1136072 100644 --- a/docset/winserver2022-ps/grouppolicy/Remove-GPO.md +++ b/docset/winserver2022-ps/grouppolicy/Remove-GPO.md @@ -11,6 +11,7 @@ title: Remove-GPO # Remove-GPO ## SYNOPSIS + Removes a GPO. ## SYNTAX @@ -33,16 +34,16 @@ The **Remove-GPO** cmdlet removes the Group Policy Object (GPO) container and da ## EXAMPLES ### Example 1: Remove a GPO by GUID -``` -PS C:\> Remove-GPO -Guid 50cc3e45-0b14-46dd-8b4d-afa012bc331c -Domain "contoso.com" -KeepLinks +```powershell +Remove-GPO -Guid 50cc3e45-0b14-46dd-8b4d-afa012bc331c -Domain "contoso.com" -KeepLinks ``` This command removes the GPO that has the GUID 50cc3e45-0b14-46dd-8b4d-afa012bc331c from the contoso.com domain. Because the *KeepLinks* parameter is specified, links between the GPO and all sites, and links between the GPO and all containers in the domain are preserved. ### Example 2: Remove a GPO by name -``` -PS C:\> Remove-GPO -Name "TestGPO" +```powershell +Remove-GPO -Name "TestGPO" ``` This command removes the GPO named TestGPO from the domain of the user that is running the session. @@ -51,6 +52,7 @@ Because the *KeepLinks* parameter is not specified, links between the GPO and al ## PARAMETERS ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -69,7 +71,7 @@ Accept wildcard characters: False Specifies the domain in which you want to remove a GPO. You must specify the fully qualified domain name (FQDN) of the domain. -If you do not specify the *Domain* parameter, the domain of the computer that you are logged on to is used. +If you do not specify the **Domain** parameter, the domain of the computer that you are logged on to is used. If you specify a domain that differs from the domain of your user object, a trust must exist between the domain from which you want to remove the GPO and the domain of your user object. @@ -86,10 +88,11 @@ Accept wildcard characters: False ``` ### -Guid + Specifies the GPO to remove by its globally unique identifier (GUID). The GUID uniquely identifies the GPO. -You can also refer to the *Guid* parameter by its built-in alias, **Id**. +You can also refer to the **Guid** parameter by its built-in alias, **Id**. For more information, see [about_Aliases](????????????). ```yaml @@ -124,10 +127,10 @@ Specifies the GPO that this cmdlet removes by its display name. The display name is not guaranteed to be unique in the domain. If another GPO with the same display name exists in the domain an error occurs. -You can use the *Guid* parameter to uniquely identify a GPO. +You can use the **Guid** parameter to uniquely identify a GPO. You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. -For more information, see **about_Aliases**. +For more information, see [about_Aliases](????????). ```yaml Type: System.String @@ -142,13 +145,14 @@ Accept wildcard characters: False ``` ### -Server + Specifies the name of the domain controller that this cmdlet contacts to complete the operation. You can specify either the fully qualified domain name (FQDN) or the host name. -If you do not specify the name by using the *Server* parameter, the primary domain controller (PDC) emulator is contacted. +If you do not specify the name by using the **Server** parameter, the primary domain controller (PDC) emulator is contacted. You can also refer to the *Server* parameter by its built-in alias, **DC**. -For more information, see **about_Aliases**. +For more information, see [about_Aliases](????????). ```yaml Type: System.String @@ -192,6 +196,7 @@ Collections that contain GPOs from different domains are not supported. ## OUTPUTS ### None + This cmdlet does not generate any output. ## NOTES diff --git a/docset/winserver2022-ps/grouppolicy/Remove-GPPrefRegistryValue.md b/docset/winserver2022-ps/grouppolicy/Remove-GPPrefRegistryValue.md index 74b6db5286..f1c13c2a76 100644 --- a/docset/winserver2022-ps/grouppolicy/Remove-GPPrefRegistryValue.md +++ b/docset/winserver2022-ps/grouppolicy/Remove-GPPrefRegistryValue.md @@ -11,6 +11,7 @@ title: Remove-GPPrefRegistryValue # Remove-GPPrefRegistryValue ## SYNOPSIS + Removes one or more Registry preference items from either Computer Configuration or User Configuration in a GPO. ## SYNTAX @@ -50,8 +51,8 @@ This cmdlet can take input from the pipeline: ## EXAMPLES ### Example 1: Remove all registry preference item under the specified registry -``` -PS C:\> Remove-GPPrefRegistryValue -Name "TestGPO" -Context User -Key "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey" -ValueName "ValueOne" +```powershell +Remove-GPPrefRegistryValue -Name "TestGPO" -Context User -Key "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey" -ValueName "ValueOne" DisplayName : TestGPO DomainName : contoso.com Owner : CONTOSO\Domain Admins @@ -68,8 +69,8 @@ WmiFilter : This command removes all Registry preference items that configure the registry value HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey ValueOne from User Configuration in the GPO named TestGPO. ### Example 2: Remove registry preference items that configure first-level values -``` -PS C:\> Remove-GPPrefRegistryValue -Name "TestGPO" -Context "Computer" -Key "HKLM\SOFTWARE\Microsoft\ExampleKey" +```powershell +Remove-GPPrefRegistryValue -Name "TestGPO" -Context "Computer" -Key "HKLM\SOFTWARE\Microsoft\ExampleKey" DisplayName : TestGPO DomainName : contoso.com Owner : CONTOSO\Domain Admins @@ -86,8 +87,8 @@ WmiFilter : This command removes Registry preference items that configure any first-level values under the registry key HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey or the key itself from Computer Configuration in the GPO named TestGPO. ### Example 3: Remove any registry preference items for all GPOs -``` -PS C:\> Get-GPO -All | Remove-GPPrefRegistryValue -Context "User" -Key "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey" -ValueName "ValueOne" -ErrorAction SilentlyContinue +```powershell +Get-GPO -All | Remove-GPPrefRegistryValue -Context "User" -Key "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey" -ValueName "ValueOne" -ErrorAction SilentlyContinue DisplayName : TestGPO DomainName : contoso.com Owner : CONTOSO\Domain Admins @@ -124,6 +125,7 @@ For more information about the *ErrorAction* parameter, see about_CommonParamete ## PARAMETERS ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -156,12 +158,13 @@ Accept wildcard characters: False ``` ### -Domain + Specifies the domain for which this cmdlet runs the operation. You must specify the fully qualified domain name (FQDN) of the domain. For the **Remove-GPPrefRegistryValue** cmdlet, the GPO from which to remove the Registry preference item or items must exist in this domain. -If you do not specify the *Domain* parameter, the domain of the user that is running the current session is used. +If you do not specify the **Domain** parameter, the domain of the user that is running the current session is used. (If the cmdlet is being run from a computer startup or shutdown script, the domain of the computer is used.) For more information, see the Notes section in the full Help. If you specify a domain that is different from the domain of the user that is running the current session, a trust must exist between that domain and the domain of the user or the computer. @@ -182,10 +185,11 @@ Accept wildcard characters: False ``` ### -Guid + Specifies the GPO from which to remove the Registry preference item by its globally unique identifier (GUID). The GUID uniquely identifies the GPO. -You can also refer to the *Guid* parameter by its built-in alias, **Id**. +You can also refer to the **Guid** parameter by its built-in alias, **Id**. ```yaml Type: Guid @@ -262,10 +266,11 @@ Accept wildcard characters: False ``` ### -Server + Specifies the name of the domain controller that this cmdlet contacts to complete the operation. You can specify either the fully qualified domain name (FQDN) or the host name. -If you do not specify the name by using the *Server* parameter, the primary domain controller (PDC) emulator is contacted. +If you do not specify the name by using the **Server** parameter, the primary domain controller (PDC) emulator is contacted. You can also refer to the *Server* parameter by its built-in alias, **DC**. @@ -334,7 +339,7 @@ This cmdlet returns the GPO from which the Registry preference item or items tha ## NOTES -* You can use the *Domain* parameter to explicitly specify the domain for this cmdlet. +* You can use the **Domain** parameter to explicitly specify the domain for this cmdlet. If you do not explicitly specify the domain, the cmdlet uses a default domain. The default domain is the domain that is used to access network resources by the security context under which the current session is running. diff --git a/docset/winserver2022-ps/grouppolicy/Remove-GPRegistryValue.md b/docset/winserver2022-ps/grouppolicy/Remove-GPRegistryValue.md index 02ae68e1c6..d966a4afb1 100644 --- a/docset/winserver2022-ps/grouppolicy/Remove-GPRegistryValue.md +++ b/docset/winserver2022-ps/grouppolicy/Remove-GPRegistryValue.md @@ -11,6 +11,7 @@ title: Remove-GPRegistryValue # Remove-GPRegistryValue ## SYNOPSIS + Removes one or more registry-based policy settings from either Computer Configuration or User Configuration in a GPO. ## SYNTAX @@ -49,8 +50,8 @@ This cmdlet can take input from the pipeline: ## EXAMPLES ### Example 1: Remove a registry-based policy setting under the specified registry key -``` -PS C:\> Remove-GPRegistryValue -Name "TestGPO" -Key "HKCU\Software\Policies\Microsoft\Windows\Control Panel\Desktop" -ValueName "ScreenSaveTimeOut" +```powershell +Remove-GPRegistryValue -Name "TestGPO" -Key "HKCU\Software\Policies\Microsoft\Windows\Control Panel\Desktop" -ValueName "ScreenSaveTimeOut" DisplayName : TestGPO DomainName : contoso.com Owner : CONTOSO\Domain Admins @@ -70,8 +71,8 @@ Removing a policy setting does not delete the registry value on a client. To delete the registry value when the GPO is applied on a client, you must disable the policy setting by using the **Set-GPRegistryValue** cmdlet. ### Example 2: Remove all the registry-based policy settings under the specified registry key -``` -PS C:\> Remove-GPRegistryValue -Name "TestGPO" -Key "HKCU\Software\Policies\Microsoft\ExampleKey" +```powershell +Remove-GPRegistryValue -Name "TestGPO" -Key "HKCU\Software\Policies\Microsoft\ExampleKey" ``` This command removes all the registry-based policy settings that configure first-level registry values under the key HKEY_CURRENT_USER\Software\Policies\Microsoft\ExampleKey from User Configuration in the GPO named TestGPO. @@ -80,6 +81,7 @@ If there are registry-based policy settings in User Configuration that configure ## PARAMETERS ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -95,12 +97,13 @@ Accept wildcard characters: False ``` ### -Domain + Specifies the domain for this cmdlet. You must specify the fully qualified domain name (FQDN) of the domain. For the **Remove-GPRegistryValue** cmdlet, the GPO from which to remove the registry-based policy setting must exist in this domain. -If you do not specify the *Domain* parameter, the domain of the user that is running the current session is used. +If you do not specify the **Domain** parameter, the domain of the user that is running the current session is used. If the cmdlet is being run from a computer startup or shutdown script, the domain of the computer is used. For more information, see the Notes section in the full Help. @@ -122,10 +125,11 @@ Accept wildcard characters: False ``` ### -Guid + Specifies the GPO from which to remove the registry-based policy setting by its globally unique identifier (GUID). The GUID uniquely identifies the GPO. -You can also refer to the *Guid* parameter by its built-in alias, **Id**. +You can also refer to the **Guid** parameter by its built-in alias, **Id**. ```yaml Type: Guid @@ -174,7 +178,7 @@ Specifies the GPO from which to remove the registry-based policy setting by its The display name is not guaranteed to be unique in the domain. If another GPO with the same display name exists in the domain an error occurs. -You can use the *Guid* parameter to uniquely identify a GPO. +You can use the **Guid** parameter to uniquely identify a GPO. You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. @@ -191,10 +195,11 @@ Accept wildcard characters: False ``` ### -Server + Specifies the name of the domain controller that this cmdlet contacts to complete the operation. You can specify either the fully qualified domain name (FQDN) or the host name. -If you do not specify the name by using the *Server* parameter, the primary domain controller (PDC) emulator is contacted. +If you do not specify the name by using the **Server** parameter, the primary domain controller (PDC) emulator is contacted. You can also refer to the *Server* parameter by its built-in alias, **DC**. @@ -265,7 +270,7 @@ This cmdlet returns the GPO from which the registry-based policy setting (or set If a value for the registry key cannot be located (the registry key is not configured) or if subkeys are present, an error occurs and a corresponding error message is displayed. - You can use the *Domain* parameter to explicitly specify the domain for this cmdlet. + You can use the **Domain** parameter to explicitly specify the domain for this cmdlet. If you do not explicitly specify the domain, the cmdlet uses a default domain. The default domain is the domain that is used to access network resources by the security context under which the current session is running. diff --git a/docset/winserver2022-ps/grouppolicy/Rename-GPO.md b/docset/winserver2022-ps/grouppolicy/Rename-GPO.md index 091e8aa30c..bcb37ea9b8 100644 --- a/docset/winserver2022-ps/grouppolicy/Rename-GPO.md +++ b/docset/winserver2022-ps/grouppolicy/Rename-GPO.md @@ -11,6 +11,7 @@ title: Rename-GPO # Rename-GPO ## SYNOPSIS + Assigns a new display name to a GPO. ## SYNTAX @@ -34,8 +35,8 @@ This cmdlet has no effect on the GUID of the GPO. ## EXAMPLES ### Example 1: Rename a GPO -``` -PS C:\> Rename-GPO -Name "SampleGPO" -TargetName "SecurityGPO" +```powershell +Rename-GPO -Name "SampleGPO" -TargetName "SecurityGPO" DisplayName : securityGPO DomainName : contoso.com Owner : CONTOSO\Domain Admins @@ -54,6 +55,7 @@ This command renames the GPO named SampleGPO to SecurityGPO. ## PARAMETERS ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -69,12 +71,13 @@ Accept wildcard characters: False ``` ### -Domain + Specifies the domain for this cmdlet. You must specify the fully qualified domain name (FQDN) of the domain. For the **Rename-GPO** cmdlet, this is the domain of the GPO that you want to rename. -If you do not specify the *Domain* parameter, the domain of the user that is running the current session is used. +If you do not specify the **Domain** parameter, the domain of the user that is running the current session is used. If the cmdlet is being run from a computer startup or shutdown script, the domain of the computer is used. For more information, see the Notes section in the full Help. @@ -96,10 +99,11 @@ Accept wildcard characters: False ``` ### -Guid + Specifies the GPO to rename by its globally unique identifier (GUID). The GUID uniquely identifies the GPO. -You can also refer to the *Guid* parameter by its built-in alias, **Id**. +You can also refer to the **Guid** parameter by its built-in alias, **Id**. ```yaml Type: Guid @@ -118,7 +122,7 @@ Specifies the GPO to rename by its current display name. The display name is not guaranteed to be unique in the domain. If another GPO with the same display name exists in the domain, an error occurs. -You can use the *Guid* parameter to uniquely identify a GPO. +You can use the **Guid** parameter to uniquely identify a GPO. You can also refer to the Name parameter by its built-in alias, **DisplayName**. @@ -135,10 +139,11 @@ Accept wildcard characters: False ``` ### -Server + Specifies the name of the domain controller that this cmdlet contacts to complete the operation. You can specify either the fully qualified domain name (FQDN) or the host name. -If you do not specify the name by using the *Server* parameter, the primary domain controller (PDC) emulator is contacted. +If you do not specify the name by using the **Server** parameter, the primary domain controller (PDC) emulator is contacted. You can also refer to the *Server* parameter by its built-in alias, **DC**. @@ -205,7 +210,7 @@ This cmdlet returns the GPO with the new display name. ## NOTES -* You can use the *Domain* parameter to explicitly specify the domain for this cmdlet. +* You can use the **Domain** parameter to explicitly specify the domain for this cmdlet. If you do not explicitly specify the domain, the cmdlet uses a default domain. The default domain is the domain that is used to access network resources by the security context under which the current session is running. diff --git a/docset/winserver2022-ps/grouppolicy/Restore-GPO.md b/docset/winserver2022-ps/grouppolicy/Restore-GPO.md index bb9ae259ee..486d1eb163 100644 --- a/docset/winserver2022-ps/grouppolicy/Restore-GPO.md +++ b/docset/winserver2022-ps/grouppolicy/Restore-GPO.md @@ -11,6 +11,7 @@ title: Restore-GPO # Restore-GPO ## SYNOPSIS + Restores one GPO or all GPOs in a domain from one or more GPO backup files. ## SYNTAX @@ -45,9 +46,9 @@ If the original domain is not available, or if the GPO no longer exists in the d You can: -- Use the *Guid* parameter or the *Name* parameter to restore a GPO from its most recent backup. +- Use the **Guid** parameter or the *Name* parameter to restore a GPO from its most recent backup. -- Use the *All* parameter to restore all GPOs in the domain from their most recent backups. +- Use the **All** parameter to restore all GPOs in the domain from their most recent backups. - Use the *BackupId* parameter to restore a GPO from a specific backup. This parameter enables you to restore a GPO from a backup prior to the most recent one. @@ -55,24 +56,24 @@ This parameter enables you to restore a GPO from a backup prior to the most rece ## EXAMPLES ### Example 1: Restore a GPO from a directory -``` -PS C:\> Restore-GPO -Name "TestGPO" -Path "\\Server1\Backups" +```powershell +Restore-GPO -Name "TestGPO" -Path "\\Server1\Backups" ``` This command restores the GPO named TestGPO from the \\\\Server1\Backups directory. The most recent backup is restored. ### Example 2: Restore a GPO from a directory using the GPOs GUID -``` -PS C:\> Restore-GPO -GUID fa4a9473-6e2a-4b87-ab78-175e68d97bde -Path "\\Server1\Backups" +```powershell +Restore-GPO -GUID fa4a9473-6e2a-4b87-ab78-175e68d97bde -Path "\\Server1\Backups" ``` This command restores the GPO with the GUID fa4a9473-6e2a-4b87-ab78-175e68d97bde from the \\\\Server1\Backups directory. The most recent backup is restored. ### Example 3: Restore all GPOs in a domain that were previously backed up to a directory -``` -PS C:\> Restore-GPO -All -Domain "contoso.com" -Path "\\Server1\Backups" +```powershell +Restore-GPO -All -Domain "contoso.com" -Path "\\Server1\Backups" ``` This command restores all of the GPOs in the contoso.com domain previously backed up to \\\\Server1\Backup. @@ -81,8 +82,8 @@ Each GPO is restored using its most recent backup. If the domain of user that is running the session (or, for a startup or shutdown script, the domain of the computer) is different from the contoso.com domain, a trust must exist between the two domains or the command fails. ### Example 4: Restore a GPO using its backup ID -``` -PS C:\> Restore-GPO -BackupId 0fc29b3c-fb83-4076-babb-6194c1b4fc26 -Path "\\Server1\Backups" +```powershell +Restore-GPO -BackupId 0fc29b3c-fb83-4076-babb-6194c1b4fc26 -Path "\\Server1\Backups" ``` This command restores a GPO from the backup specified by the *BackupId* parameter. @@ -91,6 +92,7 @@ The *BackupId* parameter can be used to restore a GPO from a backup prior to the ## PARAMETERS ### -All + Indicates that the cmdlet restores all GPOs in the domain that have backups in the backup directory. Each GPO is restored from its most recent backup in the directory. @@ -126,6 +128,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -141,13 +144,14 @@ Accept wildcard characters: False ``` ### -Domain + Specifies the domain for this cmdlet. You must specify the fully qualified domain name (FQDN) of the domain. For the **Restore-GPO** cmdlet, this is the domain in which you want to restore the GPO. This must be the domain from which the GPO was backed up. -If you do not specify the *Domain* parameter, the domain of the user that is running the current session is used. +If you do not specify the **Domain** parameter, the domain of the user that is running the current session is used. If the cmdlet is being run from a computer startup or shutdown script, the domain of the computer is used. For more information, see the Notes section in the full Help. @@ -169,13 +173,14 @@ Accept wildcard characters: False ``` ### -Guid + Specifies the GPO to restore by its globally unique identifier (GUID). The GUID uniquely identifies the GPO. The GPO is restored from its most recent backup in the backup directory. To specify a different backup than the most recent backup, use the *BackupId* parameter. -You can also refer to the *Guid* parameter by its built-in alias, **Id**. +You can also refer to the **Guid** parameter by its built-in alias, **Id**. ```yaml Type: Guid @@ -196,7 +201,7 @@ To specify a different backup than the most recent backup, use the BackupId para The display name is not guaranteed to be unique in the domain. If another GPO with the same display name exists in the domain an error occurs. -You can use the *Guid* parameter to uniquely identify a GPO. +You can use the **Guid** parameter to uniquely identify a GPO. You can also refer to the Name parameter by its built-in alias, **DisplayName**. @@ -213,9 +218,10 @@ Accept wildcard characters: False ``` ### -Path + Specifies the path to the backup directory. -You can also refer to the *Path* parameter by its built-in alias, backuplocation. +You can also refer to the **Path** parameter by its built-in alias, backuplocation. ```yaml Type: System.String @@ -230,10 +236,11 @@ Accept wildcard characters: False ``` ### -Server + Specifies the name of the domain controller that this cmdlet contacts to complete the operation. You can specify either the fully qualified domain name (FQDN) or the host name. -If you do not specify the name by using the *Server* parameter, the primary domain controller (PDC) emulator is contacted. +If you do not specify the name by using the **Server** parameter, the primary domain controller (PDC) emulator is contacted. You can also refer to the *Server* parameter by its built-in alias, **DC**. @@ -283,7 +290,7 @@ This cmdlet returns the restored GPO. ## NOTES -* You can use the *Domain* parameter to explicitly specify the domain for this cmdlet. +* You can use the **Domain** parameter to explicitly specify the domain for this cmdlet. If you do not explicitly specify the domain, the cmdlet uses a default domain. The default domain is the domain that is used to access network resources by the security context under which the current session is running. diff --git a/docset/winserver2022-ps/grouppolicy/Set-GPInheritance.md b/docset/winserver2022-ps/grouppolicy/Set-GPInheritance.md index 1f9bb13edc..d2c9969a10 100644 --- a/docset/winserver2022-ps/grouppolicy/Set-GPInheritance.md +++ b/docset/winserver2022-ps/grouppolicy/Set-GPInheritance.md @@ -11,6 +11,7 @@ title: Set-GPInheritance # Set-GPInheritance ## SYNOPSIS + Blocks or unblocks inheritance for a specified domain or organizational unit. ## SYNTAX @@ -32,8 +33,8 @@ You use the *Target* parameter to specify the Lightweight Directory Access Proto ## EXAMPLES ### Example 1: Block inheritance for a OU in a domain -``` -PS C:\> Set-GPInheritance -Target "ou=MyOU,dc=contoso,dc=com" -IsBlocked Yes +```powershell +Set-GPInheritance -Target "ou=MyOU,dc=contoso,dc=com" -IsBlocked Yes Name : myou ContainerType : OU Path : ou=myou,dc=contoso,dc=com @@ -48,16 +49,16 @@ GPOs that are linked to higher-level sites or domains, or to OUs that are parent Because inheritance is blocked, only GPOs that are linked directly to the MyOU, and those that are enforced at higher-level containers, appear in the InheritedGpoLinks list. ### Example 2: Unblock inheritance for a domain -``` -PS C:\> Set-GPInheritance -Target "dc=northwest, dc=contoso, dc=com" -IsBlocked No +```powershell +Set-GPInheritance -Target "dc=northwest, dc=contoso, dc=com" -IsBlocked No ``` This command unblocks inheritance for the northwest.contoso.com domain. GPOs linked to higher-level sites or domains are applied to this domain when Group Policy is processed on the client. ### Example 3: Unblock inheritance for an OU in a domain -``` -PS C:\> Set-GPInheritance -Target "ou=MyOU,dc=contoso,dc=com" -IsBlocked No +```powershell +Set-GPInheritance -Target "ou=MyOU,dc=contoso,dc=com" -IsBlocked No Name : myou ContainerType : OU @@ -76,6 +77,7 @@ For instance, the Default Domain Policy GPO is linked at the domain level. ## PARAMETERS ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -91,13 +93,14 @@ Accept wildcard characters: False ``` ### -Domain + Specifies the domain for this cmdlet. You must specify the fully qualified domain name (FQDN) of the domain. For the **Set-GPInheritance** cmdlet, this is typically the domain of the Active Directory container (domain or OU) for which you want to block or unblock inheritance. If the domain for the cmdlet is different than the domain of the container, a trust must exist between the two domains. -If you do not specify the *Domain* parameter, the domain of the user that is running the current session is used. +If you do not specify the **Domain** parameter, the domain of the user that is running the current session is used. If the cmdlet is being run from a computer startup or shutdown script, the domain of the computer is used. For more information, see the Notes section in the full Help. @@ -138,10 +141,11 @@ Accept wildcard characters: False ``` ### -Server + Specifies the name of the domain controller that this cmdlet contacts to complete the operation. You can specify either the fully qualified domain name (FQDN) or the host name. -If you do not specify the name by using the *Server* parameter, the primary domain controller (PDC) emulator is contacted. +If you do not specify the name by using the **Server** parameter, the primary domain controller (PDC) emulator is contacted. You can also refer to the **Server** parameter by its built-in alias, **DC**. @@ -212,7 +216,7 @@ The **GpoInheritanceBlocked** property indicates whether inheritance is blocked. * GPO links that are enforced cannot be blocked. This cmdlet should be used sparingly. Casual use of this cmdlet can complicate troubleshooting. - You can use the *Domain* parameter to explicitly specify the domain for this cmdlet. + You can use the **Domain** parameter to explicitly specify the domain for this cmdlet. If you do not explicitly specify the domain, the cmdlet uses a default domain. The default domain is the domain that is used to access network resources by the security context under which the current session is running. diff --git a/docset/winserver2022-ps/grouppolicy/Set-GPLink.md b/docset/winserver2022-ps/grouppolicy/Set-GPLink.md index b8836d0ff0..cdf768eedb 100644 --- a/docset/winserver2022-ps/grouppolicy/Set-GPLink.md +++ b/docset/winserver2022-ps/grouppolicy/Set-GPLink.md @@ -11,6 +11,7 @@ title: Set-GPLink # Set-GPLink ## SYNOPSIS + Sets the properties of the specified GPO link. ## SYNTAX @@ -44,8 +45,8 @@ The order specifies the precedence that the settings of the GPO take over confli ## EXAMPLES ### Example 1: Enable the link between a GPO and OU -``` -PS C:\> Set-GPLink -Name TestGPO -Target "ou=MyOU,dc=contoso,dc=com" -LinkEnabled Yes +```powershell +Set-GPLink -Name TestGPO -Target "ou=MyOU,dc=contoso,dc=com" -LinkEnabled Yes GpoId : c25daa3e-5d05-43b3-87ca-0a237882fd63 DisplayName : Test2GPO Enabled : True @@ -58,8 +59,8 @@ This command enables the link between the GPO named TestGPO and the MyOU organiz The Enforced and Order properties are not changed. ### Example 2: Enable the link between a GPO and two domains -``` -PS C:\> Set-GPLink -Name TestGPO -Domain north.contoso.com -Target "dc=south, dc=contoso, dc=com" -LinkEnabled Yes -Enforced Yes -Order 1 +```powershell +Set-GPLink -Name TestGPO -Domain north.contoso.com -Target "dc=south, dc=contoso, dc=com" -LinkEnabled Yes -Enforced Yes -Order 1 ``` This command enables the link between the GPO named TestGPO in the north.contoso.com domain and the south.contoso.com domain. @@ -67,8 +68,8 @@ The link is set to enforced, so it cannot be blocked at lower-level containers ( Because the order is set to 1, the settings of TestGPO is applied with the highest precedence (except for enforced links) when Group policy is processed for the south.contoso.com domain container. ### Example 3: Set the enforced property of a link between a GPO and a test site -``` -PS C:\> Set-GPLink -Guid 77c5285d-952e-4559-94ef-a02f5c107799 -Target "Test-Site" -Enforced Yes +```powershell +Set-GPLink -Guid 77c5285d-952e-4559-94ef-a02f5c107799 -Target "Test-Site" -Enforced Yes GpoId : 77c5285d-952e-4559-94ef-a02f5c107799 DisplayName : TestGPO Enabled : True @@ -83,6 +84,7 @@ Inheritance cannot be blocked for this link at containers that are at lower-leve ## PARAMETERS ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -98,6 +100,7 @@ Accept wildcard characters: False ``` ### -Domain + Specifies the domain for this cmdlet. You must specify the fully qualified domain name (FQDN) of the domain. @@ -109,7 +112,7 @@ For the **Set-GPLink** cmdlet: To specify a domain to link to, use the *Target* parameter. -If you do not specify the *Domain* parameter, the domain of the user that is running the current session is used. +If you do not specify the **Domain** parameter, the domain of the user that is running the current session is used. If the cmdlet is being run from a computer startup or shutdown script, the domain of the computer is used. For more information, see the Notes section in the full Help. @@ -160,10 +163,11 @@ Accept wildcard characters: False ``` ### -Guid + Specifies the GPO of the link by its globally unique identifier (GUID). The GUID uniquely identifies the GPO. -You can also refer to the *Guid* parameter by its built-in alias, **Id**. +You can also refer to the **Guid** parameter by its built-in alias, **Id**. ```yaml Type: Guid @@ -204,7 +208,7 @@ Specifies the GPO of the link by its display name. The display name is not guaranteed to be unique in the domain. If another GPO with the same display name exists in the domain, an error occurs. -You can use the *Guid* parameter to uniquely identify a GPO. +You can use the **Guid** parameter to uniquely identify a GPO. You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. @@ -245,10 +249,11 @@ Accept wildcard characters: False ``` ### -Server + Specifies the name of the domain controller that this cmdlet contacts to complete the operation. You can specify either the fully qualified domain name (FQDN) or the host name. -If you do not specify the name by using the *Server* parameter, the primary domain controller (PDC) emulator is contacted. +If you do not specify the name by using the **Server** parameter, the primary domain controller (PDC) emulator is contacted. You can also refer to the *Server* parameter by its built-in alias, **DC**. @@ -313,7 +318,7 @@ This cmdlet returns the GPO link after the change has been applied. ## NOTES -* You can use the *Domain* parameter to explicitly specify the domain for this cmdlet. +* You can use the **Domain** parameter to explicitly specify the domain for this cmdlet. If you do not explicitly specify the domain, the cmdlet uses a default domain. The default domain is the domain that is used to access network resources by the security context under which the current session is running. diff --git a/docset/winserver2022-ps/grouppolicy/Set-GPPermission.md b/docset/winserver2022-ps/grouppolicy/Set-GPPermission.md index 4946bfbde8..19dc0adbbf 100644 --- a/docset/winserver2022-ps/grouppolicy/Set-GPPermission.md +++ b/docset/winserver2022-ps/grouppolicy/Set-GPPermission.md @@ -11,6 +11,7 @@ title: Set-GPPermission # Set-GPPermission ## SYNOPSIS + Grants a level of permissions to a security principal for one GPO or all the GPOs in a domain. ## SYNTAX @@ -37,8 +38,8 @@ Set-GPPermission -PermissionLevel -TargetName -Targe ## DESCRIPTION The **Set-GPPermission** cmdlet grants a level of permissions to a security principal (user, security group, or computer) for one Group Policy Object (GPO) or all the GPOs in a domain. -You use the *TargetName* and *TargetType* parameters to specify a user, security group, or computer for which to set the permission level. -You can use the *Name* or the *Guid* parameter to set the permission level for the security principal on a single GPO, or you can use the *All* parameter to set the permission level for the security principal on all GPOs in the domain. +You use the **TargetName** and *TargetType* parameters to specify a user, security group, or computer for which to set the permission level. +You can use the *Name* or the **Guid** parameter to set the permission level for the security principal on a single GPO, or you can use the **All** parameter to set the permission level for the security principal on all GPOs in the domain. By default, if the security principal already has a higher permission level than the specified permission level, the change is not applied. You can specify the *Replace* parameter, to remove the existing permission level from the GPO before the new permission level is set. @@ -47,16 +48,16 @@ This ensures that the existing permission level is replaced by the new permissio ## EXAMPLES ### Example 1: Set the permission level for a security group belonging to a GPO -``` -PS C:\> Set-GPPermission -Name TestGpo -TargetName "Domain Users" -TargetType Group -PermissionLevel GpoRead +```powershell +Set-GPPermission -Name TestGpo -TargetName "Domain Users" -TargetType Group -PermissionLevel GpoRead ``` This command sets the permission level for the Domain Users security group to GpoRead for the GPO named TestGpo. Because the *Replace* parameter is not specified, if the group already has a permission level higher than GpoRead, such as GpoEdit, no action is taken. ### Example 2: Set the permission level for a security group that belongs to all GPOs -``` -PS C:\> Set-GPPermission -All -TargetName "Marketing Admins" -TargetType Group -PermissionLevel GpoEdit -Replace +```powershell +Set-GPPermission -All -TargetName "Marketing Admins" -TargetType Group -PermissionLevel GpoEdit -Replace ``` This command sets the permission level for the Marketing Admins security group to GpoEdit on all GPOs in the domain. @@ -64,8 +65,8 @@ This includes GPOs that are not linked to any site, domain, or OU. Because the *Replace* parameter is specified, the new permission level overwrites the existing permissions set for the group. ### Example 3: Replace the permission level of a security group for all GPOs on which the group has permissions -``` -PS C:\> Get-GPO -All | ForEach-Object { if($_ | Get-GPPermission -TargetName "Marketing Admins" -TargetType Group -ErrorAction SilentlyContinue) {$_ | Set-GPPermission -Replace -PermissionLevel GpoApply -TargetName "Marketing Admins" -TargetType Group }} +```powershell +Get-GPO -All | ForEach-Object { if($_ | Get-GPPermission -TargetName "Marketing Admins" -TargetType Group -ErrorAction SilentlyContinue) {$_ | Set-GPPermission -Replace -PermissionLevel GpoApply -TargetName "Marketing Admins" -TargetType Group }} DisplayName : TestGPO DomainName : contoso.com Owner : CONTOSO\Domain Admins @@ -124,6 +125,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -166,10 +168,11 @@ Accept wildcard characters: False ``` ### -Guid + Specifies the GPO for which to set the permission level by its globally unique identifier (GUID). The GUID uniquely identifies the GPO. -You can also refer to the *Guid* parameter by its built-in alias, **Id**. +You can also refer to the **Guid** parameter by its built-in alias, **Id**. ```yaml Type: Guid @@ -184,11 +187,12 @@ Accept wildcard characters: False ``` ### -Name + Specifies the GPO for which to set the permission level by its display name. The display name is not guaranteed to be unique in the domain. If another GPO with the same display name exists in the domain, an error occurs. -You can use the *Guid* parameter to uniquely identify a GPO. +You can use the **Guid** parameter to uniquely identify a GPO. You can also refer to the Name parameter by its built-in alias, **DisplayName**. @@ -245,10 +249,11 @@ Accept wildcard characters: False ``` ### -Server + Specifies the name of the domain controller that this cmdlet contacts to complete the operation. You can specify either the fully qualified domain name (FQDN) or the host name. -If you do not specify the name by using the *Server* parameter, the primary domain controller (PDC) emulator is contacted. +If you do not specify the name by using the **Server** parameter, the primary domain controller (PDC) emulator is contacted. You can also refer to the *Server* parameter by its built-in alias, **DC**. diff --git a/docset/winserver2022-ps/grouppolicy/Set-GPPrefRegistryValue.md b/docset/winserver2022-ps/grouppolicy/Set-GPPrefRegistryValue.md index c5613937a2..fc3cbc8f02 100644 --- a/docset/winserver2022-ps/grouppolicy/Set-GPPrefRegistryValue.md +++ b/docset/winserver2022-ps/grouppolicy/Set-GPPrefRegistryValue.md @@ -11,6 +11,7 @@ title: Set-GPPrefRegistryValue # Set-GPPrefRegistryValue ## SYNOPSIS + Configures a Registry preference item under either Computer Configuration or User Configuration in a GPO. ## SYNTAX @@ -55,8 +56,8 @@ This cmdlet can take input from the pipeline: ## EXAMPLES ### Example 1: Configure a Registry preference item for a registry value for a GPO -``` -PS C:\> Set-GPPrefRegistryValue -Name "TestGPO" -Context User -Key "HKCU\Software\Policies\Microsoft\Windows\Control Panel" -ValueName "ScreenSaveIsSecure" -Value "1" -Type String -Action Update +```powershell +Set-GPPrefRegistryValue -Name "TestGPO" -Context User -Key "HKCU\Software\Policies\Microsoft\Windows\Control Panel" -ValueName "ScreenSaveIsSecure" -Value "1" -Type String -Action Update DisplayName : TestGPO DomainName : contoso.com Owner : CONTOSO\Domain Admins @@ -74,24 +75,24 @@ This command configures a Registry preference item for the registry value HKCU\S When the GPO is applied on a client, the registry value is updated with a data type of String (REG_SZ) and value data 1. ### Example 2: Configure a Registry preference item for a registry value for a GPO -``` -PS C:\> Set-GPPrefRegistryValue -Name "TestGPO" -Context User -Action Create -Key "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey" -ValueName "ValueOne" -Value "NewData" -Type String +```powershell +Set-GPPrefRegistryValue -Name "TestGPO" -Context User -Action Create -Key "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey" -ValueName "ValueOne" -Value "NewData" -Type String ``` This command configures a Registry preference item for the registry value HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey ValueOne in User Configuration for the GPO named TestGPO. When the GPO is applied on a client, the registry value is created with a data type of String (REG_SZ) and value data "NewData". ### Example 3: Configure a Registry preference item for a registry value for a GPO specified by GUID -``` -PS C:\> Set-GPPrefRegistryValue -Guid 35c12ab3-956c-45d5-973b-46b17d225f47 -Context Computer -Action Create -Key "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey\ExampleKey2" +```powershell +Set-GPPrefRegistryValue -Guid 35c12ab3-956c-45d5-973b-46b17d225f47 -Context Computer -Action Create -Key "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey\ExampleKey2" ``` This command configures a Registry preference item for the registry key HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey\ExampleKey2 in Computer Configuration in the GPO that has ID 35c12ab3-956c-45d5-973b-46b17d225f47. When the GPO is applied on a client, the registry key is created. ### Example 4: Create a disabled Registry preference item for a registry value for a GPO -``` -PS C:\> Remove-GPPrefRegistryValue -Name "TestGPO" -Context User -Key "HKLM\SOFTWARE\Microsoft\ExampleKey" -ValueName "ValueOne" | Set-GPPrefRegistryValue -Context User -Action Create -Disable -Key "HKLM\SOFTWARE\Microsoft\ExampleKey" -ValueName "ValueOne" -Value "SomeData" -Type String +```powershell +Remove-GPPrefRegistryValue -Name "TestGPO" -Context User -Key "HKLM\SOFTWARE\Microsoft\ExampleKey" -ValueName "ValueOne" | Set-GPPrefRegistryValue -Context User -Action Create -Disable -Key "HKLM\SOFTWARE\Microsoft\ExampleKey" -ValueName "ValueOne" -Value "SomeData" -Type String ``` This command creates a disabled Registry preference item for the registry value HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey ValueOne in User Configuration in the GPO named TestGPO. @@ -104,13 +105,13 @@ You can suppress the error message by supplying the *ErrorAction* parameter to * For more information about the ErrorAction parameter, see about_CommonParameters. ### Example 5: Configure a Registry preference item for a registry value for all GPOs -``` -PS C:\> Get-GPO -All | Remove-GPPrefRegistryValue -Context User -Key "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey" -ValueName "ValueOne" -ErrorAction SilentlyContinue | Set-GPPrefRegistryValue -Context User -Action Update -Key "HKLM\SOFTWARE\Microsoft\ExampleKey" -ValueName "ValueOne" -Value "SomeData" -Type String +```powershell +Get-GPO -All | Remove-GPPrefRegistryValue -Context User -Key "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey" -ValueName "ValueOne" -ErrorAction SilentlyContinue | Set-GPPrefRegistryValue -Context User -Action Update -Key "HKLM\SOFTWARE\Microsoft\ExampleKey" -ValueName "ValueOne" -Value "SomeData" -Type String ``` This command configures a Registry preference item to update the registry value HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey ValueOne for every GPO in the domain that previously had a Registry preference item configured for that value in User Configuration. -The command is invoked with the *All* parameter to get all the GPOs in the domain. +The command is invoked with the **All** parameter to get all the GPOs in the domain. These GPOs are piped into the **Remove-GPPrefRegistryValue** cmdlet. If the GPO contains any Registry preference items configured for the specified key, they are removed. **Remove-GPPrefRegistryValue** only outputs a GPO to the pipeline if it removes a Registry preference item from a GPO. @@ -120,8 +121,8 @@ If a GPO passed to **Remove-GPPrefRegistryValue** does not have a Registry prefe The *ErrorAction* parameter is set to SilentlyContinue to suppress the error message. ### Example 6: Copy all Registry preference items for a registry value for a GPO -``` -PS C:\> Get-GPPrefRegistryValue -Name "TestGPO" -Context User -Key "HKLM\Software\Microsoft\ExampleKey" | Set-GPPrefRegistryValue -Name "TestGPO-1" -Context Computer -Order 1 -ErrorAction SilentlyContinue +```powershell +Get-GPPrefRegistryValue -Name "TestGPO" -Context User -Key "HKLM\Software\Microsoft\ExampleKey" | Set-GPPrefRegistryValue -Name "TestGPO-1" -Context Computer -Order 1 -ErrorAction SilentlyContinue DisplayName : TestGPO-1 DomainName : contoso.com Owner : CONTOSO\Domain Admins @@ -193,6 +194,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -248,12 +250,13 @@ Accept wildcard characters: False ``` ### -Domain + Specifies the domain for this cmdlet. You must specify the fully qualified domain name (FQDN) of the domain. For the **Set-GPPrefRegistryValue** cmdlet, the GPO for which to configure the Registry preference item must exist in this domain. -If you do not specify the *Domain* parameter, the domain of the user that is running the current session is used. +If you do not specify the **Domain** parameter, the domain of the user that is running the current session is used. If the cmdlet is being run from a computer startup or shutdown script, the domain of the computer is used. For more information, see the Notes section in the full Help. @@ -275,10 +278,11 @@ Accept wildcard characters: False ``` ### -Guid + Specifies the GPO in which to configure the Registry preference item by its globally unique identifier (GUID). The GUID uniquely identifies the GPO. -You can also refer to the *Guid* parameter by its built-in alias, **Id**. +You can also refer to the **Guid** parameter by its built-in alias, **Id**. ```yaml Type: Guid @@ -321,7 +325,7 @@ Specifies the GPO in which to configure the Registry preference item by its disp The display name is not guaranteed to be unique in the domain. If another GPO with the same display name exists in the domain, an error occurs. -You can use the *Guid* parameter to uniquely identify a GPO. +You can use the **Guid** parameter to uniquely identify a GPO. You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. @@ -361,10 +365,11 @@ Accept wildcard characters: False ``` ### -Server + Specifies the name of the domain controller that this cmdlet contacts to complete the operation. You can specify either the fully qualified domain name (FQDN) or the host name. -If you do not specify the name by using the *Server* parameter, the primary domain controller (PDC) emulator is contacted. +If you do not specify the name by using the **Server** parameter, the primary domain controller (PDC) emulator is contacted. You can also refer to the *Server* parameter by its built-in alias, **DC**. @@ -485,7 +490,7 @@ This cmdlet returns the GPO in which the Registry preference item was configured ## NOTES -* You can use the *Domain* parameter to explicitly specify the domain for this cmdlet. +* You can use the **Domain** parameter to explicitly specify the domain for this cmdlet. If you do not explicitly specify the domain, the cmdlet uses a default domain. The default domain is the domain that is used to access network resources by the security context under which the current session is running. diff --git a/docset/winserver2022-ps/grouppolicy/Set-GPRegistryValue.md b/docset/winserver2022-ps/grouppolicy/Set-GPRegistryValue.md index cd278aa380..fee4390176 100644 --- a/docset/winserver2022-ps/grouppolicy/Set-GPRegistryValue.md +++ b/docset/winserver2022-ps/grouppolicy/Set-GPRegistryValue.md @@ -11,6 +11,7 @@ title: Set-GPRegistryValue # Set-GPRegistryValue ## SYNOPSIS + Configures one or more registry-based policy settings under either Computer Configuration or User Configuration in a GPO. ## SYNTAX @@ -61,8 +62,8 @@ No subkeys, or their values, are deleted on the client. ## EXAMPLES ### Example 1: Configure a registry-based policy setting for a registry value -``` -PS C:\> Set-GPRegistryValue -Name "TestGPO" -Key "HKCU\Software\Policies\Microsoft\Windows\Control Panel\Desktop" -ValueName "ScreenSaveTimeOut" -Type DWORD -Value 900 +```powershell +Set-GPRegistryValue -Name "TestGPO" -Key "HKCU\Software\Policies\Microsoft\Windows\Control Panel\Desktop" -ValueName "ScreenSaveTimeOut" -Type DWORD -Value 900 DisplayName : TestGPO DomainName : contoso.com Owner : CONTOSO\Domain Admins @@ -80,8 +81,8 @@ This command configures a registry-based policy setting for the registry value " This policy setting sets the Screen Saver timeout to 900 seconds (15 minutes) when Group Policy is applied on the client. ### Example 1: Configure a registry-based policy settings for multiple registry values -``` -PS C:\> Set-GPRegistryValue -Name "TestGPO" -Key "HKCU\Software\Policies\Microsoft\ExampleKey" -ValueName "ValueOne", "ValueTwo", "ValueThree" -Type String -Value "String 1", "String 2", "String 3" +```powershell +Set-GPRegistryValue -Name "TestGPO" -Key "HKCU\Software\Policies\Microsoft\ExampleKey" -ValueName "ValueOne", "ValueTwo", "ValueThree" -Type String -Value "String 1", "String 2", "String 3" ``` This command configures registry-based policy settings to set three registry values. @@ -95,8 +96,8 @@ When the GPO is applied on the client, the following registry values are set: "HKCU\Software\Policies\Microsoft\ExampleKey ValueThree" "String 3" ### Example 3: Configure a registry-based policy setting to set a list of registry values -``` -PS C:\> Set-GPRegistryValue -Name "TestGPO" -Key "HKCU\Software\Policies\Microsoft\ExampleKey" -ValuePrefix "MyValue" -Type String -Value "String 1", "String 2", "String 3" +```powershell +Set-GPRegistryValue -Name "TestGPO" -Key "HKCU\Software\Policies\Microsoft\ExampleKey" -ValuePrefix "MyValue" -Type String -Value "String 1", "String 2", "String 3" ``` This command configures a registry-based policy setting to set a list of three registry values. @@ -113,16 +114,16 @@ If you specify the *Additive* parameter, the list values are added to the existi The actual value names assigned to the list values depends on the number of existing list values on the client. ### Example 4: Disable registry-based policy settings for specific registry values -``` -PS C:\> Set-GPRegistryValue -Disable -Name "TestGPO" -Key "HKCU\Software\Policies\Microsoft\ExampleKey" -ValueName "ValueOne", "ValueTwo", "ValueThree" +```powershell +Set-GPRegistryValue -Disable -Name "TestGPO" -Key "HKCU\Software\Policies\Microsoft\ExampleKey" -ValueName "ValueOne", "ValueTwo", "ValueThree" ``` This command disables the registry-based policy settings, in the User Configuration section, for the specified registry values. When the GPO is applied on the client, the registry values are deleted from the registry on the client. ### Example 5: Disable registry-based policy settings for a specific registry key -``` -PS C:\> Set-GPRegistryValue -Disable -Name "TestGPO" -Key "HKCU\Software\Policies\Microsoft\ExampleKey" +```powershell +Set-GPRegistryValue -Disable -Name "TestGPO" -Key "HKCU\Software\Policies\Microsoft\ExampleKey" ``` This command disables the registry-based policy setting, in the User Configuration section, for the specified registry key. @@ -152,6 +153,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -195,12 +197,13 @@ Accept wildcard characters: False ``` ### -Domain + Specifies the domain for this cmdlet. You must specify the fully qualified domain name (FQDN) of the domain. For the **Set-GPRegistryValue** cmdlet, the GPO in which to configure the registry-based policy setting must exist in this domain. -If you do not specify the *Domain* parameter, the domain of the user that is running the current session is used. +If you do not specify the **Domain** parameter, the domain of the user that is running the current session is used. If the cmdlet is being run from a computer startup or shutdown script, the domain of the computer is used. For more information, see the Notes section in the full Help. @@ -222,10 +225,11 @@ Accept wildcard characters: False ``` ### -Guid + Specifies the GPO in which to configure the registry-based policy setting by its globally unique identifier (GUID). The GUID uniquely identifies the GPO. -You can also refer to the *Guid* parameter by its built-in alias, **Id**. +You can also refer to the **Guid** parameter by its built-in alias, **Id**. ```yaml Type: Guid @@ -267,7 +271,7 @@ Specifies the GPO in which to configure the registry-based policy setting by its The display name is not guaranteed to be unique in the domain. If another GPO with the same display name exists in the domain, an error occurs. -You can use the *Guid* parameter to uniquely identify a GPO. +You can use the **Guid** parameter to uniquely identify a GPO. You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. @@ -284,10 +288,11 @@ Accept wildcard characters: False ``` ### -Server + Specifies the name of the domain controller that this cmdlet contacts to complete the operation. You can specify either the fully qualified domain name (FQDN) or the host name. -If you do not specify the name by using the *Server* parameter, the primary domain controller (PDC) emulator is contacted. +If you do not specify the name by using the **Server** parameter, the primary domain controller (PDC) emulator is contacted. You can also refer to the *Server* parameter by its built-in alias, **DC**. @@ -442,7 +447,7 @@ This cmdlet returns the GPO in which the registry-based policy setting has been * The hive of the registry key that you specify, HKEY_LOCAL_MACHINE (HKLM) or HKEY_CURRENT_USER (HKCU), determines whether the registry-based policy setting is in Computer Configuration or User Configuration. - You can use the *Domain* parameter to explicitly specify the domain for this cmdlet. + You can use the **Domain** parameter to explicitly specify the domain for this cmdlet. If you do not explicitly specify the domain, the cmdlet uses a default domain. The default domain is the domain that is used to access network resources by the security context under which the current session is running. From cfcbce775d5b40d8451bece935e89af562b26d1d Mon Sep 17 00:00:00 2001 From: "Mikey Lombardi (He/Him)" Date: Mon, 1 May 2023 10:40:55 -0500 Subject: [PATCH 537/965] Apply suggestions from code review --- .../adcsdeployment/Uninstall-AdcsCertificationAuthority.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/adcsdeployment/Uninstall-AdcsCertificationAuthority.md b/docset/winserver2022-ps/adcsdeployment/Uninstall-AdcsCertificationAuthority.md index e9eeb9fb6c..1b874b58ba 100644 --- a/docset/winserver2022-ps/adcsdeployment/Uninstall-AdcsCertificationAuthority.md +++ b/docset/winserver2022-ps/adcsdeployment/Uninstall-AdcsCertificationAuthority.md @@ -105,7 +105,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES - To uninstall the CA role service, ensure you run Windows PowerShell as an administrator. You can - run the command with the *Force* parameter to bypass the prompt for confirmation. + run the command with the **Force** parameter to bypass the prompt for confirmation. ## RELATED LINKS From 50d0ffe8dc2f34c95e7c219f6af47e40dd18765d Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 1 May 2023 09:55:48 -0700 Subject: [PATCH 538/965] Update docset/winserver2022-ps/adcsdeployment/Install-AdcsWebEnrollment.md Co-authored-by: Mikey Lombardi (He/Him) --- .../adcsdeployment/Install-AdcsWebEnrollment.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/adcsdeployment/Install-AdcsWebEnrollment.md b/docset/winserver2022-ps/adcsdeployment/Install-AdcsWebEnrollment.md index c0be238bf9..cd9a0a5731 100644 --- a/docset/winserver2022-ps/adcsdeployment/Install-AdcsWebEnrollment.md +++ b/docset/winserver2022-ps/adcsdeployment/Install-AdcsWebEnrollment.md @@ -91,7 +91,7 @@ Accept wildcard characters: False ### -Credential -Specifies a `PSCredential` object for the CA Web Enrollment. To obtain a credential object, use the +Specifies a **PSCredential** object for the CA Web Enrollment. To obtain a credential object, use the `Get-Credential` cmdlet. For more information, type `Get-Help Get-Credential`. If the Web Enrollment service is configured to use Standalone CA, then an account that is a member of the local Administrators on the CA is required. If the Web Enrollment service is configured to use an From b5f5f87873c0f3702f1255da81b02968961332c4 Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 1 May 2023 09:56:55 -0700 Subject: [PATCH 539/965] Update docset/winserver2022-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md Co-authored-by: Mikey Lombardi (He/Him) --- .../Install-AdcsNetworkDeviceEnrollmentService.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md b/docset/winserver2022-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md index e97b1ee959..0142170021 100644 --- a/docset/winserver2022-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md +++ b/docset/winserver2022-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md @@ -76,7 +76,7 @@ Install-AdcsNetworkDeviceEnrollmentService @params ``` This command displays the default settings when NDES is using a service account without making any -changes to the configuration. This command uses the service account named `"CONTOSO\svcNDES"` that +changes to the configuration. This command uses the service account named `CONTOSO\svcNDES` that is a member of the local computer's `IIS_USRS` group. ### Example 3: Install NDES using the application pool identity From 25e48064d044ba4c6e5f05dfc5eb539a45523c85 Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 1 May 2023 09:57:03 -0700 Subject: [PATCH 540/965] Update docset/winserver2022-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md Co-authored-by: Mikey Lombardi (He/Him) --- .../Install-AdcsNetworkDeviceEnrollmentService.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md b/docset/winserver2022-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md index 0142170021..eb31a852d7 100644 --- a/docset/winserver2022-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md +++ b/docset/winserver2022-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md @@ -111,7 +111,7 @@ $params = @{ Install-AdcsNetworkDeviceEnrollmentService @params ``` -This command installs the NDES using a service account named `"CONTOSO\svcNDES"` that is a member of +This command installs the NDES using a service account named `CONTOSO\svcNDES` that is a member of the local computer's `IIS_USRS` group. The command also specifies several non-default parameters. ## PARAMETERS From 31a95091219888219d6ad53bb55b20c788340a88 Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 1 May 2023 09:57:37 -0700 Subject: [PATCH 541/965] Update docset/winserver2022-ps/adcsdeployment/Install-AdcsCertificationAuthority.md Co-authored-by: Mikey Lombardi (He/Him) --- .../adcsdeployment/Install-AdcsCertificationAuthority.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/adcsdeployment/Install-AdcsCertificationAuthority.md b/docset/winserver2022-ps/adcsdeployment/Install-AdcsCertificationAuthority.md index 696c3d9bf8..7ecd1a02a3 100644 --- a/docset/winserver2022-ps/adcsdeployment/Install-AdcsCertificationAuthority.md +++ b/docset/winserver2022-ps/adcsdeployment/Install-AdcsCertificationAuthority.md @@ -70,7 +70,7 @@ To include the Certification Authority and Certificate Templates consoles in a C must use the **IncludeManagementTools** parameter at the end of the `Install-WindowsFeature Adcs-Cert-Authority` command. -Int is equivalent to Int32 in the +**Int** is equivalent to **Int32** in the [.NET Framework](/dotnet/csharp/language-reference/builtin-types/built-in-types). ## EXAMPLES From 46245e4d1159986fd5bd9c9a65bc68a0d2d87e08 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 13:37:58 -0400 Subject: [PATCH 542/965] Update docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md Co-authored-by: Mikey Lombardi (He/Him) --- docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md index 8a10d3d524..5fc9fcb335 100644 --- a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md +++ b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md @@ -36,7 +36,7 @@ The `Install-ADDSDomain` cmdlet installs an Active Directory domain configuratio ### Example 1: Install a new child domain ```powershell -$HashArguments = @{ +$params = @{ Credential = (Get-Credential CORP\EnterpriseAdmin1) NewDomainName = "child" ParentDomainName = "corp.contoso.com" From 1213797fb0e25e554ad84aaae1136efcc0f476fb Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 13:39:04 -0400 Subject: [PATCH 543/965] Update docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md Co-authored-by: Mikey Lombardi (He/Him) --- .../addsdeployment/Install-ADDSDomain.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md index 5fc9fcb335..bf2ba49a2a 100644 --- a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md +++ b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md @@ -53,15 +53,15 @@ $params = @{ Install-ADDSDomain @HashArguments ``` -This command installs a new child domain named child.corp.contoso.com using credentials of -CORP\EnterpriseAdmin1. This command also installs a DNS server, creates a DNS delegation in the -corp.contoso.com domain, sets the domain functional level to Windows Server 2003, makes the domain -controller a global catalog server in a site named Houston, uses DC1.corp.contoso.com as the -replication source domain controller, installs the Active Directory database and SYSVOL on the `D:\` -drive. Additionally this command also installs the log files on the `E:\` drive, has the server not -automatically restart after the domain installation is complete and causes the user to be prompted -to provide and confirm the Directory Services Restore Mode (DSRM) password to complete and commit -the installation of the domain in Active Directory. +This command installs a new child domain named `child.corp.contoso.com` using credentials of +`CORP\EnterpriseAdmin1`. This command also installs a DNS server, creates a DNS delegation in the +`corp.contoso.com` domain, sets the domain functional level to Windows Server 2003, makes the +domain controller a global catalog server in a site named Houston, uses `DC1.corp.contoso.com` as +the replication source domain controller, installs the Active Directory database and SYSVOL on the +`D:\` drive. Additionally this command also installs the log files on the `E:\` drive, has the +server not automatically restart after the domain installation is complete and causes the user to +be prompted to provide and confirm the Directory Services Restore Mode (DSRM) password to complete +and commit the installation of the domain in Active Directory. ## PARAMETERS From fe0b8d640b7a1e4f3eb4c13ddf9ddbfe204d75b0 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 13:39:21 -0400 Subject: [PATCH 544/965] Update docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md Co-authored-by: Mikey Lombardi (He/Him) --- docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md index bf2ba49a2a..c800f0a35a 100644 --- a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md +++ b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md @@ -171,8 +171,8 @@ Accept wildcard characters: False ### -DnsDelegationCredential Specifies the user name and password (account credentials) for creating the DNS delegation. This -parameter is skipped if the value for the _CreateDnsDelegation_ parameter is either specified or -computed to be $false. +parameter is skipped if the value for the **CreateDnsDelegation** parameter is either specified or +computed to be `$false`. ```yaml Type: System.Management.Automation.PSCredential From 687622449dc7bca0460f37ce528746e4b30ded5d Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 13:39:34 -0400 Subject: [PATCH 545/965] Update docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md Co-authored-by: Mikey Lombardi (He/Him) --- docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md index c800f0a35a..f7dd4b7f8d 100644 --- a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md +++ b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md @@ -191,7 +191,7 @@ Accept wildcard characters: False Specifies the domain functional level of the first domain in the creation of a new forest. Supported values for this parameter can be either a valid integer or a corresponding enumerated string value. For instance, to set the domain mode level to Windows Server 2008 R2, you can specify either a value -of 4 or Win2008R2. +of `4` or `Win2008R2`. The acceptable values for this parameter are: From 79e599b57eab96c2f0478871f7319ab52521b11e Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 13:39:57 -0400 Subject: [PATCH 546/965] Update docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md Co-authored-by: Mikey Lombardi (He/Him) --- docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md index f7dd4b7f8d..e3069afda0 100644 --- a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md +++ b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md @@ -221,8 +221,8 @@ Accept wildcard characters: False ### -DomainType Specifies the type of domain that this cmdlet creates. You can create a new domain tree in an -existing forest (supported values are TreeDomain or tree) or a child of an existing domain -(supported values are ChildDomain or child). The default is ChildDomain. +existing forest (supported values are `TreeDomain` or `tree`) or a child of an existing domain +(supported values are `ChildDomain` or `child`). The default is `ChildDomain`. ```yaml Type: DomainType From 74b64369cc85c4c18700f1b91df4782b9e96f964 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 13:40:13 -0400 Subject: [PATCH 547/965] Update docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md Co-authored-by: Mikey Lombardi (He/Him) --- .../addsdeployment/Install-ADDSDomain.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md index e3069afda0..10818b6354 100644 --- a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md +++ b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md @@ -258,14 +258,14 @@ Accept wildcard characters: False Indicates that the cmdlet installs and configures the DNS Server service for the domain or domain tree. For domain installation, if this parameter is left unspecified and the parent domain (or in the case of a domain tree, the forest root domain) already hosts and stores the DNS names for the -domain, then the default for this parameter is $true and the DNS server is installed. Otherwise, if -DNS domain names are hosted outside of Active Directory, the default is $false and no DNS server is -installed. +domain, then the default for this parameter is `$true` and the DNS server is installed. Otherwise, +if DNS domain names are hosted outside of Active Directory, the default is `$false` and no DNS +server is installed. To test if DNS domain names are hosted outside of Active Directory, this cmdlet uses a start of -authority (SOA) type DNS query. For instance, if the value of _NewDomainName_ parameter is -corp.contoso.com, Active Directory performs an SOA query for corp.contoso.com and ensures that the -zone name in the response is corp.contoso.com. +authority (SOA) type DNS query. For instance, if the value of **NewDomainName** parameter is +`corp.contoso.com`, Active Directory performs an SOA query for `corp.contoso.com` and ensures that +the zone name in the response is `corp.contoso.com`. ```yaml Type: System.Management.Automation.SwitchParameter From 9035453a2af537ac45c34e129d0df1593f2ae8d4 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 13:40:27 -0400 Subject: [PATCH 548/965] Update docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md Co-authored-by: Mikey Lombardi (He/Him) --- .../addsdeployment/Install-ADDSDomain.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md index 10818b6354..2cadf5bfdb 100644 --- a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md +++ b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md @@ -299,10 +299,11 @@ Accept wildcard characters: False ### -NewDomainName -Specifies the new domain name that this cmdlet installs. If the value set for the _DomainType_ -parameter is set to TreeDomain, this parameter can be used to specify the fully qualified domain -name (FQDN) for the new domain tree. If the value set for the _DomainType_ parameter is set to -ChildDomain, this parameter can be used to specify a single label domain name for the child domain. +Specifies the new domain name that this cmdlet installs. If the value set for the **DomainType** +parameter is set to `TreeDomain`, this parameter can be used to specify the fully qualified domain +name (FQDN) for the new domain tree. If the value for the **DomainType** parameter is set to +`ChildDomain`, this parameter can be used to specify a single label domain name for the child +domain. ```yaml Type: System.String From a4adc231dfc10534703cd073a0d37d96ab071667 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 13:40:34 -0400 Subject: [PATCH 549/965] Update docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md Co-authored-by: Mikey Lombardi (He/Him) --- docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md index 2cadf5bfdb..8f5ccdeeb9 100644 --- a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md +++ b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md @@ -324,7 +324,7 @@ parameter they must be single label names of 15 characters or less. If this parameter is set with a valid NetBIOS name value, then promotion continues with the name specified. If this parameter is not set, then the default is automatically computed from the value -of the _NewDomainName_ parameter. +of the **NewDomainName** parameter. For instance, if this parameter is not specified and a single-label prefix domain name of 15 characters or less is specified within the value of the _NewDomainName_ parameter, then promotion From 57fa5c4c8ba3441445079fc5dfae7ff1ffe1f088 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 13:40:43 -0400 Subject: [PATCH 550/965] Update docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md Co-authored-by: Mikey Lombardi (He/Him) --- .../winserver2022-ps/addsdeployment/Install-ADDSDomain.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md index 8f5ccdeeb9..7146c385ca 100644 --- a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md +++ b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md @@ -327,9 +327,9 @@ specified. If this parameter is not set, then the default is automatically compu of the **NewDomainName** parameter. For instance, if this parameter is not specified and a single-label prefix domain name of 15 -characters or less is specified within the value of the _NewDomainName_ parameter, then promotion -continues with an automatically generated NetBIOS domain name. For example, the prefix label corp -within a full domain name value of corp.contoso.com would be a successful name choice. +characters or less is specified within the value of the **NewDomainName** parameter, then promotion +continues with an automatically generated NetBIOS domain name. For example, the prefix label `corp` +within a full domain name value of `corp.contoso.com` would be a successful name choice. Note that if the name value given for this parameter is a name of 16 characters or more, then the domain installation will fail. From 01bf3045630640a187b483d3ce7f6488f12458db Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 13:40:53 -0400 Subject: [PATCH 551/965] Update docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md Co-authored-by: Mikey Lombardi (He/Him) --- .../addsdeployment/Install-ADDSDomain.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md index 7146c385ca..1131f05397 100644 --- a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md +++ b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomain.md @@ -507,11 +507,11 @@ Accept wildcard characters: False ### -SkipPreChecks Indicates that the cmdlet performs only a base set of validations. This behavior is equivalent to -the validations that were performed when using Dcpromo.exe in earlier versions of Windows Server to -add a new domain. When this switch parameter is set, it specifies that additional preliminary checks -should be bypassed. For more information on the scope of these additional preliminary checks that -the ADDSDeployment module performs by default when using Windows Server 2012, refer to the table in -the section ADPrep and Prerequisite Checking Architecture in +the validations that were performed when using `Dcpromo.exe` in earlier versions of Windows Server +to add a new domain. When this switch parameter is set, it specifies that additional preliminary +checks should be bypassed. For more information on the scope of these additional preliminary checks +that the **ADDSDeployment** module performs by default when using Windows Server 2012, refer to the +table in the section ADPrep and Prerequisite Checking Architecture in [AD DS Simplified Administration](https://go.microsoft.com/fwlink/?LinkID=237244). ```yaml From 1cf698b3a4c7e22a41a2deda27a919bb081ff981 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Sat, 29 Apr 2023 17:10:40 -0400 Subject: [PATCH 552/965] Spelling dictionary additions --- .vscode/cspell/winmodules/dictionaries/winps.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.vscode/cspell/winmodules/dictionaries/winps.txt b/.vscode/cspell/winmodules/dictionaries/winps.txt index d664bd7483..d042a7f9a0 100644 --- a/.vscode/cspell/winmodules/dictionaries/winps.txt +++ b/.vscode/cspell/winmodules/dictionaries/winps.txt @@ -1,3 +1,6 @@ ADCS +Dcpromo +DSRM NTDS RODC +Sysvol From 75710d5d6b2fc7755602b6bb747762aab33608d2 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Sat, 29 Apr 2023 17:11:20 -0400 Subject: [PATCH 553/965] Style guidline fixes --- .../addsdeployment/Install-ADDSForest.md | 228 +++++++++++------- 1 file changed, 146 insertions(+), 82 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md b/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md index 8459cae94a..e38fb1e65b 100644 --- a/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md +++ b/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md @@ -11,44 +11,65 @@ title: Install-ADDSForest # Install-ADDSForest ## SYNOPSIS + Creates a new Active Directory forest. ## SYNTAX ``` -Install-ADDSForest [-SkipPreChecks] -DomainName [-SafeModeAdministratorPassword ] - [-CreateDnsDelegation] [-DatabasePath ] [-DnsDelegationCredential ] [-NoDnsOnNetwork] - [-DomainMode ] [-DomainNetbiosName ] [-ForestMode ] [-InstallDns] - [-LogPath ] [-NoRebootOnCompletion] [-SkipAutoConfigureDns] [-SysvolPath ] [-Force] [-WhatIf] - [-Confirm] [] +Install-ADDSForest [-SkipPreChecks] -DomainName + [-SafeModeAdministratorPassword ] [-CreateDnsDelegation] + [-DatabasePath ] [-DnsDelegationCredential ] [-NoDnsOnNetwork] + [-DomainMode ] [-DomainNetbiosName ] [-ForestMode ] + [-InstallDns] [-LogPath ] [-NoRebootOnCompletion] [-SkipAutoConfigureDns] + [-SysvolPath ] [-Force] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Install-ADDSForest** cmdlet installs an Active Directory forest configuration. + +The `Install-ADDSForest` cmdlet installs an Active Directory forest configuration. ## EXAMPLES ### Example 1: Install a new forest + ``` -PS C:\> Install-ADDSForest -DomainName "corp.contoso.com" -InstallDNS +Install-ADDSForest -DomainName "corp.contoso.com" -InstallDNS ``` -This command installs a new forest named corp.contoso.com, causes the user to be prompted to provide and confirm the Directory Services Restore Mode (DSRM) password and specifies a DNS server should also be installed during the forest installation process. +This command installs a new forest named corp.contoso.com, causes the user to be prompted to provide +and confirm the Directory Services Restore Mode (DSRM) password and specifies a DNS server should +also be installed during the forest installation process. ### Example 2: Install a new forest and a DNS delegation + ``` -PS C:\> Install-ADDSForest -DomainName "corp.contoso.com" -CreateDNSDelegation -DomainMode Win2008R2 -ForestMode Win2008R2 -DatabasePath "d:\NTDS" -SysvolPath "d:\SYSVOL" -LogPath "e:\Logs" +$HashArguments = @{ + CreateDNSDelegation = $true + DatabasePath = "d:\NTDS" + DomainMode = Win2008R2 + DomainName = "corp.contoso.com" + ForestMode = Win2008R2 + LogPath = "e:\Logs" + SysvolPath = "d:\SYSVOL" +} +Install-ADDSForest @HashArguments ``` -This command installs a new forest named corp.contoso.com, creates a DNS delegation in the contoso.com domain, sets domain functional level to Windows Server 2008 R2 and sets forest functional level to Windows Server 2008, installs the Active Directory database and SYSVOL on the D:\ drive, installs the log files on the E:\ drive and has the server automatically restart after AD DS installation is complete and prompts the user to provide and confirm the DSRM password. +This command installs a new forest named corp.contoso.com, creates a DNS delegation in the +contoso.com domain, sets domain functional level to Windows Server 2008 R2 and sets forest +functional level to Windows Server 2008, installs the Active Directory database and SYSVOL on the +`D:\` drive, installs the log files on the `E:\` drive and has the server automatically restart +after AD DS installation is complete and prompts the user to provide and confirm the DSRM password. ## PARAMETERS ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -60,12 +81,13 @@ Accept wildcard characters: False ``` ### -CreateDnsDelegation -Indicates that this cmdlet creates a DNS delegation that references the new DNS server that you install along with the domain controller. -Valid for Active Directory-integrated DNS only. -The default is computed automatically based on the environment. + +Indicates that this cmdlet creates a DNS delegation that references the new DNS server that you +install along with the domain controller. Valid for Active Directory-integrated DNS only. The +default is computed automatically based on the environment. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -77,11 +99,13 @@ Accept wildcard characters: False ``` ### -DatabasePath -Specifies the fully qualified, non-Universal Naming Convention (UNC) path to a directory on a fixed disk of the local computer that contains the domain database, for instance, C:\Databases\NTDS. -The default is %SYSTEMROOT%\NTDS. + +Specifies the fully qualified, non-Universal Naming Convention (UNC) path to a directory on a fixed +disk of the local computer that contains the domain database, for instance, `C:\Databases\NTDS`. The +default is `%SYSTEMROOT%\NTDS`. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -93,11 +117,12 @@ Accept wildcard characters: False ``` ### -DnsDelegationCredential -Specifies the user name and password for creating DNS delegation. -This parameter is skipped if the value for the *CreateDnsDelegation* parameter is either specified or computed to be $False. + +Specifies the user name and password for creating DNS delegation. This parameter is skipped if the +value for the `-CreateDnsDelegation` parameter is either specified or computed to be $False. ```yaml -Type: PSCredential +Type: System.Management.Automation.PSCredential Parameter Sets: (All) Aliases: @@ -109,9 +134,11 @@ Accept wildcard characters: False ``` ### -DomainMode -Specifies the domain functional level of the first domain in the creation of a new forest. -Supported values for this parameter can be either a valid integer or a corresponding enumerated string value. -For instance, to set the domain mode level to Windows Server 2008 R2, you can specify either a value of 4 or Win2008R2. + +Specifies the domain functional level of the first domain in the creation of a new forest. Supported +values for this parameter can be either a valid integer or a corresponding enumerated string value. +For instance, to set the domain mode level to Windows Server 2008 R2, you can specify either a value +of 4 or Win2008R2. The acceptable values for this parameter are: @@ -126,7 +153,7 @@ The domain functional level cannot be lower than the forest functional level, bu The default is automatically computed and set. ```yaml -Type: DomainMode +Type: System.DirectoryServices.ActiveDirectory.DomainMode Parameter Sets: (All) Aliases: Accepted values: Win2008, Win2008R2, Win2012, Win2012R2, WinThreshold, Default @@ -139,10 +166,11 @@ Accept wildcard characters: False ``` ### -DomainName + Specifies the fully qualified domain name (FQDN) for the root domain in the forest. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -154,19 +182,24 @@ Accept wildcard characters: False ``` ### -DomainNetbiosName -Specifies the NetBIOS name for the root domain in the new forest. -For NetBIOS names to be valid for use with this parameter they must be single label names of 15 characters or less. -If this parameter is set with a valid NetBIOS name value, then forest installation continues with the name specified. -If this parameter is not set, then the default is automatically computed from the value of the *DomainName* parameter. +Specifies the NetBIOS name for the root domain in the new forest. For NetBIOS names to be valid for +use with this parameter they must be single label names of 15 characters or less. -For example, if this parameter is not specified and a single-label prefix domain name of 15 characters or less is specified within the value of the *DomainName* parameter, then promotion continues with an automatically generated NetBIOS domain name. -For example, the prefix label corp within a full domain name value of corp.contoso.com would be a successful name choice. +If this parameter is set with a valid NetBIOS name value, then forest installation continues with +the name specified. If this parameter is not set, then the default is automatically computed from +the value of the `-DomainName` parameter. -Note that if the name value given for this parameter is a name of 16 characters or more, then the forest installation fails. +For example, if this parameter is not specified and a single-label prefix domain name of 15 +characters or less is specified within the value of the `-DomainName` parameter, then promotion +continues with an automatically generated NetBIOS domain name. For example, the prefix label corp +within a full domain name value of corp.contoso.com would be a successful name choice. + +Note that if the name value given for this parameter is a name of 16 characters or more, then the +forest installation fails. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -178,10 +211,11 @@ Accept wildcard characters: False ``` ### -Force + Forces the command to run without asking for user confirmation. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -193,9 +227,10 @@ Accept wildcard characters: False ``` ### -ForestMode -Specifies the forest functional level for the new forest. -Supported values for this parameter can be either a valid integer or a corresponding enumerated string value. -For example, to set the forest mode level to Windows Server 2008 R2, you can specify either a value of 4 or Win2008R2. + +Specifies the forest functional level for the new forest. Supported values for this parameter can be +either a valid integer or a corresponding enumerated string value. For example, to set the forest +mode level to Windows Server 2008 R2, you can specify either a value of 4 or Win2008R2. The acceptable values for this parameter are: @@ -206,11 +241,12 @@ The acceptable values for this parameter are: - Windows Server 2012 R2: 6 or Win2012R2 - Windows Server 2016: 7 or WinThreshold -The default forest functional level in Windows Server is typically the same as the version you are running. -However, the default forest functional level in Windows Server 2008 R2 when you create a new forest is Windows Server 2003 or 2. +The default forest functional level in Windows Server is typically the same as the version you are +running. However, the default forest functional level in Windows Server 2008 R2 when you create a +new forest is Windows Server 2003 or 2. ```yaml -Type: ForestMode +Type: System.DirectoryServices.ActiveDirectory.ForestMode Parameter Sets: (All) Aliases: Accepted values: Win2008, Win2008R2, Win2012, Win2012R2, WinThreshold, Default @@ -223,11 +259,12 @@ Accept wildcard characters: False ``` ### -InstallDns + Indicates that this cmdlet installs and configures the DNS Server service for the new forest. For forest installation, the default is $True. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -239,12 +276,13 @@ Accept wildcard characters: False ``` ### -LogPath -Specifies the fully qualified, non-UNC path to a directory on a fixed disk of the local computer where the log file for this operation is written. -For instance, C:\Logs. -The default log file path if no other path is specified with this parameter is %SYSTEMROOT%\NTDS. + +Specifies the fully qualified, non-UNC path to a directory on a fixed disk of the local computer +where the log file for this operation is written. For instance, `C:\Logs`. The default log file path +if no other path is specified with this parameter is `%SYSTEMROOT%\NTDS`. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -256,16 +294,19 @@ Accept wildcard characters: False ``` ### -NoDnsOnNetwork -Indicates that the DNS service is not available on the network. -This parameter is used only when the IP setting of the network adapter for this computer is not configured with the name of a DNS server for name resolution. -It indicates that a DNS server is installed on this computer for name resolution. -Otherwise, the IP settings of the network adapter must first be configured with the address of a DNS server. -Omitting this parameter indicates that the TCP/IP client settings of the network adapter on this server computer is used to contact a DNS server. -Therefore, if you do not specify this parameter, ensure that TCP/IP client settings are first configured with a preferred DNS server address. +Indicates that the DNS service is not available on the network. This parameter is used only when the +IP setting of the network adapter for this computer is not configured with the name of a DNS server +for name resolution. It indicates that a DNS server is installed on this computer for name +resolution. Otherwise, the IP settings of the network adapter must first be configured with the +address of a DNS server. + +Omitting this parameter indicates that the TCP/IP client settings of the network adapter on this +server computer is used to contact a DNS server. Therefore, if you do not specify this parameter, +ensure that TCP/IP client settings are first configured with a preferred DNS server address. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -277,12 +318,15 @@ Accept wildcard characters: False ``` ### -NoRebootOnCompletion -Indicates that the cmdlet does not reboot the computer upon completion of this command. -Omitting this parameter indicates the computer is rebooted upon completion of the command, regardless of success or failure. -As a general rule, Microsoft support recommends that you do not use this parameter except for testing or troubleshooting purposes because once configuration has completed the server will not function correctly as either a member server or a DC until it is rebooted. + +Indicates that the cmdlet does not reboot the computer upon completion of this command. Omitting +this parameter indicates the computer is rebooted upon completion of the command, regardless of +success or failure. As a general rule, Microsoft support recommends that you do not use this +parameter except for testing or troubleshooting purposes because once configuration has completed +the server will not function correctly as either a member server or a DC until it is rebooted. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -294,15 +338,19 @@ Accept wildcard characters: False ``` ### -SafeModeAdministratorPassword -Supplies the password for the administrator account when the computer is started in Safe Mode or a variant of Safe Mode, such as Directory Services Restore Mode. -You must supply a password that meets the password complexity rules of the domain and the password cannot be blank. -If specified with a value, the value must be a secure string. + +Supplies the password for the administrator account when the computer is started in Safe Mode or a +variant of Safe Mode, such as Directory Services Restore Mode. You must supply a password that meets +the password complexity rules of the domain and the password cannot be blank. If specified with a +value, the value must be a secure string. If this parameter is not specified, the cmdlet prompts you to enter and confirm a masked password. -This is the preferred usage when running the cmdlet interactively. -If additionally there are no other arguments specified with the cmdlet, you are prompted to enter a masked password for this parameter but no confirmation of the password entered is made. -This is not recommended as it could allow a mistyped password to be configured. -Another available advanced option is to use the **ConvertTo-SecureString** cmdlet and specify the password string inline as unmasked console input, which is also not a recommended security best practice in production deployments. +This is the preferred usage when running the cmdlet interactively. If additionally there are no +other arguments specified with the cmdlet, you are prompted to enter a masked password for this +parameter but no confirmation of the password entered is made. This is not recommended as it could +allow a mistyped password to be configured. Another available advanced option is to use the +`ConvertTo-SecureString` cmdlet and specify the password string inline as unmasked console input, +which is also not a recommended security best practice in production deployments. ```yaml Type: SecureString @@ -317,11 +365,12 @@ Accept wildcard characters: False ``` ### -SkipAutoConfigureDns -Indicates that the cmdlet skips automatic configuration of DNS client settings, forwarders, and root hints. -This parameter is in effect only if the DNS Server service is already installed. + +Indicates that the cmdlet skips automatic configuration of DNS client settings, forwarders, and root +hints. This parameter is in effect only if the DNS Server service is already installed. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -333,13 +382,17 @@ Accept wildcard characters: False ``` ### -SkipPreChecks -Indicates that the cmdlet performs only a base set of validations. -This behavior is equivalent to the validations that were performed when using Dcpromo.exe in earlier versions of Windows Server to add a new forest. -When this switch parameter is set, it specifies that additional preliminary checks should be bypassed. -For more information on the scope of these additional preliminary checks that the ADDSDeployment module performs by default when using Windows Server 2012, refer to the table in the section ADPrep and Prerequisite Checking Architecture in [AD DS Simplified Administration](https://go.microsoft.com/fwlink/?LinkID=237244). + +Indicates that the cmdlet performs only a base set of validations. This behavior is equivalent to +the validations that were performed when using `Dcpromo.exe` in earlier versions of Windows Server +to add a new forest. When this switch parameter is set, it specifies that additional preliminary +checks should be bypassed. For more information on the scope of these additional preliminary checks +that the ADDSDeployment module performs by default when using Windows Server 2012, refer to the +table in the section ADPrep and Prerequisite Checking Architecture in +[AD DS Simplified Administration](https://go.microsoft.com/fwlink/?LinkID=237244). ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -351,12 +404,13 @@ Accept wildcard characters: False ``` ### -SysvolPath -Specifies the fully qualified, non-UNC path to a directory on a fixed disk of the local computer where the Sysvol file is written. -For example, C:\Logs\SYSVOL. -The default path if no other path is specified with this parameter is %SYSTEMROOT%\SYSVOL. + +Specifies the fully qualified, non-UNC path to a directory on a fixed disk of the local computer +where the Sysvol file is written. For example, `C:\Logs\SYSVOL`. The default path if no other path +is specified with this parameter is `%SYSTEMROOT%\SYSVOL`. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -368,11 +422,12 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -384,17 +439,27 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ## OUTPUTS ## NOTES -* By default, the DNS Server service is installed when you create a new forest. It is strongly recommended that you install and use the Windows DNS Server to support the needs for DNS name resolution in your Active Directory deployment. You do not need to specifically include the *InstallDNS* to install it. -* If you are using Active Directory-integrated DNS, the IP address for the preferred DNS server for the first domain controller in the forest is automatically set to the loopback address of 127.0.0.1. -This helps assure that the IP address of the first domain controller is resolved in DNS even if the address is changed. +- By default, the DNS Server service is installed when you create a new forest. It is strongly + recommended that you install and use the Windows DNS Server to support the needs for DNS name + resolution in your Active Directory deployment. You do not need to specifically include the + `-InstallDNS` to install it. + +- If you are using Active Directory-integrated DNS, the IP address for the preferred DNS server for + the first domain controller in the forest is automatically set to the loopback address of + `127.0.0.1`. This helps assure that the IP address of the first domain controller is resolved in + DNS even if the address is changed. ## RELATED LINKS @@ -405,4 +470,3 @@ This helps assure that the IP address of the first domain controller is resolved [Test-ADDSForestInstallation](./Test-ADDSForestInstallation.md) [ConvertTo-SecureString](https://go.microsoft.com/fwlink/p/?LinkId=113291) - From 0a7e2e333b43ba764dfac7eaffbf34cf3ac45351 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Sat, 29 Apr 2023 17:55:27 -0400 Subject: [PATCH 554/965] Update Install-ADDSForest.md Adding powershell to code blocks --- docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md b/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md index e38fb1e65b..6fe65710c3 100644 --- a/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md +++ b/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md @@ -33,7 +33,7 @@ The `Install-ADDSForest` cmdlet installs an Active Directory forest configuratio ### Example 1: Install a new forest -``` +```powershell Install-ADDSForest -DomainName "corp.contoso.com" -InstallDNS ``` @@ -43,7 +43,7 @@ also be installed during the forest installation process. ### Example 2: Install a new forest and a DNS delegation -``` +```powershell $HashArguments = @{ CreateDNSDelegation = $true DatabasePath = "d:\NTDS" From 29a677b2bc22d3e3e4f5cd86dbf525909d57c478 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 13:42:47 -0400 Subject: [PATCH 555/965] Update docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md Co-authored-by: Mikey Lombardi (He/Him) --- docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md b/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md index 6fe65710c3..3e2f4a9772 100644 --- a/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md +++ b/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md @@ -37,7 +37,7 @@ The `Install-ADDSForest` cmdlet installs an Active Directory forest configuratio Install-ADDSForest -DomainName "corp.contoso.com" -InstallDNS ``` -This command installs a new forest named corp.contoso.com, causes the user to be prompted to provide +This command installs a new forest named `corp.contoso.com`, causes the user to be prompted to provide and confirm the Directory Services Restore Mode (DSRM) password and specifies a DNS server should also be installed during the forest installation process. From a40b3443fc72b33b58aeeb3840c53e42865dff75 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 13:48:05 -0400 Subject: [PATCH 556/965] Update docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md Co-authored-by: Mikey Lombardi (He/Him) --- docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md b/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md index 3e2f4a9772..61f55a72a6 100644 --- a/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md +++ b/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md @@ -56,8 +56,8 @@ $HashArguments = @{ Install-ADDSForest @HashArguments ``` -This command installs a new forest named corp.contoso.com, creates a DNS delegation in the -contoso.com domain, sets domain functional level to Windows Server 2008 R2 and sets forest +This command installs a new forest named `corp.contoso.com`, creates a DNS delegation in the +`contoso.com` domain, sets domain functional level to Windows Server 2008 R2 and sets forest functional level to Windows Server 2008, installs the Active Directory database and SYSVOL on the `D:\` drive, installs the log files on the `E:\` drive and has the server automatically restart after AD DS installation is complete and prompts the user to provide and confirm the DSRM password. From b5da57d9667601e9610ac80c83483f5a9e94df01 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 13:48:15 -0400 Subject: [PATCH 557/965] Update docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md Co-authored-by: Mikey Lombardi (He/Him) --- docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md b/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md index 61f55a72a6..3eb0430a19 100644 --- a/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md +++ b/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md @@ -119,7 +119,7 @@ Accept wildcard characters: False ### -DnsDelegationCredential Specifies the user name and password for creating DNS delegation. This parameter is skipped if the -value for the `-CreateDnsDelegation` parameter is either specified or computed to be $False. +value for the **CreateDnsDelegation** parameter is either specified or computed to be `$false`. ```yaml Type: System.Management.Automation.PSCredential From df37ca19facce2ddf5eed3d317980470e5dacf71 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 13:48:20 -0400 Subject: [PATCH 558/965] Update docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md Co-authored-by: Mikey Lombardi (He/Him) --- .../winserver2022-ps/addsdeployment/Install-ADDSForest.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md b/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md index 3eb0430a19..555274bab9 100644 --- a/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md +++ b/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md @@ -135,10 +135,10 @@ Accept wildcard characters: False ### -DomainMode -Specifies the domain functional level of the first domain in the creation of a new forest. Supported -values for this parameter can be either a valid integer or a corresponding enumerated string value. -For instance, to set the domain mode level to Windows Server 2008 R2, you can specify either a value -of 4 or Win2008R2. +Specifies the domain functional level of the first domain in the creation of a new forest. +Supported values for this parameter can be either a valid integer or a corresponding enumerated +string value. For instance, to set the domain mode level to Windows Server 2008 R2, you can specify +either a value of `4` or `Win2008R2`. The acceptable values for this parameter are: From 521926f5ad83f2d9fea132358f42a640e9ad507d Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 13:48:26 -0400 Subject: [PATCH 559/965] Update docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md Co-authored-by: Mikey Lombardi (He/Him) --- docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md b/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md index 555274bab9..72ff8e3a69 100644 --- a/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md +++ b/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md @@ -188,7 +188,7 @@ use with this parameter they must be single label names of 15 characters or less If this parameter is set with a valid NetBIOS name value, then forest installation continues with the name specified. If this parameter is not set, then the default is automatically computed from -the value of the `-DomainName` parameter. +the value of the **DomainName** parameter. For example, if this parameter is not specified and a single-label prefix domain name of 15 characters or less is specified within the value of the `-DomainName` parameter, then promotion From 8022dc4a6b09f57f4c89795bc349103f1471dbf9 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 13:48:33 -0400 Subject: [PATCH 560/965] Update docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md Co-authored-by: Mikey Lombardi (He/Him) --- .../winserver2022-ps/addsdeployment/Install-ADDSForest.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md b/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md index 72ff8e3a69..9adfeae5ee 100644 --- a/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md +++ b/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md @@ -228,9 +228,9 @@ Accept wildcard characters: False ### -ForestMode -Specifies the forest functional level for the new forest. Supported values for this parameter can be -either a valid integer or a corresponding enumerated string value. For example, to set the forest -mode level to Windows Server 2008 R2, you can specify either a value of 4 or Win2008R2. +Specifies the forest functional level for the new forest. Supported values for this parameter can +be either a valid integer or a corresponding enumerated string value. For example, to set the +forest mode level to Windows Server 2008 R2, you can specify either a value of `4` or `Win2008R2`. The acceptable values for this parameter are: From 996ad8594e6e19ef1b03c48bccbe349652e57261 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 13:48:44 -0400 Subject: [PATCH 561/965] Update docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md Co-authored-by: Mikey Lombardi (He/Him) --- docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md b/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md index 9adfeae5ee..54524e1ddd 100644 --- a/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md +++ b/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md @@ -238,8 +238,8 @@ The acceptable values for this parameter are: - Windows Server 2008: 3 or Win2008 - Windows Server 2008 R2: 4 or Win2008R2 - Windows Server 2012: 5 or Win2012 -- Windows Server 2012 R2: 6 or Win2012R2 -- Windows Server 2016: 7 or WinThreshold +- Windows Server 2012 R2: `6` or `Win2012R2` +- Windows Server 2016: `7` or `WinThreshold` The default forest functional level in Windows Server is typically the same as the version you are running. However, the default forest functional level in Windows Server 2008 R2 when you create a From cb57d668def613f85474e7472c467b78c1c6c8c8 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 13:50:07 -0400 Subject: [PATCH 562/965] Update docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md Co-authored-by: Mikey Lombardi (He/Him) --- docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md b/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md index 54524e1ddd..64650d055c 100644 --- a/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md +++ b/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md @@ -243,7 +243,7 @@ The acceptable values for this parameter are: The default forest functional level in Windows Server is typically the same as the version you are running. However, the default forest functional level in Windows Server 2008 R2 when you create a -new forest is Windows Server 2003 or 2. +new forest is Windows Server 2003 or `2`. ```yaml Type: System.DirectoryServices.ActiveDirectory.ForestMode From 23ee9a1b4c391c7a8a1de73d1a06d1415acbe979 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 13:50:17 -0400 Subject: [PATCH 563/965] Update docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md Co-authored-by: Mikey Lombardi (He/Him) --- docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md b/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md index 64650d055c..355434fc4d 100644 --- a/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md +++ b/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md @@ -261,7 +261,7 @@ Accept wildcard characters: False ### -InstallDns Indicates that this cmdlet installs and configures the DNS Server service for the new forest. -For forest installation, the default is $True. +For forest installation, the default is `$true`. ```yaml Type: System.Management.Automation.SwitchParameter From 5ad5f160f22d708995582f49d68ad523ebcaba1a Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 13:50:24 -0400 Subject: [PATCH 564/965] Update docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md Co-authored-by: Mikey Lombardi (He/Him) --- docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md b/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md index 355434fc4d..72435d90c1 100644 --- a/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md +++ b/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md @@ -387,7 +387,7 @@ Indicates that the cmdlet performs only a base set of validations. This behavior the validations that were performed when using `Dcpromo.exe` in earlier versions of Windows Server to add a new forest. When this switch parameter is set, it specifies that additional preliminary checks should be bypassed. For more information on the scope of these additional preliminary checks -that the ADDSDeployment module performs by default when using Windows Server 2012, refer to the +that the **ADDSDeployment** module performs by default when using Windows Server 2012, refer to the table in the section ADPrep and Prerequisite Checking Architecture in [AD DS Simplified Administration](https://go.microsoft.com/fwlink/?LinkID=237244). From 27b2dc22316090c824053d1c282c6da6c563fd90 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 13:54:08 -0400 Subject: [PATCH 565/965] Update docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md Co-authored-by: Mikey Lombardi (He/Him) --- .../winserver2022-ps/addsdeployment/Install-ADDSForest.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md b/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md index 72435d90c1..b382061ae9 100644 --- a/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md +++ b/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md @@ -191,9 +191,9 @@ the name specified. If this parameter is not set, then the default is automatica the value of the **DomainName** parameter. For example, if this parameter is not specified and a single-label prefix domain name of 15 -characters or less is specified within the value of the `-DomainName` parameter, then promotion -continues with an automatically generated NetBIOS domain name. For example, the prefix label corp -within a full domain name value of corp.contoso.com would be a successful name choice. +characters or less is specified within the value of the **DomainName** parameter, then promotion +continues with an automatically generated NetBIOS domain name. For example, the prefix label `corp` +within a full domain name value of `corp.contoso.com` would be a successful name choice. Note that if the name value given for this parameter is a name of 16 characters or more, then the forest installation fails. From 2b3f899df9904c014645a48835576d8e634844f7 Mon Sep 17 00:00:00 2001 From: Vanda Paladino Date: Mon, 1 May 2023 15:04:59 -0400 Subject: [PATCH 566/965] Update docset/winserver2022-ps/ServerManager/Install-WindowsFeature.md Co-authored-by: Sean Wheeler --- docset/winserver2022-ps/ServerManager/Install-WindowsFeature.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/ServerManager/Install-WindowsFeature.md b/docset/winserver2022-ps/ServerManager/Install-WindowsFeature.md index 68a5e2a1a5..5fbf870efc 100644 --- a/docset/winserver2022-ps/ServerManager/Install-WindowsFeature.md +++ b/docset/winserver2022-ps/ServerManager/Install-WindowsFeature.md @@ -349,7 +349,7 @@ the computer account of the computer that you are using to mount the VHD must ha permissions (Read/Write permissions in the File Sharing dialog box or Full Control on the Security tab of the folder Properties dialog box) on the shared folder or the VHD will not be accessible. Local loopback UNC paths are not supported. Use either of the following formats for the computer -account: DOMAIN\SERVERNAME$ or SERVERNAME$. +account: `DOMAIN\SERVERNAME$` or `SERVERNAME$`. Add the **ComputerName** parameter to specify the target computer you want to use to mount the VHD. If the **ComputerName** parameter is not specified, then the local computer is used. The computer that From 1adf2ac1e4253b155df5d2110c78bd0e80ecf8fb Mon Sep 17 00:00:00 2001 From: Vanda Paladino Date: Mon, 1 May 2023 15:05:17 -0400 Subject: [PATCH 567/965] Update docset/winserver2022-ps/ServerManager/Uninstall-WindowsFeature.md Co-authored-by: Sean Wheeler --- .../winserver2022-ps/ServerManager/Uninstall-WindowsFeature.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/ServerManager/Uninstall-WindowsFeature.md b/docset/winserver2022-ps/ServerManager/Uninstall-WindowsFeature.md index 945e109d70..f801a5d753 100644 --- a/docset/winserver2022-ps/ServerManager/Uninstall-WindowsFeature.md +++ b/docset/winserver2022-ps/ServerManager/Uninstall-WindowsFeature.md @@ -41,7 +41,7 @@ services, and features from a computer that is running Windows Server or from an hard disk (VHD) on which Windows Server is installed. This cmdlet works similarly to the uninstallation of roles and features in Server Manager with an important exception: by default, management tools are not uninstalled when you run the `Uninstall-WindowsFeature` cmdlet; you must -add the `IncludeManagementTools` parameter to uninstall associated management tools. +add the **IncludeManagementTools** parameter to uninstall associated management tools. This cmdlet requires elevation; you must be running a Windows PowerShell session as an administrator to use this cmdlet. From 66392d64024cfb09c74bad2fd5c01ede0108bc47 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Sat, 29 Apr 2023 16:05:37 -0400 Subject: [PATCH 568/965] Style guidline fixes --- .../Install-ADDSDomainController.md | 362 +++++++++++------- 1 file changed, 230 insertions(+), 132 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md index 3d859faf15..1cf1886b53 100644 --- a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md +++ b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md @@ -11,81 +11,112 @@ title: Install-ADDSDomainController # Install-ADDSDomainController ## SYNOPSIS + Installs a new domain controller in an Active Directory domain. ## SYNTAX ### ADDSDomainController (Default) + ``` Install-ADDSDomainController [-SkipPreChecks] -DomainName - [-SafeModeAdministratorPassword ] [-SiteName ] [-ADPrepCredential ] - [-AllowDomainControllerReinstall] [-ApplicationPartitionsToReplicate ] [-CreateDnsDelegation] - [-Credential ] [-CriticalReplicationOnly] [-DatabasePath ] - [-DnsDelegationCredential ] [-NoDnsOnNetwork] [-NoGlobalCatalog] - [-InstallationMediaPath ] [-InstallDns] [-LogPath ] - [-MoveInfrastructureOperationMasterRoleIfNecessary] [-NoRebootOnCompletion] [-ReplicationSourceDC ] - [-SkipAutoConfigureDns] [-SystemKey ] [-SysvolPath ] [-Force] [-WhatIf] [-Confirm] - [] +[-SafeModeAdministratorPassword ] [-SiteName ] +[-ADPrepCredential ] [-AllowDomainControllerReinstall] +[-ApplicationPartitionsToReplicate ] [-CreateDnsDelegation] +[-Credential ] [-CriticalReplicationOnly] [-DatabasePath ] +[-DnsDelegationCredential ] [-NoDnsOnNetwork] [-NoGlobalCatalog] +[-InstallationMediaPath ] [-InstallDns] [-LogPath ] +[-MoveInfrastructureOperationMasterRoleIfNecessary] [-NoRebootOnCompletion] +[-ReplicationSourceDC ] [-SkipAutoConfigureDns] [-SystemKey ] +[-SysvolPath ] [-Force] [-WhatIf] [-Confirm] [] ``` ### ADDSDomainControllerReadOnly + ``` Install-ADDSDomainController [-SkipPreChecks] -DomainName - [-SafeModeAdministratorPassword ] -SiteName [-ADPrepCredential ] - [-AllowDomainControllerReinstall] [-AllowPasswordReplicationAccountName ] - [-ApplicationPartitionsToReplicate ] [-Credential ] [-CriticalReplicationOnly] - [-DatabasePath ] [-DelegatedAdministratorAccountName ] + [-SafeModeAdministratorPassword ] -SiteName + [-ADPrepCredential ] [-AllowDomainControllerReinstall] + [-AllowPasswordReplicationAccountName ] + [-ApplicationPartitionsToReplicate ] [-Credential ] + [-CriticalReplicationOnly] [-DatabasePath ] + [-DelegatedAdministratorAccountName ] [-DenyPasswordReplicationAccountName ] [-NoDnsOnNetwork] [-NoGlobalCatalog] [-InstallationMediaPath ] [-InstallDns] [-LogPath ] - [-MoveInfrastructureOperationMasterRoleIfNecessary] [-ReadOnlyReplica] [-NoRebootOnCompletion] - [-ReplicationSourceDC ] [-SkipAutoConfigureDns] [-SystemKey ] [-SysvolPath ] - [-Force] [-WhatIf] [-Confirm] [] + [-MoveInfrastructureOperationMasterRoleIfNecessary] [-ReadOnlyReplica] + [-NoRebootOnCompletion] [-ReplicationSourceDC ] [-SkipAutoConfigureDns] + [-SystemKey ] [-SysvolPath ] [-Force] [-WhatIf] [-Confirm] + [] ``` ### ADDSDomainControllerUseExistingAccount + ``` Install-ADDSDomainController [-SkipPreChecks] -DomainName [-SafeModeAdministratorPassword ] [-ADPrepCredential ] - [-ApplicationPartitionsToReplicate ] [-Credential ] [-CriticalReplicationOnly] - [-DatabasePath ] [-NoDnsOnNetwork] [-InstallationMediaPath ] [-LogPath ] - [-NoRebootOnCompletion] [-ReplicationSourceDC ] [-SkipAutoConfigureDns] [-SystemKey ] - [-SysvolPath ] [-UseExistingAccount] [-Force] [-WhatIf] [-Confirm] [] + [-ApplicationPartitionsToReplicate ] [-Credential ] + [-CriticalReplicationOnly] [-DatabasePath ] [-NoDnsOnNetwork] + [-InstallationMediaPath ] [-LogPath ] [-NoRebootOnCompletion] + [-ReplicationSourceDC ] [-SkipAutoConfigureDns] [-SystemKey ] + [-SysvolPath ] [-UseExistingAccount] [-Force] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION -The **Install-ADDSDomainController** cmdlet installs a domain controller in Active Directory. + +The `Install-ADDSDomainController` cmdlet installs a domain controller in Active Directory. ## EXAMPLES ### Example 1: Install a domain controller and DNS server + ```powershell -PS C:\> Install-ADDSDomainController -InstallDns -DomainName "corp.contoso.com" +Install-ADDSDomainController -InstallDns -DomainName "corp.contoso.com" ``` -This command installs a domain controller and DNS server in the corp.contoso.com domain using CORP\Administrator credentials and prompts the user to provide and confirm the Directory Services Restore Mode (DSRM) password. +This command installs a domain controller and DNS server in the corp.contoso.com domain using +CORP\Administrator credentials and prompts the user to provide and confirm the Directory Services +Restore Mode (DSRM) password. ### Example 2: Install a domain controller and DNS server using administrator credentials + ```powershell -PS C:\> Install-ADDSDomainController -InstallDns -Credential (Get-Credential "CORP\Administrator") -DomainName "corp.contoso.com" +$HashArguments = @{ + Credential = (Get-Credential "CORP\Administrator") + DomainName = "corp.contoso.com" + InstallDns = $true +} +Install-ADDSDomainController @HashArguments ``` -This command installs a domain controller and DNS server in the corp.contoso.com domain using Administrator credentials and prompts the user to provide and confirm the DSRM password. +This command installs a domain controller and DNS server in the corp.contoso.com domain using +Administrator credentials and prompts the user to provide and confirm the DSRM password. ### Example 3: Install a domain controller and DNS server that uses domain promotion + ```powershell -PS C:\> Install-ADDSDomainController -InstallDns -Credential (Get-Credential) -DomainName (Read-Host "Domain to promote into") +$HashArguments = @{ + Credential = (Get-Credential) + DomainName = (Read-Host "Domain to promote into") + InstallDns = $true +} +Install-ADDSDomainController @HashArguments ``` -Installs a domain controller and DNS server and prompts for credentials, the name of the domain to use when installing and promoting the domain controller and to provide and confirm the DSRM password. +Installs a domain controller and DNS server and prompts for credentials, the name of the domain to +use when installing and promoting the domain controller and to provide and confirm the DSRM +password. ## PARAMETERS ### -ADPrepCredential -Specifies the user name and password that corresponds to the account to be used for running the Adprep utility, if it is required, to prepare the directory prior to the installation of this domain controller. -Use the **Get-Credential** cmdlet to prompt the user to supply a password. + +Specifies the user name and password that corresponds to the account to be used for running the +Adprep utility, if it is required, to prepare the directory prior to the installation of this domain +controller. Use the `Get-Credential` cmdlet to prompt the user to supply a password. ```yaml -Type: PSCredential +Type: System.Management.Automation.PSCredential Parameter Sets: (All) Aliases: @@ -97,11 +128,14 @@ Accept wildcard characters: False ``` ### -AllowDomainControllerReinstall -Indicates that the cmdlet continues to install this domain controller, despite the fact that another domain controller account with the same name is detected. -By default, the **Install-ADDSDomainController** cmdlet does not continue the installation if another domain controller with the same name is found. + +Indicates that the cmdlet continues to install this domain controller, despite the fact that another +domain controller account with the same name is detected. By default, the +`Install-ADDSDomainController` cmdlet does not continue the installation if another domain +controller with the same name is found. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: ADDSDomainController, ADDSDomainControllerReadOnly Aliases: @@ -113,12 +147,13 @@ Accept wildcard characters: False ``` ### -AllowPasswordReplicationAccountName -Specifies an array of names of user accounts, group accounts, and computer accounts whose passwords can be replicated to this RODC. -Use an empty string ("") if you want to keep the value empty. -By default, only the Allowed read-only domain controller (RODC) Password Replication Group is allowed. + +Specifies an array of names of user accounts, group accounts, and computer accounts whose passwords +can be replicated to this RODC. Use an empty string ("") if you want to keep the value empty. By +default, only the Allowed read-only domain controller (RODC) Password Replication Group is allowed. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: ADDSDomainControllerReadOnly Aliases: @@ -130,12 +165,13 @@ Accept wildcard characters: False ``` ### -ApplicationPartitionsToReplicate + Specifies an array of application directory partitions that DCPromo will replicate. Use the following format: "partition1" "partition2" "partitionN". Use * to replicate all application directory partitions. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: (All) Aliases: @@ -147,10 +183,11 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -162,14 +199,15 @@ Accept wildcard characters: False ``` ### -CreateDnsDelegation -Indicates that the cmdlet creates a DNS delegation that references the new DNS server that this cmdlet installs along with the domain controller. -Valid for Active Directory-integrated DNS only. -If this parameter is specified then the DNS delegation is created. -If the value of $False is specified then no DNS delegation is created. -By default, the value for this parameter is computed automatically based on the environment. + +Indicates that the cmdlet creates a DNS delegation that references the new DNS server that this +cmdlet installs along with the domain controller. Valid for Active Directory-integrated DNS only. If +this parameter is specified then the DNS delegation is created. If the value of $False is specified +then no DNS delegation is created. By default, the value for this parameter is computed +automatically based on the environment. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: ADDSDomainController Aliases: @@ -181,11 +219,12 @@ Accept wildcard characters: False ``` ### -Credential -Specifies the user name and password that corresponds to the account used to install the domain controller. -Use the **Get-Credential** to prompt the user to supply a password. + +Specifies the user name and password that corresponds to the account used to install the domain +controller. Use the `Get-Credential` to prompt the user to supply a password. ```yaml -Type: PSCredential +Type: System.Management.Automation.PSCredential Parameter Sets: (All) Aliases: @@ -197,13 +236,15 @@ Accept wildcard characters: False ``` ### -CriticalReplicationOnly -Indicates that the cmdlet performs only critical replication before reboot and then continues during the AD DS installation operation. -This parameter skips the noncritical and potentially lengthy portion of replication. -The noncritical replication happens after the installation finishes and the computer reboots. -By default, the cmdlet performs both critical and noncritical portions of the replication. + +Indicates that the cmdlet performs only critical replication before reboot and then continues during +the AD DS installation operation. This parameter skips the noncritical and potentially lengthy +portion of replication. The noncritical replication happens after the installation finishes and the +computer reboots. By default, the cmdlet performs both critical and noncritical portions of the +replication. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -215,11 +256,13 @@ Accept wildcard characters: False ``` ### -DatabasePath -Specifies the fully qualified, non-Universal Naming Convention (UNC) path to a directory on a fixed disk of the local computer that will contain the domain database, for instance, `C:\Windows\NTDS`. + +Specifies the fully qualified, non-Universal Naming Convention (UNC) path to a directory on a fixed +disk of the local computer that will contain the domain database, for instance, `C:\Windows\NTDS`. The default is `%SYSTEMROOT%\NTDS`. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -231,10 +274,12 @@ Accept wildcard characters: False ``` ### -DelegatedAdministratorAccountName -Specifies the name of the user or group that is the delegated administrator of this domain controller. + +Specifies the name of the user or group that is the delegated administrator of this domain +controller. ```yaml -Type: String +Type: System.String Parameter Sets: ADDSDomainControllerReadOnly Aliases: @@ -246,13 +291,17 @@ Accept wildcard characters: False ``` ### -DenyPasswordReplicationAccountName -Specifies the names of user accounts, group accounts, and computer accounts whose passwords are not to be replicated to this RODC. -Use an empty string ("") if you do not want to deny the replication of credentials of any users or computers. -By default, Administrators, Server Operators, Backup Operators, Account Operators, and the Denied RODC Password Replication Group are denied. -By default, the Denied RODC Password Replication Group includes Cert Publishers, Domain Admins, Enterprise Admins, Enterprise Domain Controllers, Enterprise Read-Only Domain Controllers, Group Policy Creator Owners, the krbtgt account, and Schema Admins. + +Specifies the names of user accounts, group accounts, and computer accounts whose passwords are not +to be replicated to this RODC. Use an empty string ("") if you do not want to deny the replication +of credentials of any users or computers. By default, Administrators, Server Operators, Backup +Operators, Account Operators, and the Denied RODC Password Replication Group are denied. By default, +the Denied RODC Password Replication Group includes Cert Publishers, Domain Admins, Enterprise +Admins, Enterprise Domain Controllers, Enterprise Read-Only Domain Controllers, Group Policy Creator +Owners, the krbtgt account, and Schema Admins. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: ADDSDomainControllerReadOnly Aliases: @@ -264,11 +313,12 @@ Accept wildcard characters: False ``` ### -DnsDelegationCredential -Specifies the user name and password for creating DNS delegation. -This parameter is skipped if the value for the **CreateDnsDelegation** parameter is either specified or computed to be $False. + +Specifies the user name and password for creating DNS delegation. This parameter is skipped if the +value for the _CreateDnsDelegation_ parameter is either specified or computed to be $False. ```yaml -Type: PSCredential +Type: System.Management.Automation.PSCredential Parameter Sets: ADDSDomainController Aliases: @@ -280,10 +330,12 @@ Accept wildcard characters: False ``` ### -DomainName -Specifies the fully qualified domain name (FQDN) for the domain where the domain controller is installed or added. + +Specifies the fully qualified domain name (FQDN) for the domain where the domain controller is +installed or added. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -295,10 +347,11 @@ Accept wildcard characters: False ``` ### -Force + Forces the command to run without asking for user confirmation. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -310,15 +363,20 @@ Accept wildcard characters: False ``` ### -InstallDns -Indicates the cmdlet installs and configures the DNS Server service on the domain controller. -For domain controller installation, if this parameter is left unspecified and the current domain already hosts and stores the DNS names for the domain, then the default for this parameter is $True and the DNS server is installed. -Otherwise, if DNS domain names are hosted outside of Active Directory, the default is `$False` and no DNS server is installed. -To test if DNS domain names are hosted outside of Active Directory, this cmdlet uses a start of authority (SOA) type DNS query. -For instance, if the value of **DomainName** is corp.contoso.com, Active Directory performs an SOA query for corp.contoso.com and ensures that the zone name in the response is corp.contoso.com. +Indicates the cmdlet installs and configures the DNS Server service on the domain controller. For +domain controller installation, if this parameter is left unspecified and the current domain already +hosts and stores the DNS names for the domain, then the default for this parameter is $True and the +DNS server is installed. Otherwise, if DNS domain names are hosted outside of Active Directory, the +default is `$False` and no DNS server is installed. + +To test if DNS domain names are hosted outside of Active Directory, this cmdlet uses a start of +authority (SOA) type DNS query. For instance, if the value of _DomainName_ is corp.contoso.com, +Active Directory performs an SOA query for corp.contoso.com and ensures that the zone name in the +response is corp.contoso.com. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: ADDSDomainController, ADDSDomainControllerReadOnly Aliases: @@ -330,10 +388,11 @@ Accept wildcard characters: False ``` ### -InstallationMediaPath + Indicates the location of the installation media that is used to install a new domain controller. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -345,11 +404,13 @@ Accept wildcard characters: False ``` ### -LogPath -Specifies the fully qualified, non-UNC path to a directory on a fixed disk of the local computer that will contain the domain log files, for example, `C:\Windows\Logs`. -The default is `%SYSTEMROOT%\NTDS`. + +Specifies the fully qualified, non-UNC path to a directory on a fixed disk of the local computer +that will contain the domain log files, for example, `C:\Windows\Logs`. The default is +`%SYSTEMROOT%\NTDS`. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -361,12 +422,14 @@ Accept wildcard characters: False ``` ### -MoveInfrastructureOperationMasterRoleIfNecessary -Indicates that the cmdlet transfers the infrastructure master role to the domain controller being installed. -To successfully complete the transfer, the **NoGlobalCatalog** parameter must be included as well. -Do not specify this parameter if you want the infrastructure master role to remain where it currently is. + +Indicates that the cmdlet transfers the infrastructure master role to the domain controller being +installed. To successfully complete the transfer, the _NoGlobalCatalog_ parameter must be included +as well. Do not specify this parameter if you want the infrastructure master role to remain where it +currently is. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: ADDSDomainController, ADDSDomainControllerReadOnly Aliases: @@ -378,16 +441,20 @@ Accept wildcard characters: False ``` ### -NoDnsOnNetwork -Indicates that the DNS service is not available on the network. -This parameter is used only when the IP setting of the network adapter for this computer is not configured with the name of a DNS server for name resolution. -It indicates that a DNS server is installed on this computer for name resolution. -Otherwise, the IP settings of the network adapter must first be configured with the address of a DNS server. -Omitting this parameter (the default) indicates that the TCP/IP client settings of the network adapter on this server computer is used to contact a DNS server. -Therefore, if you are not specifying this parameter, ensure that TCP/IP client settings are first configured with a preferred DNS server address. +Indicates that the DNS service is not available on the network. This parameter is used only when the +IP setting of the network adapter for this computer is not configured with the name of a DNS server +for name resolution. It indicates that a DNS server is installed on this computer for name +resolution. Otherwise, the IP settings of the network adapter must first be configured with the +address of a DNS server. + +Omitting this parameter (the default) indicates that the TCP/IP client settings of the network +adapter on this server computer is used to contact a DNS server. Therefore, if you are not +specifying this parameter, ensure that TCP/IP client settings are first configured with a preferred +DNS server address. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -399,11 +466,12 @@ Accept wildcard characters: False ``` ### -NoGlobalCatalog + Indicates that the RODC will not be a global catalog server. By default, the domain controller that you are installing is a global catalog server. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: ADDSDomainController, ADDSDomainControllerReadOnly Aliases: @@ -415,12 +483,16 @@ Accept wildcard characters: False ``` ### -NoRebootOnCompletion -Indicates that the cmdlet does not restart the computer upon the completion of the operation to install the domain controller. -By default, if this parameter is omitted the computer will restart upon the completion of the install operation. -As a general rule, Microsoft support recommends that you not use this parameter except for testing or troubleshooting purposes because once configuration has completed the server will not function correctly as either a member server or a DC until it is rebooted. + +Indicates that the cmdlet does not restart the computer upon the completion of the operation to +install the domain controller. By default, if this parameter is omitted the computer will restart +upon the completion of the install operation. As a general rule, Microsoft support recommends that +you not use this parameter except for testing or troubleshooting purposes because once configuration +has completed the server will not function correctly as either a member server or a DC until it is +rebooted. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -432,10 +504,11 @@ Accept wildcard characters: False ``` ### -ReadOnlyReplica + Indicates that the cmdlet installs the domain controller as an RODC for an existing domain. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: ADDSDomainControllerReadOnly Aliases: @@ -447,10 +520,12 @@ Accept wildcard characters: False ``` ### -ReplicationSourceDC -Specifies the name of the domain controller to be used as the source for replicating to this domain controller. + +Specifies the name of the domain controller to be used as the source for replicating to this domain +controller. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -462,22 +537,27 @@ Accept wildcard characters: False ``` ### -SafeModeAdministratorPassword -Supplies the password for the administrator account when the computer is started in Safe Mode or a variant of Safe Mode, such as Directory Services Restore Mode. -If no value is specified for this parameter, the cmdlet prompts you to enter and confirm a masked password. -If specified with a value, the value must be a secure string. -Supplies the password for the administrator account when the computer is started in Safe Mode or a variant of Safe Mode, such as Directory Services Restore Mode. -You must supply a password that meets the password complexity rules of the domain and the password cannot be blank. -If specified with a value, the value must be a secure string. +Supplies the password for the administrator account when the computer is started in Safe Mode or a +variant of Safe Mode, such as Directory Services Restore Mode. If no value is specified for this +parameter, the cmdlet prompts you to enter and confirm a masked password. If specified with a value, +the value must be a secure string. + +Supplies the password for the administrator account when the computer is started in Safe Mode or a +variant of Safe Mode, such as Directory Services Restore Mode. You must supply a password that meets +the password complexity rules of the domain and the password cannot be blank. If specified with a +value, the value must be a secure string. If this parameter is not specified, the cmdlet prompts you to enter and confirm a masked password. -This is the preferred usage when running the cmdlet interactively. -If additionally there are no other arguments specified with the cmdlet, you is prompted to enter a masked password for this parameter but no confirmation of the password entered is made. -This is not recommended as it could allow a mistyped password to be configured. -Another available advanced option is to use the **ConvertTo-SecureString** cmdlet and specify the password string inline as unmasked console input, which is also not a recommended security best practice in production deployments. +This is the preferred usage when running the cmdlet interactively. If additionally there are no +other arguments specified with the cmdlet, you is prompted to enter a masked password for this +parameter but no confirmation of the password entered is made. This is not recommended as it could +allow a mistyped password to be configured. Another available advanced option is to use the +`ConvertTo-SecureString` cmdlet and specify the password string inline as unmasked console input, +which is also not a recommended security best practice in production deployments. ```yaml -Type: SecureString +Type: System.Security.SecureString Parameter Sets: (All) Aliases: @@ -489,14 +569,15 @@ Accept wildcard characters: False ``` ### -SiteName -Specifies the name of an existing site where you can place the new domain controller. -The default value depends on the type of installation. -For a new forest, the default is Default-First-Site-Name. -For all other installations, the default is the site that is associated with the subnet that includes the IP address of this server. -If no such site exists, the default is the site of the replication source domain controller. + +Specifies the name of an existing site where you can place the new domain controller. The default +value depends on the type of installation. For a new forest, the default is Default-First-Site-Name. +For all other installations, the default is the site that is associated with the subnet that +includes the IP address of this server. If no such site exists, the default is the site of the +replication source domain controller. ```yaml -Type: String +Type: System.String Parameter Sets: ADDSDomainController Aliases: @@ -508,7 +589,7 @@ Accept wildcard characters: False ``` ```yaml -Type: String +Type: System.String Parameter Sets: ADDSDomainControllerReadOnly Aliases: @@ -520,11 +601,12 @@ Accept wildcard characters: False ``` ### -SkipAutoConfigureDns -Indicates that the cmdlet skips automatic configuration of the DNS client settings, forwarders, and root hints. -This parameter is in effect only if the DNS Server service is already installed. + +Indicates that the cmdlet skips automatic configuration of the DNS client settings, forwarders, and +root hints. This parameter is in effect only if the DNS Server service is already installed. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -536,13 +618,17 @@ Accept wildcard characters: False ``` ### -SkipPreChecks -Indicates that the cmdlet performs only a base set of validations. -This behavior is equivalent to the validations that were performed when using `Dcpromo.exe` in earlier versions of Windows Server to add a new domain controller. -When this switch parameter is set, it specifies that additional preliminary checks should be bypassed. -For more information on the scope of these additional preliminary checks that the ADDSDeployment module performs by default when using Windows Server 2016, refer to the table in the section "ADPrep and Prerequisite Checking Architecture" in [AD DS Simplified Administration](https://go.microsoft.com/fwlink/?LinkID=237244). + +Indicates that the cmdlet performs only a base set of validations. This behavior is equivalent to +the validations that were performed when using `Dcpromo.exe` in earlier versions of Windows Server +to add a new domain controller. When this switch parameter is set, it specifies that additional +preliminary checks should be bypassed. For more information on the scope of these additional +preliminary checks that the ADDSDeployment module performs by default when using Windows Server +2016, refer to the table in the section "ADPrep and Prerequisite Checking Architecture" in +[AD DS Simplified Administration](https://go.microsoft.com/fwlink/?LinkID=237244). ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -554,11 +640,12 @@ Accept wildcard characters: False ``` ### -SystemKey + Specifies the system key for the media from which you replicate the data. The default is none. ```yaml -Type: SecureString +Type: System.Security.SecureString Parameter Sets: (All) Aliases: @@ -570,11 +657,13 @@ Accept wildcard characters: False ``` ### -SysvolPath -Specifies the fully qualified, non-UNC path to a directory on a fixed disk of the local computer that will contain the Sysvol data, for example, `C:\Windows\SYSVOL`. -The default is `%SYSTEMROOT%\SYSVOL`. + +Specifies the fully qualified, non-UNC path to a directory on a fixed disk of the local computer +that will contain the Sysvol data, for example, `C:\Windows\SYSVOL`. The default is +`%SYSTEMROOT%\SYSVOL`. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -586,11 +675,12 @@ Accept wildcard characters: False ``` ### -UseExistingAccount + Indicates that the cmdlet attaches a server to an existing RODC account. If specified, a member of the Domain Admins group or a delegated user can run this cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: ADDSDomainControllerUseExistingAccount Aliases: @@ -602,11 +692,12 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -618,7 +709,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, `-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, `-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, +`-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, +`-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -627,8 +722,12 @@ This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVar ### Microsoft.DirectoryServices.Deployment.Types.Result ## NOTES -* By default, this cmdlet always prompts for confirmation. To bypass confirmation, you need to include the **Confirm** parameter and specify a value of `$false`. For example, `-Confirm:$false`. -* By default, this cmdlet is always run when executed. To see what will happen if the cmdlet runs without executing or committing installation changes, first run the cmdlet using the ***WhatIf** parameter to show what would happen. + +- By default, this cmdlet always prompts for confirmation. To bypass confirmation, you need to + include the _Confirm_ parameter and specify a value of `$false`. For example, `-Confirm:$false`. +- By default, this cmdlet is always run when executed. To see what will happen if the cmdlet runs + without executing or committing installation changes, first run the cmdlet using the _WhatIf_ + parameter to show what would happen. ## RELATED LINKS @@ -643,4 +742,3 @@ This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVar [Get-Credential](https://go.microsoft.com/fwlink/?LinkID=293936) [ConvertTo-SecureString](https://go.microsoft.com/fwlink/p/?LinkId=113291) - From 51202fed5d449650062f7f16310e890b055aaa68 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 13:25:33 -0400 Subject: [PATCH 569/965] Update docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md Co-authored-by: Mikey Lombardi (He/Him) --- .../addsdeployment/Install-ADDSDomainController.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md index 1cf1886b53..6b0c3ff091 100644 --- a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md +++ b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md @@ -424,9 +424,9 @@ Accept wildcard characters: False ### -MoveInfrastructureOperationMasterRoleIfNecessary Indicates that the cmdlet transfers the infrastructure master role to the domain controller being -installed. To successfully complete the transfer, the _NoGlobalCatalog_ parameter must be included -as well. Do not specify this parameter if you want the infrastructure master role to remain where it -currently is. +installed. To successfully complete the transfer, the **NoGlobalCatalog** parameter must be +included as well. Do not specify this parameter if you want the infrastructure master role to +remain where it currently is. ```yaml Type: System.Management.Automation.SwitchParameter From 9000814a630fdcf36a1c32bee51cc62e228c5622 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 13:26:37 -0400 Subject: [PATCH 570/965] Update docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md Co-authored-by: Mikey Lombardi (He/Him) --- .../addsdeployment/Install-ADDSDomainController.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md index 6b0c3ff091..d2e9743123 100644 --- a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md +++ b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md @@ -571,10 +571,10 @@ Accept wildcard characters: False ### -SiteName Specifies the name of an existing site where you can place the new domain controller. The default -value depends on the type of installation. For a new forest, the default is Default-First-Site-Name. -For all other installations, the default is the site that is associated with the subnet that -includes the IP address of this server. If no such site exists, the default is the site of the -replication source domain controller. +value depends on the type of installation. For a new forest, the default is +`Default-First-Site-Name`. For all other installations, the default is the site that is associated +with the subnet that includes the IP address of this server. If no such site exists, the default is +the site of the replication source domain controller. ```yaml Type: System.String From 5f2af2b883976570acdef5eb432a355d0d2284a6 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 13:26:49 -0400 Subject: [PATCH 571/965] Update docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md Co-authored-by: Mikey Lombardi (He/Him) --- .../addsdeployment/Install-ADDSDomainController.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md index d2e9743123..86cb7b4c6b 100644 --- a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md +++ b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md @@ -623,7 +623,7 @@ Indicates that the cmdlet performs only a base set of validations. This behavior the validations that were performed when using `Dcpromo.exe` in earlier versions of Windows Server to add a new domain controller. When this switch parameter is set, it specifies that additional preliminary checks should be bypassed. For more information on the scope of these additional -preliminary checks that the ADDSDeployment module performs by default when using Windows Server +preliminary checks that the **ADDSDeployment** module performs by default when using Windows Server 2016, refer to the table in the section "ADPrep and Prerequisite Checking Architecture" in [AD DS Simplified Administration](https://go.microsoft.com/fwlink/?LinkID=237244). From 32a34a7c5120e038d6c8ee48175dba4fe7479b9b Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 13:34:14 -0400 Subject: [PATCH 572/965] Update docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md Co-authored-by: Mikey Lombardi (He/Him) --- .../addsdeployment/Install-ADDSDomainController.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md index 86cb7b4c6b..3fcef44fe8 100644 --- a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md +++ b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md @@ -724,9 +724,10 @@ This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVar ## NOTES - By default, this cmdlet always prompts for confirmation. To bypass confirmation, you need to - include the _Confirm_ parameter and specify a value of `$false`. For example, `-Confirm:$false`. + include the **Confirm** parameter and specify a value of `$false`. For example, + `-Confirm:$false`. - By default, this cmdlet is always run when executed. To see what will happen if the cmdlet runs - without executing or committing installation changes, first run the cmdlet using the _WhatIf_ + without executing or committing installation changes, first run the cmdlet using the **WhatIf** parameter to show what would happen. ## RELATED LINKS From 0663c9b3e89291e82a82ce48f8cd532da5d36cf7 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 13:34:30 -0400 Subject: [PATCH 573/965] Update docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md Co-authored-by: Mikey Lombardi (He/Him) --- .../addsdeployment/Install-ADDSDomainController.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md index 3fcef44fe8..16eaf3f6e1 100644 --- a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md +++ b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md @@ -371,9 +371,9 @@ DNS server is installed. Otherwise, if DNS domain names are hosted outside of Ac default is `$False` and no DNS server is installed. To test if DNS domain names are hosted outside of Active Directory, this cmdlet uses a start of -authority (SOA) type DNS query. For instance, if the value of _DomainName_ is corp.contoso.com, -Active Directory performs an SOA query for corp.contoso.com and ensures that the zone name in the -response is corp.contoso.com. +authority (SOA) type DNS query. For instance, if the value of **DomainName** is `corp.contoso.com`, +Active Directory performs an SOA query for `corp.contoso.com` and ensures that the zone name in the +response is `corp.contoso.com`. ```yaml Type: System.Management.Automation.SwitchParameter From 5691cfaf53d42be8c45e61c7343e021895fc7edc Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 13:34:48 -0400 Subject: [PATCH 574/965] Update docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md Co-authored-by: Mikey Lombardi (He/Him) --- .../addsdeployment/Install-ADDSDomainController.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md index 16eaf3f6e1..a927da1c4a 100644 --- a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md +++ b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md @@ -315,7 +315,7 @@ Accept wildcard characters: False ### -DnsDelegationCredential Specifies the user name and password for creating DNS delegation. This parameter is skipped if the -value for the _CreateDnsDelegation_ parameter is either specified or computed to be $False. +value for the **CreateDnsDelegation** parameter is either specified or computed to be `$false`. ```yaml Type: System.Management.Automation.PSCredential From 08257276a3cc94c53b69533390ec51fc2cab34e6 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 13:34:59 -0400 Subject: [PATCH 575/965] Update docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md Co-authored-by: Mikey Lombardi (He/Him) --- .../addsdeployment/Install-ADDSDomainController.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md index a927da1c4a..af55607765 100644 --- a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md +++ b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md @@ -201,9 +201,9 @@ Accept wildcard characters: False ### -CreateDnsDelegation Indicates that the cmdlet creates a DNS delegation that references the new DNS server that this -cmdlet installs along with the domain controller. Valid for Active Directory-integrated DNS only. If -this parameter is specified then the DNS delegation is created. If the value of $False is specified -then no DNS delegation is created. By default, the value for this parameter is computed +cmdlet installs along with the domain controller. Valid for Active Directory-integrated DNS only. +If this parameter is specified then the DNS delegation is created. If the value of `$False` is +specified then no DNS delegation is created. By default, the value for this parameter is computed automatically based on the environment. ```yaml From 9bfe008c082134b6d24217a6f0c3e41e620b9218 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 13:35:16 -0400 Subject: [PATCH 576/965] Update docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md Co-authored-by: Mikey Lombardi (He/Him) --- .../addsdeployment/Install-ADDSDomainController.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md index af55607765..f02653b7d3 100644 --- a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md +++ b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md @@ -293,7 +293,7 @@ Accept wildcard characters: False ### -DenyPasswordReplicationAccountName Specifies the names of user accounts, group accounts, and computer accounts whose passwords are not -to be replicated to this RODC. Use an empty string ("") if you do not want to deny the replication +to be replicated to this RODC. Use an empty string (`""`) if you do not want to deny the replication of credentials of any users or computers. By default, Administrators, Server Operators, Backup Operators, Account Operators, and the Denied RODC Password Replication Group are denied. By default, the Denied RODC Password Replication Group includes Cert Publishers, Domain Admins, Enterprise From 26b41523ef5c70822d45d3439530deb53d9609d8 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 13:35:31 -0400 Subject: [PATCH 577/965] Update docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md Co-authored-by: Mikey Lombardi (He/Him) --- .../addsdeployment/Install-ADDSDomainController.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md index f02653b7d3..258fbefbd2 100644 --- a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md +++ b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md @@ -365,10 +365,10 @@ Accept wildcard characters: False ### -InstallDns Indicates the cmdlet installs and configures the DNS Server service on the domain controller. For -domain controller installation, if this parameter is left unspecified and the current domain already -hosts and stores the DNS names for the domain, then the default for this parameter is $True and the -DNS server is installed. Otherwise, if DNS domain names are hosted outside of Active Directory, the -default is `$False` and no DNS server is installed. +domain controller installation, if this parameter is left unspecified and the current domain +already hosts and stores the DNS names for the domain, then the default for this parameter is +`$true` and the DNS server is installed. Otherwise, if DNS domain names are hosted outside of +Active Directory, the default is `$false` and no DNS server is installed. To test if DNS domain names are hosted outside of Active Directory, this cmdlet uses a start of authority (SOA) type DNS query. For instance, if the value of **DomainName** is `corp.contoso.com`, From 3bb3b4da85f694dab74e5218af5199f5af4293b2 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 13:36:29 -0400 Subject: [PATCH 578/965] Update docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md Co-authored-by: Mikey Lombardi (He/Him) --- .../addsdeployment/Install-ADDSDomainController.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md index 258fbefbd2..d4e1ae873d 100644 --- a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md +++ b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md @@ -74,8 +74,8 @@ The `Install-ADDSDomainController` cmdlet installs a domain controller in Active Install-ADDSDomainController -InstallDns -DomainName "corp.contoso.com" ``` -This command installs a domain controller and DNS server in the corp.contoso.com domain using -CORP\Administrator credentials and prompts the user to provide and confirm the Directory Services +This command installs a domain controller and DNS server in the `corp.contoso.com` domain using +`CORP\Administrator` credentials and prompts the user to provide and confirm the Directory Services Restore Mode (DSRM) password. ### Example 2: Install a domain controller and DNS server using administrator credentials From 37c92911bf1a7fbada887b05915fa080a1afb670 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 13:36:40 -0400 Subject: [PATCH 579/965] Update docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md Co-authored-by: Mikey Lombardi (He/Him) --- .../addsdeployment/Install-ADDSDomainController.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md index d4e1ae873d..13dd113404 100644 --- a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md +++ b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md @@ -149,8 +149,9 @@ Accept wildcard characters: False ### -AllowPasswordReplicationAccountName Specifies an array of names of user accounts, group accounts, and computer accounts whose passwords -can be replicated to this RODC. Use an empty string ("") if you want to keep the value empty. By -default, only the Allowed read-only domain controller (RODC) Password Replication Group is allowed. +can be replicated to this RODC. Use an empty string (`""`) if you want to keep the value empty. By +default, only the `Allowed` read-only domain controller (RODC) Password Replication Group is +allowed. ```yaml Type: System.String[] From f6d515891932dc1fdd602cd080852a7e6ccf6204 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 13:36:48 -0400 Subject: [PATCH 580/965] Update docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md Co-authored-by: Mikey Lombardi (He/Him) --- .../addsdeployment/Install-ADDSDomainController.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md index 13dd113404..5edb22b3ba 100644 --- a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md +++ b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md @@ -89,7 +89,7 @@ $HashArguments = @{ Install-ADDSDomainController @HashArguments ``` -This command installs a domain controller and DNS server in the corp.contoso.com domain using +This command installs a domain controller and DNS server in the `corp.contoso.com` domain using Administrator credentials and prompts the user to provide and confirm the DSRM password. ### Example 3: Install a domain controller and DNS server that uses domain promotion From e9776a713d6da751ae3fde6835b72e8434c38c10 Mon Sep 17 00:00:00 2001 From: "Mikey Lombardi (He/Him)" Date: Tue, 2 May 2023 09:08:40 -0500 Subject: [PATCH 581/965] Remove extra newline after synopsis --- .../addsdeployment/Install-ADDSDomainController.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md index 5edb22b3ba..3a66bfb2e0 100644 --- a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md +++ b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md @@ -11,7 +11,6 @@ title: Install-ADDSDomainController # Install-ADDSDomainController ## SYNOPSIS - Installs a new domain controller in an Active Directory domain. ## SYNTAX From 2ee49dd35cdfa0548aa2493e3b147d287deb7e1d Mon Sep 17 00:00:00 2001 From: Michael Lombardi Date: Tue, 2 May 2023 09:10:46 -0500 Subject: [PATCH 582/965] (MAINT) Remove extra newline after synopsis header The extra newline breaks PlatyPS, I missed this during review of #3392. --- docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md b/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md index b382061ae9..96130d4aff 100644 --- a/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md +++ b/docset/winserver2022-ps/addsdeployment/Install-ADDSForest.md @@ -11,7 +11,6 @@ title: Install-ADDSForest # Install-ADDSForest ## SYNOPSIS - Creates a new Active Directory forest. ## SYNTAX From f92ca44e3c5e3b012927e5e019cccd0b46e36786 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Sat, 29 Apr 2023 17:32:39 -0400 Subject: [PATCH 583/965] Spelling dictionary additions --- .vscode/cspell/winmodules/dictionaries/winps.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/.vscode/cspell/winmodules/dictionaries/winps.txt b/.vscode/cspell/winmodules/dictionaries/winps.txt index d042a7f9a0..08b242b231 100644 --- a/.vscode/cspell/winmodules/dictionaries/winps.txt +++ b/.vscode/cspell/winmodules/dictionaries/winps.txt @@ -1,6 +1,7 @@ ADCS Dcpromo DSRM +krbtgt NTDS RODC Sysvol From 78b7129d238a7505b55a03047296b0277c2772d5 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Sat, 29 Apr 2023 17:33:01 -0400 Subject: [PATCH 584/965] Stle guidline fixes --- ...Add-ADDSReadOnlyDomainControllerAccount.md | 126 ++++++++++++------ 1 file changed, 85 insertions(+), 41 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Add-ADDSReadOnlyDomainControllerAccount.md b/docset/winserver2022-ps/addsdeployment/Add-ADDSReadOnlyDomainControllerAccount.md index c098c40090..bc2430173c 100644 --- a/docset/winserver2022-ps/addsdeployment/Add-ADDSReadOnlyDomainControllerAccount.md +++ b/docset/winserver2022-ps/addsdeployment/Add-ADDSReadOnlyDomainControllerAccount.md @@ -11,39 +11,51 @@ title: Add-ADDSReadOnlyDomainControllerAccount # Add-ADDSReadOnlyDomainControllerAccount ## SYNOPSIS + Creates a RODC account that can be used to install an RODC in Active Directory. ## SYNTAX ``` -Add-ADDSReadOnlyDomainControllerAccount [-SkipPreChecks] -DomainControllerAccountName - -DomainName -SiteName [-AllowPasswordReplicationAccountName ] +Add-ADDSReadOnlyDomainControllerAccount [-SkipPreChecks] + -DomainControllerAccountName -DomainName + -SiteName [-AllowPasswordReplicationAccountName ] [-Credential ] [-DelegatedAdministratorAccountName ] [-DenyPasswordReplicationAccountName ] [-NoGlobalCatalog] [-InstallDns] [-ReplicationSourceDC ] [-Force] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Add-ADDSReadOnlyDomainControllerAccount** cmdlet creates a read-only domain controller (RODC) account that can be used to install an RODC in Active Directory. + +The `Add-ADDSReadOnlyDomainControllerAccount` cmdlet creates a read-only domain controller (RODC) +account that can be used to install an RODC in Active Directory. ## EXAMPLES ### Example 1: Add a RODC account + ``` -PS C:\> Add-ADDSReadOnlyDomainControllerAccount -DomainControllerAccountName "RODC1" -DomainName "corp.contoso.com" -SiteName "NorthAmerica" +$HashArguments = @{ + DomainControllerAccountName = "RODC1" + DomainName = "corp.contoso.com" + SiteName = "NorthAmerica" +} +Add-ADDSReadOnlyDomainControllerAccount @HashArguments ``` -This command adds a RODC account to the corp.contoso.com domain using the North America site as the source site for the replication source domain controller. +This command adds a RODC account to the corp.contoso.com domain using the North America site as the +source site for the replication source domain controller. ## PARAMETERS ### -AllowPasswordReplicationAccountName -Specifies an array of user accounts, group accounts, and computer accounts whose passwords can be replicated to this RODC. -Use None if you want to keep the value empty. -By default, only the Allowed RODC Password Replication Group is allowed, and it is originally created empty. + +Specifies an array of user accounts, group accounts, and computer accounts whose passwords can be +replicated to this RODC. Use None if you want to keep the value empty. By default, only the Allowed +RODC Password Replication Group is allowed, and it is originally created empty. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: (All) Aliases: @@ -55,10 +67,11 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -70,11 +83,13 @@ Accept wildcard characters: False ``` ### -Credential -Specifies the user name and password that corresponds to the account used to install the domain controller. -Specify the **Get-Credential** cmdlet when using this parameter to prompt the user to supply a password. + +Specifies the user name and password that corresponds to the account used to install the domain +controller. Specify the `Get-Credential` cmdlet when using this parameter to prompt the user to +supply a password. ```yaml -Type: PSCredential +Type: System.Management.Automation.PSCredential Parameter Sets: (All) Aliases: @@ -86,10 +101,11 @@ Accept wildcard characters: False ``` ### -DelegatedAdministratorAccountName + Specifies the name of the user or group that installs and administers the RODC. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -101,13 +117,17 @@ Accept wildcard characters: False ``` ### -DenyPasswordReplicationAccountName -Specifies the names of user accounts, group accounts, and computer accounts whose passwords are not to be replicated to this RODC. -Use None if you do not want to deny the replication of credentials of any users or computers. -By default, Administrators, Server Operators, Backup Operators, Account Operators, and the Denied RODC Password Replication Group are denied. -By default, the Denied RODC Password Replication Group includes Cert Publishers, Domain Admins, Enterprise Admins, Enterprise Domain Controllers, Enterprise Read-Only Domain Controllers, Group Policy Creator Owners, the krbtgt account, and Schema Admins. + +Specifies the names of user accounts, group accounts, and computer accounts whose passwords are not +to be replicated to this RODC. Use None if you do not want to deny the replication of credentials of +any users or computers. By default, Administrators, Server Operators, Backup Operators, Account +Operators, and the Denied RODC Password Replication Group are denied. By default, the Denied RODC +Password Replication Group includes Cert Publishers, Domain Admins, Enterprise Admins, Enterprise +Domain Controllers, Enterprise Read-Only Domain Controllers, Group Policy Creator Owners, the krbtgt +account, and Schema Admins. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: (All) Aliases: @@ -119,10 +139,11 @@ Accept wildcard characters: False ``` ### -DomainControllerAccountName + Specifies the name of the RODC account that this cmdlet creates. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -134,12 +155,13 @@ Accept wildcard characters: False ``` ### -DomainName -Specifies the domain name for the user name for the operation. -This parameter is required. -It also helps to specify the forest where you plan to install the domain controller or create an RODC account. + +Specifies the domain name for the user name for the operation. This parameter is required. It also +helps to specify the forest where you plan to install the domain controller or create an RODC +account. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -151,10 +173,11 @@ Accept wildcard characters: False ``` ### -Force + Forces the command to run without asking for user confirmation. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -166,11 +189,12 @@ Accept wildcard characters: False ``` ### -InstallDns -Indicates that the cmdlet installs the DNS Server service. -If no value is provided, the default behavior is to automatically compute DNS configuration behavior based upon the existing environment. + +Indicates that the cmdlet installs the DNS Server service. If no value is provided, the default +behavior is to automatically compute DNS configuration behavior based upon the existing environment. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -182,10 +206,11 @@ Accept wildcard characters: False ``` ### -NoGlobalCatalog + Indicates that the cmdlet does not set the RODC as a global catalog server. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -197,10 +222,11 @@ Accept wildcard characters: False ``` ### -ReplicationSourceDC + Specifies the name of the domain controller to be used as the source for replicating to this RODC. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -212,10 +238,11 @@ Accept wildcard characters: False ``` ### -SiteName + Specifies the name of an existing site where you can place the new domain controller. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -227,13 +254,17 @@ Accept wildcard characters: False ``` ### -SkipPreChecks -Indicates that the cmdlet executes only a base set of validations. -This behavior is equivalent to the validations that were performed when using Dcpromo.exe in earlier versions of Windows Server to add a domain controller. -When this switch parameter is set, it specifies that additional preliminary checks should be bypassed. -For more information on the scope of these additional preliminary checks that the ADDSDeployment module performs by default when using Windows Server 2012, refer to the table in the section ADPrep and Prerequisite Checking Architecture in [AD DS Simplified Administration](https://go.microsoft.com/fwlink/?LinkID=237244). + +Indicates that the cmdlet executes only a base set of validations. This behavior is equivalent to +the validations that were performed when using `Dcpromo.exe` in earlier versions of Windows Server +to add a domain controller. When this switch parameter is set, it specifies that additional +preliminary checks should be bypassed. For more information on the scope of these additional +preliminary checks that the ADDSDeployment module performs by default when using Windows Server +2012, refer to the table in the section ADPrep and Prerequisite Checking Architecture in +[AD DS Simplified Administration](https://go.microsoft.com/fwlink/?LinkID=237244). ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -245,11 +276,12 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -261,15 +293,28 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ## OUTPUTS ## NOTES -* Once you have added the RODC account, you can add an RODC to a server computer by using the **Install-ADDSDomainController** cmdlet with the *ReadOnlyReplica* switch parameter. -* You can also delegate the ability to attach the server to a non-administrative group or user. If you are deploying RODCs in delegated administration scenarios where the machine accounts are pre-provisioned, creating the RODC account is the first stage of the RODC installation process and needs to be done by a member of the Domain Admins group. In these scenarios, once an administrator uses this cmdlet to add the RODC account in Active Directory Domain Services (AD DS), the second stage of the installation can occur. This involves attaching an actual server computer in a remote location (such as a branch office) that will operate as the RODC for the specified account created using this cmdlet. + +- Once you have added the RODC account, you can add an RODC to a server computer by using the + `Install-ADDSDomainController` cmdlet with the `-ReadOnlyReplica` switch parameter. +- You can also delegate the ability to attach the server to a non-administrative group or user. If + you are deploying RODCs in delegated administration scenarios where the machine accounts are + pre-provisioned, creating the RODC account is the first stage of the RODC installation process and + needs to be done by a member of the Domain Admins group. In these scenarios, once an administrator + uses this cmdlet to add the RODC account in Active Directory Domain Services (AD DS), the second + stage of the installation can occur. This involves attaching an actual server computer in a remote + location (such as a branch office) that will operate as the RODC for the specified account created + using this cmdlet. ## RELATED LINKS @@ -278,4 +323,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Install-ADDSDomainController](./Install-ADDSDomainController.md) [Get-Credential](https://go.microsoft.com/fwlink/?LinkID=293936) - From ee88d54450d137a50a28f0a39e659cd99406a179 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Sat, 29 Apr 2023 17:56:49 -0400 Subject: [PATCH 585/965] Update Add-ADDSReadOnlyDomainControllerAccount.md Add powershell to code block --- .../addsdeployment/Add-ADDSReadOnlyDomainControllerAccount.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/addsdeployment/Add-ADDSReadOnlyDomainControllerAccount.md b/docset/winserver2022-ps/addsdeployment/Add-ADDSReadOnlyDomainControllerAccount.md index bc2430173c..dae481132f 100644 --- a/docset/winserver2022-ps/addsdeployment/Add-ADDSReadOnlyDomainControllerAccount.md +++ b/docset/winserver2022-ps/addsdeployment/Add-ADDSReadOnlyDomainControllerAccount.md @@ -34,7 +34,7 @@ account that can be used to install an RODC in Active Directory. ### Example 1: Add a RODC account -``` +```powershell $HashArguments = @{ DomainControllerAccountName = "RODC1" DomainName = "corp.contoso.com" From 116a08ff1ee221e8c903268fdf5932bb85076072 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 13:50:47 -0400 Subject: [PATCH 586/965] Update docset/winserver2022-ps/addsdeployment/Add-ADDSReadOnlyDomainControllerAccount.md Co-authored-by: Mikey Lombardi (He/Him) --- .../addsdeployment/Add-ADDSReadOnlyDomainControllerAccount.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/addsdeployment/Add-ADDSReadOnlyDomainControllerAccount.md b/docset/winserver2022-ps/addsdeployment/Add-ADDSReadOnlyDomainControllerAccount.md index dae481132f..2bc3663883 100644 --- a/docset/winserver2022-ps/addsdeployment/Add-ADDSReadOnlyDomainControllerAccount.md +++ b/docset/winserver2022-ps/addsdeployment/Add-ADDSReadOnlyDomainControllerAccount.md @@ -43,7 +43,7 @@ $HashArguments = @{ Add-ADDSReadOnlyDomainControllerAccount @HashArguments ``` -This command adds a RODC account to the corp.contoso.com domain using the North America site as the +This command adds a RODC account to the `corp.contoso.com` domain using the North America site as the source site for the replication source domain controller. ## PARAMETERS From 5dfd01feb99e213154727c0483b063feb3476ee9 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 13:50:56 -0400 Subject: [PATCH 587/965] Update docset/winserver2022-ps/addsdeployment/Add-ADDSReadOnlyDomainControllerAccount.md Co-authored-by: Mikey Lombardi (He/Him) --- .../addsdeployment/Add-ADDSReadOnlyDomainControllerAccount.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/addsdeployment/Add-ADDSReadOnlyDomainControllerAccount.md b/docset/winserver2022-ps/addsdeployment/Add-ADDSReadOnlyDomainControllerAccount.md index 2bc3663883..2359ddaa2b 100644 --- a/docset/winserver2022-ps/addsdeployment/Add-ADDSReadOnlyDomainControllerAccount.md +++ b/docset/winserver2022-ps/addsdeployment/Add-ADDSReadOnlyDomainControllerAccount.md @@ -259,7 +259,7 @@ Indicates that the cmdlet executes only a base set of validations. This behavior the validations that were performed when using `Dcpromo.exe` in earlier versions of Windows Server to add a domain controller. When this switch parameter is set, it specifies that additional preliminary checks should be bypassed. For more information on the scope of these additional -preliminary checks that the ADDSDeployment module performs by default when using Windows Server +preliminary checks that the **ADDSDeployment** module performs by default when using Windows Server 2012, refer to the table in the section ADPrep and Prerequisite Checking Architecture in [AD DS Simplified Administration](https://go.microsoft.com/fwlink/?LinkID=237244). From 5457c7b02acac8478f8aa402227b839b64bd4630 Mon Sep 17 00:00:00 2001 From: "Mikey Lombardi (He/Him)" Date: Tue, 2 May 2023 09:02:00 -0500 Subject: [PATCH 588/965] Remove blank line after synopsis. --- .../addsdeployment/Add-ADDSReadOnlyDomainControllerAccount.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docset/winserver2022-ps/addsdeployment/Add-ADDSReadOnlyDomainControllerAccount.md b/docset/winserver2022-ps/addsdeployment/Add-ADDSReadOnlyDomainControllerAccount.md index 2359ddaa2b..eadb4ec3ca 100644 --- a/docset/winserver2022-ps/addsdeployment/Add-ADDSReadOnlyDomainControllerAccount.md +++ b/docset/winserver2022-ps/addsdeployment/Add-ADDSReadOnlyDomainControllerAccount.md @@ -11,7 +11,6 @@ title: Add-ADDSReadOnlyDomainControllerAccount # Add-ADDSReadOnlyDomainControllerAccount ## SYNOPSIS - Creates a RODC account that can be used to install an RODC in Active Directory. ## SYNTAX From 61eccb713b95d56a316872f8333ba795bee8606a Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Sat, 29 Apr 2023 18:16:14 -0400 Subject: [PATCH 589/965] Style guide fixes --- .../Test-ADDSDomainControllerInstallation.md | 380 +++++++++++------- 1 file changed, 238 insertions(+), 142 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md index 0a64bebc17..d83801b005 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md @@ -11,82 +11,121 @@ title: Test-ADDSDomainControllerInstallation # Test-ADDSDomainControllerInstallation ## SYNOPSIS + Runs the prerequisites (only) for installing a domain controller in Active Directory. ## SYNTAX ### ADDSDomainController (Default) + ``` -Test-ADDSDomainControllerInstallation -DomainName [-SafeModeAdministratorPassword ] - [-SiteName ] [-ADPrepCredential ] [-AllowDomainControllerReinstall] - [-ApplicationPartitionsToReplicate ] [-CreateDnsDelegation] [-Credential ] - [-CriticalReplicationOnly] [-DatabasePath ] [-DnsDelegationCredential ] - [-NoDnsOnNetwork] [-NoGlobalCatalog] [-InstallationMediaPath ] [-InstallDns] [-LogPath ] - [-MoveInfrastructureOperationMasterRoleIfNecessary] [-NoRebootOnCompletion] [-ReplicationSourceDC ] - [-SkipAutoConfigureDns] [-SystemKey ] [-SysvolPath ] [-Force] [] +Test-ADDSDomainControllerInstallation -DomainName + [-SafeModeAdministratorPassword ] [-SiteName ] + [-ADPrepCredential ] [-AllowDomainControllerReinstall] + [-ApplicationPartitionsToReplicate ] [-CreateDnsDelegation] + [-Credential ] [-CriticalReplicationOnly] [-DatabasePath ] + [-DnsDelegationCredential ] [-NoDnsOnNetwork] [-NoGlobalCatalog] + [-InstallationMediaPath ] [-InstallDns] [-LogPath ] + [-MoveInfrastructureOperationMasterRoleIfNecessary] [-NoRebootOnCompletion] + [-ReplicationSourceDC ] [-SkipAutoConfigureDns] [-SystemKey ] + [-SysvolPath ] [-Force] [] ``` ### ADDSDomainControllerReadOnly + ``` -Test-ADDSDomainControllerInstallation -DomainName [-SafeModeAdministratorPassword ] - -SiteName [-ADPrepCredential ] [-AllowDomainControllerReinstall] - [-AllowPasswordReplicationAccountName ] [-ApplicationPartitionsToReplicate ] - [-Credential ] [-CriticalReplicationOnly] [-DatabasePath ] - [-DelegatedAdministratorAccountName ] [-DenyPasswordReplicationAccountName ] - [-NoDnsOnNetwork] [-NoGlobalCatalog] [-InstallationMediaPath ] [-InstallDns] [-LogPath ] - [-MoveInfrastructureOperationMasterRoleIfNecessary] [-ReadOnlyReplica] [-NoRebootOnCompletion] - [-ReplicationSourceDC ] [-SkipAutoConfigureDns] [-SystemKey ] [-SysvolPath ] - [-Force] [] +Test-ADDSDomainControllerInstallation -DomainName + [-SafeModeAdministratorPassword ] -SiteName + [-ADPrepCredential ] [-AllowDomainControllerReinstall] + [-AllowPasswordReplicationAccountName ] + [-ApplicationPartitionsToReplicate ] [-Credential ] + [-CriticalReplicationOnly] [-DatabasePath ] + [-DelegatedAdministratorAccountName ] + [-DenyPasswordReplicationAccountName ] [-NoDnsOnNetwork] [-NoGlobalCatalog] + [-InstallationMediaPath ] [-InstallDns] [-LogPath ] + [-MoveInfrastructureOperationMasterRoleIfNecessary] [-ReadOnlyReplica] + [-NoRebootOnCompletion] [-ReplicationSourceDC ] [-SkipAutoConfigureDns] + [-SystemKey ] [-SysvolPath ] [-Force] [] ``` ### ADDSDomainControllerUseExistingAccount + ``` -Test-ADDSDomainControllerInstallation -DomainName [-SafeModeAdministratorPassword ] - [-ADPrepCredential ] [-ApplicationPartitionsToReplicate ] [-Credential ] - [-CriticalReplicationOnly] [-DatabasePath ] [-NoDnsOnNetwork] [-InstallationMediaPath ] - [-LogPath ] [-NoRebootOnCompletion] [-ReplicationSourceDC ] [-SkipAutoConfigureDns] - [-SystemKey ] [-SysvolPath ] [-UseExistingAccount] [-Force] [] +Test-ADDSDomainControllerInstallation -DomainName + [-SafeModeAdministratorPassword ] [-ADPrepCredential ] + [-ApplicationPartitionsToReplicate ] [-Credential ] + [-CriticalReplicationOnly] [-DatabasePath ] [-NoDnsOnNetwork] + [-InstallationMediaPath ] [-LogPath ] [-NoRebootOnCompletion] + [-ReplicationSourceDC ] [-SkipAutoConfigureDns] [-SystemKey ] + [-SysvolPath ] [-UseExistingAccount] [-Force] [] ``` ## DESCRIPTION -The **Test-ADDSDomainControllerInstallation** cmdlet runs those prerequisite checks (only) which would be performed if you were to use the **Install-ADDSDomainController** cmdlet to install a domain controller in Active Directory. -It differs from using the *WhatIf* parameter with the **Install-ADDSDomainController** cmdlet in that instead of summarizing the changes that would occur during the installation process, this cmdlet actually tests whether those changes are possible given the current environment. -For more information on the scope of these prerequisite checks that the ADDSDeployment module performs when using this cmdlet see the section ADPrep and Prerequisite Checking Architecture in [AD DS Simplified Administration](https://go.microsoft.com/fwlink/?LinkID=237244). +The `Test-ADDSDomainControllerInstallation` cmdlet runs those prerequisite checks (only) which would +be performed if you were to use the `Install-ADDSDomainController` cmdlet to install a domain +controller in Active Directory. It differs from using the `-WhatIf` parameter with the +`Install-ADDSDomainController` cmdlet in that instead of summarizing the changes that would occur +during the installation process, this cmdlet actually tests whether those changes are possible given +the current environment. + +For more information on the scope of these prerequisite checks that the ADDSDeployment module +performs when using this cmdlet see the section ADPrep and Prerequisite Checking Architecture in +[AD DS Simplified Administration](https://go.microsoft.com/fwlink/?LinkID=237244). ## EXAMPLES ### Example 1: Test if the installation of domain controller is possible -``` -PS C:\> Test-ADDSDomainControllerInstallation -InstallDns -Credential (Get-Credential CORP\Administrator) -DomainName "corp.contoso.com" + +```powershell +$HashArguments = @{ + Credential = (Get-Credential CORP\Administrator) + DomainName = "corp.contoso.com" + InstallDns = $true +} +Test-ADDSDomainControllerInstallation @HashArguments ``` -This command runs the prerequisites to determine if installing a domain controller is possible that includes a DNS server for the corp.contoso.com domain using domain administrator credentials. -The command also prompts the user to enter and confirm the Directory Services Restore Mode (DSRM) password. +This command runs the prerequisites to determine if installing a domain controller is possible that +includes a DNS server for the corp.contoso.com domain using domain administrator credentials. The +command also prompts the user to enter and confirm the Directory Services Restore Mode (DSRM) +password. ### Example 2: Test if the installation of domain controller and DNS server is possible -``` -PS C:\> Test-ADDSDomainControllerInstallation -InstallDns -DomainName "corp.contoso.com " + +```powershell +Test-ADDSDomainControllerInstallation -InstallDns -DomainName "corp.contoso.com" ``` -This command runs the prerequisites to determine if installing a domain controller along with the DNS server in the corp.contoso.com domain. -The command also prompts the user to enter and confirm the DSRM password. +This command runs the prerequisites to determine if installing a domain controller along with the +DNS server in the corp.contoso.com domain. The command also prompts the user to enter and confirm +the DSRM password. -### Example 3: Test if the installation of domain controller is possible using Administrator credentials -``` -PS C:\> Test-ADDSDomainControllerInstallation -InstallDns -Credential (Get-Credential) -DomainName (Read-Host "Domain to promote into") +### Example 3: Test if installation of domain controller is possible using Administrator credentials + +```powershell +$HashArguments = @{ + Credential = (Get-Credential) + DomainName = (Read-Host "Domain to promote into") + InstallDns = $true +} +Test-ADDSDomainControllerInstallation @HashArguments ``` -This command runs the prerequisites to determine if installing a domain controller along with a DNS server and that will cause the user to be prompted for Administrator credentials as well as whether the domain name is possible and if the user is prompted to enter and confirm the DSRM password. +This command runs the prerequisites to determine if installing a domain controller along with a DNS +server and that will cause the user to be prompted for Administrator credentials as well as whether +the domain name is possible and if the user is prompted to enter and confirm the DSRM password. ## PARAMETERS ### -ADPrepCredential -Specifies the user name and password that corresponds to the account to be used for running operations (if they are required) to prepare Active Directory prior to the installation of this domain. -Use the **Get-Credential** cmdlet to prompt the user to supply a password. + +Specifies the user name and password that corresponds to the account to be used for running +operations (if they are required) to prepare Active Directory prior to the installation of this +domain. Use the `Get-Credential` cmdlet to prompt the user to supply a password. ```yaml -Type: PSCredential +Type: System.Management.Automation.PSCredential Parameter Sets: (All) Aliases: @@ -98,11 +137,14 @@ Accept wildcard characters: False ``` ### -AllowDomainControllerReinstall -Indicates that the cmdlet continues to install this domain controller, despite the fact that another domain controller account with the same name is detected. -By default, the **Install-ADDSDomainController** cmdlet does not continue to install if another domain controller with the same name is found. + +Indicates that the cmdlet continues to install this domain controller, despite the fact that another +domain controller account with the same name is detected. By default, the +`Install-ADDSDomainController` cmdlet does not continue to install if another domain controller with +the same name is found. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: ADDSDomainController, ADDSDomainControllerReadOnly Aliases: @@ -114,12 +156,13 @@ Accept wildcard characters: False ``` ### -AllowPasswordReplicationAccountName -Specifies an array of names of user accounts, group accounts, and computer accounts whose passwords can be replicated to this RODC. -Use an empty string ("") if you want to keep the value empty. -By default, only the Allowed read-only domain controller (RODC) Password Replication Group is allowed. + +Specifies an array of names of user accounts, group accounts, and computer accounts whose passwords +can be replicated to this RODC. Use an empty string ("") if you want to keep the value empty. By +default, only the Allowed read-only domain controller (RODC) Password Replication Group is allowed. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: ADDSDomainControllerReadOnly Aliases: @@ -131,12 +174,13 @@ Accept wildcard characters: False ``` ### -ApplicationPartitionsToReplicate -Specifies an array of application directory partitions that DCPromo replicates. -Use the following format: "partition1" "partition2" "partitionN". -Use * to replicate all application directory partitions. + +Specifies an array of application directory partitions that DCPromo replicates. Use the following +format: "partition1" "partition2" "partitionN". Use * to replicate all application directory +partitions. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: (All) Aliases: @@ -148,14 +192,15 @@ Accept wildcard characters: False ``` ### -CreateDnsDelegation -Indicates that the cmdlet creates a DNS delegation that references the new DNS server that you are installing along with the domain controller. -Valid for Active Directory-integrated DNS only. -If this parameter is specified then the DNS delegation is created. -If the value of $False is specified then no DNS delegation is created. -By default, the value for this parameter is computed automatically based on the environment. + +Indicates that the cmdlet creates a DNS delegation that references the new DNS server that you are +installing along with the domain controller. Valid for Active Directory-integrated DNS only. If this +parameter is specified then the DNS delegation is created. If the value of $False is specified then +no DNS delegation is created. By default, the value for this parameter is computed automatically +based on the environment. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: ADDSDomainController Aliases: @@ -167,11 +212,12 @@ Accept wildcard characters: False ``` ### -Credential -Specifies the user name and password that corresponds to the account used to install the domain controller. -Use the **Get-Credential** cmdlet to prompt the user to supply a password. + +Specifies the user name and password that corresponds to the account used to install the domain +controller. Use the `Get-Credential` cmdlet to prompt the user to supply a password. ```yaml -Type: PSCredential +Type: System.Management.Automation.PSCredential Parameter Sets: (All) Aliases: @@ -183,13 +229,15 @@ Accept wildcard characters: False ``` ### -CriticalReplicationOnly -Indicates that the cmdlet performs only critical replication before reboot and then continues during the AD DS installation operation. -This parameter will skip the noncritical and potentially lengthy portion of replication. -The noncritical replication happens after the installation finishes and the computer reboots. -By default, the cmdlet performs both critical and noncritical portions of the replication. + +Indicates that the cmdlet performs only critical replication before reboot and then continues during +the AD DS installation operation. This parameter will skip the noncritical and potentially lengthy +portion of replication. The noncritical replication happens after the installation finishes and the +computer reboots. By default, the cmdlet performs both critical and noncritical portions of the +replication. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -201,11 +249,13 @@ Accept wildcard characters: False ``` ### -DatabasePath -Specifies the fully qualified, non-Universal Naming Convention (UNC) path to a directory on a fixed disk of the local computer that will contain the domain database, for instance, C:\Windows\NTDS. -The default is %SYSTEMROOT%\NTDS. + +Specifies the fully qualified, non-Universal Naming Convention (UNC) path to a directory on a fixed +disk of the local computer that will contain the domain database, for instance, `C:\Windows\NTDS`. +The default is `%SYSTEMROOT%\NTDS`. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -217,10 +267,12 @@ Accept wildcard characters: False ``` ### -DelegatedAdministratorAccountName -Specifies the name of the user or group that is the delegated administrator of this domain controller. + +Specifies the name of the user or group that is the delegated administrator of this domain +controller. ```yaml -Type: String +Type: System.String Parameter Sets: ADDSDomainControllerReadOnly Aliases: @@ -232,13 +284,17 @@ Accept wildcard characters: False ``` ### -DenyPasswordReplicationAccountName -Specifies an array of names of user accounts, group accounts, and computer accounts whose passwords are not to be replicated to this RODC. -Use an empty string ("") if you do not want to deny the replication of credentials of any users or computers. -By default, Administrators, Server Operators, Backup Operators, Account Operators, and the Denied RODC Password Replication Group are denied. -By default, the Denied RODC Password Replication Group includes Cert Publishers, Domain Admins, Enterprise Admins, Enterprise Domain Controllers, Enterprise Read-Only Domain Controllers, Group Policy Creator Owners, the krbtgt account, and Schema Admins. + +Specifies an array of names of user accounts, group accounts, and computer accounts whose passwords +are not to be replicated to this RODC. Use an empty string ("") if you do not want to deny the +replication of credentials of any users or computers. By default, Administrators, Server Operators, +Backup Operators, Account Operators, and the Denied RODC Password Replication Group are denied. By +default, the Denied RODC Password Replication Group includes Cert Publishers, Domain Admins, +Enterprise Admins, Enterprise Domain Controllers, Enterprise Read-Only Domain Controllers, Group +Policy Creator Owners, the krbtgt account, and Schema Admins. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: ADDSDomainControllerReadOnly Aliases: @@ -250,11 +306,13 @@ Accept wildcard characters: False ``` ### -DnsDelegationCredential -Specifies the user name and password for creating DNS delegation. -The cmdlet will skip the parameter if the value for the *CreateDnsDelegation* parameter is either specified or computed to be $False. + +Specifies the user name and password for creating DNS delegation. The cmdlet will skip the parameter +if the value for the `-CreateDnsDelegation` parameter is either specified or computed to be +`$False`. ```yaml -Type: PSCredential +Type: System.Management.Automation.PSCredential Parameter Sets: ADDSDomainController Aliases: @@ -266,10 +324,12 @@ Accept wildcard characters: False ``` ### -DomainName -Specifies the fully qualified domain name (FQDN) for the domain where the domain controller is installed or added. + +Specifies the fully qualified domain name (FQDN) for the domain where the domain controller is +installed or added. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -281,10 +341,11 @@ Accept wildcard characters: False ``` ### -Force + Forces the command to run without asking for user confirmation. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -296,15 +357,20 @@ Accept wildcard characters: False ``` ### -InstallDns + Indicates that the cmdlet installs and configures the DNS Server service on the domain controller. -For domain controller installation, if this parameter is left unspecified and the current domain already hosts and stores the DNS names for the domain, then the default for this parameter is $True and the DNS server is installed. -Otherwise, if DNS domain names are hosted outside of Active Directory, the default is $False and no DNS server is installed. +For domain controller installation, if this parameter is left unspecified and the current domain +already hosts and stores the DNS names for the domain, then the default for this parameter is $True +and the DNS server is installed. Otherwise, if DNS domain names are hosted outside of Active +Directory, the default is $False and no DNS server is installed. -To test if DNS domain names are hosted outside of Active Directory, this cmdlet uses a start of authority (SOA) type DNS query. -For example, if the value of the *DomainName* parameter is corp.contoso.com, Active Directory performs an SOA query for corp.contoso.com and ensures that the zone name in the response is corp.contoso.com. +To test if DNS domain names are hosted outside of Active Directory, this cmdlet uses a start of +authority (SOA) type DNS query. For example, if the value of the `-DomainName` parameter is +corp.contoso.com, Active Directory performs an SOA query for corp.contoso.com and ensures that the +zone name in the response is corp.contoso.com. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: ADDSDomainController, ADDSDomainControllerReadOnly Aliases: @@ -316,10 +382,11 @@ Accept wildcard characters: False ``` ### -InstallationMediaPath + Specifies the location of the installation media that is used to install a new domain controller. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -331,11 +398,13 @@ Accept wildcard characters: False ``` ### -LogPath -Specifies the fully qualified, non-UNC path to a directory on a fixed disk of the local computer that will contain the domain log files, for instance, C:\Windows\Logs. -The default is %SYSTEMROOT%\NTDS. + +Specifies the fully qualified, non-UNC path to a directory on a fixed disk of the local computer +that will contain the domain log files, for instance, `C:\Windows\Logs`. The default is +`%SYSTEMROOT%\NTDS`. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -347,12 +416,14 @@ Accept wildcard characters: False ``` ### -MoveInfrastructureOperationMasterRoleIfNecessary -Indicates that the cmdlet transfers the infrastructure master role to the domain controller that you create in case the transfer is needed. -You cannot use the *NoGlobalCatalog* parameter when specifying this parameter. -Do not specify this parameter if you want the infrastructure master role to remain where it currently is. + +Indicates that the cmdlet transfers the infrastructure master role to the domain controller that you +create in case the transfer is needed. You cannot use the `-NoGlobalCatalog` parameter when +specifying this parameter. Do not specify this parameter if you want the infrastructure master role +to remain where it currently is. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: ADDSDomainController, ADDSDomainControllerReadOnly Aliases: @@ -364,16 +435,20 @@ Accept wildcard characters: False ``` ### -NoDnsOnNetwork -Indicates that the DNS service is not available on the network. -This parameter is used only when the IP setting of the network adapter for this computer is not configured with the name of a DNS server for name resolution. -It indicates that a DNS server is installed on this computer for name resolution. -Otherwise, the IP settings of the network adapter must first be configured with the address of a DNS server. -Omitting this parameter (the default) indicates that the TCP/IP client settings of the network adapter on this server computer is used to contact a DNS server. -Therefore, if you do not specify this parameter, ensure that TCP/IP client settings are first configured with a preferred DNS server address. +Indicates that the DNS service is not available on the network. This parameter is used only when the +IP setting of the network adapter for this computer is not configured with the name of a DNS server +for name resolution. It indicates that a DNS server is installed on this computer for name +resolution. Otherwise, the IP settings of the network adapter must first be configured with the +address of a DNS server. + +Omitting this parameter (the default) indicates that the TCP/IP client settings of the network +adapter on this server computer is used to contact a DNS server. Therefore, if you do not specify +this parameter, ensure that TCP/IP client settings are first configured with a preferred DNS server +address. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -385,11 +460,12 @@ Accept wildcard characters: False ``` ### -NoGlobalCatalog -Indicates that the read-only domain controller (RODC) is not a global catalog server. -By default, the domain controller that you are installing is a global catalog server. + +Indicates that the read-only domain controller (RODC) is not a global catalog server. By default, +the domain controller that you are installing is a global catalog server. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: ADDSDomainController, ADDSDomainControllerReadOnly Aliases: @@ -401,12 +477,16 @@ Accept wildcard characters: False ``` ### -NoRebootOnCompletion -Indicates that the cmdlet does not restart the computer upon the completion of the operation to install the domain controller. -By default, if this parameter is omitted the computer restarts upon the completion of the install operation. -As a general rule, Microsoft support recommends that you not use this parameter except for testing or troubleshooting purposes because once configuration has completed the server will not function correctly as either a member server or a domain controller until it is rebooted. + +Indicates that the cmdlet does not restart the computer upon the completion of the operation to +install the domain controller. By default, if this parameter is omitted the computer restarts upon +the completion of the install operation. As a general rule, Microsoft support recommends that you +not use this parameter except for testing or troubleshooting purposes because once configuration has +completed the server will not function correctly as either a member server or a domain controller +until it is rebooted. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -418,10 +498,11 @@ Accept wildcard characters: False ``` ### -ReadOnlyReplica + Indicates that this cmdlet installs the domain controller as an RODC for an existing domain. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: ADDSDomainControllerReadOnly Aliases: @@ -433,10 +514,12 @@ Accept wildcard characters: False ``` ### -ReplicationSourceDC -Specifies the name of the domain controller to be used as the source for replicating to this domain controller. + +Specifies the name of the domain controller to be used as the source for replicating to this domain +controller. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -448,22 +531,27 @@ Accept wildcard characters: False ``` ### -SafeModeAdministratorPassword -Supplies the password for the administrator account when the computer is started in Safe Mode or a variant of Safe Mode, such as Directory Services Restore Mode. -If no value is specified for this parameter, the cmdlet prompts you to enter and confirm a masked password. -If specified with a value, the value must be a secure string. -Supplies the password for the administrator account when the computer is started in Safe Mode or a variant of Safe Mode, such as Directory Services Restore Mode. -You must supply a password that meets the password complexity rules of the domain and the password cannot be blank. -If specified with a value, the value must be a secure string. +Supplies the password for the administrator account when the computer is started in Safe Mode or a +variant of Safe Mode, such as Directory Services Restore Mode. If no value is specified for this +parameter, the cmdlet prompts you to enter and confirm a masked password. If specified with a value, +the value must be a secure string. + +Supplies the password for the administrator account when the computer is started in Safe Mode or a +variant of Safe Mode, such as Directory Services Restore Mode. You must supply a password that meets +the password complexity rules of the domain and the password cannot be blank. If specified with a +value, the value must be a secure string. If this parameter is not specified, the cmdlet prompts you to enter and confirm a masked password. -This is the preferred usage when running the cmdlet interactively. -If additionally there are no other arguments specified with the cmdlet, you are prompted to enter a masked password for this parameter but no confirmation of the password entered is made. -This is not recommended as it could allow a mistyped password to be configured. -Another available advanced option is to use the **ConvertTo-SecureString** cmdlet and specify the password string inline as unmasked console input, which is also not a recommended security best practice in production deployments. +This is the preferred usage when running the cmdlet interactively. If additionally there are no +other arguments specified with the cmdlet, you are prompted to enter a masked password for this +parameter but no confirmation of the password entered is made. This is not recommended as it could +allow a mistyped password to be configured. Another available advanced option is to use the +`ConvertTo-SecureString` cmdlet and specify the password string inline as unmasked console input, +which is also not a recommended security best practice in production deployments. ```yaml -Type: SecureString +Type: System.Security.SecureString Parameter Sets: (All) Aliases: @@ -475,14 +563,15 @@ Accept wildcard characters: False ``` ### -SiteName -Specifies the name of an existing site where you can place the new domain controller. -The default value depends on the type of installation. -For a new forest, the default is Default-First-Site-Name. -For all other installations, the default is the site that is associated with the subnet that includes the IP address of this server. -If no such site exists, the default is the site of the replication source domain controller. + +Specifies the name of an existing site where you can place the new domain controller. The default +value depends on the type of installation. For a new forest, the default is Default-First-Site-Name. +For all other installations, the default is the site that is associated with the subnet that +includes the IP address of this server. If no such site exists, the default is the site of the +replication source domain controller. ```yaml -Type: String +Type: System.String Parameter Sets: ADDSDomainController Aliases: @@ -494,7 +583,7 @@ Accept wildcard characters: False ``` ```yaml -Type: String +Type: System.String Parameter Sets: ADDSDomainControllerReadOnly Aliases: @@ -506,11 +595,12 @@ Accept wildcard characters: False ``` ### -SkipAutoConfigureDns -Indicates that the cmdlet skips automatic configuration of DNS client settings, forwarders, and root hints. -This parameter is in effect only if the DNS Server service is already installed. + +Indicates that the cmdlet skips automatic configuration of DNS client settings, forwarders, and root +hints. This parameter is in effect only if the DNS Server service is already installed. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -522,11 +612,11 @@ Accept wildcard characters: False ``` ### -SystemKey -Specifies the system key for the media from which you replicate the data. -The default is none. + +Specifies the system key for the media from which you replicate the data. The default is none. ```yaml -Type: SecureString +Type: System.Security.SecureString Parameter Sets: (All) Aliases: @@ -538,11 +628,13 @@ Accept wildcard characters: False ``` ### -SysvolPath -Specifies the fully qualified, non-UNC path to a directory on a fixed disk of the local computer that will contain the Sysvol data, for example, C:\Windows\SYSVOL. -The default is %SYSTEMROOT%\SYSVOL. + +Specifies the fully qualified, non-UNC path to a directory on a fixed disk of the local computer +that will contain the Sysvol data, for example, `C:\Windows\SYSVOL`. The default is +`%SYSTEMROOT%\SYSVOL`. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -554,11 +646,12 @@ Accept wildcard characters: False ``` ### -UseExistingAccount -Indicates that the cmdlet attaches a server to an existing RODC account. -If specified, a member of the Domain Admins group or a delegated user can run this cmdlet. + +Indicates that the cmdlet attaches a server to an existing RODC account. If specified, a member of +the Domain Admins group or a delegated user can run this cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: ADDSDomainControllerUseExistingAccount Aliases: @@ -570,7 +663,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -593,4 +690,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Get-Credential](https://go.microsoft.com/fwlink/?LinkID=293936) [ConvertTo-SecureString](https://go.microsoft.com/fwlink/p/?LinkId=113291) - From 71119fa382614b8969306f7460c563fbc1da8740 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 15:13:43 -0400 Subject: [PATCH 590/965] Update docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md Co-authored-by: Mikey Lombardi (He/Him) --- .../addsdeployment/Test-ADDSDomainControllerInstallation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md index d83801b005..cb4f88f5d1 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md @@ -64,12 +64,12 @@ Test-ADDSDomainControllerInstallation -DomainName The `Test-ADDSDomainControllerInstallation` cmdlet runs those prerequisite checks (only) which would be performed if you were to use the `Install-ADDSDomainController` cmdlet to install a domain -controller in Active Directory. It differs from using the `-WhatIf` parameter with the +controller in Active Directory. It differs from using the **WhatIf** parameter with the `Install-ADDSDomainController` cmdlet in that instead of summarizing the changes that would occur during the installation process, this cmdlet actually tests whether those changes are possible given the current environment. -For more information on the scope of these prerequisite checks that the ADDSDeployment module +For more information on the scope of these prerequisite checks that the **ADDSDeployment** module performs when using this cmdlet see the section ADPrep and Prerequisite Checking Architecture in [AD DS Simplified Administration](https://go.microsoft.com/fwlink/?LinkID=237244). From 48af907a6df8843a58dc7557cfec73f31a2ef02f Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 15:13:49 -0400 Subject: [PATCH 591/965] Update docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md Co-authored-by: Mikey Lombardi (He/Him) --- .../addsdeployment/Test-ADDSDomainControllerInstallation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md index cb4f88f5d1..7b93c39245 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md @@ -87,7 +87,7 @@ Test-ADDSDomainControllerInstallation @HashArguments ``` This command runs the prerequisites to determine if installing a domain controller is possible that -includes a DNS server for the corp.contoso.com domain using domain administrator credentials. The +includes a DNS server for the `corp.contoso.com` domain using domain administrator credentials. The command also prompts the user to enter and confirm the Directory Services Restore Mode (DSRM) password. From 24a6291924fc5bd046160df9941a8fac45ac0204 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 15:13:55 -0400 Subject: [PATCH 592/965] Update docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md Co-authored-by: Mikey Lombardi (He/Him) --- .../addsdeployment/Test-ADDSDomainControllerInstallation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md index 7b93c39245..a331c4779b 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md @@ -98,7 +98,7 @@ Test-ADDSDomainControllerInstallation -InstallDns -DomainName "corp.contoso.com" ``` This command runs the prerequisites to determine if installing a domain controller along with the -DNS server in the corp.contoso.com domain. The command also prompts the user to enter and confirm +DNS server in the `corp.contoso.com` domain. The command also prompts the user to enter and confirm the DSRM password. ### Example 3: Test if installation of domain controller is possible using Administrator credentials From 17f4c4b1e287664d7844abbd7a48f3ecf88e8269 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 15:14:01 -0400 Subject: [PATCH 593/965] Update docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md Co-authored-by: Mikey Lombardi (He/Him) --- .../addsdeployment/Test-ADDSDomainControllerInstallation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md index a331c4779b..7fb3929473 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md @@ -158,7 +158,7 @@ Accept wildcard characters: False ### -AllowPasswordReplicationAccountName Specifies an array of names of user accounts, group accounts, and computer accounts whose passwords -can be replicated to this RODC. Use an empty string ("") if you want to keep the value empty. By +can be replicated to this RODC. Use an empty string (`""`) if you want to keep the value empty. By default, only the Allowed read-only domain controller (RODC) Password Replication Group is allowed. ```yaml From 5eba25995c33f1860b541c237d53c081615390d4 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 15:14:07 -0400 Subject: [PATCH 594/965] Update docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md Co-authored-by: Mikey Lombardi (He/Him) --- .../addsdeployment/Test-ADDSDomainControllerInstallation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md index 7fb3929473..47b5087f53 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md @@ -176,7 +176,7 @@ Accept wildcard characters: False ### -ApplicationPartitionsToReplicate Specifies an array of application directory partitions that DCPromo replicates. Use the following -format: "partition1" "partition2" "partitionN". Use * to replicate all application directory +format: `"partition1" "partition2" "partitionN"`. Use `*` to replicate all application directory partitions. ```yaml From 7f32b1ad44ba54d7f2719ec8da70b2188c0267bc Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 15:14:18 -0400 Subject: [PATCH 595/965] Update docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md Co-authored-by: Mikey Lombardi (He/Him) --- .../addsdeployment/Test-ADDSDomainControllerInstallation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md index 47b5087f53..17d9457d41 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md @@ -309,7 +309,7 @@ Accept wildcard characters: False Specifies the user name and password for creating DNS delegation. The cmdlet will skip the parameter if the value for the `-CreateDnsDelegation` parameter is either specified or computed to be -`$False`. +`$false`. ```yaml Type: System.Management.Automation.PSCredential From 6e4ffb976f8edcd575ef031b5f4337d855f01185 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 15:14:24 -0400 Subject: [PATCH 596/965] Update docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md Co-authored-by: Mikey Lombardi (He/Him) --- .../addsdeployment/Test-ADDSDomainControllerInstallation.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md index 17d9457d41..ac187eacde 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md @@ -360,9 +360,9 @@ Accept wildcard characters: False Indicates that the cmdlet installs and configures the DNS Server service on the domain controller. For domain controller installation, if this parameter is left unspecified and the current domain -already hosts and stores the DNS names for the domain, then the default for this parameter is $True -and the DNS server is installed. Otherwise, if DNS domain names are hosted outside of Active -Directory, the default is $False and no DNS server is installed. +already hosts and stores the DNS names for the domain, then the default for this parameter is +`$true` and the DNS server is installed. Otherwise, if DNS domain names are hosted outside of +Active Directory, the default is `$false` and no DNS server is installed. To test if DNS domain names are hosted outside of Active Directory, this cmdlet uses a start of authority (SOA) type DNS query. For example, if the value of the `-DomainName` parameter is From 8ce549ca7d6c066b9eb247cc35752a269a9f1ad3 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 15:14:30 -0400 Subject: [PATCH 597/965] Update docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md Co-authored-by: Mikey Lombardi (He/Him) --- .../addsdeployment/Test-ADDSDomainControllerInstallation.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md index ac187eacde..4b67c57ed9 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md @@ -365,9 +365,9 @@ already hosts and stores the DNS names for the domain, then the default for this Active Directory, the default is `$false` and no DNS server is installed. To test if DNS domain names are hosted outside of Active Directory, this cmdlet uses a start of -authority (SOA) type DNS query. For example, if the value of the `-DomainName` parameter is -corp.contoso.com, Active Directory performs an SOA query for corp.contoso.com and ensures that the -zone name in the response is corp.contoso.com. +authority (SOA) type DNS query. For example, if the value of the **DomainName** parameter is +`corp.contoso.com`, Active Directory performs an SOA query for `corp.contoso.com` and ensures that +the zone name in the response is `corp.contoso.com`. ```yaml Type: System.Management.Automation.SwitchParameter From 2b8e04a3c076e8fdb509504fdbdacce12110f69b Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 15:14:36 -0400 Subject: [PATCH 598/965] Update docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md Co-authored-by: Mikey Lombardi (He/Him) --- .../addsdeployment/Test-ADDSDomainControllerInstallation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md index 4b67c57ed9..be0eda3621 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md @@ -417,8 +417,8 @@ Accept wildcard characters: False ### -MoveInfrastructureOperationMasterRoleIfNecessary -Indicates that the cmdlet transfers the infrastructure master role to the domain controller that you -create in case the transfer is needed. You cannot use the `-NoGlobalCatalog` parameter when +Indicates that the cmdlet transfers the infrastructure master role to the domain controller that +you create in case the transfer is needed. You cannot use the **NoGlobalCatalog** parameter when specifying this parameter. Do not specify this parameter if you want the infrastructure master role to remain where it currently is. From 63a54964d3aadf9ee99ec4af8358ae1a8a6db675 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 15:14:42 -0400 Subject: [PATCH 599/965] Update docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md Co-authored-by: Mikey Lombardi (He/Him) --- .../Test-ADDSDomainControllerInstallation.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md index be0eda3621..40bcc33a3b 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md @@ -565,10 +565,10 @@ Accept wildcard characters: False ### -SiteName Specifies the name of an existing site where you can place the new domain controller. The default -value depends on the type of installation. For a new forest, the default is Default-First-Site-Name. -For all other installations, the default is the site that is associated with the subnet that -includes the IP address of this server. If no such site exists, the default is the site of the -replication source domain controller. +value depends on the type of installation. For a new forest, the default is +`Default-First-Site-Name`. For all other installations, the default is the site that is associated +with the subnet that includes the IP address of this server. If no such site exists, the default is +the site of the replication source domain controller. ```yaml Type: System.String From 6e9b798ae8590f09b97df8a2d38203ebd9d46483 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 15:14:57 -0400 Subject: [PATCH 600/965] Update docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md Co-authored-by: Mikey Lombardi (He/Him) --- .../addsdeployment/Test-ADDSDomainControllerInstallation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md index 40bcc33a3b..2d0276d68a 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md @@ -286,7 +286,7 @@ Accept wildcard characters: False ### -DenyPasswordReplicationAccountName Specifies an array of names of user accounts, group accounts, and computer accounts whose passwords -are not to be replicated to this RODC. Use an empty string ("") if you do not want to deny the +are not to be replicated to this RODC. Use an empty string (`""`) if you do not want to deny the replication of credentials of any users or computers. By default, Administrators, Server Operators, Backup Operators, Account Operators, and the Denied RODC Password Replication Group are denied. By default, the Denied RODC Password Replication Group includes Cert Publishers, Domain Admins, From 05e9116591b549b82c811fa711b0c68a99833887 Mon Sep 17 00:00:00 2001 From: "Mikey Lombardi (He/Him)" Date: Tue, 2 May 2023 09:02:53 -0500 Subject: [PATCH 601/965] Remove blank line after synopsis --- .../addsdeployment/Test-ADDSDomainControllerInstallation.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md index 2d0276d68a..4e4a2e37f6 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerInstallation.md @@ -11,7 +11,6 @@ title: Test-ADDSDomainControllerInstallation # Test-ADDSDomainControllerInstallation ## SYNOPSIS - Runs the prerequisites (only) for installing a domain controller in Active Directory. ## SYNTAX From d4766a7af3d5b023938b15557f76d01ec2de2ea6 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Sat, 29 Apr 2023 18:28:58 -0400 Subject: [PATCH 602/965] Style guide fixes --- ...Test-ADDSDomainControllerUninstallation.md | 160 ++++++++++++------ 1 file changed, 104 insertions(+), 56 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md index 322c2dc461..3e62fbb309 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md @@ -11,52 +11,69 @@ title: Test-ADDSDomainControllerUninstallation # Test-ADDSDomainControllerUninstallation ## SYNOPSIS + Runs the prerequisites for uninstalling a domain controller in Active Directory. ## SYNTAX ### ADDSDomainControllerUninstall (Default) + ``` Test-ADDSDomainControllerUninstallation [-LocalAdministratorPassword ] - [-Credential ] [-DemoteOperationMasterRole] [-DnsDelegationRemovalCredential ] - [-IgnoreLastDCInDomainMismatch] [-IgnoreLastDnsServerForZone] [-LastDomainControllerInDomain] - [-NoRebootOnCompletion] [-RemoveApplicationPartitions] [-RemoveDnsDelegation] [-RetainDCMetadata] [-Force] + [-Credential ] [-DemoteOperationMasterRole] + [-DnsDelegationRemovalCredential ] [-IgnoreLastDCInDomainMismatch] + [-IgnoreLastDnsServerForZone] [-LastDomainControllerInDomain] [-NoRebootOnCompletion] + [-RemoveApplicationPartitions] [-RemoveDnsDelegation] [-RetainDCMetadata] [-Force] [] ``` ### ADDSDomainControllerUninstallForceRemoval + ``` Test-ADDSDomainControllerUninstallation [-LocalAdministratorPassword ] - [-Credential ] [-DemoteOperationMasterRole] [-ForceRemoval] [-NoRebootOnCompletion] [-Force] - [] + [-Credential ] [-DemoteOperationMasterRole] [-ForceRemoval] + [-NoRebootOnCompletion] [-Force] [] ``` ## DESCRIPTION -The **Test-ADDSDomainControllerUninstallation** cmdlet runs those prerequisite checks which would be performed if you were to use the Uninstall-ADDSDomainController cmdlet to uninstall a domain controller in Active Directory. -It differs from using the *WhatIf* parameter with the **Uninstall-ADDSDomainController** cmdlet in that instead of summarizing the changes that would occur during the uninstallation process, this cmdlet actually tests whether those changes are possible given the current environment. -For more information on the scope of these prerequisite checks that the ADDSDeployment module performs when using this cmdlet see the section ADPrep and Prerequisite Checking Architecture in [AD DS Simplified Administration](https://go.microsoft.com/fwlink/?LinkID=237244). +The `Test-ADDSDomainControllerUninstallation` cmdlet runs those prerequisite checks which would be +performed if you were to use the Uninstall-ADDSDomainController cmdlet to uninstall a domain +controller in Active Directory. It differs from using the `-WhatIf` parameter with the +`Uninstall-ADDSDomainController` cmdlet in that instead of summarizing the changes that would occur +during the uninstallation process, this cmdlet actually tests whether those changes are possible +given the current environment. + +For more information on the scope of these prerequisite checks that the ADDSDeployment module +performs when using this cmdlet see the section ADPrep and Prerequisite Checking Architecture in +[AD DS Simplified Administration](https://go.microsoft.com/fwlink/?LinkID=237244). ## EXAMPLES ### Example 1: Test if uninstalling a domain controller is possible -``` -PS C:\> Test-ADDSDomainControllerUninstallation + +```powershell +Test-ADDSDomainControllerUninstallation ``` -This command runs the prerequisites to determine if the uninstall of an additional domain controller in a domain is possible. -The command also prompts the user to set and confirm the local Administrator password prior to completing the uninstallation process. +This command runs the prerequisites to determine if the uninstall of an additional domain controller +in a domain is possible. The command also prompts the user to set and confirm the local +Administrator password prior to completing the uninstallation process. ## PARAMETERS ### -Credential -Specifies the user name and password that corresponds to the account used to install the domain controller. -To prompt the user to supply a password, use Runs the prerequisites (only) to determine if installing a domain controller is possible that includes a DNS server for the corp.contoso.com domain, using domain administrator credentials, and then prompts the user to correctly specify the Directory Services Restore Mode (DSRM) password. -Use the **Get-Credential** cmdlet in place of an existing *PSCredential* type. -This parameter will cause Windows PowerShell to prompt the user to enter credentials using the Windows security login UI. + +Specifies the user name and password that corresponds to the account used to install the domain +controller. To prompt the user to supply a password, use Runs the prerequisites (only) to determine +if installing a domain controller is possible that includes a DNS server for the corp.contoso.com +domain, using domain administrator credentials, and then prompts the user to correctly specify the +Directory Services Restore Mode (DSRM) password. Use the `Get-Credential` cmdlet in place of an +existing _PSCredential_ type. This parameter will cause Windows PowerShell to prompt the user to +enter credentials using the Windows security login UI. ```yaml -Type: PSCredential +Type: System.Management.Automation.PSCredential Parameter Sets: (All) Aliases: @@ -68,10 +85,12 @@ Accept wildcard characters: False ``` ### -DemoteOperationMasterRole -Indicates that forced demotion should continue even if an operations master role is discovered on domain controller from which AD DS is being removed. + +Indicates that forced demotion should continue even if an operations master role is discovered on +domain controller from which AD DS is being removed. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -83,12 +102,14 @@ Accept wildcard characters: False ``` ### -DnsDelegationRemovalCredential -Specifies the account credentials to use when you create or remove the DNS delegation. -If you do not specify a value, the account credentials that you specify for the AD DS installation or removal are used to remove the DNS delegation. -As an alternative, you can specify the asterisk (*) to prompt the user to enter credentials. + +Specifies the account credentials to use when you create or remove the DNS delegation. If you do not +specify a value, the account credentials that you specify for the AD DS installation or removal are +used to remove the DNS delegation. As an alternative, you can specify the asterisk (*) to prompt the +user to enter credentials. ```yaml -Type: PSCredential +Type: System.Management.Automation.PSCredential Parameter Sets: ADDSDomainControllerUninstall Aliases: @@ -100,10 +121,11 @@ Accept wildcard characters: False ``` ### -Force + Forces the command to run without asking for user confirmation. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -115,11 +137,13 @@ Accept wildcard characters: False ``` ### -ForceRemoval -Indicates that the cmdlet forces the removal of a domain controller. -Use this parameter to force the uninstall of AD DS if you need to remove the domain controller and do not have connectivity to other domain controllers within the domain topology. + +Indicates that the cmdlet forces the removal of a domain controller. Use this parameter to force the +uninstall of AD DS if you need to remove the domain controller and do not have connectivity to other +domain controllers within the domain topology. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: ADDSDomainControllerUninstallForceRemoval Aliases: @@ -131,12 +155,19 @@ Accept wildcard characters: False ``` ### -IgnoreLastDCInDomainMismatch -Indicates that Windows PowerShell ignores any inconsistency that it detects with the value that you specify for the *LastDomainControllerInDomain* parameter. -For instance, if you specify *LastDomainControllerInDomain* but Windows PowerShell detects that there is actually another active domain controller in the domain, you can specify the *IgnoreLastDCInDomainMismatch* parameter to have Windows PowerShell continue the removal of AD DS from the domain controller despite the inconsistency that it has detected. -Similarly, if you do not specify *LastDomainControllerInDomain* but Windows PowerShell is unable to detect that another domain controller is in the domain, you can specify *IgnoreLastDCInDomainMismatch* to have Windows PowerShell continue to remove AD DS from the domain controller. + +Indicates that Windows PowerShell ignores any inconsistency that it detects with the value that you +specify for the `-LastDomainControllerInDomain` parameter. For instance, if you specify +`-LastDomainControllerInDomain` but Windows PowerShell detects that there is actually another active +domain controller in the domain, you can specify the `-IgnoreLastDCInDomainMismatch` parameter to +have Windows PowerShell continue the removal of AD DS from the domain controller despite the +inconsistency that it has detected. Similarly, if you do not specify `-LastDomainControllerInDomain` +but Windows PowerShell is unable to detect that another domain controller is in the domain, you can +specify `-IgnoreLastDCInDomainMismatch` to have Windows PowerShell continue to remove AD DS from the +domain controller. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: ADDSDomainControllerUninstall Aliases: @@ -148,10 +179,12 @@ Accept wildcard characters: False ``` ### -IgnoreLastDnsServerForZone -Indicates that the cmdlet continues the removal of AD DS despite the fact that the domain controller is the last DNS server for one or more of the Active Directory-integrated DNS zones that it hosts. + +Indicates that the cmdlet continues the removal of AD DS despite the fact that the domain controller +is the last DNS server for one or more of the Active Directory-integrated DNS zones that it hosts. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: ADDSDomainControllerUninstall Aliases: @@ -163,10 +196,11 @@ Accept wildcard characters: False ``` ### -LastDomainControllerInDomain + Indicates that the cmdlet removes AD DS from the last controller in the domain. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: ADDSDomainControllerUninstall Aliases: @@ -178,20 +212,24 @@ Accept wildcard characters: False ``` ### -LocalAdministratorPassword -Specifies a local administrator account password when AD DS is removed from a domain controller. -In earlier releases, where uninstall of AD DS was done using Dcpromo.exe for demotion, the default was to allow an empty password for this setting. -In Windows PowerShell, the ADDS Deployment module requires that a non-empty password string value be assigned. -If a value is not provided for this parameter, you are prompted to enter a value for the password at the Windows PowerShell prompt. -The password value must be a secure string. + +Specifies a local administrator account password when AD DS is removed from a domain controller. In +earlier releases, where uninstall of AD DS was done using `Dcpromo.exe` for demotion, the default +was to allow an empty password for this setting. In Windows PowerShell, the ADDS Deployment module +requires that a non-empty password string value be assigned. If a value is not provided for this +parameter, you are prompted to enter a value for the password at the Windows PowerShell prompt. The +password value must be a secure string. If this parameter is not specified, the cmdlet prompts you to enter and confirm a masked password. -This is the preferred usage when running the cmdlet interactively. -If additionally there are no other arguments specified with the cmdlet, you are prompted to enter a masked password for this parameter but no confirmation of the password entered is made. -This is not recommended as it could allow a mistyped password to be configured. -Another available advanced option is to use the **ConvertTo-SecureString** cmdlet and specify the password string inline as unmasked console input, which is also not a recommended security best practice in production deployments. +This is the preferred usage when running the cmdlet interactively. If additionally there are no +other arguments specified with the cmdlet, you are prompted to enter a masked password for this +parameter but no confirmation of the password entered is made. This is not recommended as it could +allow a mistyped password to be configured. Another available advanced option is to use the +`ConvertTo-SecureString` cmdlet and specify the password string inline as unmasked console input, +which is also not a recommended security best practice in production deployments. ```yaml -Type: SecureString +Type: System.Security.SecureString Parameter Sets: (All) Aliases: @@ -203,11 +241,12 @@ Accept wildcard characters: False ``` ### -NoRebootOnCompletion -Indicates that the cmdlet does not restart the computer upon completion, regardless of success. -By default, reboot upon completion occurs when this cmdlet is used and this parameter is omitted. + +Indicates that the cmdlet does not restart the computer upon completion, regardless of success. By +default, reboot upon completion occurs when this cmdlet is used and this parameter is omitted. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -219,10 +258,12 @@ Accept wildcard characters: False ``` ### -RemoveApplicationPartitions -Indicates that the cmdlet removes application partitions during the removal of AD DS from a domain controller. + +Indicates that the cmdlet removes application partitions during the removal of AD DS from a domain +controller. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: ADDSDomainControllerUninstall Aliases: @@ -234,13 +275,16 @@ Accept wildcard characters: False ``` ### -RemoveDnsDelegation -Indicates that the cmdlet preserves DNS delegations that point to this DNS server from the parent DNS zone. -By default, this parameter is set to false, which means DNS delegations that point to this server from the parent DNS zone will not be retained after uninstallation of the domain controller. -This setting corresponds to the earlier Dcpromo.exe parameter default of /RemoveDNSDelegation:Yes. +Indicates that the cmdlet preserves DNS delegations that point to this DNS server from the parent +DNS zone. + +By default, this parameter is set to false, which means DNS delegations that point to this server +from the parent DNS zone will not be retained after uninstallation of the domain controller. This +setting corresponds to the earlier `Dcpromo.exe` parameter default of `/RemoveDNSDelegation:Yes`. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: ADDSDomainControllerUninstall Aliases: @@ -252,10 +296,11 @@ Accept wildcard characters: False ``` ### -RetainDCMetadata + Indicates that the domain controller should retain metadata for the domain after removal of AD DS. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: ADDSDomainControllerUninstall Aliases: @@ -267,7 +312,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -284,4 +333,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Get-Credential](https://go.microsoft.com/fwlink/?LinkID=293936) [ConvertTo-SecureString](https://go.microsoft.com/fwlink/p/?LinkId=113291) - From c420690eb81ff618b9d03b730b2a384b16e1cdb1 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 15:15:25 -0400 Subject: [PATCH 603/965] Update docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md Co-authored-by: Mikey Lombardi (He/Him) --- .../Test-ADDSDomainControllerUninstallation.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md index 3e62fbb309..08d4decd7d 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md @@ -38,13 +38,13 @@ Test-ADDSDomainControllerUninstallation [-LocalAdministratorPassword Date: Mon, 1 May 2023 15:15:32 -0400 Subject: [PATCH 604/965] Update docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md Co-authored-by: Mikey Lombardi (He/Him) --- .../addsdeployment/Test-ADDSDomainControllerUninstallation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md index 08d4decd7d..882e6bdde1 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md @@ -66,10 +66,10 @@ Administrator password prior to completing the uninstallation process. Specifies the user name and password that corresponds to the account used to install the domain controller. To prompt the user to supply a password, use Runs the prerequisites (only) to determine -if installing a domain controller is possible that includes a DNS server for the corp.contoso.com +if installing a domain controller is possible that includes a DNS server for the `corp.contoso.com` domain, using domain administrator credentials, and then prompts the user to correctly specify the Directory Services Restore Mode (DSRM) password. Use the `Get-Credential` cmdlet in place of an -existing _PSCredential_ type. This parameter will cause Windows PowerShell to prompt the user to +existing **PSCredential** type. This parameter will cause Windows PowerShell to prompt the user to enter credentials using the Windows security login UI. ```yaml From 7d49ba67ce133ec07ebffc6f1d3e721921af69fa Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 15:15:51 -0400 Subject: [PATCH 605/965] Update docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md Co-authored-by: Mikey Lombardi (He/Him) --- .../Test-ADDSDomainControllerUninstallation.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md index 882e6bdde1..2f05b7ea12 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md @@ -103,10 +103,10 @@ Accept wildcard characters: False ### -DnsDelegationRemovalCredential -Specifies the account credentials to use when you create or remove the DNS delegation. If you do not -specify a value, the account credentials that you specify for the AD DS installation or removal are -used to remove the DNS delegation. As an alternative, you can specify the asterisk (*) to prompt the -user to enter credentials. +Specifies the account credentials to use when you create or remove the DNS delegation. If you do +not specify a value, the account credentials that you specify for the AD DS installation or removal +are used to remove the DNS delegation. As an alternative, you can specify the asterisk (`*`) to +prompt the user to enter credentials. ```yaml Type: System.Management.Automation.PSCredential From debab65ac9791c4378d848b8f14d9c12d4a270e6 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 15:15:57 -0400 Subject: [PATCH 606/965] Update docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md Co-authored-by: Mikey Lombardi (He/Him) --- .../Test-ADDSDomainControllerUninstallation.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md index 2f05b7ea12..ef57b19fd6 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md @@ -157,14 +157,14 @@ Accept wildcard characters: False ### -IgnoreLastDCInDomainMismatch Indicates that Windows PowerShell ignores any inconsistency that it detects with the value that you -specify for the `-LastDomainControllerInDomain` parameter. For instance, if you specify -`-LastDomainControllerInDomain` but Windows PowerShell detects that there is actually another active -domain controller in the domain, you can specify the `-IgnoreLastDCInDomainMismatch` parameter to -have Windows PowerShell continue the removal of AD DS from the domain controller despite the -inconsistency that it has detected. Similarly, if you do not specify `-LastDomainControllerInDomain` -but Windows PowerShell is unable to detect that another domain controller is in the domain, you can -specify `-IgnoreLastDCInDomainMismatch` to have Windows PowerShell continue to remove AD DS from the -domain controller. +specify for the **LastDomainControllerInDomain** parameter. For instance, if you specify +**LastDomainControllerInDomain** but Windows PowerShell detects that there is actually another +active domain controller in the domain, you can specify the **IgnoreLastDCInDomainMismatch** +parameter to have Windows PowerShell continue the removal of AD DS from the domain controller +despite the inconsistency that it has detected. Similarly, if you do not specify +**LastDomainControllerInDomain** but Windows PowerShell is unable to detect that another domain +controller is in the domain, you can specify **IgnoreLastDCInDomainMismatch** to have Windows +PowerShell continue to remove AD DS from the domain controller. ```yaml Type: System.Management.Automation.SwitchParameter From b06c8408f83623752e5f18ddccf155344370753b Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 15:16:02 -0400 Subject: [PATCH 607/965] Update docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md Co-authored-by: Mikey Lombardi (He/Him) --- .../Test-ADDSDomainControllerUninstallation.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md index ef57b19fd6..aef98b641c 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md @@ -279,9 +279,10 @@ Accept wildcard characters: False Indicates that the cmdlet preserves DNS delegations that point to this DNS server from the parent DNS zone. -By default, this parameter is set to false, which means DNS delegations that point to this server -from the parent DNS zone will not be retained after uninstallation of the domain controller. This -setting corresponds to the earlier `Dcpromo.exe` parameter default of `/RemoveDNSDelegation:Yes`. +By default, this parameter is set to `$false`, which means DNS delegations that point to this +server from the parent DNS zone will not be retained after uninstallation of the domain controller. +This setting corresponds to the earlier `Dcpromo.exe` parameter default of +`/RemoveDNSDelegation:Yes`. ```yaml Type: System.Management.Automation.SwitchParameter From 872156e4c2b881db3a91b38c0f2a49cc0e3af3a4 Mon Sep 17 00:00:00 2001 From: "Mikey Lombardi (He/Him)" Date: Tue, 2 May 2023 09:04:45 -0500 Subject: [PATCH 608/965] Remove extra newline after synopsis --- .../addsdeployment/Test-ADDSDomainControllerUninstallation.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md index aef98b641c..6b5e439f3d 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md @@ -11,7 +11,6 @@ title: Test-ADDSDomainControllerUninstallation # Test-ADDSDomainControllerUninstallation ## SYNOPSIS - Runs the prerequisites for uninstalling a domain controller in Active Directory. ## SYNTAX From b5f5558f7b79b40375a6bf4a061d409769ffb8ad Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Sat, 29 Apr 2023 18:52:36 -0400 Subject: [PATCH 609/965] Style guide fixes --- .../Test-ADDSDomainInstallation.md | 273 +++++++++++------- 1 file changed, 176 insertions(+), 97 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainInstallation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainInstallation.md index e2d0562c05..fb587ff57b 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainInstallation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainInstallation.md @@ -11,45 +11,76 @@ title: Test-ADDSDomainInstallation # Test-ADDSDomainInstallation ## SYNOPSIS + Runs the prerequisites for installing a new Active Directory domain configuration. ## SYNTAX ``` Test-ADDSDomainInstallation -NewDomainName -ParentDomainName - [-SafeModeAdministratorPassword ] [-ADPrepCredential ] [-AllowDomainReinstall] - [-CreateDnsDelegation] [-Credential ] [-DatabasePath ] - [-DnsDelegationCredential ] [-NoDnsOnNetwork] [-DomainMode ] - [-DomainType ] [-NoGlobalCatalog] [-InstallDns] [-LogPath ] - [-NewDomainNetbiosName ] [-NoRebootOnCompletion] [-ReplicationSourceDC ] [-SiteName ] - [-SkipAutoConfigureDns] [-SysvolPath ] [-Force] [] + [-SafeModeAdministratorPassword ] [-ADPrepCredential ] + [-AllowDomainReinstall] [-CreateDnsDelegation] [-Credential ] + [-DatabasePath ] [-DnsDelegationCredential ] [-NoDnsOnNetwork] + [-DomainMode ] [-DomainType ] [-NoGlobalCatalog] [-InstallDns] + [-LogPath ] [-NewDomainNetbiosName ] [-NoRebootOnCompletion] + [-ReplicationSourceDC ] [-SiteName ] [-SkipAutoConfigureDns] + [-SysvolPath ] [-Force] [] ``` ## DESCRIPTION -The **Test-ADDSDomainInstallation** cmdlet runs those prerequisite checks which would be performed if you were to use the **Install-ADDSDomainController** cmdlet to install a new Active Directory domain configuration. -It differs from using the *WhatIf* parameter with the **Install-ADDSDomainController** cmdlet in that instead of summarizing the changes that would occur during the installation process, this cmdlet actually tests whether those changes are possible given the current environment. -For more information on the scope of these prerequisite checks that the ADDSDeployment module performs when using this cmdlet see the section ADPrep and Prerequisite Checking Architecture in [AD DS Simplified Administration](https://go.microsoft.com/fwlink/?LinkID=237244). +The `Test-ADDSDomainInstallation` cmdlet runs those prerequisite checks which would be performed if +you were to use the `Install-ADDSDomainController` cmdlet to install a new Active Directory domain +configuration. It differs from using the `-WhatIf` parameter with the `Install-ADDSDomainController` +cmdlet in that instead of summarizing the changes that would occur during the installation process, +this cmdlet actually tests whether those changes are possible given the current environment. + +For more information on the scope of these prerequisite checks that the ADDSDeployment module +performs when using this cmdlet see the section ADPrep and Prerequisite Checking Architecture in +[AD DS Simplified Administration](https://go.microsoft.com/fwlink/?LinkID=237244). ## EXAMPLES ### Example 1: Test if installing a child domain is possible -``` -PS C:\> Test-ADDSDomainInstallation -Credential (Get-Credential CORP\EnterpriseAdmin1) -NewDomainName child -ParentDomainName "corp.contoso.com" -InstallDNS -CreateDNSDelegation -DomainMode Win2003 -ReplicationSourceDC "DC1.corp.contoso.com" -SiteName "Houston" -DatabasePath "D:\NTDS" -SYSVOLPath "D:\SYSVOL" -LogPath "E:\Logs" -NoRebootOnCompletion + +```powershell +@HashArguments = { + CreateDNSDelegation = $true + Credential = (Get-Credential CORP\EnterpriseAdmin1) + DatabasePath = "D:\NTDS" + DomainMode = Win2003 + InstallDNS = $true + NewDomainName = "child" + NoRebootOnCompletion = $true + ParentDomainName = "corp.contoso.com" + ReplicationSourceDC = "DC1.corp.contoso.com" + LogPath = "E:\Logs" + SiteName = "Houston" + SYSVOLPath = "D:\SYSVOL" +} +Test-ADDSDomainInstallation @HashArguments ``` -This command runs the prerequisites to determine if installing a new child domain named child.corp.contoso.com using credentials of CORP\EnterpriseAdmin1 is possible. -This command also installs a DNS server, creates a DNS delegation in the corp.contoso.com domain, sets the domain functional level to Windows Server 2003, makes the domain controller a global catalog server in a site named Houston, and uses DC1.corp.contoso.com as the replication source domain controller. -The command also installs the Active Directory database and SYSVOL on the D:\ drive, installs the log files on the E:\ drive, has the server not automatically restart after the domain installation is complete and prompts the user to provide and confirm the Directory Services Restore Mode (DSRM) password to complete and commit the installation of the domain in Active Directory. +This command runs the prerequisites to determine if installing a new child domain named +child.corp.contoso.com using credentials of CORP\EnterpriseAdmin1 is possible. This command also +installs a DNS server, creates a DNS delegation in the corp.contoso.com domain, sets the domain +functional level to Windows Server 2003, makes the domain controller a global catalog server in a +site named Houston, and uses DC1.corp.contoso.com as the replication source domain controller. The +command also installs the Active Directory database and SYSVOL on the `D:\` drive, installs the log +files on the `E:\` drive, has the server not automatically restart after the domain installation is +complete and prompts the user to provide and confirm the Directory Services Restore Mode (DSRM) +password to complete and commit the installation of the domain in Active Directory. ## PARAMETERS ### -ADPrepCredential -Specifies the user name and password that corresponds to the account to be used for running operations, if required, to prepare Active Directory prior to the installation of this domain. -Use the **Get-Credential** cmdlet to prompt the user to supply a password. + +Specifies the user name and password that corresponds to the account to be used for running +operations, if required, to prepare Active Directory prior to the installation of this domain. Use +the `Get-Credential` cmdlet to prompt the user to supply a password. ```yaml -Type: PSCredential +Type: System.Management.Automation.PSCredential Parameter Sets: (All) Aliases: @@ -61,10 +92,11 @@ Accept wildcard characters: False ``` ### -AllowDomainReinstall + Indicates that the cmdlet recreates an existing domain is to be recreated. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -76,12 +108,13 @@ Accept wildcard characters: False ``` ### -CreateDnsDelegation -Indicates whether to create a DNS delegation that references the new DNS server that you are installing along with the domain controller. -Valid for Active Directory-integrated DNS only. -The default is computed automatically based on the environment. + +Indicates whether to create a DNS delegation that references the new DNS server that you are +installing along with the domain controller. Valid for Active Directory-integrated DNS only. The +default is computed automatically based on the environment. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -93,11 +126,12 @@ Accept wildcard characters: False ``` ### -Credential -Specifies the user name and password that corresponds to the account used to install the domain controller. -Use the **Get-Credential** cmdlet to prompt the user to supply a password. + +Specifies the user name and password that corresponds to the account used to install the domain +controller. Use the `Get-Credential` cmdlet to prompt the user to supply a password. ```yaml -Type: PSCredential +Type: System.Management.Automation.PSCredential Parameter Sets: (All) Aliases: @@ -109,11 +143,13 @@ Accept wildcard characters: False ``` ### -DatabasePath -Specifies the fully qualified, non-Universal Naming Convention (UNC) path to a directory on a fixed disk of the local computer that contains the domain database, for example, C:\Windows\NTDS. -The default is %SYSTEMROOT%\NTDS. + +Specifies the fully qualified, non-Universal Naming Convention (UNC) path to a directory on a fixed +disk of the local computer that contains the domain database, for example, `C:\Windows\NTDS`. The +default is `%SYSTEMROOT%\NTDS`. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -125,11 +161,13 @@ Accept wildcard characters: False ``` ### -DnsDelegationCredential -Specifies the user name and password for the user that creates the DNS delegation. -This parameter is skipped if the value for the *CreateDnsDelegation* parameter is either specified or computed to be $False. + +Specifies the user name and password for the user that creates the DNS delegation. This parameter is +skipped if the value for the `-CreateDnsDelegation` parameter is either specified or computed to be +`$False`. ```yaml -Type: PSCredential +Type: System.Management.Automation.PSCredential Parameter Sets: (All) Aliases: @@ -141,9 +179,11 @@ Accept wildcard characters: False ``` ### -DomainMode -Specifies the domain functional level of the first domain in the creation of a new forest. -Supported values for this parameter can be either a valid integer or a corresponding enumerated string value. -For instance, to set the domain mode level to Windows Server 2008 R2, you can specify either a value of 4 or Win2008R2. + +Specifies the domain functional level of the first domain in the creation of a new forest. Supported +values for this parameter can be either a valid integer or a corresponding enumerated string value. +For instance, to set the domain mode level to Windows Server 2008 R2, you can specify either a value +of 4 or Win2008R2. The acceptable values for this parameter are: @@ -157,7 +197,7 @@ The domain functional level cannot be lower than the forest functional level, bu The default is automatically computed and set. ```yaml -Type: DomainMode +Type: System.DirectoryServices.ActiveDirectory.DomainMode Parameter Sets: (All) Aliases: Accepted values: Win2008, Win2008R2, Win2012, Win2012R2, WinThreshold, Default @@ -170,8 +210,10 @@ Accept wildcard characters: False ``` ### -DomainType -Specifies the type of domain that this cmdlet creates: a new domain tree in an existing forest (supported values are TreeDomain or tree), a child of an existing domain (supported values are ChildDomain or child). -The default is ChildDomain. + +Specifies the type of domain that this cmdlet creates: a new domain tree in an existing forest +(supported values are TreeDomain or tree), a child of an existing domain (supported values are +ChildDomain or child). The default is ChildDomain. ```yaml Type: DomainType @@ -187,10 +229,11 @@ Accept wildcard characters: False ``` ### -Force + Forces the command to run without asking for user confirmation. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -202,15 +245,21 @@ Accept wildcard characters: False ``` ### -InstallDns -Indicates that this cmdlet installs and configures the DNS Server service for the domain or domain tree. -For domain installation, if this parameter is left unspecified and the parent domain (or in the case of a domain tree, the forest root domain) already hosts and stores the DNS names for the domain, then the default for this parameter is $True and the DNS server is installed. -Otherwise, if DNS domain names are hosted outside of Active Directory, the default is $False and no DNS server is installed. -To test if DNS domain names are hosted outside of Active Directory, this cmdlet uses a start of authority (SOA) type DNS. -For instance, if the value of *NewDomainName* is corp.contoso.com, Active Directory performs an SOA query for corp.contoso.com and ensures that the zone name in the response is corp.contoso.com. +Indicates that this cmdlet installs and configures the DNS Server service for the domain or domain +tree. For domain installation, if this parameter is left unspecified and the parent domain (or in +the case of a domain tree, the forest root domain) already hosts and stores the DNS names for the +domain, then the default for this parameter is $True and the DNS server is installed. Otherwise, if +DNS domain names are hosted outside of Active Directory, the default is $False and no DNS server is +installed. + +To test if DNS domain names are hosted outside of Active Directory, this cmdlet uses a start of +authority (SOA) type DNS. For instance, if the value of `-NewDomainName` is corp.contoso.com, Active +Directory performs an SOA query for corp.contoso.com and ensures that the zone name in the response +is corp.contoso.com. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -222,11 +271,13 @@ Accept wildcard characters: False ``` ### -LogPath -Specifies the fully qualified, non-UNC path to a directory on a fixed disk of the local computer that will contain the domain log files, for example, C:\Windows\Logs. -The default is %SYSTEMROOT%\NTDS. + +Specifies the fully qualified, non-UNC path to a directory on a fixed disk of the local computer +that will contain the domain log files, for example, `C:\Windows\Logs`. The default is +`%SYSTEMROOT%\NTDS`. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -238,12 +289,15 @@ Accept wildcard characters: False ``` ### -NewDomainName -Specifies the new name of the domain. -If the value set for *DomainType* is set to TreeDomain, this parameter can be used to specify the fully qualified domain name (FQDN) for the new domain tree (for example, contoso.com). -If the value set for *DomainType* is set to ChildDomain, this parameter can be used to specify a single label domain name for the child domain (for example, specify corp to make a new domain corp.contoso.com if the new domain is in the contoso.com domain tree). + +Specifies the new name of the domain. If the value set for `-DomainType` is set to TreeDomain, this +parameter can be used to specify the fully qualified domain name (FQDN) for the new domain tree (for +example, contoso.com). If the value set for `-DomainType` is set to ChildDomain, this parameter can +be used to specify a single label domain name for the child domain (for example, specify corp to +make a new domain corp.contoso.com if the new domain is in the contoso.com domain tree). ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -255,18 +309,22 @@ Accept wildcard characters: False ``` ### -NewDomainNetbiosName -Specifies the NetBIOS name for the new domain. -For NetBIOS names to be valid for use with this parameter they must be single label names of 15 characters or less. -If this parameter is set with a valid NetBIOS name value, then promotion continues with the name specified. -If this parameter is not set, then the default is automatically computed from the value of the *NewDomainName* parameter. +Specifies the NetBIOS name for the new domain. For NetBIOS names to be valid for use with this +parameter they must be single label names of 15 characters or less. -For instance, if this parameter is not specified and a single-label prefix domain name of 15 characters or less is specified within the value of the *NewDomainName* parameter, then promotion continues with an automatically generated NetBIOS domain name. -For example, the prefix label corp within a full domain name value of corp.contoso.com would be a successful name choice. -If the label is more than 16 characters, the operation will fail. +If this parameter is set with a valid NetBIOS name value, then promotion continues with the name +specified. If this parameter is not set, then the default is automatically computed from the value +of the `-NewDomainName` parameter. + +For instance, if this parameter is not specified and a single-label prefix domain name of 15 +characters or less is specified within the value of the `-NewDomainName` parameter, then promotion +continues with an automatically generated NetBIOS domain name. For example, the prefix label corp +within a full domain name value of corp.contoso.com would be a successful name choice. If the label +is more than 16 characters, the operation will fail. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -278,16 +336,20 @@ Accept wildcard characters: False ``` ### -NoDnsOnNetwork -Indicates that the DNS service is not available on the network. -This parameter is used only when the IP setting of the network adapter for this computer is not configured with the name of a DNS server for name resolution. -It indicates that a DNS server is installed on this computer for name resolution. -Otherwise, the IP settings of the network adapter must first be configured with the address of a DNS server. -Omitting this parameter, the default value, indicates that the TCP/IP client settings of the network adapter on this server computer is used to contact a DNS server. -Therefore, if you are not specifying this parameter, ensure that TCP/IP client settings are first configured with a preferred DNS server address. +Indicates that the DNS service is not available on the network. This parameter is used only when the +IP setting of the network adapter for this computer is not configured with the name of a DNS server +for name resolution. It indicates that a DNS server is installed on this computer for name +resolution. Otherwise, the IP settings of the network adapter must first be configured with the +address of a DNS server. + +Omitting this parameter, the default value, indicates that the TCP/IP client settings of the network +adapter on this server computer is used to contact a DNS server. Therefore, if you are not +specifying this parameter, ensure that TCP/IP client settings are first configured with a preferred +DNS server address. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -299,11 +361,12 @@ Accept wildcard characters: False ``` ### -NoGlobalCatalog -Indicates that the read-only domain controller (RODC) will not be a global catalog server. -By default, the domain controller that you are installing is a global catalog server. + +Indicates that the read-only domain controller (RODC) will not be a global catalog server. By +default, the domain controller that you are installing is a global catalog server. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -315,12 +378,15 @@ Accept wildcard characters: False ``` ### -NoRebootOnCompletion -Indicates that the cmdlet restarts the computer upon completion, regardless of success. -By default, reboot upon completion occurs when this cmdlet is used and this parameter is omitted. -As a general rule, Microsoft support recommends that you not use this parameter except for testing or troubleshooting purposes because once configuration has completed the server will not function correctly as either a member server or a DC until it is rebooted. + +Indicates that the cmdlet restarts the computer upon completion, regardless of success. By default, +reboot upon completion occurs when this cmdlet is used and this parameter is omitted. As a general +rule, Microsoft support recommends that you not use this parameter except for testing or +troubleshooting purposes because once configuration has completed the server will not function +correctly as either a member server or a DC until it is rebooted. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -332,10 +398,11 @@ Accept wildcard characters: False ``` ### -ParentDomainName + Specifies the fully qualified domain name (FQDN) of an existing parent domain. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -347,11 +414,13 @@ Accept wildcard characters: False ``` ### -ReplicationSourceDC -Specifies the fully qualified domain name (FQDN) of the domain controller to be used as the source for replicating to this domain. -The default value for this parameter is automatically computed from the environment. + +Specifies the fully qualified domain name (FQDN) of the domain controller to be used as the source +for replicating to this domain. The default value for this parameter is automatically computed from +the environment. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -363,18 +432,22 @@ Accept wildcard characters: False ``` ### -SafeModeAdministratorPassword -Supplies the password for the administrator account when the computer is started in Safe Mode or a variant of Safe Mode, such as Directory Services Restore Mode. -You must supply a password that meets the password complexity rules of the domain and the password cannot be blank. -If specified with a value, the value must be a secure string. + +Supplies the password for the administrator account when the computer is started in Safe Mode or a +variant of Safe Mode, such as Directory Services Restore Mode. You must supply a password that meets +the password complexity rules of the domain and the password cannot be blank. If specified with a +value, the value must be a secure string. If this parameter is not specified, the cmdlet prompts you to enter and confirm a masked password. -This is the preferred usage when running the cmdlet interactively. -If additionally there are no other arguments specified with the cmdlet, you are prompted to enter a masked password for this parameter but no confirmation of the password entered is made. -This is not recommended as it could allow a mistyped password to be configured. -Another available advanced option is to use the **ConvertTo-SecureString** cmdlet and specify the password string inline as unmasked console input, which is also not a recommended security best practice in production deployments. +This is the preferred usage when running the cmdlet interactively. If additionally there are no +other arguments specified with the cmdlet, you are prompted to enter a masked password for this +parameter but no confirmation of the password entered is made. This is not recommended as it could +allow a mistyped password to be configured. Another available advanced option is to use the +`ConvertTo-SecureString` cmdlet and specify the password string inline as unmasked console input, +which is also not a recommended security best practice in production deployments. ```yaml -Type: SecureString +Type: System.Security.SecureString Parameter Sets: (All) Aliases: @@ -386,12 +459,13 @@ Accept wildcard characters: False ``` ### -SiteName -Specifies the name of an existing site where you can place the new domain controller. -The default value is the site that is associated with the subnet that includes the IP address of this server. -If no such site exists, the default is the site of the replication source domain controller. + +Specifies the name of an existing site where you can place the new domain controller. The default +value is the site that is associated with the subnet that includes the IP address of this server. If +no such site exists, the default is the site of the replication source domain controller. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -403,11 +477,12 @@ Accept wildcard characters: False ``` ### -SkipAutoConfigureDns -Indicates that this cmdlet skips automatic configuration of DNS client settings, forwarders, and root hints. -This parameter is in effect only if the DNS Server service is already installed. + +Indicates that this cmdlet skips automatic configuration of DNS client settings, forwarders, and +root hints. This parameter is in effect only if the DNS Server service is already installed. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -419,11 +494,12 @@ Accept wildcard characters: False ``` ### -SysvolPath -Specifies the fully qualified, non-UNC path to a directory on a fixed disk of the local computer, for example, C:\Windows\SYSVOL. -The default is %SYSTEMROOT%\SYSVOL. + +Specifies the fully qualified, non-UNC path to a directory on a fixed disk of the local computer, +for example, `C:\Windows\SYSVOL`. The default is `%SYSTEMROOT%\SYSVOL`. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -435,7 +511,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -452,4 +532,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Get-Credential](https://go.microsoft.com/fwlink/?LinkID=293936) [ConvertTo-SecureString](https://go.microsoft.com/fwlink/p/?LinkId=113291) - From b73b5ffd291b6d726162cee3472293a485865d0d Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 15:16:26 -0400 Subject: [PATCH 610/965] Update docset/winserver2022-ps/addsdeployment/Test-ADDSDomainInstallation.md Co-authored-by: Mikey Lombardi (He/Him) --- .../addsdeployment/Test-ADDSDomainInstallation.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainInstallation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainInstallation.md index fb587ff57b..e78305564c 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainInstallation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainInstallation.md @@ -31,11 +31,12 @@ Test-ADDSDomainInstallation -NewDomainName -ParentDomainName The `Test-ADDSDomainInstallation` cmdlet runs those prerequisite checks which would be performed if you were to use the `Install-ADDSDomainController` cmdlet to install a new Active Directory domain -configuration. It differs from using the `-WhatIf` parameter with the `Install-ADDSDomainController` -cmdlet in that instead of summarizing the changes that would occur during the installation process, -this cmdlet actually tests whether those changes are possible given the current environment. +configuration. It differs from using the **WhatIf** parameter with the +`Install-ADDSDomainController` cmdlet in that instead of summarizing the changes that would occur +during the installation process, this cmdlet actually tests whether those changes are possible +given the current environment. -For more information on the scope of these prerequisite checks that the ADDSDeployment module +For more information on the scope of these prerequisite checks that the **ADDSDeployment** module performs when using this cmdlet see the section ADPrep and Prerequisite Checking Architecture in [AD DS Simplified Administration](https://go.microsoft.com/fwlink/?LinkID=237244). From 7833ba469cb576cc26835fd52db4100827f332e3 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 15:16:36 -0400 Subject: [PATCH 611/965] Update docset/winserver2022-ps/addsdeployment/Test-ADDSDomainInstallation.md Co-authored-by: Mikey Lombardi (He/Him) --- .../Test-ADDSDomainInstallation.md | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainInstallation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainInstallation.md index e78305564c..101cb99012 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainInstallation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainInstallation.md @@ -63,14 +63,15 @@ Test-ADDSDomainInstallation @HashArguments ``` This command runs the prerequisites to determine if installing a new child domain named -child.corp.contoso.com using credentials of CORP\EnterpriseAdmin1 is possible. This command also -installs a DNS server, creates a DNS delegation in the corp.contoso.com domain, sets the domain -functional level to Windows Server 2003, makes the domain controller a global catalog server in a -site named Houston, and uses DC1.corp.contoso.com as the replication source domain controller. The -command also installs the Active Directory database and SYSVOL on the `D:\` drive, installs the log -files on the `E:\` drive, has the server not automatically restart after the domain installation is -complete and prompts the user to provide and confirm the Directory Services Restore Mode (DSRM) -password to complete and commit the installation of the domain in Active Directory. +`child.corp.contoso.com` using credentials of `CORP\EnterpriseAdmin1` is possible. This command +also installs a DNS server, creates a DNS delegation in the `corp.contoso.com` domain, sets the +domain functional level to Windows Server 2003, makes the domain controller a global catalog server +in a site named `Houston`, and uses `DC1.corp.contoso.com` as the replication source domain +controller. The command also installs the Active Directory database and SYSVOL on the `D:\` drive, +installs the log files on the `E:\` drive, has the server not automatically restart after the +domain installation is complete and prompts the user to provide and confirm the Directory Services +Restore Mode (DSRM) password to complete and commit the installation of the domain in Active +Directory. ## PARAMETERS From 7d6fb7dd334925d67c0c9f8a8cdbda07d62374e3 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 15:16:42 -0400 Subject: [PATCH 612/965] Update docset/winserver2022-ps/addsdeployment/Test-ADDSDomainInstallation.md Co-authored-by: Mikey Lombardi (He/Him) --- .../addsdeployment/Test-ADDSDomainInstallation.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainInstallation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainInstallation.md index 101cb99012..27de182303 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainInstallation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainInstallation.md @@ -182,10 +182,10 @@ Accept wildcard characters: False ### -DomainMode -Specifies the domain functional level of the first domain in the creation of a new forest. Supported -values for this parameter can be either a valid integer or a corresponding enumerated string value. -For instance, to set the domain mode level to Windows Server 2008 R2, you can specify either a value -of 4 or Win2008R2. +Specifies the domain functional level of the first domain in the creation of a new forest. +Supported values for this parameter can be either a valid integer or a corresponding enumerated +string value. For instance, to set the domain mode level to Windows Server 2008 R2, you can specify +either a value of `4` or `Win2008R2`. The acceptable values for this parameter are: From 2cdb02022ebcc71ffa5577c5317d27a2571a255b Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 15:16:47 -0400 Subject: [PATCH 613/965] Update docset/winserver2022-ps/addsdeployment/Test-ADDSDomainInstallation.md Co-authored-by: Mikey Lombardi (He/Him) --- .../addsdeployment/Test-ADDSDomainInstallation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainInstallation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainInstallation.md index 27de182303..5ab5a6f160 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainInstallation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainInstallation.md @@ -214,8 +214,8 @@ Accept wildcard characters: False ### -DomainType Specifies the type of domain that this cmdlet creates: a new domain tree in an existing forest -(supported values are TreeDomain or tree), a child of an existing domain (supported values are -ChildDomain or child). The default is ChildDomain. +(supported values are `TreeDomain` or `tree`), a child of an existing domain (supported values are +`ChildDomain` or `child`). The default is `ChildDomain`. ```yaml Type: DomainType From abaeb0ae064740a6a3b7f46bea496afa00d54358 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 15:16:54 -0400 Subject: [PATCH 614/965] Update docset/winserver2022-ps/addsdeployment/Test-ADDSDomainInstallation.md Co-authored-by: Mikey Lombardi (He/Him) --- .../addsdeployment/Test-ADDSDomainInstallation.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainInstallation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainInstallation.md index 5ab5a6f160..17c553e16b 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainInstallation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainInstallation.md @@ -251,14 +251,14 @@ Accept wildcard characters: False Indicates that this cmdlet installs and configures the DNS Server service for the domain or domain tree. For domain installation, if this parameter is left unspecified and the parent domain (or in the case of a domain tree, the forest root domain) already hosts and stores the DNS names for the -domain, then the default for this parameter is $True and the DNS server is installed. Otherwise, if -DNS domain names are hosted outside of Active Directory, the default is $False and no DNS server is -installed. +domain, then the default for this parameter is `$true` and the DNS server is installed. Otherwise, +if DNS domain names are hosted outside of Active Directory, the default is `$false` and no DNS +server is installed. To test if DNS domain names are hosted outside of Active Directory, this cmdlet uses a start of -authority (SOA) type DNS. For instance, if the value of `-NewDomainName` is corp.contoso.com, Active -Directory performs an SOA query for corp.contoso.com and ensures that the zone name in the response -is corp.contoso.com. +authority (SOA) type DNS. For instance, if the value of **NewDomainName** is `corp.contoso.com`, +Active Directory performs an SOA query for `corp.contoso.com` and ensures that the zone name in the +response is `corp.contoso.com`. ```yaml Type: System.Management.Automation.SwitchParameter From c31b3043b1c53619d2a8cb61708c8763cf84bb98 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 15:17:01 -0400 Subject: [PATCH 615/965] Update docset/winserver2022-ps/addsdeployment/Test-ADDSDomainInstallation.md Co-authored-by: Mikey Lombardi (He/Him) --- .../addsdeployment/Test-ADDSDomainInstallation.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainInstallation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainInstallation.md index 17c553e16b..1c4d087943 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainInstallation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainInstallation.md @@ -292,11 +292,12 @@ Accept wildcard characters: False ### -NewDomainName -Specifies the new name of the domain. If the value set for `-DomainType` is set to TreeDomain, this -parameter can be used to specify the fully qualified domain name (FQDN) for the new domain tree (for -example, contoso.com). If the value set for `-DomainType` is set to ChildDomain, this parameter can -be used to specify a single label domain name for the child domain (for example, specify corp to -make a new domain corp.contoso.com if the new domain is in the contoso.com domain tree). +Specifies the new name of the domain. If the value set for **DomainType** is set to `TreeDomain`, +this parameter can be used to specify the fully qualified domain name (FQDN) for the new domain +tree (for example, `contoso.com`). If the value set for **DomainType** is set to `ChildDomain`, +this parameter can be used to specify a single label domain name for the child domain (for example, +specify corp to make a new domain `corp.contoso.com` if the new domain is in the `contoso.com` +domain tree). ```yaml Type: System.String From 2325b2a0efacbca6e05bb0e0c0ef41673a9e86de Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 15:17:08 -0400 Subject: [PATCH 616/965] Update docset/winserver2022-ps/addsdeployment/Test-ADDSDomainInstallation.md Co-authored-by: Mikey Lombardi (He/Him) --- .../addsdeployment/Test-ADDSDomainInstallation.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainInstallation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainInstallation.md index 1c4d087943..03a3a9ddba 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainInstallation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainInstallation.md @@ -318,13 +318,13 @@ parameter they must be single label names of 15 characters or less. If this parameter is set with a valid NetBIOS name value, then promotion continues with the name specified. If this parameter is not set, then the default is automatically computed from the value -of the `-NewDomainName` parameter. +of the **NewDomainName** parameter. For instance, if this parameter is not specified and a single-label prefix domain name of 15 -characters or less is specified within the value of the `-NewDomainName` parameter, then promotion +characters or less is specified within the value of the **NewDomainName** parameter, then promotion continues with an automatically generated NetBIOS domain name. For example, the prefix label corp -within a full domain name value of corp.contoso.com would be a successful name choice. If the label -is more than 16 characters, the operation will fail. +within a full domain name value of `corp.contoso.com` would be a successful name choice. If the +label is more than 16 characters, the operation will fail. ```yaml Type: System.String From 4a131a6b3c2769d46e452141d0d52a36f3b5b381 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 15:17:18 -0400 Subject: [PATCH 617/965] Update docset/winserver2022-ps/addsdeployment/Test-ADDSDomainInstallation.md Co-authored-by: Mikey Lombardi (He/Him) --- .../addsdeployment/Test-ADDSDomainInstallation.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainInstallation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainInstallation.md index 03a3a9ddba..dd3c207e3f 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainInstallation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainInstallation.md @@ -164,9 +164,9 @@ Accept wildcard characters: False ### -DnsDelegationCredential -Specifies the user name and password for the user that creates the DNS delegation. This parameter is -skipped if the value for the `-CreateDnsDelegation` parameter is either specified or computed to be -`$False`. +Specifies the user name and password for the user that creates the DNS delegation. This parameter +is skipped if the value for the **CreateDnsDelegation** parameter is either specified or computed +to be `$false`. ```yaml Type: System.Management.Automation.PSCredential From c85b20c50d0e111da85471485689d3e613c91806 Mon Sep 17 00:00:00 2001 From: "Mikey Lombardi (He/Him)" Date: Tue, 2 May 2023 09:05:05 -0500 Subject: [PATCH 618/965] Remove extra newline after synopsis --- .../addsdeployment/Test-ADDSDomainInstallation.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainInstallation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainInstallation.md index dd3c207e3f..734d0b462a 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainInstallation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainInstallation.md @@ -11,7 +11,6 @@ title: Test-ADDSDomainInstallation # Test-ADDSDomainInstallation ## SYNOPSIS - Runs the prerequisites for installing a new Active Directory domain configuration. ## SYNTAX From 922d9b5e4181e013a0ca82fb4e8e544f7472439c Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Sat, 29 Apr 2023 19:12:02 -0400 Subject: [PATCH 619/965] Style guide fixes --- .../Test-ADDSForestInstallation.md | 219 +++++++++++------- 1 file changed, 138 insertions(+), 81 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md index 9680c6ae05..3a306ea6a4 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md @@ -11,52 +11,75 @@ title: Test-ADDSForestInstallation # Test-ADDSForestInstallation ## SYNOPSIS + Runs the prerequisites for installing a new forest in Active Directory. ## SYNTAX ``` -Test-ADDSForestInstallation -DomainName [-SafeModeAdministratorPassword ] - [-CreateDnsDelegation] [-DatabasePath ] [-DnsDelegationCredential ] [-NoDnsOnNetwork] - [-DomainMode ] [-DomainNetbiosName ] [-ForestMode ] [-InstallDns] - [-LogPath ] [-NoRebootOnCompletion] [-SkipAutoConfigureDns] [-SysvolPath ] [-Force] - [] +Test-ADDSForestInstallation -DomainName + [-SafeModeAdministratorPassword ] [-CreateDnsDelegation] + [-DatabasePath ] [-DnsDelegationCredential ] [-NoDnsOnNetwork] + [-DomainMode ] [-DomainNetbiosName ] [-ForestMode ] + [-InstallDns] [-LogPath ] [-NoRebootOnCompletion] [-SkipAutoConfigureDns] + [-SysvolPath ] [-Force] [] ``` ## DESCRIPTION -The **Test-ADDSForestInstallation** cmdlet runs those prerequisite checks which would be performed if you were to use the Install-ADDSForest cmdlet to install a new forest in Active Directory. -It differs from using the *WhatIf* parameter with the **Install-ADDSForest** cmdlet in that instead of summarizing the changes that would occur during the installation process, this cmdlet actually tests whether those changes are possible given the current environment. -For more information on the scope of these prerequisite checks that the ADDSDeployment module performs when using this cmdlet see the section ADPrep and Prerequisite Checking Architecture in [AD DS Simplified Administration](https://go.microsoft.com/fwlink/?LinkID=237244). +The `Test-ADDSForestInstallation` cmdlet runs those prerequisite checks which would be performed if +you were to use the Install-ADDSForest cmdlet to install a new forest in Active Directory. It +differs from using the `-WhatIf` parameter with the `Install-ADDSForest` cmdlet in that instead of +summarizing the changes that would occur during the installation process, this cmdlet actually tests +whether those changes are possible given the current environment. + +For more information on the scope of these prerequisite checks that the ADDSDeployment module +performs when using this cmdlet see the section ADPrep and Prerequisite Checking Architecture in +[AD DS Simplified Administration](https://go.microsoft.com/fwlink/?LinkID=237244). ## EXAMPLES ### Example 1: Test the install of a forest to confirm if it is possible -``` -PS C:\> Test-ADDSForestInstallation -DomainName "corp.contoso.com" -NoRebootOnCompletion + +```powershell +Test-ADDSForestInstallation -DomainName "corp.contoso.com" -NoRebootOnCompletion ``` -This command runs the prerequisites for installing a new forest named corp.contoso.com and specifies not to reboot after the new forest is created. -The user is prompted to provide and confirm the Directory Services Restore Mode (DSRM) password. +This command runs the prerequisites for installing a new forest named corp.contoso.com and specifies +not to reboot after the new forest is created. The user is prompted to provide and confirm the +Directory Services Restore Mode (DSRM) password. ### Example 2: Test the install of a forest to confirm if it is possible -``` -PS C:\> Test-ADDSForestInstallation -DomainName "corp.contoso.com" -CreateDNSDelegation -DomainMode Win2008 -ForestMode Win2008R2 -DatabasePath "D:\NTDS" -SysvolPath "D:\SYSVOL" -LogPath "E:\Logs" + +```powershell +$HashArguments = @{ + CreateDNSDelegation = $true + DatabasePath = "D:\NTDS" + DomainMode = Win2008 + DomainName = "corp.contoso.com" + ForestMode = Win2008R2 + LogPath = "E:\Logs" + SysvolPath = "D:\SYSVOL" +} +Test-ADDSForestInstallation @HashArguments ``` -This command runs the prerequisites for installing a new forest that will create a DNS delegation in the contoso.com domain, set the domain functional level to Windows Server 2008 R2 and sets forest functional level to Windows Server 2008 R2. -The command also installs the Active Directory database and SYSVOL on the D: drive, installs the log files on the E: drive and has the server automatically restart after AD DS installation. -The user is prompted to provide and confirm the DSRM password. +This command runs the prerequisites for installing a new forest that will create a DNS delegation in +the contoso.com domain, set the domain functional level to Windows Server 2008 R2 and sets forest +functional level to Windows Server 2008 R2. The command also installs the Active Directory database +and SYSVOL on the D: drive, installs the log files on the E: drive and has the server automatically +restart after AD DS installation. The user is prompted to provide and confirm the DSRM password. ## PARAMETERS ### -CreateDnsDelegation -Indicates that the cmdlet creates a DNS delegation that references the new DNS server that you install along with the domain controller. -Valid for Active Directory-integrated DNS only. -The default is computed automatically based on the environment. + +Indicates that the cmdlet creates a DNS delegation that references the new DNS server that you +install along with the domain controller. Valid for Active Directory-integrated DNS only. The +default is computed automatically based on the environment. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -68,11 +91,13 @@ Accept wildcard characters: False ``` ### -DatabasePath -Specifies the fully qualified, non-Universal Naming Convention (UNC) path to a directory on a fixed disk of the local computer that contains the domain database, for example, C:\Windows\NTDS. -The default is %SYSTEMROOT%\NTDS. + +Specifies the fully qualified, non-Universal Naming Convention (UNC) path to a directory on a fixed +disk of the local computer that contains the domain database, for example, `C:\Windows\NTDS`. The +default is `%SYSTEMROOT%\NTDS`. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -84,11 +109,13 @@ Accept wildcard characters: False ``` ### -DnsDelegationCredential -Specifies the user name and password (account credentials) for creating DNS delegation. -The cmdlet will skip this parameter if the value for the *CreateDnsDelegation* parameter is either specified or computed to be $False. + +Specifies the user name and password (account credentials) for creating DNS delegation. The cmdlet +will skip this parameter if the value for the `-CreateDnsDelegation` parameter is either specified +or computed to be `$False`. ```yaml -Type: PSCredential +Type: System.Management.Automation.PSCredential Parameter Sets: (All) Aliases: @@ -100,9 +127,11 @@ Accept wildcard characters: False ``` ### -DomainMode -Specifies the domain functional level of the first domain in the creation of a new forest. -Supported values for this parameter can be either a valid integer or a corresponding enumerated string value. -For instance, to set the domain mode level to Windows Server 2008 R2, you can specify either a value of 4 or Win2008R2. + +Specifies the domain functional level of the first domain in the creation of a new forest. Supported +values for this parameter can be either a valid integer or a corresponding enumerated string value. +For instance, to set the domain mode level to Windows Server 2008 R2, you can specify either a value +of 4 or Win2008R2. The acceptable values for this parameter are: @@ -116,7 +145,7 @@ The domain functional level cannot be lower than the forest functional level, bu The default is automatically computed and set. ```yaml -Type: DomainMode +Type: System.DirectoryServices.ActiveDirectory.DomainMode Parameter Sets: (All) Aliases: Accepted values: Win2008, Win2008R2, Win2012, Win2012R2, WinThreshold, Default @@ -129,10 +158,11 @@ Accept wildcard characters: False ``` ### -DomainName + Specifies the fully qualified domain name (FQDN) for the root domain in the forest. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -144,19 +174,24 @@ Accept wildcard characters: False ``` ### -DomainNetbiosName -Specifies the NetBIOS name for the root domain in the new forest. -For NetBIOS names to be valid for use with this parameter they must be single label names of 15 characters or less. -If this parameter is set with a valid NetBIOS name value, then forest installation continues with the name specified. -If this parameter is not set, then the default is automatically computed from the value of the *DomainName* parameter. +Specifies the NetBIOS name for the root domain in the new forest. For NetBIOS names to be valid for +use with this parameter they must be single label names of 15 characters or less. + +If this parameter is set with a valid NetBIOS name value, then forest installation continues with +the name specified. If this parameter is not set, then the default is automatically computed from +the value of the `-DomainName` parameter. -For instance, if this parameter is not specified and a single-label prefix domain name of 15 characters or less is specified within the value of the *DomainName* parameter, then promotion continues with an automatically generated NetBIOS domain name. -For example, the prefix label corp within a full domain name value of corp.contoso.com would be a successful name choice. +For instance, if this parameter is not specified and a single-label prefix domain name of 15 +characters or less is specified within the value of the `-DomainName` parameter, then promotion +continues with an automatically generated NetBIOS domain name. For example, the prefix label corp +within a full domain name value of corp.contoso.com would be a successful name choice. -Note that if the name value given for this parameter is a name of 16 characters or more, then the forest installation fails. +Note that if the name value given for this parameter is a name of 16 characters or more, then the +forest installation fails. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -168,10 +203,11 @@ Accept wildcard characters: False ``` ### -Force + Forces the command to run without asking for user confirmation. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -183,9 +219,10 @@ Accept wildcard characters: False ``` ### -ForestMode -Specifies the forest functional level for the new forest. -Supported values for this parameter can be either a valid integer or a corresponding enumerated string value. -For example, to set the forest mode level to Windows Server 2008 R2, you can specify either a value of 4 or Win2008R2. + +Specifies the forest functional level for the new forest. Supported values for this parameter can be +either a valid integer or a corresponding enumerated string value. For example, to set the forest +mode level to Windows Server 2008 R2, you can specify either a value of 4 or Win2008R2. The acceptable values for this parameter are: @@ -195,11 +232,12 @@ The acceptable values for this parameter are: - Windows Server 2012: 5 or Win2012 - Windows Server 2012 R2: 6 or Win2012R2 -The default forest functional level in Windows Server is typically the same as the version you are running. -However, the default forest functional level in Windows Server 2008 R2 when you create a new forest is Windows Server 2003 or 2. +The default forest functional level in Windows Server is typically the same as the version you are +running. However, the default forest functional level in Windows Server 2008 R2 when you create a +new forest is Windows Server 2003 or 2. ```yaml -Type: ForestMode +Type: System.DirectoryServices.ActiveDirectory.ForestMode Parameter Sets: (All) Aliases: Accepted values: Win2008, Win2008R2, Win2012, Win2012R2, WinThreshold, Default @@ -212,11 +250,12 @@ Accept wildcard characters: False ``` ### -InstallDns -Indicates that the cmdlet installs and configures the DNS Server service for the new forest. -For forest installation, the default is $True. + +Indicates that the cmdlet installs and configures the DNS Server service for the new forest. For +forest installation, the default is $True. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -228,12 +267,13 @@ Accept wildcard characters: False ``` ### -LogPath -Specifies the fully qualified, non-UNC path to a directory on a fixed disk of the local computer where the log file for this operation is written. -For instance, C:\Logs. -The default log file path if no other path is specified with this parameter is %SYSTEMROOT%\NTDS. + +Specifies the fully qualified, non-UNC path to a directory on a fixed disk of the local computer +where the log file for this operation is written. For instance, `C:\Logs`. The default log file path +if no other path is specified with this parameter is `%SYSTEMROOT%\NTDS`. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -245,16 +285,20 @@ Accept wildcard characters: False ``` ### -NoDnsOnNetwork -Indicates that the DNS service is not available on the network. -This parameter is used only when the IP setting of the network adapter for this computer is not configured with the name of a DNS server for name resolution. -It indicates that a DNS server is installed on this computer for name resolution. -Otherwise, the IP settings of the network adapter must first be configured with the address of a DNS server. -Omitting this parameter indicates that the TCP/IP client settings of the network adapter on this server computer is used to contact a DNS server. -Therefore, if you are not specifying this parameter, ensure that TCP/IP client settings are first configured with a preferred DNS server address. +Indicates that the DNS service is not available on the network. This parameter is used only when the +IP setting of the network adapter for this computer is not configured with the name of a DNS server +for name resolution. It indicates that a DNS server is installed on this computer for name +resolution. Otherwise, the IP settings of the network adapter must first be configured with the +address of a DNS server. + +Omitting this parameter indicates that the TCP/IP client settings of the network adapter on this +server computer is used to contact a DNS server. Therefore, if you are not specifying this +parameter, ensure that TCP/IP client settings are first configured with a preferred DNS server +address. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -266,13 +310,17 @@ Accept wildcard characters: False ``` ### -NoRebootOnCompletion + Indicates that the cmdlet does not reboot the computer upon completion of the command. -Omitting this parameter indicates the computer is rebooted upon completion of the command, regardless of success or failure. -As a general rule, Microsoft support recommends that you not use this parameter except for testing or troubleshooting purposes because once configuration has completed the server will not function correctly as either a member server or a DC until it is rebooted. +Omitting this parameter indicates the computer is rebooted upon completion of the command, +regardless of success or failure. As a general rule, Microsoft support recommends that you not use +this parameter except for testing or troubleshooting purposes because once configuration has +completed the server will not function correctly as either a member server or a DC until it is +rebooted. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -284,18 +332,22 @@ Accept wildcard characters: False ``` ### -SafeModeAdministratorPassword -Specifies the password for the administrator account when the computer is started in Safe Mode or a variant of Safe Mode, such as Directory Services Restore Mode. -You must supply a password that meets the password complexity rules of the domain and the password cannot be blank. -If specified with a value, the value must be a secure string. + +Specifies the password for the administrator account when the computer is started in Safe Mode or a +variant of Safe Mode, such as Directory Services Restore Mode. You must supply a password that meets +the password complexity rules of the domain and the password cannot be blank. If specified with a +value, the value must be a secure string. If this parameter is not specified, the cmdlet prompts you to enter and confirm a masked password. -This is the preferred usage when running the cmdlet interactively. -If there are no other arguments specified with the cmdlet, you is prompted to enter a masked password for this parameter but no confirmation of the password entered is made. -This is not recommended as it could allow a mistyped password to be configured. -Another available advanced option is to use the **ConvertTo-SecureString** cmdlet and specify the password string inline as unmasked console input, which is also not a recommended security best practice in production deployments. +This is the preferred usage when running the cmdlet interactively. If there are no other arguments +specified with the cmdlet, you is prompted to enter a masked password for this parameter but no +confirmation of the password entered is made. This is not recommended as it could allow a mistyped +password to be configured. Another available advanced option is to use the +`ConvertTo-SecureString` cmdlet and specify the password string inline as unmasked console input, +which is also not a recommended security best practice in production deployments. ```yaml -Type: SecureString +Type: System.Security.SecureString Parameter Sets: (All) Aliases: @@ -307,11 +359,12 @@ Accept wildcard characters: False ``` ### -SkipAutoConfigureDns -Indicates that the cmdlet skips automatic configuration of DNS client settings, forwarders, and root hints. -This parameter is in effect only if the DNS Server service is already installed. + +Indicates that the cmdlet skips automatic configuration of DNS client settings, forwarders, and root +hints. This parameter is in effect only if the DNS Server service is already installed. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -323,12 +376,13 @@ Accept wildcard characters: False ``` ### -SysvolPath -Specifies the fully qualified, non-UNC path to a directory on a fixed disk of the local computer where the Sysvol file is written. -For example, C:\Logs\SYSVOL. -The default path if no other path is specified with this parameter is %SYSTEMROOT%\SYSVOL. + +Specifies the fully qualified, non-UNC path to a directory on a fixed disk of the local computer +where the Sysvol file is written. For example, `C:\Logs\SYSVOL`. The default path if no other path +is specified with this parameter is `%SYSTEMROOT%\SYSVOL`. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -340,7 +394,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -361,4 +419,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Install-ADDSDomainController](./Install-ADDSDomainController.md) [ConvertTo-SecureString](https://go.microsoft.com/fwlink/p/?LinkId=113291) - From 40021890f92c5273cfac2ee4e442aa9bcb35ddf7 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 15:17:36 -0400 Subject: [PATCH 620/965] Update docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md Co-authored-by: Mikey Lombardi (He/Him) --- .../addsdeployment/Test-ADDSForestInstallation.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md index 3a306ea6a4..6193a57dcb 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md @@ -28,12 +28,12 @@ Test-ADDSForestInstallation -DomainName ## DESCRIPTION The `Test-ADDSForestInstallation` cmdlet runs those prerequisite checks which would be performed if -you were to use the Install-ADDSForest cmdlet to install a new forest in Active Directory. It -differs from using the `-WhatIf` parameter with the `Install-ADDSForest` cmdlet in that instead of -summarizing the changes that would occur during the installation process, this cmdlet actually tests -whether those changes are possible given the current environment. +you were to use the `Install-ADDSForest` cmdlet to install a new forest in Active Directory. It +differs from using the **WhatIf** parameter with the `Install-ADDSForest` cmdlet in that instead of +summarizing the changes that would occur during the installation process, this cmdlet actually +tests whether those changes are possible given the current environment. -For more information on the scope of these prerequisite checks that the ADDSDeployment module +For more information on the scope of these prerequisite checks that the **ADDSDeployment** module performs when using this cmdlet see the section ADPrep and Prerequisite Checking Architecture in [AD DS Simplified Administration](https://go.microsoft.com/fwlink/?LinkID=237244). From 6ce1aab9d463300ffe3a660cac5a3e357a0e99fb Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 15:17:48 -0400 Subject: [PATCH 621/965] Update docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md Co-authored-by: Mikey Lombardi (He/Him) --- .../addsdeployment/Test-ADDSForestInstallation.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md index 6193a57dcb..d5e869fd72 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md @@ -45,9 +45,9 @@ performs when using this cmdlet see the section ADPrep and Prerequisite Checking Test-ADDSForestInstallation -DomainName "corp.contoso.com" -NoRebootOnCompletion ``` -This command runs the prerequisites for installing a new forest named corp.contoso.com and specifies -not to reboot after the new forest is created. The user is prompted to provide and confirm the -Directory Services Restore Mode (DSRM) password. +This command runs the prerequisites for installing a new forest named `corp.contoso.com` and +specifies not to reboot after the new forest is created. The user is prompted to provide and +confirm the Directory Services Restore Mode (DSRM) password. ### Example 2: Test the install of a forest to confirm if it is possible From d00c77e93b367217ba5571e596b2060646ad5f41 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 15:18:02 -0400 Subject: [PATCH 622/965] Update docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md Co-authored-by: Mikey Lombardi (He/Him) --- .../addsdeployment/Test-ADDSForestInstallation.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md index d5e869fd72..c28e1d8fac 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md @@ -64,11 +64,12 @@ $HashArguments = @{ Test-ADDSForestInstallation @HashArguments ``` -This command runs the prerequisites for installing a new forest that will create a DNS delegation in -the contoso.com domain, set the domain functional level to Windows Server 2008 R2 and sets forest -functional level to Windows Server 2008 R2. The command also installs the Active Directory database -and SYSVOL on the D: drive, installs the log files on the E: drive and has the server automatically -restart after AD DS installation. The user is prompted to provide and confirm the DSRM password. +This command runs the prerequisites for installing a new forest that will create a DNS delegation +in the `contoso.com` domain, set the domain functional level to Windows Server 2008 R2 and sets +forest functional level to Windows Server 2008 R2. The command also installs the Active Directory +database and SYSVOL on the `D:` drive, installs the log files on the `E:` drive and has the server +automatically restart after AD DS installation. The user is prompted to provide and confirm the +DSRM password. ## PARAMETERS From 0e3efbb1eef648c7a3cbe0dac32da53a20f61f27 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 15:18:12 -0400 Subject: [PATCH 623/965] Update docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md Co-authored-by: Mikey Lombardi (He/Him) --- .../addsdeployment/Test-ADDSForestInstallation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md index c28e1d8fac..0f136b8e72 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md @@ -112,8 +112,8 @@ Accept wildcard characters: False ### -DnsDelegationCredential Specifies the user name and password (account credentials) for creating DNS delegation. The cmdlet -will skip this parameter if the value for the `-CreateDnsDelegation` parameter is either specified -or computed to be `$False`. +will skip this parameter if the value for the **CreateDnsDelegation** parameter is either specified +or computed to be `$false`. ```yaml Type: System.Management.Automation.PSCredential From ca7cfa8c3be19a33f1c8470445a2b229d8e1d2f6 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 15:18:18 -0400 Subject: [PATCH 624/965] Update docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md Co-authored-by: Mikey Lombardi (He/Him) --- .../addsdeployment/Test-ADDSForestInstallation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md index 0f136b8e72..4b2ba1d970 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md @@ -132,7 +132,7 @@ Accept wildcard characters: False Specifies the domain functional level of the first domain in the creation of a new forest. Supported values for this parameter can be either a valid integer or a corresponding enumerated string value. For instance, to set the domain mode level to Windows Server 2008 R2, you can specify either a value -of 4 or Win2008R2. +of `4` or `Win2008R2`. The acceptable values for this parameter are: From 504d2e7be2fbd302ac107568a420109280902e8b Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 15:18:26 -0400 Subject: [PATCH 625/965] Update docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md Co-authored-by: Mikey Lombardi (He/Him) --- .../addsdeployment/Test-ADDSForestInstallation.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md index 4b2ba1d970..2ea8cf363a 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md @@ -184,9 +184,9 @@ the name specified. If this parameter is not set, then the default is automatica the value of the `-DomainName` parameter. For instance, if this parameter is not specified and a single-label prefix domain name of 15 -characters or less is specified within the value of the `-DomainName` parameter, then promotion -continues with an automatically generated NetBIOS domain name. For example, the prefix label corp -within a full domain name value of corp.contoso.com would be a successful name choice. +characters or less is specified within the value of the **DomainName** parameter, then promotion +continues with an automatically generated NetBIOS domain name. For example, the prefix label `corp` +within a full domain name value of `corp.contoso.com` would be a successful name choice. Note that if the name value given for this parameter is a name of 16 characters or more, then the forest installation fails. From c808f83403d0837fd76e07afef77d65cc633dd01 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 15:18:31 -0400 Subject: [PATCH 626/965] Update docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md Co-authored-by: Mikey Lombardi (He/Him) --- .../addsdeployment/Test-ADDSForestInstallation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md index 2ea8cf363a..56478c76a6 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md @@ -223,7 +223,7 @@ Accept wildcard characters: False Specifies the forest functional level for the new forest. Supported values for this parameter can be either a valid integer or a corresponding enumerated string value. For example, to set the forest -mode level to Windows Server 2008 R2, you can specify either a value of 4 or Win2008R2. +mode level to Windows Server 2008 R2, you can specify either a value of `4` or `Win2008R2`. The acceptable values for this parameter are: From 7a2134dfe5ff5f3eed229ae2076b615c14552145 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 15:18:37 -0400 Subject: [PATCH 627/965] Update docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md Co-authored-by: Mikey Lombardi (He/Him) --- .../addsdeployment/Test-ADDSForestInstallation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md index 56478c76a6..ca18358847 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md @@ -230,8 +230,8 @@ The acceptable values for this parameter are: - Windows Server 2003: 2 or Win2003 - Windows Server 2008: 3 or Win2008 - Windows Server 2008 R2: 4 or Win2008R2 -- Windows Server 2012: 5 or Win2012 -- Windows Server 2012 R2: 6 or Win2012R2 +- Windows Server 2012: `5` or `Win2012` +- Windows Server 2012 R2: `6` or `Win2012R2` The default forest functional level in Windows Server is typically the same as the version you are running. However, the default forest functional level in Windows Server 2008 R2 when you create a From 57590236164aeb82a0946649b8b7526446c40aa6 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 15:18:42 -0400 Subject: [PATCH 628/965] Update docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md Co-authored-by: Mikey Lombardi (He/Him) --- .../addsdeployment/Test-ADDSForestInstallation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md index ca18358847..29faf45079 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md @@ -235,7 +235,7 @@ The acceptable values for this parameter are: The default forest functional level in Windows Server is typically the same as the version you are running. However, the default forest functional level in Windows Server 2008 R2 when you create a -new forest is Windows Server 2003 or 2. +new forest is Windows Server 2003 or `2`. ```yaml Type: System.DirectoryServices.ActiveDirectory.ForestMode From a2c0661f8d81a582d55a9529e341fe69159e165f Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 15:18:47 -0400 Subject: [PATCH 629/965] Update docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md Co-authored-by: Mikey Lombardi (He/Him) --- .../addsdeployment/Test-ADDSForestInstallation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md index 29faf45079..e25efc88c2 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md @@ -253,7 +253,7 @@ Accept wildcard characters: False ### -InstallDns Indicates that the cmdlet installs and configures the DNS Server service for the new forest. For -forest installation, the default is $True. +forest installation, the default is `$true`. ```yaml Type: System.Management.Automation.SwitchParameter From 9d2cd09fc4a887dffc02d2ea62508091531e7167 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 15:18:58 -0400 Subject: [PATCH 630/965] Update docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md Co-authored-by: Mikey Lombardi (He/Him) --- .../addsdeployment/Test-ADDSForestInstallation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md index e25efc88c2..1fdf891cc9 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md @@ -181,7 +181,7 @@ use with this parameter they must be single label names of 15 characters or less If this parameter is set with a valid NetBIOS name value, then forest installation continues with the name specified. If this parameter is not set, then the default is automatically computed from -the value of the `-DomainName` parameter. +the value of the **DomainName** parameter. For instance, if this parameter is not specified and a single-label prefix domain name of 15 characters or less is specified within the value of the **DomainName** parameter, then promotion From b0f0e68960e232e52e1a34afe883a05291a4c356 Mon Sep 17 00:00:00 2001 From: "Mikey Lombardi (He/Him)" Date: Tue, 2 May 2023 09:05:26 -0500 Subject: [PATCH 631/965] Remove extra newline after synopsis --- .../addsdeployment/Test-ADDSForestInstallation.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md index 1fdf891cc9..49be4db6df 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md @@ -11,7 +11,6 @@ title: Test-ADDSForestInstallation # Test-ADDSForestInstallation ## SYNOPSIS - Runs the prerequisites for installing a new forest in Active Directory. ## SYNTAX From e7c0dc20b826f8fab6e41d8f32b9b121edd10d7b Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Sat, 29 Apr 2023 19:24:43 -0400 Subject: [PATCH 632/965] Style guide fixes --- ...ReadOnlyDomainControllerAccountCreation.md | 115 +++++++++++------- 1 file changed, 72 insertions(+), 43 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSReadOnlyDomainControllerAccountCreation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSReadOnlyDomainControllerAccountCreation.md index 3a8c7df17a..a66518c68b 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSReadOnlyDomainControllerAccountCreation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSReadOnlyDomainControllerAccountCreation.md @@ -10,40 +10,53 @@ title: Test-ADDSReadOnlyDomainControllerAccountCreation # Test-ADDSReadOnlyDomainControllerAccountCreation -## SYNOPSIS Runs the prerequisites for adding a RODC account. ## SYNTAX ``` -Test-ADDSReadOnlyDomainControllerAccountCreation -DomainControllerAccountName -DomainName - -SiteName [-AllowPasswordReplicationAccountName ] [-Credential ] - [-DelegatedAdministratorAccountName ] [-DenyPasswordReplicationAccountName ] - [-NoGlobalCatalog] [-InstallDns] [-ReplicationSourceDC ] [-Force] [] +Test-ADDSReadOnlyDomainControllerAccountCreation -DomainControllerAccountName + -DomainName -SiteName [-AllowPasswordReplicationAccountName ] + [-Credential ] [-DelegatedAdministratorAccountName ] + [-DenyPasswordReplicationAccountName ] [-NoGlobalCatalog] [-InstallDns] + [-ReplicationSourceDC ] [-Force] [] ``` ## DESCRIPTION -The **Test-ADDSReadOnlyDomainControllerAccountCreation** cmdlet runs the prerequisite checks which would be performed if you were to add a read-only domain controller (RODC) account in Active Directory using the Add-ADDSReadOnlyDomainControllerAccount cmdlet. -It differs from using the *WhatIf* parameter with the **Add-ADDSReadOnlyDomainControllerAccount** cmdlet in that instead of summarizing the changes that would occur during the account creation process, this cmdlet actually tests whether those changes are possible given the current environment. + +The `Test-ADDSReadOnlyDomainControllerAccountCreation` cmdlet runs the prerequisite checks which +would be performed if you were to add a read-only domain controller (RODC) account in Active +Directory using the Add-ADDSReadOnlyDomainControllerAccount cmdlet. It differs from using the +`-WhatIf` parameter with the `Add-ADDSReadOnlyDomainControllerAccount` cmdlet in that instead of +summarizing the changes that would occur during the account creation process, this cmdlet actually +tests whether those changes are possible given the current environment. ## EXAMPLES ### Example 1: Test adding an RODC account to confirm it is possible -``` -PS C:\> Test-ADDSReadOnlyDomainControllerAccountCreation -DomainControllerAccountName RODC1 -DomainName "corp.contoso.com" -SiteName "NorthAmerica" + +```powershell +$HashArguments = @{ + DomainControllerAccountName = RODC1 + DomainName = "corp.contoso.com" + SiteName = "NorthAmerica" +} +Test-ADDSReadOnlyDomainControllerAccountCreation @HashArguments ``` -This command runs the prerequisites for adding an RODC account to the corp.contoso.com domain that would use the North America site as the source site for the replication source domain controller. +This command runs the prerequisites for adding an RODC account to the corp.contoso.com domain that +would use the North America site as the source site for the replication source domain controller. ## PARAMETERS ### -AllowPasswordReplicationAccountName -Specifies the names of user accounts, group accounts, and computer accounts whose passwords can be replicated to this RODC. -Use None if you want to keep the value empty. -By default, only the Allowed RODC Password Replication Group is allowed, and it is originally created empty. + +Specifies the names of user accounts, group accounts, and computer accounts whose passwords can be +replicated to this RODC. Use None if you want to keep the value empty. By default, only the Allowed +RODC Password Replication Group is allowed, and it is originally created empty. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: (All) Aliases: @@ -55,11 +68,12 @@ Accept wildcard characters: False ``` ### -Credential -Specifies the user name and password that corresponds to the account used to install the domain controller. -Use the **Get-Credential** cmdlet to prompt the user to supply a password. + +Specifies the user name and password that corresponds to the account used to install the domain +controller. Use the `Get-Credential` cmdlet to prompt the user to supply a password. ```yaml -Type: PSCredential +Type: System.Management.Automation.PSCredential Parameter Sets: (All) Aliases: @@ -71,10 +85,11 @@ Accept wildcard characters: False ``` ### -DelegatedAdministratorAccountName + Specifies the name of the user or group that installs and administer the RODC. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -86,13 +101,17 @@ Accept wildcard characters: False ``` ### -DenyPasswordReplicationAccountName -Specifies the names of user accounts, group accounts, and computer accounts whose passwords are not to be replicated to this RODC. -Use None if you do not want to deny the replication of credentials of any users or computers. -By default, Administrators, Server Operators, Backup Operators, Account Operators, and the Denied RODC Password Replication Group are denied. -By default, the Denied RODC Password Replication Group includes Cert Publishers, Domain Admins, Enterprise Admins, Enterprise Domain Controllers, Enterprise Read-Only Domain Controllers, Group Policy Creator Owners, the krbtgt account, and Schema Admins. + +Specifies the names of user accounts, group accounts, and computer accounts whose passwords are not +to be replicated to this RODC. Use None if you do not want to deny the replication of credentials of +any users or computers. By default, Administrators, Server Operators, Backup Operators, Account +Operators, and the Denied RODC Password Replication Group are denied. By default, the Denied RODC +Password Replication Group includes Cert Publishers, Domain Admins, Enterprise Admins, Enterprise +Domain Controllers, Enterprise Read-Only Domain Controllers, Group Policy Creator Owners, the krbtgt +account, and Schema Admins. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: (All) Aliases: @@ -104,10 +123,11 @@ Accept wildcard characters: False ``` ### -DomainControllerAccountName + Specifies the name of the RODC account that this cmdlet creates. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -119,12 +139,12 @@ Accept wildcard characters: False ``` ### -DomainName -Specifies the domain name for the user name for the operation. -This parameter is required. -You should specify the forest where you plan to install the domain controller or create an RODC account. + +Specifies the domain name for the user name for the operation. This parameter is required. You +should specify the forest where you plan to install the domain controller or create an RODC account. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -136,10 +156,11 @@ Accept wildcard characters: False ``` ### -Force + Forces the command to run without asking for user confirmation. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -151,11 +172,12 @@ Accept wildcard characters: False ``` ### -InstallDns -Indicates that the cmdlet installs the DNS Server service. -The default is automatically computed based on the environment. + +Indicates that the cmdlet installs the DNS Server service. The default is automatically computed +based on the environment. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -167,10 +189,11 @@ Accept wildcard characters: False ``` ### -NoGlobalCatalog + Indicates that the RODC is not a global catalog server. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -182,10 +205,12 @@ Accept wildcard characters: False ``` ### -ReplicationSourceDC -Specifies the name of the fully writable domain controller to use in the creation of the RODC account in Active Directory. + +Specifies the name of the fully writable domain controller to use in the creation of the RODC +account in Active Directory. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -197,14 +222,15 @@ Accept wildcard characters: False ``` ### -SiteName -Specifies the name of an existing site where you can place the new domain controller. -The default value depends on the type of installation. -For a new forest, the default is Default-First-Site-Name. -For all other installations, the default is the site that is associated with the subnet that includes the IP address of this server. -If no such site exists, the default is the site of the replication source domain controller. + +Specifies the name of an existing site where you can place the new domain controller. The default +value depends on the type of installation. For a new forest, the default is Default-First-Site-Name. +For all other installations, the default is the site that is associated with the subnet that +includes the IP address of this server. If no such site exists, the default is the site of the +replication source domain controller. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -216,7 +242,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -229,4 +259,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Add-ADDSReadOnlyDomainControllerAccount](./Add-ADDSReadOnlyDomainControllerAccount.md) [Get-Credential](https://go.microsoft.com/fwlink/?LinkID=293936) - From 644613b416c8eb85e4598d4c8783b8236a16c222 Mon Sep 17 00:00:00 2001 From: Sean Wheeler Date: Mon, 1 May 2023 10:39:09 -0500 Subject: [PATCH 633/965] Update Test-ADDSReadOnlyDomainControllerAccountCreation.md --- .../Test-ADDSReadOnlyDomainControllerAccountCreation.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSReadOnlyDomainControllerAccountCreation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSReadOnlyDomainControllerAccountCreation.md index a66518c68b..f9f4c349e3 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSReadOnlyDomainControllerAccountCreation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSReadOnlyDomainControllerAccountCreation.md @@ -10,6 +10,7 @@ title: Test-ADDSReadOnlyDomainControllerAccountCreation # Test-ADDSReadOnlyDomainControllerAccountCreation +## SYNOPSIS Runs the prerequisites for adding a RODC account. ## SYNTAX From 69bb6f13b83f566473410bf79096997850fd9592 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 15:20:26 -0400 Subject: [PATCH 634/965] Update docset/winserver2022-ps/addsdeployment/Test-ADDSReadOnlyDomainControllerAccountCreation.md Co-authored-by: Mikey Lombardi (He/Him) --- .../Test-ADDSReadOnlyDomainControllerAccountCreation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSReadOnlyDomainControllerAccountCreation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSReadOnlyDomainControllerAccountCreation.md index f9f4c349e3..75fe171464 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSReadOnlyDomainControllerAccountCreation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSReadOnlyDomainControllerAccountCreation.md @@ -27,8 +27,8 @@ Test-ADDSReadOnlyDomainControllerAccountCreation -DomainControllerAccountName Date: Mon, 1 May 2023 15:20:32 -0400 Subject: [PATCH 635/965] Update docset/winserver2022-ps/addsdeployment/Test-ADDSReadOnlyDomainControllerAccountCreation.md Co-authored-by: Mikey Lombardi (He/Him) --- .../Test-ADDSReadOnlyDomainControllerAccountCreation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSReadOnlyDomainControllerAccountCreation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSReadOnlyDomainControllerAccountCreation.md index 75fe171464..c35bf56416 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSReadOnlyDomainControllerAccountCreation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSReadOnlyDomainControllerAccountCreation.md @@ -45,7 +45,7 @@ $HashArguments = @{ Test-ADDSReadOnlyDomainControllerAccountCreation @HashArguments ``` -This command runs the prerequisites for adding an RODC account to the corp.contoso.com domain that +This command runs the prerequisites for adding an RODC account to the `corp.contoso.com` domain that would use the North America site as the source site for the replication source domain controller. ## PARAMETERS From ca8f6ce1d354f790ab57e597ddf227c436d11aab Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 15:20:37 -0400 Subject: [PATCH 636/965] Update docset/winserver2022-ps/addsdeployment/Test-ADDSReadOnlyDomainControllerAccountCreation.md Co-authored-by: Mikey Lombardi (He/Him) --- .../Test-ADDSReadOnlyDomainControllerAccountCreation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSReadOnlyDomainControllerAccountCreation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSReadOnlyDomainControllerAccountCreation.md index c35bf56416..8adb92d1d2 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSReadOnlyDomainControllerAccountCreation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSReadOnlyDomainControllerAccountCreation.md @@ -53,8 +53,8 @@ would use the North America site as the source site for the replication source d ### -AllowPasswordReplicationAccountName Specifies the names of user accounts, group accounts, and computer accounts whose passwords can be -replicated to this RODC. Use None if you want to keep the value empty. By default, only the Allowed -RODC Password Replication Group is allowed, and it is originally created empty. +replicated to this RODC. Use `None` if you want to keep the value empty. By default, only the +Allowed RODC Password Replication Group is allowed, and it is originally created empty. ```yaml Type: System.String[] From 2761f36880af39caa9ad71a88fd867e5aec0b12b Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 15:20:43 -0400 Subject: [PATCH 637/965] Update docset/winserver2022-ps/addsdeployment/Test-ADDSReadOnlyDomainControllerAccountCreation.md Co-authored-by: Mikey Lombardi (He/Him) --- .../Test-ADDSReadOnlyDomainControllerAccountCreation.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSReadOnlyDomainControllerAccountCreation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSReadOnlyDomainControllerAccountCreation.md index 8adb92d1d2..c7a2154ff4 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSReadOnlyDomainControllerAccountCreation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSReadOnlyDomainControllerAccountCreation.md @@ -104,12 +104,12 @@ Accept wildcard characters: False ### -DenyPasswordReplicationAccountName Specifies the names of user accounts, group accounts, and computer accounts whose passwords are not -to be replicated to this RODC. Use None if you do not want to deny the replication of credentials of -any users or computers. By default, Administrators, Server Operators, Backup Operators, Account +to be replicated to this RODC. Use `None` if you do not want to deny the replication of credentials +of any users or computers. By default, Administrators, Server Operators, Backup Operators, Account Operators, and the Denied RODC Password Replication Group are denied. By default, the Denied RODC Password Replication Group includes Cert Publishers, Domain Admins, Enterprise Admins, Enterprise -Domain Controllers, Enterprise Read-Only Domain Controllers, Group Policy Creator Owners, the krbtgt -account, and Schema Admins. +Domain Controllers, Enterprise Read-Only Domain Controllers, Group Policy Creator Owners, the +krbtgt account, and Schema Admins. ```yaml Type: System.String[] From 2eb06afff2bf9532e0f6de33132802dbea1fe9d7 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 15:20:48 -0400 Subject: [PATCH 638/965] Update docset/winserver2022-ps/addsdeployment/Test-ADDSReadOnlyDomainControllerAccountCreation.md Co-authored-by: Mikey Lombardi (He/Him) --- .../Test-ADDSReadOnlyDomainControllerAccountCreation.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSReadOnlyDomainControllerAccountCreation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSReadOnlyDomainControllerAccountCreation.md index c7a2154ff4..52adeead0d 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSReadOnlyDomainControllerAccountCreation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSReadOnlyDomainControllerAccountCreation.md @@ -225,10 +225,10 @@ Accept wildcard characters: False ### -SiteName Specifies the name of an existing site where you can place the new domain controller. The default -value depends on the type of installation. For a new forest, the default is Default-First-Site-Name. -For all other installations, the default is the site that is associated with the subnet that -includes the IP address of this server. If no such site exists, the default is the site of the -replication source domain controller. +value depends on the type of installation. For a new forest, the default is +`Default-First-Site-Name`. For all other installations, the default is the site that is associated +with the subnet that includes the IP address of this server. If no such site exists, the default is +the site of the replication source domain controller. ```yaml Type: System.String From 8269dfb5e990c66313037f2d2dc642d224bdbb6d Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Sat, 29 Apr 2023 19:36:02 -0400 Subject: [PATCH 639/965] Style guide fixes --- .../Uninstall-ADDSDomainController.md | 183 +++++++++++------- 1 file changed, 116 insertions(+), 67 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Uninstall-ADDSDomainController.md b/docset/winserver2022-ps/addsdeployment/Uninstall-ADDSDomainController.md index ae4074f990..4ef7f2a707 100644 --- a/docset/winserver2022-ps/addsdeployment/Uninstall-ADDSDomainController.md +++ b/docset/winserver2022-ps/addsdeployment/Uninstall-ADDSDomainController.md @@ -11,46 +11,55 @@ title: Uninstall-ADDSDomainController # Uninstall-ADDSDomainController ## SYNOPSIS + Uninstalls a domain controller in Active Directory. ## SYNTAX ### ADDSDomainControllerUninstall (Default) + ``` -Uninstall-ADDSDomainController [-SkipPreChecks] [-LocalAdministratorPassword ] - [-Credential ] [-DemoteOperationMasterRole] [-DnsDelegationRemovalCredential ] - [-IgnoreLastDCInDomainMismatch] [-IgnoreLastDnsServerForZone] [-LastDomainControllerInDomain] - [-NoRebootOnCompletion] [-RemoveApplicationPartitions] [-RemoveDnsDelegation] [-RetainDCMetadata] [-Force] - [-WhatIf] [-Confirm] [] +Uninstall-ADDSDomainController [-SkipPreChecks] + [-LocalAdministratorPassword ] [-Credential ] + [-DemoteOperationMasterRole] [-DnsDelegationRemovalCredential ] + [-IgnoreLastDCInDomainMismatch] [-IgnoreLastDnsServerForZone] + [-LastDomainControllerInDomain] [-NoRebootOnCompletion] [-RemoveApplicationPartitions] + [-RemoveDnsDelegation] [-RetainDCMetadata] [-Force] [-WhatIf] [-Confirm] + [] ``` ### ADDSDomainControllerUninstallForceRemoval + ``` -Uninstall-ADDSDomainController [-SkipPreChecks] [-LocalAdministratorPassword ] - [-Credential ] [-DemoteOperationMasterRole] [-ForceRemoval] [-NoRebootOnCompletion] [-Force] - [-WhatIf] [-Confirm] [] +Uninstall-ADDSDomainController [-SkipPreChecks] + [-LocalAdministratorPassword ] + [-Credential ] [-DemoteOperationMasterRole] [-ForceRemoval] + [-NoRebootOnCompletion] [-Force] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Uninstall-ADDSDomainController** cmdlet uninstalls a domain controller in Active Directory. + +The `Uninstall-ADDSDomainController` cmdlet uninstalls a domain controller in Active Directory. ## EXAMPLES ### Example 1: Remove AD DS from a domain controller -``` -PS C:\> Uninstall-ADDSDomainController + +```powershell +Uninstall-ADDSDomainController ``` -This command removes AD DS from an additional domain controller in a domain. -The user is prompted to set and confirm the local Administrator password prior to completing the removal process. +This command removes AD DS from an additional domain controller in a domain. The user is prompted to +set and confirm the local Administrator password prior to completing the removal process. ## PARAMETERS ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -62,12 +71,14 @@ Accept wildcard characters: False ``` ### -Credential -Specifies the user name and password that corresponds to the account used to install the domain controller. -Use the **Get-Credential** cmdlet to prompt the user to supply a password in place of an existing *PSCredential* type. -This causes Windows PowerShell to prompt the user to enter credentials using the Windows security login UI. + +Specifies the user name and password that corresponds to the account used to install the domain +controller. Use the `Get-Credential` cmdlet to prompt the user to supply a password in place of an +existing _System.Management.Automation.PSCredential_ type. This causes Windows PowerShell to prompt +the user to enter credentials using the Windows security login UI. ```yaml -Type: PSCredential +Type: System.Management.Automation.PSCredential Parameter Sets: (All) Aliases: @@ -79,10 +90,12 @@ Accept wildcard characters: False ``` ### -DemoteOperationMasterRole -Indicates that forced demotion should continue even if an operations master role is discovered on domain controller from which AD DS is being removed. + +Indicates that forced demotion should continue even if an operations master role is discovered on +domain controller from which AD DS is being removed. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -94,12 +107,14 @@ Accept wildcard characters: False ``` ### -DnsDelegationRemovalCredential -Specifies the account credentials to use when you create or remove the DNS delegation. -If you do not specify a value, the account credentials that you specify for the AD DS installation or removal are used to remove the DNS delegation. -As an alternative, you can specify the asterisk (*) to prompt the user to enter credentials. + +Specifies the account credentials to use when you create or remove the DNS delegation. If you do not +specify a value, the account credentials that you specify for the AD DS installation or removal are +used to remove the DNS delegation. As an alternative, you can specify the asterisk (*) to prompt the +user to enter credentials. ```yaml -Type: PSCredential +Type: System.Management.Automation.PSCredential Parameter Sets: ADDSDomainControllerUninstall Aliases: @@ -111,10 +126,11 @@ Accept wildcard characters: False ``` ### -Force + Forces the command to run without asking for user confirmation. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -126,11 +142,13 @@ Accept wildcard characters: False ``` ### -ForceRemoval -Indicates that the cmdlet forces the removal of a domain controller. -Use this parameter to force the uninstall of AD DS if you need to remove the domain controller and do not have connectivity to other domain controllers within the domain topology. + +Indicates that the cmdlet forces the removal of a domain controller. Use this parameter to force the +uninstall of AD DS if you need to remove the domain controller and do not have connectivity to other +domain controllers within the domain topology. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: ADDSDomainControllerUninstallForceRemoval Aliases: @@ -142,12 +160,19 @@ Accept wildcard characters: False ``` ### -IgnoreLastDCInDomainMismatch -Indicates that Windows PowerShell ignores any inconsistency that it detects with the value that you specify for the *LastDomainControllerInDomain* parameter. -For instance, if you specify *LastDomainControllerInDomain* but Windows PowerShell detects that there is actually another active domain controller in the domain, you can specify the *IgnoreLastDCInDomainMismatch* parameter to have Windows PowerShell continue the removal of AD DS from the domain controller despite the inconsistency that it has detected. -Similarly, if you do not specify *LastDomainControllerInDomain* but Windows PowerShell cannot detect that another domain controller is in the domain, you can specify *IgnoreLastDCInDomainMismatch* to have Windows PowerShell continue to remove AD DS from the domain controller. + +Indicates that Windows PowerShell ignores any inconsistency that it detects with the value that you +specify for the `-LastDomainControllerInDomain` parameter. For instance, if you specify +`-LastDomainControllerInDomain` but Windows PowerShell detects that there is actually another active +domain controller in the domain, you can specify the `-IgnoreLastDCInDomainMismatch` parameter to +have Windows PowerShell continue the removal of AD DS from the domain controller despite the +inconsistency that it has detected. Similarly, if you do not specify `-LastDomainControllerInDomain` +but Windows PowerShell cannot detect that another domain controller is in the domain, you can +specify `-IgnoreLastDCInDomainMismatch` to have Windows PowerShell continue to remove AD DS from the +domain controller. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: ADDSDomainControllerUninstall Aliases: @@ -159,10 +184,12 @@ Accept wildcard characters: False ``` ### -IgnoreLastDnsServerForZone -Indicates that the cmdlet continues the removal of AD DS despite the fact that the domain controller is the last DNS server for one or more of the Active Directory-integrated DNS zones that it hosts. + +Indicates that the cmdlet continues the removal of AD DS despite the fact that the domain controller +is the last DNS server for one or more of the Active Directory-integrated DNS zones that it hosts. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: ADDSDomainControllerUninstall Aliases: @@ -174,10 +201,12 @@ Accept wildcard characters: False ``` ### -LastDomainControllerInDomain -Indicates that the computer from which AD DS is being removed is the last domain controller in the domain. + +Indicates that the computer from which AD DS is being removed is the last domain controller in the +domain. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: ADDSDomainControllerUninstall Aliases: @@ -189,20 +218,24 @@ Accept wildcard characters: False ``` ### -LocalAdministratorPassword -Specifies a local administrator account password when AD DS is removed from a domain controller. -In earlier releases, where uninstall of AD DS was done using Dcpromo.exe for demotion, the default was to allow an empty password for this setting. -In Windows PowerShell, the ADDS Deployment module requires that a non-empty password string value be assigned. -If a value is not provided for this parameter, you are prompted to enter a value for the password at the Windows PowerShell prompt. -The password value must be a secure string. + +Specifies a local administrator account password when AD DS is removed from a domain controller. In +earlier releases, where uninstall of AD DS was done using `Dcpromo.exe` for demotion, the default +was to allow an empty password for this setting. In Windows PowerShell, the ADDS Deployment module +requires that a non-empty password string value be assigned. If a value is not provided for this +parameter, you are prompted to enter a value for the password at the Windows PowerShell prompt. The +password value must be a secure string. If this parameter is not specified, the cmdlet prompts you to enter and confirm a masked password. -This is the preferred usage when running the cmdlet interactively. -If additionally there are no other arguments specified with the cmdlet, you are prompted to enter a masked password for this parameter but no confirmation of the password entered is made. -This is not recommended as it could allow a mistyped password to be configured. -Another available advanced option is to use the **ConvertTo-SecureString** cmdlet and specify the password string inline as unmasked console input, which is also not a recommended security best practice in production deployments. +This is the preferred usage when running the cmdlet interactively. If additionally there are no +other arguments specified with the cmdlet, you are prompted to enter a masked password for this +parameter but no confirmation of the password entered is made. This is not recommended as it could +allow a mistyped password to be configured. Another available advanced option is to use the +`ConvertTo-SecureString` cmdlet and specify the password string inline as unmasked console input, +which is also not a recommended security best practice in production deployments. ```yaml -Type: SecureString +Type: System.Security.SecureString Parameter Sets: (All) Aliases: @@ -214,12 +247,15 @@ Accept wildcard characters: False ``` ### -NoRebootOnCompletion -Indicates that the cmdlet restarts the computer upon completion, regardless of success. -By default, reboot upon completion occurs when this cmdlet is used and this parameter is omitted. -As a general rule, Microsoft support recommends that you not use this parameter except for testing or troubleshooting purposes because once configuration has completed the server will not function correctly as either a member server or a DC until it is rebooted. + +Indicates that the cmdlet restarts the computer upon completion, regardless of success. By default, +reboot upon completion occurs when this cmdlet is used and this parameter is omitted. As a general +rule, Microsoft support recommends that you not use this parameter except for testing or +troubleshooting purposes because once configuration has completed the server will not function +correctly as either a member server or a DC until it is rebooted. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -231,10 +267,12 @@ Accept wildcard characters: False ``` ### -RemoveApplicationPartitions -Indicates that this cmdlet removes application partitions during the removal of AD DS from a domain controller. + +Indicates that this cmdlet removes application partitions during the removal of AD DS from a domain +controller. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: ADDSDomainControllerUninstall Aliases: @@ -247,11 +285,13 @@ Accept wildcard characters: False ### -RemoveDnsDelegation -Specifies whether to preserve DNS delegation that point to this DNS server from the parent DNS Zone. If you use this parameter, DNS delegations that point to this server from the parent DNS zone will not be retained after uninstallation of the domain controller. -This setting corresponds to the earlier Dcpromo.exe parameter default of /RemoveDNSDelegation:Yes. +Specifies whether to preserve DNS delegation that point to this DNS server from the parent DNS Zone. +If you use this parameter, DNS delegations that point to this server from the parent DNS zone will +not be retained after uninstallation of the domain controller. This setting corresponds to the +earlier `Dcpromo.exe` parameter default of `/RemoveDNSDelegation:Yes`. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: ADDSDomainControllerUninstall Aliases: @@ -263,10 +303,12 @@ Accept wildcard characters: False ``` ### -RetainDCMetadata -Indicates that metadata from the domain controller should be preserved after uninstallation is completed. + +Indicates that metadata from the domain controller should be preserved after uninstallation is +completed. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: ADDSDomainControllerUninstall Aliases: @@ -278,13 +320,17 @@ Accept wildcard characters: False ``` ### -SkipPreChecks -Indicates that only a base set of validations is performed. -This behavior is equivalent to the validations that were performed when using Dcpromo.exe in earlier versions of Windows Server to add a new domain controller. -When this switch parameter is set, it specifies that additional preliminary checks should be bypassed. -For more information on the scope of these additional preliminary checks that the ADDSDeployment module performs by default when using Windows Server 2012, refer to the table in the section ADPrep and Prerequisite Checking Architecture in [AD DS Simplified Administration](https://go.microsoft.com/fwlink/?LinkID=237244). + +Indicates that only a base set of validations is performed. This behavior is equivalent to the +validations that were performed when using `Dcpromo.exe` in earlier versions of Windows Server to +add a new domain controller. When this switch parameter is set, it specifies that additional +preliminary checks should be bypassed. For more information on the scope of these additional +preliminary checks that the ADDSDeployment module performs by default when using Windows Server +2012, refer to the table in the section ADPrep and Prerequisite Checking Architecture in +[AD DS Simplified Administration](https://go.microsoft.com/fwlink/?LinkID=237244). ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -296,11 +342,11 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -312,7 +358,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -329,4 +379,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Get-Credential](https://go.microsoft.com/fwlink/?LinkID=293936) [ConvertTo-SecureString](https://go.microsoft.com/fwlink/p/?LinkId=113291) - From 3642bfca140c33da9ee8cc2f281186fa5d7fddbf Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 15:21:02 -0400 Subject: [PATCH 640/965] Update docset/winserver2022-ps/addsdeployment/Uninstall-ADDSDomainController.md Co-authored-by: Mikey Lombardi (He/Him) --- .../addsdeployment/Uninstall-ADDSDomainController.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Uninstall-ADDSDomainController.md b/docset/winserver2022-ps/addsdeployment/Uninstall-ADDSDomainController.md index 4ef7f2a707..a03a879872 100644 --- a/docset/winserver2022-ps/addsdeployment/Uninstall-ADDSDomainController.md +++ b/docset/winserver2022-ps/addsdeployment/Uninstall-ADDSDomainController.md @@ -74,8 +74,8 @@ Accept wildcard characters: False Specifies the user name and password that corresponds to the account used to install the domain controller. Use the `Get-Credential` cmdlet to prompt the user to supply a password in place of an -existing _System.Management.Automation.PSCredential_ type. This causes Windows PowerShell to prompt -the user to enter credentials using the Windows security login UI. +existing **System.Management.Automation.PSCredential** type. This causes Windows PowerShell to +prompt the user to enter credentials using the Windows security login UI. ```yaml Type: System.Management.Automation.PSCredential From 6de738dca6373cc437191cb0d0ca0b1f25d0d90e Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 15:21:19 -0400 Subject: [PATCH 641/965] Update docset/winserver2022-ps/addsdeployment/Uninstall-ADDSDomainController.md Co-authored-by: Mikey Lombardi (He/Him) --- .../addsdeployment/Uninstall-ADDSDomainController.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Uninstall-ADDSDomainController.md b/docset/winserver2022-ps/addsdeployment/Uninstall-ADDSDomainController.md index a03a879872..c944259a0a 100644 --- a/docset/winserver2022-ps/addsdeployment/Uninstall-ADDSDomainController.md +++ b/docset/winserver2022-ps/addsdeployment/Uninstall-ADDSDomainController.md @@ -108,10 +108,10 @@ Accept wildcard characters: False ### -DnsDelegationRemovalCredential -Specifies the account credentials to use when you create or remove the DNS delegation. If you do not -specify a value, the account credentials that you specify for the AD DS installation or removal are -used to remove the DNS delegation. As an alternative, you can specify the asterisk (*) to prompt the -user to enter credentials. +Specifies the account credentials to use when you create or remove the DNS delegation. If you do +not specify a value, the account credentials that you specify for the AD DS installation or removal +are used to remove the DNS delegation. As an alternative, you can specify the asterisk (`*`) to +prompt the user to enter credentials. ```yaml Type: System.Management.Automation.PSCredential From 498bd0b8b62d62c7a241bca792d1bb88b1f6d9c4 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 15:21:54 -0400 Subject: [PATCH 642/965] Update docset/winserver2022-ps/addsdeployment/Uninstall-ADDSDomainController.md Co-authored-by: Mikey Lombardi (He/Him) --- .../addsdeployment/Uninstall-ADDSDomainController.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/addsdeployment/Uninstall-ADDSDomainController.md b/docset/winserver2022-ps/addsdeployment/Uninstall-ADDSDomainController.md index c944259a0a..2c0ab3a464 100644 --- a/docset/winserver2022-ps/addsdeployment/Uninstall-ADDSDomainController.md +++ b/docset/winserver2022-ps/addsdeployment/Uninstall-ADDSDomainController.md @@ -325,7 +325,7 @@ Indicates that only a base set of validations is performed. This behavior is equ validations that were performed when using `Dcpromo.exe` in earlier versions of Windows Server to add a new domain controller. When this switch parameter is set, it specifies that additional preliminary checks should be bypassed. For more information on the scope of these additional -preliminary checks that the ADDSDeployment module performs by default when using Windows Server +preliminary checks that the **ADDSDeployment** module performs by default when using Windows Server 2012, refer to the table in the section ADPrep and Prerequisite Checking Architecture in [AD DS Simplified Administration](https://go.microsoft.com/fwlink/?LinkID=237244). From 13e035345a4ad1e4478dc265bda9906a54a59e06 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Mon, 1 May 2023 15:22:44 -0400 Subject: [PATCH 643/965] Update docset/winserver2022-ps/addsdeployment/Uninstall-ADDSDomainController.md Co-authored-by: Mikey Lombardi (He/Him) --- .../Uninstall-ADDSDomainController.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Uninstall-ADDSDomainController.md b/docset/winserver2022-ps/addsdeployment/Uninstall-ADDSDomainController.md index 2c0ab3a464..7364e7fe14 100644 --- a/docset/winserver2022-ps/addsdeployment/Uninstall-ADDSDomainController.md +++ b/docset/winserver2022-ps/addsdeployment/Uninstall-ADDSDomainController.md @@ -162,14 +162,14 @@ Accept wildcard characters: False ### -IgnoreLastDCInDomainMismatch Indicates that Windows PowerShell ignores any inconsistency that it detects with the value that you -specify for the `-LastDomainControllerInDomain` parameter. For instance, if you specify -`-LastDomainControllerInDomain` but Windows PowerShell detects that there is actually another active -domain controller in the domain, you can specify the `-IgnoreLastDCInDomainMismatch` parameter to -have Windows PowerShell continue the removal of AD DS from the domain controller despite the -inconsistency that it has detected. Similarly, if you do not specify `-LastDomainControllerInDomain` -but Windows PowerShell cannot detect that another domain controller is in the domain, you can -specify `-IgnoreLastDCInDomainMismatch` to have Windows PowerShell continue to remove AD DS from the -domain controller. +specify for the **LastDomainControllerInDomain** parameter. For instance, if you specify +**LastDomainControllerInDomain** but Windows PowerShell detects that there is actually another +active domain controller in the domain, you can specify the **IgnoreLastDCInDomainMismatch** +parameter to have Windows PowerShell continue the removal of AD DS from the domain controller +despite the inconsistency that it has detected. Similarly, if you do not specify +**LastDomainControllerInDomain** but Windows PowerShell cannot detect that another domain +controller is in the domain, you can specify **IgnoreLastDCInDomainMismatch** to have Windows +PowerShell continue to remove AD DS from the domain controller. ```yaml Type: System.Management.Automation.SwitchParameter From 498101af427cd46b22b0773456d3d3b801abf4e4 Mon Sep 17 00:00:00 2001 From: "Mikey Lombardi (He/Him)" Date: Tue, 2 May 2023 09:05:57 -0500 Subject: [PATCH 644/965] Remove extra newline after synopsis --- .../addsdeployment/Uninstall-ADDSDomainController.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docset/winserver2022-ps/addsdeployment/Uninstall-ADDSDomainController.md b/docset/winserver2022-ps/addsdeployment/Uninstall-ADDSDomainController.md index 7364e7fe14..59b27ff9dc 100644 --- a/docset/winserver2022-ps/addsdeployment/Uninstall-ADDSDomainController.md +++ b/docset/winserver2022-ps/addsdeployment/Uninstall-ADDSDomainController.md @@ -11,7 +11,6 @@ title: Uninstall-ADDSDomainController # Uninstall-ADDSDomainController ## SYNOPSIS - Uninstalls a domain controller in Active Directory. ## SYNTAX From 9dd364b86fcc4c79ffae91544d0cde6cc1772fb1 Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Sat, 29 Apr 2023 18:57:31 -0400 Subject: [PATCH 645/965] Fix formatting for Export-Certificate. --- .../pki/Export-Certificate.md | 110 +++++++++++------- 1 file changed, 68 insertions(+), 42 deletions(-) diff --git a/docset/winserver2022-ps/pki/Export-Certificate.md b/docset/winserver2022-ps/pki/Export-Certificate.md index c7ecaa7087..dc9e2b3a0b 100644 --- a/docset/winserver2022-ps/pki/Export-Certificate.md +++ b/docset/winserver2022-ps/pki/Export-Certificate.md @@ -11,66 +11,78 @@ title: Export-Certificate # Export-Certificate ## SYNOPSIS + Exports a certificate from a certificate store into a file. ## SYNTAX ``` -Export-Certificate [-Type ] [-NoClobber] [-Force] -FilePath -Cert [-WhatIf] - [-Confirm] [] +Export-Certificate [-Type ] [-NoClobber] [-Force] -FilePath + -Cert [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Export-Certificate** cmdlet exports a certificate from a certificate store to a file. -The private key is not included in the export. -If more than one certificate is being exported, then the default file format is SST. -Otherwise, the default format is CERT. -Use the **Type** parameter to change the file format. + +The `Export-Certificate` cmdlet exports a certificate from a certificate store to a file. The +private key is not included in the export. If more than one certificate is being exported, then the +default file format is `SST`. Otherwise, the default format is `CERT`. Use the **Type** parameter to +change the file format. ## EXAMPLES ### EXAMPLE 1 -``` -PS C:\>$cert = Get-ChildItem -Path cert:\CurrentUser\My\EEDEF61D4FF6EDBAAD538BB08CCAADDC3EE28FF -PS C:\>Export-Certificate -Cert $cert -FilePath c:\certs\user.sst -Type SST +```powershell +$cert = Get-ChildItem -Path Cert:\CurrentUser\My\EEDEF61D4FF6EDBAAD538BB08CCAADDC3EE28FF + +Export-Certificate -Cert $cert -FilePath C:\Certs\user.sst -Type SST ``` -This example exports a certificate to the file system as a Microsoft serialized certificate store without its private key. +This example exports a certificate to the file system as a Microsoft serialized certificate store +without its private key. ### EXAMPLE 2 -``` -PS C:\>$cert = Get-ChildItem -Path cert:\CurrentUser\My\EEDEF61D4FF6EDBAAD538BB08CCAADDC3EE28FF -PS C:\>Export-Certificate -Cert $cert -FilePath c:\certs\user.cer +```powershell +$cert = Get-ChildItem -Path Cert:\CurrentUser\My\EEDEF61D4FF6EDBAAD538BB08CCAADDC3EE28FF + +Export-Certificate -Cert $cert -FilePath C:\Certs\user.cer ``` -This example exports a certificate to the file system as a DER-encoded `.cer` file without its private key. +This example exports a certificate to the file system as a DER-encoded `.cer` file without its +private key. ### EXAMPLE 3 -``` -PS C:\>$cert = Get-ChildItem -Path cert:\CurrentUser\My\EEDEF61D4FF6EDBAAD538BB08CCAADDC3EE28FF -PS C:\>Export-Certificate -Cert $cert -FilePath c:\certs\user.p7b -Type p7b +```powershell +$cert = Get-ChildItem -Path Cert:\CurrentUser\My\EEDEF61D4FF6EDBAAD538BB08CCAADDC3EE28FF + +Export-Certificate -Cert $cert -FilePath C:\Certs\user.p7b -Type p7b ``` -This example exports a certificate to the file system as a PKCS#7-formatted .p7b file without its private key. +This example exports a certificate to the file system as a PKCS#7-formatted `.p7b` file without its +private key. ### EXAMPLE 4 -``` -PS C:\>Get-ChildItem -Path cert:\CurrentUser\my | Export-Certificate -FilePath c:\certs\allcerts.sst -Type SST + +```powershell +Get-ChildItem -Path Cert:\CurrentUser\My | + Export-Certificate -FilePath C:\Certs\allcerts.sst -Type SST ``` -This example exports all certificates under CurrentUser\my store into a Microsoft serialized certificate store allcerts.sst. +This example exports all certificates under the `Cert:\CurrentUser\My` store into a Microsoft +serialized certificate store `allcerts.sst`. ## PARAMETERS ### -Cert -Specifies one or more certificates to be exported to a file. -A single certificate object, an array of certificate objects, or a path to one or more certificates in a certificate store can be specified. + +Specifies one or more certificates to be exported to a file. A single certificate object, an array +of certificate objects, or a path to one or more certificates in a certificate store can be +specified. ```yaml -Type: Certificate +Type: Microsoft.CertificateServices.Commands.Certificate Parameter Sets: (All) Aliases: @@ -82,10 +94,11 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -97,10 +110,11 @@ Accept wildcard characters: False ``` ### -FilePath + Specifies the location where the exported certificate will be stored. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: FullName @@ -112,11 +126,13 @@ Accept wildcard characters: False ``` ### -Force -Specifies that the exported certificate file will overwrite an existing certificate file, even if it has the Read-only attribute set. -The **NoClobber** parameter takes precedence over this parameter when both are used. + +Specifies that the exported certificate file will overwrite an existing certificate file, even if it +has the Read-only attribute set. The **NoClobber** parameter takes precedence over this parameter +when both are used. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -128,11 +144,13 @@ Accept wildcard characters: False ``` ### -NoClobber -Prevents an exported certificate file from overwriting an existing certificate file. -This parameter takes precedence over the **Force** parameter, which permits this cmdlet to overwrite an existing certificate file, even if it has the Read-only attribute set. + +Prevents an exported certificate file from overwriting an existing certificate file. This parameter +takes precedence over the **Force** parameter, which permits this cmdlet to overwrite an existing +certificate file, even if it has the Read-only attribute set. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -144,18 +162,19 @@ Accept wildcard characters: False ``` ### -Type -Specifies the type of output file for the certificate export as follows. - -- SST: A Microsoft serialized certificate store (.sst) file format which can contain one or more certificates. -This is the default value for multiple certificates. +Specifies the type of output file for the certificate export as follows. - -- CERT: A .cer file format which contains a single DER-encoded certificate. -This is the default value for one certificate. + -- `SST`: A Microsoft serialized certificate store (`.sst`) file format which can contain one or + more certificates. This is the default value for multiple certificates. - -- P7B: A PKCS#7 file format which can contain one or more certificates. + -- `CERT`: A `.cer` file format which contains a single DER-encoded certificate. This is the + default value for one certificate. + + -- `P7B`: A PKCS#7 file format which can contain one or more certificates. ```yaml -Type: CertType +Type: Microsoft.CertificateServices.Commands.CertType Parameter Sets: (All) Aliases: Accepted values: SST, CERT, P7B @@ -168,11 +187,12 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -184,16 +204,22 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### System.Security.Cryptography.X509Certificates.X509Certificate2 + A Certificate object can be piped into to this cmdlet. ## OUTPUTS ### System.IO.FileInfo + The **FileInfo** object contains the information about the certificate file. ## NOTES From c6dcdf3546dd6df41ccbac14616fb6f94e259bb1 Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Sat, 29 Apr 2023 19:51:02 -0400 Subject: [PATCH 646/965] Fix formatting for Export-PfxCertificate. --- .../pki/Export-PfxCertificate.md | 202 +++++++++++------- 1 file changed, 127 insertions(+), 75 deletions(-) diff --git a/docset/winserver2022-ps/pki/Export-PfxCertificate.md b/docset/winserver2022-ps/pki/Export-PfxCertificate.md index f4281e689e..28ea17d163 100644 --- a/docset/winserver2022-ps/pki/Export-PfxCertificate.md +++ b/docset/winserver2022-ps/pki/Export-PfxCertificate.md @@ -11,103 +11,138 @@ title: Export-PfxCertificate # Export-PfxCertificate ## SYNOPSIS + Exports a certificate or a PFXData object to a Personal Information Exchange (PFX) file. ## SYNTAX ### PfxCert + ``` -Export-PfxCertificate [-NoProperties] [-NoClobber] [-Force] [-CryptoAlgorithmOption ] - [-ChainOption ] [-ProtectTo ] [-Password ] [-FilePath] +Export-PfxCertificate [-NoProperties] [-NoClobber] [-Force] + [-CryptoAlgorithmOption ] [-ChainOption ] + [-ProtectTo ] [-Password ] [-FilePath] [-PFXData] [-WhatIf] [-Confirm] [] ``` ### NormalCert + ``` -Export-PfxCertificate [-NoProperties] [-NoClobber] [-Force] [-CryptoAlgorithmOption ] - [-ChainOption ] [-ProtectTo ] [-Password ] [-FilePath] +Export-PfxCertificate [-NoProperties] [-NoClobber] [-Force] + [-CryptoAlgorithmOption ] [-ChainOption ] + [-ProtectTo ] [-Password ] [-FilePath] [-Cert] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Export-PfxCertificate** cmdlet exports a certificate or a **PFXData** object to a Personal Information Exchange (PFX) file. -By default, extended properties and the entire chain are exported. -Delegation may be required when using this cmdlet with Windows PowerShell® remoting and changing user configuration. +The `Export-PfxCertificate`` cmdlet exports a certificate or a **PFXData** object to a Personal +Information Exchange (PFX) file. By default, extended properties and the entire chain are exported. + +Delegation may be required when using this cmdlet with Windows PowerShell remoting and changing +user configuration. ## EXAMPLES ### EXAMPLE 1 -``` -PS C:\>$mypwd = ConvertTo-SecureString -String "1234" -Force -AsPlainText -PS C:\>Get-ChildItem -Path cert:\localMachine\my\5F98EBBFE735CDDAE00E33E0FD69050EF9220254 | Export-PfxCertificate -FilePath C:\mypfx.pfx -Password $mypwd +```powershell +$mypwd = ConvertTo-SecureString -String "1234" -Force -AsPlainText + +Get-ChildItem -Path Cert:\LocalMachine\My\5F98EBBFE735CDDAE00E33E0FD69050EF9220254 | + Export-PfxCertificate -FilePath C:\mypfx.pfx -Password $mypwd ``` -This example exports a certificate from the local machine store to a PFX file which includes the entire chain and all external properties. +This example exports a certificate from the local machine store to a PFX file which includes the +entire chain and all external properties. ### EXAMPLE 2 -``` -PS C:\>$mypwd = ConvertTo-SecureString -String "1234" -Force -AsPlainText -PS C:\>Get-ChildItem -Path cert:\LocalMachine\my | Export-PfxCertificate -FilePath C:\mypfx.pfx -Password $mypwd +```powershell +$mypwd = ConvertTo-SecureString -String "1234" -Force -AsPlainText + +Get-ChildItem -Path Cert:\LocalMachine\My | + Export-PfxCertificate -FilePath C:\mypfx.pfx -Password $mypwd ``` -This example exports all certificates under the My store for the machine account into one file named mypfx.pfx. -In order for this cmdlet to succeed, all keys need to be exportable. +This example exports all certificates under the My store for the machine account into one file named +`mypfx.pfx`. In order for this cmdlet to succeed, all keys need to be exportable. ### EXAMPLE 3 -``` -PS C:\>$mypwd = ConvertTo-SecureString -String "1234" -Force -AsPlainText -PS C:\>Export-PfxCertificate -Cert cert:\currentuser\my\5F98EBBFE735CDDAE00E33E0FD69050EF9220254 -FilePath c:\myexport.pfx -ChainOption EndEntityCertOnly -NoProperties -Password $mypwd +``` powershell +$mypwd = ConvertTo-SecureString -String "1234" -Force -AsPlainText + +$params = @{ + Cert = 'Cert:\CurrentUser\My\5F98EBBFE735CDDAE00E33E0FD69050EF9220254' + FilePath = 'C:\myexport.pfx' + ChainOption = 'EndEntityCertOnly' + NoProperties = $true + Password = $mypwd +} +Export-PfxCertificate @params ``` -This example exports a certificate from the current user store with no chain and no external properties +This example exports a certificate from the current user store with no chain and no external +properties ### EXAMPLE 4 -``` -PS C:\>$a = Get-ChildItem -Path cert:\localMachine\my -PS C:\>Export-PfxCertificate -Cert $a[1] -FilePath C:\myexport.pfx -ProtectTo "contoso\billb99", "contoso\johnj99" +```powershell +$a = Get-ChildItem -Path Cert:\LocalMachine\My + +$params = @{ + Cert = $a[1] + FilePath = 'C:\myexport.pfx' + ProtectTo = 'billb99', 'johnj99' +} +Export-PfxCertificate @params ``` -This example exports a certificate from the current machine store. -Both user accounts, contos\billb99 and contos\johnj99, can access this PFX with no password. -A Windows® 8 DC for key distribution is required. +This example exports a certificate from the local machine store. Both user accounts, `billb99` and +`johnj99`, can access this PFX with no password. A Windows Server 2012 or later domain controller is +required for key distribution. ### EXAMPLE 5 -``` -PS C:\>$a = Get-ChildItem -Path cert:\localMachine\my -PS C:\>$mypwd = ConvertTo-SecureString -String "1234" -Force -AsPlainText +```powershell +$a = Get-ChildItem -Path Cert:\LocalMachine\My -PS C:\>Export-PfxCertificate -Cert $a[1] -FilePath C:\myexport.pfx -ProtectTo "contoso\billb99", "contoso\johnj99" -Password $mypwd +$mypwd = ConvertTo-SecureString -String "1234" -Force -AsPlainText + +$params = @{ + Cert = $a[1] + FilePath = 'C:\myexport.pfx' + ProtectTo = 'billb99', '\johnj99' + Password = $mypwd +} +Export-PfxCertificate @params ``` -This example exports a certificate from the current machine store. -Both user accounts, johnj99 and billb99, can access this PFX file with no password. -For everyone else, they need to use 1234 as a password. -A Windows 8 DC for key distribution is required. +This example exports a certificate from the local machine store. Both user accounts, `johnj99` and +`billb99`, can access this PFX file with no password. For everyone else, they need to use 1234 as a +password. A Windows Server 2012 or later domain controller is required for key distribution. ### EXAMPLE 6 -``` -PS C:\>$NewPwd = ConvertTo-SecureString -String "abcd" -Force -AsPlainText -PS C:\>$mypfx = Get-PfxData -FilePath C:\mypfx.pfx -Password $Oldpwd +```powershell +$NewPwd = ConvertTo-SecureString -String "abcd" -Force -AsPlainText + +$mypfx = Get-PfxData -FilePath C:\mypfx.pfx -Password $Oldpwd -PS C:\>Export-PfxCertificate -PFXData $mypfx -FilePath C:\mypfx2.pfx -Password $NewPwd +Export-PfxCertificate -PFXData $mypfx -FilePath C:\mypfx2.pfx -Password $NewPwd ``` -This example changes an existing password for a PFX file from $OldPwd to $NewPwd. +This example changes an existing password for a PFX file from `$OldPwd` to `$NewPwd`. ## PARAMETERS ### -Cert + Specifies the path to the certificate to be exported. ```yaml -Type: Certificate +Type: Microsoft.CertificateServices.Commands.Certificate Parameter Sets: NormalCert Aliases: PsPath @@ -119,21 +154,22 @@ Accept wildcard characters: False ``` ### -ChainOption + Specifies the options for building a chain when exporting certificates. The acceptable values for this parameter are: - -- BuildChain: Certificate chain for all end entity certificates will be built and included in the export. -This option is valid for both **PfxData** and **Cert** parameters. -In the case of **PfxData** parameter, the collection of all PFX certificates will be used as an additional store. + -- `BuildChain`: Certificate chain for all end entity certificates will be built and included in + the export. This option is valid for both **PfxData** and **Cert** parameters. In the case of + **PfxData** parameter, the collection of all PFX certificates will be used as an additional store. - -- EndEntityCertOnly: Only end entity certificates are exported without any chain. -This option is valid for both the **PfxData** and the **Cert** parameters. + -- `EndEntityCertOnly`: Only end entity certificates are exported without any chain. This option is + valid for both the **PfxData** and the **Cert** parameters. - -- PfxDataOnly: Certificates contained in **PFXData** objects will be exported with no chain building. -This option is only valid when the **PfxData** parameter is used. + -- `PfxDataOnly`: Certificates contained in **PFXData** objects will be exported with no chain + building. This option is only valid when the **PfxData** parameter is used. ```yaml -Type: ExportChainOption +Type: Microsoft.CertificateServices.Commands.ExportChainOption Parameter Sets: (All) Aliases: Accepted values: BuildChain, EndEntityCertOnly, PfxDataOnly @@ -146,10 +182,11 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -161,14 +198,16 @@ Accept wildcard characters: False ``` ### -CryptoAlgorithmOption -Specifies the algorithm for encrypting private keys within the PFX file. If this parameter is not specified, the default is TripleDES_SHA1. The acceptable values for this parameter are: --- TripleDES_SHA1: Private keys will be encrypted in the PFX file using Triple DES encryption. +Specifies the algorithm for encrypting private keys within the PFX file. If this parameter is not +specified, the default is `TripleDES_SHA1`. The acceptable values for this parameter are: + +-- `TripleDES_SHA1`: Private keys will be encrypted in the PFX file using Triple DES encryption. --- AES256_SHA256: Private keys will be encrypted in the PFX file using AES-256 encryption. +-- `AES256_SHA256`: Private keys will be encrypted in the PFX file using AES-256 encryption. ```yaml -Type: CryptoAlgorithmOptions +Type: Microsoft.CertificateServices.Commands.CryptoAlgorithmOptions Parameter Sets: (All) Aliases: Accepted values: TripleDES_SHA1, AES256_SHA256 @@ -181,10 +220,11 @@ Accept wildcard characters: False ``` ### -FilePath + Specifies the path for the PFX file to be exported. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -196,11 +236,13 @@ Accept wildcard characters: False ``` ### -Force -Specifies that the provided PFX file should be overwritten, even if the Read-only attribute is set on the file. -By default, this cmdlet overwrites existing PFX files without warning, unless the Read-only or hidden attribute is set or the **NoClobber** parameter is used in the cmdlet. + +Specifies that the provided PFX file should be overwritten, even if the Read-only attribute is set +on the file. By default, this cmdlet overwrites existing PFX files without warning, unless the +Read-only or hidden attribute is set or the **NoClobber** parameter is used in the cmdlet. ```yaml -Type: SwitchParameter +Type: Microsoft.CertificateServices.Commands.CryptoAlgorithmOptions Parameter Sets: (All) Aliases: @@ -212,11 +254,12 @@ Accept wildcard characters: False ``` ### -NoClobber -Specifies that if the PFX file already exists, it should not be over written. -This parameter takes precedence over the **Force** parameter, which permits this cmdlet to overwrite a PFX file even if it has the Read-only attribute set. +Specifies that if the PFX file already exists, it should not be over written. This parameter takes +precedence over the **Force** parameter, which permits this cmdlet to overwrite a PFX file even if +it has the Read-only attribute set. ```yaml -Type: SwitchParameter +Type: Microsoft.CertificateServices.Commands.CryptoAlgorithmOptions Parameter Sets: (All) Aliases: @@ -228,12 +271,13 @@ Accept wildcard characters: False ``` ### -NoProperties -Specifies whether the extended properties for a certificate are exported. -If this parameter is specified, then extended properties are not included with the export. -By default, all extended properties are included in the exported file. + +Specifies whether the extended properties for a certificate are exported. If this parameter is +specified, then extended properties are not included with the export. By default, all extended +properties are included in the exported file. ```yaml -Type: SwitchParameter +Type: Microsoft.CertificateServices.Commands.CryptoAlgorithmOptions Parameter Sets: (All) Aliases: @@ -245,6 +289,7 @@ Accept wildcard characters: False ``` ### -PFXData + Specifies a **PFXData** object that contains one or more certificates from a PFX file. ```yaml @@ -260,12 +305,13 @@ Accept wildcard characters: False ``` ### -Password -Specifies the password used to protect the exported PFX file. -The password should be in the form of secure string. -Either the **ProtectTo** or this parameter must be specified, or an error will be displayed. + +Specifies the password used to protect the exported PFX file. The password should be in the form of +secure string. Either the **ProtectTo** or this parameter must be specified, or an error will be +displayed. ```yaml -Type: SecureString +Type: System.SecureString Parameter Sets: (All) Aliases: @@ -277,12 +323,12 @@ Accept wildcard characters: False ``` ### -ProtectTo -Specifies an array of strings for the username or group name that can access the private key of PFX file without any password. -This requires a Windows Server® 2012 domain controller. -Either the **Password** or this parameter must be specified, or an error will be displayed. +Specifies an array of strings for the username or group name that can access the private key of PFX +file without any password. This requires a Windows Server 2012 or later domain controller. Either +the **Password** or this parameter must be specified, or an error will be displayed. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: (All) Aliases: @@ -294,11 +340,12 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: Microsoft.CertificateServices.Commands.CryptoAlgorithmOptions Parameter Sets: (All) Aliases: wi @@ -310,16 +357,22 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### System.Security.Cryptography.X509Certificates.X509Certificate2[] + The **X509Certificate2\[\]** object is an array of certificate objects. ## OUTPUTS ### System.IO.FileInfo + The **FileInfo** object contains the information about the PFX file. ## NOTES @@ -333,4 +386,3 @@ The **FileInfo** object contains the information about the PFX file. [Get-PfxData](./Get-PfxData.md) [Import-PfxCertificate](./Import-PfxCertificate.md) - From 3d1e1d150b51ecb59b2e2e8a5495ad5845882540 Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Sat, 29 Apr 2023 19:51:26 -0400 Subject: [PATCH 647/965] Fix formatting for Get-Certificate. --- .../winserver2022-ps/pki/Get-Certificate.md | 195 ++++++++++++------ 1 file changed, 130 insertions(+), 65 deletions(-) diff --git a/docset/winserver2022-ps/pki/Get-Certificate.md b/docset/winserver2022-ps/pki/Get-Certificate.md index e96cb452ff..749b04a33e 100644 --- a/docset/winserver2022-ps/pki/Get-Certificate.md +++ b/docset/winserver2022-ps/pki/Get-Certificate.md @@ -11,108 +11,154 @@ title: Get-Certificate # Get-Certificate ## SYNOPSIS -Submits a certificate request to an enrollment server and installs the response or retrieves a certificate for a previously submitted request. + +Submits a certificate request to an enrollment server and installs the response or retrieves a +certificate for a previously submitted request. ## SYNTAX ### SubmitRequest + ``` -Get-Certificate [-Url ] -Template [-SubjectName ] [-DnsName ] - [-Credential ] [-CertStoreLocation ] [-WhatIf] [-Confirm] [] +Get-Certificate [-Url ] -Template [-SubjectName ] + [-DnsName ] [-Credential ] [-CertStoreLocation ] + [-WhatIf] [-Confirm] [] ``` ### PendingRetrieval + ``` -Get-Certificate -Request [-Credential ] [-WhatIf] [-Confirm] [] +Get-Certificate -Request [-Credential ] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION -The **Get-Certificate** cmdlet can be used to submit a certificate request and install the resulting certificate, install a certificate from a pending certificate request, and enroll for ldap. -If the request is issued, then the returned certificate is installed in the store determined by the **CertStoreLocation** parameter and return the certificate in the EnrollmentResult structure with status Issued. -If the request is made pending, then the request is installed in the machine REQUEST store and a request is returned in the EnrollmentResult structure with status Pending. -This cmdlet can be used in a Stateless mode where this cmdlet does not look up anything in the vault or in a Stateful mode where it looks at registered certificate enrollment policy servers by identifier (ID) and credential. -When used with a request object and no credential, this cmdlet will look up credentials in the vault based on the URL for the enrollment policy server. +The `Get-Certificate` cmdlet can be used to submit a certificate request and install the resulting +certificate, install a certificate from a pending certificate request, and enroll for LDAP. If the +request is issued, then the returned certificate is installed in the store determined by the +**CertStoreLocation** parameter and return the certificate in the **EnrollmentResult** structure +with status Issued. If the request is made pending, then the request is installed in the machine +REQUEST store and a request is returned in the **EnrollmentResult** structure with status Pending. + +This cmdlet can be used in a Stateless mode where this cmdlet does not look up anything in the vault +or in a Stateful mode where it looks at registered certificate enrollment policy servers by +identifier (ID) and credential. When used with a request object and no credential, this cmdlet will +look up credentials in the vault based on the URL for the enrollment policy server. -This cmdlet will not accept a policy server identifier (ID). -If a URL is not specified, then only the default certificate enrollment policy ID is used and the cmdlet will attempt to obtain policy information from any of its URLs. +This cmdlet will not accept a policy server identifier (ID). If a URL is not specified, then only +the default certificate enrollment policy ID is used and the cmdlet will attempt to obtain policy +information from any of its URLs. -Delegation may be required when using this cmdlet with Windows PowerShell® remoting and changing user configuration. +Delegation may be required when using this cmdlet with Windows PowerShell remoting and changing user +configuration. ## EXAMPLES ### EXAMPLE 1 -``` -PS C:\>$up = Get-Credential -PS C:\>Get-Certificate -Template SslWebServer -DnsName www.contoso.com,www.fabrikam.com -Url https://www.contoso.com/Policy/service.svc -Credential $up -CertStoreLocation cert:\LocalMachine\My +```powershell +$cred = Get-Credential + +$params = @{ + Template = 'SslWebServer' + DnsName = 'www.contoso.com', 'www.fabrikam.com' + Url = 'https://www.contoso.com/Policy/service.svc' + Credential = $cred + CertStoreLocation = 'Cert:\LocalMachine\My' +} +Get-Certificate @params ``` -This example submits a certificate request for the SslWebServer template to the specific URL using the user name and password credentials. -The request will have two DNS names in it. -This is for a certificate in the machine store. -If the request is issued, then the returned certificate is installed in the machine MY store and the certificate in the EnrollmentResult structure is returned with the status Issued. -If the request is made pending, then the request is installed in the machine REQUEST store and the request in the EnrollmentResult structure is returned with the status Pending. +This example submits a certificate request for the `SslWebServer` template to the specific URL using +the user name and password credentials. The request will have two DNS names in it. This is for a +certificate in the machine store. If the request is issued, then the returned certificate is +installed in the machine My store and the certificate in the **EnrollmentResult** structure is +returned with the status Issued. If the request is made pending, then the request is installed in +the machine REQUEST store and the request in the **EnrollmentResult** structure is returned with the +status Pending. ### EXAMPLE 2 -``` -PS C:\>$cert = Get-ChildItem -Path cert:\LocalMachine\My\EEDEF61D4FF6EDBAAD538BB08CCAADDC3EE28FF -PS C:\>$enrollResult = Get-Certificate -Template SslWebServer -DnsName www.contoso.com -Url https://www.contoso.com/policy/service.svc -Credential $cert -CertStoreLocation cert:\LocalMachine\My +```powershell +$cert = Get-ChildItem -Path cert:\LocalMachine\My\EEDEF61D4FF6EDBAAD538BB08CCAADDC3EE28FF + +$params = @{ + Template = 'SslWebServer' + DnsName = 'www.contoso.com' + Url = 'https://www.contoso.com/policy/service.svc' + Credential = $cert + CertStoreLocation = 'Cert:\LocalMachine\My' +} +$enrollResult = Get-Certificate @params ``` -This example submits a certificate request to a specific URL using the certificate credential for authentication. +This example submits a certificate request to a specific URL using the certificate credential for +authentication. ### EXAMPLE 3 -``` -PS C:\>Set-Location -Path cert:\LocalMachine\My -PS cert:\LocalMachine\My>$enrollResult = Get-Certificate -Template WorkstationTemplate -Url https://www.contoso.com/service.svc +```powershell +$params = @{ + Template = 'WorkstationTemplate' + Url = 'https://www.contoso.com/service.svc' +} + +Set-Location -Path Cert:\LocalMachine\My + +PS Cert:\LocalMachine\My>$enrollResult = Get-Certificate @params ``` -This example authenticates the URL using the machine account and Windows integrated authentication and submits a request for a machine certificate of template named WorkstationTemplate. +This example authenticates the URL using the machine account and Windows integrated authentication +and submits a request for a machine certificate of template named `WorkstationTemplate`. ### EXAMPLE 4 -``` -PS C:\>Set-Location -Path cert:\CurrentUser\My -PS cert:\CurrentUser\My>Get-Certificate -Template User -Url ldap: +```powershell +Set-Location -Path Cert:\CurrentUser\My + +PS Cert:\CurrentUser\My> Get-Certificate -Template User -Url ldap: ``` -This example uses Windows integrated authentication to enroll for a certificate of template User using direct DCOM calls to the CA. +This example uses Windows integrated authentication to enroll for a certificate of template `User` +using direct DCOM calls to the Certificate Authority. ### EXAMPLE 5 -``` -PS C:\>$request = Get-ChildItem -Path cert:\LocalMachine\Request\EEDEF61D4FF6EDBAAD538BB08CCAADDC3EE28FF -PS C:\>$up = Get-Credential +```powershell +$request = Get-ChildItem -Path cert:\LocalMachine\Request\EEDEF61D4FF6EDBAAD538BB08CCAADDC3EE28FF + +$cred = Get-Credential -PS C:\>Get-Certificate -Request $request -Credential $up +Get-Certificate -Request $request -Credential $cred ``` This example retrieves and submits a pending request using a user name and password as credentials. ### EXAMPLE 6 -``` -PS C:\>$request = Get-ChildItem -Path cert:\LocalMachine\Request\EEDEF61D4FF6EDBAAD538BB08CCAADDC3EE28FF -PS C:\>Get-Certificate -Request $request +```powershell +$request = Get-ChildItem -Path cert:\LocalMachine\Request\EEDEF61D4FF6EDBAAD538BB08CCAADDC3EE28FF + +Get-Certificate -Request $request ``` -This example retrieves the certificate identified by $request. -If the authentication type for $request.EnrollmentServer.AuthType is not Kerberos, then look in the credential store to see if there is a credential for $request.EnrollmentServer.Url. -If there is a credential, then use it. -If there is no credential, then Windows PowerShell® will request it (if Windows PowerShell is in Interactive mode). +This example retrieves the certificate identified by `$request`. If the authentication type for +`$request.EnrollmentServer.AuthType` is not Kerberos, then look in the credential store to see if +there is a credential for `$request.EnrollmentServer.Url`. If there is a credential, then use it. If +there is no credential, then Windows PowerShell will request it (if Windows PowerShell is in +Interactive mode). ## PARAMETERS ### -CertStoreLocation + Specifies the path to the certificate store for the received certificate. If the request is made pending, then the request object is saved in the corresponding request store. -Note: Only My store is supported. +Note: Only `My` store is supported. ```yaml -Type: String +Type: System.String Parameter Sets: SubmitRequest Aliases: @@ -124,10 +170,11 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -139,12 +186,13 @@ Accept wildcard characters: False ``` ### -Credential -Specifies the credential to use for certificate enrollment. -The credential can be a user name and password (a credential object), an X509 certificate, or the path to a certificate. -If a credential is not specified, then Kerberos authentication is used. + +Specifies the credential to use for certificate enrollment. The credential can be a user name and +password (a credential object), an X509 certificate, or the path to a certificate. If a credential +is not specified, then Kerberos authentication is used. ```yaml -Type: PkiCredential +Type: Microsoft.CertificateServices.Commands.PkiCredential Parameter Sets: (All) Aliases: @@ -156,10 +204,12 @@ Accept wildcard characters: False ``` ### -DnsName -Specifies one or more DNS names to be included in the certificate request as subject alternative name extension. + +Specifies one or more DNS names to be included in the certificate request as subject alternative +name extension. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: SubmitRequest Aliases: @@ -171,10 +221,11 @@ Accept wildcard characters: False ``` ### -Request + Specifies the X509 certificate or the path to a requested certificate located in the request store. ```yaml -Type: Certificate +Type: Microsoft.CertificateServices.Commands.Certificate Parameter Sets: PendingRetrieval Aliases: @@ -186,10 +237,11 @@ Accept wildcard characters: False ``` ### -SubjectName + Specifies the subject name to be included in the certificate request. ```yaml -Type: String +Type: System.String Parameter Sets: SubmitRequest Aliases: @@ -201,10 +253,12 @@ Accept wildcard characters: False ``` ### -Template -Specifies the object identifier or name of a certificate template to use with the certificate request. + +Specifies the object identifier or name of a certificate template to use with the certificate +request. ```yaml -Type: String +Type: System.String Parameter Sets: SubmitRequest Aliases: @@ -216,12 +270,14 @@ Accept wildcard characters: False ``` ### -Url -Specifies the policy server URL to use for certificate enrollment. -Credentials are required if the endpoint requires a user name and password or certificate authentication from the client. -If credentials are not found and Windows PowerShell® is in interactive mode, then a prompt for credentials will appear. + +Specifies the policy server URL to use for certificate enrollment. Credentials are required if the +endpoint requires a user name and password or certificate authentication from the client. If +credentials are not found and Windows PowerShell is in interactive mode, then a prompt for +credentials will appear. ```yaml -Type: Uri +Type: System.Uri Parameter Sets: SubmitRequest Aliases: @@ -233,11 +289,12 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -249,20 +306,28 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### System.Security.Cryptography.X509Certificates.X509Certificate2 -The Certificate object can either be provided as a Path object to a certificate or an **X509Certificate2** object. + +The Certificate object can either be provided as a Path object to a certificate or an +**X509Certificate2** object. ### System.Uri -The **Uri** object can also be pipelined by the Url property name. + +The **Uri** object can also be pipelined by the **Url** property name. ## OUTPUTS ### Microsoft.CertificateServices.Commands.EnrollmentResult -The EnrollmentResult object contains the results of enrollment. + +The **EnrollmentResult** object contains the results of enrollment. ## NOTES From e01efe48b471e2187318548e934f2baeba3bab53 Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Sat, 29 Apr 2023 20:01:18 -0400 Subject: [PATCH 648/965] Fix formatting for Get-CertificateAutoEnrollmentPolicy. --- .../Get-CertificateAutoEnrollmentPolicy.md | 59 ++++++++++++------- 1 file changed, 39 insertions(+), 20 deletions(-) diff --git a/docset/winserver2022-ps/pki/Get-CertificateAutoEnrollmentPolicy.md b/docset/winserver2022-ps/pki/Get-CertificateAutoEnrollmentPolicy.md index 7dbeb548b9..8c3265710b 100644 --- a/docset/winserver2022-ps/pki/Get-CertificateAutoEnrollmentPolicy.md +++ b/docset/winserver2022-ps/pki/Get-CertificateAutoEnrollmentPolicy.md @@ -11,25 +11,34 @@ title: Get-CertificateAutoEnrollmentPolicy # Get-CertificateAutoEnrollmentPolicy ## SYNOPSIS + Retrieves certificate auto-enrollment policy settings. ## SYNTAX ``` -Get-CertificateAutoEnrollmentPolicy -Scope -context [] +Get-CertificateAutoEnrollmentPolicy -Scope -Context + [] ``` ## DESCRIPTION -The **Get-CertificateAutoEnrollmentPolicy** cmdlet gets certificate auto-enrollment policy settings for the user or computer. -This cmdlet can return the settings configured in local policy or that are being applied from either local or domain policy. -Delegation may be required when using this cmdlet with Windows PowerShell® remoting and changing user configuration. +The **Get-CertificateAutoEnrollmentPolicy** cmdlet gets certificate auto-enrollment policy settings +for the user or computer. This cmdlet can return the settings configured in local policy or that are +being applied from either local or domain policy. + +Delegation may be required when using this cmdlet with Windows PowerShell remoting and changing user +configuration. ## EXAMPLES ### EXAMPLE 1 + +```powershell +Get-CertificateAutoEnrollmentPolicy -Scope Local -Context User ``` -PS C:\>Get-CertificateAutoEnrollmentPolicy -Scope Local -Context User + +```Output PolicyState : Enabled EnableMyStoreManagement : True EnableTemplateCheck : True @@ -38,20 +47,22 @@ StoreName : {MY} EnableBalloonNotifications : False ``` -This example gets the locally configured certificate auto-enrollment user policy. -In this example, the Renew expired certificates, update pending certificates, and remove revoked certificates and Update certificates that use certificates templates options are enabled. -Also, the Expiration notifications option is enabled and set to 10 percent of the certificate lifetime which are stored in the MY store. -Finally, Balloon notifications are disabled. +This example gets the locally configured certificate auto-enrollment user policy. In this example, +the renew expired certificates, update pending certificates, remove revoked certificates, and update +certificates that use certificates templates options are enabled. Also, the expiration notifications +option is enabled and set to 10 percent of the certificate lifetime which are stored in the MY +store. Finally, balloon notifications are disabled. ## PARAMETERS ### -Scope -Specifies the scope of the enrollment policy to return. -If Local scope is specified, then the locally configured policy is returned. -If Applied scope is specified, then the currently applied policy which can be either the local policy or a domain policy, is returned. + +Specifies the scope of the enrollment policy to return. If `Local` scope is specified, then the +locally configured policy is returned. If `Applied` scope is specified, then the currently applied +policy which can be either the local policy or a domain policy, is returned. ```yaml -Type: AutoEnrollmentPolicyScope +Type: Microsoft.CertificateServices.Commands.AutoEnrollmentPolicyScope Parameter Sets: (All) Aliases: Accepted values: Applied, Local @@ -63,11 +74,12 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -context +### -Context + Specifies the context of the enrollment policy to return. ```yaml -Type: Context +Type: Microsoft.CertificateServices.Commands.Context Parameter Sets: (All) Aliases: Accepted values: Machine, User @@ -80,22 +92,29 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### Microsoft.CertificateServices.Commands.AutoEnrollmentPolicy -The **AutoEnrollmentPolicy** object combines certificate auto-enrollment policy settings and exposes them as properties. + +The **AutoEnrollmentPolicy** object combines certificate auto-enrollment policy settings and exposes +them as properties. ## OUTPUTS ### Microsoft.CertificateServices.Commands.AutoEnrollmentPolicy -The **AutoEnrollmentPolicy** object combines certificate auto-enrollment policy settings and exposes them as properties. -Each property can be modified and piped into the Set-CertificateAutoEnrollmentPolicy cmdlet to be applied. + +The **AutoEnrollmentPolicy** object combines certificate auto-enrollment policy settings and exposes +them as properties. Each property can be modified and piped into the +`Set-CertificateAutoEnrollmentPolicy` cmdlet to be applied. ## NOTES ## RELATED LINKS [Set-CertificateAutoEnrollmentPolicy](./Set-CertificateAutoEnrollmentPolicy.md) - From 37696b8192c0169e5038b843f2a94a1cfd277d29 Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Sat, 29 Apr 2023 21:39:17 -0400 Subject: [PATCH 649/965] Fix formatting for Get-CertificateEnrollmentPolicyServer. --- .../Get-CertificateEnrollmentPolicyServer.md | 57 ++++++++++++------- 1 file changed, 38 insertions(+), 19 deletions(-) diff --git a/docset/winserver2022-ps/pki/Get-CertificateEnrollmentPolicyServer.md b/docset/winserver2022-ps/pki/Get-CertificateEnrollmentPolicyServer.md index 7440353cc8..c8815acc90 100644 --- a/docset/winserver2022-ps/pki/Get-CertificateEnrollmentPolicyServer.md +++ b/docset/winserver2022-ps/pki/Get-CertificateEnrollmentPolicyServer.md @@ -11,49 +11,60 @@ title: Get-CertificateEnrollmentPolicyServer # Get-CertificateEnrollmentPolicyServer ## SYNOPSIS + Returns all of the certificate enrollment policy server URL configurations. ## SYNTAX ``` -Get-CertificateEnrollmentPolicyServer [-Url ] -Scope -context - [] +Get-CertificateEnrollmentPolicyServer [-Url ] -Scope + -Context [] ``` ## DESCRIPTION -The **Get-CertificateEnrollmentPolicyServer** cmdlet retrieves information required for connecting to one or more certificate enrollment policy servers configured for this user or computer. -The returned information can be filtered by providing a specific URL, a specific scope, or requesting only user or computer (machine) context. + +The `Get-CertificateEnrollmentPolicyServer` cmdlet retrieves information required for connecting to +one or more certificate enrollment policy servers configured for this user or computer. The returned +information can be filtered by providing a specific URL, a specific scope, or requesting only user +or computer (machine) context. ## EXAMPLES ### EXAMPLE 1 -``` -PS C:\>Get-CertificateEnrollmentPolicyServer -Scope All -Context User + +```powershell +Get-CertificateEnrollmentPolicyServer -Scope All -Context User ``` -This example returns all of the enrollment policy URL configurations that are included with the user configuration, Group Policy, and local policy for the User context. +This example returns all of the enrollment policy URL configurations that are included with the user +configuration, Group Policy, and local policy for the user context. ### EXAMPLE 2 -``` -PS C:\>Get-CertificateEnrollmentPolicyServer -Url http://www.contoso.com/Policy/service.svc -Scope All -Context Machine + +```powershell +Get-CertificateEnrollmentPolicyServer -Url http://www.contoso.com/Policy/service.svc -Scope All -Context Machine ``` -This example returns all of the enrollment policy URL configurations that have the given URL for the machine context. +This example returns all of the enrollment policy URL configurations that have the given URL for the +machine context. ### EXAMPLE 3 -``` -PS C:\>Get-CertificateEnrollmentPolicyServer -Scope ConfiguredByYou -Context User + +```powershell +Get-CertificateEnrollmentPolicyServer -Scope ConfiguredByYou -Context User ``` -This example returns all of the enrollment policy server URL configurations that are configured for the User context. +This example returns all of the enrollment policy server URL configurations that are configured for +the user context. ## PARAMETERS ### -Scope + Specifies where the cmdlet will find the enrollment policy server configuration. ```yaml -Type: EnrollmentPolicyServerScope +Type: Microsoft.CertificateServices.Commands.EnrollmentPolicyServerScope Parameter Sets: (All) Aliases: Accepted values: Applied, ConfiguredByYou, All @@ -66,10 +77,11 @@ Accept wildcard characters: False ``` ### -Url + Limits the returned enrollment policy servers to the servers that contain the provided URL. ```yaml -Type: Uri +Type: System.Uri Parameter Sets: (All) Aliases: @@ -80,11 +92,13 @@ Accept pipeline input: True (ByPropertyName, ByValue) Accept wildcard characters: False ``` -### -context -Retrieves information about the enrollment policy server for the local computer (machine) or Current User context. +### -Context + +Retrieves information about the enrollment policy server for the local computer (machine) or current +user context. ```yaml -Type: Context +Type: Microsoft.CertificateServices.Commands.Context Parameter Sets: (All) Aliases: Accepted values: Machine, User @@ -97,7 +111,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -106,6 +124,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS ### Microsoft.CertificateServices.Commands.EnrollmentPolicyUrlDescription[] + Describes the enrollment policy obtained from the specified URL. ## NOTES From 86c6a832dcafaf5f2df1d6b8c6ebd3c8d6914efe Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Sat, 29 Apr 2023 21:40:46 -0400 Subject: [PATCH 650/965] Fix formatting for Get-CertificateEnrollmentPolicyServer. --- .../pki/Get-CertificateEnrollmentPolicyServer.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/pki/Get-CertificateEnrollmentPolicyServer.md b/docset/winserver2022-ps/pki/Get-CertificateEnrollmentPolicyServer.md index c8815acc90..f3f011ccb1 100644 --- a/docset/winserver2022-ps/pki/Get-CertificateEnrollmentPolicyServer.md +++ b/docset/winserver2022-ps/pki/Get-CertificateEnrollmentPolicyServer.md @@ -42,7 +42,12 @@ configuration, Group Policy, and local policy for the user context. ### EXAMPLE 2 ```powershell -Get-CertificateEnrollmentPolicyServer -Url http://www.contoso.com/Policy/service.svc -Scope All -Context Machine +$params = @{ + Url = 'http://www.contoso.com/Policy/service.svc' + Scope = 'All' + Context = 'Machine' +} +Get-CertificateEnrollmentPolicyServer @params ``` This example returns all of the enrollment policy URL configurations that have the given URL for the @@ -134,4 +139,3 @@ Describes the enrollment policy obtained from the specified URL. [Add-CertificateEnrollmentPolicyServer](./Add-CertificateEnrollmentPolicyServer.md) [Remove-CertificateNotificationTask](./Remove-CertificateNotificationTask.md) - From 1a63720a91006363fa1dc6086fc9ac866176f7c7 Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Sat, 29 Apr 2023 21:42:30 -0400 Subject: [PATCH 651/965] Fix formatting for Get-CertificateNotificationTask. --- .../pki/Get-CertificateNotificationTask.md | 25 +++++++++++++------ 1 file changed, 18 insertions(+), 7 deletions(-) diff --git a/docset/winserver2022-ps/pki/Get-CertificateNotificationTask.md b/docset/winserver2022-ps/pki/Get-CertificateNotificationTask.md index d48b789be6..0b65483f34 100644 --- a/docset/winserver2022-ps/pki/Get-CertificateNotificationTask.md +++ b/docset/winserver2022-ps/pki/Get-CertificateNotificationTask.md @@ -11,6 +11,7 @@ title: Get-CertificateNotificationTask # Get-CertificateNotificationTask ## SYNOPSIS + Returns all registered certificate notification tasks. ## SYNTAX @@ -20,31 +21,42 @@ Get-CertificateNotificationTask [] ``` ## DESCRIPTION -The **Get-CertificateNotificationTask** cmdlet returns all certificate notification tasks currently registered by the New-CertificateNotificationTask cmdlet. + +The `Get-CertificateNotificationTask` cmdlet returns all certificate notification tasks currently +registered by the `New-CertificateNotificationTask` cmdlet. ## EXAMPLES ### EXAMPLE 1 -``` -PS C:\>Get-CertificateNotificationTask + +```powershell +Get-CertificateNotificationTask ``` -This example gets all certificate notification tasks currently registered by the New-CertificateNotificationTask cmdlet. +This example gets all certificate notification tasks currently registered by the +`New-CertificateNotificationTask` cmdlet. ## PARAMETERS ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### None + None ## OUTPUTS ### Microsoft.CertificateServices.Command.CertificateNotificationTask -This cmdlet returns a **CertificateNotificationTask** object for each certificate notification task that is currently registered by the New-CertificateNotificationTask cmdlet. + +This cmdlet returns a **CertificateNotificationTask** object for each certificate notification task +that is currently registered by the `New-CertificateNotificationTask` cmdlet. ## NOTES @@ -55,4 +67,3 @@ This cmdlet returns a **CertificateNotificationTask** object for each certificat [Remove-CertificateNotificationTask](./Remove-CertificateNotificationTask.md) [Switch-Certificate](./Switch-Certificate.md) - From 6220a08167cc6af5fa72948d3f67e3dcdc6a140f Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Sat, 29 Apr 2023 21:47:04 -0400 Subject: [PATCH 652/965] Fix formatting for Get-PfxData. --- docset/winserver2022-ps/pki/Get-PfxData.md | 45 ++++++++++++++-------- 1 file changed, 30 insertions(+), 15 deletions(-) diff --git a/docset/winserver2022-ps/pki/Get-PfxData.md b/docset/winserver2022-ps/pki/Get-PfxData.md index 0c1367f369..3d57144897 100644 --- a/docset/winserver2022-ps/pki/Get-PfxData.md +++ b/docset/winserver2022-ps/pki/Get-PfxData.md @@ -11,7 +11,9 @@ title: Get-PfxData # Get-PfxData ## SYNOPSIS -Extracts the content of a Personal Information Exchange (PFX) file into a structure without importing it to certificate store. + +Extracts the content of a Personal Information Exchange (PFX) file into a structure without +importing it to certificate store. ## SYNTAX @@ -20,37 +22,44 @@ Get-PfxData [-Password ] [-FilePath] [] ``` ## DESCRIPTION -The **Get-PfxData** cmdlet extracts the content of a Personal Information Exchange (PFX) file into a structure that contains the end entity certificate, any intermediate and root certificates. + +The `Get-PfxData` cmdlet extracts the content of a Personal Information Exchange (PFX) file into a +structure that contains the end entity certificate, and any intermediate and root certificates. ## EXAMPLES ### EXAMPLE 1 -``` -PS C:\>$mypwd = ConvertTo-SecureString -String "1234" -Force -AsPlainText -PS C:\>$mypfx = Get-PfxData -FilePath C:\mypfx.pfx -Password $mypwd +```powershell +$mypwd = ConvertTo-SecureString -String '1234' -Force -AsPlainText + +$mypfx = Get-PfxData -FilePath C:\mypfx.pfx -Password $mypwd ``` -This example returns certificate information for the file mypfx.pfx located on the C: drive that is secured with the specified password. +This example returns certificate information for the file `C:\mypfx.pfx` that is secured with the +specified password. ### EXAMPLE 2 -``` -PS C:\>$NewPwd = ConvertTo-SecureString -String "abcd" -Force -AsPlainText -PS C:\>$mypfx = Get-PfxData -FilePath C:\mypfx.pfx -Password $OldPwd +```powershell +$NewPwd = ConvertTo-SecureString -String 'abcd' -Force -AsPlainText + +$mypfx = Get-PfxData -FilePath C:\mypfx.pfx -Password $OldPwd -PS C:\>Export-PfxCertificate -PfxData $mypfx -FilePath C:\mypfx.pfx -Password $NewPwd -Force +Export-PfxCertificate -PfxData $mypfx -FilePath C:\mypfx.pfx -Password $NewPwd -Force ``` -This example shows how one can change an existing password for mypfx.pfx file from $OldPwd to $NewPwd. +This example shows how one can change an existing password for `mypfx.pfx` file from `$OldPwd` to +`$NewPwd`. ## PARAMETERS ### -FilePath + Specifies the path to the PFX file. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: FullName @@ -62,10 +71,11 @@ Accept wildcard characters: False ``` ### -Password + Specifies the password for the imported PFX file. ```yaml -Type: SecureString +Type: System.SecureString Parameter Sets: (All) Aliases: @@ -77,16 +87,22 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### System.String + A string containing the path to PFX file. ## OUTPUTS ### Microsoft.CertificateServices.Commands.PFXData + A **PFXData** object. ## NOTES @@ -96,4 +112,3 @@ A **PFXData** object. [ConvertTo-SecureString](https://go.microsoft.com/fwlink/p/?LinkID=293933) [Export-PfxCertificate](./Export-PfxCertificate.md) - From 323fc63e2f26f34b16eb48f5c88f423cb95b25a5 Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Sat, 29 Apr 2023 21:59:12 -0400 Subject: [PATCH 653/965] Because PowerShell-Docs style does not specify inline file extension style, removed backticks to comply with Microsoft style shown here: https://learn.microsoft.com/en-us/style-guide/text-formatting/formatting-common-text-elements --- docset/winserver2022-ps/pki/Export-Certificate.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docset/winserver2022-ps/pki/Export-Certificate.md b/docset/winserver2022-ps/pki/Export-Certificate.md index dc9e2b3a0b..20fc54804e 100644 --- a/docset/winserver2022-ps/pki/Export-Certificate.md +++ b/docset/winserver2022-ps/pki/Export-Certificate.md @@ -49,7 +49,7 @@ $cert = Get-ChildItem -Path Cert:\CurrentUser\My\EEDEF61D4FF6EDBAAD538BB08CCAADD Export-Certificate -Cert $cert -FilePath C:\Certs\user.cer ``` -This example exports a certificate to the file system as a DER-encoded `.cer` file without its +This example exports a certificate to the file system as a DER-encoded .cer file without its private key. ### EXAMPLE 3 @@ -60,7 +60,7 @@ $cert = Get-ChildItem -Path Cert:\CurrentUser\My\EEDEF61D4FF6EDBAAD538BB08CCAADD Export-Certificate -Cert $cert -FilePath C:\Certs\user.p7b -Type p7b ``` -This example exports a certificate to the file system as a PKCS#7-formatted `.p7b` file without its +This example exports a certificate to the file system as a PKCS#7-formatted .p7b file without its private key. ### EXAMPLE 4 @@ -165,10 +165,10 @@ Accept wildcard characters: False Specifies the type of output file for the certificate export as follows. - -- `SST`: A Microsoft serialized certificate store (`.sst`) file format which can contain one or + -- `SST`: A Microsoft serialized certificate store (.sst) file format which can contain one or more certificates. This is the default value for multiple certificates. - -- `CERT`: A `.cer` file format which contains a single DER-encoded certificate. This is the + -- `CERT`: A .cer file format which contains a single DER-encoded certificate. This is the default value for one certificate. -- `P7B`: A PKCS#7 file format which can contain one or more certificates. From 2a016e24afad07129115569ae3e32e70fae7ab90 Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Sat, 29 Apr 2023 21:59:37 -0400 Subject: [PATCH 654/965] Fix formatting for Export-PfxCertificate. --- docset/winserver2022-ps/pki/Export-PfxCertificate.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/docset/winserver2022-ps/pki/Export-PfxCertificate.md b/docset/winserver2022-ps/pki/Export-PfxCertificate.md index 28ea17d163..759130382e 100644 --- a/docset/winserver2022-ps/pki/Export-PfxCertificate.md +++ b/docset/winserver2022-ps/pki/Export-PfxCertificate.md @@ -47,7 +47,7 @@ user configuration. ### EXAMPLE 1 ```powershell -$mypwd = ConvertTo-SecureString -String "1234" -Force -AsPlainText +$mypwd = ConvertTo-SecureString -String '1234' -Force -AsPlainText Get-ChildItem -Path Cert:\LocalMachine\My\5F98EBBFE735CDDAE00E33E0FD69050EF9220254 | Export-PfxCertificate -FilePath C:\mypfx.pfx -Password $mypwd @@ -59,7 +59,7 @@ entire chain and all external properties. ### EXAMPLE 2 ```powershell -$mypwd = ConvertTo-SecureString -String "1234" -Force -AsPlainText +$mypwd = ConvertTo-SecureString -String '1234' -Force -AsPlainText Get-ChildItem -Path Cert:\LocalMachine\My | Export-PfxCertificate -FilePath C:\mypfx.pfx -Password $mypwd @@ -71,7 +71,7 @@ This example exports all certificates under the My store for the machine account ### EXAMPLE 3 ``` powershell -$mypwd = ConvertTo-SecureString -String "1234" -Force -AsPlainText +$mypwd = ConvertTo-SecureString -String '1234' -Force -AsPlainText $params = @{ Cert = 'Cert:\CurrentUser\My\5F98EBBFE735CDDAE00E33E0FD69050EF9220254' @@ -108,7 +108,7 @@ required for key distribution. ```powershell $a = Get-ChildItem -Path Cert:\LocalMachine\My -$mypwd = ConvertTo-SecureString -String "1234" -Force -AsPlainText +$mypwd = ConvertTo-SecureString -String '1234' -Force -AsPlainText $params = @{ Cert = $a[1] @@ -126,7 +126,7 @@ password. A Windows Server 2012 or later domain controller is required for key d ### EXAMPLE 6 ```powershell -$NewPwd = ConvertTo-SecureString -String "abcd" -Force -AsPlainText +$NewPwd = ConvertTo-SecureString -String 'abcd' -Force -AsPlainText $mypfx = Get-PfxData -FilePath C:\mypfx.pfx -Password $Oldpwd @@ -254,6 +254,7 @@ Accept wildcard characters: False ``` ### -NoClobber + Specifies that if the PFX file already exists, it should not be over written. This parameter takes precedence over the **Force** parameter, which permits this cmdlet to overwrite a PFX file even if it has the Read-only attribute set. @@ -323,6 +324,7 @@ Accept wildcard characters: False ``` ### -ProtectTo + Specifies an array of strings for the username or group name that can access the private key of PFX file without any password. This requires a Windows Server 2012 or later domain controller. Either the **Password** or this parameter must be specified, or an error will be displayed. From 5c83c640952826a84f606da979b7fe332e8d8eed Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Sat, 29 Apr 2023 22:05:35 -0400 Subject: [PATCH 655/965] Fix formatting for Import-Certificate. --- .../pki/Import-Certificate.md | 66 +++++++++++++------ 1 file changed, 45 insertions(+), 21 deletions(-) diff --git a/docset/winserver2022-ps/pki/Import-Certificate.md b/docset/winserver2022-ps/pki/Import-Certificate.md index 8e2d6d11d5..962d72fe70 100644 --- a/docset/winserver2022-ps/pki/Import-Certificate.md +++ b/docset/winserver2022-ps/pki/Import-Certificate.md @@ -11,51 +11,66 @@ title: Import-Certificate # Import-Certificate ## SYNOPSIS + Imports one or more certificates into a certificate store. ## SYNTAX ``` -Import-Certificate [-FilePath] [-CertStoreLocation ] [-WhatIf] [-Confirm] [] +Import-Certificate [-FilePath] [-CertStoreLocation ] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION -The **Import-Certificate** cmdlet imports one or more certificates into a certificate store. + +The `Import-Certificate` cmdlet imports one or more certificates into a certificate store. ## EXAMPLES ### EXAMPLE 1 -``` -Import-Certificate -FilePath "C:\Users\xyz\Desktop\BackupCert.Cer" -CertStoreLocation cert:\CurrentUser\Root + +```powershell +$params = @{ + FilePath = 'C:\Users\Xyz\Desktop\BackupCert.cer' + CertStoreLocations = 'Cert:\CurrentUser\Root' +} +Import-Certificate @params ``` This example imports the certificate from the file into the root store of the current user. ### EXAMPLE 2 -``` -PS C:\>Set-Location -Path cert:\CurrentUser\My -PS cert:\CurrentUser\My>Import-Certificate -Filepath "C:\files\intermediate.cert" +```powershell +Set-Location -Path cert:\CurrentUser\My + +PS Cert:\CurrentUser\My> Import-Certificate -Filepath 'C:\files\intermediate.cert' ``` This example imports the certificate from the file into the current store. ### EXAMPLE 3 -``` -Import-Certificate -FilePath "C:\Users\Xyz\Desktop\BackupCert.Cer" -CertStoreLocation Cert:\LocalMachine\Root + +```powershell +$params = @{ + FilePath = 'C:\Users\Xyz\Desktop\BackupCert.cer' + CertStoreLocation = 'Cert:\LocalMachine\Root' +} +Import-Certificate @params ``` -This example imports the certificate from the file into the root store of the Local Machine. +This example imports the certificate from the file into the root store of the local machine. ## PARAMETERS ### -CertStoreLocation -Specifies the path to the certificate store where the certificates will be imported. -If the path to the certificate store is not specified, then the current store is used. -In order to get a list of valid CertStoreLocation values, open Powershell and run "cd cert:". Afterwards type "dir". + +Specifies the path to the certificate store where the certificates will be imported. If the path to +the certificate store is not specified, then the current store is used. In order to get a list of +valid **CertStoreLocation** values, open PowerShell and run `Get-ChildItem Cert:\`. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -67,10 +82,11 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -82,12 +98,13 @@ Accept wildcard characters: False ``` ### -FilePath -Specifies the path to a certificate file to be imported. -Acceptable formats include .sst, .p7b, and .cert files. -If the file contains multiple certificates, then each certificate will be imported to the destination store. + +Specifies the path to a certificate file to be imported. Acceptable formats include .sst, .p7b, and +.cert files. If the file contains multiple certificates, then each certificate will be imported to +the destination store. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: FullName @@ -99,11 +116,12 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -115,16 +133,22 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### System.String + A **String** containing the file path. ## OUTPUTS ### System.Security.Cryptography.X509Certificates.X509Certificate2[] + The output is an array of **X509Certificate2\[\]** objects. ## NOTES From 7dda92c12a86f8f7833347f32a4a0a701f544f7f Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Sat, 29 Apr 2023 22:13:04 -0400 Subject: [PATCH 656/965] Fix formatting for Import-PfxCertificate. --- .../pki/Import-PfxCertificate.md | 94 ++++++++++++------- 1 file changed, 62 insertions(+), 32 deletions(-) diff --git a/docset/winserver2022-ps/pki/Import-PfxCertificate.md b/docset/winserver2022-ps/pki/Import-PfxCertificate.md index 2dc4e20eda..d2c909bd53 100644 --- a/docset/winserver2022-ps/pki/Import-PfxCertificate.md +++ b/docset/winserver2022-ps/pki/Import-PfxCertificate.md @@ -11,59 +11,77 @@ title: Import-PfxCertificate # Import-PfxCertificate ## SYNOPSIS -Imports certificates and private keys from a Personal Information Exchange (PFX) file to the destination store. + +Imports certificates and private keys from a Personal Information Exchange (PFX) file to the +destination store. ## SYNTAX ``` -Import-PfxCertificate [-Exportable] [-Password ] [[-CertStoreLocation] ] - [-FilePath] [-WhatIf] [-Confirm] [] +Import-PfxCertificate [-Exportable] [-Password ] + [[-CertStoreLocation] ] [-FilePath] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION -The **Import-PfxCertificate** cmdlet imports certificates and private keys from a PFX file to the destination store. -Certificates with and without private keys in the PFX file are imported, along with any external properties that are present. -Delegation may be required when using this cmdlet with Windows PowerShell® remoting and changing user configuration. +The `Import-PfxCertificate` cmdlet imports certificates and private keys from a PFX file to the +destination store. Certificates with and without private keys in the PFX file are imported, along +with any external properties that are present. + +Delegation may be required when using this cmdlet with Windows PowerShell remoting and changing user +configuration. ## EXAMPLES ### EXAMPLE 1 -``` -PS C:\>$mypwd = Get-Credential -UserName 'Enter password below' -Message 'Enter password below' -PS C:\>Import-PfxCertificate -FilePath C:\mypfx.pfx -CertStoreLocation Cert:\LocalMachine\My -Password $mypwd.Password +```powershell +$mypwd = Get-Credential -UserName 'Enter password below' -Message 'Enter password below' + +$params = @{ + FilePath = 'C:\mypfx.pfx' + CertStoreLocation = 'Cert:\LocalMachine\My' + Password = $mypwd.Password +} +Import-PfxCertificate @params ``` -This example imports the PFX file my.pfx with a private non-exportable key into the My store for the machine account. +This example imports the PFX file `mypfx.pfx` with a private, non-exportable key into the My store +for the machine account. ### EXAMPLE 2 -``` -PS C:\>Get-ChildItem -Path c:\mypfx\my.pfx | Import-PfxCertificate -CertStoreLocation Cert:\CurrentUser\My -Exportable + +```powershell +Get-ChildItem -Path C:\mypfx.pfx | + Import-PfxCertificate -CertStoreLocation Cert:\CurrentUser\My -Exportable ``` -This example imports the PFX file my.pfx with a private non-exportable key into the My store for the current user with private key exportable. -The **Password** parameter is not required since this PFX file is not password protected. +This example imports the PFX file `mypfx.pfx` with a private, exportable key into the My store for +the current user. The **Password** parameter is not required since this PFX file is not password +protected. ### EXAMPLE 3 -``` -PS C:\>Set-Location -Path cert:\localMachine\my -PS Cert:\localMachine\my>Import-PfxCertificate -FilePath c:\mypfx.pfx +```powershell +Set-Location -Path Cert:\LocalMachine\My + +PS Cert:\LocalMachine\My> Import-PfxCertificate -FilePath C:\mypfx.pfx ``` -This example imports the PFX file mypfx.pfx into the My store for the machine account. -The **Password** parameter is not required since this PFX file is protected using the domain account of this machine. -This requires a Windows Server® 2012 domain controller. +This example imports the PFX file `mypfx.pfx` into the My store for the machine account. The +**Password** parameter is not required since this PFX file is protected using the domain account of +this machine. This requires a Windows Server 2012 or later domain controller. ## PARAMETERS ### -CertStoreLocation -Specifies the path of the store to which certificates will be imported. -If this parameter is not specified, then the current path is used as the destination store. + +Specifies the path of the store to which certificates will be imported. If this parameter is not +specified, then the current path is used as the destination store. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -75,10 +93,11 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -90,11 +109,12 @@ Accept wildcard characters: False ``` ### -Exportable -Specifies whether the imported private key can be exported. -If this parameter is not specified, then the private key cannot be exported. + +Specifies whether the imported private key can be exported. If this parameter is not specified, then +the private key cannot be exported. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -106,10 +126,11 @@ Accept wildcard characters: False ``` ### -FilePath + Specifies the path for the PFX file. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: FullName @@ -121,10 +142,11 @@ Accept wildcard characters: False ``` ### -Password + Specifies the password for the imported PFX file in the form of a secure string. ```yaml -Type: SecureString +Type: System.SecureString Parameter Sets: (All) Aliases: @@ -136,11 +158,12 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -152,17 +175,24 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### System.String + A **String** containing the path to the PFX file. ## OUTPUTS ### System.Security.Cryptography.X509Certificates.X509Certificate2 -The imported **X509Certificate2** object contained in the PFX file that is associated with private keys. + +The imported **X509Certificate2** object contained in the PFX file that is associated with private +keys. ## NOTES From 85bd04ac61ca93e391e77f13472f623c62a5d211 Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Sat, 29 Apr 2023 22:30:30 -0400 Subject: [PATCH 657/965] Update docset/winserver2022-ps/pki/Get-CertificateAutoEnrollmentPolicy.md --- .../winserver2022-ps/pki/Get-CertificateAutoEnrollmentPolicy.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/pki/Get-CertificateAutoEnrollmentPolicy.md b/docset/winserver2022-ps/pki/Get-CertificateAutoEnrollmentPolicy.md index 8c3265710b..de9653e7f0 100644 --- a/docset/winserver2022-ps/pki/Get-CertificateAutoEnrollmentPolicy.md +++ b/docset/winserver2022-ps/pki/Get-CertificateAutoEnrollmentPolicy.md @@ -23,7 +23,7 @@ Get-CertificateAutoEnrollmentPolicy -Scope -Context ## DESCRIPTION -The **Get-CertificateAutoEnrollmentPolicy** cmdlet gets certificate auto-enrollment policy settings +The `Get-CertificateAutoEnrollmentPolicy` cmdlet gets certificate auto-enrollment policy settings for the user or computer. This cmdlet can return the settings configured in local policy or that are being applied from either local or domain policy. From e4812008327b3d6de0c3118379606f28b89d19a0 Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Mon, 1 May 2023 22:57:42 -0400 Subject: [PATCH 658/965] Update docset/winserver2022-ps/pki/Export-Certificate.md Co-authored-by: Mikey Lombardi (He/Him) --- docset/winserver2022-ps/pki/Export-Certificate.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/pki/Export-Certificate.md b/docset/winserver2022-ps/pki/Export-Certificate.md index 20fc54804e..21420acbcc 100644 --- a/docset/winserver2022-ps/pki/Export-Certificate.md +++ b/docset/winserver2022-ps/pki/Export-Certificate.md @@ -60,7 +60,7 @@ $cert = Get-ChildItem -Path Cert:\CurrentUser\My\EEDEF61D4FF6EDBAAD538BB08CCAADD Export-Certificate -Cert $cert -FilePath C:\Certs\user.p7b -Type p7b ``` -This example exports a certificate to the file system as a PKCS#7-formatted .p7b file without its +This example exports a certificate to the file system as a PKCS#7-formatted `.p7b` file without its private key. ### EXAMPLE 4 From e5fdef0a9546895a1061a50dc196f20a11ab847c Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Mon, 1 May 2023 22:57:53 -0400 Subject: [PATCH 659/965] Update docset/winserver2022-ps/pki/Export-Certificate.md Co-authored-by: Mikey Lombardi (He/Him) --- docset/winserver2022-ps/pki/Export-Certificate.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docset/winserver2022-ps/pki/Export-Certificate.md b/docset/winserver2022-ps/pki/Export-Certificate.md index 21420acbcc..ba64eb6c76 100644 --- a/docset/winserver2022-ps/pki/Export-Certificate.md +++ b/docset/winserver2022-ps/pki/Export-Certificate.md @@ -165,9 +165,8 @@ Accept wildcard characters: False Specifies the type of output file for the certificate export as follows. - -- `SST`: A Microsoft serialized certificate store (.sst) file format which can contain one or - more certificates. This is the default value for multiple certificates. - +- `SST`: A Microsoft serialized certificate store (`.sst`) file format which can contain one or + more certificates. This is the default value for multiple certificates. -- `CERT`: A .cer file format which contains a single DER-encoded certificate. This is the default value for one certificate. From e16b1c9206b2d0464053ee937fcd5dc698564cc1 Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Mon, 1 May 2023 22:58:32 -0400 Subject: [PATCH 660/965] Update docset/winserver2022-ps/pki/Export-PfxCertificate.md Co-authored-by: Mikey Lombardi (He/Him) --- docset/winserver2022-ps/pki/Export-PfxCertificate.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/pki/Export-PfxCertificate.md b/docset/winserver2022-ps/pki/Export-PfxCertificate.md index 759130382e..47dc4faf63 100644 --- a/docset/winserver2022-ps/pki/Export-PfxCertificate.md +++ b/docset/winserver2022-ps/pki/Export-PfxCertificate.md @@ -36,7 +36,7 @@ Export-PfxCertificate [-NoProperties] [-NoClobber] [-Force] ## DESCRIPTION -The `Export-PfxCertificate`` cmdlet exports a certificate or a **PFXData** object to a Personal +The `Export-PfxCertificate` cmdlet exports a certificate or a **PFXData** object to a Personal Information Exchange (PFX) file. By default, extended properties and the entire chain are exported. Delegation may be required when using this cmdlet with Windows PowerShell remoting and changing From 80d22d7d8c149715da8ff0217c2f1a3ad8564d4f Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Mon, 1 May 2023 22:58:40 -0400 Subject: [PATCH 661/965] Update docset/winserver2022-ps/pki/Export-PfxCertificate.md Co-authored-by: Mikey Lombardi (He/Him) --- docset/winserver2022-ps/pki/Export-PfxCertificate.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docset/winserver2022-ps/pki/Export-PfxCertificate.md b/docset/winserver2022-ps/pki/Export-PfxCertificate.md index 47dc4faf63..2b5038ed05 100644 --- a/docset/winserver2022-ps/pki/Export-PfxCertificate.md +++ b/docset/winserver2022-ps/pki/Export-PfxCertificate.md @@ -162,9 +162,8 @@ The acceptable values for this parameter are: the export. This option is valid for both **PfxData** and **Cert** parameters. In the case of **PfxData** parameter, the collection of all PFX certificates will be used as an additional store. - -- `EndEntityCertOnly`: Only end entity certificates are exported without any chain. This option is - valid for both the **PfxData** and the **Cert** parameters. - +- `EndEntityCertOnly`: Only end entity certificates are exported without any chain. This option is + valid for both the **PfxData** and the **Cert** parameters. -- `PfxDataOnly`: Certificates contained in **PFXData** objects will be exported with no chain building. This option is only valid when the **PfxData** parameter is used. From 7d0767d7219672e5e447d354913ca8ead0b9f35b Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Mon, 1 May 2023 22:59:04 -0400 Subject: [PATCH 662/965] Update docset/winserver2022-ps/pki/Export-PfxCertificate.md Co-authored-by: Mikey Lombardi (He/Him) --- docset/winserver2022-ps/pki/Export-PfxCertificate.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docset/winserver2022-ps/pki/Export-PfxCertificate.md b/docset/winserver2022-ps/pki/Export-PfxCertificate.md index 2b5038ed05..2bca53dede 100644 --- a/docset/winserver2022-ps/pki/Export-PfxCertificate.md +++ b/docset/winserver2022-ps/pki/Export-PfxCertificate.md @@ -158,10 +158,10 @@ Accept wildcard characters: False Specifies the options for building a chain when exporting certificates. The acceptable values for this parameter are: - -- `BuildChain`: Certificate chain for all end entity certificates will be built and included in - the export. This option is valid for both **PfxData** and **Cert** parameters. In the case of - **PfxData** parameter, the collection of all PFX certificates will be used as an additional store. - +- `BuildChain`: Certificate chain for all end entity certificates will be built and included in the + export. This option is valid for both **PfxData** and **Cert** parameters. In the case of + **PfxData** parameter, the collection of all PFX certificates will be used as an additional + store. - `EndEntityCertOnly`: Only end entity certificates are exported without any chain. This option is valid for both the **PfxData** and the **Cert** parameters. -- `PfxDataOnly`: Certificates contained in **PFXData** objects will be exported with no chain From da8bbb710cdd728bf2cc05d6fce58abf994971b1 Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Mon, 1 May 2023 22:59:22 -0400 Subject: [PATCH 663/965] Update docset/winserver2022-ps/pki/Export-PfxCertificate.md Co-authored-by: Mikey Lombardi (He/Him) --- docset/winserver2022-ps/pki/Export-PfxCertificate.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/pki/Export-PfxCertificate.md b/docset/winserver2022-ps/pki/Export-PfxCertificate.md index 2bca53dede..ba2e88dece 100644 --- a/docset/winserver2022-ps/pki/Export-PfxCertificate.md +++ b/docset/winserver2022-ps/pki/Export-PfxCertificate.md @@ -164,8 +164,8 @@ The acceptable values for this parameter are: store. - `EndEntityCertOnly`: Only end entity certificates are exported without any chain. This option is valid for both the **PfxData** and the **Cert** parameters. - -- `PfxDataOnly`: Certificates contained in **PFXData** objects will be exported with no chain - building. This option is only valid when the **PfxData** parameter is used. +- `PfxDataOnly`: Certificates contained in **PFXData** objects will be exported with no chain + building. This option is only valid when the **PfxData** parameter is used. ```yaml Type: Microsoft.CertificateServices.Commands.ExportChainOption From 8601c797173869c21acc6c15ac11af3334d56d05 Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Mon, 1 May 2023 22:59:35 -0400 Subject: [PATCH 664/965] Update docset/winserver2022-ps/pki/Get-Certificate.md Co-authored-by: Mikey Lombardi (He/Him) --- docset/winserver2022-ps/pki/Get-Certificate.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/pki/Get-Certificate.md b/docset/winserver2022-ps/pki/Get-Certificate.md index 749b04a33e..ae029a76b8 100644 --- a/docset/winserver2022-ps/pki/Get-Certificate.md +++ b/docset/winserver2022-ps/pki/Get-Certificate.md @@ -155,7 +155,9 @@ Interactive mode). Specifies the path to the certificate store for the received certificate. If the request is made pending, then the request object is saved in the corresponding request store. -Note: Only `My` store is supported. + +> [!NOTE] +> Only `My` store is supported. ```yaml Type: System.String From 8aab11e7c1015ecf031802a54f31b8e191c50fc4 Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Mon, 1 May 2023 22:59:54 -0400 Subject: [PATCH 665/965] Update docset/winserver2022-ps/pki/Import-Certificate.md Co-authored-by: Mikey Lombardi (He/Him) --- docset/winserver2022-ps/pki/Import-Certificate.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docset/winserver2022-ps/pki/Import-Certificate.md b/docset/winserver2022-ps/pki/Import-Certificate.md index 962d72fe70..0ceb31dd7a 100644 --- a/docset/winserver2022-ps/pki/Import-Certificate.md +++ b/docset/winserver2022-ps/pki/Import-Certificate.md @@ -99,9 +99,9 @@ Accept wildcard characters: False ### -FilePath -Specifies the path to a certificate file to be imported. Acceptable formats include .sst, .p7b, and -.cert files. If the file contains multiple certificates, then each certificate will be imported to -the destination store. +Specifies the path to a certificate file to be imported. Acceptable formats include `.sst`, `.p7b`, +and `.cert` files. If the file contains multiple certificates, then each certificate will be +imported to the destination store. ```yaml Type: System.String From 5deff81ebeacbb39f96ceefb53084d1eef8f6200 Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Mon, 1 May 2023 23:38:58 -0400 Subject: [PATCH 666/965] Added backticks around file extensions. Removed extra line break after Synopsis. Removed PowerShell prompts from examples where Set-Location is used to change the location to a cert store. --- docset/winserver2022-ps/pki/Export-Certificate.md | 7 +++---- docset/winserver2022-ps/pki/Export-PfxCertificate.md | 6 ++---- docset/winserver2022-ps/pki/Get-Certificate.md | 6 ++---- .../pki/Get-CertificateAutoEnrollmentPolicy.md | 1 - .../pki/Get-CertificateEnrollmentPolicyServer.md | 1 - .../pki/Get-CertificateNotificationTask.md | 1 - docset/winserver2022-ps/pki/Get-PfxData.md | 1 - docset/winserver2022-ps/pki/Import-Certificate.md | 3 +-- docset/winserver2022-ps/pki/Import-PfxCertificate.md | 3 +-- 9 files changed, 9 insertions(+), 20 deletions(-) diff --git a/docset/winserver2022-ps/pki/Export-Certificate.md b/docset/winserver2022-ps/pki/Export-Certificate.md index ba64eb6c76..ebd70056c4 100644 --- a/docset/winserver2022-ps/pki/Export-Certificate.md +++ b/docset/winserver2022-ps/pki/Export-Certificate.md @@ -11,7 +11,6 @@ title: Export-Certificate # Export-Certificate ## SYNOPSIS - Exports a certificate from a certificate store into a file. ## SYNTAX @@ -49,7 +48,7 @@ $cert = Get-ChildItem -Path Cert:\CurrentUser\My\EEDEF61D4FF6EDBAAD538BB08CCAADD Export-Certificate -Cert $cert -FilePath C:\Certs\user.cer ``` -This example exports a certificate to the file system as a DER-encoded .cer file without its +This example exports a certificate to the file system as a DER-encoded `.cer` file without its private key. ### EXAMPLE 3 @@ -167,10 +166,10 @@ Specifies the type of output file for the certificate export as follows. - `SST`: A Microsoft serialized certificate store (`.sst`) file format which can contain one or more certificates. This is the default value for multiple certificates. - -- `CERT`: A .cer file format which contains a single DER-encoded certificate. This is the +- `CERT`: A `.cer` file format which contains a single DER-encoded certificate. This is the default value for one certificate. - -- `P7B`: A PKCS#7 file format which can contain one or more certificates. +- `P7B`: A PKCS#7 file format which can contain one or more certificates. ```yaml Type: Microsoft.CertificateServices.Commands.CertType diff --git a/docset/winserver2022-ps/pki/Export-PfxCertificate.md b/docset/winserver2022-ps/pki/Export-PfxCertificate.md index ba2e88dece..66bcf66b4b 100644 --- a/docset/winserver2022-ps/pki/Export-PfxCertificate.md +++ b/docset/winserver2022-ps/pki/Export-PfxCertificate.md @@ -11,7 +11,6 @@ title: Export-PfxCertificate # Export-PfxCertificate ## SYNOPSIS - Exports a certificate or a PFXData object to a Personal Information Exchange (PFX) file. ## SYNTAX @@ -201,9 +200,8 @@ Accept wildcard characters: False Specifies the algorithm for encrypting private keys within the PFX file. If this parameter is not specified, the default is `TripleDES_SHA1`. The acceptable values for this parameter are: --- `TripleDES_SHA1`: Private keys will be encrypted in the PFX file using Triple DES encryption. - --- `AES256_SHA256`: Private keys will be encrypted in the PFX file using AES-256 encryption. +- `TripleDES_SHA1`: Private keys will be encrypted in the PFX file using Triple DES encryption. +- `AES256_SHA256`: Private keys will be encrypted in the PFX file using AES-256 encryption. ```yaml Type: Microsoft.CertificateServices.Commands.CryptoAlgorithmOptions diff --git a/docset/winserver2022-ps/pki/Get-Certificate.md b/docset/winserver2022-ps/pki/Get-Certificate.md index ae029a76b8..6131dcdcf3 100644 --- a/docset/winserver2022-ps/pki/Get-Certificate.md +++ b/docset/winserver2022-ps/pki/Get-Certificate.md @@ -11,7 +11,6 @@ title: Get-Certificate # Get-Certificate ## SYNOPSIS - Submits a certificate request to an enrollment server and installs the response or retrieves a certificate for a previously submitted request. @@ -103,10 +102,9 @@ $params = @{ Template = 'WorkstationTemplate' Url = 'https://www.contoso.com/service.svc' } - Set-Location -Path Cert:\LocalMachine\My -PS Cert:\LocalMachine\My>$enrollResult = Get-Certificate @params +$enrollResult = Get-Certificate @params ``` This example authenticates the URL using the machine account and Windows integrated authentication @@ -117,7 +115,7 @@ and submits a request for a machine certificate of template named `WorkstationTe ```powershell Set-Location -Path Cert:\CurrentUser\My -PS Cert:\CurrentUser\My> Get-Certificate -Template User -Url ldap: +Get-Certificate -Template User -Url ldap: ``` This example uses Windows integrated authentication to enroll for a certificate of template `User` diff --git a/docset/winserver2022-ps/pki/Get-CertificateAutoEnrollmentPolicy.md b/docset/winserver2022-ps/pki/Get-CertificateAutoEnrollmentPolicy.md index de9653e7f0..34880d1b4b 100644 --- a/docset/winserver2022-ps/pki/Get-CertificateAutoEnrollmentPolicy.md +++ b/docset/winserver2022-ps/pki/Get-CertificateAutoEnrollmentPolicy.md @@ -11,7 +11,6 @@ title: Get-CertificateAutoEnrollmentPolicy # Get-CertificateAutoEnrollmentPolicy ## SYNOPSIS - Retrieves certificate auto-enrollment policy settings. ## SYNTAX diff --git a/docset/winserver2022-ps/pki/Get-CertificateEnrollmentPolicyServer.md b/docset/winserver2022-ps/pki/Get-CertificateEnrollmentPolicyServer.md index f3f011ccb1..3ca961a686 100644 --- a/docset/winserver2022-ps/pki/Get-CertificateEnrollmentPolicyServer.md +++ b/docset/winserver2022-ps/pki/Get-CertificateEnrollmentPolicyServer.md @@ -11,7 +11,6 @@ title: Get-CertificateEnrollmentPolicyServer # Get-CertificateEnrollmentPolicyServer ## SYNOPSIS - Returns all of the certificate enrollment policy server URL configurations. ## SYNTAX diff --git a/docset/winserver2022-ps/pki/Get-CertificateNotificationTask.md b/docset/winserver2022-ps/pki/Get-CertificateNotificationTask.md index 0b65483f34..63fb5f7b3d 100644 --- a/docset/winserver2022-ps/pki/Get-CertificateNotificationTask.md +++ b/docset/winserver2022-ps/pki/Get-CertificateNotificationTask.md @@ -11,7 +11,6 @@ title: Get-CertificateNotificationTask # Get-CertificateNotificationTask ## SYNOPSIS - Returns all registered certificate notification tasks. ## SYNTAX diff --git a/docset/winserver2022-ps/pki/Get-PfxData.md b/docset/winserver2022-ps/pki/Get-PfxData.md index 3d57144897..0708633fa0 100644 --- a/docset/winserver2022-ps/pki/Get-PfxData.md +++ b/docset/winserver2022-ps/pki/Get-PfxData.md @@ -11,7 +11,6 @@ title: Get-PfxData # Get-PfxData ## SYNOPSIS - Extracts the content of a Personal Information Exchange (PFX) file into a structure without importing it to certificate store. diff --git a/docset/winserver2022-ps/pki/Import-Certificate.md b/docset/winserver2022-ps/pki/Import-Certificate.md index 0ceb31dd7a..9f1f8e53e4 100644 --- a/docset/winserver2022-ps/pki/Import-Certificate.md +++ b/docset/winserver2022-ps/pki/Import-Certificate.md @@ -11,7 +11,6 @@ title: Import-Certificate # Import-Certificate ## SYNOPSIS - Imports one or more certificates into a certificate store. ## SYNTAX @@ -44,7 +43,7 @@ This example imports the certificate from the file into the root store of the cu ```powershell Set-Location -Path cert:\CurrentUser\My -PS Cert:\CurrentUser\My> Import-Certificate -Filepath 'C:\files\intermediate.cert' +Import-Certificate -Filepath 'C:\files\intermediate.cert' ``` This example imports the certificate from the file into the current store. diff --git a/docset/winserver2022-ps/pki/Import-PfxCertificate.md b/docset/winserver2022-ps/pki/Import-PfxCertificate.md index d2c909bd53..fda69491c9 100644 --- a/docset/winserver2022-ps/pki/Import-PfxCertificate.md +++ b/docset/winserver2022-ps/pki/Import-PfxCertificate.md @@ -11,7 +11,6 @@ title: Import-PfxCertificate # Import-PfxCertificate ## SYNOPSIS - Imports certificates and private keys from a Personal Information Exchange (PFX) file to the destination store. @@ -66,7 +65,7 @@ protected. ```powershell Set-Location -Path Cert:\LocalMachine\My -PS Cert:\LocalMachine\My> Import-PfxCertificate -FilePath C:\mypfx.pfx +Import-PfxCertificate -FilePath C:\mypfx.pfx ``` This example imports the PFX file `mypfx.pfx` into the My store for the machine account. The From 4d5f2ba3a5826f46fadd36dd8a103fda028bf965 Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Tue, 2 May 2023 08:50:32 -0400 Subject: [PATCH 667/965] Update docset/winserver2022-ps/pki/Export-PfxCertificate.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2022-ps/pki/Export-PfxCertificate.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/pki/Export-PfxCertificate.md b/docset/winserver2022-ps/pki/Export-PfxCertificate.md index 66bcf66b4b..b48b7c939c 100644 --- a/docset/winserver2022-ps/pki/Export-PfxCertificate.md +++ b/docset/winserver2022-ps/pki/Export-PfxCertificate.md @@ -252,7 +252,7 @@ Accept wildcard characters: False ### -NoClobber -Specifies that if the PFX file already exists, it should not be over written. This parameter takes +Specifies that if the PFX file already exists, it should not be overwritten. This parameter takes precedence over the **Force** parameter, which permits this cmdlet to overwrite a PFX file even if it has the Read-only attribute set. From ceabe4f5a81a7a637147b7d8b4754529ee8704c8 Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Sun, 30 Apr 2023 01:16:45 -0400 Subject: [PATCH 668/965] Fix formatting for New-CertificateNotificationTask. --- .../pki/New-CertificateNotificationTask.md | 131 ++++++++++++------ 1 file changed, 86 insertions(+), 45 deletions(-) diff --git a/docset/winserver2022-ps/pki/New-CertificateNotificationTask.md b/docset/winserver2022-ps/pki/New-CertificateNotificationTask.md index abca7edaca..5594149120 100644 --- a/docset/winserver2022-ps/pki/New-CertificateNotificationTask.md +++ b/docset/winserver2022-ps/pki/New-CertificateNotificationTask.md @@ -11,57 +11,82 @@ title: New-CertificateNotificationTask # New-CertificateNotificationTask ## SYNOPSIS -Creates a new task in the Task Scheduler that will be triggered when a certificate is replaced, expired, or about to expired. + +Creates a new task in the Task Scheduler that will be triggered when a certificate is replaced, +expired, or about to expired. ## SYNTAX ``` -New-CertificateNotificationTask -Type [-RunTaskForExistingCertificates] - -PSScript -Name -Channel [-WhatIf] [-Confirm] [] +New-CertificateNotificationTask -Type + [-RunTaskForExistingCertificates] -PSScript -Name + -Channel [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **New-CertificateNotificationTask** cmdlet creates a new task in the Task Scheduler that will be triggered when a certificate is replaced or expires. -The task will launch the script specified by the **PSScript** parameter. -If the **RunTaskForExistingCertificates** parameter is specified, then after this cmdlet is registered, the cmdlet will go through all certificates (including archived certificates) in the My store and initiate Replace events for all certificates with a Renewal property. -The NewCertHash value will always be the one at the end of the renewal chain. -For example; if certificate A was renewed to certificate B, which was then renewed to certificate C, then the cmdlet fires two events: certificate A to certificate C and certificate B to certificate C. -This will ensure that applications that are still using old certificates are properly updated to the newest certificates. +The `New-CertificateNotificationTask` cmdlet creates a new task in the Task Scheduler that will be +triggered when a certificate is replaced or expires. The task will launch the script specified by +the **PSScript** parameter. + +If the **RunTaskForExistingCertificates** parameter is specified, then after this cmdlet is +registered, the cmdlet will go through all certificates (including archived certificates) in the My +store and initiate `Replace` events for all certificates with a Renewal property. The `NewCertHash` +value will always be the one at the end of the renewal chain. For example; if certificate A was +renewed to certificate B, which was then renewed to certificate C, then the cmdlet fires two events: +certificate A to certificate C and certificate B to certificate C. This will ensure that +applications that are still using old certificates are properly updated to the newest certificates. If any certificate has a renewal chain longer than 20, then the certificate is not logged. ## EXAMPLES ### EXAMPLE 1 -``` -PS C:\>New-CertificateNotificationTask -PSScript C:\myscript.ps1 -Channel System -Type Replace -Name "My System Certificate Task" + +```powershell +$params = @{ + PSScript = 'C:\myscript.ps1' + Channel = 'System' + Type = 'Replace' + Name = 'My System Certificate Task' +} +New-CertificateNotificationTask @params ``` -This example creates a system notification task for certificate replacement events with the name My System Certificate Task that will launch the myscript.ps1 script located on the C: drive. -The cmdlet will run on the local system. +This example creates a system notification task for certificate replacement events with the name +`My System Certificate Task` that will launch the `C:\myscript.ps1` script. The cmdlet will run on +the local system. ### EXAMPLE 2 -``` -PS C:\>New-CertificateNotificationTask -PSScript C:\myscript.ps1 -Channel User -Type Expire -Name "My User Certificate Task" + +```powershell +$params = @{ + PSScript = 'C:\myscript.ps1' + Channel = 'User' + Type = 'Expire' + Name = 'My User Certificate Task' +} +New-CertificateNotificationTask @params ``` -This example creates a system notification task for the expiration and close-to-expiration certificate events with the name My User Certificate Task that will launch the myscript.ps1 script located on the C: drive. +This example creates a system notification task for the expiration and close-to-expiration +certificate events with the name `My User Certificate Task` that will launch the `C:\myscript.ps1`. The cmdlet will run for all currently logged on users in the user contexts. ## PARAMETERS ### -Channel -Sets the channel of the CertificateServicesClient-Notifications log that will be monitored for certificate lifecycle events. -The acceptable values for this parameter are: - -- System: The Operation-System channel will be used. -This channel should be used to modify system certificate bindings that use computer certificates. +Sets the channel of the **CertificateServicesClient-Notifications** log that will be monitored for +certificate lifecycle events. The acceptable values for this parameter are: + + -- `System`: The **Operation-System** channel will be used. This channel should be used to modify + system certificate bindings that use computer certificates. - -- User: The Operational-User channel will be used. -This channel should be used to modify user certificate bindings. + -- `User`: The **Operational-User** channel will be used. This channel should be used to modify + user certificate bindings. ```yaml -Type: NotificationChannel +Type: Microsoft.CertificateServices.Commands.NotificationChannel Parameter Sets: (All) Aliases: Accepted values: System, User @@ -74,10 +99,11 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -89,11 +115,12 @@ Accept wildcard characters: False ``` ### -Name -Specifies the unique name for the certificate notification task. -If a certificate notification task with the same name already exists, then an error is generated. + +Specifies the unique name for the certificate notification task. If a certificate notification task +with the same name already exists, then an error is generated. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -105,11 +132,12 @@ Accept wildcard characters: False ``` ### -PSScript -Identifies the Windows PowerShell® script that will be triggered by the certificate notification task. -The script will be launched with the **NonInteractive** parameter. + +Identifies the Windows PowerShell script that will be triggered by the certificate notification +task. The script will be launched with the **NonInteractive** parameter. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -121,16 +149,21 @@ Accept wildcard characters: False ``` ### -RunTaskForExistingCertificates -Generates a replacement notification for any certificate in the My store that has been replaced in the past. -For the notification to be generated both certificates must be present in the store. -This parameter can only be used with the Replace type. -Note: The following warning will be displayed when this cmdlet is run with this parameter set to False and there are some certificates in MY store that would have resulted in a notification. - -- `There are certificates in My store that have been replaced in the past. -You can use the New-CertificateNotification cmdlet with the RunTaskForExistingCerts parameter to generate notifications for those certificates to correct any configuration problems that you may already have on this machine.` +Generates a replacement notification for any certificate in the My store that has been replaced in +the past. For the notification to be generated both certificates must be present in the store. This +parameter can only be used with the `Replace` type. + +Note: The following warning will be displayed when this this parameter set to `False` and there are +some certificates in MY store that would have resulted in a notification. + + -- `There are certificates in My store that have been replaced in the past. You can use the + New-CertificateNotification cmdlet with the RunTaskForExistingCerts parameter to generate + notifications for those certificates to correct any configuration problems that you may already + have on this machine.` ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -142,15 +175,18 @@ Accept wildcard characters: False ``` ### -Type -Specifies the type of events that will trigger certificate notifications. -The acceptable values for this parameter are: - -- Replace: Certificate replacement events will trigger this notification, including certificates that are renewed by auto-enrollment, using the Certificates snap-in, or by using the Switch-Certificate cmdlet. +Specifies the type of events that will trigger certificate notifications. The acceptable values for +this parameter are: + + -- `Replace`: Certificate replacement events will trigger this notification, including certificates + that are renewed by auto-enrollment, using the Certificates snap-in, or by using the + `Switch-Certificate` cmdlet. - -- Expire: Certificate expiration and close-to-expire events will trigger this notification. + -- `Expire`: Certificate expiration and close-to-expire events will trigger this notification. ```yaml -Type: CertificateNotificationType +Type: Microsoft.CertificateServices.Commands.CertificateNotificationType Parameter Sets: (All) Aliases: Accepted values: Replace, Expire @@ -163,11 +199,12 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -179,7 +216,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -188,6 +229,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS ### Microsoft.CertificateServices.Command.CertificateNotificationTask + A **CertificateNotificationTask** object that contains details about a newly created task. ## NOTES @@ -199,4 +241,3 @@ A **CertificateNotificationTask** object that contains details about a newly cre [Remove-CertificateNotificationTask](./Remove-CertificateNotificationTask.md) [Switch-Certificate](./Switch-Certificate.md) - From d9032fb5e93dc0353e7da0fe854ce1faf51f8abf Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Sun, 30 Apr 2023 21:28:34 -0400 Subject: [PATCH 669/965] Fix formatting for Remove-CertificateEnrollmentPolicyServer. --- ...emove-CertificateEnrollmentPolicyServer.md | 72 +++++++++++++------ 1 file changed, 50 insertions(+), 22 deletions(-) diff --git a/docset/winserver2022-ps/pki/Remove-CertificateEnrollmentPolicyServer.md b/docset/winserver2022-ps/pki/Remove-CertificateEnrollmentPolicyServer.md index 8233aea195..d4cf0cdd07 100644 --- a/docset/winserver2022-ps/pki/Remove-CertificateEnrollmentPolicyServer.md +++ b/docset/winserver2022-ps/pki/Remove-CertificateEnrollmentPolicyServer.md @@ -11,52 +11,72 @@ title: Remove-CertificateEnrollmentPolicyServer # Remove-CertificateEnrollmentPolicyServer ## SYNOPSIS -Removes an enrollment policy server and the URL of the enrollment policy server from the current user or local computer configuration. + +Removes an enrollment policy server and the URL of the enrollment policy server from the current +user or local computer configuration. ## SYNTAX ``` -Remove-CertificateEnrollmentPolicyServer [-Url] -context [-WhatIf] [-Confirm] - [] +Remove-CertificateEnrollmentPolicyServer [-Url] -context [-WhatIf] + [-Confirm] [] ``` ## DESCRIPTION -The **Remove-CertificateEnrollmentPolicyServer** cmdlet removes an enrollment policy server from the current user or local computer configuration. -This cmdlet also removes any policy cache file and credentials from the vault. -Only one enrollment policy server configuration is removed from the user configured location at a time. +The `Remove-CertificateEnrollmentPolicyServer` cmdlet removes an enrollment policy server from the +current user or local computer configuration. This cmdlet also removes any policy cache file and +credentials from the vault. + +Only one enrollment policy server configuration is removed from the user configured location at a +time. -If a scope of All is specified and the same URL exists in the local computer (machine) and User contexts, then this cmdlet will fail. +If a scope of `All` is specified and the same URL exists in the local computer (machine) and User +contexts, then this cmdlet will fail. -An error is generated if the specified URL does not exist in the given scope. +An error is generated if the specified URL does not exist in the given scope. Any policy cache file and credentials are also removed from the vault. ## EXAMPLES ### EXAMPLE 1 -``` -PS C:\>Remove-CertificateEnrollmentPolicyServer -Url https://www.contoso.com/policy/service.svc -Context User + +```powershell +$params = @{ + Url = 'https://www.contoso.com/policy/service.svc' + Context = 'User' +} +Remove-CertificateEnrollmentPolicyServer @params ``` -This example removes the enrollment policy server configuration from the local user configuration with the given URL. +This example removes the enrollment policy server configuration from the local user configuration +with the given URL. ### EXAMPLE 2 -``` -PS C:\>$userPolicy = Get-CertificateEnrollmentPolicyServer -Scope All -Context User -Url https://www.contoso.com/policy/service.svc -PS C:\>Remove-CertificateEnrollmentPolicyServer -Url $userPolicy.url -Context User +```powershell +$params = @{ + Scope = 'All' + Context = 'User' + Url = 'https://www.contoso.com/policy/service.svc' +} +$userPolicy = Get-CertificateEnrollmentPolicyServer @params + +Remove-CertificateEnrollmentPolicyServer -Url $userPolicy.Url -Context User ``` -This example removes the enrollment policy server that is configured from the current user configuration. +This example removes the enrollment policy server that is configured from the current user +configuration. ## PARAMETERS ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -68,10 +88,11 @@ Accept wildcard characters: False ``` ### -Url + Specifies the URL of the enrollment policy server to remove from the local configuration. ```yaml -Type: Uri +Type: System.Uri Parameter Sets: (All) Aliases: @@ -83,11 +104,12 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -98,8 +120,10 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -context -Specifies that information about the location of an enrollment policy server should be removed from either the User or computer (machine) context. +### -Context + +Specifies that information about the location of an enrollment policy server should be removed from +either the `User` or computer (`Machine`) context. ```yaml Type: Context @@ -115,11 +139,16 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### Microsoft.CertificateServices.Commands.EnrollmentPolicyServer + Contains information about the certificate enrollment policy. ## OUTPUTS @@ -133,4 +162,3 @@ Contains information about the certificate enrollment policy. [Add-CertificateEnrollmentPolicyServer](./Add-CertificateEnrollmentPolicyServer.md) [Get-CertificateEnrollmentPolicyServer](./Get-CertificateEnrollmentPolicyServer.md) - From 7fe98d29483ea53696b28d9aa9866947a0acae96 Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Sun, 30 Apr 2023 21:30:35 -0400 Subject: [PATCH 670/965] Fix formatting for Remove-CertificateNotificationTask. --- .../pki/Remove-CertificateNotificationTask.md | 30 +++++++++++++------ 1 file changed, 21 insertions(+), 9 deletions(-) diff --git a/docset/winserver2022-ps/pki/Remove-CertificateNotificationTask.md b/docset/winserver2022-ps/pki/Remove-CertificateNotificationTask.md index 4cacc595f4..e6b1578796 100644 --- a/docset/winserver2022-ps/pki/Remove-CertificateNotificationTask.md +++ b/docset/winserver2022-ps/pki/Remove-CertificateNotificationTask.md @@ -11,22 +11,27 @@ title: Remove-CertificateNotificationTask # Remove-CertificateNotificationTask ## SYNOPSIS + Removes a certificate notification task from Task Scheduler. ## SYNTAX ``` -Remove-CertificateNotificationTask [-Name] [-WhatIf] [-Confirm] [] +Remove-CertificateNotificationTask [-Name] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION -The **Remove-CertificateNotificationTask** cmdlet removes from Task Scheduler a certificate notification task that was registered with the New-CertificateNotificationTask cmdlet. + +The `Remove-CertificateNotificationTask` cmdlet removes from Task Scheduler a certificate +notification task that was registered with the `New-CertificateNotificationTask` cmdlet. ## EXAMPLES ### EXAMPLE 1 -``` -PS C:\>Remove-CertificateNotificationTask -Name "My Task" + +```powershell +Remove-CertificateNotificationTask -Name "My Task" ``` This example removes the task named My Task. @@ -34,10 +39,11 @@ This example removes the task named My Task. ## PARAMETERS ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -49,10 +55,11 @@ Accept wildcard characters: False ``` ### -Name + Identifies the notification task to be deleted. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -64,11 +71,12 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -80,11 +88,16 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### System.String + A **String** containing the name of the task to be removed. ## OUTPUTS @@ -100,4 +113,3 @@ A **String** containing the name of the task to be removed. [New-CertificateNotificationTask](./New-CertificateNotificationTask.md) [Switch-Certificate](./Switch-Certificate.md) - From f8b26f72c9901123d6c8f23308a363e3ea717090 Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Sun, 30 Apr 2023 21:44:22 -0400 Subject: [PATCH 671/965] Fix formatting for Set-CertificateAutoEnrollmentPolicy. --- .../Set-CertificateAutoEnrollmentPolicy.md | 133 ++++++++++++------ 1 file changed, 89 insertions(+), 44 deletions(-) diff --git a/docset/winserver2022-ps/pki/Set-CertificateAutoEnrollmentPolicy.md b/docset/winserver2022-ps/pki/Set-CertificateAutoEnrollmentPolicy.md index e4d0727133..29c82e4b11 100644 --- a/docset/winserver2022-ps/pki/Set-CertificateAutoEnrollmentPolicy.md +++ b/docset/winserver2022-ps/pki/Set-CertificateAutoEnrollmentPolicy.md @@ -11,11 +11,13 @@ title: Set-CertificateAutoEnrollmentPolicy # Set-CertificateAutoEnrollmentPolicy ## SYNOPSIS + Sets local certificate auto-enrollment policy. ## SYNTAX ### EnableSeparately + ``` Set-CertificateAutoEnrollmentPolicy [-StoreName ] -PolicyState [-ExpirationPercentage ] [-EnableTemplateCheck] [-EnableMyStoreManagement] @@ -23,62 +25,86 @@ Set-CertificateAutoEnrollmentPolicy [-StoreName ] -PolicyState [-WhatIf] [-Confirm] [] +Set-CertificateAutoEnrollmentPolicy [-EnableAll] -context [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION -The **Set-CertificateAutoEnrollmentPolicy** cmdlet configures local certificate auto-enrollment policy for a user or computer. -The auto-enrollment policy can also be configured by using the Local Security Policy console. -These settings can be found in the following location. + +The `Set-CertificateAutoEnrollmentPolicy` cmdlet configures local certificate auto-enrollment policy +for a user or computer. The auto-enrollment policy can also be configured by using the Local +Security Policy console. These settings can be found in the following location. -- `\Security Settings\Public Key Policies\Certificate Services Client - Auto-Enrollment`. -Delegation may be required when using this cmdlet with Windows PowerShell® remoting and changing user configuration. +Delegation may be required when using this cmdlet with Windows PowerShell remoting and changing user +configuration. ## EXAMPLES ### EXAMPLE 1 -``` -PS C:\>Set-CertificateAutoEnrollmentPolicy -PolicyState Enabled -EnableMyStoreManagement -EnableTemplateCheck -Context User + +```powershell +$params = @{ + PolicyState = 'Enabled' + EnableMyStoreManagement = $true + EnableTemplateCheck = $true + Context = 'User' +} +Set-CertificateAutoEnrollmentPolicy @params ``` -This example enables local user certificate auto-enrollment policy with the Renew expired certificates, update pending certificates, and remove revoked certificates and Update certificates that use certificates templates options enabled. +This example enables local user certificate auto-enrollment policy with the Renew expired +certificates, update pending certificates, and remove revoked certificates and Update certificates +that use certificates templates options enabled. ### EXAMPLE 2 -``` -PS C:\>Set-CertificateAutoEnrollmentPolicy -PolicyState NotConfigured -Context Machine + +```powershell +Set-CertificateAutoEnrollmentPolicy -PolicyState NotConfigured -Context Machine ``` This example sets local computer certificate auto-enrollment policy to Not Configured. ### EXAMPLE 3 -``` -PS C:\>Set-CertificateAutoEnrollmentPolicy -ExpirationPercentage 15 -PolicyState Enabled -EnableExpirationNotification -Context Machine -StoreName "Remote Desktop" + +```powershell +$params = @{ + ExpirationPercentage = 15 + PolicyState = 'Enabled' + EnableExpirationNotification = $true + Context = 'Machine' + StoreName = 'Remote Desktop' +} +Set-CertificateAutoEnrollmentPolicy @params ``` -This example enables local computer certificate auto-enrollment policy with the Expiration notifications option enabled and set to 15 percent of the certificate lifetime. -This cmdlet also configures the Remote Desktop certificate store as an additional store to be monitored for certificate expiration. +This example enables local computer certificate auto-enrollment policy with the Expiration +notifications option enabled and set to `15` percent of the certificate lifetime. This cmdlet also +configures the `Remote Desktop` certificate store as an additional store to be monitored for +certificate expiration. ### EXAMPLE 4 -``` -The example in detail. -PS C:\>Set-CertificateAutoEnrollmentPolicy -PolicyState Enabled -EnableMyStoreManagement -EnableTemplateCheck -EnableExpirationNotification -ExpirationPercentage 10 -Context User - -The concise version of the same example. -PS C:\>Set-CertificateAutoEnrollmentPolicy -EnableAll -Context User +```powershell +Set-CertificateAutoEnrollmentPolicy -EnableAll -Context User ``` -This example performs the same task in two ways. +This example enables local user certificate auto-enrollment policy with the Renew expired +certificates, update pending certificates, and remove revoked certificates and Update certificates +that use certificates templates options enabled. It also enables Expiration notifications with an +expiration percentage of 10 percent of the certificate lifetime. ## PARAMETERS ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -90,11 +116,13 @@ Accept wildcard characters: False ``` ### -EnableAll -Enables all of the auto-enrollment policy settings and sets the value for the expiration percentage to 10 percent. -If this parameter is enabled, then only the **Context** parameter is required and all other parameters are optional. + +Enables all of the auto-enrollment policy settings and sets the value for the expiration percentage +to 10 percent. If this parameter is enabled, then only the **Context** parameter is required and all +other parameters are optional. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: EnableAll Aliases: @@ -106,10 +134,11 @@ Accept wildcard characters: False ``` ### -EnableBalloonNotifications + Enables the Expiration balloon notifications option for the certificate auto-enrollment policy. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: EnableSeparately Aliases: @@ -121,10 +150,12 @@ Accept wildcard characters: False ``` ### -EnableMyStoreManagement -Enables the Renew expired certificates, update pending certificates, and remove revoked certificates option for the certificate auto-enrollment policy. + +Enables the Renew expired certificates, update pending certificates, and remove revoked certificates +option for the certificate auto-enrollment policy. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: EnableSeparately Aliases: @@ -136,10 +167,12 @@ Accept wildcard characters: False ``` ### -EnableTemplateCheck -Verifies that existing certificates are based on the most recent version of a certificate template and updates them if they are not. + +Verifies that existing certificates are based on the most recent version of a certificate template +and updates them if they are not. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: EnableSeparately Aliases: @@ -151,10 +184,12 @@ Accept wildcard characters: False ``` ### -ExpirationPercentage -Sets the percentage of the certificate lifetime at which close-to-expiration events are logged and auto-enrollment notifications start to appear. + +Sets the percentage of the certificate lifetime at which close-to-expiration events are logged and +auto-enrollment notifications start to appear. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: EnableSeparately Aliases: @@ -166,10 +201,11 @@ Accept wildcard characters: False ``` ### -PolicyState + Specifies the state of the certificate auto-enrollment policy configuration. ```yaml -Type: PolicySetting +Type: Microsoft.CertificateServices.Commands.PolicySetting Parameter Sets: EnableSeparately Aliases: Accepted values: NotConfigured, Enabled, Disabled @@ -182,11 +218,12 @@ Accept wildcard characters: False ``` ### -StoreName -Specifies additional comma separated certificate stores to monitor for certificates that have expired or are expiring. -The MY store is always monitored. + +Specifies additional comma separated certificate stores to monitor for certificates that have +expired or are expiring. The MY store is always monitored. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: EnableSeparately Aliases: @@ -198,11 +235,12 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -213,11 +251,12 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -context +### -Context + Specifies whether to set certificate auto-enrollment policy for the user or computer context. ```yaml -Type: Context +Type: Microsoft.CertificateServices.Commands.Context Parameter Sets: (All) Aliases: Accepted values: Machine, User @@ -230,22 +269,28 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### Microsoft.CertificateServices.Commands.AutoEnrollmentPolicy -The **AutoEnrollmentPolicy** object combines certificate auto-enrollment policy settings and exposes them as properties. + +The **AutoEnrollmentPolicy** object combines certificate auto-enrollment policy settings and exposes +them as properties. ## OUTPUTS ### Microsoft.CertificateServices.Commands.AutoEnrollmentPolicy -The **AutoEnrollmentPolicy** object combines certificate auto-enrollment policy settings and exposes them as properties. -Each property can be modified and piped into this cmdlet to be applied. + +The **AutoEnrollmentPolicy** object combines certificate auto-enrollment policy settings and exposes +them as properties. Each property can be modified and piped into this cmdlet to be applied. ## NOTES ## RELATED LINKS [Get-CertificateAutoEnrollmentPolicy](./Get-CertificateAutoEnrollmentPolicy.md) - From 60fe387d980dff7eee64812061bbeebc6f37eacb Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Sun, 30 Apr 2023 21:51:26 -0400 Subject: [PATCH 672/965] Fix formatting for Switch-Certificate. --- .../pki/Switch-Certificate.md | 71 +++++++++++++------ 1 file changed, 48 insertions(+), 23 deletions(-) diff --git a/docset/winserver2022-ps/pki/Switch-Certificate.md b/docset/winserver2022-ps/pki/Switch-Certificate.md index 254afd3915..d1249af8bf 100644 --- a/docset/winserver2022-ps/pki/Switch-Certificate.md +++ b/docset/winserver2022-ps/pki/Switch-Certificate.md @@ -11,31 +11,42 @@ title: Switch-Certificate # Switch-Certificate ## SYNOPSIS + Marks one certificate as having been replaced by another certificate. ## SYNTAX ``` -Switch-Certificate [-NotifyOnly] [-NewCert] [-OldCert] [-WhatIf] [-Confirm] - [] +Switch-Certificate [-NotifyOnly] [-NewCert] [-OldCert] [-WhatIf] + [-Confirm] [] ``` ## DESCRIPTION -The **Switch-Certificate** cmdlet marks one certificate as having been replaced by another certificate. -This cmdlet triggers a replace certificate notification and optionally sets the renewal property on the certificate being replaced. + +The `Switch-Certificate` cmdlet marks one certificate as having been replaced by another +certificate. This cmdlet triggers a replace certificate notification and optionally sets the renewal +property on the certificate being replaced. ## EXAMPLES ### EXAMPLE 1 -``` -PS C:\>Switch-Certificate -OldCert cert:\LocalMachine\My\E42DBC3B3F2771990A9B3E35D0C3C422779DACD7 -NewCert cert:\LocalMachine\My\4A346B4385F139CA843912D358D765AB8DEE9FD4 + +```powershell +$params = @{ + OldCert = 'Cert:\LocalMachine\My\E42DBC3B3F2771990A9B3E35D0C3C422779DACD7' + NewCert = 'Cert:\LocalMachine\My\4A346B4385F139CA843912D358D765AB8DEE9FD4' +} +Switch-Certificate @params ``` -This example sets the renewal property of the certificate with the thumbprint E42DBC3B3F2771990A9B3E35D0C3C422779DACD7 as renewed by the certificate with the thumbprint 4A346B4385F139CA843912D358D765AB8DEE9FD4 and generates a replace certificate notification. +This example sets the renewal property of the certificate with the thumbprint +E42DBC3B3F2771990A9B3E35D0C3C422779DACD7 as renewed by the certificate with the thumbprint +4A346B4385F139CA843912D358D765AB8DEE9FD4 and generates a replace certificate notification. ### EXAMPLE 2 -``` -PS C:\>Set-Location -Path cert:\LocalMachine\My + +```powershell +Set-Location -Path cert:\LocalMachine\My PS cert:\LocalMachine\My>$oldCert = Get-ChildItem -Path E42DBC3B3F2771990A9B3E35D0C3C422779DACD7 @@ -44,16 +55,18 @@ PS cert:\LocalMachine\My>$newCert = Get-ChildItem -Path 4A346B4385F139CA843912D3 PS cert:\LocalMachine\My>Switch-Certificate -OldCert $oldCert -NewCert $newCert -NotifyOnly ``` -This example locates two certificates in the machine MY store and assigns them the variables $oldCert and $newCert. -This cmdlet then generates a replacement notification without changing a renewal property of the old certificate. +This example locates two certificates in the machine MY store and assigns them the variables +`$oldCert` and `$newCert`. This cmdlet then generates a replacement notification without changing a +renewal property of the old certificate. ## PARAMETERS ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -65,10 +78,12 @@ Accept wildcard characters: False ``` ### -NewCert -Specifies an X509 certificate or a certificate path for the certificate that replaces the certificate specified with the **OldCert** parameter. + +Specifies an X509 certificate or a certificate path for the certificate that replaces the +certificate specified with the **OldCert** parameter. ```yaml -Type: Certificate +Type: Microsoft.CertificateServices.Commands.Certificate Parameter Sets: (All) Aliases: @@ -80,11 +95,13 @@ Accept wildcard characters: False ``` ### -NotifyOnly -Creates a replacement certificate notification without replacing the **NewCert** parameter with the **OldCert** parameter. -This mode is useful when testing a script that was registered with the New-CertificateNotificationTask cmdlet. + +Creates a replacement certificate notification without replacing the **NewCert** parameter with the +**OldCert** parameter. This mode is useful when testing a script that was registered with the +`New-CertificateNotificationTask` cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -96,10 +113,12 @@ Accept wildcard characters: False ``` ### -OldCert -Specifies an X509 certificate or a certificate path in the certificate provider for the certificate to be replaced. + +Specifies an X509 certificate or a certificate path in the certificate provider for the certificate +to be replaced. ```yaml -Type: Certificate +Type: Microsoft.CertificateServices.Commands.Certificate Parameter Sets: (All) Aliases: @@ -111,11 +130,12 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -127,12 +147,18 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### Microsoft.CertificateServices.Commands.Certificate -The **Certificate** object can either be provided as a Path object to a certificate or an **X509Certificate2** object. + +The **Certificate** object can either be provided as a Path object to a certificate or an +**X509Certificate2** object. ## OUTPUTS @@ -151,4 +177,3 @@ The **Certificate** object can either be provided as a Path object to a certific [New-CertificateNotificationTask](./New-CertificateNotificationTask.md) [Remove-CertificateNotificationTask](./Remove-CertificateNotificationTask.md) - From 79d21b210f634abc5378718c47044d9b90283dc8 Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Sun, 30 Apr 2023 22:01:18 -0400 Subject: [PATCH 673/965] Fix formatting for Test-Certificate. --- .../winserver2022-ps/pki/Test-Certificate.md | 105 +++++++++++------- 1 file changed, 66 insertions(+), 39 deletions(-) diff --git a/docset/winserver2022-ps/pki/Test-Certificate.md b/docset/winserver2022-ps/pki/Test-Certificate.md index af82868ee5..dc038373f5 100644 --- a/docset/winserver2022-ps/pki/Test-Certificate.md +++ b/docset/winserver2022-ps/pki/Test-Certificate.md @@ -11,38 +11,51 @@ title: Test-Certificate # Test-Certificate ## SYNOPSIS + Verifies a certificate according to the input parameters. ## SYNTAX ``` -Test-Certificate [-Policy ] [-User] [-EKU ] [-DNSName ] - [-AllowUntrustedRoot] [-Cert] [] +Test-Certificate [-Policy ] [-User] [-EKU ] + [-DNSName ] [-AllowUntrustedRoot] [-Cert] [] ``` ## DESCRIPTION -The **Test-Certificate** cmdlet verifies a certificate according to input parameters. -The revocation status of the certificate is verified by default. -If the **AllowUntrustedRoot** parameter is specified, then a certificate chain is built but an untrusted root is allowed. -Other errors are still verified against in this case, such as expired. -If the **DNSName** parameter is used, then the DNS subject alternative name is used to verify SSL policy. -If the **EKU** parameter is used, then the specified application policy object identifiers are used to verify the chain. -If the **User** parameter is used, then the specified user context is used is to build and verify the chain. -Delegation may be required when using this cmdlet with Windows PowerShell® remoting and changing user configuration. +The `Test-Certificate` cmdlet verifies a certificate according to input parameters. The revocation +status of the certificate is verified by default. If the **AllowUntrustedRoot** parameter is +specified, then a certificate chain is built but an untrusted root is allowed. Other errors are +still verified against in this case, such as expired. If the **DNSName** parameter is used, then the +DNS subject alternative name is used to verify SSL policy. If the **EKU** parameter is used, then +the specified application policy object identifiers are used to verify the chain. If the **User** +parameter is used, then the specified user context is used is to build and verify the chain. + +Delegation may be required when using this cmdlet with Windows PowerShell remoting and changing user +configuration. ## EXAMPLES ### EXAMPLE 1 -``` -PS C:\>Get-ChildItem -Path Cert:\localMachine\My | Test-Certificate -Policy SSL -DNSName "dns=contoso.com" + +```powershell +Get-ChildItem -Path Cert:\LocalMachine\My | + Test-Certificate -Policy SSL -DNSName 'dns=contoso.com' ``` -This example verifies each certificate in the MY store of the local machine and verifies that it is valid for SSL with the DNS name specified. +This example verifies each certificate in the MY store of the local machine and verifies that it is +valid for SSL with the DNS name specified. ### EXAMPLE 2 -``` -PS C:\>Test-Certificate -Cert cert:\currentuser\my\191c46f680f08a9e6ef3f6783140f60a979c7d3b -AllowUntrustedRoot -EKU "1.3.6.1.5.5.7.3.1" -User + +```powershell +$params = @{ + Cert = 'Cert:\CurrentUser\My\191C46F680F08A9E6EF3F6783140F60A979C7D3B' + AllowUntrustedRoot = $true + EKU = '1.3.6.1.5.5.7.3.1' + User = $true +} +Test-Certificate @params ``` This example verifies that the provided EKU is valid for the specified certificate and its chain. @@ -51,13 +64,14 @@ Revocation checking is not performed. ## PARAMETERS ### -AllowUntrustedRoot -Specifies whether the root certificate is required to be trusted in chain building. -When this parameter is used, the certificate chain is built but an untrusted root is allowed. -Other errors are still verified against in this case, such as expired. -If this parameter is not specified, then revocation status is checked by default. + +Specifies whether the root certificate is required to be trusted in chain building. When this +parameter is used, the certificate chain is built but an untrusted root is allowed. Other errors are +still verified against in this case, such as expired. If this parameter is not specified, then +revocation status is checked by default. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -69,11 +83,12 @@ Accept wildcard characters: False ``` ### -Cert -Specifies the certificate to test. -Either the certificate object or a path to the certificate in a certificate store can be specified. + +Specifies the certificate to test. Either the certificate object or a path to the certificate in a +certificate store can be specified. ```yaml -Type: Certificate +Type: Microsoft.CertificateServices.Commands.Certificate Parameter Sets: (All) Aliases: PsPath @@ -85,15 +100,18 @@ Accept wildcard characters: False ``` ### -DNSName -Specifies the DNS name to verify as valid for the certificate. + +Specifies the DNS name to verify as valid for the certificate. -If this parameter is specified but not the **Policy** parameter, then the CERT_CHAIN_POLICY_SSL policy is applied and the DNS name is validated for the certificate. -If a CERT_CHAIN_POLICY_SSL policy does not exist, then the cmdlet will fail. +If this parameter is specified but not the **Policy** parameter, then the `CERT_CHAIN_POLICY_SSL` +policy is applied and the DNS name is validated for the certificate. If a `CERT_CHAIN_POLICY_SSL` +policy does not exist, then the cmdlet will fail. -If this parameter is not used and the **Policy** parameter is not specified, the default CERT_CHAIN_POLICY_BASE policy is applied. +If this parameter is not used and the **Policy** parameter is not specified, the default +`CERT_CHAIN_POLICY_BASE` policy is applied. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -105,10 +123,11 @@ Accept wildcard characters: False ``` ### -EKU + Specifies a list of enhanced key usage (EKU) object identifiers to verify for the certificate chain. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: (All) Aliases: @@ -120,12 +139,13 @@ Accept wildcard characters: False ``` ### -Policy -Specifies the policies that will be applied to verify the certificate. -The acceptable values for this parameter are: AUTHENTICODE, BASE, NTAUTH, and SSL. -If this parameter is not specified, then the BASE policy is used. + +Specifies the policies that will be applied to verify the certificate. The acceptable values for +this parameter are: `AUTHENTICODE`, `BASE`, `NTAUTH`, and `SSL`. If this parameter is not specified, +then the BASE policy is used. ```yaml -Type: TestCertificatePolicy +Type: Microsoft.CertificateServices.Commands.TestCertificatePolicy Parameter Sets: (All) Aliases: Accepted values: BASE, SSL, AUTHENTICODE, NTAUTH @@ -138,11 +158,12 @@ Accept wildcard characters: False ``` ### -User -Specifies whether the user or machine context is used to test the certificate. -If this parameter is not specified, then the machine context is used. + +Specifies whether the user or machine context is used to test the certificate. If this parameter is +not specified, then the machine context is used. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -154,16 +175,23 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### Microsoft.CertificateServices.Commands.Certificate -The **Certificate** object can either be provided as a Path object to a certificate or an **X509Certificate2** object. + +The **Certificate** object can either be provided as a Path object to a certificate or an +**X509Certificate2** object. ## OUTPUTS ### System.Boolean + If the verification succeeds, then the return value is True; otherwise the return value is False. ## NOTES @@ -171,4 +199,3 @@ If the verification succeeds, then the return value is True; otherwise the retur ## RELATED LINKS [Get-ChildItem](https://go.microsoft.com/fwlink/p/?LinkId=290488) - From eaed9010044425b7eb4ecebe01dbd7f47068da1d Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Mon, 1 May 2023 22:01:33 -0400 Subject: [PATCH 674/965] Update docset/winserver2022-ps/pki/New-CertificateNotificationTask.md Co-authored-by: Sean Wheeler --- .../winserver2022-ps/pki/New-CertificateNotificationTask.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/pki/New-CertificateNotificationTask.md b/docset/winserver2022-ps/pki/New-CertificateNotificationTask.md index 5594149120..83c14af6b4 100644 --- a/docset/winserver2022-ps/pki/New-CertificateNotificationTask.md +++ b/docset/winserver2022-ps/pki/New-CertificateNotificationTask.md @@ -79,8 +79,8 @@ The cmdlet will run for all currently logged on users in the user contexts. Sets the channel of the **CertificateServicesClient-Notifications** log that will be monitored for certificate lifecycle events. The acceptable values for this parameter are: - -- `System`: The **Operation-System** channel will be used. This channel should be used to modify - system certificate bindings that use computer certificates. +- `System`: The **Operation-System** channel will be used. This channel should be used to modify + system certificate bindings that use computer certificates. -- `User`: The **Operational-User** channel will be used. This channel should be used to modify user certificate bindings. From 87ca347cc4ac598b161ce4f85551322afba500cb Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Mon, 1 May 2023 22:01:41 -0400 Subject: [PATCH 675/965] Update docset/winserver2022-ps/pki/New-CertificateNotificationTask.md Co-authored-by: Sean Wheeler --- docset/winserver2022-ps/pki/New-CertificateNotificationTask.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/pki/New-CertificateNotificationTask.md b/docset/winserver2022-ps/pki/New-CertificateNotificationTask.md index 83c14af6b4..3c3a98a22f 100644 --- a/docset/winserver2022-ps/pki/New-CertificateNotificationTask.md +++ b/docset/winserver2022-ps/pki/New-CertificateNotificationTask.md @@ -82,7 +82,7 @@ certificate lifecycle events. The acceptable values for this parameter are: - `System`: The **Operation-System** channel will be used. This channel should be used to modify system certificate bindings that use computer certificates. - -- `User`: The **Operational-User** channel will be used. This channel should be used to modify +- `User`: The **Operational-User** channel will be used. This channel should be used to modify user certificate bindings. ```yaml From 531bb4651dc2b81811002c1998d43b0fc3403160 Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Mon, 1 May 2023 22:01:58 -0400 Subject: [PATCH 676/965] Update docset/winserver2022-ps/pki/New-CertificateNotificationTask.md Co-authored-by: Sean Wheeler --- .../pki/New-CertificateNotificationTask.md | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/docset/winserver2022-ps/pki/New-CertificateNotificationTask.md b/docset/winserver2022-ps/pki/New-CertificateNotificationTask.md index 3c3a98a22f..6272cf8d2d 100644 --- a/docset/winserver2022-ps/pki/New-CertificateNotificationTask.md +++ b/docset/winserver2022-ps/pki/New-CertificateNotificationTask.md @@ -154,13 +154,16 @@ Generates a replacement notification for any certificate in the My store that ha the past. For the notification to be generated both certificates must be present in the store. This parameter can only be used with the `Replace` type. -Note: The following warning will be displayed when this this parameter set to `False` and there are -some certificates in MY store that would have resulted in a notification. - - -- `There are certificates in My store that have been replaced in the past. You can use the - New-CertificateNotification cmdlet with the RunTaskForExistingCerts parameter to generate - notifications for those certificates to correct any configuration problems that you may already - have on this machine.` +> [!NOTE] +> The following warning is displayed when this parameter set to `False` and there are some +> certificates in MY store that would have resulted in a notification. +> +> ```Output +> There are certificates in My store that have been replaced in the past. You can use the +> New-CertificateNotification cmdlet with the RunTaskForExistingCerts parameter to generate +> notifications for those certificates to correct any configuration problems that you may already +> have on this machine. +> ``` ```yaml Type: System.Management.Automation.SwitchParameter From 478d5bcc1c5430b9eaf3ae7525e456ccb3f2956e Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Mon, 1 May 2023 22:02:12 -0400 Subject: [PATCH 677/965] Update docset/winserver2022-ps/pki/New-CertificateNotificationTask.md Co-authored-by: Sean Wheeler --- .../winserver2022-ps/pki/New-CertificateNotificationTask.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docset/winserver2022-ps/pki/New-CertificateNotificationTask.md b/docset/winserver2022-ps/pki/New-CertificateNotificationTask.md index 6272cf8d2d..e0600da8db 100644 --- a/docset/winserver2022-ps/pki/New-CertificateNotificationTask.md +++ b/docset/winserver2022-ps/pki/New-CertificateNotificationTask.md @@ -182,9 +182,9 @@ Accept wildcard characters: False Specifies the type of events that will trigger certificate notifications. The acceptable values for this parameter are: - -- `Replace`: Certificate replacement events will trigger this notification, including certificates - that are renewed by auto-enrollment, using the Certificates snap-in, or by using the - `Switch-Certificate` cmdlet. +- `Replace`: Certificate replacement events will trigger this notification, including certificates + that are renewed by auto-enrollment, using the Certificates snap-in, or by using the + `Switch-Certificate` cmdlet. -- `Expire`: Certificate expiration and close-to-expire events will trigger this notification. From e4b1f8f2a12e6b696c1e4f534a1f6a35c4bec7ad Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Mon, 1 May 2023 22:02:39 -0400 Subject: [PATCH 678/965] Update docset/winserver2022-ps/pki/New-CertificateNotificationTask.md Co-authored-by: Sean Wheeler --- docset/winserver2022-ps/pki/New-CertificateNotificationTask.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/pki/New-CertificateNotificationTask.md b/docset/winserver2022-ps/pki/New-CertificateNotificationTask.md index e0600da8db..7e4d95c491 100644 --- a/docset/winserver2022-ps/pki/New-CertificateNotificationTask.md +++ b/docset/winserver2022-ps/pki/New-CertificateNotificationTask.md @@ -186,7 +186,7 @@ this parameter are: that are renewed by auto-enrollment, using the Certificates snap-in, or by using the `Switch-Certificate` cmdlet. - -- `Expire`: Certificate expiration and close-to-expire events will trigger this notification. +- `Expire`: Certificate expiration and close-to-expire events will trigger this notification. ```yaml Type: Microsoft.CertificateServices.Commands.CertificateNotificationType From 9981172eb7ea649d521af55d03650737e8532821 Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Mon, 1 May 2023 22:02:56 -0400 Subject: [PATCH 679/965] Update docset/winserver2022-ps/pki/New-CertificateNotificationTask.md Co-authored-by: Mikey Lombardi (He/Him) --- docset/winserver2022-ps/pki/New-CertificateNotificationTask.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docset/winserver2022-ps/pki/New-CertificateNotificationTask.md b/docset/winserver2022-ps/pki/New-CertificateNotificationTask.md index 7e4d95c491..ab4a959b02 100644 --- a/docset/winserver2022-ps/pki/New-CertificateNotificationTask.md +++ b/docset/winserver2022-ps/pki/New-CertificateNotificationTask.md @@ -11,7 +11,6 @@ title: New-CertificateNotificationTask # New-CertificateNotificationTask ## SYNOPSIS - Creates a new task in the Task Scheduler that will be triggered when a certificate is replaced, expired, or about to expired. From 59872d5f165f4f0d33e1887be88214e11ace3db8 Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Mon, 1 May 2023 22:04:52 -0400 Subject: [PATCH 680/965] Update docset/winserver2022-ps/pki/Test-Certificate.md Co-authored-by: Mikey Lombardi (He/Him) --- docset/winserver2022-ps/pki/Test-Certificate.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/pki/Test-Certificate.md b/docset/winserver2022-ps/pki/Test-Certificate.md index dc038373f5..ceef3a1d48 100644 --- a/docset/winserver2022-ps/pki/Test-Certificate.md +++ b/docset/winserver2022-ps/pki/Test-Certificate.md @@ -142,7 +142,7 @@ Accept wildcard characters: False Specifies the policies that will be applied to verify the certificate. The acceptable values for this parameter are: `AUTHENTICODE`, `BASE`, `NTAUTH`, and `SSL`. If this parameter is not specified, -then the BASE policy is used. +then the `BASE` policy is used. ```yaml Type: Microsoft.CertificateServices.Commands.TestCertificatePolicy From ba5ab7ed8b9e167698be0b5f16c00f786eefa8c4 Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Mon, 1 May 2023 22:33:05 -0400 Subject: [PATCH 681/965] Removed extra line break after Synopsis. Removed prompt from examples using cert:\ paths. Edited unusual formatting for a policy path. --- .../pki/New-CertificateNotificationTask.md | 4 ++-- .../pki/Remove-CertificateEnrollmentPolicyServer.md | 1 - .../pki/Remove-CertificateNotificationTask.md | 1 - .../pki/Set-CertificateAutoEnrollmentPolicy.md | 6 ++---- docset/winserver2022-ps/pki/Switch-Certificate.md | 10 +++------- docset/winserver2022-ps/pki/Test-Certificate.md | 3 +-- 6 files changed, 8 insertions(+), 17 deletions(-) diff --git a/docset/winserver2022-ps/pki/New-CertificateNotificationTask.md b/docset/winserver2022-ps/pki/New-CertificateNotificationTask.md index ab4a959b02..107135a5a5 100644 --- a/docset/winserver2022-ps/pki/New-CertificateNotificationTask.md +++ b/docset/winserver2022-ps/pki/New-CertificateNotificationTask.md @@ -81,8 +81,8 @@ certificate lifecycle events. The acceptable values for this parameter are: - `System`: The **Operation-System** channel will be used. This channel should be used to modify system certificate bindings that use computer certificates. -- `User`: The **Operational-User** channel will be used. This channel should be used to modify - user certificate bindings. +- `User`: The **Operational-User** channel will be used. This channel should be used to modify user + certificate bindings. ```yaml Type: Microsoft.CertificateServices.Commands.NotificationChannel diff --git a/docset/winserver2022-ps/pki/Remove-CertificateEnrollmentPolicyServer.md b/docset/winserver2022-ps/pki/Remove-CertificateEnrollmentPolicyServer.md index d4cf0cdd07..618be8b092 100644 --- a/docset/winserver2022-ps/pki/Remove-CertificateEnrollmentPolicyServer.md +++ b/docset/winserver2022-ps/pki/Remove-CertificateEnrollmentPolicyServer.md @@ -11,7 +11,6 @@ title: Remove-CertificateEnrollmentPolicyServer # Remove-CertificateEnrollmentPolicyServer ## SYNOPSIS - Removes an enrollment policy server and the URL of the enrollment policy server from the current user or local computer configuration. diff --git a/docset/winserver2022-ps/pki/Remove-CertificateNotificationTask.md b/docset/winserver2022-ps/pki/Remove-CertificateNotificationTask.md index e6b1578796..37cb2ee98b 100644 --- a/docset/winserver2022-ps/pki/Remove-CertificateNotificationTask.md +++ b/docset/winserver2022-ps/pki/Remove-CertificateNotificationTask.md @@ -11,7 +11,6 @@ title: Remove-CertificateNotificationTask # Remove-CertificateNotificationTask ## SYNOPSIS - Removes a certificate notification task from Task Scheduler. ## SYNTAX diff --git a/docset/winserver2022-ps/pki/Set-CertificateAutoEnrollmentPolicy.md b/docset/winserver2022-ps/pki/Set-CertificateAutoEnrollmentPolicy.md index 29c82e4b11..8dff9cd34a 100644 --- a/docset/winserver2022-ps/pki/Set-CertificateAutoEnrollmentPolicy.md +++ b/docset/winserver2022-ps/pki/Set-CertificateAutoEnrollmentPolicy.md @@ -11,7 +11,6 @@ title: Set-CertificateAutoEnrollmentPolicy # Set-CertificateAutoEnrollmentPolicy ## SYNOPSIS - Sets local certificate auto-enrollment policy. ## SYNTAX @@ -35,9 +34,8 @@ Set-CertificateAutoEnrollmentPolicy [-EnableAll] -context [-WhatIf] [- The `Set-CertificateAutoEnrollmentPolicy` cmdlet configures local certificate auto-enrollment policy for a user or computer. The auto-enrollment policy can also be configured by using the Local -Security Policy console. These settings can be found in the following location. - - -- `\Security Settings\Public Key Policies\Certificate Services Client - Auto-Enrollment`. +Security Policy console. These settings can be found in the following location: +`\Security Settings\Public Key Policies\Certificate Services Client - Auto-Enrollment` Delegation may be required when using this cmdlet with Windows PowerShell remoting and changing user configuration. diff --git a/docset/winserver2022-ps/pki/Switch-Certificate.md b/docset/winserver2022-ps/pki/Switch-Certificate.md index d1249af8bf..6fdb56e3a6 100644 --- a/docset/winserver2022-ps/pki/Switch-Certificate.md +++ b/docset/winserver2022-ps/pki/Switch-Certificate.md @@ -11,7 +11,6 @@ title: Switch-Certificate # Switch-Certificate ## SYNOPSIS - Marks one certificate as having been replaced by another certificate. ## SYNTAX @@ -47,12 +46,9 @@ E42DBC3B3F2771990A9B3E35D0C3C422779DACD7 as renewed by the certificate with the ```powershell Set-Location -Path cert:\LocalMachine\My - -PS cert:\LocalMachine\My>$oldCert = Get-ChildItem -Path E42DBC3B3F2771990A9B3E35D0C3C422779DACD7 - -PS cert:\LocalMachine\My>$newCert = Get-ChildItem -Path 4A346B4385F139CA843912D358D765AB8DEE9FD4 - -PS cert:\LocalMachine\My>Switch-Certificate -OldCert $oldCert -NewCert $newCert -NotifyOnly +$oldCert = Get-ChildItem -Path E42DBC3B3F2771990A9B3E35D0C3C422779DACD7 +$newCert = Get-ChildItem -Path 4A346B4385F139CA843912D358D765AB8DEE9FD4 +Switch-Certificate -OldCert $oldCert -NewCert $newCert -NotifyOnly ``` This example locates two certificates in the machine MY store and assigns them the variables diff --git a/docset/winserver2022-ps/pki/Test-Certificate.md b/docset/winserver2022-ps/pki/Test-Certificate.md index ceef3a1d48..1b41de54d5 100644 --- a/docset/winserver2022-ps/pki/Test-Certificate.md +++ b/docset/winserver2022-ps/pki/Test-Certificate.md @@ -11,7 +11,6 @@ title: Test-Certificate # Test-Certificate ## SYNOPSIS - Verifies a certificate according to the input parameters. ## SYNTAX @@ -102,7 +101,7 @@ Accept wildcard characters: False ### -DNSName Specifies the DNS name to verify as valid for the certificate. - + If this parameter is specified but not the **Policy** parameter, then the `CERT_CHAIN_POLICY_SSL` policy is applied and the DNS name is validated for the certificate. If a `CERT_CHAIN_POLICY_SSL` policy does not exist, then the cmdlet will fail. From 19e1555b76534ad94bbb7cae5abf18c4b76fc913 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Tue, 2 May 2023 12:39:46 -0400 Subject: [PATCH 682/965] Update docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- .../addsdeployment/Test-ADDSDomainControllerUninstallation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md index 6b5e439f3d..4f9cb8f294 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSDomainControllerUninstallation.md @@ -86,7 +86,7 @@ Accept wildcard characters: False ### -DemoteOperationMasterRole Indicates that forced demotion should continue even if an operations master role is discovered on -domain controller from which AD DS is being removed. +the domain controller from which AD DS is being removed. ```yaml Type: System.Management.Automation.SwitchParameter From 8eb42710e1a227e238e579f135eda8546d18e168 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Tue, 2 May 2023 12:40:20 -0400 Subject: [PATCH 683/965] Update docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- .../addsdeployment/Test-ADDSForestInstallation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md b/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md index 49be4db6df..452dbd27d1 100644 --- a/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md +++ b/docset/winserver2022-ps/addsdeployment/Test-ADDSForestInstallation.md @@ -340,7 +340,7 @@ value, the value must be a secure string. If this parameter is not specified, the cmdlet prompts you to enter and confirm a masked password. This is the preferred usage when running the cmdlet interactively. If there are no other arguments -specified with the cmdlet, you is prompted to enter a masked password for this parameter but no +specified with the cmdlet, you are prompted to enter a masked password for this parameter but no confirmation of the password entered is made. This is not recommended as it could allow a mistyped password to be configured. Another available advanced option is to use the `ConvertTo-SecureString` cmdlet and specify the password string inline as unmasked console input, From 4878dc8288cc232bd8a758d0fc1eea019149e178 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Tue, 2 May 2023 12:40:52 -0400 Subject: [PATCH 684/965] Update docset/winserver2022-ps/addsdeployment/Uninstall-ADDSDomainController.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- .../addsdeployment/Uninstall-ADDSDomainController.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/addsdeployment/Uninstall-ADDSDomainController.md b/docset/winserver2022-ps/addsdeployment/Uninstall-ADDSDomainController.md index 59b27ff9dc..acb8c0ce99 100644 --- a/docset/winserver2022-ps/addsdeployment/Uninstall-ADDSDomainController.md +++ b/docset/winserver2022-ps/addsdeployment/Uninstall-ADDSDomainController.md @@ -91,7 +91,7 @@ Accept wildcard characters: False ### -DemoteOperationMasterRole Indicates that forced demotion should continue even if an operations master role is discovered on -domain controller from which AD DS is being removed. +the domain controller from which AD DS is being removed. ```yaml Type: System.Management.Automation.SwitchParameter From 15e990725b201341208e08b92a6e97993b9864eb Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 2 May 2023 10:28:34 -0700 Subject: [PATCH 685/965] Update docset/winserver2022-ps/adcsdeployment/Install-AdcsCertificationAuthority.md Love oxford commas Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- .../adcsdeployment/Install-AdcsCertificationAuthority.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/adcsdeployment/Install-AdcsCertificationAuthority.md b/docset/winserver2022-ps/adcsdeployment/Install-AdcsCertificationAuthority.md index 7ecd1a02a3..81990c9af7 100644 --- a/docset/winserver2022-ps/adcsdeployment/Install-AdcsCertificationAuthority.md +++ b/docset/winserver2022-ps/adcsdeployment/Install-AdcsCertificationAuthority.md @@ -517,7 +517,7 @@ Accept wildcard characters: False ### -ValidityPeriod Specifies the validity period of the certification authority (CA) certificate in hours, days, weeks, -months or years. If this is a subordinate CA, do not use this parameter, because the validity period +months, or years. If this is a subordinate CA, do not use this parameter, because the validity period is determined by the parent CA. ```yaml From 555224920a4824978b67f0443b9fe79d30c9b999 Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 2 May 2023 10:28:49 -0700 Subject: [PATCH 686/965] Update docset/winserver2022-ps/adcsdeployment/Install-AdcsCertificationAuthority.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- .../adcsdeployment/Install-AdcsCertificationAuthority.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/adcsdeployment/Install-AdcsCertificationAuthority.md b/docset/winserver2022-ps/adcsdeployment/Install-AdcsCertificationAuthority.md index 81990c9af7..5c919d99de 100644 --- a/docset/winserver2022-ps/adcsdeployment/Install-AdcsCertificationAuthority.md +++ b/docset/winserver2022-ps/adcsdeployment/Install-AdcsCertificationAuthority.md @@ -597,7 +597,8 @@ This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVar - Ensure you run Windows PowerShell as an administrator. You can use the **force** parameter to bypass the prompt for confirmation. To see parameters, run the following command: - `Install-AdcsCertificationAuthority -?` + + `Install-AdcsCertificationAuthority -?` - If you have installation issues, try using the **verbose** parameter to get verbose output and review the information in the %windir%\cerocm.log file. From d4b88060723a59838909518b3bb7510248f93eaf Mon Sep 17 00:00:00 2001 From: "Mikey Lombardi (He/Him)" Date: Tue, 2 May 2023 13:34:26 -0500 Subject: [PATCH 687/965] Apply suggestions from review Co-authored-by: Sean Wheeler --- docset/winserver2022-ps/tls/Enable-TlsCipherSuite.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/tls/Enable-TlsCipherSuite.md b/docset/winserver2022-ps/tls/Enable-TlsCipherSuite.md index fc1e26723c..54086a8da1 100644 --- a/docset/winserver2022-ps/tls/Enable-TlsCipherSuite.md +++ b/docset/winserver2022-ps/tls/Enable-TlsCipherSuite.md @@ -66,7 +66,7 @@ CRYPT_PRIORITY_BOTTOM. Enable-TlsCipherSuite -Name TLS_DHE_DSS_WITH_AES_256_CBC_SHA -Position 0 ``` -This command enables cipher suite named TLS_DHE_DSS_WITH_AES_256_CBC_SHA. This command adds the +This command enables cipher suite named `TLS_DHE_DSS_WITH_AES_256_CBC_SHA`. This command adds the cipher suite the TLS cipher suite list at position 0, which is the highest priority. ## PARAMETERS From 5d9ec220d913dad77401c67ca1081313b3469229 Mon Sep 17 00:00:00 2001 From: Drew <93335570+XXLMandalorian013@users.noreply.github.com> Date: Thu, 27 Apr 2023 15:58:00 -0700 Subject: [PATCH 688/965] DrewDocUpdates Add PS to code blocks and added out blocks that where tied into code blocks. --- .../Get-RemoteAccessRoutingDomain.md | 5 ++++- .../Get-RemoteAccessUserActivity.md | 20 ++++++++++++------- .../Get-RoutingProtocolPreference.md | 5 ++++- .../remoteaccess/Get-VpnAuthProtocol.md | 5 ++++- 4 files changed, 25 insertions(+), 10 deletions(-) diff --git a/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessRoutingDomain.md b/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessRoutingDomain.md index 8b64792867..dd2dfb8ca9 100644 --- a/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessRoutingDomain.md +++ b/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessRoutingDomain.md @@ -26,8 +26,11 @@ The **Get-RemoteAccessRoutingDomain** cmdlet retrieves routing domain configurat ## EXAMPLES ### Example 1: Retrieve configuration for a specific routing domain +```powershell +Get-RemoteAccessRoutingDomain -Name Rd_01 ``` -PS C:\> Get-RemoteAccessRoutingDomain -Name Rd_01 + +```output RoutingDomain : Rd_01 RoutingDomainID : {11111111-1111-1111-1111-111111111001} diff --git a/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessUserActivity.md b/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessUserActivity.md index d67beb6036..2b197c0e9b 100644 --- a/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessUserActivity.md +++ b/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessUserActivity.md @@ -52,24 +52,27 @@ However, only one of these filters can be used at a time. ## EXAMPLES ### EXAMPLE 1 -``` -PS C:\>$startdate = Get-Date -Date "12/16/2011" +```powershell +$startdate = Get-Date -Date "12/16/2011" -PS C:\>$startdate +$startdate 16 December 2011 00:00:00 -PS C:\>$enddate = Get-Date -Date "12/23/2011" +$enddate = Get-Date -Date "12/23/2011" + +$enddate -PS C:\>$enddate +Get-RemoteAccessUserActivity -StartDateTime $startdate -EndDateTime $enddate -UserName "corp.contoso.com\User1" +``` -PS C:\>Get-RemoteAccessUserActivity -StartDateTime $startdate -EndDateTime $enddate -UserName "corp.contoso.com\User1" +```output ServerIpAddress ProtocolID ServerPort --------------- ---------- ---------- 2001:4898:0:fff:0:5efe:10.57.36.131 6 443 @@ -80,8 +83,11 @@ This example shows historic access details for a particular user. Query the accounting store for user activity details for User1 between the start date and end date. ### EXAMPLE 2 +```powershell +Get-RemoteAccessUserActivity -UserName "contoso\User1" -ComputerName edge1.corp.contoso.com ``` -PS C:\>Get-RemoteAccessUserActivity -UserName "contoso\User1" -ComputerName edge1.corp.contoso.com + +```output ServerIpAddress ProtocolID ServerPort --------------- ---------- ---------- 2001:4898:0:fff:0:5efe:10.166.20.136 6 80 diff --git a/docset/winserver2022-ps/remoteaccess/Get-RoutingProtocolPreference.md b/docset/winserver2022-ps/remoteaccess/Get-RoutingProtocolPreference.md index 58e113c457..5944d71823 100644 --- a/docset/winserver2022-ps/remoteaccess/Get-RoutingProtocolPreference.md +++ b/docset/winserver2022-ps/remoteaccess/Get-RoutingProtocolPreference.md @@ -29,8 +29,11 @@ Use the Set-RoutingProtocolPreference cmdlet to modify preferences. ## EXAMPLES ### Example 1: Display preferences +```powershell +Get-RoutingProtocolPreference ``` -PS C:\> Get-RoutingProtocolPreference + +```output Protocol Priority (Lower value = higher priority) ----------------------------- ----------------------------------------------- local 1 diff --git a/docset/winserver2022-ps/remoteaccess/Get-VpnAuthProtocol.md b/docset/winserver2022-ps/remoteaccess/Get-VpnAuthProtocol.md index 327aadad04..9a19aca072 100644 --- a/docset/winserver2022-ps/remoteaccess/Get-VpnAuthProtocol.md +++ b/docset/winserver2022-ps/remoteaccess/Get-VpnAuthProtocol.md @@ -25,8 +25,11 @@ The **Get-VpnAuthProtocol** cmdlet retrieves VPN authentication parameters for i ## EXAMPLES ### EXAMPLE 1 +```powershell +Get-VpnAuthProtocol ``` -PS C:\>Get-VpnAuthProtocol + +```output UserAuthProtocolAccepted : {EAP, MsChapv2} TunnelAuthProtocolsAdvertised : Certificates RootCertificateNameToAccept : From 458605ac8a7297755bd88ddd55ce5d80e76d2a3b Mon Sep 17 00:00:00 2001 From: "Mikey Lombardi (He/Him)" Date: Tue, 2 May 2023 16:17:34 -0500 Subject: [PATCH 689/965] Apply suggestions from review --- .../remoteaccess/Get-RemoteAccessRoutingDomain.md | 2 +- .../remoteaccess/Get-RemoteAccessUserActivity.md | 2 ++ .../remoteaccess/Get-RoutingProtocolPreference.md | 1 + docset/winserver2022-ps/remoteaccess/Get-VpnAuthProtocol.md | 1 + 4 files changed, 5 insertions(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessRoutingDomain.md b/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessRoutingDomain.md index dd2dfb8ca9..33bf4d2173 100644 --- a/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessRoutingDomain.md +++ b/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessRoutingDomain.md @@ -30,7 +30,7 @@ The **Get-RemoteAccessRoutingDomain** cmdlet retrieves routing domain configurat Get-RemoteAccessRoutingDomain -Name Rd_01 ``` -```output +```Output RoutingDomain : Rd_01 RoutingDomainID : {11111111-1111-1111-1111-111111111001} diff --git a/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessUserActivity.md b/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessUserActivity.md index 2b197c0e9b..1c7702f93b 100644 --- a/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessUserActivity.md +++ b/docset/winserver2022-ps/remoteaccess/Get-RemoteAccessUserActivity.md @@ -52,6 +52,7 @@ However, only one of these filters can be used at a time. ## EXAMPLES ### EXAMPLE 1 + ```powershell $startdate = Get-Date -Date "12/16/2011" @@ -83,6 +84,7 @@ This example shows historic access details for a particular user. Query the accounting store for user activity details for User1 between the start date and end date. ### EXAMPLE 2 + ```powershell Get-RemoteAccessUserActivity -UserName "contoso\User1" -ComputerName edge1.corp.contoso.com ``` diff --git a/docset/winserver2022-ps/remoteaccess/Get-RoutingProtocolPreference.md b/docset/winserver2022-ps/remoteaccess/Get-RoutingProtocolPreference.md index 5944d71823..3cb95b7940 100644 --- a/docset/winserver2022-ps/remoteaccess/Get-RoutingProtocolPreference.md +++ b/docset/winserver2022-ps/remoteaccess/Get-RoutingProtocolPreference.md @@ -29,6 +29,7 @@ Use the Set-RoutingProtocolPreference cmdlet to modify preferences. ## EXAMPLES ### Example 1: Display preferences + ```powershell Get-RoutingProtocolPreference ``` diff --git a/docset/winserver2022-ps/remoteaccess/Get-VpnAuthProtocol.md b/docset/winserver2022-ps/remoteaccess/Get-VpnAuthProtocol.md index 9a19aca072..2cf3b76451 100644 --- a/docset/winserver2022-ps/remoteaccess/Get-VpnAuthProtocol.md +++ b/docset/winserver2022-ps/remoteaccess/Get-VpnAuthProtocol.md @@ -25,6 +25,7 @@ The **Get-VpnAuthProtocol** cmdlet retrieves VPN authentication parameters for i ## EXAMPLES ### EXAMPLE 1 + ```powershell Get-VpnAuthProtocol ``` From 3f19ee12c73b814722029c9b67d2d8bba63f629c Mon Sep 17 00:00:00 2001 From: Paula Kingsley Date: Tue, 2 May 2023 14:27:09 -0700 Subject: [PATCH 690/965] Update docset/winserver2022-ps/grouppolicy/Get-GPO.md Backticks around cmdlet Co-authored-by: Mikey Lombardi (He/Him) --- docset/winserver2022-ps/grouppolicy/Get-GPO.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/grouppolicy/Get-GPO.md b/docset/winserver2022-ps/grouppolicy/Get-GPO.md index 29dd4f43ce..947c96821e 100644 --- a/docset/winserver2022-ps/grouppolicy/Get-GPO.md +++ b/docset/winserver2022-ps/grouppolicy/Get-GPO.md @@ -35,7 +35,7 @@ Get-GPO [[-Domain] ] [[-Server] ] [-All] [] ## DESCRIPTION -The **Get-GPO** cmdlet gets one Group Policy Object (GPO) or all the GPOs in a domain. +The `Get-GPO` cmdlet gets one Group Policy Object (GPO) or all the GPOs in a domain. You can specify a GPO by its display name or by its globally unique identifier (GUID) to get a single GPO, or you can get all the GPOs in the domain through the **All** parameter. From 236fa35b65b5b0e3bd2a7bdd9e83fa519acaad12 Mon Sep 17 00:00:00 2001 From: Paula Kingsley Date: Tue, 2 May 2023 14:27:24 -0700 Subject: [PATCH 691/965] Update docset/winserver2022-ps/grouppolicy/Get-GPO.md Co-authored-by: Mikey Lombardi (He/Him) --- docset/winserver2022-ps/grouppolicy/Get-GPO.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/grouppolicy/Get-GPO.md b/docset/winserver2022-ps/grouppolicy/Get-GPO.md index 947c96821e..279cb68bcc 100644 --- a/docset/winserver2022-ps/grouppolicy/Get-GPO.md +++ b/docset/winserver2022-ps/grouppolicy/Get-GPO.md @@ -41,7 +41,7 @@ single GPO, or you can get all the GPOs in the domain through the **All** parame This cmdlet returns one or more objects that represent the requested GPOs. By default, properties of the requested GPOs are printed to the display; however, you can also pipe -the output of the **Get-GPO** cmdlet to other Group Policy cmdlets. +the output of the `Get-GPO` cmdlet to other Group Policy cmdlets. ## EXAMPLES From e6f5e8ba6549b76ec82f31fa04a0ae54700d8da7 Mon Sep 17 00:00:00 2001 From: Paula Kingsley Date: Tue, 2 May 2023 14:28:06 -0700 Subject: [PATCH 692/965] Update docset/winserver2022-ps/grouppolicy/Get-GPO.md backticks around values also Co-authored-by: Mikey Lombardi (He/Him) --- docset/winserver2022-ps/grouppolicy/Get-GPO.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/grouppolicy/Get-GPO.md b/docset/winserver2022-ps/grouppolicy/Get-GPO.md index 279cb68bcc..32ff518c10 100644 --- a/docset/winserver2022-ps/grouppolicy/Get-GPO.md +++ b/docset/winserver2022-ps/grouppolicy/Get-GPO.md @@ -110,8 +110,8 @@ ComputerVersion : AD Version: 0, SysVol Version: 0 WmiFilter : ``` -This command gets the GPO that has the ID (GUID) 331a09564-cd4a-4520-98fa-446a2af23b4b in the -sales.contoso.com domain. +This command gets the GPO that has the ID (GUID) `331a09564-cd4a-4520-98fa-446a2af23b4b` in the +`sales.contoso.com` domain. If the domain of the user that is running the session (or, for startup and shutdown scripts, the computer) is different that sales.contoso.com, a trust must exist between the two domains. The command retrieves the GPO information by contacting the PDC (in the sales.contoso.com domain). From 1b01f2f6fd77817877742e4dc17543132b5d83fe Mon Sep 17 00:00:00 2001 From: Paula Kingsley Date: Tue, 2 May 2023 14:28:31 -0700 Subject: [PATCH 693/965] Update docset/winserver2022-ps/grouppolicy/Get-GPO.md Co-authored-by: Mikey Lombardi (He/Him) --- docset/winserver2022-ps/grouppolicy/Get-GPO.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/grouppolicy/Get-GPO.md b/docset/winserver2022-ps/grouppolicy/Get-GPO.md index 32ff518c10..e115edf823 100644 --- a/docset/winserver2022-ps/grouppolicy/Get-GPO.md +++ b/docset/winserver2022-ps/grouppolicy/Get-GPO.md @@ -114,7 +114,7 @@ This command gets the GPO that has the ID (GUID) `331a09564-cd4a-4520-98fa-446a2 `sales.contoso.com` domain. If the domain of the user that is running the session (or, for startup and shutdown scripts, the computer) is different that sales.contoso.com, a trust must exist between the two domains. -The command retrieves the GPO information by contacting the PDC (in the sales.contoso.com domain). +The command retrieves the GPO information by contacting the PDC (in the `sales.contoso.com` domain). ### Example 3: Get all GPOs from a domain From 9f7882b32bd00f77be9b9cb3113ea05db31d2beb Mon Sep 17 00:00:00 2001 From: Paula Kingsley Date: Tue, 2 May 2023 14:29:01 -0700 Subject: [PATCH 694/965] Update docset/winserver2022-ps/grouppolicy/Get-GPO.md Co-authored-by: Mikey Lombardi (He/Him) --- docset/winserver2022-ps/grouppolicy/Get-GPO.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/grouppolicy/Get-GPO.md b/docset/winserver2022-ps/grouppolicy/Get-GPO.md index e115edf823..78363ff186 100644 --- a/docset/winserver2022-ps/grouppolicy/Get-GPO.md +++ b/docset/winserver2022-ps/grouppolicy/Get-GPO.md @@ -147,7 +147,7 @@ Accept wildcard characters: False Specifies the domain for this cmdlet. You must specify the fully qualified domain name (FQDN) of the domain. -For the **Get-GPO** cmdlet, the GPO (or GPOs) to that this cmdlet gets must exist in this domain. +For the `Get-GPO` cmdlet, the GPO (or GPOs) to that this cmdlet gets must exist in this domain. If you do not specify the **Domain** parameter, the domain of the user that is running the current session is used. From a489b20fe6759b6ea487b0af5dad19f15d1ad3e8 Mon Sep 17 00:00:00 2001 From: Paula Kingsley Date: Tue, 2 May 2023 14:31:09 -0700 Subject: [PATCH 695/965] Update docset/winserver2022-ps/grouppolicy/Get-GPO.md corrected bold, added relative link to about_aliases Co-authored-by: Mikey Lombardi (He/Him) --- docset/winserver2022-ps/grouppolicy/Get-GPO.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/grouppolicy/Get-GPO.md b/docset/winserver2022-ps/grouppolicy/Get-GPO.md index 78363ff186..05fb9747c8 100644 --- a/docset/winserver2022-ps/grouppolicy/Get-GPO.md +++ b/docset/winserver2022-ps/grouppolicy/Get-GPO.md @@ -160,7 +160,7 @@ session (or, for a startup or shutdown script, the computer), a trust must exist domain and the domain of the user or the computer. You can also refer to the **Domain** parameter by its built-in alias, **domainname.** -For more information, see **about_Aliases.** +For more information, see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: String From 43adbdc208390044e0932bf7a19618e235e4f940 Mon Sep 17 00:00:00 2001 From: Paula Kingsley Date: Tue, 2 May 2023 14:33:20 -0700 Subject: [PATCH 696/965] Update docset/winserver2022-ps/grouppolicy/Get-GPO.md Co-authored-by: Mikey Lombardi (He/Him) --- docset/winserver2022-ps/grouppolicy/Get-GPO.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docset/winserver2022-ps/grouppolicy/Get-GPO.md b/docset/winserver2022-ps/grouppolicy/Get-GPO.md index 05fb9747c8..6f46dcc04f 100644 --- a/docset/winserver2022-ps/grouppolicy/Get-GPO.md +++ b/docset/winserver2022-ps/grouppolicy/Get-GPO.md @@ -273,10 +273,10 @@ This cmdlet returns an object that represents the requested GPO. script, the default domain is the domain to which the computer is joined. Only one domain can be used by an instance of this cmdlet. If you pipe a collection of GPO - (Microsoft.GroupPolicy.Gpo) objects to this cmdlet, the DomainName property of the first GPO - object in the collection specifies the domain for the cmdlet. This is because **domainname** is a - built-in alias for the **Domain** parameter, and the **Domain** parameter can take its value by - property name from the pipeline. A non-terminating error occurs for any GPOs in the collection + (**Microsoft.GroupPolicy.Gpo**) objects to this cmdlet, the **DomainName** property of the first + GPO object in the collection specifies the domain for the cmdlet. This is because **domainname** + is a built-in alias for the **Domain** parameter, and the **Domain** parameter can take its value + by property name from the pipeline. A non-terminating error occurs for any GPOs in the collection that are not in this domain. If this domain is different from the domain of the user account (for startup or shutdown scripts, the computer account), a trust must exist between the two domains. From 969a7334d8ed5354d64ba57524fb2a59db28f44f Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Tue, 2 May 2023 22:13:31 -0400 Subject: [PATCH 697/965] Spelling dictionary additions --- .vscode/cspell/winmodules/dictionaries/winps.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.vscode/cspell/winmodules/dictionaries/winps.txt b/.vscode/cspell/winmodules/dictionaries/winps.txt index 08b242b231..90698b8fc4 100644 --- a/.vscode/cspell/winmodules/dictionaries/winps.txt +++ b/.vscode/cspell/winmodules/dictionaries/winps.txt @@ -1,7 +1,10 @@ ADCS +Cmdletization Dcpromo +Dedup DSRM krbtgt NTDS RODC Sysvol +Unoptimization From 6eaf34077df1024dd49ced3a8972160e8b292f90 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Tue, 2 May 2023 22:13:47 -0400 Subject: [PATCH 698/965] Style guide fixes --- .../deduplication/Stop-DedupJob.md | 128 +++++++++++------- 1 file changed, 77 insertions(+), 51 deletions(-) diff --git a/docset/winserver2022-ps/deduplication/Stop-DedupJob.md b/docset/winserver2022-ps/deduplication/Stop-DedupJob.md index bf1a8635e5..2b85f3669a 100644 --- a/docset/winserver2022-ps/deduplication/Stop-DedupJob.md +++ b/docset/winserver2022-ps/deduplication/Stop-DedupJob.md @@ -16,51 +16,59 @@ Cancels one or more specified data deduplication jobs. ## SYNTAX ### ByVolume (Default) + ``` -Stop-DedupJob [-Volume] [[-Type] ] [-CimSession ] [-ThrottleLimit ] - [-AsJob] [-PassThru] [] +Stop-DedupJob [-Volume] [[-Type] ] [-CimSession ] + [-ThrottleLimit ] [-AsJob] [-PassThru] [] ``` ### ById + ``` -Stop-DedupJob [-Id ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] - [] +Stop-DedupJob [-Id ] [-CimSession ] [-ThrottleLimit ] + [-AsJob] [-PassThru] [] ``` ### InputObject (cdxml) + ``` -Stop-DedupJob -InputObject [-CimSession ] [-ThrottleLimit ] [-AsJob] - [-PassThru] [] +Stop-DedupJob -InputObject [-CimSession ] + [-ThrottleLimit ] [-AsJob] [-PassThru] [] ``` ## DESCRIPTION -The **Stop-DedupJob** cmdlet cancels one or more specified data deduplication jobs. + +The `Stop-DedupJob` cmdlet cancels one or more specified data deduplication jobs. To run this cmdlet, you must start Windows PowerShell® with the **Run as administrator** option. ## EXAMPLES ### Example 1: Stop jobs on a specified volume -``` -PS C:\> Stop-DedupJob -Volume "D:" + +```powershell +Stop-DedupJob -Volume "D:" ``` -This command stops the deduplication jobs on the D: volume. +This command stops the deduplication jobs on the `D:` volume. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. + +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -72,12 +80,14 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or +[Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml -Type: CimSession[] +Type: Microsoft.Management.Infrastructure.CimSession[] Parameter Sets: (All) Aliases: Session @@ -89,11 +99,11 @@ Accept wildcard characters: False ``` ### -Id -Identifies the job to cancel. -To obtain this ID, run the **Get-DedupJob** cmdlet. + +Identifies the job to cancel. To obtain this ID, run the `Get-DedupJob` cmdlet. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: ById Aliases: @@ -105,11 +115,12 @@ Accept wildcard characters: False ``` ### -InputObject -Specifies the input to this cmdlet. -You can use this parameter, or you can pipe the input to this cmdlet. + +Specifies the input to this cmdlet. You can use this parameter, or you can pipe the input to this +cmdlet. ```yaml -Type: CimInstance[] +Type: Microsoft.Management.Infrastructure.CimInstance[] Parameter Sets: InputObject (cdxml) Aliases: @@ -121,10 +132,11 @@ Accept wildcard characters: False ``` ### -PassThru + Returns an object representing data deduplication settings to stop. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -136,12 +148,15 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: (All) Aliases: @@ -153,13 +168,14 @@ Accept wildcard characters: False ``` ### -Type -Specifies an array of types of data deduplication jobs schedules for which to return **DeduplicationJobSchedule** objects. -The acceptable values for this parameter are: -- Optimization -- GarbageCollection -- Scrubbing -- Unoptimization +Specifies an array of types of data deduplication jobs schedules for which to return +**DeduplicationJobSchedule** objects. The acceptable values for this parameter are: + +- `Optimization` +- `GarbageCollection` +- `Scrubbing` +- `Unoptimization` ```yaml Type: Type[] @@ -175,14 +191,14 @@ Accept wildcard characters: False ``` ### -Volume -Specifies one or more file system volumes on which to cancel one or more named data deduplication jobs. -Enter one or more volume IDs, drive letters, or volume GUID paths. -For drive letters, use the format D:. -For volume GUID paths, use the format \\\\?\Volume{{GUID}}\. -Separate multiple volumes with a comma. + +Specifies one or more file system volumes on which to cancel one or more named data deduplication +jobs. Enter one or more volume IDs, drive letters, or volume GUID paths. For drive letters, use the +format `D:`. For volume GUID paths, use the format `\\\\?\Volume{{GUID}}\`. Separate multiple +volumes with a comma. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: ByVolume Aliases: Path, Name, DeviceId @@ -194,27 +210,37 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### System.String[] ### Microsoft.Management.Infrastructure.CimInstance -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. -The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. + +The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the +namespace and class name for the underlying WMI object. ### Microsoft.PowerShell.Cmdletization.GeneratedTypes.DedupJob.Type[] ## OUTPUTS ### Microsoft.Management.Infrastructure.CimInstance -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. -The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. + +The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the +namespace and class name for the underlying WMI object. ### Microsoft.Management.Infrastructure.CimInstance#ROOT/Microsoft/Windows/Deduplication/MSFT_DedupJob -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. -The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. + +The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the +namespace and class name for the underlying WMI object. ## NOTES From 045973668c462d970d5e5c71d0d98aba8c8abace Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Tue, 2 May 2023 23:33:17 -0400 Subject: [PATCH 699/965] Added backticks around references to the MY certificate stores and various provider values that can be passed to the Provider parameter. Took a crack at formatting help for the TextExtension parameter. --- .../pki/New-SelfSignedCertificate.md | 254 ++++++++---------- 1 file changed, 106 insertions(+), 148 deletions(-) diff --git a/docset/winserver2022-ps/pki/New-SelfSignedCertificate.md b/docset/winserver2022-ps/pki/New-SelfSignedCertificate.md index d5f3cc4a7f..55c20a11bd 100644 --- a/docset/winserver2022-ps/pki/New-SelfSignedCertificate.md +++ b/docset/winserver2022-ps/pki/New-SelfSignedCertificate.md @@ -11,7 +11,6 @@ title: New-SelfSignedCertificate # New-SelfSignedCertificate ## SYNOPSIS - Creates a new self-signed certificate for testing purposes. ## SYNTAX @@ -55,7 +54,7 @@ $params = @{ New-SelfSignedCertificate @params ``` -This example creates a self-signed SSL server certificate in the computer MY store with the subject +This example creates a self-signed SSL server certificate in the computer `MY` store with the subject alternative names `www.fabrikam.com` and `www.contoso.com` and the Subject and Issuer name set to `www.fabrikam.com`. @@ -68,7 +67,7 @@ PS Cert:\LocalMachine\My> New-SelfSignedCertificate -CloneCert $OldCert ``` This example creates a copy of the certificate specified by the **CloneCert** parameter and puts it -in the computer MY store. +in the computer `MY` store. ### EXAMPLE 3 @@ -87,9 +86,9 @@ $params = @{ New-SelfSignedCertificate @params ``` -This example creates a self-signed S/MIME certificate in the user MY store. The certificate uses the -default provider, which is the `Microsoft Software Key Storage Provider`. The certificate uses an -`RSA` asymmetric key with a key size of `2048` bits. This certificate has the subject alternative +This example creates a self-signed S/MIME certificate in the user `MY` store. The certificate uses +the default provider, which is the `Microsoft Software Key Storage Provider`. The certificate uses +an `RSA` asymmetric key with a key size of `2048` bits. This certificate has the subject alternative names of `patti.fuller@contoso.com` as RFC822 and `pattifuller@contoso.com` as Principal Name. This command does not specify the **NotAfter** parameter. Therefore, the certificate expires in one @@ -112,7 +111,7 @@ $params = @{ New-SelfSignedCertificate @params ``` -This example creates a self-signed client authentication certificate in the user MY store. The +This example creates a self-signed client authentication certificate in the user `MY` store. The certificate uses the default provider, which is the `Microsoft Software Key Storage Provider`. The certificate uses an `RSA` asymmetric key with a key size of `2048` bits. The certificate has a subject alternative name of `pattifuller@contoso.com`. @@ -136,10 +135,10 @@ $params = @{ New-SelfSignedCertificate @params ``` -This example creates a self-signed client authentication certificate in the user MY store. The +This example creates a self-signed client authentication certificate in the user `MY` store. The certificate uses the default provider, which is the `Microsoft Software Key Storage Provider`. The -certificate uses an elliptic curve asymmetric key and the curve parameters nist256, which creates a -256-bit key. The subject alternative name is `pattifuller@contoso.com`. +certificate uses an elliptic curve asymmetric key and the curve parameters `nist256`, which creates +a 256-bit key. The subject alternative name is `pattifuller@contoso.com`. The certificate expires in one year. @@ -162,7 +161,7 @@ $params = @{ New-SelfSignedCertificate @params ``` -This example creates a self-signed client authentication certificate in the user MY store. The +This example creates a self-signed client authentication certificate in the user `MY` store. The certificate uses the `Microsoft Platform Crypto Provider`. This provider uses the Trusted Platform Module (TPM) of the device to create the asymmetric key. The certificate uses an `RSA` asymmetric key with a key size of `2048` bits. The key is not exportable. The subject alternative name is @@ -210,9 +209,9 @@ $params = @{ New-SelfSignedCertificate @params ``` -This example creates a self-signed S/MIME certificate in the user MY store. The certificate uses the -default provider, which is the `Microsoft Software Key Storage Provider`. The certificate uses an -`RSA` asymmetric key with a key size of `2048` bits. This certificate has the subject alternative +This example creates a self-signed S/MIME certificate in the user `MY` store. The certificate uses +the default provider, which is the `Microsoft Software Key Storage Provider`. The certificate uses +an `RSA` asymmetric key with a key size of `2048` bits. This certificate has the subject alternative names of `patti.fuller@contoso.com` and `pattifuller@contoso.com` both as RFC822. This command does not specify the **NotAfter** parameter. Therefore, the certificate expires in one @@ -229,7 +228,7 @@ New-SelfSignedCertificate @params ``` This example creates a self-signed SSL server certificate with Subject and Issuer name set to -`localhost` and with subject alternative name set to IPAddress `127.0.0.1` and `::1` via +`localhost` and with subject alternative name set to **IPAddress** `127.0.0.1` and `::1` via **TextExtension**. ## PARAMETERS @@ -435,7 +434,7 @@ Accept wildcard characters: False ### -HardwareKeyUsage Specifies how a hardware key associated with the new certificate may be used. This parameter applies -only when you specify the Microsoft Platform Crypto Provider. The acceptable values for this +only when you specify the `Microsoft Platform Crypto Provider`. The acceptable values for this parameter are: - `None` @@ -486,9 +485,9 @@ Algorithms (ECDSA). The elliptic curve algorithm syntax is the following: -`ECDSA_`curvename +`ECDSA_{curvename}` -To obtain a value for curvename, use the `certutil -displayEccCurve` command. +To obtain a value for `{curvename}`, use the `certutil -displayEccCurve` command. Valid curve names contain a value in the **Curve OID** column in the output of the `certutil -displayEccCurve` command. @@ -527,8 +526,9 @@ Specifies the policy that governs the export of the private key that is associat certificate. The default value of `ExportableEncrypted` is not compatible with KSP and CSPs that do not allow key -export. These include the Microsoft Smart Card Key Storage Provider and the Microsoft Platform -Crypto Key Storage Provider. Specify `NonExportable` for providers that do not allow key export. +export. These include the `Microsoft Smart Card Key Storage Provider` and the +`Microsoft Platform Crypto Key Storage Provider`. Specify `NonExportable` for providers that do not +allow key export. ```yaml Type: Microsoft.CertificateServices.Commands.KeyExportPolicy[] @@ -578,7 +578,7 @@ Accept wildcard characters: False ### -KeyLocation Specifies the file system location where this cmdlet stores the private keys associated with the new -certificate. Specify this parameter only when you specify the Microsoft Platform Crypto Provider. +certificate. Specify this parameter only when you specify the `Microsoft Platform Crypto Provider`. ```yaml Type: System.String @@ -710,8 +710,8 @@ Accept wildcard characters: False ### -NotAfter Specifies the date and time, as a **DateTime** object, that the certificate expires. To obtain a -**DateTime** object, use the Get-Date cmdlet. The default value for this parameter is one year after -the certificate was created. +**DateTime** object, use the `Get-Date` cmdlet. The default value for this parameter is one year +after the certificate was created. ```yaml Type: System.DateTime @@ -969,146 +969,104 @@ Accept wildcard characters: False Specifies an array of certificate extensions, as strings, which this cmdlet includes in the new certificate. Each string must employ one of the following formats: -oid`=`base64String, where oid is the object identifier of the extension and base64String is a value -that you provide. After decoding base64String, the value must be valid Abstract Syntax Notation One -(ASN.1). For more information, see +`{oid}={base64String}`, where `{oid}` is the object identifier of the extension and `{base64String}` +is a value that you provide. After decoding `{base64String}`, the value must be valid Abstract +Syntax Notation One (ASN.1). For more information, see [Abstract Syntax Notation One (ASN.1): Specification of basic notation](http://www.itu.int/ITU-T/studygroups/com17/languages/X.680-0207.pdf). -oid`={hex}`hexidecimalString, where oid is the object identifier of the extension and -hexidecimalString is a value that you provide. After decoding hexidecimalString, the value must be -valid ASN.1. +`{oid}={hex}{hexadecimalString}`, where `{oid}` is the object identifier of the extension and +`{hexadecimalString}` is a value that you provide. After decoding `{hexadecimalString}`, the value +must be valid ASN.1. -oid`={text}`String, where oid is the object identifier of the extension and String is a value that -you provide. String must contain a textual representation of the extension value in a format -specific to each object ID. When String is processed, it will be encoded into an ASN.1 extension -value before being placed into the new certificate as an extension. +`{oid}={text}{String}`, where `{oid}` is the object identifier of the extension and `{String}` is a +value that you provide. `{String}` must contain a textual representation of the extension value in a +format specific to each object ID. When `{String}` is processed, it will be encoded into an ASN.1 +extension value before being placed into the new certificate as an extension. -To specify that an extension is critical, insert `{critical}` immediately following `oid=` in any of -the previous cases. +To specify that an extension is critical, insert `{critical}` immediately following `{oid}=` in any +of the previous cases. The object identifiers of some common extensions are as follows: -- Application Policy. -`1.3.6.1.4.1.311.21.10` -- Application Policy Mappings. -`1.3.6.1.4.1.311.21.11` -- Basic Constraints. -`2.5.29.19` -- Certificate Policies. -`2.5.29.32` -- Enhanced Key Usage. -`2.5.29.37` -- Name Constraints. -`2.5.29.30` -- Policy Mappings. -`2.5.29.33` -- Subject Alternative Name. -`2.5.29.17` - -Application Policy -`1.3.6.1.4.1.311.21.10={text}token=value&token=value…` -The tokens have the following possible values: - -- Flags. -0xhexidecimalNumber -- GUID. -A globally unique ID, such as this example: `f7c3ac41-b8ce-4fb4-aa58-3d1dc0e36b39` -- Notice. -Text notice -- OID. -Object identifier in dotted decimal notation, such as this example: `1.2.3.4.5` -- URL. -The URL of a host, such as this example: `http://computer07.contoso.com` +- Application Policy: `1.3.6.1.4.1.311.21.10` +- Application Policy Mappings: `1.3.6.1.4.1.311.21.11` +- Basic Constraints: `2.5.29.19` +- Certificate Policies: `2.5.29.32` +- Enhanced Key Usage: `2.5.29.37` +- Name Constraints: `2.5.29.30` +- Policy Mappings: `2.5.29.33` +- Subject Alternative Name: `2.5.29.17` + +Application Policy extension example: `1.3.6.1.4.1.311.21.10={text}{token}={value}&{token}={value}...` + +You can specify the following tokens in an Application Policy extension: + +- **Flags**: Bitwise flags in hexadecimal notation: `0x{hexadecimalNumber}` +- **GUID**: A globally unique ID, such as this example: `f7c3ac41-b8ce-4fb4-aa58-3d1dc0e36b39` +- **Notice**: Text notice +- **OID**: Object identifier in dotted decimal notation, such as this example: `1.2.3.4.5` +- **URL**: The URL of a host, such as this example: `http://computer07.contoso.com` To specify an Application Policy extension, specify the first object identifier, followed by zero or -more other **token=value** entries. These entries are subordinate to the preceding object -identifier. Specify subsequent object identifiers, each followed by its subordinate **token=value** -entries. - -Application Policy Mappings -`1.3.6.1.4.1.311.21.11={text}oid=oid&oid=oid…` - -Certificate Policies -`2.5.29.32={text}token=value&token=value…` -The tokens have the following possible values: - -- Flags. -0xhexidecimalNumber -- GUID. -A globally unique ID, such as this example: `f7c3ac41-b8ce-4fb4-aa58-3d1dc0e36b39` -- Notice. -Text notice -- OID. -Object ID in dotted decimal notation, such as this example: `1.2.3.4.5` -- URL. -The URL of a host, such as this example: `http://computer07.contoso.com` +more other `{token}={value}` entries. These entries are subordinate to the preceding object +identifier. Specify subsequent object identifiers, each followed by its subordinate +`{token}={value}` entries. + +Application Policy Mappings extension example: `1.3.6.1.4.1.311.21.11={text}oid={oid}&oid={oid}...` + +Certificate Policies extension example: `2.5.29.32={text}{token}={value}&{token}={value}...` + +You can specify the following tokens in a Certificate Policies extension: + +- **Flags**: Bitwise flags in hexadecimal notation: `0x{hexadecimalNumber}` +- **GUID**: A globally unique ID, such as this example: `f7c3ac41-b8ce-4fb4-aa58-3d1dc0e36b39` +- **Notice**: Text notice +- **OID**: Object identifier in dotted decimal notation, such as this example: `1.2.3.4.5` +- **URL**: The URL of a host, such as this example: `http://computer07.contoso.com` To specify a Certificate Policies extension, follow the same syntax as an Application Policy extension. -Enhanced Key Usage Object Identifiers -`2.5.29.37={text}oid,oid…` +Enhanced Key Usage Object Identifiers extension example: `2.5.29.37={text}{oid},{oid}...` + These key usages have the following object identifiers: -- Client Authentication. -`1.3.6.1.5.5.7.3.2` -- Server Authentication. -`1.3.6.1.5.5.7.3.1` -- Secure Email. -`1.3.6.1.5.5.7.3.4` -- Code Signing. -`1.3.6.1.5.5.7.3.3` -- Timestamp Signing. -`1.3.6.1.5.5.7.3.8` - -Name Constraints `2.5.29.30={text}subtree=subtreeValue&token=value&token=value&` -`…&subtree=subtreeValue&token=value&token=value…` The subtreeValue can have the following values: - -- `Include`. -Permitted names -- `Exclude`. -Excluded names - -The tokens have the following possible values: - -- DirectoryName. -`CN=Name,DC=Domain,DC=com` -- DNS. -A computer name in the following format: `computer.contoso.com` -- Email. -An email address, such as this example: `admin@contoso.com` -- IPAddress. -IPV4 address,IPV4 subnet mask or IPV6 address,IPV6 subnet mask -- RegisteredID. -ID in dotted decimal notation, such as this example: `1.2.3.4.5` -- UPN. -A user principal name in the following format: `admin@contoso.com` -- URL. -The URL of a host, such as this example: `http://computer07.contoso.com/index.html` - -Policy Mapping -`2.5.29.33={text}oid=oid&oid=oid…` - -Subject Alternative Name Syntax -`2.5.29.17={text}token=value&token=value…` -The tokens have the following possible values: - -- UPN. -A user principal name in the following format: `admin@contoso.com` -- Email. -An email address, such as this example: `admin@contoso.com` -- DNS. -A computer name in the following format: `computer.contoso.com` -- DirectoryName. -`CN=Name,DC=Domain,DC=com` -- URL. -The URL of a host, such as this example: `http://computer07.contoso.com/index.html` -- IPAddress. -An IP address -- RegisteredID. -ID in dotted decimal notation, such as this example: `1.2.3.4.5` -- GUID. -A globally unique ID, such as this example: `f7c3ac41-b8ce-4fb4-aa58-3d1dc0e36b39` +- Client Authentication: `1.3.6.1.5.5.7.3.2` +- Server Authentication: `1.3.6.1.5.5.7.3.1` +- Secure Email: `1.3.6.1.5.5.7.3.4` +- Code Signing: `1.3.6.1.5.5.7.3.3` +- Timestamp Signing: `1.3.6.1.5.5.7.3.8` + +Name Constraints extension example: +`2.5.29.30={text}subtree=include&{token}={value}&{token}={value}&subtree=exclude&{token}={value}...` + +A Name Constraints extension can have **Subtree** values of `Include` and `Exclude` to specify +included and excluded names. + +You can specify the following tokens in a Name Constraints extension: + +- **DirectoryName**: A distinguished name such as: `CN=Name,DC=Domain,DC=com` +- **DNS**: A computer name in the following format: `computer.contoso.com` +- **Email**: An email address, such as this example: `admin@contoso.com` +- **IPAddress**: `{IPV4 address},{IPV4 subnet mask}` or `{IPV6 address},{IPV6 subnet mask}` +- **RegisteredID**: ID in dotted decimal notation, such as this example: `1.2.3.4.5` +- **UPN**: A user principal name in the following format: `admin@contoso.com` +- **URL**: The URL of a host, such as this example: `http://computer07.contoso.com/index.html` + +Policy Mapping extension example: `2.5.29.33={text}oid={oid}&oid={oid}...` + +Subject Alternative Name extension example: `2.5.29.17={text}token=value&token=value...` + +You can specify the following tokens in a Subject Alternative Name extension: + +- **DirectoryName**: A distinguished name such as: `CN=Name,DC=Domain,DC=com` +- **DNS**: A computer name in the following format: `computer.contoso.com` +- **Email**: An email address, such as this example: `admin@contoso.com` +- **GUID**: A globally unique ID, such as this example: `f7c3ac41-b8ce-4fb4-aa58-3d1dc0e36b39` +- **IPAddress**: `{IPV4 address},{IPV4 subnet mask}` or `{IPV6 address},{IPV6 subnet mask}` +- **RegisteredID**: ID in dotted decimal notation, such as this example: `1.2.3.4.5` +- **UPN**: A user principal name in the following format: `admin@contoso.com` +- **URL**: The URL of a host, such as this example: `http://computer07.contoso.com/index.html` ```yaml Type: System.String[] From f7111201998a08e28fd3e2af729c315e385f95d6 Mon Sep 17 00:00:00 2001 From: Phil Bossman Date: Wed, 3 May 2023 00:07:22 -0400 Subject: [PATCH 700/965] GroupPolicy module Formating updates --- .../grouppolicy/Backup-GPO.md | 20 +- .../winserver2022-ps/grouppolicy/Copy-GPO.md | 27 +- .../grouppolicy/Get-GPInheritance.md | 13 +- .../winserver2022-ps/grouppolicy/Get-GPO.md | 55 +-- .../grouppolicy/Get-GPOReport.md | 22 +- .../grouppolicy/Get-GPPermission.md | 180 +++++--- .../grouppolicy/Get-GPPrefRegistryValue.md | 200 ++++++--- .../grouppolicy/Get-GPRegistryValue.md | 164 +++++--- .../grouppolicy/Get-GPResultantSetOfPolicy.md | 101 +++-- .../grouppolicy/Get-GPStarterGPO.md | 113 +++-- .../grouppolicy/GroupPolicy.md | 51 ++- .../grouppolicy/Import-GPO.md | 91 ++-- .../grouppolicy/Invoke-GPUpdate.md | 105 +++-- .../grouppolicy/New-GPLink.md | 197 +++++---- .../winserver2022-ps/grouppolicy/New-GPO.md | 133 +++--- .../grouppolicy/New-GPStarterGPO.md | 58 ++- .../grouppolicy/Remove-GPLink.md | 105 +++-- .../grouppolicy/Remove-GPO.md | 80 ++-- .../grouppolicy/Remove-GPPrefRegistryValue.md | 204 ++++++--- .../grouppolicy/Remove-GPRegistryValue.md | 153 ++++--- .../grouppolicy/Rename-GPO.md | 89 ++-- .../grouppolicy/Restore-GPO.md | 138 +++--- .../grouppolicy/Set-GPInheritance.md | 145 ++++--- .../grouppolicy/Set-GPLink.md | 183 +++++--- .../grouppolicy/Set-GPPermission.md | 204 +++++---- .../grouppolicy/Set-GPPrefRegistryValue.md | 398 ++++++++++++------ .../grouppolicy/Set-GPRegistryValue.md | 296 ++++++++----- 27 files changed, 2258 insertions(+), 1267 deletions(-) diff --git a/docset/winserver2022-ps/grouppolicy/Backup-GPO.md b/docset/winserver2022-ps/grouppolicy/Backup-GPO.md index 15e39f23f1..01b69895ff 100644 --- a/docset/winserver2022-ps/grouppolicy/Backup-GPO.md +++ b/docset/winserver2022-ps/grouppolicy/Backup-GPO.md @@ -80,12 +80,12 @@ This command backs up the GPO with the specified **GUID** in the `contoso.com` d the operation. If the domain of the user running the session (or, for startup and shutdown scripts, the computer) -is different from the `contoso.com` domain, a trust must exist between the two domains or the command -fails. +is different from the `contoso.com` domain, a trust must exist between the two domains or the +command fails. ### Example 3: Backup all GPOs in the domain of the user that is running the session -``` +```powershell Backup-Gpo -All -Path "\\Server1\GpoBackups" ``` @@ -158,8 +158,8 @@ If you specify a domain that is different from the domain of the user that is ru session (or, for a startup or shutdown script, the computer), a trust must exist between that domain and the domain of the user (or the computer). -You can also refer to Domain by its built-in alias, domain name. -For more information, see [about_Aliases](????????). +You can also refer to Domain by its built-in alias, domain name. For more information, see +[about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases) ```yaml Type: System.String @@ -178,11 +178,11 @@ Accept wildcard characters: False Specifies the GPO to backup by its globally unique identifier (GUID). The `GUID` uniquely identifies the GPO. -You can also refer to the **Guid** parameter by its built-in alias, **Id**. -For more information, see [about_Aliases](????????????). +You can also refer to the **Guid** parameter by its built-in alias, **Id**. For more information, +see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml -Type: Guid ???????????? +Type: Guid Parameter Sets: BackupOne(GUID) Aliases: Id @@ -201,8 +201,8 @@ The display name is not guaranteed to be unique in the domain. If another GPO with the same display name exists in the domain an error occurs. You can use the **Guid** parameter to uniquely identify a GPO. -You can also refer to the Name parameter by its built-in alias, **DisplayName**. -For more information, see [about_Aliases](??????????????). +You can also refer to the Name parameter by its built-in alias, **DisplayName**. For more +information, see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: System.String diff --git a/docset/winserver2022-ps/grouppolicy/Copy-GPO.md b/docset/winserver2022-ps/grouppolicy/Copy-GPO.md index 7dfa83cf2e..42d3a98e82 100644 --- a/docset/winserver2022-ps/grouppolicy/Copy-GPO.md +++ b/docset/winserver2022-ps/grouppolicy/Copy-GPO.md @@ -92,23 +92,24 @@ that is running the session.a trust must exist between that domain and the domai ```powershell Get-GPO -All -Domain "sales1.contoso.com" | ForEach-Object { $params = @{ - 'TargetName' = $_.DisplayName + 'TargetName' = $_.DisplayName + 'TargetDomain' = "sales2.contoso.com" + 'CopyACL' = $true + 'MigrationTable' = 'c:\tables\MigrationTable.migtable' } - -?????????????????????? - - $_ | Copy-GPO -TargetName ($_.DisplayName) -TargetDomain "sales2.contoso.com" -CopyAcl -MigrationTable 'c:\tables\MigrationTable.migtable' } + $_ | Copy-GPO @params } ``` -This command copies all the GPOs in the sales1.contoso.com domain to the sales2.contoso.com domain. +This command copies all the GPOs in the `sales1.contoso.com` domain to the `sales2.contoso.com` +domain. All the GPOs in the source domain are retrieved by using the **Get-GPO** cmdlet using the **All** parameter. The output of **Get-GPO** is piped into the ForEach-Object command. When each GPO is evaluated, it is piped into **Copy-GPO** and its display name is specified for the **TargetName** -parameter `-TargetName ($_.DisplayName)`. The **CopyACL** parameter is specified to copy the ACLs for -each GPO to the destination domain. The **MigrationTable** parameter specifies a migration table to -use to migrate Security principals and UNC paths to the destination domain. Both the **CopyACL** and -the **MigrationTable** parameters are optional. +parameter `-TargetName ($_.DisplayName)`. The **CopyACL** parameter is specified to copy the ACLs +for each GPO to the destination domain. The **MigrationTable** parameter specifies a migration table +to use to migrate Security principals and UNC paths to the destination domain. Both the **CopyACL** +and the **MigrationTable** parameters are optional. If a GPO with the same display name as a source GPO already exists in the destination domain, an error occurs when this command attempts to copy the source GPO. Because this command copies all GPOs @@ -116,7 +117,7 @@ in the source domain, errors occur for default GPOs; for instance, the Default D the Default Domain Controllers Policy GPO. These GPOs are not copied. You can suppress these error messages by supplying the **ErrorAction** parameter with a value of SilentlyContinue to **Copy-GPO**. For more information about the **ErrorAction** parameter, see -[about_CommonParameters](?????????). +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). The destination GPOs that were successfully copied are returned by this command. By default, they are printed to the display, but you can add commands to the end of the pipeline to further configure @@ -232,8 +233,8 @@ Accept wildcard characters: False ### -SourceGuid -Specifies the source GPO by its globally unique identifier `GUID`. The `GUID` uniquely identifies the -GPO. +Specifies the source GPO by its globally unique identifier `GUID`. The `GUID` uniquely identifies +the GPO. You can also refer to the **SourceGuid** parameter by its built-in alias, `Id`. diff --git a/docset/winserver2022-ps/grouppolicy/Get-GPInheritance.md b/docset/winserver2022-ps/grouppolicy/Get-GPInheritance.md index 20da4a4d34..db3742168a 100644 --- a/docset/winserver2022-ps/grouppolicy/Get-GPInheritance.md +++ b/docset/winserver2022-ps/grouppolicy/Get-GPInheritance.md @@ -91,13 +91,12 @@ InheritedGpoLinks : {Default Domain Policy} This command gets Group Policy inheritance information for the `contoso.com` domain. The domain controller with the host name `DomainController1` is contacted to complete the operation. -The domain does not have to be explicitly specified using the **Domain** parameter in this example. If -the domain of the user that is running the session (or, for startup and shutdown scripts, the +The domain does not have to be explicitly specified using the **Domain** parameter in this example. +If the domain of the user that is running the session (or, for startup and shutdown scripts, the computer) is the same as the target domain, or a trust exists between it and the target domain, you do not have to specify the **Domain** parameter. -### Example 3: Get GPOs that are linked to a specific organizational unit by evaluating the SOM - object +### Example 3: Get GPOs that are linked to a specific organizational unit by evaluating the SOM object ```powershell (Get-GPInheritance -Target "ou=myou,dc=contoso,dc=com").GpoLinks | @@ -132,7 +131,7 @@ WmiFilter : ``` This command evaluates the SOM object `Microsoft.GroupPolicy.SOM` returned by **Get-GPInheritance** -and returns the GPOs that are linked to the MyOU organizational unit. You can use this command to +and returns the GPOs that are linked to the `MyOU` organizational unit. You can use this command to set properties of the GPOs by piping its output into other cmdlets. For instance, you can pipe the output to the **Set-GPPermissions** cmdlet to delegate permissions to administrators of the OU for each of the GPOs linked to the OU. @@ -141,12 +140,14 @@ The **GpoLinks** property of the SOM object contains a list of all the GPO links Each object in this list is of type `Microsoft.GroupPolicy.GpoLink`. The following shows one such object: +```Output GpoId : d02126d4-82e8-4e87-b4a0-2d44b6891411 DisplayName : TestGPO-3 Enabled : True Enforced : False Target : ou=myou,dc=contoso,dc=com Order : 1 +``` The collection is piped into a foreach-object command, which retrieves each GPO by using the DisplayName property of the GpoLink object. @@ -171,7 +172,7 @@ session (or, for a startup or shutdown script, the computer), a trust must exist and the domain of the user or the computer. You can also refer to the **Domain** parameter by its built-in alias, `DomainName`. For more -information, see [about_Aliases](???????). +information, see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: System.String diff --git a/docset/winserver2022-ps/grouppolicy/Get-GPO.md b/docset/winserver2022-ps/grouppolicy/Get-GPO.md index b58e26e7a3..a3b4ff0732 100644 --- a/docset/winserver2022-ps/grouppolicy/Get-GPO.md +++ b/docset/winserver2022-ps/grouppolicy/Get-GPO.md @@ -40,8 +40,9 @@ The **Get-GPO** cmdlet gets one Group Policy Object (GPO) or all the GPOs in a d specify a GPO by its display name or by its globally unique identifier (GUID) to get a single GPO, or you can get all the GPOs in the domain through the **All** parameter. -This cmdlet returns one or more objects that represent the requested GPOs. -By default, properties of the requested GPOs are printed to the display; however, you can also pipe the output of the **Get-GPO** cmdlet to other Group Policy cmdlets. +This cmdlet returns one or more objects that represent the requested GPOs. By default, properties of +the requested GPOs are printed to the display; however, you can also pipe the output of the +**Get-GPO** cmdlet to other Group Policy cmdlets. ## EXAMPLES @@ -65,9 +66,9 @@ ComputerVersion : AD Version: 0, SysVol Version: 0 WmiFilter : ``` -This command gets the GPO named `Group Policy Test`. The GPO must exist in the domain of the user that -is running the session (or, for startup and shutdown scripts, the computer). The command gets the -GPO information by contacting the primary domain controller (PDC). +This command gets the GPO named `Group Policy Test`. The GPO must exist in the domain of the user +that is running the session (or, for startup and shutdown scripts, the computer). The command gets +the GPO information by contacting the primary domain controller (PDC). ### Example 2: Get a single GPO by GUID @@ -90,9 +91,9 @@ WmiFilter : ``` This command gets the GPO that has the ID (GUID) `331a09564-cd4a-4520-98fa-446a2af23b4b` in the -`sales.contoso.com` domain. If the domain of the user that is running the session (or, for startup and -shutdown scripts, the computer) is different that `sales.contoso.com`, a trust must exist between the -two domains. The command retrieves the GPO information by contacting the PDC (in the +`sales.contoso.com` domain. If the domain of the user that is running the session (or, for startup +and shutdown scripts, the computer) is different that `sales.contoso.com`, a trust must exist +between the two domains. The command retrieves the GPO information by contacting the PDC (in the `sales.contoso.com` domain). ### Example 3: Get all GPOs from a domain @@ -132,10 +133,12 @@ If you do not specify the **Domain** parameter, the domain of the user that is r session is used. If the cmdlet is being run from a computer startup or shutdown script, the domain of the computer is used. For more information, see the Notes section in the full Help. -If you specify a domain that is different from the domain of the user that is running the current session (or, for a startup or shutdown script, the computer), a trust must exist between that domain and the domain of the user or the computer. +If you specify a domain that is different from the domain of the user that is running the current +session (or, for a startup or shutdown script, the computer), a trust must exist between that domain +and the domain of the user or the computer. -You can also refer to the **Domain** parameter by its built-in alias, **DomainName**. -For more information, see [about_Aliases](????????????). +You can also refer to the **Domain** parameter by its built-in alias, **DomainName**. For more +information, see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: System.String @@ -237,19 +240,23 @@ This cmdlet returns an object that represents the requested GPO. * You can use the **Domain** parameter to explicitly specify the domain for this cmdlet. - If you do not explicitly specify the domain, the cmdlet uses a default domain. -The default domain is the domain that is used to access network resources by the security context under which the current session is running. -This domain is typically the domain of the user that is running the session. -For example, the domain of the user who started the session by opening Windows PowerShell from the Program Files menu, or the domain of a user that is specified in a runas command. -However, computer startup and shutdown scripts run under the context of the LocalSystem account. -The LocalSystem account is a built-in local account, and it accesses network resources under the context of the computer account. -Therefore, when this cmdlet is run from a startup or shutdown script, the default domain is the domain to which the computer is joined. - - Only one domain can be used by an instance of this cmdlet. -If you pipe a collection of GPO (Microsoft.GroupPolicy.Gpo) objects to this cmdlet, the DomainName property of the first GPO object in the collection specifies the domain for the cmdlet. -This is because domainname is a built-in alias for the **Domain** parameter, and the **Domain** parameter can take its value by property name from the pipeline. -A non-terminating error occurs for any GPOs in the collection that are not in this domain. -If this domain is different from the domain of the user account (for startup or shutdown scripts, the computer account), a trust must exist between the two domains. + If you do not explicitly specify the domain, the cmdlet uses a default domain. The default domain + is the domain that is used to access network resources by the security context under which the + current session is running. This domain is typically the domain of the user that is running the + session. For example, the domain of the user who started the session by opening Windows PowerShell + from the Program Files menu, or the domain of a user that is specified in a runas command. + However, computer startup and shutdown scripts run under the context of the LocalSystem account. + The LocalSystem account is a built-in local account, and it accesses network resources under the + context of the computer account. Therefore, when this cmdlet is run from a startup or shutdown + script, the default domain is the domain to which the computer is joined. + + Only one domain can be used by an instance of this cmdlet. If you pipe a collection of GPO + (Microsoft.GroupPolicy.Gpo) objects to this cmdlet, the DomainName property of the first GPO + object in the collection specifies the domain for the cmdlet. This is because domainname is a + built-in alias for the **Domain** parameter, and the **Domain** parameter can take its value by + property name from the pipeline. A non-terminating error occurs for any GPOs in the collection + that are not in this domain. If this domain is different from the domain of the user account (for + startup or shutdown scripts, the computer account), a trust must exist between the two domains. ## RELATED LINKS diff --git a/docset/winserver2022-ps/grouppolicy/Get-GPOReport.md b/docset/winserver2022-ps/grouppolicy/Get-GPOReport.md index b82d36521a..ffa04373b1 100644 --- a/docset/winserver2022-ps/grouppolicy/Get-GPOReport.md +++ b/docset/winserver2022-ps/grouppolicy/Get-GPOReport.md @@ -63,7 +63,14 @@ This command generates a report in HTML format for the GPO `TestGPO1` and writes ### Example 2: Generate an XML report for each GPO in the specified domain ```powershell -Get-GPOReport -All -Domain "sales.contoso.com" -Server "DC1" -ReportType XML -Path "C:\GPOReports\GPOReportsAll.xml" +$params = @{ + All = $true + Domain = 'sales.contoso.com' + Server = 'DC1' + ReportType = 'XML' + Path = 'C:\GPOReports\GPOReportsAll.xml' +} +Get-GPOReport @params ``` This command generates a report in XML format for each GPO in the `sales.contoso.com` domain and @@ -120,7 +127,7 @@ session or, (for a startup or shutdown script, the computer), a trust must exist and the domain of the user or the computer. You can also refer to Domain by its built-in alias, **DomainName**. For more information, see -[about_Aliases](????????????). +[about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: System.String @@ -139,8 +146,8 @@ Accept wildcard characters: False Specifies the GPO for which to generate the report by its globally unique identifier (GUID). The GUID uniquely identifies the GPO. -You can also refer to the **Guid** parameter by its built-in alias, **Id**. -For more information, see [about_Aliases](????????). +You can also refer to the **Guid** parameter by its built-in alias, **Id**. For more information, +see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases) ```yaml Type: Guid @@ -162,8 +169,8 @@ The display name is not guaranteed to be unique in the domain. If another GPO wi name exists in the domain an error occurs. You can use the **Guid** parameter to uniquely identify a GPO. -You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. -For more information, see [about_Aliases](????????). +You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. For more +information, see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: System.String @@ -224,7 +231,7 @@ If you do not specify the name by using the **Server** parameter, the primary do (PDC) emulator is contacted. You can refer to this parameter by its built-in alias, **DC**. For more information, see -[about_Aliases](????????). +[about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: System.String @@ -281,4 +288,3 @@ This cmdlet does not generate any output. startup or shutdown scripts, the computer account, a trust must exist between the two domains. ## RELATED LINKS - diff --git a/docset/winserver2022-ps/grouppolicy/Get-GPPermission.md b/docset/winserver2022-ps/grouppolicy/Get-GPPermission.md index 2d04002ead..06ce250dd9 100644 --- a/docset/winserver2022-ps/grouppolicy/Get-GPPermission.md +++ b/docset/winserver2022-ps/grouppolicy/Get-GPPermission.md @@ -11,59 +11,79 @@ title: Get-GPPermission # Get-GPPermission ## SYNOPSIS + Gets the permission level for one or more security principals on a specified GPO. ## SYNTAX ### SourcebyGUID (Default) + ``` Get-GPPermission -Guid [-TargetName ] [-TargetType ] [-DomainName ] [-Server ] [-All] [] ``` ### SourcebyName + ``` Get-GPPermission [-Name] [-TargetName ] [-TargetType ] [-DomainName ] [-Server ] [-All] [] ``` ## DESCRIPTION -The **Get-GPPermission** cmdlet gets the permission level for one or more security principals on the specified Group Policy Object (GPO). -You can use the **TargetName** and *TargetType* parameters to specify a user, security group, or computer for which to get the permission level. -You can use the **All** parameter to get the permission level for each security principal that includes: user, security group, or computer. -This only works for a user, security group, or computer that has permissions on the GPO. -You can specify the GPO by its display name or by its GUID. + +The **Get-GPPermission** cmdlet gets the permission level for one or more security principals on the +specified Group Policy Object (GPO). You can use the **TargetName** and **TargetType** parameters to +specify a user, security group, or computer for which to get the permission level. You can use the +**All** parameter to get the permission level for each security principal that includes: user, +security group, or computer. This only works for a user, security group, or computer that has +permissions on the GPO. You can specify the GPO by its display name or by its GUID. ## EXAMPLES ### Example 1: Get the permission level for group on the specified GPO + ```powershell -Get-GPPermission -Name "TestGpo" -TargetName "Domain Users" -TargetType Group -Trustee : Domain Users +Get-GPPermission -Name "TestGpo" -TargetName "Domain Users" -TargetType Group +``` +```Output +Trustee : Domain Users TrusteeType : Group - PermissionLevel : GpoRead - Inherited : False ``` This command gets the permission level for the Domain Users group on the GPO named TestGpo. ### Example 2: Get the permission level for group on the specified GPO with the specified GUID + ```powershell -Get-GPPermission -Domain "Sales.Contoso.com" -Server "DC1" -GUID fa4a9473-6e2a-4b87-ab78-175e68d97bde -TargetName "Domain Admins" -TargetType Group +$params = @{ + Domain = 'Sales.Contoso.com' + Server = 'DC1' + GUID = 'fa4a9473-6e2a-4b87-ab78-175e68d97bde' + TargetName = 'Domain Admins' + TargetType = 'Group' +} +Get-GPPermission @params ``` -This command gets the permission level for the Domain Admins group on the GPO with the GUID fa4a9473-6e2a-4b78-175e68d97bde in the Sales.Contoso.com domain. -The DC1.sales.contoso.com domain controller is contacted to complete the operation. +This command gets the permission level for the Domain Admins group on the GPO with the GUID +`fa4a9473-6e2a-4b78-175e68d97bde` in the `Sales.Contoso.com` domain. The `DC1.sales.contoso.com` +domain controller is contacted to complete the operation. -If the domain of the user that is running the session (or, for startup and shutdown scripts, the computer) is different from the sales.contoso.com domain, a trust must exist between the two domains, or the command fails. +If the domain of the user that is running the session (or, for startup and shutdown scripts, the +computer) is different from the sales.contoso.com domain, a trust must exist between the two +domains, or the command fails. ### Example 3: Get the permission level for all security principals on the specified GPO + ```powershell Get-GPPermission -Name "TestGPO" -All +``` +```Output Trustee : Authenticated Users TrusteeType : WellKnownGroup Permission : GpoApply @@ -90,12 +110,26 @@ Permission : GpoEditDeleteModifySecurity Inherited : False ``` -This command gets the permission level for each security principal that has permissions on the GPO named TestGPO. +This command gets the permission level for each security principal that has permissions on the GPO +named TestGPO. ### Example 4: Get the display name of each GPO for a specific permissions + ```powershell -Get-GPO -All | foreach-object { if($_ | Get-GPPermission -TargetName "contoso\Domain Admins" -TargetType Group -ErrorAction SilentlyContinue) {$_.DisplayName}} +Get-GPO -All | ForEach-Object { + if ( $_ | + $params = @{ + TargetName = 'contoso\Domain Admins' + TargetType = 'Group' + ErrorAction = 'SilentlyContinue' + } + Get-GPPermission @params) { + $_.DisplayName + } + } +``` +```Output Default Domain Policy TestGPO-1 TestGPO-2 Default Domain Controllers Policy @@ -103,23 +137,26 @@ Internet Security TestGPO ``` -This command lists the display name of each GPO (in the domain) on which the specified security principal has permissions. +This command lists the display name of each GPO (in the domain) on which the specified security +principal has permissions. -First, Get-GPO is used to retrieve all the GPOs in the domain (Get-GPO -All). -Then, the collection is piped into the foreach-object command. -As each GPO is evaluated, it is piped into Get-GPPermissions. -If a permission level is returned, the DisplayName property of the GPO is printed ($_.DisplayName). +First, **Get-GPO** is used to retrieve all the GPOs in the domain (**Get-GPO -All**). Then, the +collection is piped into the foreach-object command. As each GPO is evaluated, it is piped into +**Get-GPPermissions**. If a permission level is returned, the DisplayName property of the GPO is +printed ($_.DisplayName). -Note: The ErrorAction parameter is set to SilentlyContinue for Get-GPPermissions. -This is because a non-terminating error occurs if the specified security principal does not have permissions on the GPO. -Specifying the ErrorAction as SilentlyContinue prevents the error messages from being printed for GPOS on which the security principal does not have permissions. -For more information about the ErrorAction parameter, see about_CommonParameters. +Note: The ErrorAction parameter is set to SilentlyContinue for Get-GPPermissions. This is because a +non-terminating error occurs if the specified security principal does not have permissions on the +GPO. Specifying the ErrorAction as SilentlyContinue prevents the error messages from being printed +for GPOS on which the security principal does not have permissions. For more information about the +ErrorAction parameter, see about_CommonParameters. ## PARAMETERS ### -All -Indicates that the cmdlet gets the permission level for each user, group, or computer that has permissions on the GPO. +Indicates that the cmdlet gets the permission level for each user, group, or computer that has +permissions on the GPO. ```yaml Type: System.Management.Automation.SwitchParameter @@ -134,19 +171,23 @@ Accept wildcard characters: False ``` ### -DomainName + Specifies the domain for this cmdlet. You must specify the fully qualified domain name (FQDN) of the domain. -For the **Get-GPPermission** cmdlet, the GPO for which to get the permission level must exist in this domain. +For the **Get-GPPermission** cmdlet, the GPO for which to get the permission level must exist in +this domain. -If you do not specify the **Domain** parameter, the domain of the user that is running the current session is used. -If the cmdlet is being run from a computer startup or shutdown script, the domain of the computer is used. -For more information, see the Notes section in the full Help. +If you do not specify the **Domain** parameter, the domain of the user that is running the current +session is used. If the cmdlet is being run from a computer startup or shutdown script, the domain +of the computer is used. For more information, see the Notes section in the full Help. -If you specify a domain that is different from the domain of the user that is running the current session (or, for a startup or shutdown script, the computer), a trust must exist between that domain and the domain of the user or the computer. +If you specify a domain that is different from the domain of the user that is running the current +session (or, for a startup or shutdown script, the computer), a trust must exist between that domain +and the domain of the user or the computer. -You can also refer to the *Server* parameter by its built-in alias, domain. -For more information, see [about_Aliases](????????????). +You can also refer to the **Server** parameter by its built-in alias, domain. For more information, +see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: System.String @@ -162,11 +203,11 @@ Accept wildcard characters: False ### -Guid -Specifies the GPO from which to retrieve the permission level by its globally unique identifier (GUID). -The GUID uniquely identifies the GPO. +Specifies the GPO from which to retrieve the permission level by its globally unique identifier +(GUID). The GUID uniquely identifies the GPO. -You can also refer to the **Guid** parameter by its built-in alias, **Id**. -For more information, see [about_Aliases](????????). +You can also refer to the **Guid** parameter by its built-in alias, **Id**. For more information, +see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: Guid @@ -181,14 +222,15 @@ Accept wildcard characters: False ``` ### -Name + Specifies the GPO from which to retrieve the permission level by its display name. -The display name is not guaranteed to be unique in the domain. -If another GPO with the same display name exists in the domain an error occurs. -You can use the **Guid** parameter to uniquely identify a GPO. +The display name is not guaranteed to be unique in the domain. If another GPO with the same display +name exists in the domain an error occurs. You can use the **Guid** parameter to uniquely identify a +GPO. -You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. -For more information, see [about_Aliases](????????). +You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. For more +information, see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: System.String @@ -204,13 +246,13 @@ Accept wildcard characters: False ### -Server -Specifies the name of the domain controller that this cmdlet contacts to complete the operation. -You can specify either the fully qualified domain name (FQDN) or the host name. +Specifies the name of the domain controller that this cmdlet contacts to complete the operation. You +can specify either the fully qualified domain name (FQDN) or the host name. If you do not specify the name by using the **Server** parameter, the PDC emulator is contacted. -You can also refer to the *Server* parameter by its built-in alias, **DC**. -For more information, see [about_Aliases](????????). +You can also refer to the **Server** parameter by its built-in alias, **DC**. For more information, +see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: System.String @@ -225,17 +267,18 @@ Accept wildcard characters: False ``` ### -TargetName -Specifies the name of the security principal for which to get the permission level. -You can specify a user, a security group, or a computer. -You can use either the domain-qualified name of the security principal (domain\account) or just its name. -For instance, in the contoso.com domain, to specify: +Specifies the name of the security principal for which to get the permission level. You can specify +a user, a security group, or a computer. You can use either the domain-qualified name of the +security principal (domain\account) or just its name. + +For instance, in the `contoso.com` domain, to specify: -- The user "someuser", use "contoso\someuser" or "someuser". +- The user `someuser`, use `contoso\someuser` or `someuser`. -- The Domain Admins security group, use "contoso\Domain Admins" or "Domain Admins". +- The Domain Admins security group, use `contoso\Domain Admins` or `Domain Admins`. -- The computer "computer-01", use "contoso\computer-01" or "computer-01". +- The computer `computer-01`, use `contoso\computer-01` or `computer-01`. ```yaml Type: System.String @@ -250,6 +293,7 @@ Accept wildcard characters: False ``` ### -TargetType + The type of security principal for which to get the permission level. The acceptable values for this parameter are: @@ -275,30 +319,38 @@ Accept wildcard characters: False ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### Microsoft.GroupPolicy.Gpo -You can pipe a GPO to this cmdlet for which to get the permission level. -Collections that contain GPOs from different domains are not supported. + +You can pipe a GPO to this cmdlet for which to get the permission level. Collections that contain +GPOs from different domains are not supported. ## OUTPUTS -### -This cmdlet returns an object that represents permissions for the specified security principal (user, group, or computer) on the GPO. +### + +This cmdlet returns an object that represents permissions for the specified security principal +(user, group, or computer) on the GPO. ## NOTES * You can use the *DomainName* parameter to explicitly specify the domain for this cmdlet. - If you do not explicitly specify the domain, the cmdlet uses the default domain. -The default domain is the domain that is used to access network resources by the security context under which the current session is running. -This domain is typically the domain of the user that is running the session. -For example, the domain of the user who started the session by opening Windows PowerShell or the domain of a user that is specified in a runas command. -However, computer startup and shutdown scripts run under the context of the LocalSystem account. -The LocalSystem account is a built-in local account, and it accesses network resources under the context of the computer account. -Therefore, when this cmdlet is run from a startup or shutdown script, the default domain is the domain to which the computer is joined. + If you do not explicitly specify the domain, the cmdlet uses the default domain. The default + domain is the domain that is used to access network resources by the security context under which + the current session is running. This domain is typically the domain of the user that is running + the session. For example, the domain of the user who started the session by opening Windows + PowerShell or the domain of a user that is specified in a runas command. However, computer startup + and shutdown scripts run under the context of the LocalSystem account. The LocalSystem account is + a built-in local account, and it accesses network resources under the context of the computer + account. Therefore, when this cmdlet is run from a startup or shutdown script, the default domain + is the domain to which the computer is joined. ## RELATED LINKS diff --git a/docset/winserver2022-ps/grouppolicy/Get-GPPrefRegistryValue.md b/docset/winserver2022-ps/grouppolicy/Get-GPPrefRegistryValue.md index 083b9cc04d..1bc3495d84 100644 --- a/docset/winserver2022-ps/grouppolicy/Get-GPPrefRegistryValue.md +++ b/docset/winserver2022-ps/grouppolicy/Get-GPPrefRegistryValue.md @@ -11,41 +11,63 @@ title: Get-GPPrefRegistryValue # Get-GPPrefRegistryValue ## SYNOPSIS -Gets one or more Registry preference items under either Computer Configuration or User Configuration in a GPO. + +Gets one or more Registry preference items under either Computer Configuration or User Configuration +in a GPO. ## SYNTAX ### GetByGUID (Default) + ``` -Get-GPPrefRegistryValue -Guid -Context -Key [-ValueName ] - [-Order ] [-Domain ] [-Server ] [] +Get-GPPrefRegistryValue -Guid -Context -Key + [-ValueName ] [-Order ] [-Domain ] [-Server ] [] ``` ### GetByName + ``` -Get-GPPrefRegistryValue [-Name] -Context -Key [-ValueName ] - [-Order ] [-Domain ] [-Server ] [] +Get-GPPrefRegistryValue [-Name] -Context -Key + [-ValueName ] [-Order ] [-Domain ] [-Server ] [] ``` ## DESCRIPTION -The **Get-GPPrefRegistryValue** cmdlet gets one or more Registry preference items under either Computer Configuration or User Configuration in a Group Policy Object (GPO). -You must specify the *Context* parameter, for the user or computer, to indicate whether to get the Registry preference item from Computer Configuration or User Configuration. -You can specify the GPO by its display name or by its GUID. -You can get Registry preference items for a specific registry value, or for a key and any of its first-level registry values: +The **Get-GPPrefRegistryValue** cmdlet gets one or more Registry preference items under either +Computer Configuration or User Configuration in a Group Policy Object (GPO). You must specify the +*Context* parameter, for the user or computer, to indicate whether to get the Registry preference +item from Computer Configuration or User Configuration. You can specify the GPO by its display name +or by its GUID. -- To get any Registry preference items that configure a specific registry value, specify both the *Key* and the *ValueName* parameters. +You can get Registry preference items for a specific registry value, or for a key and any of its +first-level registry values: -- To get all the Registry preference items that configure a registry key and any first-level registry values directly under the key, specify the *Key* parameter without the *ValueName* parameter. +- To get any Registry preference items that configure a specific registry value, specify both the + **Key** and the *ValueName* parameters. -If you specify only a key, the cmdlet also returns its first-level subkeys for which there are Registry preference items that configure the subkey, its values, or any of its subkeys or their values. -You can use this information to browse for Registry preference items. +- To get all the Registry preference items that configure a registry key and any first-level + registry values directly under the key, specify the **Key** parameter without the *ValueName* + parameter. + +If you specify only a key, the cmdlet also returns its first-level subkeys for which there are +Registry preference items that configure the subkey, its values, or any of its subkeys or their +values. You can use this information to browse for Registry preference items. ## EXAMPLES ### Example 1: Get the Registry preference item value + ```powershell -Get-GPPrefRegistryValue -Name "TestGPO" -Context User -Key "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey" -ValueName "ValueOne" +$params = @{ + ValueName = 'ValueOne' + Context = 'User' + Key = 'HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey' + Name = 'TestGPO' +} +Get-GPPrefRegistryValue @params +``` + +```Output KeyPath : SOFTWARE\Microsoft\ExampleKey FullKeyPath : HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey Hive : LocalMachine @@ -59,11 +81,22 @@ ValueName : ValueOne HasValue : True ``` -This command gets the Registry preference item that is configured for the registry value HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey with value name ValueOne from User Configuration in the GPO named TestGPO. +This command gets the Registry preference item that is configured for the registry value +`HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey` with value name ValueOne from User Configuration +in the GPO named `TestGPO`. ### Example 2: Get all Registry preference items + ```powershell -Get-GPPrefRegistryValue -Name "TestGPO" -Context User -Key "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey" +$params = @{ + Context = 'User' + Key = 'HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey' + Name = 'TestGPO' +} +Get-GPPrefRegistryValue @params +``` + +```Output KeyPath : SOFTWARE\Microsoft\ExampleKey FullKeyPath : HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey Hive : LocalMachine @@ -99,16 +132,20 @@ FullKeyPath : HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey\SubKey2 Hive : LocalMachine ``` -This command gets all the Registry preference items that are configured for the registry key HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey and any of its first-level values from User Configuration in the GPO named TestGPO. +This command gets all the Registry preference items that are configured for the registry key +HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey and any of its first-level values from User +Configuration in the GPO named TestGPO. -In this example, Registry preference items that configure the following two first-level values of the registry key are returned: ValueOne and ValueTwo. -Two subkeys of the key are also returned. -This is because there are Registry preference items in User Configuration associated with each subkey. +In this example, Registry preference items that configure the following two first-level values of +the registry key are returned: ValueOne and ValueTwo. Two subkeys of the key are also returned. This +is because there are Registry preference items in User Configuration associated with each subkey. ## PARAMETERS ### -Context -Specifies whether the cmdlet gets the Registry preference item from User Configuration or Computer Configuration in the GPO. + +Specifies whether the cmdlet gets the Registry preference item from User Configuration or Computer +Configuration in the GPO. The acceptable values for this parameter are: User or Computer. @@ -127,19 +164,22 @@ Accept wildcard characters: False ### -Domain -Specifies the domain for this cmdlet. -You must specify the fully qualified domain name (FQDN) of the domain. +Specifies the domain for this cmdlet. You must specify the fully qualified domain name (FQDN) of the +domain. -For the **Get-GPPrefRegistryValue** cmdlet, the GPO for which to get the Registry preference item must exist in this domain. +For the **Get-GPPrefRegistryValue** cmdlet, the GPO for which to get the Registry preference item +must exist in this domain. -If you do not specify the **Domain** parameter, the domain of the user that is running the current session is used. -If the cmdlet is being run from a computer startup or shutdown script, the domain of the computer is used. -For more information, see the Notes section in the full Help. +If you do not specify the **Domain** parameter, the domain of the user that is running the current +session is used. If the cmdlet is being run from a computer startup or shutdown script, the domain +of the computer is used. For more information, see the Notes section in the full Help. -If you specify a domain that is different from the domain of the user that is running the current session (or, for a startup or shutdown script, the computer), a trust must exist between that domain and the domain of the user or the computer. +If you specify a domain that is different from the domain of the user that is running the current +session (or, for a startup or shutdown script, the computer), a trust must exist between that domain +and the domain of the user or the computer. -You can also refer to the **Domain** parameter by its built-in alias, **DomainName**. -For more information, see [about_Aliases](????????????)s](????????????). +You can also refer to the **Domain** parameter by its built-in alias, **DomainName**. For more +information, see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: System.String @@ -155,11 +195,11 @@ Accept wildcard characters: False ### -Guid -Specifies the GPO from which this cmdlet gets the Registry preference item by its globally unique identifier (GUID). -The GUID uniquely identifies the GPO. +Specifies the GPO from which this cmdlet gets the Registry preference item by its globally unique +identifier (GUID). The GUID uniquely identifies the GPO. -You can also refer to the **Guid** parameter by its built-in alias, **Id**. -For more information, see [about_Aliases](????????). +You can also refer to the **Guid** parameter by its built-in alias, **Id**. For more information, +see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: Guid @@ -174,7 +214,9 @@ Accept wildcard characters: False ``` ### -Key -Specifies the registry key for the Registry preference item that this cmdlet gets; for instance: HKEY_CURRENT_USER\Control Panel\Colors. + +Specifies the registry key for the Registry preference item that this cmdlet gets; for instance: +`HKEY_CURRENT_USER\Control Panel\Colors`. The acceptable values for this parameter are: @@ -184,16 +226,19 @@ The acceptable values for this parameter are: - HKEY_USERS (HKU) - HKEY_CURRENT_CONFIG (HKCC) -Any of these hives can be specified for Registry preference items in both Computer Configuration and User Configuration. +Any of these hives can be specified for Registry preference items in both Computer Configuration and +User Configuration. -The *Key* parameter can be specified with or without the *ValueName* parameter: +The **Key** parameter can be specified with or without the *ValueName* parameter: -- If the *ValueName* parameter is specified, all Registry preference items that configure the registry value are retrieved. +- If the **ValueName** parameter is specified, all Registry preference items that configure the + registry value are retrieved. -- If the *ValueName* parameter is not specified, all Registry preference items that configure the registry key and any of its first-level values are retrieved. +- If the **ValueName** parameter is not specified, all Registry preference items that configure the + registry key and any of its first-level values are retrieved. -You can also refer to the Key parameter by its built-in alias, FullKeyPath. -For more information, see [about_Aliases](????????). +You can also refer to the Key parameter by its built-in alias, FullKeyPath. For more information, +see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: System.String @@ -208,14 +253,15 @@ Accept wildcard characters: False ``` ### -Name + Specifies the GPO from which this cmdlet gets the Registry preference item by its display name. -The display name is not guaranteed to be unique in the domain. -If another GPO with the same display name exists in the domain an error occurs. -You can use the **Guid** parameter to uniquely identify a GPO. +The display name is not guaranteed to be unique in the domain. If another GPO with the same display +name exists in the domain an error occurs. You can use the **Guid** parameter to uniquely identify a +GPO. -You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. -For more information, **see about_Aliases**. +You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. For more +information, see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: System.String @@ -230,7 +276,9 @@ Accept wildcard characters: False ``` ### -Order -Specifies the order in which the Registry preference item is applied, relative to the other Registry preference items in the GPO, on a client. + +Specifies the order in which the Registry preference item is applied, relative to the other Registry +preference items in the GPO, on a client. ```yaml Type: Int32 @@ -246,13 +294,14 @@ Accept wildcard characters: False ### -Server -Specifies the name of the domain controller that this cmdlet contacts to complete the operation. -You can specify either the fully qualified domain name (FQDN) or the host name. +Specifies the name of the domain controller that this cmdlet contacts to complete the operation. You +can specify either the fully qualified domain name (FQDN) or the host name. -If you do not specify the name through the *Server* parameter, the primary domain controller (PDC) emulator is contacted. +If you do not specify the name through the **Server** parameter, the primary domain controller (PDC) +emulator is contacted. -You can also refer to the *Server* parameter by its built-in alias, **DC**. -For more information, see [about_Aliases](????????). +You can also refer to the **Server** parameter by its built-in alias, **DC**. For more information, +see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: System.String @@ -267,12 +316,15 @@ Accept wildcard characters: False ``` ### -ValueName -Specifies the name of a registry value for which this cmdlet gets all Registry preference items. -For instance, the registry key HKEY_CURRENT_USER\Control Panel\Colors can have a value with the following name: ActiveTitle. -For the default value of a registry key, specify either "(default)" or an empty string (""). -When you want to gets Registry preference items for a registry key and all its first-level values, do not specify this parameter. -When you want to get Registry preference items only for a specific registry value, specify this parameter together with the *Key* parameter. +Specifies the name of a registry value for which this cmdlet gets all Registry preference items. For +instance, the registry key `HKEY_CURRENT_USER\Control Panel\Colors` can have a value with the +following name: ActiveTitle. For the default value of a registry key, specify either "(default)" or +an empty string (""). + +When you want to gets Registry preference items for a registry key and all its first-level values, +do not specify this parameter. When you want to get Registry preference items only for a specific +registry value, specify this parameter together with the **Key** parameter. ```yaml Type: System.String @@ -288,19 +340,24 @@ Accept wildcard characters: False ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### Microsoft.GroupPolicy.Gpo -This cmdlet takes a GPO as input. -Collections that contain GPOs from different domains are not supported. + +This cmdlet takes a GPO as input. Collections that contain GPOs from different domains are not +supported. ## OUTPUTS ### Microsoft.GroupPolicy.PreferenceRegistrySetting -This cmdlet returns **PreferenceRegistrySetting** objects. -You can pipe these objects to the following cmdlets: + +This cmdlet returns **PreferenceRegistrySetting** objects. You can pipe these objects to the +following cmdlets: - Set-GPPrefRegistryValue @@ -308,17 +365,20 @@ You can pipe these objects to the following cmdlets: ## NOTES -* If a Registry preference item for the specified registry key or value is not found, a non-terminating error occurs. +* If a Registry preference item for the specified registry key or value is not found, a + non-terminating error occurs. You can use the **Domain** parameter to explicitly specify the domain for this cmdlet. - If you do not explicitly specify the domain, the cmdlet uses a default domain. -The default domain is the domain that is used to access network resources by the security context under which the current session is running. -This domain is typically the domain of the user that is running the session. -For instance, the domain of the user who started the session by opening Windows PowerShell or the domain of a user that is specified in a runas command. -However, computer startup and shutdown scripts run under the context of the LocalSystem account. -The LocalSystem account is a built-in local account, and it accesses network resources under the context of the computer account. -Therefore, when this cmdlet is run from a startup or shutdown script, the default domain is the domain to which the computer is joined. + If you do not explicitly specify the domain, the cmdlet uses a default domain. The default domain + is the domain that is used to access network resources by the security context under which the + current session is running. This domain is typically the domain of the user that is running the + session. For instance, the domain of the user who started the session by opening Windows + PowerShell or the domain of a user that is specified in a runas command. However, computer startup + and shutdown scripts run under the context of the LocalSystem account. The LocalSystem account is + a built-in local account, and it accesses network resources under the context of the computer + account. Therefore, when this cmdlet is run from a startup or shutdown script, the default domain + is the domain to which the computer is joined. ## RELATED LINKS diff --git a/docset/winserver2022-ps/grouppolicy/Get-GPRegistryValue.md b/docset/winserver2022-ps/grouppolicy/Get-GPRegistryValue.md index edbe15752c..500fdf23c7 100644 --- a/docset/winserver2022-ps/grouppolicy/Get-GPRegistryValue.md +++ b/docset/winserver2022-ps/grouppolicy/Get-GPRegistryValue.md @@ -12,44 +12,63 @@ title: Get-GPRegistryValue ## SYNOPSIS -Gets one or more registry-based policy settings under either Computer Configuration or User Configuration in a GPO. +Gets one or more registry-based policy settings under either Computer Configuration or User +Configuration in a GPO. ## SYNTAX ### GetByGUID (Default) + ``` -Get-GPRegistryValue -Guid -Key [-ValueName ] [-Domain ] [-Server ] - [] +Get-GPRegistryValue -Guid -Key [-ValueName ] [-Domain ] + [-Server ] [] ``` ### GetByName + ``` -Get-GPRegistryValue [-Name] -Key [-ValueName ] [-Domain ] [-Server ] - [] +Get-GPRegistryValue [-Name] -Key [-ValueName ] [-Domain ] + [-Server ] [] ``` ## DESCRIPTION -The **Get-GPRegistryValue** cmdlet retrieves one or more registry-based policy settings under either Computer Configuration or User Configuration in a Group Policy Object (GPO). -You can get registry-based policy settings for a specific registry value, or for all the registry values under a key: +The **Get-GPRegistryValue** cmdlet retrieves one or more registry-based policy settings under either +Computer Configuration or User Configuration in a Group Policy Object (GPO). -- To get the registry-based policy setting that configures a specific registry value, specify both the *Key* and the *ValueName* parameters. +You can get registry-based policy settings for a specific registry value, or for all the registry +values under a key: -- To get all the registry-based policy settings that configure values directly under a registry key, specify the *Key* parameter without the *ValueName* parameter. +- To get the registry-based policy setting that configures a specific registry value, specify both + the **Key** and the **ValueName** parameters. -If you specify only a key, in addition to the policy settings that configure values under the key, the following first-level subkeys of the key are returned: +- To get all the registry-based policy settings that configure values directly under a registry key, + specify the **Key** parameter without the **ValueName** parameter. + +If you specify only a key, in addition to the policy settings that configure values under the key, +the following first-level subkeys of the key are returned: - first-level subkeys that have a policy setting that configures a value. -- first-level subkeys that have a subkey, at any level, with a policy setting that configures a value. +- first-level subkeys that have a subkey, at any level, with a policy setting that configures a + value. You can use this information to browse for registry-based policy settings. ## EXAMPLES ### Example 1: Get the group policy registry value from the specified key + ```powershell -Get-GPRegistryValue -Name TestGPO -Key "HKEY_CURRENT_USER\Software\Policies\Microsoft\ExampleKey" -ValueName "ValueOne" +$params = @{ + ValueName = 'ValueOne' + Key = 'HKEY_CURRENT_USER\Software\Policies\Microsoft\ExampleKey' + Name = 'TestGPO' +} +Get-GPRegistryValue @params +``` + +```Output KeyPath : Software\Policies\Microsoft\ExampleKey FullKeyPath : HKEY_CURRENT_USER\Software\Policies\Microsoft\ExampleKey Hive : CurrentUser @@ -60,11 +79,17 @@ ValueName : ValueOne HasValue : True ``` -This command gets the registry-based policy setting that configures the registry value HKEY_CURRENT_USER\Software\Policies\Microsoft\ExampleKey:ValueOne from User Configuration in the GPO named TestGPO. +This command gets the registry-based policy setting that configures the registry value +`HKEY_CURRENT_USER\Software\Policies\Microsoft\ExampleKey:ValueOne` from User Configuration in the +GPO named TestGPO. ### Example 2: Get all group policy registry values from the specified key + ```powershell -Get-GPRegistryValue -Name "TestGPO" -Key "HKCU\Software\Policies\Microsoft\ExampleKey" +Get-GPRegistryValue -Name "TestGPO" -Key "HKCU\Software\Policies\Microsoft\ExampleKey" +``` + +```Output KeyPath : Software\Policies\Microsoft\ExampleKey FullKeyPath : HKEY_CURRENT_USER\Software\Policies\Microsoft\ExampleKey Hive : CurrentUser @@ -93,27 +118,32 @@ FullKeyPath : HKEY_CURRENT_USER\Software\Policies\Microsoft\ExampleKey\SubKey2 Hive : CurrentUser ``` -This command gets all the registry-based policy settings that configure registry values under the key HKEY_CURRENT_USER\Software\Policies\Microsoft\ExampleKey from User Configuration in the GPO named TestGPO. -Subkeys of this key that have registry-based policy settings, are also returned. -The second registry-based policy setting (ValueTwo) is disabled (its **PolicyState** property is set to Delete). +This command gets all the registry-based policy settings that configure registry values under the +key `HKEY_CURRENT_USER\Software\Policies\Microsoft\ExampleKey` from User Configuration in the GPO +named `TestGPO`. Subkeys of this key that have registry-based policy settings, are also returned. +The second registry-based policy setting (ValueTwo) is disabled (its **PolicyState** property is set +to Delete). ## PARAMETERS ### -Domain -Specifies the domain for this cmdlet. -You must specify the fully qualified domain name (FQDN) of the domain (for instance: sales.contoso.com). +Specifies the domain for this cmdlet. You must specify the fully qualified domain name (FQDN) of the +domain (for instance: sales.contoso.com). -For the **Get-GPRegistryValue** cmdlet, the GPO for which to get registry-based policy settings must exist in this domain. +For the **Get-GPRegistryValue** cmdlet, the GPO for which to get registry-based policy settings must +exist in this domain. -If you do not specify the **Domain** parameter, the domain of the user that is running the current session is used. -If the cmdlet is being run from a computer startup or shutdown script, the domain of the computer is used. -For more information, see the Notes section in the full Help. +If you do not specify the **Domain** parameter, the domain of the user that is running the current +session is used. If the cmdlet is being run from a computer startup or shutdown script, the domain +of the computer is used. For more information, see the Notes section in the full Help. -If you specify a domain that is different from the domain of the user that is running the current session (or, for a startup or shutdown script, the computer), a trust must exist between that domain and the domain of the user or the computer. +If you specify a domain that is different from the domain of the user that is running the current +session (or, for a startup or shutdown script, the computer), a trust must exist between that domain +and the domain of the user or the computer. -You can also refer to Domain by its built-in alias, **DomainName**. -For more information, see [about_Aliases](????????????). +You can also refer to Domain by its built-in alias, **DomainName**. For more information, see +[about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: System.String @@ -129,11 +159,11 @@ Accept wildcard characters: False ### -Guid -Specifies the GPO from which to retrieve the registry-based policy setting by its globally unique identifier (GUID). -The GUID uniquely identifies the GPO. +Specifies the GPO from which to retrieve the registry-based policy setting by its globally unique +identifier (GUID). The GUID uniquely identifies the GPO. -You can also refer to the **Guid** parameter by its built-in alias, **Id**. -For more information, see [about_Aliases](????????). +You can also refer to the **Guid** parameter by its built-in alias, **Id**. For more information, +see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: Guid @@ -148,8 +178,9 @@ Accept wildcard characters: False ``` ### -Key -Specifies the registry key for which this cmdlet gets the registry-based policy setting. -For instance: HKLM\Software\Policies\Microsoft\Windows NT\DNSClient. + +Specifies the registry key for which this cmdlet gets the registry-based policy setting. For +instance: `HKLM\Software\Policies\Microsoft\Windows NT\DNSClient`. The key must be in one of the two following registry hives: @@ -159,12 +190,14 @@ The key must be in one of the two following registry hives: You can specify: -- The *Key* parameter without the *ValueName* parameter to get all the registry-based policy settings that configure values directly under that key. +- The **Key** parameter without the **ValueName** parameter to get all the registry-based policy + settings that configure values directly under that key. -- The Key parameter together with the *ValueName* parameter to get the registry-based policy setting that configures a specific registry value. +- The Key parameter together with the **ValueName** parameter to get the registry-based policy + setting that configures a specific registry value. -You can also refer to the *Key* parameter by its built-in alias FullKeyPath. -For more information, see [about_Aliases](????????). +You can also refer to the **Key** parameter by its built-in alias FullKeyPath. For more information, +see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: System.String @@ -179,14 +212,15 @@ Accept wildcard characters: False ``` ### -Name + Specifies the GPO from which this cmdlet gets the registry-based policy setting by its display name. -The display name is not guaranteed to be unique in the domain. -If another GPO with the same display name exists in the domain an error occurs. -You can use the **Guid** parameter to uniquely identify a GPO. +The display name is not guaranteed to be unique in the domain. If another GPO with the same display +name exists in the domain an error occurs. You can use the **Guid** parameter to uniquely identify a +GPO. -You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. -For more information, see [about_Aliases](????????). +You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. For more +information, see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: System.String @@ -202,10 +236,11 @@ Accept wildcard characters: False ### -Server -Specifies the name of the domain controller that this cmdlet contacts to complete the operation. -You can specify either the fully qualified domain name (FQDN) or the host name. +Specifies the name of the domain controller that this cmdlet contacts to complete the operation. You +can specify either the fully qualified domain name (FQDN) or the host name. -If you do not specify the name by using the **Server** parameter, the primary domain controller (PDC) emulator is contacted. +If you do not specify the name by using the **Server** parameter, the primary domain controller +(PDC) emulator is contacted. ```yaml Type: System.String @@ -220,11 +255,13 @@ Accept wildcard characters: False ``` ### -ValueName + Specifies the name of a registry value for which this cmdlet gets the registry-based policy setting. -For instance, the registry key HKLM\Software\Policies\Microsoft\Windows NT\DNSClient can have a value with the following name: UseDomainNameDevolution. -For the default value of a registry key, specify "(default)" or an empty string (""). +For instance, the registry key `HKLM\Software\Policies\Microsoft\Windows NT\DNSClient` can have a +value with the following name: UseDomainNameDevolution. For the default value of a registry key, +specify "(default)" or an empty string (""). -You must also specify the *Key* parameter with this parameter. +You must also specify the **Key** parameter with this parameter. ```yaml Type: System.String @@ -240,17 +277,22 @@ Accept wildcard characters: False ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### Microsoft.GroupPolicy.Gpo -You can pipe a GPO for which this cmdlet gets registry-based policy settings. -Collections that contain GPOs from different domains are not supported. + +You can pipe a GPO for which this cmdlet gets registry-based policy settings. Collections that +contain GPOs from different domains are not supported. ## OUTPUTS ### Microsoft.GroupPolicy.PolicyRegistrySetting + This cmdlet returns **PolicyRegistrySetting** objects that represent registry-based policy settings. These objects can be piped into the following cmdlets: @@ -260,19 +302,23 @@ These objects can be piped into the following cmdlets: ## NOTES -* The hive of the registry key that you specify (HKLM or HKCU) indicates whether the registry-based policy setting is retrieved from Computer Configuration or User Configuration. +* The hive of the registry key that you specify (HKLM or HKCU) indicates whether the registry-based + policy setting is retrieved from Computer Configuration or User Configuration. - If the specified registry key cannot be located in policy (the registry key is not configured), a corresponding error message is displayed. + If the specified registry key cannot be located in policy (the registry key is not configured), a + corresponding error message is displayed. You can use the **Domain** parameter to explicitly specify the domain for this cmdlet. - If you do not explicitly specify the domain, the cmdlet uses a default domain. -The default domain is the domain that is used to access network resources by the security context under which the current session is running. -This domain is typically the domain of the user that is running the session. -For instance, the domain of the user who started the session by opening Windows PowerShell or the domain of a user that is specified in a runas command. -However, computer startup and shutdown scripts run under the context of the LocalSystem account. -The LocalSystem account is a built-in local account, and it accesses network resources under the context of the computer account. -Therefore, when this cmdlet is run from a startup or shutdown script, the default domain is the domain to which the computer is joined. + If you do not explicitly specify the domain, the cmdlet uses a default domain. The default domain + is the domain that is used to access network resources by the security context under which the + current session is running. This domain is typically the domain of the user that is running the + session. For instance, the domain of the user who started the session by opening Windows + PowerShell or the domain of a user that is specified in a runas command. However, computer startup + and shutdown scripts run under the context of the LocalSystem account. The LocalSystem account is + a built-in local account, and it accesses network resources under the context of the computer + account. Therefore, when this cmdlet is run from a startup or shutdown script, the default domain + is the domain to which the computer is joined. ## RELATED LINKS diff --git a/docset/winserver2022-ps/grouppolicy/Get-GPResultantSetOfPolicy.md b/docset/winserver2022-ps/grouppolicy/Get-GPResultantSetOfPolicy.md index 62d8618523..ef249a6efb 100644 --- a/docset/winserver2022-ps/grouppolicy/Get-GPResultantSetOfPolicy.md +++ b/docset/winserver2022-ps/grouppolicy/Get-GPResultantSetOfPolicy.md @@ -17,18 +17,24 @@ Gets and writes the RSoP information for a user, a computer, or both to a file. ## SYNTAX ``` -Get-GPResultantSetOfPolicy [-Computer ] [-User ] -ReportType -Path - [] +Get-GPResultantSetOfPolicy [-Computer ] [-User ] -ReportType + -Path [] ``` ## DESCRIPTION -The **Get-GPResultantSetOfPolicy** cmdlet gets and writes the Resultant Set of Policy (RSoP) information for a user, a computer, or both to a file. + +The **Get-GPResultantSetOfPolicy** cmdlet gets and writes the Resultant Set of Policy (RSoP) +information for a user, a computer, or both to a file. ## EXAMPLES ### Example 1: Generate a report for the default user that is running on the current session + ```powershell Get-GPResultantSetOfPolicy -ReportType Xml -Path "c:\reports\LocalUserAndComputerReport.xml" +``` + +```Output RsopMode : Logging Namespace : \\COMPUTER-02-PC\Root\Rsop\NS2BBE3F29_794F_4EAE_B9DB_0A2310622534 LoggingComputer : COMPUTER-02 @@ -36,12 +42,21 @@ LoggingUser : CONTOSO\someuser LoggingMode : UserAndComputer ``` -This command generates a report for the default user that is running on the current session. -The report is generated in XML format, and is written to the specified file. +This command generates a report for the default user that is running on the current session. The +report is generated in XML format, and is written to the specified file. ### Example 2: Generate a report for the specified computer + ```powershell -Get-GPResultantSetOfPolicy -ReportType Xml -Computer "computer-08.contso.com" -Path "c:\reports\computer-08.xml" +@params = @{ + ReportType = 'Xml' + Path = 'c:\reports\computer-08.xml' + Computer = 'computer-08.contso.com' +} +Get-GPResultantSetOfPolicy @params +``` + +```Output RsopMode : Logging Namespace : \\computer-08.contoso.com\Root\Rsop\NS643B2E66_8F54_4407_A813_7D47173B0922 LoggingComputer : computer-08.contoso.com @@ -49,13 +64,22 @@ LoggingUser : CONTOSO\Administrator LoggingMode : Computer ``` -This command generates a report for the specified computer. -The computer is specified by its fully qualified domain name (FQDN), computer-08.contoso.com. -The report is generated in XML format, and is written to the specified file. +This command generates a report for the specified computer. The computer is specified by its fully +qualified domain name (FQDN), `computer-08.contoso.com`. The report is generated in `XML` format, +and is written to the specified file. ### Example 3: Generate a report for the specified user in HTML format and save it to the specified file + ```powershell -Get-GPResultantSetOfPolicy -User "Contoso\PattiFul" -ReportType Html -Path "c:\reports\UserReport.html" +@params = @{ + ReportType = 'HTML' + Path = 'c:\reports\UserReport.xml' + User = 'Contoso\PattiFul' +} +Get-GPResultantSetOfPolicy @params +``` + +```Output RsopMode : Logging Namespace : \\COMPUTER-02\Root\Rsop\NS78355E76_C754_41B5_8F5E_B61551837A62 LoggingComputer : COMPUTER-02 @@ -63,11 +87,22 @@ LoggingUser : contoso\someuser LoggingMode : User ``` -This command generates a report for the specified user (contoso\someuser) in HTML format and saves it to the specified file. +This command generates a report for the specified user `Contoso\PattiFul` in `HTML` format and saves +it to the specified file. ### Example 4: Generate a report for the specified computer and user in HTML format and save it to the specified file + ```powershell -Get-GPResultantSetOfPolicy -user someuser -computer contoso.com\computer-08 -reporttype html -path c:\reports\UserAndComputerReport.html +@params = @{ + ReportType = 'HTML' + Path = 'c:\reports\UserAndComputerReport.xml' + User = 'SomeUser' + Computer = 'contoso.com\computer-08' +} +Get-GPResultantSetOfPolicy @params +``` + +```Output RsopMode : Logging Namespace : \\computer-08\Root\Rsop\NS72116C25_6570_4586_9B79_FC4F71372E57 LoggingComputer : contoso.com\computer-08 @@ -75,13 +110,15 @@ LoggingUser : someuser LoggingMode : UserAndComputer ``` -This command generates a report for the specified computer (contoso.com\computer-08) and user (someuser) in HTML format and saves it to the specified file. +This command generates a report for the specified computer `contoso.com\computer-08` and user +`SomeUser` in `HTML` format and saves it to the specified file. ## PARAMETERS ### -Computer -Specifies the name of the computer for which to generate the report. -You can specify the computer name in one of the following formats: + +Specifies the name of the computer for which to generate the report. You can specify the computer +name in one of the following formats: - Full computer name (FQDN computer name); for example, computer-01.sales.contoso.com. @@ -105,10 +142,10 @@ Accept wildcard characters: False ### -Path -Specifies the path to the report file; for instance, c:\Reports\GpRsopReport.xml. +Specifies the path to the report file; for instance, `c:\Reports\GpRsopReport.xml`. -You can also refer to the **Path** parameter by its built-in alias, filepath. -For more information, see [about_Aliases](????????????). +You can also refer to the **Path** parameter by its built-in alias, **FilePath**. For more information, +see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: System.String @@ -124,11 +161,10 @@ Accept wildcard characters: False ### -ReportType -Specifies the format of the RSoP report. -You must specify either Html (for HTML format) or Xml (for XML format). -These values are not case sensitive. +Specifies the format of the RSoP report. You must specify either `Html` (for HTML format) or `Xml` +(for XML format). These values are not case sensitive. -The acceptable values for this parameter are: Html or Xml. +The acceptable values for this parameter are: `Html` or `Xml`. ```yaml Type: ReportType @@ -144,14 +180,15 @@ Accept wildcard characters: False ``` ### -User -Specifies the user name of the user for which to generate the report. -You can specify the user name in one of the following formats: -- Fully qualified domain name (FQDN)\user name; for instance, sales.contoso.com\someuser. +Specifies the user name of the user for which to generate the report. You can specify the user name +in one of the following formats: + +- Fully qualified domain name (FQDN)\user name; for instance, `sales.contoso.com\SomeUser`. -- NetBIOS domain name\user name; for example, sales\someuser. +- NetBIOS domain name\user name; for example, `sales\SomeUser`. -- User name: for example, someuser. +- User name: for example, `SomeUser`. ```yaml Type: System.String @@ -167,21 +204,27 @@ Accept wildcard characters: False ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### None + This cmdlet does not take any object as input. ## OUTPUTS ### Microsoft.GroupPolicy.GPRsop + This cmdlet returns an RSoP object. ## NOTES -* This cmdlet provides only the logging results for a specified computer and user. You must use the GPMC to generate RSoP modeling information. +* This cmdlet provides only the logging results for a specified computer and user. You must use the + GPMC to generate RSoP modeling information. ## RELATED LINKS diff --git a/docset/winserver2022-ps/grouppolicy/Get-GPStarterGPO.md b/docset/winserver2022-ps/grouppolicy/Get-GPStarterGPO.md index b0810a906d..f4841d8ac6 100644 --- a/docset/winserver2022-ps/grouppolicy/Get-GPStarterGPO.md +++ b/docset/winserver2022-ps/grouppolicy/Get-GPStarterGPO.md @@ -17,31 +17,41 @@ Gets one Starter GPO or all Starter GPOs in a domain. ## SYNTAX ### ByGUID (Default) + ``` Get-GPStarterGPO -Guid [-Domain ] [-Server ] [-All] [] ``` ### ByName + ``` Get-GPStarterGPO [-Name] [-Domain ] [-Server ] [-All] [] ``` ### GetAll + ``` Get-GPStarterGPO [-Domain ] [-Server ] [-All] [] ``` ## DESCRIPTION -The **Get-GPStarterGPO** cmdlet gets one Starter Group Policy Object (GPO) or all Starter GPOs in a domain. -You can specify the Starter GPO to get either by display name or by GUID, or you can specify the **All** parameter to get all the Starter GPOs in the domain. -You can use this cmdlet to get information about a StarterGPO, or you can create a new GPO from a specified Starter GPO by piping the output of this cmdlet into the **New-GPO** cmdlet. +The **Get-GPStarterGPO** cmdlet gets one Starter Group Policy Object (GPO) or all Starter GPOs in a +domain. You can specify the Starter GPO to get either by display name or by GUID, or you can specify +the **All** parameter to get all the Starter GPOs in the domain. + +You can use this cmdlet to get information about a StarterGPO, or you can create a new GPO from a +specified Starter GPO by piping the output of this cmdlet into the **New-GPO** cmdlet. ## EXAMPLES ### Example 1: Get a Starter GPO by name + ```powershell -Get-GPStarterGPO -Name "Windows Vista EC User" +Get-GPStarterGPO -Name "Windows Vista EC User" +``` + +```Output DisplayName : Windows Vista EC User Id : 8780588e-ef91-442b-bd5f-2d50de7abf76 Owner : BUILTIN\Administrators @@ -51,17 +61,26 @@ UserVersion : ComputerVersion : StarterGpoVersion : 0 StarterGpoType : System -Author : Microsoft -Description : This Starter GPO contains the user Group Policy settings recommended for the Enterprise Client (EC) environment described in the Windows Vista security guide. +Author : Microsoft + -For more information about each of these settings, see the [Windows Vista Security Guide](http://go. microsoft.com/fwlink/?LinkID=121852). +Description : This Starter GPO contains the user Group Policy settings recommended for the + Enterprise Client (EC) environment described in the Windows Vista security guide. + + For more information about each of these settings, see the + [Windows Vista Security Guide](http://go.microsoft.com/fwlink/?LinkID=121852). ``` -This command gets the Starter GPO named Windows Vista EC User. +This command gets the Starter GPO named `Windows Vista EC User`. ### Example 2: Get a Starter GPO by name using the pipeline operator + ```powershell -Get-GPStarterGPO -Name "Windows Vista EC User" | New-GPO -Name "TestGPO" -Comment "Create a GPO by using a Starter GPO" +Get-GPStarterGPO -Name "Windows Vista EC User" | + New-GPO -Name "TestGPO" -Comment "Create a GPO by using a Starter GPO" +``` + +```Output DisplayName : TestGPO DomainName : contoso.com Owner : CONTOSO\Domain Admins @@ -75,12 +94,14 @@ ComputerVersion : AD Version: 1, SysVol Version: 1 WmiFilter : ``` -This command creates a GPO named TestGPO from the GPO named Windows Vista EC User Starter. -The command uses the **Get-SPStarterGPO** cmdlet to get the Starter GPO and is then piped into the **New-GPO** cmdlet to create the GPO. +This command creates a GPO named `TestGPO` from the GPO named `Windows Vista EC User` Starter. The +command uses the **Get-SPStarterGPO** cmdlet to get the Starter GPO and is then piped into the +**New-GPO** cmdlet to create the GPO. ## PARAMETERS ### -All + Returns all the Starter GPOs in the domain. ```yaml @@ -97,19 +118,21 @@ Accept wildcard characters: False ### -Domain -Specifies the domain for this cmdlet. -You must specify the fully qualified domain name (FQDN) of the domain. +Specifies the domain for this cmdlet. You must specify the fully qualified domain name (FQDN) of the +domain. For the **Get-GPStarterGPO** cmdlet, the Starter GPO must exist in this domain. -If you do not specify the **Domain** parameter, the domain of the user that is running the current session is used. -If the cmdlet is being run from a computer startup or shutdown script, the domain of the computer is used. -For more information, see the Notes section in the full Help. +If you do not specify the **Domain** parameter, the domain of the user that is running the current +session is used. If the cmdlet is being run from a computer startup or shutdown script, the domain +of the computer is used. For more information, see the Notes section in the full Help. -If you specify a domain that is different from the domain of the user that is running the current session (or, for a startup or shutdown script, the computer), a trust must exist between that domain and the domain of the user, or the computer. +If you specify a domain that is different from the domain of the user that is running the current +session (or, for a startup or shutdown script, the computer), a trust must exist between that domain +and the domain of the user, or the computer. -You can also refer to the **Domain** parameter by its built-in alias, **DomainName**. -For more information, see [about_Aliases](????????????). +You can also refer to the **Domain** parameter by its built-in alias, **DomainName**. For more +information, see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: System.String @@ -124,11 +147,12 @@ Accept wildcard characters: False ``` ### -Guid -Specifies the Starter GPO that this cmdlet gets by its globally unique identifier (GUID). -The GUID uniquely identifies the Starter GPO. -You can also refer to the **Guid** parameter by its built-in alias, **Id**. -For more information, see [about_Aliases](????????). +Specifies the Starter GPO that this cmdlet gets by its globally unique identifier (GUID). The GUID +uniquely identifies the Starter GPO. + +You can also refer to the **Guid** parameter by its built-in alias, **Id**. For more information, +see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: Guid @@ -143,14 +167,15 @@ Accept wildcard characters: False ``` ### -Name + Specifies the display name of the Starter GPO that this cmdlet. -The display name is not guaranteed to be unique in the domain. -If another Starter GPO with the same display name exists in the domain an error occurs. -You can use the **Guid** parameter to uniquely identify a Starter GPO. +The display name is not guaranteed to be unique in the domain. If another Starter GPO with the same +display name exists in the domain an error occurs. You can use the **Guid** parameter to uniquely +identify a Starter GPO. -You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. -For more information, see [about_Aliases](????????). +You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. For more +information, see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: System.String @@ -166,13 +191,14 @@ Accept wildcard characters: False ### -Server -Specifies the name of the domain controller that this cmdlet contacts to complete the operation. -You can specify either the fully qualified domain name (FQDN) or the host name. +Specifies the name of the domain controller that this cmdlet contacts to complete the operation. You +can specify either the fully qualified domain name (FQDN) or the host name. -If you do not specify the name by using the **Server** parameter, the primary domain controller (PDC) emulator is contacted. +If you do not specify the name by using the **Server** parameter, the primary domain controller +(PDC) emulator is contacted. -You can also refer to the *Server* parameter by its built-in alias, **DC**. -For more information, see [about_Aliases](????????). +You can also refer to the **Server** parameter by its built-in alias, **DC**. For more information, +see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: System.String @@ -188,7 +214,10 @@ Accept wildcard characters: False ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -199,18 +228,22 @@ You can pipe a Starter GPO to this cmdlet. ## OUTPUTS ### Microsoft.GroupPolicy.StarterGpo object + This cmdlet returns a Starter GPO object. ## NOTES * You can use the **Domain** parameter to explicitly specify the domain for this cmdlet. - If you do not explicitly specify the domain, the cmdlet uses a default domain. -The default domain is the domain that is used to access network resources by the security context under which the current session is running. -This domain is typically the domain of the user that is running the session, for instance, the domain of the user who started the session by opening Windows PowerShell or the domain of a user that is specified in a runas command. -However, computer startup and shutdown scripts run under the context of the LocalSystem account. -The LocalSystem account is a built-in local account, and it accesses network resources under the context of the computer account. -Therefore, when this cmdlet is run from a startup or shutdown script, the default domain is the domain to which the computer is joined. + If you do not explicitly specify the domain, the cmdlet uses a default domain. The default domain + is the domain that is used to access network resources by the security context under which the + current session is running. This domain is typically the domain of the user that is running the + session, for instance, the domain of the user who started the session by opening Windows + PowerShell or the domain of a user that is specified in a runas command. However, computer startup + and shutdown scripts run under the context of the LocalSystem account. The LocalSystem account is + a built-in local account, and it accesses network resources under the context of the computer + account. Therefore, when this cmdlet is run from a startup or shutdown script, the default domain + is the domain to which the computer is joined. ## RELATED LINKS diff --git a/docset/winserver2022-ps/grouppolicy/GroupPolicy.md b/docset/winserver2022-ps/grouppolicy/GroupPolicy.md index 92f43682fc..0301015dcd 100644 --- a/docset/winserver2022-ps/grouppolicy/GroupPolicy.md +++ b/docset/winserver2022-ps/grouppolicy/GroupPolicy.md @@ -10,89 +10,126 @@ title: GroupPolicy --- # GroupPolicy Module + ## Description -This topic contains the brief descriptions of the Windows PowerShell cmdlets that are for use in administering Group Policy in Windows Server and Windows client with Remote Server Administration Tools (RSAT) installed. (RSAT includes the GPMC and the Group Policy cmdlets.) + +This topic contains the brief descriptions of the Windows PowerShell cmdlets that are for use in +administering Group Policy in Windows Server and Windows client with Remote Server Administration +Tools (RSAT) installed. (RSAT includes the GPMC and the Group Policy cmdlets.) Each cmdlet in the table is linked to additional information about that cmdlet. ## GroupPolicy Cmdlets + ### [Backup-GPO](./Backup-GPO.md) + Backs up one GPO or all the GPOs in a domain. ### [Copy-GPO](./Copy-GPO.md) + Copies a GPO. ### [Get-GPInheritance](./Get-GPInheritance.md) + Gets Group Policy inheritance information for a specified domain or OU. ### [Get-GPO](./Get-GPO.md) + Gets one GPO or all the GPOs in a domain. ### [Get-GPOReport](./Get-GPOReport.md) + Generates a report either in XML or HTML format for a specified GPO or for all GPOs in a domain. ### [Get-GPPermission](./Get-GPPermission.md) + Gets the permission level for one or more security principals on a specified GPO. ### [Get-GPPrefRegistryValue](./Get-GPPrefRegistryValue.md) -Gets one or more Registry preference items under either Computer Configuration or User Configuration in a GPO. + +Gets one or more Registry preference items under either Computer Configuration or User Configuration +in a GPO. ### [Get-GPRegistryValue](./Get-GPRegistryValue.md) -Gets one or more registry-based policy settings under either Computer Configuration or User Configuration in a GPO. + +Gets one or more registry-based policy settings under either Computer Configuration or User +Configuration in a GPO. ### [Get-GPResultantSetOfPolicy](./Get-GPResultantSetOfPolicy.md) + Gets and writes the RSoP information for a user, a computer, or both to a file. ### [Get-GPStarterGPO](./Get-GPStarterGPO.md) + Gets one Starter GPO or all Starter GPOs in a domain. ### [Import-GPO](./Import-GPO.md) + Imports the Group Policy settings from a backed-up GPO into a specified GPO. ### [Invoke-GPUpdate](./Invoke-GPUpdate.md) + Schedules a remote Group Policy refresh on the specified computer. ### [New-GPLink](./New-GPLink.md) + Links a GPO to a site, domain, or OU. ### [New-GPO](./New-GPO.md) + Creates a GPO. ### [New-GPStarterGPO](./New-GPStarterGPO.md) + Creates a Starter GPO. ### [Remove-GPLink](./Remove-GPLink.md) + Removes a GPO link from a site, domain or OU. ### [Remove-GPO](./Remove-GPO.md) + Removes a GPO. ### [Remove-GPPrefRegistryValue](./Remove-GPPrefRegistryValue.md) -Removes one or more Registry preference items from either Computer Configuration or User Configuration in a GPO. + +Removes one or more Registry preference items from either Computer Configuration or User +Configuration in a GPO. ### [Remove-GPRegistryValue](./Remove-GPRegistryValue.md) -Removes one or more registry-based policy settings from either Computer Configuration or User Configuration in a GPO. + +Removes one or more registry-based policy settings from either Computer Configuration or User +Configuration in a GPO. ### [Rename-GPO](./Rename-GPO.md) + Assigns a new display name to a GPO. ### [Restore-GPO](./Restore-GPO.md) + Restores one GPO or all GPOs in a domain from one or more GPO backup files. ### [Set-GPInheritance](./Set-GPInheritance.md) + Blocks or unblocks inheritance for a specified domain or organizational unit. ### [Set-GPLink](./Set-GPLink.md) + Sets the properties of the specified GPO link. ### [Set-GPPermission](./Set-GPPermission.md) + Grants a level of permissions to a security principal for one GPO or all the GPOs in a domain. ### [Set-GPPrefRegistryValue](./Set-GPPrefRegistryValue.md) -Configures a Registry preference item under either Computer Configuration or User Configuration in a GPO. + +Configures a Registry preference item under either Computer Configuration or User Configuration in a +GPO. ### [Set-GPRegistryValue](./Set-GPRegistryValue.md) -Configures one or more registry-based policy settings under either Computer Configuration or User Configuration in a GPO. + +Configures one or more registry-based policy settings under either Computer Configuration or User +Configuration in a GPO. diff --git a/docset/winserver2022-ps/grouppolicy/Import-GPO.md b/docset/winserver2022-ps/grouppolicy/Import-GPO.md index f3cdc72ba3..a570227b12 100644 --- a/docset/winserver2022-ps/grouppolicy/Import-GPO.md +++ b/docset/winserver2022-ps/grouppolicy/Import-GPO.md @@ -34,25 +34,30 @@ Import-GPO -BackupGpoName -Path [-TargetGuid ] [-TargetN ## DESCRIPTION -The **Import-GPO** cmdlet imports the settings from a Group Policy Object (GPO) backup into a specified target GPO. -The target GPO can be in a different domain or forest than the backup that was made and it does not have to exist prior to the operation. +The **Import-GPO** cmdlet imports the settings from a Group Policy Object (GPO) backup into a +specified target GPO. The target GPO can be in a different domain or forest than the backup that was +made and it does not have to exist prior to the operation. -Use the **Path** parameter to specify the location of the backup and then use the **BackupGpoName** parameter to specify the GPO name of the backup to use, or the **BackupId** parameter to specify the backup ID (GUID) of the backup to use. +Use the **Path** parameter to specify the location of the backup and then use the **BackupGpoName** +parameter to specify the GPO name of the backup to use, or the **BackupId** parameter to specify the +backup ID (GUID) of the backup to use. -If you specify a GPO name, the cmdlet imports the most recent backup. -To import an earlier version of a GPO backup, you must use the *BackupID* parameter to specify the unique backup ID for the particular version. -This is the GUID that uniquely identifies the backup within its backup directory. +If you specify a GPO name, the cmdlet imports the most recent backup. To import an earlier version +of a GPO backup, you must use the **BackupID** parameter to specify the unique backup ID for the +particular version. This is the GUID that uniquely identifies the backup within its backup +directory. -Use the **TargetName** parameter or the **TargetGuid** parameter to specify the target GPO into which the settings should be imported. -Use the optional **MigrationTable** parameter to map security principals and Universal Naming Convention (UNC) paths across domains. -Use the *CreateIfNeeded* parameter to create a new GPO if the specified target GPO does not exist. +Use the **TargetName** parameter or the **TargetGuid** parameter to specify the target GPO into +which the settings should be imported. Use the optional **MigrationTable** parameter to map security +principals and Universal Naming Convention (UNC) paths across domains. Use the **CreateIfNeeded** +parameter to create a new GPO if the specified target GPO does not exist. ## EXAMPLES ### Example 1: Import the settings from the latest backup to another directory in the same domain ```powershell -import-gpo -BackupGpoName TestGPO -TargetName TestGPO -path c:\backups +Import-GPO -BackupGpoName 'TestGPO' -TargetName 'TestGPO' -path 'C:\backups' ``` ```Output @@ -70,14 +75,20 @@ WmiFilter : ``` This command imports the settings from the most recent backup of the GPO named `TestGPO` in the -`c:\backups` directory into a GPO of the same name in the current domain. If a GPO named TestGPO -does not exist in the current domain, the command fails because the CreateIfNeeded parameter is not -specified. +`c:\backups` directory into a GPO of the same name in the current domain. If a GPO named `TestGPO` +does not exist in the current domain, the command fails because the **CreateIfNeeded** parameter is +not specified. ### Example 2: Import the settings from specified backup in the same directory in the same domain ```powershell -import-gpo -BackupId A491D730-F3ED-464C-B8C9-F50562C536AA -TargetName TestGPO -path c:\backups -CreateIfNeeded +$params = @{ + BackupId = 'A491D730-F3ED-464C-B8C9-F50562C536AA' + TargetName = 'TestGPO' + path = 'C:\Backups' + CreateIfNeeded = $true +} +Import-GPO @params ``` ```Output @@ -94,15 +105,22 @@ ComputerVersion : AD Version: 6, SysVol Version: 6 WmiFilter : ``` -This command imports the settings from the specified backup in the c:\backups directory into a GPO -that is named TestGPO in the current domain. The BackupId parameter is used to specify the GUID of -the GPO backup to use. Because the CreateIfNeeded parameter is specified, if a GPO named TestGPO -does not exist in the current domain, one is created before the settings are imported. +This command imports the settings from the specified backup in the `C:\Backups` directory into a GPO +that is named `TestGPO` in the current domain. The **BackupId** parameter is used to specify the +GUID of the GPO backup to use. Because the **CreateIfNeeded** parameter is specified, if a GPO named +`TestGPO` does not exist in the current domain, one is created before the settings are imported. ### Example 3: Import the settings from the latest backup to another directory to the current domain ```powershell -Import-GPO -BackupGpoName TestGPO -Path D:\Backups -TargetName NewTestGPO -MigrationTable D:\Tables\Migtable1.migtable -CreateIfNeeded +$params = @{ + BackupGpoName = 'TestGPO' + Path = 'D:\Backups' + TargetName = 'NewTestGPO' + MigrationTable = 'D:\Tables\Migtable1.migtable' + CreateIfNeeded = $true +} +Import-GPO @params ``` ```Output @@ -119,21 +137,22 @@ ComputerVersion : AD Version: 1, SysVol Version: 1 WmiFilter : ``` -This command imports the settings from the most recent backup of the GPO named TestGPO from the -d:\backups directory to a GPO named NewTestGPO in the current domain. The specified migration table -is used to migrate security principals and UNC paths to the new GPO. Because the CreateIfNeeded -parameter is specified, the GPO is created if it does not already exist. +This command imports the settings from the most recent backup of the GPO named `TestGPO` from the +`D:\Backups` directory to a GPO named `NewTestGPO` in the current domain. The specified migration +table is used to migrate security principals and UNC paths to the new GPO. Because the +**CreateIfNeeded** parameter is specified, the GPO is created if it does not already exist. ## PARAMETERS ### -BackupGpoName Specifies the display name of the backed-up GPO from which this cmdlet imports the settings. The -most recent backup of the GPO is used. You can use the *BackupId* parameter to specify a particular +most recent backup of the GPO is used. You can use the **BackupID** parameter to specify a particular version to use when multiple backups of the same GPO exist in the backup directory. You can also refer to the **BackupGpoName** parameter by its built-in alias, **DisplayName**. For -more information, see [about_Aliases](????????????). +more information, see +[about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: System.String @@ -155,8 +174,8 @@ backed-up GPO in the backup directory. The backup ID is different from the ID of the GPO that was backed up. -You can also refer to the *BackupId* parameter by its built-in alias, **Id**. For more information, -see [about_Aliases](????????). +You can also refer to the **BackupID** parameter by its built-in alias, **Id**. For more +information, see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: Guid @@ -218,7 +237,7 @@ session (or, for a startup or shutdown script, the computer), a trust must exist and the domain of the user, or the computer. You can also refer to the **Domain** parameter by its built-in alias, **DomainName**. For more -information, see [about_Aliases](????????). +information, see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: System.String @@ -253,13 +272,13 @@ Accept wildcard characters: False Specifies the path to the backup directory. -You can also refer to the **Path** parameter by its built-in aliases: backuplocation or -backupdirectory. +You can also refer to the **Path** parameter by its built-in aliases: **BackupLocation** or +**BackupDirectory**. ```yaml Type: System.String Parameter Sets: (All) -Aliases: backupLocation, BackupDirectory +Aliases: BackupLocation, BackupDirectory Required: True Position: Named @@ -273,9 +292,10 @@ Accept wildcard characters: False Specifies the name of the domain controller that this cmdlet contacts to complete the operation. You can specify either the fully qualified domain name (FQDN) or the host name -If you do not specify the name by using the **Server** parameter, the primary domain controller (PDC) emulator is contacted. +If you do not specify the name by using the **Server** parameter, the primary domain controller +(PDC) emulator is contacted. -You can also refer to the *Server* parameter by its built-in alias, **DC**. +You can also refer to the **Server** parameter by its built-in alias, **DC**. ```yaml Type: System.String @@ -311,7 +331,7 @@ Accept wildcard characters: False ### -TargetName Specifies the display name of the GPO into which the settings are to be imported. Use the -*CreateIfNeeded* parameter to force the GPO to be created if it does not already exist in the +**CreateIfNeeded** parameter to force the GPO to be created if it does not already exist in the domain. You must specify either the **TargetGuid** parameter or the **TargetName** parameter. @@ -330,8 +350,7 @@ Accept wildcard characters: False ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml Type: System.Management.Automation.SwitchParameter diff --git a/docset/winserver2022-ps/grouppolicy/Invoke-GPUpdate.md b/docset/winserver2022-ps/grouppolicy/Invoke-GPUpdate.md index ea710c80e1..0feff10fa2 100644 --- a/docset/winserver2022-ps/grouppolicy/Invoke-GPUpdate.md +++ b/docset/winserver2022-ps/grouppolicy/Invoke-GPUpdate.md @@ -20,14 +20,14 @@ Schedules a remote Group Policy refresh on the specified computer. ``` Invoke-GPUpdate [-AsJob] [-Boot] [[-Computer] ] [[-RandomDelayInMinutes] ] [-Force] -[-LogOff] [-Target ] [] + [-LogOff] [-Target ] [] ``` ### SyncSet ``` Invoke-GPUpdate [-AsJob] [-Boot] [[-Computer] ] [[-RandomDelayInMinutes] ] [-LogOff] -[-Target ] [-Sync] [] + [-Target ] [-Sync] [] ``` ## DESCRIPTION @@ -37,35 +37,42 @@ set on remote computers by scheduling the running of the Gpupdate command on a r can combine this cmdlet in a scripted fashion to schedule the Gpupdate command on a group of computers. -The refresh can be scheduled to immediately start a refresh of policy settings or wait for a specified period of time, up to a maximum of 31 days. -To avoid putting a load on the network, the refresh times will be offset by a random delay. +The refresh can be scheduled to immediately start a refresh of policy settings or wait for a +specified period of time, up to a maximum of 31 days. To avoid putting a load on the network, the +refresh times will be offset by a random delay. ## EXAMPLES ### Example 1: Schedule a Group Policy refresh on the current computer + ```powershell Invoke-GPUpdate ``` -This command schedules a Group Policy refresh on the computer on which you are running the **Invoke-GPUpdate** cmdlet. +This command schedules a Group Policy refresh on the computer on which you are running the +**Invoke-GPUpdate** cmdlet. ### Example 2: Schedule a Group Policy refresh on a remote computer + ```powershell Invoke-GPUpdate -Computer "CONTOSO\COMPUTER-02" -Target "User" ``` -This command schedules a Group Policy refresh on a remote computer named CONTOSO\COMPUTER-02 that only schedule to update the user policy settings in synchronous mode. +This command schedules a Group Policy refresh on a remote computer named `CONTOSO\COMPUTER-02` that +only schedule to update the user policy settings in synchronous mode. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. -Use this parameter to run commands that take a long time to complete. - The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. - For more information about Windows PowerShell® background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). + +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. The cmdlet immediately returns an object that represents the job and then displays the +command prompt. You can continue to work in the session while the job completes. To manage the job, +use the `*-Job` cmdlets. + +To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) +cmdlet. For more information about Windows PowerShell® background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml Type: System.Management.Automation.SwitchParameter @@ -80,8 +87,11 @@ Accept wildcard characters: False ``` ### -Boot -Indicates that the cmdlet restarts the computer after the Group Policy settings are applied. -This is required for those Group Policy client side extensions (CSEs) that do not process Group Policy on a background update cycle, but do process Group Policy at computer startup, for instance, per-computer Software Installation policy settings. + +Indicates that the cmdlet restarts the computer after the Group Policy settings are applied. This is +required for those Group Policy client side extensions (CSEs) that do not process Group Policy on a +background update cycle, but do process Group Policy at computer startup, for instance, per-computer +Software Installation policy settings. This parameter has no effect if there are no CSEs called that require a restart. @@ -98,18 +108,20 @@ Accept wildcard characters: False ``` ### -Computer -Specifies the name of the computer for which this cmdlet schedules a Group Policy refresh. -You can specify the computer name in one of the following formats: -- Full computer name (FQDN computer name); for example, computer-01.sales.contoso.com. +Specifies the name of the computer for which this cmdlet schedules a Group Policy refresh. You can +specify the computer name in one of the following formats: + +- Full computer name (FQDN computer name); for example, `computer-01.sales.contoso.com`. -- Fully qualified domain name (FQDN)\computer name; for example, sales.contoso.com\computer-01. +- Fully qualified domain name (FQDN)\computer name; for example, `sales.contoso.com\computer-01`. -- NetBIOS domain name\computer name; for example, sales\computer-01. +- NetBIOS domain name\computer name; for example, `sales\computer-01`. -- Computer name (host name): for example, computer-01. +- Computer name (host name): for example, `computer-01`. -If the computer name is not specified, the computer in which this cmdlet is run will have its Group Policy settings refreshed. +If the computer name is not specified, the computer in which this cmdlet is run will have its Group +Policy settings refreshed. ```yaml Type: System.String @@ -124,6 +136,7 @@ Accept wildcard characters: False ``` ### -Force + Forces the command to run without asking for user confirmation. ```yaml @@ -139,9 +152,11 @@ Accept wildcard characters: False ``` ### -LogOff + Indicates that the cmdlet logs off the current user after the policy settings have been updated. -This is required for those Group Policy client-side extensions (CSEs) that do not process Group Policy on a background update cycle but do process Group Policy when a user logs on. -Examples include per-user Software Installation policy settings and the Folder Redirection extension. +This is required for those Group Policy client-side extensions (CSEs) that do not process Group +Policy on a background update cycle but do process Group Policy when a user logs on. Examples +include per-user Software Installation policy settings and the Folder Redirection extension. This parameter has no effect if there are no CSEs called that require a logoff. @@ -158,13 +173,18 @@ Accept wildcard characters: False ``` ### -RandomDelayInMinutes -Specifies the delay, in minutes, that Task Scheduler waits, with a random factor added to lower the network load, before running a scheduled Group Policy refresh. -You can specify a delay in from 0 minutes to a maximum of 44640 minutes (31 days): +Specifies the delay, in minutes, that Task Scheduler waits, with a random factor added to lower the +network load, before running a scheduled Group Policy refresh. + +You can specify a delay in from 0 minutes to a maximum of 44640 minutes (31 days): -- A value of 0 causes the Group Policy refresh to run as soon as the gpupdate task has been scheduled. +- A value of 0 causes the Group Policy refresh to run as soon as the gpupdate task has been + scheduled. --A value in the range of 1 minute to the maximum value of 44640 minutes cause the Group Policy refresh to delay the specified number of minutes plus a random offset before starting the Group Policy refresh. +- A value in the range of 1 minute to the maximum value of 44640 minutes cause the Group Policy +refresh to delay the specified number of minutes plus a random offset before starting the Group +Policy refresh. ```yaml Type: Int32 @@ -179,11 +199,13 @@ Accept wildcard characters: False ``` ### -Sync -Indicates that the cmdlet processes the next foreground Group Policy application to be done synchronously. -Foreground Group Policy applications occur at computer startup and user logon. -You can specify this for the user, computer or both using the *Target* parameter. -On a client computer, by default, Group Policy processes synchronously at computer startup and asynchronously at user logon. +Indicates that the cmdlet processes the next foreground Group Policy application to be done +synchronously. Foreground Group Policy applications occur at computer startup and user logon. You +can specify this for the user, computer or both using the **Target** parameter. + +On a client computer, by default, Group Policy processes synchronously at computer startup and +asynchronously at user logon. On a server, by default, Group Policy processes synchronously at computer startup and at user logon. @@ -200,15 +222,16 @@ Accept wildcard characters: False ``` ### -Target -Specifies that only the user or computer policy settings are refreshed. -By default, both user and computer policy settings are refreshed. + +Specifies that only the user or computer policy settings are refreshed. By default, both user and +computer policy settings are refreshed. The acceptable values for this parameter are: - User - Computer -If the *Target* parameter is not specified both user and computer policy settings are refreshed. +If the **Target** parameter is not specified both user and computer policy settings are refreshed. ```yaml Type: System.String @@ -224,11 +247,15 @@ Accept wildcard characters: False ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### None + This cmdlet does not take any object as input. ## OUTPUTS @@ -239,8 +266,10 @@ This cmdlet does not generate any output. ## NOTES -* This cmdlet does not support scheduling a Group Policy refresh for computers running Windows XP or earlier. -* In order to successfully schedule a Group Policy refresh for computers using this cmdlet, the following Firewall rules must be set on each client computer to allow the following connections: +* This cmdlet does not support scheduling a Group Policy refresh for computers running Windows XP or + earlier. +* In order to successfully schedule a Group Policy refresh for computers using this cmdlet, the + following Firewall rules must be set on each client computer to allow the following connections: - Remote Scheduled Tasks Management (RPC) - Remote Scheduled Tasks Management (RPC-ERMAP) diff --git a/docset/winserver2022-ps/grouppolicy/New-GPLink.md b/docset/winserver2022-ps/grouppolicy/New-GPLink.md index a39da391ff..d754244bee 100644 --- a/docset/winserver2022-ps/grouppolicy/New-GPLink.md +++ b/docset/winserver2022-ps/grouppolicy/New-GPLink.md @@ -17,30 +17,43 @@ Links a GPO to a site, domain, or OU. ## SYNTAX ### LinkbyGUID (Default) + ``` -New-GPLink -Guid -Target [-LinkEnabled ] [-Order ] [-Domain ] - [-Server ] [-Enforced ] [-WhatIf] [-Confirm] [] +New-GPLink -Guid -Target [-LinkEnabled ] [-Order ] + [-Domain ] [-Server ] [-Enforced ] [-WhatIf] [-Confirm] + [] ``` ### LinkbyName + ``` -New-GPLink [-Name] -Target [-LinkEnabled ] [-Order ] [-Domain ] - [-Server ] [-Enforced ] [-WhatIf] [-Confirm] [] +New-GPLink [-Name] -Target [-LinkEnabled ] [-Order ] + [-Domain ] [-Server ] [-Enforced ] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION -The **New-GPLink** cmdlet links a GPO to a site, domain, or organizational unit (OU). -By default, the link is enabled, which means that the settings of the GPO are applied at the level of the target Active Directory container according to the rules of inheritance and precedence when Group Policy is processed. -You can specify the GPO by either its display name or its GUID; or the GPO can be piped into the cmdlet. -You specify the site, domain, or organizational unit (OU) to link to by its Lightweight Directory Access Protocol (LDAP) distinguished name. -You can use other parameters to specify whether the link is enabled, whether the link is enforced, and the order in which it is applied at the site, domain, or OU. +The **New-GPLink** cmdlet links a GPO to a site, domain, or organizational unit (OU). By default, +the link is enabled, which means that the settings of the GPO are applied at the level of the target +Active Directory container according to the rules of inheritance and precedence when Group Policy is +processed. + +You can specify the GPO by either its display name or its GUID; or the GPO can be piped into the +cmdlet. You specify the site, domain, or organizational unit (OU) to link to by its Lightweight +Directory Access Protocol (LDAP) distinguished name. You can use other parameters to specify whether +the link is enabled, whether the link is enforced, and the order in which it is applied at the site, +domain, or OU. ## EXAMPLES ### Example 1: Create and link a GPO to a domain + ```powershell -New-GPO -Name "MyGPO" | New-GPLink -Target "ou=MyOU,dc=contoso,dc=com" -LinkEnabled Yes +New-GPO -Name "MyGPO" | New-GPLink -Target "ou=MyOU,dc=contoso,dc=com" -LinkEnabled Yes +``` + +```Output GpoId : c25daa3e-5d05-43b3-87ca-0a237882fd63 DisplayName : MyGPO Enabled : True @@ -49,15 +62,24 @@ Target : OU=MyOU,DC=contoso,DC=com Order : 1 ``` -This command creates the GPO named MyGPO in the domain of the user (or, for a startup or shutdown script, the computer) and links it to the MyOU organizational unit in the contoso.com domain. -If the domain of the user, or the computer, is different than contoso.com, a trust relationship must exist between the two domains. +This command creates the GPO named MyGPO in the domain of the user (or, for a startup or shutdown +script, the computer) and links it to the `MyOU` organizational unit in the `contoso.com` domain. If +the domain of the user, or the computer, is different than `contoso.com`, a trust relationship must +exist between the two domains. -Because this command can take a GPO as input, you can insert any command that returns a GPO between New-GPO and **New-GPLink** to configure the GPO. -For instance, you can insert **Set-GPPermissions** commands to set permissions on the GPO, Set-GPRegistryValue cmdlet to configure one or more registry-based policy settings for the GPO, or the **Set-GPPrefRegistryValue** cmdlet to configure one or more Registry preference items for the GPO. +Because this command can take a GPO as input, you can insert any command that returns a GPO between +New-GPO and **New-GPLink** to configure the GPO. For instance, you can insert **Set-GPPermissions** +commands to set permissions on the GPO, Set-GPRegistryValue cmdlet to configure one or more +registry-based policy settings for the GPO, or the **Set-GPPrefRegistryValue** cmdlet to configure +one or more Registry preference items for the GPO. ### Example 2: Link a GPO in the domain of the user + ```powershell -New-GPLink -Name "TestGPO" -Target "dc=contoso,dc=com" +New-GPLink -Name "TestGPO" -Target "dc=contoso,dc=com" +``` + +```Output GpoId : d5a3b4e7-e37a-4070-846c-568689eaa838 DisplayName : TestGPO Enabled : True @@ -66,12 +88,17 @@ Target : DC=contoso,DC=com Order : 2 ``` -This command links the TestGPO GPO in the domain of the user (or, for a startup or shutdown script, the computer) to the contoso.com domain. -If the domain of the user, or the computer, is different than contoso.com, a trust relationship must exist between the two domains. +This command links the `TestGPO` GPO in the domain of the user (or, for a startup or shutdown +script, the computer) to the `contoso.com` domain. If the domain of the user, or the computer, is +different than `contoso.com`, a trust relationship must exist between the two domains. ### Example 3: Link a GPO to a site and enforce the link + ```powershell New-GPLink -name "TestGPO" -Target "Test-Site" -Enforced Yes +``` + +```Output GpoId : d5a3b4e7-e37a-4070-846c-568689eaa838 DisplayName : TestGPO Enabled : True @@ -80,7 +107,7 @@ Target : CN=test-site,cn=Sites,CN=Configuration,DC=contoso,DC=com Order : 1 ``` -This command links the TestGPO GPO to the site named Test-Site and sets the link to enforced. +This command links the `TestGPO` GPO to the site named `Test-Site` and sets the link to enforced. ## PARAMETERS @@ -102,25 +129,28 @@ Accept wildcard characters: False ### -Domain -Specifies the domain for this cmdlet. -You must specify the fully qualified domain name (FQDN) of the domain. +Specifies the domain for this cmdlet. You must specify the fully qualified domain name (FQDN) of the +domain. For the **New-GPLink** cmdlet: - The GPO to link from must exist in this domain. -- The Active Directory container to link to must exist in a domain that has a trust relationship with this domain. +- The Active Directory container to link to must exist in a domain that has a trust relationship + with this domain. To specify a domain to link to, use the *Target* parameter. -If you do not specify the **Domain** parameter, the domain of the user that is running the current session is used. -If the cmdlet is being run from a computer startup or shutdown script, the domain of the computer is used. -For more information, see the Notes section in the full Help. +If you do not specify the **Domain** parameter, the domain of the user that is running the current +session is used. If the cmdlet is being run from a computer startup or shutdown script, the domain +of the computer is used. For more information, see the Notes section in the full Help. -If you specify a domain that is different from the domain of the user that is running the current session (or, for a startup or shutdown script, the computer), a trust must exist between that domain and the domain of the user, or the computer. +If you specify a domain that is different from the domain of the user that is running the current +session (or, for a startup or shutdown script, the computer), a trust must exist between that domain +and the domain of the user, or the computer. -You can also refer to *Domain* by its built-in alias, **DomainName**. -For more information, see [about_Aliases](????????????). +You can also refer to **Domain** by its built-in alias, **DomainName**. For more information, see +[about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: System.String @@ -135,17 +165,18 @@ Accept wildcard characters: False ``` ### -Enforced -Specifies whether the GPO link is enforced. -You can specify Yes or No. -By default, GPO links are not enforced. + +Specifies whether the GPO link is enforced. You can specify Yes or No. By default, GPO links are not +enforced. By setting the GPO link to enforced, you ensure the following: -- That the settings of the GPO cannot be blocked (by blocking inheritance) at a lower-level Active Directory container. -- That the settings of the GPO always take precedence over conflicting settings in GPOs that are linked to lower-level containers. +- That the settings of the GPO cannot be blocked (by blocking inheritance) at a lower-level Active + Directory container. +- That the settings of the GPO always take precedence over conflicting settings in GPOs that are + linked to lower-level containers. -This option should be used sparingly. -Casual use of this option complicates troubleshooting. +This option should be used sparingly. Casual use of this option complicates troubleshooting. ```yaml Type: EnforceLink @@ -162,11 +193,11 @@ Accept wildcard characters: False ### -Guid -Specifies the GPO to link by its globally unique identifier (GUID). -The GUID uniquely identifies the GPO in the domain. +Specifies the GPO to link by its globally unique identifier (GUID). The GUID uniquely identifies the +GPO in the domain. -You can also refer to the Guid parameter by its built-in alias, **Id**. -For more information, see [about_Aliases](????????). +You can also refer to the **Guid** parameter by its built-in alias, **Id**. For more information, see +[about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: Guid @@ -181,14 +212,15 @@ Accept wildcard characters: False ``` ### -LinkEnabled + Specifies whether the GPO link is enabled. The acceptable values for this parameter are: Yes or No. -By default, Group Policy processing is enabled for all GPO links. -You can completely block the application of a GPO for a specific site, domain, or OU by disabling the GPO link for that site, domain, or OU. -Disabling a GPO link does not disable the GPO itself. -If the GPO is linked to other sites, domains, or OUs, Group Policy continues to process the GPO for each link that is enabled. +By default, Group Policy processing is enabled for all GPO links. You can completely block the +application of a GPO for a specific site, domain, or OU by disabling the GPO link for that site, +domain, or OU. Disabling a GPO link does not disable the GPO itself. If the GPO is linked to other +sites, domains, or OUs, Group Policy continues to process the GPO for each link that is enabled. ```yaml Type: EnableLink @@ -204,14 +236,15 @@ Accept wildcard characters: False ``` ### -Name + Specifies the GPO to link by its display name. -The display name is not guaranteed to be unique in the domain. -If another GPO with the same display name exists in the domain, an error occurs. -You can use the **Guid** parameter to uniquely identify a GPO. +The display name is not guaranteed to be unique in the domain. If another GPO with the same display +name exists in the domain, an error occurs. You can use the **Guid** parameter to uniquely identify +a GPO. -You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. -For more information, see [about_Aliases](????????). +You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. For more +information, see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: System.String @@ -226,17 +259,21 @@ Accept wildcard characters: False ``` ### -Order -Specifies the link order for the GPO link. -You can specify a number that is between one and the current number of GPO links to the target site, domain, or OU, plus one. -The link order specifies the order of precedence with which GPOs linked to the same Active Directory container are applied. -When Group Policy is processed, GPOs with a higher link order number are processed before GPOs with a lower link order number. -Therefore, when two GPOs contain conflicting settings, the settings in the GPO with the lower link order number, because it is processed last, overwrites those of the GPO with the higher link order number. -A lower number indicates higher precedence. +Specifies the link order for the GPO link. You can specify a number that is between one and the +current number of GPO links to the target site, domain, or OU, plus one. -By default, the GPO link is added at the lowest precedence with a link order equal to the number of GPO links to the container, plus one. -Link order is a dynamic value because the value may change as GPO links are added and deleted from the container. -You can change the link order of a GPO link with the **Set-GPLink** cmdlet. +The link order specifies the order of precedence with which GPOs linked to the same Active Directory +container are applied. When Group Policy is processed, GPOs with a higher link order number are +processed before GPOs with a lower link order number. Therefore, when two GPOs contain conflicting +settings, the settings in the GPO with the lower link order number, because it is processed last, +overwrites those of the GPO with the higher link order number. A lower number indicates higher +precedence. + +By default, the GPO link is added at the lowest precedence with a link order equal to the number of +GPO links to the container, plus one. Link order is a dynamic value because the value may change as +GPO links are added and deleted from the container. You can change the link order of a GPO link with +the **Set-GPLink** cmdlet. ```yaml Type: Int32 @@ -252,13 +289,14 @@ Accept wildcard characters: False ### -Server -Specifies the name of the domain controller that this cmdlet contacts to complete the operation. -You can specify either the FQDN or the host name. +Specifies the name of the domain controller that this cmdlet contacts to complete the operation. You +can specify either the FQDN or the host name. -If you do not specify the name by using the **Server** parameter, the primary domain controller (PDC) emulator is contacted. +If you do not specify the name by using the **Server** parameter, the primary domain controller +(PDC) emulator is contacted. -You can also refer to the *Server* parameter by its built-in alias, **DC**. -For more information, see [about_Aliases](????????). +You can also refer to the **Server** parameter by its built-in alias, **DC**. For more information, +see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: System.String @@ -273,8 +311,10 @@ Accept wildcard characters: False ``` ### -Target -Specifies the LDAP distinguished name of the site, domain, or OU to which to link the GPO. -For example, for the MyOU organizational unit in the contoso.com domain, the LDAP distinguished name is ou=MyOU,dc=contoso,dc=com. + +Specifies the LDAP distinguished name of the site, domain, or OU to which to link the GPO. For +example, for the `MyOU` organizational unit in the `contoso.com` domain, the LDAP distinguished name +is `ou=MyOU,dc=contoso,dc=com`. ```yaml Type: System.String @@ -290,8 +330,7 @@ Accept wildcard characters: False ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml Type: System.Management.Automation.SwitchParameter @@ -307,32 +346,42 @@ Accept wildcard characters: False ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### Microsoft.GroupPolicy.Gpo + You can pipe a GPO object to be linked to an Active Directory container. Collections that contain GPOs from different domains are not supported. ## OUTPUTS ### Microsoft.GroupPolicy.GpoLink + This cmdlet returns an object that represents the link between the GPO and the site, domain, or OU. ## NOTES -* To link a GPO to a site, domain, or OU, you must have Link GPOs permission on that site, domain, or OU. By default, only domain administrators and enterprise administrators have this privilege for domains and OUs. Enterprise administrators and domain administrators of the forest root domain have this privilege for sites. +* To link a GPO to a site, domain, or OU, you must have Link GPOs permission on that site, domain, + or OU. By default, only domain administrators and enterprise administrators have this privilege + for domains and OUs. Enterprise administrators and domain administrators of the forest root domain + have this privilege for sites. You can use the **Domain** parameter to explicitly specify the domain for this cmdlet. - If you do not explicitly specify the domain, the cmdlet uses a default domain. -The default domain is the domain that is used to access network resources by the security context under which the current session is running. -This domain is typically the domain of the user that is running the session. -For instance, the domain of the user who started the session by opening Windows PowerShell from the Program Files menu, or the domain of a user that is specified in a runas command. -However, computer startup and shutdown scripts run under the context of the LocalSystem account. -The LocalSystem account is a built-in local account, and it accesses network resources under the context of the computer account. -Therefore, when this cmdlet is run from a startup or shutdown script, the default domain is the domain to which the computer is joined. + If you do not explicitly specify the domain, the cmdlet uses a default domain. The default domain + is the domain that is used to access network resources by the security context under which the + current session is running. This domain is typically the domain of the user that is running the + session. For instance, the domain of the user who started the session by opening Windows + PowerShell from the Program Files menu, or the domain of a user that is specified in a runas + command. However, computer startup and shutdown scripts run under the context of the LocalSystem + account. The LocalSystem account is a built-in local account, and it accesses network resources + under the context of the computer account. Therefore, when this cmdlet is run from a startup or + shutdown script, the default domain is the domain to which the computer is joined. ## RELATED LINKS diff --git a/docset/winserver2022-ps/grouppolicy/New-GPO.md b/docset/winserver2022-ps/grouppolicy/New-GPO.md index 64399c4b2f..ac2a6b7df8 100644 --- a/docset/winserver2022-ps/grouppolicy/New-GPO.md +++ b/docset/winserver2022-ps/grouppolicy/New-GPO.md @@ -17,36 +17,46 @@ Creates a GPO. ## SYNTAX ### New (Default) + ``` -New-GPO [-Name] [-Comment ] [-Domain ] [-Server ] [-WhatIf] [-Confirm] - [] +New-GPO [-Name] [-Comment ] [-Domain ] [-Server ] [-WhatIf] + [-Confirm] [] ``` ### NewStarterGUID + ``` -New-GPO [-Name] -StarterGpoGuid [-Comment ] [-Domain ] [-Server ] - [-WhatIf] [-Confirm] [] +New-GPO [-Name] -StarterGpoGuid [-Comment ] [-Domain ] + [-Server ] [-WhatIf] [-Confirm] [] ``` ### NewStarterName + ``` -New-GPO [-Name] -StarterGpoName [-Comment ] [-Domain ] [-Server ] - [-WhatIf] [-Confirm] [] +New-GPO [-Name] -StarterGpoName [-Comment ] [-Domain ] + [-Server ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **New-GPO** cmdlet creates a GPO with a specified name. -By default, the newly created GPO is not linked to a site, domain, or organizational unit (OU). -You can use this cmdlet to create a GPO that is based on a starter GPO by specifying the GUID or the display name of the Starter GPO, or by piping a **StarterGpo** object into the cmdlet. +The **New-GPO** cmdlet creates a GPO with a specified name. By default, the newly created GPO is not +linked to a site, domain, or organizational unit (OU). + +You can use this cmdlet to create a GPO that is based on a starter GPO by specifying the GUID or the +display name of the Starter GPO, or by piping a **StarterGpo** object into the cmdlet. -The cmdlet returns a **GPO** object, which represents the created GPO that you can pipe to other Group Policy cmdlets. +The cmdlet returns a **GPO** object, which represents the created GPO that you can pipe to other +Group Policy cmdlets. ## EXAMPLES ### Example 1: Create a GPO in the domain of the user + ```powershell -New-GPO -Name TestGPO -Comment "This is a test GPO." +New-GPO -Name TestGPO -Comment "This is a test GPO." +``` + +```Output DisplayName : TestGPO DomainName : contoso.com Owner : CONTOSO\Domain Admins @@ -60,21 +70,25 @@ ComputerVersion : AD Version: 0, SysVol Version: 0 WmiFilter : ``` -This command creates a GPO in the domain of the user. -The GPO is created with the specified comment. +This command creates a GPO in the domain of the user. The GPO is created with the specified comment. ### Example 2: Create a GPO in the domain of the user that is pre-populated with the settings of the Starter GPO + ```powershell New-GPO -Name "FromStarterGPO" -StarterGPOName "Windows Vista EC Computer Starter GPO" ``` -This command creates a GPO named FromStarterGPO in the domain of the user. -The GPO is pre-populated with the settings of the Starter GPO. +This command creates a GPO named FromStarterGPO in the domain of the user. The GPO is pre-populated +with the settings of the Starter GPO. ### Example 3: Create a GPO in the domain of the user and link it to an OU + ```powershell -new-gpo -name TestGPO | new-gplink -target "ou=marketing,dc=contoso,dc=com" | set-gppermissions -permissionlevel gpoedit -targetname "Marketing Admins" -targettype group +New-GPO -Name TestGPO | New-GPLink -Target "ou=Marketing,dc=contoso,dc=com" | + Set-GPPermissions -PermissionLevel gpoedit -TargetName "Marketing Admins" -TargetType Group +``` +```Output DisplayName : TestGPO DomainName : contoso.com Owner : CONTOSO\Domain Admins @@ -88,19 +102,22 @@ ComputerVersion : AD Version: 0, SysVol Version: 0 WmiFilter : ``` -This command creates a GPO named TestGPO, links it to the Marketing OU in the contoso.com domain, and grants the Marketing Admins security group permissions to edit the GPO. +This command creates a GPO named `TestGPO`, links it to the `Marketing` OU in the `contoso.com` +domain, and grants the `Marketing Admins` security group permissions to edit the GPO. -A GPO object is returned by the command, so you could continue to configure the new GPO by piping the output to other cmdlets. -For example, you could set Registry preference items or registry-based policy settings by piping the output to Set-GPPrefRegistryValue or to Set-GPRegistryValue. +A GPO object is returned by the command, so you could continue to configure the new GPO by piping +the output to other cmdlets. For example, you could set Registry preference items or registry-based +policy settings by piping the output to **Set-GPPrefRegistryValue** or to **Set-GPRegistryValue**. ## PARAMETERS ### -Comment -Includes a comment for the new GPO. -The comment string must be enclosed in double- or single-quotation marks and can contain 2,047 characters. -Use the comment to document the GPO and its implementation in your environment. -Or, if you insert keywords in the comment, you can use the keyword filter to find GPOs that have matching keywords. +Includes a comment for the new GPO. The comment string must be enclosed in double- or +single-quotation marks and can contain 2,047 characters. + +Use the comment to document the GPO and its implementation in your environment. Or, if you insert +keywords in the comment, you can use the keyword filter to find GPOs that have matching keywords. ```yaml Type: System.String @@ -132,8 +149,8 @@ Accept wildcard characters: False ### -Domain -Specifies the domain for this cmdlet. -You must specify the fully qualified domain name (FQDN) of the domain. +Specifies the domain for this cmdlet. You must specify the fully qualified domain name (FQDN) of the +domain. For the **New-GPO** cmdlet: @@ -141,14 +158,16 @@ For the **New-GPO** cmdlet: - If a Starter GPO is specified, it must exist in this domain. -If you do not specify the **Domain** parameter, then the domain of the user running the current session is used. -If the cmdlet is being run from a computer startup or shutdown script, the domain of the computer is used. -For more information, see the Notes section in the full help. +If you do not specify the **Domain** parameter, then the domain of the user running the current +session is used. If the cmdlet is being run from a computer startup or shutdown script, the domain +of the computer is used. For more information, see the Notes section in the full help. -If you specify a domain that is different from the domain of the user running the current session (or the computer for a startup or shutdown script), then a trust must exist between that domain and the domain of the user, or computer. +If you specify a domain that is different from the domain of the user running the current session +(or the computer for a startup or shutdown script), then a trust must exist between that domain and +the domain of the user, or computer. -You can also refer to the *Domain* by its built-in alias, **DomainName**. -For more information, see [about_Aliases](????????????). +You can also refer to the **Domain** by its built-in alias, **DomainName**. For more information, +see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: System.String @@ -163,12 +182,13 @@ Accept wildcard characters: False ``` ### -Name + Specifies a display name for the new GPO. If another GPO with the same display name exists in the domain an error occurs. -You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. -For more information, see [about_Aliases](????????). +You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. For more +information, see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: System.String @@ -184,13 +204,14 @@ Accept wildcard characters: False ### -Server -Specifies the name of the domain controller that this cmdlet contacts to complete the operation. -You can specify either the fully qualified domain name (FQDN) or the host name. +Specifies the name of the domain controller that this cmdlet contacts to complete the operation. You +can specify either the fully qualified domain name (FQDN) or the host name. -If you do not specify the name by using the **Server** parameter, the primary domain controller (PDC) emulator is contacted. +If you do not specify the name by using the **Server** parameter, the primary domain controller +(PDC) emulator is contacted. -You can also refer to the *Server* parameter by its built-in alias, **DC**. -For more information, see [about_Aliases](????????). +You can also refer to the **Server** parameter by its built-in alias, **DC**. For more information, +see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: System.String @@ -205,12 +226,12 @@ Accept wildcard characters: False ``` ### -StarterGpoGuid -Specifies a Starter GPO by its globally unique identifier (GUID). -The GUID uniquely identifies the Starter GPO. -If a Starter GPO is specified, the GPO is created with its settings. -You can also refer to the **StarterGpoGuid* *parameter by its built-in alias, **Id**. -For more information, see [about_Aliases](????????). +Specifies a Starter GPO by its globally unique identifier (GUID). The GUID uniquely identifies the +Starter GPO. If a Starter GPO is specified, the GPO is created with its settings. + +You can also refer to the **StarterGpoGuid** parameter by its built-in alias, **Id**. For more +information, see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: Guid @@ -225,17 +246,17 @@ Accept wildcard characters: False ``` ### -StarterGpoName -Specifies a Starter GPO by its display name. -The name can contain 255 characters. -If the name includes blank characters, enclose the name in double-quotation marks or single-quotation marks. -If a Starter GPO is specified, the GPO is created with its settings. -The display name is not guaranteed to be unique in the domain. -If another Starter GPO with the same display name exists in the domain, an error occurs. -You can use the **StarterGpoGuid* *parameter to uniquely identify a Starter GPO. +Specifies a Starter GPO by its display name. The name can contain 255 characters. If the name +includes blank characters, enclose the name in double-quotation marks or single-quotation marks. If +a Starter GPO is specified, the GPO is created with its settings. + +The display name is not guaranteed to be unique in the domain. If another Starter GPO with the same +display name exists in the domain, an error occurs. You can use the **StarterGpoGuid** parameter to +uniquely identify a Starter GPO. -You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. -For more information, see [about_Aliases](????????). +You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. For more +information, see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: System.String @@ -251,8 +272,7 @@ Accept wildcard characters: False ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml Type: System.Management.Automation.SwitchParameter @@ -268,7 +288,10 @@ Accept wildcard characters: False ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/docset/winserver2022-ps/grouppolicy/New-GPStarterGPO.md b/docset/winserver2022-ps/grouppolicy/New-GPStarterGPO.md index d9777e8a7d..deef30533a 100644 --- a/docset/winserver2022-ps/grouppolicy/New-GPStarterGPO.md +++ b/docset/winserver2022-ps/grouppolicy/New-GPStarterGPO.md @@ -17,29 +17,33 @@ Creates a Starter GPO. ## SYNTAX ``` -New-GPStarterGPO [-Name] [-Comment ] [-Domain ] [-Server ] [-WhatIf] - [-Confirm] [] +New-GPStarterGPO [-Name] [-Comment ] [-Domain ] [-Server ] + [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **New-GPStarterGPO** cmdlet creates a Starter GPO with the specified name. -If the Starter GPOs folder does not exist in the SYSVOL when the **New-GPStarterGPO** cmdlet is called, it is created and populated with the eight Starter GPOs that ship with Group Policy. + +The **New-GPStarterGPO** cmdlet creates a Starter GPO with the specified name. If the Starter GPOs +folder does not exist in the SYSVOL when the **New-GPStarterGPO** cmdlet is called, it is created +and populated with the eight Starter GPOs that ship with Group Policy. ## EXAMPLES ### Example 1: Create a Starter GPO + ```powershell New-GPStarterGPO -Name StarterSecurity -Comment "Security Template" ``` -This command creates a Starter GPO with the display name StarterSecurity. -The Starter GPO is annotated with the specified comment. +This command creates a Starter GPO with the display name StarterSecurity. The Starter GPO is +annotated with the specified comment. ## PARAMETERS ### -Comment -Specifies a comment for the new Starter GPO. -The comment string must be enclosed in double-quotation marks or single-quotation marks and can contain a maximum of 2,047 characters. + +Specifies a comment for the new Starter GPO. The comment string must be enclosed in double-quotation +marks or single-quotation marks and can contain a maximum of 2,047 characters. ```yaml Type: System.String @@ -71,16 +75,17 @@ Accept wildcard characters: False ### -Domain -Specifies the domain for this cmdlet. -You must specify the fully qualified domain name (FQDN) of the domain. +Specifies the domain for this cmdlet. You must specify the fully qualified domain name (FQDN) of the +domain. -Cross-domain creation of Starter GPOs is not supported. -If you specify a domain that is different from the domain of the user that is running the current session, an error occurs. +Cross-domain creation of Starter GPOs is not supported. If you specify a domain that is different +from the domain of the user that is running the current session, an error occurs. -If you do not specify the **Domain** parameter, the domain of the user that is running the current session is used. +If you do not specify the **Domain** parameter, the domain of the user that is running the current +session is used. -You can also refer to the **Domain** parameter by its built-in alias, **DomainName**. -For more information, see [about_Aliases](????????????). +You can also refer to the **Domain** parameter by its built-in alias, **DomainName**. For more +information, see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: System.String @@ -95,12 +100,13 @@ Accept wildcard characters: False ``` ### -Name + Specifies the display name for the new Starter GPO. If another Starter GPO with the same display name exists in the domain, an error occurs. -You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. -For more information, see [about_Aliases](????????). +You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. For more +information, see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: System.String @@ -116,13 +122,14 @@ Accept wildcard characters: False ### -Server -Specifies the name of the domain controller that this cmdlet contacts to complete the operation. -You can specify either the fully qualified domain name (FQDN) or the host name. +Specifies the name of the domain controller that this cmdlet contacts to complete the operation. You +can specify either the fully qualified domain name (FQDN) or the host name. -If you do not specify the name by using the **Server** parameter, the primary domain controller (PDC) emulator is contacted. +If you do not specify the name by using the **Server** parameter, the primary domain controller +(PDC) emulator is contacted. -You can also refer to the *Server* parameter by its built-in alias, **DC**. -For more information, see [about_Aliases](????????). +You can also refer to the **Server** parameter by its built-in alias, **DC**. For more information, +see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: System.String @@ -155,16 +162,21 @@ Accept wildcard characters: False ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### None + This cmdlet does not accept any input. ## OUTPUTS ### Microsoft.GroupPolicy.StarterGpo + This cmdlet returns the Starter GPO that was created. ## NOTES diff --git a/docset/winserver2022-ps/grouppolicy/Remove-GPLink.md b/docset/winserver2022-ps/grouppolicy/Remove-GPLink.md index 9d80f52e96..5b382d1361 100644 --- a/docset/winserver2022-ps/grouppolicy/Remove-GPLink.md +++ b/docset/winserver2022-ps/grouppolicy/Remove-GPLink.md @@ -17,26 +17,34 @@ Removes a GPO link from a site, domain or OU. ## SYNTAX ### LinkbyGUID (Default) + ``` -Remove-GPLink -Guid -Target [-Domain ] [-Server ] [-WhatIf] [-Confirm] - [] +Remove-GPLink -Guid -Target [-Domain ] [-Server ] [-WhatIf] + [-Confirm] [] ``` ### LinkbyName + ``` -Remove-GPLink [-Name] -Target [-Domain ] [-Server ] [-WhatIf] [-Confirm] - [] +Remove-GPLink [-Name] -Target [-Domain ] [-Server ] [-WhatIf] + [-Confirm] [] ``` ## DESCRIPTION -The **Remove-GPLink** cmdlet removes the link between a Group Policy Object (GPO) and a specified site, domain, or OU. -This cmdlet does not delete the actual GPO or any other links between the specified GPO and other sites, domains, or OUs. + +The **Remove-GPLink** cmdlet removes the link between a Group Policy Object (GPO) and a specified +site, domain, or OU. This cmdlet does not delete the actual GPO or any other links between the +specified GPO and other sites, domains, or OUs. ## EXAMPLES ### Example 1: Remove the specified GPO link + ```powershell -Remove-GPLink -Name "MyGPO" -Target "OU=MyOU,dc=contoso,dc=com" +Remove-GPLink -Name "MyGPO" -Target "OU=MyOU,dc=contoso,dc=com" +``` + +```Output DisplayName : MyGPO DomainName : contoso.com Owner : CONTOSO\Domain Admins @@ -50,9 +58,11 @@ ComputerVersion : AD Version: 1, SysVol Version: 1 WmiFilter : ``` -This command removes the link between the GPO named MyGPO and the MyOU organizational unit in the contoso.com domain. +This command removes the link between the GPO named `MyGPO` and the `MyOU` organizational unit in +the `contoso.com` domain. ### Example 2: Remove the link between the specified GPO and the default site + ```powershell Remove-GPLink -Name "MyGPO" -Target "Default-First-Site-Name" ``` @@ -60,8 +70,12 @@ Remove-GPLink -Name "MyGPO" -Target "Default-First-Site-Name" This command removes the link between the GPO named MyGPO and the default site. ### Example 3: Remove the links for all GPOs that are linked to the specified organizational unit + ```powershell -(Get-GPInheritance -Target "ou=myou,dc=contoso,dc=com").GpoLinks | Remove-GPLink +(Get-GPInheritance -Target "ou=MyOU,dc=contoso,dc=com").GpoLinks | Remove-GPLink +``` + +```Output DisplayName : TestGPO-3 DomainName : contoso.com Owner : CONTOSO\Domain Admins @@ -87,13 +101,13 @@ ComputerVersion : AD Version: 1, SysVol Version: 1 WmiFilter : ``` -This command removes the links for all the GPOs that are linked to the MyOU organizational unit in the contoso.com domain. +This command removes the links for all the GPOs that are linked to the `MyOU` organizational unit in +the `contoso.com` domain. -This cmdlet is used to get a **Microsoft.GroupPolicy.Som** object for the OU. -The GpoLinks property of the SOM object contains all the GPO links for GPOs that are linked to the OU. -Links that are inherited from higher-level containers are not included. -This collection is piped into **Remove-GPLink**. -The GPOs for which links have been removed are returned. +This cmdlet is used to get a **Microsoft.GroupPolicy.Som** object for the OU. The GpoLinks property +of the SOM object contains all the GPO links for GPOs that are linked to the OU. Links that are +inherited from higher-level containers are not included. This collection is piped into +**Remove-GPLink**. The GPOs for which links have been removed are returned. ## PARAMETERS @@ -115,25 +129,28 @@ Accept wildcard characters: False ### -Domain -Specifies the domain for this cmdlet. -You must specify the fully qualified domain name (FQDN) of the domain. +Specifies the domain for this cmdlet. You must specify the fully qualified domain name (FQDN) of the +domain. For the **Remove-GPLink** cmdlet: - The GPO that is linked must exist in this domain. -- The Active Directory container (site, domain, or OU) that is linked must exist in a domain that has a trust relationship with this domain. +- The Active Directory container (site, domain, or OU) that is linked must exist in a domain that + has a trust relationship with this domain. Note: To specify a domain to link to, use the Target parameter. -If you do not specify the Domain parameter, the domain of the user that is running the current session is used. -If the cmdlet is being run from a computer startup or shutdown script, the domain of the computer is used. -For more information, see the Notes section in the full Help. +If you do not specify the Domain parameter, the domain of the user that is running the current +session is used. If the cmdlet is being run from a computer startup or shutdown script, the domain +of the computer is used. For more information, see the Notes section in the full Help. -If you specify a domain that is different from the domain of the user that is running the current session (or, for a startup or shutdown script, the computer), a trust must exist between that domain and the domain of the user, or the computer. +If you specify a domain that is different from the domain of the user that is running the current +session (or, for a startup or shutdown script, the computer), a trust must exist between that domain +and the domain of the user, or the computer. -You can also refer to the **Domain** parameter by its built-in alias, **DomainName**. -For more information, see [about_Aliases](????????????). +You can also refer to the **Domain** parameter by its built-in alias, **DomainName**. For more +information, see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: System.String @@ -152,8 +169,8 @@ Accept wildcard characters: False Specifies the GPO for which to remove the link by its globally unique identifier (GUID). The GUID uniquely identifies the GPO. -You can also refer to the **Guid** parameter by its built-in aliases, id and gpoid. -For more information, see [about_Aliases](????????). +You can also refer to the **Guid** parameter by its built-in aliases, **id** and **gpoid**. For more +information, see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: Guid @@ -171,12 +188,12 @@ Accept wildcard characters: False Specifies the GPO for which to remove the link by its display name. -The display name is not guaranteed to be unique in the domain. -If another GPO with the same display name exists in the domain an error occurs. -You can use the **Guid** parameter to uniquely identify a GPO. +The display name is not guaranteed to be unique in the domain. If another GPO with the same display +name exists in the domain an error occurs. You can use the **Guid** parameter to uniquely identify a +GPO. -You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. -For more information, see [about_Aliases](????????). +You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. For more +information, see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: System.String @@ -192,13 +209,14 @@ Accept wildcard characters: False ### -Server -Specifies the name of the domain controller that this cmdlet contacts to complete the operation. -You can specify either the fully qualified domain name (FQDN) or the host name. +Specifies the name of the domain controller that this cmdlet contacts to complete the operation. You +can specify either the fully qualified domain name (FQDN) or the host name. -If you do not specify the name by using the **Server** parameter, the primary domain controller (PDC) emulator is contacted. +If you do not specify the name by using the **Server** parameter, the primary domain controller +(PDC) emulator is contacted. -You can also refer to the *Server* parameter by its built-in alias, **DC**. -For more information, see [about_Aliases](????????). +You can also refer to the **Server** parameter by its built-in alias, **DC**. For more information, +see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: System.String @@ -213,8 +231,10 @@ Accept wildcard characters: False ``` ### -Target -Specifies the Lightweight Directory Access Protocol (LDAP) distinguished name of the site, domain, or OU from which to remove the link. -For instance, for the MyOU organizational unit in the contoso.com domain, the LDAP distinguished name is ou=MyOU,dc=contoso,dc=com. + +Specifies the Lightweight Directory Access Protocol (LDAP) distinguished name of the site, domain, +or OU from which to remove the link. For instance, for the `MyOU` organizational unit in the +`contoso.com` domain, the LDAP distinguished name is `ou=MyOU,dc=contoso,dc=com`. ```yaml Type: System.String @@ -230,8 +250,7 @@ Accept wildcard characters: False ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml Type: System.Management.Automation.SwitchParameter @@ -249,11 +268,15 @@ Accept wildcard characters: False ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### Microsoft.GroupPolicy.GpoLink +~~~~ This cmdlet accepts an object that represents the link between a GPO and a site, domain, or OU. ## OUTPUTS diff --git a/docset/winserver2022-ps/grouppolicy/Remove-GPO.md b/docset/winserver2022-ps/grouppolicy/Remove-GPO.md index c7d1136072..cc2eea037a 100644 --- a/docset/winserver2022-ps/grouppolicy/Remove-GPO.md +++ b/docset/winserver2022-ps/grouppolicy/Remove-GPO.md @@ -17,37 +17,45 @@ Removes a GPO. ## SYNTAX ### ByGUID (Default) + ``` Remove-GPO -Guid [-Domain ] [-Server ] [-KeepLinks] [-WhatIf] [-Confirm] [] ``` ### ByName + ``` Remove-GPO [-Name] [-Domain ] [-Server ] [-KeepLinks] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Remove-GPO** cmdlet removes the Group Policy Object (GPO) container and data from the directory service and the system volume folder (SysVol). + +The **Remove-GPO** cmdlet removes the Group Policy Object (GPO) container and data from the +directory service and the system volume folder (SysVol). ## EXAMPLES ### Example 1: Remove a GPO by GUID + ```powershell Remove-GPO -Guid 50cc3e45-0b14-46dd-8b4d-afa012bc331c -Domain "contoso.com" -KeepLinks ``` -This command removes the GPO that has the GUID 50cc3e45-0b14-46dd-8b4d-afa012bc331c from the contoso.com domain. -Because the *KeepLinks* parameter is specified, links between the GPO and all sites, and links between the GPO and all containers in the domain are preserved. +This command removes the GPO that has the GUID `50cc3e45-0b14-46dd-8b4d-afa012bc331c` from the +`contoso.com` domain. Because the **KeepLinks** parameter is specified, links between the GPO and +all sites, and links between the GPO and all containers in the domain are preserved. ### Example 2: Remove a GPO by name + ```powershell Remove-GPO -Name "TestGPO" ``` -This command removes the GPO named TestGPO from the domain of the user that is running the session. -Because the *KeepLinks* parameter is not specified, links between the GPO and all sites, and links between the GPO and all containers in the domain are removed. +This command removes the GPO named `TestGPO` from the domain of the user that is running the session. +Because the **KeepLinks** parameter is not specified, links between the GPO and all sites, and links +between the GPO and all containers in the domain are removed. ## PARAMETERS @@ -68,12 +76,15 @@ Accept wildcard characters: False ``` ### -Domain -Specifies the domain in which you want to remove a GPO. -You must specify the fully qualified domain name (FQDN) of the domain. -If you do not specify the **Domain** parameter, the domain of the computer that you are logged on to is used. +Specifies the domain in which you want to remove a GPO. You must specify the fully qualified domain +name (FQDN) of the domain. -If you specify a domain that differs from the domain of your user object, a trust must exist between the domain from which you want to remove the GPO and the domain of your user object. +If you do not specify the **Domain** parameter, the domain of the computer that you are logged on to +is used. + +If you specify a domain that differs from the domain of your user object, a trust must exist between +the domain from which you want to remove the GPO and the domain of your user object. ```yaml Type: System.String @@ -89,11 +100,11 @@ Accept wildcard characters: False ### -Guid -Specifies the GPO to remove by its globally unique identifier (GUID). -The GUID uniquely identifies the GPO. +Specifies the GPO to remove by its globally unique identifier (GUID). The GUID uniquely identifies +the GPO. -You can also refer to the **Guid** parameter by its built-in alias, **Id**. -For more information, see [about_Aliases](????????????). +You can also refer to the **Guid** parameter by its built-in alias, **Id**. For more information, +see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: Guid @@ -108,7 +119,9 @@ Accept wildcard characters: False ``` ### -KeepLinks -Indicates that the cmdlet preserves the links to the GPO in the specified domain, including OUs, and all sites when the GPO is removed. + +Indicates that the cmdlet preserves the links to the GPO in the specified domain, including OUs, and +all sites when the GPO is removed. ```yaml Type: System.Management.Automation.SwitchParameter @@ -123,14 +136,15 @@ Accept wildcard characters: False ``` ### -Name + Specifies the GPO that this cmdlet removes by its display name. -The display name is not guaranteed to be unique in the domain. -If another GPO with the same display name exists in the domain an error occurs. -You can use the **Guid** parameter to uniquely identify a GPO. +The display name is not guaranteed to be unique in the domain. If another GPO with the same display +name exists in the domain an error occurs. You can use the **Guid** parameter to uniquely identify a +GPO. -You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. -For more information, see [about_Aliases](????????). +You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. For more +information, see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: System.String @@ -146,13 +160,14 @@ Accept wildcard characters: False ### -Server -Specifies the name of the domain controller that this cmdlet contacts to complete the operation. -You can specify either the fully qualified domain name (FQDN) or the host name. +Specifies the name of the domain controller that this cmdlet contacts to complete the operation. You +can specify either the fully qualified domain name (FQDN) or the host name. -If you do not specify the name by using the **Server** parameter, the primary domain controller (PDC) emulator is contacted. +If you do not specify the name by using the **Server** parameter, the primary domain controller +(PDC) emulator is contacted. -You can also refer to the *Server* parameter by its built-in alias, **DC**. -For more information, see [about_Aliases](????????). +You can also refer to the **Server** parameter by its built-in alias, **DC**. For more information, +see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: System.String @@ -168,8 +183,7 @@ Accept wildcard characters: False ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml Type: System.Management.Automation.SwitchParameter @@ -185,11 +199,15 @@ Accept wildcard characters: False ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### Microsoft.GroupPolicy.Gpo + This cmdlet pipes the GPO to be removed. Collections that contain GPOs from different domains are not supported. @@ -201,7 +219,13 @@ This cmdlet does not generate any output. ## NOTES -* When you remove a GPO, by default, all links to that GPO in the domain of the GPO are deleted. To remove a link to a GPO, you must have permission to link Group Policy Objects for the organizational unit or domain. If you do not have rights to delete a link, the GPO is deleted, but the link remains. Links from other domains and sites are not removed. The link to a deleted GPO appears in the GPMC as Not Found. To remove Not Found links, you must either have permission on the site, domain, or organizational unit containing the link, or ask someone with sufficient rights to delete it. +* When you remove a GPO, by default, all links to that GPO in the domain of the GPO are deleted. To + remove a link to a GPO, you must have permission to link Group Policy Objects for the + organizational unit or domain. If you do not have rights to delete a link, the GPO is deleted, but + the link remains. Links from other domains and sites are not removed. The link to a deleted GPO + appears in the GPMC as Not Found. To remove Not Found links, you must either have permission on + the site, domain, or organizational unit containing the link, or ask someone with sufficient + rights to delete it. ## RELATED LINKS diff --git a/docset/winserver2022-ps/grouppolicy/Remove-GPPrefRegistryValue.md b/docset/winserver2022-ps/grouppolicy/Remove-GPPrefRegistryValue.md index f1c13c2a76..c183f6d5bb 100644 --- a/docset/winserver2022-ps/grouppolicy/Remove-GPPrefRegistryValue.md +++ b/docset/winserver2022-ps/grouppolicy/Remove-GPPrefRegistryValue.md @@ -12,47 +12,68 @@ title: Remove-GPPrefRegistryValue ## SYNOPSIS -Removes one or more Registry preference items from either Computer Configuration or User Configuration in a GPO. +Removes one or more Registry preference items from either Computer Configuration or User +Configuration in a GPO. ## SYNTAX ### GetByGUID (Default) + ``` -Remove-GPPrefRegistryValue -Guid -Context -Key [-ValueName ] - [-Order ] [-Domain ] [[-Server] ] [-WhatIf] [-Confirm] [] +Remove-GPPrefRegistryValue -Guid -Context -Key + [-ValueName ] [-Order ] [-Domain ] [[-Server] ] [-WhatIf] [-Confirm] + [] ``` ### GetByName + ``` -Remove-GPPrefRegistryValue [-Name] -Context -Key [-ValueName ] - [-Order ] [-Domain ] [[-Server] ] [-WhatIf] [-Confirm] [] +Remove-GPPrefRegistryValue [-Name] -Context -Key + [-ValueName ] [-Order ] [-Domain ] [[-Server] ] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION -The **Remove-GPPrefRegistryValue** cmdlet removes one or more Registry preference items from either Computer Configuration or User Configuration in a GPO. -You must specify the *Context* parameter for the User or Computer to indicate whether to remove the Registry preference item from Computer Configuration or User Configuration. -You can specify the GPO by its display name or by its GUID. + +The **Remove-GPPrefRegistryValue** cmdlet removes one or more Registry preference items from either +Computer Configuration or User Configuration in a GPO. You must specify the **Context** parameter +for the User or Computer to indicate whether to remove the Registry preference item from Computer +Configuration or User Configuration. You can specify the GPO by its display name or by its GUID. You can specify either a key or a value: -- If you specify a key, all Registry preference items that configure that registry key or any of its first-level values are removed from the specified configuration in the GPO. -Registry preference items that configure subkeys of that key or their values are not affected. -For a key, specify the *Key* parameter without the *ValueName* parameter. +- If you specify a key, all Registry preference items that configure that registry key or any of its + first-level values are removed from the specified configuration in the GPO. Registry preference + items that configure subkeys of that key or their values are not affected. For a key, specify the + **Key** parameter without the *ValueName* parameter. -- If you specify a value, all Registry preference items that configure that registry value are removed from the specified configuration in the GPO. -For a value, specify the *Key* parameter without the *ValueName* parameter. +- If you specify a value, all Registry preference items that configure that registry value are + removed from the specified configuration in the GPO. For a value, specify the **Key** parameter + without the **ValueName** parameter. This cmdlet can take input from the pipeline: -- You can pipe GPO objects to this cmdlet to remove a specified Registry preference item from one or more GPOs. +- You can pipe GPO objects to this cmdlet to remove a specified Registry preference item from one or + more GPOs. -- You can pipe **PreferencRegistrySetting** objects to this cmdlet to remove one or more Registry preference items from a specified GPO. +- You can pipe **PreferencRegistrySetting** objects to this cmdlet to remove one or more Registry + preference items from a specified GPO. ## EXAMPLES ### Example 1: Remove all registry preference item under the specified registry + ```powershell -Remove-GPPrefRegistryValue -Name "TestGPO" -Context User -Key "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey" -ValueName "ValueOne" +$params = @{ + Name = 'TestGPO' + Context = 'User' + Key = 'HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey' + ValueName = 'ValueOne' +} +Remove-GPPrefRegistryValue @params +``` + +```Output DisplayName : TestGPO DomainName : contoso.com Owner : CONTOSO\Domain Admins @@ -66,11 +87,23 @@ ComputerVersion : AD Version: 0, SysVol Version: 0 WmiFilter : ``` -This command removes all Registry preference items that configure the registry value HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey ValueOne from User Configuration in the GPO named TestGPO. +This command removes all Registry preference items that configure the registry value +`HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey ValueOne` from User Configuration in the GPO named +`TestGPO`. ### Example 2: Remove registry preference items that configure first-level values + ```powershell -Remove-GPPrefRegistryValue -Name "TestGPO" -Context "Computer" -Key "HKLM\SOFTWARE\Microsoft\ExampleKey" +$params = @{ + Name = "TestGPO" + Context = "Computer" + Key = "HKLM\SOFTWARE\Microsoft\ExampleKey" + +} +Remove-GPPrefRegistryValue @params +``` + +```Output DisplayName : TestGPO DomainName : contoso.com Owner : CONTOSO\Domain Admins @@ -84,11 +117,23 @@ ComputerVersion : AD Version: 0, SysVol Version: 0 WmiFilter : ``` -This command removes Registry preference items that configure any first-level values under the registry key HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey or the key itself from Computer Configuration in the GPO named TestGPO. +This command removes Registry preference items that configure any first-level values under the +registry key `HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey` or the key itself from `Computer` +Configuration in the GPO named `TestGPO`. ### Example 3: Remove any registry preference items for all GPOs + ```powershell -Get-GPO -All | Remove-GPPrefRegistryValue -Context "User" -Key "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey" -ValueName "ValueOne" -ErrorAction SilentlyContinue +$params = @{ + Context = 'User' + Key = 'HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey' + ValueName = 'ValueOne' + ErrorAction = 'SilentlyContinue' +} +Get-GPO -All | Remove-GPPrefRegistryValue @params +``` + +```Output DisplayName : TestGPO DomainName : contoso.com Owner : CONTOSO\Domain Admins @@ -115,12 +160,15 @@ ComputerVersion : AD Version: 0, SysVol Version: 0 WmiFilter : ``` -This command removes any Registry preference items that configure the registry value "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey ValueOne" from User Configuration for all GPOs in the domain. -It returns each GPO from which at least one Registry preference item is removed. +This command removes any Registry preference items that configure the registry value +`HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey ValueOne` from `User` Configuration for all GPOs +in the domain. It returns each GPO from which at least one Registry preference item is removed. -This cmdlet returns a non-terminating error for each GPO that does not have a Registry preference item associated with the specified registry value. -In this command, these error messages are suppressed by setting the *ErrorAction* parameter to SilentlyContinue. -For more information about the *ErrorAction* parameter, see about_CommonParameters. +This cmdlet returns a non-terminating error for each GPO that does not have a Registry preference +item associated with the specified registry value. In this command, these error messages are +suppressed by setting the **ErrorAction** parameter to `SilentlyContinue`. For more information +about the **ErrorAction** parameter, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## PARAMETERS @@ -141,8 +189,9 @@ Accept wildcard characters: False ``` ### -Context -Specifies whether the Registry preference item (or items) are removed from Computer Configuration or User Configuration in the specified GPO. -You must specify either User or Computer. + +Specifies whether the Registry preference item (or items) are removed from Computer Configuration or +User Configuration in the specified GPO. You must specify either User or Computer. ```yaml Type: GpoConfiguration @@ -159,18 +208,21 @@ Accept wildcard characters: False ### -Domain -Specifies the domain for which this cmdlet runs the operation. -You must specify the fully qualified domain name (FQDN) of the domain. +Specifies the domain for which this cmdlet runs the operation. You must specify the fully qualified +domain name (FQDN) of the domain. -For the **Remove-GPPrefRegistryValue** cmdlet, the GPO from which to remove the Registry preference item or items must exist in this domain. +For the **Remove-GPPrefRegistryValue** cmdlet, the GPO from which to remove the Registry preference +item or items must exist in this domain. -If you do not specify the **Domain** parameter, the domain of the user that is running the current session is used. -(If the cmdlet is being run from a computer startup or shutdown script, the domain of the computer is used.) For more information, see the Notes section in the full Help. +If you do not specify the **Domain** parameter, the domain of the user that is running the current +session is used. (If the cmdlet is being run from a computer startup or shutdown script, the domain +of the computer is used.) For more information, see the Notes section in the full Help. -If you specify a domain that is different from the domain of the user that is running the current session, a trust must exist between that domain and the domain of the user or the computer. +If you specify a domain that is different from the domain of the user that is running the current +session, a trust must exist between that domain and the domain of the user or the computer. -You can also refer to the Domain parameter by its built-in alias, **DomainName**. -For more information, see [about_Aliases](????????????). +You can also refer to the Domain parameter by its built-in alias, **DomainName**. For more +information, see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: System.String @@ -186,8 +238,8 @@ Accept wildcard characters: False ### -Guid -Specifies the GPO from which to remove the Registry preference item by its globally unique identifier (GUID). -The GUID uniquely identifies the GPO. +Specifies the GPO from which to remove the Registry preference item by its globally unique +identifier (GUID). The GUID uniquely identifies the GPO. You can also refer to the **Guid** parameter by its built-in alias, **Id**. @@ -204,18 +256,23 @@ Accept wildcard characters: False ``` ### -Key -Specifies a registry key for which to remove one or more Registry preference items; for instance, HKCU\Control Panel\Colors. +Specifies a registry key for which to remove one or more Registry preference items; for instance, +HKCU\Control Panel\Colors. -You can specify any of the following registry hives: HKEY_CLASSES_ROOT (HKCR), HKEY_CURRENT_USER (HKCU), HKEY_LOCAL_MACHINE (HKLM), HKEY_USERS (HKU), and HKEY_CURRENT_CONFIG (HKCC). -Any of these hives can be specified for Registry preference items in both Computer Configuration and User Configuration. +You can specify any of the following registry hives: `HKEY_CLASSES_ROOT` (HKCR), `HKEY_CURRENT_USER` +(HKCU), `HKEY_LOCAL_MACHINE` (HKLM), `HKEY_USERS` (HKU), and `HKEY_CURRENT_CONFIG` (HKCC). Any of +these hives can be specified for Registry preference items in both Computer Configuration and User +Configuration. -The *Key* parameter can be specified with or without the *ValueName* parameter: +The **Key** parameter can be specified with or without the **ValueName** parameter: -- If the *ValueName* parameter is specified, all Registry preference items that configure the registry value are removed. +- If the **ValueName** parameter is specified, all Registry preference items that configure the + registry value are removed. -- If the *ValueName* parameter is not specified, all Registry preference items that configure the registry key and any of its first-level values are removed. +- If the **ValueName** parameter is not specified, all Registry preference items that configure the + registry key and any of its first-level values are removed. -You can also refer to the *Key* parameter by its built-in alias, FullKeyPath. +You can also refer to the **Key** parameter by its built-in alias, FullKeyPath. ```yaml Type: System.String @@ -230,11 +287,12 @@ Accept wildcard characters: False ``` ### -Name + Specifies the GPO from which to remove the Registry preference item by its display name. -The display name is not guaranteed to be unique in the domain. -If another GPO with the same display name exists in the domain an error occurs. -You can use the Guid parameter to uniquely identify a GPO. +The display name is not guaranteed to be unique in the domain. If another GPO with the same display +name exists in the domain an error occurs. You can use the Guid parameter to uniquely identify a +GPO. You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. @@ -251,7 +309,9 @@ Accept wildcard characters: False ``` ### -Order -Specifies the order in which a Registry preference item is processed relative to other Registry preference items in the GPO when the GPO is applied on a client computer. + +Specifies the order in which a Registry preference item is processed relative to other Registry +preference items in the GPO when the GPO is applied on a client computer. ```yaml Type: Int32 @@ -267,12 +327,13 @@ Accept wildcard characters: False ### -Server -Specifies the name of the domain controller that this cmdlet contacts to complete the operation. -You can specify either the fully qualified domain name (FQDN) or the host name. +Specifies the name of the domain controller that this cmdlet contacts to complete the operation. You +can specify either the fully qualified domain name (FQDN) or the host name. -If you do not specify the name by using the **Server** parameter, the primary domain controller (PDC) emulator is contacted. +If you do not specify the name by using the **Server** parameter, the primary domain controller +(PDC) emulator is contacted. -You can also refer to the *Server* parameter by its built-in alias, **DC**. +You can also refer to the **Server** parameter by its built-in alias, **DC**. ```yaml Type: System.String @@ -287,8 +348,9 @@ Accept wildcard characters: False ``` ### -ValueName -Specifies the name of a registry value for which to remove all Registry preference items. -If you specify the *ValueName* parameter, you must also specify the *Key* parameter. + +Specifies the name of a registry value for which to remove all Registry preference items. If you +specify the **ValueName** parameter, you must also specify the **Key** parameter. ```yaml Type: System.String @@ -304,8 +366,7 @@ Accept wildcard characters: False ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml Type: System.Management.Automation.SwitchParameter @@ -321,15 +382,20 @@ Accept wildcard characters: False ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### Microsoft.GroupPolicy.Gpo, Microsoft.GroupPolicy.PreferenceRegistrySetting -This cmdlet takes a GPO or a **PreferenceRegistrySetting** object as input. -You can pipe in one or more **PreferenceRegistrySetting** objects to remove one or more Registry preference items from a specified GPO. -You can pipe in one or more GPO objects, such as Get-GPO, to remove a specified Registry preference item from each GPO. -Collections that contain GPOs from different domains are not supported. + +This cmdlet takes a GPO or a **PreferenceRegistrySetting** object as input. You can pipe in one or +more **PreferenceRegistrySetting** objects to remove one or more Registry preference items from a +specified GPO. You can pipe in one or more GPO objects, such as Get-GPO, to remove a specified +Registry preference item from each GPO. Collections that contain GPOs from different domains are not +supported. ## OUTPUTS @@ -341,13 +407,15 @@ This cmdlet returns the GPO from which the Registry preference item or items tha * You can use the **Domain** parameter to explicitly specify the domain for this cmdlet. - If you do not explicitly specify the domain, the cmdlet uses a default domain. -The default domain is the domain that is used to access network resources by the security context under which the current session is running. -This domain is typically the domain of the user that is running the session. -For instance, the domain of the user who started the session by opening Windows PowerShell from the Program Files menu, or the domain of a user that is specified in a runas command. -However, computer startup and shutdown scripts run under the context of the LocalSystem account. -The LocalSystem account is a built-in local account, and it accesses network resources under the context of the computer account. -Therefore, when this cmdlet is run from a startup or shutdown script, the default domain is the domain to which the computer is joined. + If you do not explicitly specify the domain, the cmdlet uses a default domain. The default domain + is the domain that is used to access network resources by the security context under which the + current session is running. This domain is typically the domain of the user that is running the + session. For instance, the domain of the user who started the session by opening Windows + PowerShell from the Program Files menu, or the domain of a user that is specified in a runas + command. However, computer startup and shutdown scripts run under the context of the LocalSystem + account. The LocalSystem account is a built-in local account, and it accesses network resources + under the context of the computer account. Therefore, when this cmdlet is run from a startup or + shutdown script, the default domain is the domain to which the computer is joined. ## RELATED LINKS diff --git a/docset/winserver2022-ps/grouppolicy/Remove-GPRegistryValue.md b/docset/winserver2022-ps/grouppolicy/Remove-GPRegistryValue.md index d966a4afb1..d32677cafe 100644 --- a/docset/winserver2022-ps/grouppolicy/Remove-GPRegistryValue.md +++ b/docset/winserver2022-ps/grouppolicy/Remove-GPRegistryValue.md @@ -17,41 +17,57 @@ Removes one or more registry-based policy settings from either Computer Configur ## SYNTAX ### GetByGUID (Default) + ``` Remove-GPRegistryValue [-Guid] [-Key] [[-ValueName] ] [[-Domain] ] [[-Server] ] [-WhatIf] [-Confirm] [] ``` ### GetByName + ``` Remove-GPRegistryValue [-Name] [-Key] [[-ValueName] ] [[-Domain] ] [[-Server] ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Remove-GPRegistryValue** cmdlet removes one or more registry-based policy settings from either Computer Configuration or User Configuration in a Group Policy Object (GPO). -You can specify the GPO by its display name or by its GUID. + +The **Remove-GPRegistryValue** cmdlet removes one or more registry-based policy settings from either +Computer Configuration or User Configuration in a Group Policy Object (GPO). You can specify the GPO +by its display name or by its GUID. You can specify either a key or a value: -- If you specify a key, registry-based policy settings that configure any of its first-level values are removed. -However, if there are registry-based policy settings that configure any subkeys or their values, an error occurs and no policy settings are removed, including those for first-level values of the key. -For a key, specify the *Key* parameter without the *ValueName* parameter. +- If you specify a key, registry-based policy settings that configure any of its first-level values + are removed. However, if there are registry-based policy settings that configure any subkeys or + their values, an error occurs and no policy settings are removed, including those for first-level + values of the key. For a key, specify the **Key** parameter without the *ValueName* parameter. -- If you specify a value, the registry-based policy setting that configures that registry value is removed. -For a value, specify the *Key* parameter without the *ValueName* parameter. +- If you specify a value, the registry-based policy setting that configures that registry value is + removed. For a value, specify the **Key** parameter without the *ValueName* parameter. This cmdlet can take input from the pipeline: -- You can pipe GPO objects to this cmdlet to remove a specified registry-based policy setting from one or more GPOs. +- You can pipe GPO objects to this cmdlet to remove a specified registry-based policy setting from + one or more GPOs. -- You can pipe **PolicyRegistrySetting** objects to this cmdlet to remove one or more registry-based policy settings from a specified GPO. +- You can pipe **PolicyRegistrySetting** objects to this cmdlet to remove one or more registry-based + policy settings from a specified GPO. ## EXAMPLES ### Example 1: Remove a registry-based policy setting under the specified registry key + ```powershell -Remove-GPRegistryValue -Name "TestGPO" -Key "HKCU\Software\Policies\Microsoft\Windows\Control Panel\Desktop" -ValueName "ScreenSaveTimeOut" +$params = @{ + Name = 'TestGPO' + Key = 'HKCU\Software\Policies\Microsoft\Windows\Control Panel\Desktop' + ValueName = 'ScreenSaveTimeOut' +} +Remove-GPRegistryValue @params +``` + +```Output DisplayName : TestGPO DomainName : contoso.com Owner : CONTOSO\Domain Admins @@ -65,18 +81,24 @@ ComputerVersion : AD Version: 34, SysVol Version: 34 WmiFilter : ``` -This command removes the registry-based policy setting for the registry value HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\Control Panel\Desktop ScreenSaveTimeout from the GPO named TestGPO. -The registry value is no longer modified when the GPO is applied on a client. -Removing a policy setting does not delete the registry value on a client. -To delete the registry value when the GPO is applied on a client, you must disable the policy setting by using the **Set-GPRegistryValue** cmdlet. +This command removes the registry-based policy setting for the registry value +`HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\Control Panel\Desktop ScreenSaveTimeout` from +the GPO named `TestGPO`. The registry value is no longer modified when the GPO is applied on a +client. Removing a policy setting does not delete the registry value on a client. To delete the +registry value when the GPO is applied on a client, you must disable the policy setting by using the +**Set-GPRegistryValue** cmdlet. ### Example 2: Remove all the registry-based policy settings under the specified registry key + ```powershell Remove-GPRegistryValue -Name "TestGPO" -Key "HKCU\Software\Policies\Microsoft\ExampleKey" ``` -This command removes all the registry-based policy settings that configure first-level registry values under the key HKEY_CURRENT_USER\Software\Policies\Microsoft\ExampleKey from User Configuration in the GPO named TestGPO. -If there are registry-based policy settings in User Configuration that configure registry values for any subkeys of this key, an error occurs and no first-level policy settings are removed. +This command removes all the registry-based policy settings that configure first-level registry +values under the key `HKEY_CURRENT_USER\Software\Policies\Microsoft\ExampleKey` from `User` +Configuration in the GPO named `TestGPO`. If there are registry-based policy settings in `User` +Configuration that configure registry values for any subkeys of this key, an error occurs and no +first-level policy settings are removed. ## PARAMETERS @@ -98,19 +120,21 @@ Accept wildcard characters: False ### -Domain -Specifies the domain for this cmdlet. -You must specify the fully qualified domain name (FQDN) of the domain. +Specifies the domain for this cmdlet. You must specify the fully qualified domain name (FQDN) of the +domain. For the **Remove-GPRegistryValue** cmdlet, the GPO from which to remove the registry-based policy setting must exist in this domain. -If you do not specify the **Domain** parameter, the domain of the user that is running the current session is used. -If the cmdlet is being run from a computer startup or shutdown script, the domain of the computer is used. -For more information, see the Notes section in the full Help. +If you do not specify the **Domain** parameter, the domain of the user that is running the current +session is used. If the cmdlet is being run from a computer startup or shutdown script, the domain +of the computer is used. For more information, see the Notes section in the full Help. -If you specify a domain that is different from the domain of the user that is running the current session (or, for a startup or shutdown script, the computer), a trust must exist between that domain and the domain of the user or the computer. +If you specify a domain that is different from the domain of the user that is running the current +session (or, for a startup or shutdown script, the computer), a trust must exist between that domain +and the domain of the user or the computer. -You can also refer to the **Domain** parameter by its built-in alias, **DomainName**. -For more information, see [about_Aliases](????????????). +You can also refer to the **Domain** parameter by its built-in alias, **DomainName**. For more +information, see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: System.String @@ -126,8 +150,8 @@ Accept wildcard characters: False ### -Guid -Specifies the GPO from which to remove the registry-based policy setting by its globally unique identifier (GUID). -The GUID uniquely identifies the GPO. +Specifies the GPO from which to remove the registry-based policy setting by its globally unique +identifier (GUID). The GUID uniquely identifies the GPO. You can also refer to the **Guid** parameter by its built-in alias, **Id**. @@ -144,20 +168,24 @@ Accept wildcard characters: False ``` ### -Key -Specifies a registry key for which to remove one or more registry-based policy settings (for instance: HKLM\Software\Policies\Microsoft\WindowsNT\DNSClient\UseDomainNameDevolution). + +Specifies a registry key for which to remove one or more registry-based policy settings (for +instance: `HKLM\Software\Policies\Microsoft\WindowsNT\DNSClient\UseDomainNameDevolution`). The key must be in one of the two following registry hives: -- HKEY_LOCAL_MACHINE (HKLM) for a registry-based policy setting in Computer Configuration. +- `HKEY_LOCAL_MACHINE` (HKLM) for a registry-based policy setting in Computer Configuration. -- HKEY_CURRENT_USER (HKCU) for a registry-based policy setting in User Configuration. +- `HKEY_CURRENT_USER` (HKCU) for a registry-based policy setting in User Configuration. The Key parameter can be specified with or without the ValueName parameter: -- If the *ValueName* parameter is specified, the registry-based policy setting that configures that registry value is removed. +- If the **ValueName** parameter is specified, the registry-based policy setting that configures + that registry value is removed. -- If the *ValueName* parameter is not specified, all registry-based policy settings that configure any of the first-level values of the registry key are removed. -If there are registry-based policy settings that configure any subkeys or their values, an error occurs. +- If the **ValueName** parameter is not specified, all registry-based policy settings that configure + any of the first-level values of the registry key are removed. If there are registry-based policy + settings that configure any subkeys or their values, an error occurs. You can also refer to the Key parameter by its built-in alias, FullKeyPath. @@ -174,11 +202,12 @@ Accept wildcard characters: False ``` ### -Name + Specifies the GPO from which to remove the registry-based policy setting by its display name. -The display name is not guaranteed to be unique in the domain. -If another GPO with the same display name exists in the domain an error occurs. -You can use the **Guid** parameter to uniquely identify a GPO. +The display name is not guaranteed to be unique in the domain. If another GPO with the same display +name exists in the domain an error occurs. You can use the **Guid** parameter to uniquely identify a +GPO. You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. @@ -196,12 +225,13 @@ Accept wildcard characters: False ### -Server -Specifies the name of the domain controller that this cmdlet contacts to complete the operation. -You can specify either the fully qualified domain name (FQDN) or the host name. +Specifies the name of the domain controller that this cmdlet contacts to complete the operation. You +can specify either the fully qualified domain name (FQDN) or the host name. -If you do not specify the name by using the **Server** parameter, the primary domain controller (PDC) emulator is contacted. +If you do not specify the name by using the **Server** parameter, the primary domain controller +(PDC) emulator is contacted. -You can also refer to the *Server* parameter by its built-in alias, **DC**. +You can also refer to the **Server** parameter by its built-in alias, **DC**. ```yaml Type: System.String @@ -216,8 +246,9 @@ Accept wildcard characters: False ``` ### -ValueName -Specifies the name of the registry value for which to remove the registry-based policy setting. -If you specify the *ValueName* parameter, you must also specify the *Key* parameter. + +Specifies the name of the registry value for which to remove the registry-based policy setting. If +you specify the **ValueName** parameter, you must also specify the **Key** parameter. ```yaml Type: System.String @@ -233,8 +264,7 @@ Accept wildcard characters: False ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml Type: System.Management.Automation.SwitchParameter @@ -250,35 +280,46 @@ Accept wildcard characters: False ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### Microsoft.GroupPolicy.Gpo, Microsoft.GroupPolicy.PolicyRegistrySetting -You can pipe a GPO from which to remove a registry-based policy setting, or a **PolicyRegistrySetting** object that represents a registry-based policy setting. -Collections that contain GPOs from different domains are not supported. + +You can pipe a GPO from which to remove a registry-based policy setting, or a +**PolicyRegistrySetting** object that represents a registry-based policy setting. Collections that +contain GPOs from different domains are not supported. ## OUTPUTS ### Microsoft.GroupPolicy.Gpo -This cmdlet returns the GPO from which the registry-based policy setting (or settings) has been removed. +This cmdlet returns the GPO from which the registry-based policy setting (or settings) has been +removed. ## NOTES -* The hive of the registry key that you specify -- HKEY_LOCAL_MACHINE (HKLM) or HKEY_CURRENT_USER (HKCU) indicates whether the registry-based policy setting is removed from Computer Configuration or User Configuration. +* The hive of the registry key that you specify -- `HKEY_LOCAL_MACHINE` (HKLM) or + `HKEY_CURRENT_USER` (HKCU) indicates whether the registry-based policy setting is removed from + Computer Configuration or User Configuration. - If a value for the registry key cannot be located (the registry key is not configured) or if subkeys are present, an error occurs and a corresponding error message is displayed. + If a value for the registry key cannot be located (the registry key is not configured) or if + subkeys are present, an error occurs and a corresponding error message is displayed. You can use the **Domain** parameter to explicitly specify the domain for this cmdlet. - If you do not explicitly specify the domain, the cmdlet uses a default domain. -The default domain is the domain that is used to access network resources by the security context under which the current session is running. -This domain is typically the domain of the user that is running the session. -For instance, the domain of the user who started the session by opening Windows PowerShell from the Program Files menu, or the domain of a user that is specified in a runas command. -However, computer startup and shutdown scripts run under the context of the LocalSystem account. -The LocalSystem account is a built-in local account, and it accesses network resources under the context of the computer account. -Therefore, when this cmdlet is run from a startup or shutdown script, the default domain is the domain to which the computer is joined. + If you do not explicitly specify the domain, the cmdlet uses a default domain. The default domain + is the domain that is used to access network resources by the security context under which the + current session is running. This domain is typically the domain of the user that is running the + session. For instance, the domain of the user who started the session by opening Windows + PowerShell from the Program Files menu, or the domain of a user that is specified in a runas + command. However, computer startup and shutdown scripts run under the context of the LocalSystem + account. The LocalSystem account is a built-in local account, and it accesses network resources + under the context of the computer account. Therefore, when this cmdlet is run from a startup or + shutdown script, the default domain is the domain to which the computer is joined. ## RELATED LINKS diff --git a/docset/winserver2022-ps/grouppolicy/Rename-GPO.md b/docset/winserver2022-ps/grouppolicy/Rename-GPO.md index bcb37ea9b8..5f5e1c7103 100644 --- a/docset/winserver2022-ps/grouppolicy/Rename-GPO.md +++ b/docset/winserver2022-ps/grouppolicy/Rename-GPO.md @@ -17,26 +17,33 @@ Assigns a new display name to a GPO. ## SYNTAX ### RenameByGUID (Default) + ``` -Rename-GPO -Guid -TargetName [-Domain ] [-Server ] [-WhatIf] [-Confirm] - [] +Rename-GPO -Guid -TargetName [-Domain ] [-Server ] [-WhatIf] + [-Confirm] [] ``` ### RenameByName + ``` -Rename-GPO [-Name] -TargetName [-Domain ] [-Server ] [-WhatIf] [-Confirm] - [] +Rename-GPO [-Name] -TargetName [-Domain ] [-Server ] [-WhatIf] + [-Confirm] [] ``` ## DESCRIPTION + The **Rename-GPO** cmdlet assigns a different, non-null display name to a Group Policy Object (GPO). This cmdlet has no effect on the GUID of the GPO. ## EXAMPLES ### Example 1: Rename a GPO + ```powershell Rename-GPO -Name "SampleGPO" -TargetName "SecurityGPO" +``` + +```Output DisplayName : securityGPO DomainName : contoso.com Owner : CONTOSO\Domain Admins @@ -50,7 +57,7 @@ ComputerVersion : AD Version: 0, SysVol Version: 0 WmiFilter : ``` -This command renames the GPO named SampleGPO to SecurityGPO. +This command renames the GPO named `SampleGPO` to `SecurityGPO`. ## PARAMETERS @@ -72,19 +79,21 @@ Accept wildcard characters: False ### -Domain -Specifies the domain for this cmdlet. -You must specify the fully qualified domain name (FQDN) of the domain. +Specifies the domain for this cmdlet. You must specify the fully qualified domain name (FQDN) of the +domain. For the **Rename-GPO** cmdlet, this is the domain of the GPO that you want to rename. -If you do not specify the **Domain** parameter, the domain of the user that is running the current session is used. -If the cmdlet is being run from a computer startup or shutdown script, the domain of the computer is used. -For more information, see the Notes section in the full Help. +If you do not specify the **Domain** parameter, the domain of the user that is running the current +session is used. If the cmdlet is being run from a computer startup or shutdown script, the domain +of the computer is used. For more information, see the Notes section in the full Help. -If you specify a domain that is different from the domain of the user that is running the current session (or, for a startup or shutdown script, the computer), a trust must exist between that domain and the domain of the user or the computer. +If you specify a domain that is different from the domain of the user that is running the current +session (or, for a startup or shutdown script, the computer), a trust must exist between that domain +and the domain of the user or the computer. -You can also refer to the **Domain** parameter by its built-in alias, **DomainName**. -For more information, see [about_Aliases](????????????). +You can also refer to the **Domain** parameter by its built-in alias, **DomainName**. For more +information, see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: System.String @@ -100,8 +109,8 @@ Accept wildcard characters: False ### -Guid -Specifies the GPO to rename by its globally unique identifier (GUID). -The GUID uniquely identifies the GPO. +Specifies the GPO to rename by its globally unique identifier (GUID). The GUID uniquely identifies +the GPO. You can also refer to the **Guid** parameter by its built-in alias, **Id**. @@ -118,11 +127,12 @@ Accept wildcard characters: False ``` ### -Name + Specifies the GPO to rename by its current display name. -The display name is not guaranteed to be unique in the domain. -If another GPO with the same display name exists in the domain, an error occurs. -You can use the **Guid** parameter to uniquely identify a GPO. +The display name is not guaranteed to be unique in the domain. If another GPO with the same display +name exists in the domain, an error occurs. You can use the **Guid** parameter to uniquely identify +a GPO. You can also refer to the Name parameter by its built-in alias, **DisplayName**. @@ -140,12 +150,13 @@ Accept wildcard characters: False ### -Server -Specifies the name of the domain controller that this cmdlet contacts to complete the operation. -You can specify either the fully qualified domain name (FQDN) or the host name. +Specifies the name of the domain controller that this cmdlet contacts to complete the operation. You +can specify either the fully qualified domain name (FQDN) or the host name. -If you do not specify the name by using the **Server** parameter, the primary domain controller (PDC) emulator is contacted. +If you do not specify the name by using the **Server** parameter, the primary domain controller +(PDC) emulator is contacted. -You can also refer to the *Server* parameter by its built-in alias, **DC**. +You can also refer to the **Server** parameter by its built-in alias, **DC**. ```yaml Type: System.String @@ -160,8 +171,9 @@ Accept wildcard characters: False ``` ### -TargetName -Specifies the new display name of the GPO. -Because the display name may not be unique, an error is returned if another GPO in the domain has the same display name. + +Specifies the new display name of the GPO. Because the display name may not be unique, an error is +returned if another GPO in the domain has the same display name. ```yaml Type: System.String @@ -177,8 +189,7 @@ Accept wildcard characters: False ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml Type: System.Management.Automation.SwitchParameter @@ -194,13 +205,17 @@ Accept wildcard characters: False ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### Microsoft.GroupPolicy.Gpo -You can pipe a **GPO** object to the GPO to rename. -Collections that contain GPOs from different domains are not supported. + +You can pipe a **GPO** object to the GPO to rename. Collections that contain GPOs from different +domains are not supported. ## OUTPUTS @@ -212,13 +227,15 @@ This cmdlet returns the GPO with the new display name. * You can use the **Domain** parameter to explicitly specify the domain for this cmdlet. - If you do not explicitly specify the domain, the cmdlet uses a default domain. -The default domain is the domain that is used to access network resources by the security context under which the current session is running. -This domain is typically the domain of the user that is running the session. -For example, the domain of the user who started the session by opening Windows PowerShell from the Program Files menu, or the domain of a user that is specified in a runas command. -However, computer startup and shutdown scripts run under the context of the LocalSystem account. -The LocalSystem account is a built-in local account, and it accesses network resources under the context of the computer account. -Therefore, when this cmdlet is run from a startup or shutdown script, the default domain is the domain to which the computer is joined. + If you do not explicitly specify the domain, the cmdlet uses a default domain. The default domain + is the domain that is used to access network resources by the security context under which the + current session is running. This domain is typically the domain of the user that is running the + session. For example, the domain of the user who started the session by opening Windows PowerShell + from the Program Files menu, or the domain of a user that is specified in a runas command. + However, computer startup and shutdown scripts run under the context of the LocalSystem account. + The LocalSystem account is a built-in local account, and it accesses network resources under the + context of the computer account. Therefore, when this cmdlet is run from a startup or shutdown + script, the default domain is the domain to which the computer is joined. ## RELATED LINKS diff --git a/docset/winserver2022-ps/grouppolicy/Restore-GPO.md b/docset/winserver2022-ps/grouppolicy/Restore-GPO.md index 486d1eb163..ef9288550f 100644 --- a/docset/winserver2022-ps/grouppolicy/Restore-GPO.md +++ b/docset/winserver2022-ps/grouppolicy/Restore-GPO.md @@ -17,32 +17,38 @@ Restores one GPO or all GPOs in a domain from one or more GPO backup files. ## SYNTAX ### RestoreFromBackupId (Default) + ``` -Restore-GPO -BackupId -Path [-Domain ] [-Server ] [-WhatIf] [-Confirm] - [] +Restore-GPO -BackupId -Path [-Domain ] [-Server ] [-WhatIf] + [-Confirm] [] ``` ### RestoreFromGpo(GUID) + ``` Restore-GPO -Guid -Path [-Domain ] [-Server ] [-WhatIf] [-Confirm] [] ``` ### RestoreFromGpo(Name) + ``` -Restore-GPO [-Name] -Path [-Domain ] [-Server ] [-WhatIf] [-Confirm] - [] +Restore-GPO [-Name] -Path [-Domain ] [-Server ] [-WhatIf] + [-Confirm] [] ``` ### RestoreAll + ``` Restore-GPO -Path [-Domain ] [-Server ] [-All] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Restore-GPO** cmdlet restores a Group Policy Object (GPO) backup to the original domain from which it was saved. -If the original domain is not available, or if the GPO no longer exists in the domain, the cmdlet fails. + +The **Restore-GPO** cmdlet restores a Group Policy Object (GPO) backup to the original domain from +which it was saved. If the original domain is not available, or if the GPO no longer exists in the +domain, the cmdlet fails. You can: @@ -50,44 +56,50 @@ You can: - Use the **All** parameter to restore all GPOs in the domain from their most recent backups. -- Use the *BackupId* parameter to restore a GPO from a specific backup. +- Use the **BackupID** parameter to restore a GPO from a specific backup. This parameter enables you to restore a GPO from a backup prior to the most recent one. ## EXAMPLES ### Example 1: Restore a GPO from a directory + ```powershell Restore-GPO -Name "TestGPO" -Path "\\Server1\Backups" ``` -This command restores the GPO named TestGPO from the \\\\Server1\Backups directory. -The most recent backup is restored. +This command restores the GPO named `TestGPO` from the `\\Server1\Backups` directory. The most recent +backup is restored. ### Example 2: Restore a GPO from a directory using the GPOs GUID + ```powershell Restore-GPO -GUID fa4a9473-6e2a-4b87-ab78-175e68d97bde -Path "\\Server1\Backups" ``` -This command restores the GPO with the GUID fa4a9473-6e2a-4b87-ab78-175e68d97bde from the \\\\Server1\Backups directory. -The most recent backup is restored. +This command restores the GPO with the GUID `fa4a9473-6e2a-4b87-ab78-175e68d97bde` from the +`\\Server1\Backups` directory. The most recent backup is restored. ### Example 3: Restore all GPOs in a domain that were previously backed up to a directory + ```powershell Restore-GPO -All -Domain "contoso.com" -Path "\\Server1\Backups" ``` -This command restores all of the GPOs in the contoso.com domain previously backed up to \\\\Server1\Backup. -Each GPO is restored using its most recent backup. +This command restores all of the GPOs in the `contoso.com` domain previously backed up to +`\\Server1\Backup`. Each GPO is restored using its most recent backup. -If the domain of user that is running the session (or, for a startup or shutdown script, the domain of the computer) is different from the contoso.com domain, a trust must exist between the two domains or the command fails. +If the domain of user that is running the session (or, for a startup or shutdown script, the domain +of the computer) is different from the `contoso.com` domain, a trust must exist between the two +domains or the command fails. ### Example 4: Restore a GPO using its backup ID + ```powershell Restore-GPO -BackupId 0fc29b3c-fb83-4076-babb-6194c1b4fc26 -Path "\\Server1\Backups" ``` -This command restores a GPO from the backup specified by the *BackupId* parameter. -The *BackupId* parameter can be used to restore a GPO from a backup prior to the most recent backup. +This command restores a GPO from the backup specified by the **BackupID** parameter. The +**BackupID** parameter can be used to restore a GPO from a backup prior to the most recent backup. ## PARAMETERS @@ -109,11 +121,13 @@ Accept wildcard characters: False ``` ### -BackupId -Specifies the backup ID of a GPO backup. -The backup ID is a globally unique identifier (GUID) that uniquely identifies the backup. -You can use this parameter to specify a particular version of a backed-up GPO in the backup directory. -The backup ID is different from the ID of the GPO that was backed up (specified by the *Guid* parameter), you can find the backup ID in the backup directory. +Specifies the backup ID of a GPO backup. The backup ID is a globally unique identifier (GUID) that +uniquely identifies the backup. You can use this parameter to specify a particular version of a +backed-up GPO in the backup directory. + +The backup ID is different from the ID of the GPO that was backed up (specified by the **Guid** +parameter), you can find the backup ID in the backup directory. ```yaml Type: Guid @@ -145,20 +159,22 @@ Accept wildcard characters: False ### -Domain -Specifies the domain for this cmdlet. -You must specify the fully qualified domain name (FQDN) of the domain. +Specifies the domain for this cmdlet. You must specify the fully qualified domain name (FQDN) of the +domain. -For the **Restore-GPO** cmdlet, this is the domain in which you want to restore the GPO. -This must be the domain from which the GPO was backed up. +For the **Restore-GPO** cmdlet, this is the domain in which you want to restore the GPO. This must +be the domain from which the GPO was backed up. -If you do not specify the **Domain** parameter, the domain of the user that is running the current session is used. -If the cmdlet is being run from a computer startup or shutdown script, the domain of the computer is used. -For more information, see the Notes section in the full Help. +If you do not specify the **Domain** parameter, the domain of the user that is running the current +session is used. If the cmdlet is being run from a computer startup or shutdown script, the domain +of the computer is used. For more information, see the Notes section in the full Help. -If you specify a domain that is different from the domain of the user that is running the current session (or, for a startup or shutdown script, the computer), a trust must exist between that domain and the domain of the user or the computer. +If you specify a domain that is different from the domain of the user that is running the current +session (or, for a startup or shutdown script, the computer), a trust must exist between that domain +and the domain of the user or the computer. -You can also refer to the **Domain** parameter by its built-in alias, **DomainName**. -For more information, see [about_Aliases](????????????). +You can also refer to the **Domain** parameter by its built-in alias, **DomainName**. For more +information, see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: System.String @@ -174,11 +190,11 @@ Accept wildcard characters: False ### -Guid -Specifies the GPO to restore by its globally unique identifier (GUID). -The GUID uniquely identifies the GPO. +Specifies the GPO to restore by its globally unique identifier (GUID). The GUID uniquely identifies +the GPO. -The GPO is restored from its most recent backup in the backup directory. -To specify a different backup than the most recent backup, use the *BackupId* parameter. +The GPO is restored from its most recent backup in the backup directory. To specify a different +backup than the most recent backup, use the **BackupID** parameter. You can also refer to the **Guid** parameter by its built-in alias, **Id**. @@ -195,13 +211,14 @@ Accept wildcard characters: False ``` ### -Name -Specifies the GPO to restore by its display name. -The GPO is restored from its most recent backup in the backup directory. -To specify a different backup than the most recent backup, use the BackupId parameter. -The display name is not guaranteed to be unique in the domain. -If another GPO with the same display name exists in the domain an error occurs. -You can use the **Guid** parameter to uniquely identify a GPO. +Specifies the GPO to restore by its display name. The GPO is restored from its most recent backup in +the backup directory. To specify a different backup than the most recent backup, use the BackupId +parameter. + +The display name is not guaranteed to be unique in the domain. If another GPO with the same display +name exists in the domain an error occurs. You can use the **Guid** parameter to uniquely identify a +GPO. You can also refer to the Name parameter by its built-in alias, **DisplayName**. @@ -221,12 +238,12 @@ Accept wildcard characters: False Specifies the path to the backup directory. -You can also refer to the **Path** parameter by its built-in alias, backuplocation. +You can also refer to the **Path** parameter by its built-in alias, **BackupLocation**. ```yaml Type: System.String Parameter Sets: (All) -Aliases: backupLocation, BackupDirectory +Aliases: BackupLocation, BackupDirectory Required: True Position: Named @@ -237,12 +254,13 @@ Accept wildcard characters: False ### -Server -Specifies the name of the domain controller that this cmdlet contacts to complete the operation. -You can specify either the fully qualified domain name (FQDN) or the host name. +Specifies the name of the domain controller that this cmdlet contacts to complete the operation. You +can specify either the fully qualified domain name (FQDN) or the host name. -If you do not specify the name by using the **Server** parameter, the primary domain controller (PDC) emulator is contacted. +If you do not specify the name by using the **Server** parameter, the primary domain controller +(PDC) emulator is contacted. -You can also refer to the *Server* parameter by its built-in alias, **DC**. +You can also refer to the **Server** parameter by its built-in alias, **DC**. ```yaml Type: System.String @@ -258,8 +276,7 @@ Accept wildcard characters: False ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml Type: System.Management.Automation.SwitchParameter @@ -275,12 +292,17 @@ Accept wildcard characters: False ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### Microsoft.GroupPolicy.BackupGpo -You can pipe a GPO backup, a separate file that holds the settings of a GPO that can be imported elsewhere to recreate the GPO to this cmdlet. + +You can pipe a GPO backup, a separate file that holds the settings of a GPO that can be imported +elsewhere to recreate the GPO to this cmdlet. ## OUTPUTS @@ -292,13 +314,15 @@ This cmdlet returns the restored GPO. * You can use the **Domain** parameter to explicitly specify the domain for this cmdlet. - If you do not explicitly specify the domain, the cmdlet uses a default domain. -The default domain is the domain that is used to access network resources by the security context under which the current session is running. -This domain is typically the domain of the user that is running the session. -For instance, the domain of the user who started the session by opening Windows PowerShell from the Program Files menu, or the domain of a user that is specified in a runas command. -However, computer startup and shutdown scripts run under the context of the LocalSystem account. -The LocalSystem account is a built-in local account, and it accesses network resources under the context of the computer account. -Therefore, when this cmdlet is run from a startup or shutdown script, the default domain is the domain to which the computer is joined. + If you do not explicitly specify the domain, the cmdlet uses a default domain. The default domain + is the domain that is used to access network resources by the security context under which the + current session is running. This domain is typically the domain of the user that is running the + session. For instance, the domain of the user who started the session by opening Windows + PowerShell from the Program Files menu, or the domain of a user that is specified in a runas + command. However, computer startup and shutdown scripts run under the context of the LocalSystem + account. The LocalSystem account is a built-in local account, and it accesses network resources + under the context of the computer account. Therefore, when this cmdlet is run from a startup or + shutdown script, the default domain is the domain to which the computer is joined. ## RELATED LINKS diff --git a/docset/winserver2022-ps/grouppolicy/Set-GPInheritance.md b/docset/winserver2022-ps/grouppolicy/Set-GPInheritance.md index d2c9969a10..71b6efa52d 100644 --- a/docset/winserver2022-ps/grouppolicy/Set-GPInheritance.md +++ b/docset/winserver2022-ps/grouppolicy/Set-GPInheritance.md @@ -17,62 +17,83 @@ Blocks or unblocks inheritance for a specified domain or organizational unit. ## SYNTAX ``` -Set-GPInheritance [-Target] -IsBlocked [-Domain ] [-Server ] - [-WhatIf] [-Confirm] [] +Set-GPInheritance [-Target] -IsBlocked [-Domain ] + [-Server ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Set-GPInheritance** cmdlet blocks or unblocks inheritance for a specified domain or organizational unit (OU). -GPOs are applied according to the Group Policy hierarchy in the following order: local GPO, GPOs linked to the site, GPOs linked to the domain, GPOs linked to OUs. -By default, an Active Directory container inherits settings from GPOs that are applied at the next higher level in the hierarchy. -Blocking inheritance prevents the settings in GPOs that are linked to higher-level sites, domains, or organizational units from being automatically inherited by the specified domain or OU, unless the link for a GPO is enforced. +The **Set-GPInheritance** cmdlet blocks or unblocks inheritance for a specified domain or +organizational unit (OU). -You use the *Target* parameter to specify the Lightweight Directory Access Protocol (LDAP) distinguished name of the domain or OU, and use the *IsBlocked* parameter to specify whether to block or unblock inheritance. +GPOs are applied according to the Group Policy hierarchy in the following order: local GPO, GPOs +linked to the site, GPOs linked to the domain, GPOs linked to OUs. By default, an Active Directory +container inherits settings from GPOs that are applied at the next higher level in the hierarchy. +Blocking inheritance prevents the settings in GPOs that are linked to higher-level sites, domains, +or organizational units from being automatically inherited by the specified domain or OU, unless the +link for a GPO is enforced. + +You use the **Target** parameter to specify the Lightweight Directory Access Protocol (LDAP) +distinguished name of the domain or OU, and use the **IsBlocked** parameter to specify whether to +block or unblock inheritance. ## EXAMPLES ### Example 1: Block inheritance for a OU in a domain + ```powershell -Set-GPInheritance -Target "ou=MyOU,dc=contoso,dc=com" -IsBlocked Yes -Name : myou +Set-GPInheritance -Target "ou=MyOU,dc=contoso,dc=com" -IsBlocked Yes +``` + +```Output +Name : MyOU ContainerType : OU -Path : ou=myou,dc=contoso,dc=com +Path : ou=MyOU,dc=contoso,dc=com GpoInheritanceBlocked : Yes GpoLinks : {TestGPO-1, TestGPO-2} InheritedGpoLinks : {TestGPO-1, TestGPO-2} ``` -This command blocks inheritance for the OU named MyOU in the contoso.com domain. -GPOs that are linked to higher-level sites or domains, or to OUs that are parent OUs of the OU named MyOU are not applied, unless their links are enforced, when Group Policy is processed for the OU on the client. +This command blocks inheritance for the OU named MyOU in the `contoso.com` domain. GPOs that are +linked to higher-level sites or domains, or to OUs that are parent OUs of the OU named `MyOU` are +not applied, unless their links are enforced, when Group Policy is processed for the OU on the +client. -Because inheritance is blocked, only GPOs that are linked directly to the MyOU, and those that are enforced at higher-level containers, appear in the InheritedGpoLinks list. +Because inheritance is blocked, only GPOs that are linked directly to the `MyOU`, and those that are +enforced at higher-level containers, appear in the InheritedGpoLinks list. ### Example 2: Unblock inheritance for a domain + ```powershell -Set-GPInheritance -Target "dc=northwest, dc=contoso, dc=com" -IsBlocked No +Set-GPInheritance -Target "dc=northwest,dc=contoso,dc=com" -IsBlocked No ``` -This command unblocks inheritance for the northwest.contoso.com domain. -GPOs linked to higher-level sites or domains are applied to this domain when Group Policy is processed on the client. +This command unblocks inheritance for the `northwest.contoso.com` domain. GPOs linked to +higher-level sites or domains are applied to this domain when Group Policy is processed on the +client. ### Example 3: Unblock inheritance for an OU in a domain + ```powershell Set-GPInheritance -Target "ou=MyOU,dc=contoso,dc=com" -IsBlocked No +``` -Name : myou +```Output +Name : MyOU ContainerType : OU -Path : ou=myou,dc=contoso,dc=com +Path : ou=MyOU,dc=contoso,dc=com GpoInheritanceBlocked : No GpoLinks : {TestGPO-1, TestGPO-2} InheritedGpoLinks : {TestGPO-1, TestGPO-2, Default Domain Policy} ``` -This command unblocks inheritance for the OU named MyOU in the contoso.com domain. -GPOs that are linked to higher-level sites or domains, or to OUs that are parent OUs of the OU named MyOU, are applied when Group Policy is processed for the OU on the client. +This command unblocks inheritance for the OU named `MyOU` in the `contoso.com` domain. GPOs that are +linked to higher-level sites or domains, or to OUs that are parent OUs of the OU named `MyOU`, are +applied when Group Policy is processed for the OU on the client. -Because inheritance is not blocked, GPOs that are inherited from higher-level containers appear in the InheritedGpoLinks list (together with GPOs that are linked directly to the OU). -For instance, the Default Domain Policy GPO is linked at the domain level. +Because inheritance is not blocked, GPOs that are inherited from higher-level containers appear in +the InheritedGpoLinks list (together with GPOs that are linked directly to the OU). For instance, +the Default Domain Policy GPO is linked at the domain level. ## PARAMETERS @@ -94,20 +115,23 @@ Accept wildcard characters: False ### -Domain -Specifies the domain for this cmdlet. -You must specify the fully qualified domain name (FQDN) of the domain. +Specifies the domain for this cmdlet. You must specify the fully qualified domain name (FQDN) of the +domain. -For the **Set-GPInheritance** cmdlet, this is typically the domain of the Active Directory container (domain or OU) for which you want to block or unblock inheritance. -If the domain for the cmdlet is different than the domain of the container, a trust must exist between the two domains. +For the **Set-GPInheritance** cmdlet, this is typically the domain of the Active Directory container +(domain or OU) for which you want to block or unblock inheritance. If the domain for the cmdlet is +different than the domain of the container, a trust must exist between the two domains. -If you do not specify the **Domain** parameter, the domain of the user that is running the current session is used. -If the cmdlet is being run from a computer startup or shutdown script, the domain of the computer is used. -For more information, see the Notes section in the full Help. +If you do not specify the **Domain** parameter, the domain of the user that is running the current +session is used. If the cmdlet is being run from a computer startup or shutdown script, the domain +of the computer is used. For more information, see the Notes section in the full Help. -If you specify a domain that is different from the domain of the user that is running the current session (or, for a startup or shutdown script, the computer), a trust must exist between that domain and the domain of the user or the computer. +If you specify a domain that is different from the domain of the user that is running the current +session (or, for a startup or shutdown script, the computer), a trust must exist between that domain +and the domain of the user or the computer. -You can also refer to the **Domain** parameter by its built-in alias, **DomainName**. -For more information, see [about_Aliases](????????????). +You can also refer to the **Domain** parameter by its built-in alias, **DomainName**. For more +information, see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: System.String @@ -122,8 +146,8 @@ Accept wildcard characters: False ``` ### -IsBlocked -Indicates whether to block inheritance for the domain or OU. -You must specify Yes or No. + +Indicates whether to block inheritance for the domain or OU. You must specify `Yes` or `No`. The following values are permitted for this object type. @@ -142,10 +166,11 @@ Accept wildcard characters: False ### -Server -Specifies the name of the domain controller that this cmdlet contacts to complete the operation. -You can specify either the fully qualified domain name (FQDN) or the host name. +Specifies the name of the domain controller that this cmdlet contacts to complete the operation. You +can specify either the fully qualified domain name (FQDN) or the host name. -If you do not specify the name by using the **Server** parameter, the primary domain controller (PDC) emulator is contacted. +If you do not specify the name by using the **Server** parameter, the primary domain controller +(PDC) emulator is contacted. You can also refer to the **Server** parameter by its built-in alias, **DC**. @@ -162,15 +187,17 @@ Accept wildcard characters: False ``` ### -Target -Specifies the domain or the OU for which to block or unblock inheritance by its LDAP distinguished name. -For instance, the MyOU organizational unit in the contoso.com domain is specified as "ou=MyOU,dc=contoso,dc=com". -You can also refer to the *Target* parameter by its built-in alias, path. +Specifies the domain or the OU for which to block or unblock inheritance by its LDAP distinguished +name. For instance, the `MyOU` organizational unit in the `contoso.com` domain is specified as +`ou=MyOU,dc=contoso,dc=com`. + +You can also refer to the **Target** parameter by its built-in alias, **Path**. ```yaml Type: System.String Parameter Sets: (All) -Aliases: path +Aliases: Path Required: True Position: 0 @@ -181,8 +208,7 @@ Accept wildcard characters: False ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml Type: System.Management.Automation.SwitchParameter @@ -198,33 +224,42 @@ Accept wildcard characters: False ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### Microsoft.GroupPolicy.Som + This cmdlet takes an object that represents a domain or an OU as input. ## OUTPUTS ### Microsoft.GroupPolicy.Som -This cmdlet returns an object that represents the domain or OU after the operation is applied. -The properties of this object that are displayed by default describe the Group Policy inheritance information for the domain or OU. -The **GpoInheritanceBlocked** property indicates whether inheritance is blocked. + +This cmdlet returns an object that represents the domain or OU after the operation is applied. The +properties of this object that are displayed by default describe the Group Policy inheritance +information for the domain or OU. The **GpoInheritanceBlocked** property indicates whether +inheritance is blocked. ## NOTES -* GPO links that are enforced cannot be blocked. This cmdlet should be used sparingly. Casual use of this cmdlet can complicate troubleshooting. +* GPO links that are enforced cannot be blocked. This cmdlet should be used sparingly. Casual use of + this cmdlet can complicate troubleshooting. You can use the **Domain** parameter to explicitly specify the domain for this cmdlet. - If you do not explicitly specify the domain, the cmdlet uses a default domain. -The default domain is the domain that is used to access network resources by the security context under which the current session is running. -This domain is typically the domain of the user that is running the session. -For instance, the domain of the user who started the session by opening Windows PowerShell from the Program Files menu, or the domain of a user that is specified in a runas command. -However, computer startup and shutdown scripts run under the context of the LocalSystem account. -The LocalSystem account is a built-in local account, and it accesses network resources under the context of the computer account. -Therefore, when this cmdlet is run from a startup or shutdown script, the default domain is the domain to which the computer is joined. + If you do not explicitly specify the domain, the cmdlet uses a default domain. The default domain + is the domain that is used to access network resources by the security context under which the + current session is running. This domain is typically the domain of the user that is running the + session. For instance, the domain of the user who started the session by opening Windows + PowerShell from the Program Files menu, or the domain of a user that is specified in a runas + command. However, computer startup and shutdown scripts run under the context of the LocalSystem + account. The LocalSystem account is a built-in local account, and it accesses network resources + under the context of the computer account. Therefore, when this cmdlet is run from a startup or + shutdown script, the default domain is the domain to which the computer is joined. ## RELATED LINKS diff --git a/docset/winserver2022-ps/grouppolicy/Set-GPLink.md b/docset/winserver2022-ps/grouppolicy/Set-GPLink.md index cdf768eedb..9880043caa 100644 --- a/docset/winserver2022-ps/grouppolicy/Set-GPLink.md +++ b/docset/winserver2022-ps/grouppolicy/Set-GPLink.md @@ -17,36 +17,47 @@ Sets the properties of the specified GPO link. ## SYNTAX ### LinkGUID (Default) + ``` -Set-GPLink -Guid -Target [-LinkEnabled ] [-Order ] [-Domain ] - [-Server ] [-Enforced ] [-WhatIf] [-Confirm] [] +Set-GPLink -Guid -Target [-LinkEnabled ] [-Order ] + [-Domain ] [-Server ] [-Enforced ] [-WhatIf] [-Confirm] + [] ``` ### LinkName + ``` -Set-GPLink [-Name] -Target [-LinkEnabled ] [-Order ] [-Domain ] - [-Server ] [-Enforced ] [-WhatIf] [-Confirm] [] +Set-GPLink [-Name] -Target [-LinkEnabled ] [-Order ] + [-Domain ] [-Server ] [-Enforced ] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION + The **Set-GPLink** cmdlet sets the properties of a Group Policy Object (GPO) link. You can set the following properties: -- Enabled. -If the GPO link is enabled, the settings of the GPO are applied when Group Policy is processed for the site, domain or OU. +- Enabled. If the GPO link is enabled, the settings of the GPO are applied when Group Policy is + processed for the site, domain or OU. -- Enforced. -If the GPO link is enforced, it cannot be blocked at a lower-level (in the Group Policy processing hierarchy) container. +- Enforced. + If the GPO link is enforced, it cannot be blocked at a lower-level (in the Group Policy + processing hierarchy) container. -- Order. -The order specifies the precedence that the settings of the GPO take over conflicting settings in other GPOs that are linked, and enabled, to the same site, domain, or OU. +- Order. + The order specifies the precedence that the settings of the GPO take over conflicting + settings in other GPOs that are linked, and enabled, to the same site, domain, or OU. ## EXAMPLES ### Example 1: Enable the link between a GPO and OU + ```powershell Set-GPLink -Name TestGPO -Target "ou=MyOU,dc=contoso,dc=com" -LinkEnabled Yes +``` + +```Output GpoId : c25daa3e-5d05-43b3-87ca-0a237882fd63 DisplayName : Test2GPO Enabled : True @@ -55,21 +66,36 @@ Target : OU=MyOU,DC=contoso,DC=com Order : 1 ``` -This command enables the link between the GPO named TestGPO and the MyOU organizational unit in the contoso.com domain. -The Enforced and Order properties are not changed. +This command enables the link between the GPO named **TestGPO** and the `MyOU` organizational unit +in the `contoso.com` domain. The **Enforced** and **Order** properties are not changed. ### Example 2: Enable the link between a GPO and two domains + ```powershell -Set-GPLink -Name TestGPO -Domain north.contoso.com -Target "dc=south, dc=contoso, dc=com" -LinkEnabled Yes -Enforced Yes -Order 1 +$params = @{ + Name = 'TestGPO' + Domain = "north.contoso.com" + Target = "dc=south,dc=contoso,dc=com" + LinkEnabled = $true + Enforced = $true + Order = 1 +} +Set-GPLink @params ``` -This command enables the link between the GPO named TestGPO in the north.contoso.com domain and the south.contoso.com domain. -The link is set to enforced, so it cannot be blocked at lower-level containers (for example OUs in the south.contoso.com domain). -Because the order is set to 1, the settings of TestGPO is applied with the highest precedence (except for enforced links) when Group policy is processed for the south.contoso.com domain container. +This command enables the link between the GPO named `TestGPO` in the `north.contoso.com` domain and +the `south.contoso.com` domain. The link is set to enforced, so it cannot be blocked at lower-level +containers (for example OUs in the `south.contoso.com` domain). Because the order is set to `1`, the +settings of `TestGPO` is applied with the highest precedence (except for enforced links) when Group +policy is processed for the `south.contoso.com` domain container. ### Example 3: Set the enforced property of a link between a GPO and a test site + ```powershell -Set-GPLink -Guid 77c5285d-952e-4559-94ef-a02f5c107799 -Target "Test-Site" -Enforced Yes +Set-GPLink -Guid 77c5285d-952e-4559-94ef-a02f5c107799 -Target "Test-Site" -Enforced Yes +``` + +```Output GpoId : 77c5285d-952e-4559-94ef-a02f5c107799 DisplayName : TestGPO Enabled : True @@ -78,8 +104,9 @@ Target : CN=test-site,cn=Sites,CN=Configuration,DC=contoso,DC=com Order : 1 ``` -This command sets the enforced property of the link between the GPO that has ID 77c5285d-952e-4559-94ef-a02f5c107799 and the test site. -Inheritance cannot be blocked for this link at containers that are at lower-levels of the Group Policy hierarchy. +This command sets the enforced property of the link between the GPO that has ID +`77c5285d-952e-4559-94ef-a02f5c107799` and the `Test-Site`. Inheritance cannot be blocked for this +link at containers that are at lower-levels of the Group Policy hierarchy. ## PARAMETERS @@ -108,18 +135,21 @@ For the **Set-GPLink** cmdlet: - The GPO that is linked from must exist in this domain. -- The Active Directory container that is linked to must exist in a domain that has a trust relationship with this domain. +- The Active Directory container that is linked to must exist in a domain that has a trust + relationship with this domain. -To specify a domain to link to, use the *Target* parameter. +To specify a domain to link to, use the **Target** parameter. -If you do not specify the **Domain** parameter, the domain of the user that is running the current session is used. -If the cmdlet is being run from a computer startup or shutdown script, the domain of the computer is used. -For more information, see the Notes section in the full Help. +If you do not specify the **Domain** parameter, the domain of the user that is running the current +session is used. If the cmdlet is being run from a computer startup or shutdown script, the domain +of the computer is used. For more information, see the Notes section in the full Help. -If you specify a domain that is different from the domain of the user that is running the current session (or, for a startup or shutdown script, the computer), a trust must exist between that domain and the domain of the user or the computer. +If you specify a domain that is different from the domain of the user that is running the current +session (or, for a startup or shutdown script, the computer), a trust must exist between that domain +and the domain of the user or the computer. -You can also refer to the **Domain** parameter by its built-in alias, **DomainName**. -For more information, see [about_Aliases](????????????). +You can also refer to the **Domain** parameter by its built-in alias, **DomainName**. For more +information, see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: System.String @@ -134,18 +164,19 @@ Accept wildcard characters: False ``` ### -Enforced -Specifies whether the GPO link is enforced. -You can specify Yes or No. -By default, GPO links are not enforced. + +Specifies whether the GPO link is enforced. You can specify Yes or No. By default, GPO links are not +enforced. By setting the GPO link to enforced, you ensure the following: -- That the settings of the GPO cannot be blocked (by blocking inheritance) at a lower-level Active Directory container. +- That the settings of the GPO cannot be blocked (by blocking inheritance) at a lower-level Active + Directory container. -- That the settings of the GPO always take precedence over conflicting settings in GPOs that are linked to lower-level containers. +- That the settings of the GPO always take precedence over conflicting settings in GPOs that are + linked to lower-level containers. -This option should be used sparingly. -Casual use of this option complicates troubleshooting. +This option should be used sparingly. Casual use of this option complicates troubleshooting. The following values are permitted for this object type. @@ -164,8 +195,8 @@ Accept wildcard characters: False ### -Guid -Specifies the GPO of the link by its globally unique identifier (GUID). -The GUID uniquely identifies the GPO. +Specifies the GPO of the link by its globally unique identifier (GUID). The GUID uniquely identifies +the GPO. You can also refer to the **Guid** parameter by its built-in alias, **Id**. @@ -182,13 +213,13 @@ Accept wildcard characters: False ``` ### -LinkEnabled -Specifies whether the GPO link is enabled. -You can specify Yes or No. -By default, Group Policy processing is enabled for all GPO links. -You can completely block the application of a GPO for a specific site, domain, or OU by disabling the GPO link for that site, domain, or OU. -Disabling a GPO link does not disable the GPO itself. -If the GPO is linked to other sites, domains, or OUs, Group Policy continues to process the GPO for each link that is enabled. +Specifies whether the GPO link is enabled. You can specify Yes or No. + +By default, Group Policy processing is enabled for all GPO links. You can completely block the +application of a GPO for a specific site, domain, or OU by disabling the GPO link for that site, +domain, or OU. Disabling a GPO link does not disable the GPO itself. If the GPO is linked to other +sites, domains, or OUs, Group Policy continues to process the GPO for each link that is enabled. ```yaml Type: EnableLink @@ -204,11 +235,12 @@ Accept wildcard characters: False ``` ### -Name + Specifies the GPO of the link by its display name. -The display name is not guaranteed to be unique in the domain. -If another GPO with the same display name exists in the domain, an error occurs. -You can use the **Guid** parameter to uniquely identify a GPO. +The display name is not guaranteed to be unique in the domain. If another GPO with the same display +name exists in the domain, an error occurs. You can use the **Guid** parameter to uniquely identify +a GPO. You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. @@ -225,16 +257,20 @@ Accept wildcard characters: False ``` ### -Order -Specifies the link order for the GPO link. -You can specify a number that is between one and the current number of GPO links to the target site, domain, or OU, plus one. -The link order specifies the order of precedence with which GPOs linked to the same Active Directory container are applied. -When Group Policy is processed, GPOs with a higher link order number are processed before GPOs with a lower link order number. -Therefore, when two GPOs contain conflicting settings, the settings in the GPO with the lower link order number, because it is processed last, overwrites those of the GPO with the higher link order number. -A lower number indicates higher precedence. +Specifies the link order for the GPO link. You can specify a number that is between one and the +current number of GPO links to the target site, domain, or OU, plus one. -By default, the GPO link is added at the lowest precedence (with a link order equal to the number of GPO links to the container, plus one). -Link order is a dynamic value because the value may change as GPO links are added and deleted from the container. +The link order specifies the order of precedence with which GPOs linked to the same Active Directory +container are applied. When Group Policy is processed, GPOs with a higher link order number are +processed before GPOs with a lower link order number. Therefore, when two GPOs contain conflicting +settings, the settings in the GPO with the lower link order number, because it is processed last, +overwrites those of the GPO with the higher link order number. A lower number indicates higher +precedence. + +By default, the GPO link is added at the lowest precedence (with a link order equal to the number of +GPO links to the container, plus one). Link order is a dynamic value because the value may change as +GPO links are added and deleted from the container. ```yaml Type: Int32 @@ -250,12 +286,13 @@ Accept wildcard characters: False ### -Server -Specifies the name of the domain controller that this cmdlet contacts to complete the operation. -You can specify either the fully qualified domain name (FQDN) or the host name. +Specifies the name of the domain controller that this cmdlet contacts to complete the operation. You +can specify either the fully qualified domain name (FQDN) or the host name. -If you do not specify the name by using the **Server** parameter, the primary domain controller (PDC) emulator is contacted. +If you do not specify the name by using the **Server** parameter, the primary domain controller +(PDC) emulator is contacted. -You can also refer to the *Server* parameter by its built-in alias, **DC**. +You can also refer to the **Server** parameter by its built-in alias, **DC**. ```yaml Type: System.String @@ -270,8 +307,10 @@ Accept wildcard characters: False ``` ### -Target -Specifies the Lightweight Directory Access Protocol (LDAP) distinguished name of the site, domain, or OU of the link. -For instance, for the MyOU organizational unit in the contoso.com domain, the LDAP distinguished name is "ou=MyOU,dc=contoso,dc=com". + +Specifies the Lightweight Directory Access Protocol (LDAP) distinguished name of the site, domain, +or OU of the link. For instance, for the `MyOU` organizational unit in the `contoso.com` domain, the +LDAP distinguished name is `ou=MyOU,dc=contoso,dc=com`. ```yaml Type: System.String @@ -287,8 +326,7 @@ Accept wildcard characters: False ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml Type: System.Management.Automation.SwitchParameter @@ -304,29 +342,36 @@ Accept wildcard characters: False ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### Microsoft.GroupPolicy.GpoLink + A GPO link between a GPO and a site, domain, or OU. ## OUTPUTS ### Microsoft.GroupPolicy.GpoLink + This cmdlet returns the GPO link after the change has been applied. ## NOTES * You can use the **Domain** parameter to explicitly specify the domain for this cmdlet. - If you do not explicitly specify the domain, the cmdlet uses a default domain. -The default domain is the domain that is used to access network resources by the security context under which the current session is running. -This domain is typically the domain of the user that is running the session. -For instance, the domain of the user who started the session by opening Windows PowerShell from the Program Files menu, or the domain of a user that is specified in a runas command. -However, computer startup and shutdown scripts run under the context of the LocalSystem account. -The LocalSystem account is a built-in local account, and it accesses network resources under the context of the computer account. -Therefore, when this cmdlet is run from a startup or shutdown script, the default domain is the domain to which the computer is joined. + If you do not explicitly specify the domain, the cmdlet uses a default domain. The default domain + is the domain that is used to access network resources by the security context under which the + current session is running. This domain is typically the domain of the user that is running the + session. For instance, the domain of the user who started the session by opening Windows + PowerShell from the Program Files menu, or the domain of a user that is specified in a runas + command. However, computer startup and shutdown scripts run under the context of the LocalSystem + account. The LocalSystem account is a built-in local account, and it accesses network resources + under the context of the computer account. Therefore, when this cmdlet is run from a startup or + shutdown script, the default domain is the domain to which the computer is joined. ## RELATED LINKS diff --git a/docset/winserver2022-ps/grouppolicy/Set-GPPermission.md b/docset/winserver2022-ps/grouppolicy/Set-GPPermission.md index 19dc0adbbf..f09f27f886 100644 --- a/docset/winserver2022-ps/grouppolicy/Set-GPPermission.md +++ b/docset/winserver2022-ps/grouppolicy/Set-GPPermission.md @@ -17,56 +17,96 @@ Grants a level of permissions to a security principal for one GPO or all the GPO ## SYNTAX ### PermissionOne(GUID) (Default) + ``` Set-GPPermission -Guid -PermissionLevel -TargetName - -TargetType [-DomainName ] [-Server ] [-Replace] [-WhatIf] [-Confirm] - [] + -TargetType [-DomainName ] [-Server ] [-Replace] [-WhatIf] + [-Confirm] [] ``` ### PermissionOne(Name) + ``` Set-GPPermission [-Name] -PermissionLevel -TargetName - -TargetType [-DomainName ] [-Server ] [-Replace] [-WhatIf] [-Confirm] - [] + -TargetType [-DomainName ] [-Server ] [-Replace] [-WhatIf] + [-Confirm] [] ``` ### PermissionAll + ``` -Set-GPPermission -PermissionLevel -TargetName -TargetType - [-DomainName ] [-Server ] [-All] [-Replace] [-WhatIf] [-Confirm] [] +Set-GPPermission -PermissionLevel -TargetName + -TargetType [-DomainName ] [-Server ] [-All] [-Replace] + [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Set-GPPermission** cmdlet grants a level of permissions to a security principal (user, security group, or computer) for one Group Policy Object (GPO) or all the GPOs in a domain. -You use the **TargetName** and *TargetType* parameters to specify a user, security group, or computer for which to set the permission level. -You can use the *Name* or the **Guid** parameter to set the permission level for the security principal on a single GPO, or you can use the **All** parameter to set the permission level for the security principal on all GPOs in the domain. -By default, if the security principal already has a higher permission level than the specified permission level, the change is not applied. -You can specify the *Replace* parameter, to remove the existing permission level from the GPO before the new permission level is set. -This ensures that the existing permission level is replaced by the new permission level. +The **Set-GPPermission** cmdlet grants a level of permissions to a security principal (user, +security group, or computer) for one Group Policy Object (GPO) or all the GPOs in a domain. You use +the **TargetName** and **TargetType** parameters to specify a user, security group, or computer for +which to set the permission level. You can use the *Name* or the **Guid** parameter to set the +permission level for the security principal on a single GPO, or you can use the **All** parameter to +set the permission level for the security principal on all GPOs in the domain. + +By default, if the security principal already has a higher permission level than the specified +permission level, the change is not applied. You can specify the **Replace** parameter, to remove +the existing permission level from the GPO before the new permission level is set. This ensures that +the existing permission level is replaced by the new permission level. ## EXAMPLES ### Example 1: Set the permission level for a security group belonging to a GPO + ```powershell Set-GPPermission -Name TestGpo -TargetName "Domain Users" -TargetType Group -PermissionLevel GpoRead ``` -This command sets the permission level for the Domain Users security group to GpoRead for the GPO named TestGpo. -Because the *Replace* parameter is not specified, if the group already has a permission level higher than GpoRead, such as GpoEdit, no action is taken. +This command sets the permission level for the Domain Users security group to `GpoRead` for the GPO +named `TestGpo`. Because the **Replace** parameter is not specified, if the group already has a +permission level higher than `GpoRead`, such as `GpoEdit`, no action is taken. ### Example 2: Set the permission level for a security group that belongs to all GPOs + ```powershell -Set-GPPermission -All -TargetName "Marketing Admins" -TargetType Group -PermissionLevel GpoEdit -Replace +$params = @{ + All = $true + TargetName = "Marketing Admins" + TargetType = 'Group' + PermissionLevel = 'GpoEdit' + Replace = $true +} +Set-GPPermission @params ``` -This command sets the permission level for the Marketing Admins security group to GpoEdit on all GPOs in the domain. -This includes GPOs that are not linked to any site, domain, or OU. -Because the *Replace* parameter is specified, the new permission level overwrites the existing permissions set for the group. +This command sets the permission level for the `Marketing Admins` security group to `GpoEdit` on all +GPOs in the domain. This includes GPOs that are not linked to any site, domain, or OU. Because the +**Replace** parameter is specified, the new permission level overwrites the existing permissions set +for the group. ### Example 3: Replace the permission level of a security group for all GPOs on which the group has permissions + ```powershell -Get-GPO -All | ForEach-Object { if($_ | Get-GPPermission -TargetName "Marketing Admins" -TargetType Group -ErrorAction SilentlyContinue) {$_ | Set-GPPermission -Replace -PermissionLevel GpoApply -TargetName "Marketing Admins" -TargetType Group }} +Get-GPO -All | + ForEach-Object { + $getParams = @{ + TargetName = "Marketing Admins" + TargetType = 'Group' + ErrorAction = 'SilentlyContinue' + } + if ( $_ | Get-GPPermission @getParams) { + $setParams = @{ + Replace = $true + PermissionLevel = 'GpoApply' + TargetName = "Marketing Admins" + TargetType = 'Group' + } + $_ | Set-GPPermission @setParams + } + } +``` + +```Output DisplayName : TestGPO DomainName : contoso.com Owner : CONTOSO\Domain Admins @@ -93,24 +133,29 @@ ComputerVersion : AD Version: 0, SysVol Version: 0 WmiFilter : ``` -This command replaces the current permission level of the Marketing Admins security group with GpoApply for all GPOs on which the group has permissions. -The command returns each GPO for which the new permission level is set. +This command replaces the current permission level of the `Marketing Admins` security group with +GpoApply for all GPOs on which the `Group` has permissions. The command returns each GPO for which +the new permission level is set. -The cmdlet is used to get all the GPOs in the domain. -Then, the collection is piped into the **ForEach-Object** command. -As each GPO is evaluated, it is piped into **Get-GPPermission**. -If a permission level for the Marketing Admins group is returned, the GPO is piped into **Set-GPPermission** to set the permission level for the group. -The *Replace* parameter is specified to make sure that the previous permission level is overwritten. +The cmdlet is used to get all the GPOs in the domain. Then, the collection is piped into the +**ForEach-Object** command. As each GPO is evaluated, it is piped into **Get-GPPermission**. If a +permission level for the Marketing Admins group is returned, the GPO is piped into +**Set-GPPermission** to set the permission level for the group. The **Replace** parameter is +specified to make sure that the previous permission level is overwritten. -The *ErrorAction* parameter is set to SilentlyContinue for **Get-GPPermissions**. -This is because a non-terminating error occurs if the specified security principal does not have permissions on the GPO. -Specifying *ErrorAction* as SilentlyContinue prevents the error messages from being printed for GPOs on which the security principal does not have permissions. -For more information about the *ErrorAction* parameter, see about_CommonParameters. +The **ErrorAction** parameter is set to `SilentlyContinue` for **Get-GPPermissions**. This is +because a non-terminating error occurs if the specified security principal does not have permissions +on the GPO. Specifying **ErrorAction** as `SilentlyContinue` prevents the error messages from being +printed for GPOs on which the security principal does not have permissions. For more information +about the **ErrorAction** parameter, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## PARAMETERS ### -All -Specifies that the permission level is set for the specified security principal for all GPOs in the domain. + +Specifies that the permission level is set for the specified security principal for all GPOs in the +domain. ```yaml Type: System.Management.Automation.SwitchParameter @@ -141,19 +186,22 @@ Accept wildcard characters: False ``` ### -DomainName -Specifies the domain for this cmdlet. -You must specify the fully qualified domain name (FQDN) of the domain. +Specifies the domain for this cmdlet. You must specify the fully qualified domain name (FQDN) of the +domain. -For the **Set-GPPermission** cmdlet, the GPO for which to get the permission level must exist in this domain. +For the **Set-GPPermission** cmdlet, the GPO for which to get the permission level must exist in +this domain. -If you do not specify the *DomainName* parameter, the domain of the user that is running the current session is used. -If the cmdlet is being run from a computer startup or shutdown script, the domain of the computer is used. -For more information, see the Notes section in the full Help. +If you do not specify the **DomainName** parameter, the domain of the user that is running the +current session is used. If the cmdlet is being run from a computer startup or shutdown script, the +domain of the computer is used. For more information, see the Notes section in the full Help. -If you specify a domain that is different from the domain of the user that is running the current session (or, for a startup or shutdown script, the computer), a trust must exist between that domain and the domain of the user or the computer. +If you specify a domain that is different from the domain of the user that is running the current +session (or, for a startup or shutdown script, the computer), a trust must exist between that domain +and the domain of the user or the computer. -You can also refer to the *DomainName* parameter by its built-in alias, domain. -For more information, see [about_Aliases](????????????). +You can also refer to the **DomainName** parameter by its built-in alias, domain. For more +information, see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: System.String @@ -190,9 +238,9 @@ Accept wildcard characters: False Specifies the GPO for which to set the permission level by its display name. -The display name is not guaranteed to be unique in the domain. -If another GPO with the same display name exists in the domain, an error occurs. -You can use the **Guid** parameter to uniquely identify a GPO. +The display name is not guaranteed to be unique in the domain. If another GPO with the same display +name exists in the domain, an error occurs. You can use the **Guid** parameter to uniquely identify +a GPO. You can also refer to the Name parameter by its built-in alias, **DisplayName**. @@ -209,6 +257,7 @@ Accept wildcard characters: False ``` ### -PermissionLevel + Specifies the permission level to set for the security principal. The acceptable values for this parameter are: @@ -233,8 +282,11 @@ Accept wildcard characters: False ``` ### -Replace -Specifies that the existing permission level for the group or user is removed before the new permission level is set. -If a security principal is already granted a permission level that is higher than the specified permission level and you do not use the *Replace* parameter, no change is made. + +Specifies that the existing permission level for the group or user is removed before the new +permission level is set. If a security principal is already granted a permission level that is +higher than the specified permission level and you do not use the *Replace* parameter, no change is +made. ```yaml Type: System.Management.Automation.SwitchParameter @@ -250,12 +302,13 @@ Accept wildcard characters: False ### -Server -Specifies the name of the domain controller that this cmdlet contacts to complete the operation. -You can specify either the fully qualified domain name (FQDN) or the host name. +Specifies the name of the domain controller that this cmdlet contacts to complete the operation. You +can specify either the fully qualified domain name (FQDN) or the host name. -If you do not specify the name by using the **Server** parameter, the primary domain controller (PDC) emulator is contacted. +If you do not specify the name by using the **Server** parameter, the primary domain controller +(PDC) emulator is contacted. -You can also refer to the *Server* parameter by its built-in alias, **DC**. +You can also refer to the **Server** parameter by its built-in alias, **DC**. ```yaml Type: System.String @@ -270,17 +323,18 @@ Accept wildcard characters: False ``` ### -TargetName -The name of the security principal for which to set the permission level. -You can specify a user, a security group, or a computer. -You can use either the domain-qualified name of the security principal (domain\account) or just its name. -For instance, in the contoso.com domain, to specify: +The name of the security principal for which to set the permission level. You can specify a user, a +security group, or a computer. You can use either the domain-qualified name of the security +principal (domain\account) or just its name. -- The user "someuser", use "contoso\someuser" or "someuser". +For instance, in the `contoso.com` domain, to specify: -- The Domain Admins security group, use "contoso\Domain Admins" or "Domain Admins". +- The user `SomeUser`, use `contoso\SomeUser` or `SomeUser`. -- The computer "computer-01", use "contoso\computer-01" or "computer-01". +- The Domain Admins security group, use `contoso\Domain Admins` or `Domain Admins`. + +- The computer `computer-01`, use `contoso\computer-01` or `computer-01`. ```yaml Type: System.String @@ -295,8 +349,9 @@ Accept wildcard characters: False ``` ### -TargetType -The type of security principal for which to set the permission level. -You must specify User, Group, or Computer. + +The type of security principal for which to set the permission level. You must specify User, Group, +or Computer. The acceptable values for this parameter are: @@ -319,8 +374,7 @@ Accept wildcard characters: False ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml Type: System.Management.Automation.SwitchParameter @@ -336,13 +390,17 @@ Accept wildcard characters: False ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### Microsoft.GroupPolicy.Gpo -You can pipe an object that represents a GPO to this cmdlet. -Collections that contain GPOs from different domains are not supported. + +You can pipe an object that represents a GPO to this cmdlet. Collections that contain GPOs from +different domains are not supported. ## OUTPUTS @@ -352,15 +410,17 @@ This cmdlet returns an object that represents the GPO for which the permission l ## NOTES -* You can use the *DomainName* parameter to explicitly specify the domain for this cmdlet. - - If you do not explicitly specify the domain, the cmdlet uses a default domain. -The default domain is the domain that is used to access network resources by the security context under which the current session is running. -This domain is typically the domain of the user that is running the session. -For example, the domain of the user who started the session by opening Windows PowerShell from the Program Files menu, or the domain of a user that is specified in a runas command. -However, computer startup and shutdown scripts run under the context of the LocalSystem account. -The LocalSystem account is a built-in local account, and it accesses network resources under the context of the computer account. -Therefore, when this cmdlet is run from a startup or shutdown script, the default domain is the domain to which the computer is joined. +* You can use the **DomainName** parameter to explicitly specify the domain for this cmdlet. + + If you do not explicitly specify the domain, the cmdlet uses a default domain. The default domain + is the domain that is used to access network resources by the security context under which the + current session is running. This domain is typically the domain of the user that is running the + session. For example, the domain of the user who started the session by opening Windows PowerShell + from the Program Files menu, or the domain of a user that is specified in a runas command. + However, computer startup and shutdown scripts run under the context of the LocalSystem account. + The LocalSystem account is a built-in local account, and it accesses network resources under the + context of the computer account. Therefore, when this cmdlet is run from a startup or shutdown + script, the default domain is the domain to which the computer is joined. ## RELATED LINKS diff --git a/docset/winserver2022-ps/grouppolicy/Set-GPPrefRegistryValue.md b/docset/winserver2022-ps/grouppolicy/Set-GPPrefRegistryValue.md index fc3cbc8f02..33bc36bf35 100644 --- a/docset/winserver2022-ps/grouppolicy/Set-GPPrefRegistryValue.md +++ b/docset/winserver2022-ps/grouppolicy/Set-GPPrefRegistryValue.md @@ -12,52 +12,77 @@ title: Set-GPPrefRegistryValue ## SYNOPSIS -Configures a Registry preference item under either Computer Configuration or User Configuration in a GPO. +Configures a Registry preference item under either Computer Configuration or User Configuration in a +GPO. ## SYNTAX ### ByGUID (Default) + ``` -Set-GPPrefRegistryValue -Guid -Context -Key [-ValueName ] - [-Value ] [-Type ] -Action [-Order ] [-Domain ] - [-Server ] [-Disable] [-WhatIf] [-Confirm] [] +Set-GPPrefRegistryValue -Guid -Context -Key + [-ValueName ] [-Value ] [-Type ] -Action + [-Order ] [-Domain ] [-Server ] [-Disable] [-WhatIf] [-Confirm] + [] ``` ### ByName + ``` -Set-GPPrefRegistryValue [-Name] -Context -Key [-ValueName ] - [-Value ] [-Type ] -Action [-Order ] [-Domain ] - [-Server ] [-Disable] [-WhatIf] [-Confirm] [] +Set-GPPrefRegistryValue [-Name] -Context -Key + [-ValueName ] [-Value ] [-Type ] -Action + [-Order ] [-Domain ] [-Server ] [-Disable] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION -Configures a Registry preference item under either Computer Configuration or User Configuration in a Group Policy Object (GPO). + +Configures a Registry preference item under either Computer Configuration or User Configuration in a +Group Policy Object (GPO). You can configure the Registry preference item for either a registry key or a registry value: -- For a registry key, specify the *Key* parameter, but do not specify the *ValueName*, *Type*, or *Value* parameters. +- For a registry key, specify the **Key** parameter, but do not specify the **ValueName**, **Type**, + or **Value** parameters. -- For a registry value, specify the *Key* parameter together with the *ValueName*, *Type*, and *Value* parameters. +- For a registry value, specify the **Key** parameter together with the **ValueName**, **Type**, and + **Value** parameters. -You must specify the *Context* parameter (User or Computer) to indicate whether to configure the Registry preference item in Computer Configuration or User Configuration. -You must also specify the *Action* parameter to set the action that should be applied on the client. -You can specify the GPO by its display name or GUID. -You can specify the *Disable* parameter to create a Registry preference item that is disabled. +You must specify the **Context** parameter (User or Computer) to indicate whether to configure the +Registry preference item in Computer Configuration or User Configuration. You must also specify the +**Action** parameter to set the action that should be applied on the client. You can specify the GPO +by its display name or GUID. You can specify the **Disable** parameter to create a Registry +preference item that is disabled. -This cmdlet configures new Registry preference items. -It does not modify existing Registry preference items. +This cmdlet configures new Registry preference items. It does not modify existing Registry +preference items. This cmdlet can take input from the pipeline: -- You can pipe GPO objects to this cmdlet to set a specified Registry preference item on one or more GPOs. +- You can pipe GPO objects to this cmdlet to set a specified Registry preference item on one or more + GPOs. -- You can pipe **PreferenceRegistrySetting** objects to this cmdlet to set one or more Registry preference items on a specified GPO. +- You can pipe **PreferenceRegistrySetting** objects to this cmdlet to set one or more Registry + preference items on a specified GPO. ## EXAMPLES ### Example 1: Configure a Registry preference item for a registry value for a GPO + ```powershell -Set-GPPrefRegistryValue -Name "TestGPO" -Context User -Key "HKCU\Software\Policies\Microsoft\Windows\Control Panel" -ValueName "ScreenSaveIsSecure" -Value "1" -Type String -Action Update +$params = @{ + Name = 'TestGPO' + Context = 'User' + Key = 'HKCU\Software\Policies\Microsoft\Windows\Control Panel' + ValueName = 'ScreenSaveIsSecure' + Value = '1' + Type = 'String' + Action = 'Update' +} +Set-GPPrefRegistryValue @params +``` + +```Output DisplayName : TestGPO DomainName : contoso.com Owner : CONTOSO\Domain Admins @@ -71,58 +96,138 @@ ComputerVersion : AD Version: 34, SysVol Version: 34 WmiFilter : ``` -This command configures a Registry preference item for the registry value HKCU\Software\Policies\Microsoft\Windows\Control Panel\ ScreenSaveIsSecure in User Configuration for the GPO named TestGPO. -When the GPO is applied on a client, the registry value is updated with a data type of String (REG_SZ) and value data 1. +This command configures a Registry preference item for the registry value +`HKCU\Software\Policies\Microsoft\Windows\Control Panel\ ScreenSaveIsSecure` in `User` Configuration +for the GPO named `TestGPO`. When the GPO is applied on a client, the registry value is updated with +a data type of `String` (REG_SZ) and value data `1`. ### Example 2: Configure a Registry preference item for a registry value for a GPO + ```powershell -Set-GPPrefRegistryValue -Name "TestGPO" -Context User -Action Create -Key "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey" -ValueName "ValueOne" -Value "NewData" -Type String +$params = @{ + Name = 'TestGPO' + Context = 'User' + Action = 'Create' + Key = 'HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey' + ValueName = 'ValueOne' + Value = 'NewData' + Type = 'String' +} +Set-GPPrefRegistryValue @params ``` -This command configures a Registry preference item for the registry value HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey ValueOne in User Configuration for the GPO named TestGPO. -When the GPO is applied on a client, the registry value is created with a data type of String (REG_SZ) and value data "NewData". +This command configures a Registry preference item for the registry value +`HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey ValueOne` in `User` Configuration for the GPO +named `TestGPO`. When the GPO is applied on a client, the registry value is created with a data type +of `String` (REG_SZ) and value data `NewData`. ### Example 3: Configure a Registry preference item for a registry value for a GPO specified by GUID + ```powershell -Set-GPPrefRegistryValue -Guid 35c12ab3-956c-45d5-973b-46b17d225f47 -Context Computer -Action Create -Key "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey\ExampleKey2" +$params = @{ + Guid = '35c12ab3-956c-45d5-973b-46b17d225f47' + Context = 'Computer' + Action = 'Create' + Key = 'HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey\ExampleKey2' +} +Set-GPPrefRegistryValue @params ``` -This command configures a Registry preference item for the registry key HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey\ExampleKey2 in Computer Configuration in the GPO that has ID 35c12ab3-956c-45d5-973b-46b17d225f47. -When the GPO is applied on a client, the registry key is created. +This command configures a Registry preference item for the registry key +`HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey\ExampleKey2` in `Computer` Configuration in the +GPO that has ID `35c12ab3-956c-45d5-973b-46b17d225f47`. When the GPO is applied on a client, the +registry key is created. ### Example 4: Create a disabled Registry preference item for a registry value for a GPO + ```powershell -Remove-GPPrefRegistryValue -Name "TestGPO" -Context User -Key "HKLM\SOFTWARE\Microsoft\ExampleKey" -ValueName "ValueOne" | Set-GPPrefRegistryValue -Context User -Action Create -Disable -Key "HKLM\SOFTWARE\Microsoft\ExampleKey" -ValueName "ValueOne" -Value "SomeData" -Type String +$removeGPPrefParams = @{ + Name = 'TestGPO' + Context = 'User' + Key = 'HKLM\SOFTWARE\Microsoft\ExampleKey' + ValueName = 'ValueOne' +} +$setGPPrefParams = @{ + Context = 'User' + Action = 'Create' + Disable = $true + Key = 'HKLM\SOFTWARE\Microsoft\ExampleKey' + ValueName = 'ValueOne' + Value = 'SomeData' + Type = 'String' +} +Remove-GPPrefRegistryValue @removeGPPrefParams | + Set-GPPrefRegistryValue @setGPPrefParams ``` -This command creates a disabled Registry preference item for the registry value HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey ValueOne in User Configuration in the GPO named TestGPO. -The **Remove-GPPrefRegistryValue** command removes any Registry preference items that configure the value from User Configuration. -Then, the GPO named TestGPO returned by the **Remove-GPPrefRegistryValue** is piped into **Set-GPPrefRegistryValue** to configure the disabled Registry preference item. -After this command completes, the disabled Registry preference item is the only Registry preference item associated with the registry value in User Configuration. +This command creates a disabled Registry preference item for the registry value +`HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey ValueOne` in `User` Configuration in the GPO named +`TestGPO`. The **Remove-GPPrefRegistryValue** command removes any Registry preference items that +configure the value from User Configuration. Then, the GPO named `TestGPO` returned by the +**Remove-GPPrefRegistryValue** is piped into **Set-GPPrefRegistryValue** to configure the `disabled` +Registry preference item. After this command completes, the `disabled` Registry preference item is +the only Registry preference item associated with the registry value in User Configuration. -If TestGPO does not initially have a Registry preference item configured for the specified registry value, a non-terminating error occurs. -You can suppress the error message by supplying the *ErrorAction* parameter to **Remove-GPPrefRegistryValue** and setting its value to SilentlyContinue. -For more information about the ErrorAction parameter, see about_CommonParameters. +If `TestGPO` does not initially have a Registry preference item configured for the specified +registry value, a non-terminating error occurs. You can suppress the error message by supplying the +**ErrorAction** parameter to **Remove-GPPrefRegistryValue** and setting its value to +SilentlyContinue. For more information about the **ErrorAction** parameter, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ### Example 5: Configure a Registry preference item for a registry value for all GPOs + ```powershell -Get-GPO -All | Remove-GPPrefRegistryValue -Context User -Key "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey" -ValueName "ValueOne" -ErrorAction SilentlyContinue | Set-GPPrefRegistryValue -Context User -Action Update -Key "HKLM\SOFTWARE\Microsoft\ExampleKey" -ValueName "ValueOne" -Value "SomeData" -Type String +$removeGPPrefParams = @{ + Context = 'User' + Key = 'HKLM\SOFTWARE\Microsoft\ExampleKey' + ValueName = 'ValueOne' + ErrorAction = 'SilentlyContinue' +} +$setGPPrefParams = @{ + Context = 'User' + Action = 'Update' + Key = 'HKLM\SOFTWARE\Microsoft\ExampleKey' + ValueName = 'ValueOne' + Value = 'SomeData' + Type = 'String' +} +Get-GPO -All | Remove-GPPrefRegistryValue @removeGPPrefParams | + Set-GPPrefRegistryValue @setGPPrefParams ``` -This command configures a Registry preference item to update the registry value HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey ValueOne for every GPO in the domain that previously had a Registry preference item configured for that value in User Configuration. +This command configures a Registry preference item to update the registry value +`HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey ValueOne` for every GPO in the domain that +previously had a Registry preference item configured for that value in User Configuration. -The command is invoked with the **All** parameter to get all the GPOs in the domain. -These GPOs are piped into the **Remove-GPPrefRegistryValue** cmdlet. -If the GPO contains any Registry preference items configured for the specified key, they are removed. -**Remove-GPPrefRegistryValue** only outputs a GPO to the pipeline if it removes a Registry preference item from a GPO. -Finally, these GPOs are piped to the **Set-GPPrefRegistryValue** to configure the Registry preference item to update the registry value. +The command is invoked with the **All** parameter to get all the GPOs in the domain. These GPOs are +piped into the **Remove-GPPrefRegistryValue** cmdlet. If the GPO contains any Registry preference +items configured for the specified key, they are removed. **Remove-GPPrefRegistryValue** only +outputs a GPO to the pipeline if it removes a Registry preference item from a GPO. Finally, these +GPOs are piped to the **Set-GPPrefRegistryValue** to configure the Registry preference item to +update the registry value. -If a GPO passed to **Remove-GPPrefRegistryValue** does not have a Registry preference item configured for the specified value, a non-terminating error occurs. -The *ErrorAction* parameter is set to SilentlyContinue to suppress the error message. +If a GPO passed to **Remove-GPPrefRegistryValue** does not have a Registry preference item +configured for the specified value, a non-terminating error occurs. The **ErrorAction** parameter is +set to `SilentlyContinue` to suppress the error message. ### Example 6: Copy all Registry preference items for a registry value for a GPO + ```powershell -Get-GPPrefRegistryValue -Name "TestGPO" -Context User -Key "HKLM\Software\Microsoft\ExampleKey" | Set-GPPrefRegistryValue -Name "TestGPO-1" -Context Computer -Order 1 -ErrorAction SilentlyContinue +$getGPPrefParams = @{ + Name = 'TestGPO' + Context = 'User' + Key = 'HKLM\Software\Microsoft\ExampleKey' +} +$setGPPrefParams = @{ + Name = 'TestGPO-1' + Context = 'Computer' + Order = 1 + ErrorAction = 'SilentlyContinue' +} +Get-GPPrefRegistryValue @getGPPrefParams | Set-GPPrefRegistryValue @setGPPrefParams +``` + +```Output DisplayName : TestGPO-1 DomainName : contoso.com Owner : CONTOSO\Domain Admins @@ -149,26 +254,37 @@ ComputerVersion : AD Version: 2, SysVol Version: 2 WmiFilter : ``` -This command copies all Registry preference items that configure first-level values under the registry key HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey from User Configuration in a source GPO named TestGPO to Computer Configuration in destination GPO named TestGPO-1. -A copy of the destination GPO (TestGPO-1) is returned for each Registration preference item set. - -The **Get-GPPrefRegistryValue** command gets all the Registry preference items that configure values under User Configuration in the source GPO. -This command also returns all first level subkeys that have values configured (though not the Registry preference items for the values themselves). -These Registry preference items and the subkeys are then piped into the **Set-GPPrefRegistryValue** cmdlet. - -The **Set-GPPrefRegistryValue** command configures the Registry preference items for the registry values in the destination GPO. - -- The subkeys returned by **Get-GPPrefRegistryValue** do not have an **Action** property, and so a non-terminating error occurs for each subkey. -The *ErrorAction* parameter is specified to suppress these error messages. - -- It is a good practice to specify an order of one (-Order 1) in **Set-GPPrefRegistryValue** when it accepts input from the pipeline. -This is because Registry preference items passed on the pipeline have an **Order** property. -If the **Order** property of a Registry preference item passed on the pipeline is greater than the number of Registry preference items currently configured in the destination GPO, an out of range error occurs and the Registry preference item is not configured in the destination GPO. -By specifying the order as one in the **Set-GPPrefRegistryValue** command, you override the **Order** property of the source Registry preference item, and prevent such errors from occurring. +This command copies all Registry preference items that configure first-level values under the +registry key `HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey` from `User` Configuration in a +source GPO named `TestGPO` to Computer Configuration in destination GPO named `TestGPO-1`. A copy of +the destination GPO `TestGPO-1` is returned for each Registration preference item set. + +The **Get-GPPrefRegistryValue** command gets all the Registry preference items that configure values +under User Configuration in the source GPO. This command also returns all first level subkeys that +have values configured (though not the Registry preference items for the values themselves). These +Registry preference items and the subkeys are then piped into the **Set-GPPrefRegistryValue** +cmdlet. + +The **Set-GPPrefRegistryValue** command configures the Registry preference items for the registry +values in the destination GPO. + +- The subkeys returned by **Get-GPPrefRegistryValue** do not have an **Action** property, and so a + non-terminating error occurs for each subkey. The **ErrorAction** parameter is specified to + suppress these error messages. + +- It is a good practice to specify an order of one `-Order 1` in **Set-GPPrefRegistryValue** when it + accepts input from the pipeline. This is because Registry preference items passed on the pipeline + have an **Order** property. If the **Order** property of a Registry preference item passed on the + pipeline is greater than the number of Registry preference items currently configured in the + destination GPO, an out of range error occurs and the Registry preference item is not configured + in the destination GPO. By specifying the order as one in the **Set-GPPrefRegistryValue** command, + you override the **Order** property of the source Registry preference item, and prevent such + errors from occurring. ## PARAMETERS ### -Action + Specifies the action for the Registry preference item. The acceptable values for this parameter are: @@ -178,7 +294,8 @@ The acceptable values for this parameter are: - Replace - Delete -The action specifies how the Registry preference item is applied to the registry key or registry value on the client when Group Policy is processed. +The action specifies how the Registry preference item is applied to the registry key or registry +value on the client when Group Policy is processed. ```yaml Type: PreferenceAction @@ -210,8 +327,9 @@ Accept wildcard characters: False ``` ### -Context -Specifies whether the Registry preference item is configured under User Configuration or Computer Configuration in the GPO. -The acceptable values for this parameter are: User or Computer. + +Specifies whether the Registry preference item is configured under User Configuration or Computer +Configuration in the GPO. The acceptable values for this parameter are: `User` or `Computer`. ```yaml Type: GpoConfiguration @@ -227,15 +345,21 @@ Accept wildcard characters: False ``` ### -Disable -Indicates that the cmdlet configures the Registry preference item as disabled. -A disabled Registry preference item is not applied when Group Policy is processed on the client, and, therefore, does not modify any existing registry keys or values on the client. -This parameter does not disable an existing Registry preference item in the GPO, rather, it creates a new Registry preference item that is disabled. -Any existing Registry preference items that configure the same key or value will still be applied when the GPO is processed on a client. -This behavior is different than disabling an existing Registry preference item using the GPMC. +Indicates that the cmdlet configures the Registry preference item as disabled. A disabled Registry +preference item is not applied when Group Policy is processed on the client, and, therefore, does +not modify any existing registry keys or values on the client. + +This parameter does not disable an existing Registry preference item in the GPO, rather, it creates +a new Registry preference item that is disabled. Any existing Registry preference items that +configure the same key or value will still be applied when the GPO is processed on a client. This +behavior is different than disabling an existing Registry preference item using the GPMC. -You can use the **Remove-GPPrefRegistryValue** cmdlet to remove any existing Registry preference items associated with the specified key or value from the appropriate configuration (User or Computer) in the GPO before you create the new disabled Registry preference item. -This ensures that after you create the disabled Registry preference item, it will be the only Registry preference item associated with the key or value in the specified configuration in the GPO. +You can use the **Remove-GPPrefRegistryValue** cmdlet to remove any existing Registry preference +items associated with the specified key or value from the appropriate configuration (User or +Computer) in the GPO before you create the new disabled Registry preference item. This ensures that +after you create the disabled Registry preference item, it will be the only Registry preference item +associated with the key or value in the specified configuration in the GPO. ```yaml Type: System.Management.Automation.SwitchParameter @@ -251,19 +375,22 @@ Accept wildcard characters: False ### -Domain -Specifies the domain for this cmdlet. -You must specify the fully qualified domain name (FQDN) of the domain. +Specifies the domain for this cmdlet. You must specify the fully qualified domain name (FQDN) of the +domain. -For the **Set-GPPrefRegistryValue** cmdlet, the GPO for which to configure the Registry preference item must exist in this domain. +For the **Set-GPPrefRegistryValue** cmdlet, the GPO for which to configure the Registry preference +item must exist in this domain. -If you do not specify the **Domain** parameter, the domain of the user that is running the current session is used. -If the cmdlet is being run from a computer startup or shutdown script, the domain of the computer is used. -For more information, see the Notes section in the full Help. +If you do not specify the **Domain** parameter, the domain of the user that is running the current +session is used. If the cmdlet is being run from a computer startup or shutdown script, the domain +of the computer is used. For more information, see the Notes section in the full Help. -If you specify a domain that is different from the domain of the user that is running the current session (or, for a startup or shutdown script, the computer), a trust must exist between that domain and the domain of the user or the computer. +If you specify a domain that is different from the domain of the user that is running the current +session (or, for a startup or shutdown script, the computer), a trust must exist between that domain +and the domain of the user or the computer. -You can also refer to the **Domain** parameter by its built-in alias, **DomainName**. -For more information, see [about_Aliases](????????????). +You can also refer to the **Domain** parameter by its built-in alias, **DomainName**. For more +information, see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: System.String @@ -279,8 +406,8 @@ Accept wildcard characters: False ### -Guid -Specifies the GPO in which to configure the Registry preference item by its globally unique identifier (GUID). -The GUID uniquely identifies the GPO. +Specifies the GPO in which to configure the Registry preference item by its globally unique +identifier (GUID). The GUID uniquely identifies the GPO. You can also refer to the **Guid** parameter by its built-in alias, **Id**. @@ -297,16 +424,22 @@ Accept wildcard characters: False ``` ### -Key -Specifies the registry key for the Registry preference item; for instance: HKEY_CURRENT_USER\Control Panel\Colors. -You can specify any of the following registry hives: HKEY_CLASSES_ROOT (HKCR), HKEY_CURRENT_USER (HKCU), HKEY_LOCAL_MACHINE (HKLM), HKEY_USERS (HKU), and HKEY_CURRENT_CONFIG (HKCC). -Any of these hives can be specified for Registry preference items in both Computer Configuration and User Configuration. +Specifies the registry key for the Registry preference item; for instance: +`HKEY_CURRENT_USER\Control Panel\Colors`. + +You can specify any of the following registry hives: `HKEY_CLASSES_ROOT` (HKCR), `HKEY_CURRENT_USER` +(HKCU), `HKEY_LOCAL_MACHINE` (HKLM), `HKEY_USERS` (HKU), and `HKEY_CURRENT_CONFIG` (HKCC). Any of +these hives can be specified for Registry preference items in both Computer Configuration and User +Configuration. You can configure a preference registry setting for a registry key or a registry value. -- To configure a setting for a registry key, specify the *Key* parameter without the *ValueName*, *Value*, or *Type* parameters. +- To configure a setting for a registry key, specify the **Key** parameter without the *ValueName*, + **Value**, or **Type** parameters. -- To configure a setting for a registry value, specify the *Key* parameter together with the *ValueName*, *Value*, and *Type* parameters. +- To configure a setting for a registry value, specify the **Key** parameter together with the + **ValueName**, **Value**, and **Type** parameters. ```yaml Type: System.String @@ -321,11 +454,12 @@ Accept wildcard characters: False ``` ### -Name + Specifies the GPO in which to configure the Registry preference item by its display name. -The display name is not guaranteed to be unique in the domain. -If another GPO with the same display name exists in the domain, an error occurs. -You can use the **Guid** parameter to uniquely identify a GPO. +The display name is not guaranteed to be unique in the domain. If another GPO with the same display +name exists in the domain, an error occurs. You can use the **Guid** parameter to uniquely identify +a GPO. You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. @@ -342,15 +476,20 @@ Accept wildcard characters: False ``` ### -Order -Specifies the order in which the Registry preference item is processed relative to other Registry preference items in the GPO when the GPO is applied on a client computer. -If two Registry preference items in the GPO change the same registry value, the one that has the highest order is the last to modify the value on the client. -By default, if the *Order* parameter is not specified, the order is set to one plus the current number of Registry preference items in the GPO. -You can specify any value greater than zero. -If you specify a value larger than the default value, the order is set to the default. +Specifies the order in which the Registry preference item is processed relative to other Registry +preference items in the GPO when the GPO is applied on a client computer. If two Registry preference +items in the GPO change the same registry value, the one that has the highest order is the last to +modify the value on the client. + +By default, if the **Order** parameter is not specified, the order is set to one plus the current +number of Registry preference items in the GPO. You can specify any value greater than zero. If you +specify a value larger than the default value, the order is set to the default. The order of a setting can change as Registry preference items are added or removed from the GPO. -For instance, if the GPO has five Registry preference items, and you add another one and specify an order of 4, the Registry preference items that previously were at order 4 and 5, are at order 5 and 6 after the change. +For instance, if the GPO has five Registry preference items, and you add another one and specify an +order of `4`, the Registry preference items that previously were at order `4` and `5`, are at order +`5` and `6` after the change. ```yaml Type: Int32 @@ -366,12 +505,13 @@ Accept wildcard characters: False ### -Server -Specifies the name of the domain controller that this cmdlet contacts to complete the operation. -You can specify either the fully qualified domain name (FQDN) or the host name. +Specifies the name of the domain controller that this cmdlet contacts to complete the operation. You +can specify either the fully qualified domain name (FQDN) or the host name. -If you do not specify the name by using the **Server** parameter, the primary domain controller (PDC) emulator is contacted. +If you do not specify the name by using the **Server** parameter, the primary domain controller +(PDC) emulator is contacted. -You can also refer to the *Server* parameter by its built-in alias, **DC**. +You can also refer to the **Server** parameter by its built-in alias, **DC**. ```yaml Type: System.String @@ -386,6 +526,7 @@ Accept wildcard characters: False ``` ### -Type + Specifies the data type of the registry value for the Registry preference item. The acceptable values for this parameter are: @@ -398,10 +539,13 @@ The acceptable values for this parameter are: - ExpandString - Qword -For more information about these data types, see [Microsoft.Win32.RegistryValueKind Enumeration](https://go.microsoft.com/fwlink/?LinkID=143266) in the MSDN library. +For more information about these data types, see +[Microsoft.Win32.RegistryValueKind Enumeration](https://go.microsoft.com/fwlink/?LinkID=143266) in +the MSDN library. When you configure a Registry preference item for a registry key, do not specify this parameter. -When you configure a Registry preference item for a registry value, specify this parameter together with the *Key*, *ValueName*, and *Value* parameters. +When you configure a Registry preference item for a registry value, specify this parameter together +with the **Key**, **ValueName**, and **Value** parameters. ```yaml Type: RegistryValueKind @@ -417,11 +561,14 @@ Accept wildcard characters: False ``` ### -Value -Specifies the value data of the registry value for the Registry preference item. -For instance, the registry value "HKEY_CURRENT_USER\Control Panel\Colors ActiveTitle" can have the following (value) data: 10 36 106. + +Specifies the value data of the registry value for the Registry preference item. For instance, the +registry value `HKEY_CURRENT_USER\Control Panel\Colors ActiveTitle` can have the following (value) +`data: 10 36 106`. When you configure a Registry preference item for a registry key, do not specify this parameter. -When you configure a Registry preference item for a registry value, specify this parameter together with the *Key*, *ValueName*, and *Type* parameters. +When you configure a Registry preference item for a registry value, specify this parameter together +with the **Key**, **ValueName**, and **Type** parameters. ```yaml Type: PSObject @@ -436,12 +583,15 @@ Accept wildcard characters: False ``` ### -ValueName -Specifies the value name of the registry value for the Registry preference item. -For instance, the registry key "HKEY_CURRENT_USER\Control Panel\Colors" can have a value with the following name: ActiveTitle. -For the default value of a registry key, specify either "(default)" or an empty string (""). + +Specifies the value name of the registry value for the Registry preference item. For instance, the +registry key `HKEY_CURRENT_USER\Control Panel\Colors` can have a value with the following name: +`ActiveTitle`. For the default value of a registry key, specify either `(default)` or an empty string +`""`. When you configure a Registry preference item for a registry key, do not specify this parameter. -When you configure a Registry preference item for a registry value, specify this parameter together with the *Key*, *Value*, and *Type* parameters. +When you configure a Registry preference item for a registry value, specify this parameter together +with the **Key**, **Value**, and **Type** parameters. ```yaml Type: System.String @@ -457,8 +607,7 @@ Accept wildcard characters: False ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml Type: System.Management.Automation.SwitchParameter @@ -474,13 +623,18 @@ Accept wildcard characters: False ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### Microsoft.GroupPolicy.Gpo, Microsoft.GroupPolicy.PreferenceRegistrySetting -You can pipe a GPO object (in which to configure a specified preference registry setting) to this cmdlet, or a **PreferenceRegistrySetting** object (to configure in a specified GPO). -Collections that contain GPOs from different domains are not supported. + +You can pipe a GPO object (in which to configure a specified preference registry setting) to this +cmdlet, or a **PreferenceRegistrySetting** object (to configure in a specified GPO). Collections +that contain GPOs from different domains are not supported. ## OUTPUTS @@ -492,13 +646,15 @@ This cmdlet returns the GPO in which the Registry preference item was configured * You can use the **Domain** parameter to explicitly specify the domain for this cmdlet. - If you do not explicitly specify the domain, the cmdlet uses a default domain. -The default domain is the domain that is used to access network resources by the security context under which the current session is running. -This domain is typically the domain of the user that is running the session. -For instance, the domain of the user who started the session by opening Windows PowerShell from the Program Files menu, or the domain of a user that is specified in a runas command. -However, computer startup and shutdown scripts run under the context of the LocalSystem account. -The LocalSystem account is a built-in local account, and it accesses network resources under the context of the computer account. -Therefore, when this cmdlet is run from a startup or shutdown script, the default domain is the domain to which the computer is joined. + If you do not explicitly specify the domain, the cmdlet uses a default domain. The default domain + is the domain that is used to access network resources by the security context under which the + current session is running. This domain is typically the domain of the user that is running the + session. For instance, the domain of the user who started the session by opening Windows + PowerShell from the Program Files menu, or the domain of a user that is specified in a runas + command. However, computer startup and shutdown scripts run under the context of the LocalSystem + account. The LocalSystem account is a built-in local account, and it accesses network resources + under the context of the computer account. Therefore, when this cmdlet is run from a startup or + shutdown script, the default domain is the domain to which the computer is joined. ## RELATED LINKS diff --git a/docset/winserver2022-ps/grouppolicy/Set-GPRegistryValue.md b/docset/winserver2022-ps/grouppolicy/Set-GPRegistryValue.md index fee4390176..2eaacfbd21 100644 --- a/docset/winserver2022-ps/grouppolicy/Set-GPRegistryValue.md +++ b/docset/winserver2022-ps/grouppolicy/Set-GPRegistryValue.md @@ -17,6 +17,7 @@ Configures one or more registry-based policy settings under either Computer Conf ## SYNTAX ### ByGUID (Default) + ``` Set-GPRegistryValue -Guid -Key [-ValueName ] [-Value ] [-Type ] [-Domain ] [-Server ] [-Additive] [-Disable] @@ -24,6 +25,7 @@ Set-GPRegistryValue -Guid -Key [-ValueName ] [-Value < ``` ### ByName + ``` Set-GPRegistryValue [-Name] -Key [-ValueName ] [-Value ] [-Type ] [-Domain ] [-Server ] [-Additive] [-Disable] @@ -31,39 +33,56 @@ Set-GPRegistryValue [-Name] -Key [-ValueName ] [-Val ``` ## DESCRIPTION -The **Set-GPRegistryValue** cmdlet configures a registry-based policy setting under either Computer Configuration or User Configuration in a Group Policy Object (GPO). -The policy setting configures keys or values in the registry on the client computer when the GPO is applied. -You can specify the GPO by name or by its GUID, or you can pipe a GPO object to the cmdlet. -You can also pipe a PolicyRegistrySetting object to the cmdlet. +The **Set-GPRegistryValue** cmdlet configures a registry-based policy setting under either Computer +Configuration or User Configuration in a Group Policy Object (GPO). The policy setting configures +keys or values in the registry on the client computer when the GPO is applied. + +You can specify the GPO by name or by its GUID, or you can pipe a GPO object to the cmdlet. You can +also pipe a PolicyRegistrySetting object to the cmdlet. You can configure registry-based policy settings for: -- One or more registry values by passing the *Key*, *ValueName*, *Value*, and *Type* parameters. -For multiple registry values, pass a comma-separated list for both the *ValueName* and *Value* parameters. -When you specify multiple registry values, only the String and ExpandString data types are supported. +- One or more registry values by passing the **Key**, **ValueName**, **Value**, and **Type** + parameters. For multiple registry values, pass a comma-separated list for both the **ValueName** + and **Value** parameters. When you specify multiple registry values, only the `String` and + `ExpandString` data types are supported. -- A list of one or more registry values that share the same name prefix by passing the *Key* and *Type* parameters, and a single value or a comma-separated list for the *Value* parameter. -You can optionally specify the value name prefix by using the *ValuePrefix* parameter. -Only the String and ExpandString data types are supported for lists. +- A list of one or more registry values that share the same name prefix by passing the **Key** and + **Type** parameters, and a single value or a comma-separated list for the **Value** parameter. You + can optionally specify the value name prefix by using the **ValuePrefix** parameter. Only the + `String` and `ExpandString` data types are supported for lists. -You can use the *Additive* parameter to ensure that existing registry values for the key are not overwritten by the new policy setting when the GPO is applied. +You can use the **Additive** parameter to ensure that existing registry values for the key are not +overwritten by the new policy setting when the GPO is applied. -You can also delete registry values on a client when the GPO is applied by disabling a policy setting with the *Disable* parameter. -You can disable: +You can also delete registry values on a client when the GPO is applied by disabling a policy +setting with the **Disable** parameter. You can disable: -- All the registry values under a specified registry key by passing the *Key* parameter. -No subkeys, or their values, are deleted on the client. +- All the registry values under a specified registry key by passing the **Key** parameter. No + subkeys, or their values, are deleted on the client. -- A single registry value by passing the *Key* parameter and the *ValueName* parameter. +- A single registry value by passing the **Key** parameter and the **ValueName** parameter. -- Multiple registry values by passing the *Key* parameter and a comma-separated list for the *ValueName* parameter. +- Multiple registry values by passing the **Key** parameter and a comma-separated list for the + **ValueName** parameter. ## EXAMPLES ### Example 1: Configure a registry-based policy setting for a registry value + ```powershell -Set-GPRegistryValue -Name "TestGPO" -Key "HKCU\Software\Policies\Microsoft\Windows\Control Panel\Desktop" -ValueName "ScreenSaveTimeOut" -Type DWORD -Value 900 +$params = @{ + Name = 'TestGPO' + Key = 'HKCU\Software\Policies\Microsoft\Windows\Control Panel\Desktop' + ValueName = 'ScreenSaveTimeOut' + Value = 900 + Type = 'DWORD' +} +Set-GPRegistryValue @params +``` + +```Output DisplayName : TestGPO DomainName : contoso.com Owner : CONTOSO\Domain Admins @@ -77,68 +96,101 @@ ComputerVersion : AD Version: 34, SysVol Version: 34 WmiFilter : ``` -This command configures a registry-based policy setting for the registry value "HKCU\Software\Policies\Microsoft\Windows\Control ScreenSaverTimeOut" with a value of 900 and a data type of DWord. -This policy setting sets the Screen Saver timeout to 900 seconds (15 minutes) when Group Policy is applied on the client. +This command configures a registry-based policy setting for the registry value +`HKCU\Software\Policies\Microsoft\Windows\Control ScreenSaverTimeOut` with a value of `900` and a +data type of `DWord`. This policy setting sets the Screen Saver timeout to 900 seconds (15 minutes) +when Group Policy is applied on the client. ### Example 1: Configure a registry-based policy settings for multiple registry values + ```powershell -Set-GPRegistryValue -Name "TestGPO" -Key "HKCU\Software\Policies\Microsoft\ExampleKey" -ValueName "ValueOne", "ValueTwo", "ValueThree" -Type String -Value "String 1", "String 2", "String 3" +$params = @{ + Name = 'TestGPO' + Key = 'HKCU\Software\Policies\Microsoft\ExampleKey' + ValueName = 'ValueOne', 'ValueTwo', 'ValueThree' + Value = 'String 1', 'String 2', 'String 3' + Type = 'String' +} +Set-GPRegistryValue @params ``` -This command configures registry-based policy settings to set three registry values. -The policy settings are configured in the User Configuration section of the GPO. -When the GPO is applied on the client, the following registry values are set: +This command configures registry-based policy settings to set three registry values. The policy +settings are configured in the `User` Configuration section of the GPO. When the GPO is applied on +the client, the following registry values are set: -"HKCU\Software\Policies\Microsoft\ExampleKey ValueOne" "String 1" +`HKCU\Software\Policies\Microsoft\ExampleKey ValueOne` `String 1` -"HKCU\Software\Policies\Microsoft\ExampleKey ValueTwo" "String 2" +`HKCU\Software\Policies\Microsoft\ExampleKey ValueTwo` `String 2` -"HKCU\Software\Policies\Microsoft\ExampleKey ValueThree" "String 3" +`HKCU\Software\Policies\Microsoft\ExampleKey ValueThree` `String 3` ### Example 3: Configure a registry-based policy setting to set a list of registry values + ```powershell -Set-GPRegistryValue -Name "TestGPO" -Key "HKCU\Software\Policies\Microsoft\ExampleKey" -ValuePrefix "MyValue" -Type String -Value "String 1", "String 2", "String 3" +$params = @{ + Name = 'TestGPO' + Key = 'HKCU\Software\Policies\Microsoft\ExampleKey' + ValuePrefix = 'MyValue' + Type = 'String' + Value = 'String 1', 'String 2', 'String 3' +} +Set-GPRegistryValue @params ``` -This command configures a registry-based policy setting to set a list of three registry values. -The policy settings are configured in the Computer Configuration section of the GPO. -Because the *Additive* parameter is not specified, when the GPO is applied on the client any list values under the key are deleted -- then, the following registry values are set: +This command configures a registry-based policy setting to set a list of three registry values. The +policy settings are configured in the `User` Configuration section of the GPO. Because the +**Additive** parameter is not specified, when the GPO is applied on the client any list values under +the key are deleted -- then, the following registry values are set: -"HKCU\Software\Policies\Microsoft\ExampleKey MyValue1" "String 1" +`HKCU\Software\Policies\Microsoft\ExampleKey MyValue1` `String 1` -"HKCU\Software\Policies\Microsoft\ExampleKey MyValue2" "String 2" +`HKCU\Software\Policies\Microsoft\ExampleKey MyValue2` `String 2` -"HKCU\Software\Policies\Microsoft\ExampleKey MyValue3" "String 3" +`HKCU\Software\Policies\Microsoft\ExampleKey MyValue3` `String 3` -If you specify the *Additive* parameter, the list values are added to the existing list values on the client when the GPO is applied. -The actual value names assigned to the list values depends on the number of existing list values on the client. +If you specify the **Additive** parameter, the list values are added to the existing list values on +the client when the GPO is applied. The actual value names assigned to the list values depends on +the number of existing list values on the client. ### Example 4: Disable registry-based policy settings for specific registry values + ```powershell -Set-GPRegistryValue -Disable -Name "TestGPO" -Key "HKCU\Software\Policies\Microsoft\ExampleKey" -ValueName "ValueOne", "ValueTwo", "ValueThree" +$params = @{ + Disable = $true + Name = 'TestGPO' + Key = 'HKCU\Software\Policies\Microsoft\ExampleKey' + ValueName = 'ValueOne', 'ValueTwo', 'ValueThree' +} +Set-GPRegistryValue @params ``` -This command disables the registry-based policy settings, in the User Configuration section, for the specified registry values. -When the GPO is applied on the client, the registry values are deleted from the registry on the client. +This command `disables` the registry-based policy settings, in the `User` Configuration section, for +the specified registry values. When the GPO is applied on the client, the registry values are +deleted from the registry on the client. ### Example 5: Disable registry-based policy settings for a specific registry key + ```powershell -Set-GPRegistryValue -Disable -Name "TestGPO" -Key "HKCU\Software\Policies\Microsoft\ExampleKey" +Set-GPRegistryValue -Disable -Name 'TestGPO' -Key 'HKCU\Software\Policies\Microsoft\ExampleKey' ``` -This command disables the registry-based policy setting, in the User Configuration section, for the specified registry key. -When the GPO is applied on the client, all first level values will be deleted from the registry key. -Subkeys and their values are not modified. +This command `disables` the registry-based policy setting, in the `User` Configuration section, for +the specified registry key. When the GPO is applied on the client, all first level values will be +deleted from the registry key. Subkeys and their values are not modified. ## PARAMETERS ### -Additive -Indicates that registry values should be appended to existing values under the key when the GPO is applied on a client. -By default, when Group Policy is processed on a client, existing values under a registry key are deleted before any new values are written to the registry. -By using the *Additive* parameter for a registry-based policy setting, you can specify that the new value should be added to the registry key without deleting the existing values. +Indicates that registry values should be appended to existing values under the key when the GPO is +applied on a client. -You cannot specify the *Disable* parameter with this parameter. +By default, when Group Policy is processed on a client, existing values under a registry key are +deleted before any new values are written to the registry. By using the **Additive** parameter for a +registry-based policy setting, you can specify that the new value should be added to the registry +key without deleting the existing values. + +You cannot specify the **Disable** parameter with this parameter. ```yaml Type: System.Management.Automation.SwitchParameter @@ -169,20 +221,24 @@ Accept wildcard characters: False ``` ### -Disable + Indicates that the cmdlet disables the registry-based policy setting. You can disable a policy setting for a registry key or value: -- For a registry key, specify the *Key* parameter without the *ValueName* parameter. -When the GPO is applied on the client, all of the values directly under the key are removed from the registry. -The key itself is not removed from the registry, nor are any of its subkeys, or their values, removed. +- For a registry key, specify the **Key** parameter without the **ValueName** parameter. When the GPO + is applied on the client, all of the values directly under the key are removed from the registry. + The key itself is not removed from the registry, nor are any of its subkeys, or their values, + removed. -- For a registry value, specify the *Key* parameter together with the *ValueName* parameter. -When the GPO is applied on the client, only the specified value is removed from the registry. +- For a registry value, specify the **Key** parameter together with the **ValueName** parameter. + When the GPO is applied on the client, only the specified value is removed from the registry. -To remove a policy setting from a GPO without affecting existing registry keys or values on a client when Group Policy is processed, use the **Remove-GPRegistryValue** cmdlet. +To remove a policy setting from a GPO without affecting existing registry keys or values on a client +when Group Policy is processed, use the **Remove-GPRegistryValue** cmdlet. -You cannot specify the *Additive*, *Type*, *Value*, or *ValuePrefix* parameters with the *Disable* parameter. +You cannot specify the **Additive**, **Type**, **Value**, or **ValuePrefix** parameters with the +**Disable** parameter. ```yaml Type: System.Management.Automation.SwitchParameter @@ -198,19 +254,22 @@ Accept wildcard characters: False ### -Domain -Specifies the domain for this cmdlet. -You must specify the fully qualified domain name (FQDN) of the domain. +Specifies the domain for this cmdlet. You must specify the fully qualified domain name (FQDN) of the +domain. -For the **Set-GPRegistryValue** cmdlet, the GPO in which to configure the registry-based policy setting must exist in this domain. +For the **Set-GPRegistryValue** cmdlet, the GPO in which to configure the registry-based policy +setting must exist in this domain. -If you do not specify the **Domain** parameter, the domain of the user that is running the current session is used. -If the cmdlet is being run from a computer startup or shutdown script, the domain of the computer is used. -For more information, see the Notes section in the full Help. +If you do not specify the **Domain** parameter, the domain of the user that is running the current +session is used. If the cmdlet is being run from a computer startup or shutdown script, the domain +of the computer is used. For more information, see the Notes section in the full Help. -If you specify a domain that is different from the domain of the user that is running the current session (or, for a startup or shutdown script, the computer), a trust must exist between that domain and the domain of the user or the computer. +If you specify a domain that is different from the domain of the user that is running the current +session (or, for a startup or shutdown script, the computer), a trust must exist between that domain +and the domain of the user or the computer. -You can also refer to the **Domain** parameter by its built-in alias, **DomainName**. -For more information, see [about_Aliases](????????????). +You can also refer to the **Domain** parameter by its built-in alias, **DomainName**. For more +information, see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). ```yaml Type: System.String @@ -226,8 +285,8 @@ Accept wildcard characters: False ### -Guid -Specifies the GPO in which to configure the registry-based policy setting by its globally unique identifier (GUID). -The GUID uniquely identifies the GPO. +Specifies the GPO in which to configure the registry-based policy setting by its globally unique +identifier (GUID). The GUID uniquely identifies the GPO. You can also refer to the **Guid** parameter by its built-in alias, **Id**. @@ -244,13 +303,15 @@ Accept wildcard characters: False ``` ### -Key -Specifies the registry key for the registry-based policy setting; for instance, HKLM\Software\Policies\Microsoft\Windows NT\DNSClient. + +Specifies the registry key for the registry-based policy setting; for instance, +`HKLM\Software\Policies\Microsoft\Windows NT\DNSClient`. The key must be in one of the two following registry hives: -- HKEY_LOCAL_MACHINE (HKLM) for a registry-based policy setting in Computer Configuration. +- `HKEY_LOCAL_MACHINE` (HKLM) for a registry-based policy setting in Computer Configuration. -- HKEY_CURRENT_USER (HKCU) for a registry-based policy setting in User Configuration. +- `HKEY_CURRENT_USER` (HKCU) for a registry-based policy setting in User Configuration. You can also refer to the Key parameter by its built-in alias, FullKeyPath. @@ -267,11 +328,12 @@ Accept wildcard characters: False ``` ### -Name + Specifies the GPO in which to configure the registry-based policy setting by its display name. -The display name is not guaranteed to be unique in the domain. -If another GPO with the same display name exists in the domain, an error occurs. -You can use the **Guid** parameter to uniquely identify a GPO. +The display name is not guaranteed to be unique in the domain. If another GPO with the same display +name exists in the domain, an error occurs. You can use the **Guid** parameter to uniquely identify +a GPO. You can also refer to the **Name** parameter by its built-in alias, **DisplayName**. @@ -289,12 +351,13 @@ Accept wildcard characters: False ### -Server -Specifies the name of the domain controller that this cmdlet contacts to complete the operation. -You can specify either the fully qualified domain name (FQDN) or the host name. +Specifies the name of the domain controller that this cmdlet contacts to complete the operation. You +can specify either the fully qualified domain name (FQDN) or the host name. -If you do not specify the name by using the **Server** parameter, the primary domain controller (PDC) emulator is contacted. +If you do not specify the name by using the **Server** parameter, the primary domain controller +(PDC) emulator is contacted. -You can also refer to the *Server* parameter by its built-in alias, **DC**. +You can also refer to the **Server** parameter by its built-in alias, **DC**. ```yaml Type: System.String @@ -309,6 +372,7 @@ Accept wildcard characters: False ``` ### -Type + Specifies the data type for the registry-based policy setting. The acceptable values for this parameter are: @@ -320,12 +384,14 @@ The acceptable values for this parameter are: - MultiString - QWord -For more information about these data types, see [Microsoft.Win32.RegistryValueKind Enumeration](https://go.microsoft.com/fwlink/?LinkID=143266) in the MSDN library. +For more information about these data types, see +[Microsoft.Win32.RegistryValueKind Enumeration](https://go.microsoft.com/fwlink/?LinkID=143266) in +the MSDN library. -Only the following data types are supported for list values: String and ExpandString. +Only the following data types are supported for list values: `String` and `ExpandString`. You must specify this parameter when you configure a policy setting to set a registry value. -You cannot specify this parameter with the *Disable* parameter. +You cannot specify this parameter with the **Disable** parameter. The following values are permitted for this object type. @@ -343,13 +409,14 @@ Accept wildcard characters: False ``` ### -Value -Specifies the value data for the registry-based policy setting. -You can specify a single value or an array of values. -Use a comma-separated list to specify more than one value. -Only the String and ExpandString data types are supported for an array of values. -At a minimum, you must specify this parameter together with the *Type* and *Key* parameters to configure a policy setting to set a registry value. -You cannot specify this parameter with the *Disable* parameter. +Specifies the value data for the registry-based policy setting. You can specify a single value or an +array of values. Use a comma-separated list to specify more than one value. Only the `String` and +`ExpandString` data types are supported for an array of values. + +At a minimum, you must specify this parameter together with the *Type* and **Key** parameters to +configure a policy setting to set a registry value. You cannot specify this parameter with the +**Disable** parameter. ```yaml Type: PSObject @@ -364,12 +431,14 @@ Accept wildcard characters: False ``` ### -ValueName -Specifies a value name or an array of value names for the registry-based policy setting. -For instance, the registry key HKLM\Software\Policies\Microsoft\Windows NT\DNSClient can have a registry value with the following value name: UseDomainNameDevolution. -Use a comma-separated list to specify more than one value name. -Only the String and ExpandString data types are supported for an array of values. -You cannot specify this parameter with the *ValuePrefix* parameter. +Specifies a value name or an array of value names for the registry-based policy setting. For +instance, the registry key `HKLM\Software\Policies\Microsoft\Windows NT\DNSClient` can have a +registry value with the following value name: `UseDomainNameDevolution`. Use a comma-separated list +to specify more than one value name. Only the `String` and `ExpandString` data types are supported +for an array of values. + +You cannot specify this parameter with the **ValuePrefix** parameter. ```yaml Type: System.String[] @@ -384,19 +453,21 @@ Accept wildcard characters: False ``` ### -ValuePrefix + Specifies a value name prefix for a registry-based policy setting for a list of registry values. -Configures a policy setting that creates the following registry values when Group Policy is applied on the client: +Configures a policy setting that creates the following registry values when Group Policy is applied +on the client: -"HKLM\SOFTWARE\Policies\ExampleKey ExValue1" 100 +`HKLM\SOFTWARE\Policies\ExampleKey ExValue1` `100` -"HKLM\SOFTWARE\Policies\ExampleKey ExValue2" 200 +`HKLM\SOFTWARE\Policies\ExampleKey ExValue2` `200` -"HKLM\SOFTWARE\Policies\ExampleKey ExValue3" 300 +`HKLM\SOFTWARE\Policies\ExampleKey ExValue3` `300` -Only the String and ExpandString data types are supported with the *ValuePrefix* parameter. +Only the `String` and `ExpandString` data types are supported with the **ValuePrefix** parameter. -You cannot specify this parameter with the *ValueName* parameter or the *Disable* parameter. +You cannot specify this parameter with the **ValueName** parameter or the **Disable** parameter. ```yaml Type: System.String @@ -412,8 +483,7 @@ Accept wildcard characters: False ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml Type: System.Management.Automation.SwitchParameter @@ -429,13 +499,19 @@ Accept wildcard characters: False ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### Microsoft.GroupPolicy.Gpo or Microsoft.GroupPolicy.PolicyRegistrySetting -You can pipe a GPO (in which to configure a registry-based policy setting), or a **PolicyRegistrySetting** object that represents a registry-based policy setting (to configure in a specified GPO) to this cmdlet. -Collections that contain GPOs from different domains are not supported. + +You can pipe a GPO (in which to configure a registry-based policy setting), or a +**PolicyRegistrySetting** object that represents a registry-based policy setting (to configure in a +specified GPO) to this cmdlet. Collections that contain GPOs from different domains are not +supported. ## OUTPUTS @@ -445,17 +521,21 @@ This cmdlet returns the GPO in which the registry-based policy setting has been ## NOTES -* The hive of the registry key that you specify, HKEY_LOCAL_MACHINE (HKLM) or HKEY_CURRENT_USER (HKCU), determines whether the registry-based policy setting is in Computer Configuration or User Configuration. +* The hive of the registry key that you specify, `HKEY_LOCAL_MACHINE` (HKLM) or `HKEY_CURRENT_USER` + (HKCU), determines whether the registry-based policy setting is in Computer Configuration or User + Configuration. You can use the **Domain** parameter to explicitly specify the domain for this cmdlet. - If you do not explicitly specify the domain, the cmdlet uses a default domain. -The default domain is the domain that is used to access network resources by the security context under which the current session is running. -This domain is typically the domain of the user that is running the session. -For instance, the domain of the user who started the session by opening Windows PowerShell from the Program Files menu, or the domain of a user that is specified in a runas command. -However, computer startup and shutdown scripts run under the context of the LocalSystem account. -The LocalSystem account is a built-in local account, and it accesses network resources under the context of the computer account. -Therefore, when this cmdlet is run from a startup or shutdown script, the default domain is the domain to which the computer is joined. + If you do not explicitly specify the domain, the cmdlet uses a default domain. The default domain + is the domain that is used to access network resources by the security context under which the + current session is running. This domain is typically the domain of the user that is running the + session. For instance, the domain of the user who started the session by opening Windows + PowerShell from the Program Files menu, or the domain of a user that is specified in a runas + command. However, computer startup and shutdown scripts run under the context of the LocalSystem + account. The LocalSystem account is a built-in local account, and it accesses network resources + under the context of the computer account. Therefore, when this cmdlet is run from a startup or + shutdown script, the default domain is the domain to which the computer is joined. ## RELATED LINKS From 2e478aa047d0b7bc79582b3cedbe2b6d8ce557af Mon Sep 17 00:00:00 2001 From: "Mikey Lombardi (He/Him)" Date: Wed, 3 May 2023 09:51:13 -0500 Subject: [PATCH 701/965] Apply suggestions from review --- docset/winserver2022-ps/deduplication/Stop-DedupJob.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docset/winserver2022-ps/deduplication/Stop-DedupJob.md b/docset/winserver2022-ps/deduplication/Stop-DedupJob.md index 2b85f3669a..95164a48e5 100644 --- a/docset/winserver2022-ps/deduplication/Stop-DedupJob.md +++ b/docset/winserver2022-ps/deduplication/Stop-DedupJob.md @@ -194,7 +194,7 @@ Accept wildcard characters: False Specifies one or more file system volumes on which to cancel one or more named data deduplication jobs. Enter one or more volume IDs, drive letters, or volume GUID paths. For drive letters, use the -format `D:`. For volume GUID paths, use the format `\\\\?\Volume{{GUID}}\`. Separate multiple +format `D:`. For volume GUID paths, use the format `\\?\Volume{{GUID}}\`. Separate multiple volumes with a comma. ```yaml @@ -222,7 +222,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.Management.Infrastructure.CimInstance -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +The **Microsoft.Management.Infrastructure.CimInstance** object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. @@ -232,13 +232,13 @@ namespace and class name for the underlying WMI object. ### Microsoft.Management.Infrastructure.CimInstance -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +The **Microsoft.Management.Infrastructure.CimInstance** object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. ### Microsoft.Management.Infrastructure.CimInstance#ROOT/Microsoft/Windows/Deduplication/MSFT_DedupJob -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +The **Microsoft.Management.Infrastructure.CimInstance** object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. From ffc07f927ade866950a1ce447ea1791e6c3bcf92 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Tue, 2 May 2023 22:08:19 -0400 Subject: [PATCH 702/965] Spelling dictionary additions --- .vscode/cspell/winmodules/dictionaries/winps.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.vscode/cspell/winmodules/dictionaries/winps.txt b/.vscode/cspell/winmodules/dictionaries/winps.txt index 90698b8fc4..12c6406141 100644 --- a/.vscode/cspell/winmodules/dictionaries/winps.txt +++ b/.vscode/cspell/winmodules/dictionaries/winps.txt @@ -5,6 +5,9 @@ Dedup DSRM krbtgt NTDS +reoptimized RODC Sysvol Unoptimization +unoptimization +unoptimizes From 8aff46db7ddef237b2e28fd083bd2b5d5eed09b1 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Tue, 2 May 2023 22:08:39 -0400 Subject: [PATCH 703/965] Style guide fixes --- .../deduplication/Start-DedupJob.md | 208 +++++++++++------- 1 file changed, 126 insertions(+), 82 deletions(-) diff --git a/docset/winserver2022-ps/deduplication/Start-DedupJob.md b/docset/winserver2022-ps/deduplication/Start-DedupJob.md index 82d4f4b3ff..8e3d594ab6 100644 --- a/docset/winserver2022-ps/deduplication/Start-DedupJob.md +++ b/docset/winserver2022-ps/deduplication/Start-DedupJob.md @@ -16,43 +16,52 @@ Starts a data deduplication job. ## SYNTAX ``` -Start-DedupJob [-Type] [[-Volume] ] [-StopWhenSystemBusy] [-Memory ] [-Cores ] - [-Priority ] [-InputOutputThrottle ] [-InputOutputThrottleLevel ] - [-Preempt] [-Wait] [-Full] [-ReadOnly] [-Timestamp ] [-CimSession ] - [-ThrottleLimit ] [-AsJob] [] +Start-DedupJob [-Type] [[-Volume] ] [-StopWhenSystemBusy] + [-Memory ] [-Cores ] [-Priority ] + [-InputOutputThrottle ] [-InputOutputThrottleLevel ] + [-Preempt] [-Wait] [-Full] [-ReadOnly] [-Timestamp ] + [-CimSession ] [-ThrottleLimit ] [-AsJob] [] ``` ## DESCRIPTION -The **Start-DedupJob** starts a new data deduplication job for one or more volumes. -The data deduplication job can queue if the server is running another job on the same volume or if the computer does not have sufficient resources to run the job. -The server marks the queued jobs that you start with this cmdlet as manual jobs and gives the manual jobs priority over scheduled jobs. + +The `Start-DedupJob` starts a new data deduplication job for one or more volumes. The data +deduplication job can queue if the server is running another job on the same volume or if the +computer does not have sufficient resources to run the job. The server marks the queued jobs that +you start with this cmdlet as manual jobs and gives the manual jobs priority over scheduled jobs. The server returns a **DeduplicationJob** object for each job that you start with this cmdlet. -For multi-volume data deduplication jobs, you can use the **Preempt** parameter to move a job to the top of the job queue and cancel the current job. +For multi-volume data deduplication jobs, you can use the **Preempt** parameter to move a job to the +top of the job queue and cancel the current job. ## EXAMPLES ### Example 1: Start an optimization job -``` -PS C:\> Start-DedupJob -Volume "D:" -Type Optimization -Memory 50 + +```powershell +Start-DedupJob -Volume "D:" -Type Optimization -Memory 50 ``` -This command starts a deduplication optimization job on drive D: and consume up to a maximum of 50 percent of RAM. +This command starts a deduplication optimization job on drive `D:` and consume up to a maximum of +`50` percent of RAM. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. + +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -64,12 +73,14 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or +[Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml -Type: CimSession[] +Type: Microsoft.Management.Infrastructure.CimSession[] Parameter Sets: (All) Aliases: Session @@ -81,10 +92,11 @@ Accept wildcard characters: False ``` ### -Cores + Specifies the maximum percentage of physical cores that a job uses. ```yaml -Type: UInt32 +Type: System.UInt32 Parameter Sets: (All) Aliases: MaximumCoresPercentage @@ -96,16 +108,21 @@ Accept wildcard characters: False ``` ### -Full -Indicates that garbage collection jobs free up all deleted or unreferenced data on the volume, if you specify the value GarbageCollection for the **Type** parameter. -If you do not specify this parameter, garbage collection jobs free up space after a system threshold of delete data is exceeded. -We recommend that you run garbage collection regularly without specifying this parameter, and then once a month specify this parameter and run garbage collection again. -If you specify the value Scrubbing for the **Type** parameter, this parameter indicates that scrubbing jobs validate the integrity of all data on the volume. -If you do not specify this parameter, the scrubbing job validates only critical metadata and data integrity issues that data deduplication previously encountered. -We recommend that you run scrubbing regularly without specifying this parameter, and then once a month specify this parameter and run scrubbing again. +Indicates that garbage collection jobs free up all deleted or unreferenced data on the volume, if +you specify the value `GarbageCollection` for the **Type** parameter. If you do not specify this +parameter, garbage collection jobs free up space after a system threshold of delete data is +exceeded. We recommend that you run garbage collection regularly without specifying this parameter, +and then once a month specify this parameter and run garbage collection again. + +If you specify the value `Scrubbing` for the **Type** parameter, this parameter indicates that +scrubbing jobs validate the integrity of all data on the volume. If you do not specify this +parameter, the scrubbing job validates only critical metadata and data integrity issues that data +deduplication previously encountered. We recommend that you run scrubbing regularly without +specifying this parameter, and then once a month specify this parameter and run scrubbing again. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -117,13 +134,14 @@ Accept wildcard characters: False ``` ### -InputOutputThrottle -Specifies the amount of input/output throttling applied to the deduplication job. -Throttling ensures that deduplication does not interfere with other I/O intensive processes. -The acceptable values for this parameter are: integers from 0 to 100. -If you specify this parameter and the **InputOutputThrottleLevel** parameter, **InputOutputThrottle** takes precedence. + +Specifies the amount of input/output throttling applied to the deduplication job. Throttling ensures +that deduplication does not interfere with other I/O intensive processes. The acceptable values for +this parameter are: integers from `0` to `100`. If you specify this parameter and the +**InputOutputThrottleLevel** parameter, **InputOutputThrottle** takes precedence. ```yaml -Type: UInt32 +Type: System.UInt32 Parameter Sets: (All) Aliases: @@ -135,15 +153,17 @@ Accept wildcard characters: False ``` ### -InputOutputThrottleLevel -Specifies the amount of I/O throttling that the job provides to ensure that the job does not interfere with other I/O intensive processes. -The acceptable values for this parameter are: -- None -- Low -- Medium -- High +Specifies the amount of I/O throttling that the job provides to ensure that the job does not +interfere with other I/O intensive processes. The acceptable values for this parameter are: + +- `None` +- `Low` +- `Medium` +- `High` -If you specify this parameter and the **InputOutputThrottle** parameter, **InputOutputThrottle** takes precedence. +If you specify this parameter and the **InputOutputThrottle** parameter, **InputOutputThrottle** +takes precedence. ```yaml Type: InputOutputThrottleLevel @@ -159,13 +179,17 @@ Accept wildcard characters: False ``` ### -Memory -Specifies the maximum percentage of physical computer memory that the data deduplication job can use. -For optimization jobs, we recommend that you set a range from 15 to 50, and a higher memory consumption for jobs that you schedule to run when you specify the **StopWhenSystemBusy** parameter. -For garbage collection and scrubbing jobs, which you typically schedule to run in off hours, you can set a higher memory consumption, such as 50. +Specifies the maximum percentage of physical computer memory that the data deduplication job can +use. + +For optimization jobs, we recommend that you set a range from `15` to `50`, and a higher memory +consumption for jobs that you schedule to run when you specify the **StopWhenSystemBusy** parameter. +For garbage collection and scrubbing jobs, which you typically schedule to run in off hours, you can +set a higher memory consumption, such as `50`. ```yaml -Type: UInt32 +Type: System.UInt32 Parameter Sets: (All) Aliases: MaximumMemoryPercentage @@ -177,14 +201,16 @@ Accept wildcard characters: False ``` ### -Preempt -Indicates that the deduplication engine moves the job to the top of the job queue and cancels the current job. -After the server cancels the current job, the deduplication engine cannot run the preempting job if the server does not have enough memory to run the job. -This parameter applies to manual data deduplication jobs only and is ignored for scheduled jobs. -You can preempt only deduplication jobs on multiple volumes. +Indicates that the deduplication engine moves the job to the top of the job queue and cancels the +current job. After the server cancels the current job, the deduplication engine cannot run the +preempting job if the server does not have enough memory to run the job. + +This parameter applies to manual data deduplication jobs only and is ignored for scheduled jobs. You +can preempt only deduplication jobs on multiple volumes. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -196,9 +222,11 @@ Accept wildcard characters: False ``` ### -Priority -Sets the CPU and I/O priority for the optimization job run that you run by using this cmdlet. -For jobs that you run when you specify the **StopWhenSystemBusy** parameter, we recommend that you set this parameter to Low. -For typical optimization jobs, we recommend that you set this parameter to Normal. + +Sets the CPU and I/O priority for the optimization job run that you run by using this cmdlet. For +jobs that you run when you specify the **StopWhenSystemBusy** parameter, we recommend that you set +this parameter to `Low`. For typical optimization jobs, we recommend that you set this parameter to +`Normal`. ```yaml Type: Priority @@ -214,10 +242,12 @@ Accept wildcard characters: False ``` ### -ReadOnly -Indicates that the scrubbing job process and report on corruptions that it finds but does not run any repair actions. + +Indicates that the scrubbing job process and report on corruptions that it finds but does not run +any repair actions. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -229,11 +259,12 @@ Accept wildcard characters: False ``` ### -StopWhenSystemBusy -Indicates that the server stops the job when the system is busy and retries later. -We recommend that you specify this parameter when you set a low priority for the job. + +Indicates that the server stops the job when the system is busy and retries later. We recommend that +you specify this parameter when you set a low priority for the job. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -245,12 +276,15 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: (All) Aliases: @@ -262,12 +296,13 @@ Accept wildcard characters: False ``` ### -Timestamp -Specifies a date and time. -This parameter applies only to unoptimization jobs. -The deduplication engine unoptimizes only files that it optimized or reoptimized since the **DateTime** value that you specify. + +Specifies a date and time. This parameter applies only to unoptimization jobs. The deduplication +engine unoptimizes only files that it optimized or reoptimized since the **System.DateTime** value +that you specify. ```yaml -Type: DateTime +Type: System.DateTime Parameter Sets: (All) Aliases: @@ -279,12 +314,13 @@ Accept wildcard characters: False ``` ### -Type -Specifies the type of data deduplication job. -The acceptable values for this parameter are: -- Optimization -- GarbageCollection -- Scrubbing -- Unoptimization + +Specifies the type of data deduplication job. The acceptable values for this parameter are: + +- `Optimization` +- `GarbageCollection` +- `Scrubbing` +- `Unoptimization` ```yaml Type: Type @@ -300,11 +336,11 @@ Accept wildcard characters: False ``` ### -Volume + Specifies an array of system volumes for which you want to manually queue data deduplication jobs. -Enter one or more volume IDs, drive letters, or volume GUID paths. -For drive letters, use the format D:. -For volume GUID paths, use the format \\\\?\Volume{{GUID}}\. -Separate multiple volumes with a comma. +Enter one or more volume IDs, drive letters, or volume GUID paths. For drive letters, use the format +`D:`. For volume GUID paths, use the format `\\\\?\Volume{{GUID}}\`. Separate multiple volumes with +a comma. ```yaml Type: String[] @@ -319,10 +355,12 @@ Accept wildcard characters: False ``` ### -Wait -Indicates that the cmdlet waits for the job to complete and provides progress information to the client. + +Indicates that the cmdlet waits for the job to complete and provides progress information to the +client. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -334,7 +372,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -351,8 +393,10 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS ### Microsoft.Management.Infrastructure.CimInstance -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. -The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. + +The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the +namespace and class name for the underlying WMI object. ## NOTES From 4f2499cb3e54f3552d0cabc88fb4a80a09206ab9 Mon Sep 17 00:00:00 2001 From: "Mikey Lombardi (He/Him)" Date: Wed, 3 May 2023 10:11:26 -0500 Subject: [PATCH 704/965] Apply suggestions from review --- docset/winserver2022-ps/deduplication/Start-DedupJob.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docset/winserver2022-ps/deduplication/Start-DedupJob.md b/docset/winserver2022-ps/deduplication/Start-DedupJob.md index 8e3d594ab6..a9526533ff 100644 --- a/docset/winserver2022-ps/deduplication/Start-DedupJob.md +++ b/docset/winserver2022-ps/deduplication/Start-DedupJob.md @@ -339,8 +339,8 @@ Accept wildcard characters: False Specifies an array of system volumes for which you want to manually queue data deduplication jobs. Enter one or more volume IDs, drive letters, or volume GUID paths. For drive letters, use the format -`D:`. For volume GUID paths, use the format `\\\\?\Volume{{GUID}}\`. Separate multiple volumes with -a comma. +`D:`. For volume GUID paths, use the format `\\?\Volume{{GUID}}\`. Separate multiple volumes with a +comma. ```yaml Type: String[] @@ -394,7 +394,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.Management.Infrastructure.CimInstance -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +The **Microsoft.Management.Infrastructure.CimInstance** object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. From c1076c264060fc2a9b9248b704feffa8300a0537 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Tue, 2 May 2023 21:59:41 -0400 Subject: [PATCH 705/965] Spelling dictionary additions --- .vscode/cspell/winmodules/dictionaries/winps.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.vscode/cspell/winmodules/dictionaries/winps.txt b/.vscode/cspell/winmodules/dictionaries/winps.txt index 12c6406141..2b45b6e023 100644 --- a/.vscode/cspell/winmodules/dictionaries/winps.txt +++ b/.vscode/cspell/winmodules/dictionaries/winps.txt @@ -11,3 +11,5 @@ Sysvol Unoptimization unoptimization unoptimizes +unoptimize +unoptimized From 5441bdd41a448bf382a0bed0693d4384535697de Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Tue, 2 May 2023 21:59:56 -0400 Subject: [PATCH 706/965] Style guide fixes --- .../deduplication/Set-DedupVolume.md | 291 +++++++++++------- 1 file changed, 176 insertions(+), 115 deletions(-) diff --git a/docset/winserver2022-ps/deduplication/Set-DedupVolume.md b/docset/winserver2022-ps/deduplication/Set-DedupVolume.md index d0b5c96acb..e3b5622bfa 100644 --- a/docset/winserver2022-ps/deduplication/Set-DedupVolume.md +++ b/docset/winserver2022-ps/deduplication/Set-DedupVolume.md @@ -16,81 +16,104 @@ Changes data deduplication settings on one or more volumes. ## SYNTAX ### ByVolumeId (Default) -```powershell -Set-DedupVolume [-VolumeId ] [-OptimizeInUseFiles] [-OptimizePartialFiles] [-NoCompress ] - [-Verify ] [-MinimumFileAgeDays ] [-MinimumFileSize ] - [-ChunkRedundancyThreshold ] [-ExcludeFolder ] [-ExcludeFileType ] - [-ExcludeFileTypeDefault ] [-NoCompressionFileType ] [-InputOutputScale ] - [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [] + +``` +Set-DedupVolume [-VolumeId ] [-OptimizeInUseFiles] [-OptimizePartialFiles] + [-NoCompress ] [-Verify ] [-MinimumFileAgeDays ] + [-MinimumFileSize ] [-ChunkRedundancyThreshold ] + [-ExcludeFolder ] [-ExcludeFileType ] + [-ExcludeFileTypeDefault ] [-NoCompressionFileType ] + [-InputOutputScale ] [-CimSession ] [-ThrottleLimit ] + [-AsJob] [-PassThru] [] ``` ### ByVolume -```powershell -Set-DedupVolume [-Volume] [-OptimizeInUseFiles] [-OptimizePartialFiles] [-NoCompress ] - [-Verify ] [-MinimumFileAgeDays ] [-MinimumFileSize ] - [-ChunkRedundancyThreshold ] [-ExcludeFolder ] [-ExcludeFileType ] - [-ExcludeFileTypeDefault ] [-NoCompressionFileType ] [-InputOutputScale ] - [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [] + +``` +Set-DedupVolume [-Volume] [-OptimizeInUseFiles] [-OptimizePartialFiles] + [-NoCompress ] [-Verify ] [-MinimumFileAgeDays ] + [-MinimumFileSize ] [-ChunkRedundancyThreshold ] + [-ExcludeFolder ] [-ExcludeFileType ] + [-ExcludeFileTypeDefault ] [-NoCompressionFileType ] + [-InputOutputScale ] [-CimSession ] [-ThrottleLimit ] + [-AsJob] [-PassThru] [] ``` ### InputObject (cdxml) -```powershell + +``` Set-DedupVolume -InputObject [-OptimizeInUseFiles] [-OptimizePartialFiles] - [-NoCompress ] [-Verify ] [-MinimumFileAgeDays ] [-MinimumFileSize ] - [-ChunkRedundancyThreshold ] [-ExcludeFolder ] [-ExcludeFileType ] - [-ExcludeFileTypeDefault ] [-NoCompressionFileType ] [-InputOutputScale ] - [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [] + [-NoCompress ] [-Verify ] [-MinimumFileAgeDays ] + [-MinimumFileSize ] [-ChunkRedundancyThreshold ] + [-ExcludeFolder ] [-ExcludeFileType ] + [-ExcludeFileTypeDefault ] [-NoCompressionFileType ] + [-InputOutputScale ] [-CimSession ] [-ThrottleLimit ] + [-AsJob] [-PassThru] [] ``` ## DESCRIPTION -The **Set-DedupVolume** cmdlet changes data deduplication settings on one or more volumes. + +The `Set-DedupVolume` cmdlet changes data deduplication settings on one or more volumes. ## EXAMPLES ### Example 1: Set the exclude folders on a volume + ```powershell -PS C:\> Set-DedupVolume -Volume "F:" -ExcludeFolder "F:\temp","F:\SQL" +Set-DedupVolume -Volume "F:" -ExcludeFolder "F:\temp","F:\SQL" ``` -This command sets the root folders under which all files are skipped during data deduplication. -The *ExcludeFolder* parameter specifies that the data deduplication engine processes the files in all of the folders on volume F: except for files in the Temp folder and the SQL folder. -If you exclude folders that contain previously optimized files, this command does not unoptimize those files. -You have to manually unoptimze any previously optimized files specified by *ExcludeFolder*. +This command sets the root folders under which all files are skipped during data deduplication. The +**ExcludeFolder** parameter specifies that the data deduplication engine processes the files in all +of the folders on volume `F:` except for files in the Temp folder and the SQL folder. If you exclude +folders that contain previously optimized files, this command does not unoptimize those files. You +have to manually unoptimize any previously optimized files specified by **ExcludeFolder**. -Note if the ExcludeFolder already contains optimized files, those optimized files are not automatically unoptimized by this command. -Any previously optimized files under the ExcludeFolder will need to be manually unoptimized. +Note if the ExcludeFolder already contains optimized files, those optimized files are not +automatically unoptimized by this command. Any previously optimized files under the ExcludeFolder +will need to be manually unoptimized. ### Example 2: Set the minimum file age on a volume + ```powershell -PS C:\> Set-DedupVolume -Volume "E:" -MinimumFileAgeDays 10 +Set-DedupVolume -Volume "E:" -MinimumFileAgeDays 10 ``` -This command sets the number of days since the file was created before the deduplication engine optimizes the file. -The *MinimumFileAgeDays* parameter specifies that the data deduplication engine processes the files in all of the folders on volume E: that were created at least 10 days ago. +This command sets the number of days since the file was created before the deduplication engine +optimizes the file. The **MinimumFileAgeDays** parameter specifies that the data deduplication +engine processes the files in all of the folders on volume `E:` that were created at least `10` days +ago. ### Example 3: Set the chunk redundancy threshold on a volume + ```powershell -PS C:\> Set-DedupVolume -Volume "D:" -MinimumFileAgeDays 15 -ChunkRedundancyThreshold 50 +Set-DedupVolume -Volume "D:" -MinimumFileAgeDays 15 -ChunkRedundancyThreshold 50 ``` -This command sets the number of identical chunks of data that the deduplication engine encounters during deduplication before the server creates a redundant copy of the data chunk. -The *MinimumFileAgeDays* parameter specifies that the data deduplication engine processes the files in all of the folders on volume D: that were created at least 15 days ago. -The *ChunkRedundancyThreshold* parameter specifies that if the data deduplication engine discovers 50 chunks of identical data, it makes one redundant copy as a safeguard. +This command sets the number of identical chunks of data that the deduplication engine encounters +during deduplication before the server creates a redundant copy of the data chunk. The +**MinimumFileAgeDays** parameter specifies that the data deduplication engine processes the files in +all of the folders on volume `D:` that were created at least `15` days ago. The +**ChunkRedundancyThreshold** parameter specifies that if the data deduplication engine discovers +`50` chunks of identical data, it makes one redundant copy as a safeguard. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. + +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -102,16 +125,19 @@ Accept wildcard characters: False ``` ### -ChunkRedundancyThreshold -Specifies the number of identical chunks of data that the deduplication engine encounters before the server creates a redundant copy of the data chunk. -This increases the reliability of the server by adding redundancy to the most referenced chunks of data. -Deduplication detects corruptions and the deduplication scrubbing job restores the corrupted chunks from a redundant copy, if it is available. -The default value is 100. -The minimum value that you can set is 20. -A low value for the *ChunkRedundancyThreshold* parameter reduces the effectiveness of data deduplication by creating more redundant copies of a chunk, and consumes more memory and disk space. +Specifies the number of identical chunks of data that the deduplication engine encounters before the +server creates a redundant copy of the data chunk. This increases the reliability of the server by +adding redundancy to the most referenced chunks of data. + +Deduplication detects corruptions and the deduplication scrubbing job restores the corrupted chunks +from a redundant copy, if it is available. The default value is `100`. The minimum value that you +can set is `20`. A low value for the **ChunkRedundancyThreshold** parameter reduces the +effectiveness of data deduplication by creating more redundant copies of a chunk, and consumes more +memory and disk space. ```yaml -Type: UInt32 +Type: System.UInt32 Parameter Sets: (All) Aliases: @@ -123,12 +149,14 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or +[Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml -Type: CimSession[] +Type: Microsoft.Management.Infrastructure.CimSession[] Parameter Sets: (All) Aliases: Session @@ -140,12 +168,13 @@ Accept wildcard characters: False ``` ### -ExcludeFileType -Specifies an array of extension types that the deduplication engine excludes from data deduplication and optimization. -Specify comma-separated values that are not preceded with a period (.). -When you change this setting, you override the existing values. + +Specifies an array of extension types that the deduplication engine excludes from data deduplication +and optimization. Specify comma-separated values that are not preceded with a period (`.`). When you +change this setting, you override the existing values. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: (All) Aliases: @@ -157,13 +186,15 @@ Accept wildcard characters: False ``` ### -ExcludeFileTypeDefault + Specifies an array of extension types, as strings, that the server does not optimize. -The **Enable-DedupVolume** cmdlet modifies this behavior, depending on the value of the *UsageType* parameter. -If you use the current parameter to modify this behavior, and then run Enable-DedupVolume again, that cmdlet overrides your changes. +The `Enable-DedupVolume` cmdlet modifies this behavior, depending on the value of the **UsageType** +parameter. If you use the current parameter to modify this behavior, and then run +`Enable-DedupVolume` again, that cmdlet overrides your changes. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: (All) Aliases: @@ -175,12 +206,13 @@ Accept wildcard characters: False ``` ### -ExcludeFolder -Specifies an array of names of root folders under which all files are skipped during data deduplication. -Full paths are accepted, however mount points are ignored since the mount point can change after configuration. -When you change this setting, you override the existing values. + +Specifies an array of names of root folders under which all files are skipped during data +deduplication. Full paths are accepted, however mount points are ignored since the mount point can +change after configuration. When you change this setting, you override the existing values. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: (All) Aliases: @@ -192,11 +224,12 @@ Accept wildcard characters: False ``` ### -InputObject -Specifies the input to this cmdlet. -You can use this parameter, or you can pipe the input to this cmdlet. + +Specifies the input to this cmdlet. You can use this parameter, or you can pipe the input to this +cmdlet. ```yaml -Type: CimInstance[] +Type: Microsoft.Management.Infrastructure.CimInstance[] Parameter Sets: InputObject (cdxml) Aliases: @@ -208,12 +241,14 @@ Accept wildcard characters: False ``` ### -InputOutputScale -Specifies the level of input/output parallelization during optimization for this volume. -The acceptable values for this parameter are: integers from 0 to 36. -The default value of 0 sets the system to automatically select an **InputOutputScale** value based on the size of the volume to deduplicate. + +Specifies the level of input/output parallelization during optimization for this volume. The +acceptable values for this parameter are: integers from `0` to `36`. The default value of `0` sets +the system to automatically select an **InputOutputScale** value based on the size of the volume to +deduplicate. ```yaml -Type: UInt32 +Type: System.UInt32 Parameter Sets: (All) Aliases: @@ -225,12 +260,16 @@ Accept wildcard characters: False ``` ### -MinimumFileAgeDays -Number of days after the file is created before the file is considered to be in-policy for optimization. -The **Default** and **HyperV** usage types set this value to 3 to maximize performance on hot or recently created files. You may want to modify this if you want Data Deduplication to be more aggressive or if you do not care about the extra latency associated with deduplication. +Number of days after the file is created before the file is considered to be in-policy for +optimization. + +The `Default` and `HyperV` **UsageType** set this value to `3` to maximize performance on hot or +recently created files. You may want to modify this if you want Data Deduplication to be more +aggressive or if you do not care about the extra latency associated with deduplication. ```yaml -Type: UInt32 +Type: System.UInt32 Parameter Sets: (All) Aliases: MinimumFileAge @@ -242,11 +281,12 @@ Accept wildcard characters: False ``` ### -MinimumFileSize -Specifies the minimum size threshold, in bytes, for files that are optimized. -The deduplication engine does not optimize files that do not meet the minimum threshold. + +Specifies the minimum size threshold, in bytes, for files that are optimized. The deduplication +engine does not optimize files that do not meet the minimum threshold. ```yaml -Type: UInt32 +Type: System.UInt32 Parameter Sets: (All) Aliases: @@ -258,11 +298,12 @@ Accept wildcard characters: False ``` ### -NoCompress -Indicates whether or not the server compresses data after deduplication. -Compression uses more processor cycles but provides additional space savings. + +Indicates whether or not the server compresses data after deduplication. Compression uses more +processor cycles but provides additional space savings. ```yaml -Type: Boolean +Type: System.Boolean Parameter Sets: (All) Aliases: @@ -274,13 +315,14 @@ Accept wildcard characters: False ``` ### -NoCompressionFileType -Specifies an array of file types that the deduplication engine excludes from compression. -These file types are deduplicated but not compressed, typically because the file format is already compressed. -Specify comma-separated values that are not preceded with a period (.). -When you change this setting, you override the existing values. + +Specifies an array of file types that the deduplication engine excludes from compression. These file +types are deduplicated but not compressed, typically because the file format is already compressed. +Specify comma-separated values that are not preceded with a period (`.`). When you change this +setting, you override the existing values. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: (All) Aliases: @@ -292,14 +334,16 @@ Accept wildcard characters: False ``` ### -OptimizeInUseFiles -Indicates that the server attempts to optimize currently open files. -After specifying this parameter, the server may wait up to 15 minutes before it attempts to optimize open files. -**Enable-DedupVolume** modifies this behavior, depending on the value of the *UsageType* parameter. -If you use the current parameter to modify this behavior, and then run **Enable-DedupVolume** again, that cmdlet overrides your changes. +Indicates that the server attempts to optimize currently open files. After specifying this +parameter, the server may wait up to 15 minutes before it attempts to optimize open files. + +`Enable-DedupVolume` modifies this behavior, depending on the value of the **UsageType** parameter. +If you use the current parameter to modify this behavior, and then run `Enable-DedupVolume` again, +that cmdlet overrides your changes. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -311,13 +355,16 @@ Accept wildcard characters: False ``` ### -OptimizePartialFiles -Indicates that the server optimizes all files, including portions of files that are old enough, according to the value of the *MinimumFileAgeDays* parameter. -**Enable-DedupVolume** modifies this behavior, depending on the value of the *UsageType* parameter. -If you use the current parameter to modify this behavior, and then run **Enable-DedupVolume** again, that cmdlet overrides your changes. +Indicates that the server optimizes all files, including portions of files that are old enough, +according to the value of the **MinimumFileAgeDays** parameter. + +`Enable-DedupVolume` modifies this behavior, depending on the value of the **UsageType** parameter. +If you use the current parameter to modify this behavior, and then run `Enable-DedupVolume` again, +that cmdlet overrides your changes. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -329,11 +376,12 @@ Accept wildcard characters: False ``` ### -PassThru -Returns an object representing the item with which you are working. -By default, this cmdlet does not generate any output. + +Returns an object representing the item with which you are working. By default, this cmdlet does not +generate any output. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -345,12 +393,15 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: (All) Aliases: @@ -362,12 +413,14 @@ Accept wildcard characters: False ``` ### -Verify -Indicates whether the deduplication engine performs a byte-for-byte verification for each duplicate chunk that optimization creates, rather than relying on a cryptographically strong hash. -We do not recommend that you use this parameter. -Setting this parameter to $True can degrade optimization performance. + +Indicates whether the deduplication engine performs a byte-for-byte verification for each duplicate +chunk that optimization creates, rather than relying on a cryptographically strong hash. We do not +recommend that you use this parameter. Setting this parameter to $True can degrade optimization +performance. ```yaml -Type: Boolean +Type: System.Boolean Parameter Sets: (All) Aliases: @@ -379,14 +432,13 @@ Accept wildcard characters: False ``` ### -Volume -Specifies an array of system volumes. -Specify one or more volume IDs, drive letters, or volume GUID paths. -For drive letters, use the format D:. -For volume GUID paths, use the format \\\\?\Volume{{GUID}}\. -Separate multiple volumes with a comma. + +Specifies an array of system volumes. Specify one or more volume IDs, drive letters, or volume GUID +paths. For drive letters, use the format `D:`. For volume GUID paths, use the format +`\\\\?\Volume{{GUID}}\`. Separate multiple volumes with a comma. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: ByVolume Aliases: @@ -398,10 +450,11 @@ Accept wildcard characters: False ``` ### -VolumeId -Specifies an array of volume IDs. + +Specifies an array of volume IDs. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: ByVolumeId Aliases: DeviceId, Path, Id @@ -413,21 +466,29 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### System.String[] ### Microsoft.Management.Infrastructure.CimInstance -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. -The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. + +The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the +namespace and class name for the underlying WMI object. ## OUTPUTS ### Microsoft.Management.Infrastructure.CimInstance -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. -The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. + +The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the +namespace and class name for the underlying WMI object. ### Microsoft.Management.Infrastructure.CimInstance#ROOT/Microsoft/Windows/Deduplication/MSFT_DedupVolume From cc724935b382345fb250b1613af27fdf9506c28e Mon Sep 17 00:00:00 2001 From: "Mikey Lombardi (He/Him)" Date: Wed, 3 May 2023 10:40:39 -0500 Subject: [PATCH 707/965] Apply suggestions from review --- docset/winserver2022-ps/deduplication/Set-DedupVolume.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docset/winserver2022-ps/deduplication/Set-DedupVolume.md b/docset/winserver2022-ps/deduplication/Set-DedupVolume.md index e3b5622bfa..1a7ee2256d 100644 --- a/docset/winserver2022-ps/deduplication/Set-DedupVolume.md +++ b/docset/winserver2022-ps/deduplication/Set-DedupVolume.md @@ -435,7 +435,7 @@ Accept wildcard characters: False Specifies an array of system volumes. Specify one or more volume IDs, drive letters, or volume GUID paths. For drive letters, use the format `D:`. For volume GUID paths, use the format -`\\\\?\Volume{{GUID}}\`. Separate multiple volumes with a comma. +`\\?\Volume{{GUID}}\`. Separate multiple volumes with a comma. ```yaml Type: System.String[] @@ -478,7 +478,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.Management.Infrastructure.CimInstance -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +The **Microsoft.Management.Infrastructure.CimInstance** object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. @@ -486,7 +486,7 @@ namespace and class name for the underlying WMI object. ### Microsoft.Management.Infrastructure.CimInstance -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +The **Microsoft.Management.Infrastructure.CimInstance** object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. From 47313edd327c5772fbdfd0fd3e9335b4ea608f0f Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Tue, 2 May 2023 21:42:31 -0400 Subject: [PATCH 708/965] Style guide fixes --- .../deduplication/Set-DedupSchedule.md | 297 +++++++++++------- 1 file changed, 188 insertions(+), 109 deletions(-) diff --git a/docset/winserver2022-ps/deduplication/Set-DedupSchedule.md b/docset/winserver2022-ps/deduplication/Set-DedupSchedule.md index 2d59f0d640..fbf1a5071a 100644 --- a/docset/winserver2022-ps/deduplication/Set-DedupSchedule.md +++ b/docset/winserver2022-ps/deduplication/Set-DedupSchedule.md @@ -16,70 +16,111 @@ Changes configuration settings for data deduplication schedules. ## SYNTAX ### Query (cdxml) (Default) + ``` -Set-DedupSchedule [-Name] [-Type ] [-DurationHours ] [-Enabled ] - [-StopWhenSystemBusy ] [-Memory ] [-Cores ] [-Priority ] - [-InputOutputThrottle ] [-InputOutputThrottleLevel ] [-Start ] - [-Days ] [-Full ] [-ReadOnly ] [-CimSession ] - [-ThrottleLimit ] [-AsJob] [-PassThru] [] +Set-DedupSchedule [-Name] [-Type ] [-DurationHours ] + [-Enabled ] [-StopWhenSystemBusy ] [-Memory ] [-Cores ] + [-Priority ] [-InputOutputThrottle ] + [-InputOutputThrottleLevel ] [-Start ] + [-Days ] [-Full ] [-ReadOnly ] + [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] + [] ``` ### InputObject (cdxml) + ``` -Set-DedupSchedule -InputObject [-DurationHours ] [-Enabled ] - [-StopWhenSystemBusy ] [-Memory ] [-Cores ] [-Priority ] - [-InputOutputThrottle ] [-InputOutputThrottleLevel ] [-Start ] - [-Days ] [-Full ] [-ReadOnly ] [-CimSession ] - [-ThrottleLimit ] [-AsJob] [-PassThru] [] +Set-DedupSchedule -InputObject [-DurationHours ] + [-Enabled ] [-StopWhenSystemBusy ] [-Memory ] [-Cores ] + [-Priority ] [-InputOutputThrottle ] + [-InputOutputThrottleLevel ] [-Start ] + [-Days ] [-Full ] [-ReadOnly ] + [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] + [] ``` ## DESCRIPTION -The **Set-DedupSchedule** cmdlet changes configuration settings for one or more data deduplication schedules. + +The `Set-DedupSchedule` cmdlet changes configuration settings for one or more data deduplication +schedules. ## EXAMPLES ### Example 1: Change settings of a data deduplication schedule for a garbage collection job -``` -PS C:\> Set-DedupSchedule -Name "OffHoursGC" -Type GarbageCollection -Start 08:00 -DurationHours 5 -Days Sunday -Priority Normal + +```powershell +$params = @{ + Days = Sunday + DurationHours = 5 + Name = "OffHoursGC" + Priority = Normal + Start = 08:00 + Type = GarbageCollection +} +Set-DedupSchedule @params ``` -This command changes the settings of a data deduplication schedule for a garbage collection job named OffHoursGC. -The job is scheduled to run on Sundays at 8:00 at normal priority. -The command specifies that the server cancels the job after 5 hours if the process has not ended. +This command changes the settings of a data deduplication schedule for a garbage collection job +named `OffHoursGC`. The job is scheduled to run every `Sunday` at `08:00` with `Normal` +**Priority**. The command specifies that the server cancels the job after `5` hours if the process +has not ended. ### Example 2: Change settings of a data deduplication schedule for a scrubbing job -``` -PS C:\> Set-DedupSchedule -Name "OffHoursScrub" -Type Scrubbing -Start 23:00 -StopWhenSystemBusy -DurationHours 6 -Days Monday,Tuesday,Wednesday,Thursday,Friday -Priority Normal + +```powershell +$params = @{ + Days = Monday,Tuesday,Wednesday,Thursday,Friday + DurationHours = 6 + Name = "OffHoursScrub" + Priority = Normal + Start = 23:00 + StopWhenSystemBusy = $true + Type = Scrubbing +} +Set-DedupSchedule @params ``` -This command changes the settings of a data deduplication schedule for a scrubbing job named OffHoursScrub. -The command starts the scrubbing job at 23:00 on Monday through Friday at normal priority. -The **StopWhenSystemBusy** parameter specifies that the server stops the job when the system is busy and retries later. -The **DurationHours** parameter specifies that the server cancels the job after 6 hours if the process has not ended. +This command changes the settings of a data deduplication schedule for a `Scrubbing` **Type** job +with a **Name** of `OffHoursScrub`. The command starts the scrubbing job at `23:00` every day Monday +through Friday at normal priority. The **StopWhenSystemBusy** parameter specifies that the server +stops the job when the system is busy and retries later. The **DurationHours** parameter specifies +that the server cancels the job after `6` hours if the process has not ended. ### Example 3: Change settings of a data deduplication schedule for an optimization job -``` -PS C:\> Set-DedupSchedule -Name "MyWeekendOptimization" -Type Optimization -Days Monday,Tuesday,Wednesday,Thursday,Friday -Start 08:00 -DurationHours 9 + +```powershell +$params = @{ + Days = Monday,Tuesday,Wednesday,Thursday,Friday + DurationHours = 9 + Name = "MyWeekendOptimization" + Start = 08:00 + Type = Optimization +} +Set-DedupSchedule @params ``` -This command changes the settings of a data deduplication schedule for an optimization job named MyWeekdayOptimization. -The optimization job runs at a normal priority every weekday evening at 8:00. -**DurationHours** specifies that the server cancels the job after 9 hours if the process has not ended. +This command changes the settings of a data deduplication schedule for an optimization job named +`MyWeekdayOptimization`. The optimization job runs at a `Normal` **Priority** every weekday evening +at `08:00`. **DurationHours** specifies that the server cancels the job after `9` hours if the +process has not ended. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. + +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -91,12 +132,14 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or +[Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml -Type: CimSession[] +Type: Microsoft.Management.Infrastructure.CimSession[] Parameter Sets: (All) Aliases: Session @@ -108,10 +151,11 @@ Accept wildcard characters: False ``` ### -Cores + Specifies the maximum percentage of physical cores that a job uses. ```yaml -Type: UInt32 +Type: System.UInt32 Parameter Sets: (All) Aliases: MaximumCoresPercentage @@ -123,19 +167,20 @@ Accept wildcard characters: False ``` ### -Days -Specifies an array of days of the week on which the server runs the data deduplication job. -The acceptable values for this parameter are: -- Monday -- Tuesday -- Wednesday -- Thursday -- Friday -- Saturday -- Sunday +Specifies an array of days of the week on which the server runs the data deduplication job. The +acceptable values for this parameter are: + +- `Monday` +- `Tuesday` +- `Wednesday` +- `Thursday` +- `Friday` +- `Saturday` +- `Sunday` ```yaml -Type: DayOfWeek[] +Type: System.DayOfWeek[] Parameter Sets: (All) Aliases: Accepted values: Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday @@ -148,12 +193,13 @@ Accept wildcard characters: False ``` ### -DurationHours -Specifies the number of hours that the server runs the task before canceling it. -The value 0 indicates that the server runs the job to completion. -This cmdlet safely stops a data deduplication job and does not affect the files that the server is processing when it cancels the job. + +Specifies the number of hours that the server runs the task before canceling it. The value 0 +indicates that the server runs the job to completion. This cmdlet safely stops a data deduplication +job and does not affect the files that the server is processing when it cancels the job. ```yaml -Type: UInt32 +Type: System.UInt32 Parameter Sets: (All) Aliases: @@ -165,10 +211,11 @@ Accept wildcard characters: False ``` ### -Enabled + Indicates whether a data deduplication schedule is enabled. ```yaml -Type: Boolean +Type: System.Boolean Parameter Sets: (All) Aliases: @@ -180,16 +227,21 @@ Accept wildcard characters: False ``` ### -Full -Indicates that garbage collection jobs free up all deleted or unreferenced data on the volume, if you specify the value GarbageCollection for the **Type** parameter. -If you do not specify this parameter, garbage collection jobs free up space after a system threshold of delete data is exceeded. -We recommend that you run garbage collection regularly without specifying this parameter, and then once a month specify this parameter and run garbage collection again. -If you specify the value Scrubbing for the **Type** parameter, this parameter indicates that scrubbing jobs validate the integrity of all data on the volume. -If you do not specify this parameter, the scrubbing job validates only critical metadata and data integrity issues that data deduplication previously encountered. -We recommend that you run scrubbing regularly without specifying this parameter, and then once a month specify this parameter and run scrubbing again. +Indicates that garbage collection jobs free up all deleted or unreferenced data on the volume, if +you specify the value `GarbageCollection` for the **Type** parameter. If you do not specify this +parameter, garbage collection jobs free up space after a system threshold of delete data is +exceeded. We recommend that you run garbage collection regularly without specifying this parameter, +and then once a month specify this parameter and run garbage collection again. + +If you specify the value `Scrubbing` for the **Type** parameter, this parameter indicates that +scrubbing jobs validate the integrity of all data on the volume. If you do not specify this +parameter, the scrubbing job validates only critical metadata and data integrity issues that data +deduplication previously encountered. We recommend that you run scrubbing regularly without +specifying this parameter, and then once a month specify this parameter and run scrubbing again. ```yaml -Type: Boolean +Type: System.Boolean Parameter Sets: (All) Aliases: @@ -201,11 +253,12 @@ Accept wildcard characters: False ``` ### -InputObject -Specifies the input to this cmdlet. -You can use this parameter, or you can pipe the input to this cmdlet. + +Specifies the input to this cmdlet. You can use this parameter, or you can pipe the input to this +cmdlet. ```yaml -Type: CimInstance[] +Type: Microsoft.Management.Infrastructure.CimInstance[] Parameter Sets: InputObject (cdxml) Aliases: @@ -217,13 +270,14 @@ Accept wildcard characters: False ``` ### -InputOutputThrottle -Specifies the amount of input/output throttling applied to the deduplication job. -Throttling ensures that deduplication does not interfere with other I/O intensive processes. -The acceptable values for this parameter are: integers from 0 to 100. -If you specify this parameter and the **InputOutputThrottleLevel** parameter, **InputOutputThrottle** takes precedence. + +Specifies the amount of input/output throttling applied to the deduplication job. Throttling ensures +that deduplication does not interfere with other I/O intensive processes. The acceptable values for +this parameter are: integers from `0` to `100`. If you specify this parameter and the +**InputOutputThrottleLevel** parameter, **InputOutputThrottle** takes precedence. ```yaml -Type: UInt32 +Type: System.UInt32 Parameter Sets: (All) Aliases: @@ -235,13 +289,14 @@ Accept wildcard characters: False ``` ### -InputOutputThrottleLevel -Specifies the amount of I/O throttling that the job provides to ensure that the job does not interfere with other I/O intensive processes. -The acceptable values for this parameter are: -- None -- Low -- Medium -- High +Specifies the amount of I/O throttling that the job provides to ensure that the job does not +interfere with other I/O intensive processes. The acceptable values for this parameter are: + +- `None` +- `Low` +- `Medium` +- `High` ```yaml Type: InputOutputThrottleLevel @@ -257,13 +312,17 @@ Accept wildcard characters: False ``` ### -Memory -Specifies the maximum percentage of physical computer memory that the data deduplication job can use. -For optimization jobs, we recommend that you set a range from 15 to 50, and a higher memory consumption for jobs that you schedule to run when you specify the **StopWhenSystemBusy** parameter. -For garbage collection and scrubbing jobs, which you typically schedule to run in off hours, you can set higher memory consumption, such as 50. +Specifies the maximum percentage of physical computer memory that the data deduplication job can +use. + +For optimization jobs, we recommend that you set a range from `15` to `50`, and a higher memory +consumption for jobs that you schedule to run when you specify the **StopWhenSystemBusy** parameter. +For garbage collection and scrubbing jobs, which you typically schedule to run in off hours, you can +set higher memory consumption, such as `50`. ```yaml -Type: UInt32 +Type: System.UInt32 Parameter Sets: (All) Aliases: MaximumMemoryPercentage @@ -275,10 +334,11 @@ Accept wildcard characters: False ``` ### -Name + Specifies the name of a data deduplication job schedule. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: Query (cdxml) Aliases: @@ -290,11 +350,12 @@ Accept wildcard characters: False ``` ### -PassThru -Returns an object representing the item with which you are working. -By default, this cmdlet does not generate any output. + +Returns an object representing the item with which you are working. By default, this cmdlet does not +generate any output. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -306,9 +367,11 @@ Accept wildcard characters: False ``` ### -Priority -Sets the CPU and I/O priority for the optimization job that you run by using this cmdlet. -For jobs that you run when you specify the **StopWhenSystemBusy** parameter, we recommend that you set this parameter to Low. -For typical optimization jobs, we recommend that you set this parameter to Normal. + +Sets the CPU and I/O priority for the optimization job that you run by using this cmdlet. For jobs +that you run when you specify the **StopWhenSystemBusy** parameter, we recommend that you set this +parameter to `Low`. For typical optimization jobs, we recommend that you set this parameter to +`Normal`. ```yaml Type: Priority @@ -324,10 +387,12 @@ Accept wildcard characters: False ``` ### -ReadOnly -Indicates whether the scrubbing job processes and reports on corruptions that it finds but does not run any repair actions. + +Indicates whether the scrubbing job processes and reports on corruptions that it finds but does not +run any repair actions. ```yaml -Type: Boolean +Type: System.Boolean Parameter Sets: (All) Aliases: @@ -339,13 +404,14 @@ Accept wildcard characters: False ``` ### -Start -Specifies a time to start this job. -The default value is 1:45am. -Type the date in a format that is standard for the system locale, such as dd-MM-yyyy (German \[Germany\]) or MM/dd/yyyy (English \[United States\]). +Specifies a time to start this job. The default value is 1:45am. + +Type the date in a format that is standard for the system locale, such as dd-MM-yyyy (German +\[Germany\]) or MM/dd/yyyy (English \[United States\]). ```yaml -Type: DateTime +Type: System.DateTime Parameter Sets: (All) Aliases: @@ -357,11 +423,12 @@ Accept wildcard characters: False ``` ### -StopWhenSystemBusy -Indicates whether the server stops the job when the system is busy and retries later. -We recommend that you specify this parameter when you set a low priority for the job. + +Indicates whether the server stops the job when the system is busy and retries later. We recommend +that you specify this parameter when you set a low priority for the job. ```yaml -Type: Boolean +Type: System.Boolean Parameter Sets: (All) Aliases: @@ -373,9 +440,12 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml Type: Int32 @@ -390,13 +460,14 @@ Accept wildcard characters: False ``` ### -Type -Specifies an array of types of data deduplication jobs. -The acceptable values for this parameter are: -- Optimization -- GarbageCollection -- Scrubbing -- Unoptimization +Specifies an array of types of data deduplication jobs. The acceptable values for this parameter +are: + +- `Optimization` +- `GarbageCollection` +- `Scrubbing` +- `Unoptimization` ```yaml Type: Type[] @@ -412,7 +483,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -425,12 +500,16 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS ### Microsoft.Management.Infrastructure.CimInstance -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. -The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. + +The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the +namespace and class name for the underlying WMI object. ### Microsoft.Management.Infrastructure.CimInstance#ROOT/Microsoft/Windows/Deduplication/MSFT_DedupJobSchedule -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. -The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. + +The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the +namespace and class name for the underlying WMI object. ## NOTES From affd9111db51aa28ee63bb74f64ca556ec854d5d Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Tue, 2 May 2023 22:30:49 -0400 Subject: [PATCH 709/965] Spelling dictionary additions --- .vscode/cspell/winmodules/dictionaries/winps.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/.vscode/cspell/winmodules/dictionaries/winps.txt b/.vscode/cspell/winmodules/dictionaries/winps.txt index 2b45b6e023..361551b269 100644 --- a/.vscode/cspell/winmodules/dictionaries/winps.txt +++ b/.vscode/cspell/winmodules/dictionaries/winps.txt @@ -6,6 +6,7 @@ DSRM krbtgt NTDS reoptimized +rescan RODC Sysvol Unoptimization From 0dfd8887ad09e1df85747b6b31bca00597e04634 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Tue, 2 May 2023 22:31:14 -0400 Subject: [PATCH 710/965] Style guide fixes --- .../deduplication/Update-DedupStatus.md | 152 ++++++++++-------- 1 file changed, 86 insertions(+), 66 deletions(-) diff --git a/docset/winserver2022-ps/deduplication/Update-DedupStatus.md b/docset/winserver2022-ps/deduplication/Update-DedupStatus.md index eb197898da..085c9ca5eb 100644 --- a/docset/winserver2022-ps/deduplication/Update-DedupStatus.md +++ b/docset/winserver2022-ps/deduplication/Update-DedupStatus.md @@ -16,77 +16,86 @@ Scans volumes for fresh data deduplication savings. ## SYNTAX ``` -Update-DedupStatus [[-Volume] ] [-CimSession ] [-ThrottleLimit ] [-AsJob] - [] +Update-DedupStatus [[-Volume] ] [-CimSession ] + [-ThrottleLimit ] [-AsJob] [] ``` ## DESCRIPTION -The **Update-DedupStatus** cmdlet scans one or more specified volumes to compute fresh data deduplication savings information. -This cmdlet returns a **DeduplicationStatus** object. -For quick access to cached metadata use **Get-DedupStatus**. -When this cmdlet is run on multiple volumes with one cmdlet call, the analysis for each volume is done serially. -Note: On large volumes this cmdlet can run for several minutes and will always perform a rescan after the initial scan. -The default behavior is to wait for completion, regardless of the length of time required to run the scan and rescan. +The `Update-DedupStatus` cmdlet scans one or more specified volumes to compute fresh data +deduplication savings information. This cmdlet returns a **DeduplicationStatus** object. For quick +access to cached metadata use `Get-DedupStatus`. When this cmdlet is run on multiple volumes with +one cmdlet call, the analysis for each volume is done serially. + +Note: On large volumes this cmdlet can run for several minutes and will always perform a rescan +after the initial scan. The default behavior is to wait for completion, regardless of the length of +time required to run the scan and rescan. To run this cmdlet, you must start Windows PowerShell® with the **Run as administrator** option. -This cmdlet returns the following metadata: - -- DedupSavedSpace. -Saved space is the difference between the logical size of the optimized files and the logical size of the store. -This is the deduplicated user data plus data deduplication metadata. -This number changes continually. -- DedupRate. -Data deduplication rate is the ratio of data deduplication saved space to the logical size of all of the files on the volume and is expressed in percentage. -This number will change continually. -- OptimizedFilesCount. -Optimized files count is the number of optimized files on the specified volume. -This number remains steady, instead of decreasing, as users delete files from, or add files to, the volume, until a garbage collection job is run. -This count is most accurate after a garbage collection job runs. -- OptimizedFilesSize. -Optimized files size is the aggregate size of all optimized files on the specified volume. -This number remains steady, instead of decreasing, as users delete files from, or add new files to, the volume, until a garbage collection job is run. -This number is most accurate after a garbage collection job runs. -- InPolicyFilesCount. -In policy files count is the number of files that currently qualify for optimization. -This number stays relatively constant between optimization jobs. -- InPolicyFilesSize. -In policy files size is the aggregate size of all files that currently qualify for optimization. -This number stays relatively constant between optimization jobs. -- LastOptimizationTime. -Last optimization time specifies the data and time when an optimization job was run last on the specified volume. -This date and time stays constant between optimization jobs. -- LastGarbageCollectionTime. -Last garbage collection time specifies the data and time when a garbage collection job was run last on the specified volume. -This date and time stays constant between optimization jobs. -- LastScrubbingTime. -Last scrubbing time specifies the data and time when a scrubbing job was run last on the specified volume. -This date and time stays constant between optimization jobs. +This cmdlet returns the following metadata: + +- `DedupSavedSpace` + - Saved space is the difference between the logical size of the optimized files + and the logical size of the store. This is the deduplicated user data plus data deduplication + metadata. This number changes continually. +- `DedupRate` + - Data deduplication rate is the ratio of data deduplication saved space to the logical + size of all of the files on the volume and is expressed in percentage. This number will change + continually. +- `OptimizedFilesCount` + - Optimized files count is the number of optimized files on the specified volume. This number + remains steady, instead of decreasing, as users delete files from, or add files to, the volume, + until a garbage collection job is run. This count is most accurate after a garbage collection + job runs. +- `OptimizedFilesSize` + - Optimized files size is the aggregate size of all optimized files on the specified volume. This + number remains steady, instead of decreasing, as users delete files from, or add new files to, + the volume, until a garbage collection job is run. This number is most accurate after a garbage + collection job runs. +- `InPolicyFilesCount` + - In policy files count is the number of files that currently qualify for optimization. This + number stays relatively constant between optimization jobs. +- `InPolicyFilesSize` + - In policy files size is the aggregate size of all files that currently qualify for optimization. + This number stays relatively constant between optimization jobs. +- `LastOptimizationTime` + - Last optimization time specifies the data and time when an optimization job was run last on the + specified volume. This date and time stays constant between optimization jobs. +- `LastGarbageCollectionTime` + - Last garbage collection time specifies the data and time when a garbage collection job was run + last on the specified volume. This date and time stays constant between optimization jobs. +- `LastScrubbingTime` + - Last scrubbing time specifies the data and time when a scrubbing job was run last on the + specified volume. This date and time stays constant between optimization jobs. ## EXAMPLES ### Example 1: Scan a volume for savings information -``` -PS C:\> Update-DedupStatus -Volume "D:" + +```powershell +Update-DedupStatus -Volume "D:" ``` -This command scans the D: volume to compute data deduplication savings. +This command scans the `D:` volume to compute data deduplication savings. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. + +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -98,12 +107,14 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or +[Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml -Type: CimSession[] +Type: Microsoft.Management.Infrastructure.CimSession[] Parameter Sets: (All) Aliases: Session @@ -115,12 +126,15 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: (All) Aliases: @@ -132,14 +146,14 @@ Accept wildcard characters: False ``` ### -Volume -Specifies one or more file system volumes for which to scan and compute fresh data deduplication savings information. -Enter one or more volume IDs, drive letters, or volume GUID paths. -For drive letters, use the format D:. -For volume GUID paths, use the format \\\\?\Volume{{GUID}}\. + +Specifies one or more file system volumes for which to scan and compute fresh data deduplication +savings information. Enter one or more volume IDs, drive letters, or volume GUID paths. For drive +letters, use the format `D:`. For volume GUID paths, use the format `\\\\?\Volume{{GUID}}\`. Separate multiple volumes with a comma. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: (All) Aliases: Path, Name, DeviceId @@ -151,7 +165,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -160,8 +178,10 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS ### Microsoft.Management.Infrastructure.CimInstance -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. -The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. + +The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the +namespace and class name for the underlying WMI object. ## NOTES From a2f2463d7e57e872fa3aebf1da5b015bd02a74b8 Mon Sep 17 00:00:00 2001 From: "Mikey Lombardi (He/Him)" Date: Wed, 3 May 2023 11:20:31 -0500 Subject: [PATCH 711/965] Apply suggestions from review --- .../deduplication/Set-DedupSchedule.md | 36 +++++++++++-------- 1 file changed, 21 insertions(+), 15 deletions(-) diff --git a/docset/winserver2022-ps/deduplication/Set-DedupSchedule.md b/docset/winserver2022-ps/deduplication/Set-DedupSchedule.md index fbf1a5071a..3e1c5e7d80 100644 --- a/docset/winserver2022-ps/deduplication/Set-DedupSchedule.md +++ b/docset/winserver2022-ps/deduplication/Set-DedupSchedule.md @@ -50,12 +50,12 @@ schedules. ```powershell $params = @{ - Days = Sunday + Days = 'Sunday' DurationHours = 5 - Name = "OffHoursGC" - Priority = Normal - Start = 08:00 - Type = GarbageCollection + Name = 'OffHoursGC' + Priority = 'Normal' + Start = '08:00' + Type = 'GarbageCollection' } Set-DedupSchedule @params ``` @@ -90,11 +90,17 @@ that the server cancels the job after `6` hours if the process has not ended. ```powershell $params = @{ - Days = Monday,Tuesday,Wednesday,Thursday,Friday + Days = @( + 'Monday' + 'Tuesday' + 'Wednesday' + 'Thursday' + 'Friday' + ) DurationHours = 9 - Name = "MyWeekendOptimization" - Start = 08:00 - Type = Optimization + Name = 'MyWeekendOptimization' + Start = '08:00' + Type = 'Optimization' } Set-DedupSchedule @params ``` @@ -194,7 +200,7 @@ Accept wildcard characters: False ### -DurationHours -Specifies the number of hours that the server runs the task before canceling it. The value 0 +Specifies the number of hours that the server runs the task before canceling it. The value `0` indicates that the server runs the job to completion. This cmdlet safely stops a data deduplication job and does not affect the files that the server is processing when it cancels the job. @@ -405,10 +411,10 @@ Accept wildcard characters: False ### -Start -Specifies a time to start this job. The default value is 1:45am. +Specifies a time to start this job. The default value is `1:45am`. -Type the date in a format that is standard for the system locale, such as dd-MM-yyyy (German -\[Germany\]) or MM/dd/yyyy (English \[United States\]). +Type the date in a format that is standard for the system locale, such as `dd-MM-yyyy` (German +\[Germany\]) or `MM/dd/yyyy` (English \[United States\]). ```yaml Type: System.DateTime @@ -501,13 +507,13 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.Management.Infrastructure.CimInstance -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +The **Microsoft.Management.Infrastructure.CimInstance** object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. ### Microsoft.Management.Infrastructure.CimInstance#ROOT/Microsoft/Windows/Deduplication/MSFT_DedupJobSchedule -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +The **Microsoft.Management.Infrastructure.CimInstance** object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. From 2b4d35eb2fafc04c9a320203bc5e54e01e1ca685 Mon Sep 17 00:00:00 2001 From: "Mikey Lombardi (He/Him)" Date: Wed, 3 May 2023 11:23:40 -0500 Subject: [PATCH 712/965] Apply suggestions from review --- .../deduplication/Update-DedupStatus.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/docset/winserver2022-ps/deduplication/Update-DedupStatus.md b/docset/winserver2022-ps/deduplication/Update-DedupStatus.md index 085c9ca5eb..a380c6d59a 100644 --- a/docset/winserver2022-ps/deduplication/Update-DedupStatus.md +++ b/docset/winserver2022-ps/deduplication/Update-DedupStatus.md @@ -27,9 +27,10 @@ deduplication savings information. This cmdlet returns a **DeduplicationStatus** access to cached metadata use `Get-DedupStatus`. When this cmdlet is run on multiple volumes with one cmdlet call, the analysis for each volume is done serially. -Note: On large volumes this cmdlet can run for several minutes and will always perform a rescan -after the initial scan. The default behavior is to wait for completion, regardless of the length of -time required to run the scan and rescan. +> [!NOTE] +> On large volumes this cmdlet can run for several minutes and will always perform a rescan after +> the initial scan. The default behavior is to wait for completion, regardless of the length of +> time required to run the scan and rescan. To run this cmdlet, you must start Windows PowerShell® with the **Run as administrator** option. @@ -149,7 +150,7 @@ Accept wildcard characters: False Specifies one or more file system volumes for which to scan and compute fresh data deduplication savings information. Enter one or more volume IDs, drive letters, or volume GUID paths. For drive -letters, use the format `D:`. For volume GUID paths, use the format `\\\\?\Volume{{GUID}}\`. +letters, use the format `D:`. For volume GUID paths, use the format `\\?\Volume{{GUID}}\`. Separate multiple volumes with a comma. ```yaml @@ -179,7 +180,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.Management.Infrastructure.CimInstance -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +The **Microsoft.Management.Infrastructure.CimInstance** object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. From 460e9a344477f70a54b18fc8ecc1856c004ca8ba Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Tue, 2 May 2023 20:12:10 -0400 Subject: [PATCH 713/965] Spelling dictionary additions --- .vscode/cspell/winmodules/dictionaries/winps.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.vscode/cspell/winmodules/dictionaries/winps.txt b/.vscode/cspell/winmodules/dictionaries/winps.txt index 361551b269..2fda18e8f5 100644 --- a/.vscode/cspell/winmodules/dictionaries/winps.txt +++ b/.vscode/cspell/winmodules/dictionaries/winps.txt @@ -3,6 +3,8 @@ Cmdletization Dcpromo Dedup DSRM +Hotspot +hotspots krbtgt NTDS reoptimized From f4fdfc9932f94e2ea78dcbb873502453c31584fb Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Tue, 2 May 2023 20:12:29 -0400 Subject: [PATCH 714/965] Style guide fixes --- .../deduplication/Get-DedupMetadata.md | 111 +++++++++++------- 1 file changed, 66 insertions(+), 45 deletions(-) diff --git a/docset/winserver2022-ps/deduplication/Get-DedupMetadata.md b/docset/winserver2022-ps/deduplication/Get-DedupMetadata.md index b09fd7a536..dd2e556804 100644 --- a/docset/winserver2022-ps/deduplication/Get-DedupMetadata.md +++ b/docset/winserver2022-ps/deduplication/Get-DedupMetadata.md @@ -16,68 +16,74 @@ Returns metadata for volumes that have data deduplication metadata. ## SYNTAX ``` -Get-DedupMetadata [[-Volume] ] [-CimSession ] [-ThrottleLimit ] [-AsJob] - [] +Get-DedupMetadata [[-Volume] ] [-CimSession ] + [-ThrottleLimit ] [-AsJob] [] ``` ## DESCRIPTION -The **Get-DedupMetadata** cmdlet returns a **DeduplicationMetadata** object for every volume that has optimization metadata. -A **DeduplicationMetadata** object includes read-only properties describing the nature of the deduplication data store, such as chunk counts, container counts, average chunk size, and other statistics. -Because this cmdlet must scan the entire file system. -this cmdlet requires some time to run. +The `Get-DedupMetadata` cmdlet returns a **DeduplicationMetadata** object for every volume that has +optimization metadata. A **DeduplicationMetadata** object includes read-only properties describing +the nature of the deduplication data store, such as chunk counts, container counts, average chunk +size, and other statistics. -This cmdlet cannot be part of a schedule; it must be run manually. -If another optimization job is running on the specified volume when you start this cmdlet, then this cmdlet fails. -It also fails if there is not enough memory for the file system scan and cmdlet processing. -If the cmdlet fails, then review the events and log files for more information. +Because this cmdlet must scan the entire file system. this cmdlet requires some time to run. + +This cmdlet cannot be part of a schedule; it must be run manually. If another optimization job is +running on the specified volume when you start this cmdlet, then this cmdlet fails. It also fails if +there is not enough memory for the file system scan and cmdlet processing. If the cmdlet fails, then +review the events and log files for more information. To run this cmdlet, you must start Windows PowerShell® with the **Run as administrator** option. -This cmdlet returns the following properties: +This cmdlet returns the following properties: - **DataChunkCount**. -Indicates the number of data chunks in a container. +Indicates the number of data chunks in a container. - **DataContainerCount**. -Indicates the number of containers in the data store. -- **DataChunkAverageSize**. -Indicates the data store size, not including chunk metadata, divided by the total number of data chunks in the data store. +Indicates the number of containers in the data store. +- **DataChunkAverageSize**. Indicates the data store size, not including chunk metadata, divided by + the total number of data chunks in the data store. - **StreamMapCount**. -Indicates the number of data streams in a container. +Indicates the number of data streams in a container. - **StreamMapContainerCount**. -Indicates the number of containers in the stream map store. +Indicates the number of containers in the stream map store. - **StreamMapAverageChunkCount**. -Indicates the stream map store size divided by the total number of streams in the store. +Indicates the stream map store size divided by the total number of streams in the store. - **HotspotCount**. -Indicates the number of hotspots in a container. +Indicates the number of hotspots in a container. - **HotspotContainerCount**. -Indicates the number of hotspots in the stream map store. +Indicates the number of hotspots in the stream map store. - **CorruptionCount**. Indicates the number of corruptions found on the volume. ## EXAMPLES ### Example 1: Get metadata for a volume -``` -PS C:\> Get-DedupMetadata -Volume "D:" + +```powershell +Get-DedupMetadata -Volume "D:" ``` -This command gets metadata for the D: volume. +This command gets metadata for the `D:` volume. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. + +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -89,12 +95,14 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or +[Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml -Type: CimSession[] +Type: Microsoft.Management.Infrastructure.CimSession[] Parameter Sets: (All) Aliases: Session @@ -106,12 +114,15 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: (All) Aliases: @@ -123,10 +134,12 @@ Accept wildcard characters: False ``` ### -Volume -Specifies one or more file system volumes for which to return a **DeduplicationVolumeMetadata** object. + +Specifies one or more file system volumes for which to return a **DeduplicationVolumeMetadata** +object. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: (All) Aliases: Path, Name, DeviceId @@ -138,7 +151,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -147,12 +164,16 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS ### Microsoft.Management.Infrastructure.CimInstance -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. -The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. + +The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the +namespace and class name for the underlying WMI object. ### Microsoft.Management.Infrastructure.CimInstance#ROOT/Microsoft/Windows/Deduplication/MSFT_DedupVolumeMetadata -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. -The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. + +The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the +namespace and class name for the underlying WMI object. ## NOTES From a3a0f1238ef100b79e4f84547e9b1789cf72e4e1 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Tue, 2 May 2023 20:14:44 -0400 Subject: [PATCH 715/965] Alphabetically sorting property list --- .../deduplication/Get-DedupMetadata.md | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/docset/winserver2022-ps/deduplication/Get-DedupMetadata.md b/docset/winserver2022-ps/deduplication/Get-DedupMetadata.md index dd2e556804..ee6290002e 100644 --- a/docset/winserver2022-ps/deduplication/Get-DedupMetadata.md +++ b/docset/winserver2022-ps/deduplication/Get-DedupMetadata.md @@ -38,24 +38,24 @@ To run this cmdlet, you must start Windows PowerShell® with the **Run as admini This cmdlet returns the following properties: +- **CorruptionCount**. +Indicates the number of corruptions found on the volume. +- **DataChunkAverageSize**. Indicates the data store size, not including chunk metadata, divided by + the total number of data chunks in the data store. - **DataChunkCount**. Indicates the number of data chunks in a container. - **DataContainerCount**. Indicates the number of containers in the data store. -- **DataChunkAverageSize**. Indicates the data store size, not including chunk metadata, divided by - the total number of data chunks in the data store. -- **StreamMapCount**. -Indicates the number of data streams in a container. -- **StreamMapContainerCount**. -Indicates the number of containers in the stream map store. -- **StreamMapAverageChunkCount**. -Indicates the stream map store size divided by the total number of streams in the store. -- **HotspotCount**. -Indicates the number of hotspots in a container. - **HotspotContainerCount**. Indicates the number of hotspots in the stream map store. -- **CorruptionCount**. -Indicates the number of corruptions found on the volume. +- **HotspotCount**. +Indicates the number of hotspots in a container. +- **StreamMapAverageChunkCount**. +Indicates the stream map store size divided by the total number of streams in the store. +- **StreamMapContainerCount**. +Indicates the number of containers in the stream map store. +- **StreamMapCount**. +Indicates the number of data streams in a container. ## EXAMPLES From fd6258e3639dae26381706382431620abf345c7a Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Tue, 2 May 2023 22:34:25 -0400 Subject: [PATCH 716/965] Style guide fixes --- .../deduplication/Get-DedupMetadata.md | 37 ++++++++++--------- 1 file changed, 19 insertions(+), 18 deletions(-) diff --git a/docset/winserver2022-ps/deduplication/Get-DedupMetadata.md b/docset/winserver2022-ps/deduplication/Get-DedupMetadata.md index ee6290002e..ac788ce2ef 100644 --- a/docset/winserver2022-ps/deduplication/Get-DedupMetadata.md +++ b/docset/winserver2022-ps/deduplication/Get-DedupMetadata.md @@ -38,24 +38,25 @@ To run this cmdlet, you must start Windows PowerShell® with the **Run as admini This cmdlet returns the following properties: -- **CorruptionCount**. -Indicates the number of corruptions found on the volume. -- **DataChunkAverageSize**. Indicates the data store size, not including chunk metadata, divided by - the total number of data chunks in the data store. -- **DataChunkCount**. -Indicates the number of data chunks in a container. -- **DataContainerCount**. -Indicates the number of containers in the data store. -- **HotspotContainerCount**. -Indicates the number of hotspots in the stream map store. -- **HotspotCount**. -Indicates the number of hotspots in a container. -- **StreamMapAverageChunkCount**. -Indicates the stream map store size divided by the total number of streams in the store. -- **StreamMapContainerCount**. -Indicates the number of containers in the stream map store. -- **StreamMapCount**. -Indicates the number of data streams in a container. +- `CorruptionCount` + - Indicates the number of corruptions found on the volume. +- `DataChunkAverageSize` + - Indicates the data store size, not including chunk metadata, divided by the total number of data + chunks in the data store. +- `DataChunkCount` + - Indicates the number of data chunks in a container. +- `DataContainerCount` + - Indicates the number of containers in the data store. +- `HotspotContainerCount` + - Indicates the number of hotspots in the stream map store. +- `HotspotCount` + - Indicates the number of hotspots in a container. +- `StreamMapAverageChunkCount` + - Indicates the stream map store size divided by the total number of streams in the store. +- `StreamMapContainerCount` + - Indicates the number of containers in the stream map store. +- `StreamMapCount` + - Indicates the number of data streams in a container. ## EXAMPLES From eb6920af4e0762adc8dbdafb6c8c04ac1da8c331 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Tue, 2 May 2023 19:23:43 -0400 Subject: [PATCH 717/965] Style guide fixes --- .../deduplication/Deduplication.md | 26 ++++++++++++++++--- 1 file changed, 22 insertions(+), 4 deletions(-) diff --git a/docset/winserver2022-ps/deduplication/Deduplication.md b/docset/winserver2022-ps/deduplication/Deduplication.md index ae1e08bd78..f06be8022a 100644 --- a/docset/winserver2022-ps/deduplication/Deduplication.md +++ b/docset/winserver2022-ps/deduplication/Deduplication.md @@ -10,57 +10,75 @@ title: Deduplication --- # Deduplication Module + ## Description -This reference provides cmdlet descriptions and syntax for all Windows Server Data Deduplication-specific cmdlets. -It lists the cmdlets in alphabetical order based on the verb at the beginning of the cmdlet. + +This reference provides cmdlet descriptions and syntax for all Windows Server Data +Deduplication-specific cmdlets. It lists the cmdlets in alphabetical order based on the verb at the +beginning of the cmdlet. ## Deduplication Cmdlets + ### [Disable-DedupVolume](./Disable-DedupVolume.md) + Disables data deduplication activity on one or more volumes. ### [Enable-DedupVolume](./Enable-DedupVolume.md) + Enables data deduplication on one or more volumes. ### [Expand-DedupFile](./Expand-DedupFile.md) + Expands an optimized file into its original location. ### [Get-DedupJob](./Get-DedupJob.md) + Returns status and information for currently running or queued deduplication jobs. ### [Get-DedupMetadata](./Get-DedupMetadata.md) + Returns metadata for volumes that have data deduplication metadata. ### [Get-DedupSchedule](./Get-DedupSchedule.md) + Returns the deduplication job schedule defined on the computer. ### [Get-DedupStatus](./Get-DedupStatus.md) + Returns deduplication status for volumes that have data deduplication metadata. ### [Get-DedupVolume](./Get-DedupVolume.md) + Returns deduplication volumes that have data deduplication metadata. ### [Measure-DedupFileMetadata](./Measure-DedupFileMetadata.md) + Measures potential disk space on a volume. ### [New-DedupSchedule](./New-DedupSchedule.md) + Creates a data deduplication schedule. ### [Remove-DedupSchedule](./Remove-DedupSchedule.md) + Deletes a deduplication schedule. ### [Set-DedupSchedule](./Set-DedupSchedule.md) + Changes configuration settings for data deduplication schedules. ### [Set-DedupVolume](./Set-DedupVolume.md) + Changes data deduplication settings on one or more volumes. ### [Start-DedupJob](./Start-DedupJob.md) + Starts a data deduplication job. ### [Stop-DedupJob](./Stop-DedupJob.md) + Cancels one or more specified data deduplication jobs. ### [Update-DedupStatus](./Update-DedupStatus.md) -Scans volumes for fresh data deduplication savings. - +Scans volumes for fresh data deduplication savings. From f6c6d57668da983dc454b7fc85160c758c7e28fc Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Tue, 2 May 2023 19:43:48 -0400 Subject: [PATCH 718/965] Style guide fixes --- .../deduplication/Disable-DedupVolume.md | 113 +++++++++++------- 1 file changed, 68 insertions(+), 45 deletions(-) diff --git a/docset/winserver2022-ps/deduplication/Disable-DedupVolume.md b/docset/winserver2022-ps/deduplication/Disable-DedupVolume.md index 2405fa410d..672b28cece 100644 --- a/docset/winserver2022-ps/deduplication/Disable-DedupVolume.md +++ b/docset/winserver2022-ps/deduplication/Disable-DedupVolume.md @@ -16,60 +16,72 @@ Disables data deduplication activity on one or more volumes. ## SYNTAX ``` -Disable-DedupVolume [-Volume] [-DataAccess] [-CimSession ] [-ThrottleLimit ] - [-AsJob] [] +Disable-DedupVolume [-Volume] [-DataAccess] [-CimSession ] + [-ThrottleLimit ] [-AsJob] [] ``` ## DESCRIPTION -The **Disable-DedupVolume** cmdlet disables further data deduplication activity on one or more volumes. -After you disable data deduplication, the volume remains in a deduplicated state and the existing deduplicated data is accessible. -The server stops running data deduplication jobs for the volume and new data is not deduplicated. -To undo data deduplication on a volume, use the **Start-DedupJob** cmdlet and specify Unoptimization for the *Type* parameter. -After you disable data deduplication on a volume, you can perform all read-only deduplication cmdlet operations on the volume. -For example, you can use the **Get-DedupStatus** cmdlet to get deduplication status for a volume that has data deduplication metadata. -After you disable data deduplication on a volume, you cannot use the data deduplication job-related cmdlets and the **Update-DedupStatus** cmdlet to perform operations on the volume. -For example, you cannot use **Start-DedupJob** to start a data deduplication job for a volume on which you have disabled data deduplication. +The `Disable-DedupVolume` cmdlet disables further data deduplication activity on one or more +volumes. After you disable data deduplication, the volume remains in a deduplicated state and the +existing deduplicated data is accessible. The server stops running data deduplication jobs for the +volume and new data is not deduplicated. To undo data deduplication on a volume, use the +`Start-DedupJob` cmdlet and specify `Unoptimization` for the **Type** parameter. + +After you disable data deduplication on a volume, you can perform all read-only deduplication cmdlet +operations on the volume. For example, you can use the `Get-DedupStatus` cmdlet to get deduplication +status for a volume that has data deduplication metadata. After you disable data deduplication on a +volume, you cannot use the data deduplication job-related cmdlets and the `Update-DedupStatus` +cmdlet to perform operations on the volume. For example, you cannot use `Start-DedupJob` to start a +data deduplication job for a volume on which you have disabled data deduplication. ## EXAMPLES ### Example 1: Disable data deduplication on volumes -``` -PS C:\> Disable-DedupVolume -Volume "D:","E:","F:","G:" + +```powershell +Disable-DedupVolume -Volume "D:","E:","F:","G:" ``` This command disables data deduplication for volumes D:, E:, F:, and G:. ### Example 2: Disable data deduplication on a volume by using a GUID -``` -PS C:\> Disable-DedupVolume -Volume "\\?\Volume{26a21bda-a627-11d7-9931-806e6f6e6963}\" + +```powershell +Disable-DedupVolume -Volume "\\?\Volume{26a21bda-a627-11d7-9931-806e6f6e6963}\" ``` -This command disables data deduplication for the volume that has the GUID 26a21bda-a627-11d7-9931-806e6f6e6963. +This command disables data deduplication for the volume that has the GUID +26a21bda-a627-11d7-9931-806e6f6e6963. ### Example 3: Suspend I/O activity for a specified volume -``` -PS C:\> Disable-DedupVolume -Volume "X:" -DataAccess + +```powershell +Disable-DedupVolume -Volume "X:" -DataAccess ``` -This command suspends I/O activity for data deduplication on the specified volume. -Effectively, this command causes the data deduplication file system mini-filter to detach from the specified volume. -After this command completes, I/O to data deduplication files fails with an ERROR_INVALID_FUNCTION error until either the `Enable-DedupVolume -DataAccess` command runs, or the server restarts. +This command suspends I/O activity for data deduplication on the specified volume. Effectively, this +command causes the data deduplication file system mini-filter to detach from the specified volume. +After this command completes, I/O to data deduplication files fails with an ERROR_INVALID_FUNCTION +error until either the `Enable-DedupVolume -DataAccess` command runs, or the server restarts. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. + +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -81,12 +93,14 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or +[Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml -Type: CimSession[] +Type: Microsoft.Management.Infrastructure.CimSession[] Parameter Sets: (All) Aliases: Session @@ -98,10 +112,11 @@ Accept wildcard characters: False ``` ### -DataAccess + Indicates that data access to deduplicated files on the volume is disabled. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -113,12 +128,15 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: (All) Aliases: @@ -130,14 +148,13 @@ Accept wildcard characters: False ``` ### -Volume -Specifies an array of system volumes for which to disable data deduplication. -Specify one or more volume IDs, drive letters, or volume GUID paths. -For drive letters, use the format D:. -For volume GUID paths, use the format `\\\\?\Volume{{GUID}}\`. -Separate multiple volumes with a comma. + +Specifies an array of system volumes for which to disable data deduplication. Specify one or more +volume IDs, drive letters, or volume GUID paths. For drive letters, use the format D:. For volume +GUID paths, use the format `\\\\?\Volume{{GUID}}\`. Separate multiple volumes with a comma. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: (All) Aliases: DeviceId, Path, Name @@ -149,7 +166,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -158,8 +179,10 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS ### Microsoft.Management.Infrastructure.CimInstance -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. -The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. + +The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the +namespace and class name for the underlying WMI object. ## NOTES From 7118cabccf2819c4a6613c32309d96b447e1bd19 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Tue, 2 May 2023 19:55:52 -0400 Subject: [PATCH 719/965] Style guide fixes --- .../winserver2022-ps/deduplication/Disable-DedupVolume.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docset/winserver2022-ps/deduplication/Disable-DedupVolume.md b/docset/winserver2022-ps/deduplication/Disable-DedupVolume.md index 672b28cece..61700fcb88 100644 --- a/docset/winserver2022-ps/deduplication/Disable-DedupVolume.md +++ b/docset/winserver2022-ps/deduplication/Disable-DedupVolume.md @@ -43,7 +43,7 @@ data deduplication job for a volume on which you have disabled data deduplicatio Disable-DedupVolume -Volume "D:","E:","F:","G:" ``` -This command disables data deduplication for volumes D:, E:, F:, and G:. +This command disables data deduplication for volumes `D:`, `E:`, `F:`, and `G:`. ### Example 2: Disable data deduplication on a volume by using a GUID @@ -52,7 +52,7 @@ Disable-DedupVolume -Volume "\\?\Volume{26a21bda-a627-11d7-9931-806e6f6e6963}\" ``` This command disables data deduplication for the volume that has the GUID -26a21bda-a627-11d7-9931-806e6f6e6963. +`26a21bda-a627-11d7-9931-806e6f6e6963`. ### Example 3: Suspend I/O activity for a specified volume @@ -62,7 +62,7 @@ Disable-DedupVolume -Volume "X:" -DataAccess This command suspends I/O activity for data deduplication on the specified volume. Effectively, this command causes the data deduplication file system mini-filter to detach from the specified volume. -After this command completes, I/O to data deduplication files fails with an ERROR_INVALID_FUNCTION +After this command completes, I/O to data deduplication files fails with an `ERROR_INVALID_FUNCTION` error until either the `Enable-DedupVolume -DataAccess` command runs, or the server restarts. ## PARAMETERS @@ -150,7 +150,7 @@ Accept wildcard characters: False ### -Volume Specifies an array of system volumes for which to disable data deduplication. Specify one or more -volume IDs, drive letters, or volume GUID paths. For drive letters, use the format D:. For volume +volume IDs, drive letters, or volume GUID paths. For drive letters, use the format `D:`. For volume GUID paths, use the format `\\\\?\Volume{{GUID}}\`. Separate multiple volumes with a comma. ```yaml From ee7378c538d676d4f6657aa267f94ddf913e23b7 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Tue, 2 May 2023 19:53:42 -0400 Subject: [PATCH 720/965] Style guide fixes --- .../deduplication/Enable-DedupVolume.md | 138 ++++++++++-------- 1 file changed, 79 insertions(+), 59 deletions(-) diff --git a/docset/winserver2022-ps/deduplication/Enable-DedupVolume.md b/docset/winserver2022-ps/deduplication/Enable-DedupVolume.md index 920b43fade..12246640c2 100644 --- a/docset/winserver2022-ps/deduplication/Enable-DedupVolume.md +++ b/docset/winserver2022-ps/deduplication/Enable-DedupVolume.md @@ -16,63 +16,73 @@ Enables data deduplication on one or more volumes. ## SYNTAX ``` -Enable-DedupVolume [-Volume] [-DataAccess] [-UsageType ] [-CimSession ] - [-ThrottleLimit ] [-AsJob] [] +Enable-DedupVolume [-Volume] [-DataAccess] [-UsageType ] + [-CimSession ] [-ThrottleLimit ] [-AsJob] [] ``` ## DESCRIPTION -The **Enable-DedupVolume** cmdlet enables data deduplication on one or more volumes. -You can use the **Set-DedupVolume** cmdlet to customize the data deduplication settings. -Data deduplication is disabled by default. -Data deduplication is not supported for certain volumes, such as any volume that is not a NTFS file system or any volume that is smaller than 2 GB. + +The `Enable-DedupVolume` cmdlet enables data deduplication on one or more volumes. You can use the +`Set-DedupVolume` cmdlet to customize the data deduplication settings. Data deduplication is +disabled by default. Data deduplication is not supported for certain volumes, such as any volume +that is not a NTFS file system or any volume that is smaller than 2 GB. ## EXAMPLES ### Example 1: Enable data deduplication on volumes -``` -PS C:\> Enable-DedupVolume -Volume "D:","E:","F:" + +```powershell +Enable-DedupVolume -Volume "D:","E:","F:" ``` -This command enables data deduplication on volumes D:, E:, and F:. -This command does not specify a value for the **UsageType** parameter, and, therefore, the cmdlet uses defaults for general purpose file server operations. +This command enables data deduplication on volumes `D:`, `E:`, and `F:`. This command does not +specify a value for the **UsageType** parameter, and, therefore, the cmdlet uses defaults for +general purpose file server operations. ### Example 2: Enable data deduplication on a volume for Hyper-V storage -``` -PS C:\> Enable-DedupVolume -Volume "D:" -UsageType HyperV + +```powershell +Enable-DedupVolume -Volume "D:" -UsageType HyperV ``` -This command enables data duplication on the D: volume. -The command specifies Hyper-V storage as the usage type for this volume. +This command enables data duplication on the D: volume. The command specifies Hyper-V storage as the +usage type for this volume. ### Example 3: Enable data deduplication on a volume by using a GUID -``` -PS C:\> Enable-DedupVolume -Volume "\\?\Volume{26a21bda-a627-11d7-9931-806e6f6e6963}\" + +```powershell +Enable-DedupVolume -Volume "\\?\Volume{26a21bda-a627-11d7-9931-806e6f6e6963}\" ``` -This command enables data deduplication for the volume that has the GUID 26a21bda-a627-11d7-9931-806e6f6e6963. +This command enables data deduplication for the volume that has the GUID +26a21bda-a627-11d7-9931-806e6f6e6963. ### Example 4: Resume I/O activity on a specified volume/ -``` -PS C:\> Enable-DedupVolume -Volume "X:" -DataAccess + +```powershell +Enable-DedupVolume -Volume "X:" -DataAccess ``` -This command resumes I/O activity for data deduplication on the specified volume. -Effectively, this command causes the data deduplication file system mini-filter to attach to the specified volume +This command resumes I/O activity for data deduplication on the specified volume. Effectively, this +command causes the data deduplication file system mini-filter to attach to the specified volume ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. + +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -84,12 +94,14 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or +[Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml -Type: CimSession[] +Type: Microsoft.Management.Infrastructure.CimSession[] Parameter Sets: (All) Aliases: Session @@ -101,10 +113,11 @@ Accept wildcard characters: False ``` ### -DataAccess + Indicates that data access to deduplicated files on the volume is enabled. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -116,12 +129,15 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: (All) Aliases: @@ -133,22 +149,21 @@ Accept wildcard characters: False ``` ### -UsageType -Specifies the expected type of workload for the volume. -This cmdlet sets several low-level settings to default values that are appropriate to the usage type that you specify. -If you specify this parameter for a volume that already has data deduplication enabled, the cmdlet modifies the settings to the appropriate default values. -If you run this cmdlet on a volume that already has data deduplication enabled but do not specify this parameter, the cmdlet does not change the usage type. + +Specifies the expected type of workload for the volume. This cmdlet sets several low-level settings +to default values that are appropriate to the usage type that you specify. If you specify this +parameter for a volume that already has data deduplication enabled, the cmdlet modifies the settings +to the appropriate default values. If you run this cmdlet on a volume that already has data +deduplication enabled but do not specify this parameter, the cmdlet does not change the usage type. The acceptable values for this parameter are: -- HyperV. -A volume for Hyper-V storage. -- Backup. -A volume that is optimized for virtualized backup servers. -- Default. -A general purpose volume. -If you do not specify a value for this parameter, the cmdlet uses a value of Default. +- `HyperV` A volume for Hyper-V storage. +- `Backup` A volume that is optimized for virtualized backup servers. +- `Default` A general purpose volume. If you do not specify a value for this parameter, the cmdlet + uses a value of Default. -If you specify a value of HyperV, the computer that has data deduplication enabled cannot be the same computer that runs Hyper-V. -The two computers must communicate remotely. +If you specify a value of HyperV, the computer that has data deduplication enabled cannot be the +same computer that runs Hyper-V. The two computers must communicate remotely. ```yaml Type: UsageType @@ -164,14 +179,13 @@ Accept wildcard characters: False ``` ### -Volume -Specifies an array of system volumes. -Specify one or more volume IDs, drive letters, or volume GUID paths. -For drive letters, use the format D:. -For volume GUID paths, use the format \\\\?\Volume{{GUID}}\. -Separate multiple volumes with a comma. + +Specifies an array of system volumes. Specify one or more volume IDs, drive letters, or volume GUID +paths. For drive letters, use the format D:. For volume GUID paths, use the format +`\\\\?\Volume{{GUID}}\`. Separate multiple volumes with a comma. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: (All) Aliases: DeviceId, Path, Name @@ -183,7 +197,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -192,8 +210,10 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS ### Microsoft.Management.Infrastructure.CimInstance -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. -The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. + +The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the +namespace and class name for the underlying WMI object. ## NOTES From dbefd91c56299e117b5eadaf89c9d145c507ea67 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Tue, 2 May 2023 19:59:28 -0400 Subject: [PATCH 721/965] Style guide fixes --- .../deduplication/Expand-DedupFile.md | 81 +++++++++++-------- 1 file changed, 49 insertions(+), 32 deletions(-) diff --git a/docset/winserver2022-ps/deduplication/Expand-DedupFile.md b/docset/winserver2022-ps/deduplication/Expand-DedupFile.md index 6d8c9aaebc..9519cb1530 100644 --- a/docset/winserver2022-ps/deduplication/Expand-DedupFile.md +++ b/docset/winserver2022-ps/deduplication/Expand-DedupFile.md @@ -16,42 +16,48 @@ Expands an optimized file into its original location. ## SYNTAX ``` -Expand-DedupFile [-Path] [-CimSession ] [-ThrottleLimit ] [-AsJob] - [] +Expand-DedupFile [-Path] [-CimSession ] [-ThrottleLimit ] + [-AsJob] [] ``` ## DESCRIPTION -The **Expand-DedupFile** cmdlet expands an optimized file into its original location. -You may need to expand optimized files because of compatibility with applications or other requirements. -Ensure that there is enough space on the volume to store the expanded file. -If you do not have enough disk space, the cmdlet attempts to expand the file, and then informs you when it is unable to finish the operation. -If you attempt to restore a file that is not optimized, the cmdlet notifies you of the error. +The `Expand-DedupFile` cmdlet expands an optimized file into its original location. You may need to +expand optimized files because of compatibility with applications or other requirements. + +Ensure that there is enough space on the volume to store the expanded file. If you do not have +enough disk space, the cmdlet attempts to expand the file, and then informs you when it is unable to +finish the operation. If you attempt to restore a file that is not optimized, the cmdlet notifies +you of the error. ## EXAMPLES ### Example 1: Expand a file -``` -PS C:\> Expand-DedupFile -Path "D:\Share\File07.doc" + +```powershell +Expand-DedupFile -Path "D:\Share\File07.doc" ``` -This command expands a file to its original location, D:\Share\File07.doc. -If the file is not optimized, the cmdlet informs you of the problem. +This command expands a file to its original location, `D:\Share\File07.doc`. If the file is not +optimized, the cmdlet informs you of the problem. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. + +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -63,12 +69,14 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or +[Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml -Type: CimSession[] +Type: Microsoft.Management.Infrastructure.CimSession[] Parameter Sets: (All) Aliases: Session @@ -80,11 +88,12 @@ Accept wildcard characters: False ``` ### -Path -Specifies an array of file paths. -The cmdlet expands files to the file paths specified by this parameter. + +Specifies an array of file paths. The cmdlet expands files to the file paths specified by this +parameter. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: (All) Aliases: FullName @@ -96,12 +105,15 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: (All) Aliases: @@ -113,15 +125,20 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ## OUTPUTS ### Uint32 -This cmdlet generates an integer that indicates success or failure of the operation. -A value of zero indicates success. + +This cmdlet generates an integer that indicates success or failure of the operation. A value of zero +indicates success. ## NOTES From 4c3453e47cbbf07ec58cda7b3735f0a77fb92eb4 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Tue, 2 May 2023 20:05:30 -0400 Subject: [PATCH 722/965] Style guide fixes --- .../deduplication/Get-DedupJob.md | 97 +++++++++++-------- 1 file changed, 59 insertions(+), 38 deletions(-) diff --git a/docset/winserver2022-ps/deduplication/Get-DedupJob.md b/docset/winserver2022-ps/deduplication/Get-DedupJob.md index dc152bfce1..b06d0f57c5 100644 --- a/docset/winserver2022-ps/deduplication/Get-DedupJob.md +++ b/docset/winserver2022-ps/deduplication/Get-DedupJob.md @@ -16,38 +16,45 @@ Returns status and information for currently running or queued deduplication job ## SYNTAX ``` -Get-DedupJob [[-Type] ] [[-Volume] ] [-CimSession ] [-ThrottleLimit ] - [-AsJob] [] +Get-DedupJob [[-Type] ] [[-Volume] ] [-CimSession ] + [-ThrottleLimit ] [-AsJob] [] ``` ## DESCRIPTION -The **Get-DedupJob** returns status and information for currently running or queued deduplication jobs. + +The `Get-DedupJob` returns status and information for currently running or queued deduplication +jobs. To run this cmdlet, you must start Windows PowerShell® with the **Run as administrator** option. ## EXAMPLES ### Example 1: Get information for jobs for specified volumes -``` -PS C:\> Get-DedupJob -Volume "D:","F:" + +```powershell +Get-DedupJob -Volume "D:","F:" ``` -This command gets status and information for currently running or queued deduplication jobs for the D: and F: volumes. +This command gets status and information for currently running or queued deduplication jobs for the +`D:` and `F:` volumes. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. + +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -59,12 +66,14 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or +[Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml -Type: CimSession[] +Type: Microsoft.Management.Infrastructure.CimSession[] Parameter Sets: (All) Aliases: Session @@ -76,12 +85,15 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: (All) Aliases: @@ -93,13 +105,14 @@ Accept wildcard characters: False ``` ### -Type -Specifies an array of types of data deduplication jobs for which to return the job state. -The acceptable values for this parameter are: -- Optimization -- GarbageCollection -- Scrubbing -- Unoptimization +Specifies an array of types of data deduplication jobs for which to return the job state. The +acceptable values for this parameter are: + +- `Optimization` +- `GarbageCollection` +- `Scrubbing` +- `Unoptimization` ```yaml Type: Type[] @@ -115,14 +128,14 @@ Accept wildcard characters: False ``` ### -Volume -Specifies one or more file system volumes for which to return **DeduplicationJob** objects. -Enter one or more volume IDs, drive letters, or volume GUID paths. -For drive letters, use the format D:. -For volume GUID paths, use the format \\\\?\Volume{{GUID}}\. -Separate multiple volumes with a comma. + +Specifies one or more file system volumes for which to return **DeduplicationJob** objects. Enter +one or more volume IDs, drive letters, or volume GUID paths. For drive letters, use the format `D:`. +For volume GUID paths, use the format `\\\\?\Volume{{GUID}}\`. Separate multiple volumes with a +comma. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: (All) Aliases: Path, Name @@ -134,7 +147,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -145,12 +162,16 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS ### Microsoft.Management.Infrastructure.CimInstance -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. -The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. + +The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the +namespace and class name for the underlying WMI object. ### Microsoft.Management.Infrastructure.CimInstance#ROOT/Microsoft/Windows/Deduplication/MSFT_DedupJob -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. -The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. + +The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the +namespace and class name for the underlying WMI object. ## NOTES From 62a54db99568efcb845c611855235bd2d0c54b3c Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Tue, 2 May 2023 20:20:07 -0400 Subject: [PATCH 723/965] Style guide fixes --- .../deduplication/Get-DedupSchedule.md | 101 +++++++++++------- 1 file changed, 63 insertions(+), 38 deletions(-) diff --git a/docset/winserver2022-ps/deduplication/Get-DedupSchedule.md b/docset/winserver2022-ps/deduplication/Get-DedupSchedule.md index 393fe64e10..78348f9771 100644 --- a/docset/winserver2022-ps/deduplication/Get-DedupSchedule.md +++ b/docset/winserver2022-ps/deduplication/Get-DedupSchedule.md @@ -16,34 +16,40 @@ Returns the deduplication job schedule defined on the computer. ## SYNTAX ``` -Get-DedupSchedule [[-Name] ] [-Type ] [-CimSession ] [-ThrottleLimit ] - [-AsJob] [] +Get-DedupSchedule [[-Name] ] [-Type ] [-CimSession ] + [-ThrottleLimit ] [-AsJob] [] ``` ## DESCRIPTION -The **Get-DedupSchedule** cmdlet returns the **DeduplicationJobSchedule** objects defined on the computer. + +The `Get-DedupSchedule` cmdlet returns the **DeduplicationJobSchedule** objects defined on the +computer. To run this cmdlet, you must start Windows PowerShell® with the **Run as administrator** option. ## EXAMPLES ### Example 1: Get active schedules -``` -PS C:\> Get-DedupSchedule + +```powershell +Get-DedupSchedule ``` -This command returns the currently active data deduplication schedule objects created using the **New-DedupSchedule** cmdlet. +This command returns the currently active data deduplication schedule objects created using the +`New-DedupSchedule` cmdlet. ### Example 2: Get schedules for optimization jobs -``` -PS C:\> Get-DedupSchedule -Type Optimization + +```powershell +Get-DedupSchedule -Type Optimization ``` This command returns all data deduplication schedules for optimization jobs. ### Example 3: Get a named schedule -``` -PS C:\> Get-DedupSchedule -Name MySchedule + +```powershell +Get-DedupSchedule -Name MySchedule ``` This command returns the data deduplication schedule named MySchedule. @@ -51,17 +57,20 @@ This command returns the data deduplication schedule named MySchedule. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. + +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -73,12 +82,14 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or +[Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml -Type: CimSession[] +Type: Microsoft.Management.Infrastructure.CimSession[] Parameter Sets: (All) Aliases: Session @@ -90,10 +101,12 @@ Accept wildcard characters: False ``` ### -Name -Specifies the friendly name of one or more data deduplication job schedules for which to return **DeduplicationJobSchedule** objects. + +Specifies the friendly name of one or more data deduplication job schedules for which to return +**DeduplicationJobSchedule** objects. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: (All) Aliases: @@ -105,12 +118,15 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: (All) Aliases: @@ -122,13 +138,14 @@ Accept wildcard characters: False ``` ### -Type -Specifies an array of types of data deduplication job schedules for which to return **DeduplicationJobSchedule** objects. -The acceptable values for this parameter are: -- Optimization -- GarbageCollection -- Scrubbing -- Unoptimization +Specifies an array of types of data deduplication job schedules for which to return +**DeduplicationJobSchedule** objects. The acceptable values for this parameter are: + +- `Optimization` +- `GarbageCollection` +- `Scrubbing` +- `Unoptimization` ```yaml Type: Type[] @@ -144,7 +161,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -155,12 +176,16 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS ### Microsoft.Management.Infrastructure.CimInstance -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. -The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. + +The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the +namespace and class name for the underlying WMI object. ### Microsoft.Management.Infrastructure.CimInstance#ROOT/Microsoft/Windows/Deduplication/MSFT_DedupJobSchedule -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. -The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. + +The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the +namespace and class name for the underlying WMI object. ## NOTES From 3fb52a1a838f7ddce47fb10d8c1d521d850d5d82 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Tue, 2 May 2023 20:23:32 -0400 Subject: [PATCH 724/965] Style guide fixes --- .../deduplication/Get-DedupStatus.md | 88 ++++++++++++------- 1 file changed, 54 insertions(+), 34 deletions(-) diff --git a/docset/winserver2022-ps/deduplication/Get-DedupStatus.md b/docset/winserver2022-ps/deduplication/Get-DedupStatus.md index 1e7a53e841..0de4c9c771 100644 --- a/docset/winserver2022-ps/deduplication/Get-DedupStatus.md +++ b/docset/winserver2022-ps/deduplication/Get-DedupStatus.md @@ -16,39 +16,46 @@ Returns deduplication status for volumes that have data deduplication metadata. ## SYNTAX ``` -Get-DedupStatus [[-Volume] ] [-CimSession ] [-ThrottleLimit ] [-AsJob] - [] +Get-DedupStatus [[-Volume] ] [-CimSession ] + [-ThrottleLimit ] [-AsJob] [] ``` ## DESCRIPTION -The **Get-DedupStatus** cmdlet returns a deduplication status object for every volume that has data deduplication metadata. -A **DeduplicationStatus** object includes read-only properties that describe capacity, free or used space and optimization savings and status on the volume, times, and completion status for the last jobs on the volume. + +The `Get-DedupStatus` cmdlet returns a deduplication status object for every volume that has data +deduplication metadata. A **DeduplicationStatus** object includes read-only properties that describe +capacity, free or used space and optimization savings and status on the volume, times, and +completion status for the last jobs on the volume. To run this cmdlet, you must start Windows PowerShell® with the **Run as administrator** option. ## EXAMPLES ### Example 1: Get status for specified volumes -``` -PS C:\> Get-DedupStatus -Volume "D:","F:" + +```powershell +Get-DedupStatus -Volume "D:","F:" ``` -This command gets deduplication status for the D: and F: volumes. +This command gets deduplication status for the `D:` and `F:` volumes. ## PARAMETERS -### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. +### -AsJob\ -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. + +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -60,12 +67,14 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or +[Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml -Type: CimSession[] +Type: Microsoft.Management.Infrastructure.CimSession[] Parameter Sets: (All) Aliases: Session @@ -77,12 +86,15 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: (All) Aliases: @@ -94,14 +106,14 @@ Accept wildcard characters: False ``` ### -Volume -Specifies one or more file system volumes for which to return a DeduplicationStatus object. -Enter one or more volume IDs, drive letters, or volume GUID paths. -For drive letters, use the format D:. -For volume GUID paths, use the format \\\\?\Volume{{GUID}}\. -Separate multiple volumes with a comma. + +Specifies one or more file system volumes for which to return a DeduplicationStatus object. Enter +one or more volume IDs, drive letters, or volume GUID paths. For drive letters, use the format `D:`. +For volume GUID paths, use the format `\\\\?\Volume{{GUID}}\`. Separate multiple volumes with a +comma. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: (All) Aliases: Path, Name, DeviceId @@ -113,7 +125,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -122,12 +138,16 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS ### Microsoft.Management.Infrastructure.CimInstance -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. -The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. + +The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the +namespace and class name for the underlying WMI object. ### Microsoft.Management.Infrastructure.CimInstance#ROOT/Microsoft/Windows/Deduplication/MSFT_DedupVolumeStatus -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. -The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. + +The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the +namespace and class name for the underlying WMI object. ## NOTES From 11c5fd109a0b803316ac44287be589f627812612 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Tue, 2 May 2023 20:28:36 -0400 Subject: [PATCH 725/965] Style guide fixes --- .../deduplication/Get-DedupVolume.md | 102 +++++++++++------- 1 file changed, 64 insertions(+), 38 deletions(-) diff --git a/docset/winserver2022-ps/deduplication/Get-DedupVolume.md b/docset/winserver2022-ps/deduplication/Get-DedupVolume.md index 792daf39b8..bd5664fa99 100644 --- a/docset/winserver2022-ps/deduplication/Get-DedupVolume.md +++ b/docset/winserver2022-ps/deduplication/Get-DedupVolume.md @@ -16,35 +16,42 @@ Returns deduplication volumes that have data deduplication metadata. ## SYNTAX ### ByVolumeId (Default) + ``` -Get-DedupVolume [-VolumeId ] [-CimSession ] [-ThrottleLimit ] [-AsJob] - [] +Get-DedupVolume [-VolumeId ] [-CimSession ] + [-ThrottleLimit ] [-AsJob] [] ``` ### ByVolume + ``` -Get-DedupVolume [[-Volume] ] [-CimSession ] [-ThrottleLimit ] [-AsJob] - [] +Get-DedupVolume [[-Volume] ] [-CimSession ] + [-ThrottleLimit ] [-AsJob] [] ``` ## DESCRIPTION -The **Get-DedupVolume** cmdlet returns a **DeduplicationVolume** object for each volume that has data deduplication metadata, in either the enabled or disabled state. -In a cluster, this cmdlet returns a **DeduplicationVolume** object only for volumes currently mounted by the managed node, whether the volumes are local or clustered volumes. + +The `Get-DedupVolume` cmdlet returns a **DeduplicationVolume** object for each volume that has data +deduplication metadata, in either the enabled or disabled state. In a cluster, this cmdlet returns a +**DeduplicationVolume** object only for volumes currently mounted by the managed node, whether the +volumes are local or clustered volumes. To run this cmdlet, you must start Windows PowerShell® with the **Run as administrator** option. ## EXAMPLES ### Example 1: Get settings for a volume identified by letter -``` -PS C:\> Get-DedupVolume -Volume "E:" + +```powershell +Get-DedupVolume -Volume "E:" ``` -This command returns the data deduplication settings for volume E:. +This command returns the data deduplication settings for volume `E:`. ### Example 2: Get settings for a volume specified by ID -``` -PS C:\> Get-DedupVolume -Volume "\\?\Volume{26a21bda-a627-11d7-9931-806e6f6e6963}\" + +```powershell +Get-DedupVolume -Volume "\\?\Volume{26a21bda-a627-11d7-9931-806e6f6e6963}\" ``` This command returns the data deduplication settings for the volume that has the specified GUID. @@ -52,17 +59,20 @@ This command returns the data deduplication settings for the volume that has the ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. + +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -74,12 +84,14 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or +[Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml -Type: CimSession[] +Type: Microsoft.Management.Infrastructure.CimSession[] Parameter Sets: (All) Aliases: Session @@ -91,9 +103,12 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml Type: Int32 @@ -108,14 +123,15 @@ Accept wildcard characters: False ``` ### -Volume -Specifies one or more file system volumes for which to return data deduplication metadata, or in the case of a cluster, volumes with data deduplication metadata currently mounted by the managed node. -Enter one or more volume IDs, drive letters, or volume GUID paths. -For drive letters, use the format D:. -For volume GUID paths, use the format \\\\?\Volume{{GUID}}\. -Separate multiple volumes with a comma. + +Specifies one or more file system volumes for which to return data deduplication metadata, or in the +case of a cluster, volumes with data deduplication metadata currently mounted by the managed node. +Enter one or more volume IDs, drive letters, or volume GUID paths. For drive letters, use the format +`D:`. For volume GUID paths, use the format `\\\\?\Volume{{GUID}}\`. Separate multiple volumes with +a comma. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: ByVolume Aliases: @@ -127,10 +143,12 @@ Accept wildcard characters: False ``` ### -VolumeId -Specifies a string that uniquely identifies the volume on which to return data deduplication metadata. + +Specifies a string that uniquely identifies the volume on which to return data deduplication +metadata. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: ByVolumeId Aliases: DeviceId, Path, Id @@ -142,7 +160,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -151,12 +173,16 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS ### Microsoft.Management.Infrastructure.CimInstance -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. -The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. + +The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the +namespace and class name for the underlying WMI object. ### Microsoft.Management.Infrastructure.CimInstance#ROOT/Microsoft/Windows/Deduplication/MSFT_DedupVolume -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. -The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. + +The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the +namespace and class name for the underlying WMI object. ## NOTES From b74bfe9f92a48a10a2602cf8657f4e001c9bebce Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Tue, 2 May 2023 20:32:09 -0400 Subject: [PATCH 726/965] Style guide fixes --- .../Measure-DedupFileMetadata.md | 69 ++++++++++++------- 1 file changed, 43 insertions(+), 26 deletions(-) diff --git a/docset/winserver2022-ps/deduplication/Measure-DedupFileMetadata.md b/docset/winserver2022-ps/deduplication/Measure-DedupFileMetadata.md index b16cd29fb8..da1c6bbee2 100644 --- a/docset/winserver2022-ps/deduplication/Measure-DedupFileMetadata.md +++ b/docset/winserver2022-ps/deduplication/Measure-DedupFileMetadata.md @@ -16,40 +16,47 @@ Measures potential disk space on a volume. ## SYNTAX ``` -Measure-DedupFileMetadata [-Path] [-CimSession ] [-ThrottleLimit ] [-AsJob] - [] +Measure-DedupFileMetadata [-Path] [-CimSession ] + [-ThrottleLimit ] [-AsJob] [] ``` ## DESCRIPTION -The **Measure-DedupFileMetadata** cmdlet measures potential disk space on a volume. -The **DedupDistinctSize** value that this cmdlet returns indicates how much disk space you can reclaim on a volume if you delete a group of folders and then run a garbage collection job. -Files often have chunks that are shared across other folders. -The deduplication engine calculates which chunks are unique and would be deleted after the garbage collection job. +The `Measure-DedupFileMetadata` cmdlet measures potential disk space on a volume. The +**DedupDistinctSize** value that this cmdlet returns indicates how much disk space you can reclaim +on a volume if you delete a group of folders and then run a garbage collection job. + +Files often have chunks that are shared across other folders. The deduplication engine calculates +which chunks are unique and would be deleted after the garbage collection job. ## EXAMPLES ### Example 1: Measure potential disk space on a volume -``` -PS C:\> Measure-DedupFileMetadata -Path "X:\A_Data","X:\Archive1" + +```powershell +Measure-DedupFileMetadata -Path "X:\A_Data","X:\Archive1" ``` -This command measures potential disk space that you can reclaim on all folders in the paths X:\A_Data and X:\Archive1. +This command measures potential disk space that you can reclaim on all folders in the paths +`X:\A_Data` and `X:\Archive1`. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. + +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -61,12 +68,14 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or +[Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml -Type: CimSession[] +Type: Microsoft.Management.Infrastructure.CimSession[] Parameter Sets: (All) Aliases: Session @@ -78,10 +87,11 @@ Accept wildcard characters: False ``` ### -Path + Specifies an array of paths of folders. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: (All) Aliases: @@ -93,12 +103,15 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: (All) Aliases: @@ -110,7 +123,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS From f2c5f93e0141eccc830c0f24df149860775b9698 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Tue, 2 May 2023 21:18:34 -0400 Subject: [PATCH 727/965] Style guide fixes --- .../deduplication/New-DedupSchedule.md | 303 +++++++++++------- 1 file changed, 189 insertions(+), 114 deletions(-) diff --git a/docset/winserver2022-ps/deduplication/New-DedupSchedule.md b/docset/winserver2022-ps/deduplication/New-DedupSchedule.md index a00cc1d085..e40aceecd0 100644 --- a/docset/winserver2022-ps/deduplication/New-DedupSchedule.md +++ b/docset/winserver2022-ps/deduplication/New-DedupSchedule.md @@ -16,79 +16,121 @@ Creates a data deduplication schedule. ## SYNTAX ``` -New-DedupSchedule [-Name] [-Type] [-DurationHours ] [-Disable] [-StopWhenSystemBusy] - [-Memory ] [-Cores ] [-Priority ] [-InputOutputThrottle ] - [-InputOutputThrottleLevel ] [-Start ] [-Days ] [-Full] - [-ReadOnly] [-CimSession ] [-ThrottleLimit ] [-AsJob] [] +New-DedupSchedule [-Name] [-Type] [-DurationHours ] [-Disable] + [-StopWhenSystemBusy] [-Memory ] [-Cores ] [-Priority ] + [-InputOutputThrottle ] [-InputOutputThrottleLevel ] + [-Start ] [-Days ] [-Full] [-ReadOnly] + [-CimSession ] [-ThrottleLimit ] [-AsJob] [] ``` ## DESCRIPTION -The **New-DedupSchedule** cmdlet creates a data deduplication schedule. -This cmdlet returns a **DeduplicationSchedule** object that you can use to customize the data deduplication schedule. -This cmdlet uses default settings to create a data deduplication schedule for the parameters that you do not specify. + +The `New-DedupSchedule` cmdlet creates a data deduplication schedule. This cmdlet returns a +**DeduplicationSchedule** object that you can use to customize the data deduplication schedule. This +cmdlet uses default settings to create a data deduplication schedule for the parameters that you do +not specify. You can create a schedule to run the following types data deduplication jobs: -- Optimization. -This job performs both deduplication and compression of files according data deduplication policy for the volume. -After initial optimization of a file, if that file is then modified and again meets the data deduplication policy threshold for optimization, the file is optimized again. -- GarbageCollection. -This job processes deleted or modified data on the volume so that any data chunks that are no longer referenced are cleaned up. -Garbage collection jobs process previously deleted or logically overwritten optimized content to create usable volume free space. -When an optimized file is deleted or overwritten by new data, the old data in the chunk store is not immediately deleted. -Garbage collection is scheduled to run weekly by default. Garbage collection is a processing-intensive operation, so you should allow the deletion load to reach a threshold and then manually run this job type, or schedule it for off hours. -- Scrubbing. -This job processes data corruptions it finds during data integrity validation, performs possible corruption repair, and generates a scrubbing report. -- Unoptimization. -This job undoes data deduplication on all of the optimized files on the volume. -At the end of a successful unoptimization job, the server deletes all of the data deduplication metadata from the volume. - -For more information, see [Install and Configure Data Deduplication](https://technet.microsoft.com/library/hh831434.aspx) on TechNet. +- `Optimization` This job performs both deduplication and compression of files according data + deduplication policy for the volume. After initial optimization of a file, if that file is then + modified and again meets the data deduplication policy threshold for optimization, the file is + optimized again. +- `GarbageCollection` This job processes deleted or modified data on the volume so that any data + chunks that are no longer referenced are cleaned up. Garbage collection jobs process previously + deleted or logically overwritten optimized content to create usable volume free space. When an + optimized file is deleted or overwritten by new data, the old data in the chunk store is not + immediately deleted. Garbage collection is scheduled to run weekly by default. Garbage collection + is a processing-intensive operation, so you should allow the deletion load to reach a threshold + and then manually run this job type, or schedule it for off hours. +- `Scrubbing` This job processes data corruptions it finds during data integrity validation, + performs possible corruption repair, and generates a scrubbing report. +- `Unoptimization` This job undoes data deduplication on all of the optimized files on the volume. + At the end of a successful unoptimization job, the server deletes all of the data deduplication + metadata from the volume. + +For more information, see +[Install and Configure Data Deduplication](https://technet.microsoft.com/library/hh831434.aspx) on +TechNet. ## EXAMPLES ### Example 1: Create a data deduplication schedule for a garbage collection job -``` -PS C:\> New-DedupSchedule -Name "OffHoursGC" -Type GarbageCollection -Start 08:00 -DurationHours 5 -Days Sunday -Priority Normal + +```powershell +$params = @{ + Days = Sunday + DurationHours = 5 + Name = "OffHoursGC" + Priority = Normal + Start = 08:00 + Type = GarbageCollection +} +New-DedupSchedule @params ``` -This command creates a data deduplication schedule for a garbage collection job named OffHoursGC. -The job is scheduled to run on Sundays at 8:00 at normal priority. -The command specifies that the server cancels the job after 5 hours if the process has not ended. +This command creates a data deduplication schedule with a **Name** of `OffHoursGC`. The +deduplication job **Type** is `GarbageCollection`. The job is scheduled to run every `Sunday` via +the **Days** Parameter. The job will **Start** at `08:00` and run at `Normal` **Priority**. The +command specifies **DurationHours** of `5` causing the server to cancel the job after 5 hours if the +process has not ended. ### Example 2: Create a data deduplication schedule for a scrubbing job -``` -PS C:\> New-DedupSchedule -Name "OffHoursScrub" -Type Scrubbing -Start 23:00 -StopWhenSystemBusy -DurationHours 6 -Days Monday,Tuesday,Wednesday,Thursday,Friday -Priority Normal + +```powershell +$params = @{ + Days = Monday,Tuesday,Wednesday,Thursday,Friday + DurationHours = 6 + Name = "OffHoursScrub" + Priority = Normal + Start = 23:00 + StopWhenSystemBusy = $true + Type = Scrubbing +} +New-DedupSchedule @params ``` -This command creates a data deduplication schedule for a scrubbing job named OffHoursScrub. -The command starts the scrubbing job at 23:00 on Monday through Friday at normal priority. -The **StopWhenSystemBusy** parameter specifies that the server stops the job when the system is busy and retries later. -The **DurationHours** parameter specifies that the server cancels the job after 6 hours if the process has not ended. +This command creates a data deduplication schedule for a `Scrubbing` **Type** job named +`OffHoursScrub`. The command starts the scrubbing job at `23:00` on each day Monday through Friday. +The **StopWhenSystemBusy** parameter specifies that the server stops the job when the system is busy +and retries later. The **DurationHours** parameter specifies that the server cancels the job after +`6` hours if the process has not ended. The job will run at `Normal` **Priority** ### Example 3: Create a data deduplication schedule for an optimization job -``` -PS C:\> New-DedupSchedule -Name "MyWeekdayOptimization" -Type Optimization -Days Mon,Tues,Wed,Thurs,Fri -Start 08:00 -DurationHours 9 + +```powershell +$params = @{ + Days = Mon,Tues,Wed,Thurs,Fri + DurationHours = 9 + Name = "MyWeekdayOptimization" + Start = 08:00 + Type = Optimization +} +New-DedupSchedule @params ``` -This command creates a data deduplication schedule for an optimization job named MyWeekdayOptimization. -The optimization job runs at a normal priority every weekday evening at 8:00. -The **DurationHours** parameter specifies that the server cancels the job after 9 hours if the process has not ended. +This command creates a data deduplication schedule for an `Optimization` **Type** job named +`MyWeekdayOptimization`. The optimization job runs at a normal **Priority** every weekday evening at +`08:00`. The **DurationHours** parameter specifies that the server cancels the job after `9` hours +if the process has not ended. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. + +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -100,12 +142,14 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or +[Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml -Type: CimSession[] +Type: Microsoft.Management.Infrastructure.CimSession[] Parameter Sets: (All) Aliases: Session @@ -117,10 +161,11 @@ Accept wildcard characters: False ``` ### -Cores + Specifies an array of maximum percentages of physical cores that a job uses. ```yaml -Type: UInt32 +Type: System.UInt32 Parameter Sets: (All) Aliases: MaximumCoresPercentage @@ -132,19 +177,20 @@ Accept wildcard characters: False ``` ### -Days -Specifies an array of days of the week on which the server runs the data deduplication job. -The acceptable values for this parameter are: -- Monday -- Tuesday -- Wednesday -- Thursday -- Friday -- Saturday -- Sunday +Specifies an array of days of the week on which the server runs the data deduplication job. The +acceptable values for this parameter are: + +- `Monday` +- `Tuesday` +- `Wednesday` +- `Thursday` +- `Friday` +- `Saturday` +- `Sunday` ```yaml -Type: DayOfWeek[] +Type: System.DayOfWeek[] Parameter Sets: (All) Aliases: Accepted values: Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday @@ -157,12 +203,14 @@ Accept wildcard characters: False ``` ### -Disable + Indicates that the server disables the data deduplication schedule immediately after you create it. -The server does not run the data deduplication schedule at the time that you specify in the **Start** parameter. -After you disable a data deduplication schedule, you can use the **Set-DedupSchedule** cmdlet to enable the schedule. +The server does not run the data deduplication schedule at the time that you specify in the +**Start** parameter. After you disable a data deduplication schedule, you can use the +**Set-DedupSchedule** cmdlet to enable the schedule. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -174,12 +222,13 @@ Accept wildcard characters: False ``` ### -DurationHours -Specifies the number of hours that the server runs the task before canceling it. -The value 0 indicates that the server runs the job to completion. -This cmdlet safely stops a data deduplication job and does not affect the files that the server is processing when it cancels the job. + +Specifies the number of hours that the server runs the task before canceling it. The value 0 +indicates that the server runs the job to completion. This cmdlet safely stops a data deduplication +job and does not affect the files that the server is processing when it cancels the job. ```yaml -Type: UInt32 +Type: System.UInt32 Parameter Sets: (All) Aliases: @@ -191,16 +240,21 @@ Accept wildcard characters: False ``` ### -Full -Indicates that garbage collection jobs free up all deleted or unreferenced data on the volume, if you specify the value GarbageCollection for the **Type** parameter. -If you do not specify this parameter, garbage collection jobs free up space after a system threshold of delete data is exceeded. -We recommend that you run garbage collection regularly without specifying this parameter, and then once a month specify this parameter and run garbage collection again. -If you specify the value Scrubbing for the **Type** parameter, this parameter indicates that scrubbing jobs validate the integrity of all data on the volume. -If you do not specify this parameter, the scrubbing job validates only critical metadata and data integrity issues that data deduplication previously encountered. -We recommend that you run scrubbing regularly without specifying this parameter, and then once a month specify this parameter and run scrubbing again. +Indicates that garbage collection jobs free up all deleted or unreferenced data on the volume, if +you specify the value `GarbageCollection` for the **Type** parameter. If you do not specify this +parameter, garbage collection jobs free up space after a system threshold of delete data is +exceeded. We recommend that you run garbage collection regularly without specifying this parameter, +and then once a month specify this parameter and run garbage collection again. + +If you specify the value `Scrubbing` for the **Type** parameter, this parameter indicates that +scrubbing jobs validate the integrity of all data on the volume. If you do not specify this +parameter, the scrubbing job validates only critical metadata and data integrity issues that data +deduplication previously encountered. We recommend that you run scrubbing regularly without +specifying this parameter, and then once a month specify this parameter and run scrubbing again. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -212,13 +266,14 @@ Accept wildcard characters: False ``` ### -InputOutputThrottle -Specifies the amount of input/output throttling applied to the deduplication job. -Throttling ensures that deduplication does not interfere with other I/O intensive processes. -The acceptable values for this parameter are: integers from 0 to 100. -If you specify this parameter and the **InputOutputThrottleLevel** parameter, **InputOutputThrottle** takes precedence. + +Specifies the amount of input/output throttling applied to the deduplication job. Throttling ensures +that deduplication does not interfere with other I/O intensive processes. The acceptable values for +this parameter are: integers from 0 to 100. If you specify this parameter and the +**InputOutputThrottleLevel** parameter, **InputOutputThrottle** takes precedence. ```yaml -Type: UInt32 +Type: System.UInt32 Parameter Sets: (All) Aliases: @@ -230,13 +285,14 @@ Accept wildcard characters: False ``` ### -InputOutputThrottleLevel -Specifies the amount of I/O throttling that the job provides to ensure that the job does not interfere with other I/O intensive processes. -The acceptable values for this parameter are: -- None -- Low -- Medium -- High +Specifies the amount of I/O throttling that the job provides to ensure that the job does not +interfere with other I/O intensive processes. The acceptable values for this parameter are: + +- `None` +- `Low` +- `Medium` +- `High` ```yaml Type: InputOutputThrottleLevel @@ -252,13 +308,17 @@ Accept wildcard characters: False ``` ### -Memory -Specifies the maximum percentage of physical computer memory that the data deduplication job can use. -For optimization jobs, we recommend that you set a range from 15 to 50, and a higher memory consumption for jobs that you schedule to run when you specify the **StopWhenSystemBusy** parameter. -For garbage collection and scrubbing jobs, which you typically schedule to run in off hours, you can set a higher memory consumption, such as 50. +Specifies the maximum percentage of physical computer memory that the data deduplication job can +use. + +For optimization jobs, we recommend that you set a range from `15` to `50`, and a higher memory +consumption for jobs that you schedule to run when you specify the **StopWhenSystemBusy** parameter. +For garbage collection and scrubbing jobs, which you typically schedule to run in off hours, you can +set a higher memory consumption, such as `50`. ```yaml -Type: UInt32 +Type: System.UInt32 Parameter Sets: (All) Aliases: MaximumMemoryPercentage @@ -270,10 +330,11 @@ Accept wildcard characters: False ``` ### -Name + Specifies a name for the data deduplication job schedule. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -285,9 +346,11 @@ Accept wildcard characters: False ``` ### -Priority -Sets the CPU and I/O priority for the optimization job that you run by using this cmdlet. -For jobs that you run when you specify the **StopWhenSystemBusy** parameter, we recommend that you set this parameter to Low. -For typical optimization jobs, we recommend that you set this parameter to Normal. + +Sets the CPU and I/O priority for the optimization job that you run by using this cmdlet. For jobs +that you run when you specify the **StopWhenSystemBusy** parameter, we recommend that you set this +parameter to `Low`. For typical optimization jobs, we recommend that you set this parameter to +`Normal`. ```yaml Type: Priority @@ -303,10 +366,12 @@ Accept wildcard characters: False ``` ### -ReadOnly -Indicates that the scrubbing job processes and reports on corruptions that it finds but does not run any repair actions. + +Indicates that the scrubbing job processes and reports on corruptions that it finds but does not run +any repair actions. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -318,13 +383,13 @@ Accept wildcard characters: False ``` ### -Start -Specifies a time to start this job. -The default value is 1:45am. -Type the date in a format that is standard for the system locale, such as dd-MM-yyyy (German \[Germany\]) or MM/dd/yyyy (English \[United States\]). +Specifies a time to start this job. The default value is 1:45am. +Type the date in a format that is standard for the system locale, such as dd-MM-yyyy (German +\[Germany\]) or MM/dd/yyyy (English \[United States\]). ```yaml -Type: DateTime +Type: System.DateTime Parameter Sets: (All) Aliases: @@ -336,11 +401,12 @@ Accept wildcard characters: False ``` ### -StopWhenSystemBusy -Indicates that the server stops the job when the system is busy and retries later. -We recommend that you specify this parameter when you set a low priority for the job. + +Indicates that the server stops the job when the system is busy and retries later. We recommend that +you specify this parameter when you set a low priority for the job. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -352,9 +418,12 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml Type: Int32 @@ -369,13 +438,13 @@ Accept wildcard characters: False ``` ### -Type -Specifies the type of data deduplication job. -The acceptable values for this parameter are: -- Optimization -- GarbageCollection -- Scrubbing -- Unoptimization +Specifies the type of data deduplication job. The acceptable values for this parameter are: + +- `Optimization` +- `GarbageCollection` +- `Scrubbing` +- `Unoptimization` ```yaml Type: Type @@ -391,7 +460,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -410,8 +483,10 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS ### Microsoft.Management.Infrastructure.CimInstance -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. -The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. + +The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the +namespace and class name for the underlying WMI object. ## NOTES From a6320c29f348bf5f2c89dd5c2433ec0e1694e84a Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Tue, 2 May 2023 21:23:53 -0400 Subject: [PATCH 728/965] Style guide fixes --- .../deduplication/Remove-DedupSchedule.md | 95 ++++++++++++------- 1 file changed, 60 insertions(+), 35 deletions(-) diff --git a/docset/winserver2022-ps/deduplication/Remove-DedupSchedule.md b/docset/winserver2022-ps/deduplication/Remove-DedupSchedule.md index 0933223865..018941b5d6 100644 --- a/docset/winserver2022-ps/deduplication/Remove-DedupSchedule.md +++ b/docset/winserver2022-ps/deduplication/Remove-DedupSchedule.md @@ -16,45 +16,52 @@ Deletes a deduplication schedule. ## SYNTAX ### Query (cdxml) (Default) + ``` -Remove-DedupSchedule [-Name] [-CimSession ] [-ThrottleLimit ] [-AsJob] - [-PassThru] [] +Remove-DedupSchedule [-Name] [-CimSession ] + [-ThrottleLimit ] [-AsJob] [-PassThru] [] ``` ### InputObject (cdxml) + ``` -Remove-DedupSchedule -InputObject [-CimSession ] [-ThrottleLimit ] - [-AsJob] [-PassThru] [] +Remove-DedupSchedule -InputObject [-CimSession ] + [-ThrottleLimit ] [-AsJob] [-PassThru] [] ``` ## DESCRIPTION -The **Remove-DedupSchedule** cmdlet deletes the specified **DeduplicationSchedule** object. + +The `Remove-DedupSchedule` cmdlet deletes the specified **DeduplicationSchedule** object. To run this cmdlet, you must start Windows PowerShell® with the **Run as administrator** option. ## EXAMPLES ### Example 1: Delete a schedule -``` -PS C:\> Remove-DedupSchedule -Name "MyDailyOptimization" + +```powershell +Remove-DedupSchedule -Name "MyDailyOptimization" ``` -This command deletes the **DeduplicationJobSchedule** object named MyDailyOptimization. +This command deletes the **DeduplicationJobSchedule** object named `MyDailyOptimization`. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. + +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -66,12 +73,14 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or +[Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml -Type: CimSession[] +Type: Microsoft.Management.Infrastructure.CimSession[] Parameter Sets: (All) Aliases: Session @@ -83,11 +92,12 @@ Accept wildcard characters: False ``` ### -InputObject -Specifies the input to this cmdlet. -You can use this parameter, or you can pipe the input to this cmdlet. + +Specifies the input to this cmdlet. You can use this parameter, or you can pipe the input to this +cmdlet. ```yaml -Type: CimInstance[] +Type: Microsoft.Management.Infrastructure.CimInstance[] Parameter Sets: InputObject (cdxml) Aliases: @@ -99,10 +109,11 @@ Accept wildcard characters: False ``` ### -Name + Specifies the friendly name of one or more data deduplication job schedules to remove. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: Query (cdxml) Aliases: @@ -114,10 +125,11 @@ Accept wildcard characters: False ``` ### -PassThru + Returns an object representing data deduplication settings to remove. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -129,12 +141,15 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: (All) Aliases: @@ -146,25 +161,35 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### System.String[] ### Microsoft.Management.Infrastructure.CimInstance -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. -The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. + +The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the +namespace and class name for the underlying WMI object. ## OUTPUTS ### Microsoft.Management.Infrastructure.CimInstance -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. -The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. + +The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the +namespace and class name for the underlying WMI object. ### Microsoft.Management.Infrastructure.CimInstance#ROOT/Microsoft/Windows/Deduplication/MSFT_DedupJobSchedule -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. -The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. + +The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the +namespace and class name for the underlying WMI object. ## NOTES From 86ae6c37cc2b27c872f89cbc2eadc5ba99f95b4b Mon Sep 17 00:00:00 2001 From: "Mikey Lombardi (He/Him)" Date: Wed, 3 May 2023 11:48:25 -0500 Subject: [PATCH 729/965] Apply suggestions from review --- docset/winserver2022-ps/deduplication/Get-DedupMetadata.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/deduplication/Get-DedupMetadata.md b/docset/winserver2022-ps/deduplication/Get-DedupMetadata.md index ac788ce2ef..0431005226 100644 --- a/docset/winserver2022-ps/deduplication/Get-DedupMetadata.md +++ b/docset/winserver2022-ps/deduplication/Get-DedupMetadata.md @@ -166,13 +166,13 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.Management.Infrastructure.CimInstance -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +The **Microsoft.Management.Infrastructure.CimInstance** object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. ### Microsoft.Management.Infrastructure.CimInstance#ROOT/Microsoft/Windows/Deduplication/MSFT_DedupVolumeMetadata -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +The **Microsoft.Management.Infrastructure.CimInstance** object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. From 98d3bfdced0688a133146f5d522a4acf6f0701dc Mon Sep 17 00:00:00 2001 From: "Mikey Lombardi (He/Him)" Date: Wed, 3 May 2023 11:50:06 -0500 Subject: [PATCH 730/965] Apply suggestions from review --- docset/winserver2022-ps/deduplication/Disable-DedupVolume.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/deduplication/Disable-DedupVolume.md b/docset/winserver2022-ps/deduplication/Disable-DedupVolume.md index 61700fcb88..0dd2e543c2 100644 --- a/docset/winserver2022-ps/deduplication/Disable-DedupVolume.md +++ b/docset/winserver2022-ps/deduplication/Disable-DedupVolume.md @@ -151,7 +151,7 @@ Accept wildcard characters: False Specifies an array of system volumes for which to disable data deduplication. Specify one or more volume IDs, drive letters, or volume GUID paths. For drive letters, use the format `D:`. For volume -GUID paths, use the format `\\\\?\Volume{{GUID}}\`. Separate multiple volumes with a comma. +GUID paths, use the format `\\?\Volume{{GUID}}\`. Separate multiple volumes with a comma. ```yaml Type: System.String[] @@ -180,7 +180,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.Management.Infrastructure.CimInstance -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +The **Microsoft.Management.Infrastructure.CimInstance** object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. From 294a78e303626d3c865c8f8981cc2321c257fe27 Mon Sep 17 00:00:00 2001 From: "Mikey Lombardi (He/Him)" Date: Wed, 3 May 2023 11:51:23 -0500 Subject: [PATCH 731/965] Apply suggestions from review --- docset/winserver2022-ps/deduplication/Enable-DedupVolume.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docset/winserver2022-ps/deduplication/Enable-DedupVolume.md b/docset/winserver2022-ps/deduplication/Enable-DedupVolume.md index 12246640c2..cd0e307f99 100644 --- a/docset/winserver2022-ps/deduplication/Enable-DedupVolume.md +++ b/docset/winserver2022-ps/deduplication/Enable-DedupVolume.md @@ -55,7 +55,7 @@ Enable-DedupVolume -Volume "\\?\Volume{26a21bda-a627-11d7-9931-806e6f6e6963}\" ``` This command enables data deduplication for the volume that has the GUID -26a21bda-a627-11d7-9931-806e6f6e6963. +`26a21bda-a627-11d7-9931-806e6f6e6963`. ### Example 4: Resume I/O activity on a specified volume/ @@ -182,7 +182,7 @@ Accept wildcard characters: False Specifies an array of system volumes. Specify one or more volume IDs, drive letters, or volume GUID paths. For drive letters, use the format D:. For volume GUID paths, use the format -`\\\\?\Volume{{GUID}}\`. Separate multiple volumes with a comma. +`\\?\Volume{{GUID}}\`. Separate multiple volumes with a comma. ```yaml Type: System.String[] @@ -211,7 +211,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.Management.Infrastructure.CimInstance -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +The **Microsoft.Management.Infrastructure.CimInstance** object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. From aa6dfd8fb26f3bab37fd880709dd50d7a8bef2fe Mon Sep 17 00:00:00 2001 From: "Mikey Lombardi (He/Him)" Date: Wed, 3 May 2023 11:55:26 -0500 Subject: [PATCH 732/965] Apply suggestions from review --- docset/winserver2022-ps/deduplication/Get-DedupJob.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docset/winserver2022-ps/deduplication/Get-DedupJob.md b/docset/winserver2022-ps/deduplication/Get-DedupJob.md index b06d0f57c5..423bc6dd38 100644 --- a/docset/winserver2022-ps/deduplication/Get-DedupJob.md +++ b/docset/winserver2022-ps/deduplication/Get-DedupJob.md @@ -131,7 +131,7 @@ Accept wildcard characters: False Specifies one or more file system volumes for which to return **DeduplicationJob** objects. Enter one or more volume IDs, drive letters, or volume GUID paths. For drive letters, use the format `D:`. -For volume GUID paths, use the format `\\\\?\Volume{{GUID}}\`. Separate multiple volumes with a +For volume GUID paths, use the format `\\?\Volume{{GUID}}\`. Separate multiple volumes with a comma. ```yaml @@ -163,13 +163,13 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.Management.Infrastructure.CimInstance -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +The **Microsoft.Management.Infrastructure.CimInstance** object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. ### Microsoft.Management.Infrastructure.CimInstance#ROOT/Microsoft/Windows/Deduplication/MSFT_DedupJob -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +The **Microsoft.Management.Infrastructure.CimInstance** object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. From 1fd402269968f4b81afc13862c99d4a7b51f3779 Mon Sep 17 00:00:00 2001 From: "Mikey Lombardi (He/Him)" Date: Wed, 3 May 2023 11:57:10 -0500 Subject: [PATCH 733/965] Apply suggestions from review --- docset/winserver2022-ps/deduplication/Get-DedupSchedule.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/deduplication/Get-DedupSchedule.md b/docset/winserver2022-ps/deduplication/Get-DedupSchedule.md index 78348f9771..ff4627705c 100644 --- a/docset/winserver2022-ps/deduplication/Get-DedupSchedule.md +++ b/docset/winserver2022-ps/deduplication/Get-DedupSchedule.md @@ -177,13 +177,13 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.Management.Infrastructure.CimInstance -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +The **Microsoft.Management.Infrastructure.CimInstance** object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. ### Microsoft.Management.Infrastructure.CimInstance#ROOT/Microsoft/Windows/Deduplication/MSFT_DedupJobSchedule -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +The **Microsoft.Management.Infrastructure.CimInstance** object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. From b9e9bcd224225c3995633c8d43d8afc2186e293e Mon Sep 17 00:00:00 2001 From: "Mikey Lombardi (He/Him)" Date: Wed, 3 May 2023 11:59:36 -0500 Subject: [PATCH 734/965] Apply suggestions from review --- docset/winserver2022-ps/deduplication/Get-DedupStatus.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docset/winserver2022-ps/deduplication/Get-DedupStatus.md b/docset/winserver2022-ps/deduplication/Get-DedupStatus.md index 0de4c9c771..50101f82cd 100644 --- a/docset/winserver2022-ps/deduplication/Get-DedupStatus.md +++ b/docset/winserver2022-ps/deduplication/Get-DedupStatus.md @@ -109,7 +109,7 @@ Accept wildcard characters: False Specifies one or more file system volumes for which to return a DeduplicationStatus object. Enter one or more volume IDs, drive letters, or volume GUID paths. For drive letters, use the format `D:`. -For volume GUID paths, use the format `\\\\?\Volume{{GUID}}\`. Separate multiple volumes with a +For volume GUID paths, use the format `\\?\Volume{{GUID}}\`. Separate multiple volumes with a comma. ```yaml @@ -139,13 +139,13 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.Management.Infrastructure.CimInstance -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +The **Microsoft.Management.Infrastructure.CimInstance** object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. ### Microsoft.Management.Infrastructure.CimInstance#ROOT/Microsoft/Windows/Deduplication/MSFT_DedupVolumeStatus -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +The **Microsoft.Management.Infrastructure.CimInstance** object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. From 3e11a96fc3631cbf956d56bcc37b41c281160e1c Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Wed, 3 May 2023 13:01:11 -0400 Subject: [PATCH 735/965] Update docset/winserver2022-ps/deduplication/Get-DedupVolume.md Co-authored-by: Mikey Lombardi (He/Him) --- docset/winserver2022-ps/deduplication/Get-DedupVolume.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/deduplication/Get-DedupVolume.md b/docset/winserver2022-ps/deduplication/Get-DedupVolume.md index bd5664fa99..b303b25171 100644 --- a/docset/winserver2022-ps/deduplication/Get-DedupVolume.md +++ b/docset/winserver2022-ps/deduplication/Get-DedupVolume.md @@ -174,7 +174,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.Management.Infrastructure.CimInstance -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +The **Microsoft.Management.Infrastructure.CimInstance** object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. From c9d8eebb58f4e48f2624ca873c347c240b205638 Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Wed, 3 May 2023 13:01:17 -0400 Subject: [PATCH 736/965] Update docset/winserver2022-ps/deduplication/Get-DedupVolume.md Co-authored-by: Mikey Lombardi (He/Him) --- docset/winserver2022-ps/deduplication/Get-DedupVolume.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/deduplication/Get-DedupVolume.md b/docset/winserver2022-ps/deduplication/Get-DedupVolume.md index b303b25171..8648f5c40a 100644 --- a/docset/winserver2022-ps/deduplication/Get-DedupVolume.md +++ b/docset/winserver2022-ps/deduplication/Get-DedupVolume.md @@ -180,7 +180,7 @@ namespace and class name for the underlying WMI object. ### Microsoft.Management.Infrastructure.CimInstance#ROOT/Microsoft/Windows/Deduplication/MSFT_DedupVolume -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +The **Microsoft.Management.Infrastructure.CimInstance** object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. From abc0a4f2fbc020565fc5c5939aa89a62b4c8de9f Mon Sep 17 00:00:00 2001 From: Robert Biddle Date: Wed, 3 May 2023 13:01:23 -0400 Subject: [PATCH 737/965] Update docset/winserver2022-ps/deduplication/Get-DedupVolume.md Co-authored-by: Mikey Lombardi (He/Him) --- docset/winserver2022-ps/deduplication/Get-DedupVolume.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/deduplication/Get-DedupVolume.md b/docset/winserver2022-ps/deduplication/Get-DedupVolume.md index 8648f5c40a..a598c202d5 100644 --- a/docset/winserver2022-ps/deduplication/Get-DedupVolume.md +++ b/docset/winserver2022-ps/deduplication/Get-DedupVolume.md @@ -127,7 +127,7 @@ Accept wildcard characters: False Specifies one or more file system volumes for which to return data deduplication metadata, or in the case of a cluster, volumes with data deduplication metadata currently mounted by the managed node. Enter one or more volume IDs, drive letters, or volume GUID paths. For drive letters, use the format -`D:`. For volume GUID paths, use the format `\\\\?\Volume{{GUID}}\`. Separate multiple volumes with +`D:`. For volume GUID paths, use the format `\\?\Volume{{GUID}}\`. Separate multiple volumes with a comma. ```yaml From a767c28c954151a481b5ab31c7a13912cf726013 Mon Sep 17 00:00:00 2001 From: "Mikey Lombardi (He/Him)" Date: Wed, 3 May 2023 12:15:10 -0500 Subject: [PATCH 738/965] Apply suggestions from review --- .../deduplication/New-DedupSchedule.md | 50 ++++++++++++------- 1 file changed, 31 insertions(+), 19 deletions(-) diff --git a/docset/winserver2022-ps/deduplication/New-DedupSchedule.md b/docset/winserver2022-ps/deduplication/New-DedupSchedule.md index e40aceecd0..9139c952aa 100644 --- a/docset/winserver2022-ps/deduplication/New-DedupSchedule.md +++ b/docset/winserver2022-ps/deduplication/New-DedupSchedule.md @@ -59,12 +59,12 @@ TechNet. ```powershell $params = @{ - Days = Sunday + Days = 'Sunday' DurationHours = 5 - Name = "OffHoursGC" - Priority = Normal - Start = 08:00 - Type = GarbageCollection + Name = 'OffHoursGC' + Priority = 'Normal' + Start = '08:00' + Type = 'GarbageCollection' } New-DedupSchedule @params ``` @@ -79,13 +79,19 @@ process has not ended. ```powershell $params = @{ - Days = Monday,Tuesday,Wednesday,Thursday,Friday - DurationHours = 6 - Name = "OffHoursScrub" - Priority = Normal - Start = 23:00 + Days = @( + 'Monday' + 'Tuesday' + 'Wednesday' + 'Thursday' + 'Friday' + ) + DurationHours = 6 + Name = 'OffHoursScrub' + Priority = 'Normal' + Start = '23:00' StopWhenSystemBusy = $true - Type = Scrubbing + Type = 'Scrubbing' } New-DedupSchedule @params ``` @@ -100,11 +106,17 @@ and retries later. The **DurationHours** parameter specifies that the server can ```powershell $params = @{ - Days = Mon,Tues,Wed,Thurs,Fri + Days = @( + 'Mon' + 'Tues' + 'Wed' + 'Thurs' + 'Fri' + ) DurationHours = 9 - Name = "MyWeekdayOptimization" - Start = 08:00 - Type = Optimization + Name = 'MyWeekdayOptimization' + Start = '08:00' + Type = 'Optimization' } New-DedupSchedule @params ``` @@ -223,7 +235,7 @@ Accept wildcard characters: False ### -DurationHours -Specifies the number of hours that the server runs the task before canceling it. The value 0 +Specifies the number of hours that the server runs the task before canceling it. The value `0` indicates that the server runs the job to completion. This cmdlet safely stops a data deduplication job and does not affect the files that the server is processing when it cancels the job. @@ -385,8 +397,8 @@ Accept wildcard characters: False ### -Start Specifies a time to start this job. The default value is 1:45am. -Type the date in a format that is standard for the system locale, such as dd-MM-yyyy (German -\[Germany\]) or MM/dd/yyyy (English \[United States\]). +Type the date in a format that is standard for the system locale, such as `dd-MM-yyyy` (German +\[Germany\]) or `MM/dd/yyyy` (English \[United States\]). ```yaml Type: System.DateTime @@ -484,7 +496,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.Management.Infrastructure.CimInstance -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +The **Microsoft.Management.Infrastructure.CimInstance** object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. From 12e1ce75e75bb0b0856e8cc047d15bf1f754c89c Mon Sep 17 00:00:00 2001 From: "Mikey Lombardi (He/Him)" Date: Wed, 3 May 2023 12:16:18 -0500 Subject: [PATCH 739/965] Apply suggestions from review --- .../winserver2022-ps/deduplication/Remove-DedupSchedule.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docset/winserver2022-ps/deduplication/Remove-DedupSchedule.md b/docset/winserver2022-ps/deduplication/Remove-DedupSchedule.md index 018941b5d6..149113feb5 100644 --- a/docset/winserver2022-ps/deduplication/Remove-DedupSchedule.md +++ b/docset/winserver2022-ps/deduplication/Remove-DedupSchedule.md @@ -173,7 +173,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.Management.Infrastructure.CimInstance -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +The **Microsoft.Management.Infrastructure.CimInstance** object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. @@ -181,13 +181,13 @@ namespace and class name for the underlying WMI object. ### Microsoft.Management.Infrastructure.CimInstance -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +The **Microsoft.Management.Infrastructure.CimInstance** object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. ### Microsoft.Management.Infrastructure.CimInstance#ROOT/Microsoft/Windows/Deduplication/MSFT_DedupJobSchedule -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +The **Microsoft.Management.Infrastructure.CimInstance** object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. From 67b33ee7f96f3bcb3739bff02072473be9b4ea55 Mon Sep 17 00:00:00 2001 From: "Mikey Lombardi (He/Him)" Date: Wed, 3 May 2023 14:18:45 -0500 Subject: [PATCH 740/965] Apply suggestions from review --- .../Install-AdcsNetworkDeviceEnrollmentService.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md b/docset/winserver2022-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md index eb31a852d7..221e415954 100644 --- a/docset/winserver2022-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md +++ b/docset/winserver2022-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md @@ -69,7 +69,7 @@ This command displays the default NDES settings that will be configured if it is ```powershell $params = @{ ServiceAccountName = "CONTOSO\svcNDES" - ServiceAccountPassword = (read-host "Set user password" -assecurestring) + ServiceAccountPassword = (Read-Host "Set user password" -AsSecureString) WhatIf = $true } Install-AdcsNetworkDeviceEnrollmentService @params @@ -98,7 +98,7 @@ common name for `` and ``. ```powershell $params = @{ ServiceAccountName = "CONTOSO\svcNDES" - ServiceAccountPassword = (read-host "Set user password" -assecurestring) + ServiceAccountPassword = (Read-Host "Set user password" -AsSecureString) CAConfig = "CAComputerName\CAName" RAName = "Contoso-NDES-RA" RACountry = "US" From c37e71d34765d717a9debe26c23319ea9703c66d Mon Sep 17 00:00:00 2001 From: Phil Bossman Date: Wed, 3 May 2023 20:23:33 -0400 Subject: [PATCH 741/965] Apply suggestions from code review From Sean Co-authored-by: Sean Wheeler --- docset/winserver2022-ps/grouppolicy/Backup-GPO.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/grouppolicy/Backup-GPO.md b/docset/winserver2022-ps/grouppolicy/Backup-GPO.md index 01b69895ff..d49f190c9e 100644 --- a/docset/winserver2022-ps/grouppolicy/Backup-GPO.md +++ b/docset/winserver2022-ps/grouppolicy/Backup-GPO.md @@ -39,7 +39,7 @@ Backup-GPO -Path [-Comment ] [-Domain ] [-Server Date: Thu, 4 May 2023 08:28:13 -0500 Subject: [PATCH 742/965] Update docset/winserver2022-ps/grouppolicy/Get-GPO.md --- docset/winserver2022-ps/grouppolicy/Get-GPO.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/grouppolicy/Get-GPO.md b/docset/winserver2022-ps/grouppolicy/Get-GPO.md index 6f46dcc04f..e3a7750884 100644 --- a/docset/winserver2022-ps/grouppolicy/Get-GPO.md +++ b/docset/winserver2022-ps/grouppolicy/Get-GPO.md @@ -113,7 +113,7 @@ WmiFilter : This command gets the GPO that has the ID (GUID) `331a09564-cd4a-4520-98fa-446a2af23b4b` in the `sales.contoso.com` domain. If the domain of the user that is running the session (or, for startup and shutdown scripts, the -computer) is different that sales.contoso.com, a trust must exist between the two domains. +computer) is different than `sales.contoso.com`, a trust must exist between the two domains. The command retrieves the GPO information by contacting the PDC (in the `sales.contoso.com` domain). ### Example 3: Get all GPOs from a domain From 78e1f35819a0932cd4de9a0e70b66c08b507e823 Mon Sep 17 00:00:00 2001 From: Phil Bossman Date: Thu, 4 May 2023 22:42:07 -0400 Subject: [PATCH 743/965] Fixed formatting in multiple files - per feedback --- .../grouppolicy/Backup-GPO.md | 2 +- .../winserver2022-ps/grouppolicy/Copy-GPO.md | 20 ++++++------ .../grouppolicy/Get-GPInheritance.md | 31 ++++++------------- .../winserver2022-ps/grouppolicy/Get-GPO.md | 6 ++-- .../grouppolicy/Get-GPOReport.md | 6 ++-- .../grouppolicy/Get-GPPermission.md | 14 ++++----- .../grouppolicy/Get-GPPrefRegistryValue.md | 8 ++--- .../grouppolicy/Get-GPRegistryValue.md | 8 ++--- .../grouppolicy/Get-GPResultantSetOfPolicy.md | 2 +- .../grouppolicy/Get-GPStarterGPO.md | 10 +++--- .../grouppolicy/Import-GPO.md | 6 ++-- .../grouppolicy/Invoke-GPUpdate.md | 4 +-- .../grouppolicy/New-GPLink.md | 14 ++++----- .../winserver2022-ps/grouppolicy/New-GPO.md | 6 ++-- .../grouppolicy/New-GPStarterGPO.md | 4 +-- .../grouppolicy/Remove-GPLink.md | 6 ++-- .../grouppolicy/Remove-GPO.md | 2 +- .../grouppolicy/Remove-GPPrefRegistryValue.md | 6 ++-- .../grouppolicy/Remove-GPRegistryValue.md | 6 ++-- .../grouppolicy/Rename-GPO.md | 4 +-- .../grouppolicy/Restore-GPO.md | 4 +-- .../grouppolicy/Set-GPInheritance.md | 4 +-- .../grouppolicy/Set-GPLink.md | 2 +- .../grouppolicy/Set-GPPermission.md | 14 ++++----- .../grouppolicy/Set-GPPrefRegistryValue.md | 30 +++++++++--------- .../grouppolicy/Set-GPRegistryValue.md | 6 ++-- 26 files changed, 107 insertions(+), 118 deletions(-) diff --git a/docset/winserver2022-ps/grouppolicy/Backup-GPO.md b/docset/winserver2022-ps/grouppolicy/Backup-GPO.md index d49f190c9e..49755f4971 100644 --- a/docset/winserver2022-ps/grouppolicy/Backup-GPO.md +++ b/docset/winserver2022-ps/grouppolicy/Backup-GPO.md @@ -176,7 +176,7 @@ Accept wildcard characters: False ### -Guid Specifies the GPO to backup by its globally unique identifier (GUID). -The `GUID` uniquely identifies the GPO. +The GUID uniquely identifies the GPO. You can also refer to the **Guid** parameter by its built-in alias, **Id**. For more information, see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). diff --git a/docset/winserver2022-ps/grouppolicy/Copy-GPO.md b/docset/winserver2022-ps/grouppolicy/Copy-GPO.md index 42d3a98e82..b0d18ffe84 100644 --- a/docset/winserver2022-ps/grouppolicy/Copy-GPO.md +++ b/docset/winserver2022-ps/grouppolicy/Copy-GPO.md @@ -5,7 +5,7 @@ Module Name: GroupPolicy ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/grouppolicy/copy-gpo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 -title: Copy-GPO +title: `Copy-GPO` --- # Copy-GPO @@ -34,7 +34,7 @@ Copy-GPO [-SourceName] -TargetName [-SourceDomain ] ## DESCRIPTION -The **Copy-GPO** cmdlet creates a destination Group Policy Object (GPO) and copies the settings from +The `Copy-GPO` cmdlet creates a destination Group Policy Object (GPO) and copies the settings from the source GPO to the new GPO. The cmdlet can be used to copy a GPO from one domain to another domain within the same forest. You can specify a migration table to map security principals and paths when copying across domains. You can also specify whether to copy the access control list @@ -103,9 +103,9 @@ Get-GPO -All -Domain "sales1.contoso.com" | ForEach-Object { This command copies all the GPOs in the `sales1.contoso.com` domain to the `sales2.contoso.com` domain. -All the GPOs in the source domain are retrieved by using the **Get-GPO** cmdlet using the **All** -parameter. The output of **Get-GPO** is piped into the ForEach-Object command. When each GPO is -evaluated, it is piped into **Copy-GPO** and its display name is specified for the **TargetName** +All the GPOs in the source domain are retrieved by using the `Get-GPO` cmdlet using the **All** +parameter. The output of `Get-GPO` is piped into the `ForEach-Object` command. When each GPO is +evaluated, it is piped into `Copy-GPO` and its display name is specified for the **TargetName** parameter `-TargetName ($_.DisplayName)`. The **CopyACL** parameter is specified to copy the ACLs for each GPO to the destination domain. The **MigrationTable** parameter specifies a migration table to use to migrate Security principals and UNC paths to the destination domain. Both the **CopyACL** @@ -116,12 +116,12 @@ error occurs when this command attempts to copy the source GPO. Because this com in the source domain, errors occur for default GPOs; for instance, the Default Domain Policy GPO and the Default Domain Controllers Policy GPO. These GPOs are not copied. You can suppress these error messages by supplying the **ErrorAction** parameter with a value of SilentlyContinue to -**Copy-GPO**. For more information about the **ErrorAction** parameter, see +`Copy-GPO`. For more information about the **ErrorAction** parameter, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). The destination GPOs that were successfully copied are returned by this command. By default, they are printed to the display, but you can add commands to the end of the pipeline to further configure -these GPOs. For example you can add a Set-GPLink cmdlet to the end of the pipeline to link all the +these GPOs. For example you can add a `Set-GPLink` cmdlet to the end of the pipeline to link all the destination GPOs to a site, domain, or organizational unit. A trust relationship must exist between the source domain and the destination domain. In addition, @@ -233,10 +233,10 @@ Accept wildcard characters: False ### -SourceGuid -Specifies the source GPO by its globally unique identifier `GUID`. The `GUID` uniquely identifies +Specifies the source GPO by its globally unique identifier GUID. The GUID uniquely identifies the GPO. -You can also refer to the **SourceGuid** parameter by its built-in alias, `Id`. +You can also refer to the **SourceGuid** parameter by its built-in alias, **Id**. ```yaml Type: System.Management.Automation.Guid @@ -374,7 +374,7 @@ This cmdlet outputs a copy of the specified GPO. ## NOTES -* You can use the **Copy-GPO** cmdlet to copy a GPO within a domain or from one domain to another +* You can use the `Copy-GPO` cmdlet to copy a GPO within a domain or from one domain to another within the same forest. You can use the **SourceDomain** and **TargetDomain** parameters to explicitly specify the source diff --git a/docset/winserver2022-ps/grouppolicy/Get-GPInheritance.md b/docset/winserver2022-ps/grouppolicy/Get-GPInheritance.md index db3742168a..456d72a7ab 100644 --- a/docset/winserver2022-ps/grouppolicy/Get-GPInheritance.md +++ b/docset/winserver2022-ps/grouppolicy/Get-GPInheritance.md @@ -22,12 +22,12 @@ Get-GPInheritance [-Target] [-Domain ] [-Server ] [] [[-Server] ] [-All] [] ## DESCRIPTION -The **Get-GPO** cmdlet gets one Group Policy Object (GPO) or all the GPOs in a domain. You can +The `Get-GPO` cmdlet gets one Group Policy Object (GPO) or all the GPOs in a domain. You can specify a GPO by its display name or by its globally unique identifier (GUID) to get a single GPO, or you can get all the GPOs in the domain through the **All** parameter. This cmdlet returns one or more objects that represent the requested GPOs. By default, properties of the requested GPOs are printed to the display; however, you can also pipe the output of the -**Get-GPO** cmdlet to other Group Policy cmdlets. +`Get-GPO` cmdlet to other Group Policy cmdlets. ## EXAMPLES @@ -127,7 +127,7 @@ Accept wildcard characters: False Specifies the domain for this cmdlet. You must specify the fully qualified domain name (FQDN) of the domain. -For the **Get-GPO** cmdlet, the GPO (or GPOs) to that this cmdlet gets must exist in this domain. +For the `Get-GPO` cmdlet, the GPO (or GPOs) to that this cmdlet gets must exist in this domain. If you do not specify the **Domain** parameter, the domain of the user that is running the current session is used. If the cmdlet is being run from a computer startup or shutdown script, the domain diff --git a/docset/winserver2022-ps/grouppolicy/Get-GPOReport.md b/docset/winserver2022-ps/grouppolicy/Get-GPOReport.md index ffa04373b1..de92d3de4e 100644 --- a/docset/winserver2022-ps/grouppolicy/Get-GPOReport.md +++ b/docset/winserver2022-ps/grouppolicy/Get-GPOReport.md @@ -39,7 +39,7 @@ Get-GPOReport [-ReportType] [[-Path] ] [[-Domain] ] ## DESCRIPTION -The **Get-GPOReport** cmdlet generates a report in either XML or HTML format that describes +The `Get-GPOReport` cmdlet generates a report in either XML or HTML format that describes properties and policy settings for a specified Group Policy Object (GPO) or for all GPOs in a domain. The information that is reported for each GPO includes: details, links, security filtering, Windows Management Instrumentation (WMI) filtering, delegation, and computer and user @@ -86,7 +86,7 @@ different from `sales.contoso2.com`, a trust must exist between the two domains. Get-GPOReport -GUID 73624cc9-e8f2-4f05-8802-193fae8773ce -ReportType XML ``` -This command generates a report in XML format for the GPO with the specified `GUID`. +This command generates a report in XML format for the GPO with the specified GUID. Because no **Path** parameter is supplied, the report is written to the display. ## PARAMETERS @@ -112,7 +112,7 @@ Accept wildcard characters: False Specifies the domain for this cmdlet. You must specify the fully qualified domain name (FQDN) of the domain. -For the **Get-GPOReport** cmdlet: +For the `Get-GPOReport` cmdlet: - If a single GPO is specified, it must exist in this domain. diff --git a/docset/winserver2022-ps/grouppolicy/Get-GPPermission.md b/docset/winserver2022-ps/grouppolicy/Get-GPPermission.md index 06ce250dd9..d09cc198ea 100644 --- a/docset/winserver2022-ps/grouppolicy/Get-GPPermission.md +++ b/docset/winserver2022-ps/grouppolicy/Get-GPPermission.md @@ -32,7 +32,7 @@ Get-GPPermission [-Name] [-TargetName ] [-TargetType -Context -Key -Key [-ValueName ] [-Domai ## DESCRIPTION -The **Get-GPRegistryValue** cmdlet retrieves one or more registry-based policy settings under either +The `Get-GPRegistryValue` cmdlet retrieves one or more registry-based policy settings under either Computer Configuration or User Configuration in a Group Policy Object (GPO). You can get registry-based policy settings for a specific registry value, or for all the registry @@ -131,7 +131,7 @@ to Delete). Specifies the domain for this cmdlet. You must specify the fully qualified domain name (FQDN) of the domain (for instance: sales.contoso.com). -For the **Get-GPRegistryValue** cmdlet, the GPO for which to get registry-based policy settings must +For the `Get-GPRegistryValue` cmdlet, the GPO for which to get registry-based policy settings must exist in this domain. If you do not specify the **Domain** parameter, the domain of the user that is running the current @@ -296,9 +296,9 @@ contain GPOs from different domains are not supported. This cmdlet returns **PolicyRegistrySetting** objects that represent registry-based policy settings. These objects can be piped into the following cmdlets: -- Set-GPRegistryValue +- `Set-GPRegistryValue` -- Remove-GPRegistryValue +- `Remove-GPRegistryValue` ## NOTES diff --git a/docset/winserver2022-ps/grouppolicy/Get-GPResultantSetOfPolicy.md b/docset/winserver2022-ps/grouppolicy/Get-GPResultantSetOfPolicy.md index ef249a6efb..a55135575c 100644 --- a/docset/winserver2022-ps/grouppolicy/Get-GPResultantSetOfPolicy.md +++ b/docset/winserver2022-ps/grouppolicy/Get-GPResultantSetOfPolicy.md @@ -23,7 +23,7 @@ Get-GPResultantSetOfPolicy [-Computer ] [-User ] -ReportType ] [-Server ] [-All] [ -Path [-TargetGuid ] [-TargetN ## DESCRIPTION -The **Import-GPO** cmdlet imports the settings from a Group Policy Object (GPO) backup into a +The `Import-GPO` cmdlet imports the settings from a Group Policy Object (GPO) backup into a specified target GPO. The target GPO can be in a different domain or forest than the backup that was made and it does not have to exist prior to the operation. @@ -226,7 +226,7 @@ Accept wildcard characters: False Specifies the domain for this cmdlet. You must specify the fully qualified domain name (FQDN) of the domain. -For the **Import-GPO** cmdlet, this is the domain into which you want to import the GPO. +For the `Import-GPO` cmdlet, this is the domain into which you want to import the GPO. If you do not specify the **Domain** parameter, the domain of the user that is running the current session is used. If the cmdlet is being run from a computer startup or shutdown script, the domain @@ -385,7 +385,7 @@ This cmdlet returns an object that represents the GPO after the settings have be ## NOTES -* You can use the **Import-GPO** to copy settings from a GPO backup in one domain to the same domain +* You can use the `Import-GPO` to copy settings from a GPO backup in one domain to the same domain or another domain in the same or different forest. You can use the **Domain** parameter to explicitly specify the domain for this cmdlet. diff --git a/docset/winserver2022-ps/grouppolicy/Invoke-GPUpdate.md b/docset/winserver2022-ps/grouppolicy/Invoke-GPUpdate.md index 0feff10fa2..cbc8dc9d6d 100644 --- a/docset/winserver2022-ps/grouppolicy/Invoke-GPUpdate.md +++ b/docset/winserver2022-ps/grouppolicy/Invoke-GPUpdate.md @@ -32,7 +32,7 @@ Invoke-GPUpdate [-AsJob] [-Boot] [[-Computer] ] [[-RandomDelayInMinutes] ## DESCRIPTION -The **Invoke-GPUpdate** cmdlet refreshes Group Policy settings, including security settings that are +The `Invoke-GPUpdate` cmdlet refreshes Group Policy settings, including security settings that are set on remote computers by scheduling the running of the Gpupdate command on a remote computer. You can combine this cmdlet in a scripted fashion to schedule the Gpupdate command on a group of computers. @@ -50,7 +50,7 @@ Invoke-GPUpdate ``` This command schedules a Group Policy refresh on the computer on which you are running the -**Invoke-GPUpdate** cmdlet. +`Invoke-GPUpdate` cmdlet. ### Example 2: Schedule a Group Policy refresh on a remote computer diff --git a/docset/winserver2022-ps/grouppolicy/New-GPLink.md b/docset/winserver2022-ps/grouppolicy/New-GPLink.md index d754244bee..007c9b5649 100644 --- a/docset/winserver2022-ps/grouppolicy/New-GPLink.md +++ b/docset/winserver2022-ps/grouppolicy/New-GPLink.md @@ -5,7 +5,7 @@ Module Name: GroupPolicy ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/grouppolicy/new-gplink?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 -title: New-GPLink +title: `New-GPLink` --- # New-GPLink @@ -34,7 +34,7 @@ New-GPLink [-Name] -Target [-LinkEnabled ] [-Order ## DESCRIPTION -The **New-GPLink** cmdlet links a GPO to a site, domain, or organizational unit (OU). By default, +The `New-GPLink` cmdlet links a GPO to a site, domain, or organizational unit (OU). By default, the link is enabled, which means that the settings of the GPO are applied at the level of the target Active Directory container according to the rules of inheritance and precedence when Group Policy is processed. @@ -68,9 +68,9 @@ the domain of the user, or the computer, is different than `contoso.com`, a trus exist between the two domains. Because this command can take a GPO as input, you can insert any command that returns a GPO between -New-GPO and **New-GPLink** to configure the GPO. For instance, you can insert **Set-GPPermissions** -commands to set permissions on the GPO, Set-GPRegistryValue cmdlet to configure one or more -registry-based policy settings for the GPO, or the **Set-GPPrefRegistryValue** cmdlet to configure +`New-GPO` and `New-GPLink` to configure the GPO. For instance, you can insert `Set-GPPermissions` +commands to set permissions on the GPO, `Set-GPRegistryValue` cmdlet to configure one or more +registry-based policy settings for the GPO, or the `Set-GPPrefRegistryValue` cmdlet to configure one or more Registry preference items for the GPO. ### Example 2: Link a GPO in the domain of the user @@ -132,7 +132,7 @@ Accept wildcard characters: False Specifies the domain for this cmdlet. You must specify the fully qualified domain name (FQDN) of the domain. -For the **New-GPLink** cmdlet: +For the `New-GPLink` cmdlet: - The GPO to link from must exist in this domain. @@ -273,7 +273,7 @@ precedence. By default, the GPO link is added at the lowest precedence with a link order equal to the number of GPO links to the container, plus one. Link order is a dynamic value because the value may change as GPO links are added and deleted from the container. You can change the link order of a GPO link with -the **Set-GPLink** cmdlet. +the `Set-GPLink` cmdlet. ```yaml Type: Int32 diff --git a/docset/winserver2022-ps/grouppolicy/New-GPO.md b/docset/winserver2022-ps/grouppolicy/New-GPO.md index ac2a6b7df8..c638290bc2 100644 --- a/docset/winserver2022-ps/grouppolicy/New-GPO.md +++ b/docset/winserver2022-ps/grouppolicy/New-GPO.md @@ -39,7 +39,7 @@ New-GPO [-Name] -StarterGpoName [-Comment ] [-Domain < ## DESCRIPTION -The **New-GPO** cmdlet creates a GPO with a specified name. By default, the newly created GPO is not +The `New-GPO` cmdlet creates a GPO with a specified name. By default, the newly created GPO is not linked to a site, domain, or organizational unit (OU). You can use this cmdlet to create a GPO that is based on a starter GPO by specifying the GUID or the @@ -107,7 +107,7 @@ domain, and grants the `Marketing Admins` security group permissions to edit the A GPO object is returned by the command, so you could continue to configure the new GPO by piping the output to other cmdlets. For example, you could set Registry preference items or registry-based -policy settings by piping the output to **Set-GPPrefRegistryValue** or to **Set-GPRegistryValue**. +policy settings by piping the output to `Set-GPPrefRegistryValue` or to `Set-GPRegistryValue`. ## PARAMETERS @@ -152,7 +152,7 @@ Accept wildcard characters: False Specifies the domain for this cmdlet. You must specify the fully qualified domain name (FQDN) of the domain. -For the **New-GPO** cmdlet: +For the `New-GPO` cmdlet: - The new GPO is created in this domain. diff --git a/docset/winserver2022-ps/grouppolicy/New-GPStarterGPO.md b/docset/winserver2022-ps/grouppolicy/New-GPStarterGPO.md index deef30533a..e09bbaf359 100644 --- a/docset/winserver2022-ps/grouppolicy/New-GPStarterGPO.md +++ b/docset/winserver2022-ps/grouppolicy/New-GPStarterGPO.md @@ -23,8 +23,8 @@ New-GPStarterGPO [-Name] [-Comment ] [-Domain ] [-Serve ## DESCRIPTION -The **New-GPStarterGPO** cmdlet creates a Starter GPO with the specified name. If the Starter GPOs -folder does not exist in the SYSVOL when the **New-GPStarterGPO** cmdlet is called, it is created +The `New-GPStarterGPO` cmdlet creates a Starter GPO with the specified name. If the Starter GPOs +folder does not exist in the SYSVOL when the `New-GPStarterGPO` cmdlet is called, it is created and populated with the eight Starter GPOs that ship with Group Policy. ## EXAMPLES diff --git a/docset/winserver2022-ps/grouppolicy/Remove-GPLink.md b/docset/winserver2022-ps/grouppolicy/Remove-GPLink.md index 5b382d1361..d272a260e0 100644 --- a/docset/winserver2022-ps/grouppolicy/Remove-GPLink.md +++ b/docset/winserver2022-ps/grouppolicy/Remove-GPLink.md @@ -32,7 +32,7 @@ Remove-GPLink [-Name] -Target [-Domain ] [-Server [-Domain ] [-Server ] [-KeepLinks] [ ## DESCRIPTION -The **Remove-GPO** cmdlet removes the Group Policy Object (GPO) container and data from the +The `Remove-GPO` cmdlet removes the Group Policy Object (GPO) container and data from the directory service and the system volume folder (SysVol). ## EXAMPLES diff --git a/docset/winserver2022-ps/grouppolicy/Remove-GPPrefRegistryValue.md b/docset/winserver2022-ps/grouppolicy/Remove-GPPrefRegistryValue.md index c183f6d5bb..080eb47dd1 100644 --- a/docset/winserver2022-ps/grouppolicy/Remove-GPPrefRegistryValue.md +++ b/docset/winserver2022-ps/grouppolicy/Remove-GPPrefRegistryValue.md @@ -35,7 +35,7 @@ Remove-GPPrefRegistryValue [-Name] -Context -Key [-Key] [[-ValueName] ] ## DESCRIPTION -The **Remove-GPRegistryValue** cmdlet removes one or more registry-based policy settings from either +The `Remove-GPRegistryValue` cmdlet removes one or more registry-based policy settings from either Computer Configuration or User Configuration in a Group Policy Object (GPO). You can specify the GPO by its display name or by its GUID. @@ -86,7 +86,7 @@ This command removes the registry-based policy setting for the registry value the GPO named `TestGPO`. The registry value is no longer modified when the GPO is applied on a client. Removing a policy setting does not delete the registry value on a client. To delete the registry value when the GPO is applied on a client, you must disable the policy setting by using the -**Set-GPRegistryValue** cmdlet. +`Set-GPRegistryValue` cmdlet. ### Example 2: Remove all the registry-based policy settings under the specified registry key @@ -123,7 +123,7 @@ Accept wildcard characters: False Specifies the domain for this cmdlet. You must specify the fully qualified domain name (FQDN) of the domain. -For the **Remove-GPRegistryValue** cmdlet, the GPO from which to remove the registry-based policy setting must exist in this domain. +For the `Remove-GPRegistryValue` cmdlet, the GPO from which to remove the registry-based policy setting must exist in this domain. If you do not specify the **Domain** parameter, the domain of the user that is running the current session is used. If the cmdlet is being run from a computer startup or shutdown script, the domain diff --git a/docset/winserver2022-ps/grouppolicy/Rename-GPO.md b/docset/winserver2022-ps/grouppolicy/Rename-GPO.md index 5f5e1c7103..6483380d6e 100644 --- a/docset/winserver2022-ps/grouppolicy/Rename-GPO.md +++ b/docset/winserver2022-ps/grouppolicy/Rename-GPO.md @@ -32,7 +32,7 @@ Rename-GPO [-Name] -TargetName [-Domain ] [-Server [-Domain ] [-Server ] [-All] [-WhatIf ## DESCRIPTION -The **Restore-GPO** cmdlet restores a Group Policy Object (GPO) backup to the original domain from +The `Restore-GPO` cmdlet restores a Group Policy Object (GPO) backup to the original domain from which it was saved. If the original domain is not available, or if the GPO no longer exists in the domain, the cmdlet fails. @@ -162,7 +162,7 @@ Accept wildcard characters: False Specifies the domain for this cmdlet. You must specify the fully qualified domain name (FQDN) of the domain. -For the **Restore-GPO** cmdlet, this is the domain in which you want to restore the GPO. This must +For the `Restore-GPO` cmdlet, this is the domain in which you want to restore the GPO. This must be the domain from which the GPO was backed up. If you do not specify the **Domain** parameter, the domain of the user that is running the current diff --git a/docset/winserver2022-ps/grouppolicy/Set-GPInheritance.md b/docset/winserver2022-ps/grouppolicy/Set-GPInheritance.md index 71b6efa52d..10d8384b69 100644 --- a/docset/winserver2022-ps/grouppolicy/Set-GPInheritance.md +++ b/docset/winserver2022-ps/grouppolicy/Set-GPInheritance.md @@ -23,7 +23,7 @@ Set-GPInheritance [-Target] -IsBlocked [-Domain -TargetName ## DESCRIPTION -The **Set-GPPermission** cmdlet grants a level of permissions to a security principal (user, +The `Set-GPPermission` cmdlet grants a level of permissions to a security principal (user, security group, or computer) for one Group Policy Object (GPO) or all the GPOs in a domain. You use the **TargetName** and **TargetType** parameters to specify a user, security group, or computer for which to set the permission level. You can use the *Name* or the **Guid** parameter to set the @@ -138,12 +138,12 @@ GpoApply for all GPOs on which the `Group` has permissions. The command returns the new permission level is set. The cmdlet is used to get all the GPOs in the domain. Then, the collection is piped into the -**ForEach-Object** command. As each GPO is evaluated, it is piped into **Get-GPPermission**. If a +`ForEach-Object` command. As each GPO is evaluated, it is piped into `Get-GPPermission`. If a permission level for the Marketing Admins group is returned, the GPO is piped into -**Set-GPPermission** to set the permission level for the group. The **Replace** parameter is +`Set-GPPermission` to set the permission level for the group. The **Replace** parameter is specified to make sure that the previous permission level is overwritten. -The **ErrorAction** parameter is set to `SilentlyContinue` for **Get-GPPermissions**. This is +The **ErrorAction** parameter is set to `SilentlyContinue` for `Get-GPPermissions`. This is because a non-terminating error occurs if the specified security principal does not have permissions on the GPO. Specifying **ErrorAction** as `SilentlyContinue` prevents the error messages from being printed for GPOs on which the security principal does not have permissions. For more information @@ -189,7 +189,7 @@ Accept wildcard characters: False Specifies the domain for this cmdlet. You must specify the fully qualified domain name (FQDN) of the domain. -For the **Set-GPPermission** cmdlet, the GPO for which to get the permission level must exist in +For the `Set-GPPermission` cmdlet, the GPO for which to get the permission level must exist in this domain. If you do not specify the **DomainName** parameter, the domain of the user that is running the @@ -330,11 +330,11 @@ principal (domain\account) or just its name. For instance, in the `contoso.com` domain, to specify: -- The user `SomeUser`, use `contoso\SomeUser` or `SomeUser`. +- The user SomeUser, use `contoso\SomeUser` or `SomeUser`. - The Domain Admins security group, use `contoso\Domain Admins` or `Domain Admins`. -- The computer `computer-01`, use `contoso\computer-01` or `computer-01`. +- The computer computer-01, use `contoso\computer-01` or `computer-01`. ```yaml Type: System.String diff --git a/docset/winserver2022-ps/grouppolicy/Set-GPPrefRegistryValue.md b/docset/winserver2022-ps/grouppolicy/Set-GPPrefRegistryValue.md index 33bc36bf35..3506012a42 100644 --- a/docset/winserver2022-ps/grouppolicy/Set-GPPrefRegistryValue.md +++ b/docset/winserver2022-ps/grouppolicy/Set-GPPrefRegistryValue.md @@ -162,15 +162,15 @@ Remove-GPPrefRegistryValue @removeGPPrefParams | This command creates a disabled Registry preference item for the registry value `HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey ValueOne` in `User` Configuration in the GPO named -`TestGPO`. The **Remove-GPPrefRegistryValue** command removes any Registry preference items that +`TestGPO`. The `Remove-GPPrefRegistryValue` command removes any Registry preference items that configure the value from User Configuration. Then, the GPO named `TestGPO` returned by the -**Remove-GPPrefRegistryValue** is piped into **Set-GPPrefRegistryValue** to configure the `disabled` +`Remove-GPPrefRegistryValue` is piped into `Set-GPPrefRegistryValue` to configure the `disabled` Registry preference item. After this command completes, the `disabled` Registry preference item is the only Registry preference item associated with the registry value in User Configuration. If `TestGPO` does not initially have a Registry preference item configured for the specified registry value, a non-terminating error occurs. You can suppress the error message by supplying the -**ErrorAction** parameter to **Remove-GPPrefRegistryValue** and setting its value to +**ErrorAction** parameter to `Remove-GPPrefRegistryValue` and setting its value to SilentlyContinue. For more information about the **ErrorAction** parameter, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). @@ -200,13 +200,13 @@ This command configures a Registry preference item to update the registry value previously had a Registry preference item configured for that value in User Configuration. The command is invoked with the **All** parameter to get all the GPOs in the domain. These GPOs are -piped into the **Remove-GPPrefRegistryValue** cmdlet. If the GPO contains any Registry preference -items configured for the specified key, they are removed. **Remove-GPPrefRegistryValue** only +piped into the `Remove-GPPrefRegistryValue` cmdlet. If the GPO contains any Registry preference +items configured for the specified key, they are removed. `Remove-GPPrefRegistryValue` only outputs a GPO to the pipeline if it removes a Registry preference item from a GPO. Finally, these -GPOs are piped to the **Set-GPPrefRegistryValue** to configure the Registry preference item to +GPOs are piped to the `Set-GPPrefRegistryValue` to configure the Registry preference item to update the registry value. -If a GPO passed to **Remove-GPPrefRegistryValue** does not have a Registry preference item +If a GPO passed to `Remove-GPPrefRegistryValue` does not have a Registry preference item configured for the specified value, a non-terminating error occurs. The **ErrorAction** parameter is set to `SilentlyContinue` to suppress the error message. @@ -259,25 +259,25 @@ registry key `HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExampleKey` from `User` Conf source GPO named `TestGPO` to Computer Configuration in destination GPO named `TestGPO-1`. A copy of the destination GPO `TestGPO-1` is returned for each Registration preference item set. -The **Get-GPPrefRegistryValue** command gets all the Registry preference items that configure values +The `Get-GPPrefRegistryValue` command gets all the Registry preference items that configure values under User Configuration in the source GPO. This command also returns all first level subkeys that have values configured (though not the Registry preference items for the values themselves). These -Registry preference items and the subkeys are then piped into the **Set-GPPrefRegistryValue** +Registry preference items and the subkeys are then piped into the `Set-GPPrefRegistryValue` cmdlet. -The **Set-GPPrefRegistryValue** command configures the Registry preference items for the registry +The `Set-GPPrefRegistryValue` command configures the Registry preference items for the registry values in the destination GPO. -- The subkeys returned by **Get-GPPrefRegistryValue** do not have an **Action** property, and so a +- The subkeys returned by `Get-GPPrefRegistryValue` do not have an **Action** property, and so a non-terminating error occurs for each subkey. The **ErrorAction** parameter is specified to suppress these error messages. -- It is a good practice to specify an order of one `-Order 1` in **Set-GPPrefRegistryValue** when it +- It is a good practice to specify an order of one `-Order 1` in `Set-GPPrefRegistryValue` when it accepts input from the pipeline. This is because Registry preference items passed on the pipeline have an **Order** property. If the **Order** property of a Registry preference item passed on the pipeline is greater than the number of Registry preference items currently configured in the destination GPO, an out of range error occurs and the Registry preference item is not configured - in the destination GPO. By specifying the order as one in the **Set-GPPrefRegistryValue** command, + in the destination GPO. By specifying the order as one in the `Set-GPPrefRegistryValue` command, you override the **Order** property of the source Registry preference item, and prevent such errors from occurring. @@ -355,7 +355,7 @@ a new Registry preference item that is disabled. Any existing Registry preferenc configure the same key or value will still be applied when the GPO is processed on a client. This behavior is different than disabling an existing Registry preference item using the GPMC. -You can use the **Remove-GPPrefRegistryValue** cmdlet to remove any existing Registry preference +You can use the `Remove-GPPrefRegistryValue` cmdlet to remove any existing Registry preference items associated with the specified key or value from the appropriate configuration (User or Computer) in the GPO before you create the new disabled Registry preference item. This ensures that after you create the disabled Registry preference item, it will be the only Registry preference item @@ -378,7 +378,7 @@ Accept wildcard characters: False Specifies the domain for this cmdlet. You must specify the fully qualified domain name (FQDN) of the domain. -For the **Set-GPPrefRegistryValue** cmdlet, the GPO for which to configure the Registry preference +For the `Set-GPPrefRegistryValue` cmdlet, the GPO for which to configure the Registry preference item must exist in this domain. If you do not specify the **Domain** parameter, the domain of the user that is running the current diff --git a/docset/winserver2022-ps/grouppolicy/Set-GPRegistryValue.md b/docset/winserver2022-ps/grouppolicy/Set-GPRegistryValue.md index 2eaacfbd21..2bdd2db565 100644 --- a/docset/winserver2022-ps/grouppolicy/Set-GPRegistryValue.md +++ b/docset/winserver2022-ps/grouppolicy/Set-GPRegistryValue.md @@ -34,7 +34,7 @@ Set-GPRegistryValue [-Name] -Key [-ValueName ] [-Val ## DESCRIPTION -The **Set-GPRegistryValue** cmdlet configures a registry-based policy setting under either Computer +The `Set-GPRegistryValue` cmdlet configures a registry-based policy setting under either Computer Configuration or User Configuration in a Group Policy Object (GPO). The policy setting configures keys or values in the registry on the client computer when the GPO is applied. @@ -235,7 +235,7 @@ You can disable a policy setting for a registry key or value: When the GPO is applied on the client, only the specified value is removed from the registry. To remove a policy setting from a GPO without affecting existing registry keys or values on a client -when Group Policy is processed, use the **Remove-GPRegistryValue** cmdlet. +when Group Policy is processed, use the `Remove-GPRegistryValue` cmdlet. You cannot specify the **Additive**, **Type**, **Value**, or **ValuePrefix** parameters with the **Disable** parameter. @@ -257,7 +257,7 @@ Accept wildcard characters: False Specifies the domain for this cmdlet. You must specify the fully qualified domain name (FQDN) of the domain. -For the **Set-GPRegistryValue** cmdlet, the GPO in which to configure the registry-based policy +For the `Set-GPRegistryValue` cmdlet, the GPO in which to configure the registry-based policy setting must exist in this domain. If you do not specify the **Domain** parameter, the domain of the user that is running the current From b62c0fa6f8919d97447ca960c33faee914c403bd Mon Sep 17 00:00:00 2001 From: Phil Bossman Date: Thu, 4 May 2023 22:46:56 -0400 Subject: [PATCH 744/965] Fixed Copy-GPO.md title --- docset/winserver2022-ps/grouppolicy/Copy-GPO.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/grouppolicy/Copy-GPO.md b/docset/winserver2022-ps/grouppolicy/Copy-GPO.md index b0d18ffe84..6cf5569773 100644 --- a/docset/winserver2022-ps/grouppolicy/Copy-GPO.md +++ b/docset/winserver2022-ps/grouppolicy/Copy-GPO.md @@ -5,7 +5,7 @@ Module Name: GroupPolicy ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/grouppolicy/copy-gpo?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 -title: `Copy-GPO` +title: Copy-GPO --- # Copy-GPO From 358b8a8409a9c7ccff9ef2e3db4daed003d1b9bc Mon Sep 17 00:00:00 2001 From: Sean Wheeler Date: Fri, 5 May 2023 08:25:12 -0500 Subject: [PATCH 745/965] Update docset/winserver2022-ps/grouppolicy/New-GPLink.md --- docset/winserver2022-ps/grouppolicy/New-GPLink.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/grouppolicy/New-GPLink.md b/docset/winserver2022-ps/grouppolicy/New-GPLink.md index 007c9b5649..75c24299cf 100644 --- a/docset/winserver2022-ps/grouppolicy/New-GPLink.md +++ b/docset/winserver2022-ps/grouppolicy/New-GPLink.md @@ -5,7 +5,7 @@ Module Name: GroupPolicy ms.date: 12/20/2016 online version: https://learn.microsoft.com/powershell/module/grouppolicy/new-gplink?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 -title: `New-GPLink` +title: New-GPLink --- # New-GPLink From b513304d562eb5f213ab0ffc96069179bbf8fd9d Mon Sep 17 00:00:00 2001 From: Sean Wheeler Date: Fri, 5 May 2023 09:28:23 -0500 Subject: [PATCH 746/965] Fix build error --- .../grouppolicy/Get-GPPermission.md | 151 +++++++++--------- 1 file changed, 72 insertions(+), 79 deletions(-) diff --git a/docset/winserver2022-ps/grouppolicy/Get-GPPermission.md b/docset/winserver2022-ps/grouppolicy/Get-GPPermission.md index d09cc198ea..376f47edf4 100644 --- a/docset/winserver2022-ps/grouppolicy/Get-GPPermission.md +++ b/docset/winserver2022-ps/grouppolicy/Get-GPPermission.md @@ -48,9 +48,9 @@ Get-GPPermission -Name "TestGpo" -TargetName "Domain Users" -TargetType Group ``` ```Output -Trustee : Domain Users -TrusteeType : Group -PermissionLevel : GpoRead +Trustee : Domain Users +TrusteeType : Group +PermissionLevel : GpoRead Inherited : False ``` @@ -73,50 +73,50 @@ This command gets the permission level for the Domain Admins group on the GPO wi `fa4a9473-6e2a-4b78-175e68d97bde` in the `Sales.Contoso.com` domain. The `DC1.sales.contoso.com` domain controller is contacted to complete the operation. -If the domain of the user that is running the session (or, for startup and shutdown scripts, the -computer) is different from the sales.contoso.com domain, a trust must exist between the two +If the domain of the user that's running the session (or, for startup and shutdown scripts, the +computer) is different from the `sales.contoso.com` domain, a trust must exist between the two domains, or the command fails. ### Example 3: Get the permission level for all security principals on the specified GPO ```powershell -Get-GPPermission -Name "TestGPO" -All +Get-GPPermission -Name "TestGPO" -All ``` ```Output -Trustee : Authenticated Users -TrusteeType : WellKnownGroup -Permission : GpoApply -Inherited : False - -Trustee : Domain Admins -TrusteeType : Group -Permission : GpoEditDeleteModifySecurity -Inherited : False - -Trustee : Enterprise Admins -TrusteeType : Group -Permission : GpoEditDeleteModifySecurity -Inherited : False - -Trustee : ENTERPRISE DOMAIN CONTROLLERS -TrusteeType : WellKnownGroup -Permission : GpoRead -Inherited : False - -Trustee : SYSTEM -TrusteeType : WellKnownGroup -Permission : GpoEditDeleteModifySecurity +Trustee : Authenticated Users +TrusteeType : WellKnownGroup +Permission : GpoApply +Inherited : False + +Trustee : Domain Admins +TrusteeType : Group +Permission : GpoEditDeleteModifySecurity +Inherited : False + +Trustee : Enterprise Admins +TrusteeType : Group +Permission : GpoEditDeleteModifySecurity +Inherited : False + +Trustee : ENTERPRISE DOMAIN CONTROLLERS +TrusteeType : WellKnownGroup +Permission : GpoRead +Inherited : False + +Trustee : SYSTEM +TrusteeType : WellKnownGroup +Permission : GpoEditDeleteModifySecurity Inherited : False ``` This command gets the permission level for each security principal that has permissions on the GPO -named TestGPO. +named `TestGPO`. ### Example 4: Get the display name of each GPO for a specific permissions ```powershell -Get-GPO -All | ForEach-Object { +Get-GPO -All | ForEach-Object { if ( $_ | $params = @{ TargetName = 'contoso\Domain Admins' @@ -130,26 +130,27 @@ Get-GPO -All | ForEach-Object { ``` ```Output -Default Domain Policy -TestGPO-1 -TestGPO-2 Default Domain Controllers Policy -Internet Security +Default Domain Policy +TestGPO-1 +TestGPO-2 Default Domain Controllers Policy +Internet Security TestGPO ``` This command lists the display name of each GPO (in the domain) on which the specified security principal has permissions. -First, `Get-GPO` is used to retrieve all the GPOs in the domain (**Get-GPO -All**). Then, the -collection is piped into the `Foreach-Object` command. As each GPO is evaluated, it is piped into -`Get-GPPermissions`. If a permission level is returned, the DisplayName property of the GPO is -printed ($_.DisplayName). +First, `Get-GPO` is used to retrieve all the GPOs in the domain (`Get-GPO -All`). Then, the +collection is piped into the `Foreach-Object` command. As each GPO is evaluated, it's piped into +`Get-GPPermissions`. If a permission level is returned, the **DisplayName** property of the GPO is +printed. -Note: The ErrorAction parameter is set to SilentlyContinue for Get-GPPermissions. This is because a -non-terminating error occurs if the specified security principal does not have permissions on the -GPO. Specifying the ErrorAction as SilentlyContinue prevents the error messages from being printed -for GPOS on which the security principal does not have permissions. For more information about the -ErrorAction parameter, see about_CommonParameters. +The **ErrorAction** parameter is set to `SilentlyContinue`. This is because a non-terminating error +occurs if the specified security principal doesn't have permissions on the GPO. Specifying the +**ErrorAction** as `SilentlyContinue` prevents the error messages from being printed for GPOS on +which the security principal doesn't have permissions. For more information about the +**ErrorAction** parameter, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## PARAMETERS @@ -161,7 +162,7 @@ permissions on the GPO. ```yaml Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -172,17 +173,14 @@ Accept wildcard characters: False ### -DomainName -Specifies the domain for this cmdlet. -You must specify the fully qualified domain name (FQDN) of the domain. +Specifies the domain for this cmdlet. You must specify the fully qualified domain name (FQDN) of the +domain. The GPO specified must exist in this domain. -For the `Get-GPPermission` cmdlet, the GPO for which to get the permission level must exist in -this domain. - -If you do not specify the **Domain** parameter, the domain of the user that is running the current +If you don't specify the **Domain** parameter, the domain of the user that's running the current session is used. If the cmdlet is being run from a computer startup or shutdown script, the domain of the computer is used. For more information, see the Notes section in the full Help. -If you specify a domain that is different from the domain of the user that is running the current +If you specify a domain that's different from the domain of the user that's running the current session (or, for a startup or shutdown script, the computer), a trust must exist between that domain and the domain of the user or the computer. @@ -204,7 +202,7 @@ Accept wildcard characters: False ### -Guid Specifies the GPO from which to retrieve the permission level by its globally unique identifier -(GUID). The GUID uniquely identifies the GPO. +(GUID). The `GUID` uniquely identifies the GPO. You can also refer to the **Guid** parameter by its built-in alias, **Id**. For more information, see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). @@ -225,7 +223,7 @@ Accept wildcard characters: False Specifies the GPO from which to retrieve the permission level by its display name. -The display name is not guaranteed to be unique in the domain. If another GPO with the same display +The display name isn't guaranteed to be unique in the domain. If another GPO with the same display name exists in the domain an error occurs. You can use the **Guid** parameter to uniquely identify a GPO. @@ -249,7 +247,7 @@ Accept wildcard characters: False Specifies the name of the domain controller that this cmdlet contacts to complete the operation. You can specify either the fully qualified domain name (FQDN) or the host name. -If you do not specify the name by using the **Server** parameter, the PDC emulator is contacted. +If you don't specify the name using the **Server** parameter, the PDC emulator is contacted. You can also refer to the **Server** parameter by its built-in alias, **DC**. For more information, see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). @@ -274,16 +272,14 @@ security principal (domain\account) or just its name. For instance, in the `contoso.com` domain, to specify: -- The user someuser, use `contoso\someuser` or `someuser`. - +- The username, use `contoso\someuser` or `someuser`. - The Domain Admins security group, use `contoso\Domain Admins` or `Domain Admins`. - -- The computer computer-01, use `contoso\computer-01` or `computer-01`. +- The computer name, use `contoso\computer-01` or `computer-01`. ```yaml Type: System.String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -294,20 +290,17 @@ Accept wildcard characters: False ### -TargetType -The type of security principal for which to get the permission level. - -The acceptable values for this parameter are: +The type of security principal for which to get the permission level. The acceptable values for this +parameter are: - Computer - - User - - Group ```yaml Type: PermissionTrusteeType Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Computer, User, Group Required: False @@ -333,26 +326,26 @@ GPOs from different domains are not supported. ## OUTPUTS -### +### Microsoft.GroupPolicy.GPPermissionCollection + +### Microsoft.GroupPolicy.GPPermission This cmdlet returns an object that represents permissions for the specified security principal (user, group, or computer) on the GPO. ## NOTES -* You can use the *DomainName* parameter to explicitly specify the domain for this cmdlet. - - If you do not explicitly specify the domain, the cmdlet uses the default domain. The default - domain is the domain that is used to access network resources by the security context under which - the current session is running. This domain is typically the domain of the user that is running - the session. For example, the domain of the user who started the session by opening Windows - PowerShell or the domain of a user that is specified in a runas command. However, computer startup - and shutdown scripts run under the context of the LocalSystem account. The LocalSystem account is - a built-in local account, and it accesses network resources under the context of the computer - account. Therefore, when this cmdlet is run from a startup or shutdown script, the default domain - is the domain to which the computer is joined. +You can use the **DomainName** parameter to explicitly specify the domain for this cmdlet. If you do +not explicitly specify the domain, the cmdlet uses the default domain. The default domain is the +domain that is used to access network resources by the security context under which the current +session is running. This domain is typically the domain of the user that is running the session. For +example, the domain of the user who started the session by opening Windows PowerShell or the domain +of a user that is specified in a runas command. However, computer startup and shutdown scripts run +under the context of the LocalSystem account. The LocalSystem account is a built-in local account, +and it accesses network resources under the context of the computer account. Therefore, when this +cmdlet is run from a startup or shutdown script, the default domain is the domain to which the +computer is joined. ## RELATED LINKS [Set-GPPermission](./Set-GPPermission.md) - From 45e84334665ed14a7e8baff593c5823b61f47fa3 Mon Sep 17 00:00:00 2001 From: Sean Wheeler Date: Fri, 5 May 2023 09:52:26 -0500 Subject: [PATCH 747/965] Fix typos --- .../grouppolicy/Get-GPPermission.md | 2 +- .../grouppolicy/Remove-GPLink.md | 111 +++++++++--------- 2 files changed, 56 insertions(+), 57 deletions(-) diff --git a/docset/winserver2022-ps/grouppolicy/Get-GPPermission.md b/docset/winserver2022-ps/grouppolicy/Get-GPPermission.md index 376f47edf4..e8e5bcf6ce 100644 --- a/docset/winserver2022-ps/grouppolicy/Get-GPPermission.md +++ b/docset/winserver2022-ps/grouppolicy/Get-GPPermission.md @@ -60,7 +60,7 @@ This command gets the permission level for the Domain Users group on the GPO nam ```powershell $params = @{ - Domain = 'Sales.Contoso.com' + Domain = 'sales.contoso.com' Server = 'DC1' GUID = 'fa4a9473-6e2a-4b87-ab78-175e68d97bde' TargetName = 'Domain Admins' diff --git a/docset/winserver2022-ps/grouppolicy/Remove-GPLink.md b/docset/winserver2022-ps/grouppolicy/Remove-GPLink.md index d272a260e0..b2499de13d 100644 --- a/docset/winserver2022-ps/grouppolicy/Remove-GPLink.md +++ b/docset/winserver2022-ps/grouppolicy/Remove-GPLink.md @@ -45,16 +45,16 @@ Remove-GPLink -Name "MyGPO" -Target "OU=MyOU,dc=contoso,dc=com" ``` ```Output -DisplayName : MyGPO -DomainName : contoso.com -Owner : CONTOSO\Domain Admins -Id : 375865b2-3b5f-480f-8f56-2a994ea6e725 -GpoStatus : AllSettingsEnabled -Description : -CreationTime : 2/26/2009 11:28:08 PM -ModificationTime : 3/5/2009 3:36:34 PM -UserVersion : AD Version: 0, SysVol Version: 0 -ComputerVersion : AD Version: 1, SysVol Version: 1 +DisplayName : MyGPO +DomainName : contoso.com +Owner : CONTOSO\Domain Admins +Id : 375865b2-3b5f-480f-8f56-2a994ea6e725 +GpoStatus : AllSettingsEnabled +Description : +CreationTime : 2/26/2009 11:28:08 PM +ModificationTime : 3/5/2009 3:36:34 PM +UserVersion : AD Version: 0, SysVol Version: 0 +ComputerVersion : AD Version: 1, SysVol Version: 1 WmiFilter : ``` @@ -76,28 +76,28 @@ This command removes the link between the GPO named MyGPO and the default site. ``` ```Output -DisplayName : TestGPO-3 -DomainName : contoso.com -Owner : CONTOSO\Domain Admins -Id : d02126d4-82e8-4e87-b4a0-2d44b6891411 -GpoStatus : AllSettingsEnabled -Description : -CreationTime : 2/27/2009 2:59:51 PM -ModificationTime : 3/5/2009 3:36:37 PM -UserVersion : AD Version: 13, SysVol Version: 13 -ComputerVersion : AD Version: 0, SysVol Version: 0 -WmiFilter : - -DisplayName : TestGPO-2 -DomainName : contoso.com -Owner : CONTOSO\Domain Admins -Id : 375865b2-3b5f-480f-8f56-2a994ea6e725 -GpoStatus : AllSettingsEnabled -Description : -CreationTime : 2/26/2009 11:28:08 PM -ModificationTime : 3/5/2009 3:36:34 PM -UserVersion : AD Version: 0, SysVol Version: 0 -ComputerVersion : AD Version: 1, SysVol Version: 1 +DisplayName : TestGPO-3 +DomainName : contoso.com +Owner : CONTOSO\Domain Admins +Id : d02126d4-82e8-4e87-b4a0-2d44b6891411 +GpoStatus : AllSettingsEnabled +Description : +CreationTime : 2/27/2009 2:59:51 PM +ModificationTime : 3/5/2009 3:36:37 PM +UserVersion : AD Version: 13, SysVol Version: 13 +ComputerVersion : AD Version: 0, SysVol Version: 0 +WmiFilter : + +DisplayName : TestGPO-2 +DomainName : contoso.com +Owner : CONTOSO\Domain Admins +Id : 375865b2-3b5f-480f-8f56-2a994ea6e725 +GpoStatus : AllSettingsEnabled +Description : +CreationTime : 2/26/2009 11:28:08 PM +ModificationTime : 3/5/2009 3:36:34 PM +UserVersion : AD Version: 0, SysVol Version: 0 +ComputerVersion : AD Version: 1, SysVol Version: 1 WmiFilter : ``` @@ -111,22 +111,6 @@ inherited from higher-level containers are not included. This collection is pipe ## PARAMETERS -### -Confirm - -Prompts you for confirmation before running the cmdlet. - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: cf - -Required: False -Position: Named -Default value: False -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -Domain Specifies the domain for this cmdlet. You must specify the fully qualified domain name (FQDN) of the @@ -139,9 +123,9 @@ For the `Remove-GPLink` cmdlet: - The Active Directory container (site, domain, or OU) that is linked must exist in a domain that has a trust relationship with this domain. -Note: To specify a domain to link to, use the Target parameter. +Note: To specify a domain to link to, use the **Target** parameter. -If you do not specify the Domain parameter, the domain of the user that is running the current +If you do not specify the **Domain** parameter, the domain of the user that is running the current session is used. If the cmdlet is being run from a computer startup or shutdown script, the domain of the computer is used. For more information, see the Notes section in the full Help. @@ -167,7 +151,7 @@ Accept wildcard characters: False ### -Guid Specifies the GPO for which to remove the link by its globally unique identifier (GUID). -The GUID uniquely identifies the GPO. +The `GUID` uniquely identifies the GPO. You can also refer to the **Guid** parameter by its built-in aliases, **id** and **gpoid**. For more information, see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). @@ -212,8 +196,8 @@ Accept wildcard characters: False Specifies the name of the domain controller that this cmdlet contacts to complete the operation. You can specify either the fully qualified domain name (FQDN) or the host name. -If you do not specify the name by using the **Server** parameter, the primary domain controller -(PDC) emulator is contacted. +If you do not specify the name using the **Server** parameter, the primary domain controller (PDC) +emulator is contacted. You can also refer to the **Server** parameter by its built-in alias, **DC**. For more information, see [about_Aliases](/powershell/module/microsoft.powershell.core/about/about_aliases). @@ -239,7 +223,7 @@ or OU from which to remove the link. For instance, for the `MyOU` organizational ```yaml Type: System.String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -248,6 +232,22 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -Confirm + +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -WhatIf Shows what would happen if the cmdlet runs. The cmdlet is not run. @@ -276,7 +276,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS ### Microsoft.GroupPolicy.GpoLink -~~~~ + This cmdlet accepts an object that represents the link between a GPO and a site, domain, or OU. ## OUTPUTS @@ -292,4 +292,3 @@ This cmdlet returns the GPO for which the link has been removed. [New-GPLink](./New-GPLink.md) [Set-GPLink](./Set-GPLink.md) - From 43192a85c968701bb01e48578ca456513aec47c2 Mon Sep 17 00:00:00 2001 From: Sean Wheeler Date: Fri, 5 May 2023 10:04:51 -0500 Subject: [PATCH 748/965] fix typo --- docset/winserver2022-ps/grouppolicy/Remove-GPLink.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/docset/winserver2022-ps/grouppolicy/Remove-GPLink.md b/docset/winserver2022-ps/grouppolicy/Remove-GPLink.md index b2499de13d..5d283566c9 100644 --- a/docset/winserver2022-ps/grouppolicy/Remove-GPLink.md +++ b/docset/winserver2022-ps/grouppolicy/Remove-GPLink.md @@ -254,8 +254,6 @@ Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml Type: System.Management.Automation.SwitchParameter -nt.Automation.SwitchParameter - Parameter Sets: (All) Aliases: wi From 586c335a6e2cc3299b69fd7e99a96ad4a1f44ea7 Mon Sep 17 00:00:00 2001 From: Kevin Cefalu Date: Mon, 1 May 2023 12:42:56 -0500 Subject: [PATCH 749/965] Resolves: windows-powershell-docs #3327 --- docset/winserver2022-ps/dfsn/DFSN.md | 32 ++- .../winserver2022-ps/dfsn/Get-DfsnAccess.md | 67 +++-- .../winserver2022-ps/dfsn/Get-DfsnFolder.md | 79 +++--- .../dfsn/Get-DfsnFolderTarget.md | 73 +++-- docset/winserver2022-ps/dfsn/Get-DfsnRoot.md | 100 ++++--- .../dfsn/Get-DfsnRootTarget.md | 80 ++++-- .../dfsn/Get-DfsnServerConfiguration.md | 64 +++-- .../winserver2022-ps/dfsn/Grant-DfsnAccess.md | 87 +++--- .../winserver2022-ps/dfsn/Move-DfsnFolder.md | 99 ++++--- .../winserver2022-ps/dfsn/New-DfsnFolder.md | 219 ++++++++------- .../dfsn/New-DfsnFolderTarget.md | 152 +++++----- docset/winserver2022-ps/dfsn/New-DfsnRoot.md | 261 ++++++++++-------- .../dfsn/New-DfsnRootTarget.md | 136 +++++---- .../dfsn/Remove-DfsnAccess.md | 82 +++--- .../dfsn/Remove-DfsnFolder.md | 94 ++++--- .../dfsn/Remove-DfsnFolderTarget.md | 103 ++++--- .../winserver2022-ps/dfsn/Remove-DfsnRoot.md | 94 ++++--- .../dfsn/Remove-DfsnRootTarget.md | 101 ++++--- .../dfsn/Revoke-DfsnAccess.md | 87 +++--- .../winserver2022-ps/dfsn/Set-DfsnFolder.md | 139 ++++++---- .../dfsn/Set-DfsnFolderTarget.md | 150 +++++----- docset/winserver2022-ps/dfsn/Set-DfsnRoot.md | 195 +++++++------ .../dfsn/Set-DfsnRootTarget.md | 148 +++++----- .../dfsn/Set-DfsnServerConfiguration.md | 150 +++++----- 24 files changed, 1647 insertions(+), 1145 deletions(-) diff --git a/docset/winserver2022-ps/dfsn/DFSN.md b/docset/winserver2022-ps/dfsn/DFSN.md index 4bbf0236a3..314863ddcf 100644 --- a/docset/winserver2022-ps/dfsn/DFSN.md +++ b/docset/winserver2022-ps/dfsn/DFSN.md @@ -10,78 +10,102 @@ title: DFSN --- # DFSN Module + ## Description -This reference provides cmdlet descriptions and syntax for all DFS Namespace cmdlets. -It lists the cmdlets in alphabetical order based on the verb at the beginning of the cmdlet. + +This reference provides cmdlet descriptions and syntax for all DFS Namespace cmdlets. It lists the +cmdlets in alphabetical order based on the verb at the beginning of the cmdlet. ## DFSN Cmdlets + ### [Get-DfsnAccess](./Get-DfsnAccess.md) + Gets permissions for a DFS namespace folder. ### [Get-DfsnFolder](./Get-DfsnFolder.md) + Gets settings for a DFS namespace folder. ### [Get-DfsnFolderTarget](./Get-DfsnFolderTarget.md) + Gets settings for targets of a DFS namespace folder. ### [Get-DfsnRoot](./Get-DfsnRoot.md) + Gets settings for DFS namespaces. ### [Get-DfsnRootTarget](./Get-DfsnRootTarget.md) + Gets settings for root targets of a DFS namespace. ### [Get-DfsnServerConfiguration](./Get-DfsnServerConfiguration.md) + Gets DFS namespace settings for a DFSN root server. ### [Grant-DfsnAccess](./Grant-DfsnAccess.md) + Grants permissions to users and groups to access a DFS namespace folder. ### [Move-DfsnFolder](./Move-DfsnFolder.md) + Moves or renames a DFS namespace folder. ### [New-DfsnFolder](./New-DfsnFolder.md) + Creates a folder in a DFS namespace. ### [New-DfsnFolderTarget](./New-DfsnFolderTarget.md) + Adds a target to a DFS namespace folder. ### [New-DfsnRoot](./New-DfsnRoot.md) + Creates a DFS namespace. ### [New-DfsnRootTarget](./New-DfsnRootTarget.md) + Adds a root target to a DFS namespace. ### [Remove-DfsnAccess](./Remove-DfsnAccess.md) + Removes users and groups from the ACL for a folder in a DFS namespace. ### [Remove-DfsnFolder](./Remove-DfsnFolder.md) + Removes a DFS namespace folder. ### [Remove-DfsnFolderTarget](./Remove-DfsnFolderTarget.md) + Removes a target for a DFS namespace folder. ### [Remove-DfsnRoot](./Remove-DfsnRoot.md) + Removes a DFS namespace. ### [Remove-DfsnRootTarget](./Remove-DfsnRootTarget.md) + Removes a target for a DFS namespace root. ### [Revoke-DfsnAccess](./Revoke-DfsnAccess.md) + Revokes permissions for users to access and enumerate the contents of a DFS namespace folder. ### [Set-DfsnFolder](./Set-DfsnFolder.md) + Changes settings for a DFS namespace folder. ### [Set-DfsnFolderTarget](./Set-DfsnFolderTarget.md) + Changes settings for a target of a DFS namespace folder. ### [Set-DfsnRoot](./Set-DfsnRoot.md) + Changes settings for a DFS namespace. ### [Set-DfsnRootTarget](./Set-DfsnRootTarget.md) + Changes settings for a root target of a DFS namespace. ### [Set-DfsnServerConfiguration](./Set-DfsnServerConfiguration.md) -Changes settings for a DFS namespace root server. - +Changes settings for a DFS namespace root server. diff --git a/docset/winserver2022-ps/dfsn/Get-DfsnAccess.md b/docset/winserver2022-ps/dfsn/Get-DfsnAccess.md index cecc0e7287..79bd6f6d4f 100644 --- a/docset/winserver2022-ps/dfsn/Get-DfsnAccess.md +++ b/docset/winserver2022-ps/dfsn/Get-DfsnAccess.md @@ -11,6 +11,7 @@ title: Get-DfsnAccess # Get-DfsnAccess ## SYNOPSIS + Gets permissions for a DFS namespace folder. ## SYNTAX @@ -21,34 +22,43 @@ Get-DfsnAccess [-Path] [-CimSession ] [-ThrottleLimit Get-DfsnAccess -Path "\\Contoso\Software\Projects" + +```powershell +Get-DfsnAccess -Path "\\Contoso\Software\Projects" ``` -This command gets permissions for a DFS namespace folder that has the path \\\\Contoso\Software\Projects. +This command gets permissions for a DFS namespace folder that has the path +`\\Contoso\Software\Projects`. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. + +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -60,12 +70,14 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml -Type: CimSession[] +Type: Microsoft.Management.Infrastructure.CimSession[] Parameter Sets: (All) Aliases: Session @@ -77,12 +89,13 @@ Accept wildcard characters: False ``` ### -Path + Specifies a path for a DFS namespace folder. This cmdlet gets permissions for the folder specified. Provide a complete path for a folder, not a partial or relative path. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DfsPath, FolderPath, NamespacePath @@ -94,12 +107,15 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: (All) Aliases: @@ -111,7 +127,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, +`-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, +`-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -130,4 +150,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Remove-DfsnAccess](./Remove-DfsnAccess.md) [Revoke-DfsnAccess](./Revoke-DfsnAccess.md) - diff --git a/docset/winserver2022-ps/dfsn/Get-DfsnFolder.md b/docset/winserver2022-ps/dfsn/Get-DfsnFolder.md index 64de12cd53..88de205625 100644 --- a/docset/winserver2022-ps/dfsn/Get-DfsnFolder.md +++ b/docset/winserver2022-ps/dfsn/Get-DfsnFolder.md @@ -21,41 +21,49 @@ Get-DfsnFolder [-Path] [-CimSession ] [-ThrottleLimit Get-DfsnFolder -Path "\\Contoso\AccountingResources\LegacySoftware" + +```powershell +Get-DfsnFolder -Path '\\Contoso\AccountingResources\LegacySoftware' ``` -This command displays settings for the \\\\Contoso\AccountingResources\LegacySoftware folder. +This command displays settings for the `\\Contoso\AccountingResources\LegacySoftware` folder. ### Example 2: Get settings for all folders in a DFS namespace -``` -PS C:\> Get-DfsnFolder -Path "\\Contoso\AccountingResources\*" + +```powershell +Get-DfsnFolder -Path '\\Contoso\AccountingResources\*' ``` -The command uses the wildcard to get settings for all the folders in the \\\\Contoso\AccountingResources DFS namespace. +The command uses the wildcard to get settings for all the folders in the +`\\Contoso\AccountingResources` DFS namespace. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. + +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -67,12 +75,14 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml -Type: CimSession[] +Type: Microsoft.Management.Infrastructure.CimSession[] Parameter Sets: (All) Aliases: Session @@ -84,14 +94,15 @@ Accept wildcard characters: False ``` ### -Path -Specifies a path for the folder. -This cmdlet gets configuration settings for the DFS namespace folder that has the path specified. -You can use DFS namespace with the wildcard character to get settings for all the folders in the namespace. -See the Examples section. +Specifies a path for the folder. This cmdlet gets configuration settings for the DFS namespace +folder that has the path specified. + +You can use DFS namespace with the wildcard character to get settings for all the folders in the +namespace. See the Examples section. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DfsPath, FolderPath, NamespacePath @@ -103,12 +114,15 @@ Accept wildcard characters: True ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: (All) Aliases: @@ -120,7 +134,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, +`-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, +`-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -141,4 +159,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Remove-DfsnFolder](./Remove-DfsnFolder.md) [Set-DfsnFolder](./Set-DfsnFolder.md) - diff --git a/docset/winserver2022-ps/dfsn/Get-DfsnFolderTarget.md b/docset/winserver2022-ps/dfsn/Get-DfsnFolderTarget.md index 5dab3b971c..750e615cf6 100644 --- a/docset/winserver2022-ps/dfsn/Get-DfsnFolderTarget.md +++ b/docset/winserver2022-ps/dfsn/Get-DfsnFolderTarget.md @@ -15,23 +15,29 @@ Gets settings for targets of a DFS namespace folder. ## SYNTAX -```powershell +``` Get-DfsnFolderTarget [-Path] [[-TargetPath] ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [] ``` ## DESCRIPTION -The **Get-DfsnFolderTarget** cmdlet gets settings for targets of a Distributed File System (DFS) namespace folder. -You can specify a DFS namespace folder path to see all the targets for that path. + +The **Get-DfsnFolderTarget** cmdlet gets settings for targets of a Distributed File System (DFS) +namespace folder. You can specify a DFS namespace folder path to see all the targets for that path. You can specify a namespace path and a target path to see settings for a particular target. -For more information about DFS namespaces, see [DFS Namespaces overview](/windows-server/storage/dfs-namespaces/dfs-overview). +For more information about DFS namespaces, see +[DFS Namespaces overview](/windows-server/storage/dfs-namespaces/dfs-overview). ## EXAMPLES ### Example 1: Get settings for a target + ```powershell -PS C:\> Get-DfsnFolderTarget -Path "\\Contoso\AccountingResources\LegacySoftware" -TargetPath "\\Contoso-FS\LegacySoftware" +Get-DfsnFolderTarget -Path '\\Contoso\AccountingResources\LegacySoftware' -TargetPath '\\Contoso-FS\LegacySoftware' +``` + +```Output NamespacePath : \\Contoso\AccountingResources\LegacySoftware ReferralPriorityClass : sitecost-normal ReferralPriorityRank : 0 @@ -40,22 +46,26 @@ TargetPath : \\Contoso-FS\LegacySoftware PSComputerName : ``` -This command gets settings for the target of the \\\\Contoso\AccountingResources\LegacySoftware folder with the folder target of \\\\Contoso-FS\LegacySoftware. +This command gets settings for the target of the `\\Contoso\AccountingResources\LegacySoftware` +folder with the folder target of `\\Contoso-FS\LegacySoftware`. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. + +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -67,12 +77,14 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession) or +[Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml -Type: CimSession[] +Type: Microsoft.Management.Infrastructure.CimSession[] Parameter Sets: (All) Aliases: Session @@ -84,10 +96,11 @@ Accept wildcard characters: False ``` ### -Path + Specifies a path for the root folder of a DFS namespace. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DfsPath, FolderPath, NamespacePath @@ -99,11 +112,12 @@ Accept wildcard characters: False ``` ### -TargetPath -Specifies a path for the target of a DFS namespace folder. -This cmdlet gets settings for the target that has the path specified. + +Specifies a path for the target of a DFS namespace folder. This cmdlet gets settings for the target +that has the path specified. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: Target, DfsTarget, FolderTarget @@ -115,12 +129,15 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: (All) Aliases: @@ -132,7 +149,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, +`-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, +`-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/docset/winserver2022-ps/dfsn/Get-DfsnRoot.md b/docset/winserver2022-ps/dfsn/Get-DfsnRoot.md index 4b1553bf0a..4ea5b4ee1b 100644 --- a/docset/winserver2022-ps/dfsn/Get-DfsnRoot.md +++ b/docset/winserver2022-ps/dfsn/Get-DfsnRoot.md @@ -16,36 +16,45 @@ Gets settings for DFS namespaces. ## SYNTAX ### ByDomain (Default) + ``` Get-DfsnRoot [[-Domain] ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [] ``` ### ByRoot + ``` Get-DfsnRoot [[-Path] ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [] ``` ### ByServer + ``` -Get-DfsnRoot [[-ComputerName] ] [-CimSession ] [-ThrottleLimit ] [-AsJob] - [] +Get-DfsnRoot [[-ComputerName] ] [-CimSession ] [-ThrottleLimit ] + [-AsJob] [] ``` ## DESCRIPTION -The **Get-DfsnRoot** cmdlet gets configuration settings for Distributed File System (DFS) namespaces. -You can specify DFS namespaces by using a standalone or domain-based namespace path, by using a server, or by using a domain. -Use this cmdlet without parameters to see information on all DFS namespaces. -You can make changes to DFS settings by using the **Set-DfsnRoot** cmdlet. -For more information about DFS namespaces, see [Overview of DFS Namespaces](https://technet.microsoft.com/library/cc730736) on TechNet. +The **Get-DfsnRoot** cmdlet gets configuration settings for Distributed File System (DFS) +namespaces. You can specify DFS namespaces by using a standalone or domain-based namespace path, by +using a server, or by using a domain. Use this cmdlet without parameters to see information on all +DFS namespaces. You can make changes to DFS settings by using the **Set-DfsnRoot** cmdlet. + +For more information about DFS namespaces, see +[Overview of DFS Namespaces](https://technet.microsoft.com/library/cc730736) on TechNet. ## EXAMPLES ### Example 1: Get DFS namespace configuration settings + +```powershell +Get-DfsnRoot -Path '\\Contoso\AccountingResources' | Format-List ``` -PS C:\> Get-DfsnRoot -Path "\\Contoso\AccountingResources" | Format-List + +```Output Path : \\Contoso\AccountingResources Description : Type : Standalone @@ -54,13 +63,14 @@ Flags : Site Costing TimeToLiveSec : 300 ``` -This command gets configuration settings for the namespace that has the Path \\\\Contoso\AccountingResources. -The command uses the **Format-List** cmdlet to format the output. +This command gets configuration settings for the namespace that has the Path +`\\Contoso\AccountingResources`. The command uses the **Format-List** cmdlet to format the output. For more information about this cmdlet, type `Get-Help Format-List`. ### Example 2: Get all DFS namespaces for a domain -``` -PS C:\> Get-DfsnRoot -Domain "Contoso.com" + +```powershell +Get-DfsnRoot -Domain 'Contoso.com' ``` This command gets all the DFS namespaces hosted in the domain Contoso.com. @@ -68,17 +78,20 @@ This command gets all the DFS namespaces hosted in the domain Contoso.com. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. + +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -90,12 +103,14 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml -Type: CimSession[] +Type: Microsoft.Management.Infrastructure.CimSession[] Parameter Sets: (All) Aliases: Session @@ -107,11 +122,12 @@ Accept wildcard characters: False ``` ### -ComputerName -Specifies the name of a server. -This cmdlet gets configuration settings for all DFS namespaces that the specified server hosts. + +Specifies the name of a server. This cmdlet gets configuration settings for all DFS namespaces that +the specified server hosts. ```yaml -Type: String +Type: System.String Parameter Sets: ByServer Aliases: Server @@ -123,11 +139,12 @@ Accept wildcard characters: False ``` ### -Domain -Specifies a domain name. -This cmdlet gets configuration settings for DFS namespaces in the domain specified. + +Specifies a domain name. This cmdlet gets configuration settings for DFS namespaces in the domain +specified. ```yaml -Type: String +Type: System.String Parameter Sets: ByDomain Aliases: @@ -139,11 +156,12 @@ Accept wildcard characters: False ``` ### -Path -Specifies a path for the root folder of a DFS namespace. -This cmdlet gets configuration settings for the DFS namespace that has the root path specified. + +Specifies a path for the root folder of a DFS namespace. This cmdlet gets configuration settings for +the DFS namespace that has the root path specified. ```yaml -Type: String +Type: System.String Parameter Sets: ByRoot Aliases: RootPath, root, namespace, NamespaceRoot @@ -155,12 +173,15 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: (All) Aliases: @@ -172,7 +193,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, +`-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, +`-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -191,4 +216,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Remove-DfsnRoot](./Remove-DfsnRoot.md) [Set-DfsnRoot](./Set-DfsnRoot.md) - diff --git a/docset/winserver2022-ps/dfsn/Get-DfsnRootTarget.md b/docset/winserver2022-ps/dfsn/Get-DfsnRootTarget.md index 61972a1a6a..5cc417fd6b 100644 --- a/docset/winserver2022-ps/dfsn/Get-DfsnRootTarget.md +++ b/docset/winserver2022-ps/dfsn/Get-DfsnRootTarget.md @@ -21,42 +21,51 @@ Get-DfsnRootTarget [-Path] [[-TargetPath] ] [-CimSession Get-DfsnRootTarget -Path "\\Contoso\AccountingSoftware" + +```powershell +Get-DfsnRootTarget -Path '\\Contoso\AccountingSoftware' ``` -This command gets the DFS namespace root targets for the namespace that has the path \\\\Contoso\AccountingSoftware. +This command gets the DFS namespace root targets for the namespace that has the path +`\\Contoso\AccountingSoftware`. ### Example 2: Get a specified root target -``` -PS C:\> Get-DfsnRootTarget -Path "\\Contoso\AccountingSoftware" -TargetPath "\\Contoso-FS\Software" + +```powershell +Get-DfsnRootTarget -Path '\\Contoso\AccountingSoftware' -TargetPath '\\Contoso-FS\Software' ``` -This command gets a single root target, specified by using the path \\\\Contoso\AccountingSoftware and the target path \\\\Contoso-FS\Software. +This command gets a single root target, specified by using the path `\\Contoso\AccountingSoftware` +and the target path `\\Contoso-FS\Software`. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. + +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -68,12 +77,15 @@ Accept wildcard characters: False ``` ### -CimSession + Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. +Enter a computer name or a session object, such as the output of a +[New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or +[Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml -Type: CimSession[] +Type: Microsoft.Management.Infrastructure.CimSession[] Parameter Sets: (All) Aliases: Session @@ -85,10 +97,11 @@ Accept wildcard characters: False ``` ### -Path + Specifies a path for the root folder of a DFS namespace. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DfsPath, NamespaceRoot @@ -100,11 +113,12 @@ Accept wildcard characters: False ``` ### -TargetPath -Specifies a path for the root folder target of a DFS namespace. -This cmdlet gets settings for the root target that has the path specified. + +Specifies a path for the root folder target of a DFS namespace. This cmdlet gets settings for the +root target that has the path specified. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: Target, DfsTarget, RootTargetPath @@ -116,12 +130,15 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: (All) Aliases: @@ -133,7 +150,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, +`-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, +`-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -152,4 +173,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Remove-DfsnRootTarget](./Remove-DfsnRootTarget.md) [Set-DfsnRootTarget](./Set-DfsnRootTarget.md) - diff --git a/docset/winserver2022-ps/dfsn/Get-DfsnServerConfiguration.md b/docset/winserver2022-ps/dfsn/Get-DfsnServerConfiguration.md index ec6607a6e1..99a1fcee80 100644 --- a/docset/winserver2022-ps/dfsn/Get-DfsnServerConfiguration.md +++ b/docset/winserver2022-ps/dfsn/Get-DfsnServerConfiguration.md @@ -16,21 +16,26 @@ Gets DFS namespace settings for a DFSN root server. ## SYNTAX ``` -Get-DfsnServerConfiguration [-ComputerName] [-CimSession ] [-ThrottleLimit ] - [-AsJob] [] +Get-DfsnServerConfiguration [-ComputerName] [-CimSession ] + [-ThrottleLimit ] [-AsJob] [] ``` ## DESCRIPTION -The **Get-DfsnServerConfiguration** cmdlet gets Distributed File System (DFS) namespace settings for a DFS namespace root server. -A DFS namespace root server hosts one or more namespace root targets. -You can use this cmdlet to see current settings for a server, and you can use the **Set-DfsnServerConfiguration** cmdlet to make changes to a server. + +The **Get-DfsnServerConfiguration** cmdlet gets Distributed File System (DFS) namespace settings for +a DFS namespace root server. A DFS namespace root server hosts one or more namespace root targets. +You can use this cmdlet to see current settings for a server, and you can use the +**Set-DfsnServerConfiguration** cmdlet to make changes to a server. ## EXAMPLES ### Example 1: Get settings for a server + +```powershell +Get-DfsnServerConfiguration -ComputerName "Contoso-FS" ``` -PS C:\> Get-DfsnServerConfiguration -ComputerName "Contoso-FS" +```Output ComputerName : Contoso-FS LdapTimeoutSec : PreferLogonDC : @@ -45,17 +50,20 @@ This command gets the Retrieves the configuration settings of the DFS namespace ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. + +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -67,12 +75,15 @@ Accept wildcard characters: False ``` ### -CimSession + Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. +Enter a computer name or a session object, such as the output of a +[New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or +[Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml -Type: CimSession[] +Type: Microsoft.Management.Infrastructure.CimSession[] Parameter Sets: (All) Aliases: Session @@ -84,10 +95,11 @@ Accept wildcard characters: False ``` ### -ComputerName + Specifies the host name or fully qualified domain name (FQDN) for a DFS namespace server. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: NamespaceServer @@ -99,12 +111,15 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: (All) Aliases: @@ -116,7 +131,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, +`-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, +`-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -131,4 +150,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS [Set-DfsnServerConfiguration](./Set-DfsnServerConfiguration.md) - diff --git a/docset/winserver2022-ps/dfsn/Grant-DfsnAccess.md b/docset/winserver2022-ps/dfsn/Grant-DfsnAccess.md index 18bba3095d..09133f6de6 100644 --- a/docset/winserver2022-ps/dfsn/Grant-DfsnAccess.md +++ b/docset/winserver2022-ps/dfsn/Grant-DfsnAccess.md @@ -21,36 +21,45 @@ Grant-DfsnAccess [-Path] [-AccountName] [-CimSession Grant-DfsnAccess -Path "\\Contoso\Software\Projects" -AccountName "TSQA\PattiFuller" +```Output AccessType : Enumerate AccountName : TSQA\PattiFuller NamespacePath : \\Contoso\Software\Projects PSComputerName : ``` -This command grants the user TSQA\PattiFuller permissions for the folder \\\\Contoso\Software\Projects. +This command grants the user TSQA\PattiFuller permissions for the folder +`\\Contoso\Software\Projects`. ## PARAMETERS ### -AccountName -Specifies an array of user and group accounts. -This cmdlet grants permissions to the accounts specified. + +Specifies an array of user and group accounts. This cmdlet grants permissions to the accounts +specified. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: (All) Aliases: Account, user @@ -62,17 +71,20 @@ Accept wildcard characters: False ``` ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. + +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -84,12 +96,14 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml -Type: CimSession[] +Type: Microsoft.Management.Infrastructure.CimSession[] Parameter Sets: (All) Aliases: Session @@ -101,10 +115,11 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -116,11 +131,12 @@ Accept wildcard characters: False ``` ### -Path -Specifies a path for a DFS namespace folder. -This cmdlet grants permissions to access the folder specified. + +Specifies a path for a DFS namespace folder. This cmdlet grants permissions to access the folder +specified. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DfsPath, FolderPath, NamespacePath @@ -132,12 +148,15 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: (All) Aliases: @@ -149,10 +168,11 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -164,7 +184,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, +`-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, +`-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -185,4 +209,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Remove-DfsnAccess](./Remove-DfsnAccess.md) [Revoke-DfsnAccess](./Revoke-DfsnAccess.md) - diff --git a/docset/winserver2022-ps/dfsn/Move-DfsnFolder.md b/docset/winserver2022-ps/dfsn/Move-DfsnFolder.md index 06db0e719e..7c5392c120 100644 --- a/docset/winserver2022-ps/dfsn/Move-DfsnFolder.md +++ b/docset/winserver2022-ps/dfsn/Move-DfsnFolder.md @@ -21,42 +21,50 @@ Move-DfsnFolder [-Path] [-NewPath] [-Force] [-CimSession Move-DfsnFolder -Path "\\Contoso\Western\Development\DesignDocuments" -NewPath "\\Contoso\Western\HumanResources\DesignDocuments" + +```powershell +Move-DfsnFolder -Path '\\Contoso\Western\Development\DesignDocuments' -NewPath '\\Contoso\Western\HumanResources\DesignDocuments' ``` -This command moves the folder DesignDocuments to the location \\\\Contoso\Western\HumanResources. -After you run this command, the folder \\\\Contoso\Western\Development\DesignDocuments no longer exists. +This command moves the folder DesignDocuments to the location `\\Contoso\Western\HumanResources`. +After you run this command, the folder `\\Contoso\Western\Development\DesignDocuments` no longer +exists. ### Example 2: Rename a folder -``` -PS C:\> Move-DfsnFolder -Path "\\Contoso\AccountingSoftware\Software" -NewPath "\\Contoso\AccountingSoftware\LegacySoftware" + +```powershell +Move-DfsnFolder -Path '\\Contoso\AccountingSoftware\Software' -NewPath '\\Contoso\AccountingSoftware\LegacySoftware' ``` -This command renames the folder Software in the \\\\Contoso\AccountingSoftware folder. -The new name is \\\\Contoso\AccountingSoftware\LegacySoftware. +This command renames the folder Software in the `\\Contoso\AccountingSoftware` folder. The new name +is `\\Contoso\AccountingSoftware\LegacySoftware`. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. + +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -68,12 +76,14 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml -Type: CimSession[] +Type: Microsoft.Management.Infrastructure.CimSession[] Parameter Sets: (All) Aliases: Session @@ -85,10 +95,11 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -100,11 +111,12 @@ Accept wildcard characters: False ``` ### -Force -Moves or renames a DFS namespace folder without prompting you for confirmation. -By default, the cmdlet prompts you for confirmation before it proceeds. + +Moves or renames a DFS namespace folder without prompting you for confirmation. By default, the +cmdlet prompts you for confirmation before it proceeds. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -116,12 +128,12 @@ Accept wildcard characters: False ``` ### -NewPath -Specifies a path for the DFS namespace folder. -This cmdlet moves or renames the folder to have the path specified. -Do not specify an existing DFS namespace folder. + +Specifies a path for the DFS namespace folder. This cmdlet moves or renames the folder to have the +path specified. Do not specify an existing DFS namespace folder. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: NewDfsPath, NewNamespacePath @@ -133,11 +145,12 @@ Accept wildcard characters: False ``` ### -Path -Specifies the path for a DFS namespace folder. -This cmdlet moves or renames the folder that has the path specified. + +Specifies the path for a DFS namespace folder. This cmdlet moves or renames the folder that has the +path specified. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DfsPath, FolderPath, NamespacePath @@ -149,12 +162,15 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: (All) Aliases: @@ -166,11 +182,11 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -182,7 +198,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, +`-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, +`-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -203,4 +223,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Remove-DfsnFolder](./Remove-DfsnFolder.md) [Set-DfsnFolder](./Set-DfsnFolder.md) - diff --git a/docset/winserver2022-ps/dfsn/New-DfsnFolder.md b/docset/winserver2022-ps/dfsn/New-DfsnFolder.md index 3afd766b12..f41f2719be 100644 --- a/docset/winserver2022-ps/dfsn/New-DfsnFolder.md +++ b/docset/winserver2022-ps/dfsn/New-DfsnFolder.md @@ -17,59 +17,68 @@ Creates a folder in a DFS namespace. ``` New-DfsnFolder [-Path] [-TargetPath] [[-EnableInsiteReferrals] ] - [[-EnableTargetFailback] ] [[-State] ] [[-TimeToLiveSec] ] [[-Description] ] - [[-TargetState] ] [[-ReferralPriorityClass] ] [[-ReferralPriorityRank] ] - [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] [] + [[-EnableTargetFailback] ] [[-State] ] [[-TimeToLiveSec] ] + [[-Description] ] [[-TargetState] ] + [[-ReferralPriorityClass] ] [[-ReferralPriorityRank] ] + [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION -The **New-DfsnFolder** cmdlet creates a folder in a Distributed File System (DFS) namespace. -Specify the path and a path for a folder target for the new folder. -A DFS namespace folder has one or more folder targets that are shared folders on computers. -When a client attempts to connect to a folder, the DFS namespace server provides a list of folder targets, called referrals. -The server determines the order for referrals and clients attempt to connect to a folder target in the order that the server provides. +The **New-DfsnFolder** cmdlet creates a folder in a Distributed File System (DFS) namespace. Specify +the path and a path for a folder target for the new folder. -You can specify settings for the new folder. -You can use this cmdlet to enable or disable the following settings: +A DFS namespace folder has one or more folder targets that are shared folders on computers. When a +client attempts to connect to a folder, the DFS namespace server provides a list of folder targets, +called referrals. The server determines the order for referrals and clients attempt to connect to a +folder target in the order that the server provides. -- In-site referrals. -- Target failback. +You can specify settings for the new folder. You can use this cmdlet to enable or disable the +following settings: -You can also add a descriptive comment, select the state of the folder and folder target, and set the Time to Live (TTL) interval for referrals. +- **In-site referrals** +- **Target failback** + +You can also add a descriptive comment, select the state of the folder and folder target, and set +the Time to Live (TTL) interval for referrals. Finally, you can specify the priority class and priority rank for referrals. -For more information about DFS namespaces, see [Overview of DFS Namespaces](https://technet.microsoft.com/library/cc730736) on TechNet. +For more information about DFS namespaces, see +[Overview of DFS Namespaces](https://technet.microsoft.com/library/cc730736) on TechNet. ## EXAMPLES ### Example 1: Create a DFS namespace folder -``` -PS C:\> New-DfsnFolder -Path "\\Contoso\AccountingResources\LegacySoftware" -TargetPath "\\Contoso-FS\AccountingLegacy" -EnableTargetFailback $True -Description "Folder for legacy software." + +```powershell +PS C:\> New-DfsnFolder -Path '\\Contoso\AccountingResources\LegacySoftware' -TargetPath '\\Contoso-FS\AccountingLegacy' -EnableTargetFailback $true -Description 'Folder for legacy software.' ``` -This command creates a folder called LegacySoftware in the \\\\Contoso\AccountingResources namespace. -The folder target is \\\\Contoso-FS\AccountingLegacy. -The command enables target failback for the folder. -The command includes a description for the new folder. +This command creates a folder called LegacySoftware in the `\\Contoso\AccountingResources` +namespace. The folder target is `\\Contoso-FS\AccountingLegacy`. The command enables target failback +for the folder. The command includes a description for the new folder. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. + +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -79,12 +88,14 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml -Type: CimSession[] +Type: Microsoft.Management.Infrastructure.CimSession[] Parameter Sets: (All) Aliases: Session @@ -96,10 +107,11 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -111,10 +123,11 @@ Accept wildcard characters: False ``` ### -Description + Specifies a description for a DFS namespace folder. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: desc @@ -126,12 +139,14 @@ Accept wildcard characters: False ``` ### -EnableInsiteReferrals -Indicates whether a DFS namespace server provides a client only with referrals that are in the same site as the client. -If this value is $True, the DFS namespace server provides only in-site referrals. -If this value is $False, the DFS namespace server provides in-site referrals first, then other referrals. + +Indicates whether a DFS namespace server provides a client only with referrals that are in the same +site as the client. If this value is `$true`, the DFS namespace server provides only in-site +referrals. If this value is `$false`, the DFS namespace server provides in-site referrals first, +then other referrals. ```yaml -Type: Boolean +Type: System.Boolean Parameter Sets: (All) Aliases: insite @@ -143,13 +158,15 @@ Accept wildcard characters: False ``` ### -EnableTargetFailback -Indicates whether a DFS namespace uses target failback. -If a client attempts to access a target on a server and that server is not available, the client fails over to another referral. -If this value is $True, once the first server becomes available again, the client fails back to the first server. -If this value is $False, the DFS namespace server does not require the client to fail back to the preferred server. + +Indicates whether a DFS namespace uses target failback. If a client attempts to access a target on a +server and that server is not available, the client fails over to another referral. If this value is +`$true`, once the first server becomes available again, the client fails back to the first server. +If this value is `$false`, the DFS namespace server does not require the client to fail back to the +preferred server. ```yaml -Type: Boolean +Type: System.Boolean Parameter Sets: (All) Aliases: failback, TargetFailback @@ -161,12 +178,12 @@ Accept wildcard characters: False ``` ### -Path -Specifies a path for the folder. -This path must be unique. -This path cannot be the name of an existing DFS namespace folder. + +Specifies a path for the folder. This path must be unique. This path cannot be the name of an +existing DFS namespace folder. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DfsPath, FolderPath, NamespacePath @@ -178,31 +195,27 @@ Accept wildcard characters: False ``` ### -ReferralPriorityClass -Specifies the target priority class for a DFS namespace folder. -Target priority offers you the ability to classify and rank in-site targets. -You can specify targets to receive the highest or lowest preference, and you can divide the remaining targets based on their site cost for a DFS client to connect to them. -The acceptable values for this parameter are: - -- GlobalHigh. -The highest priority class for a DFS target. -Targets assigned this class receive global preference. -- SiteCostHigh. -The highest site cost priority class for a DFS target. -Targets assigned this class receive the most preference among targets of the same site cost for a given DFS client. -- SiteCostNormal. -The middle or normal site cost priority class for a DFS target. -- SiteCostLow. -The lowest site cost priority class for a DFS target. -Targets assigned this class receive the least preference among targets of the same site cost for a given DFS client. -- GlobalLow. -The lowest level of priority class for a DFS target. -Targets assigned this class receive the least preference globally. + +Specifies the target priority class for a DFS namespace folder. Target priority offers you the +ability to classify and rank in-site targets. You can specify targets to receive the highest or +lowest preference, and you can divide the remaining targets based on their site cost for a DFS +client to connect to them. The acceptable values for this parameter are: + +- `GlobalHigh` - The highest priority class for a DFS target. Targets assigned this class receive + global preference. +- `SiteCostHigh` - The highest site cost priority class for a DFS target. Targets assigned this + class receive the most preference among targets of the same site cost for a given DFS client. +- `SiteCostNormal` - The middle or normal site cost priority class for a DFS target. +- `SiteCostLow` - The lowest site cost priority class for a DFS target. Targets assigned this class + receive the least preference among targets of the same site cost for a given DFS client. +- `GlobalLow` - The lowest level of priority class for a DFS target. Targets assigned this class + receive the least preference globally. ```yaml -Type: ReferralPriorityClass +Type: Microsoft.PowerShell.Cmdletization.GeneratedTypes.DfsNamespaceRootTarget.ReferralPriorityClass Parameter Sets: (All) Aliases: PriorityClass, Class -Accepted values: sitecostnormal, globalhigh, sitecosthigh, sitecostlow, globallow +Accepted values: SiteCostNormal, GlobalHigh, SiteCostHigh, SiteCostLow, GlobalLow Required: False Position: 8 @@ -212,12 +225,12 @@ Accept wildcard characters: False ``` ### -ReferralPriorityRank -Specifies the priority rank, as an integer, for a target in the DFS namespace. -Lower values have greater preference. -A value of zero (0) is the greatest preference. + +Specifies the priority rank, as an integer, for a target in the DFS namespace. Lower values have +greater preference. A value of zero (0) is the greatest preference. ```yaml -Type: UInt32 +Type: System.UInt32 Parameter Sets: (All) Aliases: PriorityRank, Rank @@ -229,18 +242,18 @@ Accept wildcard characters: False ``` ### -State -Specifies the state of the DFS namespace folder. -The acceptable values for this parameter are: -- Online -- Offline +Specifies the state of the DFS namespace folder. The acceptable values for this parameter are: + +- `Online` +- `Offline` Clients do not receive referrals for a DFS namespace folder that is offline. ```yaml -Type: State +Type: Microsoft.PowerShell.Cmdletization.GeneratedTypes.DfsNamespaceRootTarget.State Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Offline, Online Required: False @@ -251,10 +264,11 @@ Accept wildcard characters: False ``` ### -TargetPath + Specifies a path for a target for the DFS namespace folder. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: Target, DfsTarget, FolderTarget @@ -266,18 +280,19 @@ Accept wildcard characters: False ``` ### -TargetState -Specifies the state of the DFS namespace folder target. -The acceptable values for this parameter are: -- Online -- Offline +Specifies the state of the DFS namespace folder target. The acceptable values for this parameter +are: + +- `Online` +- `Offline` Clients do not receive referrals for a DFS namespace folder target that is offline. ```yaml -Type: State +Type: Microsoft.PowerShell.Cmdletization.GeneratedTypes.DfsNamespaceRootTarget.State Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Offline, Online Required: False @@ -288,14 +303,17 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -305,12 +323,12 @@ Accept wildcard characters: False ``` ### -TimeToLiveSec -Specifies a TTL interval, in seconds, for referrals. -Clients store referrals to targets for this length of time. -The default TTL interval for folder referrals is 1800 seconds (30 minutes). + +Specifies a TTL interval, in seconds, for referrals. Clients store referrals to targets for this +length of time. The default TTL interval for folder referrals is 1800 seconds (30 minutes). ```yaml -Type: UInt32 +Type: System.UInt32 Parameter Sets: (All) Aliases: ttl, TimeToLive @@ -322,11 +340,11 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -338,7 +356,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, +`-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, +`-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -369,4 +391,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Remove-DfsnFolder](./Remove-DfsnFolder.md) [Set-DfsnFolder](./Set-DfsnFolder.md) - diff --git a/docset/winserver2022-ps/dfsn/New-DfsnFolderTarget.md b/docset/winserver2022-ps/dfsn/New-DfsnFolderTarget.md index 09e578faa6..420b06a87e 100644 --- a/docset/winserver2022-ps/dfsn/New-DfsnFolderTarget.md +++ b/docset/winserver2022-ps/dfsn/New-DfsnFolderTarget.md @@ -18,43 +18,52 @@ Adds a target to a DFS namespace folder. ``` New-DfsnFolderTarget [-Path] [-TargetPath] [[-State] ] [[-ReferralPriorityClass] ] [[-ReferralPriorityRank] ] - [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] [] + [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION -The **New-DfsnFolderTarget** cmdlet adds a target to a Distributed File System (DFS) namespace folder. -Specify the DFS namespace folder and the folder target. -You can set the state of the DFS namespace target and configure priority class and priority rank for referrals. -A DFS namespace folder has one or more folder targets that are shared folders on computers. -When a client attempts to connect to a folder, the DFS namespace server provides a list of folder targets, called referrals. -The server determines the order for referrals and clients attempt to connect to a folder target in the order that the server provides. +The **New-DfsnFolderTarget** cmdlet adds a target to a Distributed File System (DFS) namespace +folder. Specify the DFS namespace folder and the folder target. You can set the state of the DFS +namespace target and configure priority class and priority rank for referrals. -For more information about DFS namespaces, see [Overview of DFS Namespaces](https://technet.microsoft.com/library/cc730736) on TechNet. +A DFS namespace folder has one or more folder targets that are shared folders on computers. When a +client attempts to connect to a folder, the DFS namespace server provides a list of folder targets, +called referrals. The server determines the order for referrals and clients attempt to connect to a +folder target in the order that the server provides. + +For more information about DFS namespaces, see +[Overview of DFS Namespaces](https://technet.microsoft.com/library/cc730736) on TechNet. ## EXAMPLES ### Example 1: Add a target -``` -PS C:\> New-DfsnFolderTarget -Path "\\Contoso\AccountingResources\LegacySoftware" -TargetPath "\\Contoso-FS\Software" -ReferralPriorityClass GlobalLow + +```powershell +New-DfsnFolderTarget -Path '\\Contoso\AccountingResources\LegacySoftware' -TargetPath '\\Contoso-FS\Software' -ReferralPriorityClass 'GlobalLow' ``` -This command adds \\\\Contoso-FS\Software as a target for the DFS namespace folder \\\\Contoso\AccountingResources\LegacySoftware with a referral priority of global low. +This command adds `\\Contoso-FS\Software` as a target for the DFS namespace folder +`\\Contoso\AccountingResources\LegacySoftware` with a referral priority of global low. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. + +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -66,12 +75,14 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml -Type: CimSession[] +Type: Microsoft.Management.Infrastructure.CimSession[] Parameter Sets: (All) Aliases: Session @@ -83,10 +94,11 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -98,11 +110,12 @@ Accept wildcard characters: False ``` ### -Path -Specifies a path of the DFS namespace folder. -This cmdlet adds a target for the folder that has the path specified. + +Specifies a path of the DFS namespace folder. This cmdlet adds a target for the folder that has the +path specified. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DfsPath, FolderPath, NamespacePath @@ -114,31 +127,27 @@ Accept wildcard characters: False ``` ### -ReferralPriorityClass -Specifies the priority class for a DFS namespace folder target. -Target priority offers you the ability to classify and rank in-site targets. -You can specify targets to receive the highest or lowest preference, and you can divide the remaining targets based on their site cost for a DFS client to connect to them. -The acceptable values for this parameter are: - -- GlobalHigh. -The highest priority class for a DFS target. -Targets assigned this class receive global preference. -- SiteCostHigh. -The highest site cost priority class for a DFS target. -Targets assigned this class receive the most preference among targets of the same site cost for a given DFS client. -- SiteCostNormal. -The middle or normal site cost priority class for a DFS target. -- SiteCostLow. -The lowest site cost priority class for a DFS target. -Targets assigned this class receive the least preference among targets of the same site cost for a given DFS client. -- GlobalLow. -The lowest level of priority class for a DFS target. -Targets assigned this class receive the least preference globally. + +Specifies the priority class for a DFS namespace folder target. Target priority offers you the +ability to classify and rank in-site targets. You can specify targets to receive the highest or +lowest preference, and you can divide the remaining targets based on their site cost for a DFS +client to connect to them. The acceptable values for this parameter are: + +- `GlobalHigh` - The highest priority class for a DFS target. Targets assigned this class receive + global preference. +- `SiteCostHigh` - The highest site cost priority class for a DFS target. Targets assigned this + class receive the most preference among targets of the same site cost for a given DFS client. +- `SiteCostNormal` - The middle or normal site cost priority class for a DFS target. +- `SiteCostLow` - The lowest site cost priority class for a DFS target. Targets assigned this class + receive the least preference among targets of the same site cost for a given DFS client. +- `GlobalLow` - The lowest level of priority class for a DFS target. Targets assigned this class + receive the least preference globally. ```yaml -Type: ReferralPriorityClass +Type: Microsoft.PowerShell.Cmdletization.GeneratedTypes.DfsNamespaceRootTarget.ReferralPriorityClass Parameter Sets: (All) Aliases: PriorityClass, Class -Accepted values: sitecostnormal, globalhigh, sitecosthigh, sitecostlow, globallow +Accepted values: SiteCostNormal, GlobalHigh, SiteCostHigh, SiteCostLow, GlobalLow Required: False Position: 3 @@ -148,12 +157,12 @@ Accept wildcard characters: False ``` ### -ReferralPriorityRank -Specifies the priority rank, as an integer, for a target of the DFS namespace folder. -Lower values have greater preference. -A value of zero (0) is the greatest preference. + +Specifies the priority rank, as an integer, for a target of the DFS namespace folder. Lower values +have greater preference. A value of zero (0) is the greatest preference. ```yaml -Type: UInt32 +Type: System.UInt32 Parameter Sets: (All) Aliases: PriorityRank, Rank @@ -165,16 +174,16 @@ Accept wildcard characters: False ``` ### -State -Specifies the state of the DFS namespace root target. -The acceptable values for this parameter are: -- Online -- Offline +Specifies the state of the DFS namespace root target. The acceptable values for this parameter are: + +- `Online` +- `Offline` Clients do not receive referrals for a DFS namespace folder target that is offline. ```yaml -Type: State +Type: Microsoft.PowerShell.Cmdletization.GeneratedTypes.DfsNamespaceRootTarget.State Parameter Sets: (All) Aliases: Accepted values: Offline, Online @@ -187,11 +196,12 @@ Accept wildcard characters: False ``` ### -TargetPath -Specifies a path for a target of the DFS namespace folder. -This cmdlet adds this path specified as the folder target. + +Specifies a path for a target of the DFS namespace folder. This cmdlet adds this path specified as +the folder target. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: Target, DfsTarget, FolderTarget @@ -203,12 +213,15 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: (All) Aliases: @@ -220,11 +233,11 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -236,7 +249,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, +`-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, +`-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -261,4 +278,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Remove-DfsnFolderTarget](./Remove-DfsnFolderTarget.md) [Set-DfsnFolderTarget](./Set-DfsnFolderTarget.md) - diff --git a/docset/winserver2022-ps/dfsn/New-DfsnRoot.md b/docset/winserver2022-ps/dfsn/New-DfsnRoot.md index f4d4e99ce7..02b3684578 100644 --- a/docset/winserver2022-ps/dfsn/New-DfsnRoot.md +++ b/docset/winserver2022-ps/dfsn/New-DfsnRoot.md @@ -25,12 +25,13 @@ New-DfsnRoot [-Path ] [-TargetPath] [-Type] [[-EnableSit ``` ## DESCRIPTION -The **New-DfsnRoot** cmdlet creates a Distributed File System (DFS) namespace. -Specify the root path and the root target path for the new namespace. -You must also specify a type: stand-alone namespace, Windows 2000 Server mode (Domain v1) namespace, or Windows Server 2008 mode (Domain v2) namespace. -You can specify settings for the new namespace. -You can use this cmdlet to enable or disable the following settings: +The **New-DfsnRoot** cmdlet creates a Distributed File System (DFS) namespace. Specify the root path +and the root target path for the new namespace. You must also specify a type: stand-alone namespace, +Windows 2000 Server mode (Domain v1) namespace, or Windows Server 2008 mode (Domain v2) namespace. + +You can specify settings for the new namespace. You can use this cmdlet to enable or disable the +following settings: - Site costing. - In-site referrals. @@ -38,46 +39,54 @@ You can use this cmdlet to enable or disable the following settings: - Root scalability. - Target failback. -You can also add a descriptive comment, select the state of the DFS namespace and DFS root target, and set the Time to Live (TTL) interval for referrals. +You can also add a descriptive comment, select the state of the DFS namespace and DFS root target, +and set the Time to Live (TTL) interval for referrals. -To manage the DFS namespace, you can grant permissions to users or user groups. -Users who have these permissions can add, remove, and modify namespace folders and folder targets for the DFS namespace. +To manage the DFS namespace, you can grant permissions to users or user groups. Users who have these +permissions can add, remove, and modify namespace folders and folder targets for the DFS namespace. -For more information about DFS namespaces, see [Overview of DFS Namespaces](https://technet.microsoft.com/library/cc730736) on TechNet. +For more information about DFS namespaces, see +[Overview of DFS Namespaces](https://technet.microsoft.com/library/cc730736) on TechNet. ## EXAMPLES ### Example 1: Create a Windows Server 2008 mode domain DFS namespace -``` -PS C:\> New-DfsnRoot -TargetPath "\\Contoso-FS\AccountingResources" -Type DomainV2 -Path "\\Contoso\AccountingResources" + +```powershell +New-DfsnRoot -TargetPath '\\Contoso-FS\AccountingResources' -Type 'DomainV2' -Path '\\Contoso\AccountingResources' ``` -This command creates a DFS namespace that has a root at the path \\\\Contoso\AccountingResources. -The root target for the path is the shared folder \\\\Contoso-FS\AccountingResources. -The namespace type is Windows Server 2008 mode, specified as a type of DomainV2. +This command creates a DFS namespace that has a root at the path `\\Contoso\AccountingResources`. +The root target for the path is the shared folder `\\Contoso-FS\AccountingResources`. The namespace +type is Windows Server 2008 mode, specified as a type of `DomainV2`. ### Example 2: Create a stand-alone DFS namespace -``` -PS C:\> New-DfsnRoot -TargetPath "\\Contoso-FS\Software" -Type Standalone -EnableSiteCosting -Path "\\Contoso\Software" + +```powershell +New-DfsnRoot -TargetPath '\\Contoso-FS\Software' -Type 'Standalone' -EnableSiteCosting -Path '\\Contoso\Software' ``` -This command creates a stand-alone DFS namespace that has a root at path \\\\Contoso\Software that has a namespace root target pointing to \\\\Contoso-FS\Software. -This namespace uses cost-based site selection. +This command creates a stand-alone DFS namespace that has a root at path `\\Contoso\Software` that +has a namespace root target pointing to `\\Contoso-FS\Software`. This namespace uses cost-based site +selection. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. + +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -89,12 +98,14 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml -Type: CimSession[] +Type: Microsoft.Management.Infrastructure.CimSession[] Parameter Sets: (All) Aliases: Session @@ -106,10 +117,11 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -121,10 +133,11 @@ Accept wildcard characters: False ``` ### -Description + Specifies a description for a DFS namespace. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: desc @@ -136,11 +149,12 @@ Accept wildcard characters: False ``` ### -EnableAccessBasedEnumeration -Indicates whether a DFS namespace uses access-based enumeration. -If this value is $True, a DFS namespace server shows a user only the files and folders that the user can access. + +Indicates whether a DFS namespace uses access-based enumeration. If this value is `$true`, a DFS +namespace server shows a user only the files and folders that the user can access. ```yaml -Type: Boolean +Type: System.Boolean Parameter Sets: (All) Aliases: abe, abde @@ -152,12 +166,14 @@ Accept wildcard characters: False ``` ### -EnableInsiteReferrals -Indicates whether a DFS namespace server provides a client only with referrals that are in the same site as the client. -If this value is $True, the DFS namespace server provides only in-site referrals. -If this value is $False, the DFS namespace server provides in-site referrals first, then other referrals. + +Indicates whether a DFS namespace server provides a client only with referrals that are in the same +site as the client. If this value is `$true`, the DFS namespace server provides only in-site +referrals. If this value is `$false`, the DFS namespace server provides in-site referrals first, +then other referrals. ```yaml -Type: Boolean +Type: System.Boolean Parameter Sets: (All) Aliases: insite @@ -169,12 +185,13 @@ Accept wildcard characters: False ``` ### -EnableRootScalability -Indicates whether a DFS namespace uses root scalability mode. -If this value is $True, DFS namespace servers connect to the nearest domain controllers for periodic namespace updates. -If this value is $False, the servers connect to the primary domain controller (PDC) emulator. + +Indicates whether a DFS namespace uses root scalability mode. If this value is `$true`, DFS +namespace servers connect to the nearest domain controllers for periodic namespace updates. If this +value is `$false`, the servers connect to the primary domain controller (PDC) emulator. ```yaml -Type: Boolean +Type: System.Boolean Parameter Sets: (All) Aliases: RootScalability, rootscale @@ -186,12 +203,14 @@ Accept wildcard characters: False ``` ### -EnableSiteCosting -Indicates whether a DFS namespace uses cost-based selection. -If a client cannot access a folder target in-site, a DFS namespace server selects the least resource intensive alternative. -If you provide a value of $True for this parameter, DFS namespace favors high-speed links over wide area network (WAN) links. + +Indicates whether a DFS namespace uses cost-based selection. If a client cannot access a folder +target in-site, a DFS namespace server selects the least resource intensive alternative. If you +provide a value of `$true` for this parameter, DFS namespace favors high-speed links over wide area +network (WAN) links. ```yaml -Type: Boolean +Type: System.Boolean Parameter Sets: (All) Aliases: SiteCosting, sitecost @@ -203,13 +222,15 @@ Accept wildcard characters: False ``` ### -EnableTargetFailback -Indicates whether a DFS namespace uses target failback. -If a client attempts to access a target on a server and that server is not available, the client fails over to another referral. -If this value is $True, once the first server becomes available again, the client fails back to the first server. -If this value is $False, the DFS namespace server does not require the client to fail back to the preferred server. + +Indicates whether a DFS namespace uses target failback. If a client attempts to access a target on a +server and that server is not available, the client fails over to another referral. If this value is +`$true`, once the first server becomes available again, the client fails back to the first server. If +this value is `$false`, the DFS namespace server does not require the client to fail back to the +preferred server. ```yaml -Type: Boolean +Type: System.Boolean Parameter Sets: (All) Aliases: failback, TargetFailback @@ -221,12 +242,13 @@ Accept wildcard characters: False ``` ### -GrantAdminAccounts -Specifies an array of accounts. -This cmdlet grants management permissions for the DFS namespace to the users and user groups specified. -Users can add, remove, and modify namespace folders and folder targets. + +Specifies an array of accounts. This cmdlet grants management permissions for the DFS namespace to +the users and user groups specified. Users can add, remove, and modify namespace folders and folder +targets. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: (All) Aliases: GrantAdmin, GrantAdminAccess @@ -238,12 +260,12 @@ Accept wildcard characters: False ``` ### -Path -Specifies a path for the root of a DFS namespace. -This path must be unique. -This path cannot be the name of an existing DFS namespace. + +Specifies a path for the root of a DFS namespace. This path must be unique. This path cannot be the +name of an existing DFS namespace. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: RootPath, root, namespace, NamespaceRoot @@ -255,31 +277,27 @@ Accept wildcard characters: False ``` ### -ReferralPriorityClass -Specifies the target priority class for a DFS namespace root. -Target priority offers you the ability to classify and rank in-site targets. -You can specify targets to receive the highest or lowest preference, and you can divide the remaining targets based on their site cost for a DFS client to connect to them. -The acceptable values for this parameter are: - -- GlobalHigh. -The highest priority class for a DFS target. -Targets assigned this class receive global preference. -- SiteCostHigh. -The highest site cost priority class for a DFS target. -Targets assigned this class receive the most preference among targets of the same site cost for a given DFS client. -- SiteCostNormal. -The middle or normal site cost priority class for a DFS target. -- SiteCostLow. -The lowest site cost priority class for a DFS target. -Targets assigned this class receive the least preference among targets of the same site cost for a given DFS client. -- GlobalLow. -The lowest level of priority class for a DFS target. -Targets assigned this class receive the least preference globally. + +Specifies the target priority class for a DFS namespace root. Target priority offers you the ability +to classify and rank in-site targets. You can specify targets to receive the highest or lowest +preference, and you can divide the remaining targets based on their site cost for a DFS client to +connect to them. The acceptable values for this parameter are: + +- `GlobalHigh` - The highest priority class for a DFS target. Targets assigned this class receive + global preference. +- `SiteCostHigh` - The highest site cost priority class for a DFS target. Targets assigned this + class receive the most preference among targets of the same site cost for a given DFS client. +- `SiteCostNormal` - The middle or normal site cost priority class for a DFS target. +- `SiteCostLow` - The lowest site cost priority class for a DFS target. Targets assigned this class + receive the least preference among targets of the same site cost for a given DFS client. +- `GlobalLow` - The lowest level of priority class for a DFS target. Targets assigned this class + receive the least preference globally. ```yaml -Type: ReferralPriorityClass +Type: Microsoft.PowerShell.Cmdletization.GeneratedTypes.DfsNamespaceRootTarget.ReferralPriorityClass Parameter Sets: (All) Aliases: PriorityClass, Class -Accepted values: sitecostnormal, globalhigh, sitecosthigh, sitecostlow, globallow +Accepted values: SiteCostNormal, GlobalHigh, SiteCostHigh, SiteCostLow, GlobalLow Required: False Position: 12 @@ -289,12 +307,12 @@ Accept wildcard characters: False ``` ### -ReferralPriorityRank -Specifies the priority rank, as an integer, for a root target of the DFS namespace. -Lower values have greater preference. -A value of zero (0) is the greatest preference. + +Specifies the priority rank, as an integer, for a root target of the DFS namespace. Lower values +have greater preference. A value of zero (0) is the greatest preference. ```yaml -Type: UInt32 +Type: System.UInt32 Parameter Sets: (All) Aliases: PriorityRank, Rank @@ -306,17 +324,17 @@ Accept wildcard characters: False ``` ### -State -Specifies the state of the DFS namespace root. -The acceptable values for this parameter are: -- Online -- Offline +Specifies the state of the DFS namespace root. The acceptable values for this parameter are: -Clients do not receive referrals for a DFS namespace folder that is offline. -If you set a namespace root to a value of Offline, the entire namespace becomes inaccessible. +- `Online` +- `Offline` + +Clients do not receive referrals for a DFS namespace folder that is offline. If you set a namespace +root to a value of Offline, the entire namespace becomes inaccessible. ```yaml -Type: State +Type: Microsoft.PowerShell.Cmdletization.GeneratedTypes.DfsNamespaceRootTarget.State Parameter Sets: (All) Aliases: Accepted values: Offline, Online @@ -329,10 +347,11 @@ Accept wildcard characters: False ``` ### -TargetPath + Specifies a path for a root target of the DFS namespace. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: NamespaceRootTarget @@ -344,16 +363,16 @@ Accept wildcard characters: False ``` ### -TargetState -Specifies the state of the DFS namespace root target. -The acceptable values for this parameter are: -- Online -- Offline +Specifies the state of the DFS namespace root target. The acceptable values for this parameter are: + +- `Online` +- `Offline` Clients do not receive referrals for a DFS namespace folder target that is Offline. ```yaml -Type: State +Type: Microsoft.PowerShell.Cmdletization.GeneratedTypes.DfsNamespaceRootTarget.State Parameter Sets: (All) Aliases: Accepted values: Offline, Online @@ -366,12 +385,15 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: (All) Aliases: @@ -383,12 +405,12 @@ Accept wildcard characters: False ``` ### -TimeToLiveSec -Specifies a TTL interval, in seconds, for referrals. -Clients store referrals to root targets for this length of time. -The default TTL interval for root referrals is 300 seconds. + +Specifies a TTL interval, in seconds, for referrals. Clients store referrals to root targets for +this length of time. The default TTL interval for root referrals is 300 seconds. ```yaml -Type: UInt32 +Type: System.UInt32 Parameter Sets: (All) Aliases: ttl, TimeToLive @@ -400,18 +422,16 @@ Accept wildcard characters: False ``` ### -Type -Specifies the type of a DFS namespace as a Type object. -The acceptable values for this parameter are: -- Standalone. -Specifies a stand-alone namespace. -- DomainV1. -Specifies a Windows 2000 Server mode domain namespace. -- DomainV2. -Specifies a Windows Server 2008 mode domain namespace. +Specifies the type of a DFS namespace as a Type object. The acceptable values for this parameter +are: + +- `Standalone` - Specifies a stand-alone namespace. +- `DomainV1` - Specifies a Windows 2000 Server mode domain namespace. +- `DomainV2` - Specifies a Windows Server 2008 mode domain namespace. ```yaml -Type: Type +Type: Microsoft.PowerShell.Cmdletization.GeneratedTypes.DfsNamespace.Type Parameter Sets: (All) Aliases: Accepted values: Standalone, DomainV1, DomainV2 @@ -424,11 +444,11 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -440,7 +460,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, +`-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, +`-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -473,4 +497,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Remove-DfsnRoot](./Remove-DfsnRoot.md) [Set-DfsnRoot](./Set-DfsnRoot.md) - diff --git a/docset/winserver2022-ps/dfsn/New-DfsnRootTarget.md b/docset/winserver2022-ps/dfsn/New-DfsnRootTarget.md index f9186adb3a..ec16fcdd77 100644 --- a/docset/winserver2022-ps/dfsn/New-DfsnRootTarget.md +++ b/docset/winserver2022-ps/dfsn/New-DfsnRootTarget.md @@ -22,35 +22,42 @@ New-DfsnRootTarget [-Path ] [-TargetPath] [[-State] ] ``` ## DESCRIPTION + The **New-DfsnRootTarget** cmdlet adds a root target to a Distributed File System (DFS) namespace. -Specify the DFS namespace root folder and the new root folder target. -You can set the state of the DFS namespace target and configure priority class and priority rank for referrals. +Specify the DFS namespace root folder and the new root folder target. You can set the state of the +DFS namespace target and configure priority class and priority rank for referrals. -For more information about DFS namespaces, see [Overview of DFS Namespaces](https://technet.microsoft.com/library/cc730736) on TechNet. +For more information about DFS namespaces, see +[Overview of DFS Namespaces](https://technet.microsoft.com/library/cc730736) on TechNet. ## EXAMPLES ### Example 1: Add a DFS namespace root target -``` -PS C:\> New-DfsnRootTarget -Path "\\Contoso\Software" -TargetPath "\\Contoso-FS04\Software" + +```powershell +New-DfsnRootTarget -Path '\\Contoso\Software' -TargetPath '\\Contoso-FS04\Software' ``` -This command adds a new DFS namespace root target, \\\\Contoso-FS04\Software, to the namespace that has the root path \\\\Contoso\Software. +This command adds a new DFS namespace root target, `\\Contoso-FS04\Software`, to the namespace that +has the root path `\\Contoso\Software`. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. + +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -62,12 +69,14 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml -Type: CimSession[] +Type: Microsoft.Management.Infrastructure.CimSession[] Parameter Sets: (All) Aliases: Session @@ -79,10 +88,11 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -94,10 +104,11 @@ Accept wildcard characters: False ``` ### -Path + Specifies a path for the root of a DFS namespace. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DfsPath, NamespaceRoot @@ -109,31 +120,27 @@ Accept wildcard characters: False ``` ### -ReferralPriorityClass -Specifies the target priority class for a DFS namespace root. -Target priority offers you the ability to classify and rank in-site targets. -You can specify targets to receive the highest or lowest preference, and you can divide the remaining targets based on their site cost for a DFS client to connect to them. -The acceptable values for this parameter are: - -- GlobalHigh. -The highest priority class for a DFS target. -Targets assigned this class receive global preference. -- SiteCostHigh. -The highest site cost priority class for a DFS target. -Targets assigned this class receive the most preference among targets of the same site cost for a given DFS client. -- SiteCostNormal. -The middle or normal site cost priority class for a DFS target. -- SiteCostLow. -The lowest site cost priority class for a DFS target. -Targets assigned this class receive the least preference among targets of the same site cost for a given DFS client. -- GlobalLow. -The lowest level of priority class for a DFS target. -Targets assigned this class receive the least preference globally. + +Specifies the target priority class for a DFS namespace root. Target priority offers you the ability +to classify and rank in-site targets. You can specify targets to receive the highest or lowest +preference, and you can divide the remaining targets based on their site cost for a DFS client to +connect to them. The acceptable values for this parameter are: + +- `GlobalHigh` - The highest priority class for a DFS target. Targets assigned this class receive + global preference. +- `SiteCostHigh` - The highest site cost priority class for a DFS target. Targets assigned this + class receive the most preference among targets of the same site cost for a given DFS client. +- `SiteCostNormal` - The middle or normal site cost priority class for a DFS target. +- `SiteCostLow` - The lowest site cost priority class for a DFS target. Targets assigned this class + receive the least preference among targets of the same site cost for a given DFS client. +- `GlobalLow` - The lowest level of priority class for a DFS target. Targets assigned this class + receive the least preference globally. ```yaml -Type: ReferralPriorityClass +Type: Microsoft.PowerShell.Cmdletization.GeneratedTypes.DfsNamespaceRootTarget.ReferralPriorityClass Parameter Sets: (All) Aliases: PriorityClass, Class -Accepted values: sitecostnormal, globalhigh, sitecosthigh, sitecostlow, globallow +Accepted values: SiteCostNormal, GlobalHigh, SiteCostHigh, SiteCostLow, GlobalLow Required: False Position: 2 @@ -143,12 +150,12 @@ Accept wildcard characters: False ``` ### -ReferralPriorityRank -Specifies the priority rank, as an integer, for a root target of the DFS namespace. -Lower values have greater preference. -A value of zero (0) is the greatest preference. + +Specifies the priority rank, as an integer, for a root target of the DFS namespace. Lower values +have greater preference. A value of zero (0) is the greatest preference. ```yaml -Type: UInt32 +Type: System.UInt32 Parameter Sets: (All) Aliases: PriorityRank, Rank @@ -160,16 +167,16 @@ Accept wildcard characters: False ``` ### -State -Specifies the state of the DFS namespace root target. -The acceptable values for this parameter are: -- Online -- Offline +Specifies the state of the DFS namespace root target. The acceptable values for this parameter are: + +- `Online` +- `Offline` Clients do not receive referrals for a DFS namespace folder target that is offline. ```yaml -Type: State +Type: Microsoft.PowerShell.Cmdletization.GeneratedTypes.DfsNamespaceRootTarget.State Parameter Sets: (All) Aliases: Accepted values: Offline, Online @@ -182,11 +189,12 @@ Accept wildcard characters: False ``` ### -TargetPath -Specifies a path for a root target of the DFS namespace. -This cmdlet adds the folder that the path specifies. + +Specifies a path for a root target of the DFS namespace. This cmdlet adds the folder that the path +specifies. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: Target, DfsTarget, RootTargetPath @@ -198,12 +206,15 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: (All) Aliases: @@ -215,11 +226,11 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -231,7 +242,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, +`-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, +`-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -256,4 +271,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Remove-DfsnRootTarget](./Remove-DfsnRootTarget.md) [Set-DfsnRootTarget](./Set-DfsnRootTarget.md) - diff --git a/docset/winserver2022-ps/dfsn/Remove-DfsnAccess.md b/docset/winserver2022-ps/dfsn/Remove-DfsnAccess.md index 206b590ea8..1451cbed78 100644 --- a/docset/winserver2022-ps/dfsn/Remove-DfsnAccess.md +++ b/docset/winserver2022-ps/dfsn/Remove-DfsnAccess.md @@ -21,28 +21,34 @@ Remove-DfsnAccess [-Path] [-AccountName] [-CimSession Remove-DfsnAccess -Path "\\Contoso\Software\Projects" -AccountName "TSQA\PattiFuller" + +```powershell +Remove-DfsnAccess -Path '\\Contoso\Software\Projects' -AccountName 'TSQA\PattiFuller' ``` -This command removes the user TSQA\PattiFuller from the access control list of \\\\Contoso\Software\Projects. +This command removes the user TSQA\PattiFuller from the access control list of +`\\Contoso\Software\Projects`. ## PARAMETERS ### -AccountName -Specifies an array of user and group accounts. -This cmdlet removes the accounts specified from the ACL of a DFS namespace folder. + +Specifies an array of user and group accounts. This cmdlet removes the accounts specified from the +ACL of a DFS namespace folder. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: (All) Aliases: Account, User @@ -54,17 +60,20 @@ Accept wildcard characters: False ``` ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. + +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -76,12 +85,14 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml -Type: CimSession[] +Type: Microsoft.Management.Infrastructure.CimSession[] Parameter Sets: (All) Aliases: Session @@ -93,10 +104,11 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -108,11 +120,12 @@ Accept wildcard characters: False ``` ### -Path -Specifies a path for a DFS namespace folder. -This cmdlet removes user accounts or group accounts from the ACL of the folder specified. + +Specifies a path for a DFS namespace folder. This cmdlet removes user accounts or group accounts +from the ACL of the folder specified. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DfsPath, FolderPath, NamespacePath @@ -124,12 +137,15 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: (All) Aliases: @@ -141,10 +157,11 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -156,7 +173,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, +`-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, +`-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -177,4 +198,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Grant-DfsnAccess](./Grant-DfsnAccess.md) [Revoke-DfsnAccess](./Revoke-DfsnAccess.md) - diff --git a/docset/winserver2022-ps/dfsn/Remove-DfsnFolder.md b/docset/winserver2022-ps/dfsn/Remove-DfsnFolder.md index df39182c2c..22e0317d4a 100644 --- a/docset/winserver2022-ps/dfsn/Remove-DfsnFolder.md +++ b/docset/winserver2022-ps/dfsn/Remove-DfsnFolder.md @@ -16,43 +16,50 @@ Removes a DFS namespace folder. ## SYNTAX ``` -Remove-DfsnFolder [-Path] [-Force] [-CimSession ] [-ThrottleLimit ] [-AsJob] - [-WhatIf] [-Confirm] [] +Remove-DfsnFolder [-Path] [-Force] [-CimSession ] [-ThrottleLimit ] + [-AsJob] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Remove-DfsnFolder** cmdlet removes a Distributed File System (DFS) namespace folder. -When you remove a folder, this cmdlet deletes all the folder targets for the folder. -This cmdlet does not delete the folders specified by DFS namespace targets or the files in those folders. -If you remove the last folder within a parent directory, the cmdlet removes the parent folder as well, unless it is the DFS namespace root. -To remove a DFS namespace root, use the **Remove-DfsnRoot** cmdlet. +The **Remove-DfsnFolder** cmdlet removes a Distributed File System (DFS) namespace folder. When you +remove a folder, this cmdlet deletes all the folder targets for the folder. This cmdlet does not +delete the folders specified by DFS namespace targets or the files in those folders. -For more information about DFS namespaces, see [Overview of DFS Namespaces](https://technet.microsoft.com/library/cc730736) on TechNet. +If you remove the last folder within a parent directory, the cmdlet removes the parent folder as +well, unless it is the DFS namespace root. To remove a DFS namespace root, use the +**Remove-DfsnRoot** cmdlet. + +For more information about DFS namespaces, see +[Overview of DFS Namespaces](https://technet.microsoft.com/library/cc730736) on TechNet. ## EXAMPLES ### Example 1: Remove a DFS namespace folder -``` -PS C:\> Remove-DfsnFolder -Path "\\Contoso\AccountingResources\LegacySoftware" + +```powershell +Remove-DfsnFolder -Path '\\Contoso\AccountingResources\LegacySoftware' ``` -This command removes the DFS namespace folder \\\\Contoso\AccountingResources\LegacySoftware. +This command removes the DFS namespace folder `\\Contoso\AccountingResources\LegacySoftware`. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. + +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -64,12 +71,14 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml -Type: CimSession[] +Type: Microsoft.Management.Infrastructure.CimSession[] Parameter Sets: (All) Aliases: Session @@ -81,10 +90,11 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -96,11 +106,12 @@ Accept wildcard characters: False ``` ### -Force -Removes a DFS namespace folder without prompting you for confirmation. -By default, the cmdlet prompts you for confirmation before it proceeds. + +Removes a DFS namespace folder without prompting you for confirmation. By default, the cmdlet +prompts you for confirmation before it proceeds. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -112,11 +123,12 @@ Accept wildcard characters: False ``` ### -Path -Specifies the path for a DFS namespace folder. -This cmdlet removes the folder that has the path specified. + +Specifies the path for a DFS namespace folder. This cmdlet removes the folder that has the path +specified. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DfsPath, FolderPath, NamespacePath @@ -128,12 +140,15 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: (All) Aliases: @@ -145,11 +160,11 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -161,7 +176,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, +`-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, +`-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -184,4 +203,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Set-DfsnFolder](./Set-DfsnFolder.md) [Remove-DfsnRoot](./Remove-DfsnRoot.md) - diff --git a/docset/winserver2022-ps/dfsn/Remove-DfsnFolderTarget.md b/docset/winserver2022-ps/dfsn/Remove-DfsnFolderTarget.md index f6f6d33d66..e96690c913 100644 --- a/docset/winserver2022-ps/dfsn/Remove-DfsnFolderTarget.md +++ b/docset/winserver2022-ps/dfsn/Remove-DfsnFolderTarget.md @@ -16,45 +16,54 @@ Removes a target for a DFS namespace folder. ## SYNTAX ``` -Remove-DfsnFolderTarget [-Path] [-TargetPath] [-Force] [-CimSession ] - [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] [] +Remove-DfsnFolderTarget [-Path] [-TargetPath] [-Force] + [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION -The **Remove-DfsnFolderTarget** cmdlet removes a target for a Distributed File System (DFS) namespace folder. -A folder target is the Universal Naming Convention (UNC) path of a shared folder or another namespace associated with a folder in a namespace. -The folder target is where data and content is stored. -This cmdlet deletes a target, but does not delete the contents of the folder target. -A DFS namespace folder can have more than one target. -If you remove the last target associated with a DFS namespace folder, this cmdlet deletes the namespace folder as well. -Users cannot use the DFS namespace folder after you delete it. +The **Remove-DfsnFolderTarget** cmdlet removes a target for a Distributed File System (DFS) +namespace folder. A folder target is the Universal Naming Convention (UNC) path of a shared folder +or another namespace associated with a folder in a namespace. The folder target is where data and +content is stored. This cmdlet deletes a target, but does not delete the contents of the folder +target. -For more information about DFS namespaces, see [Overview of DFS Namespaces](https://technet.microsoft.com/library/cc730736) on TechNet. +A DFS namespace folder can have more than one target. If you remove the last target associated with +a DFS namespace folder, this cmdlet deletes the namespace folder as well. Users cannot use the DFS +namespace folder after you delete it. + +For more information about DFS namespaces, see +[Overview of DFS Namespaces](https://technet.microsoft.com/library/cc730736) on TechNet. ## EXAMPLES ### Example 1: Remove a folder target -``` -PS C:\> Remove-DfsnFolderTarget -Path "\\Contoso\AccountingResources\LegacySoftware" -TargetPath "\\Contoso-FS\LegacySoftware" + +```powershell +Remove-DfsnFolderTarget -Path '\\Contoso\AccountingResources\LegacySoftware' -TargetPath '\\Contoso-FS\LegacySoftware' ``` -This command removes the target \\\\Contoso-FS\LegacySoftware for the DFS namespace folder \\\\Contoso\AccountingResources\LegacySoftware. +This command removes the target `\\Contoso-FS\LegacySoftware` for the DFS namespace folder +`\\Contoso\AccountingResources\LegacySoftware`. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. + +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -66,12 +75,14 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml -Type: CimSession[] +Type: Microsoft.Management.Infrastructure.CimSession[] Parameter Sets: (All) Aliases: Session @@ -83,10 +94,11 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -98,11 +110,12 @@ Accept wildcard characters: False ``` ### -Force -Removes a DFS namespace without prompting you for confirmation. -By default, the cmdlet prompts you for confirmation before it proceeds. + +Removes a DFS namespace without prompting you for confirmation. By default, the cmdlet prompts you +for confirmation before it proceeds. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -114,10 +127,11 @@ Accept wildcard characters: False ``` ### -Path + Specifies the path for the DFS namespace folder. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DfsPath, FolderPath, NamespacePath @@ -129,11 +143,12 @@ Accept wildcard characters: False ``` ### -TargetPath -Specifies a path for the folder target. -This cmdlet removes the folder target that has the path specified. + +Specifies a path for the folder target. This cmdlet removes the folder target that has the path +specified. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: Target, DfsTarget, FolderTarget @@ -145,12 +160,15 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: (All) Aliases: @@ -162,11 +180,11 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -178,7 +196,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, +`-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, +`-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -197,4 +219,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [New-DfsnFolderTarget](./New-DfsnFolderTarget.md) [Set-DfsnFolderTarget](./Set-DfsnFolderTarget.md) - diff --git a/docset/winserver2022-ps/dfsn/Remove-DfsnRoot.md b/docset/winserver2022-ps/dfsn/Remove-DfsnRoot.md index 33d686f055..c477325cee 100644 --- a/docset/winserver2022-ps/dfsn/Remove-DfsnRoot.md +++ b/docset/winserver2022-ps/dfsn/Remove-DfsnRoot.md @@ -16,45 +16,54 @@ Removes a DFS namespace. ## SYNTAX ``` -Remove-DfsnRoot [-Path] [-Force] [-CimSession ] [-ThrottleLimit ] [-AsJob] - [-WhatIf] [-Confirm] [] +Remove-DfsnRoot [-Path] [-Force] [-CimSession ] [-ThrottleLimit ] + [-AsJob] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Remove-DfsnRoot** cmdlet removes a Distributed File System (DFS) namespace. -When you remove a namespace, you remove all the folders in the namespace. -Users cannot use the DFS namespace folders after you remove the namespace. -This cmdlet does not delete the folders specified by DFS namespace targets or the files in those folders. -For more information about DFS namespaces, see [Overview of DFS Namespaces](https://technet.microsoft.com/library/cc730736) on TechNet. +The **Remove-DfsnRoot** cmdlet removes a Distributed File System (DFS) namespace. When you remove a +namespace, you remove all the folders in the namespace. Users cannot use the DFS namespace folders +after you remove the namespace. This cmdlet does not delete the folders specified by DFS namespace +targets or the files in those folders. + +For more information about DFS namespaces, see +[Overview of DFS Namespaces](https://technet.microsoft.com/library/cc730736) on TechNet. ## EXAMPLES ### Example 1: Remove a DFS namespace + +```powershell +Remove-DfsnRoot -Path '\\Contoso\AccountingResources' ``` -PS C:\> Remove-DfsnRoot -Path "\\Contoso\AccountingResources" + +```Output Confirm Performing operation "Delete DFS Namespace" on Target "\\Contoso\AccountingResources" [Y] Yes [N] No [S] Suspend [?] Help (default is "Y"): ``` -This command removes the DFS namespace that has the path \\\\Contoso\AccountingResources. -The command does not include the **Force** parameter, so you must confirm the operation. +This command removes the DFS namespace that has the path `\\Contoso\AccountingResources`. The +command does not include the **Force** parameter, so you must confirm the operation. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. + +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -66,12 +75,14 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml -Type: CimSession[] +Type: Microsoft.Management.Infrastructure.CimSession[] Parameter Sets: (All) Aliases: Session @@ -83,10 +94,11 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -98,11 +110,12 @@ Accept wildcard characters: False ``` ### -Force -Removes a DFS namespace without prompting you for confirmation. -By default, the cmdlet prompts you for confirmation before it proceeds. + +Removes a DFS namespace without prompting you for confirmation. By default, the cmdlet prompts you +for confirmation before it proceeds. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -114,11 +127,12 @@ Accept wildcard characters: False ``` ### -Path -Specifies the path for the root of a DFS namespace. -This cmdlet removes the namespace that has the path specified. + +Specifies the path for the root of a DFS namespace. This cmdlet removes the namespace that has the +path specified. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: RootPath, root, namespace, NamespaceRoot @@ -130,12 +144,15 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: (All) Aliases: @@ -147,11 +164,11 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -163,7 +180,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, +`-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, +`-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -182,4 +203,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [New-DfsnRoot](./New-DfsnRoot.md) [Set-DfsnRoot](./Set-DfsnRoot.md) - diff --git a/docset/winserver2022-ps/dfsn/Remove-DfsnRootTarget.md b/docset/winserver2022-ps/dfsn/Remove-DfsnRootTarget.md index a159b60d0c..0321be6a43 100644 --- a/docset/winserver2022-ps/dfsn/Remove-DfsnRootTarget.md +++ b/docset/winserver2022-ps/dfsn/Remove-DfsnRootTarget.md @@ -16,43 +16,51 @@ Removes a target for a DFS namespace root. ## SYNTAX ``` -Remove-DfsnRootTarget [-Path ] [-TargetPath] [-Cleanup] [-CimSession ] - [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] [] +Remove-DfsnRootTarget [-Path ] [-TargetPath] [-Cleanup] + [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION -The **Remove-DfsnRootTarget** cmdlet removes a target for a Distributed File System (DFS) namespace root. -This cmdlet deletes a target, but does not delete the contents of the target. -A DFS namespace root can have more than one root target. -If you remove the last root target associated with a DFS namespace root, this cmdlet deletes the namespace as well. -Users cannot use the DFS namespace path after you delete the namespace. +The **Remove-DfsnRootTarget** cmdlet removes a target for a Distributed File System (DFS) namespace +root. This cmdlet deletes a target, but does not delete the contents of the target. -For more information about DFS namespaces, see [Overview of DFS Namespaces](https://technet.microsoft.com/library/cc730736) on TechNet. +A DFS namespace root can have more than one root target. If you remove the last root target +associated with a DFS namespace root, this cmdlet deletes the namespace as well. Users cannot use +the DFS namespace path after you delete the namespace. + +For more information about DFS namespaces, see +[Overview of DFS Namespaces](https://technet.microsoft.com/library/cc730736) on TechNet. ## EXAMPLES ### Example 1: Remove a root target -``` -PS C:\> Remove-DfsnRootTarget -TargetPath "\\Contoso-FS\AccountingSoftware" -Path "\\Contoso\AccountingSoftware" + +```powershell +Remove-DfsnRootTarget -TargetPath '\\Contoso-FS\AccountingSoftware' -Path '\\Contoso\AccountingSoftware' ``` -This command removes the DFS root target path \\\\Contoso-FS\AccountingSoftware from the DFS namespace that has the path \\\\Contoso\AccountingSoftware. +This command removes the DFS root target path `\\Contoso-FS\AccountingSoftware` from the DFS +namespace that has the path `\\Contoso\AccountingSoftware`. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. + +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -64,12 +72,14 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml -Type: CimSession[] +Type: Microsoft.Management.Infrastructure.CimSession[] Parameter Sets: (All) Aliases: Session @@ -81,10 +91,12 @@ Accept wildcard characters: False ``` ### -Cleanup -Indicates that the cmdlet attempts to force a clean-up of the root target in Active Directory Domain Services (AD DS). + +Indicates that the cmdlet attempts to force a clean-up of the root target in Active Directory Domain +Services (AD DS). ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -96,12 +108,13 @@ Accept wildcard characters: False ``` ### -Confirm -Prompts you for confirmation before running the cmdlet. The default value is **True** and asks for confirmation. If you do not want to confirm the operation, you must use the switch with the **False** value, as shown in this example: -**-Confirm:$False** +Prompts you for confirmation before running the cmdlet. The default value is **True** and asks for +confirmation. If you do not want to confirm the operation, you must use the switch with the +**False** value, as shown in this example: `-Confirm:$false` ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -113,10 +126,11 @@ Accept wildcard characters: False ``` ### -Path + Specifies the path for the root of a DFS namespace. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DfsPath, NamespaceRoot @@ -128,11 +142,12 @@ Accept wildcard characters: False ``` ### -TargetPath -Specifies a path for the root target. -This cmdlet removes the root target that has the path specified. + +Specifies a path for the root target. This cmdlet removes the root target that has the path +specified. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: Target, DfsTarget, RootTargetPath @@ -144,12 +159,15 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: (All) Aliases: @@ -161,11 +179,11 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -177,7 +195,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, +`-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, +`-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -196,4 +218,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [New-DfsnRootTarget](./New-DfsnRootTarget.md) [Set-DfsnRootTarget](./Set-DfsnRootTarget.md) - diff --git a/docset/winserver2022-ps/dfsn/Revoke-DfsnAccess.md b/docset/winserver2022-ps/dfsn/Revoke-DfsnAccess.md index 17e27152da..4114a0783a 100644 --- a/docset/winserver2022-ps/dfsn/Revoke-DfsnAccess.md +++ b/docset/winserver2022-ps/dfsn/Revoke-DfsnAccess.md @@ -21,34 +21,45 @@ Revoke-DfsnAccess [-Path] [-AccountName] [-CimSession Revoke-DfsnAccess -Path "\\Contoso\Software\Projects" -AccountName "TSQA\PattiFuller" + +```Output AccessType : none AccountName : TSQA\PattiFuller NamespacePath : "\\Contoso\Software\Projects PSComputerName : ``` -This command revokes permissions to access and view the contents of the DFS namespace folder \\\\Contoso\Software\Projects for a specified user. +This command revokes permissions to access and view the contents of the DFS namespace folder +`\\Contoso\Software\Projects` for a specified user. ## PARAMETERS ### -AccountName -Specifies an array of user and group accounts. -This cmdlet revokes permissions for the accounts specified. + +Specifies an array of user and group accounts. This cmdlet revokes permissions for the accounts +specified. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: (All) Aliases: Account, User @@ -60,17 +71,20 @@ Accept wildcard characters: False ``` ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. + +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -82,12 +96,14 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml -Type: CimSession[] +Type: Microsoft.Management.Infrastructure.CimSession[] Parameter Sets: (All) Aliases: Session @@ -99,10 +115,11 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -114,11 +131,12 @@ Accept wildcard characters: False ``` ### -Path -Specifies a path for a DFS namespace folder. -This cmdlet revokes permissions for the folder specified. + +Specifies a path for a DFS namespace folder. This cmdlet revokes permissions for the folder +specified. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DfsPath, FolderPath, NamespacePath @@ -130,12 +148,15 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: (All) Aliases: @@ -147,10 +168,11 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -162,7 +184,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, +`-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, +`-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -183,4 +209,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Grant-DfsnAccess](./Grant-DfsnAccess.md) [Remove-DfsnAccess](./Remove-DfsnAccess.md) - diff --git a/docset/winserver2022-ps/dfsn/Set-DfsnFolder.md b/docset/winserver2022-ps/dfsn/Set-DfsnFolder.md index a81308bb93..3895d29e47 100644 --- a/docset/winserver2022-ps/dfsn/Set-DfsnFolder.md +++ b/docset/winserver2022-ps/dfsn/Set-DfsnFolder.md @@ -16,50 +16,60 @@ Changes settings for a DFS namespace folder. ## SYNTAX ``` -Set-DfsnFolder [-Path] [[-EnableInsiteReferrals] ] [[-EnableTargetFailback] ] - [[-State] ] [[-TimeToLiveSec] ] [[-Description] ] [-CimSession ] - [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] [] +Set-DfsnFolder [-Path] [[-EnableInsiteReferrals] ] + [[-EnableTargetFailback]] [[-State] ] [[-TimeToLiveSec] ] + [[-Description] ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] + [-Confirm] [] ``` ## DESCRIPTION + The **Set-DfsnFolder** cmdlet changes settings for a Distributed File System (DFS) namespace folder. -A DFS namespace folder has one or more folder targets that are shared folders on computers. -When a client attempts to connect to a folder, the DFS namespace server provides a list of folder targets, called referrals. -The server determines the order for referrals and clients attempt to connect to a folder target in the order that the server provides. +A DFS namespace folder has one or more folder targets that are shared folders on computers. When a +client attempts to connect to a folder, the DFS namespace server provides a list of folder targets, +called referrals. The server determines the order for referrals and clients attempt to connect to a +folder target in the order that the server provides. -You can use this cmdlet to enable or disable the following settings: +You can use this cmdlet to enable or disable the following settings: -- In-site referrals. -- Target failback. +- **In-site referrals** +- **Target failback** -You can also add or change a descriptive comment, change the state of the DFS namespace, or set the Time to Live (TTL) interval for referrals. +You can also add or change a descriptive comment, change the state of the DFS namespace, or set the +Time to Live (TTL) interval for referrals. -For more information about DFS namespaces, see [Overview of DFS Namespaces](https://technet.microsoft.com/library/cc730736) on TechNet. +For more information about DFS namespaces, see +[Overview of DFS Namespaces](https://technet.microsoft.com/library/cc730736) on TechNet. ## EXAMPLES ### Example 1: Enable settings for a DFS namespace folder -``` -PS C:\> Set-DfsnFolder -Path "\\Contoso\AccountingResources\LegacySoftware" -EnableInsiteReferrals $True -EnableTargetFailback $True + +```powershell +Set-DfsnFolder -Path '\\Contoso\AccountingResources\LegacySoftware' -EnableInsiteReferrals $true -EnableTargetFailback $true ``` -This command enables in-site referrals and target failback for the DFS namespace folder \\\\Contoso\AccountingResources\LegacySoftware. +This command enables in-site referrals and target failback for the DFS namespace folder +`\\Contoso\AccountingResources\LegacySoftware`. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. + +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -71,12 +81,14 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml -Type: CimSession[] +Type: Microsoft.Management.Infrastructure.CimSession[] Parameter Sets: (All) Aliases: Session @@ -88,10 +100,11 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -103,10 +116,11 @@ Accept wildcard characters: False ``` ### -Description + Specifies a description for a DFS namespace folder. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: desc @@ -118,12 +132,14 @@ Accept wildcard characters: False ``` ### -EnableInsiteReferrals -Indicates whether a DFS namespace server provides a client only with referrals that are in the same site as the client. -If this value is $True, a DFS namespace server provides only in-site referrals. -If this value is $False, the DFS namespace server provides in-site referrals first, then other referrals. + +Indicates whether a DFS namespace server provides a client only with referrals that are in the same +site as the client. If this value is $true, a DFS namespace server provides only in-site referrals. +If this value is $false, the DFS namespace server provides in-site referrals first, then other +referrals. ```yaml -Type: Boolean +Type: System.Boolean Parameter Sets: (All) Aliases: insite @@ -135,13 +151,15 @@ Accept wildcard characters: False ``` ### -EnableTargetFailback -Indicates whether a DFS namespace uses target failback. -If a client attempts to access target link on a server and that server is not available, the client fails over to another referral. -If this value is $True, once the first server becomes available again, the client fails back to the first server. -If this value is $False, the DFS namespace server does not require the client to use the preferred server. + +Indicates whether a DFS namespace uses target failback. If a client attempts to access target link +on a server and that server is not available, the client fails over to another referral. If this +value is `$true`, once the first server becomes available again, the client fails back to the first +server. If this value is $false, the DFS namespace server does not require the client to use the +preferred server. ```yaml -Type: Boolean +Type: System.Boolean Parameter Sets: (All) Aliases: failback, TargetFailback @@ -153,11 +171,12 @@ Accept wildcard characters: False ``` ### -Path -Specifies a path for the DFS namespace folder. -This cmdlet modifies the folder that has the path specified. + +Specifies a path for the DFS namespace folder. This cmdlet modifies the folder that has the path +specified. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DfsPath, FolderPath, NamespacePath @@ -169,16 +188,16 @@ Accept wildcard characters: False ``` ### -State -Specifies the state of the DFS namespace folder. -The acceptable values for this parameter are: -- Online -- Offline +Specifies the state of the DFS namespace folder. The acceptable values for this parameter are: + +- `Online` +- `Offline` Clients do not receive referrals for a DFS namespace folder that is offline. ```yaml -Type: State +Type: Microsoft.PowerShell.Cmdletization.GeneratedTypes.DfsNamespaceRootTarget.State Parameter Sets: (All) Aliases: Accepted values: Offline, Online @@ -191,12 +210,15 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: (All) Aliases: @@ -208,12 +230,12 @@ Accept wildcard characters: False ``` ### -TimeToLiveSec -Specifies a TTL interval, in seconds, for referrals. -Clients store referrals to targets for this length of time. -The default TTL interval for folder referrals is 1800 seconds (30 minutes). + +Specifies a TTL interval, in seconds, for referrals. Clients store referrals to targets for this +length of time. The default TTL interval for folder referrals is 1800 seconds (30 minutes). ```yaml -Type: UInt32 +Type: System.UInt32 Parameter Sets: (All) Aliases: ttl, TimeToLive @@ -225,11 +247,11 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -241,7 +263,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, +`-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, +`-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -268,4 +294,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [New-DfsnFolder](./New-DfsnFolder.md) [Remove-DfsnFolder](./Remove-DfsnFolder.md) - diff --git a/docset/winserver2022-ps/dfsn/Set-DfsnFolderTarget.md b/docset/winserver2022-ps/dfsn/Set-DfsnFolderTarget.md index b4300312c3..8c4a19ccaf 100644 --- a/docset/winserver2022-ps/dfsn/Set-DfsnFolderTarget.md +++ b/docset/winserver2022-ps/dfsn/Set-DfsnFolderTarget.md @@ -18,43 +18,53 @@ Changes settings for a target of a DFS namespace folder. ``` Set-DfsnFolderTarget [-Path] [-TargetPath] [[-State] ] [[-ReferralPriorityClass] ] [[-ReferralPriorityRank] ] - [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] [] + [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION -The **Set-DfsnRootTarget** cmdlet changes settings for a target of a Distributed File System (DFS) namespace folder. -You can change the state of the DFS namespace target and configure priority class and priority rank for referrals. -A DFS namespace folder has one or more folder targets that are shared folders on computers. -When a client attempts to connect to a folder, the DFS namespace server provides a list of folder targets, called referrals. -The server determines the order for referrals and clients attempt to connect to a folder target in the order that the server provides. +The **Set-DfsnRootTarget** cmdlet changes settings for a target of a Distributed File System (DFS) +namespace folder. You can change the state of the DFS namespace target and configure priority class +and priority rank for referrals. -For more information about DFS namespaces, see [Overview of DFS Namespaces](https://technet.microsoft.com/library/cc730736) on TechNet. +A DFS namespace folder has one or more folder targets that are shared folders on computers. When a +client attempts to connect to a folder, the DFS namespace server provides a list of folder targets, +called referrals. The server determines the order for referrals and clients attempt to connect to a +folder target in the order that the server provides. + +For more information about DFS namespaces, see +[Overview of DFS Namespaces](https://technet.microsoft.com/library/cc730736) on TechNet. ## EXAMPLES ### Example 1: Change the state for a folder target -``` -PS C:\> Set-DfsnFolderTarget -Path "\\Contoso\AccountingResources\LegacySoftware" -TargetPath "\\Contoso-FS\LegacySoftware" -State Online + +```powershell +Set-DfsnFolderTarget -Path '\\Contoso\AccountingResources\LegacySoftware' -TargetPath '\\Contoso-FS\LegacySoftware' -State 'Online' ``` -This command changes the state for a target for the folder \\\\Contoso\AccountingResources\LegacySoftware to Online. -The folder target is \\\\Contoso-FS\LegacySoftware. +This command changes the state for a target for the folder +`\\Contoso\AccountingResources\LegacySoftware` to `Online`. The folder target is +`\\Contoso-FS\LegacySoftware`. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. + +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -66,12 +76,14 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml -Type: CimSession[] +Type: Microsoft.Management.Infrastructure.CimSession[] Parameter Sets: (All) Aliases: Session @@ -83,10 +95,11 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -98,10 +111,11 @@ Accept wildcard characters: False ``` ### -Path + Specifies a path for the DFS namespace folder. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DfsPath, FolderPath, NamespacePath @@ -113,31 +127,27 @@ Accept wildcard characters: False ``` ### -ReferralPriorityClass -Specifies the priority class for a DFS namespace folder target. -Target priority offers you the ability to classify and rank in-site targets. -You can specify targets to receive the highest or lowest preference, and you can divide the remaining targets based on their site cost for a DFS client to connect to them. -The acceptable values for this parameter are: - -- GlobalHigh. -The highest priority class for a DFS target. -Targets assigned this class receive global preference. -- SiteCostHigh. -The highest site cost priority class for a DFS target. -Targets assigned this class receive the most preference among targets of the same site cost for a given DFS client. -- SiteCostNormal. -The middle or normal site cost priority class for a DFS target. -- SiteCostLow. -The lowest site cost priority class for a DFS target. -Targets assigned this class receive the least preference among targets of the same site cost for a given DFS client. -- GlobalLow. -The lowest level of priority class for a DFS target. -Targets assigned this class receive the least preference globally. + +Specifies the priority class for a DFS namespace folder target. Target priority offers you the +ability to classify and rank in-site targets. You can specify targets to receive the highest or +lowest preference, and you can divide the remaining targets based on their site cost for a DFS +client to connect to them. The acceptable values for this parameter are: + +- `GlobalHigh` - The highest priority class for a DFS target. Targets assigned this class receive + global preference. +- `SiteCostHigh` - The highest site cost priority class for a DFS target. Targets assigned this + class receive the most preference among targets of the same site cost for a given DFS client. +- `SiteCostNormal` - The middle or normal site cost priority class for a DFS target. +- `SiteCostLow` - The lowest site cost priority class for a DFS target. Targets assigned this class + receive the least preference among targets of the same site cost for a given DFS client. +- `GlobalLow` - The lowest level of priority class for a DFS target. Targets assigned this class + receive the least preference globally. ```yaml -Type: ReferralPriorityClass +Type: Microsoft.PowerShell.Cmdletization.GeneratedTypes.DfsNamespaceRootTarget.ReferralPriorityClass Parameter Sets: (All) Aliases: PriorityClass, Class -Accepted values: sitecostnormal, globalhigh, sitecosthigh, sitecostlow, globallow +Accepted values: SiteCostNormal, GlobalHigh, SiteCostHigh, SiteCostLow, GlobalLow Required: False Position: 3 @@ -147,12 +157,12 @@ Accept wildcard characters: False ``` ### -ReferralPriorityRank -Specifies the priority rank, as an integer, for a target of the DFS namespace folder. -Lower values have greater preference. -A value of zero (0) is the greatest preference. + +Specifies the priority rank, as an integer, for a target of the DFS namespace folder. Lower values +have greater preference. A value of zero (0) is the greatest preference. ```yaml -Type: UInt32 +Type: System.UInt32 Parameter Sets: (All) Aliases: PriorityRank, Rank @@ -164,16 +174,17 @@ Accept wildcard characters: False ``` ### -State -Specifies the state of the DFS namespace folder target. -The acceptable values for this parameter are: -- Online -- Offline +Specifies the state of the DFS namespace folder target. The acceptable values for this parameter +are: + +- `Online` +- `Offline` Clients do not receive referrals for a DFS namespace target that is offline. ```yaml -Type: State +Type: Microsoft.PowerShell.Cmdletization.GeneratedTypes.DfsNamespaceRootTarget.State Parameter Sets: (All) Aliases: Accepted values: Offline, Online @@ -186,11 +197,12 @@ Accept wildcard characters: False ``` ### -TargetPath -Specifies a path for a target of the DFS namespace folder. -This cmdlet changes settings for the target that the path specifies. + +Specifies a path for a target of the DFS namespace folder. This cmdlet changes settings for the +target that the path specifies. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: Target, DfsTarget, FolderTarget @@ -202,12 +214,15 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: (All) Aliases: @@ -219,11 +234,11 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -235,7 +250,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, +`-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, +`-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -262,4 +281,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Remove-DfsnFolderTarget](./Remove-DfsnFolderTarget.md) [Set-DfsnFolderTarget](./Set-DfsnFolderTarget.md) - diff --git a/docset/winserver2022-ps/dfsn/Set-DfsnRoot.md b/docset/winserver2022-ps/dfsn/Set-DfsnRoot.md index 530190146c..b9bb3eaee2 100644 --- a/docset/winserver2022-ps/dfsn/Set-DfsnRoot.md +++ b/docset/winserver2022-ps/dfsn/Set-DfsnRoot.md @@ -18,56 +18,66 @@ Changes settings for a DFS namespace. ``` Set-DfsnRoot [-Path] [[-EnableSiteCosting] ] [[-EnableInsiteReferrals] ] [[-EnableAccessBasedEnumeration] ] [[-EnableRootScalability] ] - [[-EnableTargetFailback] ] [[-Description] ] [[-State] ] [[-TimeToLiveSec] ] - [[-GrantAdminAccounts] ] [[-RevokeAdminAccounts] ] [-CimSession ] - [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] [] + [[-EnableTargetFailback] ] [[-Description] ] [[-State] ] + [[-TimeToLiveSec] ] [[-GrantAdminAccounts] ] [[-RevokeAdminAccounts] ] + [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION + The **Set-DfsnRoot** cmdlet changes settings for a Distributed File System (DFS) namespace. -You can use this cmdlet to enable or disable the following settings: +You can use this cmdlet to enable or disable the following settings: -- Site costing. -- In-site referrals. -- Access-based enumeration. -- Root scalability. -- Target failback. +- **Site costing** +- **In-site referrals** +- **Access-based enumeration** +- **Root scalability** +- **Target failback** -You can also add or change a descriptive comment, change the state of the DFS namespace, or set the Time to Live (TTL) interval for referrals. +You can also add or change a descriptive comment, change the state of the DFS namespace, or set the +Time to Live (TTL) interval for referrals. -To manage the DFS namespace, you can use this cmdlet to grant or revoke permissions to users or user groups. -Users who have these permissions can add, remove, and modify namespace folders and folder targets for the DFS namespace. +To manage the DFS namespace, you can use this cmdlet to grant or revoke permissions to users or user +groups. Users who have these permissions can add, remove, and modify namespace folders and folder +targets for the DFS namespace. -For more information about DFS namespaces, see [Overview of DFS Namespaces](https://technet.microsoft.com/library/cc730736) on TechNet. +For more information about DFS namespaces, see +[Overview of DFS Namespaces](https://technet.microsoft.com/library/cc730736) on TechNet. ## EXAMPLES ### Example 1: Change root scalability and TTL -``` -PS C:\> Set-DfsnRoot -Path "\\Contoso\AccountingResources" -EnableRootScalability $True -TimeToLiveSec 900 + +```powershell +Set-DfsnRoot -Path '\\Contoso\AccountingResources' -EnableRootScalability $true -TimeToLiveSec 900 ``` -This command modifies settings for the DFS namespace that has the path \\\\Contoso\AccountingResources. -The command enables root scalability, which allows the DFS namespace server to poll domain controllers for updates. -The command also sets the referral TTL interval to 900 seconds. +This command modifies settings for the DFS namespace that has the path +`\\Contoso\AccountingResources`. The command enables root scalability, which allows the DFS +namespace server to poll domain controllers for updates. The command also sets the referral TTL +interval to 900 seconds. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. + +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -77,12 +87,14 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml -Type: CimSession[] +Type: Microsoft.Management.Infrastructure.CimSession[] Parameter Sets: (All) Aliases: Session @@ -94,10 +106,11 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -109,10 +122,11 @@ Accept wildcard characters: False ``` ### -Description + Specifies a description for a DFS namespace. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: desc @@ -124,11 +138,12 @@ Accept wildcard characters: False ``` ### -EnableAccessBasedEnumeration -Indicates whether a DFS namespace uses Access-based enumeration. -If this value is $True, a DFS namespace server shows a user only the files and folders that the user can access. + +Indicates whether a DFS namespace uses Access-based enumeration. If this value is `$true`, a DFS +namespace server shows a user only the files and folders that the user can access. ```yaml -Type: Boolean +Type: System.Boolean Parameter Sets: (All) Aliases: abe, abde @@ -140,12 +155,14 @@ Accept wildcard characters: False ``` ### -EnableInsiteReferrals -Indicates whether a DFS namespace server provides a client only with referrals that are in the same site as the client. -If this value is $True, a DFS namespace server provides only in-site referrals. -If this value is $False, the DFS namespace server provides in-site referrals first, then other referrals. + +Indicates whether a DFS namespace server provides a client only with referrals that are in the same +site as the client. If this value is `$true`, a DFS namespace server provides only in-site +referrals. If this value is `$false`, the DFS namespace server provides in-site referrals first, +then other referrals. ```yaml -Type: Boolean +Type: System.Boolean Parameter Sets: (All) Aliases: insite @@ -157,12 +174,13 @@ Accept wildcard characters: False ``` ### -EnableRootScalability -Indicates whether a DFS namespace uses root scalability mode. -If this value is $True, DFS namespace servers connect to the nearest domain controllers for periodic namespace updates. -If this value is $False, the servers connect to the primary domain controller (PDC) emulator. + +Indicates whether a DFS namespace uses root scalability mode. If this value is `$true`, DFS +namespace servers connect to the nearest domain controllers for periodic namespace updates. If this +value is `$false`, the servers connect to the primary domain controller (PDC) emulator. ```yaml -Type: Boolean +Type: System.Boolean Parameter Sets: (All) Aliases: RootScalability, rootscale @@ -174,12 +192,14 @@ Accept wildcard characters: False ``` ### -EnableSiteCosting -Indicates whether a DFS namespace uses cost-based selection. -If a client cannot access a folder target in-site, a DFS namespace server selects the least resource-intensive alternative. -If you provide a value of $True for this parameter, the DFS namespace favors high-speed links over wide area network (WAN) links. + +Indicates whether a DFS namespace uses cost-based selection. If a client cannot access a folder +target in-site, a DFS namespace server selects the least resource-intensive alternative. If you +provide a value of `$true` for this parameter, the DFS namespace favors high-speed links over wide +area network (WAN) links. ```yaml -Type: Boolean +Type: System.Boolean Parameter Sets: (All) Aliases: SiteCosting, sitecost @@ -191,13 +211,15 @@ Accept wildcard characters: False ``` ### -EnableTargetFailback -Indicates whether a DFS namespace uses target failback. -If a client attempts to access target link on a server and that server is not available, the client fails over to another referral. -If this value is $True, once the first server becomes available again, the client fails back to the first server. -If this value is $False, the DFS namespace server does not require the client to fail back to the preferred server. + +Indicates whether a DFS namespace uses target failback. If a client attempts to access target link +on a server and that server is not available, the client fails over to another referral. If this +value is `$true`, once the first server becomes available again, the client fails back to the first +server. If this value is `$false`, the DFS namespace server does not require the client to fail back +to the preferred server. ```yaml -Type: Boolean +Type: System.Boolean Parameter Sets: (All) Aliases: failback, TargetFailback @@ -209,12 +231,13 @@ Accept wildcard characters: False ``` ### -GrantAdminAccounts -Specifies an array of accounts. -This cmdlet grants management permissions the users and user groups specified for the DFS namespace. -Users can add, remove, and modify namespace folders and folder targets. + +Specifies an array of accounts. This cmdlet grants management permissions the users and user groups +specified for the DFS namespace. Users can add, remove, and modify namespace folders and folder +targets. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: (All) Aliases: GrantAdmin, GrantAdminAccess @@ -226,10 +249,11 @@ Accept wildcard characters: False ``` ### -Path + Specifies a path for the root of a DFS namespace. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: RootPath, root, namespace, NamespaceRoot @@ -241,11 +265,12 @@ Accept wildcard characters: False ``` ### -RevokeAdminAccounts -Specifies an array of accounts. -This cmdlet removes management permissions for the users and user groups specified for the DFS namespace. + +Specifies an array of accounts. This cmdlet removes management permissions for the users and user +groups specified for the DFS namespace. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: (All) Aliases: RevokeAdmin, RevokeAdminAccess @@ -257,19 +282,19 @@ Accept wildcard characters: False ``` ### -State -Specifies the state of the DFS namespace root. -The acceptable values for this parameter are: -- Online -- Offline +Specifies the state of the DFS namespace root. The acceptable values for this parameter are: + +- `Online` +- `Offline` -Clients do not receive referrals for a DFS namespace folder that is offline. -If you set a namespace root to a value of Offline, the entire namespace becomes inaccessible. +Clients do not receive referrals for a DFS namespace folder that is offline. If you set a namespace +root to a value of `Offline`, the entire namespace becomes inaccessible. ```yaml -Type: State +Type: Microsoft.PowerShell.Cmdletization.GeneratedTypes.DfsNamespaceRootTarget.State Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Offline, Online Required: False @@ -280,14 +305,17 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -297,12 +325,12 @@ Accept wildcard characters: False ``` ### -TimeToLiveSec -Specifies a TTL interval, in seconds, for referrals. -Clients store referrals to root targets for this length of time. -The default TTL interval for root referrals is 300 seconds. + +Specifies a TTL interval, in seconds, for referrals. Clients store referrals to root targets for +this length of time. The default TTL interval for root referrals is 300 seconds. ```yaml -Type: UInt32 +Type: System.UInt32 Parameter Sets: (All) Aliases: ttl, TimeToLive @@ -314,11 +342,11 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -330,7 +358,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, +`-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, +`-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -357,4 +389,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [New-DfsnRoot](./New-DfsnRoot.md) [Remove-DfsnRoot](./Remove-DfsnRoot.md) - diff --git a/docset/winserver2022-ps/dfsn/Set-DfsnRootTarget.md b/docset/winserver2022-ps/dfsn/Set-DfsnRootTarget.md index 7e8401fd43..fa83d3f2cf 100644 --- a/docset/winserver2022-ps/dfsn/Set-DfsnRootTarget.md +++ b/docset/winserver2022-ps/dfsn/Set-DfsnRootTarget.md @@ -18,42 +18,53 @@ Changes settings for a root target of a DFS namespace. ``` Set-DfsnRootTarget [-Path] [-TargetPath] [[-State] ] [[-ReferralPriorityClass] ] [[-ReferralPriorityRank] ] - [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] [] + [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION -The **Set-DfsnRootTarget** cmdlet changes settings for a root target of a Distributed File System (DFS) namespace. -You can change the state of the DFS namespace target and configure priority class and priority rank for referrals. -A DFS namespace folder has one or more folder targets that are shared folders on computers. -When a client attempts to connect to a folder, the DFS namespace server provides a list of folder targets, called referrals. -The server determines the order for referrals and clients attempt to connect to a folder target in the order that the server provides. +The **Set-DfsnRootTarget** cmdlet changes settings for a root target of a Distributed File System +(DFS) namespace. You can change the state of the DFS namespace target and configure priority class +and priority rank for referrals. -For more information about DFS namespaces, see [Overview of DFS Namespaces](https://technet.microsoft.com/library/cc730736) on TechNet. +A DFS namespace folder has one or more folder targets that are shared folders on computers. When a +client attempts to connect to a folder, the DFS namespace server provides a list of folder targets, +called referrals. The server determines the order for referrals and clients attempt to connect to a +folder target in the order that the server provides. + +For more information about DFS namespaces, see +[Overview of DFS Namespaces](https://technet.microsoft.com/library/cc730736) on TechNet. ## EXAMPLES ### Example 1: Set a referral priority value -``` -PS C:\> Set-DfsnRootTarget -Path "\\contoso.com\dfsroot" -TargetPath "\\Contoso-fs\dfsroot" -ReferralPriorityClass GlobalLow + +```powershell +Set-DfsnRootTarget -Path '\\contoso.com\dfsroot' -TargetPath '\\Contoso-fs\dfsroot' -ReferralPriorityClass 'GlobalLow' ``` -This command sets the referral priority class to a value of GlobalLow for the DFS namespace root target that has the path \\\\Contoso\AccountingSoftware and the target path \\\\Contoso-FS\AccountingSoftware. +This command sets the referral priority class to a value of GlobalLow for the DFS namespace root +target that has the path `\\Contoso\AccountingSoftware` and the target path +`\\Contoso-FS\AccountingSoftware`. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. + +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -65,12 +76,14 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml -Type: CimSession[] +Type: Microsoft.Management.Infrastructure.CimSession[] Parameter Sets: (All) Aliases: Session @@ -82,10 +95,11 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -97,10 +111,11 @@ Accept wildcard characters: False ``` ### -Path + Specifies a path for the root of a DFS namespace. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: DfsPath, NamespaceRoot @@ -112,31 +127,27 @@ Accept wildcard characters: False ``` ### -ReferralPriorityClass -Specifies the priority class for a DFS namespace root target. -Target priority offers you the ability to classify and rank in-site targets. -You can specify targets to receive the highest or lowest preference, and you can divide the remaining targets based on their site cost for a DFS client to connect to them. -The acceptable values for this parameter are: - -- GlobalHigh. -The highest priority class for a DFS target. -Targets assigned this class receive global preference. -- SiteCostHigh. -The highest site cost priority class for a DFS target. -Targets assigned this class receive the most preference among targets of the same site cost for a given DFS client. -- SiteCostNormal. -The middle or normal site cost priority class for a DFS target. -- SiteCostLow. -The lowest site cost priority class for a DFS target. -Targets assigned this class receive the least preference among targets of the same site cost for a given DFS client. -- GlobalLow. -The lowest level of priority class for a DFS target. -Targets assigned this class receive the least preference globally. + +Specifies the priority class for a DFS namespace root target. Target priority offers you the ability +to classify and rank in-site targets. You can specify targets to receive the highest or lowest +preference, and you can divide the remaining targets based on their site cost for a DFS client to +connect to them. The acceptable values for this parameter are: + +- `GlobalHigh` - The highest priority class for a DFS target. Targets assigned this class receive + global preference. +- `SiteCostHigh` - The highest site cost priority class for a DFS target. Targets assigned this + class receive the most preference among targets of the same site cost for a given DFS client. +- `SiteCostNormal` - The middle or normal site cost priority class for a DFS target. +- `SiteCostLow` - The lowest site cost priority class for a DFS target. Targets assigned this class + receive the least preference among targets of the same site cost for a given DFS client. +- `GlobalLow` - The lowest level of priority class for a DFS target. Targets assigned this class + receive the least preference globally. ```yaml -Type: ReferralPriorityClass +Type: Microsoft.PowerShell.Cmdletization.GeneratedTypes.DfsNamespaceRootTarget.ReferralPriorityClass Parameter Sets: (All) Aliases: PriorityClass, Class -Accepted values: sitecostnormal, globalhigh, sitecosthigh, sitecostlow, globallow +Accepted values: SiteCostNormal, GlobalHigh, SiteCostHigh, SiteCostLow, GlobalLow Required: False Position: 3 @@ -146,12 +157,12 @@ Accept wildcard characters: False ``` ### -ReferralPriorityRank -Specifies the priority rank, as an integer, for a root target of the DFS namespace. -Lower values have greater preference. -A value of zero (0) is the greatest preference. + +Specifies the priority rank, as an integer, for a root target of the DFS namespace. Lower values +have greater preference. A value of zero (0) is the greatest preference. ```yaml -Type: UInt32 +Type: System.UInt32 Parameter Sets: (All) Aliases: PriorityRank, Rank @@ -163,16 +174,16 @@ Accept wildcard characters: False ``` ### -State -Specifies the state of the DFS namespace root target. -The acceptable values for this parameter are: -- Online -- Offline +Specifies the state of the DFS namespace root target. The acceptable values for this parameter are: + +- `Online` +- `Offline` Clients do not receive referrals for a DFS namespace target that is offline. ```yaml -Type: State +Type: Microsoft.PowerShell.Cmdletization.GeneratedTypes.DfsNamespaceRootTarget.State Parameter Sets: (All) Aliases: Accepted values: Offline, Online @@ -185,11 +196,12 @@ Accept wildcard characters: False ``` ### -TargetPath -Specifies a path for a root target of the DFS namespace. -This cmdlet changes settings for the root target that the path specifies. + +Specifies a path for a root target of the DFS namespace. This cmdlet changes settings for the root +target that the path specifies. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: Target, DfsTarget, RootTargetPath @@ -201,12 +213,15 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: (All) Aliases: @@ -218,11 +233,11 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -234,7 +249,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, +`-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, +`-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -259,4 +278,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [New-DfsnRootTarget](./New-DfsnRootTarget.md) [Remove-DfsnRootTarget](./Remove-DfsnRootTarget.md) - diff --git a/docset/winserver2022-ps/dfsn/Set-DfsnServerConfiguration.md b/docset/winserver2022-ps/dfsn/Set-DfsnServerConfiguration.md index f54113bbcb..a1b9bfee1b 100644 --- a/docset/winserver2022-ps/dfsn/Set-DfsnServerConfiguration.md +++ b/docset/winserver2022-ps/dfsn/Set-DfsnServerConfiguration.md @@ -17,47 +17,55 @@ Changes settings for a DFS namespace root server. ``` Set-DfsnServerConfiguration [-ComputerName] [[-SyncIntervalSec] ] - [[-EnableSiteCostedReferrals] ] [[-EnableInsiteReferrals] ] [[-LdapTimeoutSec] ] - [[-PreferLogonDC] ] [[-UseFqdn] ] [-CimSession ] [-ThrottleLimit ] - [-AsJob] [-WhatIf] [-Confirm] [] + [[-EnableSiteCostedReferrals] ] [[-EnableInsiteReferrals] ] + [[-LdapTimeoutSec] ] [[-PreferLogonDC] ] [[-UseFqdn] ] + [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION -The **Set-DfsnServerConfiguration** cmdlet changes settings for a Distributed File System (DFS) namespace root server. -A DFS namespace root server hosts one or more namespace root targets. -You can use this cmdlet to enable in-site referrals or to use cost in organizing referrals for targets in a site. -You can also change the synchronization interval for servers that connect to a primary domain controller (PDC) emulator and change the Lightweight Directory Access Protocol (LDAP) time-out. -You can specify whether referrals prefer the logon domain controller. -You can also specify whether the server provides referrals as fully qualified domain names (FQDN) or NETBios names. +The **Set-DfsnServerConfiguration** cmdlet changes settings for a Distributed File System (DFS) +namespace root server. A DFS namespace root server hosts one or more namespace root targets. + +You can use this cmdlet to enable in-site referrals or to use cost in organizing referrals for +targets in a site. You can also change the synchronization interval for servers that connect to a +primary domain controller (PDC) emulator and change the Lightweight Directory Access Protocol (LDAP) +time-out. You can specify whether referrals prefer the logon domain controller. You can also specify +whether the server provides referrals as fully qualified domain names (FQDN) or NETBios names. To see current values for these settings, use the **Get-DfsnServerConfiguration** cmdlet. ## EXAMPLES ### Example 1: Set LDAP time-out for a DFS namespace server -``` -PS C:\> Set-DfsnServerConfiguration -ComputerName "localhost" -LdapTimeoutSec 60 + +```powershell +Set-DfsnServerConfiguration -ComputerName 'localhost' -LdapTimeoutSec 60 ``` -This command sets an LDAP time-out value of 60 seconds for the local computer, which is a DFS namespace server. +This command sets an LDAP time-out value of 60 seconds for the local computer, which is a DFS +namespace server. ## PARAMETERS ### -AsJob -Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. -The cmdlet immediately returns an object that represents the job and then displays the command prompt. -You can continue to work in the session while the job completes. -To manage the job, use the `*-Job` cmdlets. -To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. -For more information about Windows PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. + +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -67,12 +75,14 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml -Type: CimSession[] +Type: Microsoft.Management.Infrastructure.CimSession[] Parameter Sets: (All) Aliases: Session @@ -84,10 +94,11 @@ Accept wildcard characters: False ``` ### -ComputerName + Specifies the host name or FQDN for the DFS namespace server for which the cmdlet modifies settings. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: Server, name, NamespaceServer @@ -99,10 +110,11 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -114,12 +126,13 @@ Accept wildcard characters: False ``` ### -EnableInsiteReferrals -Indicates whether this server provides only in-site referrals. -If you assign a value of $True, the server returns only referrals for targets in the same site as the client. -If you assign a value of $False, the server returns in-site referrals and other referrals. + +Indicates whether this server provides only in-site referrals. If you assign a value of `$true`, the +server returns only referrals for targets in the same site as the client. If you assign a value of +`$false`, the server returns in-site referrals and other referrals. ```yaml -Type: Boolean +Type: System.Boolean Parameter Sets: (All) Aliases: insite @@ -131,21 +144,23 @@ Accept wildcard characters: False ``` ### -EnableSiteCostedReferrals -Indicates whether the server can use cost-based selection. -If you specify a value of $True, the DFS namespace server provides referrals for folder targets to clients in the following order: -- Folder targets in the same site as a client, in random order. -- Folder targets for which the DFS namespace server has information. -The referrals for the nearest site are first, in random order, followed by the next nearest site, in random order. +Indicates whether the server can use cost-based selection. If you specify a value of `$true`, the +DFS namespace server provides referrals for folder targets to clients in the following order: + +- Folder targets in the same site as a client, in random order. +- Folder targets for which the DFS namespace server has information. The referrals for the nearest + site are first, in random order, followed by the next nearest site, in random order. - Targets for which DFS namespace server has no site information, in random order. -If you specify a value of $False, the DFS namespace server provides referrals for folder targets to clients in the following order: +If you specify a value of `$false`, the DFS namespace server provides referrals for folder targets to +clients in the following order: -- Folder targets in the same site as the client, in random order. +- Folder targets in the same site as the client, in random order. - Other folder targets, in random order. ```yaml -Type: Boolean +Type: System.Boolean Parameter Sets: (All) Aliases: Sitecosted, SiteCostedReferrals @@ -157,10 +172,12 @@ Accept wildcard characters: False ``` ### -LdapTimeoutSec -Specifies a time-out value, in seconds, for Lightweight Directory Access Protocol (LDAP) requests for the DFS namespace server. + +Specifies a time-out value, in seconds, for Lightweight Directory Access Protocol (LDAP) requests +for the DFS namespace server. ```yaml -Type: UInt32 +Type: System.UInt32 Parameter Sets: (All) Aliases: LdapTimeout @@ -172,13 +189,15 @@ Accept wildcard characters: False ``` ### -PreferLogonDC -Indicates whether to prefer the logon domain controller in referrals. -If you specify a value of $True for this parameter, the DFS namespace server places referrals to the computer that hosts the logon domain controller at the top of the list of referrals. + +Indicates whether to prefer the logon domain controller in referrals. If you specify a value of +`$true` for this parameter, the DFS namespace server places referrals to the computer that hosts the +logon domain controller at the top of the list of referrals. ```yaml -Type: Boolean +Type: System.Boolean Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: 5 @@ -188,11 +207,12 @@ Accept wildcard characters: False ``` ### -SyncIntervalSec -Specifies an interval, in seconds. -This interval controls how often domain-based DFS namespace root servers and domain controllers connect to the PDC emulator to get updates of DFS namespace metadata. + +Specifies an interval, in seconds. This interval controls how often domain-based DFS namespace root +servers and domain controllers connect to the PDC emulator to get updates of DFS namespace metadata. ```yaml -Type: UInt32 +Type: System.UInt32 Parameter Sets: (All) Aliases: SyncInterval @@ -204,14 +224,17 @@ Accept wildcard characters: False ``` ### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -221,13 +244,13 @@ Accept wildcard characters: False ``` ### -UseFqdn -Indicates whether a DFS namespace server uses FQDNs in referrals. -If this parameter has a value of $True, the server uses FQDNs in referrals. -If this parameter has a value of $False, the server uses NetBIOS names. -The default for DFS namespace servers is to use NetBIOS names in referrals. + +Indicates whether a DFS namespace server uses FQDNs in referrals. If this parameter has a value of +`$true`, the server uses FQDNs in referrals. If this parameter has a value of `$false`, the server +uses NetBIOS names. The default for DFS namespace servers is to use NetBIOS names in referrals. ```yaml -Type: Boolean +Type: System.Boolean Parameter Sets: (All) Aliases: Fqdn, dfsdnsconfig, UseFullyQualifiedDomainNames @@ -239,11 +262,11 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -255,7 +278,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, +`-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, +`-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -274,4 +301,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS [Get-DfsnServerConfiguration](./Get-DfsnServerConfiguration.md) - From a9d4ae25949ee21792b81a1aca0e2df8ae88a07a Mon Sep 17 00:00:00 2001 From: Sean Wheeler Date: Mon, 8 May 2023 16:06:36 -0500 Subject: [PATCH 750/965] Apply suggestions from code review Co-authored-by: Mikey Lombardi (He/Him) --- .../activedirectory/Set-ADUser.md | 161 +++++++++--------- 1 file changed, 85 insertions(+), 76 deletions(-) diff --git a/docset/winserver2022-ps/activedirectory/Set-ADUser.md b/docset/winserver2022-ps/activedirectory/Set-ADUser.md index 3e75667534..2294e25451 100644 --- a/docset/winserver2022-ps/activedirectory/Set-ADUser.md +++ b/docset/winserver2022-ps/activedirectory/Set-ADUser.md @@ -48,9 +48,10 @@ Set-ADUser [-WhatIf] [-Confirm] [-AuthType ] [-Credential Set-ADUser -Identity ChewDavid -HomePage 'http://fabrikam.com/employees/ChewDavid' -LogonWorkstations 'ChewDavid-DSKTOP,ChewDavid-LPTOP' +$params = @{ + Identity = 'ChewDavid' + HomePage = 'http://fabrikam.com/employees/ChewDavid' + LogonWorkstations = 'ChewDavid-DSKTOP,ChewDavid-LPTOP' +} +Set-ADUser @params ``` This command sets the specified user's **homepage** property to http://fabrikam.com/employees/ChewDavid and the **LogonWorkstations** property to ChewDavid-DSKTOP,ChewDavid-LPTOP. @@ -444,8 +450,8 @@ specifying a comma-separated list. The format for this parameter is: `-Clear Attribute1LDAPDisplayName, Attribute2LDAPDisplayName` -When you use the *Add*, *Remove*, *Replace*, and *Clear* parameters together, the operations are -performed in the following order: +When you use the **Add**, **Remove**, **Replace**, and **Clear** parameters together, the +operations are performed in the following order: - **Remove** - **Add** @@ -491,10 +497,11 @@ for the user's device. This value sets the compound identity supported flag of t - $False or 0 - $True or 1 -Warning: Domain-joined Windows systems and services such as clustering manage their own -**msDS-SupportedEncryptionTypes** attribute. Therefore any changes to the flag on the -**msDS-SupportedEncryptionTypes** attribute are overwritten by the service or system that manages -the setting. +> [!WARNING] +> Domain-joined Windows systems and services such as clustering manage their own +> **msDS-SupportedEncryptionTypes** attribute. Therefore any changes to the flag on the +> **msDS-SupportedEncryptionTypes** attribute are overwritten by the service or system that manages +> the setting. ```yaml Type: Boolean @@ -553,8 +560,8 @@ with the drive is the default. To specify this parameter, you can type a user name, such as `User1` or `Domain01\User01` or you can specify a **PSCredential** object. If you specify a user name for this parameter, the cmdlet prompts for a password. -You can also create a **PSCredential** object by using a script or by using the Get-Credential -cmdlet. You can then set the _Credential_ parameter to the **PSCredential** object. +You can also create a **PSCredential** object by using a script or by using the `Get-Credential` +cmdlet. You can then set the **Credential** parameter to the **PSCredential** object. If the acting credentials do not have directory-level permission to perform the task, Active Directory PowerShell returns a terminating error. @@ -836,9 +843,9 @@ The identifier in parentheses is the LDAP display name for the attribute. The acceptable values for this parameter are: - A distinguished name -- A GUID (objectGUID) -- A security identifier (objectSid) -- A SAM account name (sAMAccountName) +- A GUID (**objectGUID**) +- A security identifier (**objectSid**) +- A SAM account name (**sAMAccountName**) The cmdlet searches the default naming context or partition to find the object. If two or more objects are found, the cmdlet returns a non-terminating error. @@ -884,9 +891,9 @@ modified and the set of changes that should be made to that object. When this pa specified, any modifications made to the **ADUser** object are also made to the corresponding Active Directory object. The cmdlet only updates the object properties that have changed. -The **ADUser** object specified as the value of the _Instance_ parameter must have been retrieved by -using the **Get-ADUser** cmdlet. When you specify the _Instance_ parameter, you cannot specify other -parameters that set individual properties on the object. +The **ADUser** object specified as the value of the **Instance** parameter must have been retrieved +by using the `Get-ADUser` cmdlet. When you specify the **Instance** parameter, you cannot specify +other parameters that set individual properties on the object. ```yaml Type: ADUser @@ -906,22 +913,23 @@ Specifies whether an account supports Kerberos encryption types which are used d service tickets. This value sets the encryption types supported flags of the Active Directory **msDS-SupportedEncryptionTypes** attribute. The acceptable values for this parameter are: -- None -- DES -- RC4 -- AES128 -- AES256 +- `None` +- `DES` +- `RC4` +- `AES128` +- `AES256` -None removes all encryption types from the account, resulting in the KDC being unable to issue +`None` removes all encryption types from the account, resulting in the KDC being unable to issue service tickets for services using the account. DES is a weak encryption type that is not supported by default since Windows 7 and Windows Server 2008 R2. -Warning: Domain-joined Windows systems and services such as clustering manage their own -**msDS-SupportedEncryptionTypes** attribute. Therefore any changes to the flag on the -**msDS-SupportedEncryptionTypes** attribute are overwritten by the service or system that manages -the setting. +> [!WARNING] +> Domain-joined Windows systems and services such as clustering manage their own +> **msDS-SupportedEncryptionTypes** attribute. Therefore any changes to the flag on the +> **msDS-SupportedEncryptionTypes** attribute are overwritten by the service or system that manages +> the setting. ```yaml Type: ADKerberosEncryptionType @@ -938,10 +946,10 @@ Accept wildcard characters: False ### -LogonWorkstations -Specifies the computers that the user can access. To specify more than one computer, create a single -comma-separated list. You can identify a computer by using the Security Account Manager (SAM) -account name (sAMAccountName) or the DNS host name of the computer. The SAM account name is the same -as the NetBIOS name of the computer. +Specifies the computers that the user can access. To specify more than one computer, create a +single comma-separated list. You can identify a computer by using the Security Account Manager +(SAM) account name (**sAMAccountName**) or the DNS host name of the computer. The SAM account name +is the same as the NetBIOS name of the computer. The LDAP display name (**ldapDisplayName**) for this property is userWorkStations. @@ -966,9 +974,9 @@ Note: The identifier in parentheses is the LDAP display name for the property. The acceptable values for this parameter are: - A distinguished name -- A GUID (objectGUID) -- A security identifier (objectSid) -- A SAM account name (sAMAccountName) +- A GUID (**objectGUID**) +- A security identifier (**objectSid**) +- A SAM account name (**sAMAccountName**) The LDAP display name (**ldapDisplayName**) of this property is manager. @@ -1078,32 +1086,32 @@ Accept wildcard characters: False Specifies the distinguished name of an Active Directory partition. The distinguished name must be one of the naming contexts on the current directory server. -The cmdlet searches this partition to find the object defined by the _Identity_ parameter. +The cmdlet searches this partition to find the object defined by the **Identity** parameter. -In many cases, a default value is used for the _Partition_ parameter if no value is specified. The -rules for determining the default value are given below. Note that rules listed first are evaluated -first and when a default value can be determined, no further rules are evaluated. +In many cases, a default value is used for the **Partition** parameter if no value is specified. +The rules for determining the default value are given below. Note that rules listed first are +evaluated first and when a default value can be determined, no further rules are evaluated. -In AD DS environments, a default value for _Partition_ are set in the following cases: +In AD DS environments, a default value for **Partition** are set in the following cases: -- If the _Identity_ parameter is set to a distinguished name, the default value of _Partition_ is - automatically generated from this distinguished name. -- If running cmdlets from an Active Directory provider drive, the default value of _Partition_ is +- If the **Identity** parameter is set to a distinguished name, the default value of **Partition** + is automatically generated from this distinguished name. +- If running cmdlets from an Active Directory provider drive, the default value of **Partition** is automatically generated from the current path in the drive. -- If none of the previous cases apply, the default value of_Partition_ is set to the default +- If none of the previous cases apply, the default value of **Partition** is set to the default partition or naming context of the target domain. -In AD LDS environments, a default value for _Partition_ will be set in the following cases: +In AD LDS environments, a default value for **Partition** will be set in the following cases: -- If the _Identity_ parameter is set to a distinguished name, the default value of _Partition_ is - automatically generated from this distinguished name. -- If running cmdlets from an Active Directory provider drive, the default value of _Partition_ is +- If the **Identity** parameter is set to a distinguished name, the default value of **Partition** + is automatically generated from this distinguished name. +- If running cmdlets from an Active Directory provider drive, the default value of **Partition** is automatically generated from the current path in the drive. -- If the target AD LDS instance has a default naming context, the default value of _Partition_ is +- If the target AD LDS instance has a default naming context, the default value of **Partition** is set to the default naming context. To specify a default naming context for an AD LDS environment, set the **msDS-defaultNamingContext** property of the Active Directory directory service agent object (**nTDSDSA**) for the AD LDS instance. -- If none of the previous cases apply, the _Partition_ parameter does not take any default value. +- If none of the previous cases apply, the **Partition** parameter does not take any default value. ```yaml Type: String @@ -1141,11 +1149,12 @@ Specifies whether the password of an account can expire. This parameter sets the **ADS_UF_DONT_EXPIRE_PASSWD** flag of the Active Directory User Account Control attribute. The acceptable values for this parameter are: -- $False or 0 -- $True or 1 +- `$False` or `0` +- `$True` or `1` -Note: This parameter cannot be set to $True or 1 for an account that also has the -**ChangePasswordAtLogon** property set to $True. +> [!NOTE] +> This parameter cannot be set to `$True` or `1` for an account that also has the +> **ChangePasswordAtLogon** property set to `$True`. ```yaml Type: Boolean @@ -1166,8 +1175,8 @@ property of an account, such as a user or computer account. This parameter also **ADS_UF_PASSWD_NOTREQD** flag of the Active Directory User Account Control attribute. The acceptable values for this parameter are: -- $False or 0 -- $True or 1 +- `$False` or `0` +- `$True` or `1` ```yaml Type: Boolean @@ -1201,9 +1210,8 @@ Accept wildcard characters: False ### -PostalCode -Specifies the postal code or zip code. -This parameter sets the **PostalCode** property of a user object. -The LDAP display name (**ldapDisplayName**) of this property is postalCode. +Specifies the postal code or zip code. This parameter sets the **PostalCode** property of a user +object. The LDAP display name (**ldapDisplayName**) of this property is `postalCode`. ```yaml Type: String @@ -1264,8 +1272,8 @@ format for this parameter is: `-Remove @{Attribute1LDAPDisplayName=value1, value2, ...; Attribute2LDAPDisplayName=value1, value2, ...; AttributeNLDAPDisplayName=value1, value2, ...}` -When you use the _Add_, _Remove_, _Replace_, and _Clear_ parameters together, the parameters are -applied in the following sequence: +When you use the **Add**, **Remove**, **Replace**, and **Clear** parameters together, the +parameters are applied in the following sequence: - **Remove** - **Add** @@ -1295,8 +1303,8 @@ an error. The format for this parameter is: `-Replace @{Attribute1LDAPDisplayName=value1, value2, ...; Attribute2LDAPDisplayName=value1, value2, ...; AttributeNLDAPDisplayName=value1, value2, ...}` -When you use the _Add_, _Remove_, _Replace_, and _Clear_ parameters together, the operations will be -performed in the following order: +When you use the **Add**, **Remove**, **Replace**, and **Clear** parameters together, the +operations will be performed in the following order: - **Remove** - **Add** @@ -1321,10 +1329,11 @@ Specifies the Security Account Manager (SAM) account name of the user, group, co account. The maximum length of the description is 256 characters. To be compatible with older operating systems, create a SAM account name that is 20 characters or less. This parameter sets the **SAMAccountName** for an account object. The LDAP display name (**ldapDisplayName**) for this -property is sAMAccountName. +property is `sAMAccountName`. -Note: If the string value provided is not terminated with a $ character, the system adds one if -needed. +> [!NOTE] +> If the string value provided is not terminated with a `$` character, the system adds one if +> needed. ```yaml Type: String @@ -1378,7 +1387,7 @@ Directory server values: The default value for this parameter is determined by one of the following methods in the order that they are listed: -- By using the _Server_ value from objects passed through the pipeline +- By using the **Server** value from objects passed through the pipeline - By using the server information associated with the AD DS Windows PowerShell provider drive, when the cmdlet runs in that drive - By using the domain of the computer running Windows PowerShell @@ -1397,10 +1406,10 @@ Accept wildcard characters: False ### -ServicePrincipalNames -Specifies the service principal names for the account. This parameter sets the ServicePrincipalNames -property of the account. The LDAP display name (ldapDisplayName) for this property is -servicePrincipalName. This parameter uses the following syntax to add, remove, replace or clear -service principal name values. +Specifies the service principal names for the account. This parameter sets the +**ServicePrincipalNames** property of the account. The LDAP display name (**ldapDisplayName**) for +this property is `servicePrincipalName`. This parameter uses the following syntax to add, remove, +replace or clear service principal name values. Syntax: @@ -1549,8 +1558,8 @@ service. This parameter sets the **TrustedForDelegation** property of an account also sets the **ADS_UF_TRUSTED_FOR_DELEGATION** flag of the Active Directory User Account Control attribute. The acceptable values for this parameter are: -- $False or 0 -- $True or 1 +- `$False` or `0` +- `$True` or `1` ```yaml Type: Boolean @@ -1612,10 +1621,10 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### None or Microsoft.ActiveDirectory.Management.ADUser -A user object is received by the _Identity_ parameter. +A user object is received by the **Identity** parameter. -A user object that was retrieved by using the **Get-ADUser** cmdlet and then modified is received by -the _Instance_ parameter. +A user object that was retrieved by using the `Get-ADUser` cmdlet and then modified is received by +the **Instance** parameter. ## OUTPUTS From 9aba27c11ccda11a914684d105c4d7485bef61e4 Mon Sep 17 00:00:00 2001 From: Sean Wheeler Date: Mon, 8 May 2023 16:10:23 -0500 Subject: [PATCH 751/965] Apply suggestions from code review Co-authored-by: Mikey Lombardi (He/Him) --- .../ServerManager/Get-WindowsFeature.md | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/docset/winserver2022-ps/ServerManager/Get-WindowsFeature.md b/docset/winserver2022-ps/ServerManager/Get-WindowsFeature.md index 1a47056053..62015a6a4b 100644 --- a/docset/winserver2022-ps/ServerManager/Get-WindowsFeature.md +++ b/docset/winserver2022-ps/ServerManager/Get-WindowsFeature.md @@ -35,10 +35,9 @@ virtual hard disk (VHD) that is running Windows Server. Get-WindowsFeature -ComputerName Server1 -Credential contoso.com\user1 ``` -This example gets a list of features that is available and installed on the -target computer named Server1. -The credentials for user user1 in the Contoso.com domain, a user who has -Administrator rights on Server1, are provided. +This example gets a list of features that are available and installed on the target computer named +`Server1`. The credentials for `user1` in the `Contoso.com` domain, a user who has Administrator +rights on `Server1`, are provided. ### Example 2 @@ -47,7 +46,7 @@ Get-WindowsFeature -Vhd D:\ps-test\vhd1.vhd ``` This example returns a list of features that is available and installed on the specified offline VHD -located at D:\ps-test\vhd1.vhd. +located at `D:\ps-test\vhd1.vhd`. ### Example 3 @@ -72,7 +71,7 @@ This example returns a list of features installed on a specified server, Server0 Get-WindowsFeature -ComputerName Server01 | Where InstallState -Eq Removed ``` -This example returns a list of features on a specified server, Server01, that have installation +This example returns a list of features on a specified server, `Server01`, that have installation files removed from the local side-by-side store, and require an external file source for installation. @@ -89,7 +88,7 @@ Valid values for the parameter include a NetBIOS name, an IP address, or a fully name of a remote computer. To use a remote computer's IP address as the value of this parameter, your command must include the -`Credential` parameter. +**Credential** parameter. The computer must either be configured for HTTPS transport, or the IP address of the remote computer must be included in the WinRM TrustedHosts list on the local computer. For information about adding a computer name to the WinRM TrustedHosts list, see "How to Add a @@ -119,7 +118,7 @@ Quotation marks are optional. -- "UserName" -- "Domain\User" -- "User@Domain.com" --- A Credential object returned by the +- A **PSCredential** object returned by the [Get-Credential](https://go.microsoft.com/fwlink/p/?LinkID=113311) cmdlet. If a user name is entered, then a prompt for a password is displayed. @@ -187,7 +186,7 @@ Use either of the following formats for the computer account: DOMAIN\SERVERNAME$ Add the `ComputerName` parameter to specify the target computer you want to use to mount the VHD. If the `ComputerName` parameter is not specified, then the local computer is used. The computer that you are using to mount the VHD must be running Windows Server. -Any local path, such as D:\myFolder, that is specified by using this parameter is always relative to +Any local path, such as `D:\myFolder`, that is specified by using this parameter is always relative to the target computer. ```yaml From 15ed2ad030c75d638915b0e0cedfeb4259e24d90 Mon Sep 17 00:00:00 2001 From: Sean Wheeler Date: Mon, 8 May 2023 16:29:50 -0500 Subject: [PATCH 752/965] Apply suggestions from code review Co-authored-by: Mikey Lombardi (He/Him) --- .../hgsclient/ConvertTo-HgsKeyProtector.md | 18 +++++++++--------- .../hgsclient/Export-HgsGuardian.md | 8 +++++--- .../Get-HgsAttestationBaselinePolicy.md | 6 +++--- .../hgsclient/Get-HgsClientConfiguration.md | 6 +++--- .../hgsclient/Get-HgsGuardian.md | 8 ++++---- .../hgsclient/Grant-HgsKeyProtectorAccess.md | 10 +++++----- 6 files changed, 29 insertions(+), 27 deletions(-) diff --git a/docset/winserver2022-ps/hgsclient/ConvertTo-HgsKeyProtector.md b/docset/winserver2022-ps/hgsclient/ConvertTo-HgsKeyProtector.md index aec3e59df8..1ef145a3b5 100644 --- a/docset/winserver2022-ps/hgsclient/ConvertTo-HgsKeyProtector.md +++ b/docset/winserver2022-ps/hgsclient/ConvertTo-HgsKeyProtector.md @@ -23,9 +23,9 @@ ConvertTo-HgsKeyProtector [-Bytes] [-CimSession ] [-Throt ## DESCRIPTION -The **ConvertTo-HgsKeyProtector** cmdlet converts an existing key protector into a Host Guardian -Service key protector object. Specify the existing key protector as a byte array. You might use this -cmdlet to import a key protector from a virtual machine configuration file. +The `ConvertTo-HgsKeyProtector` cmdlet converts an existing key protector into a Host Guardian +Service key protector object. Specify the existing key protector as a byte array. You might use +this cmdlet to import a key protector from a virtual machine configuration file. ## EXAMPLES @@ -38,14 +38,14 @@ $KeyProtector = ConvertTo-HgsKeyProtector -Bytes $VirtualMachineKeyProtector ``` The first command gets the Trusted Platform Module (TPM) object for the virtual machine named -Shielded Virtual Machine 17. The command stores the object in the **$VirtualTPM** variable. +Shielded Virtual Machine 17. The command stores the object in the `$VirtualTPM` variable. -The second command stores the **KeyProtector** property of the object stored in **$VirtualTPM** in -the **$VirtualMachineKeyProtector** variable. +The second command stores the **KeyProtector** property of the object stored in `$VirtualTPM` in +the `$VirtualMachineKeyProtector` variable. The final command creates a Host Guardian Service key protector object from the byte array -representation stored in **$VirtualMachineKeyProtector**. The command stores the new key protector -in the **$KeyProtector** variable. +representation stored in `$VirtualMachineKeyProtector`. The command stores the new key protector +in the `$KeyProtector` variable. ## PARAMETERS @@ -145,7 +145,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable This cmdlet returns a key protector. -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +The **Microsoft.Management.Infrastructure.CimInstance** object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. diff --git a/docset/winserver2022-ps/hgsclient/Export-HgsGuardian.md b/docset/winserver2022-ps/hgsclient/Export-HgsGuardian.md index 3524873d41..dcaaa80c99 100644 --- a/docset/winserver2022-ps/hgsclient/Export-HgsGuardian.md +++ b/docset/winserver2022-ps/hgsclient/Export-HgsGuardian.md @@ -21,17 +21,18 @@ Export-HgsGuardian [-InputObject] [-Path] [ Get-HgsAttestationBaselinePolicy -Path "C:\Logs\AttestationBaselinePolicy001" -Force +Get-HgsAttestationBaselinePolicy -Path 'C:\Logs\AttestationBaselinePolicy001' -Force ``` This command generates a byte array that represents the baseline policy in the file `C:\Logs\AttestationBaselinePolicy001`. diff --git a/docset/winserver2022-ps/hgsclient/Get-HgsClientConfiguration.md b/docset/winserver2022-ps/hgsclient/Get-HgsClientConfiguration.md index 3c5333ca11..d3a088eba2 100644 --- a/docset/winserver2022-ps/hgsclient/Get-HgsClientConfiguration.md +++ b/docset/winserver2022-ps/hgsclient/Get-HgsClientConfiguration.md @@ -22,7 +22,7 @@ Get-HgsClientConfiguration [-CimSession ] [-ThrottleLimit ] ## DESCRIPTION -The **Get-HgsClientConfiguration** cmdlet get the configuration of the local Host Guardian Service +The `Get-HgsClientConfiguration` cmdlet get the configuration of the local Host Guardian Service client. ## EXAMPLES @@ -30,7 +30,7 @@ client. ### Example 1: Get client configuration ```powershell -PS C:\> Get-HgsClientConfiguration +Get-HgsClientConfiguration ``` This command gets the configuration of the local Host Guardian Service client. @@ -115,7 +115,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### CimInstance#MSFT_HgsClientConfiguration This cmdlet returns the configuration of a Host Guardian Service client as a **CimInstance** object. -The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays +The **Microsoft.Management.Infrastructure.CimInstance** object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. diff --git a/docset/winserver2022-ps/hgsclient/Get-HgsGuardian.md b/docset/winserver2022-ps/hgsclient/Get-HgsGuardian.md index e936114040..efdbab331d 100644 --- a/docset/winserver2022-ps/hgsclient/Get-HgsGuardian.md +++ b/docset/winserver2022-ps/hgsclient/Get-HgsGuardian.md @@ -22,9 +22,9 @@ Get-HgsGuardian [[-Name] ] [-CimSession ] [-ThrottleLimi ## DESCRIPTION -The **Get-HgsGuardian** cmdlet gets Host Guardian Service guardian objects from persistent storage. -For a computer configured in **HostGuardianService** mode, this cmdlet returns no result. -The **New-HgsKeyProtector** cmdlet requires **HgsGuardian** objects. +The `Get-HgsGuardian` cmdlet gets Host Guardian Service guardian objects from persistent storage. +For a computer configured in `HostGuardianService` mode, this cmdlet returns no result. The +`New-HgsKeyProtector` cmdlet requires **HgsGuardian** objects. ## EXAMPLES @@ -39,7 +39,7 @@ This command gets all guardians configured for this computer. ### Example 2: Get a guardian by using its name ```powershell -PS C:\> Get-HgsGuardian -Name "Guardian11" +Get-HgsGuardian -Name 'Guardian11' ``` This command gets a guardian named Guardian11. diff --git a/docset/winserver2022-ps/hgsclient/Grant-HgsKeyProtectorAccess.md b/docset/winserver2022-ps/hgsclient/Grant-HgsKeyProtectorAccess.md index 48222ba9d5..46ae69b8fe 100644 --- a/docset/winserver2022-ps/hgsclient/Grant-HgsKeyProtectorAccess.md +++ b/docset/winserver2022-ps/hgsclient/Grant-HgsKeyProtectorAccess.md @@ -30,16 +30,16 @@ Grant-HgsKeyProtectorAccess -KeyProtector -GuardianFriendlyName Date: Mon, 8 May 2023 18:08:41 -0500 Subject: [PATCH 753/965] Update New-ADUser.md Format cleanup --- .../activedirectory/New-ADUser.md | 904 +++++++----------- 1 file changed, 361 insertions(+), 543 deletions(-) diff --git a/docset/winserver2022-ps/activedirectory/New-ADUser.md b/docset/winserver2022-ps/activedirectory/New-ADUser.md index 056f044860..1d824f5bc4 100644 --- a/docset/winserver2022-ps/activedirectory/New-ADUser.md +++ b/docset/winserver2022-ps/activedirectory/New-ADUser.md @@ -17,62 +17,65 @@ Creates an Active Directory user. ## SYNTAX ```powershell -New-ADUser [-WhatIf] [-Confirm] [-AccountExpirationDate ] [-AccountNotDelegated ] +New-ADUser [-AccountExpirationDate ] [-AccountNotDelegated ] [-AccountPassword ] [-AllowReversiblePasswordEncryption ] - [-AuthenticationPolicy ] [-AuthenticationPolicySilo ] - [-AuthType ] [-CannotChangePassword ] [-Certificates ] - [-ChangePasswordAtLogon ] [-City ] [-Company ] [-CompoundIdentitySupported ] - [-Country ] [-Credential ] [-Department ] [-Description ] - [-DisplayName ] [-Division ] [-EmailAddress ] [-EmployeeID ] - [-EmployeeNumber ] [-Enabled ] [-Fax ] [-GivenName ] - [-HomeDirectory ] [-HomeDrive ] [-HomePage ] [-HomePhone ] - [-Initials ] [-Instance ] [-KerberosEncryptionType ] - [-LogonWorkstations ] [-Manager ] [-MobilePhone ] [-Name] [-Office ] - [-OfficePhone ] [-Organization ] [-OtherAttributes ] [-OtherName ] - [-PassThru] [-PasswordNeverExpires ] [-PasswordNotRequired ] [-Path ] - [-POBox ] [-PostalCode ] [-PrincipalsAllowedToDelegateToAccount ] - [-ProfilePath ] [-SamAccountName ] [-ScriptPath ] [-Server ] + [-AuthenticationPolicy ] + [-AuthenticationPolicySilo ] [-AuthType ] + [-CannotChangePassword ] [-Certificates ] + [-ChangePasswordAtLogon ] [-City ] [-Company ] + [-CompoundIdentitySupported ] [-Country ] [-Credential ] + [-Department ] [-Description ] [-DisplayName ] [-Division ] + [-EmailAddress ] [-EmployeeID ] [-EmployeeNumber ] [-Enabled ] + [-Fax ] [-GivenName ] [-HomeDirectory ] [-HomeDrive ] + [-HomePage ] [-HomePhone ] [-Initials ] [-Instance ] + [-KerberosEncryptionType ] [-LogonWorkstations ] + [-Manager ] [-MobilePhone ] [-Name] [-Office ] + [-OfficePhone ] [-Organization ] [-OtherAttributes ] + [-OtherName ] [-PassThru] [-PasswordNeverExpires ] + [-PasswordNotRequired ] [-Path ] [-POBox ] [-PostalCode ] + [-PrincipalsAllowedToDelegateToAccount ] [-ProfilePath ] + [-SamAccountName ] [-ScriptPath ] [-Server ] [-ServicePrincipalNames ] [-SmartcardLogonRequired ] [-State ] [-StreetAddress ] [-Surname ] [-Title ] [-TrustedForDelegation ] - [-Type ] [-UserPrincipalName ] [] + [-Type ] [-UserPrincipalName ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The `New-ADUser` cmdlet creates an Active Directory user. -You can set commonly used user property values by using the cmdlet parameters. +The `New-ADUser` cmdlet creates an Active Directory user. You can set commonly used user property +values by using the cmdlet parameters. You can set property values that are not associated with cmdlet parameters by using the -_OtherAttributes_ parameter. When using this parameter, be sure to place single quotes around the +**OtherAttributes** parameter. When using this parameter, be sure to place single quotes around the attribute name. -You must specify the _SamAccountName_ parameter to create a user. +You must specify the **SamAccountName** parameter to create a user. You can use the `New-ADUser` cmdlet to create different types of user accounts such as iNetOrgPerson -accounts. To do this in Active Directory Domain Services (AD DS), set the _Type_ parameter to the +accounts. To do this in Active Directory Domain Services (AD DS), set the **Type** parameter to the Lightweight Directory Access Protocol (LDAP) display name for the type of account you want to create. This type can be any class in the Active Directory schema that is a subclass of user and that has an object category of person. -The _Path_ parameter specifies the container or organizational unit (OU) for the new user. When you -do not specify the _Path_ parameter, the cmdlet creates a user object in the default container for -user objects in the domain. +The **Path** parameter specifies the container or organizational unit (OU) for the new user. When +you do not specify the **Path** parameter, the cmdlet creates a user object in the default container +for user objects in the domain. The following methods explain different ways to create an object by using this cmdlet. -Method 1: Use the `New-ADUser` cmdlet, specify the required parameters, and set any additional -property values by using the cmdlet parameters. +- Method 1: Use the `New-ADUser` cmdlet, specify the required parameters, and set any additional + property values by using the cmdlet parameters. -Method 2: Use a template to create the new object. To do this, create a new user object or retrieve -a copy of an existing user object and set the _Instance_ parameter to this object. The object -provided to the _Instance_ parameter is used as a template for the new object. You can override -property values from the template by setting cmdlet parameters. For examples and more information, -see the _Instance_ parameter description for this cmdlet. +- Method 2: Use a template to create the new object. To do this, create a new user object or + retrieve a copy of an existing user object and set the **Instance** parameter to this object. The + object provided to the **Instance** parameter is used as a template for the new object. You can + override property values from the template by setting cmdlet parameters. For examples and more + information, see the **Instance** parameter description for this cmdlet. -Method 3: Use the Import-Csv cmdlet with the `New-ADUser` cmdlet to create multiple Active Directory -user objects. To do this, use the `Import-Csv` cmdlet to create the custom objects from a -comma-separated value (CSV) file that contains a list of object properties. Then pass these objects -through the pipeline to the `New-ADUser` cmdlet to create the user objects. +- Method 3: Use the `Import-Csv` cmdlet with the `New-ADUser` cmdlet to create multiple Active + Directory user objects. To do this, use the `Import-Csv` cmdlet to create the custom objects from + a comma-separated value (CSV) file that contains a list of object properties. Then pass these + objects through the pipeline to the `New-ADUser` cmdlet to create the user objects. ## EXAMPLES @@ -81,17 +84,20 @@ through the pipeline to the `New-ADUser` cmdlet to create the user objects. ```powershell $splat = @{ Name = 'ChewDavid' - Certificate = (New-Object System.Security.Cryptography.X509Certificates.X509Certificate -ArgumentList "Export.cer") + Certificate = (New-Object System.Security.Cryptography.X509Certificates.X509Certificate -ArgumentList 'Export.cer') } New-ADUser @splat ``` -This command creates a user named ChewDavid with a certificate imported from the file Export.cer. +This command creates a user named `ChewDavid` with a certificate imported from the file `Export.cer`. ### Example 2: Create a user and set properties ```powershell -New-ADUser -Name "ChewDavid" -OtherAttributes @{'title'="director";'mail'="chewdavid@fabrikam.com"} +New-ADUser -Name 'ChewDavid' -OtherAttributes @{ + 'title'='director' + 'mail'='chewdavid@fabrikam.com' +} ``` This command creates a new user named ChewDavid and sets the **title** and **mail** properties on @@ -100,7 +106,7 @@ the new object. ### Example 3: Create an inetOrgPerson user ```powershell -New-ADUser -Name "ChewDavid" -Type iNetOrgPerson -Path "DC=AppNC" -Server lds.Fabrikam.com:50000 +New-ADUser -Name 'ChewDavid' -Type iNetOrgPerson -Path 'DC=AppNC' -Server lds.Fabrikam.com:50000 ``` This command creates an **inetOrgPerson**-class user named ChewDavid on an AD LDS instance. @@ -109,8 +115,8 @@ This command creates an **inetOrgPerson**-class user named ChewDavid on an AD LD ```powershell $splat = @{ - Name = "ChewDavid" - AccountPassword = (Read-Host -AsSecureString "AccountPassword") + Name = 'ChewDavid' + AccountPassword = (Read-Host -AsSecureString 'AccountPassword') Enabled = $true } New-ADUser @splat @@ -122,24 +128,16 @@ This command creates a new user named ChewDavid and sets the account password. ### -AccountExpirationDate -Specifies the expiration date for an account. - -This parameter sets the **AccountExpirationDate** property of an account object. - -The LDAP display name (**ldapDisplayName**) for this property is accountExpires. - -Use the **DateTime** syntax when you specify this parameter. - -Time is assumed to be local time unless otherwise specified. - -When a time value is not specified, the time is assumed to 12:00:00 AM local time. - -When a date is not specified, the date is assumed to be the current date. +Specifies the expiration date for an account. This parameter sets the **AccountExpirationDate** +property of an account object. The LDAP display name (**ldapDisplayName**) for this property is +`accountExpires`. Use the **DateTime** syntax when you specify this parameter. Time is assumed to be +local time unless otherwise specified. When a time value is not specified, the time is assumed to +12:00:00 AM local time. When a date is not specified, the date is assumed to be the current date. ```yaml Type: DateTime Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -151,23 +149,20 @@ Accept wildcard characters: False ### -AccountNotDelegated Indicates whether the security context of the user is delegated to a service. When this parameter is -set to `$True`, the security context of the account is not delegated to a service even when the -service account is set as trusted for Kerberos delegation. - -This parameter sets the **AccountNotDelegated** property for an Active Directory account. - -This parameter also sets the **ADS_UF_NOT_DELEGATED** flag of the Active Directory User Account -Control (UAC) attribute. +set to `$true`, the security context of the account is not delegated to a service even when the +service account is set as trusted for Kerberos delegation. This parameter sets the +**AccountNotDelegated** property for an Active Directory account. This parameter also sets the +**ADS_UF_NOT_DELEGATED** flag of the Active Directory User Account Control (UAC) attribute. The acceptable values for this parameter are: -- `$False` or 0 -- `$True` or 1 +- `$false` or 0 +- `$true` or 1 ```yaml Type: System.Boolean Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -193,16 +188,16 @@ The following conditions apply based on the manner in which the password paramet User accounts, by default, are created without a password. If you provide a password, an attempt will be made to set that password however, this can fail due to password policy restrictions. The -user account will still be created and you may use Set-ADAccountPassword to set the password on that -account. In order to ensure that accounts remain secure, user accounts will never be enabled unless -a valid password is set or **PasswordNotRequired** is set to `$True`. +user account will still be created and you may use `Set-ADAccountPassword` to set the password on +that account. In order to ensure that accounts remain secure, user accounts will never be enabled +unless a valid password is set or **PasswordNotRequired** is set to `$true`. The account is created if the password fails for any reason. ```yaml Type: SecureString Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -213,22 +208,20 @@ Accept wildcard characters: False ### -AllowReversiblePasswordEncryption -Indicates whether reversible password encryption is allowed for the account. - -This parameter sets the **AllowReversiblePasswordEncryption** property of the account. - -This parameter also sets the **ADS_UF_ENCRYPTED_TEXT_PASSWORD_ALLOWED** flag of the Active Directory -User Account Control (UAC) attribute. +Indicates whether reversible password encryption is allowed for the account. This parameter sets the +**AllowReversiblePasswordEncryption** property of the account. This parameter also sets the +**ADS_UF_ENCRYPTED_TEXT_PASSWORD_ALLOWED** flag of the Active Directory User Account Control (UAC) +attribute. The acceptable values for this parameter are: -- `$False` or 0 -- `$True` or 1 +- `$false` or `0` +- `$true` or `1` ```yaml Type: System.Boolean Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -237,13 +230,10 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` - - ### -AuthenticationPolicy -Specifies an Active Directory Domain Services authentication policy object. - -Specify the authentication policy object in one of the following formats: +Specifies an Active Directory Domain Services authentication policy object. Specify the +authentication policy object in one of the following formats: - Distinguished name - GUID @@ -252,13 +242,13 @@ Specify the authentication policy object in one of the following formats: This parameter can also get this object through the pipeline or you can set this parameter to an object instance. -The cmdlet searches the default naming context or partition to find the object. -If the cmdlet finds two or more objects, the cmdlet returns a non-terminating error. +The cmdlet searches the default naming context or partition to find the object. If the cmdlet finds +two or more objects, the cmdlet returns a non-terminating error. ```yaml Type: ADAuthenticationPolicy Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -271,7 +261,7 @@ Accept wildcard characters: False Specifies an Active Directory Domain Services authentication policy silo object. -Specify the authentication policy silo object in one of the following formats: +Specify the authentication policy silo object in one of the following formats: - Distinguished name - GUID @@ -280,13 +270,13 @@ Specify the authentication policy silo object in one of the following formats: This parameter can also get this object through the pipeline or you can set this parameter to an object instance. -The cmdlet searches the default naming context or partition to find the object. -If the cmdlet finds two or more objects, the cmdlet returns a non-terminating error. +The cmdlet searches the default naming context or partition to find the object. If the cmdlet finds +two or more objects, the cmdlet returns a non-terminating error. ```yaml Type: ADAuthenticationPolicySilo Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -297,20 +287,18 @@ Accept wildcard characters: False ### -AuthType -Specifies the authentication method to use. -The acceptable values for this parameter are: - -- Negotiate or 0 -- Basic or 1 +Specifies the authentication method to use. The acceptable values for this parameter are: -The default authentication method is Negotiate. +- `Negotiate` or `0` +- `Basic` or `1` -A Secure Sockets Layer (SSL) connection is required for the Basic authentication method. +The default authentication method is Negotiate. A Secure Sockets Layer (SSL) connection is required +for the Basic authentication method. ```yaml Type: ADAuthType Parameter Sets: (All) -Aliases: +Aliases: Accepted values: Negotiate, Basic Required: False @@ -322,19 +310,18 @@ Accept wildcard characters: False ### -CannotChangePassword -Indicates whether the account password can be changed. - -This parameter sets the **CannotChangePassword** property of an account. +Indicates whether the account password can be changed. This parameter sets the +**CannotChangePassword** property of an account. The acceptable values for this parameter are: -- `$False` or 0 -- `$True` or 1 +- `$false` or `0` +- `$true` or `1` ```yaml Type: System.Boolean Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -347,13 +334,13 @@ Accept wildcard characters: False Specifies the DER-encoded X.509v3 certificates of the account. These certificates include the public key certificates issued to this account by the Microsoft Certificate Service. This parameter sets -the Certificates property of the account object. The LDAP display name (ldapDisplayName) for this -property is userCertificate. +the Certificates property of the account object. The LDAP display name (**ldapDisplayName**) for +this property is `userCertificate`. ```yaml Type: X509Certificate[] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -368,16 +355,16 @@ Indicates whether a password must be changed during the next logon attempt. The acceptable values for this parameter are: -- `$False` or 0 -- `$True` or 1 +- `$false` or `0` +- `$true` or `1` -This parameter cannot be set to `$True` or 1 for an account that also has the -**PasswordNeverExpires** property set to `$True`. +This parameter cannot be set to `$true` or 1 for an account that also has the +**PasswordNeverExpires** property set to `$true`. ```yaml Type: System.Boolean Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -388,16 +375,13 @@ Accept wildcard characters: False ### -City -Specifies the user's town or city. - -This parameter sets the **City** property of a user object. - -The LDAP display name (**ldapDisplayName**) of this property is l. +Specifies the user's town or city. This parameter sets the **City** property of a user object. The +LDAP display name (**ldapDisplayName**) of this property is `l`. ```yaml Type: System.String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -408,16 +392,13 @@ Accept wildcard characters: False ### -Company -Specifies the user's company. - -This parameter sets the **Company** property of a user object. - -The LDAP display name (**ldapDisplayName**) of this property is company. +Specifies the user's company. This parameter sets the **Company** property of a user object. The +LDAP display name (**ldapDisplayName**) of this property is `company`. ```yaml Type: System.String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -429,25 +410,24 @@ Accept wildcard characters: False ### -CompoundIdentitySupported Specifies whether an account supports Kerberos service tickets which includes the authorization data -for the user's device. - -This value sets the compound identity supported flag of the Active Directory +for the user's device. This value sets the compound identity supported flag of the Active Directory `msDS-SupportedEncryptionTypes` attribute. The acceptable values for this parameter are: -- `$False` or 0 -- `$True` or 1 +- `$false` or `0` +- `$true` or `1` -Warning: Domain-joined Windows systems and services such as clustering manage their own -`msDS-SupportedEncryptionTypes` attribute. Therefore any changes to the flag on the -`msDS-SupportedEncryptionTypes` attribute are overwritten by the service or system that manages the -setting. +> [!WARNING] +> Domain-joined Windows systems and services such as clustering manage their own +> `msDS-SupportedEncryptionTypes` attribute. Therefore any changes to the flag on the +> `msDS-SupportedEncryptionTypes` attribute are overwritten by the service or system that manages +> the setting. ```yaml Type: System.Boolean Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -474,18 +454,16 @@ Accept wildcard characters: False ### -Country -Specifies the country or region code for the user's language of choice. - -This parameter sets the **Country** property of a user object. - -The LDAP display name (**ldapDisplayName**) of this property is c. +Specifies the country or region code for the user's language of choice. This parameter sets the +**Country** property of a user object. The LDAP display name (**ldapDisplayName**) of this property +is `c`. This value is not used by Windows 2000. ```yaml Type: System.String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -496,23 +474,16 @@ Accept wildcard characters: False ### -Credential -Specifies the user account credentials to use to perform this task. - -The default credentials are the credentials of the currently logged on user unless the cmdlet is run -from an Active Directory PowerShell provider drive. - -If the cmdlet is run from such a provider drive, the account associated with the drive is the -default. - -To specify this parameter, you can type a user name, such as User1 or Domain01\User01 or you can -specify a **PSCredential** object. +Specifies the user account credentials to use to perform this task. The default credentials are the +credentials of the currently logged on user unless the cmdlet is run from an Active Directory +PowerShell provider drive. If the cmdlet is run from such a provider drive, the account associated +with the drive is the default. To specify this parameter, you can type a user name, such as User1 or +Domain01\User01 or you can specify a **PSCredential** object. If you specify a user name for this parameter, the cmdlet prompts for a password. You can also create a **PSCredential** object by using a script or by using the `Get-Credential` -cmdlet. - -You can then set the _Credential_ parameter to the **PSCredential** object. +cmdlet. You can then set the **Credential** parameter to the **PSCredential** object. If the acting credentials do not have directory-level permission to perform the task, Active Directory PowerShell returns a terminating error. @@ -520,7 +491,7 @@ Directory PowerShell returns a terminating error. ```yaml Type: System.Management.Automation.PSCredential Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -531,16 +502,13 @@ Accept wildcard characters: False ### -Department -Specifies the user's department. - -This parameter sets the **Department** property of a user object. - -The LDAP display name (**ldapDisplayName**) of this property is department. +Specifies the user's department. This parameter sets the **Department** property of a user object. +The LDAP display name (**ldapDisplayName**) of this property is `department`. ```yaml Type: System.String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -551,16 +519,13 @@ Accept wildcard characters: False ### -Description -Specifies a description of the object. - -This parameter sets the value of the **Description** property for the user object. - -The LDAP display name (**ldapDisplayName**) for this property is description. +Specifies a description of the object. This parameter sets the value of the **Description** property +for the user object. The LDAP display name (**ldapDisplayName**) for this property is `description`. ```yaml Type: System.String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -571,16 +536,13 @@ Accept wildcard characters: False ### -DisplayName -Specifies the display name of the object. - -This parameter sets the **DisplayName** property of the user object. - -The LDAP display name (**ldapDisplayName**) for this property is displayName. +Specifies the display name of the object. This parameter sets the **DisplayName** property of the +user object. The LDAP display name (**ldapDisplayName**) for this property is `displayName`. ```yaml Type: System.String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -591,16 +553,13 @@ Accept wildcard characters: False ### -Division -Specifies the user's division. - -This parameter sets the **Division** property of a user object. - -The LDAP display name (**ldapDisplayName**) of this property is division. +Specifies the user's division. This parameter sets the **Division** property of a user object. The +LDAP display name (**ldapDisplayName**) of this property is `division`. ```yaml Type: System.String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -611,16 +570,13 @@ Accept wildcard characters: False ### -EmailAddress -Specifies the user's e-mail address. - -This parameter sets the **EmailAddress** property of a user object. - -The LDAP display name (**ldapDisplayName**) of this property is mail. +Specifies the user's e-mail address. This parameter sets the **EmailAddress** property of a user +object. The LDAP display name (**ldapDisplayName**) of this property is `mail`. ```yaml Type: System.String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -631,16 +587,13 @@ Accept wildcard characters: False ### -EmployeeID -Specifies the user's employee ID. - -This parameter sets the **EmployeeID** property of a user object. - -The LDAP display name (**ldapDisplayName**) of this property is employeeID. +Specifies the user's employee ID. This parameter sets the **EmployeeID** property of a user object. +The LDAP display name (**ldapDisplayName**) of this property is `employeeID`. ```yaml Type: System.String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -651,16 +604,13 @@ Accept wildcard characters: False ### -EmployeeNumber -Specifies the user's employee number. - -This parameter sets the **EmployeeNumber** property of a user object. - -The LDAP display name (**ldapDisplayName**) of this property is employeeNumber. +Specifies the user's employee number. This parameter sets the **EmployeeNumber** property of a user +object. The LDAP display name (**ldapDisplayName**) of this property is `employeeNumber`. ```yaml Type: System.String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -671,24 +621,19 @@ Accept wildcard characters: False ### -Enabled -Specifies if an account is enabled. - -An enabled account requires a password. - -This parameter sets the **Enabled** property for an account object. - -This parameter also sets the **ADS_UF_ACCOUNTDISABLE** flag of the Active Directory User Account -Control (UAC) attribute. +Specifies if an account is enabled. An enabled account requires a password. This parameter sets the +**Enabled** property for an account object. This parameter also sets the **ADS_UF_ACCOUNTDISABLE** +flag of the Active Directory User Account Control (UAC) attribute. The acceptable values for this parameter are: -- `$False` or 0 -- `$True` or 1 +- `$false` or `0` +- `$true` or `1` ```yaml Type: System.Boolean Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -699,16 +644,13 @@ Accept wildcard characters: False ### -Fax -Specifies the user's fax phone number. - -This parameter sets the **Fax** property of a user object. - -The LDAP display name (**ldapDisplayName**) of this property is facsimileTelephoneNumber. +Specifies the user's fax phone number. This parameter sets the **Fax** property of a user object. +The LDAP display name (**ldapDisplayName**) of this property is `facsimileTelephoneNumber`. ```yaml Type: System.String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -719,16 +661,13 @@ Accept wildcard characters: False ### -GivenName -Specifies the user's given name. - -This parameter sets the **GivenName** property of a user object. - -The LDAP display name (**ldapDisplayName**) of this property is givenName. +Specifies the user's given name. This parameter sets the **GivenName** property of a user object. +The LDAP display name (**ldapDisplayName**) of this property is `givenName`. ```yaml Type: System.String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -739,16 +678,13 @@ Accept wildcard characters: False ### -HomeDirectory -Specifies a user's home directory. - -This parameter sets the **HomeDirectory** property of a user object. - -The LDAP display name (**ldapDisplayName**) for this property is homeDirectory. +Specifies a user's home directory. This parameter sets the **HomeDirectory** property of a user +object. The LDAP display name (**ldapDisplayName**) for this property is `homeDirectory`. ```yaml Type: System.String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -760,20 +696,17 @@ Accept wildcard characters: False ### -HomeDrive Specifies a drive that is associated with the UNC path defined by the **HomeDirectory** property. +The drive letter is specified as `:` where `` indicates the letter of the +drive to associate. The `` must be a single, uppercase letter and the colon is +required. -The drive letter is specified as ``: where `` indicates the letter of the -drive to associate. - -The `` must be a single, uppercase letter and the colon is required. - -This parameter sets the **HomeDrive** property of the user object. - -The LDAP display name (**ldapDisplayName**) for this property is homeDrive. +This parameter sets the **HomeDrive** property of the user object. The LDAP display name +(**ldapDisplayName**) for this property is `homeDrive`. ```yaml Type: System.String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -784,16 +717,13 @@ Accept wildcard characters: False ### -HomePage -Specifies the URL of the home page of the object. - -This parameter sets the **homePage** property of a user object. - -The LDAP display name (**ldapDisplayName**) for this property is wWWHomePage. +Specifies the URL of the home page of the object. This parameter sets the **homePage** property of a +user object. The LDAP display name (**ldapDisplayName**) for this property is `wWWHomePage`. ```yaml Type: System.String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -804,16 +734,13 @@ Accept wildcard characters: False ### -HomePhone -Specifies the user's home telephone number. - -This parameter sets the **HomePhone** property of a user object. - -The LDAP display name (**ldapDisplayName**) of this property is homePhone. +Specifies the user's home telephone number. This parameter sets the **HomePhone** property of a user +object. The LDAP display name (**ldapDisplayName**) of this property is `homePhone`. ```yaml Type: System.String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -824,18 +751,14 @@ Accept wildcard characters: False ### -Initials -Specifies the initials that represent part of a user's name. - -You can use this value for the user's middle initial. - -This parameter sets the **Initials** property of a user object. - -The LDAP display name (**ldapDisplayName**) of this property is initials. +Specifies the initials that represent part of a user's name. You can use this value for the user's +middle initial. This parameter sets the **Initials** property of a user object. The LDAP display +name (**ldapDisplayName**) of this property is `initials`. ```yaml Type: System.String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -846,35 +769,27 @@ Accept wildcard characters: False ### -Instance -Specifies an instance of a user object to use as a template for a new user object. - -You can use an instance of an existing user object as a template or you can construct a new user -object for template use. - -You can construct a new user object using the Windows PowerShell command line or by using a script. - -Method 1: Use an existing user object as a template for a new object. - -To retrieve an instance of an existing user object, use a cmdlet such as `Get-ADUser`. - -Then provide this object to the _Instance_ parameter of the `New-ADUser` cmdlet to create a new user -object. - -You can override property values of the new object by setting the appropriate parameters. - -Method 2: Create a new **ADUser** object and set the property values by using the Windows PowerShell -command line interface. +Specifies an instance of a user object to use as a template for a new user object. You can use an +instance of an existing user object as a template or you can construct a new user object for +template use. You can construct a new user object using the Windows PowerShell command line or by +using a script. -Then pass this object to the _Instance_ parameter of the `New-ADUser` cmdlet to create the new -Active Directory user object. +- Method 1: Use an existing user object as a template for a new object. To retrieve an instance of + an existing user object, use a cmdlet such as `Get-ADUser`. Then provide this object to the + **Instance** parameter of the `New-ADUser` cmdlet to create a new user object. You can override + property values of the new object by setting the appropriate parameters. +- Method 2: Create a new **ADUser** object and set the property values by using the Windows + PowerShell command line interface. Then pass this object to the **Instance** parameter of the + `New-ADUser` cmdlet to create the new Active Directory user object. -Note: Specified attributes are not validated, so attempting to set attributes that do not exist or -cannot be set raises an error. +> [!NOTE] +> Specified attributes are not validated, so attempting to set attributes that do not exist or +> cannot be set raises an error. ```yaml Type: ADUser Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -886,35 +801,33 @@ Accept wildcard characters: False ### -KerberosEncryptionType Specifies whether an account supports Kerberos encryption types which are used during creation of -service tickets. - -This value sets the encryption types supported flags of the Active Directory +service tickets. This value sets the encryption types supported flags of the Active Directory `msDS-SupportedEncryptionTypes` attribute. Possible values for this parameter are: -- None -- DES -- RC4 -- AES128 -- AES256 +- `None` +- `DES` +- `RC4` +- `AES128` +- `AES256` -None removes all encryption types from the account, resulting in the KDC being unable to issue +`None` removes all encryption types from the account, resulting in the KDC being unable to issue service tickets for services using the account. -DES is a weak encryption type that is not supported by default since Windows 7 and Windows Server +`DES` is a weak encryption type that is not supported by default since Windows 7 and Windows Server 2008 R2. -Warning: Domain-joined Windows systems and services such as clustering manage their own -`msDS-SupportedEncryptionTypes` attribute. - -Therefore any changes to the flag on the `msDS-SupportedEncryptionTypes` attribute are overwritten -by the service or system that manages the setting. +> [!WARNING] +> Domain-joined Windows systems and services such as clustering manage their own +> `msDS-SupportedEncryptionTypes` attribute. Therefore any changes to the flag on the +> `msDS-SupportedEncryptionTypes` attribute are overwritten by the service or system that manages +> the setting. ```yaml Type: ADKerberosEncryptionType Parameter Sets: (All) -Aliases: +Aliases: Accepted values: None, DES, RC4, AES128, AES256 Required: False @@ -926,21 +839,16 @@ Accept wildcard characters: False ### -LogonWorkstations -Specifies the computers that the user can access. - -To specify more than one computer, create a single comma-separated list. - -You can identify a computer by using the Security Account Manager (SAM) account name -(sAMAccountName) or the DNS host name of the computer. - -The SAM account name is the same as the NetBIOS name of the computer. - -The LDAP display name (**ldapDisplayName**) for this property is userWorkStations. +Specifies the computers that the user can access. To specify more than one computer, create a single +comma-separated list. You can identify a computer by using the Security Account Manager (SAM) +account name (**sAMAccountName**) or the DNS host name of the computer. The SAM account name is the +same as the NetBIOS name of the computer. The LDAP display name (**ldapDisplayName**) for this +property is `userWorkStations`. ```yaml Type: System.String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -951,25 +859,21 @@ Accept wildcard characters: False ### -Manager -Specifies the user's manager. - -This parameter sets the **Manager** property of a user object. - -This parameter is set by providing one of the following property values. +Specifies the user's manager. This parameter sets the **Manager** property of a user object. This +parameter is set by providing one of the following property values. -Note: The identifier in parentheses is the LDAP display name for the property. - -The acceptable values for this parameter are: +The identifier in parentheses is the LDAP display name for the property. The acceptable values for +this parameter are: - A distinguished name -- A GUID (objectGUID) -- A security identifier (objectSid) -- A SAM account name (sAMAccountName) +- A GUID (`objectGUID`) +- A security identifier (`objectSid`) +- A SAM account name (`sAMAccountName`) ```yaml Type: ADUser Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -980,16 +884,13 @@ Accept wildcard characters: False ### -MobilePhone -Specifies the user's mobile phone number. - -This parameter sets the **MobilePhone** property of a user object. - -The LDAP display name (**ldapDisplayName**) of this property is mobile. +Specifies the user's mobile phone number. This parameter sets the **MobilePhone** property of a user +object. The LDAP display name (**ldapDisplayName**) of this property is `mobile`. ```yaml Type: System.String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -1000,16 +901,13 @@ Accept wildcard characters: False ### -Name -Specifies the name of the object. - -This parameter sets the **Name** property of a user object. - -The LDAP display name (**ldapDisplayName**) of this property is name. +Specifies the name of the object. This parameter sets the **Name** property of a user object. The +LDAP display name (**ldapDisplayName**) of this property is `name`. ```yaml Type: System.String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: 1 @@ -1020,16 +918,14 @@ Accept wildcard characters: False ### -Office -Specifies the location of the user's office or place of business. - -This parameter sets the **Office** property of a user object. - -The LDAP display name (**ldapDisplayName**) of this property is physicalDeliveryOfficeName. +Specifies the location of the user's office or place of business. This parameter sets the **Office** +property of a user object. The LDAP display name (**ldapDisplayName**) of this property is +`physicalDeliveryOfficeName`. ```yaml Type: System.String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -1040,16 +936,13 @@ Accept wildcard characters: False ### -OfficePhone -Specifies the user's office telephone number. - -This parameter sets the **OfficePhone** property of a user object. - -The LDAP display name (**ldapDisplayName**) of this property is telephoneNumber. +Specifies the user's office telephone number. This parameter sets the **OfficePhone** property of a +user object. The LDAP display name (**ldapDisplayName**) of this property is `telephoneNumber`. ```yaml Type: System.String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -1060,16 +953,13 @@ Accept wildcard characters: False ### -Organization -Specifies the user's organization. - -This parameter sets the **Organization** property of a user object. - -The LDAP display name (**ldapDisplayName**) of this property is o. +Specifies the user's organization. This parameter sets the **Organization** property of a user +object. The LDAP display name (**ldapDisplayName**) of this property is `o`. ```yaml Type: System.String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -1080,37 +970,27 @@ Accept wildcard characters: False ### -OtherAttributes -Specifies object attribute values for attributes that are not represented by cmdlet parameters. - -You can set one or more parameters at the same time with this parameter. - -If an attribute takes more than one value, you can assign multiple values. - -To identify an attribute, specify the LDAP display name (**ldapDisplayName**) defined for it in the -Active Directory schema. +Specifies object attribute values for attributes that are not represented by cmdlet parameters. You +can set one or more parameters at the same time with this parameter. If an attribute takes more than +one value, you can assign multiple values. To identify an attribute, specify the LDAP display name +(**ldapDisplayName**) defined for it in the Active Directory schema. To specify a single value for an attribute: -```powershell --OtherAttributes @{'AttributeLDAPDisplayName'=value} -``` +`-OtherAttributes @{'AttributeLDAPDisplayName'=value}` To specify multiple values for an attribute: -```powershell --OtherAttributes @{'AttributeLDAPDisplayName'=value1,value2,...} -``` +`-OtherAttributes @{'AttributeLDAPDisplayName'=value1,value2,...}` To specify values for multiple attributes: -```powershell --OtherAttributes @{'Attribute1LDAPDisplayName'=value; 'Attribute2LDAPDisplayName'=value1,value2;...} -``` +`-OtherAttributes @{'Attribute1LDAPDisplayName'=value; 'Attribute2LDAPDisplayName'=value1,value2;...}` ```yaml Type: Hashtable Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -1122,15 +1002,13 @@ Accept wildcard characters: False ### -OtherName Specifies a name in addition to a user's given name and surname, such as the user's middle name. - -This parameter sets the **OtherName** property of a user object. - -The LDAP display name (**ldapDisplayName**) of this property is middleName. +This parameter sets the **OtherName** property of a user object. The LDAP display name +(**ldapDisplayName**) of this property is `middleName`. ```yaml Type: System.String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -1141,14 +1019,13 @@ Accept wildcard characters: False ### -PassThru -Returns an object representing the item with which you are working. - -By default, this cmdlet does not generate any output. +Returns an object representing the item with which you are working. By default, this cmdlet does not +generate any output. ```yaml Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -1159,25 +1036,22 @@ Accept wildcard characters: False ### -PasswordNeverExpires -Specifies whether the password of an account can expire. - -This parameter sets the **PasswordNeverExpires** property of an account object. - -This parameter also sets the **ADS_UF_DONT_EXPIRE_PASSWD** flag of the Active Directory User Account -Control attribute. +Specifies whether the password of an account can expire. This parameter sets the +**PasswordNeverExpires** property of an account object. This parameter also sets the +**ADS_UF_DONT_EXPIRE_PASSWD** flag of the Active Directory User Account Control attribute. The acceptable values for this parameter are: -- `$False` or 0 -- `$True` or 1 +- `$false` or `0` +- `$true` or `1` -Note: This parameter cannot be set to `$True` or 1 for an account that also has the -**ChangePasswordAtLogon** property set to `$True`. +This parameter cannot be set to `$true` or `1` for an account that also has the +**ChangePasswordAtLogon** property set to `$true`. ```yaml Type: System.Boolean Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -1188,16 +1062,13 @@ Accept wildcard characters: False ### -PasswordNotRequired -Specifies whether the account requires a password. - -A password is not required for a new account. - +Specifies whether the account requires a password. A password is not required for a new account. This parameter sets the **PasswordNotRequired** property of an account object. ```yaml Type: System.Boolean Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -1208,47 +1079,43 @@ Accept wildcard characters: False ### -Path -Specifies the X.500 path of the OU or container where the new object is created. - -In many cases, a default value is used for the _Path_ parameter if no value is specified. +Specifies the X.500 path of the OU or container where the new object is created. In many cases, a +default value is used for the **Path** parameter if no value is specified. The rules for determining +the default value are given below. The rules listed first are evaluated first and when a default +value can be determined, no further rules are evaluated. -The rules for determining the default value are given below. - -Note that rules listed first are evaluated first and when a default value can be determined, no -further rules are evaluated. - -In Active Directory Domain Services (AD DS) environments, a default value for _Path_ is set in the +In Active Directory Domain Services (AD DS) environments, a default value for **Path** is set in the following cases: - If the cmdlet is run from an Active Directory PowerShell provider drive, the parameter is set to the current path of the provider drive. -- If the cmdlet has a default path, this is used. For example: in New-ADUser, the _Path_ parameter +- If the cmdlet has a default path, this is used. For example: in New-ADUser, the **Path** parameter defaults to the Users container. -- If none of the previous cases apply, the default value of _Path_ is set to the default partition +- If none of the previous cases apply, the default value of **Path** is set to the default partition or naming context of the target domain. -In AD LDS environments, a default value for _Path_ is set in the following cases: +In AD LDS environments, a default value for **Path** is set in the following cases: - If the cmdlet is run from an Active Directory module for PowerShell provider drive, the parameter is set to the current path of the provider drive. -- If the cmdlet has a default path, this is used. For example: in `New-ADUser`, the _Path_ parameter - defaults to the Users container. +- If the cmdlet has a default path, this is used. For example: in `New-ADUser`, the **Path** + parameter defaults to the Users container. - If the target AD LDS instance has a default naming context, the default value of _Path_ is set to the default naming context. To specify a default naming context for an AD LDS environment, set the `msDS-defaultNamingContext` property of the Active Directory directory service agent object (**nTDSDSA**) for the AD LDS instance. -- If none of the previous cases apply, the _Path_ parameter does not take any default value. +- If none of the previous cases apply, the **Path** parameter does not take any default value. -Note: The Active Directory Provider cmdlets, such New-Item, Remove-Item, Remove-ItemProperty, -*Rename-Item*, and Set-ItemProperty also contain a _Path_ property. - -However, for the Active Directory Provider cmdlets, the _Path_ parameter identifies the path of the -actual object rather than the container. +> [!NOTE] +> The Active Directory Provider cmdlets, such as `New-Item`, `Remove-Item`, `Remove-ItemProperty`, +> `Rename-Item`, and `Set-ItemProperty` also contain a **Path** property. However, for the Active +> Directory Provider cmdlets, the **Path** parameter identifies the path of the actual object rather +> than the container. ```yaml Type: System.String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -1256,18 +1123,16 @@ Default value: None Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` -### -POBox -Specifies the user's post office box number. - -This parameter sets the **POBox** property of a user object. +### -POBox -The LDAP display name (**ldapDisplayName**) of this property is postOfficeBox. +Specifies the user's post office box number. This parameter sets the **POBox** property of a user +object. The LDAP display name (**ldapDisplayName**) of this property is `postOfficeBox`. ```yaml Type: System.String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -1275,18 +1140,16 @@ Default value: None Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` -### -PostalCode - -Specifies the user's postal code or zip code. -This parameter sets the **PostalCode** property of a user object. +### -PostalCode -The LDAP display name (**ldapDisplayName**) of this property is postalCode. +Specifies the user's postal code or zip code. This parameter sets the **PostalCode** property of a +user object. The LDAP display name (**ldapDisplayName**) of this property is `postalCode`. ```yaml Type: System.String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -1297,15 +1160,13 @@ Accept wildcard characters: False ### -PrincipalsAllowedToDelegateToAccount -Specifies an array of principal objects. - -This parameter sets the `msDS-AllowedToActOnBehalfOfOtherIdentity` attribute of a computer account -object. +Specifies an array of principal objects. This parameter sets the +`msDS-AllowedToActOnBehalfOfOtherIdentity` attribute of a computer account object. ```yaml Type: ADPrincipal[] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -1316,18 +1177,14 @@ Accept wildcard characters: False ### -ProfilePath -Specifies a path to the user's profile. - -This value can be a local absolute path or a Universal Naming Convention (UNC) path. - -This parameter sets the **ProfilePath** property of the user object. - -The LDAP display name (**ldapDisplayName**) for this property is profilePath. +Specifies a path to the user's profile. This value can be a local absolute path or a Universal +Naming Convention (UNC) path. This parameter sets the **ProfilePath** property of the user object. +The LDAP display name (**ldapDisplayName**) for this property is `profilePath`. ```yaml Type: System.String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -1339,24 +1196,19 @@ Accept wildcard characters: False ### -SamAccountName Specifies the Security Account Manager (SAM) account name of the user, group, computer, or service -account. +account. The maximum length of the description is 256 characters. To be compatible with older +operating systems, create a SAM account name that is 20 characters or less. This parameter sets the +**SAMAccountName** for an account object. The LDAP display name (**ldapDisplayName**) for this +property is `sAMAccountName`. -The maximum length of the description is 256 characters. - -To be compatible with older operating systems, create a SAM account name that is 20 characters or -less. - -This parameter sets the **SAMAccountName** for an account object. - -The LDAP display name (**ldapDisplayName**) for this property is sAMAccountName. - -Note: If the string value provided is not terminated with a $ character, the system adds one if -needed. +> [!NOTE] +> Information the user should notice even if skimmingIf the string value provided is not terminated +> with a `$` character, the system adds one if needed. ```yaml Type: System.String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -1367,18 +1219,14 @@ Accept wildcard characters: False ### -ScriptPath -Specifies a path to the user's log on script. - -This value can be a local absolute path or a Universal Naming Convention (UNC) path. - -This parameter sets the **ScriptPath** property of the user object. - -The LDAP display name (**ldapDisplayName**) for this property is scriptPath. +Specifies a path to the user's log on script. This value can be a local absolute path or a Universal +Naming Convention (UNC) path. This parameter sets the **ScriptPath** property of the user object. +The LDAP display name (**ldapDisplayName**) for this property is `scriptPath`. ```yaml Type: System.String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -1390,18 +1238,17 @@ Accept wildcard characters: False ### -Server Specifies the AD DS instance to connect to, by providing one of the following values for a -corresponding domain name or directory server. - -The service may be any of the following: AD LDS, AD DS, or Active Directory snapshot instance. +corresponding domain name or directory server. The service may be any of the following: AD LDS, AD +DS, or Active Directory snapshot instance. -Specify the AD DS instance in one of the following ways: +Specify the AD DS instance in one of the following ways: Domain name values: - Fully qualified domain name - NetBIOS name -Directory server values: +Directory server values: - Fully qualified directory server name - NetBIOS name @@ -1410,7 +1257,7 @@ Directory server values: The default value for this parameter is determined by one of the following methods in the order that they are listed: -- By using the _Server_ value from objects passed through the pipeline +- By using the **Server** value from objects passed through the pipeline - By using the server information associated with the AD DS Windows PowerShell provider drive, when the cmdlet runs in that drive - By using the domain of the computer running Windows PowerShell @@ -1418,7 +1265,7 @@ they are listed: ```yaml Type: System.String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -1429,20 +1276,16 @@ Accept wildcard characters: False ### -ServicePrincipalNames -Specifies the service principal names for the account. - -This parameter sets the **ServicePrincipalNames** property of the account. - -The LDAP display name (**ldapDisplayName**) for this property is servicePrincipalName. - -To enter multiple values, use the following syntax: `,,...`. If the values -contain spaces or otherwise require quotation marks, use the following syntax: -`"","",...""`." +Specifies the service principal names for the account. This parameter sets the +**ServicePrincipalNames** property of the account. The LDAP display name (**ldapDisplayName**) for +this property is servicePrincipalName. To enter multiple values, use the following syntax: +`,,...`. If the values contain spaces or otherwise require quotation marks, +use the following syntax: `'','',...''`. ```yaml Type: System.String[] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -1453,22 +1296,19 @@ Accept wildcard characters: False ### -SmartcardLogonRequired -Specifies whether a smart card is required to logon. - -This parameter sets the **SmartCardLoginRequired** property for a user object. - -This parameter also sets the **ADS_UF_SMARTCARD_REQUIRED** flag of the Active Directory User Account -Control attribute. +Specifies whether a smart card is required to logon. This parameter sets the +**SmartCardLoginRequired** property for a user object. This parameter also sets the +**ADS_UF_SMARTCARD_REQUIRED** flag of the Active Directory User Account Control attribute. The acceptable values for this parameter are: -- `$False` or 0 -- `$True` or 1 +- `$false` or `0` +- `$true` or `1` ```yaml Type: System.Boolean Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -1479,16 +1319,13 @@ Accept wildcard characters: False ### -State -Specifies the user's or Organizational Unit's state or province. - -This parameter sets the **State** property of a user object. - -The LDAP display name (**ldapDisplayName**) of this property is st. +Specifies the user's or Organizational Unit's state or province. This parameter sets the **State** +property of a user object. The LDAP display name (**ldapDisplayName**) of this property is `st`. ```yaml Type: System.String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -1501,14 +1338,13 @@ Accept wildcard characters: False Specifies the user's street address. -This parameter sets the **StreetAddress** property of a user object. - -The LDAP display name (**ldapDisplayName**) of this property is streetAddress. +This parameter sets the **StreetAddress** property of a user object. The LDAP display name +(**ldapDisplayName**) of this property is streetAddress. ```yaml Type: System.String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -1519,16 +1355,13 @@ Accept wildcard characters: False ### -Surname -Specifies the user's last name or surname. - -This parameter sets the **Surname** property of a user object. - -The LDAP display name (**ldapDisplayName**) of this property is sn. +Specifies the user's last name or surname. This parameter sets the **Surname** property of a user +object. The LDAP display name (**ldapDisplayName**) of this property is `sn`. ```yaml Type: System.String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -1541,14 +1374,13 @@ Accept wildcard characters: False Specifies the user's title. -This parameter sets the **Title** property of a user object. - -The LDAP display name (**ldapDisplayName**) of this property is title. +This parameter sets the **Title** property of a user object. The LDAP display name +(**ldapDisplayName**) of this property is `title`. ```yaml Type: System.String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -1559,25 +1391,21 @@ Accept wildcard characters: False ### -TrustedForDelegation -Indicates whether an account is trusted for Kerberos delegation. - -A service that runs under an account that is trusted for Kerberos delegation can assume the identity -of a client requesting the service. - -This parameter sets the **TrustedForDelegation** property of an account object. - -This value also sets the **ADS_UF_TRUSTED_FOR_DELEGATION** flag of the Active Directory User Account -Control attribute. +Indicates whether an account is trusted for Kerberos delegation. A service that runs under an +account that is trusted for Kerberos delegation can assume the identity of a client requesting the +service. This parameter sets the **TrustedForDelegation** property of an account object. This value +also sets the **ADS_UF_TRUSTED_FOR_DELEGATION** flag of the Active Directory User Account Control +attribute. The acceptable values for this parameter are: -- `$False` or 0 -- `$True` or 1 +- `$false` or `0` +- `$true` or `1` ```yaml Type: System.Boolean Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -1588,19 +1416,15 @@ Accept wildcard characters: False ### -Type -Specifies the type of object to create. - -Set the _Type_ parameter to the LDAP display name of the Active Directory schema class that -represents the type of object that you want to create. - -The selected type must be a subclass of the User schema class. - -If this parameter is not specified it defaults to User. +Specifies the type of object to create. Set the **Type** parameter to the LDAP display name of the +Active Directory schema class that represents the type of object that you want to create. The +selected type must be a subclass of the User schema class. If this parameter is not specified it +defaults to `User`. ```yaml Type: System.String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -1611,21 +1435,16 @@ Accept wildcard characters: False ### -UserPrincipalName -Specifies a user principal name (UPN) in the format `@`. - -A UPN is a friendly name assigned by an administrator that is shorter than the LDAP distinguished -name used by the system and easier to remember. - -The UPN is independent of the user object's distinguished name, so a user object can be moved or -renamed without affecting the user logon name. - -When logging on using a UPN, users no longer have to choose a domain from a list on the logon dialog -box. +Specifies a user principal name (UPN) in the format `@`. A UPN is a friendly +name assigned by an administrator that is shorter than the LDAP distinguished name used by the +system and easier to remember. The UPN is independent of the user object's distinguished name, so a +user object can be moved or renamed without affecting the user logon name. When signing on using a +UPN, users no longer have to choose a domain from a list on the logon dialog box. ```yaml Type: System.String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -1636,9 +1455,7 @@ Accept wildcard characters: False ### -WhatIf -Shows what would happen if the cmdlet runs. - -The cmdlet is not run. +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml Type: System.Management.Automation.SwitchParameter @@ -1663,20 +1480,22 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### None or Microsoft.ActiveDirectory.Management.ADUser -A user object that is a template for the new user object is received by the _Instance_ parameter. +A user object that is a template for the new user object is received by the **Instance** parameter. ## OUTPUTS -### None or Microsoft.ActiveDirectory.Management.ADUser - -Returns the new user object when the _PassThru_ parameter is specified. +### None By default, this cmdlet does not generate any output. +### Microsoft.ActiveDirectory.Management.ADUser + +Returns the new user object when the **PassThru** parameter is specified. + ## NOTES -* This cmdlet does not work with an Active Directory snapshot. -* This cmdlet does not work with a read-only domain controller. +- This cmdlet does not work with an Active Directory snapshot. +- This cmdlet does not work with a read-only domain controller. ## RELATED LINKS @@ -1687,4 +1506,3 @@ By default, this cmdlet does not generate any output. [Set-ADUser](./Set-ADUser.md) [Set-ADAccountPassword](./Set-ADAccountPassword.md) - From abdea359f4483c20700ebfaac446b78fa5240b54 Mon Sep 17 00:00:00 2001 From: Sean Wheeler Date: Mon, 8 May 2023 18:11:10 -0500 Subject: [PATCH 754/965] Apply suggestions from code review Co-authored-by: Mikey Lombardi (He/Him) --- .../activedirectory/Get-ADComputer.md | 148 +++++++++--------- 1 file changed, 71 insertions(+), 77 deletions(-) diff --git a/docset/winserver2022-ps/activedirectory/Get-ADComputer.md b/docset/winserver2022-ps/activedirectory/Get-ADComputer.md index eab19f43cb..a727b6c216 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADComputer.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADComputer.md @@ -44,28 +44,26 @@ Get-ADComputer [-AuthType ] [-Credential ] -LDAPFilter ## DESCRIPTION -The **Get-ADComputer** cmdlet gets a computer or performs a search to retrieve multiple computers. +The `Get-ADComputer` cmdlet gets a computer or performs a search to retrieve multiple computers. -The _Identity_ parameter specifies the Active Directory computer to retrieve. +The **Identity** parameter specifies the Active Directory computer to retrieve. You can identify a computer by its distinguished name, GUID, security identifier (SID) or Security Accounts Manager (SAM) account name. You can also set the parameter to a computer object variable, such as `$` or -pass a computer object through the pipeline to the _Identity_ parameter. +pass a computer object through the pipeline to the **Identity** parameter. -To search for and retrieve more than one computer, use the _Filter_ or -_LDAPFilter_ parameters. The _Filter_ parameter uses the PowerShell Expression -Language to write query strings for Active Directory. PowerShell Expression -Language syntax provides rich type conversion support for value types received -by the _Filter_ parameter. For more information about the _Filter_ parameter +To search for and retrieve more than one computer, use the **Filter** or **LDAPFilter** parameters. +The **Filter** parameter uses the PowerShell Expression Language to write query strings for Active +Directory. PowerShell Expression Language syntax provides rich type conversion support for value +types received by the **Filter** parameter. For more information about the **Filter** parameter syntax, type `Get-Help` -[about_ActiveDirectory_Filter](/previous-versions/windows/server/hh531527(v=ws.10)). -If you have existing Lightweight Directory Access Protocol (LDAP) query strings, -you can use the _LDAPFilter_ parameter. +[about_ActiveDirectory_Filter](/previous-versions/windows/server/hh531527(v=ws.10)). If you have +existing Lightweight Directory Access Protocol (LDAP) query strings, you can use the **LDAPFilter** +parameter. -This cmdlet retrieves a default set of computer object properties. To retrieve -additional properties use the _Properties_ parameter. For more information about -the how to determine the properties for computer objects, see the _Properties_ -parameter description. +This cmdlet retrieves a default set of computer object properties. To retrieve additional +properties use the **Properties** parameter. For more information about the how to determine the +properties for computer objects, see the **Properties** parameter description. ## EXAMPLES @@ -162,7 +160,7 @@ This command gets a specific computer showing all the properties. ```powershell Get-ADComputer -Filter 'Name -like "User01*"' -Properties IPv4Address | - Format-Table Name,DNSHostName,IPv4Address -AutoSize + Format-Table Name, DNSHostName, IPv4Address -AutoSize ``` ```Output @@ -173,14 +171,14 @@ User01-SRV2 User01-SRV2.User01.com 10.194.100.3 ``` This command gets all the computers with a name starting with a particular -string and shows the name, dns hostname, and IPv4 address. +string and shows the name, DNS hostname, and IPv4 address. ### Example 3: Gets all computers that have changed their password in specific time frame ```powershell $Date = [DateTime]::Today.AddDays(-90) Get-ADComputer -Filter 'PasswordLastSet -ge $Date' -Properties PasswordLastSet | - Format-Table Name,PasswordLastSet + Format-Table Name, PasswordLastSet ``` ```Output @@ -206,8 +204,8 @@ davidche-laptop ``` This command gets the computer accounts in the location -CN=Computers,DC=User01,DC=com that are listed as laptops by using an -_LDAPFilter_. +`CN=Computers,DC=User01,DC=com` that are listed as laptops by using an +**LDAPFilter**. ### Example 5: Get all computer accounts using a filter @@ -221,7 +219,7 @@ This command gets all computer accounts. ```powershell Get-ADComputer -Filter 'Name -like "Computer01*" -or Name -like "Computer02*"' -Properties IPv4Address | - Format-Table Name,DNSHostName,IPv4Address -AutoSize + Format-Table Name, DNSHostName, IPv4Address -AutoSize ``` ```Output @@ -236,7 +234,7 @@ Computer02-SRV2 Computer02-SRV2.Computer02.com 10.194.100.3 ```powershell $Date = [DateTime]::Today.AddDays(-30) Get-ADComputer -Filter 'Name -like "Computer01*" -and PasswordLastSet -ge $Date' -Properties IPv4Address | - Format-Table Name,DNSHostName,IPv4Address -AutoSize + Format-Table Name, DNSHostName, IPv4Address -AutoSize ``` ```Output @@ -282,17 +280,16 @@ cmdlet is run from an Active Directory module for Windows PowerShell provider drive. If the cmdlet is run from such a provider drive, the account associated with the drive is the default. -To specify this parameter, you can type a user name, such as User1 or -Domain01\User01 or you can specify a **PSCredential** object. If you specify a -user name for this parameter, the cmdlet prompts for a password. +To specify this parameter, you can type a user name, such as `User1` or `Domain01\User01` or you +can specify a **PSCredential** object. If you specify a user name for this parameter, the cmdlet +prompts for a password. You can also create a **PSCredential** object by using a script or by using the -**Get-Credential** cmdlet. You can then set the _Credential_ parameter to the +`Get-Credential` cmdlet. You can then set the **Credential** parameter to the **PSCredential** object. -If the acting credentials do not have directory-level permission to perform the -task, Active Directory module for Windows PowerShell returns a terminating -error. +If the acting credentials do not have directory-level permission to perform the task, the cmdlet +returns a terminating error. ```yaml Type: PSCredential @@ -310,11 +307,10 @@ Accept wildcard characters: False Specifies a query string that retrieves Active Directory objects. This string uses the Windows PowerShell Expression Language syntax. The Windows PowerShell -Expression Language syntax provides rich type-conversion support for value types -received by the _Filter_ parameter. The syntax uses an in-order representation, -which means that the operator is placed between the operand and the value. For -more information about the _Filter_ parameter, type `Get-Help` -[about_ActiveDirectory_Filter](/previous-versions/windows/server/hh531527(v=ws.10)). +Expression Language syntax provides rich type-conversion support for value types received by the +**Filter** parameter. The syntax uses an in-order representation, which means that the operator is +placed between the operand and the value. For more information about the **Filter** parameter, type +`Get-Help` [about_ActiveDirectory_Filter](/previous-versions/windows/server/hh531527(v=ws.10)). Syntax: @@ -339,10 +335,11 @@ PowerShell Expression Language for this parameter. For a list of supported types for \, type `Get-Help about_ActiveDirectory_ObjectModel`. -Note: Windows PowerShell wildcards other than \*, such as ?, are not supported -by the _Filter_ syntax. +> [!NOTE] +> Wildcards other than `*`, such as `?`, are not supported by the **Filter** syntax. -Note: To query using LDAP query strings, use the _LDAPFilter_ parameter. +> [!NOTE] +> To query using LDAP query strings, use the **LDAPFilter** parameter. ```yaml Type: String @@ -363,9 +360,9 @@ The identifier in parentheses is the LDAP display name for the attribute. The acceptable values for this parameter are: - A distinguished name -- A GUID (objectGUID) -- A security identifier (objectSid) -- A Security Accounts Manager account name (sAMAccountName) +- A GUID (`objectGUID`) +- A security identifier (`objectSid`) +- A Security Accounts Manager account name (`sAMAccountName`) The cmdlet searches the default naming context or partition to find the object. If the identifier given is a distinguished name, the partition to search is @@ -390,9 +387,9 @@ Accept wildcard characters: False ### -LDAPFilter Specifies an LDAP query string that is used to filter Active Directory objects. -You can use this parameter to run your existing LDAP queries. The _Filter_ +You can use this parameter to run your existing LDAP queries. The **Filter** parameter syntax supports the same functionality as the LDAP syntax. For more -information, see the _Filter_ parameter description or type `Get-Help` +information, see the **Filter** parameter description or type `Get-Help` [about_ActiveDirectory_Filter](/previous-versions/windows/server/hh531527(v=ws.10)). ```yaml @@ -411,36 +408,35 @@ Accept wildcard characters: False Specifies the distinguished name of an Active Directory partition. The distinguished name must be one of the naming contexts on the current directory server. -The cmdlet searches this partition to find the object defined by the _Identity_ parameter. +The cmdlet searches this partition to find the object defined by the **Identity** parameter. -In many cases, a default value is used for the _Partition_ parameter if no value +In many cases, a default value is used for the **Partition** parameter if no value is specified. The rules for determining the default value are given below. Note that rules listed first are evaluated first and once a default value can be determined, no further rules are evaluated. In Active Directory Domain Services environments, a default value for -_Partition_ is set in the following cases: +**Partition** is set in the following cases: -- If the _Identity_ parameter is set to a distinguished name, the default value - of _Partition_ is automatically generated from this distinguished name. -- If running cmdlets from an Active Directory provider drive, the default value - of _Partition_ is automatically generated from the current path in the drive. -- If none of the previous cases apply, the default value of _Partition_ is set - to the default partition or naming context of the target domain. +- If the **Identity** parameter is set to a distinguished name, the default value of **Partition** + is automatically generated from this distinguished name. +- If running cmdlets from an Active Directory provider drive, the default value of **Partition** is + automatically generated from the current path in the drive. +- If none of the previous cases apply, the default value of **Partition** is set to the default + partition or naming context of the target domain. In Active Directory Lightweight Directory Services (AD LDS) environments, a -default value for _Partition_ is set in the following cases: - -- If the _Identity_ parameter is set to a distinguished name, the default value - of _Partition_ is automatically generated from this distinguished name. -- If running cmdlets from an Active Directory provider drive, the default value - of _Partition_ is automatically generated from the current path in the drive. -- If the target AD LDS instance has a default naming context, the default value - of _Partition_ is set to the default naming context. To specify a default - naming context for an AD LDS environment, set the - **msDS-defaultNamingContext** property of the Active Directory directory - service agent (DSA) object (**nTDSDSA**) for the AD LDS instance. -- If none of the previous cases apply, the _Partition_ parameter will not take any default value. +default value for **Partition** is set in the following cases: + +- If the **Identity** parameter is set to a distinguished name, the default value of **Partition** + is automatically generated from this distinguished name. +- If running cmdlets from an Active Directory provider drive, the default value of **Partition** is + automatically generated from the current path in the drive. +- If the target AD LDS instance has a default naming context, the default value of **Partition** is + set to the default naming context. To specify a default naming context for an AD LDS environment, + set the **msDS-defaultNamingContext** property of the Active Directory directory service agent + (DSA) object (**nTDSDSA**) for the AD LDS instance. +- If none of the previous cases apply, the **Partition** parameter will not take any default value. ```yaml Type: String @@ -466,9 +462,8 @@ To specify an individual extended property, use the name of the property. For properties that are not default or extended properties, you must specify the LDAP display name of the attribute. -To retrieve properties and display them for an object, you can use the Get-* -cmdlet associated with the object and pass the output to the **Get-Member** -cmdlet. +To retrieve properties and display them for an object, you can use the `Get-*` cmdlet associated +with the object and pass the output to the `Get-Member` cmdlet. ```yaml Type: String[] @@ -540,10 +535,9 @@ agent object (**nTDSDSA**) for the AD LDS instance. If no default naming context has been specified for the target AD LDS instance, then this parameter has no default value. -When the value of the _SearchBase_ parameter is set to an empty string and you -are connected to a global catalog port, all partitions are searched. If the -value of the _SearchBase_ parameter is set to an empty string and you are not -connected to a global catalog port, an error is thrown. +When the value of the **SearchBase** parameter is set to an empty string and you are connected to a +global catalog port, all partitions are searched. If the value of the **SearchBase** parameter is +set to an empty string and you are not connected to a global catalog port, an error is thrown. ```yaml Type: String @@ -607,7 +601,7 @@ Directory server values: The default value for this parameter is determined by one of the following methods in the order that they are listed: -- By using the _Server_ value from objects passed through the pipeline +- By using the **Server** value from objects passed through the pipeline - By using the server information associated with the Active Directory Domain Services Windows PowerShell provider drive, when the cmdlet runs in that drive - By using the domain of the computer running Windows PowerShell @@ -636,7 +630,7 @@ For more information, see ### None or Microsoft.ActiveDirectory.Management.ADComputer -A computer object is received by the _Identity_ parameter. +A computer object is received by the **Identity** parameter. ## OUTPUTS @@ -645,10 +639,10 @@ A computer object is received by the _Identity_ parameter. Returns one or more computer objects. This Get-ADComputer cmdlet returns a default set of **ADComputer** property values. -To retrieve additional **ADComputer** properties, use the _Properties_ parameter of this cmdlet. +To retrieve additional **ADComputer** properties, use the **Properties** parameter of this cmdlet. To view the properties for an **ADComputer** object, see the following examples. -To run these examples, replace \ with a computer identifier such as +To run these examples, replace `` with a computer identifier such as the SAM account name of your local computer. To get a list of the default set of properties of an ADComputer object, use the following command: @@ -661,9 +655,9 @@ To get a list of all the properties of an ADComputer object, use the following c ## NOTES -- This cmdlet does not work with AD LDS with its default schema. By default AD - LDS schema does not have a computer class, but if the schema is extended to - include it, this cmdlet will work with LDS. +- This cmdlet doesn't work with AD LDS with its default schema. By default the AD LDS schema + doesn't have a computer class, but if the schema is extended to include it, this cmdlet will work + with LDS. ## RELATED LINKS From 0665642736c7242c7f03e8336383025aa3aa061f Mon Sep 17 00:00:00 2001 From: Dimitriy Ryazantcev Date: Sun, 14 May 2023 03:18:20 +0300 Subject: [PATCH 755/965] Update Set-WinUserLanguageList.md Add link --- .../winserver2022-ps/international/Set-WinUserLanguageList.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/international/Set-WinUserLanguageList.md b/docset/winserver2022-ps/international/Set-WinUserLanguageList.md index 4a823b406c..67f418f570 100644 --- a/docset/winserver2022-ps/international/Set-WinUserLanguageList.md +++ b/docset/winserver2022-ps/international/Set-WinUserLanguageList.md @@ -144,7 +144,7 @@ The name of the language in the current Windows display language. The writing system of the language. - **Input methods** (READ/WRITE). A list of input method Tablet Input Panel (TIP) strings that are enabled for this language. -The enabled input methods are listed in the format `Language ID: Keyboard layout ID`. +The enabled input methods are listed in the format `Language ID:Keyboard layout ID`. See [Default input profiles (input locales) in Windows](/windows-hardware/manufacture/desktop/default-input-locales-for-windows-language-packs). - **Handwriting recognition input mode** (READ/WRITE). This value is either 0 (freehand) or 1 (write each character separately). From f02b1bf82adea0a670fe76221d4d708648a6f950 Mon Sep 17 00:00:00 2001 From: Thomas Nieto <38873752+ThomasNieto@users.noreply.github.com> Date: Thu, 27 Apr 2023 17:50:40 -0500 Subject: [PATCH 756/965] Fix style guide Appx module --- .../appx/Add-AppSharedPackageContainer.md | 42 ++- .../winserver2022-ps/appx/Add-AppxPackage.md | 276 ++++++++++++------ .../winserver2022-ps/appx/Add-AppxVolume.md | 39 ++- docset/winserver2022-ps/appx/Appx.md | 40 ++- .../appx/Dismount-AppxVolume.md | 35 ++- .../appx/Get-AppSharedPackageContainer.md | 34 ++- .../appx/Get-AppxDefaultVolume.md | 21 +- .../appx/Get-AppxLastError.md | 20 +- docset/winserver2022-ps/appx/Get-AppxLog.md | 53 ++-- .../winserver2022-ps/appx/Get-AppxPackage.md | 92 +++--- .../appx/Get-AppxPackageAutoUpdateSettings.md | 54 ++-- .../appx/Get-AppxPackageManifest.md | 67 +++-- .../winserver2022-ps/appx/Get-AppxVolume.md | 46 ++- .../appx/Invoke-CommandInDesktopPackage.md | 91 ++++-- .../winserver2022-ps/appx/Mount-AppxVolume.md | 35 ++- .../winserver2022-ps/appx/Move-AppxPackage.md | 61 ++-- .../appx/Remove-AppSharedPackageContainer.md | 29 +- .../appx/Remove-AppxPackage.md | 68 +++-- .../appx/Remove-AppxVolume.md | 37 ++- .../appx/Reset-AppSharedPackageContainer.md | 36 ++- .../appx/Reset-AppxPackage.md | 33 ++- .../appx/Set-AppxDefaultVolume.md | 41 ++- .../appx/Set-AppxPackageAutoUpdateSettings.md | 134 ++++++--- 23 files changed, 892 insertions(+), 492 deletions(-) diff --git a/docset/winserver2022-ps/appx/Add-AppSharedPackageContainer.md b/docset/winserver2022-ps/appx/Add-AppSharedPackageContainer.md index 008d4131e7..0480c58965 100644 --- a/docset/winserver2022-ps/appx/Add-AppSharedPackageContainer.md +++ b/docset/winserver2022-ps/appx/Add-AppSharedPackageContainer.md @@ -1,30 +1,35 @@ --- external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml -Module Name: appx +Module Name: Appx +ms.date: 05/15/2023 online version: https://learn.microsoft.com/powershell/module/appx/add-appsharedpackagecontainer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 +title: Add-AppSharedPackageContainer --- # Add-AppSharedPackageContainer ## SYNOPSIS -Deploys the shared package container definiton. +Deploys the shared package container definition. ## SYNTAX ``` -Add-AppSharedPackageContainer [-Path] [-ForceApplicationShutdown] [-Merge] [-Force] - [] +Add-AppSharedPackageContainer [-Path] [-ForceApplicationShutdown] [-Merge] + [-Force] [] ``` ## DESCRIPTION -The Add-AppSharedPackageContainer cmdlet deploys the shared package container definiton for the particular user. + +The `Add-AppSharedPackageContainer` cmdlet deploys the shared package container definition for the +particular user. ## EXAMPLES ### Example 1 + ```powershell -PS C:\> Add-AppSharedPackageContainer -Path C:\MyFolder\ContosoTestContainer.xml +Add-AppSharedPackageContainer -Path C:\MyFolder\ContosoTestContainer.xml ``` This command deploys the definition described in the ContosoTestContainer file. @@ -32,12 +37,12 @@ This command deploys the definition described in the ContosoTestContainer file. ## PARAMETERS ### -Force -Replaces an existing container of the same name with the newly created -container's definition for the target user(s). +Replaces an existing container of the same name with the newly created container's definition for +the target users. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -49,10 +54,11 @@ Accept wildcard characters: False ``` ### -ForceApplicationShutdown + Closes all packages currently running in the Shared Package Container. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -64,12 +70,12 @@ Accept wildcard characters: False ``` ### -Merge -Merges a new container's definition into an existing container -definition of the same name for target user(s). +Merges a new container's definition into an existing container definition of the same name for +target users. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -81,10 +87,11 @@ Accept wildcard characters: False ``` ### -Path + Path to the XML definition file. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: PSPath @@ -96,7 +103,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -105,6 +116,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS ### System.Object + ## NOTES ## RELATED LINKS diff --git a/docset/winserver2022-ps/appx/Add-AppxPackage.md b/docset/winserver2022-ps/appx/Add-AppxPackage.md index ddf5efa53c..6a31b475b0 100644 --- a/docset/winserver2022-ps/appx/Add-AppxPackage.md +++ b/docset/winserver2022-ps/appx/Add-AppxPackage.md @@ -2,7 +2,7 @@ description: Adds a signed app package to a user account. external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-help.xml Module Name: Appx -ms.date: 01/31/2022 +ms.date: 05/15/2023 online version: https://learn.microsoft.com/powershell/module/appx/add-appxpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AppxPackage @@ -16,23 +16,26 @@ Adds a signed app package to a user account. ## SYNTAX ### AddSet (Default) + ``` Add-AppxPackage [-Path] [-DependencyPath ] [-RequiredContentGroupOnly] [-ForceApplicationShutdown] [-ForceTargetApplicationShutdown] [-ForceUpdateFromAnyVersion] - [-RetainFilesOnFailure] [-InstallAllResources] [-Volume ] [-ExternalPackages ] - [-OptionalPackages ] [-RelatedPackages ] [-ExternalLocation ] - [-DeferRegistrationWhenPackagesAreInUse] [-StubPackageOption ] [-AllowUnsigned] [-WhatIf] - [-Confirm] [] + [-RetainFilesOnFailure] [-InstallAllResources] [-Volume ] + [-ExternalPackages ] [-OptionalPackages ] [-RelatedPackages ] + [-ExternalLocation ] [-DeferRegistrationWhenPackagesAreInUse] + [-StubPackageOption ] [-AllowUnsigned] [-WhatIf] [-Confirm] [] ``` ### AddByAppInstallerSet + ``` Add-AppxPackage [-Path] [-RequiredContentGroupOnly] [-AppInstallerFile] - [-ForceTargetApplicationShutdown] [-InstallAllResources] [-LimitToExistingPackages] [-Volume ] - [-WhatIf] [-Confirm] [] + [-ForceTargetApplicationShutdown] [-InstallAllResources] [-LimitToExistingPackages] + [-Volume ] [-WhatIf] [-Confirm] [] ``` ### RegisterSet + ``` Add-AppxPackage [-Path] [-DependencyPath ] [-Register] [-DisableDevelopmentMode] [-ForceApplicationShutdown] [-ForceTargetApplicationShutdown] [-ForceUpdateFromAnyVersion] @@ -40,6 +43,7 @@ Add-AppxPackage [-Path] [-DependencyPath ] [-Register] [-Disa ``` ### UpdateSet + ``` Add-AppxPackage [-Path] [-DependencyPath ] [-RequiredContentGroupOnly] [-ForceApplicationShutdown] [-ForceTargetApplicationShutdown] [-ForceUpdateFromAnyVersion] @@ -47,6 +51,7 @@ Add-AppxPackage [-Path] [-DependencyPath ] [-RequiredContentG ``` ### StageSet + ``` Add-AppxPackage [-Path] [-DependencyPath ] [-RequiredContentGroupOnly] [-Stage] [-ForceUpdateFromAnyVersion] [-Volume ] [-ExternalPackages ] @@ -55,13 +60,15 @@ Add-AppxPackage [-Path] [-DependencyPath ] [-RequiredContentG ``` ### RegisterByPackageFullNameSet + ``` -Add-AppxPackage [-Register] -MainPackage [-DependencyPackages ] [-ForceApplicationShutdown] - [-ForceTargetApplicationShutdown] [-ForceUpdateFromAnyVersion] [-InstallAllResources] [-WhatIf] [-Confirm] - [] +Add-AppxPackage [-Register] -MainPackage [-DependencyPackages ] + [-ForceApplicationShutdown] [-ForceTargetApplicationShutdown] [-ForceUpdateFromAnyVersion] + [-InstallAllResources] [-WhatIf] [-Confirm] [] ``` ### RegisterByPackageFamilyNameSet + ``` Add-AppxPackage [-RegisterByFamilyName] -MainPackage [-DependencyPackages ] [-ForceApplicationShutdown] [-ForceTargetApplicationShutdown] [-InstallAllResources] @@ -69,19 +76,22 @@ Add-AppxPackage [-RegisterByFamilyName] -MainPackage [-DependencyPackag ``` ## DESCRIPTION -The **Add-AppxPackage** cmdlet adds a signed app package to a user account. -An app package has an .msix or .appx file name extension. -Use the *DependencyPath* parameter to add all other packages that are required for the installation of the app package. -You can use the *Register* parameter to install from a folder of unpackaged files during development of Windows® Store apps. +The `Add-AppxPackage` cmdlet adds a signed app package to a user account. An app package has an +`.msix` or `.appx` filename extension. Use the **DependencyPath** parameter to add all other +packages required for the installation of the app package. + +You can use the **Register** parameter to install from a folder of unpackaged files during +development of Windows Store apps. To update an already installed package, the new package must have the same package family name. ## EXAMPLES ### Example 1: Add an app package + ```powershell -PS C:\> Add-AppxPackage -Path "C:\Users\user1\Desktop\MyApp.msix" -DependencyPath "C:\Users\user1\Desktop\winjs.msix" +Add-AppxPackage -Path '.\MyApp.msix' -DependencyPath '.\winjs.msix' ``` This command adds an app package that the package contains. @@ -89,42 +99,64 @@ This command adds an app package that the package contains. ### Example 2: Update an app, but defer registration until the app has closed ```powershell -Add-AppxPackage -Path "C:\Users\user1\Desktop\MyApp.msix" -DependencyPath "C:\Users\user1\Desktop\winjs.msix" -DeferRegistrationWhenPackagesAreInUse +$params = @{ + Path = '.\MyApp.msix' + DependencyPath = '.\winjs.msix' + DeferRegistrationWhenPackagesAreInUse = $true +} +Add-AppxPackage @params ``` -This command will register an update to an existing app, but will not do so until the next launch of the app. +This command will register an update to an existing app, but won't do so until the next launch of +the app. ### Example 3: Add a disabled app package in development mode + ```powershell -$ManifestPath = (Get-AppxPackage -Name "*WindowsCalculator*").InstallLocation + "\Appxmanifest.xml" +$InstallLocation = Get-AppxPackage -Name '*WindowsCalculator*' | + Select-Object -ExpandProperty InstallLocation +$ManifestPath = $InstallLocation + '\Appxmanifest.xml' Add-AppxPackage -Path $ManifestPath -Register -DisableDevelopmentMode ``` -This command gets the full path of the package manifest file of an installed Windows Store app, and then registers that package. -You can use *DisableDevelopmentMode* to register an application that is staged by the **StagePackageAsync** API, has been disabled, or has become corrupted during testing. +This command gets the full path of the package manifest file of an installed Windows Store app, and +then registers that package. You can use **DisableDevelopmentMode** to register an application +that's staged by the **StagePackageAsync** API, has been disabled, or has become corrupted during +testing. ### Example 4: Add an app along with its optional packages + ```powershell -Add-AppxPackage -Path "C:\Users\user1\Desktop\MyApp.msixbundle" -ExternalPackages "C:\Users\user1\Desktop\optionalpackage1.msix","C:\Users\user1\Desktop\optionalpackage2.msixbundle" +Add-AppxPackage -Path '.\MyApp.msixbundle' -ExternalPackages @( + '.\optionalpackage1.msix' + '.\optionalpackage2.msixbundle' +) -Add-AppxPackage -Path "C:\Users\user1\Desktop\MyApp.msixbundle" -OptionalPackages "29270sandstorm.OptionalPackage1_gah1vdar1nn7a" +Add-AppxPackage -Path '.\MyApp.msixbundle' -OptionalPackages '29270sandstorm.OptionalPackage1_gah1vdar1nn7a' ``` -This command adds an app package along with its optional packages. It is an atomic operation which means that if the app or its optional packages fail to install, the deployment operation will be aborted +This command adds an app package along with its optional packages. It's an atomic operation, which +means that if the app or its optional packages fail to install, the deployment operation will be +aborted ### Example 5: Install only the required section of a streaming app + ```powershell -Add-AppxPackage -Path "C:\Users\user1\Desktop\MyApp.msixbundle" -RequiredContentGroupOnly +Add-AppxPackage -Path '.\MyApp.msixbundle' -RequiredContentGroupOnly ``` -This command adds an app package but only installs the required section of a streaming app. Calling this command again without the RequiredContentGroupOnly flag proceeds to install the rest of the application in the order defined by the AppxContentGroupMap.xml +This command adds an app package but only installs the required section of a streaming app. Calling +this command again without the **RequiredContentGroupOnly** parameter proceeds to install the rest +of the application in the order defined by the `AppxContentGroupMap.xml` ### Example 6: Install an app using the App Installer file + ```powershell Add-AppxPackage -AppInstallerFile "C:\Users\user1\Desktop\MyApp.appinstaller" ``` -This command adds an app package as outlined in the App Installer file with all update settings specified within the App Installer file, if any. +This command adds an app package as outlined in the App Installer file with all update settings +specified within the App Installer file, if any. ## PARAMETERS @@ -133,7 +165,7 @@ This command adds an app package as outlined in the App Installer file with all Allows adding an unsigned package. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: AddSet Aliases: @@ -145,11 +177,13 @@ Accept wildcard characters: False ``` ### -AppInstallerFile -Runs an appinstaller file and allows the user to install all of the defined packages with a single click. -For more information, see [Create an App Installer file manually](/windows/msix/app-installer/how-to-create-appinstaller-file). + +Runs an appinstaller file and allows the user to install all the defined packages with a single +click. For more information, see +[Create an App Installer file manually](/windows/msix/app-installer/how-to-create-appinstaller-file). ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: AddByAppInstallerSet Aliases: @@ -161,11 +195,12 @@ Accept wildcard characters: False ``` ### -DeferRegistrationWhenPackagesAreInUse -Specifies that the app will not register for a user if currently in use. The app will update on the next launch. +Specifies that the app won't register for a user if currently in use. The app will update on the +next launch. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: AddSet Aliases: @@ -177,10 +212,11 @@ Accept wildcard characters: False ``` ### -DependencyPackages + Specifies the dependency package full name or dependency package bundle full name to be registered. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: RegisterByPackageFullNameSet, RegisterByPackageFamilyNameSet Aliases: @@ -192,12 +228,14 @@ Accept wildcard characters: False ``` ### -DependencyPath -Specifies an array of file paths of dependency packages that are required for the installation of the app package. -The app package has an .msix, .appx, .msixbundle, or .appxbundle file name extension. You can specify the paths to more than one dependency package. -If a package is already installed for a user, you can skip adding it to the DependencyPath. + +Specifies an array of file paths of dependency packages that are required for the installation of +the app package. The app package has an `.msix`, `.appx`, `.msixbundle`, or `.appxbundle` filename +extension. You can specify the paths to more than one dependency package. If a package is already +installed for a user, you can skip adding it to the DependencyPath. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: AddSet, RegisterSet, UpdateSet, StageSet Aliases: @@ -209,13 +247,17 @@ Accept wildcard characters: False ``` ### -DisableDevelopmentMode -Indicates that this cmdlet registers an existing app package installation that has been disabled, did not register, or has become corrupted. -Use the current parameter to specify that the manifest is from an existing installation, and not from a collection of files in development mode. -You can also use this parameter to register an application that the [Package Manager API](https://go.microsoft.com/fwlink/?LinkId=245447) has staged. -Use the *Register* parameter to specify the location of the app package manifest .xml file from the installation location. + +Indicates that this cmdlet registers an existing app package installation that has been disabled, +didn't register, or has become corrupted. Use the current parameter to specify that the manifest is +from an existing installation, and not from a collection of files in development mode. You can also +use this parameter to register an application that the +[Package Manager API](https://go.microsoft.com/fwlink/?LinkId=245447) has staged. Use the +**Register** parameter to specify the location of the app package manifest `.xml` file from the +installation location. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: RegisterSet Aliases: @@ -232,7 +274,7 @@ URI path of an external disk location outside of the MSIX package where the pack reference application content. ```yaml -Type: String +Type: System.String Parameter Sets: AddSet, RegisterSet, StageSet Aliases: @@ -244,10 +286,13 @@ Accept wildcard characters: False ``` ### -ExternalPackages -Specifies an array of optional packages that must be installed along with the app package. It is an atomic operation which means that if the app or its optional packages fail to install, the deployment operation will be aborted + +Specifies an array of optional packages that must be installed along with the app package. It's an +atomic operation, which means that if the app or its optional packages fail to install, the +deployment operation will be aborted. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: AddSet, StageSet Aliases: @@ -259,11 +304,13 @@ Accept wildcard characters: False ``` ### -ForceApplicationShutdown -Indicates that this cmdlet forces all active processes that are associated with the package or its dependencies to shut down. -If you specify this parameter, do not specify the *ForceTargetApplicationShutdown* parameter. + +Indicates that this cmdlet forces all active processes associated with the package or its +dependencies to shut down. If you specify this parameter, don't specify the +**ForceTargetApplicationShutdown** parameter. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: AddSet, RegisterSet, UpdateSet, RegisterByPackageFullNameSet, RegisterByPackageFamilyNameSet Aliases: @@ -275,11 +322,12 @@ Accept wildcard characters: False ``` ### -ForceTargetApplicationShutdown -Indicates that this cmdlet forces all active processes that are associated with the package to shut down. -If you specify this parameter, do not specify the *ForceApplicationShutdown* parameter. + +Indicates that this cmdlet forces all active processes associated with the package to shut down. If +you specify this parameter, don't specify the **ForceApplicationShutdown** parameter. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: AddSet, AddByAppInstallerSet, RegisterSet, UpdateSet, RegisterByPackageFullNameSet, RegisterByPackageFamilyNameSet Aliases: @@ -291,10 +339,12 @@ Accept wildcard characters: False ``` ### -ForceUpdateFromAnyVersion -This parameter is used to force a specific version of a package to be staged/registered, regardless of whether a higher version is already staged/registered. + +This parameter is used to force a specific version of a package to be staged or registered, +regardless of whether a higher version is already staged or registered. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: AddSet, RegisterSet, UpdateSet, StageSet, RegisterByPackageFullNameSet Aliases: @@ -306,12 +356,15 @@ Accept wildcard characters: False ``` ### -InstallAllResources -Indicates that this cmdlet forces the deployment of all resource packages specified from a bundle argument. -This overrides the resource applicability check of the deployment engine and forces staging of all resource packages, registration of all resource packages, or staging and registration of all resource packages. -This parameter can only be used when specifying a resource bundle or resource bundle manifest. + +Indicates that this cmdlet forces the deployment of all resource packages specified from a bundle +argument. This overrides the resource applicability check of the deployment engine and forces +staging of all resource packages, registration of all resource packages, or staging and registration +of all resource packages. This parameter can only be used when specifying a resource bundle or +resource bundle manifest. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: AddSet, AddByAppInstallerSet, RegisterSet, UpdateSet, RegisterByPackageFullNameSet, RegisterByPackageFamilyNameSet Aliases: @@ -323,10 +376,11 @@ Accept wildcard characters: False ``` ### -LimitToExistingPackages + This parameter is used to prevent missing referenced packages to be downloaded. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: AddByAppInstallerSet Aliases: @@ -338,10 +392,11 @@ Accept wildcard characters: False ``` ### -MainPackage + Specifies the main package full name or bundle full name to register. ```yaml -Type: String +Type: System.String Parameter Sets: RegisterByPackageFullNameSet, RegisterByPackageFamilyNameSet Aliases: @@ -353,10 +408,14 @@ Accept wildcard characters: False ``` ### -OptionalPackages -Specifies the PackageFamilyName of the optional packages that are in a related set that need to be installed along with the app. Unlike the external packages flag, you do not need to pass in a path to the optional package(s). It is an atomic operation which means that if the app or its optional packages fail to install, the deployment operation will be aborted + +Specifies the PackageFamilyName of the optional packages that are in a related set that need to be +installed along with the app. Unlike the external packages flag, you don't need to pass in a path +to the optional packages. It's an atomic operation, which means that if the app or its optional +packages fail to install, the deployment operation will be aborted. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: AddSet, StageSet, RegisterByPackageFamilyNameSet Aliases: @@ -368,11 +427,12 @@ Accept wildcard characters: False ``` ### -Path -Specifies the file path of the app package. -An app package has an .msix, .appx, .msixbundle, or .appxbundle file name extension. + +Specifies the path to the app package file. An app package has an `.msix`, `.appx`, `.msixbundle`, +or `.appxbundle` filename extension. ```yaml -Type: String +Type: System.String Parameter Sets: AddSet, AddByAppInstallerSet, RegisterSet, UpdateSet, StageSet Aliases: PSPath @@ -384,14 +444,16 @@ Accept wildcard characters: False ``` ### -Register -Indicates that this cmdlet registers an application in development mode. -You can use development mode to install applications from a folder of unpackaged files. -You can use the current parameter to test your Windows® Store apps before you deploy them as app packages. -To register an existing app package installation, you must specify the *DisableDevelopmentMode* parameter and the *Register* parameter. -In order to specify dependency packages, specify the *DependencyPath* parameter and the *DisableDevelopmentMode* parameter. + +Indicates that this cmdlet registers an application in development mode. You can use development +mode to install applications from a folder of unpackaged files. You can use the current parameter +to test your Windows Store apps before you deploy them as app packages. To register an existing app +package installation, you must specify the **DisableDevelopmentMode** parameter and the +**Register** parameter. To specify dependency packages, use the **DependencyPath** parameter and +the **DisableDevelopmentMode** parameter. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: RegisterSet Aliases: @@ -403,7 +465,7 @@ Accept wildcard characters: False ``` ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: RegisterByPackageFullNameSet Aliases: @@ -415,10 +477,11 @@ Accept wildcard characters: False ``` ### -RegisterByFamilyName + Specifies the parameter -MainPackage that defines the family name or full name to be registered. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: RegisterByPackageFamilyNameSet Aliases: @@ -430,10 +493,12 @@ Accept wildcard characters: False ``` ### -RelatedPackages -This is an optional element that is used to specify the other optional packages that are specified in the main app package. These packages will not be installed as part of the deployment operation. + +This is an optional element that's used to specify the other optional packages that are specified +in the main app package. These packages won't be installed as part of the deployment operation. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: AddSet, StageSet Aliases: @@ -445,10 +510,14 @@ Accept wildcard characters: False ``` ### -RequiredContentGroupOnly -Specifies that only the required content group that is specified in the AppxContentGroupMap.xml must be installed. At this point the app can be launched. Calling add-appxpackage specifying the path to the app, triggers the rest of the app to be installed in the order defined in the AppxContentGroupMap.xml. + +Specifies that only the required content group that's specified in the `AppxContentGroupMap.xml` +must be installed. At this point the app can be launched. Calling `Add-AppxPackage` and specifying +the path to the app triggers the rest of the app to be installed in the order defined in the +`AppxContentGroupMap.xml`. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: AddSet, AddByAppInstallerSet, UpdateSet, StageSet Aliases: @@ -460,10 +529,12 @@ Accept wildcard characters: False ``` ### -RetainFilesOnFailure -In the case of a failed deployment, if this switch is set to $true, files that have been created on the target machine during the installation process are not removed. + +In case of a failed deployment, if this switch is set to `$true`, files that have been created on +the target machine during the installation process aren't removed. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: AddSet, UpdateSet Aliases: @@ -475,10 +546,11 @@ Accept wildcard characters: False ``` ### -Stage + Stages a package to the system without registering it. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: StageSet Aliases: @@ -491,13 +563,15 @@ Accept wildcard characters: False ### -StubPackageOption -Defines the stub behavior for an app package that is being added or staged. -The acceptable values +Defines the stub behavior for an app package that's being added or staged. The acceptable values for this parameter are: -- Default: Uses the default behavior -- InstallFull: Installs as a full app -- InstallStub: Installs as a stub app -- UsePreference: Uses the current [PackageSubPreference](/uwp/api/windows.management.deployment.packagestubpreference) for the package + +- `Default`: Uses the default behavior +- `InstallFull`: Installs as a full app +- `InstallStub`: Installs as a stub app +- `UsePreference`: Uses the current + [PackageSubPreference](/uwp/api/windows.management.deployment.packagestubpreference) for the + package ```yaml Type: StubPackageOption @@ -512,13 +586,15 @@ Accept wildcard characters: False ``` ### -Update -Specifies that the package being added is a dependency package update. -A dependency package is removed from the user account when the parent app is removed. -If you do not use this parameter, the package being added is a primary package and is not removed from the user account if the parent app is removed. -To update an already installed package, the new package must have the same package family name. + +Specifies that the package being added is a dependency package update. A dependency package is +removed from the user account when the parent app is removed. If you don't use this parameter, the +package being added is a primary package and isn't removed from the user account if the parent app +is removed. To update an already installed package, the new package must have the same package +family name. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: UpdateSet Aliases: @@ -530,8 +606,9 @@ Accept wildcard characters: False ``` ### -Volume -Specifies the **AppxVolume** object to which to stage the package. -The volume also specifies the default location for user **AppData**. + +Specifies the **AppxVolume** object to stage the package in. The volume also specifies the default +location for user **AppData**. ```yaml Type: AppxVolume @@ -546,10 +623,11 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -561,11 +639,11 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet isn't run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -577,7 +655,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/docset/winserver2022-ps/appx/Add-AppxVolume.md b/docset/winserver2022-ps/appx/Add-AppxVolume.md index 4ee0d3af6a..980d59ebe0 100644 --- a/docset/winserver2022-ps/appx/Add-AppxVolume.md +++ b/docset/winserver2022-ps/appx/Add-AppxVolume.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: Appx -ms.date: 12/20/2016 +ms.date: 05/15/2023 online version: https://learn.microsoft.com/powershell/module/appx/add-appxvolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-AppxVolume @@ -20,28 +20,31 @@ Add-AppxVolume [-Path] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Add-AppxVolume** cmdlet adds an **AppxVolume** for the Package Manager to advertise. -After you add a volume, appx deployment operations can use that volume as a target. -This cmdlet returns the volume that it adds. -Note, the *Path* parameter must be specified as a drive letter followed by "WindowsApps" as the directory. -Not using the aforementioned format could lead to inconsistent behavior in the application model subsystems or the volume itself; for more information see the examples section. + +The `Add-AppxVolume` cmdlet adds an **AppxVolume** for the Package Manager to advertise. After you +add a volume, Appx deployment operations can use that volume as a target. This cmdlet returns the +volume that it adds. Note, the **Path** parameter must be specified as a drive letter followed by +`WindowsApps` as the directory. Not using this format could lead to inconsistent behavior in the +application model subsystems or the volume itself. For more information, see the examples section. ## EXAMPLES ### Example 1: Add a volume -``` -PS C:\> Add-AppxVolume -Path "E:\WindowsApps" + +```powershell +Add-AppxVolume -Path "E:\WindowsApps" ``` -This command adds the volume E:\WindowsApps to Package Manager. +This command adds the volume `E:\WindowsApps` to Package Manager. ## PARAMETERS ### -Path + Specifies the path of the mount point of the volume that this cmdlet adds. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: (All) Aliases: PSPath @@ -53,10 +56,11 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -68,10 +72,11 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet isn't run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -83,13 +88,18 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ## OUTPUTS ### Microsoft.Appx.PackageManager.Commands.AppxVolume + This cmdlet returns the **AppxVolume** object that it adds. ## NOTES @@ -103,4 +113,3 @@ This cmdlet returns the **AppxVolume** object that it adds. [Mount-AppxVolume](./Mount-AppxVolume.md) [Remove-AppxVolume](./Remove-AppxVolume.md) - diff --git a/docset/winserver2022-ps/appx/Appx.md b/docset/winserver2022-ps/appx/Appx.md index d841c44244..a9ee193671 100644 --- a/docset/winserver2022-ps/appx/Appx.md +++ b/docset/winserver2022-ps/appx/Appx.md @@ -5,81 +5,105 @@ Help Version: 5.0.6.4 Locale: en-US Module Guid: aeef2bef-eba9-4a1d-a3d2-d0b52df76deb Module Name: Appx -ms.date: 03/18/2022 +ms.date: 05/15/2023 title: Appx --- # Appx Module + ## Description -The Windows PowerShell cmdlets for AppX are designed to streamline the administration of MSIX or AppX package management. + +The Windows PowerShell cmdlets for AppX are designed to streamline the administration of MSIX or +AppX package management. ## Appx Cmdlets ### [Add-AppSharedPackageContainer](Add-AppSharedPackageContainer.md) -Deploys the shared package container definiton. + +Deploys the shared package container definition. ### [Add-AppxPackage](Add-AppxPackage.md) + Adds a signed app package to a user account. ### [Add-AppxVolume](Add-AppxVolume.md) + Adds an appx volume to the Package Manager. ### [Dismount-AppxVolume](Dismount-AppxVolume.md) + Dismounts an appx volume. ### [Get-AppSharedPackageContainer](Get-AppSharedPackageContainer.md) + Gets information about the shared package container. ### [Get-AppxDefaultVolume](Get-AppxDefaultVolume.md) + Gets the default appx volume. ### [Get-AppxLastError](Get-AppxLastError.md) + Get the last error reported in the app package installation logs. ### [Get-AppxLog](Get-AppxLog.md) + Gets an app package installation log. ### [Get-AppxPackage](Get-AppxPackage.md) + Gets a list of the app packages that are installed in a user profile. ### [Get-AppxPackageAutoUpdateSettings](Get-AppxPackageAutoUpdateSettings.md) -Provides visibility to the settings configured on a Windows 10 client device for a particular Windows App. + +Provides visibility to the settings configured on a Windows 10 client device for a particular +Windows App. ### [Get-AppxPackageManifest](Get-AppxPackageManifest.md) + Gets the manifest of an app package. ### [Get-AppxVolume](Get-AppxVolume.md) + Gets appx volumes for the computer. ### [Invoke-CommandInDesktopPackage](Invoke-CommandInDesktopPackage.md) + Runs a command in the context of a specified app package. ### [Mount-AppxVolume](Mount-AppxVolume.md) + Mounts an appx volume. ### [Move-AppxPackage](Move-AppxPackage.md) + Moves a package from its current location to another appx volume. ### [Remove-AppSharedPackageContainer](Remove-AppSharedPackageContainer.md) + Removes the shared package container. ### [Remove-AppxPackage](Remove-AppxPackage.md) -Removes an app package from one or more user accounts. -### [Remove-AppxPackageAutoUpdateSettings](Remove-AppxPackageAutoUpdateSettings.md) -{{ Fill in the Synopsis }} +Removes an app package from one or more user accounts. ### [Remove-AppxVolume](Remove-AppxVolume.md) + Removes an appx volume. ### [Reset-AppSharedPackageContainer](Reset-AppSharedPackageContainer.md) + Destroys all the application data of the container. ### [Reset-AppxPackage](Reset-AppxPackage.md) + Use to reset your installed Windows Apps. Restores the Windows app to its initial configuration. ### [Set-AppxDefaultVolume](Set-AppxDefaultVolume.md) + Specifies a default appx volume. ### [Set-AppxPackageAutoUpdateSettings](Set-AppxPackageAutoUpdateSettings.md) -Provides access to configure a specific Windows App's Auto Update and Repair settings. Including pausing update checks. + +Provides access to configure a specific Windows App's Auto Update and Repair settings. Including +pausing update checks. diff --git a/docset/winserver2022-ps/appx/Dismount-AppxVolume.md b/docset/winserver2022-ps/appx/Dismount-AppxVolume.md index 214abd4447..1c9f3d0462 100644 --- a/docset/winserver2022-ps/appx/Dismount-AppxVolume.md +++ b/docset/winserver2022-ps/appx/Dismount-AppxVolume.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: Appx -ms.date: 12/20/2016 +ms.date: 05/15/2023 online version: https://learn.microsoft.com/powershell/module/appx/dismount-appxvolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Dismount-AppxVolume @@ -20,21 +20,24 @@ Dismount-AppxVolume [-Volume] [-WhatIf] [-Confirm] [ Dismount-AppxVolume -Volume E:\ + +```powershell +Dismount-AppxVolume -Volume E:\ ``` -This command dismounts a volume at the path E:\. +This command dismounts a volume at the path `E:\`. ### Example 2: Dismount a volume by using an ID -``` -PS C:\> Dismount-AppxVolume -Volume {7e62a691-398e-4fbe-819a-64f1e407777a} + +```powershell +Dismount-AppxVolume -Volume {7e62a691-398e-4fbe-819a-64f1e407777a} ``` This command dismounts a volume that has the specified media ID. @@ -42,6 +45,7 @@ This command dismounts a volume that has the specified media ID. ## PARAMETERS ### -Volume + Specifies the **AppxVolume** object to dismount. ```yaml @@ -57,10 +61,11 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -72,10 +77,11 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet isn't run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -87,7 +93,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -104,4 +114,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Mount-AppxVolume](./Mount-AppxVolume.md) [Remove-AppxVolume](./Remove-AppxVolume.md) - diff --git a/docset/winserver2022-ps/appx/Get-AppSharedPackageContainer.md b/docset/winserver2022-ps/appx/Get-AppSharedPackageContainer.md index a5e5bb283d..1c246623d2 100644 --- a/docset/winserver2022-ps/appx/Get-AppSharedPackageContainer.md +++ b/docset/winserver2022-ps/appx/Get-AppSharedPackageContainer.md @@ -1,8 +1,10 @@ --- external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: appx +ms.date: 05/15/2023 online version: https://learn.microsoft.com/powershell/module/appx/get-appsharedpackagecontainer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 +title: Get-AppSharedPackageContainer --- # Get-AppSharedPackageContainer @@ -13,20 +15,24 @@ Gets information about the shared package container. ## SYNTAX ``` -Get-AppSharedPackageContainer [[-Name] ] [[-Id] ] [-AllUsers] [] +Get-AppSharedPackageContainer [[-Name] ] [[-Id] ] [-AllUsers] + [] ``` ## DESCRIPTION -The cmdlet shows information about any shared package container. -In particular, it will show what packages are inside the shared package container. + +The cmdlet shows information about any shared package container. In particular, it shows what +packages are inside the shared package container. ## EXAMPLES ### Example 1 -```powershell -PS C:\> Get-AppSharedPackageContainer -Name Contoso* +```powershell +Get-AppSharedPackageContainer -Name Contoso* +``` +```output Name : ContosoTestContainer Id : ContosoTestContainer_1 PackageFamilyNames : {Contoso.SpellCheckPlugin.1.0.0.0_7pneu3d8sswe, Notepad++.2.0.0.1_ohjis898f1} @@ -41,10 +47,11 @@ This command shows the packages in any shared package container that has a prefi ## PARAMETERS ### -AllUsers -Unsupported. Will result in "-AllUsers functionality is not yet implemented" error. + +Unsupported. Will result in `-AllUsers functionality is not yet implemented` error. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -56,10 +63,11 @@ Accept wildcard characters: False ``` ### -Id + Id of the container. Can be acquired by running `Get-AppSharedPackageContainer`. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -71,10 +79,11 @@ Accept wildcard characters: False ``` ### -Name + The name of the container. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -86,7 +95,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -95,6 +108,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS ### System.Object + ## NOTES ## RELATED LINKS diff --git a/docset/winserver2022-ps/appx/Get-AppxDefaultVolume.md b/docset/winserver2022-ps/appx/Get-AppxDefaultVolume.md index b2ef82e7a6..f8db5ddfec 100644 --- a/docset/winserver2022-ps/appx/Get-AppxDefaultVolume.md +++ b/docset/winserver2022-ps/appx/Get-AppxDefaultVolume.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: Appx -ms.date: 12/20/2016 +ms.date: 05/15/2023 online version: https://learn.microsoft.com/powershell/module/appx/get-appxdefaultvolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppxDefaultVolume @@ -20,15 +20,17 @@ Get-AppxDefaultVolume [] ``` ## DESCRIPTION -The **Get-AppxDefaultVolume** cmdlet gets the default **AppxVolume**. -The default **AppxVolume** is the default target for all deployment operations on the computer. -You cannot remove the default **AppxVolume** from the list of volumes. + +The `Get-AppxDefaultVolume` cmdlet gets the default **AppxVolume**. The default **AppxVolume** is +the default target for all deployment operations on the computer. You can't remove the default +**AppxVolume** from the list of volumes. ## EXAMPLES ### Example 1: Get the default volume -``` -PS C:\> Get-AppxDefaultVolume + +```powershell +Get-AppxDefaultVolume ``` This command gets the current default deployment target. @@ -36,7 +38,11 @@ This command gets the current default deployment target. ## PARAMETERS ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -49,4 +55,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS [Set-AppxDefaultVolume](./Set-AppxDefaultVolume.md) - diff --git a/docset/winserver2022-ps/appx/Get-AppxLastError.md b/docset/winserver2022-ps/appx/Get-AppxLastError.md index b2f4ab35b3..150413658d 100644 --- a/docset/winserver2022-ps/appx/Get-AppxLastError.md +++ b/docset/winserver2022-ps/appx/Get-AppxLastError.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-help.xml Module Name: Appx -ms.date: 12/20/2016 +ms.date: 05/15/2023 online version: https://learn.microsoft.com/powershell/module/appx/get-appxlasterror?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppxLastError @@ -20,14 +20,17 @@ Get-AppxLastError [] ``` ## DESCRIPTION -The **Get-AppxLastError** cmdlet gets the last error reported in the app package installation logs for the current Windows PowerShell® session. -An app package has an .msix or .appx file name extension. + +The `Get-AppxLastError` cmdlet gets the last error reported in the app package installation logs +for the current Windows PowerShell session. An app package has an `.msix` or `.appx` file +extension. ## EXAMPLES ### Example 1: Get the last error -``` -PS C:\> Get-AppxLastError + +```powershell +Get-AppxLastError ``` This command gets the last error reported in the app installation logs. @@ -35,7 +38,11 @@ This command gets the last error reported in the app installation logs. ## PARAMETERS ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -58,4 +65,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Get-AppxPackageManifest](./Get-AppxPackageManifest.md) [Get-AppxLog](./Get-AppxLog.md) - diff --git a/docset/winserver2022-ps/appx/Get-AppxLog.md b/docset/winserver2022-ps/appx/Get-AppxLog.md index f0c55eee1f..5be4ced937 100644 --- a/docset/winserver2022-ps/appx/Get-AppxLog.md +++ b/docset/winserver2022-ps/appx/Get-AppxLog.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-help.xml Module Name: Appx -ms.date: 12/20/2016 +ms.date: 05/15/2023 online version: https://learn.microsoft.com/powershell/module/appx/get-appxlog?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppxLog @@ -16,36 +16,44 @@ Gets an app package installation log. ## SYNTAX ### All (Default) + ``` Get-AppxLog [-All] [] ``` ### ActivityId + ``` -Get-AppxLog [-ActivityId ] [] +Get-AppxLog [-ActivityId ] [] ``` ## DESCRIPTION -The **Get-AppxLog** cmdlet gets the app package installation log created during the deployment of an app package. -An app package has an .msix or .appx file name extension. -The log contains errors, warnings, and additional information about the processes initiated by cmdlets in the Appx Windows PowerShell® module. -When Add-AppxPackage or Remove-AppxPackage report a failure, they return the **ActivityID** to use with **Get-AppxLog**. +The `Get-AppxLog` cmdlet gets the app package installation log created during the deployment of +an app package. An app package has an `.msix` or `.appx` file extension. The log contains errors, +warnings, and additional information about the processes initiated by cmdlets in the Appx Windows +PowerShell module. + +When `Add-AppxPackage` or `Remove-AppxPackage` report a failure, they return the **ActivityID** to +use with `Get-AppxLog`. -For more information about common error codes, see [Troubleshooting packaging, deployment, and query of Windows Store apps](https://go.microsoft.com/fwlink/?LinkId=271201). +For more information about common error codes, see +[Troubleshooting packaging, deployment, and query of Windows Store apps](https://go.microsoft.com/fwlink/?LinkId=271201). ## EXAMPLES ### Example 1: Get logs for the most recent deployment -``` -PS C:\> Get-AppxLog + +```powershell +Get-AppxLog ``` This command gets the logs associated with the most recent deployment operation. ### Example 2: Get logs for all logs -``` -PS C:\> Get-AppxLog -All + +```powershell +Get-AppxLog -All ``` This command gets all the app package installation logs on the computer. @@ -53,11 +61,12 @@ This command gets all the app package installation logs on the computer. ## PARAMETERS ### -ActivityId -Specifies an activity ID. -This cmdlet uses the ID to get the log for a particular app package installation. + +Specifies an activity ID. This cmdlet uses the ID to get the log for a particular app package +installation. ```yaml -Type: String +Type: System.String Parameter Sets: ActivityId Aliases: @@ -69,11 +78,12 @@ Accept wildcard characters: False ``` ### -All -Indicates that the cmdlet gets all logs on the computer. -You can get additional information when you run this cmdlets from Windows PowerShell as an administrator. + +Indicates that the cmdlet gets all logs on the computer. You can get additional information when you +run this cmdlets from Windows PowerShell as an administrator. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: All Aliases: @@ -85,11 +95,15 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS -### System.String[] +### System.System.String[] ## OUTPUTS @@ -110,4 +124,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Get-AppxPackageManifest](./Get-AppxPackageManifest.md) [Get-AppxLastError](./Get-AppxLastError.md) - diff --git a/docset/winserver2022-ps/appx/Get-AppxPackage.md b/docset/winserver2022-ps/appx/Get-AppxPackage.md index c08ccc6e45..cf1ab1795a 100644 --- a/docset/winserver2022-ps/appx/Get-AppxPackage.md +++ b/docset/winserver2022-ps/appx/Get-AppxPackage.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: Appx -ms.date: 12/20/2016 +ms.date: 05/15/2023 online version: https://learn.microsoft.com/powershell/module/appx/get-appxpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppxPackage @@ -16,39 +16,46 @@ Gets a list of the app packages that are installed in a user profile. ## SYNTAX ``` -Get-AppxPackage [-AllUsers] [-PackageTypeFilter ] [[-Name] ] [[-Publisher] ] - [-User ] [-Volume ] [] +Get-AppxPackage [-AllUsers] [-PackageTypeFilter ] + [[-Name] ] [[-Publisher] ] [-User ] + [-Volume ] [] ``` ## DESCRIPTION -The **Get-AppxPackage** cmdlet gets a list of the app packages that are installed in a user profile. -An app package has an .msix or .appx file name extension. -To get the list of packages for a user profile other than the profile for the current user, you must run this command by using administrator permissions. + +The `Get-AppxPackage` cmdlet gets a list of the app packages that are installed in a user profile. +An app package has an `.msix` or `.appx` file extension. To get the list of packages for a user +profile other than the profile for the current user, you must run this command with administrator +permissions. ## EXAMPLES ### Example 1: Get all app packages for every user account -``` -PS C:\> Get-AppxPackage -AllUsers + +```powershell +Get-AppxPackage -AllUsers ``` This command lists the app packages that are installed for every user account on the computer. ### Example 2: Get an app package for a specific a user -``` -PS C:\> Get-AppxPackage -Name "Package17" -User "Contoso\EvanNarvaez" + +```powershell +Get-AppxPackage -Name "Package17" -User "Contoso\EvanNarvaez" ``` -This command displays information about Package17 if it is installed in the specified user profile. +This command displays information about `Package17` if it's installed in the specified user +profile. ## PARAMETERS ### -AllUsers -Indicates that this cmdlet lists app packages for all user accounts on the computer. -To use this parameter, you must run the command by using administrator permissions. + +Indicates that this cmdlet lists app packages for all user accounts on the computer. To use this +parameter, you must run the command with administrator permissions. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -60,12 +67,12 @@ Accept wildcard characters: False ``` ### -Name -Specifies the name of a particular package. -If you specify this parameter, the cmdlet returns results for this package only. -Wildcards are permitted. + +Specifies the name of a particular package. If you specify this parameter, the cmdlet returns +results for this package only. Wildcards are permitted. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -77,9 +84,11 @@ Accept wildcard characters: False ``` ### -PackageTypeFilter -Specifies one or more comma-separated types of packages that the cmdlet gets from the package repository. -By default, this cmdlet returns only packages of types Main and Framework. +Specifies one or more comma-separated types of packages that the cmdlet gets from the package +repository. + +By default, this cmdlet returns only packages of types `Main` and `Framework`. ```yaml Type: PackageTypes @@ -95,12 +104,12 @@ Accept wildcard characters: False ``` ### -Publisher -Specifies the publisher of a particular package. -If you specify this parameter, the cmdlet returns results only for this publisher. -Wildcards are permitted. + +Specifies the publisher of a particular package. If you specify this parameter, the cmdlet returns +results only for this publisher. Wildcards are permitted. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -112,18 +121,19 @@ Accept wildcard characters: False ``` ### -User -Specifies a user. -If you specify this parameter, the cmdlet returns a list of app packages that are installed for only the user that this cmdlet specifies. -To get the list of packages for a user profile other than the profile for the current user, you must run this command by using administrator permissions. -The user name can be in one of these formats: -- domain\user_name -- user_name@fqn.domain.tld -- user_name -- SID-string +Specifies a user. If you specify this parameter, the cmdlet returns a list of app packages that are +installed for only the user that this cmdlet specifies. To get the list of packages for a user +profile other than the profile for the current user, you must run this command with +administrator permissions. The user name can be in one of these formats: + +- `domain\user_name` +- `user_name@fqn.domain.tld` +- `user_name` +- `SID-string` ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -135,8 +145,9 @@ Accept wildcard characters: False ``` ### -Volume -Specifies an **AppxVolume** object. -If you specify this parameter, this cmdlet returns only packages that are relative to volume that this parameter specifies. + +Specifies an **AppxVolume** object. If you specify this parameter, this cmdlet returns only +packages that are relative to volume that this parameter specifies. ```yaml Type: AppxVolume @@ -151,7 +162,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -160,7 +175,9 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS ### Microsoft.Windows.Appx.PackageManager.Commands.AppxPackage -This cmdlet returns an **AppxPackage** object that contains information, including the full name of the app package. + +This cmdlet returns an **AppxPackage** object that contains information, including the full name of +the app package. ## NOTES @@ -177,4 +194,3 @@ This cmdlet returns an **AppxPackage** object that contains information, includi [Move-AppxPackage](./Move-AppxPackage.md) [Remove-AppxPackage](./Remove-AppxPackage.md) - diff --git a/docset/winserver2022-ps/appx/Get-AppxPackageAutoUpdateSettings.md b/docset/winserver2022-ps/appx/Get-AppxPackageAutoUpdateSettings.md index 3f0c0419cb..c70846fe05 100644 --- a/docset/winserver2022-ps/appx/Get-AppxPackageAutoUpdateSettings.md +++ b/docset/winserver2022-ps/appx/Get-AppxPackageAutoUpdateSettings.md @@ -2,7 +2,7 @@ description: Provides guidance on how to view the auto-update and repair settings of a Windows App. external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-help.xml Module Name: Appx -ms.date: 06/07/2021 +ms.date: 05/15/2023 online version: https://learn.microsoft.com/powershell/module/appx/Get-AppxPackageAutoUpdateSettings?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 --- @@ -10,48 +10,58 @@ schema: 2.0.0 # Get-AppxPackageAutoUpdateSettings ## SYNOPSIS -Available in the Windows Insider Preview Builds of Windows 10, is the `Get-AppxPackageAutoUpdateSettings` PowerShell cmdlet. The `Get-AppxPackageAutoUpdateSettings` PowerShell cmdlet provides visibility to the settings configured on a Windows 10 client device for a particular Windows App. + +Provides visibility to the settings configured for a particular Windows App. ## SYNTAX ``` -Get-AppxPackageAutoUpdateSettings [[-PackageFullName] ] [-ShowUpdateAvailability] [-AllUsers] - [] +Get-AppxPackageAutoUpdateSettings [[-PackageFullName] ] [-ShowUpdateAvailability] + [-AllUsers] [] ``` ## DESCRIPTION -The `Get-AppxPackageAutoUpdateSettings` PowerShell cmdlet will return the settings configured for a specific or all installed Windows Apps in relation to Auto Update and Repair. + +The `Get-AppxPackageAutoUpdateSettings` PowerShell cmdlet returns the settings configured for a +specific or all installed Windows Apps in relation to Auto Update and Repair. ## EXAMPLES ### Example 1: Get all App Package Auto Update settings -``` -PS C:\> Get-AppxPackageAutoUpdateSettings + +```powershell +Get-AppxPackageAutoUpdateSettings ``` -This will return the Auto Update and Repair settings for all configured and installed Windows Apps on the device, and registered to the user. +This will return the Auto Update and Repair settings for all configured and installed Windows Apps +on the device, and registered to the user. ### Example 2: Get App Package Auto Update settings for all users -``` -PS C:\> Get-AppxPackageAutoUpdateSettings -AllUsers + +```powershell +Get-AppxPackageAutoUpdateSettings -AllUsers ``` -This will return the Auto Update and Repair settings for all configured and installed Windows Apps that have been registered for all users. +This will return the Auto Update and Repair settings for all configured and installed Windows Apps +that have been registered for all users. ### Example 3: Get a single App Package Auto Update setting -``` -PS C:\> Get-AppxPackageAutoUpdateSettings -PackageFullName publisher.package1_1.0.0.0_neutral__8wekyb3d8bbwe + +```powershell +Get-AppxPackageAutoUpdateSettings -PackageFullName publisher.package1_1.0.0.0_neutral__8wekyb3d8bbwe ``` -This will return the Auto Update and Repair settings for a specific Windows App that has been installed and registered to the signed-in user. +This will return the Auto Update and Repair settings for a specific Windows App that has been +installed and registered to the signed-in user. ## PARAMETERS ### -PackageFullName -Specifies the Package Full Name of the app that is being queried. + +Specifies the Package Full Name of the app that's being queried. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -63,6 +73,7 @@ Accept wildcard characters: True ``` ### -ShowUpdateAvailability + Specifies to display available update information for a specific Windows App. ```yaml @@ -78,7 +89,9 @@ Accept wildcard characters: False ``` ### -AllUsers -Specifies to display Windows App Auto Update and Repair settings for all that are installed for all users. + +Specifies to display Windows App Auto Update and Repair settings for all that are installed for all +users. ```yaml Type: SwitchParameter @@ -94,7 +107,11 @@ Accept wildcard characters: False ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -105,6 +122,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS ### System.Object + ## NOTES ## RELATED LINKS diff --git a/docset/winserver2022-ps/appx/Get-AppxPackageManifest.md b/docset/winserver2022-ps/appx/Get-AppxPackageManifest.md index 47abf4730b..217e422481 100644 --- a/docset/winserver2022-ps/appx/Get-AppxPackageManifest.md +++ b/docset/winserver2022-ps/appx/Get-AppxPackageManifest.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: Appx -ms.date: 12/20/2016 +ms.date: 05/15/2023 online version: https://learn.microsoft.com/powershell/module/appx/get-appxpackagemanifest?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppxPackageManifest @@ -20,29 +20,33 @@ Get-AppxPackageManifest [-Package] [[-User] ] [ Get-AppxPackageManifest -Package "package1_1.0.0.0_neutral__8wekyb3d8bbwe" + +```powershell +Get-AppxPackageManifest -Package "package1_1.0.0.0_neutral__8wekyb3d8bbwe" ``` This command gets the manifest for an app package named package1_1.0.0.0_neutral__8wekyb3d8bbwe. ### Example 2: Get the application ID for an app package -``` -PS C:\> (Get-AppxPackage -Name "*WinJS*" | Get-AppxPackageManifest).package.applications.application.id + +```powershell +(Get-AppxPackage -Name "*WinJS*" | Get-AppxPackageManifest).package.applications.application.id ``` This command gets the application ID for an app package that has the string WinJS in the name. ### Example 3 -``` -PS C:\> (Get-AppxPackage -Name "*ZuneMusic*" | Get-AppxPackageManifest).Package.Capabilities + +```powershell +(Get-AppxPackage -Name "*ZuneMusic*" | Get-AppxPackageManifest).Package.Capabilities ``` This command gets the capabilities for an app package that has the string ZuneMusic in the name. @@ -50,12 +54,13 @@ This command gets the capabilities for an app package that has the string ZuneMu ## PARAMETERS ### -Package -Specifies an **AppxPackage** object or the full name of a package. -To get the manifest of a package on the computer that is not installed for the current user, you must run this command by using administrator permissions. -Wildcards are permitted. + +Specifies an **AppxPackage** object or the full name of a package. To get the manifest of a package +on the computer that's not installed for the current user, you must run this command with +administrator permissions. Wildcards are permitted. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -67,18 +72,19 @@ Accept wildcard characters: False ``` ### -User -Specifies a user. -This cmdlet gets the manifest of packages that are installed for the user that this parameter specifies. -To get the list of packages for a user profile other than the profile for the current user, you must run this command by using administrator permissions. -The user name can be in one of these formats: -- domain\user_name -- user_name@fqn.domain.tld -- user_name -- SID-string +Specifies a user. This cmdlet gets the manifest of packages that are installed for the user that +this parameter specifies. To get the list of packages for a user profile other than the profile for +the current user, you must run this command with administrator permissions. The user name can be +in one of these formats: + +- `domain\user_name` +- `user_name@fqn.domain.tld` +- `user_name` +- `SID-string` ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -90,17 +96,25 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### Microsoft.Windows.Appx.PackageManager.Commands.AppxPackage[] -This cmdlet accepts an array of **AppxPackage** objects that contain information, including the full name of the app package. + +This cmdlet accepts an array of **AppxPackage** objects that contain information, including the full +name of the app package. ## OUTPUTS ### System.XML.XMLDocument -This cmdlet returns a read-only .xml document that contains information about the app package, like the package ID. + +This cmdlet returns a read-only `.xml` document that contains information about the app package, +like the package ID. ## NOTES @@ -113,4 +127,3 @@ This cmdlet returns a read-only .xml document that contains information about th [Get-AppxPackage](./Get-AppxPackage.md) [Add-AppxPackage](./Add-AppxPackage.md) - diff --git a/docset/winserver2022-ps/appx/Get-AppxVolume.md b/docset/winserver2022-ps/appx/Get-AppxVolume.md index f8cbc9ffa1..038948e36f 100644 --- a/docset/winserver2022-ps/appx/Get-AppxVolume.md +++ b/docset/winserver2022-ps/appx/Get-AppxVolume.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: Appx -ms.date: 12/20/2016 +ms.date: 05/15/2023 online version: https://learn.microsoft.com/powershell/module/appx/get-appxvolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-AppxVolume @@ -16,50 +16,58 @@ Gets appx volumes for the computer. ## SYNTAX ### DefaultParameterSet + ``` Get-AppxVolume [[-Path] ] [] ``` ### OnlineParameterSet + ``` Get-AppxVolume [[-Path] ] [-Online] [] ``` ### OfflineParameterSet + ``` Get-AppxVolume [[-Path] ] [-Offline] [] ``` ## DESCRIPTION -The **Get-AppxVolume** cmdlet gets a list of **AppxVolume** objects known to the computer. + +The `Get-AppxVolume` cmdlet gets a list of **AppxVolume** objects known to the computer. Volumes can be added by the user or a device, for instance, by using Storage Sense. ## EXAMPLES ### Example 1: Get all the volumes -``` -PS C:\> Get-AppxVolume + +```powershell +Get-AppxVolume ``` The command gets all the **AppxVolume** objects on the computer. ### Example 2: Get the volume at a path -``` -PS C:\> Get-AppxVolume -Path F:\ + +```powershell +Get-AppxVolume -Path F:\ ``` This command gets the **AppxVolume** at the path F:\. ### Example 3: Get mounted volumes -``` -PS C:\> Get-AppxVolume -Online + +```powershell +Get-AppxVolume -Online ``` This command gets only **AppxVolume** objects that are currently mounted on the computer. ### Example 4: Get volumes that are note mounted -``` -PS C:\> Get-AppxVolume -Offline + +```powershell +Get-AppxVolume -Offline ``` This command gets the **AppxVolume** objects that not currently mounted on the computer. @@ -67,10 +75,11 @@ This command gets the **AppxVolume** objects that not currently mounted on the c ## PARAMETERS ### -Offline + Indicates that this cmdlet returns only volumes that are currently dismounted. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: OfflineParameterSet Aliases: @@ -82,10 +91,11 @@ Accept wildcard characters: False ``` ### -Online + Indicates that this cmdlet returns only volumes that are currently mounted. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: OnlineParameterSet Aliases: @@ -97,8 +107,9 @@ Accept wildcard characters: False ``` ### -Path -Specifies the path of the mount point of a volume. -This cmdlet gets a volume at the location that this parameter specifies. + +Specifies the path of the mount point of a volume. This cmdlet gets a volume at the location that +this parameter specifies. ```yaml Type: String @@ -125,7 +136,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -144,4 +159,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Mount-AppxVolume](./Mount-AppxVolume.md) [Remove-AppxVolume](./Remove-AppxVolume.md) - diff --git a/docset/winserver2022-ps/appx/Invoke-CommandInDesktopPackage.md b/docset/winserver2022-ps/appx/Invoke-CommandInDesktopPackage.md index 223ec48381..8df3e6637e 100644 --- a/docset/winserver2022-ps/appx/Invoke-CommandInDesktopPackage.md +++ b/docset/winserver2022-ps/appx/Invoke-CommandInDesktopPackage.md @@ -2,7 +2,7 @@ description: A debugging tool that creates a new process in the context of a packaged app. external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: Appx -ms.date: 05/19/2017 +ms.date: 05/15/2023 online version: https://learn.microsoft.com/powershell/module/appx/invoke-commandindesktoppackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Invoke-CommandInDesktopPackage @@ -16,43 +16,60 @@ A debugging tool that creates a new process in the context of a packaged app. ## SYNTAX ``` -Invoke-CommandInDesktopPackage [-PackageFamilyName] [-AppId] [-Command] - [[-Args] ] [-PreventBreakaway] [] +Invoke-CommandInDesktopPackage [-PackageFamilyName] [-AppId] + [-Command] [[-Args] ] [-PreventBreakaway] [] ``` ## DESCRIPTION -`Invoke-CommandInDesktopPackage` creates a new process in the context of the supplied **PackageFamilyName** and **AppId**. -The created process will have the identity of the provided **AppId** and will have access to its virtualized file system and registry (if any). The new process will have a token that is similar to, but not identical to, a real **AppId** process. +`Invoke-CommandInDesktopPackage` creates a new process in the context of the supplied +**PackageFamilyName** and **AppId**. -The primary use-case of this command is to invoke debugging or troubleshooting tools in the context of the packaged app to easily access its virtualized resources. For example, you can run the Registry Editor to see virtualized registry keys, or Notepad to read virtualized files. See the important note that follows on using tools such as the Registry Editor that require elevation. +The created process will have the identity of the provided **AppId** and will have access to its +virtualized file system and registry (if any). The new process will have a token that's similar to, +but not identical to, a real **AppId** process. -No guarantees are made about the behavior of the created process, other than it having the package identity and access to the package's virtualized resources. In particular, the new process will _not_ be created in an AppContainer even if an **AppId** process would normally be created in an AppContainer. Features such as Privacy Controls or other App Settings may or may not apply to the new process. You should not rely on any specific side-effects of using this command, as they are undefined and subject to change. +The primary use-case of this command is to invoke debugging or troubleshooting tools in the context +of the packaged app to access its virtualized resources. For example, you can run the Registry +Editor to see virtualized registry keys, or Notepad to read virtualized files. See the important +note that follows on using tools such as the Registry Editor that require elevation. + +No guarantees are made about the behavior of the created process, other than it having the package +identity and access to the package's virtualized resources. In particular, the new process will +_not_ be created in an AppContainer even if an **AppId** process would normally be created in an +AppContainer. Features such as Privacy Controls or other App Settings may or may not apply to the +new process. You shouldn't rely on any specific side-effects of using this command, as they're +undefined and subject to change. ## EXAMPLES ### Example 1: Invoke Notepad to read virtualized files -The following command invokes Notepad in the context of the `ContosoApp` app from the `Contoso.MyApp` package. This allows you to access resources such as a log file or configuration file stored in the app's virtualized filesystem. - +The following command invokes Notepad in the context of the `ContosoApp` app from the +`Contoso.MyApp` package. This allows you to access resources such as a log file or configuration +file stored in the app's virtualized filesystem. + +```powershell +$params = @{ + AppId = 'ContosoApp' + PackageFamilyName = 'Contoso.MyApp_abcdefgh23456' + Command = 'notepad.exe' +} +Invoke-CommandInDesktopPackage @params ``` -PS C:\> Invoke-CommandInDesktopPackage -AppId "ContosoApp" -PackageFamilyName "Contoso.MyApp_abcdefgh23456" -Command "notepad.exe" -``` - - ## PARAMETERS ### -AppId -**AppId** is the Application ID from the target package's manifest. -```XML - - -``` +**AppId** is the Application ID from the target package's manifest. + +For example, `MyAppName` is the Application ID in this manifest snippet: + +`` ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -64,10 +81,11 @@ Accept wildcard characters: False ``` ### -Args -Optional arguments to be passed to the new process (for example, "/foo /bar") + +Optional arguments to be passed to the new process. For example, `/foo /bar`. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -79,12 +97,16 @@ Accept wildcard characters: False ``` ### -Command -An executable to invoke (for example, `regedit.exe`). -Note that if the executable requires elevation (like `regedit`), you must call `Invoke-CommandInDesktopPackage` from an already-elevated context. Calling `Invoke-CommandInDesktopPackage` from a non-elevated context does not work as expected. The new process is created without the package context, and the PowerShell command fails. +An executable to invoke, like `regedit.exe`. + +Note that if the executable requires elevation (like `regedit`), you must call +`Invoke-CommandInDesktopPackage` from an already-elevated context. Calling +`Invoke-CommandInDesktopPackage` from a non-elevated context doesn't work as expected. The new +process is created without the package context, and the PowerShell command fails. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -96,10 +118,12 @@ Accept wildcard characters: False ``` ### -PackageFamilyName -The Package Family Name of the target package. You can retrieve this by calling [Get-AppxPackage](./Get-AppxPackage.md). + +The Package Family Name of the target package. You can retrieve this by calling +[Get-AppxPackage](./Get-AppxPackage.md). ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -111,10 +135,13 @@ Accept wildcard characters: False ``` ### -PreventBreakaway -Causes all child processes of the invoked process to also be created in the context of the **AppId**. By default, child processes are created without any context. This switch is useful for running `cmd.exe` so that you can launch multiple other tools in the package context. + +Causes all child processes of the invoked process to also be created in the context of the +**AppId**. By default, child processes are created without any context. This switch is useful for +running `cmd.exe` so that you can launch multiple other tools in the package context. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -126,12 +153,15 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### System.String -System.Management.Automation.SwitchParameter ## OUTPUTS @@ -142,4 +172,3 @@ System.Management.Automation.SwitchParameter ## RELATED LINKS [Get-AppxPackage](./Get-AppxPackage.md) - diff --git a/docset/winserver2022-ps/appx/Mount-AppxVolume.md b/docset/winserver2022-ps/appx/Mount-AppxVolume.md index 7bfcea228f..3466eea1a1 100644 --- a/docset/winserver2022-ps/appx/Mount-AppxVolume.md +++ b/docset/winserver2022-ps/appx/Mount-AppxVolume.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: Appx -ms.date: 12/20/2016 +ms.date: 05/15/2023 online version: https://learn.microsoft.com/powershell/module/appx/mount-appxvolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Mount-AppxVolume @@ -20,21 +20,24 @@ Mount-AppxVolume [-Volume] [-WhatIf] [-Confirm] [ Mount-AppxVolume -Volume E:\ + +```powershell +Mount-AppxVolume -Volume E:\ ``` -This command mounts a volume at the path E:\. +This command mounts a volume at the path `E:\`. ### Example 2: Mount a volume by using an ID -``` -PS C:\> Mount-AppxVolume -Volume {7e62a691-398e-4fbe-819a-64f1e407777a} + +```powershell +Mount-AppxVolume -Volume {7e62a691-398e-4fbe-819a-64f1e407777a} ``` This command mounts a volume that has the specified media ID. @@ -42,6 +45,7 @@ This command mounts a volume that has the specified media ID. ## PARAMETERS ### -Volume + Specifies the **AppxVolume** object to mount. ```yaml @@ -57,10 +61,11 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -72,10 +77,11 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet isn't run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -87,7 +93,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -104,4 +114,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Get-AppxVolume](./Get-AppxVolume.md) [Remove-AppxVolume](./Remove-AppxVolume.md) - diff --git a/docset/winserver2022-ps/appx/Move-AppxPackage.md b/docset/winserver2022-ps/appx/Move-AppxPackage.md index 780b629543..1252ac2342 100644 --- a/docset/winserver2022-ps/appx/Move-AppxPackage.md +++ b/docset/winserver2022-ps/appx/Move-AppxPackage.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: Appx -ms.date: 12/20/2016 +ms.date: 05/15/2023 online version: https://learn.microsoft.com/powershell/module/appx/move-appxpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Move-AppxPackage @@ -16,40 +16,49 @@ Moves a package from its current location to another appx volume. ## SYNTAX ``` -Move-AppxPackage [-Package] [-Volume] [-WhatIf] [-Confirm] [] +Move-AppxPackage [-Package] [-Volume] [-WhatIf] + [-Confirm] [] ``` ## DESCRIPTION -The **Move-AppxPackage** cmdlet moves a package from its current location to another **AppxVolume**. -The new location must be a volume that Package Manager knows about and that is mounted. -This cmdlet also moves your application data to the specified volume. + +The `Move-AppxPackage` cmdlet moves a package from its current location to another **AppxVolume**. +The new location must be a volume that Package Manager knows about and that's mounted. This cmdlet +also moves your application data to the specified volume. ## EXAMPLES ### Example 1: Move a package to a volume specified by a path -``` -PS C:\> Move-AppxPackage -Package "package1_1.0.0.0_neutral__8wekyb3d8bbwe" -Volume F:\ + +```powershell +Move-AppxPackage -Package "package1_1.0.0.0_neutral__8wekyb3d8bbwe" -Volume F:\ ``` -This command moves package that has the specified name to volume F:\. -This cmdlet also moves your app data. +This command moves package that has the specified name to volume `F:\`. This cmdlet also moves your +app data. ### Example 2: Move a package to a volume specified by an ID -``` -PS C:\> Move-AppxPackage -Package "package1_1.0.0.0_neutral__8wekyb3d8bbwe" -Volume {d2a4d1f4-f45a-46f3-a419-160ab52af091} + +```powershell +$params = @{ + Package = 'package1_1.0.0.0_neutral__8wekyb3d8bbwe' + Volume = '{d2a4d1f4-f45a-46f3-a419-160ab52af091}' +} +Move-AppxPackage @params ``` -This command moves package that has the specified name to the volume that has the specified media ID. -This cmdlet also moves your app data. +This command moves package that has the specified name to the volume that has the specified media +ID. This cmdlet also moves your app data. ## PARAMETERS ### -Package -Specifies an **AppxPackage** object or the full name of a package. -This cmdlet moves the package that this parameter specifies. + +Specifies an **AppxPackage** object or the full name of a package. This cmdlet moves the package +that this parameter specifies. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: (All) Aliases: @@ -61,8 +70,9 @@ Accept wildcard characters: False ``` ### -Volume -Specifies an **AppxVolume** object. -The cmdlet moves the package to the volume that this parameter specifies. + +Specifies an **AppxVolume** object. The cmdlet moves the package to the volume that this parameter +specifies. ```yaml Type: AppxVolume @@ -77,10 +87,11 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -92,10 +103,11 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet isn't run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -107,7 +119,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -122,4 +138,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Get-AppxPackage](./Get-AppxPackage.md) [Remove-AppxPackage](./Remove-AppxPackage.md) - diff --git a/docset/winserver2022-ps/appx/Remove-AppSharedPackageContainer.md b/docset/winserver2022-ps/appx/Remove-AppSharedPackageContainer.md index cd186a5d53..ca91d76dd0 100644 --- a/docset/winserver2022-ps/appx/Remove-AppSharedPackageContainer.md +++ b/docset/winserver2022-ps/appx/Remove-AppSharedPackageContainer.md @@ -1,8 +1,10 @@ --- external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: appx +ms.date: 05/15/2023 online version: https://learn.microsoft.com/powershell/module/appx/remove-appsharedpackagecontainer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 +title: Remove-AppSharedPackageContainer --- # Remove-AppSharedPackageContainer @@ -13,28 +15,32 @@ Removes the shared package container. ## SYNTAX ``` -Remove-AppSharedPackageContainer [-Name] [-ForceApplicationShutdown] [-AllUsers] [] +Remove-AppSharedPackageContainer [-Name] [-ForceApplicationShutdown] [-AllUsers] + [] ``` -## DESCRIPTION +## DESCRIPTION + The cmdlet removes the shared package container definition for the particular user. ## EXAMPLES ### Example 1 + ```powershell -PS C:\> Remove-AppSharedPackageContainer -Name ContosoTestContainer +Remove-AppSharedPackageContainer -Name ContosoTestContainer ``` -This command removes the shared package container definition with the name ContosoTestContainer. +This command removes the shared package container definition with the name `ContosoTestContainer`. ## PARAMETERS ### -AllUsers -Unsupported. Will result in "-AllUsers functionality is not yet implemented" error. + +Unsupported. Will result in `-AllUsers functionality is not yet implemented` error. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -46,10 +52,11 @@ Accept wildcard characters: False ``` ### -ForceApplicationShutdown + Closes all packages in the Shared Package Container. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -61,6 +68,7 @@ Accept wildcard characters: False ``` ### -Name + The name of the container. ```yaml @@ -76,7 +84,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -85,6 +97,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS ### System.Object + ## NOTES ## RELATED LINKS diff --git a/docset/winserver2022-ps/appx/Remove-AppxPackage.md b/docset/winserver2022-ps/appx/Remove-AppxPackage.md index 8998d930a8..efe1afa142 100644 --- a/docset/winserver2022-ps/appx/Remove-AppxPackage.md +++ b/docset/winserver2022-ps/appx/Remove-AppxPackage.md @@ -2,7 +2,7 @@ description: Removes an app package from one or more user accounts. external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: Appx -ms.date: 09/01/2021 +ms.date: 05/15/2023 online version: https://learn.microsoft.com/powershell/module/appx/remove-appxpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AppxPackage @@ -11,56 +11,63 @@ title: Remove-AppxPackage # Remove-AppxPackage ## SYNOPSIS - Removes an app package from one or more user accounts. ## SYNTAX ### RemoveByPackageSet (Default) + ``` -Remove-AppxPackage [-Package] [-PreserveApplicationData] [-WhatIf] [-Confirm] [] +Remove-AppxPackage [-Package] [-PreserveApplicationData] [-WhatIf] [-Confirm] + [] ``` ### RemoveByPackageForRoamingSet + ``` Remove-AppxPackage [-Package] [-PreserveRoamableApplicationData] [-WhatIf] [-Confirm] [] ``` ### AllUsersSet + ``` Remove-AppxPackage [-Package] [-AllUsers] [-WhatIf] [-Confirm] [] ``` ### UserSet + ``` Remove-AppxPackage [-Package] -User [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Remove-AppxPackage** cmdlet removes an app package from a user account. -An app package has an .msix or .appx file name extension. +The `Remove-AppxPackage` cmdlet removes an app package from a user account. An app package has an +`.msix` or `.appx` file extension. ## EXAMPLES ### Example 1: Remove an app package ```powershell -Remove-AppxPackage -Package "package1_1.0.0.0_neutral__8wekyb3d8bbwe" +Remove-AppxPackage -Package 'package1_1.0.0.0_neutral__8wekyb3d8bbwe' ``` -This command removes an app package named package1_1.0.0.0_neutral__8wekyb3d8bbwe from the account of the current user. +This command removes an app package named `package1_1.0.0.0_neutral__8wekyb3d8bbwe` from the +account of the current user. ## PARAMETERS ### -AllUsers -This parameter removes the app package for all user accounts on the computer. The parameter works off the parent package type. If it is a bundle, use -PackageTypeFilter with "Get-AppxPackage" command and specify the bundle. To use this parameter, you must run the command by using administrator permissions. - +This parameter removes the app package for all user accounts on the computer. The parameter works +off the parent package type. If it's a bundle, use **PackageTypeFilter** with the `Get-AppxPackage` +command and specify the bundle. To use this parameter, you must run the command with administrator +permissions. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: AllUsersSet Aliases: @@ -76,7 +83,7 @@ Accept wildcard characters: False Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -92,7 +99,7 @@ Accept wildcard characters: False Specifies an **AppxPackage** object or the full name of a package. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -105,11 +112,10 @@ Accept wildcard characters: False ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. +Shows what would happen if the cmdlet runs. The cmdlet isn't run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -122,13 +128,13 @@ Accept wildcard characters: False ### -PreserveApplicationData -Specifies that the cmdlet preserves the application data during the package removal. -The application data is available for later use. Note that this is only applicable -for apps that are under development so this option can only be specified for apps -that are registered from file layout (Loose file registered). +Specifies that the cmdlet preserves the application data during the package removal. The +application data is available for later use. Note that this is only applicable for apps that are +under development so this option can only be specified for apps that are registered from file +layout (Loose file registered). ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: RemoveByPackageSet Aliases: @@ -142,10 +148,10 @@ Accept wildcard characters: False ### -PreserveRoamableApplicationData Preserves the roamable portion of the app's data when the package is removed. This parameter is -incompatible with PreserveApplicationData. +incompatible with **PreserveApplicationData**. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: RemoveByPackageForRoamingSet Aliases: @@ -158,17 +164,18 @@ Accept wildcard characters: False ### -User -If you specify this parameter, the cmdlet removes the app package for only the user that this cmdlet specifies. To remove a package for a user profile other than the profile of the current user, you must run this command by using administrator permissions. +If you specify this parameter, the cmdlet removes the app package for only the user that this cmdlet +specifies. To remove a package for a user profile other than the profile of the current user, you +must run this command with administrator permissions. > [!NOTE] > -> - This parameter only accepts user SIDs -> - Use the **whoami /user** command to display the current SID of a user. See [whoami syntax](/windows-server/administration/windows-commands/whoami) for details. - - +> This parameter only accepts user SIDs. Use the **whoami /user** command to display the current +> SID of a user. See [whoami syntax](/windows-server/administration/windows-commands/whoami) for +> details. ```yaml -Type: String +Type: System.String Parameter Sets: UserSet Aliases: @@ -181,7 +188,10 @@ Accept wildcard characters: False ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/docset/winserver2022-ps/appx/Remove-AppxVolume.md b/docset/winserver2022-ps/appx/Remove-AppxVolume.md index 733f938604..bad45ec98b 100644 --- a/docset/winserver2022-ps/appx/Remove-AppxVolume.md +++ b/docset/winserver2022-ps/appx/Remove-AppxVolume.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: Appx -ms.date: 12/20/2016 +ms.date: 05/15/2023 online version: https://learn.microsoft.com/powershell/module/appx/remove-appxvolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-AppxVolume @@ -20,29 +20,33 @@ Remove-AppxVolume [-Volume] [-WhatIf] [-Confirm] [ Remove-AppxVolume -Volume {984786d3-0cae-49de-a68f-8bedb0ca260b} + +```powershell +Remove-AppxVolume -Volume {984786d3-0cae-49de-a68f-8bedb0ca260b} ``` This command removes a volume that has the specified media ID. ### Example 2: Remove a volume by using a path -``` -PS C:\> Remove-AppxVolume -Volume E:\ + +```powershell +Remove-AppxVolume -Volume E:\ ``` -This command removes a volume at the path E:\. +This command removes a volume at the path `E:\`. ## PARAMETERS ### -Volume + Specifies the **AppxVolume** object to remove. ```yaml @@ -58,10 +62,11 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -73,10 +78,11 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet isn't run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -88,7 +94,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -105,4 +115,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Get-AppxVolume](./Get-AppxVolume.md) [Mount-AppxVolume](./Mount-AppxVolume.md) - diff --git a/docset/winserver2022-ps/appx/Reset-AppSharedPackageContainer.md b/docset/winserver2022-ps/appx/Reset-AppSharedPackageContainer.md index 4ba00e3105..d374357cf8 100644 --- a/docset/winserver2022-ps/appx/Reset-AppSharedPackageContainer.md +++ b/docset/winserver2022-ps/appx/Reset-AppSharedPackageContainer.md @@ -1,8 +1,10 @@ --- external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: appx +ms.date: 05/15/2023 online version: https://learn.microsoft.com/powershell/module/appx/reset-appsharedpackagecontainer?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 +title: Reset-AppSharedPackageContainer --- # Reset-AppSharedPackageContainer @@ -13,29 +15,34 @@ Destroys all the application data of the container. ## SYNTAX ``` -Reset-AppSharedPackageContainer [-Name] [-Force] [-WhatIf] [-Confirm] [] +Reset-AppSharedPackageContainer [-Name] [-Force] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION -The cmdlet destroys all the application data of the container, -including the virtual files and registry keys. + +The cmdlet destroys all the application data of the container, including the virtual files and +registry keys. ## EXAMPLES ### Example 1 + ```powershell -PS C:\> Reset-AppSharedPackageContainer -Name ContosoTestContainer +Reset-AppSharedPackageContainer -Name ContosoTestContainer ``` -This command clears all the application data of the shared package container ContosoTestContainer. +This command clears all the application data of the shared package container +`ContosoTestContainer`. ## PARAMETERS ### -Force + Skips asking for confirmation. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -47,6 +54,7 @@ Accept wildcard characters: False ``` ### -Name + The name of the container. ```yaml @@ -62,10 +70,11 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -77,11 +86,11 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet isn't run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -93,7 +102,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -102,6 +115,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS ### System.Object + ## NOTES ## RELATED LINKS diff --git a/docset/winserver2022-ps/appx/Reset-AppxPackage.md b/docset/winserver2022-ps/appx/Reset-AppxPackage.md index 84ea78a76c..66d1b655e2 100644 --- a/docset/winserver2022-ps/appx/Reset-AppxPackage.md +++ b/docset/winserver2022-ps/appx/Reset-AppxPackage.md @@ -2,7 +2,7 @@ description: Restores the Windows app to its initial configuration. external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-help.xml Module Name: Appx -ms.date: 09/01/2021 +ms.date: 05/15/2023 online version: https://learn.microsoft.com/powershell/module/appx/reset-appxpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Reset-AppxPackage @@ -12,13 +12,11 @@ title: Reset-AppxPackage ## SYNOPSIS -Starting at Windows 10 Insider Preview Build 20215 you get access to the `Reset-AppxPackage` PowerShell Cmdlet for use in resetting your installed Windows Apps. - Restores the Windows app to its initial configuration. ## SYNTAX -```PowerShell +``` Reset-AppxPackage [-Package] [-WhatIf] [-Confirm] @@ -26,26 +24,31 @@ Reset-AppxPackage [-Package] ``` ## DESCRIPTION -The **Reset-AppxPackage** cmdlet will reset the app to its original settings, and the app will react as a freshly installed app. + +The `Reset-AppxPackage` cmdlet resets the app to its original settings, and the app will react +as a freshly installed app. After resetting the app, any initial prompts by the app will be prompted for user input. ## EXAMPLES ### Example 1: Reset app package + ```powershell Reset-AppxPackage -Package publisher.package1_1.0.0.0_neutral__8wekyb3d8bbwe ``` -This cmdlet will reset the `publisher.package1_1.0.0.0_neutral__8wekyb3d8bbwe` application back to its original settings. +This cmdlet resets the `publisher.package1_1.0.0.0_neutral__8wekyb3d8bbwe` application back to +its original settings. ## PARAMETERS ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -57,10 +60,11 @@ Accept wildcard characters: False ``` ### -Package -Specifies the package full name (PFuN) of the app which will be reset. + +Specifies the package full name (PFuN) of the app to reset. ```yaml -Type: String +Type: System.String Parameter Sets: None Aliases: None @@ -72,10 +76,11 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet isn't run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -87,7 +92,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/docset/winserver2022-ps/appx/Set-AppxDefaultVolume.md b/docset/winserver2022-ps/appx/Set-AppxDefaultVolume.md index 2f886a9014..9bc8d7e77c 100644 --- a/docset/winserver2022-ps/appx/Set-AppxDefaultVolume.md +++ b/docset/winserver2022-ps/appx/Set-AppxDefaultVolume.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-Help.xml Module Name: Appx -ms.date: 12/20/2016 +ms.date: 05/15/2023 online version: https://learn.microsoft.com/powershell/module/appx/set-appxdefaultvolume?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AppxDefaultVolume @@ -20,22 +20,25 @@ Set-AppxDefaultVolume [-Volume] [-WhatIf] [-Confirm] [ Set-AppxDefaultVolume -Volume F:\ + +```powershell +Set-AppxDefaultVolume -Volume F:\ ``` -This command sets the default volume to be the volume F:\. +This command sets the default volume to be the volume `F:\`. ### Example 2: Set a default volume by using an ID -``` -PS C:\> Set-AppxDefaultVolume -Volume {ef23c8d6-b13c-4c4c-ae3b-7d5a162de9b9} + +```powershell +Set-AppxDefaultVolume -Volume {ef23c8d6-b13c-4c4c-ae3b-7d5a162de9b9} ``` This command sets the default volume to be the one that has the specified media ID. @@ -43,8 +46,9 @@ This command sets the default volume to be the one that has the specified media ## PARAMETERS ### -Volume -Specifies the path a volume. -This cmdlet sets the volume that this parameter specifies to be the default deployment target for the computer. + +Specifies the path a volume. This cmdlet sets the volume that this parameter specifies to be the +default deployment target for the computer. ```yaml Type: AppxVolume @@ -59,10 +63,11 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -74,10 +79,11 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet isn't run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -89,7 +95,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -100,4 +110,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS [Get-AppxDefaultVolume](./Get-AppxDefaultVolume.md) - diff --git a/docset/winserver2022-ps/appx/Set-AppxPackageAutoUpdateSettings.md b/docset/winserver2022-ps/appx/Set-AppxPackageAutoUpdateSettings.md index b23f3c0096..ac624fcc90 100644 --- a/docset/winserver2022-ps/appx/Set-AppxPackageAutoUpdateSettings.md +++ b/docset/winserver2022-ps/appx/Set-AppxPackageAutoUpdateSettings.md @@ -2,7 +2,7 @@ description: Provides guidance on how to configure the auto-update and repair settings of a Windows App. external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-help.xml Module Name: Appx -ms.date: 06/07/2021 +ms.date: 05/15/2023 online version: https://learn.microsoft.com/powershell/module/appx/reset-appxpackage?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AppxPackageAutoUpdateSettings @@ -11,65 +11,91 @@ title: Set-AppxPackageAutoUpdateSettings # Set-AppxPackageAutoUpdateSettings ## SYNOPSIS -The `Get-AppxPackageAutoUpdateSettings` PowerShell cmdlet is only available in the Windows Insider Preview Builds of Windows 10. The `Set-AppxPackageAutoUpdateSettings` PowerShell cmdlet provides access to configure a specific Windows App's Auto Update and Repair settings. Including pausing update checks. + +Configures a specific Windows App's Auto Update and Repair settings. ## SYNTAX ### SetAutoUpdateOptionsSet (Default) + ``` Set-AppxPackageAutoUpdateSettings [-PackageFamilyName] -AppInstallerUri [-UpdateUris ] [-RepairUris ] [-OptionalPackages ] [-DependencyPackages ] [-EnableAutomaticBackgroundTask] [-ForceUpdateFromAnyVersion] - [-DisableAutoRepairs] [-CheckOnLaunch] [-ShowPrompt] [-UpdateBlocksActivation] [-UseSystemPolicySource] - [-HoursBetweenUpdateChecks ] [-Version ] [-WhatIf] [-Confirm] [] + [-DisableAutoRepairs] [-CheckOnLaunch] [-ShowPrompt] [-UpdateBlocksActivation] + [-UseSystemPolicySource] [-HoursBetweenUpdateChecks ] [-Version ] [-WhatIf] + [-Confirm] [] ``` ### PauseAutoUpdateOptionsSet + ``` -Set-AppxPackageAutoUpdateSettings [-PackageFamilyName] [-PauseUpdates] [-UseSystemPolicySource] - -HoursToPause [-WhatIf] [-Confirm] [] +Set-AppxPackageAutoUpdateSettings [-PackageFamilyName] [-PauseUpdates] + [-UseSystemPolicySource] -HoursToPause [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION -The **Set-AppxPackageAutoUpdateSettings** cmdlet provides access to configure a specific Windows App's Auto Update and Repair seetings. + +The `Set-AppxPackageAutoUpdateSettings` cmdlet provides access to configure a specific Windows +App's Auto Update and Repair setings. ## EXAMPLES -### Example 1: Update the Auto-Update settings for an App -``` -PS C:\> Set-AppxPackageAutoUpdateSettings -AppInstallerUri https://website.com/PackageName.appinstaller -PackageFamilyName PackageName_8h66172c634n0 -CheckOnLaunch -ForceUpdateFromAnyVersion -HoursBetweenUpdateChecks 2 -ShowPrompt -UpdateUris file://ComputerName/Share/PackageName_x64.appinstaller +### Example 1: Update the Auto Update settings for an App + +```powershell +$params = @{ + AppInstallerUri = 'https://website.com/PackageName.appinstaller ' + PackageFamilyName = 'PackageName_8h66172c634n0 ' + CheckOnLaunch = $true + ForceUpdateFromAnyVersion = $true + HoursBetweenUpdateChecks = 2 + ShowPrompt = $true + UpdateUris = 'file://ComputerName/Share/PackageName_x64.appinstaller' +} +Set-AppxPackageAutoUpdateSettings @params ``` -This cmdlet will update the Auto Update settings of the *PackageName_8h66172c634n0* Windows App to target an AppInstaller file on a network accessible file share every two hours, displaying a prompt to the user. Allowing for the Windows App to update to any version (higher or lower) despite the version of the installed Windows App. +This cmdlet will update the Auto Update settings of the `PackageName_8h66172c634n0` Windows App to +target an AppInstaller file on a network accessible file share every two hours, displaying a prompt +to the user. Allowing for the Windows App to update to any version (higher or lower) despite the +version of the installed Windows App. ### Example 2: Disable the Auto Repair setting for an App -``` -PS C:\> Set-AppxPackageAutoUpdateSettings -AppInstallerUri https://website.com/PackageName.appinstaller -PackageFamilyName PackageName_8h66172c634n0 -DisableAutoRepairs + +```powershell +$params = @{ + AppInstallerUri = 'https://website.com/PackageName.appinstaller' + PackageFamilyName = 'PackageName_8h66172c634n0' + DisableAutoRepairs = $true +} +Set-AppxPackageAutoUpdateSettings @params ``` This cmdlet will disable the automatic repair of the Windows App. ### Example 3: Pause Updates on a specific Windows App -``` -PS C:\> Set-AppxPackageAutoUpdateSettings -HoursToPause 4320 -PackageFamilyName PackageName_8h66172c634n0 -PauseUpdates -``` - -This cmdlet will pause the Windows App from checking for App updates for 4320 hours (180 Days). -### Example 3: Pause Updates on a specific Windows App -``` -PS C:\> Set-AppxPackageAutoUpdateSettings -HoursToPause 0 -PackageFamilyName PackageName_8h66172c634n0 -PauseUpdates +```powershell +$params = @{ + HoursToPause = 4320 + PackageFamilyName = 'PackageName_8h66172c634n0' + PauseUpdates = $true +} +Set-AppxPackageAutoUpdateSettings @params ``` -This cmdlet will re-enable automatic updating of the Windows App. +This cmdlet will pause the Windows App from checking for App updates for `4320` hours (180 Days). ## PARAMETERS ### -HoursToPause -Specifies the duration of time in hours that the Windows App will not check for updates. + +Specifies the duration of time in hours that the Windows App won't check for updates. ```yaml -Type: UInt32 +Type: System.UInt32 Parameter Sets: PauseAutoUpdateOptionsSet Aliases: @@ -81,10 +107,11 @@ Accept wildcard characters: False ``` ### -PauseUpdates + Specifies if the Windows App updates are to be paused. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: PauseAutoUpdateOptionsSet Aliases: @@ -96,10 +123,11 @@ Accept wildcard characters: False ``` ### -PackageFamilyName + Specifies the Package Family Name of the Windows App which is being modified. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -111,10 +139,11 @@ Accept wildcard characters: False ``` ### -AppInstallerUri -Specifies the location of the AppInstaller file targetted by this Windows App. + +Specifies the location of the AppInstaller file targeted by this Windows App. ```yaml -Type: String +Type: System.String Parameter Sets: SetAutoUpdateOptionsSet Aliases: @@ -126,10 +155,11 @@ Accept wildcard characters: False ``` ### -CheckOnLaunch + Specifies that the Windows App will check for new updates when the App is launched. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: SetAutoUpdateOptionsSet Aliases: @@ -141,10 +171,11 @@ Accept wildcard characters: False ``` ### -DependencyPackages + Specifies any Dependency Packages being used by the Windows App. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: SetAutoUpdateOptionsSet Aliases: @@ -156,10 +187,11 @@ Accept wildcard characters: False ``` ### -DisableAutoRepairs + Turns off the automatic repair of a broken Windows App. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: SetAutoUpdateOptionsSet Aliases: @@ -171,10 +203,11 @@ Accept wildcard characters: False ``` ### -EnableAutomaticBackgroundTask + Specifies that the automation of updating and repairing will occur as a background task. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: SetAutoUpdateOptionsSet Aliases: @@ -186,10 +219,11 @@ Accept wildcard characters: False ``` ### -ForceUpdateFromAnyVersion + Specifies that the next update of the Windows App can be of a higher or lower version. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: SetAutoUpdateOptionsSet Aliases: @@ -201,10 +235,11 @@ Accept wildcard characters: False ``` ### -HoursBetweenUpdateChecks + Specifies the time between update checks allowed for a specific Windows App. ```yaml -Type: UInt32 +Type: System.UInt32 Parameter Sets: SetAutoUpdateOptionsSet Aliases: @@ -216,10 +251,11 @@ Accept wildcard characters: False ``` ### -OptionalPackages + Specifies the Optional Packages being used by the Windows App. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: SetAutoUpdateOptionsSet Aliases: @@ -231,10 +267,11 @@ Accept wildcard characters: False ``` ### -RepairUris + Specifies the location which will be sourced from when repairing the Windows App. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: SetAutoUpdateOptionsSet Aliases: @@ -246,10 +283,11 @@ Accept wildcard characters: False ``` ### -ShowPrompt + Specifies that if any action is occurring for the Windows App, a prompt will be displayed. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: SetAutoUpdateOptionsSet Aliases: @@ -261,10 +299,12 @@ Accept wildcard characters: False ``` ### -UpdateBlocksActivation -Specifies that if an update is available for a Windows App, the App will prevent launching until the update has been installed. + +Specifies that if an update is available for a Windows App, the App will prevent launching until the +update has been installed. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: SetAutoUpdateOptionsSet Aliases: @@ -276,10 +316,11 @@ Accept wildcard characters: False ``` ### -UpdateUris + Specifies the location which will be sourced from when updating the Windows App. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: SetAutoUpdateOptionsSet Aliases: @@ -291,10 +332,11 @@ Accept wildcard characters: False ``` ### -UseSystemPolicySource + Specifies that an override can be applied to the Developer configured settings. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -306,10 +348,11 @@ Accept wildcard characters: False ``` ### -Version + Specifies the version of the Update Settings being applied. ```yaml -Type: String +Type: System.String Parameter Sets: SetAutoUpdateOptionsSet Aliases: @@ -321,7 +364,11 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -330,6 +377,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS ### System.Object + ## NOTES ## RELATED LINKS From e6a589c12dce5a73d2f2af79e061c671a57733aa Mon Sep 17 00:00:00 2001 From: Michael Lombardi Date: Wed, 17 May 2023 09:10:06 -0500 Subject: [PATCH 757/965] (AB#4176) Add devcontainer for codespaces This change adds the devcontainer definition for the repository to support contributing in GitHub Codespaces. --- .devcontainer/Dockerfile | 4 ++++ .devcontainer/devcontainer.json | 42 +++++++++++++++++++++++++++++++++ .gitattributes | 3 +++ 3 files changed, 49 insertions(+) create mode 100644 .devcontainer/Dockerfile create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile new file mode 100644 index 0000000000..933f0c12e6 --- /dev/null +++ b/.devcontainer/Dockerfile @@ -0,0 +1,4 @@ +FROM mcr.microsoft.com/devcontainers/base:ubuntu +RUN wget https://github.com/errata-ai/vale/releases/download/v2.26.0/vale_2.26.0_Linux_64-bit.tar.gz && \ + tar -xvzf vale_2.26.0_Linux_64-bit.tar.gz -C bin && \ + export PATH=./bin:"$PATH" diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000000..f2b24e467b --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,42 @@ +{ + "build": { + "dockerfile": "Dockerfile" + }, + "features": { + "ghcr.io/devcontainers/features/git:1": {}, + "ghcr.io/devcontainers/features/github-cli:1": {}, + "ghcr.io/devcontainers/features/powershell:1": { + "modules": "Documentarian,Documentarian.Vale,Documentarian.MicrosoftDocs,Documentarian.ModuleAuthor" + } + }, + "customizations": { + "vscode": { + "extensions": [ + "chrischinchilla.vale-vscode", + "davidanson.vscode-markdownlint", + "docsmsft.docs-images", + "docsmsft.docs-linting", + "docsmsft.docs-markdown", + "docsmsft.docs-preview", + "docsmsft.docs-yaml", + "eamodio.gitlens", + "marvhen.reflow-markdown", + "ms-vscode.powershell", + "ms-vscode.wordcount", + "nhoizey.gremlins", + "redhat.vscode-yaml", + "shuworks.vscode-table-formatter", + "streetsidesoftware.code-spell-checker", + "tyriar.sort-lines", + "usernamehw.errorlens", + "wmaurer.change-case" + ], + "settings": { + "terminal.integrated.defaultProfile.linux": "pwsh", + "vale.valeCLI.path": "", + "vale.valeCLI.config": "" + } + } + }, + "postStartCommand": "vale sync" +} diff --git a/.gitattributes b/.gitattributes index 9fb85ec49f..716ed37256 100644 --- a/.gitattributes +++ b/.gitattributes @@ -9,6 +9,9 @@ # Declare files that will always have CRLF line endings on checkout. *.sln text eol=crlf +# Ensure devcontainer files are always LF +.devcontainer/** eol=lf + # Denote all files that are truly binary and should not be modified. *.png binary *.jpg binary \ No newline at end of file From ea512843347b307473564a5d4132981792a44306 Mon Sep 17 00:00:00 2001 From: Xelu86 <103963494+Xelu86@users.noreply.github.com> Date: Wed, 17 May 2023 18:07:42 -0400 Subject: [PATCH 758/965] Updated description when access is granted --- .../failoverclusters/Grant-ClusterAccess.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/Grant-ClusterAccess.md b/docset/winserver2022-ps/failoverclusters/Grant-ClusterAccess.md index f5be702f5f..aa0284dbe8 100644 --- a/docset/winserver2022-ps/failoverclusters/Grant-ClusterAccess.md +++ b/docset/winserver2022-ps/failoverclusters/Grant-ClusterAccess.md @@ -1,8 +1,8 @@ --- -description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. +description: Use this article to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters -ms.date: 12/20/2016 +ms.date: 05/17/2023 online version: https://docs.microsoft.com/powershell/module/failoverclusters/grant-clusteraccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Grant-ClusterAccess @@ -21,8 +21,10 @@ Grant-ClusterAccess [-User] [-Full] [-ReadOnly] [-InputObject ``` ## DESCRIPTION -The **Grant-ClusterAccess** cmdlet grants access to a failover cluster, either full access or read-only access. -To provide someone with read-only access to the cluster, use the **ReadOnly** parameter. +The **Grant-ClusterAccess** cmdlet grants access to a failover cluster, either full access or +read-only access. To provide someone with read-only access to the cluster, use the **ReadOnly** +parameter. Granting full access to the cluster is equivalent to granting full access to each of the +cluster nodes. ## EXAMPLES From ed5a3324d7da723e2a984fa02ab13e41c126bf28 Mon Sep 17 00:00:00 2001 From: Xelu86 <103963494+Xelu86@users.noreply.github.com> Date: Wed, 17 May 2023 18:28:19 -0400 Subject: [PATCH 759/965] Resolving conflicts --- .../winserver2022-ps/failoverclusters/Grant-ClusterAccess.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/Grant-ClusterAccess.md b/docset/winserver2022-ps/failoverclusters/Grant-ClusterAccess.md index aa0284dbe8..17c849d317 100644 --- a/docset/winserver2022-ps/failoverclusters/Grant-ClusterAccess.md +++ b/docset/winserver2022-ps/failoverclusters/Grant-ClusterAccess.md @@ -3,7 +3,7 @@ description: Use this article to help manage Windows and Windows Server technolo external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml Module Name: FailoverClusters ms.date: 05/17/2023 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/grant-clusteraccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/grant-clusteraccess?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Grant-ClusterAccess --- @@ -21,7 +21,7 @@ Grant-ClusterAccess [-User] [-Full] [-ReadOnly] [-InputObject ``` ## DESCRIPTION -The **Grant-ClusterAccess** cmdlet grants access to a failover cluster, either full access or +The `Grant-ClusterAccess` cmdlet grants access to a failover cluster, either full access or read-only access. To provide someone with read-only access to the cluster, use the **ReadOnly** parameter. Granting full access to the cluster is equivalent to granting full access to each of the cluster nodes. From 9de8e0b4e54e011c4d042f15c880d0801aef5188 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sat, 20 May 2023 12:46:33 +0530 Subject: [PATCH 760/965] Update Set-VMProcessor.md Fixed Typo --- docset/winserver2022-ps/hyper-v/Set-VMProcessor.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/hyper-v/Set-VMProcessor.md b/docset/winserver2022-ps/hyper-v/Set-VMProcessor.md index b9c15b3a94..4af1c7c4d2 100644 --- a/docset/winserver2022-ps/hyper-v/Set-VMProcessor.md +++ b/docset/winserver2022-ps/hyper-v/Set-VMProcessor.md @@ -216,7 +216,7 @@ Accept wildcard characters: False ``` ### -ExposeVirtualizationExtensions -Specifies whether the hypervisor should expose the presence of virtualization extensions to the virtual machine, which enables support for nested virtualization,. +Specifies whether the hypervisor should expose the presence of virtualization extensions to the virtual machine, which enables support for nested virtualization. ```yaml From 4e2a75066d3875ac5b59918da17700a718e9ff89 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sat, 20 May 2023 12:48:05 +0530 Subject: [PATCH 761/965] Update Set-VMProcessor.md Fixing 2016 --- docset/winserver2016-ps/hyper-v/Set-VMProcessor.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2016-ps/hyper-v/Set-VMProcessor.md b/docset/winserver2016-ps/hyper-v/Set-VMProcessor.md index bea9d69da6..e31f9dd011 100644 --- a/docset/winserver2016-ps/hyper-v/Set-VMProcessor.md +++ b/docset/winserver2016-ps/hyper-v/Set-VMProcessor.md @@ -216,7 +216,7 @@ Accept wildcard characters: False ``` ### -ExposeVirtualizationExtensions -Specifies whether the hypervisor should expose the presence of virtualization extensions to the virtual machine, which enables support for nested virtualization,. +Specifies whether the hypervisor should expose the presence of virtualization extensions to the virtual machine, which enables support for nested virtualization. ```yaml From 418de1ee809918ea9fd991de39f2704ad00dca87 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sat, 20 May 2023 12:48:24 +0530 Subject: [PATCH 762/965] Update Set-VMProcessor.md Fixing 2019 version --- docset/winserver2019-ps/hyper-v/Set-VMProcessor.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/hyper-v/Set-VMProcessor.md b/docset/winserver2019-ps/hyper-v/Set-VMProcessor.md index 1a3cb5c34d..8e2d146e52 100644 --- a/docset/winserver2019-ps/hyper-v/Set-VMProcessor.md +++ b/docset/winserver2019-ps/hyper-v/Set-VMProcessor.md @@ -216,7 +216,7 @@ Accept wildcard characters: False ``` ### -ExposeVirtualizationExtensions -Specifies whether the hypervisor should expose the presence of virtualization extensions to the virtual machine, which enables support for nested virtualization,. +Specifies whether the hypervisor should expose the presence of virtualization extensions to the virtual machine, which enables support for nested virtualization. ```yaml From aa54230ed1687b28cfc73f273b369aab0dbbe720 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sat, 20 May 2023 13:18:12 +0530 Subject: [PATCH 763/965] Update Remove-ADComputer.md Changed the default value to True as it is prompts for confirmation --- docset/winserver2022-ps/activedirectory/Remove-ADComputer.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/activedirectory/Remove-ADComputer.md b/docset/winserver2022-ps/activedirectory/Remove-ADComputer.md index e081ccd18c..e30776b839 100644 --- a/docset/winserver2022-ps/activedirectory/Remove-ADComputer.md +++ b/docset/winserver2022-ps/activedirectory/Remove-ADComputer.md @@ -102,7 +102,7 @@ Aliases: cf Required: False Position: Named -Default value: False +Default value: True Accept pipeline input: False Accept wildcard characters: False ``` From 2cb7289ee07166997737d3f4faae9374a3c6f4ed Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sat, 20 May 2023 13:19:04 +0530 Subject: [PATCH 764/965] Update Remove-ADComputer.md --- docset/winserver2012-ps/activedirectory/Remove-ADComputer.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2012-ps/activedirectory/Remove-ADComputer.md b/docset/winserver2012-ps/activedirectory/Remove-ADComputer.md index dd6864c69c..c15734100f 100644 --- a/docset/winserver2012-ps/activedirectory/Remove-ADComputer.md +++ b/docset/winserver2012-ps/activedirectory/Remove-ADComputer.md @@ -119,7 +119,7 @@ Aliases: cf Required: False Position: Named -Default value: False +Default value: True Accept pipeline input: False Accept wildcard characters: False ``` From 915dd10cb7b9ce23bf856cd809b2b618334aa2ff Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sat, 20 May 2023 13:19:16 +0530 Subject: [PATCH 765/965] Update Remove-ADComputer.md --- docset/winserver2016-ps/activedirectory/Remove-ADComputer.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2016-ps/activedirectory/Remove-ADComputer.md b/docset/winserver2016-ps/activedirectory/Remove-ADComputer.md index 6744f689bd..e1bc2ed61c 100644 --- a/docset/winserver2016-ps/activedirectory/Remove-ADComputer.md +++ b/docset/winserver2016-ps/activedirectory/Remove-ADComputer.md @@ -102,7 +102,7 @@ Aliases: cf Required: False Position: Named -Default value: False +Default value: True Accept pipeline input: False Accept wildcard characters: False ``` From 8c01bb372a9f856858cdbc580eea0dd19fc67459 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sat, 20 May 2023 13:19:27 +0530 Subject: [PATCH 766/965] Update Remove-ADComputer.md --- docset/winserver2019-ps/activedirectory/Remove-ADComputer.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/activedirectory/Remove-ADComputer.md b/docset/winserver2019-ps/activedirectory/Remove-ADComputer.md index 1519f0e889..c625bdb84e 100644 --- a/docset/winserver2019-ps/activedirectory/Remove-ADComputer.md +++ b/docset/winserver2019-ps/activedirectory/Remove-ADComputer.md @@ -102,7 +102,7 @@ Aliases: cf Required: False Position: Named -Default value: False +Default value: True Accept pipeline input: False Accept wildcard characters: False ``` From 59df696bf6949421ec0e7778c97c53bb1c83c05d Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sat, 20 May 2023 13:19:45 +0530 Subject: [PATCH 767/965] Update Remove-ADComputer.md --- docset/winserver2012r2-ps/activedirectory/Remove-ADComputer.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2012r2-ps/activedirectory/Remove-ADComputer.md b/docset/winserver2012r2-ps/activedirectory/Remove-ADComputer.md index 4a279e1837..f1e4358d1c 100644 --- a/docset/winserver2012r2-ps/activedirectory/Remove-ADComputer.md +++ b/docset/winserver2012r2-ps/activedirectory/Remove-ADComputer.md @@ -101,7 +101,7 @@ Aliases: cf Required: False Position: Named -Default value: False +Default value: True Accept pipeline input: False Accept wildcard characters: False ``` From c592e3e4310e14838418ca4ee51571192aa9fdef Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sat, 20 May 2023 13:21:43 +0530 Subject: [PATCH 768/965] Update Get-NetIPInterface.md Changed base reachable time default value to 30000 Fixes https://github.com/MicrosoftDocs/windows-powershell-docs/issues/3222 --- docset/winserver2022-ps/nettcpip/Get-NetIPInterface.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/nettcpip/Get-NetIPInterface.md b/docset/winserver2022-ps/nettcpip/Get-NetIPInterface.md index c0a368544b..459c983489 100644 --- a/docset/winserver2022-ps/nettcpip/Get-NetIPInterface.md +++ b/docset/winserver2022-ps/nettcpip/Get-NetIPInterface.md @@ -294,7 +294,7 @@ Accept wildcard characters: False ### -BaseReachableTimeMs Specifies an array of base values of random reachable times, in milliseconds. For more information, see [RFC 2461](https://go.microsoft.com/fwlink/p/?LinkId=84044). -The default value is 30. +The default value is 30000. ```yaml Type: UInt32[] From a3e780f43620b53f658cfe7c703876170d2015f6 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sat, 20 May 2023 13:45:04 +0530 Subject: [PATCH 769/965] Update Get-NetIPInterface.md --- docset/winserver2012-ps/nettcpip/Get-NetIPInterface.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2012-ps/nettcpip/Get-NetIPInterface.md b/docset/winserver2012-ps/nettcpip/Get-NetIPInterface.md index f411d6f201..a92238cea9 100644 --- a/docset/winserver2012-ps/nettcpip/Get-NetIPInterface.md +++ b/docset/winserver2012-ps/nettcpip/Get-NetIPInterface.md @@ -305,7 +305,7 @@ Accept wildcard characters: False Gets IP interface properties only for interfaces by the BaseReachableTime property. This parameter is the base for random reachable time, in milliseconds. This parameter is described in RFC 2461http://go.microsoft.com/fwlink/p/?LinkId=84044. -The default BaseReachableTime setting is `30`. +The default BaseReachableTime setting is `30000`. ```yaml Type: UInt32[] From 01400a4185880fce504da479125accdc60768222 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sat, 20 May 2023 13:45:26 +0530 Subject: [PATCH 770/965] Update Get-NetIPInterface.md --- docset/winserver2016-ps/nettcpip/Get-NetIPInterface.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2016-ps/nettcpip/Get-NetIPInterface.md b/docset/winserver2016-ps/nettcpip/Get-NetIPInterface.md index 6ca0bb1d5a..7973888ff6 100644 --- a/docset/winserver2016-ps/nettcpip/Get-NetIPInterface.md +++ b/docset/winserver2016-ps/nettcpip/Get-NetIPInterface.md @@ -294,7 +294,7 @@ Accept wildcard characters: False ### -BaseReachableTimeMs Specifies an array of base values of random reachable times, in milliseconds. For more information, see [RFC 2461](https://go.microsoft.com/fwlink/p/?LinkId=84044). -The default value is 30. +The default value is 30000. ```yaml Type: UInt32[] From f3f3b5e7c005e42fb21588acbed8e835c53ab0f0 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sat, 20 May 2023 13:45:45 +0530 Subject: [PATCH 771/965] Update Get-NetIPInterface.md --- docset/winserver2019-ps/nettcpip/Get-NetIPInterface.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/nettcpip/Get-NetIPInterface.md b/docset/winserver2019-ps/nettcpip/Get-NetIPInterface.md index ea053ddcd1..24761fa753 100644 --- a/docset/winserver2019-ps/nettcpip/Get-NetIPInterface.md +++ b/docset/winserver2019-ps/nettcpip/Get-NetIPInterface.md @@ -294,7 +294,7 @@ Accept wildcard characters: False ### -BaseReachableTimeMs Specifies an array of base values of random reachable times, in milliseconds. For more information, see [RFC 2461](https://go.microsoft.com/fwlink/p/?LinkId=84044). -The default value is 30. +The default value is 30000. ```yaml Type: UInt32[] From e520615e07a3eaa7b80038d8a5ff39fb54a9ba17 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sat, 20 May 2023 13:46:15 +0530 Subject: [PATCH 772/965] Update Get-NetIPInterface.md --- docset/winserver2012r2-ps/nettcpip/Get-NetIPInterface.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2012r2-ps/nettcpip/Get-NetIPInterface.md b/docset/winserver2012r2-ps/nettcpip/Get-NetIPInterface.md index 807bb4e7f8..66db212200 100644 --- a/docset/winserver2012r2-ps/nettcpip/Get-NetIPInterface.md +++ b/docset/winserver2012r2-ps/nettcpip/Get-NetIPInterface.md @@ -293,7 +293,7 @@ Accept wildcard characters: False ### -BaseReachableTimeMs Specifies an array of base values of random reachable times, in milliseconds. For more information, see RFC 2461http://go.microsoft.com/fwlink/p/?LinkId=84044. -The default value is 30. +The default value is 30000. ```yaml Type: UInt32[] From 425b0d05f0e78c17836c1e31d5780e59714d2315 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sat, 20 May 2023 13:57:57 +0530 Subject: [PATCH 773/965] Update Set-VHD.md Fixed Example 3 in all versions of the document. --- docset/winserver2022-ps/hyper-v/Set-VHD.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/hyper-v/Set-VHD.md b/docset/winserver2022-ps/hyper-v/Set-VHD.md index c82765f42b..819530de46 100644 --- a/docset/winserver2022-ps/hyper-v/Set-VHD.md +++ b/docset/winserver2022-ps/hyper-v/Set-VHD.md @@ -58,7 +58,7 @@ This operation cannot be performed when the virtual disk chain is attached. ### Example 3 ``` -PS C:\> Set-VHD -Path Child1.vhd -parentpath parentcopywithnewid.vhd -IgnoreMismatchId +PS C:\> Set-VHD -Path Child1.vhd -parentpath parentcopywithnewid.vhd -IgnoreIdMismatch ``` This example sets the parent of Child1.vhd to point to parentcopywithnewid.vhd, even though parentcopywithnewid.vhd has a different ID than the original parent of child1.vhd. From b1bdd25602e8880b754d6092d6ccfe1f0b88902e Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sat, 20 May 2023 13:59:14 +0530 Subject: [PATCH 774/965] Update Set-VHD.md --- docset/winserver2012-ps/hyper-v/Set-VHD.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2012-ps/hyper-v/Set-VHD.md b/docset/winserver2012-ps/hyper-v/Set-VHD.md index f5675a9077..c074f6b097 100644 --- a/docset/winserver2012-ps/hyper-v/Set-VHD.md +++ b/docset/winserver2012-ps/hyper-v/Set-VHD.md @@ -48,7 +48,7 @@ This operation cannot be performed when the virtual disk chain is attached. ### Example 3 ``` -PS C:\>Set-VHD -Path Child1.vhd -parentpath parentcopywithnewid.vhd -IgnoreMismatchId +PS C:\>Set-VHD -Path Child1.vhd -parentpath parentcopywithnewid.vhd -IgnoreIdMismatch ``` This example sets the parent of Child1.vhd to point to parentcopywithnewid.vhd, even though parentcopywithnewid.vhd has a different ID than the original parent of child1.vhd. From 18112c465dc7170891b6e98a11c4e89d19d474cc Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sat, 20 May 2023 13:59:23 +0530 Subject: [PATCH 775/965] Update Set-VHD.md --- docset/winserver2016-ps/hyper-v/Set-VHD.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2016-ps/hyper-v/Set-VHD.md b/docset/winserver2016-ps/hyper-v/Set-VHD.md index 9cd20e40da..e26fd085fa 100644 --- a/docset/winserver2016-ps/hyper-v/Set-VHD.md +++ b/docset/winserver2016-ps/hyper-v/Set-VHD.md @@ -58,7 +58,7 @@ This operation cannot be performed when the virtual disk chain is attached. ### Example 3 ``` -PS C:\> Set-VHD -Path Child1.vhd -parentpath parentcopywithnewid.vhd -IgnoreMismatchId +PS C:\> Set-VHD -Path Child1.vhd -parentpath parentcopywithnewid.vhd -IgnoreIdMismatch ``` This example sets the parent of Child1.vhd to point to parentcopywithnewid.vhd, even though parentcopywithnewid.vhd has a different ID than the original parent of child1.vhd. From c6cbe11124dc6db2a8160c68e233f399a3e01122 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sat, 20 May 2023 13:59:33 +0530 Subject: [PATCH 776/965] Update Set-VHD.md --- docset/winserver2019-ps/hyper-v/Set-VHD.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/hyper-v/Set-VHD.md b/docset/winserver2019-ps/hyper-v/Set-VHD.md index 8ec71d26c5..e23bb62b78 100644 --- a/docset/winserver2019-ps/hyper-v/Set-VHD.md +++ b/docset/winserver2019-ps/hyper-v/Set-VHD.md @@ -58,7 +58,7 @@ This operation cannot be performed when the virtual disk chain is attached. ### Example 3 ``` -PS C:\> Set-VHD -Path Child1.vhd -parentpath parentcopywithnewid.vhd -IgnoreMismatchId +PS C:\> Set-VHD -Path Child1.vhd -parentpath parentcopywithnewid.vhd -IgnoreIdMismatch ``` This example sets the parent of Child1.vhd to point to parentcopywithnewid.vhd, even though parentcopywithnewid.vhd has a different ID than the original parent of child1.vhd. From 04583b32ac85bacb3876b1baef72b515138dcd3a Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sat, 20 May 2023 13:59:50 +0530 Subject: [PATCH 777/965] Update Set-VHD.md --- docset/winserver2012r2-ps/hyper-v/Set-VHD.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2012r2-ps/hyper-v/Set-VHD.md b/docset/winserver2012r2-ps/hyper-v/Set-VHD.md index c0d61601d1..f43fccbbdb 100644 --- a/docset/winserver2012r2-ps/hyper-v/Set-VHD.md +++ b/docset/winserver2012r2-ps/hyper-v/Set-VHD.md @@ -56,7 +56,7 @@ This operation cannot be performed when the virtual disk chain is attached. ### Example 3 ``` -PS C:\>Set-VHD -Path Child1.vhd -parentpath parentcopywithnewid.vhd -IgnoreMismatchId +PS C:\>Set-VHD -Path Child1.vhd -parentpath parentcopywithnewid.vhd -IgnoreIdMismatch ``` This example sets the parent of Child1.vhd to point to parentcopywithnewid.vhd, even though parentcopywithnewid.vhd has a different ID than the original parent of child1.vhd. From a1c4e3112dcd8eb299917b85243e6822b5b7704c Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Tue, 23 May 2023 11:25:38 +0530 Subject: [PATCH 778/965] Update Get-NetIPInterface.md --- docset/winserver2012-ps/nettcpip/Get-NetIPInterface.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2012-ps/nettcpip/Get-NetIPInterface.md b/docset/winserver2012-ps/nettcpip/Get-NetIPInterface.md index a92238cea9..9dca2eba59 100644 --- a/docset/winserver2012-ps/nettcpip/Get-NetIPInterface.md +++ b/docset/winserver2012-ps/nettcpip/Get-NetIPInterface.md @@ -304,7 +304,7 @@ Accept wildcard characters: False ### -BaseReachableTimeMs Gets IP interface properties only for interfaces by the BaseReachableTime property. This parameter is the base for random reachable time, in milliseconds. -This parameter is described in RFC 2461http://go.microsoft.com/fwlink/p/?LinkId=84044. +This parameter is described in RFC 2461 http://go.microsoft.com/fwlink/p/?LinkId=84044. The default BaseReachableTime setting is `30000`. ```yaml From ccdfdc2dbf635ce6a3bc5b4566fa9b527584cea4 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Tue, 23 May 2023 11:26:26 +0530 Subject: [PATCH 779/965] Update Get-NetIPInterface.md --- docset/winserver2012-ps/nettcpip/Get-NetIPInterface.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2012-ps/nettcpip/Get-NetIPInterface.md b/docset/winserver2012-ps/nettcpip/Get-NetIPInterface.md index 9dca2eba59..dc3a0c114b 100644 --- a/docset/winserver2012-ps/nettcpip/Get-NetIPInterface.md +++ b/docset/winserver2012-ps/nettcpip/Get-NetIPInterface.md @@ -304,7 +304,7 @@ Accept wildcard characters: False ### -BaseReachableTimeMs Gets IP interface properties only for interfaces by the BaseReachableTime property. This parameter is the base for random reachable time, in milliseconds. -This parameter is described in RFC 2461 http://go.microsoft.com/fwlink/p/?LinkId=84044. +This parameter is described in [RFC 2461](https://go.microsoft.com/fwlink/p/?LinkId=84044). The default BaseReachableTime setting is `30000`. ```yaml From 7b8be00a046bacd6c99bc17a4f0162decb1238d0 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Tue, 23 May 2023 11:27:05 +0530 Subject: [PATCH 780/965] Update Get-NetIPInterface.md --- docset/winserver2012r2-ps/nettcpip/Get-NetIPInterface.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2012r2-ps/nettcpip/Get-NetIPInterface.md b/docset/winserver2012r2-ps/nettcpip/Get-NetIPInterface.md index 66db212200..c328f345d8 100644 --- a/docset/winserver2012r2-ps/nettcpip/Get-NetIPInterface.md +++ b/docset/winserver2012r2-ps/nettcpip/Get-NetIPInterface.md @@ -292,7 +292,7 @@ Accept wildcard characters: False ### -BaseReachableTimeMs Specifies an array of base values of random reachable times, in milliseconds. -For more information, see RFC 2461http://go.microsoft.com/fwlink/p/?LinkId=84044. +For more information, see [RFC 2461](https://go.microsoft.com/fwlink/p/?LinkId=84044). The default value is 30000. ```yaml From 573fc76fc45d6998d856ae4e54aab6d97fcc3b11 Mon Sep 17 00:00:00 2001 From: Sean Wheeler Date: Thu, 25 May 2023 10:30:25 -0500 Subject: [PATCH 781/965] Fix indentation for syntax --- .../Install-ADDSDomainController.md | 94 +++++++++---------- 1 file changed, 45 insertions(+), 49 deletions(-) diff --git a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md index 3a66bfb2e0..b1ea51a7f5 100644 --- a/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md +++ b/docset/winserver2022-ps/addsdeployment/Install-ADDSDomainController.md @@ -19,30 +19,27 @@ Installs a new domain controller in an Active Directory domain. ``` Install-ADDSDomainController [-SkipPreChecks] -DomainName -[-SafeModeAdministratorPassword ] [-SiteName ] -[-ADPrepCredential ] [-AllowDomainControllerReinstall] -[-ApplicationPartitionsToReplicate ] [-CreateDnsDelegation] -[-Credential ] [-CriticalReplicationOnly] [-DatabasePath ] -[-DnsDelegationCredential ] [-NoDnsOnNetwork] [-NoGlobalCatalog] -[-InstallationMediaPath ] [-InstallDns] [-LogPath ] -[-MoveInfrastructureOperationMasterRoleIfNecessary] [-NoRebootOnCompletion] -[-ReplicationSourceDC ] [-SkipAutoConfigureDns] [-SystemKey ] -[-SysvolPath ] [-Force] [-WhatIf] [-Confirm] [] + [-SafeModeAdministratorPassword ] [-SiteName ] + [-ADPrepCredential ] [-AllowDomainControllerReinstall] + [-ApplicationPartitionsToReplicate ] [-CreateDnsDelegation] [-Credential ] + [-CriticalReplicationOnly] [-DatabasePath ] [-DnsDelegationCredential ] + [-NoDnsOnNetwork] [-NoGlobalCatalog] [-InstallationMediaPath ] [-InstallDns] + [-LogPath ] [-MoveInfrastructureOperationMasterRoleIfNecessary] [-NoRebootOnCompletion] + [-ReplicationSourceDC ] [-SkipAutoConfigureDns] [-SystemKey ] + [-SysvolPath ] [-Force] [-WhatIf] [-Confirm] [] ``` ### ADDSDomainControllerReadOnly ``` Install-ADDSDomainController [-SkipPreChecks] -DomainName - [-SafeModeAdministratorPassword ] -SiteName + [-SafeModeAdministratorPassword ] -SiteName [-ADPrepCredential ] [-AllowDomainControllerReinstall] - [-AllowPasswordReplicationAccountName ] - [-ApplicationPartitionsToReplicate ] [-Credential ] - [-CriticalReplicationOnly] [-DatabasePath ] - [-DelegatedAdministratorAccountName ] - [-DenyPasswordReplicationAccountName ] [-NoDnsOnNetwork] [-NoGlobalCatalog] - [-InstallationMediaPath ] [-InstallDns] [-LogPath ] - [-MoveInfrastructureOperationMasterRoleIfNecessary] [-ReadOnlyReplica] + [-AllowPasswordReplicationAccountName ] [-ApplicationPartitionsToReplicate ] + [-Credential ] [-CriticalReplicationOnly] [-DatabasePath ] + [-DelegatedAdministratorAccountName ] [-DenyPasswordReplicationAccountName ] + [-NoDnsOnNetwork] [-NoGlobalCatalog] [-InstallationMediaPath ] [-InstallDns] + [-LogPath ] [-MoveInfrastructureOperationMasterRoleIfNecessary] [-ReadOnlyReplica] [-NoRebootOnCompletion] [-ReplicationSourceDC ] [-SkipAutoConfigureDns] [-SystemKey ] [-SysvolPath ] [-Force] [-WhatIf] [-Confirm] [] @@ -57,8 +54,7 @@ Install-ADDSDomainController [-SkipPreChecks] -DomainName [-CriticalReplicationOnly] [-DatabasePath ] [-NoDnsOnNetwork] [-InstallationMediaPath ] [-LogPath ] [-NoRebootOnCompletion] [-ReplicationSourceDC ] [-SkipAutoConfigureDns] [-SystemKey ] - [-SysvolPath ] [-UseExistingAccount] [-Force] [-WhatIf] [-Confirm] - [] + [-SysvolPath ] [-UseExistingAccount] [-Force] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -117,7 +113,7 @@ controller. Use the `Get-Credential` cmdlet to prompt the user to supply a passw ```yaml Type: System.Management.Automation.PSCredential Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -136,7 +132,7 @@ controller with the same name is found. ```yaml Type: System.Management.Automation.SwitchParameter Parameter Sets: ADDSDomainController, ADDSDomainControllerReadOnly -Aliases: +Aliases: Required: False Position: Named @@ -155,7 +151,7 @@ allowed. ```yaml Type: System.String[] Parameter Sets: ADDSDomainControllerReadOnly -Aliases: +Aliases: Required: False Position: Named @@ -173,7 +169,7 @@ Use * to replicate all application directory partitions. ```yaml Type: System.String[] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -209,7 +205,7 @@ automatically based on the environment. ```yaml Type: System.Management.Automation.SwitchParameter Parameter Sets: ADDSDomainController -Aliases: +Aliases: Required: False Position: Named @@ -226,7 +222,7 @@ controller. Use the `Get-Credential` to prompt the user to supply a password. ```yaml Type: System.Management.Automation.PSCredential Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -246,7 +242,7 @@ replication. ```yaml Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -264,7 +260,7 @@ The default is `%SYSTEMROOT%\NTDS`. ```yaml Type: System.String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -281,7 +277,7 @@ controller. ```yaml Type: System.String Parameter Sets: ADDSDomainControllerReadOnly -Aliases: +Aliases: Required: False Position: Named @@ -303,7 +299,7 @@ Owners, the krbtgt account, and Schema Admins. ```yaml Type: System.String[] Parameter Sets: ADDSDomainControllerReadOnly -Aliases: +Aliases: Required: False Position: Named @@ -320,7 +316,7 @@ value for the **CreateDnsDelegation** parameter is either specified or computed ```yaml Type: System.Management.Automation.PSCredential Parameter Sets: ADDSDomainController -Aliases: +Aliases: Required: False Position: Named @@ -337,7 +333,7 @@ installed or added. ```yaml Type: System.String Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: Named @@ -353,7 +349,7 @@ Forces the command to run without asking for user confirmation. ```yaml Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -378,7 +374,7 @@ response is `corp.contoso.com`. ```yaml Type: System.Management.Automation.SwitchParameter Parameter Sets: ADDSDomainController, ADDSDomainControllerReadOnly -Aliases: +Aliases: Required: False Position: Named @@ -394,7 +390,7 @@ Indicates the location of the installation media that is used to install a new d ```yaml Type: System.String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -412,7 +408,7 @@ that will contain the domain log files, for example, `C:\Windows\Logs`. The defa ```yaml Type: System.String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -431,7 +427,7 @@ remain where it currently is. ```yaml Type: System.Management.Automation.SwitchParameter Parameter Sets: ADDSDomainController, ADDSDomainControllerReadOnly -Aliases: +Aliases: Required: False Position: Named @@ -456,7 +452,7 @@ DNS server address. ```yaml Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -473,7 +469,7 @@ By default, the domain controller that you are installing is a global catalog se ```yaml Type: System.Management.Automation.SwitchParameter Parameter Sets: ADDSDomainController, ADDSDomainControllerReadOnly -Aliases: +Aliases: Required: False Position: Named @@ -494,7 +490,7 @@ rebooted. ```yaml Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -510,7 +506,7 @@ Indicates that the cmdlet installs the domain controller as an RODC for an exist ```yaml Type: System.Management.Automation.SwitchParameter Parameter Sets: ADDSDomainControllerReadOnly -Aliases: +Aliases: Required: False Position: Named @@ -527,7 +523,7 @@ controller. ```yaml Type: System.String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -559,7 +555,7 @@ which is also not a recommended security best practice in production deployments ```yaml Type: System.Security.SecureString Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -579,7 +575,7 @@ the site of the replication source domain controller. ```yaml Type: System.String Parameter Sets: ADDSDomainController -Aliases: +Aliases: Required: False Position: Named @@ -591,7 +587,7 @@ Accept wildcard characters: False ```yaml Type: System.String Parameter Sets: ADDSDomainControllerReadOnly -Aliases: +Aliases: Required: True Position: Named @@ -608,7 +604,7 @@ root hints. This parameter is in effect only if the DNS Server service is alread ```yaml Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -630,7 +626,7 @@ preliminary checks that the **ADDSDeployment** module performs by default when u ```yaml Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -647,7 +643,7 @@ The default is none. ```yaml Type: System.Security.SecureString Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -665,7 +661,7 @@ that will contain the Sysvol data, for example, `C:\Windows\SYSVOL`. The default ```yaml Type: System.String Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -682,7 +678,7 @@ If specified, a member of the Domain Admins group or a delegated user can run th ```yaml Type: System.Management.Automation.SwitchParameter Parameter Sets: ADDSDomainControllerUseExistingAccount -Aliases: +Aliases: Required: False Position: Named From 3e49b14f6c81cb09719a6204615dd0717a8eb942 Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Tue, 23 May 2023 21:51:06 -0400 Subject: [PATCH 782/965] Fix formatting for Add-ADCentralAccessPolicy. --- .../Add-ADCentralAccessPolicyMember.md | 147 +++++++++++------- 1 file changed, 91 insertions(+), 56 deletions(-) diff --git a/docset/winserver2022-ps/activedirectory/Add-ADCentralAccessPolicyMember.md b/docset/winserver2022-ps/activedirectory/Add-ADCentralAccessPolicyMember.md index f4a63c922b..4746fd5445 100644 --- a/docset/winserver2022-ps/activedirectory/Add-ADCentralAccessPolicyMember.md +++ b/docset/winserver2022-ps/activedirectory/Add-ADCentralAccessPolicyMember.md @@ -16,46 +16,59 @@ Adds central access rules to a central access policy in Active Directory. ## SYNTAX ``` -Add-ADCentralAccessPolicyMember [-WhatIf] [-Confirm] [-AuthType ] [-Credential ] - [-Identity] [-Members] [-PassThru] [-Server ] - [] +Add-ADCentralAccessPolicyMember [-WhatIf] [-Confirm] [-AuthType ] + [-Credential ] [-Identity] + [-Members] [-PassThru] [-Server ] [] ``` ## DESCRIPTION -The **Add-ADCentralAccessPolicyMember** cmdlet adds central access rules to a central access policy in Active Directory. + +The `Add-ADCentralAccessPolicyMember` cmdlet adds central access rules to a central access policy +in Active Directory. ## EXAMPLES -### Example 1: Add central access rules to an existing central access policy -``` -PS C:\> Add-ADCentralAccessPolicyMember -Identity "Finance Policy" -Member "Finance Documents Rule","Corporate Documents Rule" +### EXAMPLE 1 + +```powershell +$params = @{ + Identity = 'Finance Policy' + Member = 'Finance Documents Rule', 'Corporate Documents Rule' +} +Add-ADCentralAccessPolicyMember @params ``` -This command adds the central access rules Finance Documents Rule and Corporate Documents Rule to the central access policy Finance Policy. +This command adds the central access rules Finance Documents Rule and Corporate Documents Rule to +the central access policy Finance Policy. -### Example 2: Add a central access rule to an existing central access policy -``` -PS C:\> Get-ADCentralAccessPolicy -Filter "Name -like 'Corporate*'" | Add-ADCentralAccessPolicyMember -Members "Corporate Documents Rule" +### EXAMPLE 2 + +```powershell +Get-ADCentralAccessPolicy -Filter "Name -like 'Corporate*'" | + Add-ADCentralAccessPolicyMember -Members 'Corporate Documents Rule' ``` -This command gets all central access policies that have a name that starts with Corporate and then passes this information to Add-ADCentralAccessPolicyMember by using the pipeline operator. -The **Add-ADCentralAccessPolicyMember** cmdlet then adds the central access rule with the name Corporate Documents Rule to it. +This command gets all central access policies that have a name that starts with `Corporate` and then +passes this information to `Add-ADCentralAccessPolicyMember` by using the pipeline operator. The +`Add-ADCentralAccessPolicyMember` cmdlet then adds the central access rule with the name +`Corporate Documents Rule` to it. ## PARAMETERS ### -AuthType + Specifies the authentication method to use. The acceptable values for this parameter are: -- Negotiate or 0 -- Basic or 1 +- `Negotiate` or `0` +- `Basic` or `1` -The default authentication method is Negotiate. +The default authentication method is `Negotiate`. -A Secure Sockets Layer (SSL) connection is required for the Basic authentication method. +A Secure Sockets Layer (SSL) connection is required for the `Basic` authentication method. ```yaml -Type: ADAuthType +Type: Microsoft.ActiveDirectory.Management.ADAuthType Parameter Sets: (All) Aliases: Accepted values: Negotiate, Basic @@ -68,10 +81,11 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -83,20 +97,24 @@ Accept wildcard characters: False ``` ### -Credential -Specifies the user account credentials to use to perform this task. -The default credentials are the credentials of the currently logged on user unless the cmdlet is run from an Active Directory module for Windows PowerShell provider drive. -If the cmdlet is run from such a provider drive, the account associated with the drive is the default. -To specify this parameter, you can type a user name, such as User1 or Domain01\User01 or you can specify a **PSCredential** object. -If you specify a user name for this parameter, the cmdlet prompts for a password. +Specifies the user account credentials to use to perform this task. The default credentials are the +credentials of the currently logged on user unless the cmdlet is run from an Active Directory module +for Windows PowerShell provider drive. If the cmdlet is run from such a provider drive, the account +associated with the drive is the default. + +To specify this parameter, you can type a user name, such as `User1` or `Domain01\User0`1 or you can +specify a **PSCredential** object. If you specify a user name for this parameter, the cmdlet prompts +for a password. -You can also create a **PSCredential** object by using a script or by using the **Get-Credential** cmdlet. -You can then set the *Credential* parameter to the **PSCredential** object. +You can also create a **PSCredential** object by using a script or by using the `Get-Credential` +cmdlet. You can then set the **Credential** parameter to the **PSCredential** object. -If the acting credentials do not have directory-level permission to perform the task, Active Directory module for Windows PowerShell returns a terminating error. +If the acting credentials do not have directory-level permission to perform the task, Active +Directory module for Windows PowerShell returns a terminating error. ```yaml -Type: PSCredential +Type: System.Management.Automation.PSCredential Parameter Sets: (All) Aliases: @@ -108,19 +126,21 @@ Accept wildcard characters: False ``` ### -Identity -Specifies an Active Directory object by providing one of the following property values. -The identifier in parentheses is the Lightweight Directory Access Protocol (LDAP) display name for the attribute. -The acceptable values for this parameter are: + +Specifies an Active Directory object by providing one of the following property values. The +identifier in parentheses is the Lightweight Directory Access Protocol (LDAP) display name for the +attribute. The acceptable values for this parameter are: - A distinguished name -- A GUID (objectGUID) -- A security identifier (objectSid) -- A SAM account name (sAMAccountName) +- A GUID (**objectGUID**) +- A security identifier (**objectSid**) +- A SAM account name (**sAMAccountName**) -This parameter can also get this object through the pipeline or you can set this parameter to an object instance. +This parameter can also get this object through the pipeline or you can set this parameter to an +object instance. ```yaml -Type: ADCentralAccessPolicy +Type: Microsoft.ActiveDirectory.Management.ADCentralAccessPolicy Parameter Sets: (All) Aliases: @@ -132,21 +152,23 @@ Accept wildcard characters: False ``` ### -Members -Specifies a set of central access rule (CAR) objects in a comma-separated list to add to a central access policy. -To identify each object, use one of the following property values: + +Specifies a set of central access rule (CAR) objects in a comma-separated list to add to a central +access policy. To identify each object, use one of the following property values: - Name - A distinguished name -- GUID (objectGUID) +- GUID (**objectGUID**) - Note: The identifier in parentheses is the LDAP display name. +> [!NOTE] +> The identifier in parentheses is the LDAP display name. You can also provide objects to this parameter directly. You cannot pass objects through the pipeline to this parameter. ```yaml -Type: ADCentralAccessRule[] +Type: Microsoft.ActiveDirectory.Management.ADCentralAccessRule[] Parameter Sets: (All) Aliases: @@ -158,11 +180,12 @@ Accept wildcard characters: False ``` ### -PassThru + Returns an object representing the item with which you are working. By default, this cmdlet does not generate any output. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -174,30 +197,35 @@ Accept wildcard characters: False ``` ### -Server -Specifies the Active Directory Domain Services instance to connect to, by providing one of the following values for a corresponding domain name or directory server. -The service may be any of the following: Active Directory Lightweight Domain Services, Active Directory Domain Services or Active Directory snapshot instance. -Specify the Active Directory Domain Services instance in one of the following ways: +Specifies the Active Directory Domain Services instance to connect to, by providing one of the +following values for a corresponding domain name or directory server. The service may be any of the +following: Active Directory Lightweight Domain Services, Active Directory Domain Services or Active +Directory snapshot instance. + +Specify the Active Directory Domain Services instance in one of the following ways: Domain name values: - Fully qualified domain name - NetBIOS name -Directory server values: +Directory server values: - Fully qualified directory server name - NetBIOS name - Fully qualified directory server name and port -The default value for this parameter is determined by one of the following methods in the order that they are listed: +The default value for this parameter is determined by one of the following methods in the order that +they are listed: - By using the **Server** value from objects passed through the pipeline -- By using the server information associated with the Active Directory Domain Services Windows PowerShell provider drive, when the cmdlet runs in that drive +- By using the server information associated with the Active Directory Domain Services Windows + PowerShell provider drive, when the cmdlet runs in that drive - By using the domain of the computer running Windows PowerShell ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -209,11 +237,12 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -225,26 +254,32 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### None or Microsoft.ActiveDirectory.Management.ADCentralAccessPolicy -An **ADCentralAccessPolicy** object is received by the *Identity* parameter. + +An **ADCentralAccessPolicy** object is received by the **Identity** parameter. ## OUTPUTS ### None or Microsoft.ActiveDirectory.ADCentralAccessPolicy -Returns the modified **ADCentralAccessPolicy** object when the *PassThru* parameter is specified. + +Returns the modified **ADCentralAccessPolicy** object when the **PassThru** parameter is specified. By default, this cmdlet does not generate any output. ## NOTES -* This cmdlet does not work with a read-only domain controller. -* This cmdlet does not work with an Active Directory snapshot. + +- This cmdlet does not work with a read-only domain controller. +- This cmdlet does not work with an Active Directory snapshot. ## RELATED LINKS [Remove-ADCentralAccessPolicyMember](./Remove-ADCentralAccessPolicyMember.md) [AD DS Administration Cmdlets in Windows PowerShell](./activedirectory.md) - From 2e0c1e256d4fd56e716b00a8f992b931dcc8b3fc Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Tue, 23 May 2023 22:04:14 -0400 Subject: [PATCH 783/965] Fix formatting for Add-ADComputerServiceAccount. --- .../Add-ADComputerServiceAccount.md | 218 +++++++++++------- 1 file changed, 130 insertions(+), 88 deletions(-) diff --git a/docset/winserver2022-ps/activedirectory/Add-ADComputerServiceAccount.md b/docset/winserver2022-ps/activedirectory/Add-ADComputerServiceAccount.md index 570e428871..5d9a916787 100644 --- a/docset/winserver2022-ps/activedirectory/Add-ADComputerServiceAccount.md +++ b/docset/winserver2022-ps/activedirectory/Add-ADComputerServiceAccount.md @@ -16,57 +16,68 @@ Adds one or more service accounts to an Active Directory computer. ## SYNTAX ``` -Add-ADComputerServiceAccount [-WhatIf] [-Confirm] [-AuthType ] [-Credential ] - [-Identity] [-Partition ] [-PassThru] [-Server ] - [-ServiceAccount] [] +Add-ADComputerServiceAccount [-WhatIf] [-Confirm] [-AuthType ] + [-Credential ] [-Identity] [-Partition ] [-PassThru] + [-Server ] [-ServiceAccount] [] ``` ## DESCRIPTION -The **Add-ADComputerServiceAccount** cmdlet adds one or more computer service accounts to an Active Directory computer. -The *Computer* parameter specifies the Active Directory computer that will host the new service accounts. -You can identify a computer by its distinguished name, GUID, security identifier (SID) or Security Accounts Manager (SAM) account name. -You can also set the *Computer* parameter to a computer object variable, such as `$`, or pass a computer object through the pipeline to the *Computer* parameter. -For example, you can use the **Get-ADComputer** cmdlet to retrieve a computer object and then pass the object through the pipeline to the **Add-ADComputerServiceAccount** cmdlet. +The `Add-ADComputerServiceAccount` cmdlet adds one or more computer service accounts to an Active +Directory computer. -The *ServiceAccount* parameter specifies the service accounts to add. -You can identify a service account by its distinguished name, GUID, Security Identifier (SID) or Security Accounts Manager (SAM) account name. -You can also specify service account object variables, such as `$`. -If you are specifying more than one account, use a comma-separated list. +The **Computer** parameter specifies the Active Directory computer that will host the new service +accounts. You can identify a computer by its distinguished name, GUID, security identifier (SID) or +Security Accounts Manager (SAM) account name. You can also set the **Computer** parameter to a +computer object variable, such as `$`, or pass a computer object through the +pipeline to the **Computer** parameter. For example, you can use the `Get-ADComputer` cmdlet to +retrieve a computer object and then pass the object through the pipeline to the +`Add-ADComputerServiceAccount` cmdlet. -Note: Adding a service account is a different operation than installing the service account locally. +The **ServiceAccount** parameter specifies the service accounts to add. You can identify a service +account by its distinguished name, GUID, Security Identifier (SID) or Security Accounts Manager +(SAM) account name. You can also specify service account object variables, such as +`$`. If you are specifying more than one account, use a comma-separated +list. + +> {!NOTE] +> Adding a service account is a different operation than installing the service account locally. ## EXAMPLES -### Example 1: Add a service account to a specified computer account -``` -PS C:\> Add-ADComputerServiceAccount -Computer ComputerAcct1 -ServiceAccount SvcAcct1 +### EXAMPLE 1 + +```powershell +Add-ADComputerServiceAccount -Computer ComputerAcct1 -ServiceAccount SvcAcct1 ``` -This command adds the service account SvcAcct1 to a Computer Account ComputerAcct1. +This command adds the service account `SvcAcct1` to a Computer Account `ComputerAcct1`. + +### EXAMPLE 2 -### Example 2: Add multiple service accounts to a specified computer account ``` -PS C:\> Add-ADComputerServiceAccount -Computer ComputerAcct1 -ServiceAccount SvcAcct1,SvcAcct2 +Add-ADComputerServiceAccount -Computer ComputerAcct1 -ServiceAccount SvcAcct1, SvcAcct2 ``` -This command adds two service accounts, SvcAcct1 and SvcAcct2, to a Computer Account ComputerAcct1. +This command adds two service accounts, `SvcAcct1` and `SvcAcct2`, to a Computer Account +`ComputerAcct1`. ## PARAMETERS ### -AuthType + Specifies the authentication method to use. The acceptable values for this parameter are: -- Negotiate or 0 -- Basic or 1 +- `Negotiate` or `0` +- `Basic` or `1` -The default authentication method is Negotiate. +The default authentication method is `Negotiate`. -A Secure Sockets Layer (SSL) connection is required for the Basic authentication method. +A Secure Sockets Layer (SSL) connection is required for the `Basic` authentication method. ```yaml -Type: ADAuthType +Type: Microsoft.ActiveDirectory.Management.ADAuthType Parameter Sets: (All) Aliases: Accepted values: Negotiate, Basic @@ -79,10 +90,11 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -94,20 +106,24 @@ Accept wildcard characters: False ``` ### -Credential -Specifies the user account credentials to use to perform this task. -The default credentials are the credentials of the currently logged on user unless the cmdlet is run from an Active Directory module for Windows PowerShell provider drive. -If the cmdlet is run from such a provider drive, the account associated with the drive is the default. -To specify this parameter, you can type a user name, such as User1 or Domain01\User01 or you can specify a **PSCredential** object. -If you specify a user name for this parameter, the cmdlet prompts for a password. +Specifies the user account credentials to use to perform this task. The default credentials are the +credentials of the currently logged on user unless the cmdlet is run from an Active Directory module +for Windows PowerShell provider drive. If the cmdlet is run from such a provider drive, the account +associated with the drive is the default. -You can also create a **PSCredential** object by using a script or by using the **Get-Credential** cmdlet. -You can then set the *Credential* parameter to the **PSCredential** object. +To specify this parameter, you can type a user name, such as `User1` or `Domain01\User01` or you can +specify a **PSCredential** object. If you specify a user name for this parameter, the cmdlet prompts +for a password. -If the acting credentials do not have directory-level permission to perform the task, Active Directory module for Windows PowerShell returns a terminating error. +You can also create a **PSCredential** object by using a script or by using the `Get-Credential` +cmdlet. You can then set the **Credential** parameter to the **PSCredential** object. + +If the acting credentials do not have directory-level permission to perform the task, Active +Directory module for Windows PowerShell returns a terminating error. ```yaml -Type: PSCredential +Type: System.Management.Automation.PSCredential Parameter Sets: (All) Aliases: @@ -119,23 +135,25 @@ Accept wildcard characters: False ``` ### -Identity -Specifies an Active Directory computer object by providing one of the following property values. -The identifier in parentheses is the Lightweight Directory Access Protocol (LDAP) display name for the attribute. -The acceptable values for this parameter are: + +Specifies an Active Directory computer object by providing one of the following property values. The +identifier in parentheses is the Lightweight Directory Access Protocol (LDAP) display name for the +attribute. The acceptable values for this parameter are: - A distinguished name -- A GUID (objectGUID) -- A security identifier (objectSid) -- Security Accounts Manager account name (sAMAccountName) +- A GUID (**objectGUID**) +- A security identifier (**objectSid**) +- Security Accounts Manager account name (**sAMAccountName**) -The cmdlet searches the default naming context or partition to find the object. -If the identifier given is a distinguished name, the partition to search is computed from that distinguished name. -If two or more objects are found, the cmdlet returns a non-terminating error. +The cmdlet searches the default naming context or partition to find the object. If the identifier +given is a distinguished name, the partition to search is computed from that distinguished name. If +two or more objects are found, the cmdlet returns a non-terminating error. -This parameter can also get this object through the pipeline or you can set this parameter to a computer object instance. +This parameter can also get this object through the pipeline or you can set this parameter to a +computer object instance. ```yaml -Type: ADComputer +Type: Microsoft.ActiveDirectory.Management.ADComputer Parameter Sets: (All) Aliases: Computer @@ -147,30 +165,40 @@ Accept wildcard characters: False ``` ### -Partition -Specifies the distinguished name of an Active Directory partition. -The distinguished name must be one of the naming contexts on the current directory server. -The cmdlet searches this partition to find the object defined by the *Identity* parameter. - -In many cases, a default value is used for the *Partition* parameter if no value is specified. -The rules for determining the default value are given below. -Note that rules listed first are evaluated first and once a default value can be determined, no further rules are evaluated. - -In Active Directory Domain Services environments, a default value for *Partition* is set in the following cases: - -- If the *Identity* parameter is set to a distinguished name, the default value of *Partition* is automatically generated from this distinguished name. -- If running cmdlets from an Active Directory provider drive, the default value of *Partition* is automatically generated from the current path in the drive. -- If none of the previous cases apply, the default value of *Partition* is set to the default partition or naming context of the target domain. -In Active Directory Lightweight Directory Services (AD LDS) environments, a default value for *Partition* is set in the following cases: - -- If the *Identity* parameter is set to a distinguished name, the default value of *Partition* is automatically generated from this distinguished name. -- If running cmdlets from an Active Directory provider drive, the default value of *Partition* is automatically generated from the current path in the drive. -- If the target AD LDS instance has a default naming context, the default value of *Partition* is set to the default naming context. -To specify a default naming context for an AD LDS environment, set the **msDS-defaultNamingContext** property of the Active Directory directory service agent (DSA) object (**nTDSDSA**) for the AD LDS instance. -- If none of the previous cases apply, the *Partition* parameter will not take any default value. +Specifies the distinguished name of an Active Directory partition. The distinguished name must be +one of the naming contexts on the current directory server. The cmdlet searches this partition to +find the object defined by the **Identity** parameter. + +In many cases, a default value is used for the **Partition** parameter if no value is specified. The +rules for determining the default value are given below. Note that rules listed first are evaluated +first and once a default value can be determined, no further rules are evaluated. + +In Active Directory Domain Services environments, a default value for **Partition** is set in the +following cases: + +- If the **Identity** parameter is set to a distinguished name, the default value of **Partition** + is automatically generated from this distinguished name. +- If running cmdlets from an Active Directory provider drive, the default value of **Partition**is + automatically generated from the current path in the drive. +- If none of the previous cases apply, the default value of **Partition**is set to the default + partition or naming context of the target domain. + +In Active Directory Lightweight Directory Services (AD LDS) environments, a default value for +**Partition**is set in the following cases: + +- If the **Identity** parameter is set to a distinguished name, the default value of **Partition**is + automatically generated from this distinguished name. +- If running cmdlets from an Active Directory provider drive, the default value of **Partition**is + automatically generated from the current path in the drive. +- If the target AD LDS instance has a default naming context, the default value of **Partition**is + set to the default naming context. To specify a default naming context for an AD LDS environment, + set the **msDS-defaultNamingContext** property of the Active Directory directory service agent + (DSA) object (**nTDSDSA**) for the AD LDS instance. +- If none of the previous cases apply, the **Partition**parameter will not take any default value. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -182,11 +210,12 @@ Accept wildcard characters: False ``` ### -PassThru + Returns an object representing the item with which you are working. By default, this cmdlet does not generate any output. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -198,30 +227,35 @@ Accept wildcard characters: False ``` ### -Server -Specifies the Active Directory Domain Services instance to connect to, by providing one of the following values for a corresponding domain name or directory server. -The service may be any of the following: Active Directory Lightweight Domain Services, Active Directory Domain Services or Active Directory snapshot instance. -Specify the Active Directory Domain Services instance in one of the following ways: +Specifies the Active Directory Domain Services instance to connect to, by providing one of the +following values for a corresponding domain name or directory server. The service may be any of the +following: Active Directory Lightweight Domain Services, Active Directory Domain Services or Active +Directory snapshot instance. + +Specify the Active Directory Domain Services instance in one of the following ways: Domain name values: - Fully qualified domain name - NetBIOS name -Directory server values: +Directory server values: - Fully qualified directory server name - NetBIOS name - Fully qualified directory server name and port -The default value for this parameter is determined by one of the following methods in the order that they are listed: +The default value for this parameter is determined by one of the following methods in the order that +they are listed: - By using the **Server** value from objects passed through the pipeline -- By using the server information associated with the Active Directory Domain Services Windows PowerShell provider drive, when the cmdlet runs in that drive +- By using the server information associated with the Active Directory Domain Services Windows + PowerShell provider drive, when the cmdlet runs in that drive - By using the domain of the computer running Windows PowerShell ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -233,16 +267,17 @@ Accept wildcard characters: False ``` ### -ServiceAccount + Specifies one or more Active Directory service accounts. The acceptable values for this parameter are: - A distinguished name -- A GUID (objectGUID) -- A Security Identifier (objectSid) -- SAM account name (sAMAccountName) +- A GUID (**objectGUID**) +- A Security Identifier (**objectSid**) +- SAM account name (**sAMAccountName**) ```yaml -Type: ADServiceAccount[] +Type: Microsoft.ActiveDirectory.Management.ADServiceAccount[] Parameter Sets: (All) Aliases: @@ -254,11 +289,12 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -270,23 +306,30 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### Microsoft.ActiveDirectory.Management.ADComputer -A computer object is received by the *Computer* parameter. + +A computer object is received by the **Computer** parameter. ## OUTPUTS ### None or Microsoft.ActiveDirectory.Management.ADComputer -This cmdlet returns the modified computer object when the *PassThru* parameter is specified. -By default, this cmdlet does not generate any output. + +This cmdlet returns the modified computer object when the **PassThru** parameter is specified. By +default, this cmdlet does not generate any output. ## NOTES -* This cmdlet does not work with AD LDS. -* This cmdlet does not work with a read-only domain controller. -* This cmdlet does not work when targeting a snapshot using the *Server* parameter. + +- This cmdlet does not work with AD LDS. +- This cmdlet does not work with a read-only domain controller. +- This cmdlet does not work when targeting a snapshot using the **Server** parameter. ## RELATED LINKS @@ -297,4 +340,3 @@ By default, this cmdlet does not generate any output. [Remove-ADComputerServiceAccount](./Remove-ADComputerServiceAccount.md) [AD DS Administration Cmdlets in Windows PowerShell](./activedirectory.md) - From bffea61980802f738c22cff5e135ba3858accf71 Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Tue, 23 May 2023 22:07:12 -0400 Subject: [PATCH 784/965] Fix formatting for Add-ADComputerServiceAccount. --- .../Add-ADComputerServiceAccount.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docset/winserver2022-ps/activedirectory/Add-ADComputerServiceAccount.md b/docset/winserver2022-ps/activedirectory/Add-ADComputerServiceAccount.md index 5d9a916787..6f721dec44 100644 --- a/docset/winserver2022-ps/activedirectory/Add-ADComputerServiceAccount.md +++ b/docset/winserver2022-ps/activedirectory/Add-ADComputerServiceAccount.md @@ -179,23 +179,23 @@ following cases: - If the **Identity** parameter is set to a distinguished name, the default value of **Partition** is automatically generated from this distinguished name. -- If running cmdlets from an Active Directory provider drive, the default value of **Partition**is +- If running cmdlets from an Active Directory provider drive, the default value of **Partition** is automatically generated from the current path in the drive. -- If none of the previous cases apply, the default value of **Partition**is set to the default +- If none of the previous cases apply, the default value of **Partition** is set to the default partition or naming context of the target domain. In Active Directory Lightweight Directory Services (AD LDS) environments, a default value for -**Partition**is set in the following cases: +**Partition** is set in the following cases: -- If the **Identity** parameter is set to a distinguished name, the default value of **Partition**is +- If the **Identity** parameter is set to a distinguished name, the default value of **Partition** is automatically generated from this distinguished name. -- If running cmdlets from an Active Directory provider drive, the default value of **Partition**is +- If running cmdlets from an Active Directory provider drive, the default value of **Partition** is automatically generated from the current path in the drive. -- If the target AD LDS instance has a default naming context, the default value of **Partition**is +- If the target AD LDS instance has a default naming context, the default value of **Partition** is set to the default naming context. To specify a default naming context for an AD LDS environment, set the **msDS-defaultNamingContext** property of the Active Directory directory service agent (DSA) object (**nTDSDSA**) for the AD LDS instance. -- If none of the previous cases apply, the **Partition**parameter will not take any default value. +- If none of the previous cases apply, the **Partition** parameter will not take any default value. ```yaml Type: System.String From 6d82fc053303fd553bb3403a12d9dab2cdda9e4b Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Tue, 23 May 2023 22:07:50 -0400 Subject: [PATCH 785/965] Fix formatting for Add-ADComputerServiceAccount. --- .../activedirectory/Add-ADComputerServiceAccount.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/activedirectory/Add-ADComputerServiceAccount.md b/docset/winserver2022-ps/activedirectory/Add-ADComputerServiceAccount.md index 6f721dec44..ecb9cc15c0 100644 --- a/docset/winserver2022-ps/activedirectory/Add-ADComputerServiceAccount.md +++ b/docset/winserver2022-ps/activedirectory/Add-ADComputerServiceAccount.md @@ -187,8 +187,8 @@ following cases: In Active Directory Lightweight Directory Services (AD LDS) environments, a default value for **Partition** is set in the following cases: -- If the **Identity** parameter is set to a distinguished name, the default value of **Partition** is - automatically generated from this distinguished name. +- If the **Identity** parameter is set to a distinguished name, the default value of **Partition** + is automatically generated from this distinguished name. - If running cmdlets from an Active Directory provider drive, the default value of **Partition** is automatically generated from the current path in the drive. - If the target AD LDS instance has a default naming context, the default value of **Partition** is From ba5e590482237db595e8dad4a9ff287f503bfa0b Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Tue, 23 May 2023 22:10:56 -0400 Subject: [PATCH 786/965] Fix formatting for Add-ADComputerServiceAccount. --- .../activedirectory/Add-ADComputerServiceAccount.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/activedirectory/Add-ADComputerServiceAccount.md b/docset/winserver2022-ps/activedirectory/Add-ADComputerServiceAccount.md index ecb9cc15c0..f34e03e27a 100644 --- a/docset/winserver2022-ps/activedirectory/Add-ADComputerServiceAccount.md +++ b/docset/winserver2022-ps/activedirectory/Add-ADComputerServiceAccount.md @@ -55,7 +55,7 @@ This command adds the service account `SvcAcct1` to a Computer Account `Computer ### EXAMPLE 2 -``` +```powershell Add-ADComputerServiceAccount -Computer ComputerAcct1 -ServiceAccount SvcAcct1, SvcAcct2 ``` From 6adc3c6d3209eaf3bfe2e660bc52cc1eb0ba938e Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Tue, 23 May 2023 22:18:55 -0400 Subject: [PATCH 787/965] Fix formatting for Add-ADDomainControllerPasswordReplicationPolicy. --- ...mainControllerPasswordReplicationPolicy.md | 215 +++++++++++------- 1 file changed, 128 insertions(+), 87 deletions(-) diff --git a/docset/winserver2022-ps/activedirectory/Add-ADDomainControllerPasswordReplicationPolicy.md b/docset/winserver2022-ps/activedirectory/Add-ADDomainControllerPasswordReplicationPolicy.md index ef5db9e042..7ef34244fb 100644 --- a/docset/winserver2022-ps/activedirectory/Add-ADDomainControllerPasswordReplicationPolicy.md +++ b/docset/winserver2022-ps/activedirectory/Add-ADDomainControllerPasswordReplicationPolicy.md @@ -16,68 +16,93 @@ Adds users, computers, and groups to the allowed or denied list of a read-only d ## SYNTAX ### AllowedPRP + ``` -Add-ADDomainControllerPasswordReplicationPolicy [-WhatIf] [-Confirm] -AllowedList - [-AuthType ] [-Credential ] [[-Identity] ] [-Server ] - [] +Add-ADDomainControllerPasswordReplicationPolicy [-WhatIf] [-Confirm] + -AllowedList [-AuthType ] [-Credential ] + [[-Identity] ] [-Server ] [] ``` ### DeniedPRP + ``` -Add-ADDomainControllerPasswordReplicationPolicy [-WhatIf] [-Confirm] [-AuthType ] - [-Credential ] -DeniedList [[-Identity] ] [-Server ] - [] +Add-ADDomainControllerPasswordReplicationPolicy [-WhatIf] [-Confirm] + [-AuthType ] [-Credential ] -DeniedList + [[-Identity] ] [-Server ] [] ``` ## DESCRIPTION -The **Add-ADDomainControllerPasswordReplicationPolicy** cmdlet adds one or more users, computers, and groups to the allowed or denied list of a read-only domain controller (RODC) password replication policy. - -The *Identity* parameter specifies the read-only domain controller (RODC) that uses the allowed and denied lists to apply the password replication policy. -You can identify a domain controller by its GUID, IPV4Address, global IPV6Address, or DNS host name. -You can also identify a domain controller by the name of the server object that represents the domain controller, the distinguished name of the NTDS settings object of the server object, the GUID of the NTDS settings object of the server object under the configuration partition, or the distinguished name of the computer object that represents the domain controller. -You can also set the *Identity* parameter to a domain controller object variable, such as `$`, or pass a domain controller object through the pipeline to the *Identity* parameter. -For example, you can use the **Get-ADDomainController** cmdlet to get a domain controller object and then pass the object through the pipeline to the **Add-ADDomainControllerPasswordReplicationPolicy** cmdlet. -You must specify a read-only domain controller. -If you specify a writeable domain controller for this parameter, the cmdlet returns a non-terminating error. - -The *AllowedList* parameter specifies the users, computers, and groups to add to the allowed list. -Similarly, the *DeniedList* parameter specifies the users, computers, and groups to add to the denied list. -You must specify either one or both of the *AllowedList* and *DeniedList* parameters. -You can identify a user, computer, or group by distinguished name, GUID, security identifier (SID) or Security Accounts Manager (SAM) account name. -You can also specify user, computer, or group variables, such as `$`. -If you are specifying more than one item, use a comma-separated list. -If a specified user, computer, or group is not on the allowed or denied list, the cmdlet does not return an error. + +The `Add-ADDomainControllerPasswordReplicationPolicy` cmdlet adds one or more users, computers, +and groups to the allowed or denied list of a read-only domain controller (RODC) password +replication policy. + +The **Identity** parameter specifies the read-only domain controller (RODC) that uses the allowed +and denied lists to apply the password replication policy. You can identify a domain controller by +its GUID, IPV4Address, global IPV6Address, or DNS host name. You can also identify a domain +controller by the name of the server object that represents the domain controller, the distinguished +name of the NTDS settings object of the server object, the GUID of the NTDS settings object of the +server object under the configuration partition, or the distinguished name of the computer object +that represents the domain controller. You can also set the **Identity** parameter to a domain +controller object variable, such as `$`, or pass a domain controller +object through the pipeline to the **Identity** parameter. For example, you can use the +`Get-ADDomainController` cmdlet to get a domain controller object and then pass the object through +the pipeline to the `Add-ADDomainControllerPasswordReplicationPolicy` cmdlet. You must specify a +read-only domain controller. If you specify a writeable domain controller for this parameter, the +cmdlet returns a non-terminating error. + +The **AllowedList** parameter specifies the users, computers, and groups to add to the allowed list. +Similarly, the **DeniedList** parameter specifies the users, computers, and groups to add to the +denied list. You must specify either one or both of the **AllowedList** and **DeniedList** +parameters. You can identify a user, computer, or group by distinguished name, GUID, security +identifier (SID) or Security Accounts Manager (SAM) account name. You can also specify user, +computer, or group variables, such as `$`. If you are specifying more than one +item, use a comma-separated list. If a specified user, computer, or group is not on the allowed or +denied list, the cmdlet does not return an error. ## EXAMPLES -### Example 1: Add user accounts with specified SamAccountNames to the allowed list -``` -PS C:\> Add-ADDomainControllerPasswordReplicationPolicy -Identity "USER01-RODC1" -AllowedList "PattiFuller", "DavidChew" +### Example 1 + +```powershell +$params = @{ + Identity = 'USER01-RODC1' + AllowedList = 'PattiFuller', 'DavidChew' +} +Add-ADDomainControllerPasswordReplicationPolicy @params ``` -This command adds user accounts with the specified SamAccountNames to the Allowed list on the RODC specified by the *Identity* parameter. +This command adds user accounts with the specified SamAccountNames to the Allowed list on the RODC +specified by the **Identity** parameter. -### Example 2: Add user accounts with specified SamAccountNames to the denied list -``` -PS C:\> Add-ADDomainControllerPasswordReplicationPolicy -Identity "USER02-RODC1" -DeniedList "ElisaDaugherty ", "EvanNarvaez" +### Example 2 + +```powershell +$params = @{ + Identity = 'USER02-RODC1' + DeniedList = 'ElisaDaugherty', 'EvanNarvaez' +} +Add-ADDomainControllerPasswordReplicationPolicy @params ``` -This command adds user accounts with the specified SamAccountNames to the Denied list on the RODC specified by the *Identity* parameter. +This command adds user accounts with the specified SamAccountNames to the Denied list on the RODC +specified by the **Identity** parameter. ## PARAMETERS ### -AllowedList -Specifies the users, computers, groups or other accounts to add to the list of accounts allowed to replicate their passwords to this RODC. -You can specify more than one value by using a comma-separated list. -The acceptable values for this parameter are: + +Specifies the users, computers, groups or other accounts to add to the list of accounts allowed to +replicate their passwords to this RODC. You can specify more than one value by using a +comma-separated list. The acceptable values for this parameter are: - A distinguished name -- A GUID (objectGUID) -- A security identifier (objectSid) -- A Security Accounts Manager (SAM) account name (sAMAccountName) +- A GUID (**objectGUID**) +- A security identifier (**objectSid**) +- A Security Accounts Manager (SAM) account name (**sAMAccountName**) ```yaml -Type: ADPrincipal[] +Type: Microsoft.ActiveDirectory.Management.ADPrincipal[] Parameter Sets: AllowedPRP Aliases: @@ -89,18 +114,19 @@ Accept wildcard characters: False ``` ### -AuthType + Specifies the authentication method to use. The acceptable values for this parameter are: -- Negotiate or 0 -- Basic or 1 +- `Negotiate` or `0` +- `Basic` or `1` -The default authentication method is Negotiate. +The default authentication method is `Negotiate`. -A Secure Sockets Layer (SSL) connection is required for the Basic authentication method. +A Secure Sockets Layer (SSL) connection is required for the `Basic` authentication method. ```yaml -Type: ADAuthType +Type: Microsoft.ActiveDirectory.Management.ADAuthType Parameter Sets: (All) Aliases: Accepted values: Negotiate, Basic @@ -113,10 +139,11 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -128,24 +155,24 @@ Accept wildcard characters: False ``` ### -Credential -Specifies the user account credentials to use to perform this task. -The default credentials are the credentials of the currently logged on user unless the cmdlet is run from an Active Directory module for Windows PowerShell provider drive. -If the cmdlet is run from such a provider drive, the account associated with the drive is the default. -To specify this parameter, you can type a user name, such as User1 or Domain01\User01 or you can specify a **PSCredential** object. -If you specify a user name for this parameter, the cmdlet prompts for a password. +Specifies the user account credentials to use to perform this task. The default credentials are the +credentials of the currently logged on user unless the cmdlet is run from an Active Directory module +for Windows PowerShell provider drive. If the cmdlet is run from such a provider drive, the account +associated with the drive is the default. -You can also create a **PSCredential** object by using a script or by using the **Get-Credential** cmdlet. -You can then set the *Credential* parameter to the **PSCredential** object. +To specify this parameter, you can type a user name, such as `User1` or `Domain01\User01` or you can +specify a **PSCredential** object. If you specify a user name for this parameter, the cmdlet prompts +for a password. -If the acting credentials do not have directory-level permission to perform the task, Active Directory module for Windows PowerShell returns a terminating error. +You can also create a **PSCredential** object by using a script or by using the `Get-Credential` +cmdlet. You can then set the **Credential** parameter to the **PSCredential** object. -Specifies the credentials for the security context under which the task is performed. -If this security context doesn't have directory level permissions to perform the task, then an error is returned by the directory. -If running under the context of an Active Directory module for Window PowerShell provider drive, the credentials information associated with the drive is used as the default value; otherwise, the currently logged on user security context is used. +If the acting credentials do not have directory-level permission to perform the task, Active +Directory module for Windows PowerShell returns a terminating error. ```yaml -Type: PSCredential +Type: System.Management.Automation.PSCredential Parameter Sets: (All) Aliases: @@ -157,17 +184,18 @@ Accept wildcard characters: False ``` ### -DeniedList -Specifies the users, computers, groups or other accounts to add to the list of accounts that are denied the right to replicate their passwords to this RODC. -You can specify more than one value by using a comma-separated list. -The acceptable values for this parameter are: + +Specifies the users, computers, groups or other accounts to add to the list of accounts that are +denied the right to replicate their passwords to this RODC. You can specify more than one value by +using a comma-separated list. The acceptable values for this parameter are: - A distinguished name -- A GUID (objectGUID) -- A security identifier (objectSid) -- A SAM account name (sAMAccountName) +- A GUID (**objectGUID**) +- A security identifier (**objectSid**) +- A Security Accounts Manager (SAM) account name (**sAMAccountName**) ```yaml -Type: ADPrincipal[] +Type: Microsoft.ActiveDirectory.Management.ADPrincipal[] Parameter Sets: DeniedPRP Aliases: @@ -179,14 +207,15 @@ Accept wildcard characters: False ``` ### -Identity -Specifies an Active Directory domain controller object by providing one of the following values. -The identifier in parentheses is the Lightweight Directory Access Protocol (LDAP) display name for the attribute. -The acceptable values for this parameter are: -- A GUID (objectGUID) +Specifies an Active Directory domain controller object by providing one of the following values. The +identifier in parentheses is the Lightweight Directory Access Protocol (LDAP) display name for the +attribute. The acceptable values for this parameter are: + +- A GUID (**objectGUID**) - An IPV4Address -- A Global IPV6Address -- A DNS Host Name (dNSHostName) +- A Global IPV6Address +- A DNS Host Name (**dNSHostName**) - A name of the server object - A distinguished name of the NTDS Settings object - A distinguished name of the server object that represents the domain controller @@ -197,10 +226,11 @@ The acceptable values for this parameter are: The cmdlet searches the default naming context or partition to find the object. If two or more objects are found, the cmdlet returns a non-terminating error. -This parameter can also get this object through the pipeline or you can set this parameter to an object instance. +This parameter can also get this object through the pipeline or you can set this parameter to an +object instance. ```yaml -Type: ADDomainController +Type: Microsoft.ActiveDirectory.Management.ADDomainController Parameter Sets: (All) Aliases: @@ -212,30 +242,35 @@ Accept wildcard characters: False ``` ### -Server -Specifies the Active Directory Domain Services instance to connect to, by providing one of the following values for a corresponding domain name or directory server. -The service may be any of the following: Active Directory Lightweight Domain Services, Active Directory Domain Services or Active Directory snapshot instance. -Specify the Active Directory Domain Services instance in one of the following ways: +Specifies the Active Directory Domain Services instance to connect to, by providing one of the +following values for a corresponding domain name or directory server. The service may be any of the +following: Active Directory Lightweight Domain Services, Active Directory Domain Services or Active +Directory snapshot instance. + +Specify the Active Directory Domain Services instance in one of the following ways: Domain name values: - Fully qualified domain name - NetBIOS name -Directory server values: +Directory server values: - Fully qualified directory server name - NetBIOS name - Fully qualified directory server name and port -The default value for this parameter is determined by one of the following methods in the order that they are listed: +The default value for this parameter is determined by one of the following methods in the order that +they are listed: - By using the **Server** value from objects passed through the pipeline -- By using the server information associated with the Active Directory Domain Services Windows PowerShell provider drive, when the cmdlet runs in that drive -- By using the domain of the computer that runs Windows PowerShell +- By using the server information associated with the Active Directory Domain Services Windows + PowerShell provider drive, when the cmdlet runs in that drive +- By using the domain of the computer running Windows PowerShell ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -247,11 +282,12 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -263,25 +299,30 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### Microsoft.ActiveDirectory.Management.ADDomainController -An RODC object is received by the *Identity* parameter. + +An RODC object is received by the **Identity** parameter. ## OUTPUTS -### None. +### None ## NOTES -* This cmdlet does not work with Active Directory Lightweight Directory Services. -* This cmdlet does not work with a read-only domain controller. -* This cmdlet does not work with an Active Directory snapshot. + +- This cmdlet does not work with Active Directory Lightweight Directory Services. +- This cmdlet does not work with a read-only domain controller. +- This cmdlet does not work with an Active Directory snapshot. ## RELATED LINKS [Get-ADDomainController](./Get-ADDomainController.md) [Get-ADDomainControllerPasswordReplicationPolicy](./Get-ADDomainControllerPasswordReplicationPolicy.md) - From 6be979196e4e32ebeeeb7b2e0d04805de1017baf Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Tue, 23 May 2023 22:32:02 -0400 Subject: [PATCH 788/965] Fix formatting for Add-ADFineGrainedPasswordPolicy. --- .../Add-ADFineGrainedPasswordPolicySubject.md | 241 +++++++++++------- 1 file changed, 146 insertions(+), 95 deletions(-) diff --git a/docset/winserver2022-ps/activedirectory/Add-ADFineGrainedPasswordPolicySubject.md b/docset/winserver2022-ps/activedirectory/Add-ADFineGrainedPasswordPolicySubject.md index 19c74cc223..bd9f4c3c2d 100644 --- a/docset/winserver2022-ps/activedirectory/Add-ADFineGrainedPasswordPolicySubject.md +++ b/docset/winserver2022-ps/activedirectory/Add-ADFineGrainedPasswordPolicySubject.md @@ -17,69 +17,88 @@ Applies a fine-grained password policy to one more users and groups. ``` Add-ADFineGrainedPasswordPolicySubject [-WhatIf] [-Confirm] [-AuthType ] - [-Credential ] [-Identity] [-Partition ] [-PassThru] - [-Server ] [-Subjects] [] + [-Credential ] [-Identity] + [-Partition ] [-PassThru] [-Server ] [-Subjects] + [] ``` ## DESCRIPTION -The **Add-ADFineGrainedPasswordPolicySubject** cmdlet applies a fine-grained password policy to one or more global security groups and users. -The *Identity* parameter specifies the fine-grained password policy to apply. -You can identify a fine-grained password policy by its distinguished name, GUID or name. -You can also set the *Identity* parameter to a fine-grained password policy object variable, such as `$`, or pass a fine-grained password policy object through the pipeline operator to the *Identity* parameter. -For example, you can use the **Get-ADFineGrainedPasswordPolicy** cmdlet to get a fine-grained password policy object and then pass the object through the pipeline operator to the **Add-ADFineGrainedPasswordPolicySubject** cmdlet. - -The *Subjects* parameter specifies the users and global security groups. -You can identify a user or global security group by its distinguished name (DN), GUID, security identifier (SID), or Security Account Manager (SAM) account name. -You can also specify user and global security group object variables, such as `$`. -If you are specifying more than one user or group, use a comma-separated list. -To pass user and global security group objects through the pipeline to the *Subjects* parameter, use the Get-ADUser or the **Get-ADGroup** cmdlets to retrieve the user or group objects, and then pass these objects through the pipeline operator to the **Add-ADFineGrainedPasswordPolicySubject** cmdlet. +The `Add-ADFineGrainedPasswordPolicySubject` cmdlet applies a fine-grained password policy to one or +more global security groups and users. + +The **Identity** parameter specifies the fine-grained password policy to apply. You can identify a +fine-grained password policy by its distinguished name, GUID or name. You can also set the +**Identity** parameter to a fine-grained password policy object variable, such as +`$`, or pass a fine-grained password policy object through the pipeline +operator to the **Identity** parameter. For example, you can use the +`Get-ADFineGrainedPasswordPolicy` cmdlet to get a fine-grained password policy object and then pass +the object through the pipeline operator to the `Add-ADFineGrainedPasswordPolicySubject` cmdlet. + +The **Subjects** parameter specifies the users and global security groups. You can identify a user +or global security group by its distinguished name (DN), GUID, security identifier (SID), or +Security Account Manager (SAM) account name. You can also specify user and global security group +object variables, such as `$`. If you are specifying more than one user or group, +use a comma-separated list. To pass user and global security group objects through the pipeline to +the **Subjects** parameter, use the `Get-ADUser` or the `Get-ADGroup` cmdlets to retrieve the user +or group objects, and then pass these objects through the pipeline operator to the +`Add-ADFineGrainedPasswordPolicySubject` cmdlet. ## EXAMPLES -### Example 1: Apply a fine-grained password policy to a global security group -``` -PS C:\> Add-ADFineGrainedPasswordPolicySubject -Identity DomainUsersPSO -Subjects 'Domain Users' +### EXAMPLE 1 + +```powershell +Add-ADFineGrainedPasswordPolicySubject -Identity DomainUsersPSO -Subjects 'Domain Users' ``` -This command applies the fine-grained password policy named DomainUsersPSO to the Domain Users global security group. +This command applies the fine-grained password policy named `DomainUsersPSO` to the `Domain Users` +global security group. -### Example 2: Apply a fine-grained password policy to multiple users -``` -PS C:\> Add-ADFineGrainedPasswordPolicySubject -Identity DlgtdAdminsPSO -Subjects BobKe,KimAb +### EXAMPLE 2 + +```powershell +Add-ADFineGrainedPasswordPolicySubject -Identity DlgtdAdminsPSO -Subjects BobKe, KimAb ``` -This command applies the fine-grained password policy named DlgtdAdminsPSO to users with the SAM account names BobKe and KimAb. +This command applies the fine-grained password policy named `DlgtdAdminsPSO` to users with the SAM +account names `BobKe` and `KimAb`. -### Example 3: Apply a fine-grained password policy to a security group -``` -PS C:\> Add-ADFineGrainedPasswordPolicySubject -Identity DlgtdAdminsPSO -Subjects DlgtdAdminGroup +### EXAMPLE 3 + +```powershell +Add-ADFineGrainedPasswordPolicySubject -Identity DlgtdAdminsPSO -Subjects DlgtdAdminGroup ``` -This command applies the fine-grained password policy named DlgtdAdminsPSO to the group DlgtdAdminGroup. +This command applies the fine-grained password policy named `DlgtdAdminsPSO` to the group +`DlgtdAdminGroup`. -### Example 4: Apply a fine-grained password policy to users with a specified name -``` -PS C:\> Get-ADUser -Filter "lastname -eq 'Fuller'" | Add-ADFineGrainedPasswordPolicySubject -Identity DlgtdAdminsPSO +### EXAMPLE 4 + +```powershell +Get-ADUser -Filter "lastname -eq 'Fuller'" | + Add-ADFineGrainedPasswordPolicySubject -Identity DlgtdAdminsPSO ``` -This command applies the fine-grained password policy named DlgtdAdminsPSO to any users whose last name is Fuller. +This command applies the fine-grained password policy named `DlgtdAdminsPSO` to any users whose last +name is `Fuller`. ## PARAMETERS ### -AuthType + Specifies the authentication method to use. The acceptable values for this parameter are: -- Negotiate or 0 -- Basic or 1 +- `Negotiate` or `0` +- `Basic` or `1` -The default authentication method is Negotiate. +The default authentication method is `Negotiate`. -A Secure Sockets Layer (SSL) connection is required for the Basic authentication method. +A Secure Sockets Layer (SSL) connection is required for the `Basic` authentication method. ```yaml -Type: ADAuthType +Type: Microsoft.ActiveDirectory.Management.ADAuthType Parameter Sets: (All) Aliases: Accepted values: Negotiate, Basic @@ -92,10 +111,11 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -107,20 +127,24 @@ Accept wildcard characters: False ``` ### -Credential -Specifies the user account credentials to use to perform this task. -The default credentials are the credentials of the currently logged on user unless the cmdlet is run from an Active Directory PowerShell provider drive. -If the cmdlet is run from such a provider drive, the account associated with the drive is the default. -To specify this parameter, you can type a user name, such as User1 or Domain01\User01 or you can specify a **PSCredential** object. -If you specify a user name for this parameter, the cmdlet prompts for a password. +Specifies the user account credentials to use to perform this task. The default credentials are the +credentials of the currently logged on user unless the cmdlet is run from an Active Directory module +for Windows PowerShell provider drive. If the cmdlet is run from such a provider drive, the account +associated with the drive is the default. -You can also create a **PSCredential** object by using a script or by using the **Get-Credential** cmdlet. -You can then set the *Credential* parameter to the **PSCredential** object. +To specify this parameter, you can type a user name, such as `User1` or `Domain01\User01` or you can +specify a **PSCredential** object. If you specify a user name for this parameter, the cmdlet prompts +for a password. -If the acting credentials do not have directory-level permission to perform the task, Active Directory PowerShell returns a terminating error. +You can also create a **PSCredential** object by using a script or by using the `Get-Credential` +cmdlet. You can then set the **Credential** parameter to the **PSCredential** object. + +If the acting credentials do not have directory-level permission to perform the task, Active +Directory module for Windows PowerShell returns a terminating error. ```yaml -Type: PSCredential +Type: System.Management.Automation.PSCredential Parameter Sets: (All) Aliases: @@ -132,21 +156,23 @@ Accept wildcard characters: False ``` ### -Identity -Specifies an Active Directory fine-grained password policy object by providing one of the following property values. -The identifier in parentheses is the Lightweight Directory Access Protocol (LDAP) display name for the attribute. -The acceptable values for this parameter are: + +Specifies an Active Directory fine-grained password policy object by providing one of the following +property values. The identifier in parentheses is the Lightweight Directory Access Protocol (LDAP) +display name for the attribute. The acceptable values for this parameter are: - A distinguished name -- A GUID (objectGUID) +- A GUID (**objectGUID**) - A name (name) The cmdlet searches the default naming context or partition to find the object. If two or more objects are found, the cmdlet returns a non-terminating error. -This parameter can also get this object through the pipeline or you can set this parameter to a fine-grained password policy object instance. +This parameter can also get this object through the pipeline or you can set this parameter to a +fine-grained password policy object instance. ```yaml -Type: ADFineGrainedPasswordPolicy +Type: Microsoft.ActiveDirectory.Management.ADFineGrainedPasswordPolicy Parameter Sets: (All) Aliases: @@ -158,30 +184,40 @@ Accept wildcard characters: False ``` ### -Partition -Specifies the distinguished name of an Active Directory partition. -The distinguished name must be one of the naming contexts on the current directory server. -The cmdlet searches this partition to find the object defined by the *Identity* parameter. -In many cases, a default value is used for the *Partition* parameter if no value is specified. -The rules for determining the default value are given below. -Note that rules listed first are evaluated first and once a default value can be determined, no further rules are evaluated. - -In Active Directory Domain Services (AD DS) environments, a default value for *Partition* is set in the following cases: - -- If the *Identity* parameter is set to a distinguished name, the default value of *Partition* is automatically generated from this distinguished name. -- If running cmdlets from an Active Directory provider drive, the default value of *Partition* is automatically generated from the current path in the drive. -- If none of the previous cases apply, the default value of *Partition* is set to the default partition or naming context of the target domain. - -In Active Directory Lightweight Directory Services (AD LDS) environments, a default value for *Partition* is set in the following cases: - -- If the *Identity* parameter is set to a distinguished name, the default value of *Partition* is automatically generated from this distinguished name. -- If running cmdlets from an Active Directory provider drive, the default value of *Partition* is automatically generated from the current path in the drive. -- If the target AD LDS instance has a default naming context, the default value of *Partition* is set to the default naming context. -To specify a default naming context for an AD LDS environment, set the **msDS-defaultNamingContext** property of the Active Directory directory service agent (DSA) object (nTDSDSA) for the AD LDS instance. -- If none of the previous cases apply, the *Partition* parameter does not take any default value. +Specifies the distinguished name of an Active Directory partition. The distinguished name must be +one of the naming contexts on the current directory server. The cmdlet searches this partition to +find the object defined by the **Identity** parameter. + +In many cases, a default value is used for the **Partition** parameter if no value is specified. The +rules for determining the default value are given below. Note that rules listed first are evaluated +first and once a default value can be determined, no further rules are evaluated. + +In Active Directory Domain Services environments, a default value for **Partition** is set in the +following cases: + +- If the **Identity** parameter is set to a distinguished name, the default value of **Partition** + is automatically generated from this distinguished name. +- If running cmdlets from an Active Directory provider drive, the default value of **Partition** is + automatically generated from the current path in the drive. +- If none of the previous cases apply, the default value of **Partition** is set to the default + partition or naming context of the target domain. + +In Active Directory Lightweight Directory Services (AD LDS) environments, a default value for +**Partition** is set in the following cases: + +- If the **Identity** parameter is set to a distinguished name, the default value of **Partition** + is automatically generated from this distinguished name. +- If running cmdlets from an Active Directory provider drive, the default value of **Partition** is + automatically generated from the current path in the drive. +- If the target AD LDS instance has a default naming context, the default value of **Partition** is + set to the default naming context. To specify a default naming context for an AD LDS environment, + set the **msDS-defaultNamingContext** property of the Active Directory directory service agent + (DSA) object (**nTDSDSA**) for the AD LDS instance. +- If none of the previous cases apply, the **Partition** parameter will not take any default value. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -193,11 +229,12 @@ Accept wildcard characters: False ``` ### -PassThru + Returns an object representing the item with which you are working. By default, this cmdlet does not generate any output. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -209,30 +246,35 @@ Accept wildcard characters: False ``` ### -Server -Specifies the AD DS instance to connect to, by providing one of the following values for a corresponding domain name or directory server. -The service may be any of the following: AD LDS, AD DS, or Active Directory snapshot instance. -Specify the AD DS instance in one of the following ways: +Specifies the Active Directory Domain Services instance to connect to, by providing one of the +following values for a corresponding domain name or directory server. The service may be any of the +following: Active Directory Lightweight Domain Services, Active Directory Domain Services or Active +Directory snapshot instance. + +Specify the Active Directory Domain Services instance in one of the following ways: Domain name values: - Fully qualified domain name - NetBIOS name -Directory server values: +Directory server values: - Fully qualified directory server name - NetBIOS name - Fully qualified directory server name and port -The default value for this parameter is determined by one of the following methods in the order that they are listed: +The default value for this parameter is determined by one of the following methods in the order that +they are listed: - By using the **Server** value from objects passed through the pipeline -- By using the server information associated with the Active Directory Domain Services Windows PowerShell provider drive, when the cmdlet runs in that drive +- By using the server information associated with the Active Directory Domain Services Windows + PowerShell provider drive, when the cmdlet runs in that drive - By using the domain of the computer running Windows PowerShell ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -244,21 +286,22 @@ Accept wildcard characters: False ``` ### -Subjects + Specifies one or more users or groups. To specify more than one user or group, use a comma-separated list. You can identify a user or group by one of the following property values: -- Distinguished name (DN) -- GUID (objectGUID) -- Security Identifier (objectSid) -- SAM account name (sAMAccountName) +- Distinguished name (DN) +- GUID (**objectGUID**) +- Security Identifier (**objectSid**) +- SAM account name (**sAMAccountName**) Note: The identifier in parentheses is the LDAP display name for the attribute. You can also provide objects to this parameter directly. ```yaml -Type: ADPrincipal[] +Type: Microsoft.ActiveDirectory.Management.ADPrincipal[] Parameter Sets: (All) Aliases: @@ -270,11 +313,12 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -286,14 +330,20 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### Microsoft.ActiveDirectory.Management.ADFineGrainedPasswordPolicy, Microsoft.ActiveDirectory.Management.ADPrincipal -A fine-grained password policy object is received by the *Identity* parameter. -One or more principal objects that represent users and security group objects are received by the *Subjects* parameter. -Derived principal types, such as the following, are also accepted by the *Subjects* parameter: + +A fine-grained password policy object is received by the **Identity** parameter. One or more +principal objects that represent users and security group objects are received by the **Subjects** +parameter. Derived principal types, such as the following, are also accepted by the **Subjects** +parameter: - **Microsoft.ActiveDirectory.Management.ADGroup** - **Microsoft.ActiveDirectory.Management.ADUser** @@ -301,17 +351,18 @@ Derived principal types, such as the following, are also accepted by the *Subjec ## OUTPUTS ### None or Microsoft.ActiveDirectory.Management.ADFineGrainedPasswordPolicy -Returns the modified fine-grained password policy object when the *PassThru* parameter is specified. -By default, this cmdlet does not generate any output. + +Returns the modified fine-grained password policy object when the **PassThru** parameter is +specified. By default, this cmdlet does not generate any output. ## NOTES -* This cmdlet does not work with AD LDS. -* This cmdlet does not work with a read-only domain controller. -* This cmdlet does not work with an Active Directory snapshot. + +- This cmdlet does not work with AD LDS. +- This cmdlet does not work with a read-only domain controller. +- This cmdlet does not work with an Active Directory snapshot. ## RELATED LINKS [Get-ADFineGrainedPasswordPolicySubject](./Get-ADFineGrainedPasswordPolicySubject.md) [Remove-ADFineGrainedPasswordPolicySubject](./Remove-ADFineGrainedPasswordPolicySubject.md) - From c87a22e377f740d0288f73f1de28500cf472f8b9 Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Wed, 24 May 2023 19:33:26 -0400 Subject: [PATCH 789/965] Fix formatting for Add-ADGroupMember. Remove redundant example --- .../activedirectory/Add-ADGroupMember.md | 309 ++++++++++-------- 1 file changed, 174 insertions(+), 135 deletions(-) diff --git a/docset/winserver2022-ps/activedirectory/Add-ADGroupMember.md b/docset/winserver2022-ps/activedirectory/Add-ADGroupMember.md index ccb0af15b4..b857b7025c 100644 --- a/docset/winserver2022-ps/activedirectory/Add-ADGroupMember.md +++ b/docset/winserver2022-ps/activedirectory/Add-ADGroupMember.md @@ -16,85 +16,103 @@ Adds one or more members to an Active Directory group. ## SYNTAX ``` -Add-ADGroupMember [-WhatIf] [-Confirm] [-AuthType ] [-Credential ] - [-Identity] [-Members] [-MemberTimeToLive ] [-Partition ] - [-PassThru] [-Server ] [-DisablePermissiveModify] [] +Add-ADGroupMember [-WhatIf] [-Confirm] [-AuthType ] + [-Credential ] [-Identity] [-Members] + [-MemberTimeToLive ] [-Partition ] [-PassThru] [-Server ] + [-DisablePermissiveModify] [] ``` ## DESCRIPTION -The **Add-ADGroupMember** cmdlet adds one or more users, groups, service accounts, or computers as new members of an Active Directory group. -The *Identity* parameter specifies the Active Directory group that receives the new members. -You can identify a group by its distinguished name, GUID, security identifier, or Security Account Manager (SAM) account name. -You can also specify group object variable, such as `$`, or pass a group object through the pipeline to the *Identity* parameter. -For example, you can use the **Get-ADGroup** cmdlet to get a group object and then pass the object through the pipeline to the **Add-ADGroupMember** cmdlet. +The `Add-ADGroupMember` cmdlet adds one or more users, groups, service accounts, or computers as +new members of an Active Directory group. -The *Members* parameter specifies the new members to add to a group. -You can identify a new member by its distinguished name, GUID, security identifier, or SAM account name. -You can also specify user, computer, and group object variables, such as `$`. -If you are specifying more than one new member, use a comma-separated list. -You cannot pass user, computer, or group objects through the pipeline to this cmdlet. -To add user, computer, or group objects to a group by using the pipeline, use the **Add-ADPrincipalGroupMembership** cmdlet. +The **Identity** parameter specifies the Active Directory group that receives the new members. You +can identify a group by its distinguished name, GUID, security identifier, or Security Account +Manager (SAM) account name. You can also specify group object variable, such as +`$`, or pass a group object through the pipeline to the **Identity** parameter. +For example, you can use the `Get-ADGroup` cmdlet to get a group object and then pass the object +through the pipeline to the `Add-ADGroupMember` cmdlet. -For Active Directory Lightweight Directory Services (AD LDS) environments, the *Partition* parameter must be specified except in the following two conditions: +The **Members** parameter specifies the new members to add to a group. You can identify a new member +by its distinguished name, GUID, security identifier, or SAM account name. You can also specify +user, computer, and group object variables, such as `$`. If you are specifying more +than one new member, use a comma-separated list. You cannot pass user, computer, or group objects +through the pipeline to this cmdlet. To add user, computer, or group objects to a group by using the +pipeline, use the `Add-ADPrincipalGroupMembership` cmdlet. + +For Active Directory Lightweight Directory Services (AD LDS) environments, the **Partition** +parameter must be specified except in the following two conditions: - The cmdlet is run from an Active Directory provider drive. - A default naming context or partition is defined for the AD LDS environment. -To specify a default naming context for an AD LDS environment, set the **msDS-defaultNamingContext** property of the Active Directory directory service agent object (nTDSDSA) for the AD LDS instance. +- To specify a default naming context for an AD LDS environment, set the + **msDS-defaultNamingContext** property of the Active Directory directory service agent object + (nTDSDSA) for the AD LDS instance. ## EXAMPLES -### Example 1: Add specified user accounts to a group -``` -PS C:\> Add-ADGroupMember -Identity SvcAccPSOGroup -Members SQL01,SQL02 -``` - -This command adds the user accounts with the SAM account names SQL01 and SQL02 to the group SvcAccPSOGroup. +### EXAMPLE 1 -### Example 2: Add all user accounts to a group -``` -PS C:\> Add-ADGroupMember -cmdlet Add-ADGroupMember at command pipeline position 1 -Supply values for the following parameters: -Identity: RodcAdmins -Members[0]: DavidChew -Members[1]: PattiFuller -Members[2]: +```powershell +Add-ADGroupMember -Identity SvcAccPSOGroup -Members SQL01, SQL02 ``` -This command adds user accounts with SAM account names DavidChew and PattiFuller to the group RodcAdmins. +This command adds the user accounts with the SAM account names `SQL01` and `SQL02` to the group +`SvcAccPSOGroup`. -### Example 3: Add an account by distinguished name to a filtered group -``` -PS C:\> Get-ADGroup -Server localhost:60000 -SearchBase "OU=AccountDeptOU,DC=AppNC" -Filter "name -like 'AccountLeads'" | Add-ADGroupMember -Members "CN=PattiFuller,OU=AccountDeptOU,DC=AppNC" -``` - -This command gets a group from the organizational unit OU=AccountDeptOU,DC=AppNC in the AD LDS instance localhost:60000 that has the name AccountLeads, and then pipes it to **Add-ADGroupMember**, which then adds the user account with the distinguished name CN=PattiFuller,OU=AccountDeptOU,DC=AppNC to it. +### EXAMPLE 2 -### Example 4: Add a user from a domain to a group in another domain +```powershell +$params = @{ + Server = 'localhost:60000' + SearchBase = 'OU=AccountDeptOU,DC=AppNC' + Filter = "name -like 'AccountLeads'" +} +Get-ADGroup @params | + Add-ADGroupMember -Members 'CN=PattiFuller,OU=AccountDeptOU,DC=AppNC' ``` -PS C:\> $User = Get-ADUser -Identity "CN=Chew David,OU=UserAccounts,DC=NORTHAMERICA,DC=FABRIKAM,DC=COM" -Server "northamerica.fabrikam.com" -PS C:\> $Group = Get-ADGroup -Identity "CN=AccountLeads,OU=UserAccounts,DC=EUROPE,DC=FABRIKAM,DC=COM" -Server "europe.fabrikam.com" -PS C:\> Add-ADGroupMember -Identity $Group -Members $User -Server "europe.fabrikam.com" + +This command gets a group from the organizational unit `OU=AccountDeptOU,DC=AppNC` in the AD LDS +instance `localhost:60000` that has the name `AccountLeads`, and then pipes it to +`Add-ADGroupMember`, which then adds the user account with the distinguished name +`CN=PattiFuller,OU=AccountDeptOU,DC=AppNC` to it. + +### EXAMPLE 3 + +```powershell +$userParams = @{ + Identity = 'CN=Chew David,OU=UserAccounts,DC=NORTHAMERICA,DC=FABRIKAM,DC=COM' + Server = 'northamerica.fabrikam.com' +} +$User = Get-ADUser @userParams +$groupParams = @{ + Identity = 'CN=AccountLeads,OU=UserAccounts,DC=EUROPE,DC=FABRIKAM,DC=COM' + Server = 'europe.fabrikam.com' +} +$Group = Get-ADGroup @groupParams +Add-ADGroupMember -Identity $Group -Members $User -Server "europe.fabrikam.com" ``` -This command adds the user CN=Chew David,OU=UserAccounts from the North America domain to the group CN=AccountLeads,OU=UserAccounts in the Europe domain. +This command adds the user `CN=Chew David,OU=UserAccounts` from the North America domain to the +group `CN=AccountLeads,OU=UserAccounts` in the Europe domain. ## PARAMETERS ### -AuthType + Specifies the authentication method to use. The acceptable values for this parameter are: -- Negotiate or 0 -- Basic or 1 +- `Negotiate` or `0` +- `Basic` or `1` -The default authentication method is Negotiate. +The default authentication method is `Negotiate`. -A Secure Sockets Layer (SSL) connection is required for the Basic authentication method. +A Secure Sockets Layer (SSL) connection is required for the `Basic` authentication method. ```yaml -Type: ADAuthType +Type: Microsoft.ActiveDirectory.Management.ADAuthType Parameter Sets: (All) Aliases: Accepted values: Negotiate, Basic @@ -107,10 +125,11 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -122,20 +141,24 @@ Accept wildcard characters: False ``` ### -Credential -Specifies the user account credentials to use to perform this task. -The default credentials are the credentials of the currently logged on user unless the cmdlet is run from an Active Directory module for Windows PowerShell provider drive. -If the cmdlet is run from such a provider drive, the account associated with the drive is the default. -To specify this parameter, you can type a user name, such as User1 or Domain01\User01 or you can specify a **PSCredential** object. -If you specify a user name for this parameter, the cmdlet prompts for a password. +Specifies the user account credentials to use to perform this task. The default credentials are the +credentials of the currently logged on user unless the cmdlet is run from an Active Directory module +for Windows PowerShell provider drive. If the cmdlet is run from such a provider drive, the account +associated with the drive is the default. -You can also create a **PSCredential** object by using a script or by using the **Get-Credential** cmdlet. -You can then set the *Credential* parameter to the **PSCredential** object. +To specify this parameter, you can type a user name, such as `User1` or `Domain01\User01` or you can +specify a **PSCredential** object. If you specify a user name for this parameter, the cmdlet prompts +for a password. -If the acting credentials do not have directory-level permission to perform the task, Active Directory module for Windows PowerShell returns a terminating error. +You can also create a **PSCredential** object by using a script or by using the `Get-Credential` +cmdlet. You can then set the **Credential** parameter to the **PSCredential** object. + +If the acting credentials do not have directory-level permission to perform the task, Active +Directory module for Windows PowerShell returns a terminating error. ```yaml -Type: PSCredential +Type: System.Management.Automation.PSCredential Parameter Sets: (All) Aliases: @@ -147,14 +170,15 @@ Accept wildcard characters: False ``` ### -DisablePermissiveModify -Group membership updates use permissive modify by default. This suppresses an error when adding a member that is already member of the group. -When this parameter is used, an error "The specified account name is already a member of the group" is returned. -This parameter is available in Windows Server 2019 with the September 2020 Updates. +Group membership updates use permissive modify by default. This suppresses an error when adding a +member that is already member of the group. When this parameter is used, an error "The specified +account name is already a member of the group" is returned. +This parameter is available in Windows Server 2019 with the September 2020 Updates. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -166,22 +190,24 @@ Accept wildcard characters: False ``` ### -Identity -Specifies an Active Directory group object by providing one of the following values. -The identifier in parentheses is the Lightweight Directory Access Protocol (LDAP) display name for the attribute. + +Specifies an Active Directory group object by providing one of the following values. The identifier +in parentheses is the Lightweight Directory Access Protocol (LDAP) display name for the attribute. The acceptable values for this parameter are: - A distinguished name -- A GUID (objectGUID) -- A security identifier (objectSid) -- A Security Account Manager account name (sAMAccountName) +- A GUID (**objectGUID**) +- A security identifier (**objectSid**) +- Security Accounts Manager account name (**sAMAccountName**) -The cmdlet searches the default naming context or partition to find the object. -If two or more objects are found, the cmdlet returns a non-terminating error. +The cmdlet searches the default naming context or partition to find the object. If two or more +objects are found, the cmdlet returns a non-terminating error. -This parameter can also get this object through the pipeline or you can set this parameter to an object instance. +This parameter can also get this object through the pipeline or you can set this parameter to an +object instance. ```yaml -Type: ADGroup +Type: Microsoft.ActiveDirectory.Management.ADGroup Parameter Sets: (All) Aliases: @@ -193,10 +219,11 @@ Accept wildcard characters: False ``` ### -MemberTimeToLive + Specifies a Time to Live (TTL) for the new group members. ```yaml -Type: TimeSpan +Type: System.TimeSpan Parameter Sets: (All) Aliases: @@ -208,30 +235,33 @@ Accept wildcard characters: False ``` ### -Members + Specifies an array of user, group, and computer objects in a comma-separated list to add to a group. -To identify each object, use one of the following property values. -Note: The identifier in parentheses is the LDAP display name. -The acceptable values for this parameter are: +To identify each object, use one of the following property values. The identifier in parentheses is +the LDAP display name. The acceptable values for this parameter are: - Distinguished name -- GUID (objectGUID) -- Security identifier (objectSid) -- SAM account name (sAMAccountName) +- GUID (**objectGUID**) +- Security identifier (**objectSid**) +- SAM account name (**sAMAccountName**) You can also provide objects to this parameter directly. The following examples show how to specify this parameter. -This example specifies a user and group to add by specifying the distinguished name and the SAM account name properties. +This example specifies a user and group to add by specifying the distinguished name and the SAM +account name properties. `-Members "CN=SaraDavis,CN=employees,CN=Users,DC=contoso,DC=com", "saradavisreports"` -This example specifies a user and a group object that are defined in the current Windows PowerShell session as input for the parameter. +This example specifies a user and a group object that are defined in the current Windows PowerShell +session as input for the parameter. `-Members $userObject, $GroupObject` -The objects specified for this parameter are processed as **Microsoft.ActiveDirectory.Management.ADPrincipal** objects. -Derived types, such as the following are also received by this parameter. +The objects specified for this parameter are processed as +**Microsoft.ActiveDirectory.Management.ADPrincipal** objects. Derived types, such as the following +are also received by this parameter. - **Microsoft.ActiveDirectory.Management.ADUser** - **Microsoft.ActiveDirectory.Management.ADComputer** @@ -241,7 +271,7 @@ Derived types, such as the following are also received by this parameter. You cannot pass objects through the pipeline to this parameter. ```yaml -Type: ADPrincipal[] +Type: Microsoft.ActiveDirectory.Management.ADPrincipal[] Parameter Sets: (All) Aliases: @@ -253,30 +283,40 @@ Accept wildcard characters: False ``` ### -Partition -Specifies the distinguished name of an Active Directory partition. -The distinguished name must be one of the naming contexts on the current directory server. -The cmdlet searches this partition to find the object defined by the *Identity* parameter. - -In many cases, a default value is used for the *Partition* parameter if no value is specified. -The rules for determining the default value are given below. -Note that rules listed first are evaluated first and once a default value can be determined, no further rules are evaluated. - -In Active Directory Domain Services (AD DS) environments, a default value for *Partition* is set in the following cases: - -- If the *Identity* parameter is set to a distinguished name, the default value of *Partition* is automatically generated from this distinguished name. -- If running cmdlets from an Active Directory provider drive, the default value of *Partition* is automatically generated from the current path in the drive. -- If none of the previous cases apply, the default value of *Partition* is set to the default partition or naming context of the target domain. - -In Active Directory Lightweight Directory Services (AD LDS) environments, a default value for *Partition* is set in the following cases: -- If the *Identity* parameter is set to a distinguished name, the default value of *Partition* is automatically generated from this distinguished name. -- If running cmdlets from an Active Directory provider drive, the default value of *Partition* is automatically generated from the current path in the drive. -- If the target AD LDS instance has a default naming context, the default value of *Partition* is set to the default naming context. -To specify a default naming context for an AD LDS environment, set the **msDS-defaultNamingContext** property of the Active Directory directory service agent object (**nTDSDSA**) for the AD LDS instance. -- If none of the previous cases apply, the *Partition* parameter does not take a default value. +Specifies the distinguished name of an Active Directory partition. The distinguished name must be +one of the naming contexts on the current directory server. The cmdlet searches this partition to +find the object defined by the **Identity** parameter. + +In many cases, a default value is used for the **Partition** parameter if no value is specified. The +rules for determining the default value are given below. Note that rules listed first are evaluated +first and once a default value can be determined, no further rules are evaluated. + +In Active Directory Domain Services environments, a default value for **Partition** is set in the +following cases: + +- If the **Identity** parameter is set to a distinguished name, the default value of **Partition** + is automatically generated from this distinguished name. +- If running cmdlets from an Active Directory provider drive, the default value of **Partition** is + automatically generated from the current path in the drive. +- If none of the previous cases apply, the default value of **Partition** is set to the default + partition or naming context of the target domain. + +In Active Directory Lightweight Directory Services (AD LDS) environments, a default value for +**Partition** is set in the following cases: + +- If the **Identity** parameter is set to a distinguished name, the default value of **Partition** + is automatically generated from this distinguished name. +- If running cmdlets from an Active Directory provider drive, the default value of **Partition** is + automatically generated from the current path in the drive. +- If the target AD LDS instance has a default naming context, the default value of **Partition** is + set to the default naming context. To specify a default naming context for an AD LDS environment, + set the **msDS-defaultNamingContext** property of the Active Directory directory service agent + (DSA) object (**nTDSDSA**) for the AD LDS instance. +- If none of the previous cases apply, the **Partition** parameter will not take any default value. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -288,11 +328,12 @@ Accept wildcard characters: False ``` ### -PassThru + Returns an object representing the item with which you are working. By default, this cmdlet does not generate any output. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -304,10 +345,13 @@ Accept wildcard characters: False ``` ### -Server -Specifies the Active Directory Domain Services (AD DS) instance to connect to, by providing one of the following values for a corresponding domain name or directory server. -The service may be any of the following: Active Directory Lightweight Domain Services (AD LDS), AD DS, or Active Directory snapshot instance. -Specify the AD DS instance in one of the following ways: +Specifies the Active Directory Domain Services instance to connect to, by providing one of the +following values for a corresponding domain name or directory server. The service may be any of the +following: Active Directory Lightweight Domain Services, Active Directory Domain Services or Active +Directory snapshot instance. + +Specify the Active Directory Domain Services instance in one of the following ways: Domain name values: @@ -320,14 +364,16 @@ Directory server values: - NetBIOS name - Fully qualified directory server name and port -The default value for this parameter is determined by one of the following methods in the order that they are listed: +The default value for this parameter is determined by one of the following methods in the order that +they are listed: - By using the **Server** value from objects passed through the pipeline -- By using the server information associated with the AD DS Windows PowerShell provider drive, when the cmdlet runs in that drive +- By using the server information associated with the Active Directory Domain Services Windows + PowerShell provider drive, when the cmdlet runs in that drive - By using the domain of the computer running Windows PowerShell ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -338,27 +384,13 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -DisablePermissiveModify -Group membership updates use permissive modify by default. This suppresses an error when adding a member that is already member of the group. -When this parameter is used, an error "The specified account name is already a member of the group" is returned. - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: -Required: False -Position: Named -Default value: False -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -370,23 +402,31 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### Microsoft.ActiveDirectory.Management.ADGroup -A group object is received by the *Identity* parameter. + +A group object is received by the **Identity** parameter. ## OUTPUTS ### None or Microsoft.ActiveDirectory.Management.ADGroup -Returns the modified group object when the *PassThru* parameter is specified. -By default, this cmdlet does not generate any output. + +Returns the modified group object when the **PassThru** parameter is specified. By default, this +cmdlet does not generate any output. ## NOTES -* This cmdlet does not work with a read-only domain controller. -* This cmdlet does not work with an Active Directory snapshot. -* This cmdlet will allow you to add a group as a member of itself which could lead to unstable behavior. + +- This cmdlet does not work with a read-only domain controller. +- This cmdlet does not work with an Active Directory snapshot. +- This cmdlet will allow you to add a group as a member of itself which could lead to unstable + behavior. ## RELATED LINKS @@ -401,4 +441,3 @@ By default, this cmdlet does not generate any output. [Remove-ADGroupMember](./Remove-ADGroupMember.md) [Remove-ADPrincipalGroupMembership](./Remove-ADPrincipalGroupMembership.md) - From 5292732a58a9f50c5ac1a1e1267ae3019dd8d052 Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Wed, 24 May 2023 19:48:09 -0400 Subject: [PATCH 790/965] Fix formatting for Add-ADPrincipalGroupMembership. --- .../Add-ADPrincipalGroupMembership.md | 277 ++++++++++-------- 1 file changed, 154 insertions(+), 123 deletions(-) diff --git a/docset/winserver2022-ps/activedirectory/Add-ADPrincipalGroupMembership.md b/docset/winserver2022-ps/activedirectory/Add-ADPrincipalGroupMembership.md index 3717a2f00a..b7715eb437 100644 --- a/docset/winserver2022-ps/activedirectory/Add-ADPrincipalGroupMembership.md +++ b/docset/winserver2022-ps/activedirectory/Add-ADPrincipalGroupMembership.md @@ -16,90 +16,93 @@ Adds a member to one or more Active Directory groups. ## SYNTAX ``` -Add-ADPrincipalGroupMembership [-WhatIf] [-Confirm] [-AuthType ] [-Credential ] - [-Identity] [-MemberOf] [-Partition ] [-PassThru] [-Server ] - [] +Add-ADPrincipalGroupMembership [-WhatIf] [-Confirm] [-AuthType ] + [-Credential ] [-Identity] [-MemberOf] + [-Partition ] [-PassThru] [-Server ] [] ``` ## DESCRIPTION -The **Add-ADPrincipalGroupMembership** cmdlet adds a user, group, service account, or computer as a new member to one or more Active Directory groups. -The *Identity* parameter specifies the new user, computer, or group to add. -You can identify the user, group, or computer by its distinguished name, GUID, security identifier (SID), or Security Account Manager (SAM) account name. -You can also specify a user, group, or computer object variable, such as `$`, or pass an object through the pipeline to the *Identity* parameter. -For example, you can use the **Get-ADGroup** cmdlet to get a group object and then pass the object through the pipeline to the **Add-ADPrincipalGroupMembership** cmdlet. -Similarly, you can use **Get-ADUser** or **Get-ADComputer** to get user and computer objects to pass through the pipeline. +The `Add-ADPrincipalGroupMembership` cmdlet adds a user, group, service account, or computer as a +new member to one or more Active Directory groups. -This cmdlet collects all of the user, computer and group objects from the pipeline, and then adds these objects to the specified group by using one Active Directory operation. +The **Identity** parameter specifies the new user, computer, or group to add. You can identify the +user, group, or computer by its distinguished name, GUID, security identifier (SID), or Security +Account Manager (SAM) account name. You can also specify a user, group, or computer object variable, +such as `$`, or pass an object through the pipeline to the **Identity** parameter. +For example, you can use the `Get-ADGroup` cmdlet to get a group object and then pass the object +through the pipeline to the `Add-ADPrincipalGroupMembership` cmdlet. Similarly, you can use +`Get-ADUser` or `Get-ADComputer` to get user and computer objects to pass through the pipeline. -The *MemberOf* parameter specifies the groups that receive the new member. -You can identify a group by its distinguished name, GUID, SID, or SAM account name. -You can also specify group object variable, such as `$`. -To specify more than one group, use a comma-separated list. -You cannot pass group objects through the pipeline to the *MemberOf* parameter. -To add to a group by passing the group through the pipeline, use the **Add-ADGroupMember** cmdlet. +This cmdlet collects all of the user, computer and group objects from the pipeline, and then adds +these objects to the specified group by using one Active Directory operation. -For Active Directory Lightweight Directory Services (AD LDS) environments, the *Partition* parameter must be specified except in the following two conditions: +The **MemberOf** parameter specifies the groups that receive the new member. You can identify a +group by its distinguished name, GUID, SID, or SAM account name. You can also specify group object +variable, such as `$`. To specify more than one group, use a comma-separated list. +You cannot pass group objects through the pipeline to the **MemberOf** parameter. To add to a group +by passing the group through the pipeline, use the **Add-ADGroupMember** cmdlet. -- The cmdlet is run from an Active Directory provider drive. +For Active Directory Lightweight Directory Services (AD LDS) environments, the **Partition** +parameter must be specified except in the following two conditions: + +- The cmdlet is run from an Active Directory provider drive. - A default naming context or partition is defined for the AD LDS environment. -To specify a default naming context for an AD LDS environment, set the **msDS-defaultNamingContext** property of the Active Directory directory service agent object (nTDSDSA) for the AD LDS instance. -## EXAMPLES +To specify a default naming context for an AD LDS environment, set the **msDS-defaultNamingContext** +property of the Active Directory directory service agent object (nTDSDSA) for the AD LDS instance. -### Example 1: Add a member to a group -``` -PS C:\> Add-ADPrincipalGroupMembership -Identity SQLAdmin1 -MemberOf DlgtdAdminsPSOGroup -``` +## EXAMPLES -This command adds the user with SAM account name SQLAdmin1 to the group DlgtdAdminsPSOGroup. +### EXAMPLE 1 -### Example 2: Add filtered users to a group -``` -PS C:\> Get-ADUser -Filter 'Name -like "*SvcAccount*"' | Add-ADPrincipalGroupMembership -MemberOf SvcAccPSOGroup +```powershell +Add-ADPrincipalGroupMembership -Identity SQLAdmin1 -MemberOf DlgtdAdminsPSOGroup ``` -This command gets all users with SvcAccount in their name and adds it to the group SvcAccPSOGroup. +This command adds the user with SAM account name `SQLAdmin1` to the group `DlgtdAdminsPSOGroup`. -### Example 3: Add a member to a group without specifying parameters -``` -PS C:\> Add-ADPrincipalGroupMembership -cmdlet Add-ADPrincipalGroupMembership at command pipeline position 1 -Supply values for the following parameters: -Identity: DavidChew -MemberOf[0]: RodcAdmins -MemberOf[1]: Allowed RODC Password Replication Group -MemberOf[2]: +### EXAMPLE 2 + +```powershell +Get-ADUser -Filter 'Name -like "*SvcAccount*"' | + Add-ADPrincipalGroupMembership -MemberOf SvcAccPSOGroup ``` -This command demonstrates the default behavior of this cmdlet, with no parameters specified. +This command gets all users with `SvcAccount` in their name and adds them to the group +`SvcAccPSOGroup`. -### Example 4: Add filtered users to a distinguished name group -``` -PS C:\> Get-ADUser -Server localhost:60000 -SearchBase "DC=AppNC" -Filter "Title -eq 'Account Lead' -and Office -eq 'Branch1'" | Add-ADPrincipalGroupMembership -MemberOf "CN=AccountLeads,OU=AccountDeptOU,DC=AppNC" +### EXAMPLE 3 + +```powershell +$params = @{ + Server = 'localhost:60000' + SearchBase = 'DC=AppNC' + Filter = "Title -eq 'Account Lead' -and Office -eq 'Branch1'" +} +Get-ADUser @params | + Add-ADPrincipalGroupMembership -MemberOf "CN=AccountLeads,OU=AccountDeptOU,DC=AppNC" ``` -This command adds all employees in Branch1 in the AD LDS instance localhost:60000 whose title is Account Lead to the group with the distinguished name CN=AccountLeads,OU=AccountDeptOU,DC=AppNC. +This command adds all employees in `Branch1` in the AD LDS instance `localhost:60000` whose title is +`Account Lead` to the group with the distinguished name `CN=AccountLeads,OU=AccountDeptOU,DC=AppNC`. ## PARAMETERS ### -AuthType + Specifies the authentication method to use. The acceptable values for this parameter are: -- Negotiate or 0 -- Basic or 1 - -The default authentication method is Negotiate. - -A Secure Sockets Layer (SSL) connection is required for the Basic authentication method. +- `Negotiate` or `0` +- `Basic` or `1` -The following example shows how to set this parameter to Basic. +The default authentication method is `Negotiate`. -`-AuthType Basic` +A Secure Sockets Layer (SSL) connection is required for the `Basic` authentication method. ```yaml -Type: ADAuthType +Type: Microsoft.ActiveDirectory.Management.ADAuthType Parameter Sets: (All) Aliases: Accepted values: Negotiate, Basic @@ -112,10 +115,11 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -127,20 +131,24 @@ Accept wildcard characters: False ``` ### -Credential -Specifies the user account credentials to use to perform this task. -The default credentials are the credentials of the currently logged on user unless the cmdlet is run from an Active Directory PowerShell provider drive. -If the cmdlet is run from such a provider drive, the account associated with the drive is the default. -To specify this parameter, you can type a user name, such as User1 or Domain01\User01 or you can specify a **PSCredential** object. -If you specify a user name for this parameter, the cmdlet prompts for a password. +Specifies the user account credentials to use to perform this task. The default credentials are the +credentials of the currently logged on user unless the cmdlet is run from an Active Directory module +for Windows PowerShell provider drive. If the cmdlet is run from such a provider drive, the account +associated with the drive is the default. + +To specify this parameter, you can type a user name, such as `User1` or `Domain01\User01` or you can +specify a **PSCredential** object. If you specify a user name for this parameter, the cmdlet prompts +for a password. -You can also create a **PSCredential** object by using a script or by using the **Get-Credential** cmdlet. -You can then set the *Credential* parameter to the **PSCredential** object. +You can also create a **PSCredential** object by using a script or by using the `Get-Credential` +cmdlet. You can then set the **Credential** parameter to the **PSCredential** object. -If the acting credentials do not have directory-level permission to perform the task, Active Directory PowerShell returns a terminating error. +If the acting credentials do not have directory-level permission to perform the task, Active +Directory module for Windows PowerShell returns a terminating error. ```yaml -Type: PSCredential +Type: System.Management.Automation.PSCredential Parameter Sets: (All) Aliases: @@ -152,19 +160,21 @@ Accept wildcard characters: False ``` ### -Identity + Specifies an Active Directory principal object by providing one of the following property values. -The identifier in parentheses is the LDAP display name for the attribute. -The acceptable values for this parameter are: +The identifier in parentheses is the LDAP display name for the attribute. The acceptable values for +this parameter are: - Distinguished name -- GUID (objectGUID) -- Security identifier (objectSid) -- A SAM account name (sAMAccountName) +- GUID (**objectGUID**) +- Security identifier (**objectSid**) +- A SAM account name (**sAMAccountName**) -The cmdlet searches the default naming context or partition to find the object. -If two or more objects are found, the cmdlet returns a non-terminating error. +The cmdlet searches the default naming context or partition to find the object. If two or more +objects are found, the cmdlet returns a non-terminating error. -This parameter can also get this object through the pipeline or you can set this parameter to an object instance. +This parameter can also get this object through the pipeline or you can set this parameter to an +object instance. Derived types, such as the following are also accepted: @@ -182,7 +192,7 @@ This example shows how to set this parameter to a principal object instance name `-Identity $principalInstance` ```yaml -Type: ADPrincipal +Type: Microsoft.ActiveDirectory.Management.ADPrincipal Parameter Sets: (All) Aliases: @@ -194,15 +204,15 @@ Accept wildcard characters: False ``` ### -MemberOf -Specifies the Active Directory groups to add a user, computer, or group to as a member. -You can identify a group by providing one of the following values. -Note: The identifier in parentheses is the LDAP display name for the attribute. -The acceptable values for this parameter are: + +Specifies the Active Directory groups to add a user, computer, or group to as a member. You can +identify a group by providing one of the following values. Note: The identifier in parentheses is +the LDAP display name for the attribute. The acceptable values for this parameter are: - Distinguished name -- GUID (objectGUID) -- Security identifier (objectSid) -- Security Account Manager (SAM) account name (sAMAccountName) +- GUID (**objectGUID**) +- Security identifier (**objectSid**) +- Security Account Manager (SAM) account name (**sAMAccountName**) If you are specifying more than one group, use commas to separate the groups in the list. @@ -211,7 +221,7 @@ The following example shows how to specify this parameter by using SAM account n `-MemberOf "SaraDavisGroup", "JohnSmithGroup"` ```yaml -Type: ADGroup[] +Type: Microsoft.ActiveDirectory.Management.ADGroup[] Parameter Sets: (All) Aliases: @@ -223,30 +233,40 @@ Accept wildcard characters: False ``` ### -Partition -Specifies the distinguished name of an Active Directory partition. -The distinguished name must be one of the naming contexts on the current directory server. -The cmdlet searches this partition to find the object defined by the *Identity* parameter. -In many cases, a default value is used for the *Partition* parameter if no value is specified. -The rules for determining the default value are given below. -Note that rules listed first are evaluated first and once a default value can be determined, no further rules are evaluated. - -In Active Directory Domain Services (AD DS) environments, a default value for *Partition* is set in the following cases: - -- If the *Identity* parameter is set to a distinguished name, the default value of *Partition* is automatically generated from this distinguished name. -- If running cmdlets from an Active Directory provider drive, the default value of *Partition* is automatically generated from the current path in the drive. -- If none of the previous cases apply, the default value of *Partition* is set to the default partition or naming context of the target domain. - -In Active Directory Lightweight Directory Services (AD LDS) environments, a default value for *Partition* is set in the following cases: - -- If the *Identity* parameter is set to a distinguished name, the default value of *Partition* is automatically generated from this distinguished name. -- If running cmdlets from an Active Directory provider drive, the default value of *Partition* is automatically generated from the current path in the drive. -- If the target AD LDS instance has a default naming context, the default value of *Partition* is set to the default naming context. -To specify a default naming context for an AD LDS environment, set the **msDS-defaultNamingContext** property of the Active Directory directory service agent object (**nTDSDSA**) for the AD LDS instance. -- If none of the previous cases apply, the *Partition* parameter does not take any default value. +Specifies the distinguished name of an Active Directory partition. The distinguished name must be +one of the naming contexts on the current directory server. The cmdlet searches this partition to +find the object defined by the **Identity** parameter. + +In many cases, a default value is used for the **Partition** parameter if no value is specified. The +rules for determining the default value are given below. Note that rules listed first are evaluated +first and once a default value can be determined, no further rules are evaluated. + +In Active Directory Domain Services environments, a default value for **Partition** is set in the +following cases: + +- If the **Identity** parameter is set to a distinguished name, the default value of **Partition** + is automatically generated from this distinguished name. +- If running cmdlets from an Active Directory provider drive, the default value of **Partition** is + automatically generated from the current path in the drive. +- If none of the previous cases apply, the default value of **Partition** is set to the default + partition or naming context of the target domain. + +In Active Directory Lightweight Directory Services (AD LDS) environments, a default value for +**Partition** is set in the following cases: + +- If the **Identity** parameter is set to a distinguished name, the default value of **Partition** + is automatically generated from this distinguished name. +- If running cmdlets from an Active Directory provider drive, the default value of **Partition** is + automatically generated from the current path in the drive. +- If the target AD LDS instance has a default naming context, the default value of **Partition** is + set to the default naming context. To specify a default naming context for an AD LDS environment, + set the **msDS-defaultNamingContext** property of the Active Directory directory service agent + (DSA) object (**nTDSDSA**) for the AD LDS instance. +- If none of the previous cases apply, the **Partition** parameter will not take any default value. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -258,11 +278,12 @@ Accept wildcard characters: False ``` ### -PassThru + Returns an object representing the item with which you are working. By default, this cmdlet does not generate any output. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -274,30 +295,35 @@ Accept wildcard characters: False ``` ### -Server -Specifies the AD DS instance to connect to, by providing one of the following values for a corresponding domain name or directory server. -The service may be any of the following: AD LDS, AD DS, or Active Directory snapshot instance. -Specify the AD DS instance in one of the following ways: +Specifies the Active Directory Domain Services instance to connect to, by providing one of the +following values for a corresponding domain name or directory server. The service may be any of the +following: Active Directory Lightweight Domain Services, Active Directory Domain Services or Active +Directory snapshot instance. + +Specify the Active Directory Domain Services instance in one of the following ways: Domain name values: - Fully qualified domain name - NetBIOS name -Directory server values: +Directory server values: - Fully qualified directory server name - NetBIOS name - Fully qualified directory server name and port -The default value for this parameter is determined by one of the following methods in the order that they are listed: +The default value for this parameter is determined by one of the following methods in the order that +they are listed: - By using the **Server** value from objects passed through the pipeline -- By using the server information associated with the AD DS Windows PowerShell provider drive, when the cmdlet runs in that drive +- By using the server information associated with the Active Directory Domain Services Windows + PowerShell provider drive, when the cmdlet runs in that drive - By using the domain of the computer running Windows PowerShell ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -309,11 +335,12 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -325,31 +352,36 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### Microsoft.ActiveDirectory.Management.ADPrincipal -A principal object (Microsoft.ActiveDirectory.Management.ADPrincipal) that represents a user, computer or group is received by the Identity parameter. -Derived types, such as the following are also received by this parameter. - -Microsoft.ActiveDirectory.Management.ADUser -Microsoft.ActiveDirectory.Management.ADComputer +A principal object (**Microsoft.ActiveDirectory.Management.ADPrincipal**) that represents a user, +computer or group is received by the Identity parameter. Derived types, such as the following are +also received by this parameter. -Microsoft.ActiveDirectory.Management.ADServiceAccount - -Microsoft.ActiveDirectory.Management.ADGroup +- **Microsoft.ActiveDirectory.Management.ADUser** +- **Microsoft.ActiveDirectory.Management.ADComputer** +- **Microsoft.ActiveDirectory.Management.ADServiceAccount** +- **Microsoft.ActiveDirectory.Management.ADGroup** ## OUTPUTS ### None or Microsoft.ActiveDirectory.Management.ADPrincipal -Returns a principal object that represents the modified user, computer or group object when the *PassThru* parameter is specified. -By default, this cmdlet does not generate any output. + +Returns a principal object that represents the modified user, computer or group object when the +**PassThru** parameter is specified. By default, this cmdlet does not generate any output. ## NOTES -* This cmdlet does not work with a read-only domain controller. -* This cmdlet does not work with an Active Directory snapshot. + +- This cmdlet does not work with a read-only domain controller. +- This cmdlet does not work with an Active Directory snapshot. ## RELATED LINKS @@ -368,4 +400,3 @@ By default, this cmdlet does not generate any output. [Remove-ADGroupMember](./Remove-ADGroupMember.md) [Remove-ADPrincipalGroupMembership](./Remove-ADPrincipalGroupMembership.md) - From b812d002a0bd3f4281ef031afa8c34ea5cd97078 Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Wed, 24 May 2023 19:57:02 -0400 Subject: [PATCH 791/965] Fix formatting for Add-ADResourcePropertyListMember. --- .../Add-ADResourcePropertyListMember.md | 154 ++++++++++-------- 1 file changed, 86 insertions(+), 68 deletions(-) diff --git a/docset/winserver2022-ps/activedirectory/Add-ADResourcePropertyListMember.md b/docset/winserver2022-ps/activedirectory/Add-ADResourcePropertyListMember.md index 524ea97c91..f7cea0cb72 100644 --- a/docset/winserver2022-ps/activedirectory/Add-ADResourcePropertyListMember.md +++ b/docset/winserver2022-ps/activedirectory/Add-ADResourcePropertyListMember.md @@ -16,59 +16,58 @@ Adds one or more resource properties to a resource property list in Active Direc ## SYNTAX ``` -Add-ADResourcePropertyListMember [-WhatIf] [-Confirm] [-AuthType ] [-Credential ] - [-Identity] [-Members] [-PassThru] [-Server ] - [] +Add-ADResourcePropertyListMember [-WhatIf] [-Confirm] [-AuthType ] + [-Credential ] [-Identity] + [-Members] [-PassThru] [-Server ] [] ``` ## DESCRIPTION -The **Add-ADResourcePropertyListMember** cmdlet adds one or more resource properties to a resource property list in Active Directory. -## EXAMPLES +The `Add-ADResourcePropertyListMember` cmdlet adds one or more resource properties to a resource +property list in Active Directory. -### Example 1: Add members to a resource property list -``` -PS C:\> Add-ADResourcePropertyListMember -Identity "Global Resource Property List" -Members Country,Authors -``` +## EXAMPLES -This command adds the resource members named Country and Authors to the list named Global Resource Property List. +### EXAMPLE 1 -### Example 2: Add members to the default resource property list -``` -PS C:\> Add-ADResourcePropertyListMember -cmdlet Add-ADResourcePropertyListMember at command pipeline position 1 -Supply values for the following parameters: -Identity: Corporate Resource Property List -Members[0]: Country -Members[1]: Authors -Members[2]: +```powershell +$params = @{ + Identity = 'Global Resource Property List' + Members = 'Country', 'Authors' +} +Add-ADResourcePropertyListMember @params ``` -This command adds the resource members named Country and Authors to the resource property list named Corporate Resource Property List. -This command demonstrates the default behavior for this cmdlet when no parameters are specified. +This command adds the resource members named `Country` and `Authors` to the list named +`Global Resource Property List`. -### Example 3: Add members to a filtered resource property list -``` -PS C:\> Get-ADResourcePropertyList -Filter "Name -like 'Corporate*'" | Add-ADResourcePropertyListMember -Members Country,Authors +### EXAMPLE 2 + +```powershell +Get-ADResourcePropertyList -Filter "Name -like 'Corporate*'" | + Add-ADResourcePropertyListMember -Members Country, Authors ``` -This command gets any resource property list that has a name that begins with Corporate and then passes it to Add-ADResourcePropertyListMember, which then adds the resource properties Country and Authors to it. +This command gets any resource property list that has a name that begins with `Corporate` and then +passes it to `Add-ADResourcePropertyListMember`, which then adds the resource properties `Country` +and `Authors` to it. ## PARAMETERS ### -AuthType + Specifies the authentication method to use. The acceptable values for this parameter are: -- Negotiate or 0 -- Basic or 1 +- `Negotiate` or `0` +- `Basic` or `1` -The default authentication method is Negotiate. +The default authentication method is `Negotiate`. -A Secure Sockets Layer (SSL) connection is required for the Basic authentication method. +A Secure Sockets Layer (SSL) connection is required for the `Basic` authentication method. ```yaml -Type: ADAuthType +Type: Microsoft.ActiveDirectory.Management.ADAuthType Parameter Sets: (All) Aliases: Accepted values: Negotiate, Basic @@ -81,10 +80,11 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -96,20 +96,24 @@ Accept wildcard characters: False ``` ### -Credential -Specifies the user account credentials to use to perform this task. -The default credentials are the credentials of the currently logged on user unless the cmdlet is run from an Active Directory module for Windows PowerShell provider drive. -If the cmdlet is run from such a provider drive, the account associated with the drive is the default. -To specify this parameter, you can type a user name, such as User1 or Domain01\User01 or you can specify a **PSCredential** object. -If you specify a user name for this parameter, the cmdlet prompts for a password. +Specifies the user account credentials to use to perform this task. The default credentials are the +credentials of the currently logged on user unless the cmdlet is run from an Active Directory module +for Windows PowerShell provider drive. If the cmdlet is run from such a provider drive, the account +associated with the drive is the default. -You can also create a **PSCredential** object by using a script or by using the **Get-Credential** cmdlet. -You can then set the *Credential* parameter to the **PSCredential** object. +To specify this parameter, you can type a user name, such as `User1` or `Domain01\User01` or you can +specify a **PSCredential** object. If you specify a user name for this parameter, the cmdlet prompts +for a password. -If the acting credentials do not have directory-level permission to perform the task, Active Directory module for Windows PowerShell returns a terminating error. +You can also create a **PSCredential** object by using a script or by using the `Get-Credential` +cmdlet. You can then set the **Credential** parameter to the **PSCredential** object. + +If the acting credentials do not have directory-level permission to perform the task, Active +Directory module for Windows PowerShell returns a terminating error. ```yaml -Type: PSCredential +Type: System.Management.Automation.PSCredential Parameter Sets: (All) Aliases: @@ -121,17 +125,19 @@ Accept wildcard characters: False ``` ### -Identity -Specifies an Active Directory object by providing one of the following property values. -The identifier in parentheses is the Lightweight Directory Access Protocol (LDAP) display name for the attribute. -The acceptable values for this parameter are: + +Specifies an Active Directory object by providing one of the following property values. The +identifier in parentheses is the Lightweight Directory Access Protocol (LDAP) display name for the +attribute. The acceptable values for this parameter are: - A distinguished name -- A GUID (objectGUID) +- A GUID (**objectGUID**) -This parameter can also get this object through the pipeline or you can set this parameter to an object instance. +This parameter can also get this object through the pipeline or you can set this parameter to an +object instance. ```yaml -Type: ADResourcePropertyList +Type: Microsoft.ActiveDirectory.Management.ADResourcePropertyList Parameter Sets: (All) Aliases: @@ -143,21 +149,20 @@ Accept wildcard characters: False ``` ### -Members -Specifies a set of **ADResourceProperty** objects in a comma-separated list to add to a resource property list. -To identify each object, use one of the following property values: + +Specifies a set of **ADResourceProperty** objects in a comma-separated list to add to a resource +property list. To identify each object, use one of the following property values: - Name - Distinguished name -- GUID (objectGUID) - -Note: The identifier in parentheses is the LDAP display name. +- GUID (**objectGUID**) You can also provide objects to this parameter directly. You cannot pass objects through the pipeline to this parameter. ```yaml -Type: ADResourceProperty[] +Type: Microsoft.ActiveDirectory.Management.ADResourceProperty[] Parameter Sets: (All) Aliases: @@ -169,11 +174,12 @@ Accept wildcard characters: False ``` ### -PassThru + Returns an object representing the item with which you are working. By default, this cmdlet does not generate any output. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -185,30 +191,35 @@ Accept wildcard characters: False ``` ### -Server -Specifies the Active Directory Domain Services (AD DS) instance to connect to, by providing one of the following values for a corresponding domain name or directory server. -The service may be any of the following: Active Directory Lightweight Directory Services (AD LDS), AD DS, or Active Directory snapshot instance. -Specify the AD DS instance in one of the following ways: +Specifies the Active Directory Domain Services instance to connect to, by providing one of the +following values for a corresponding domain name or directory server. The service may be any of the +following: Active Directory Lightweight Domain Services, Active Directory Domain Services or Active +Directory snapshot instance. + +Specify the Active Directory Domain Services instance in one of the following ways: Domain name values: - Fully qualified domain name - NetBIOS name -Directory server values: +Directory server values: - Fully qualified directory server name - NetBIOS name - Fully qualified directory server name and port -The default value for this parameter is determined by one of the following methods in the order that they are listed: +The default value for this parameter is determined by one of the following methods in the order that +they are listed: - By using the **Server** value from objects passed through the pipeline -- By using the server information associated with the AD DS Windows PowerShell provider drive, when the cmdlet runs in that drive +- By using the server information associated with the Active Directory Domain Services Windows + PowerShell provider drive, when the cmdlet runs in that drive - By using the domain of the computer running Windows PowerShell ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -220,11 +231,12 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -236,24 +248,30 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### None or Microsoft.ActiveDirectory.Management.ADClaimTypeList -An **ADClaimTypeList** object is received by the *Identity* parameter. + +An **ADClaimTypeList** object is received by the **Identity** parameter. ## OUTPUTS ### None or Microsoft.ActiveDirectory.Management.ADClaimTypeList -Returns the modified **ADClaimTypeList** object when the *PassThru* parameter is specified. -By default, this cmdlet does not generate any output. + +Returns the modified **ADClaimTypeList** object when the **PassThru** parameter is specified. By +default, this cmdlet does not generate any output. ## NOTES -* This cmdlet does not work with a read-only domain controller. -* This cmdlet does not work with an Active Directory snapshot. + +- This cmdlet does not work with a read-only domain controller. +- This cmdlet does not work with an Active Directory snapshot. ## RELATED LINKS [Remove-ADResourcePropertyListMember](./Remove-ADResourcePropertyListMember.md) - From 93d580b911b051831abebbec47c2ca301c59bf49 Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Wed, 24 May 2023 20:04:31 -0400 Subject: [PATCH 792/965] Fix formatting for Clear-ADAccountExpiration. --- .../Clear-ADAccountExpiration.md | 200 +++++++++++------- 1 file changed, 121 insertions(+), 79 deletions(-) diff --git a/docset/winserver2022-ps/activedirectory/Clear-ADAccountExpiration.md b/docset/winserver2022-ps/activedirectory/Clear-ADAccountExpiration.md index 4bfd5190dd..4e91faf3fe 100644 --- a/docset/winserver2022-ps/activedirectory/Clear-ADAccountExpiration.md +++ b/docset/winserver2022-ps/activedirectory/Clear-ADAccountExpiration.md @@ -16,57 +16,69 @@ Clears the expiration date for an Active Directory account. ## SYNTAX ``` -Clear-ADAccountExpiration [-WhatIf] [-Confirm] [-AuthType ] [-Credential ] - [-Identity] [-Partition ] [-PassThru] [-Server ] [] +Clear-ADAccountExpiration [-WhatIf] [-Confirm] [-AuthType ] + [-Credential ] [-Identity] [-Partition ] [-PassThru] + [-Server ] [] ``` ## DESCRIPTION -The **Clear-ADAccountExpiration** cmdlet clears the expiration date for an Active Directory user or computer account. -When you clear the expiration date for an account, the account does not expire. -The *Identity* parameter specifies the user or computer account to modify. -You can identify a user or group by its distinguished name, GUID, security identifier (SID), or Security Accounts Manager (SAM) account name. -You can also set the *Identity* parameter to a user or computer object variable, such as `$`, or pass a user or computer object through the pipeline to the *Identity* parameter. -For example, you can use the Get-ADUser, Get-ADComputer, or Search-ADAccount cmdlet to retrieve an object and then pass the object through the pipeline to the Clear-ADAccountExpiration cmdlet. +The `Clear-ADAccountExpiration` cmdlet clears the expiration date for an Active Directory user or +computer account. When you clear the expiration date for an account, the account does not expire. -For Active Directory Lightweight Directory Services (AD LDS) environments, the *Partition* parameter must be specified except in the following two conditions: +The **Identity** parameter specifies the user or computer account to modify. You can identify a user +or group by its distinguished name, GUID, security identifier (SID), or Security Accounts Manager +(SAM) account name. You can also set the **Identity** parameter to a user or computer object +variable, such as `$`, or pass a user or computer object through the pipeline to +the **Identity** parameter. For example, you can use the `Get-ADUser`, `Get-ADComputer`, or +`Search-ADAccount` cmdlet to retrieve an object and then pass the object through the pipeline to the +`Clear-ADAccountExpiration` cmdlet. + +For Active Directory Lightweight Directory Services (AD LDS) environments, the **Partition** +parameter must be specified except in the following two conditions: - The cmdlet is run from an Active Directory provider drive. -- A default naming context or partition is defined for the AD LDS environment. +- A default naming context or partition is defined for the AD LDS environment. -To specify a default naming context for an AD LDS environment, set the **msDS-defaultNamingContext** property of the Active Directory directory service agent object (**nTDSDSA**) for the AD LDS instance. +To specify a default naming context for an AD LDS environment, set the **msDS-defaultNamingContext** +property of the Active Directory directory service agent object (**nTDSDSA**) for the AD LDS +instance. ## EXAMPLES -### Example 1: Clear an account expiration date for a specified user -``` -PS C:\> Clear-ADAccountExpiration -Identity PattiFuller +### EXAMPLE 1 + +```powershell +Clear-ADAccountExpiration -Identity PattiFuller ``` -This command clears the account expiration date for the user with SamAccountName PattiFuller. +This command clears the account expiration date for the user with SamAccountName `PattiFuller`. -### Example 2: Clear an account expiration date for a specified user using a distinguished name -``` -PS C:\> Clear-ADAccountExpiration -Identity "CN=PattiFuller,DC=AppNC" -Server "PATTIFU-SVR1:60000" +### EXAMPLE 2 + +```powershell +Clear-ADAccountExpiration -Identity 'CN=PattiFuller,DC=AppNC' -Server 'PATTIFU-SVR1:60000' ``` -This command clears the account expiration date for the user with DistinguishedName CN=PattiFuller,DC=AppNC on the AD LDS instance PATTIFU-SVR1:60000. +This command clears the account expiration date for the user with DistinguishedName +`CN=PattiFuller,DC=AppNC` on the AD LDS instance `PATTIFU-SVR1:60000`. ## PARAMETERS ### -AuthType + Specifies the authentication method to use. The acceptable values for this parameter are: -- Negotiate or 0 -- Basic or 1 +- `Negotiate` or `0` +- `Basic` or `1` -The default authentication method is Negotiate. +The default authentication method is `Negotiate`. -A Secure Sockets Layer (SSL) connection is required for the Basic authentication method. +A Secure Sockets Layer (SSL) connection is required for the `Basic` authentication method. ```yaml -Type: ADAuthType +Type: Microsoft.ActiveDirectory.Management.ADAuthType Parameter Sets: (All) Aliases: Accepted values: Negotiate, Basic @@ -79,10 +91,11 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -94,20 +107,24 @@ Accept wildcard characters: False ``` ### -Credential -Specifies the user account credentials to use to perform this task. -The default credentials are the credentials of the currently logged on user unless the cmdlet is run from an Active Directory module for Windows PowerShell provider drive. -If the cmdlet is run from such a provider drive, the account associated with the drive is the default. -To specify this parameter, you can type a user name, such as User1 or Domain01\User01 or you can specify a **PSCredential** object. -If you specify a user name for this parameter, the cmdlet prompts for a password. +Specifies the user account credentials to use to perform this task. The default credentials are the +credentials of the currently logged on user unless the cmdlet is run from an Active Directory module +for Windows PowerShell provider drive. If the cmdlet is run from such a provider drive, the account +associated with the drive is the default. + +To specify this parameter, you can type a user name, such as `User1` or `Domain01\User01` or you can +specify a **PSCredential** object. If you specify a user name for this parameter, the cmdlet prompts +for a password. -You can also create a **PSCredential** object by using a script or by using the **Get-Credential** cmdlet. -You can then set the *Credential* parameter to the **PSCredential** object. +You can also create a **PSCredential** object by using a script or by using the `Get-Credential` +cmdlet. You can then set the **Credential** parameter to the **PSCredential** object. -If the acting credentials do not have directory-level permission to perform the task, Active Directory module for Windows PowerShell returns a terminating error. +If the acting credentials do not have directory-level permission to perform the task, Active +Directory module for Windows PowerShell returns a terminating error. ```yaml -Type: PSCredential +Type: System.Management.Automation.PSCredential Parameter Sets: (All) Aliases: @@ -119,19 +136,21 @@ Accept wildcard characters: False ``` ### -Identity -Specifies an Active Directory account object by providing one of the following property values. -The identifier in parentheses is the Lightweight Directory Access Protocol (LDAP) display name for the attribute. -The acceptable values for this parameter are: + +Specifies an Active Directory account object by providing one of the following property values. The +identifier in parentheses is the Lightweight Directory Access Protocol (LDAP) display name for the +attribute. The acceptable values for this parameter are: - A distinguished name -- A GUID (objectGUID) -- A security identifier (objectSid) -- A SAM account name (sAMAccountName) +- A GUID (**objectGUID**) +- A security identifier (**objectSid**) +- A SAM account name (**sAMAccountName**) -The cmdlet searches the default naming context or partition to find the object. -If two or more objects are found, the cmdlet returns a non-terminating error. +The cmdlet searches the default naming context or partition to find the object. If two or more +objects are found, the cmdlet returns a non-terminating error. -This parameter can also get this object through the pipeline or you can set this parameter to an account object instance. +This parameter can also get this object through the pipeline or you can set this parameter to an +account object instance. Derived types such as the following are also accepted: @@ -140,7 +159,7 @@ Derived types such as the following are also accepted: - **Microsoft.ActiveDirectory.Management.ADUser** ```yaml -Type: ADAccount +Type: Microsoft.ActiveDirectory.Management.ADAccount Parameter Sets: (All) Aliases: @@ -152,30 +171,40 @@ Accept wildcard characters: False ``` ### -Partition -Specifies the distinguished name of an Active Directory partition. -The distinguished name must be one of the naming contexts on the current directory server. -The cmdlet searches this partition to find the object defined by the *Identity* parameter. - -In many cases, a default value is used for the *Partition* parameter if no value is specified. -The rules for determining the default value are given below. -Note that rules listed first are evaluated first and once a default value can be determined, no further rules are evaluated. -In Active Directory Domain Services (AD DS) environments, a default value for *Partition* is set in the following cases: - -- If the *Identity* parameter is set to a distinguished name, the default value of *Partition* is automatically generated from this distinguished name. -- If running cmdlets from an Active Directory provider drive, the default value of *Partition* is automatically generated from the current path in the drive. -- If none of the previous cases apply, the default value of *Partition* is set to the default partition or naming context of the target domain. - -In AD LDS environments, a default value for *Partition* is set in the following cases: - -- If the *Identity* parameter is set to a distinguished name, the default value of *Partition* is automatically generated from this distinguished name. -- If running cmdlets from an Active Directory provider drive, the default value of *Partition* is automatically generated from the current path in the drive. -- If the target AD LDS instance has a default naming context, the default value of *Partition* is set to the default naming context. -To specify a default naming context for an AD LDS environment, set the **msDS-defaultNamingContext** property of the Active Directory directory service agent (DSA) object (**nTDSDSA**) for the AD LDS instance. -- If none of the previous cases apply, the *Partition* parameter will not take any default value. +Specifies the distinguished name of an Active Directory partition. The distinguished name must be +one of the naming contexts on the current directory server. The cmdlet searches this partition to +find the object defined by the **Identity** parameter. + +In many cases, a default value is used for the **Partition** parameter if no value is specified. The +rules for determining the default value are given below. Note that rules listed first are evaluated +first and once a default value can be determined, no further rules are evaluated. + +In Active Directory Domain Services environments, a default value for **Partition** is set in the +following cases: + +- If the **Identity** parameter is set to a distinguished name, the default value of **Partition** + is automatically generated from this distinguished name. +- If running cmdlets from an Active Directory provider drive, the default value of **Partition** is + automatically generated from the current path in the drive. +- If none of the previous cases apply, the default value of **Partition** is set to the default + partition or naming context of the target domain. + +In Active Directory Lightweight Directory Services (AD LDS) environments, a default value for +**Partition** is set in the following cases: + +- If the **Identity** parameter is set to a distinguished name, the default value of **Partition** + is automatically generated from this distinguished name. +- If running cmdlets from an Active Directory provider drive, the default value of **Partition** is + automatically generated from the current path in the drive. +- If the target AD LDS instance has a default naming context, the default value of **Partition** is + set to the default naming context. To specify a default naming context for an AD LDS environment, + set the **msDS-defaultNamingContext** property of the Active Directory directory service agent + (DSA) object (**nTDSDSA**) for the AD LDS instance. +- If none of the previous cases apply, the **Partition** parameter will not take any default value. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -187,11 +216,12 @@ Accept wildcard characters: False ``` ### -PassThru + Returns an object representing the item with which you are working. By default, this cmdlet does not generate any output. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -203,30 +233,35 @@ Accept wildcard characters: False ``` ### -Server -Specifies the Active Directory Domain Services instance to connect to, by providing one of the following values for a corresponding domain name or directory server. -The service may be any of the following: Active Directory Lightweight Domain Services, Active Directory Domain Services or Active Directory snapshot instance. -Specify the Active Directory Domain Services instance in one of the following ways: +Specifies the Active Directory Domain Services instance to connect to, by providing one of the +following values for a corresponding domain name or directory server. The service may be any of the +following: Active Directory Lightweight Domain Services, Active Directory Domain Services or Active +Directory snapshot instance. + +Specify the Active Directory Domain Services instance in one of the following ways: Domain name values: - Fully qualified domain name - NetBIOS name -Directory server values: +Directory server values: - Fully qualified directory server name - NetBIOS name - Fully qualified directory server name and port -The default value for this parameter is determined by one of the following methods in the order that they are listed: +The default value for this parameter is determined by one of the following methods in the order that +they are listed: - By using the **Server** value from objects passed through the pipeline -- By using the server information associated with the Active Directory Domain Services Windows PowerShell provider drive, when the cmdlet runs in that drive +- By using the server information associated with the Active Directory Domain Services Windows + PowerShell provider drive, when the cmdlet runs in that drive - By using the domain of the computer running Windows PowerShell ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -238,11 +273,12 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -254,12 +290,18 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### Microsoft.ActiveDirectory.Management.ADAccount -An account object (**Microsoft.ActiveDirectory.Management.ADAccount**) is received by the *Identity* parameter. + +An account object (**Microsoft.ActiveDirectory.Management.ADAccount**) is received by the +**Identity** parameter. Derived types, such as the following are also accepted: @@ -272,8 +314,9 @@ Derived types, such as the following are also accepted: ### None ## NOTES -* This cmdlet does not work with an Active Directory snapshot. -* This cmdlet does not work with a read-only domain controller. + +- This cmdlet does not work with an Active Directory snapshot. +- This cmdlet does not work with a read-only domain controller. ## RELATED LINKS @@ -286,4 +329,3 @@ Derived types, such as the following are also accepted: [Get-ADComputer](./Get-ADComputer.md) [AD DS Administration Cmdlets in Windows PowerShell](./activedirectory.md) - From 2e12c31e8d843fa170cccfed30d85efed5177a1b Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Wed, 24 May 2023 20:06:28 -0400 Subject: [PATCH 793/965] Addressed line length of Add-ADDomainControllerPasswordReplicationPolicy synopsis. --- .../Add-ADDomainControllerPasswordReplicationPolicy.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/activedirectory/Add-ADDomainControllerPasswordReplicationPolicy.md b/docset/winserver2022-ps/activedirectory/Add-ADDomainControllerPasswordReplicationPolicy.md index 7ef34244fb..6ae8437781 100644 --- a/docset/winserver2022-ps/activedirectory/Add-ADDomainControllerPasswordReplicationPolicy.md +++ b/docset/winserver2022-ps/activedirectory/Add-ADDomainControllerPasswordReplicationPolicy.md @@ -11,7 +11,8 @@ title: Add-ADDomainControllerPasswordReplicationPolicy # Add-ADDomainControllerPasswordReplicationPolicy ## SYNOPSIS -Adds users, computers, and groups to the allowed or denied list of a read-only domain controller password replication policy. +Adds users, computers, and groups to the allowed or denied list of a read-only domain controller +password replication policy. ## SYNTAX From 94cd5a4a984f033c5944950705509db8613e06c7 Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Wed, 24 May 2023 20:14:55 -0400 Subject: [PATCH 794/965] Fix formatting for Clear-ADClaimTransformLink. --- .../Clear-ADClaimTransformLink.md | 152 +++++++++++------- 1 file changed, 93 insertions(+), 59 deletions(-) diff --git a/docset/winserver2022-ps/activedirectory/Clear-ADClaimTransformLink.md b/docset/winserver2022-ps/activedirectory/Clear-ADClaimTransformLink.md index e3e58d3483..80fd1a5b52 100644 --- a/docset/winserver2022-ps/activedirectory/Clear-ADClaimTransformLink.md +++ b/docset/winserver2022-ps/activedirectory/Clear-ADClaimTransformLink.md @@ -11,59 +11,74 @@ title: Clear-ADClaimTransformLink # Clear-ADClaimTransformLink ## SYNOPSIS -Removes a claims transformation from being applied to one or more cross-forest trust relationships in Active Directory. +Removes a claims transformation from being applied to one or more cross-forest trust relationships +in Active Directory. ## SYNTAX ``` -Clear-ADClaimTransformLink [-WhatIf] [-Confirm] [-AuthType ] [-Credential ] - [-Identity] [-PassThru] [-Policy ] [-Server ] - [-TrustRole ] [] +Clear-ADClaimTransformLink [-WhatIf] [-Confirm] [-AuthType ] + [-Credential ] [-Identity] [-PassThru] + [-Policy ] [-Server ] [-TrustRole ] + [] ``` ## DESCRIPTION -The **Clear-ADClaimTransformLink** cmdlet removes a claims transformation from being applied to one or more cross-forest trust relationships in Active Directory. + +The `Clear-ADClaimTransformLink` cmdlet removes a claims transformation from being applied to one or +more cross-forest trust relationships in Active Directory. ## EXAMPLES -### Example 1: Remove a specified policy from a trust relationship -``` -PS C:\> Clear-ADClaimTransformLink -Identity "corp.contoso.com" -Policy DenyAllPolicy +### Example 1 + +```powershell +Clear-ADClaimTransformLink -Identity 'corp.contoso.com' -Policy DenyAllPolicy ``` -This command removes the policy named DenyAllPolicy from the corp.contoso.com trust. +This command removes the policy named `DenyAllPolicy` from the `corp.contoso.com` trust. -### Example 2: Remove all policies that are applied to a trusted forest -``` -PS C:\> Clear-ADClaimTransformLink -Identity "corp.contoso.com" -TrustRole Trusted +### Example 2 + +```powershell +Clear-ADClaimTransformLink -Identity 'corp.contoso.com' -TrustRole Trusted ``` -This command removes any policies that are applied to where this forest acts as the trusted forest in the corp.contoso.com trust. -Effectively, this cmdlet removes any policies that are applied to claims flowing out of this forest towards it trust partner. +This command removes any policies that are applied to where this forest acts as the trusted forest +in the `corp.contoso.com` trust. Effectively, this cmdlet removes any policies that are applied to +claims flowing out of this forest towards it trust partner. -### Example 3: Remove a specified claim transformation policy from being applied to the trust relationship -``` -PS C:\> Clear-ADClaimTransformLink -Identity "corp.contoso.com" -Policy DenyAllPolicy -TrustRole Trusting +### Example 3 + +```powershell +$params = @{ + Identity = 'corp.contoso.com' + Policy = 'DenyAllPolicy' + TrustRole = 'Trusting' +} +Clear-ADClaimTransformLink @params ``` -This command removes DenyAllPolicy that is applied to where this forest acts as the trusted domain in the corp.contoso.com trust. -Effectively, this cmdlet removes DenyAllPolicy from applying to claims coming into this from its trust partner. +This command removes DenyAllPolicy that is applied to where this forest acts as the trusted domain +in the `corp.contoso.com` trust. Effectively, this cmdlet removes `DenyAllPolicy` from applying to +claims coming into this from its trust partner. ## PARAMETERS ### -AuthType + Specifies the authentication method to use. The acceptable values for this parameter are: -- Negotiate or 0 -- Basic or 1 +- `Negotiate` or `0` +- `Basic` or `1` -The default authentication method is Negotiate. +The default authentication method is `Negotiate`. -A Secure Sockets Layer (SSL) connection is required for the Basic authentication method. +A Secure Sockets Layer (SSL) connection is required for the `Basic` authentication method. ```yaml -Type: ADAuthType +Type: Microsoft.ActiveDirectory.Management.ADAuthType Parameter Sets: (All) Aliases: Accepted values: Negotiate, Basic @@ -76,10 +91,11 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -91,20 +107,24 @@ Accept wildcard characters: False ``` ### -Credential -Specifies the user account credentials to use to perform this task. -The default credentials are the credentials of the currently logged on user unless the cmdlet is run from an Active Directory module for Windows PowerShell provider drive. -If the cmdlet is run from such a provider drive, the account associated with the drive is the default. -To specify this parameter, you can type a user name, such as User1 or Domain01\User01 or you can specify a **PSCredential** object. -If you specify a user name for this parameter, the cmdlet prompts for a password. +Specifies the user account credentials to use to perform this task. The default credentials are the +credentials of the currently logged on user unless the cmdlet is run from an Active Directory module +for Windows PowerShell provider drive. If the cmdlet is run from such a provider drive, the account +associated with the drive is the default. + +To specify this parameter, you can type a user name, such as `User1` or `Domain01\User01` or you can +specify a **PSCredential** object. If you specify a user name for this parameter, the cmdlet prompts +for a password. -You can also create a **PSCredential** object by using a script or by using the **Get-Credential** cmdlet. -You can then set the *Credential* parameter to the **PSCredential** object. +You can also create a **PSCredential** object by using a script or by using the `Get-Credential` +cmdlet. You can then set the **Credential** parameter to the **PSCredential** object. -If the acting credentials do not have directory-level permission to perform the task, Active Directory module for Windows PowerShell returns a terminating error. +If the acting credentials do not have directory-level permission to perform the task, Active +Directory module for Windows PowerShell returns a terminating error. ```yaml -Type: PSCredential +Type: System.Management.Automation.PSCredential Parameter Sets: (All) Aliases: @@ -116,17 +136,19 @@ Accept wildcard characters: False ``` ### -Identity -Specifies an Active Directory trust object by providing one of the following values. -The identifier in parentheses is the Lightweight Directory Access Protocol (LDAP) display name for the attribute. + +Specifies an Active Directory trust object by providing one of the following values. The identifier +in parentheses is the Lightweight Directory Access Protocol (LDAP) display name for the attribute. The acceptable values for this parameter are: - A distinguished name -- A GUID (objectGUID) +- A GUID (**objectGUID**) -This parameter can also get this object through the pipeline or you can set this parameter to an object instance. +This parameter can also get this object through the pipeline or you can set this parameter to an +object instance. ```yaml -Type: ADTrust +Type: Microsoft.ActiveDirectory.Management.ADTrust Parameter Sets: (All) Aliases: @@ -138,11 +160,12 @@ Accept wildcard characters: False ``` ### -PassThru + Returns an object representing the item with which you are working. By default, this cmdlet does not generate any output. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -154,10 +177,11 @@ Accept wildcard characters: False ``` ### -Policy + Removes the specified claim transformation policy from being applied to the trust relationship. ```yaml -Type: ADClaimTransformPolicy +Type: Microsoft.ActiveDirectory.Management.ADClaimTransformPolicy Parameter Sets: (All) Aliases: @@ -169,30 +193,35 @@ Accept wildcard characters: False ``` ### -Server -Specifies the Active Directory Domain Services instance to connect to, by providing one of the following values for a corresponding domain name or directory server. -The service may be any of the following: Active Directory Lightweight Domain Services, Active Directory Domain Services or Active Directory snapshot instance. -Specify the Active Directory Domain Services instance in one of the following ways: +Specifies the Active Directory Domain Services instance to connect to, by providing one of the +following values for a corresponding domain name or directory server. The service may be any of the +following: Active Directory Lightweight Domain Services, Active Directory Domain Services or Active +Directory snapshot instance. + +Specify the Active Directory Domain Services instance in one of the following ways: Domain name values: - Fully qualified domain name - NetBIOS name -Directory server values: +Directory server values: - Fully qualified directory server name - NetBIOS name - Fully qualified directory server name and port -The default value for this parameter is determined by one of the following methods in the order that they are listed: +The default value for this parameter is determined by one of the following methods in the order that +they are listed: - By using the **Server** value from objects passed through the pipeline -- By using the server information associated with the Active Directory Domain Services Windows PowerShell provider drive, when the cmdlet runs in that drive +- By using the server information associated with the Active Directory Domain Services Windows + PowerShell provider drive, when the cmdlet runs in that drive - By using the domain of the computer running Windows PowerShell ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -204,16 +233,15 @@ Accept wildcard characters: False ``` ### -TrustRole -Specifies the role of the current forest in the trust relationship specified by the *Identity* parameter. -The allowable values for this parameter are as follows: -- Trusted. -Specify this value if the current forest is the trusted forest. -- Trusting. -Specify this value if the current forest is the trusting forest. +Specifies the role of the current forest in the trust relationship specified by the **Identity** +parameter. The allowable values for this parameter are as follows: + +- `Trusted`: Specify this value if the current forest is the trusted forest. +- `Trusting`: Specify this value if the current forest is the trusting forest. ```yaml -Type: ADTrustRole +Type: Microsoft.ActiveDirectory.Management.ADTrustRole Parameter Sets: (All) Aliases: Accepted values: Trusted, Trusting @@ -226,11 +254,12 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -242,12 +271,18 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### Microsoft.ActiveDirectory.Management.ADTrust -An account object (**Microsoft.ActiveDirectory.Management.ADTrust**) is received by the *Identity* parameter. + +An account object (**Microsoft.ActiveDirectory.Management.ADTrust**) is received by the **Identity** +parameter. ## OUTPUTS @@ -260,4 +295,3 @@ An account object (**Microsoft.ActiveDirectory.Management.ADTrust**) is received [Set-ADClaimTransformLink](./Set-ADClaimTransformLink.md) [AD DS Administration Cmdlets in Windows PowerShell](./activedirectory.md) - From 52a0a9a08f5189260b2b4b89eb3b9f96b61128e8 Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Wed, 24 May 2023 20:18:57 -0400 Subject: [PATCH 795/965] Capitalize EXAMPLE. --- .../activedirectory/Clear-ADClaimTransformLink.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docset/winserver2022-ps/activedirectory/Clear-ADClaimTransformLink.md b/docset/winserver2022-ps/activedirectory/Clear-ADClaimTransformLink.md index 80fd1a5b52..191f241227 100644 --- a/docset/winserver2022-ps/activedirectory/Clear-ADClaimTransformLink.md +++ b/docset/winserver2022-ps/activedirectory/Clear-ADClaimTransformLink.md @@ -30,7 +30,7 @@ more cross-forest trust relationships in Active Directory. ## EXAMPLES -### Example 1 +### EXAMPLE 1 ```powershell Clear-ADClaimTransformLink -Identity 'corp.contoso.com' -Policy DenyAllPolicy @@ -38,7 +38,7 @@ Clear-ADClaimTransformLink -Identity 'corp.contoso.com' -Policy DenyAllPolicy This command removes the policy named `DenyAllPolicy` from the `corp.contoso.com` trust. -### Example 2 +### EXAMPLE 2 ```powershell Clear-ADClaimTransformLink -Identity 'corp.contoso.com' -TrustRole Trusted @@ -48,7 +48,7 @@ This command removes any policies that are applied to where this forest acts as in the `corp.contoso.com` trust. Effectively, this cmdlet removes any policies that are applied to claims flowing out of this forest towards it trust partner. -### Example 3 +### EXAMPLE 3 ```powershell $params = @{ From 3e03d5803398427c82199b038cfee1b8d7cd4781 Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Wed, 24 May 2023 20:26:11 -0400 Subject: [PATCH 796/965] Fix formatting for Disable-ADAccount. --- .../activedirectory/Disable-ADAccount.md | 207 +++++++++++------- 1 file changed, 126 insertions(+), 81 deletions(-) diff --git a/docset/winserver2022-ps/activedirectory/Disable-ADAccount.md b/docset/winserver2022-ps/activedirectory/Disable-ADAccount.md index 76ae0f3778..17a8610b62 100644 --- a/docset/winserver2022-ps/activedirectory/Disable-ADAccount.md +++ b/docset/winserver2022-ps/activedirectory/Disable-ADAccount.md @@ -16,63 +16,79 @@ Disables an Active Directory account. ## SYNTAX ``` -Disable-ADAccount [-WhatIf] [-Confirm] [-AuthType ] [-Credential ] - [-Identity] [-Partition ] [-PassThru] [-Server ] [] +Disable-ADAccount [-WhatIf] [-Confirm] [-AuthType ] + [-Credential ] [-Identity] [-Partition ] [-PassThru] + [-Server ] [] ``` ## DESCRIPTION -The **Disable-ADAccount** cmdlet disables an Active Directory user, computer, or service account. -The *Identity* parameter specifies the Active Directory user, computer service account, or other service account that you want to disable. -You can identify an account by its distinguished name, GUID, security identifier (SID), or Security Accounts Manager (SAM) account name. -You can also set the *Identity* parameter to an object variable such as `$`, or you can pass an account object through the pipeline to the *Identity* parameter. -For example, you can use the **Get-ADUser** cmdlet to retrieve a user account object and then pass the object through the pipeline to the **Disable-ADAccount** cmdlet. -Similarly, you can use **Get-ADComputer** and **Search-ADAccount** to retrieve account objects. +The `Disable-ADAccount` cmdlet disables an Active Directory user, computer, or service account. -For Active Directory Lightweight Directory Services (AD LDS) environments, the *Partition* parameter must be specified except in the following two conditions: +The **Identity** parameter specifies the Active Directory user, computer service account, or other +service account that you want to disable. You can identify an account by its distinguished name, +GUID, security identifier (SID), or Security Accounts Manager (SAM) account name. You can also set +the **Identity** parameter to an object variable such as `$`, or you can pass +an account object through the pipeline to the **Identity** parameter. For example, you can use the +`Get-ADUser` cmdlet to retrieve a user account object and then pass the object through the +pipeline to the `Disable-ADAccount` cmdlet. Similarly, you can use `Get-ADComputer` and +`Search-ADAccount` to retrieve account objects. + +For Active Directory Lightweight Directory Services (AD LDS) environments, the **Partition** +parameter must be specified except in the following two conditions: - The cmdlet is run from an Active Directory provider drive. - A default naming context or partition is defined for the AD LDS environment. -To specify a default naming context for an AD LDS environment, set the **msDS-defaultNamingContext** property of the Active Directory directory service agent (DSA) object (**nTDSDSA**) for the AD LDS instance. + +To specify a default naming context for an AD LDS environment, set the **msDS-defaultNamingContext** +property of the Active Directory directory service agent (DSA) object (**nTDSDSA**) for the AD LDS +instance. ## EXAMPLES -### Example 1: Disable an account by identity -``` -PS C:\> Disable-ADAccount -Identity PattiFul +### EXAMPLE 1 + +```powershell +Disable-ADAccount -Identity PattiFul ``` -This command disables the account with identity SAMAccountName PattiFul. +This command disables the account with identity SAMAccountName `PattiFul`. -### Example 2: Disable an account by Distinguished Name -``` -PS C:\> Disable-ADAccount -Identity "CN=Patti Fuller,OU=Finance,OU=UserAccounts,DC=FABRIKAM,DC=COM" +### EXAMPLE 2 + +```powershell +Disable-ADAccount -Identity 'CN=Patti Fuller,OU=Finance,OU=Users,DC=FABRIKAM,DC=COM' ``` -This command disables the account with DistinguishedName CN=Patti Fuller,OU=Finance,OU=UserAccounts,DC=FABRIKAM,DC=COM. +This command disables the account with DistinguishedName +`CN=Patti Fuller,OU=Finance,OU=Users,DC=FABRIKAM,DC=COM`. -### Example 3: Disable all accounts in an organizational unit using a filter -``` -PS C:\> Get-ADUser -Filter 'Name -like "*"' -SearchBase "OU=Finance,OU=UserAccounts,DC=FABRIKAM,DC=COM" | Disable-ADAccount +### EXAMPLE 3 + +```powershell +Get-ADUser -Filter 'Name -like "*"' -SearchBase "OU=Finance,OU=Users,DC=FABRIKAM,DC=COM" | + Disable-ADAccount ``` -This command disables all accounts in the organizational unit OU=Finance,OU=UserAccounts,DC=FABRIKAM,DC=COM. +This command disables all accounts in the organizational unit +`OU=Finance,OU=Users,DC=FABRIKAM,DC=COM`. ## PARAMETERS ### -AuthType + Specifies the authentication method to use. The acceptable values for this parameter are: -- Negotiate or 0 -- Basic or 1 +- `Negotiate` or `0` +- `Basic` or `1` -The default authentication method is Negotiate. +The default authentication method is `Negotiate`. -A Secure Sockets Layer (SSL) connection is required for the Basic authentication method. +A Secure Sockets Layer (SSL) connection is required for the `Basic` authentication method. ```yaml -Type: ADAuthType +Type: Microsoft.ActiveDirectory.Management.ADAuthType Parameter Sets: (All) Aliases: Accepted values: Negotiate, Basic @@ -85,10 +101,11 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -100,20 +117,24 @@ Accept wildcard characters: False ``` ### -Credential -Specifies the user account credentials to use to perform this task. -The default credentials are the credentials of the currently logged on user unless the cmdlet is run from an Active Directory module for Windows PowerShell provider drive. -If the cmdlet is run from such a provider drive, the account associated with the drive is the default. -To specify this parameter, you can type a user name, such as User1 or Domain01\User01 or you can specify a **PSCredential** object. -If you specify a user name for this parameter, the cmdlet prompts for a password. +Specifies the user account credentials to use to perform this task. The default credentials are the +credentials of the currently logged on user unless the cmdlet is run from an Active Directory module +for Windows PowerShell provider drive. If the cmdlet is run from such a provider drive, the account +associated with the drive is the default. + +To specify this parameter, you can type a user name, such as `User1` or `Domain01\User01` or you can +specify a **PSCredential** object. If you specify a user name for this parameter, the cmdlet prompts +for a password. -You can also create a **PSCredential** object by using a script or by using the **Get-Credential** cmdlet. -You can then set the *Credential* parameter to the **PSCredential** object. +You can also create a **PSCredential** object by using a script or by using the `Get-Credential` +cmdlet. You can then set the **Credential** parameter to the **PSCredential** object. -If the acting credentials do not have directory-level permission to perform the task, Active Directory module for Windows PowerShell returns a terminating error. +If the acting credentials do not have directory-level permission to perform the task, Active +Directory module for Windows PowerShell returns a terminating error. ```yaml -Type: PSCredential +Type: System.Management.Automation.PSCredential Parameter Sets: (All) Aliases: @@ -125,28 +146,30 @@ Accept wildcard characters: False ``` ### -Identity -Specifies an Active Directory account object by providing one of the following property values. -The identifier in parentheses is the Lightweight Directory Access Protocol (LDAP) display name for the attribute. -The acceptable values for this parameter are: + +Specifies an Active Directory account object by providing one of the following property values. The +identifier in parentheses is the Lightweight Directory Access Protocol (LDAP) display name for the +attribute. The acceptable values for this parameter are: - A distinguished name -- A GUID (objectGUID) -- A Security Identifier (objectSid) -- A SAM Account Name (SAMAccountName) +- A GUID (**objectGUID**) +- A Security Identifier (**objectSid**) +- A SAM Account Name (**SAMAccountName**) The cmdlet searches the default naming context or partition to find the object. If two or more objects are found, the cmdlet returns a non-terminating error. -This parameter can also get this object through the pipeline or you can set this parameter to an account object instance. +This parameter can also get this object through the pipeline or you can set this parameter to an +account object instance. -Derived types such as the following are also accepted: +Derived types such as the following are also accepted: - **Microsoft.ActiveDirectory.Management.ADServiceAccount** - **Microsoft.ActiveDirectory.Management.ADComputer** - **Microsoft.ActiveDirectory.Management.ADUser** ```yaml -Type: ADAccount +Type: Microsoft.ActiveDirectory.Management.ADAccount Parameter Sets: (All) Aliases: @@ -158,30 +181,40 @@ Accept wildcard characters: False ``` ### -Partition -Specifies the distinguished name of an Active Directory partition. -The distinguished name must be one of the naming contexts on the current directory server. -The cmdlet searches this partition to find the object defined by the *Identity* parameter. - -In many cases, a default value is used for the *Partition* parameter if no value is specified. -The rules for determining the default value are given below. -Note that rules listed first are evaluated first and once a default value can be determined, no further rules are evaluated. - -In Active Directory Domain Services (AD DS) environments, a default value for *Partition* is set in the following cases: -- If the *Identity* parameter is set to a distinguished name, the default value of *Partition* is automatically generated from this distinguished name. -- If running cmdlets from an Active Directory provider drive, the default value of *Partition* is automatically generated from the current path in the drive. -- If none of the previous cases apply, the default value of *Partition* is set to the default partition or naming context of the target domain. - -In Active Directory Lightweight Directory Services (AD LDS) environments, a default value for *Partition* is set in the following cases: - -- If the *Identity* parameter is set to a distinguished name, the default value of *Partition* is automatically generated from this distinguished name. -- If running cmdlets from an Active Directory provider drive, the default value of *Partition* is automatically generated from the current path in the drive. -- If the target AD LDS instance has a default naming context, the default value of *Partition* is set to the default naming context. -To specify a default naming context for an AD LDS environment, set the **msDS-defaultNamingContext** property of the Active Directory directory service agent object (**nTDSDSA**) for the AD LDS instance. -- If none of the previous cases apply, the *Partition* parameter will not take any default value. +Specifies the distinguished name of an Active Directory partition. The distinguished name must be +one of the naming contexts on the current directory server. The cmdlet searches this partition to +find the object defined by the **Identity** parameter. + +In many cases, a default value is used for the **Partition** parameter if no value is specified. The +rules for determining the default value are given below. Note that rules listed first are evaluated +first and once a default value can be determined, no further rules are evaluated. + +In Active Directory Domain Services environments, a default value for **Partition** is set in the +following cases: + +- If the **Identity** parameter is set to a distinguished name, the default value of **Partition** + is automatically generated from this distinguished name. +- If running cmdlets from an Active Directory provider drive, the default value of **Partition** is + automatically generated from the current path in the drive. +- If none of the previous cases apply, the default value of **Partition** is set to the default + partition or naming context of the target domain. + +In Active Directory Lightweight Directory Services (AD LDS) environments, a default value for +**Partition** is set in the following cases: + +- If the **Identity** parameter is set to a distinguished name, the default value of **Partition** + is automatically generated from this distinguished name. +- If running cmdlets from an Active Directory provider drive, the default value of **Partition** is + automatically generated from the current path in the drive. +- If the target AD LDS instance has a default naming context, the default value of **Partition** is + set to the default naming context. To specify a default naming context for an AD LDS environment, + set the **msDS-defaultNamingContext** property of the Active Directory directory service agent + (DSA) object (**nTDSDSA**) for the AD LDS instance. +- If none of the previous cases apply, the **Partition** parameter will not take any default value. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -193,11 +226,12 @@ Accept wildcard characters: False ``` ### -PassThru + Returns an object representing the item with which you are working. By default, this cmdlet does not generate any output. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -209,30 +243,35 @@ Accept wildcard characters: False ``` ### -Server -Specifies the Active Directory Domain Services instance to connect to, by providing one of the following values for a corresponding domain name or directory server. -The service may be any of the following: Active Directory Lightweight Domain Services, Active Directory Domain Services or Active Directory snapshot instance. -Specify the Active Directory Domain Services instance in one of the following ways: +Specifies the Active Directory Domain Services instance to connect to, by providing one of the +following values for a corresponding domain name or directory server. The service may be any of the +following: Active Directory Lightweight Domain Services, Active Directory Domain Services or Active +Directory snapshot instance. + +Specify the Active Directory Domain Services instance in one of the following ways: Domain name values: - Fully qualified domain name - NetBIOS name -Directory server values: +Directory server values: - Fully qualified directory server name - NetBIOS name - Fully qualified directory server name and port -The default value for this parameter is determined by one of the following methods in the order that they are listed: +The default value for this parameter is determined by one of the following methods in the order that +they are listed: - By using the **Server** value from objects passed through the pipeline -- By using the server information associated with the Active Directory Domain Services Windows PowerShell provider drive, when the cmdlet runs in that drive +- By using the server information associated with the Active Directory Domain Services Windows + PowerShell provider drive, when the cmdlet runs in that drive - By using the domain of the computer running Windows PowerShell ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -244,11 +283,12 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -260,12 +300,17 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### Microsoft.ActiveDirectory.Management.ADAccount -An account object is received by the *Identity* parameter. + +An account object is received by the **Identity** parameter. Derived types, such as the following are also accepted: @@ -278,8 +323,9 @@ Derived types, such as the following are also accepted: ### None ## NOTES -* This cmdlet does not work with an Active Directory snapshot. -* This cmdlet does not work with a read-only domain controller. + +- This cmdlet does not work with an Active Directory snapshot. +- This cmdlet does not work with a read-only domain controller. ## RELATED LINKS @@ -300,4 +346,3 @@ Derived types, such as the following are also accepted: [Unlock-ADAccount](./Unlock-ADAccount.md) [AD DS Administration Cmdlets in Windows PowerShell](./activedirectory.md) - From 5b1df90e3cfbd3ee80a86b8e8c45be601f7e04ed Mon Sep 17 00:00:00 2001 From: "Mikey Lombardi (He/Him)" Date: Tue, 30 May 2023 12:21:48 -0500 Subject: [PATCH 797/965] Apply suggestions from review --- .../Add-ADCentralAccessPolicyMember.md | 7 +++---- .../Add-ADComputerServiceAccount.md | 5 ++--- ...DDomainControllerPasswordReplicationPolicy.md | 3 +-- .../Add-ADFineGrainedPasswordPolicySubject.md | 15 ++++++--------- .../activedirectory/Add-ADGroupMember.md | 10 ++++------ .../Add-ADPrincipalGroupMembership.md | 16 +++++++--------- .../Add-ADResourcePropertyListMember.md | 11 +++++------ .../activedirectory/Clear-ADAccountExpiration.md | 14 ++++++-------- .../Clear-ADClaimTransformLink.md | 16 +++++++--------- .../activedirectory/Disable-ADAccount.md | 16 +++++++--------- 10 files changed, 48 insertions(+), 65 deletions(-) diff --git a/docset/winserver2022-ps/activedirectory/Add-ADCentralAccessPolicyMember.md b/docset/winserver2022-ps/activedirectory/Add-ADCentralAccessPolicyMember.md index 4746fd5445..4d4c652120 100644 --- a/docset/winserver2022-ps/activedirectory/Add-ADCentralAccessPolicyMember.md +++ b/docset/winserver2022-ps/activedirectory/Add-ADCentralAccessPolicyMember.md @@ -38,8 +38,8 @@ $params = @{ Add-ADCentralAccessPolicyMember @params ``` -This command adds the central access rules Finance Documents Rule and Corporate Documents Rule to -the central access policy Finance Policy. +This command adds the central access rules `Finance Documents Rule` and `Corporate Documents Rule` +to the central access policy Finance Policy. ### EXAMPLE 2 @@ -238,8 +238,7 @@ Accept wildcard characters: False ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. +Shows what would happen if the cmdlet runs. The cmdlet isn't run. ```yaml Type: System.Management.Automation.SwitchParameter diff --git a/docset/winserver2022-ps/activedirectory/Add-ADComputerServiceAccount.md b/docset/winserver2022-ps/activedirectory/Add-ADComputerServiceAccount.md index f34e03e27a..9fb1807c0d 100644 --- a/docset/winserver2022-ps/activedirectory/Add-ADComputerServiceAccount.md +++ b/docset/winserver2022-ps/activedirectory/Add-ADComputerServiceAccount.md @@ -40,7 +40,7 @@ account by its distinguished name, GUID, Security Identifier (SID) or Security A `$`. If you are specifying more than one account, use a comma-separated list. -> {!NOTE] +> [!NOTE] > Adding a service account is a different operation than installing the service account locally. ## EXAMPLES @@ -290,8 +290,7 @@ Accept wildcard characters: False ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. +Shows what would happen if the cmdlet runs. The cmdlet isn't run. ```yaml Type: System.Management.Automation.SwitchParameter diff --git a/docset/winserver2022-ps/activedirectory/Add-ADDomainControllerPasswordReplicationPolicy.md b/docset/winserver2022-ps/activedirectory/Add-ADDomainControllerPasswordReplicationPolicy.md index 6ae8437781..6a8724dd93 100644 --- a/docset/winserver2022-ps/activedirectory/Add-ADDomainControllerPasswordReplicationPolicy.md +++ b/docset/winserver2022-ps/activedirectory/Add-ADDomainControllerPasswordReplicationPolicy.md @@ -116,8 +116,7 @@ Accept wildcard characters: False ### -AuthType -Specifies the authentication method to use. -The acceptable values for this parameter are: +Specifies the authentication method to use. The acceptable values for this parameter are: - `Negotiate` or `0` - `Basic` or `1` diff --git a/docset/winserver2022-ps/activedirectory/Add-ADFineGrainedPasswordPolicySubject.md b/docset/winserver2022-ps/activedirectory/Add-ADFineGrainedPasswordPolicySubject.md index bd9f4c3c2d..cce36e7a6d 100644 --- a/docset/winserver2022-ps/activedirectory/Add-ADFineGrainedPasswordPolicySubject.md +++ b/docset/winserver2022-ps/activedirectory/Add-ADFineGrainedPasswordPolicySubject.md @@ -87,8 +87,7 @@ name is `Fuller`. ### -AuthType -Specifies the authentication method to use. -The acceptable values for this parameter are: +Specifies the authentication method to use. The acceptable values for this parameter are: - `Negotiate` or `0` - `Basic` or `1` @@ -230,8 +229,8 @@ Accept wildcard characters: False ### -PassThru -Returns an object representing the item with which you are working. -By default, this cmdlet does not generate any output. +Returns an object representing the item with which you are working. By default, this cmdlet does +not generate any output. ```yaml Type: System.Management.Automation.SwitchParameter @@ -287,9 +286,8 @@ Accept wildcard characters: False ### -Subjects -Specifies one or more users or groups. -To specify more than one user or group, use a comma-separated list. -You can identify a user or group by one of the following property values: +Specifies one or more users or groups. To specify more than one user or group, use a +comma-separated list. You can identify a user or group by one of the following property values: - Distinguished name (DN) - GUID (**objectGUID**) @@ -314,8 +312,7 @@ Accept wildcard characters: False ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. +Shows what would happen if the cmdlet runs. The cmdlet isn't run. ```yaml Type: System.Management.Automation.SwitchParameter diff --git a/docset/winserver2022-ps/activedirectory/Add-ADGroupMember.md b/docset/winserver2022-ps/activedirectory/Add-ADGroupMember.md index b857b7025c..2f807ac657 100644 --- a/docset/winserver2022-ps/activedirectory/Add-ADGroupMember.md +++ b/docset/winserver2022-ps/activedirectory/Add-ADGroupMember.md @@ -101,8 +101,7 @@ group `CN=AccountLeads,OU=UserAccounts` in the Europe domain. ### -AuthType -Specifies the authentication method to use. -The acceptable values for this parameter are: +Specifies the authentication method to use. The acceptable values for this parameter are: - `Negotiate` or `0` - `Basic` or `1` @@ -329,8 +328,8 @@ Accept wildcard characters: False ### -PassThru -Returns an object representing the item with which you are working. -By default, this cmdlet does not generate any output. +Returns an object representing the item with which you're working. By default, this cmdlet doesn't +generate any output. ```yaml Type: System.Management.Automation.SwitchParameter @@ -386,8 +385,7 @@ Accept wildcard characters: False ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. +Shows what would happen if the cmdlet runs. The cmdlet isn't run. ```yaml Type: System.Management.Automation.SwitchParameter diff --git a/docset/winserver2022-ps/activedirectory/Add-ADPrincipalGroupMembership.md b/docset/winserver2022-ps/activedirectory/Add-ADPrincipalGroupMembership.md index b7715eb437..2403904cb2 100644 --- a/docset/winserver2022-ps/activedirectory/Add-ADPrincipalGroupMembership.md +++ b/docset/winserver2022-ps/activedirectory/Add-ADPrincipalGroupMembership.md @@ -54,7 +54,7 @@ property of the Active Directory directory service agent object (nTDSDSA) for th ## EXAMPLES -### EXAMPLE 1 +### Example 1: Add a member to a group ```powershell Add-ADPrincipalGroupMembership -Identity SQLAdmin1 -MemberOf DlgtdAdminsPSOGroup @@ -62,7 +62,7 @@ Add-ADPrincipalGroupMembership -Identity SQLAdmin1 -MemberOf DlgtdAdminsPSOGroup This command adds the user with SAM account name `SQLAdmin1` to the group `DlgtdAdminsPSOGroup`. -### EXAMPLE 2 +### Example 2: Add filtered users to a group ```powershell Get-ADUser -Filter 'Name -like "*SvcAccount*"' | @@ -72,7 +72,7 @@ Get-ADUser -Filter 'Name -like "*SvcAccount*"' | This command gets all users with `SvcAccount` in their name and adds them to the group `SvcAccPSOGroup`. -### EXAMPLE 3 +### Example 3: Add filtered users to a distinguished name group ```powershell $params = @{ @@ -91,8 +91,7 @@ This command adds all employees in `Branch1` in the AD LDS instance `localhost:6 ### -AuthType -Specifies the authentication method to use. -The acceptable values for this parameter are: +Specifies the authentication method to use. The acceptable values for this parameter are: - `Negotiate` or `0` - `Basic` or `1` @@ -279,8 +278,8 @@ Accept wildcard characters: False ### -PassThru -Returns an object representing the item with which you are working. -By default, this cmdlet does not generate any output. +Returns an object representing the item with which you're working. By default, this cmdlet doesn't +generate any output. ```yaml Type: System.Management.Automation.SwitchParameter @@ -336,8 +335,7 @@ Accept wildcard characters: False ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. +Shows what would happen if the cmdlet runs. The cmdlet isn't run. ```yaml Type: System.Management.Automation.SwitchParameter diff --git a/docset/winserver2022-ps/activedirectory/Add-ADResourcePropertyListMember.md b/docset/winserver2022-ps/activedirectory/Add-ADResourcePropertyListMember.md index f7cea0cb72..b21542782b 100644 --- a/docset/winserver2022-ps/activedirectory/Add-ADResourcePropertyListMember.md +++ b/docset/winserver2022-ps/activedirectory/Add-ADResourcePropertyListMember.md @@ -28,7 +28,7 @@ property list in Active Directory. ## EXAMPLES -### EXAMPLE 1 +### Example 1: Add members to a resource property list ```powershell $params = @{ @@ -41,7 +41,7 @@ Add-ADResourcePropertyListMember @params This command adds the resource members named `Country` and `Authors` to the list named `Global Resource Property List`. -### EXAMPLE 2 +### Example 2: Add members to a filtered resource property list ```powershell Get-ADResourcePropertyList -Filter "Name -like 'Corporate*'" | @@ -56,8 +56,7 @@ and `Authors` to it. ### -AuthType -Specifies the authentication method to use. -The acceptable values for this parameter are: +Specifies the authentication method to use. The acceptable values for this parameter are: - `Negotiate` or `0` - `Basic` or `1` @@ -175,8 +174,8 @@ Accept wildcard characters: False ### -PassThru -Returns an object representing the item with which you are working. -By default, this cmdlet does not generate any output. +Returns an object representing the item with which you're working. By default, this cmdlet doesn't +generate any output. ```yaml Type: System.Management.Automation.SwitchParameter diff --git a/docset/winserver2022-ps/activedirectory/Clear-ADAccountExpiration.md b/docset/winserver2022-ps/activedirectory/Clear-ADAccountExpiration.md index 4e91faf3fe..3cd8c72e34 100644 --- a/docset/winserver2022-ps/activedirectory/Clear-ADAccountExpiration.md +++ b/docset/winserver2022-ps/activedirectory/Clear-ADAccountExpiration.md @@ -46,7 +46,7 @@ instance. ## EXAMPLES -### EXAMPLE 1 +### Example 1: Clear an account expiration date for a specified user ```powershell Clear-ADAccountExpiration -Identity PattiFuller @@ -54,7 +54,7 @@ Clear-ADAccountExpiration -Identity PattiFuller This command clears the account expiration date for the user with SamAccountName `PattiFuller`. -### EXAMPLE 2 +### Example 2: Clear an account expiration date by using a distinguished name ```powershell Clear-ADAccountExpiration -Identity 'CN=PattiFuller,DC=AppNC' -Server 'PATTIFU-SVR1:60000' @@ -67,8 +67,7 @@ This command clears the account expiration date for the user with DistinguishedN ### -AuthType -Specifies the authentication method to use. -The acceptable values for this parameter are: +Specifies the authentication method to use. The acceptable values for this parameter are: - `Negotiate` or `0` - `Basic` or `1` @@ -217,8 +216,8 @@ Accept wildcard characters: False ### -PassThru -Returns an object representing the item with which you are working. -By default, this cmdlet does not generate any output. +Returns an object representing the item with which you're working. By default, this cmdlet doesn't +generate any output. ```yaml Type: System.Management.Automation.SwitchParameter @@ -274,8 +273,7 @@ Accept wildcard characters: False ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. +Shows what would happen if the cmdlet runs. The cmdlet isn't run. ```yaml Type: System.Management.Automation.SwitchParameter diff --git a/docset/winserver2022-ps/activedirectory/Clear-ADClaimTransformLink.md b/docset/winserver2022-ps/activedirectory/Clear-ADClaimTransformLink.md index 191f241227..345df5d4ff 100644 --- a/docset/winserver2022-ps/activedirectory/Clear-ADClaimTransformLink.md +++ b/docset/winserver2022-ps/activedirectory/Clear-ADClaimTransformLink.md @@ -30,7 +30,7 @@ more cross-forest trust relationships in Active Directory. ## EXAMPLES -### EXAMPLE 1 +### Example 1: Remove a specified policy from a trust relationship ```powershell Clear-ADClaimTransformLink -Identity 'corp.contoso.com' -Policy DenyAllPolicy @@ -38,7 +38,7 @@ Clear-ADClaimTransformLink -Identity 'corp.contoso.com' -Policy DenyAllPolicy This command removes the policy named `DenyAllPolicy` from the `corp.contoso.com` trust. -### EXAMPLE 2 +### Example 2: Remove all policies that are applied to a trusted forest ```powershell Clear-ADClaimTransformLink -Identity 'corp.contoso.com' -TrustRole Trusted @@ -48,7 +48,7 @@ This command removes any policies that are applied to where this forest acts as in the `corp.contoso.com` trust. Effectively, this cmdlet removes any policies that are applied to claims flowing out of this forest towards it trust partner. -### EXAMPLE 3 +### Example 3: Remove a claim transformation policy from being applied to the trust relationship ```powershell $params = @{ @@ -67,8 +67,7 @@ claims coming into this from its trust partner. ### -AuthType -Specifies the authentication method to use. -The acceptable values for this parameter are: +Specifies the authentication method to use. The acceptable values for this parameter are: - `Negotiate` or `0` - `Basic` or `1` @@ -161,8 +160,8 @@ Accept wildcard characters: False ### -PassThru -Returns an object representing the item with which you are working. -By default, this cmdlet does not generate any output. +Returns an object representing the item with which you're working. By default, this cmdlet doesn't +generate any output. ```yaml Type: System.Management.Automation.SwitchParameter @@ -255,8 +254,7 @@ Accept wildcard characters: False ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. +Shows what would happen if the cmdlet runs. The cmdlet isn't run. ```yaml Type: System.Management.Automation.SwitchParameter diff --git a/docset/winserver2022-ps/activedirectory/Disable-ADAccount.md b/docset/winserver2022-ps/activedirectory/Disable-ADAccount.md index 17a8610b62..dc25eb62ad 100644 --- a/docset/winserver2022-ps/activedirectory/Disable-ADAccount.md +++ b/docset/winserver2022-ps/activedirectory/Disable-ADAccount.md @@ -46,7 +46,7 @@ instance. ## EXAMPLES -### EXAMPLE 1 +### Example 1: Disable an account by identity ```powershell Disable-ADAccount -Identity PattiFul @@ -54,7 +54,7 @@ Disable-ADAccount -Identity PattiFul This command disables the account with identity SAMAccountName `PattiFul`. -### EXAMPLE 2 +### Example 2: Disable an account by Distinguished Name ```powershell Disable-ADAccount -Identity 'CN=Patti Fuller,OU=Finance,OU=Users,DC=FABRIKAM,DC=COM' @@ -63,7 +63,7 @@ Disable-ADAccount -Identity 'CN=Patti Fuller,OU=Finance,OU=Users,DC=FABRIKAM,DC= This command disables the account with DistinguishedName `CN=Patti Fuller,OU=Finance,OU=Users,DC=FABRIKAM,DC=COM`. -### EXAMPLE 3 +### Example 3: Disable all accounts in an organizational unit ```powershell Get-ADUser -Filter 'Name -like "*"' -SearchBase "OU=Finance,OU=Users,DC=FABRIKAM,DC=COM" | @@ -77,8 +77,7 @@ This command disables all accounts in the organizational unit ### -AuthType -Specifies the authentication method to use. -The acceptable values for this parameter are: +Specifies the authentication method to use. The acceptable values for this parameter are: - `Negotiate` or `0` - `Basic` or `1` @@ -227,8 +226,8 @@ Accept wildcard characters: False ### -PassThru -Returns an object representing the item with which you are working. -By default, this cmdlet does not generate any output. +Returns an object representing the item with which you're working. By default, this cmdlet doesn't +generate any output. ```yaml Type: System.Management.Automation.SwitchParameter @@ -284,8 +283,7 @@ Accept wildcard characters: False ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. +Shows what would happen if the cmdlet runs. The cmdlet isn't run. ```yaml Type: System.Management.Automation.SwitchParameter From b3d495b86d089fb606fb2fb236d7d0abfb486c29 Mon Sep 17 00:00:00 2001 From: Ruben Guerrero Date: Tue, 30 May 2023 13:30:07 -0700 Subject: [PATCH 798/965] Update Add-AppxPackage.md Typo --- docset/winserver2022-ps/appx/Add-AppxPackage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/appx/Add-AppxPackage.md b/docset/winserver2022-ps/appx/Add-AppxPackage.md index 6a31b475b0..92eaa8dbb5 100644 --- a/docset/winserver2022-ps/appx/Add-AppxPackage.md +++ b/docset/winserver2022-ps/appx/Add-AppxPackage.md @@ -570,7 +570,7 @@ for this parameter are: - `InstallFull`: Installs as a full app - `InstallStub`: Installs as a stub app - `UsePreference`: Uses the current - [PackageSubPreference](/uwp/api/windows.management.deployment.packagestubpreference) for the + [PackageStubPreference](/uwp/api/windows.management.deployment.packagestubpreference) for the package ```yaml From 947bb84e0adf8f789ac17843448af2589215fc85 Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Thu, 1 Jun 2023 00:23:28 -0400 Subject: [PATCH 799/965] Fix formatting for Disable-ADOptionalFeature. --- .../Disable-ADOptionalFeature.md | 209 ++++++++++++------ 1 file changed, 137 insertions(+), 72 deletions(-) diff --git a/docset/winserver2022-ps/activedirectory/Disable-ADOptionalFeature.md b/docset/winserver2022-ps/activedirectory/Disable-ADOptionalFeature.md index 440fcb02a8..291067c483 100644 --- a/docset/winserver2022-ps/activedirectory/Disable-ADOptionalFeature.md +++ b/docset/winserver2022-ps/activedirectory/Disable-ADOptionalFeature.md @@ -16,72 +16,115 @@ Disables an Active Directory optional feature. ## SYNTAX ``` -Disable-ADOptionalFeature [-WhatIf] [-Confirm] [-AuthType ] [-Credential ] - [-Identity] [-PassThru] [-Scope] [-Server ] - [-Target] [] +Disable-ADOptionalFeature [-WhatIf] [-Confirm] [-AuthType ] + [-Credential ] [-Identity] [-PassThru] + [-Scope] [-Server ] [-Target] + [] ``` ## DESCRIPTION -The **Disable-ADOptionalFeature** disables an Active Directory optional feature that is associated with a particular domain mode or forest mode. -The *Identity* parameter specifies the Active Directory optional feature that you want to disable. -You can identify an optional feature by its distinguished name, feature GUID, or object GUID. -You can also set the parameter to an optional feature object variable, such as `$` or you can pass an optional feature object through the pipeline to the *Identity* parameter. -For example, you can use the **Get-ADOptionalFeature** cmdlet to retrieve an optional feature object and then pass the object through the pipeline to the **Disable-ADOptionalFeature** cmdlet. +The `Disable-ADOptionalFeature` disables an Active Directory optional feature that is associated +with a particular domain mode or forest mode. + +The **Identity** parameter specifies the Active Directory optional feature that you want to disable. +You can identify an optional feature by its distinguished name, feature GUID, or object GUID. You +can also set the parameter to an optional feature object variable, such as +`$` or you can pass an optional feature object through the pipeline to +the **Identity** parameter. For example, you can use the `Get-ADOptionalFeature` cmdlet to retrieve +an optional feature object and then pass the object through the pipeline to the +`Disable-ADOptionalFeature` cmdlet. The **Scope** parameter specifies the scope at which the optional feature is disabled. The **Target** parameter specifies the domain or forest on which the optional feature is disabled. -You can identify the domain or forest by its fully-qualified domain name (FQDN), NetBIOS name, or the distinguished name of the domain naming context. +You can identify the domain or forest by its fully-qualified domain name (FQDN), NetBIOS name, or +the distinguished name of the domain naming context. ## EXAMPLES ### Example 1: Disable a feature for a NetBIOS target -``` -PS C:\> Disable-ADOptionalFeature -Identity 'Feature 1' -Scope ForestOrConfigurationSet -Target 'fabrikam' -Server DC1 + +```powershell +$params = @{ + Identity = 'Feature 1' + Scope = 'ForestOrConfigurationSet' + Target = 'fabrikam' + Server = 'DC1' +} +Disable-ADOptionalFeature @params ``` -This command disables the optional feature named Feature 1 for the forest that has the NetBIOS name fabrikam. -This operation should be performed against the domain controller that holds the naming flexible single master operations (FSMO) role. +This command disables the optional feature named `Feature 1` for the forest that has the NetBIOS +name `fabrikam`. This operation should be performed against the domain controller that holds the +domain naming master flexible single master operations (FSMO) role. ### Example 2: Disable a feature by distinguished name -``` -PS C:\> Disable-ADOptionalFeature -Identity 'CN=Feature 1,CN=Optional Features,CN=Directory Service,CN=Windows NT,CN=Services,CN=Configuration,DC=fabrikam,DC=com' -Scope ForestOrConfigurationSet -Target 'fabrikam.com' -Server DC1 + +```powershell +$params = @{ + Identity = 'CN=Feature 1,CN=Optional Features,CN=Directory Service,CN=Windows NT,CN=Services,CN=Configuration,DC=fabrikam,DC=com' + Scope = ForestOrConfigurationSet + Target = 'fabrikam.com' + Server = 'DC1' +} +Disable-ADOptionalFeature @params ``` -This command disables the optional feature that has the distinguished name CN=Feature 1,CN=Optional Features,CN=Directory Service,CN=Windows NT,CN=Services,CN=Configuration,DC=fabrikam,DC=com, for the forest named fabrikam.com. -This operation should be performed against the domain controller that holds the naming FSMO role. +This command disables the optional feature that has the distinguished name +`CN=Feature 1,CN=Optional Features,CN=Directory Service,CN=Windows NT,CN=Services,CN=Configuration,DC=fabrikam,DC=com`, +for the forest named `fabrikam.com`. This operation should be performed against the domain +controller that holds the domain naming master FSMO role. ### Example 3: Disable a feature by GUID -``` -PS C:\> Disable-ADOptionalFeature -Identity '54ec6e43-75a8-445b-aa7b-346a1e096659' -Scope Domain -Target 'DC=fabrikam,DC=com' -Server DC1 + +```powershell +$params = @{ + Identity = '54ec6e43-75a8-445b-aa7b-346a1e096659' + Scope = 'Domain' + Target = 'DC=fabrikam,DC=com' + Server = 'DC1' +} +Disable-ADOptionalFeature @params ``` -This command disables the optional feature that has the GUID 54ec6e43-75a8-445b-aa7b-346a1e096659 for the domain with the distinguished name DC=ntdev,DC=fabrikam,DC=com. -This operation should be performed against the domain controller that holds the naming master FSMO role. +This command disables the optional feature that has the GUID `54ec6e43-75a8-445b-aa7b-346a1e096659` +for the domain with the distinguished name `DC=ntdev,DC=fabrikam,DC=com`. This operation should be +performed against the domain controller that holds the domain naming naming master FSMO role. ### Example 4: Disable a feature for an AD LDS instance -``` -PS C:\> Disable-ADOptionalFeature -Identity 'Feature 1' -Scope ForestOrConfigurationSet -Target 'CN=Configuration,CN={0241853A-6BBF-48AA-8AE0-9C35D0C91B7B}' -Server server1:50000 + +```powershell +$params = @{ + Identity = 'Feature 1' + Scope = 'ForestOrConfigurationSet' + Target = 'CN=Configuration,CN={0241853A-6BBF-48AA-8AE0-9C35D0C91B7B}' + Server = 'server1:50000' +} +Disable-ADOptionalFeature @params ``` -This command disables the optional feature Feature 1 for the Active Directory Lightweight Directory Services (AD LDS) instance that has the distinguished name CN=Configuration,CN={0241853A-6BBF-48AA-8AE0-9C35D0C91B7B}. -This operation should be performed against the AD LDS instance that holds the naming master FSMO role. +This command disables the optional feature `Feature 1` for the Active Directory Lightweight +Directory Services (AD LDS) instance that has the distinguished name +`CN=Configuration,CN={0241853A-6BBF-48AA-8AE0-9C35D0C91B7B}`. This operation should be performed +against the AD LDS instance that holds the domain naming master FSMO role. ## PARAMETERS ### -AuthType + Specifies the authentication method to use. The acceptable values for this parameter are: -- Negotiate or 0 -- Basic or 1 +- `Negotiate` or `0` +- `Basic` or `1` -The default authentication method is Negotiate. +The default authentication method is `Negotiate`. -A Secure Sockets Layer (SSL) connection is required for the Basic authentication method. +A Secure Sockets Layer (SSL) connection is required for the `Basic` authentication method. ```yaml +Type: Microsoft.ActiveDirectory.Management.ADAuthType Type: ADAuthType Parameter Sets: (All) Aliases: @@ -95,10 +138,11 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -110,19 +154,24 @@ Accept wildcard characters: False ``` ### -Credential -Specifies the user account credentials to use to perform this task. -The default credentials are the credentials of the currently logged on user unless the cmdlet is run from an Active Directory module for Windows PowerShell provider drive. -If the cmdlet is run from such a provider drive, the account associated with the drive is the default. -To specify this parameter, you can type a user name, such as User1 or Domain01\User01 or you can specify a **PSCredential** object. -If you specify a user name for this parameter, the cmdlet prompts for a password. +Specifies the user account credentials to use to perform this task. The default credentials are the +credentials of the currently logged on user unless the cmdlet is run from an Active Directory module +for Windows PowerShell provider drive. If the cmdlet is run from such a provider drive, the account +associated with the drive is the default. + +To specify this parameter, you can type a user name, such as `User1` or `Domain01\User01` or you can +specify a **PSCredential** object. If you specify a user name for this parameter, the cmdlet prompts +for a password. -You can also create a **PSCredential** object by using a script or by using the **Get-Credential** cmdlet. -You can then set the *Credential* parameter to the **PSCredential** object. +You can also create a **PSCredential** object by using a script or by using the `Get-Credential` +cmdlet. You can then set the **Credential** parameter to the **PSCredential** object. -If the acting credentials do not have directory-level permission to perform the task, Active Directory module for Windows PowerShell returns a terminating error. +If the acting credentials do not have directory-level permission to perform the task, Active +Directory module for Windows PowerShell returns a terminating error. ```yaml +Type: System.Management.Automation.PSCredential Type: PSCredential Parameter Sets: (All) Aliases: @@ -135,21 +184,23 @@ Accept wildcard characters: False ``` ### -Identity -Specifies an Active Directory optional feature object by providing one of the following values. -The identifier in parentheses is the Lightweight Directory Access Protocol (LDAP) display name for the attribute. -The acceptable values for this parameter are: + +Specifies an Active Directory optional feature object by providing one of the following values. The +identifier in parentheses is the Lightweight Directory Access Protocol (LDAP) display name for the +attribute. The acceptable values for this parameter are: - FQDN -- Feature GUID (featureGUID) -- Object GUID (objectGUID) +- Feature GUID (**featureGUID**) +- Object GUID (**objectGUID**) -The cmdlet searches the default naming context or partition to find the object. -If two or more objects are found, the cmdlet returns a non-terminating error. +The cmdlet searches the default naming context or partition to find the object. If two or more +objects are found, the cmdlet returns a non-terminating error. -This parameter can also get this object through the pipeline or you can set this parameter to an optional feature object instance. +This parameter can also get this object through the pipeline or you can set this parameter to an +optional feature object instance. ```yaml -Type: ADOptionalFeature +Type: Microsoft.ActiveDirectory.Management.ADOptionalFeature Parameter Sets: (All) Aliases: @@ -161,11 +212,12 @@ Accept wildcard characters: False ``` ### -PassThru -Returns an object representing the item with which you are working. -By default, this cmdlet does not generate any output. + +Returns an object representing the item with which you are working. By default, this cmdlet does not +generate any output. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -177,14 +229,15 @@ Accept wildcard characters: False ``` ### -Scope -Specifies the scope at which the feature is enabled or disabled. -The acceptable values for this parameter are: -- Domain or 0 -- Forest or 1 +Specifies the scope at which the feature is enabled or disabled. The acceptable values for this +parameter are: + +- `Domain` or `0` +- `Forest` or `1` ```yaml -Type: ADOptionalFeatureScope +Type: Microsoft.ActiveDirectory.Management.ADOptionalFeatureScope Parameter Sets: (All) Aliases: Accepted values: Unknown, ForestOrConfigurationSet, Domain @@ -197,29 +250,35 @@ Accept wildcard characters: False ``` ### -Server -Specifies the Active Directory Domain Services (AD DS) instance to connect to, by providing one of the following values for a corresponding domain name or directory server. -The service may be any of the following: Active Directory Lightweight Domain Services, Active Directory Domain Services or Active Directory snapshot instance. -Specify the Active Directory Domain Services instance in one of the following ways: +Specifies the Active Directory Domain Services instance to connect to, by providing one of the +following values for a corresponding domain name or directory server. The service may be any of the +following: Active Directory Lightweight Domain Services, Active Directory Domain Services or Active +Directory snapshot instance. + +Specify the Active Directory Domain Services instance in one of the following ways: Domain name values: -- FQDN +- Fully qualified domain name - NetBIOS name -Directory server values: +Directory server values: - Fully qualified directory server name - NetBIOS name - Fully qualified directory server name and port -The default value for this parameter is determined by one of the following methods in the order that they are listed: +The default value for this parameter is determined by one of the following methods in the order that +they are listed: - By using the **Server** value from objects passed through the pipeline -- By using the server information associated with the Active Directory Domain Services Windows PowerShell provider drive, when the cmdlet runs in that drive +- By using the server information associated with the Active Directory Domain Services Windows + PowerShell provider drive, when the cmdlet runs in that drive - By using the domain of the computer running Windows PowerShell ```yaml +Type: System.String Type: String Parameter Sets: (All) Aliases: @@ -232,8 +291,9 @@ Accept wildcard characters: False ``` ### -Target -Specifies the domain or forest in which to modify the optional feature. -You can identify the target domain or forest by providing one of the following values: + +Specifies the domain or forest in which to modify the optional feature. You can identify the target +domain or forest by providing one of the following values: - FQDN of the forest or domain - NetBIOS name of the forest or domain @@ -256,11 +316,11 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -272,24 +332,29 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### Microsoft.ActiveDirectory.Management.ADOptionalFeature -An optional feature object is received by the *Identity* parameter. + +An optional feature object is received by the **Identity** parameter. ## OUTPUTS ### None ## NOTES -* This cmdlet does not work with an Active Directory snapshot. -* This cmdlet does not work with a read-only domain controller. + +- This cmdlet does not work with an Active Directory snapshot. +- This cmdlet does not work with a read-only domain controller. ## RELATED LINKS [Enable-ADOptionalFeature](./Enable-ADOptionalFeature.md) [Get-ADOptionalFeature](./Get-ADOptionalFeature.md) - From 0ea97502a060b2ed4bcbbbfd22884fe538ca227b Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Thu, 1 Jun 2023 00:29:09 -0400 Subject: [PATCH 800/965] Add complete namespace to ADIdentity type. --- .../activedirectory/Disable-ADOptionalFeature.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/activedirectory/Disable-ADOptionalFeature.md b/docset/winserver2022-ps/activedirectory/Disable-ADOptionalFeature.md index 291067c483..b90cde90aa 100644 --- a/docset/winserver2022-ps/activedirectory/Disable-ADOptionalFeature.md +++ b/docset/winserver2022-ps/activedirectory/Disable-ADOptionalFeature.md @@ -304,7 +304,7 @@ The following example shows how to set this parameter to a domain naming context `-Target "DC=corp,DC=Fabrikam,DC=com"` ```yaml -Type: ADEntity +Type: Microsoft.ActiveDirectory.Management.ADEntity Parameter Sets: (All) Aliases: From e3fc16e5040444821f9bb781ef2d224b2c6a8edc Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Thu, 1 Jun 2023 00:40:32 -0400 Subject: [PATCH 801/965] Add contractions. --- .../activedirectory/Disable-ADOptionalFeature.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docset/winserver2022-ps/activedirectory/Disable-ADOptionalFeature.md b/docset/winserver2022-ps/activedirectory/Disable-ADOptionalFeature.md index b90cde90aa..8d19bc724e 100644 --- a/docset/winserver2022-ps/activedirectory/Disable-ADOptionalFeature.md +++ b/docset/winserver2022-ps/activedirectory/Disable-ADOptionalFeature.md @@ -213,7 +213,7 @@ Accept wildcard characters: False ### -PassThru -Returns an object representing the item with which you are working. By default, this cmdlet does not +Returns an object representing the item with which you're working. By default, this cmdlet does not generate any output. ```yaml @@ -317,7 +317,7 @@ Accept wildcard characters: False ### -WhatIf -Shows what would happen if the cmdlet runs. The cmdlet is not run. +Shows what would happen if the cmdlet runs. The cmdlet isn't run. ```yaml Type: System.Management.Automation.SwitchParameter @@ -350,8 +350,8 @@ An optional feature object is received by the **Identity** parameter. ## NOTES -- This cmdlet does not work with an Active Directory snapshot. -- This cmdlet does not work with a read-only domain controller. +- This cmdlet doesn't work with an Active Directory snapshot. +- This cmdlet doesn't work with a read-only domain controller. ## RELATED LINKS From 2c72893c4ac8a39730fe72c19d5133353bbe3901 Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Thu, 1 Jun 2023 00:41:43 -0400 Subject: [PATCH 802/965] Fix formatting for Enable-ADAccount. --- .../activedirectory/Enable-ADAccount.md | 200 +++++++++++------- 1 file changed, 123 insertions(+), 77 deletions(-) diff --git a/docset/winserver2022-ps/activedirectory/Enable-ADAccount.md b/docset/winserver2022-ps/activedirectory/Enable-ADAccount.md index c9cf92ad87..31cc0126e1 100644 --- a/docset/winserver2022-ps/activedirectory/Enable-ADAccount.md +++ b/docset/winserver2022-ps/activedirectory/Enable-ADAccount.md @@ -16,56 +16,71 @@ Enables an Active Directory account. ## SYNTAX ``` -Enable-ADAccount [-WhatIf] [-Confirm] [-AuthType ] [-Credential ] - [-Identity] [-Partition ] [-PassThru] [-Server ] [] +Enable-ADAccount [-WhatIf] [-Confirm] [-AuthType ] + [-Credential ] [-Identity] [-Partition ] [-PassThru] + [-Server ] [] ``` ## DESCRIPTION -The **Enable-ADAccount** cmdlet enables an Active Directory user, computer, or service account. -The *Identity* parameter specifies the Active Directory user, computer, or service account that you want to enable. -You can identify an account by its distinguished name, GUID, security identifier (SID) or Security Accounts Manager (SAM) account name. -You can also set the *Identity* parameter to an object variable such as `$`, or you can pass an account object through the pipeline to the *Identity* parameter. -For example, you can use the **Get-ADUser** cmdlet to retrieve an account object and then pass the object through the pipeline to the **Enable-ADAccount** cmdlet. -Similarly, you can use **Get-ADComputer** and **Search-ADAccount** to retrieve account objects. +The `Enable-ADAccount` cmdlet enables an Active Directory user, computer, or service account. + +The **Identity** parameter specifies the Active Directory user, computer, or service account that +you want to enable. You can identify an account by its distinguished name, GUID, security identifier +(SID) or Security Accounts Manager (SAM) account name. You can also set the **Identity** parameter +to an object variable such as `$`, or you can pass an account object through +the pipeline to the **Identity** parameter. For example, you can use the `Get-ADUser` cmdlet to +retrieve an account object and then pass the object through the pipeline to the `Enable-ADAccount` +cmdlet. Similarly, you can use `Get-ADComputer` and `Search-ADAccount` to retrieve account objects. ## EXAMPLES ### Example 1: Enable an account by identity -``` -PS C:\> Enable-ADAccount -Identity "PattiFul" + +```powershell +Enable-ADAccount -Identity 'PattiFul' ``` -This command enables the account with identity SamAccountName PattiFul. +This command enables the account with identity SamAccountName `PattiFul`. ### Example 2: Enable an account by Distinguished Name -``` -PS C:\> Enable-ADAccount -Identity "CN=Patti Fuller,OU=Finance,OU=UserAccounts,DC=FABRIKAM,DC=COM" + +```powershell +Enable-ADAccount -Identity 'CN=Patti Fuller,OU=Finance,OU=UserAccounts,DC=FABRIKAM,DC=COM' ``` -This command enables the account with DistinguishedName CN=Patti Fuller,OU=Finance,OU=UserAccounts,DC=FABRIKAM,DC=COM. +This command enables the account with DistinguishedName +`CN=Patti Fuller,OU=Finance,OU=UserAccounts,DC=FABRIKAM,DC=COM`. ### Example 3: Enable all accounts in an organizational unit using a filter -``` -PS C:\> Get-ADUser -Filter 'Name -like "*"' -SearchBase "OU=Finance,OU=UserAccounts,DC=FABRIKAM,DC=COM" | Enable-ADAccount + +```powershell +$params = @{ + Filter = 'Name -like "*"' + SearchBase = 'OU=Finance,OU=UserAccounts,DC=FABRIKAM,DC=COM' +} +Get-ADUser @params | Enable-ADAccount ``` -This command enables all accounts in the organizational unit: OU=Finance,OU=UserAccounts,DC=FABRIKAM,DC=COM. +This command enables all accounts in the organizational unit: +`OU=Finance,OU=UserAccounts,DC=FABRIKAM,DC=COM`. ## PARAMETERS ### -AuthType + Specifies the authentication method to use. The acceptable values for this parameter are: -- Negotiate or 0 -- Basic or 1 +- `Negotiate` or `0` +- `Basic` or `1` -The default authentication method is Negotiate. +The default authentication method is `Negotiate`. -A Secure Sockets Layer (SSL) connection is required for the Basic authentication method. +A Secure Sockets Layer (SSL) connection is required for the `Basic` authentication method. ```yaml +Type: Microsoft.ActiveDirectory.Management.ADAuthType Type: ADAuthType Parameter Sets: (All) Aliases: @@ -79,10 +94,11 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -94,19 +110,24 @@ Accept wildcard characters: False ``` ### -Credential -Specifies the user account credentials to use to perform this task. -The default credentials are the credentials of the currently logged on user unless the cmdlet is run from an Active Directory module for Windows PowerShell provider drive. -If the cmdlet is run from such a provider drive, the account associated with the drive is the default. -To specify this parameter, you can type a user name, such as User1 or Domain01\User01 or you can specify a **PSCredential** object. -If you specify a user name for this parameter, the cmdlet prompts for a password. +Specifies the user account credentials to use to perform this task. The default credentials are the +credentials of the currently logged on user unless the cmdlet is run from an Active Directory module +for Windows PowerShell provider drive. If the cmdlet is run from such a provider drive, the account +associated with the drive is the default. -You can also create a **PSCredential** object by using a script or by using the **Get-Credential** cmdlet. -You can then set the *Credential* parameter to the **PSCredential** object. +To specify this parameter, you can type a user name, such as `User1` or `Domain01\User01` or you can +specify a **PSCredential** object. If you specify a user name for this parameter, the cmdlet prompts +for a password. -If the acting credentials do not have directory-level permission to perform the task, Active Directory module for Windows PowerShell returns a terminating error. +You can also create a **PSCredential** object by using a script or by using the `Get-Credential` +cmdlet. You can then set the **Credential** parameter to the **PSCredential** object. + +If the acting credentials do not have directory-level permission to perform the task, Active +Directory module for Windows PowerShell returns a terminating error. ```yaml +Type: System.Management.Automation.PSCredential Type: PSCredential Parameter Sets: (All) Aliases: @@ -119,19 +140,21 @@ Accept wildcard characters: False ``` ### -Identity -Specifies an Active Directory account object by providing one of the following property values. -The identifier in parentheses is the Lightweight Directory Access Protocol (LDAP) display name for the attribute. -The acceptable values for this parameter are: + +Specifies an Active Directory account object by providing one of the following property values. The +identifier in parentheses is the Lightweight Directory Access Protocol (LDAP) display name for the +attribute. The acceptable values for this parameter are: - A distinguished name -- A GUID (objectGUID) -- A Security Identifier (objectSid) -- A SAM account name (sAMAccountName) +- A GUID (**objectGUID**) +- A Security Identifier (**objectSid**) +- A SAM account name (**sAMAccountName**) -The cmdlet searches the default naming context or partition to find the object. -If two or more objects are found, the cmdlet returns a non-terminating error. +The cmdlet searches the default naming context or partition to find the object. If two or more +objects are found, the cmdlet returns a non-terminating error. -This parameter can also get this object through the pipeline or you can set this parameter to an account object instance. +This parameter can also get this object through the pipeline or you can set this parameter to an +account object instance. Derived types such as the following are also accepted: @@ -140,7 +163,7 @@ Derived types such as the following are also accepted: - **Microsoft.ActiveDirectory.Management.ADServiceAccount** ```yaml -Type: ADAccount +Type: Microsoft.ActiveDirectory.Management.ADAccount Parameter Sets: (All) Aliases: @@ -152,29 +175,40 @@ Accept wildcard characters: False ``` ### -Partition -Specifies the distinguished name of an Active Directory partition. -The distinguished name must be one of the naming contexts on the current directory server. -The cmdlet searches this partition to find the object defined by the *Identity* parameter. -In many cases, a default value is used for the *Partition* parameter if no value is specified. -The rules for determining the default value are given below. -Note that rules listed first are evaluated first and once a default value can be determined, no further rules are evaluated. - -In Active Directory Domain Services (AD DS) environments, a default value for *Partition* is set in the following cases: - -- If the *Identity* parameter is set to a distinguished name, the default value of *Partition* is automatically generated from this distinguished name. -- If running cmdlets from an Active Directory provider drive, the default value of *Partition* is automatically generated from the current path in the drive. -- If none of the previous cases apply, the default value of *Partition* is set to the default partition or naming context of the target domain. - -In Active Directory Lightweight Directory Services (AD LDS) environments, a default value for *Partition* is set in the following cases: - -- If the *Identity* parameter is set to a distinguished name, the default value of *Partition* is automatically generated from this distinguished name. -- If running cmdlets from an Active Directory provider drive, the default value of *Partition* is automatically generated from the current path in the drive. -- If the target AD LDS instance has a default naming context, the default value of *Partition* is set to the default naming context. -To specify a default naming context for an AD LDS environment, set the **msDS-defaultNamingContext** property of the Active Directory directory service agent (DSA) object (**nTDSDSA**) for the AD LDS instance. -- If none of the previous cases apply, the *Partition* parameter will not take any default value. +Specifies the distinguished name of an Active Directory partition. The distinguished name must be +one of the naming contexts on the current directory server. The cmdlet searches this partition to +find the object defined by the **Identity** parameter. + +In many cases, a default value is used for the **Partition** parameter if no value is specified. The +rules for determining the default value are given below. Note that rules listed first are evaluated +first and once a default value can be determined, no further rules are evaluated. + +In Active Directory Domain Services environments, a default value for **Partition** is set in the +following cases: + +- If the **Identity** parameter is set to a distinguished name, the default value of **Partition** + is automatically generated from this distinguished name. +- If running cmdlets from an Active Directory provider drive, the default value of **Partition** is + automatically generated from the current path in the drive. +- If none of the previous cases apply, the default value of **Partition** is set to the default + partition or naming context of the target domain. + +In Active Directory Lightweight Directory Services (AD LDS) environments, a default value for +**Partition** is set in the following cases: + +- If the **Identity** parameter is set to a distinguished name, the default value of **Partition** + is automatically generated from this distinguished name. +- If running cmdlets from an Active Directory provider drive, the default value of **Partition** is + automatically generated from the current path in the drive. +- If the target AD LDS instance has a default naming context, the default value of **Partition** is + set to the default naming context. To specify a default naming context for an AD LDS environment, + set the **msDS-defaultNamingContext** property of the Active Directory directory service agent + (DSA) object (**nTDSDSA**) for the AD LDS instance. +- If none of the previous cases apply, the **Partition** parameter will not take any default value. ```yaml +Type: System.String Type: String Parameter Sets: (All) Aliases: @@ -187,11 +221,12 @@ Accept wildcard characters: False ``` ### -PassThru -Returns an object representing the item with which you are working. -By default, this cmdlet does not generate any output. + +Returns an object representing the item with which you're working. By default, this cmdlet does not +generate any output. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -203,29 +238,35 @@ Accept wildcard characters: False ``` ### -Server -Specifies the Active Directory Domain Services instance to connect to, by providing one of the following values for a corresponding domain name or directory server. -The service may be any of the following: Active Directory Lightweight Domain Services, Active Directory Domain Services or Active Directory snapshot instance. -Specify the Active Directory Domain Services instance in one of the following ways: +Specifies the Active Directory Domain Services instance to connect to, by providing one of the +following values for a corresponding domain name or directory server. The service may be any of the +following: Active Directory Lightweight Domain Services, Active Directory Domain Services or Active +Directory snapshot instance. + +Specify the Active Directory Domain Services instance in one of the following ways: Domain name values: - Fully qualified domain name - NetBIOS name -Directory server values: +Directory server values: - Fully qualified directory server name - NetBIOS name - Fully qualified directory server name and port -The default value for this parameter is determined by one of the following methods in the order that they are listed: +The default value for this parameter is determined by one of the following methods in the order that +they are listed: - By using the **Server** value from objects passed through the pipeline -- By using the server information associated with the Active Directory Domain Services Windows PowerShell provider drive, when the cmdlet runs in that drive +- By using the server information associated with the Active Directory Domain Services Windows + PowerShell provider drive, when the cmdlet runs in that drive - By using the domain of the computer running Windows PowerShell ```yaml +Type: System.String Type: String Parameter Sets: (All) Aliases: @@ -238,11 +279,11 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet isn't run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -254,12 +295,17 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### Microsoft.ActiveDirectory.Management.ADAccount -An account object is received by the *Identity* parameter. + +An account object is received by the **Identity** parameter. Derived types, such as the following, are also accepted: @@ -272,8 +318,9 @@ Derived types, such as the following, are also accepted: ### None ## NOTES -* This cmdlet does not work with an Active Directory snapshot. -* This cmdlet does not work with a read-only domain controller. + +- This cmdlet doesn't work with an Active Directory snapshot. +- This cmdlet doesn't work with a read-only domain controller. ## RELATED LINKS @@ -292,4 +339,3 @@ Derived types, such as the following, are also accepted: [Set-ADAccountPassword](./Set-ADAccountPassword.md) [Unlock-ADAccount](./Unlock-ADAccount.md) - From cc4cdbc8bccd699410e046e55c6d759ff23686a8 Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Thu, 1 Jun 2023 00:54:20 -0400 Subject: [PATCH 803/965] Fix formatting for Enable-ADOptionalFeature. --- .../Enable-ADOptionalFeature.md | 198 +++++++++++------- 1 file changed, 121 insertions(+), 77 deletions(-) diff --git a/docset/winserver2022-ps/activedirectory/Enable-ADOptionalFeature.md b/docset/winserver2022-ps/activedirectory/Enable-ADOptionalFeature.md index 2214a1bb1b..93269cc558 100644 --- a/docset/winserver2022-ps/activedirectory/Enable-ADOptionalFeature.md +++ b/docset/winserver2022-ps/activedirectory/Enable-ADOptionalFeature.md @@ -16,65 +16,83 @@ Enables an Active Directory optional feature. ## SYNTAX ``` -Enable-ADOptionalFeature [-WhatIf] [-Confirm] [-AuthType ] [-Credential ] - [-Identity] [-PassThru] [-Scope] [-Server ] - [-Target] [] +Enable-ADOptionalFeature [-WhatIf] [-Confirm] [-AuthType ] + [-Credential ] [-Identity] [-PassThru] + [-Scope] [-Server ] [-Target] + [] ``` ## DESCRIPTION -The **Enable-ADOptionalFeature** cmdlet enables an Active Directory optional feature that is associated with a particular domain mode or forest mode. -Active Directory optional features that depend on a specified domain mode or forest mode must be explicitly enabled after the domain mode or forest mode is set. -The *Identity* parameter specifies the Active Directory optional feature that you want to enable. -You can identify an optional feature by its distinguished name, feature GUID, or object GUID. -You can also set the parameter to an optional feature object variable, such as `$` or you can pass an optional feature object through the pipeline to the *Identity* parameter. -For example, you can use the **Get-ADOptionalFeature** cmdlet to retrieve an optional feature object and then pass the object through the pipeline to the **Enable-ADOptionalFeature** cmdlet. +The `Enable-ADOptionalFeature` cmdlet enables an Active Directory optional feature that is +associated with a particular domain mode or forest mode. Active Directory optional features that +depend on a specified domain mode or forest mode must be explicitly enabled after the domain mode or +forest mode is set. -The *Scope* parameter specifies the scope at which the optional feature is enabled. +The **Identity** parameter specifies the Active Directory optional feature that you want to enable. +You can identify an optional feature by its distinguished name, feature GUID, or object GUID. You +can also set the parameter to an optional feature object variable, such as +`$` or you can pass an optional feature object through the pipeline to +the **Identity** parameter. For example, you can use the `Get-ADOptionalFeature` cmdlet to retrieve +an optional feature object and then pass the object through the pipeline to the +`Enable-ADOptionalFeature` cmdlet. -The *Target* parameter specifies the domain or forest on which the optional feature is enabled. -You can identify the domain or forest by its fully-qualified domain name (FQDN), NetBIOS name, or distinguished name of the domain naming context. +The **Scope** parameter specifies the scope at which the optional feature is enabled. + +The **Target** parameter specifies the domain or forest on which the optional feature is enabled. +You can identify the domain or forest by its fully-qualified domain name (FQDN), NetBIOS name, or +distinguished name of the domain naming context. ## EXAMPLES ### Example 1: Enable the Recycle Bin feature for a forest -``` -PS C:\> Enable-ADOptionalFeature -Identity 'Recycle Bin Feature' -Scope ForestOrConfigurationSet -Target 'fabrikam.com' -Server dc1 + +```powershell +$params = @{ + Identity = 'Recycle Bin Feature' + Scope = 'ForestOrConfigurationSet' + Target = 'fabrikam.com' + Server = 'dc1' +} +Enable-ADOptionalFeature @params ``` -This command enables the optional feature Recycle Bin feature for the forest fabrikam.com. -This operation must be performed on the domain controller that holds the naming flexible single master operations (FSMO) role. +This command enables the optional feature `Recycle Bin Feature` for the forest `fabrikam.com`. This +operation must be performed on the domain controller that holds the domain naming master flexible +single master operations (FSMO) role. ### Example 2: Enable the Recycle bin for an AD LDS instance -``` -PS C:\> Enable-ADOptionalFeature -Identity 'Feature 1' -Scope ForestOrConfigurationSet -Target 'CN=Configuration,CN={0241853A-6BBF-48AA-8AE0-9C35D0C91B7B}' -Server lds.fabrikam.com:50000 -``` - -This command enables the optional feature Recycle Bin feature for the AD LDS instance lds.fabrikam.com. -This operation must be performed on the AD LDS instance that holds the naming FSMO role. -### Example 3: Set the ForestMode on an AD LDS instance -``` -PS C:\> Set-ADObject -Identity "CN=Partitions,CN=Configuration,CN={4F971828-5BE4-4E94-B532-58F2BFB6A3A5}" -Replace @{"msDS-Behavior-Version"=4} +```powershell +$params = @{ + Identity = 'Feature 1' + Scope = 'ForestOrConfigurationSet' + Target = 'CN=Configuration,CN={0241853A-6BBF-48AA-8AE0-9C35D0C91B7B}' + Server = 'lds.fabrikam.com:50000' +} +Enable-ADOptionalFeature @params ``` -This command sets the **ForestMode** (Forest Functional Level) to Windows2008R2Forest on an AD LDS instance. -The **ForestMode** must be Windows2008R2Forest or later in order to enable the Recycle Bin feature for AD LDS. +This command enables the optional feature `Feature 1` for the AD LDS instance `lds.fabrikam.com`. +This operation must be performed on the AD LDS instance that holds the domain naming master FSMO +role. ## PARAMETERS ### -AuthType + Specifies the authentication method to use. The acceptable values for this parameter are: -- Negotiate or 0 -- Basic or 1 +- `Negotiate` or `0` +- `Basic` or `1` -The default authentication method is Negotiate. +The default authentication method is `Negotiate`. -A Secure Sockets Layer (SSL) connection is required for the Basic authentication method. +A Secure Sockets Layer (SSL) connection is required for the `Basic` authentication method. ```yaml +Type: Microsoft.ActiveDirectory.Management.ADAuthType Type: ADAuthType Parameter Sets: (All) Aliases: @@ -88,10 +106,11 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -103,19 +122,24 @@ Accept wildcard characters: False ``` ### -Credential -Specifies the user account credentials to use to perform this task. -The default credentials are the credentials of the currently logged on user unless the cmdlet is run from an Active Directory module for Windows PowerShell provider drive. -If the cmdlet is run from such a provider drive, the account associated with the drive is the default. -To specify this parameter, you can type a user name, such as User1 or Domain01\User01 or you can specify a **PSCredential** object. -If you specify a user name for this parameter, the cmdlet prompts for a password. +Specifies the user account credentials to use to perform this task. The default credentials are the +credentials of the currently logged on user unless the cmdlet is run from an Active Directory module +for Windows PowerShell provider drive. If the cmdlet is run from such a provider drive, the account +associated with the drive is the default. -You can also create a **PSCredential** object by using a script or by using the **Get-Credential** cmdlet. -You can then set the *Credential* parameter to the **PSCredential** object. +To specify this parameter, you can type a user name, such as `User1` or `Domain01\User01` or you can +specify a **PSCredential** object. If you specify a user name for this parameter, the cmdlet prompts +for a password. -If the acting credentials do not have directory-level permission to perform the task, Active Directory module for Windows PowerShell returns a terminating error. +You can also create a **PSCredential** object by using a script or by using the `Get-Credential` +cmdlet. You can then set the **Credential** parameter to the **PSCredential** object. + +If the acting credentials do not have directory-level permission to perform the task, Active +Directory module for Windows PowerShell returns a terminating error. ```yaml +Type: System.Management.Automation.PSCredential Type: PSCredential Parameter Sets: (All) Aliases: @@ -128,21 +152,23 @@ Accept wildcard characters: False ``` ### -Identity -Specifies an Active Directory optional feature object by providing one of the following values. -The identifier in parentheses is the Lightweight Directory Access Protocol (LDAP) display name for the attribute. -The acceptable values for this parameter are: + +Specifies an Active Directory optional feature object by providing one of the following values. The +identifier in parentheses is the Lightweight Directory Access Protocol (LDAP) display name for the +attribute. The acceptable values for this parameter are: - A FQDN -- A feature GUID (featureGUID) -- An object GUID (objectGUID) +- A feature GUID (**featureGUID**) +- An object GUID (**objectGUID**) -The cmdlet searches the default naming context or partition to find the object. -If two or more objects are found, the cmdlet returns a non-terminating error. +The cmdlet searches the default naming context or partition to find the object. If two or more +objects are found, the cmdlet returns a non-terminating error. -This parameter can also get this object through the pipeline or you can set this parameter to an optional feature object instance. +This parameter can also get this object through the pipeline or you can set this parameter to an +optional feature object instance. ```yaml -Type: ADOptionalFeature +Type: Microsoft.ActiveDirectory.Management.ADOptionalFeature Parameter Sets: (All) Aliases: @@ -154,11 +180,12 @@ Accept wildcard characters: False ``` ### -PassThru -Returns an object representing the item with which you are working. -By default, this cmdlet does not generate any output. + +Returns an object representing the item with which you're working. By default, this cmdlet doesn't +generate any output. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -170,14 +197,15 @@ Accept wildcard characters: False ``` ### -Scope -Specifies the scope at which the feature is enabled or disabled. -The acceptable values for this parameter are: -- Domain or 0 -- Forest or 1 +Specifies the scope at which the feature is enabled or disabled. The acceptable values for this +parameter are: + +- `Domain` or `0` +- `Forest` or `1` ```yaml -Type: ADOptionalFeatureScope +Type: Microsoft.ActiveDirectory.Management.ADOptionalFeatureScope Parameter Sets: (All) Aliases: Accepted values: Unknown, ForestOrConfigurationSet, Domain @@ -190,29 +218,35 @@ Accept wildcard characters: False ``` ### -Server -Specifies the Active Directory Domain Services (AD DS) instance to connect to, by providing one of the following values for a corresponding domain name or directory server. -The service may be any of the following: Active Directory Lightweight Domain Services (AD LDS), AD DS, or Active Directory snapshot instance. -Specify the AD DS instance in one of the following ways: +Specifies the Active Directory Domain Services instance to connect to, by providing one of the +following values for a corresponding domain name or directory server. The service may be any of the +following: Active Directory Lightweight Domain Services, Active Directory Domain Services or Active +Directory snapshot instance. + +Specify the Active Directory Domain Services instance in one of the following ways: Domain name values: -- FQDN +- Fully qualified domain name - NetBIOS name -Directory server values: +Directory server values: - Fully qualified directory server name - NetBIOS name - Fully qualified directory server name and port -The default value for this parameter is determined by one of the following methods in the order that they are listed: +The default value for this parameter is determined by one of the following methods in the order that +they are listed: - By using the **Server** value from objects passed through the pipeline -- By using the server information associated with the AD DS Windows PowerShell provider drive, when the cmdlet runs in that drive +- By using the server information associated with the Active Directory Domain Services Windows + PowerShell provider drive, when the cmdlet runs in that drive - By using the domain of the computer running Windows PowerShell ```yaml +Type: System.String Type: String Parameter Sets: (All) Aliases: @@ -225,18 +259,19 @@ Accept wildcard characters: False ``` ### -Target -Specifies the domain or forest in which to modify the optional feature. -You can identify the target domain or forest by providing one of the following values: + +Specifies the domain or forest in which to modify the optional feature. You can identify the target +domain or forest by providing one of the following values: - FQDN of the forest or domain - NetBIOS name of the forest or domain -You can also, where *Scope* is set to domain (not forest), use the following: +When **Scope** is set to `Domain`, you can use the following value: - Distinguished name of the domain naming context ```yaml -Type: ADEntity +Type: Microsoft.ActiveDirectory.Management.ADEntity Parameter Sets: (All) Aliases: @@ -248,11 +283,11 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet isn't run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -264,25 +299,34 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### Microsoft.ActiveDirectory.Management.ADOptionalFeature -An optional feature object is received by the *Identity* parameter. + +An optional feature object is received by the **Identity** parameter. ## OUTPUTS ### None ## NOTES -* This cmdlet does not work with an Active Directory snapshot. -* This cmdlet does not work with a read-only domain controller. -* Recycle Bin Feature: Once the Active Directory Recycle Bin is enabled, all objects deleted before the Active Directory Recycle Bin was enabled (tombstone objects) become recycled objects. They are no longer visible in the Deleted Objects container and they cannot be recovered using Active Directory Recycle Bin. The only way to restore these objects is through an authoritative restore from an AD DS backup taken before the Active Directory Recycle Bin was enabled. + +- This cmdlet doesn't work with an Active Directory snapshot. +- This cmdlet doesn't work with a read-only domain controller. +- Recycle Bin Feature: Once the Active Directory Recycle Bin is enabled, all objects deleted before + the Active Directory Recycle Bin was enabled (tombstone objects) become recycled objects. They are + no longer visible in the Deleted Objects container and they cannot be recovered using Active + Directory Recycle Bin. The only way to restore these objects is through an authoritative restore + from an AD DS backup taken before the Active Directory Recycle Bin was enabled. ## RELATED LINKS [Disable-ADOptionalFeature](./Disable-ADOptionalFeature.md) [Get-ADOptionalFeature](./Get-ADOptionalFeature.md) - From 140ab1972a1c9faae3dd1367a90331c1f7debc0a Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Thu, 1 Jun 2023 01:07:39 -0400 Subject: [PATCH 804/965] Fix formatting for Get-ADAccountAuthorizationGroup. --- .../Get-ADAccountAuthorizationGroup.md | 199 +++++++++++------- 1 file changed, 128 insertions(+), 71 deletions(-) diff --git a/docset/winserver2022-ps/activedirectory/Get-ADAccountAuthorizationGroup.md b/docset/winserver2022-ps/activedirectory/Get-ADAccountAuthorizationGroup.md index 1267d42fe9..db369a14a0 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADAccountAuthorizationGroup.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADAccountAuthorizationGroup.md @@ -16,25 +16,34 @@ Gets the accounts token group information. ## SYNTAX ``` -Get-ADAccountAuthorizationGroup [-AuthType ] [-Credential ] [-Identity] - [-Partition ] [-Server ] [] +Get-ADAccountAuthorizationGroup [-AuthType ] [-Credential ] + [-Identity] [-Partition ] [-Server ] [] ``` ## DESCRIPTION -The **Get-ADAccountAuthorizationGroup** cmdlet gets the security groups from the specified user, computer, or service accounts token. -This cmdlet requires a global catalog to perform the group search. -If the forest that contains the account does not have a global catalog, the cmdlet returns a non-terminating error. -The *Identity* parameter specifies the user, computer, or service account. -You can identify a user, computer, or service account object by its distinguished name, GUID, security identifier (SID), Security Account Manager (SAM) account name or user principal name. -You can also set the *Identity* parameter to an account object variable, such as `$`, or pass an account object through the pipeline to the *Identity* parameter. -For example, you can use the Get-ADUser, Get-ADComputer, Get-ADServiceAccount or Search-ADAccount cmdlets to retrieve an account object and then pass the object through the pipeline to the Get-ADAccountAuthorizationGroup cmdlet. +The `Get-ADAccountAuthorizationGroup` cmdlet gets the security groups from the specified user, +computer, or service accounts token. This cmdlet requires a global catalog to perform the group +search. If the forest that contains the account doesn't have a global catalog, the cmdlet returns a +non-terminating error. + +The **Identity** parameter specifies the user, computer, or service account. You can identify a +user, computer, or service account object by its distinguished name, GUID, security identifier +(SID), Security Account Manager (SAM) account name or user principal name. You can also set the +**Identity** parameter to an account object variable, such as `$`, or pass an +account object through the pipeline to the **Identity** parameter. For example, you can use the +`Get-ADUser`, `Get-ADComputer`, `Get-ADServiceAccount` or `Search-ADAccount` cmdlets to retrieve an account +object and then pass the object through the pipeline to the `Get-ADAccountAuthorizationGroup` cmdlet. ## EXAMPLES ### Example 1: Get all security groups for a specified account + +```powershell +Get-ADAccountAuthorizationGroup -Identity DavidCh ``` -PS C:\> Get-ADAccountAuthorizationGroup -Identity DavidCh + +```output GroupScope : DomainLocal objectGUID : 00000000-0000-0000-0000-000000000000 GroupCategory : Security @@ -75,11 +84,16 @@ SID : S-1-5-32-545 distinguishedName : CN=Users,CN=Builtin,DC=Fabrikam,DC=com ``` -This command returns all security groups for the specified account with SamAccountName DavidCh. +This command returns all security groups for the specified account with **SamAccountName** +`DavidCh`. ### Example 2: Get all security groups for a specified account using a distinguished name + +```powershell +Get-ADAccountAuthorizationGroup -Identity "CN=DavidCh,DC=AppNC" -Server ":50000" ``` -PS C:\> Get-ADAccountAuthorizationGroup -Identity "CN=DavidCh,DC=AppNC" -Server ":50000" + +```output distinguishedName : CN=AdminGroup,DC=AppNC GroupCategory : Security GroupScope : Global @@ -89,11 +103,18 @@ objectGUID : 4d72873f-fe09-4834-9ada-a905636d10df SamAccountName : SID : S-1-510474493-936115905-4021890855-1253703389-3958791574-3542197427 ``` -This command returns all security groups for the specified account with DistinguishedName cn=DavidCh,dc=AppNC in the AD LDS instance \:50000. +This command returns all security groups for the specified account with **DistinguishedName** +`CN=DavidCh,DC=AppNC` in the AD LDS instance `:50000`. ### Example 3: Get a filtered list of security groups + +```powershell +Get-ADAccountAuthorizationGroup -Server ":50000" -Identity Administrator | + Where-Object { $_.objectClass -ne $null } | + Select-Object name, objectClass ``` -PS C:\> Get-ADAccountAuthorizationGroup -Server ":50000" -Identity Administrator | where { $_.objectClass -ne $null } | ft name, objectClass + +```output name objectClass ---- ----------- Domain Users group @@ -107,23 +128,29 @@ Schema Admins group Denied RODC Password Replication Group group ``` -This command returns a filtered list of built-in security groups that do not have an empty or null setting for objectclass, such as Everyone or Authenticated Users. -Note: This type of filtering of groups in output can be useful when piping the output of this cmdlet to be used as input to other Active Directory cmdlets. +This command returns a filtered list of built-in security groups that do not have an empty or null +setting for **objectClass**, such as **Everyone** or **Authenticated Users**. + +> [!NOTE]: +> This type of filtering of groups in output can be useful when piping the output of this +> cmdlet to be used as input to other Active Directory cmdlets. ## PARAMETERS ### -AuthType + Specifies the authentication method to use. The acceptable values for this parameter are: -- Negotiate or 0 -- Basic or 1 +- `Negotiate` or `0` +- `Basic` or `1` -The default authentication method is Negotiate. +The default authentication method is `Negotiate`. -A Secure Sockets Layer (SSL) connection is required for the Basic authentication method. +A Secure Sockets Layer (SSL) connection is required for the `Basic` authentication method. ```yaml +Type: Microsoft.ActiveDirectory.Management.ADAuthType Type: ADAuthType Parameter Sets: (All) Aliases: @@ -137,19 +164,24 @@ Accept wildcard characters: False ``` ### -Credential -Specifies the user account credentials to use to perform this task. -The default credentials are the credentials of the currently logged on user unless the cmdlet is run from an Active Directory module for Windows PowerShell provider drive. -If the cmdlet is run from such a provider drive, the account associated with the drive is the default. -To specify this parameter, you can type a user name, such as User1 or Domain01\User01 or you can specify a **PSCredential** object. -If you specify a user name for this parameter, the cmdlet prompts for a password. +Specifies the user account credentials to use to perform this task. The default credentials are the +credentials of the currently logged on user unless the cmdlet is run from an Active Directory module +for Windows PowerShell provider drive. If the cmdlet is run from such a provider drive, the account +associated with the drive is the default. -You can also create a **PSCredential** object by using a script or by using the **Get-Credential** cmdlet. -You can then set the *Credential* parameter to the **PSCredential** object. +To specify this parameter, you can type a user name, such as `User1` or `Domain01\User01` or you can +specify a **PSCredential** object. If you specify a user name for this parameter, the cmdlet prompts +for a password. -If the acting credentials do not have directory-level permission to perform the task, Active Directory module for Windows PowerShell returns a terminating error. +You can also create a **PSCredential** object by using a script or by using the `Get-Credential` +cmdlet. You can then set the **Credential** parameter to the **PSCredential** object. + +If the acting credentials do not have directory-level permission to perform the task, Active +Directory module for Windows PowerShell returns a terminating error. ```yaml +Type: System.Management.Automation.PSCredential Type: PSCredential Parameter Sets: (All) Aliases: @@ -162,28 +194,30 @@ Accept wildcard characters: False ``` ### -Identity -Specifies an Active Directory account object by providing one of the following property values. -The identifier in parentheses is the Lightweight Directory Access Protocol (LDAP) display name for the attribute. -The acceptable values for this parameter are: + +Specifies an Active Directory account object by providing one of the following property values. The +identifier in parentheses is the Lightweight Directory Access Protocol (LDAP) display name for the +attribute. The acceptable values for this parameter are: - A distinguished name -- A GUID (objectGUID) -- A Security Identifier (objectSid) -- A SAM Account Name (SAMAccountName) +- A GUID (**objectGUID**) +- A Security Identifier (**objectSid**) +- A SAM Account Name (**SAMAccountName**) -The cmdlet searches the default naming context or partition to find the object. -If two or more objects are found, the cmdlet returns a non-terminating error. +The cmdlet searches the default naming context or partition to find the object. If two or more +objects are found, the cmdlet returns a non-terminating error. -This parameter can also get this object through the pipeline or you can set this parameter to an account object instance. +This parameter can also get this object through the pipeline or you can set this parameter to an +account object instance. -Derived types such as the following are also accepted: +Derived types such as the following are also accepted: - **Microsoft.ActiveDirectory.Management.ADServiceAccount** - **Microsoft.ActiveDirectory.Management.ADComputer** - **Microsoft.ActiveDirectory.Management.ADUser** ```yaml -Type: ADAccount +Type: Microsoft.ActiveDirectory.Management.ADAccount Parameter Sets: (All) Aliases: @@ -195,29 +229,40 @@ Accept wildcard characters: False ``` ### -Partition -Specifies the distinguished name of an Active Directory partition. -The distinguished name must be one of the naming contexts on the current directory server. -The cmdlet searches this partition to find the object defined by the *Identity* parameter. - -In many cases, a default value is used for the *Partition* parameter if no value is specified. -The rules for determining the default value are given below. -Note that rules listed first are evaluated first and once a default value can be determined, no further rules are evaluated. - -In Active Directory Domain Services (AD DS) environments, a default value for *Partition* is set in the following cases: -- If the *Identity* parameter is set to a distinguished name, the default value of *Partition* is automatically generated from this distinguished name. -- If running cmdlets from an Active Directory provider drive, the default value of *Partition* is automatically generated from the current path in the drive. -- If none of the previous cases apply, the default value of *Partition* is set to the default partition or naming context of the target domain. - -In Active Directory Lightweight Directory Services (AD LDS) environments, a default value for *Partition* is set in the following cases: - -- If the *Identity* parameter is set to a distinguished name, the default value of *Partition* is automatically generated from this distinguished name. -- If running cmdlets from an Active Directory provider drive, the default value of *Partition* is automatically generated from the current path in the drive. -- If the target AD LDS instance has a default naming context, the default value of *Partition* is set to the default naming context. -To specify a default naming context for an AD LDS environment, set the **msDS-defaultNamingContext** property of the Active Directory directory service agent object (**nTDSDSA**) for the AD LDS instance. -- If none of the previous cases apply, the *Partition* parameter will not take any default value. +Specifies the distinguished name of an Active Directory partition. The distinguished name must be +one of the naming contexts on the current directory server. The cmdlet searches this partition to +find the object defined by the **Identity** parameter. + +In many cases, a default value is used for the **Partition** parameter if no value is specified. The +rules for determining the default value are given below. Note that rules listed first are evaluated +first and once a default value can be determined, no further rules are evaluated. + +In Active Directory Domain Services environments, a default value for **Partition** is set in the +following cases: + +- If the **Identity** parameter is set to a distinguished name, the default value of **Partition** + is automatically generated from this distinguished name. +- If running cmdlets from an Active Directory provider drive, the default value of **Partition** is + automatically generated from the current path in the drive. +- If none of the previous cases apply, the default value of **Partition** is set to the default + partition or naming context of the target domain. + +In Active Directory Lightweight Directory Services (AD LDS) environments, a default value for +**Partition** is set in the following cases: + +- If the **Identity** parameter is set to a distinguished name, the default value of **Partition** + is automatically generated from this distinguished name. +- If running cmdlets from an Active Directory provider drive, the default value of **Partition** is + automatically generated from the current path in the drive. +- If the target AD LDS instance has a default naming context, the default value of **Partition** is + set to the default naming context. To specify a default naming context for an AD LDS environment, + set the **msDS-defaultNamingContext** property of the Active Directory directory service agent + (DSA) object (**nTDSDSA**) for the AD LDS instance. +- If none of the previous cases apply, the **Partition** parameter will not take any default value. ```yaml +Type: System.String Type: String Parameter Sets: (All) Aliases: @@ -230,29 +275,35 @@ Accept wildcard characters: False ``` ### -Server -Specifies the Active Directory Domain Services instance to connect to, by providing one of the following values for a corresponding domain name or directory server. -The service may be any of the following: Active Directory Lightweight Domain Services, Active Directory Domain Services or Active Directory snapshot instance. -Specify the Active Directory Domain Services instance in one of the following ways: +Specifies the Active Directory Domain Services instance to connect to, by providing one of the +following values for a corresponding domain name or directory server. The service may be any of the +following: Active Directory Lightweight Domain Services, Active Directory Domain Services or Active +Directory snapshot instance. + +Specify the Active Directory Domain Services instance in one of the following ways: Domain name values: - Fully qualified domain name - NetBIOS name -Directory server values: +Directory server values: - Fully qualified directory server name - NetBIOS name - Fully qualified directory server name and port -The default value for this parameter is determined by one of the following methods in the order that they are listed: +The default value for this parameter is determined by one of the following methods in the order that +they are listed: -- By using the *Server* value from objects passed through the pipeline -- By using the server information associated with the Active Directory Domain Services Windows PowerShell provider drive, when the cmdlet runs in that drive +- By using the **Server** value from objects passed through the pipeline +- By using the server information associated with the Active Directory Domain Services Windows + PowerShell provider drive, when the cmdlet runs in that drive - By using the domain of the computer running Windows PowerShell ```yaml +Type: System.String Type: String Parameter Sets: (All) Aliases: @@ -265,13 +316,18 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### Microsoft.ActiveDirectory.Management.ADAccount -An account object that represents the user, computer or service account is received by the *Identity* parameter. -Derived types, such as the following are also accepted: + +An account object that represents the user, computer or service account is received by the +**Identity** parameter. Derived types, such as the following are also accepted: - **Microsoft.ActiveDirectory.Management.ADUser** - **Microsoft.ActiveDirectory.Management.ADComputer** @@ -280,10 +336,12 @@ Derived types, such as the following are also accepted: ## OUTPUTS ### Microsoft.ActiveDirectory.Management.ADGroup + Returns group objects that represent the security groups for the account. ## NOTES -* This cmdlet does not work with an Active Directory snapshot. + +- This cmdlet doesn't work with an Active Directory snapshot. ## RELATED LINKS @@ -296,4 +354,3 @@ Returns group objects that represent the security groups for the account. [Search-ADAccount](./Search-ADAccount.md) [AD DS Administration Cmdlets in Windows PowerShell](./activedirectory.md) - From c2515b74735564b681a745fe8d2a530b16a1b56e Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Sun, 4 Jun 2023 19:28:13 -0400 Subject: [PATCH 805/965] Fix formatting for Get-ADAccountAuthorizationGroup. --- .../activedirectory/Get-ADAccountAuthorizationGroup.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/docset/winserver2022-ps/activedirectory/Get-ADAccountAuthorizationGroup.md b/docset/winserver2022-ps/activedirectory/Get-ADAccountAuthorizationGroup.md index db369a14a0..3d79b45c19 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADAccountAuthorizationGroup.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADAccountAuthorizationGroup.md @@ -32,8 +32,9 @@ user, computer, or service account object by its distinguished name, GUID, secur (SID), Security Account Manager (SAM) account name or user principal name. You can also set the **Identity** parameter to an account object variable, such as `$`, or pass an account object through the pipeline to the **Identity** parameter. For example, you can use the -`Get-ADUser`, `Get-ADComputer`, `Get-ADServiceAccount` or `Search-ADAccount` cmdlets to retrieve an account -object and then pass the object through the pipeline to the `Get-ADAccountAuthorizationGroup` cmdlet. +`Get-ADUser`, `Get-ADComputer`, `Get-ADServiceAccount` or `Search-ADAccount` cmdlets to retrieve an +account object and then pass the object through the pipeline to the +`Get-ADAccountAuthorizationGroup` cmdlet. ## EXAMPLES @@ -100,7 +101,8 @@ GroupScope : Global name : AdminGroup objectClass : group objectGUID : 4d72873f-fe09-4834-9ada-a905636d10df -SamAccountName : SID : S-1-510474493-936115905-4021890855-1253703389-3958791574-3542197427 +SamAccountName : AdminGroup +SID : S-1-510474493-936115905-4021890855-1253703389-3958791574-3542197427 ``` This command returns all security groups for the specified account with **DistinguishedName** From 9daba08f0ab03967a9dfaec470b93423c177963f Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Sun, 4 Jun 2023 19:49:39 -0400 Subject: [PATCH 806/965] Remove duplicate Type declaration from parameter metadata. --- .../activedirectory/Enable-ADOptionalFeature.md | 3 --- .../activedirectory/Get-ADAccountAuthorizationGroup.md | 4 ---- 2 files changed, 7 deletions(-) diff --git a/docset/winserver2022-ps/activedirectory/Enable-ADOptionalFeature.md b/docset/winserver2022-ps/activedirectory/Enable-ADOptionalFeature.md index 93269cc558..579f75d1e6 100644 --- a/docset/winserver2022-ps/activedirectory/Enable-ADOptionalFeature.md +++ b/docset/winserver2022-ps/activedirectory/Enable-ADOptionalFeature.md @@ -93,7 +93,6 @@ A Secure Sockets Layer (SSL) connection is required for the `Basic` authenticati ```yaml Type: Microsoft.ActiveDirectory.Management.ADAuthType -Type: ADAuthType Parameter Sets: (All) Aliases: Accepted values: Negotiate, Basic @@ -140,7 +139,6 @@ Directory module for Windows PowerShell returns a terminating error. ```yaml Type: System.Management.Automation.PSCredential -Type: PSCredential Parameter Sets: (All) Aliases: @@ -247,7 +245,6 @@ they are listed: ```yaml Type: System.String -Type: String Parameter Sets: (All) Aliases: diff --git a/docset/winserver2022-ps/activedirectory/Get-ADAccountAuthorizationGroup.md b/docset/winserver2022-ps/activedirectory/Get-ADAccountAuthorizationGroup.md index 3d79b45c19..f149e225a3 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADAccountAuthorizationGroup.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADAccountAuthorizationGroup.md @@ -153,7 +153,6 @@ A Secure Sockets Layer (SSL) connection is required for the `Basic` authenticati ```yaml Type: Microsoft.ActiveDirectory.Management.ADAuthType -Type: ADAuthType Parameter Sets: (All) Aliases: Accepted values: Negotiate, Basic @@ -184,7 +183,6 @@ Directory module for Windows PowerShell returns a terminating error. ```yaml Type: System.Management.Automation.PSCredential -Type: PSCredential Parameter Sets: (All) Aliases: @@ -265,7 +263,6 @@ In Active Directory Lightweight Directory Services (AD LDS) environments, a defa ```yaml Type: System.String -Type: String Parameter Sets: (All) Aliases: @@ -306,7 +303,6 @@ they are listed: ```yaml Type: System.String -Type: String Parameter Sets: (All) Aliases: From c90d0e9c2afb3c50c29903a324491dc1ce034344 Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Sun, 4 Jun 2023 19:54:23 -0400 Subject: [PATCH 807/965] Remove duplicate Type declaration from parameter metadata. --- docset/winserver2022-ps/activedirectory/Enable-ADAccount.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/docset/winserver2022-ps/activedirectory/Enable-ADAccount.md b/docset/winserver2022-ps/activedirectory/Enable-ADAccount.md index 31cc0126e1..36261a20f5 100644 --- a/docset/winserver2022-ps/activedirectory/Enable-ADAccount.md +++ b/docset/winserver2022-ps/activedirectory/Enable-ADAccount.md @@ -81,7 +81,6 @@ A Secure Sockets Layer (SSL) connection is required for the `Basic` authenticati ```yaml Type: Microsoft.ActiveDirectory.Management.ADAuthType -Type: ADAuthType Parameter Sets: (All) Aliases: Accepted values: Negotiate, Basic @@ -128,7 +127,6 @@ Directory module for Windows PowerShell returns a terminating error. ```yaml Type: System.Management.Automation.PSCredential -Type: PSCredential Parameter Sets: (All) Aliases: @@ -209,7 +207,6 @@ In Active Directory Lightweight Directory Services (AD LDS) environments, a defa ```yaml Type: System.String -Type: String Parameter Sets: (All) Aliases: @@ -267,7 +264,6 @@ they are listed: ```yaml Type: System.String -Type: String Parameter Sets: (All) Aliases: From 0b910e5ba233c92cdfcc42f7bea2628fb6b230dc Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Sun, 4 Jun 2023 19:58:02 -0400 Subject: [PATCH 808/965] Remove duplicate Type declaration from parameter metadata. --- .../activedirectory/Disable-ADOptionalFeature.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/docset/winserver2022-ps/activedirectory/Disable-ADOptionalFeature.md b/docset/winserver2022-ps/activedirectory/Disable-ADOptionalFeature.md index 8d19bc724e..c6025b7ba1 100644 --- a/docset/winserver2022-ps/activedirectory/Disable-ADOptionalFeature.md +++ b/docset/winserver2022-ps/activedirectory/Disable-ADOptionalFeature.md @@ -125,7 +125,6 @@ A Secure Sockets Layer (SSL) connection is required for the `Basic` authenticati ```yaml Type: Microsoft.ActiveDirectory.Management.ADAuthType -Type: ADAuthType Parameter Sets: (All) Aliases: Accepted values: Negotiate, Basic @@ -172,7 +171,6 @@ Directory module for Windows PowerShell returns a terminating error. ```yaml Type: System.Management.Automation.PSCredential -Type: PSCredential Parameter Sets: (All) Aliases: @@ -279,7 +277,6 @@ they are listed: ```yaml Type: System.String -Type: String Parameter Sets: (All) Aliases: From 2c4a5b8ae7a081fa7594ee4c7865fdd19dcc5209 Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Sun, 4 Jun 2023 19:58:47 -0400 Subject: [PATCH 809/965] Fix formatting for Get-ADAccountResultantPasswordReplicationPolicy. --- ...countResultantPasswordReplicationPolicy.md | 217 +++++++++++------- 1 file changed, 131 insertions(+), 86 deletions(-) diff --git a/docset/winserver2022-ps/activedirectory/Get-ADAccountResultantPasswordReplicationPolicy.md b/docset/winserver2022-ps/activedirectory/Get-ADAccountResultantPasswordReplicationPolicy.md index 7880f478fa..7411d9ecde 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADAccountResultantPasswordReplicationPolicy.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADAccountResultantPasswordReplicationPolicy.md @@ -16,62 +16,80 @@ Gets the resultant password replication policy for an Active Directory account. ## SYNTAX ``` -Get-ADAccountResultantPasswordReplicationPolicy [-AuthType ] [-Credential ] - [-DomainController] [-Identity] [-Partition ] [-Server ] - [] +Get-ADAccountResultantPasswordReplicationPolicy [-AuthType ] + [-Credential ] [-DomainController] + [-Identity] [-Partition ] [-Server ] [] ``` ## DESCRIPTION -The **Get-ADAccountResultantPasswordReplicationPolicy** cmdlet gets the resultant password replication policy for a user, computer, or service account on the specified read-only domain controller. -The policy is one of the following values: - -- Allow or 1 -- DenyExplicit or 0 -- DenyImplicit or 2 -- Unknown or -1 +The `Get-ADAccountResultantPasswordReplicationPolicy` cmdlet gets the resultant password replication +policy for a user, computer, or service account on the specified read-only domain controller. -The *Identity* parameter specifies the account. -You can identify a user, computer, or service account object by its distinguished name, GUID, security identifier (SID), or Security Account Manager (SAM) account name. -You can also set the *Identity* parameter to an account object variable, such as `$`, or pass an account object through the pipeline to the *Identity* parameter. -For example, you can use the Get-ADUser, Get-ADComputer, Get-ADServiceAccount, or Search-ADAccount cmdlets to retrieve an account object and then pass the object through the pipeline to the Get-ADAccountResultantPasswordReplicationPolicy cmdlet. +The policy is one of the following values: -The **DomainController** parameter specifies the read-only domain controller. -You can identify a domain controller by its IPV4Address, global IPV6Address, or DNS host name. -You can also identify a domain controller by the distinguished name of the NT Directory Services (NTDS) settings object or the server object, the GUID of the NTDS settings object or the server object under the configuration partition, or the distinguished name, SamAccountName, GUID, SID of the computer object that represents the domain controller. -You can also set the *DomainController* parameter to a domain controller object variable, such as `$`. +- `Allow` or `1` +- `DenyExplicit` or `0` +- `DenyImplicit` or `2` +- `Unknown` or `-1` + +The **Identity** parameter specifies the account. You can identify a user, computer, or service +account object by its distinguished name, GUID, security identifier (SID), or Security Account +Manager (SAM) account name. You can also set the **Identity** parameter to an account object +variable, such as `$`, or pass an account object through the pipeline to the +**Identity** parameter. For example, you can use the `Get-ADUser`, `Get-ADComputer`, +`Get-ADServiceAccount`, or `Search-ADAccount` cmdlets to retrieve an account object and then pass +the object through the pipeline to the `Get-ADAccountResultantPasswordReplicationPolicy` cmdlet. + +The **DomainController** parameter specifies the read-only domain controller. You can identify a +domain controller by its IPV4Address, global IPV6Address, or DNS host name. You can also identify a +domain controller by the distinguished name of the NT Directory Services (NTDS) settings object or +the server object, the GUID of the NTDS settings object or the server object under the configuration +partition, or the distinguished name, **SamAccountName**, GUID, SID of the computer object that +represents the domain controller. You can also set the **DomainController** parameter to a domain +controller object variable, such as `$`. ## EXAMPLES ### Example 1: Get the password replication policy for a specified user -``` -PS C:\> Get-ADAccountResultantPasswordReplicationPolicy -Identity DavidChe -DomainController "DOMAIN01" + +```powershell + Get-ADAccountResultantPasswordReplicationPolicy -Identity DavidChe -DomainController DC1 ``` -This command gets the password replication policy on the domain specified by the **DomainController** parameter for the user account specified by the *Identity* parameter. +This command gets the password replication policy on the domain specified by the +**DomainController** parameter for the user account specified by the **Identity** parameter. ### Example 2: Get the password replication policy for a specified user using a distinguished name -``` -PS C:\> Get-ADAccountResultantPasswordReplicationPolicy -Identity "CN=Elisa Daugherty,OU=Europe,OU=Sales,OU=UserAccounts,DC=FABRIKAM,DC=COM" -DomainController "DOMAIN01" + +```powershell +params = @{ + Identity = 'CN=Elisa Daugherty,OU=Europe,OU=Sales,OU=UserAccounts,DC=FABRIKAM,DC=COM' + DomainController = 'DC1' +} + Get-ADAccountResultantPasswordReplicationPolicy @params ``` -This command gets the password replication policy on the domain controller specified by the *DomainController* parameter for the user account distinguished name specified by the *Identity* parameter. +This command gets the password replication policy on the domain controller specified by the +**DomainController** parameter for the user account distinguished name specified by the **Identity** +parameter. ## PARAMETERS ### -AuthType + Specifies the authentication method to use. The acceptable values for this parameter are: -- Negotiate or 0 -- Basic or 1 +- `Negotiate` or `0` +- `Basic` or `1` -The default authentication method is Negotiate. +The default authentication method is `Negotiate`. -A Secure Sockets Layer (SSL) connection is required for the Basic authentication method. +A Secure Sockets Layer (SSL) connection is required for the `Basic` authentication method. ```yaml -Type: ADAuthType +Type: Microsoft.ActiveDirectory.Management.ADAuthType Parameter Sets: (All) Aliases: Accepted values: Negotiate, Basic @@ -84,20 +102,24 @@ Accept wildcard characters: False ``` ### -Credential -Specifies the user account credentials to use to perform this task. -The default credentials are the credentials of the currently logged on user unless the cmdlet is run from an Active Directory module for Windows PowerShell provider drive. -If the cmdlet is run from such a provider drive, the account associated with the drive is the default. -To specify this parameter, you can type a user name, such as User1 or Domain01\User01 or you can specify a **PSCredential** object. -If you specify a user name for this parameter, the cmdlet prompts for a password. +Specifies the user account credentials to use to perform this task. The default credentials are the +credentials of the currently logged on user unless the cmdlet is run from an Active Directory module +for Windows PowerShell provider drive. If the cmdlet is run from such a provider drive, the account +associated with the drive is the default. -You can also create a **PSCredential** object by using a script or by using the **Get-Credential** cmdlet. -You can then set the *Credential* parameter to the **PSCredential** object. +To specify this parameter, you can type a user name, such as `User1` or `Domain01\User01` or you can +specify a **PSCredential** object. If you specify a user name for this parameter, the cmdlet prompts +for a password. -If the acting credentials do not have directory-level permission to perform the task, Active Directory module for Windows PowerShell returns a terminating error. +You can also create a **PSCredential** object by using a script or by using the `Get-Credential` +cmdlet. You can then set the **Credential** parameter to the **PSCredential** object. + +If the acting credentials do not have directory-level permission to perform the task, Active +Directory module for Windows PowerShell returns a terminating error. ```yaml -Type: PSCredential +Type: System.Management.Automation.PSCredential Parameter Sets: (All) Aliases: @@ -109,25 +131,28 @@ Accept wildcard characters: False ``` ### -DomainController -Specifies a read-only domain controller (RODC). -The cmdlet returns the password replication policy of the account for this RODC. -You can identify the domain controller by providing one of the following values: -- GUID (objectGUID) +Specifies a read-only domain controller (RODC). The cmdlet returns the password replication policy +of the account for this RODC. You can identify the domain controller by providing one of the +following values: + +- GUID (**objectGUID**) - IPV4Address - Global IPV6Address -- DNS Host Name (dNSHostName) +- DNS Host Name (**dNSHostName**) - Name of the server object - A distinguished name of the NTDS Settings object -- A distinguished name of the server object that represents the domain controller +- A distinguished name of the server object that represents the domain controller - GUID of NTDS settings object under the configuration partition - GUID of server object under the configuration partition - A distinguished Name of the computer object that represents the domain controller -Note: The identifier in parentheses is the Lightweight Directory Access Protocol (LDAP) display name for the attribute. +> [!NOTE] +> The identifier in parentheses is the Lightweight Directory Access Protocol (LDAP) display name for +> the attribute. ```yaml -Type: ADDomainController +Type: Microsoft.ActiveDirectory.Management.ADDomainController Parameter Sets: (All) Aliases: @@ -139,19 +164,21 @@ Accept wildcard characters: False ``` ### -Identity -Specifies an Active Directory account object by providing one of the following property values. -The identifier in parentheses is the LDAP display name for the attribute. -The acceptable values for this parameter are: + +Specifies an Active Directory account object by providing one of the following property values. The +identifier in parentheses is the LDAP display name for the attribute. The acceptable values for this +parameter are: - A distinguished name -- A GUID (objectGUID) -- A security identifier (objectSid) -- A SAM account name (sAMAccountName) +- A GUID (**objectGUID**) +- A security identifier (**objectSid**) +- A SAM account name (**sAMAccountName**) The cmdlet searches the default naming context or partition to find the object. If two or more objects are found, the cmdlet returns a non-terminating error. -This parameter can also get this object through the pipeline or you can set this parameter to an account object instance. +This parameter can also get this object through the pipeline or you can set this parameter to an +account object instance. Derived types such as the following are also accepted: @@ -160,7 +187,7 @@ Derived types such as the following are also accepted: - **Microsoft.ActiveDirectory.Management.ADServiceAccount** ```yaml -Type: ADAccount +Type: Microsoft.ActiveDirectory.Management.ADAccount Parameter Sets: (All) Aliases: @@ -172,30 +199,40 @@ Accept wildcard characters: False ``` ### -Partition -Specifies the distinguished name of an Active Directory partition. -The distinguished name must be one of the naming contexts on the current directory server. -The cmdlet searches this partition to find the object defined by the *Identity* parameter. - -In many cases, a default value is used for the *Partition* parameter if no value is specified. -The rules for determining the default value are given below. -Note that rules listed first are evaluated first and once a default value can be determined, no further rules are evaluated. - -In Active Directory Domain Services environments, a default value for *Partition* is set in the following cases: - -- If the *Identity* parameter is set to a distinguished name, the default value of *Partition* is automatically generated from this distinguished name. -- If running cmdlets from an Active Directory provider drive, the default value of *Partition* is automatically generated from the current path in the drive. -- If none of the previous cases apply, the default value of *Partition* is set to the default partition or naming context of the target domain. -In Active Directory Lightweight Directory Services (AD LDS) environments, a default value for *Partition* is set in the following cases: - -- If the *Identity* parameter is set to a distinguished name, the default value of is automatically generated from this distinguished name. -- If running cmdlets from an Active Directory provider drive, the default value of *Partition* is automatically generated from the current path in the drive. -- If the target AD LDS instance has a default naming context, the default value of *Partition* is set to the default naming context. -To specify a default naming context for an AD LDS environment, set the **msDS-defaultNamingContext** property of the Active Directory directory service agent object (**nTDSDSA**) for the AD LDS instance. -- If none of the previous cases apply, the *Partition* parameter will not take any default value. +Specifies the distinguished name of an Active Directory partition. The distinguished name must be +one of the naming contexts on the current directory server. The cmdlet searches this partition to +find the object defined by the **Identity** parameter. + +In many cases, a default value is used for the **Partition** parameter if no value is specified. The +rules for determining the default value are given below. Note that rules listed first are evaluated +first and once a default value can be determined, no further rules are evaluated. + +In Active Directory Domain Services environments, a default value for **Partition** is set in the +following cases: + +- If the **Identity** parameter is set to a distinguished name, the default value of **Partition** + is automatically generated from this distinguished name. +- If running cmdlets from an Active Directory provider drive, the default value of **Partition** is + automatically generated from the current path in the drive. +- If none of the previous cases apply, the default value of **Partition** is set to the default + partition or naming context of the target domain. + +In Active Directory Lightweight Directory Services (AD LDS) environments, a default value for +**Partition** is set in the following cases: + +- If the **Identity** parameter is set to a distinguished name, the default value of **Partition** + is automatically generated from this distinguished name. +- If running cmdlets from an Active Directory provider drive, the default value of **Partition** is + automatically generated from the current path in the drive. +- If the target AD LDS instance has a default naming context, the default value of **Partition** is + set to the default naming context. To specify a default naming context for an AD LDS environment, + set the `msDS-defaultNamingContext` property of the Active Directory directory service agent + (DSA) object (**nTDSDSA**) for the AD LDS instance. +- If none of the previous cases apply, the **Partition** parameter will not take any default value. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -207,12 +244,17 @@ Accept wildcard characters: False ``` ### -Server -Specifies the Active Directory Domain Services instance to connect to, by providing one of the following values for a corresponding domain name or directory server. -The service may be any of the following: Active Directory Lightweight Domain Services, Active Directory Domain Services or Active Directory snapshot instance. + +Specifies the Active Directory Domain Services instance to connect to, by providing one of the +following values for a corresponding domain name or directory server. The service may be any of the +following: Active Directory Lightweight Domain Services, Active Directory Domain Services or Active +Directory snapshot instance. + +Specify the Active Directory Domain Services instance in one of the following ways: Domain name values: -- Fully qualified domain name (FQDN) +- Fully qualified domain name - NetBIOS name Directory server values: @@ -221,14 +263,16 @@ Directory server values: - NetBIOS name - Fully qualified directory server name and port -The default value for the *Server* parameter is determined by one of the following methods in the order that they are listed: +The default value for this parameter is determined by one of the following methods in the order that +they are listed: -- By using Server value from objects passed through the pipeline. -- By using the server information associated with the Active Directory module for Windows PowerShell provider drive, when running under that drive. -- By using the domain of the computer running Windows PowerShell. +- By using the **Server** value from objects passed through the pipeline +- By using the server information associated with the Active Directory Domain Services Windows + PowerShell provider drive, when the cmdlet runs in that drive +- By using the domain of the computer running Windows PowerShell ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -245,7 +289,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS ### Microsoft.ActiveDirectory.Management.ADAccount -An account object is received by the *Identity* parameter. +An account object is received by the **Identity** parameter. Derived types, such as the following are also accepted: @@ -259,8 +303,8 @@ Derived types, such as the following are also accepted: This cmdlet returns an **ADResultantPasswordReplicationPolicy** enum value that represents the resultant password replication policy for an account on the specified domain controller. ## NOTES -* This cmdlet does not work with AD LDS. -* This cmdlet does not work with an Active Directory snapshot. +* This cmdlet doesn't work with AD LDS. +* This cmdlet doesn't work with an Active Directory snapshot. ## RELATED LINKS @@ -274,3 +318,4 @@ This cmdlet returns an **ADResultantPasswordReplicationPolicy** enum value that [AD DS Administration Cmdlets in Windows PowerShell](./activedirectory.md) + From 7c53fb6dd054805de427d2b4ecfd259f9126aa11 Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Sun, 4 Jun 2023 19:59:18 -0400 Subject: [PATCH 810/965] Fix formatting for Get-ADAccountResultantPasswordReplicationPolicy. --- ...ccountResultantPasswordReplicationPolicy.md | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/docset/winserver2022-ps/activedirectory/Get-ADAccountResultantPasswordReplicationPolicy.md b/docset/winserver2022-ps/activedirectory/Get-ADAccountResultantPasswordReplicationPolicy.md index 7411d9ecde..065de3c1e0 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADAccountResultantPasswordReplicationPolicy.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADAccountResultantPasswordReplicationPolicy.md @@ -284,11 +284,16 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### Microsoft.ActiveDirectory.Management.ADAccount + An account object is received by the **Identity** parameter. Derived types, such as the following are also accepted: @@ -300,11 +305,14 @@ Derived types, such as the following are also accepted: ## OUTPUTS ### Microsoft.ActiveDirectory.Management.ADResultantPasswordReplicationPolicy -This cmdlet returns an **ADResultantPasswordReplicationPolicy** enum value that represents the resultant password replication policy for an account on the specified domain controller. + +This cmdlet returns an **ADResultantPasswordReplicationPolicy** enum value that represents the +resultant password replication policy for an account on the specified domain controller. ## NOTES -* This cmdlet doesn't work with AD LDS. -* This cmdlet doesn't work with an Active Directory snapshot. + +- This cmdlet doesn't work with AD LDS. +- This cmdlet doesn't work with an Active Directory snapshot. ## RELATED LINKS @@ -317,5 +325,3 @@ This cmdlet returns an **ADResultantPasswordReplicationPolicy** enum value that [Search-ADAccount](./Search-ADAccount.md) [AD DS Administration Cmdlets in Windows PowerShell](./activedirectory.md) - - From bea13002475fbfb942f00fd2ebce2e0e36d6b0b5 Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Sun, 4 Jun 2023 20:22:53 -0400 Subject: [PATCH 811/965] Fix formatting for Get-ADAuthenticationPolicy. --- .../Get-ADAuthenticationPolicy.md | 231 +++++++++++------- 1 file changed, 140 insertions(+), 91 deletions(-) diff --git a/docset/winserver2022-ps/activedirectory/Get-ADAuthenticationPolicy.md b/docset/winserver2022-ps/activedirectory/Get-ADAuthenticationPolicy.md index bdb5c663f6..26de53a52b 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADAuthenticationPolicy.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADAuthenticationPolicy.md @@ -16,94 +16,118 @@ Gets one or more Active Directory Domain Services authentication policies. ## SYNTAX ### Filter (Default) + ``` -Get-ADAuthenticationPolicy [-AuthType ] [-Credential ] -Filter - [-Properties ] [-ResultPageSize ] [-ResultSetSize ] [-Server ] - [] +Get-ADAuthenticationPolicy [-AuthType ] [-Credential ] + -Filter [-Properties ] [-ResultPageSize ] + [-ResultSetSize ] [-Server ] [] ``` ### Identity + ``` Get-ADAuthenticationPolicy [-AuthType ] [-Credential ] - [-Identity] [-Properties ] [-Server ] [] + [-Identity] [-Properties ] [-Server ] + [] ``` ### LdapFilter + ``` -Get-ADAuthenticationPolicy [-AuthType ] [-Credential ] -LDAPFilter - [-Properties ] [-ResultPageSize ] [-ResultSetSize ] [-Server ] - [] +Get-ADAuthenticationPolicy [-AuthType ] [-Credential ] + -LDAPFilter [-Properties ] [-ResultPageSize ] + [-ResultSetSize ] [-Server ] [] ``` ## DESCRIPTION -The **Get-ADAuthenticationPolicy** cmdlet gets an authentication policy or performs a search to get authentication policies. -The *Identity* parameter specifies the Active Directory Domain Services authentication policy to get. -You can identify an authentication policy by its distinguished name, GUID or name. -You can also use the *Identity* parameter to specify a variable that contains an authentication policy object, or you can use the pipeline operator to pass an authentication policy object to the *Identity* parameter. +The `Get-ADAuthenticationPolicy` cmdlet gets an authentication policy or performs a search to get +authentication policies. + +The **Identity** parameter specifies the Active Directory Domain Services authentication policy to +get. You can identify an authentication policy by its distinguished name, GUID or name. You can also +use the **Identity** parameter to specify a variable that contains an authentication policy object, +or you can use the pipeline operator to pass an authentication policy object to the **Identity** +parameter. -You can search for and use multiple authentication policies by specifying the *Filter* parameter or the *LDAPFilter* parameter. -The *Filter* parameter uses the Windows PowerShell® expression language to write query strings for Active Directory Domain Services. -Windows PowerShell expression language syntax provides rich type conversion support for value types received by the *Filter* parameter. -For more information about the *Filter* parameter syntax, type `Get-Help about_ActiveDirectory_Filter`. -If you have existing Lightweight Directory Access Protocol (LDAP) query strings, you can use the *LDAPFilter* parameter. +You can search for and use multiple authentication policies by specifying the **Filter** parameter +or the **LDAPFilter** parameter. The **Filter** parameter uses the Windows PowerShell expression +language to write query strings for Active Directory Domain Services. Windows PowerShell expression +language syntax provides rich type conversion support for value types received by the **Filter** +parameter. For more information about the **Filter** parameter syntax, type +`Get-Help about_ActiveDirectory_Filter`. If you have existing Lightweight Directory Access Protocol +(LDAP) query strings, you can use the **LDAPFilter** parameter. ## EXAMPLES ### Example 1: Get an authentication policy -``` -PS C:\> Get-ADAuthenticationPolicy -Identity AuthenticationPolicy01 + +```powershell +Get-ADAuthenticationPolicy -Identity AuthenticationPolicy01 ``` This command gets an authentication policy object by specifying the object name. ### Example 2: Get an authentication policy by using an LDAP filter -``` -PS C:\> Get-ADAuthenticationPolicy -LDAPFilter "(name=AuthenticationPolicy*)" -Server Server01.Contoso.com + +```powershell +Get-ADAuthenticationPolicy -LDAPFilter "(name=AuthenticationPolicy*)" -Server Server01 ``` -This command gets all authentication policies that match the LDAP filter specified by the *LDAPFilter* parameter. +This command gets all authentication policies that match the LDAP filter specified by the +**LDAPFilter** parameter. ### Example 3: Get an authentication policy by using a filter -``` -PS C:\> Get-ADAuthenticationPolicy -Filter "Name -like 'AuthenticationPolicy*'" -Server Server02.Contoso.com + +```powershell +Get-ADAuthenticationPolicy -Filter "Name -like 'AuthenticationPolicy*'" -Server Server02 ``` -This command gets all authentication policies that match the filter specified by the *Filter* parameter. +This command gets all authentication policies that match the filter specified by the **Filter** +parameter. ### Example 4: Get all authentication policy objects that match a filter + +```powershell +Get-ADAuthenticationPolicy -Filter * | Format-Table Name, Enforce -AutoSize ``` -PS C:\> Get-ADAuthenticationPolicy -Filter * | Format-Table Name, Enforce -AutoSize + +```output Name Enforce ---- ------- AuthenticationPolicy1 False AuthenticationPolicy2 False ``` -This command gets all the authentication policies available. -The output is then passed to the Format-Table cmdlet to display the name of the policy and the value for **Enforce** on each policy. +This command gets all the authentication policies available. The output is then passed to the +`Format-Table` cmdlet to display the name of the policy and the value for **Enforce** on each +policy. ### Example 5: Get all properties for an authentication policy -``` -PS C:\> Get-ADAuthenticationPolicy -Identity "AuthenticationPolicy01" -Properties "*" + +```powershell +Get-ADAuthenticationPolicy -Identity "AuthenticationPolicy01" -Properties "*" ``` -This command gets all properties of the authentication policy specified by the *Identity* parameter. +This command gets all properties of the authentication policy specified by the **Identity** +parameter. ## PARAMETERS ### -AuthType + Specifies the authentication method to use. The acceptable values for this parameter are: -- Negotiate or 0 -- Basic or 1 +- `Negotiate` or `0` +- `Basic` or `1` + +The default authentication method is `Negotiate`. -The default authentication method is Negotiate. -A Secure Sockets Layer (SSL) connection is required for the Basic authentication method. +A Secure Sockets Layer (SSL) connection is required for the `Basic` authentication method. ```yaml -Type: ADAuthType +Type: Microsoft.ActiveDirectory.Management.ADAuthType Parameter Sets: (All) Aliases: Accepted values: Negotiate, Basic @@ -116,17 +140,24 @@ Accept wildcard characters: False ``` ### -Credential -Specifies a user account that has permission to perform the task. -The default is the current user. -Type a user name, such as User01 or Domain01\User01, or enter a **PSCredential** object, such as one generated by the **Get-Credential** cmdlet. -By default, the cmdlet uses the credentials of the currently logged on user unless the cmdlet is run from an Active Directory Domain Services Windows PowerShell provider drive. -If you run the cmdlet in a provider drive, the account associated with the drive is the default. +Specifies the user account credentials to use to perform this task. The default credentials are the +credentials of the currently logged on user unless the cmdlet is run from an Active Directory module +for Windows PowerShell provider drive. If the cmdlet is run from such a provider drive, the account +associated with the drive is the default. -If you specify credentials that do not have permission to perform the task, the cmdlet returns an error. +To specify this parameter, you can type a user name, such as `User1` or `Domain01\User01` or you can +specify a **PSCredential** object. If you specify a user name for this parameter, the cmdlet prompts +for a password. + +You can also create a **PSCredential** object by using a script or by using the `Get-Credential` +cmdlet. You can then set the **Credential** parameter to the **PSCredential** object. + +If the acting credentials do not have directory-level permission to perform the task, Active +Directory module for Windows PowerShell returns a terminating error. ```yaml -Type: PSCredential +Type: System.Management.Automation.PSCredential Parameter Sets: (All) Aliases: @@ -138,32 +169,36 @@ Accept wildcard characters: False ``` ### -Filter -Specifies a query string that retrieves Active Directory Domain Services objects. -This string uses the Windows PowerShell expression language syntax. -The Windows PowerShell expression language syntax provides rich type-conversion support for value types received by the *Filter* parameter. -Specify the Filter parameter in one of the following formats: +Specifies a query string that retrieves Active Directory Domain Services objects. This string uses +the Windows PowerShell expression language syntax. The Windows PowerShell expression language syntax +provides rich type-conversion support for value types received by the **Filter** parameter. -- To match a single filter element: {Attributeoperator "value"} -- To match multiple filter elements: {(Attribute1operator1 "value1") joinOperator (Attribute2operator2 "value2")} +Specify the **Filter** parameter in one of the following formats: -Windows PowerShell wildcards other than "*", such as "?" are not supported by the Filter syntax. +- To match a single filter element: `{Attribute operator "value"}` +- To match multiple filter elements: + `{(Attribute1 operator1 "value1") joinOperator (Attribute2 operator2 "value2")}` -Valid filter operators are: +Windows PowerShell wildcards other than `*`, such as `?`, are not supported by the **Filter** +syntax. - -eq, -le, -ge, -ne, -lt, -gt, -approx, -bor, -band, -recursivematch, -like, -notlike +Valid filter operators are: -Valid join operators are: + `-eq`, `-le`, `-ge`, `-ne`, `-lt`, `-gt`, `-approx`, `-bor`, `-band`, `-recursivematch`, `-like`, + `-notlike` --and, -or +Valid join operators are: -The not operator is -not +`-and`, `-or` -For a list of supported types for values, see about_ActiveDirectory_ObjectModel. -For more information about the Filter parameter, see about_ActiveDirectory_Filter. +The not operator is `-not`. + +For a list of supported types for values, see `about_ActiveDirectory_ObjectModel`. For more +information about the **Filter** parameter, see `about_ActiveDirectory_Filter`. ```yaml -Type: String +Type: System.String Parameter Sets: Filter Aliases: @@ -175,20 +210,22 @@ Accept wildcard characters: False ``` ### -Identity -Specifies an Active Directory Domain Services authentication policy object. -Specify the authentication policy object in one of the following formats: + +Specifies an Active Directory Domain Services authentication policy object. Specify the +authentication policy object in one of the following formats: - A distinguished name - GUID - Name -This parameter can also get this object through the pipeline or you can set this parameter to an object instance. +This parameter can also get this object through the pipeline or you can set this parameter to an +object instance. -The cmdlet searches the default naming context or partition to find the object. -If the cmdlet finds two or more objects, the cmdlet returns a non-terminating error. +The cmdlet searches the default naming context or partition to find the object. If the cmdlet finds +two or more objects, the cmdlet returns a non-terminating error. ```yaml -Type: ADAuthenticationPolicy +Type: Microsoft.ActiveDirectory.Management.ADAuthenticationPolicy Parameter Sets: Identity Aliases: @@ -200,11 +237,12 @@ Accept wildcard characters: False ``` ### -LDAPFilter -Specifies an LDAP query string used to filter Active Directory Domain Services objects. -Use this parameter to run your existing LDAP queries. + +Specifies a filter using the LDAP search filter syntax defined in RFC2254 to filter Active Directory +Domain Services objects. ```yaml -Type: String +Type: System.String Parameter Sets: LdapFilter Aliases: @@ -216,17 +254,16 @@ Accept wildcard characters: False ``` ### -Properties -Specifies the properties of the output object to get from the server. -Use this parameter to get properties that are not included in the default set. -Specify the properties to get as a comma separated list of names. -For properties that are not default or extended properties, you must specify the LDAP display name of the property. -To display all of the properties that are set on the object, specify an asterisk wildcard. +Specifies the properties of the output object to get from the server. Use this parameter to get +properties that are not included in the default set. -To get properties for an object and display them, you can use this cmdlet and pass the output to the [Get-Member](https://go.microsoft.com/fwlink/?LinkID=293971) cmdlet by using the pipeline operator. +Specify the properties to get as a comma separated list of names. For properties that are not +default or extended properties, you must specify the LDAP display name of the property. To display +all of the properties that are set on the object, specify an asterisk wildcard. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: (All) Aliases: Property @@ -238,8 +275,9 @@ Accept wildcard characters: False ``` ### -ResultPageSize -Specifies the number of objects to include in one page for an Active Directory Domain Services query. -The default value is 256 objects per page. + +Specifies the number of objects to include in one page for an Active Directory Domain Services +query. The default value is `256` objects per page. ```yaml Type: Int32 @@ -254,11 +292,12 @@ Accept wildcard characters: False ``` ### -ResultSetSize -Specifies the maximum number of objects to return for an Active Directory Domain Services query. -If you want to get all of the objects, set this parameter to $Null. -You can use Ctrl+C to stop the query and the return of objects. -The default value is $Null. +Specifies the maximum number of objects to return for an Active Directory Domain Services query. If +you want to get all of the objects, set this parameter to `$null`. You can use Ctrl+C to stop the +query and the return of objects. + +The default value is `$null`. ```yaml Type: Int32 @@ -273,30 +312,35 @@ Accept wildcard characters: False ``` ### -Server -Specifies the Active Directory Domain Services instance to which to connect, by providing one of the following values for a corresponding domain name or directory server. -The service may be any of the following: Active Directory Lightweight Domain Services, Active Directory Domain Services or Active Directory snapshot instance. -Specify the Active Directory Domain Services instance in one of the following ways: +Specifies the Active Directory Domain Services instance to connect to, by providing one of the +following values for a corresponding domain name or directory server. The service may be any of the +following: Active Directory Lightweight Domain Services, Active Directory Domain Services or Active +Directory snapshot instance. + +Specify the Active Directory Domain Services instance in one of the following ways: Domain name values: - Fully qualified domain name - NetBIOS name -Directory server values: +Directory server values: - Fully qualified directory server name - NetBIOS name - Fully qualified directory server name and port -The default value for this parameter is determined by one of the following methods in the order that they are listed: +The default value for this parameter is determined by one of the following methods in the order that +they are listed: - By using the **Server** value from objects passed through the pipeline -- By using the server information associated with the Active Directory Domain Services Windows PowerShell provider drive, when the cmdlet runs in that drive +- By using the server information associated with the Active Directory Domain Services Windows + PowerShell provider drive, when the cmdlet runs in that drive - By using the domain of the computer running Windows PowerShell ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -308,19 +352,25 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### None or Microsoft.ActiveDirectory.Management.ADAuthenticationPolicy + This cmdlet accepts an authentication policy object. ## OUTPUTS ### Microsoft.ActiveDirectory.Management.ADAuthenticationPolicy -This cmdlet returns one or more authentication policy objects. -This cmdlet returns a default set of **ADAuthenticationPolicy** property values. -To retrieve additional **ADAuthenticationPolicy** properties, use the *Properties* parameter. + +This cmdlet returns one or more authentication policy objects. This cmdlet returns a default set of +**ADAuthenticationPolicy** property values. To retrieve additional **ADAuthenticationPolicy** +properties, use the **Properties** parameter. ## NOTES @@ -333,4 +383,3 @@ To retrieve additional **ADAuthenticationPolicy** properties, use the *Propertie [Set-ADAuthenticationPolicy](./Set-ADAuthenticationPolicy.md) [AD DS Administration Cmdlets in Windows PowerShell](./activedirectory.md) - From 850e289e83a0feea36f0cd1dc5d2305fc2b6b339 Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Sun, 4 Jun 2023 20:28:57 -0400 Subject: [PATCH 812/965] Fix formatting for Get-ADAuthenticationPolicy. --- .../activedirectory/Get-ADAuthenticationPolicy.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/activedirectory/Get-ADAuthenticationPolicy.md b/docset/winserver2022-ps/activedirectory/Get-ADAuthenticationPolicy.md index 26de53a52b..53c51cae27 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADAuthenticationPolicy.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADAuthenticationPolicy.md @@ -280,7 +280,7 @@ Specifies the number of objects to include in one page for an Active Directory D query. The default value is `256` objects per page. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: Filter, LdapFilter Aliases: @@ -300,7 +300,7 @@ query and the return of objects. The default value is `$null`. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: Filter, LdapFilter Aliases: From 67d74b8c707abd0231a409c8d4a77e0d21a2232f Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Sun, 4 Jun 2023 20:34:12 -0400 Subject: [PATCH 813/965] Fix formatting for Get-ADAuthenticationPolicy. --- .../activedirectory/Get-ADAuthenticationPolicy.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/activedirectory/Get-ADAuthenticationPolicy.md b/docset/winserver2022-ps/activedirectory/Get-ADAuthenticationPolicy.md index 53c51cae27..7a583b418a 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADAuthenticationPolicy.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADAuthenticationPolicy.md @@ -260,7 +260,7 @@ properties that are not included in the default set. Specify the properties to get as a comma separated list of names. For properties that are not default or extended properties, you must specify the LDAP display name of the property. To display -all of the properties that are set on the object, specify an asterisk wildcard. +all of the properties that are set on the object, specify an asterisk (`*`) wildcard. ```yaml Type: System.String[] From 8300a8fa2e6f6f3e5a1e1df00c2a65127000e9f7 Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Sun, 4 Jun 2023 20:36:20 -0400 Subject: [PATCH 814/965] Fix formatting for Get-ADAuthenticationPolicySilo. --- .../Get-ADAuthenticationPolicySilo.md | 223 +++++++++++------- 1 file changed, 135 insertions(+), 88 deletions(-) diff --git a/docset/winserver2022-ps/activedirectory/Get-ADAuthenticationPolicySilo.md b/docset/winserver2022-ps/activedirectory/Get-ADAuthenticationPolicySilo.md index 664dcf861a..d91277588d 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADAuthenticationPolicySilo.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADAuthenticationPolicySilo.md @@ -16,80 +16,100 @@ Gets one or more Active Directory Domain Services authentication policy silos. ## SYNTAX ### Filter (Default) + ``` -Get-ADAuthenticationPolicySilo [-AuthType ] [-Credential ] -Filter - [-Properties ] [-ResultPageSize ] [-ResultSetSize ] [-Server ] - [] +Get-ADAuthenticationPolicySilo [-AuthType ] [-Credential ] + -Filter [-Properties ] [-ResultPageSize ] + [-ResultSetSize ] [-Server ] [] ``` ### Identity + ``` Get-ADAuthenticationPolicySilo [-AuthType ] [-Credential ] - [-Identity] [-Properties ] [-Server ] [] + [-Identity] [-Properties ] [-Server ] + [] ``` ### LdapFilter + ``` -Get-ADAuthenticationPolicySilo [-AuthType ] [-Credential ] -LDAPFilter - [-Properties ] [-ResultPageSize ] [-ResultSetSize ] [-Server ] - [] +Get-ADAuthenticationPolicySilo [-AuthType ] [-Credential ] + -LDAPFilter [-Properties ] [-ResultPageSize ] + [-ResultSetSize ] [-Server ] [] ``` ## DESCRIPTION -The **Get-ADAuthenticationPolicySilo** cmdlet gets an authentication policy silo or performs a search to get authentication policy silos. -The *Identity* parameter specifies the Active Directory Domain Services authentication policy silo to get. -You can identify an authentication policy silo by its distinguished name (DN), GUID or name. -You can also use the *Identity* parameter to specify a variable that contains an authentication policy silo object, or you can use the pipeline operator to pass an authentication policy silo object to the *Identity* parameter. +The `Get-ADAuthenticationPolicySilo` cmdlet gets an authentication policy silo or performs a search +to get authentication policy silos. + +The **Identity** parameter specifies the Active Directory Domain Services authentication policy silo +to get. You can identify an authentication policy silo by its distinguished name (DN), GUID or name. +You can also use the **Identity** parameter to specify a variable that contains an authentication +policy silo object, or you can use the pipeline operator to pass an authentication policy silo +object to the **Identity** parameter. -You can search for and use multiple authentication policies by specifying the *Filter* parameter or the *LDAPFilter* parameter. -The *Filter* parameter uses the Windows PowerShell® expression language to write query strings for Active Directory Domain Services. -Windows PowerShell expression language syntax provides rich type conversion support for value types received by the *Filter* parameter. -For more information about the *Filter* parameter syntax, type `Get-Help about_ActiveDirectory_Filter`. -If you have existing Lightweight Directory Access Protocol (LDAP) query strings, you can use the *LDAPFilter* parameter. +You can search for and use multiple authentication policies by specifying the **Filter** parameter +or the **LDAPFilter** parameter. The **Filter** parameter uses the Windows PowerShell expression +language to write query strings for Active Directory Domain Services. Windows PowerShell expression +language syntax provides rich type conversion support for value types received by the **Filter** +parameter. For more information about the **Filter** parameter syntax, type +`Get-Help about_ActiveDirectory_Filter`. If you have existing Lightweight Directory Access Protocol +(LDAP) query strings, you can use the **LDAPFilter** parameter. ## EXAMPLES ### Example 1: Get an authentication policy silo object -``` -PS C:\> Get-ADAuthenticationPolicySilo -Identity AuthenticationPolicySilo01 + +```powershell +Get-ADAuthenticationPolicySilo -Identity AuthenticationPolicySilo01 ``` This command gets an authentication policy silo object named AuthenticationPolicySilo01. ### Example 2: Get all authentication policy silo objects that match a filter -``` -PS C:\> Get-ADAuthenticationPolicySilo -Filter 'Name -like "*AuthenticationPolicySilo*"' | Format-Table Name, Enforce -AutoSize + +```powershell +Get-ADAuthenticationPolicySilo -Filter 'Name -like "*AuthenticationPolicySilo*"' | + Format-Table Name, Enforce -AutoSize + +```output Name Enforce ---- ------- silo True silos False ``` -This command gets all the authentication policy silos that match the filter specified by the Filter parameter. -The output is then passed to the Format-Table cmdlet to display the name of the policy and the value for Enforce on each policy. +This command gets all the authentication policy silos that match the filter specified by the +**Filter** parameter. The output is then passed to the `Format-Table` cmdlet to display the name of +the policy and the value for Enforce on each policy. ### Example 3: Get all properties of a specific authentication policy silo -``` -PS C:\> Get-ADAuthenticationPolicySilo -Identity AuthenticationPolicySilo02 -Properties * + +```powershell +Get-ADAuthenticationPolicySilo -Identity AuthenticationPolicySilo02 -Properties * ``` -This command gets all properties for the authentication policy silo named AuthenticationPolicySilo02. +This command gets all properties for the authentication policy silo named +`AuthenticationPolicySilo02`. ## PARAMETERS ### -AuthType + Specifies the authentication method to use. The acceptable values for this parameter are: -- Negotiate or 0 -- Basic or 1 +- `Negotiate` or `0` +- `Basic` or `1` -The default authentication method is Negotiate. -A Secure Sockets Layer (SSL) connection is required for the Basic authentication method. +The default authentication method is `Negotiate`. + +A Secure Sockets Layer (SSL) connection is required for the `Basic` authentication method. ```yaml -Type: ADAuthType +Type: Microsoft.ActiveDirectory.Management.ADAuthType Parameter Sets: (All) Aliases: Accepted values: Negotiate, Basic @@ -102,17 +122,24 @@ Accept wildcard characters: False ``` ### -Credential -Specifies a user account that has permission to perform the task. -The default is the current user. -Type a user name, such as User01 or Domain01\User01, or enter a **PSCredential** object, such as one generated by the **Get-Credential** cmdlet. -By default, the cmdlet uses the credentials of the currently logged on user unless the cmdlet is run from an Active Directory Domain Services Windows PowerShell provider drive. -If you run the cmdlet in a provider drive, the account associated with the drive is the default. +Specifies the user account credentials to use to perform this task. The default credentials are the +credentials of the currently logged on user unless the cmdlet is run from an Active Directory module +for Windows PowerShell provider drive. If the cmdlet is run from such a provider drive, the account +associated with the drive is the default. + +To specify this parameter, you can type a user name, such as `User1` or `Domain01\User01` or you can +specify a **PSCredential** object. If you specify a user name for this parameter, the cmdlet prompts +for a password. -If you specify credentials that do not have permission to perform the task, the cmdlet returns an error. +You can also create a **PSCredential** object by using a script or by using the `Get-Credential` +cmdlet. You can then set the **Credential** parameter to the **PSCredential** object. + +If the acting credentials do not have directory-level permission to perform the task, Active +Directory module for Windows PowerShell returns a terminating error. ```yaml -Type: PSCredential +Type: System.Management.Automation.PSCredential Parameter Sets: (All) Aliases: @@ -124,32 +151,36 @@ Accept wildcard characters: False ``` ### -Filter -Specifies a query string that retrieves Active Directory Domain Services objects. -This string uses the Windows PowerShell expression language syntax. -The Windows PowerShell expression language syntax provides rich type-conversion support for value types received by the *Filter* parameter. -Specify the *Filter* parameter in one of the following formats: +Specifies a query string that retrieves Active Directory Domain Services objects. This string uses +the Windows PowerShell expression language syntax. The Windows PowerShell expression language syntax +provides rich type-conversion support for value types received by the **Filter** parameter. + +Specify the **Filter** parameter in one of the following formats: -- To match a single filter element: {Attributeoperator "value"} -- To match multiple filter elements: {(Attribute1operator1 "value1") joinOperator (Attribute2operator2 "value2")} +- To match a single filter element: `{Attribute operator "value"}` +- To match multiple filter elements: + `{(Attribute1 operator1 "value1") joinOperator (Attribute2 operator2 "value2")}` -Windows PowerShell wildcards other than "*", such as "?" are not supported by the *Filter* syntax. +Windows PowerShell wildcards other than `*`, such as `?`, are not supported by the **Filter** +syntax. -Valid filter operators are: +Valid filter operators are: - -eq, -le, -ge, -ne, -lt, -gt, -approx, -bor, -band, -recursivematch, -like, -notlike + `-eq`, `-le`, `-ge`, `-ne`, `-lt`, `-gt`, `-approx`, `-bor`, `-band`, `-recursivematch`, `-like`, + `-notlike` -Valid join operators are: +Valid join operators are: --and, -or +`-and`, `-or` -The not operator is -not +The not operator is `-not`. -For a list of supported types for values, type `Get-Help about_ActiveDirectory_ObjectModel`. -For more information about the *Filter* parameter, type `Get-Help about_ActiveDirectory_Filter`. +For a list of supported types for values, see `about_ActiveDirectory_ObjectModel`. For more +information about the **Filter** parameter, see `about_ActiveDirectory_Filter`. ```yaml -Type: String +Type: System.String Parameter Sets: Filter Aliases: @@ -161,20 +192,22 @@ Accept wildcard characters: False ``` ### -Identity -Specifies an Active Directory Domain Services authentication policy silo object. -Specify the authentication policy silo object in one of the following formats: + +Specifies an Active Directory Domain Services authentication policy silo object. Specify the +authentication policy silo object in one of the following formats: - A distinguished name - A GUID - A Name -This parameter can also get this object through the pipeline or you can set this parameter to an object instance. +This parameter can also get this object through the pipeline or you can set this parameter to an +object instance. -The cmdlet searches the default naming context or partition to find the object. -If the cmdlet finds two or more objects, the cmdlet returns a non-terminating error. +The cmdlet searches the default naming context or partition to find the object. If the cmdlet finds +two or more objects, the cmdlet returns a non-terminating error. ```yaml -Type: ADAuthenticationPolicySilo +Type: Microsoft.ActiveDirectory.Management.ADAuthenticationPolicySilo Parameter Sets: Identity Aliases: @@ -186,11 +219,12 @@ Accept wildcard characters: False ``` ### -LDAPFilter -Specifies an LDAP query string used to filter Active Directory Domain Services objects. -Use this parameter to run your existing LDAP queries. + +Specifies a filter using the LDAP search filter syntax defined in RFC2254 to filter Active Directory +Domain Services objects. ```yaml -Type: String +Type: System.String Parameter Sets: LdapFilter Aliases: @@ -202,17 +236,16 @@ Accept wildcard characters: False ``` ### -Properties -Specifies the properties of the output object to get from the server. -Use this parameter to get properties that are not included in the default set. -Specify the properties to get as a comma separated list of names. -For properties that are not default or extended properties, you must specify the LDAP display name of the property. -To display all of the properties that are set on the object, specify an asterisk wildcard. +Specifies the properties of the output object to get from the server. Use this parameter to get +properties that are not included in the default set. -To get properties for an object and display them, you can use this cmdlet and pass the output to the **Get-Member** cmdlet by using the pipeline operator. +Specify the properties to get as a comma separated list of names. For properties that are not +default or extended properties, you must specify the LDAP display name of the property. To display +all of the properties that are set on the object, specify an asterisk (`*`) wildcard. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: (All) Aliases: Property @@ -224,8 +257,9 @@ Accept wildcard characters: False ``` ### -ResultPageSize -Specifies the number of objects to include in one page for an Active Directory Domain Services query. -The default value is 256 objects per page. + +Specifies the number of objects to include in one page for an Active Directory Domain Services +query. The default value is `256` objects per page. ```yaml Type: Int32 @@ -240,11 +274,12 @@ Accept wildcard characters: False ``` ### -ResultSetSize -Specifies the maximum number of objects to return for an Active Directory Domain Services query. -If you want to get all of the objects, set this parameter to $Null. -You can use Ctrl+C to stop the query and the return of objects. -The default value is $Null. +Specifies the maximum number of objects to return for an Active Directory Domain Services query. If +you want to get all of the objects, set this parameter to `$null`. You can use Ctrl+C to stop the +query and the return of objects. + +The default value is `$null`. ```yaml Type: Int32 @@ -259,28 +294,35 @@ Accept wildcard characters: False ``` ### -Server -Specifies the Active Directory Domain Services instance to which to connect, by providing one of the following values for a corresponding domain name or directory server. -The service may be any of the following: Active Directory Lightweight Domain Services, Active Directory Domain Services, or Active Directory snapshot instance. -Specify the Active Directory Domain Services instance in one of the following ways: +Specifies the Active Directory Domain Services instance to connect to, by providing one of the +following values for a corresponding domain name or directory server. The service may be any of the +following: Active Directory Lightweight Domain Services, Active Directory Domain Services or Active +Directory snapshot instance. + +Specify the Active Directory Domain Services instance in one of the following ways: + +Domain name values: -Domain name values: - Fully qualified domain name - NetBIOS name -Directory server values: +Directory server values: + - Fully qualified directory server name - NetBIOS name - Fully qualified directory server name and port -The default value for this parameter is determined by one of the following methods in the order that they are listed: +The default value for this parameter is determined by one of the following methods in the order that +they are listed: -- By using the *Server* value from objects passed through the pipeline -- By using the server information associated with the Active Directory Domain Services Windows PowerShell provider drive, when the cmdlet runs in that drive +- By using the **Server** value from objects passed through the pipeline +- By using the server information associated with the Active Directory Domain Services Windows + PowerShell provider drive, when the cmdlet runs in that drive - By using the domain of the computer running Windows PowerShell ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -292,19 +334,25 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### None or Microsoft.ActiveDirectory.Management.ADAuthenticationPolicySilo + This cmdlet accepts an authentication policy silo object. ## OUTPUTS ### Microsoft.ActiveDirectory.Management.ADAuthenticationPolicySilo -Returns one or more authentication policy silo objects. -This cmdlet returns a default set of **ADAuthenticationPolicySilo** property values. -To retrieve additional **ADAuthenticationPolicySilo** properties, use the *Properties* parameter. + +Returns one or more authentication policy silo objects. This cmdlet returns a default set of +**ADAuthenticationPolicySilo** property values. To retrieve additional +**ADAuthenticationPolicySilo** properties, use the **Properties** parameter. ## NOTES @@ -317,4 +365,3 @@ To retrieve additional **ADAuthenticationPolicySilo** properties, use the *Prope [Set-ADAuthenticationPolicySilo](./Set-ADAuthenticationPolicySilo.md) [AD DS Administration Cmdlets in Windows PowerShell](./activedirectory.md) - From 1e631f3514fc0e54bcb277cd2ecd5a61c3e775c5 Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Sun, 4 Jun 2023 21:20:42 -0400 Subject: [PATCH 815/965] Fix formatting for Get-ADCentralAccessPolicy. --- .../Get-ADCentralAccessPolicy.md | 217 +++++++++--------- 1 file changed, 114 insertions(+), 103 deletions(-) diff --git a/docset/winserver2022-ps/activedirectory/Get-ADCentralAccessPolicy.md b/docset/winserver2022-ps/activedirectory/Get-ADCentralAccessPolicy.md index 84f93ecb53..1190a6af4b 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADCentralAccessPolicy.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADCentralAccessPolicy.md @@ -16,66 +16,76 @@ Retrieves central access policies from Active Directory. ## SYNTAX ### Filter (Default) + ``` -Get-ADCentralAccessPolicy [-AuthType ] [-Credential ] -Filter - [-Properties ] [-ResultPageSize ] [-ResultSetSize ] [-Server ] - [] +Get-ADCentralAccessPolicy [-AuthType ] [-Credential ] + -Filter [-Properties ] [-ResultPageSize ] + [-ResultSetSize ] [-Server ] [] ``` ### Identity + ``` Get-ADCentralAccessPolicy [-AuthType ] [-Credential ] - [-Identity] [-Properties ] [-Server ] [] + [-Identity] [-Properties ] [-Server ] + [] ``` ### LdapFilter + ``` -Get-ADCentralAccessPolicy [-AuthType ] [-Credential ] -LDAPFilter - [-Properties ] [-ResultPageSize ] [-ResultSetSize ] [-Server ] - [] +Get-ADCentralAccessPolicy [-AuthType ] [-Credential ] + -LDAPFilter [-Properties ] [-ResultPageSize ] + [-ResultSetSize ] [-Server ] [] ``` ## DESCRIPTION -The **Get-ADCentralAccessPolicy** cmdlet retrieves central access policies from Active Directory. + +The `Get-ADCentralAccessPolicy` cmdlet retrieves central access policies from Active Directory. ## EXAMPLES ### Example 1: Get a list off all central access policies -``` -PS C:\> Get-ADCentralAccessPolicy -Filter * + +```powershell +Get-ADCentralAccessPolicy -Filter * ``` This command retrieves a list of all central access policies. ### Example 2: Get a list of specific central access policies using a filter -``` -PS C:\> Get-ADCentralAccessPolicy -Filter "Members -eq 'Finance Documents Rule'" + +```powershell +Get-ADCentralAccessPolicy -Filter "Members -eq 'Finance Documents Rule'" ``` -This command gets the central access policies that have the central access rule Finance Documents Rule as its members. +This command gets the central access policies that have the central access rule +`Finance Documents Rule` as its members. ### Example 3: Get information for a central access policy for a specific Active Directory object -``` -PS C:\> Get-ADCentralAccessPolicy -Identity "Finance Policy" + +```powershell +Get-ADCentralAccessPolicy -Identity "Finance Policy" ``` -This command gets information for a central access policy named Finance Policy. +This command gets information for a central access policy named `Finance Policy`. ## PARAMETERS ### -AuthType + Specifies the authentication method to use. The acceptable values for this parameter are: -- Negotiate or 0 -- Basic or 1 +- `Negotiate` or `0` +- `Basic` or `1` -The default authentication method is Negotiate. +The default authentication method is `Negotiate`. -A Secure Sockets Layer (SSL) connection is required for the Basic authentication method. +A Secure Sockets Layer (SSL) connection is required for the `Basic` authentication method. ```yaml -Type: ADAuthType +Type: Microsoft.ActiveDirectory.Management.ADAuthType Parameter Sets: (All) Aliases: Accepted values: Negotiate, Basic @@ -88,20 +98,24 @@ Accept wildcard characters: False ``` ### -Credential -Specifies the user account credentials to use to perform this task. -The default credentials are the credentials of the currently logged on user unless the cmdlet is run from an Active Directory module for Windows PowerShell provider drive. -If the cmdlet is run from such a provider drive, the account associated with the drive is the default. -To specify this parameter, you can type a user name, such as User1 or Domain01\User01 or you can specify a **PSCredential** object. -If you specify a user name for this parameter, the cmdlet prompts for a password. +Specifies the user account credentials to use to perform this task. The default credentials are the +credentials of the currently logged on user unless the cmdlet is run from an Active Directory module +for Windows PowerShell provider drive. If the cmdlet is run from such a provider drive, the account +associated with the drive is the default. + +To specify this parameter, you can type a user name, such as `User1` or `Domain01\User01` or you can +specify a **PSCredential** object. If you specify a user name for this parameter, the cmdlet prompts +for a password. -You can also create a **PSCredential** object by using a script or by using the **Get-Credential** cmdlet. -You can then set the *Credential* parameter to the **PSCredential** object. +You can also create a **PSCredential** object by using a script or by using the `Get-Credential` +cmdlet. You can then set the **Credential** parameter to the **PSCredential** object. -If the acting credentials do not have directory-level permission to perform the task, Active Directory module for Windows PowerShell returns a terminating error. +If the acting credentials do not have directory-level permission to perform the task, Active +Directory module for Windows PowerShell returns a terminating error. ```yaml -Type: PSCredential +Type: System.Management.Automation.PSCredential Parameter Sets: (All) Aliases: @@ -113,40 +127,36 @@ Accept wildcard characters: False ``` ### -Filter -Specifies a query string that retrieves Active Directory objects. -This string uses the PowerShell Expression Language syntax. -The PowerShell Expression Language syntax provides rich type-conversion support for value types received by the *Filter* parameter. -The syntax uses an in-order representation, which means that the operator is placed between the operand and the value. -For more information about the *Filter* parameter, type `Get-Help about_ActiveDirectory_Filter`. -Syntax: +Specifies a query string that retrieves Active Directory Domain Services objects. This string uses +the Windows PowerShell expression language syntax. The Windows PowerShell expression language syntax +provides rich type-conversion support for value types received by the **Filter** parameter. -The following syntax uses Backus-Naur form to show how to use the PowerShell Expression Language for this parameter. +Specify the **Filter** parameter in one of the following formats: -\ ::= "{" \ "}" +- To match a single filter element: `{Attribute operator "value"}` +- To match multiple filter elements: + `{(Attribute1 operator1 "value1") joinOperator (Attribute2 operator2 "value2")}` -\ ::= \ | \ \ \ | \ \ +Windows PowerShell wildcards other than `*`, such as `?`, are not supported by the **Filter** +syntax. -\ ::= \ \ \ | "(" \ ")" +Valid filter operators are: -\ ::= "-eq" | "-le" | "-ge" | "-ne" | "-lt" | "-gt"| "-approx" | "-bor" | "-band" | "-recursivematch" | "-like" | "-notlike" + `-eq`, `-le`, `-ge`, `-ne`, `-lt`, `-gt`, `-approx`, `-bor`, `-band`, `-recursivematch`, `-like`, + `-notlike` -\ ::= "-and" | "-or" +Valid join operators are: -\ ::= "-not" +`-and`, `-or` -\ ::= \ | \ +The not operator is `-not`. -\::= \ by using the specified \\> - -For a list of supported types for \, type `Get-Help about_ActiveDirectory_ObjectModel`. - -Note: PowerShell wildcards other than *, such as ?, are not supported by the *Filter* syntax. - -Note: To query using Lightweight Directory Access Protocol (LDAP) query strings, use the *LDAPFilter* parameter. +For a list of supported types for values, see `about_ActiveDirectory_ObjectModel`. For more +information about the **Filter** parameter, see `about_ActiveDirectory_Filter`. ```yaml -Type: String +Type: System.String Parameter Sets: Filter Aliases: @@ -158,16 +168,18 @@ Accept wildcard characters: False ``` ### -Identity -Specifies an Active Directory object by providing one of the following property values. -The identifier in parentheses is the LDAP display name for the attribute.The acceptable values for this parameter are: + +Specifies an Active Directory object by providing one of the following property values. The +identifier in parentheses is the LDAP display name for the attribute.The acceptable values for this +parameter are: - A distinguished name -- A GUID (objectGUID) -- A Security Identifier (objectSid) -- A SAM account name (sAMAccountName) +- A GUID (**objectGUID**) +- A Security Identifier (**objectSid**) +- A SAM account name (**sAMAccountName**) ```yaml -Type: ADCentralAccessPolicy +Type: Microsoft.ActiveDirectory.Management.ADCentralAccessPolicy Parameter Sets: Identity Aliases: @@ -179,13 +191,12 @@ Accept wildcard characters: False ``` ### -LDAPFilter -Specifies an LDAP query string that is used to filter Active Directory objects. -You can use this parameter to run your existing LDAP queries. -The Filter parameter syntax supports the same functionality as the LDAP syntax. -For more information, see the *Filter* parameter description or type `Get-Help about_ActiveDirectory_Filter`. + +Specifies a filter using the LDAP search filter syntax defined in RFC2254 to filter Active Directory +Domain Services objects. ```yaml -Type: String +Type: System.String Parameter Sets: LdapFilter Aliases: @@ -197,19 +208,18 @@ Accept wildcard characters: False ``` ### -Properties -Specifies the properties of the output object to retrieve from the server. -Use this parameter to retrieve properties that are not included in the default set. -Specify properties for this parameter as a comma-separated list of names. -To display all of the attributes that are set on the object, specify * (asterisk). +Specifies the properties of the output object to get from the server. Use this parameter to get +properties that are not included in the default set. -To specify an individual extended property, use the name of the property. -For properties that are not default or extended properties, you must specify the LDAP display name of the attribute. +Specify the properties to get as a comma separated list of names. To display +all of the properties that are set on the object, specify an asterisk (`*`) wildcard. -To retrieve properties and display them for an object, you can use the Get-* cmdlet associated with the object and pass the output to the **Get-Member** cmdlet. +To specify an individual extended property, use the name of the property. For properties that are +not default or extended properties, you must specify the LDAP display name of the attribute. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: (All) Aliases: Property @@ -221,12 +231,12 @@ Accept wildcard characters: False ``` ### -ResultPageSize -Specifies the number of objects to include in one page for an Active Directory Domain Services query. -The default is 256 objects per page. +Specifies the number of objects to include in one page for an Active Directory Domain Services +query. The default value is `256` objects per page. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: Filter, LdapFilter Aliases: @@ -238,14 +248,15 @@ Accept wildcard characters: False ``` ### -ResultSetSize -Specifies the maximum number of objects to return for an Active Directory Domain Services query. -If you want to receive all of the objects, set this parameter to $Null (null value). -You can use Ctrl+C to stop the query and return of objects. -The default is $Null. +Specifies the maximum number of objects to return for an Active Directory Domain Services query. If +you want to get all of the objects, set this parameter to `$null`. You can use Ctrl+C to stop the +query and the return of objects. + +The default value is `$null`. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: Filter, LdapFilter Aliases: @@ -257,30 +268,35 @@ Accept wildcard characters: False ``` ### -Server -Specifies the Active Directory Domain Services instance to connect to, by providing one of the following values for a corresponding domain name or directory server. -The service may be any of the following: Active Directory Lightweight Domain Services, Active Directory Domain Services or Active Directory snapshot instance. -Specify the Active Directory Domain Services instance in one of the following ways: +Specifies the Active Directory Domain Services instance to connect to, by providing one of the +following values for a corresponding domain name or directory server. The service may be any of the +following: Active Directory Lightweight Domain Services, Active Directory Domain Services or Active +Directory snapshot instance. + +Specify the Active Directory Domain Services instance in one of the following ways: Domain name values: - Fully qualified domain name - NetBIOS name -Directory server values: +Directory server values: - Fully qualified directory server name - NetBIOS name - Fully qualified directory server name and port -The default value for this parameter is determined by one of the following methods in the order that they are listed: +The default value for this parameter is determined by one of the following methods in the order that +they are listed: -- By using the *Server* value from objects passed through the pipeline -- By using the server information associated with the Active Directory Domain Services Windows PowerShell provider drive, when the cmdlet runs in that drive +- By using the **Server** value from objects passed through the pipeline +- By using the server information associated with the Active Directory Domain Services Windows + PowerShell provider drive, when the cmdlet runs in that drive - By using the domain of the computer running Windows PowerShell ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -292,31 +308,27 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### None or Microsoft.ActiveDirectory.Management.ADCentralAccessPolicy -An **ADCentralAccessPolicy** object is received by the *Identity* parameter. + +An **ADCentralAccessPolicy** object is received by the **Identity** parameter. ## OUTPUTS ### Microsoft.ActiveDirectory.Management.ADCentralAccessPolicy -This cmdlet returns one or more **ADCentralAccessPolicy** objects. - -The **Get-ADCentralAccessPolicy** cmdlet returns a default set of **ADCentralAccessPolicy** property values. -To retrieve additional **ADCentralAccessPolicy** properties, use the *Properties* parameter of the cmdlet. - -To view the properties for an **ADCentralAccessPolicy** object, see the following examples. -To run these examples, replace \ with an Active Directory object identifier. -To get a list of the default set of properties of an **ADCentralAccessPolicy** object, use the following command: - -`Get-ADCentralAccessPolicy`\ - -To get a list of all the properties of an **ADCentralAccessPolicy** object, use the following command: +This cmdlet returns one or more **ADCentralAccessPolicy** objects. -`Get-ADCentralAccessPolicy`\`-Properties *` +The cmdlet returns a default set of **ADCentralAccessPolicy** property +values. To retrieve additional **ADCentralAccessPolicy** properties, use the **Properties** +parameter of the cmdlet. ## NOTES @@ -329,4 +341,3 @@ To get a list of all the properties of an **ADCentralAccessPolicy** object, use [Set-ADCentralAccessPolicy](./Set-ADCentralAccessPolicy.md) [AD DS Administration Cmdlets in Windows PowerShell](./activedirectory.md) - From bc5c759a7f16d200c9aa37192989e580ed5af85d Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Sun, 4 Jun 2023 21:27:33 -0400 Subject: [PATCH 816/965] Fix formatting for Get-ADCentralAccessRule. --- .../Get-ADCentralAccessRule.md | 222 +++++++++--------- 1 file changed, 116 insertions(+), 106 deletions(-) diff --git a/docset/winserver2022-ps/activedirectory/Get-ADCentralAccessRule.md b/docset/winserver2022-ps/activedirectory/Get-ADCentralAccessRule.md index 935c92524c..e76553f099 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADCentralAccessRule.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADCentralAccessRule.md @@ -16,66 +16,75 @@ Retrieves central access rules from Active Directory. ## SYNTAX ### Filter (Default) + ``` -Get-ADCentralAccessRule [-AuthType ] [-Credential ] -Filter - [-Properties ] [-ResultPageSize ] [-ResultSetSize ] [-Server ] - [] +Get-ADCentralAccessRule [-AuthType ] [-Credential ] + -Filter [-Properties ] [-ResultPageSize ] + [-ResultSetSize ] [-Server ] [] ``` ### Identity + ``` -Get-ADCentralAccessRule [-AuthType ] [-Credential ] [-Identity] - [-Properties ] [-Server ] [] +Get-ADCentralAccessRule [-AuthType ] [-Credential ] + [-Identity] [-Properties ] [-Server ] + [] ``` ### LdapFilter + ``` -Get-ADCentralAccessRule [-AuthType ] [-Credential ] -LDAPFilter - [-Properties ] [-ResultPageSize ] [-ResultSetSize ] [-Server ] - [] +Get-ADCentralAccessRule [-AuthType ] [-Credential ] + -LDAPFilter [-Properties ] [-ResultPageSize ] + [-ResultSetSize ] [-Server ] [] ``` ## DESCRIPTION -The **Get-ADCentralAccessRule** cmdlet retrieves central access rules from Active Directory. + +The `Get-ADCentralAccessRule` cmdlet retrieves central access rules from Active Directory. ## EXAMPLES ### Example 1: Get a list of all central access rules -``` -PS C:\> Get-ADCentralAccessRule -Filter * + +```powershell +Get-ADCentralAccessRule -Filter * ``` This command retrieves a list of all central access rules. ### Example 2: Get central access rules that have a specific resource condition -``` -PS C:\> Get-ADCentralAccessRule -Filter "ResourceCondition -like '*Department*'" + +```powershell +Get-ADCentralAccessRule -Filter "ResourceCondition -like '*Department*'" ``` -This command retrieves the central access rules that have Department in its resource condition. +This command retrieves the central access rules that have `Department` in its resource condition. ### Example 3: Get a specific central access rule by name -``` -PS C:\> Get-ADCentralAccessRule -Identity "Financial Documents Rule" + +```powershell +Get-ADCentralAccessRule -Identity "Financial Documents Rule" ``` -This command retrieves a central access rule named Finance Documents Rule. +This command retrieves a central access rule named `Finance Documents Rule`. ## PARAMETERS ### -AuthType + Specifies the authentication method to use. The acceptable values for this parameter are: -- Negotiate or 0 -- Basic or 1 +- `Negotiate` or `0` +- `Basic` or `1` -The default authentication method is Negotiate. +The default authentication method is `Negotiate`. -A Secure Sockets Layer (SSL) connection is required for the Basic authentication method. +A Secure Sockets Layer (SSL) connection is required for the `Basic` authentication method. ```yaml -Type: ADAuthType +Type: Microsoft.ActiveDirectory.Management.ADAuthType Parameter Sets: (All) Aliases: Accepted values: Negotiate, Basic @@ -88,20 +97,24 @@ Accept wildcard characters: False ``` ### -Credential -Specifies the user account credentials to use to perform this task. -The default credentials are the credentials of the currently logged on user unless the cmdlet is run from an Active Directory module for Windows PowerShell provider drive. -If the cmdlet is run from such a provider drive, the account associated with the drive is the default. -To specify this parameter, you can type a user name, such as User1 or Domain01\User01 or you can specify a **PSCredential** object. -If you specify a user name for this parameter, the cmdlet prompts for a password. +Specifies the user account credentials to use to perform this task. The default credentials are the +credentials of the currently logged on user unless the cmdlet is run from an Active Directory module +for Windows PowerShell provider drive. If the cmdlet is run from such a provider drive, the account +associated with the drive is the default. -You can also create a **PSCredential** object by using a script or by using the **Get-Credential** cmdlet. -You can then set the *Credential* parameter to the **PSCredential** object. +To specify this parameter, you can type a user name, such as `User1` or `Domain01\User01` or you can +specify a **PSCredential** object. If you specify a user name for this parameter, the cmdlet prompts +for a password. -If the acting credentials do not have directory-level permission to perform the task, Active Directory module for Windows PowerShell returns a terminating error. +You can also create a **PSCredential** object by using a script or by using the `Get-Credential` +cmdlet. You can then set the **Credential** parameter to the **PSCredential** object. + +If the acting credentials do not have directory-level permission to perform the task, Active +Directory module for Windows PowerShell returns a terminating error. ```yaml -Type: PSCredential +Type: System.Management.Automation.PSCredential Parameter Sets: (All) Aliases: @@ -113,40 +126,36 @@ Accept wildcard characters: False ``` ### -Filter -Specifies a query string that retrieves Active Directory objects. -This string uses the PowerShell Expression Language syntax. -The PowerShell Expression Language syntax provides rich type-conversion support for value types received by the *Filter* parameter. -The syntax uses an in-order representation, which means that the operator is placed between the operand and the value. -For more information about the *Filter* parameter, type `Get-Help about_ActiveDirectory_Filter`. - -Syntax: -The following syntax uses Backus-Naur form to show how to use the PowerShell Expression Language for this parameter. +Specifies a query string that retrieves Active Directory Domain Services objects. This string uses +the Windows PowerShell expression language syntax. The Windows PowerShell expression language syntax +provides rich type-conversion support for value types received by the **Filter** parameter. -\ ::= "{" \ "}" +Specify the **Filter** parameter in one of the following formats: -\ ::= \ | \ \ \ | \ \ +- To match a single filter element: `{Attribute operator "value"}` +- To match multiple filter elements: + `{(Attribute1 operator1 "value1") joinOperator (Attribute2 operator2 "value2")}` -\ ::= \ \ \ | "(" \ ")" +Windows PowerShell wildcards other than `*`, such as `?`, are not supported by the **Filter** +syntax. -\ ::= "-eq" | "-le" | "-ge" | "-ne" | "-lt" | "-gt"| "-approx" | "-bor" | "-band" | "-recursivematch" | "-like" | "-notlike" +Valid filter operators are: -\ ::= "-and" | "-or" + `-eq`, `-le`, `-ge`, `-ne`, `-lt`, `-gt`, `-approx`, `-bor`, `-band`, `-recursivematch`, `-like`, + `-notlike` -\ ::= "-not" +Valid join operators are: -\ ::= \ | \ +`-and`, `-or` -\::= \ by using the specified \\> +The not operator is `-not`. -For a list of supported types for \, type `Get-Help about_ActiveDirectory_ObjectModel`. - -Note: PowerShell wildcards other than *, such as ?, are not supported by the *Filter* syntax. - -Note: To query using Lightweight Directory Access Protocol (LDAP) query strings, use the *LDAPFilter* parameter. +For a list of supported types for values, see `about_ActiveDirectory_ObjectModel`. For more +information about the **Filter** parameter, see `about_ActiveDirectory_Filter`. ```yaml -Type: String +Type: System.String Parameter Sets: Filter Aliases: @@ -158,19 +167,21 @@ Accept wildcard characters: False ``` ### -Identity -Specifies an Active Directory object by providing one of the following property values. -The identifier in parentheses is the LDAP display name for the attribute. -The acceptable values for this parameter are: + +Specifies an Active Directory object by providing one of the following property values. The +identifier in parentheses is the LDAP display name for the attribute. The acceptable values for this +parameter are: - A distinguished name -- A GUID (objectGUID) -- A security identifier (objectSid) -- A SAM account name (sAMAccountName) +- A GUID (**objectGUID**) +- A security identifier (**objectSid**) +- A SAM account name (**sAMAccountName**) -This parameter can also get this object through the pipeline or you can set this parameter to an object instance. +This parameter can also get this object through the pipeline or you can set this parameter to an +object instance. ```yaml -Type: ADCentralAccessRule +Type: Microsoft.ActiveDirectory.Management.ADCentralAccessRule Parameter Sets: Identity Aliases: @@ -182,13 +193,12 @@ Accept wildcard characters: False ``` ### -LDAPFilter -Specifies an LDAP query string that is used to filter Active Directory objects. -You can use this parameter to run your existing LDAP queries. -The *Filter* parameter syntax supports the same functionality as the LDAP syntax. -For more information, see the *Filter* parameter description or type `Get-Help about_ActiveDirectory_Filter`. + +Specifies a filter using the LDAP search filter syntax defined in RFC2254 to filter Active Directory +Domain Services objects. ```yaml -Type: String +Type: System.String Parameter Sets: LdapFilter Aliases: @@ -200,19 +210,18 @@ Accept wildcard characters: False ``` ### -Properties -Specifies the properties of the output object to retrieve from the server. -You can use this parameter to retrieve properties that are not included in the default set. -Specify properties for this parameter as a comma-separated list of names. -To display all of the attributes that are set on the object, specify * (asterisk). +Specifies the properties of the output object to get from the server. Use this parameter to get +properties that are not included in the default set. -To specify an individual extended property, use the name of the property. -For properties that are not default or extended properties, you must specify the LDAP display name of the attribute. +Specify the properties to get as a comma separated list of names. To display +all of the properties that are set on the object, specify an asterisk (`*`) wildcard. -To retrieve properties and display them for an object, you can use the Get-* cmdlet associated with the object and pass the output to the **Get-Member** cmdlet. +To specify an individual extended property, use the name of the property. For properties that are +not default or extended properties, you must specify the LDAP display name of the attribute. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: (All) Aliases: Property @@ -224,12 +233,12 @@ Accept wildcard characters: False ``` ### -ResultPageSize -Specifies the number of objects to include in one page for an Active Directory Domain Services query. -The default is 256 objects per page. +Specifies the number of objects to include in one page for an Active Directory Domain Services +query. The default value is `256` objects per page. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: Filter, LdapFilter Aliases: @@ -241,14 +250,15 @@ Accept wildcard characters: False ``` ### -ResultSetSize -Specifies the maximum number of objects to return for an Active Directory Domain Services query. -If you want to receive all of the objects, set this parameter to $Null (null value). -You can use Ctrl+C to stop the query and return of objects. -The default is $Null. +Specifies the maximum number of objects to return for an Active Directory Domain Services query. If +you want to get all of the objects, set this parameter to `$null`. You can use Ctrl+C to stop the +query and the return of objects. + +The default value is `$null`. ```yaml -Type: Int32 +Type: System.Int32 Parameter Sets: Filter, LdapFilter Aliases: @@ -260,30 +270,35 @@ Accept wildcard characters: False ``` ### -Server -Specifies the Active Directory Domain Services instance to connect to, by providing one of the following values for a corresponding domain name or directory server. -The service may be any of the following: Active Directory Lightweight Domain Services, Active Directory Domain Services or Active Directory snapshot instance. -Specify the Active Directory Domain Services instance in one of the following ways: +Specifies the Active Directory Domain Services instance to connect to, by providing one of the +following values for a corresponding domain name or directory server. The service may be any of the +following: Active Directory Lightweight Domain Services, Active Directory Domain Services or Active +Directory snapshot instance. + +Specify the Active Directory Domain Services instance in one of the following ways: Domain name values: - Fully qualified domain name - NetBIOS name -Directory server values: +Directory server values: - Fully qualified directory server name - NetBIOS name - Fully qualified directory server name and port -The default value for this parameter is determined by one of the following methods in the order that they are listed: +The default value for this parameter is determined by one of the following methods in the order that +they are listed: -- By using the *Server* value from objects passed through the pipeline -- By using the server information associated with the Active Directory Domain Services Windows PowerShell provider drive, when the cmdlet runs in that drive +- By using the **Server** value from objects passed through the pipeline +- By using the server information associated with the Active Directory Domain Services Windows + PowerShell provider drive, when the cmdlet runs in that drive - By using the domain of the computer running Windows PowerShell ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -295,31 +310,27 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### None or Microsoft.ActiveDirectory.Management.ADCentralAccessPolicyEntry -An **ADCentralAccessPolicyEntry** object is received by the *Identity* parameter. + +An **ADCentralAccessPolicyEntry** object is received by the **Identity** parameter. ## OUTPUTS ### Microsoft.ActiveDirectory.Management.ADCentralAccessRule -Returns one or more **ADCentralAccessRule** objects. - -The **Get-ADCentralAccessRule** cmdlet returns a default set of **ADCentralAccessRule** property values. -To retrieve additional **ADCentralAccessRule** properties, use the *Properties* parameter of the cmdlet. - -To view the properties for an **ADCentralAccessRule** object, see the following examples. -To run these examples, replace \ with an Active Directory object identifier. -To get a list of the default set of properties of an **ADCentralAccessRule** object, use the following command: - -`Get-ADCentralAccessRule`\ - -To get a list of all the properties of an **ADCentralAccessRule** object, use the following command: +Returns one or more **ADCentralAccessRule** objects. -`Get-ADCentralAccessRule`\`-Properties *` +The cmdlet returns a default set of **ADCentralAccessRule** property +values. To retrieve additional **ADCentralAccessRule** properties, use the **Properties** parameter +of the cmdlet. ## NOTES @@ -332,4 +343,3 @@ To get a list of all the properties of an **ADCentralAccessRule** object, use th [Set-ADCentralAccessRule](./Set-ADCentralAccessRule.md) [AD DS Administration Cmdlets in Windows PowerShell](./activedirectory.md) - From 3248e86f07a7591c5ebb2f854d0458f84cc1e760 Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Sun, 4 Jun 2023 21:36:10 -0400 Subject: [PATCH 817/965] Fix formatting for Get-ADClaimTransformPolicy. --- .../Get-ADClaimTransformPolicy.md | 191 ++++++++++-------- 1 file changed, 108 insertions(+), 83 deletions(-) diff --git a/docset/winserver2022-ps/activedirectory/Get-ADClaimTransformPolicy.md b/docset/winserver2022-ps/activedirectory/Get-ADClaimTransformPolicy.md index 8408ad6dde..c021847364 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADClaimTransformPolicy.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADClaimTransformPolicy.md @@ -16,72 +16,86 @@ Returns one or more Active Directory claim transform objects based on a specifie ## SYNTAX ### Filter (Default) + ``` -Get-ADClaimTransformPolicy [-AuthType ] [-Credential ] -Filter - [-Properties ] [-Server ] [] +Get-ADClaimTransformPolicy [-AuthType ] [-Credential ] + -Filter [-Properties ] [-Server ] [] ``` ### Identity + ``` Get-ADClaimTransformPolicy [-AuthType ] [-Credential ] - [[-Identity] ] [-Properties ] [-Server ] [] + [[-Identity] ] [-Properties ] [-Server ] + [] ``` ### LdapFilter + ``` -Get-ADClaimTransformPolicy [-AuthType ] [-Credential ] -LDAPFilter - [-Properties ] [-Server ] [] +Get-ADClaimTransformPolicy [-AuthType ] [-Credential ] + -LDAPFilter [-Properties ] [-Server ] [] ``` ## DESCRIPTION -The **Get-ADClaimTransformPolicy** cmdlet returns one or more Active Directory claim transform objects based on a specified filter. + +The `Get-ADClaimTransformPolicy` cmdlet returns one or more Active Directory claim transform objects +based on a specified filter. ## EXAMPLES ### Example 1: Get a list of all claims transformation policies -``` -PS C:\> Get-ADClaimTransformPolicy -Filter * + +```powershell +Get-ADClaimTransformPolicy -Filter * ``` This command retrieves a list of all claims transformation policies. ### Example 2: Get all the claims transformation policies that are applied to a specific trust -``` -PS C:\> $Contoso = Get-ADTrust -Identity "corp.contoso.com" -PS C:\> Get-ADClaimTransformPolicy -Filter "IncomingTrust -eq '$Contoso' -or OutgoingTrust -eq '$Contoso'" + +```powershell +$trust = Get-ADTrust -Identity "corp.contoso.com" +$filter = "IncomingTrust -eq '$trust' -or OutgoingTrust -eq '$trust'" +Get-ADClaimTransformPolicy -Filter $filter ``` -This example gets all the claims transformation policies that are applied to trusts made with corp.contoso.com. +This example gets all the claims transformation policies that are applied to trusts made with +`corp.contoso.com`. ### Example 3: Get the claims transformation policy with a specify policy name -``` -PS C:\> Get-ADClaimTransformPolicy -Identity DenyAllPolicy + +```powershell +Get-ADClaimTransformPolicy -Identity DenyAllPolicy ``` -This command gets the claims transformation policy with the name DenyAllPolicy. +This command gets the claims transformation policy with the name `DenyAllPolicy`. ### Example 4: Get information on claims using a LDAP based query filter -``` -PS C:\> Get-ADClaimTransformPolicy -LDAPFilter "(name=DenyAll*)" + +```powershell +Get-ADClaimTransformPolicy -LDAPFilter "(name=DenyAll*)" ``` -This command gets information on any claims transformation policies using an LDAP-based query filter that looks for matches where policies have a name that starts with the word DenyAll. +This command gets information on any claims transformation policies using an LDAP-based query filter +that looks for matches where policies have a name that starts with the word `DenyAll`. ## PARAMETERS ### -AuthType + Specifies the authentication method to use. The acceptable values for this parameter are: -- Negotiate or 0 -- Basic or 1 +- `Negotiate` or `0` +- `Basic` or `1` -The default authentication method is Negotiate. +The default authentication method is `Negotiate`. -A Secure Sockets Layer (SSL) connection is required for the Basic authentication method. +A Secure Sockets Layer (SSL) connection is required for the `Basic` authentication method. ```yaml -Type: ADAuthType +Type: Microsoft.ActiveDirectory.Management.ADAuthType Parameter Sets: (All) Aliases: Accepted values: Negotiate, Basic @@ -94,20 +108,24 @@ Accept wildcard characters: False ``` ### -Credential -Specifies the user account credentials to use to perform this task. -The default credentials are the credentials of the currently logged on user unless the cmdlet is run from an Active Directory module for Windows PowerShell provider drive. -If the cmdlet is run from such a provider drive, the account associated with the drive is the default. -To specify this parameter, you can type a user name, such as User1 or Domain01\User01 or you can specify a **PSCredential** object. -If you specify a user name for this parameter, the cmdlet prompts for a password. +Specifies the user account credentials to use to perform this task. The default credentials are the +credentials of the currently logged on user unless the cmdlet is run from an Active Directory module +for Windows PowerShell provider drive. If the cmdlet is run from such a provider drive, the account +associated with the drive is the default. + +To specify this parameter, you can type a user name, such as `User1` or `Domain01\User01` or you can +specify a **PSCredential** object. If you specify a user name for this parameter, the cmdlet prompts +for a password. -You can also create a **PSCredential** object by using a script or by using the **Get-Credential** cmdlet. -You can then set the *Credential* parameter to the **PSCredential** object. +You can also create a **PSCredential** object by using a script or by using the `Get-Credential` +cmdlet. You can then set the **Credential** parameter to the **PSCredential** object. -If the acting credentials do not have directory-level permission to perform the task, Active Directory module for Windows PowerShell returns a terminating error. +If the acting credentials do not have directory-level permission to perform the task, Active +Directory module for Windows PowerShell returns a terminating error. ```yaml -Type: PSCredential +Type: System.Management.Automation.PSCredential Parameter Sets: (All) Aliases: @@ -119,38 +137,36 @@ Accept wildcard characters: False ``` ### -Filter -Specifies a query string that retrieves Active Directory objects. -This string uses the Windows PowerShell Expression Language syntax. -The Windows PowerShell Expression Language syntax provides rich type-conversion support for value types received by the *Filter* parameter. -The syntax uses an in-order representation, which means that the operator is placed between the operand and the value. -For more information about the *Filter* parameter, type `Get-Help about_ActiveDirectory_Filter`. -Syntax: +Specifies a query string that retrieves Active Directory Domain Services objects. This string uses +the Windows PowerShell expression language syntax. The Windows PowerShell expression language syntax +provides rich type-conversion support for value types received by the **Filter** parameter. -The following syntax uses Backus-Naur form to show how to use the Windows PowerShell Expression Language for this parameter. +Specify the **Filter** parameter in one of the following formats: -\ ::= "{" \ "}" +- To match a single filter element: `{Attribute operator "value"}` +- To match multiple filter elements: + `{(Attribute1 operator1 "value1") joinOperator (Attribute2 operator2 "value2")}` -\ ::= \ | \ \ \ | \ \ +Windows PowerShell wildcards other than `*`, such as `?`, are not supported by the **Filter** +syntax. -\ ::= \ \ \ | "(" \ ")" +Valid filter operators are: -\ ::= "-eq" | "-le" | "-ge" | "-ne" | "-lt" | "-gt"| "-approx" | "-bor" | "-band" | "-recursivematch" | "-like" | "-notlike" + `-eq`, `-le`, `-ge`, `-ne`, `-lt`, `-gt`, `-approx`, `-bor`, `-band`, `-recursivematch`, `-like`, + `-notlike` -\ ::= "-and" | "-or" +Valid join operators are: -\ ::= "-not" +`-and`, `-or` -\ ::= \ | \ +The not operator is `-not`. -\::= \ by using the specified \\> - -For a list of supported types for \, see about_ActiveDirectory_ObjectModel. - -Note: To query using Lightweight Directory Access Protocol (LDAP) query strings, use the *LDAPFilter* parameter. +For a list of supported types for values, see `about_ActiveDirectory_ObjectModel`. For more +information about the **Filter** parameter, see `about_ActiveDirectory_Filter`. ```yaml -Type: String +Type: System.String Parameter Sets: Filter Aliases: @@ -162,19 +178,21 @@ Accept wildcard characters: False ``` ### -Identity -Specifies an Active Directory object by providing one of the following property values. -The identifier in parentheses is the LDAP display name for the attribute. -The acceptable values for this parameter are: + +Specifies an Active Directory object by providing one of the following property values. The +identifier in parentheses is the LDAP display name for the attribute. The acceptable values for this +parameter are: - A distinguished name -The cmdlet searches the default naming context or partition to find the object. -If two or more objects are found, the cmdlet returns a non-terminating error. +The cmdlet searches the default naming context or partition to find the object. If two or more +objects are found, the cmdlet returns a non-terminating error. -This parameter can also get this object through the pipeline or you can set this parameter to an object instance. +This parameter can also get this object through the pipeline or you can set this parameter to an +object instance. ```yaml -Type: ADClaimTransformPolicy +Type: Microsoft.ActiveDirectory.Management.ADClaimTransformPolicy Parameter Sets: Identity Aliases: @@ -186,13 +204,12 @@ Accept wildcard characters: False ``` ### -LDAPFilter -Specifies an LDAP query string that is used to filter Active Directory objects. -You can use this parameter to run your existing LDAP queries. -The *Filter* parameter syntax supports the same functionality as the LDAP syntax. -For more information, see the *Filter* parameter description or type `Get-Help about_ActiveDirectory_Filter`. + +Specifies a filter using the LDAP search filter syntax defined in RFC2254 to filter Active Directory +Domain Services objects. ```yaml -Type: String +Type: System.String Parameter Sets: LdapFilter Aliases: @@ -204,19 +221,18 @@ Accept wildcard characters: False ``` ### -Properties -Specifies the properties of the output object to retrieve from the server. -Use this parameter to retrieve properties that are not included in the default set. -Specify properties for this parameter as a comma-separated list of names. -To display all of the attributes that are set on the object, specify * (asterisk). +Specifies the properties of the output object to get from the server. Use this parameter to get +properties that are not included in the default set. -To specify an individual extended property, use the name of the property. -For properties that are not default or extended properties, you must specify the LDAP display name of the attribute. +Specify the properties to get as a comma separated list of names. To display +all of the properties that are set on the object, specify an asterisk (`*`) wildcard. -To retrieve properties and display them for an object, you can use the Get-* cmdlet associated with the object and pass the output to the **Get-Member** cmdlet. +To specify an individual extended property, use the name of the property. For properties that are +not default or extended properties, you must specify the LDAP display name of the attribute. ```yaml -Type: String[] +Type: System.String[] Parameter Sets: (All) Aliases: Property @@ -228,30 +244,35 @@ Accept wildcard characters: False ``` ### -Server -Specifies the Active Directory Domain Services instance to connect to, by providing one of the following values for a corresponding domain name or directory server. -The service may be any of the following: Active Directory Lightweight Domain Services, Active Directory Domain Services or Active Directory snapshot instance. -Specify the Active Directory Domain Services instance in one of the following ways: +Specifies the Active Directory Domain Services instance to connect to, by providing one of the +following values for a corresponding domain name or directory server. The service may be any of the +following: Active Directory Lightweight Domain Services, Active Directory Domain Services or Active +Directory snapshot instance. + +Specify the Active Directory Domain Services instance in one of the following ways: Domain name values: - Fully qualified domain name - NetBIOS name -Directory server values: +Directory server values: - Fully qualified directory server name - NetBIOS name - Fully qualified directory server name and port -The default value for this parameter is determined by one of the following methods in the order that they are listed: +The default value for this parameter is determined by one of the following methods in the order that +they are listed: -- By using the *Server* value from objects passed through the pipeline -- By using the server information associated with the Active Directory Domain Services Windows PowerShell provider drive, when the cmdlet runs in that drive +- By using the **Server** value from objects passed through the pipeline +- By using the server information associated with the Active Directory Domain Services Windows + PowerShell provider drive, when the cmdlet runs in that drive - By using the domain of the computer running Windows PowerShell ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -263,12 +284,17 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### None or Microsoft.ActiveDirectory.Management.ADClaimTransformPolicy -A claim transform policy object is received by the *Identity* parameter. + +A claim transform policy object is received by the **Identity** parameter. ## OUTPUTS @@ -285,4 +311,3 @@ A claim transform policy object is received by the *Identity* parameter. [Set-ADClaimTransformPolicy](./Set-ADClaimTransformPolicy.md) [AD DS Administration Cmdlets in Windows PowerShell](./activedirectory.md) - From 92b2453d69da56b0778d43c2b7d07065694c32bd Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Sun, 4 Jun 2023 23:48:45 -0400 Subject: [PATCH 818/965] Close code fence. --- .../activedirectory/Get-ADAuthenticationPolicySilo.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docset/winserver2022-ps/activedirectory/Get-ADAuthenticationPolicySilo.md b/docset/winserver2022-ps/activedirectory/Get-ADAuthenticationPolicySilo.md index d91277588d..213bc7ba4a 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADAuthenticationPolicySilo.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADAuthenticationPolicySilo.md @@ -73,6 +73,7 @@ This command gets an authentication policy silo object named AuthenticationPolic ```powershell Get-ADAuthenticationPolicySilo -Filter 'Name -like "*AuthenticationPolicySilo*"' | Format-Table Name, Enforce -AutoSize +``` ```output Name Enforce From dd5e3a7d076f756d656d78e539a80353733c8cd1 Mon Sep 17 00:00:00 2001 From: Sean Wheeler Date: Mon, 5 Jun 2023 08:29:45 -0500 Subject: [PATCH 819/965] Link to Windows Feedback Hub --- .../winserver2016-ps/module-compatibility.md | 32 +- .../winserver2019-ps/module-compatibility.md | 32 +- .../winserver2022-ps/module-compatibility.md | 278 +++++++++--------- 3 files changed, 183 insertions(+), 159 deletions(-) diff --git a/docset/docs-conceptual/winserver2016-ps/module-compatibility.md b/docset/docs-conceptual/winserver2016-ps/module-compatibility.md index e2f0c34765..29d3a1bc07 100644 --- a/docset/docs-conceptual/winserver2016-ps/module-compatibility.md +++ b/docset/docs-conceptual/winserver2016-ps/module-compatibility.md @@ -1,25 +1,25 @@ --- description: This article lists the status of PowerShell 7 with Powershell modules published for other Microsoft products. -ms.date: 10/04/2021 +ms.date: 06/05/2023 title: PowerShell 7 module compatibility --- # PowerShell 7 module compatibility This article contains a list of PowerShell modules published by Microsoft. These modules provide -management and support for various Microsoft products and services. They have been updated -to work natively with PowerShell 7, or tested for compatibility with PowerShell 7. This list will be -updated with new information as more modules are identified and tested. +management and support for various Microsoft products and services. They have been updated to work +natively with PowerShell 7, or tested for compatibility with PowerShell 7. This list will be updated +with new information as more modules are identified and tested. -If you have information to share or issues with specific modules, please file an issue in the -[WindowsCompatibility repo](https://github.com/PowerShell/WindowsCompatibility). +If you have information to share or issues with specific modules, please submit feedback in the +Windows Feedback Hub. For more information, see +[Send feedback to Microsoft with the Feedback Hub app][06]. ## Windows management modules The Windows management modules are installed in different ways, dependent on the Edition of Windows, and how the module was packaged for that Edition. -On Windows Server, use the feature name with the -[Install-WindowsFeature](/powershell/module/servermanager/install-windowsfeature) cmdlet as an +On Windows Server, use the feature name with the [Install-WindowsFeature][05] cmdlet as an Administrator. For example: ```powershell @@ -46,8 +46,8 @@ administrator**. For more information see: - - [Get-WindowsOptionalFeature](/powershell/module/dism/get-windowsoptionalfeature) - - [Enable-WindowsOptionalFeature](/powershell/module/dism/enable-windowsoptionalfeature) + - [Get-WindowsOptionalFeature][04] + - [Enable-WindowsOptionalFeature][02] - For Windows Capabilities @@ -66,8 +66,8 @@ administrator**. For more information see: - - [Get-WindowsCapability](/powershell/module/dism/get-windowscapability) - - [Add-WindowsCapability](/powershell/module/dism/add-windowscapability) + - [Get-WindowsCapability][03] + - [Add-WindowsCapability][01] ### Module list @@ -204,3 +204,11 @@ This module has some minor compatibility issues with formatted output in PowerSh the `Get-WindowsFeature` cmdlet returns the proper object with all properties, but the default display formatting makes some properties appear to be empty. The actual values are available in the object properties using `Select-Object` or by direct member access. + + +[01]: /powershell/module/dism/add-windowscapability +[02]: /powershell/module/dism/enable-windowsoptionalfeature +[03]: /powershell/module/dism/get-windowscapability +[04]: /powershell/module/dism/get-windowsoptionalfeature +[05]: /powershell/module/servermanager/install-windowsfeature +[06]: https://support.microsoft.com/windows/send-feedback-to-microsoft-with-the-feedback-hub-app-f59187f8-8739-22d6-ba93-f66612949332 diff --git a/docset/docs-conceptual/winserver2019-ps/module-compatibility.md b/docset/docs-conceptual/winserver2019-ps/module-compatibility.md index e2f0c34765..29d3a1bc07 100644 --- a/docset/docs-conceptual/winserver2019-ps/module-compatibility.md +++ b/docset/docs-conceptual/winserver2019-ps/module-compatibility.md @@ -1,25 +1,25 @@ --- description: This article lists the status of PowerShell 7 with Powershell modules published for other Microsoft products. -ms.date: 10/04/2021 +ms.date: 06/05/2023 title: PowerShell 7 module compatibility --- # PowerShell 7 module compatibility This article contains a list of PowerShell modules published by Microsoft. These modules provide -management and support for various Microsoft products and services. They have been updated -to work natively with PowerShell 7, or tested for compatibility with PowerShell 7. This list will be -updated with new information as more modules are identified and tested. +management and support for various Microsoft products and services. They have been updated to work +natively with PowerShell 7, or tested for compatibility with PowerShell 7. This list will be updated +with new information as more modules are identified and tested. -If you have information to share or issues with specific modules, please file an issue in the -[WindowsCompatibility repo](https://github.com/PowerShell/WindowsCompatibility). +If you have information to share or issues with specific modules, please submit feedback in the +Windows Feedback Hub. For more information, see +[Send feedback to Microsoft with the Feedback Hub app][06]. ## Windows management modules The Windows management modules are installed in different ways, dependent on the Edition of Windows, and how the module was packaged for that Edition. -On Windows Server, use the feature name with the -[Install-WindowsFeature](/powershell/module/servermanager/install-windowsfeature) cmdlet as an +On Windows Server, use the feature name with the [Install-WindowsFeature][05] cmdlet as an Administrator. For example: ```powershell @@ -46,8 +46,8 @@ administrator**. For more information see: - - [Get-WindowsOptionalFeature](/powershell/module/dism/get-windowsoptionalfeature) - - [Enable-WindowsOptionalFeature](/powershell/module/dism/enable-windowsoptionalfeature) + - [Get-WindowsOptionalFeature][04] + - [Enable-WindowsOptionalFeature][02] - For Windows Capabilities @@ -66,8 +66,8 @@ administrator**. For more information see: - - [Get-WindowsCapability](/powershell/module/dism/get-windowscapability) - - [Add-WindowsCapability](/powershell/module/dism/add-windowscapability) + - [Get-WindowsCapability][03] + - [Add-WindowsCapability][01] ### Module list @@ -204,3 +204,11 @@ This module has some minor compatibility issues with formatted output in PowerSh the `Get-WindowsFeature` cmdlet returns the proper object with all properties, but the default display formatting makes some properties appear to be empty. The actual values are available in the object properties using `Select-Object` or by direct member access. + + +[01]: /powershell/module/dism/add-windowscapability +[02]: /powershell/module/dism/enable-windowsoptionalfeature +[03]: /powershell/module/dism/get-windowscapability +[04]: /powershell/module/dism/get-windowsoptionalfeature +[05]: /powershell/module/servermanager/install-windowsfeature +[06]: https://support.microsoft.com/windows/send-feedback-to-microsoft-with-the-feedback-hub-app-f59187f8-8739-22d6-ba93-f66612949332 diff --git a/docset/docs-conceptual/winserver2022-ps/module-compatibility.md b/docset/docs-conceptual/winserver2022-ps/module-compatibility.md index e2f0c34765..7a7ae20384 100644 --- a/docset/docs-conceptual/winserver2022-ps/module-compatibility.md +++ b/docset/docs-conceptual/winserver2022-ps/module-compatibility.md @@ -1,25 +1,25 @@ --- description: This article lists the status of PowerShell 7 with Powershell modules published for other Microsoft products. -ms.date: 10/04/2021 +ms.date: 06/05/2023 title: PowerShell 7 module compatibility --- # PowerShell 7 module compatibility This article contains a list of PowerShell modules published by Microsoft. These modules provide -management and support for various Microsoft products and services. They have been updated -to work natively with PowerShell 7, or tested for compatibility with PowerShell 7. This list will be -updated with new information as more modules are identified and tested. +management and support for various Microsoft products and services. They have been updated to work +natively with PowerShell 7, or tested for compatibility with PowerShell 7. This list will be updated +with new information as more modules are identified and tested. -If you have information to share or issues with specific modules, please file an issue in the -[WindowsCompatibility repo](https://github.com/PowerShell/WindowsCompatibility). +If you have information to share or issues with specific modules, please submit feedback in the +Windows Feedback Hub. For more information, see +[Send feedback to Microsoft with the Feedback Hub app][06]. ## Windows management modules The Windows management modules are installed in different ways, dependent on the Edition of Windows, and how the module was packaged for that Edition. -On Windows Server, use the feature name with the -[Install-WindowsFeature](/powershell/module/servermanager/install-windowsfeature) cmdlet as an +On Windows Server, use the feature name with the [Install-WindowsFeature][05] cmdlet as an Administrator. For example: ```powershell @@ -46,8 +46,8 @@ administrator**. For more information see: - - [Get-WindowsOptionalFeature](/powershell/module/dism/get-windowsoptionalfeature) - - [Enable-WindowsOptionalFeature](/powershell/module/dism/enable-windowsoptionalfeature) + - [Get-WindowsOptionalFeature][04] + - [Enable-WindowsOptionalFeature][02] - For Windows Capabilities @@ -66,135 +66,135 @@ administrator**. For more information see: - - [Get-WindowsCapability](/powershell/module/dism/get-windowscapability) - - [Add-WindowsCapability](/powershell/module/dism/add-windowscapability) + - [Get-WindowsCapability][03] + - [Add-WindowsCapability][01] ### Module list -| Module name | Status | Supported OS | -| ---------------------------------- | ------------------------------------ | ---------------------------------- | -| ActiveDirectory | Natively Compatible | Windows Server 1809+ with RSAT-AD-PowerShell
Windows 10 1809+ with Rsat.ActiveDirectory.DS-LDS.Tools | -| ADDSDeployment | Works with Compatibility Layer | Windows Server 2019 1809+ | -| ADFS | Untested with Compatibility Layer | | -| AppBackgroundTask | Natively Compatible | Windows 10 1903+ | -| AppLocker | Untested with Compatibility Layer | | -| AppvClient | Untested with Compatibility Layer | | -| Appx | Natively Compatible** | Windows Server 1809+
Windows 10 1809+
**Must use Compatibility Layer with PowerShell 7.1 | -| AssignedAccess | Natively Compatible | Windows 10 1809+ | -| BestPractices | Not Supported by Compatibility Layer | | -| BitLocker | Natively Compatible | Windows Server 1809+ with BitLocker
Windows 10 1809+ | -| BitsTransfer | Natively Compatible | Windows Server 20H1
Windows 10 20H1 | -| BootEventCollector | Untested with Compatibility Layer | | -| BranchCache | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | -| CimCmdlets | Natively Compatible | Built into PowerShell 7 | -| ClusterAwareUpdating | Untested with Compatibility Layer | | -| ConfigCI | Untested with Compatibility Layer | | -| Defender | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | -| DeliveryOptimization | Natively Compatible | Windows Server 1903+
Windows 10 1903+ | -| DFSN | Natively Compatible | Windows Server 1809+ with FS-DFS-Namespace
Windows 10 1809+ with Rsat.FailoverCluster.Management.Tools | -| DFSR | Untested with Compatibility Layer | | -| DhcpServer | Untested with Compatibility Layer | | -| DirectAccessClientComponents | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | -| Dism | Natively Compatible | Windows Server 1903+
Windows 10 1903+ | -| DnsClient | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | -| DnsServer | Natively Compatible | Windows Server 1809+ with DNS or RSAT-DNS-Server
Windows 10 1809+ with Rsat.Dns.Tools | -| EventTracingManagement | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | -| FailoverClusters | Untested with Compatibility Layer | | -| FailoverClusterSet | Untested with Compatibility Layer | | -| FileServerResourceManager | Natively Compatible | Windows Server 1809+ with FS-Resource-Manager | -| GroupPolicy | Untested with Compatibility Layer | | -| HgsClient | Natively Compatible | Windows Server 1903+ with Hyper-V or RSAT-Shielded-VM-Tools
Windows 10 1903+ with Rsat.Shielded.VM.Tools | -| HgsDiagnostics | Natively Compatible | Windows Server 1809+ with Hyper-V or RSAT-Shielded-VM-Tools
Windows 10 1809+ with Rsat.Shielded.VM.Tools | -| Hyper-V | Natively Compatible | Windows Server 1809+ with Hyper-V-PowerShell
Windows 10 1809+ with Microsoft-Hyper-V-Management-PowerShell | -| IISAdministration | Untested with Compatibility Layer | | -| International | Natively Compatible | Windows Server 1903+
Windows 10 1903+ | -| IpamServer | Untested with Compatibility Layer | | -| iSCSI | Untested with Compatibility Layer | | -| IscsiTarget | Untested with Compatibility Layer | | -| ISE | Untested with Compatibility Layer | | -| Kds | Natively Compatible | Windows Server 20H1
Windows 10 20H1 | -| Microsoft.PowerShell.Archive | Natively Compatible | Built into PowerShell 7 | -| Microsoft.PowerShell.Diagnostics | Natively Compatible | Built into PowerShell 7 | -| Microsoft.PowerShell.Host | Natively Compatible | Built into PowerShell 7 | -| Microsoft.PowerShell.LocalAccounts | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | -| Microsoft.PowerShell.Management | Natively Compatible | Built into PowerShell 7 | -| Microsoft.PowerShell.ODataUtils | Untested with Compatibility Layer | | -| Microsoft.PowerShell.Security | Natively Compatible | Built into PowerShell 7 | -| Microsoft.PowerShell.Utility | Natively Compatible | Built into PowerShell 7 | -| Microsoft.WSMan.Management | Natively Compatible | Built into PowerShell 7 | -| MMAgent | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | -| MPIO | Natively Compatible | Windows Server 1809+ with Multipath-IO | -| MsDtc | Untested with Compatibility Layer | | -| NetAdapter | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | -| NetConnection | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | -| NetEventPacketCapture | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | -| NetLbfo | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | -| NetLldpAgent | Untested with Compatibility Layer | | -| NetNat | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | -| NetQos | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | -| NetSecurity | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | -| NetSwitchTeam | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | -| NetTCPIP | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | -| NetWNV | Untested with Compatibility Layer | | -| NetworkConnectivityStatus | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | -| NetworkController | Untested with Compatibility Layer | | -| NetworkControllerDiagnostics | Untested with Compatibility Layer | | -| NetworkLoadBalancingClusters | Untested with Compatibility Layer | | -| NetworkSwitchManager | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | -| NetworkTransition | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | -| NFS | Natively Compatible | Windows Server 1809+
Windows 10 1809+ with Rsat.ServerManager.Tools | -| PackageManagement | Natively Compatible | Built into PowerShell 7 | -| PcsvDevice | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | -| PersistentMemory | Untested with Compatibility Layer | | -| PKI | Untested with Compatibility Layer | | -| PnpDevice | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | -| PowerShellGet | Natively Compatible | Built into PowerShell 7 | -| PrintManagement | Natively Compatible | Windows Server 1903+ with Print-Services
Windows 10 1903+ | -| ProcessMitigations | Natively Compatible | Windows Server 1903+
Windows 10 1903+ | -| Provisioning | Untested with Compatibility Layer | | -| PSDesiredStateConfiguration | Partially | Built into PowerShell 7 | -| PSDiagnostics | Natively Compatible | Built into PowerShell 7 | -| PSScheduledJob | Not Supported by Compatibility Layer | Built into PowerShell 5.1 | -| PSWorkflow | Untested with Compatibility Layer | | -| PSWorkflowUtility | Untested with Compatibility Layer | | -| RemoteAccess | Untested with Compatibility Layer | | -| RemoteDesktop | Untested with Compatibility Layer | | -| ScheduledTasks | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | -| SecureBoot | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | -| ServerCore | Untested with Compatibility Layer | | -| ServerManager | Natively Compatible | Windows Server 1809+
Windows 10 1809+ with Rsat.ServerManager.Tools
_See notes below_ | -| ServerManagerTasks | Untested with Compatibility Layer | | -| ShieldedVMDataFile | Natively Compatible | Windows Server 1903+ with RSAT-Shielded-VM-Tools
Windows 10 1903+ with Rsat.Shielded.VM.Tools | -| ShieldedVMProvisioning | Natively Compatible | Windows Server 1809+ with HostGuardian
Windows 10 1809+ with HostGuardian | -| ShieldedVMTemplate | Natively Compatible | Windows Server 1809+ with RSAT-Shielded-VM-Tools
Windows 10 1809+ with Rsat.Shielded.VM.Tools | -| SmbShare | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | -| SmbWitness | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | -| SMISConfig | Natively Compatible | Windows Server 1903+ with WindowsStorageManagementService | -| SMS | Untested with Compatibility Layer | | -| SoftwareInventoryLogging | Natively Compatible | Windows Server 1809+ | -| StartLayout | Natively Compatible | Windows Server 1809+ with Desktop Experience
Windows 10 1809+ | -| Storage | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | -| StorageBusCache | Untested with Compatibility Layer | | -| StorageMigrationService | Untested with Compatibility Layer | | +| Module name | Status | Supported OS | +| ---------------------------------- | ------------------------------------ | ------------------------------------------------------------------------------------------------------------------- | +| ActiveDirectory | Natively Compatible | Windows Server 1809+ with RSAT-AD-PowerShell
Windows 10 1809+ with Rsat.ActiveDirectory.DS-LDS.Tools | +| ADDSDeployment | Works with Compatibility Layer | Windows Server 2019 1809+ | +| ADFS | Untested with Compatibility Layer | | +| AppBackgroundTask | Natively Compatible | Windows 10 1903+ | +| AppLocker | Untested with Compatibility Layer | | +| AppvClient | Untested with Compatibility Layer | | +| Appx | Natively Compatible** | Windows Server 1809+
Windows 10 1809+
**Must use Compatibility Layer with PowerShell 7.1 | +| AssignedAccess | Natively Compatible | Windows 10 1809+ | +| BestPractices | Not Supported by Compatibility Layer | | +| BitLocker | Natively Compatible | Windows Server 1809+ with BitLocker
Windows 10 1809+ | +| BitsTransfer | Natively Compatible | Windows Server 20H1
Windows 10 20H1 | +| BootEventCollector | Untested with Compatibility Layer | | +| BranchCache | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | +| CimCmdlets | Natively Compatible | Built into PowerShell 7 | +| ClusterAwareUpdating | Untested with Compatibility Layer | | +| ConfigCI | Untested with Compatibility Layer | | +| Defender | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | +| DeliveryOptimization | Natively Compatible | Windows Server 1903+
Windows 10 1903+ | +| DFSN | Natively Compatible | Windows Server 1809+ with FS-DFS-Namespace
Windows 10 1809+ with Rsat.FailoverCluster.Management.Tools | +| DFSR | Untested with Compatibility Layer | | +| DhcpServer | Untested with Compatibility Layer | | +| DirectAccessClientComponents | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | +| Dism | Natively Compatible | Windows Server 1903+
Windows 10 1903+ | +| DnsClient | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | +| DnsServer | Natively Compatible | Windows Server 1809+ with DNS or RSAT-DNS-Server
Windows 10 1809+ with Rsat.Dns.Tools | +| EventTracingManagement | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | +| FailoverClusters | Untested with Compatibility Layer | | +| FailoverClusterSet | Untested with Compatibility Layer | | +| FileServerResourceManager | Natively Compatible | Windows Server 1809+ with FS-Resource-Manager | +| GroupPolicy | Untested with Compatibility Layer | | +| HgsClient | Natively Compatible | Windows Server 1903+ with Hyper-V or RSAT-Shielded-VM-Tools
Windows 10 1903+ with Rsat.Shielded.VM.Tools | +| HgsDiagnostics | Natively Compatible | Windows Server 1809+ with Hyper-V or RSAT-Shielded-VM-Tools
Windows 10 1809+ with Rsat.Shielded.VM.Tools | +| Hyper-V | Natively Compatible | Windows Server 1809+ with Hyper-V-PowerShell
Windows 10 1809+ with Microsoft-Hyper-V-Management-PowerShell | +| IISAdministration | Untested with Compatibility Layer | | +| International | Natively Compatible | Windows Server 1903+
Windows 10 1903+ | +| IpamServer | Untested with Compatibility Layer | | +| iSCSI | Untested with Compatibility Layer | | +| IscsiTarget | Untested with Compatibility Layer | | +| ISE | Untested with Compatibility Layer | | +| Kds | Natively Compatible | Windows Server 20H1
Windows 10 20H1 | +| Microsoft.PowerShell.Archive | Natively Compatible | Built into PowerShell 7 | +| Microsoft.PowerShell.Diagnostics | Natively Compatible | Built into PowerShell 7 | +| Microsoft.PowerShell.Host | Natively Compatible | Built into PowerShell 7 | +| Microsoft.PowerShell.LocalAccounts | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | +| Microsoft.PowerShell.Management | Natively Compatible | Built into PowerShell 7 | +| Microsoft.PowerShell.ODataUtils | Untested with Compatibility Layer | | +| Microsoft.PowerShell.Security | Natively Compatible | Built into PowerShell 7 | +| Microsoft.PowerShell.Utility | Natively Compatible | Built into PowerShell 7 | +| Microsoft.WSMan.Management | Natively Compatible | Built into PowerShell 7 | +| MMAgent | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | +| MPIO | Natively Compatible | Windows Server 1809+ with Multipath-IO | +| MsDtc | Untested with Compatibility Layer | | +| NetAdapter | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | +| NetConnection | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | +| NetEventPacketCapture | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | +| NetLbfo | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | +| NetLldpAgent | Untested with Compatibility Layer | | +| NetNat | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | +| NetQos | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | +| NetSecurity | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | +| NetSwitchTeam | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | +| NetTCPIP | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | +| NetWNV | Untested with Compatibility Layer | | +| NetworkConnectivityStatus | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | +| NetworkController | Untested with Compatibility Layer | | +| NetworkControllerDiagnostics | Untested with Compatibility Layer | | +| NetworkLoadBalancingClusters | Untested with Compatibility Layer | | +| NetworkSwitchManager | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | +| NetworkTransition | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | +| NFS | Natively Compatible | Windows Server 1809+
Windows 10 1809+ with Rsat.ServerManager.Tools | +| PackageManagement | Natively Compatible | Built into PowerShell 7 | +| PcsvDevice | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | +| PersistentMemory | Untested with Compatibility Layer | | +| PKI | Untested with Compatibility Layer | | +| PnpDevice | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | +| PowerShellGet | Natively Compatible | Built into PowerShell 7 | +| PrintManagement | Natively Compatible | Windows Server 1903+ with Print-Services
Windows 10 1903+ | +| ProcessMitigations | Natively Compatible | Windows Server 1903+
Windows 10 1903+ | +| Provisioning | Untested with Compatibility Layer | | +| PSDesiredStateConfiguration | Partially | Built into PowerShell 7 | +| PSDiagnostics | Natively Compatible | Built into PowerShell 7 | +| PSScheduledJob | Not Supported by Compatibility Layer | Built into PowerShell 5.1 | +| PSWorkflow | Untested with Compatibility Layer | | +| PSWorkflowUtility | Untested with Compatibility Layer | | +| RemoteAccess | Untested with Compatibility Layer | | +| RemoteDesktop | Untested with Compatibility Layer | | +| ScheduledTasks | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | +| SecureBoot | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | +| ServerCore | Untested with Compatibility Layer | | +| ServerManager | Natively Compatible | Windows Server 1809+
Windows 10 1809+ with Rsat.ServerManager.Tools
_See notes below_ | +| ServerManagerTasks | Untested with Compatibility Layer | | +| ShieldedVMDataFile | Natively Compatible | Windows Server 1903+ with RSAT-Shielded-VM-Tools
Windows 10 1903+ with Rsat.Shielded.VM.Tools | +| ShieldedVMProvisioning | Natively Compatible | Windows Server 1809+ with HostGuardian
Windows 10 1809+ with HostGuardian | +| ShieldedVMTemplate | Natively Compatible | Windows Server 1809+ with RSAT-Shielded-VM-Tools
Windows 10 1809+ with Rsat.Shielded.VM.Tools | +| SmbShare | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | +| SmbWitness | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | +| SMISConfig | Natively Compatible | Windows Server 1903+ with WindowsStorageManagementService | +| SMS | Untested with Compatibility Layer | | +| SoftwareInventoryLogging | Natively Compatible | Windows Server 1809+ | +| StartLayout | Natively Compatible | Windows Server 1809+ with Desktop Experience
Windows 10 1809+ | +| Storage | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | +| StorageBusCache | Untested with Compatibility Layer | | +| StorageMigrationService | Untested with Compatibility Layer | | | StorageQOS | Natively Compatible | Windows Server 1809+ with RSAT-Clustering-PowerShell
Windows 10 1809+ with Rsat.FailoverCluster.Management.Tools | -| StorageReplica | Untested with Compatibility Layer | | -| SyncShare | Natively Compatible | Windows Server 1809+ with FS-SyncShareService | -| SystemInsights | Untested with Compatibility Layer | | -| TLS | Untested with Compatibility Layer | | -| TroubleshootingPack | Natively Compatible | Windows 10 1903+ | -| TrustedPlatformModule | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | -| UEV | Natively Compatible | Windows Server ??Future version of Server with Desktop Experience??
Windows 10 1903+ | -| UpdateServices | Not Supported by Compatibility Layer | | -| VpnClient | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | -| Wdac | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | -| WebAdministration | Untested with Compatibility Layer | | -| WHEA | Natively Compatible | Windows Server 1903+
Windows 10 1903+ | -| WindowsDeveloperLicense | Natively Compatible | Windows Server 1809+ with Desktop Experience
Windows 10 1809+ | -| WindowsErrorReporting | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | -| WindowsSearch | Natively Compatible | Windows 10 1903+ | -| WindowsServerBackup | Natively Compatible | Windows Server 19H2 with Windows-Server-Backup | -| WindowsUpdate | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | -| WindowsUpdateProvider | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | +| StorageReplica | Untested with Compatibility Layer | | +| SyncShare | Natively Compatible | Windows Server 1809+ with FS-SyncShareService | +| SystemInsights | Untested with Compatibility Layer | | +| TLS | Untested with Compatibility Layer | | +| TroubleshootingPack | Natively Compatible | Windows 10 1903+ | +| TrustedPlatformModule | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | +| UEV | Natively Compatible | Windows Server ??Future version of Server with Desktop Experience??
Windows 10 1903+ | +| UpdateServices | Not Supported by Compatibility Layer | | +| VpnClient | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | +| Wdac | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | +| WebAdministration | Untested with Compatibility Layer | | +| WHEA | Natively Compatible | Windows Server 1903+
Windows 10 1903+ | +| WindowsDeveloperLicense | Natively Compatible | Windows Server 1809+ with Desktop Experience
Windows 10 1809+ | +| WindowsErrorReporting | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | +| WindowsSearch | Natively Compatible | Windows 10 1903+ | +| WindowsServerBackup | Natively Compatible | Windows Server 19H2 with Windows-Server-Backup | +| WindowsUpdate | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | +| WindowsUpdateProvider | Natively Compatible | Windows Server 1809+
Windows 10 1809+ | ## Notes @@ -204,3 +204,11 @@ This module has some minor compatibility issues with formatted output in PowerSh the `Get-WindowsFeature` cmdlet returns the proper object with all properties, but the default display formatting makes some properties appear to be empty. The actual values are available in the object properties using `Select-Object` or by direct member access. + + +[01]: /powershell/module/dism/add-windowscapability +[02]: /powershell/module/dism/enable-windowsoptionalfeature +[03]: /powershell/module/dism/get-windowscapability +[04]: /powershell/module/dism/get-windowsoptionalfeature +[05]: /powershell/module/servermanager/install-windowsfeature +[06]: https://support.microsoft.com/windows/send-feedback-to-microsoft-with-the-feedback-hub-app-f59187f8-8739-22d6-ba93-f66612949332 From a9a55b71aeee4d3d7575ccf0bdc93628aaeaa240 Mon Sep 17 00:00:00 2001 From: Rob Derickson Date: Tue, 6 Jun 2023 07:51:14 -0400 Subject: [PATCH 820/965] Remove colon following Note callout. --- .../activedirectory/Get-ADAccountAuthorizationGroup.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/activedirectory/Get-ADAccountAuthorizationGroup.md b/docset/winserver2022-ps/activedirectory/Get-ADAccountAuthorizationGroup.md index f149e225a3..82cf72ce62 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADAccountAuthorizationGroup.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADAccountAuthorizationGroup.md @@ -133,7 +133,7 @@ Denied RODC Password Replication Group group This command returns a filtered list of built-in security groups that do not have an empty or null setting for **objectClass**, such as **Everyone** or **Authenticated Users**. -> [!NOTE]: +> [!NOTE] > This type of filtering of groups in output can be useful when piping the output of this > cmdlet to be used as input to other Active Directory cmdlets. From 7a768329e2ad82328dd4699b3dbaa47dce504865 Mon Sep 17 00:00:00 2001 From: Drew McClellan Date: Tue, 13 Jun 2023 16:28:38 -0400 Subject: [PATCH 821/965] PS Server 2022 Hyper-V: Remove VM removed PS C:\> from the example 2 &3 so its not in the clipboard when copied. --- docset/winserver2022-ps/hyper-v/Remove-VM.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/hyper-v/Remove-VM.md b/docset/winserver2022-ps/hyper-v/Remove-VM.md index faf23cdb2f..935d9958b6 100644 --- a/docset/winserver2022-ps/hyper-v/Remove-VM.md +++ b/docset/winserver2022-ps/hyper-v/Remove-VM.md @@ -44,14 +44,14 @@ Removes virtual machine new 1. ### Example 2 ``` -PS C:\> Remove-VM -Name "new 2" -Force +Remove-VM -Name "new 2" -Force ``` Removes virtual machine new 2, suppressing the confirmation prompt. ### Example 3 ``` -PS C:\> Get-VM -Name New* | Remove-VM -Force +Get-VM -Name New* | Remove-VM -Force ``` Removes with no confirmation prompt all virtual machines having names starting with New. From 1b7789c10fc2f29a265e419f632e4085d2a65d23 Mon Sep 17 00:00:00 2001 From: Drew McClellan Date: Tue, 13 Jun 2023 17:13:49 -0400 Subject: [PATCH 822/965] Update Add-VMDvdDrive.md removed PS C:> from examples 1-3 so it's not in the clipboard when copied. --- docset/winserver2022-ps/hyper-v/Add-VMDvdDrive.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docset/winserver2022-ps/hyper-v/Add-VMDvdDrive.md b/docset/winserver2022-ps/hyper-v/Add-VMDvdDrive.md index 04764bf137..045e8bda54 100644 --- a/docset/winserver2022-ps/hyper-v/Add-VMDvdDrive.md +++ b/docset/winserver2022-ps/hyper-v/Add-VMDvdDrive.md @@ -42,21 +42,21 @@ The **Add-VMDvdDrive** cmdlet adds a DVD drive to a virtual machine. ### Example 1 ``` -PS C:\> Add-VMDvdDrive -VMName Test -Path D:\ISOs\disc1.iso +Add-VMDvdDrive -VMName Test -Path D:\ISOs\disc1.iso ``` This example adds a virtual DVD drive using file D:\ISOs\disc1.iso to virtual machine Test. ### Example 2 ``` -PS C:\> Get-VM Test | Add-VMDvdDrive -ControllerNumber 1 +Get-VM Test | Add-VMDvdDrive -ControllerNumber 1 ``` This example adds a virtual DVD drive using controller number 1 to virtual machine Test. ### Example 3 ``` -PS C:\> Get-VMIdeController -VMName Test | Add-VMDvdDrive -Path E:\ +Get-VMIdeController -VMName Test | Add-VMDvdDrive -Path E:\ ``` This example adds virtual DVD drives using the IDE controllers from virtual machine Test. From e98e398cdd1196a2b67523ebabb519bc84d763fa Mon Sep 17 00:00:00 2001 From: Jay Simmons Date: Wed, 31 May 2023 09:38:56 -0700 Subject: [PATCH 823/965] Clarify that DN syntax can be used to set permissions on AD domain root --- docset/winserver2019-ps/laps/Find-LapsADExtendedRights.md | 2 ++ .../winserver2019-ps/laps/Set-LapsADComputerSelfPermission.md | 2 ++ .../winserver2019-ps/laps/Set-LapsADReadPasswordPermission.md | 2 ++ .../winserver2019-ps/laps/Set-LapsADResetPasswordPermission.md | 2 ++ docset/winserver2022-ps/laps/Find-LapsADExtendedRights.md | 2 ++ .../winserver2022-ps/laps/Set-LapsADComputerSelfPermission.md | 2 ++ .../winserver2022-ps/laps/Set-LapsADReadPasswordPermission.md | 2 ++ .../winserver2022-ps/laps/Set-LapsADResetPasswordPermission.md | 2 ++ 8 files changed, 16 insertions(+) diff --git a/docset/winserver2019-ps/laps/Find-LapsADExtendedRights.md b/docset/winserver2019-ps/laps/Find-LapsADExtendedRights.md index b18a92a38f..29c3fbe7d1 100644 --- a/docset/winserver2019-ps/laps/Find-LapsADExtendedRights.md +++ b/docset/winserver2019-ps/laps/Find-LapsADExtendedRights.md @@ -104,6 +104,8 @@ resultant AD search. The supported name formats are as follows: - distinguishedName (begins with a `CN=`) - name (for all other inputs) +Querying permissions on the domain root is only supported using the distinguishedName input format, for example 'DC=laps,DC=com'. + ```yaml Type: System.String[] Parameter Sets: (All) diff --git a/docset/winserver2019-ps/laps/Set-LapsADComputerSelfPermission.md b/docset/winserver2019-ps/laps/Set-LapsADComputerSelfPermission.md index 33aca11f0e..380d26acf6 100644 --- a/docset/winserver2019-ps/laps/Set-LapsADComputerSelfPermission.md +++ b/docset/winserver2019-ps/laps/Set-LapsADComputerSelfPermission.md @@ -105,6 +105,8 @@ resultant AD search. The supported name formats are as follows: - distinguishedName (begins with a `CN=`) - name (for all other inputs) +Setting permissions on the domain root is only supported using the distinguishedName input format, for example 'DC=laps,DC=com'. + ```yaml Type: System.String[] Parameter Sets: (All) diff --git a/docset/winserver2019-ps/laps/Set-LapsADReadPasswordPermission.md b/docset/winserver2019-ps/laps/Set-LapsADReadPasswordPermission.md index 47c3f012a7..21d0723273 100644 --- a/docset/winserver2019-ps/laps/Set-LapsADReadPasswordPermission.md +++ b/docset/winserver2019-ps/laps/Set-LapsADReadPasswordPermission.md @@ -177,6 +177,8 @@ resultant AD search. The supported name formats are as follows: - distinguishedName (begins with a `CN=`) - name (for all other inputs) +Setting permissions on the domain root is only supported using the distinguishedName input format, for example 'DC=laps,DC=com'. + ```yaml Type: System.String[] Parameter Sets: (All) diff --git a/docset/winserver2019-ps/laps/Set-LapsADResetPasswordPermission.md b/docset/winserver2019-ps/laps/Set-LapsADResetPasswordPermission.md index 675eae07c5..9a045d51ee 100644 --- a/docset/winserver2019-ps/laps/Set-LapsADResetPasswordPermission.md +++ b/docset/winserver2019-ps/laps/Set-LapsADResetPasswordPermission.md @@ -178,6 +178,8 @@ resultant AD search. The supported name formats are as follows: - distinguishedName (begins with a `CN=`) - name (for all other inputs) +Setting permissions on the domain root is only supported using the distinguishedName input format, for example 'DC=laps,DC=com'. + ```yaml Type: System.String[] Parameter Sets: (All) diff --git a/docset/winserver2022-ps/laps/Find-LapsADExtendedRights.md b/docset/winserver2022-ps/laps/Find-LapsADExtendedRights.md index 0df4fb363d..a3a28884b7 100644 --- a/docset/winserver2022-ps/laps/Find-LapsADExtendedRights.md +++ b/docset/winserver2022-ps/laps/Find-LapsADExtendedRights.md @@ -104,6 +104,8 @@ resultant AD search. The supported name formats are as follows: - distinguishedName (begins with a `CN=`) - name (for all other inputs) +Querying permissions on the domain root is only supported using the distinguishedName input format, for example 'DC=laps,DC=com'. + ```yaml Type: System.String[] Parameter Sets: (All) diff --git a/docset/winserver2022-ps/laps/Set-LapsADComputerSelfPermission.md b/docset/winserver2022-ps/laps/Set-LapsADComputerSelfPermission.md index 4539be98c8..7aac01e939 100644 --- a/docset/winserver2022-ps/laps/Set-LapsADComputerSelfPermission.md +++ b/docset/winserver2022-ps/laps/Set-LapsADComputerSelfPermission.md @@ -105,6 +105,8 @@ resultant AD search. The supported name formats are as follows: - distinguishedName (begins with a `CN=`) - name (for all other inputs) +Setting permissions on the domain root is only supported using the distinguishedName input format, for example 'DC=laps,DC=com'. + ```yaml Type: System.String[] Parameter Sets: (All) diff --git a/docset/winserver2022-ps/laps/Set-LapsADReadPasswordPermission.md b/docset/winserver2022-ps/laps/Set-LapsADReadPasswordPermission.md index 50971ab84e..17ab097e8d 100644 --- a/docset/winserver2022-ps/laps/Set-LapsADReadPasswordPermission.md +++ b/docset/winserver2022-ps/laps/Set-LapsADReadPasswordPermission.md @@ -177,6 +177,8 @@ resultant AD search. The supported name formats are as follows: - distinguishedName (begins with a `CN=`) - name (for all other inputs) +Setting permissions on the domain root is only supported using the distinguishedName input format, for example 'DC=laps,DC=com'. + ```yaml Type: System.String[] Parameter Sets: (All) diff --git a/docset/winserver2022-ps/laps/Set-LapsADResetPasswordPermission.md b/docset/winserver2022-ps/laps/Set-LapsADResetPasswordPermission.md index eae1ea4a3a..9fc3444604 100644 --- a/docset/winserver2022-ps/laps/Set-LapsADResetPasswordPermission.md +++ b/docset/winserver2022-ps/laps/Set-LapsADResetPasswordPermission.md @@ -178,6 +178,8 @@ resultant AD search. The supported name formats are as follows: - distinguishedName (begins with a `CN=`) - name (for all other inputs) +Setting permissions on the domain root is only supported using the distinguishedName input format, for example 'DC=laps,DC=com'. + ```yaml Type: System.String[] Parameter Sets: (All) From 6d8f31528c3cd05ca3c2c94cb7ce01130e9d032f Mon Sep 17 00:00:00 2001 From: Drew McClellan Date: Wed, 14 Jun 2023 12:04:07 -0400 Subject: [PATCH 824/965] Update Set-VMDvdDrive.md I removed PS C:\ from the examples so they are not copied to the clipboard. --- docset/winserver2022-ps/hyper-v/Set-VMDvdDrive.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docset/winserver2022-ps/hyper-v/Set-VMDvdDrive.md b/docset/winserver2022-ps/hyper-v/Set-VMDvdDrive.md index c340f55be1..eb014147d9 100644 --- a/docset/winserver2022-ps/hyper-v/Set-VMDvdDrive.md +++ b/docset/winserver2022-ps/hyper-v/Set-VMDvdDrive.md @@ -37,14 +37,14 @@ The **Set-VMDvdDrive** cmdlet configures the controller and location of a virtua ### Example 1 ``` -PS C:\> Set-VMDvdDrive -VMName TestVM -Path .\WinBuild.iso +Set-VMDvdDrive -VMName TestVM -Path .\WinBuild.iso ``` Configures the virtual DVD drive of virtual machine TestVM to use WinBuild.iso as its media. ### Example 2 ``` -PS C:\> Set-VMDvdDrive -VMName TestVM -ControllerNumber 1 -ControllerLocation 0 -Path $null +Set-VMDvdDrive -VMName TestVM -ControllerNumber 1 -ControllerLocation 0 -Path $null ``` Configures the virtual DVD drive at IDE 1,0 of virtual machine TestVM to use no media. @@ -52,7 +52,7 @@ Configures the virtual DVD drive at IDE 1,0 of virtual machine TestVM to use no ### Example 3 ``` -PS C:\> Get-VMDvdDrive -VMName TestVM -ControllerNumber 1 -ControllerLocation 0 | Set-VMDvdDrive -ToControllerLocation 1 +Get-VMDvdDrive -VMName TestVM -ControllerNumber 1 -ControllerLocation 0 | Set-VMDvdDrive -ToControllerLocation 1 ``` Moves virtual DVD drive from IDE 1,0 to IDE 1,1 on virtual machine TestVM. From 56397efa12b914b53a7ade88bb0d7eaa80bb4fc7 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Mon, 19 Jun 2023 13:18:10 +0530 Subject: [PATCH 825/965] Update Export-VM.md Made changes to the description to avoid ambiguity Fixes https://github.com/MicrosoftDocs/windows-powershell-docs/issues/3039 --- docset/winserver2022-ps/hyper-v/Export-VM.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/hyper-v/Export-VM.md b/docset/winserver2022-ps/hyper-v/Export-VM.md index 846d5764a2..cb0ced7c36 100644 --- a/docset/winserver2022-ps/hyper-v/Export-VM.md +++ b/docset/winserver2022-ps/hyper-v/Export-VM.md @@ -31,7 +31,7 @@ Export-VM [-VM] [-Path] [-AsJob] [-Passthru] [-Captu ## DESCRIPTION The **Export-VM** cmdlet exports a virtual machine to disk. This cmdlet creates a folder at a specified location having three subfolders: Snapshots, Virtual Hard Disks, and Virtual Machines. -The Snapshots and Virtual Hard Disks folders contain the snapshots of and virtual hard disks of the specified virtual machine respectively. +Each of these folders contains the associated files. The Snapshots folder contains the associated Snapshots, and the Virtual Hard Disk folder contains the specified virtual machine's virtual disks. The Virtual Machines folder contains the configuration XML of the specified virtual machine. ## EXAMPLES From 7c8cc520e22b7a1491174418207238bc9f28acc7 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Mon, 19 Jun 2023 13:19:24 +0530 Subject: [PATCH 826/965] Update Export-VM.md updated 2012 version of the doc --- docset/winserver2012-ps/hyper-v/Export-VM.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2012-ps/hyper-v/Export-VM.md b/docset/winserver2012-ps/hyper-v/Export-VM.md index 10f9d2c703..3954f6bf71 100644 --- a/docset/winserver2012-ps/hyper-v/Export-VM.md +++ b/docset/winserver2012-ps/hyper-v/Export-VM.md @@ -25,7 +25,7 @@ Export-VM [-VM] [-Path] [-AsJob] [-Passthru] ## DESCRIPTION The **Export-VM** cmdlet exports a virtual machine to disk. This cmdlet creates a folder at a specified location having three subfolders: Snapshots, Virtual Hard Disks, and Virtual Machines. -The Snapshots and Virtual Hard Disks folders contain the snapshots of and virtual hard disks of the specified virtual machine respectively. +Each of these folders contains the associated files. The Snapshots folder contains the associated Snapshots, and the Virtual Hard Disk folder contains the specified virtual machine's virtual disks. The Virtual Machines folder contains the configuration XML of the specified virtual machine. ## EXAMPLES From 94fc9988cfa321e4012d1758aa1b27f3b7d10bd5 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Mon, 19 Jun 2023 13:19:44 +0530 Subject: [PATCH 827/965] Update Export-VM.md updated 2016 version --- docset/winserver2016-ps/hyper-v/Export-VM.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2016-ps/hyper-v/Export-VM.md b/docset/winserver2016-ps/hyper-v/Export-VM.md index bf77cbfbd0..e040b291bc 100644 --- a/docset/winserver2016-ps/hyper-v/Export-VM.md +++ b/docset/winserver2016-ps/hyper-v/Export-VM.md @@ -31,7 +31,7 @@ Export-VM [-VM] [-Path] [-AsJob] [-Passthru] [-Captu ## DESCRIPTION The **Export-VM** cmdlet exports a virtual machine to disk. This cmdlet creates a folder at a specified location having three subfolders: Snapshots, Virtual Hard Disks, and Virtual Machines. -The Snapshots and Virtual Hard Disks folders contain the snapshots of and virtual hard disks of the specified virtual machine respectively. +Each of these folders contains the associated files. The Snapshots folder contains the associated Snapshots, and the Virtual Hard Disk folder contains the specified virtual machine's virtual disks. The Virtual Machines folder contains the configuration XML of the specified virtual machine. ## EXAMPLES From e1bb210d6b3bdfa625080b356ccd69f01406e240 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Mon, 19 Jun 2023 13:20:05 +0530 Subject: [PATCH 828/965] Update Export-VM.md updated 2019 version --- docset/winserver2019-ps/hyper-v/Export-VM.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/hyper-v/Export-VM.md b/docset/winserver2019-ps/hyper-v/Export-VM.md index aa7fadcbf9..5105fea01c 100644 --- a/docset/winserver2019-ps/hyper-v/Export-VM.md +++ b/docset/winserver2019-ps/hyper-v/Export-VM.md @@ -31,7 +31,7 @@ Export-VM [-VM] [-Path] [-AsJob] [-Passthru] [-Captu ## DESCRIPTION The **Export-VM** cmdlet exports a virtual machine to disk. This cmdlet creates a folder at a specified location having three subfolders: Snapshots, Virtual Hard Disks, and Virtual Machines. -The Snapshots and Virtual Hard Disks folders contain the snapshots of and virtual hard disks of the specified virtual machine respectively. +Each of these folders contains the associated files. The Snapshots folder contains the associated Snapshots, and the Virtual Hard Disk folder contains the specified virtual machine's virtual disks. The Virtual Machines folder contains the configuration XML of the specified virtual machine. ## EXAMPLES From 9579685ecc679d6ccefe414614b98c760826185a Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Mon, 19 Jun 2023 13:20:18 +0530 Subject: [PATCH 829/965] Update Export-VM.md --- docset/winserver2012r2-ps/hyper-v/Export-VM.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2012r2-ps/hyper-v/Export-VM.md b/docset/winserver2012r2-ps/hyper-v/Export-VM.md index 5dc7bfa1d0..c80ad414d0 100644 --- a/docset/winserver2012r2-ps/hyper-v/Export-VM.md +++ b/docset/winserver2012r2-ps/hyper-v/Export-VM.md @@ -29,7 +29,7 @@ Export-VM [-Path] [-AsJob] [-Passthru] [-VM] [-WhatI ## DESCRIPTION The **Export-VM** cmdlet exports a virtual machine to disk. This cmdlet creates a folder at a specified location having three subfolders: Snapshots, Virtual Hard Disks, and Virtual Machines. -The Snapshots and Virtual Hard Disks folders contain the snapshots of and virtual hard disks of the specified virtual machine respectively. +Each of these folders contains the associated files. The Snapshots folder contains the associated Snapshots, and the Virtual Hard Disk folder contains the specified virtual machine's virtual disks. The Virtual Machines folder contains the configuration XML of the specified virtual machine. ## EXAMPLES From 1eb939757387d82925aee5cae3e74d63e6350f28 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Mon, 19 Jun 2023 13:35:59 +0530 Subject: [PATCH 830/965] Update Reset-AppxPackage.md Made changes to the syntax formatting Fixes https://github.com/MicrosoftDocs/windows-powershell-docs/issues/3071 --- docset/winserver2022-ps/appx/Reset-AppxPackage.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/docset/winserver2022-ps/appx/Reset-AppxPackage.md b/docset/winserver2022-ps/appx/Reset-AppxPackage.md index 66d1b655e2..94157d051f 100644 --- a/docset/winserver2022-ps/appx/Reset-AppxPackage.md +++ b/docset/winserver2022-ps/appx/Reset-AppxPackage.md @@ -17,10 +17,11 @@ Restores the Windows app to its initial configuration. ## SYNTAX ``` -Reset-AppxPackage [-Package] - [-WhatIf] - [-Confirm] - [] +Reset-AppxPackage + [-Package] + [-WhatIf] + [-Confirm] + [] ``` ## DESCRIPTION From d4c6633b9635b7bd98d692fc9bbb2cb45b5e21f3 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Mon, 19 Jun 2023 13:37:27 +0530 Subject: [PATCH 831/965] Update Reset-AppxPackage.md Fixes 2016 version of the document --- docset/winserver2016-ps/appx/Reset-AppxPackage.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/docset/winserver2016-ps/appx/Reset-AppxPackage.md b/docset/winserver2016-ps/appx/Reset-AppxPackage.md index 5a332aea5d..886a2a1111 100644 --- a/docset/winserver2016-ps/appx/Reset-AppxPackage.md +++ b/docset/winserver2016-ps/appx/Reset-AppxPackage.md @@ -19,10 +19,11 @@ Restores the Windows app to its initial configuration. ## SYNTAX ```PowerShell -Reset-AppxPackage [-Package] - [-WhatIf] - [-Confirm] - [] +Reset-AppxPackage +[-Package] +[-WhatIf] +[-Confirm] +[] ``` ## DESCRIPTION From 5bbfcb5ef2dfec172a119789971fc0c4bb6fcb0c Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Mon, 19 Jun 2023 13:37:57 +0530 Subject: [PATCH 832/965] Update Reset-AppxPackage.md Fixes 2019 Version of the document --- docset/winserver2019-ps/appx/Reset-AppxPackage.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/docset/winserver2019-ps/appx/Reset-AppxPackage.md b/docset/winserver2019-ps/appx/Reset-AppxPackage.md index a8bc5ae82e..a6bd004df9 100644 --- a/docset/winserver2019-ps/appx/Reset-AppxPackage.md +++ b/docset/winserver2019-ps/appx/Reset-AppxPackage.md @@ -19,10 +19,11 @@ Restores the Windows app to its initial configuration. ## SYNTAX ```PowerShell -Reset-AppxPackage [-Package] - [-WhatIf] - [-Confirm] - [] +Reset-AppxPackage +[-Package] +[-WhatIf] +[-Confirm] +[] ``` ## DESCRIPTION From d4da29f0e20f4563eee5906d37250873a855fb0e Mon Sep 17 00:00:00 2001 From: "Mikey Lombardi (He/Him)" Date: Wed, 21 Jun 2023 10:57:10 -0500 Subject: [PATCH 833/965] Apply suggestions from review --- docset/winserver2022-ps/smbshare/Remove-SmbShare.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/docset/winserver2022-ps/smbshare/Remove-SmbShare.md b/docset/winserver2022-ps/smbshare/Remove-SmbShare.md index 9e27520442..f60237a742 100644 --- a/docset/winserver2022-ps/smbshare/Remove-SmbShare.md +++ b/docset/winserver2022-ps/smbshare/Remove-SmbShare.md @@ -51,11 +51,12 @@ Performing operation 'Remove-Share' on Target 'Contoso-FS,Data'. This command deletes the SMB share named Data. ### Example 2: Delete a Windows Server failover cluster file server resource SMB share without confirmation -``` -PS C:\>Remove-SmbShare -Name "VMFiles" -ScopeName "Contoso-SO" -Force + +```powershell +Remove-SmbShare -Name "VMFiles" -ScopeName "Contoso-SO" -Force ``` -This command deletes the SMB share named VMFiles on the Contoso-SO file server resource without user confirmation. +This command deletes the SMB share named VMFiles on the `Contoso-SO` file server resource without user confirmation. ## PARAMETERS @@ -153,6 +154,7 @@ Accept wildcard characters: False ``` ### -ScopeName + Specifies an array of the scopes of the SMB share to delete. For use with Windows Server failover cluster file server resources. ```yaml From 07a9beae11db65fd5eacafc03cecbc91f8d8d49d Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Fri, 23 Jun 2023 14:03:52 +0530 Subject: [PATCH 834/965] Update Remove-AppxPackageAutoUpdateSettings.md Added Information for Synopsis, Description and example Fixes https://github.com/MicrosoftDocs/windows-powershell-docs/issues/3073 --- .../appx/Remove-AppxPackageAutoUpdateSettings.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docset/winserver2022-ps/appx/Remove-AppxPackageAutoUpdateSettings.md b/docset/winserver2022-ps/appx/Remove-AppxPackageAutoUpdateSettings.md index 5382d8a50e..0f8f8ab40c 100644 --- a/docset/winserver2022-ps/appx/Remove-AppxPackageAutoUpdateSettings.md +++ b/docset/winserver2022-ps/appx/Remove-AppxPackageAutoUpdateSettings.md @@ -9,7 +9,7 @@ title: Remove-AppxPackageAutoUpdateSettings # Remove-AppxPackageAutoUpdateSettings ## SYNOPSIS -{{ Fill in the Synopsis }} +Removes settings configured for a particular Windows App. ## SYNTAX @@ -19,16 +19,16 @@ Remove-AppxPackageAutoUpdateSettings [-PackageFamilyName] [-UseSystemPo ``` ## DESCRIPTION -{{ Fill in the Description }} +The 'Remove-AppxPackageAutoUpdateSettings' PowerShell cmdlet removes the settings configured for a specific or all installed Windows Apps in relation to Auto Update and Repair. ## EXAMPLES ### Example 1 ```powershell -PS C:\> {{ Add example code here }} +PS C:\> Remove-AppxPackageAutoUpdateSettings -PackageFullName publisher.package1_1.0.0.0_neutral__8wekyb3d8bbwe ``` -{{ Add example description here }} +This will remove the Auto Update and Repair settings for a specific Windows App that has been installed and registered to the signed-in user. ## PARAMETERS From 1941c7857cb94871e20715df3fa17f50424d3f85 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Fri, 23 Jun 2023 14:07:55 +0530 Subject: [PATCH 835/965] Update Add-VpnConnection.md removed [XML] from example 5 for the cmdlet to work Fixes https://github.com/MicrosoftDocs/windows-powershell-docs/issues/3042 --- docset/winserver2022-ps/vpnclient/Add-VpnConnection.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/vpnclient/Add-VpnConnection.md b/docset/winserver2022-ps/vpnclient/Add-VpnConnection.md index 11b4853490..f94b420cce 100644 --- a/docset/winserver2022-ps/vpnclient/Add-VpnConnection.md +++ b/docset/winserver2022-ps/vpnclient/Add-VpnConnection.md @@ -153,7 +153,7 @@ For more information about custom EAP authentication methods, see the **New-EapC ### Example 5: Add a VPN connection that uses already generated EAP XML configuration ```powershell -PS C:\> $EAPXml = [xml]Get-Content -Path C:\eap-config.xml +PS C:\> $EAPXml = Get-Content -Path C:\eap-config.xml PS C:\> Add-VpnConnection -Name "Test6" -ServerAddress "10.1.1.1" -TunnelType "L2tp" -EncryptionLevel "Required" -AuthenticationMethod Eap -SplitTunneling -AllUserConnection -RememberCredential -EapConfigXmlStream $EAPXml ``` From 51fc09f3cc3ce40bb9489e7397f4f705798dbb3e Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Fri, 23 Jun 2023 14:09:12 +0530 Subject: [PATCH 836/965] Update Add-VpnConnection.md --- docset/winserver2012-ps/vpnclient/Add-VpnConnection.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2012-ps/vpnclient/Add-VpnConnection.md b/docset/winserver2012-ps/vpnclient/Add-VpnConnection.md index 2bc3606f39..bbbee7fd18 100644 --- a/docset/winserver2012-ps/vpnclient/Add-VpnConnection.md +++ b/docset/winserver2012-ps/vpnclient/Add-VpnConnection.md @@ -139,7 +139,7 @@ For more information about custom EAP authentication methods, see the **New-EapC ### Example 5: Add a VPN connection that uses already generated EAP XML configuration ```powershell -PS C:\> $EAPXml = [xml]Get-Content -Path C:\eap-config.xml +PS C:\> $EAPXml = Get-Content -Path C:\eap-config.xml PS C:\> Add-VpnConnection -Name "Test6" -ServerAddress "10.1.1.1" -TunnelType "L2tp" -EncryptionLevel "Required" -AuthenticationMethod Eap -SplitTunneling -AllUserConnection -RememberCredential -EapConfigXmlStream $EAPXml ``` From 64a4a5f01d3a0dcf5df32a04460871711fa42efe Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Fri, 23 Jun 2023 14:09:24 +0530 Subject: [PATCH 837/965] Update Add-VpnConnection.md --- docset/winserver2016-ps/vpnclient/Add-VpnConnection.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2016-ps/vpnclient/Add-VpnConnection.md b/docset/winserver2016-ps/vpnclient/Add-VpnConnection.md index 53d7f76d5e..0e8ad6f602 100644 --- a/docset/winserver2016-ps/vpnclient/Add-VpnConnection.md +++ b/docset/winserver2016-ps/vpnclient/Add-VpnConnection.md @@ -153,7 +153,7 @@ For more information about custom EAP authentication methods, see the **New-EapC ### Example 5: Add a VPN connection that uses already generated EAP XML configuration ```powershell -PS C:\> $EAPXml = [xml]Get-Content -Path C:\eap-config.xml +PS C:\> $EAPXml = Get-Content -Path C:\eap-config.xml PS C:\> Add-VpnConnection -Name "Test6" -ServerAddress "10.1.1.1" -TunnelType "L2tp" -EncryptionLevel "Required" -AuthenticationMethod Eap -SplitTunneling -AllUserConnection -RememberCredential -EapConfigXmlStream $EAPXml ``` From 4312736254cb2531570293489a658bf653dfa039 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Fri, 23 Jun 2023 14:09:38 +0530 Subject: [PATCH 838/965] Update Add-VpnConnection.md --- docset/winserver2019-ps/vpnclient/Add-VpnConnection.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/vpnclient/Add-VpnConnection.md b/docset/winserver2019-ps/vpnclient/Add-VpnConnection.md index 26b8c7611f..d6813a2154 100644 --- a/docset/winserver2019-ps/vpnclient/Add-VpnConnection.md +++ b/docset/winserver2019-ps/vpnclient/Add-VpnConnection.md @@ -153,7 +153,7 @@ For more information about custom EAP authentication methods, see the **New-EapC ### Example 5: Add a VPN connection that uses already generated EAP XML configuration ```powershell -PS C:\> $EAPXml = [xml]Get-Content -Path C:\eap-config.xml +PS C:\> $EAPXml = Get-Content -Path C:\eap-config.xml PS C:\> Add-VpnConnection -Name "Test6" -ServerAddress "10.1.1.1" -TunnelType "L2tp" -EncryptionLevel "Required" -AuthenticationMethod Eap -SplitTunneling -AllUserConnection -RememberCredential -EapConfigXmlStream $EAPXml ``` From 8f4065c21f516a903a451dfdfa60f58eeb179398 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Fri, 23 Jun 2023 14:09:56 +0530 Subject: [PATCH 839/965] Update Add-VpnConnection.md --- docset/winserver2012r2-ps/vpnclient/Add-VpnConnection.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2012r2-ps/vpnclient/Add-VpnConnection.md b/docset/winserver2012r2-ps/vpnclient/Add-VpnConnection.md index 7783147379..0699f0f1ef 100644 --- a/docset/winserver2012r2-ps/vpnclient/Add-VpnConnection.md +++ b/docset/winserver2012r2-ps/vpnclient/Add-VpnConnection.md @@ -152,7 +152,7 @@ For more information about custom EAP authentication methods, see the **New-EapC ### Example 5: Add a VPN connection that uses already generated EAP XML configuration ```powershell -PS C:\> $EAPXml = [xml]Get-Content -Path C:\eap-config.xml +PS C:\> $EAPXml = Get-Content -Path C:\eap-config.xml PS C:\> Add-VpnConnection -Name "Test6" -ServerAddress "10.1.1.1" -TunnelType "L2tp" -EncryptionLevel "Required" -AuthenticationMethod Eap -SplitTunneling -AllUserConnection -RememberCredential -EapConfigXmlStream $EAPXml ``` From e6c67d6c5048f1c921b3ea2a5561d31cadce0cce Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Fri, 23 Jun 2023 14:18:42 +0530 Subject: [PATCH 840/965] Update Set-DnsServerRecursion.md Changed the default value to 8 seconds --- docset/winserver2022-ps/dnsserver/Set-DnsServerRecursion.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/dnsserver/Set-DnsServerRecursion.md b/docset/winserver2022-ps/dnsserver/Set-DnsServerRecursion.md index a37b5b25b4..2a554af411 100644 --- a/docset/winserver2022-ps/dnsserver/Set-DnsServerRecursion.md +++ b/docset/winserver2022-ps/dnsserver/Set-DnsServerRecursion.md @@ -219,7 +219,7 @@ Accept wildcard characters: False ### -Timeout Specifies the number of seconds that a DNS server waits before it stops trying to contact a remote server. The valid value is in the range of 0x1 to 0xFFFFFFFF (1 second to 15 seconds). -The default setting is 0xF (15 seconds). +The default setting is 0x8 (8 seconds). We recommend that you increase this value when recursion occurs over a slow link. ```yaml From cd6b2f23e3a11034b4050a33a118b27708ece3ef Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Fri, 23 Jun 2023 14:22:21 +0530 Subject: [PATCH 841/965] Update Set-DnsServerRecursion.md --- docset/winserver2012-ps/dnsserver/Set-DnsServerRecursion.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2012-ps/dnsserver/Set-DnsServerRecursion.md b/docset/winserver2012-ps/dnsserver/Set-DnsServerRecursion.md index 4485602761..2f01260790 100644 --- a/docset/winserver2012-ps/dnsserver/Set-DnsServerRecursion.md +++ b/docset/winserver2012-ps/dnsserver/Set-DnsServerRecursion.md @@ -197,7 +197,7 @@ Accept wildcard characters: False ### -Timeout Determines the number of seconds that a DNS server waits before it stops trying to contact a remote server. The valid value is in the range of 0x1 to 0xFFFFFFFF (1 second to 15 seconds). -The default setting is 0xF (15 seconds). +The default setting is 0x8 (8 seconds). We recommend that you increase this value when recursion occurs over a slow link. ```yaml From daa651103184f8145d59c07704ce12610b73109f Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Fri, 23 Jun 2023 14:22:34 +0530 Subject: [PATCH 842/965] Update Set-DnsServerRecursion.md --- docset/winserver2016-ps/dnsserver/Set-DnsServerRecursion.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2016-ps/dnsserver/Set-DnsServerRecursion.md b/docset/winserver2016-ps/dnsserver/Set-DnsServerRecursion.md index ba4c702dd7..9a001476fa 100644 --- a/docset/winserver2016-ps/dnsserver/Set-DnsServerRecursion.md +++ b/docset/winserver2016-ps/dnsserver/Set-DnsServerRecursion.md @@ -219,7 +219,7 @@ Accept wildcard characters: False ### -Timeout Specifies the number of seconds that a DNS server waits before it stops trying to contact a remote server. The valid value is in the range of 0x1 to 0xFFFFFFFF (1 second to 15 seconds). -The default setting is 0xF (15 seconds). +The default setting is 0x8 (8 seconds). We recommend that you increase this value when recursion occurs over a slow link. ```yaml From 80831a0a5b6ff0b496257c6ae061a2e5c29ebb1d Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Fri, 23 Jun 2023 14:22:51 +0530 Subject: [PATCH 843/965] Update Set-DnsServerRecursion.md --- docset/winserver2019-ps/dnsserver/Set-DnsServerRecursion.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/dnsserver/Set-DnsServerRecursion.md b/docset/winserver2019-ps/dnsserver/Set-DnsServerRecursion.md index 52d436d005..c9383c2b05 100644 --- a/docset/winserver2019-ps/dnsserver/Set-DnsServerRecursion.md +++ b/docset/winserver2019-ps/dnsserver/Set-DnsServerRecursion.md @@ -219,7 +219,7 @@ Accept wildcard characters: False ### -Timeout Specifies the number of seconds that a DNS server waits before it stops trying to contact a remote server. The valid value is in the range of 0x1 to 0xFFFFFFFF (1 second to 15 seconds). -The default setting is 0xF (15 seconds). +The default setting is 0x8 (8 seconds). We recommend that you increase this value when recursion occurs over a slow link. ```yaml From 16753c8d22038e6ed35ce3d6f47088efb20345f8 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Fri, 23 Jun 2023 14:23:12 +0530 Subject: [PATCH 844/965] Update Set-DnsServerRecursion.md --- docset/winserver2012r2-ps/dnsserver/Set-DnsServerRecursion.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2012r2-ps/dnsserver/Set-DnsServerRecursion.md b/docset/winserver2012r2-ps/dnsserver/Set-DnsServerRecursion.md index 8e04904dfb..e9b799a711 100644 --- a/docset/winserver2012r2-ps/dnsserver/Set-DnsServerRecursion.md +++ b/docset/winserver2012r2-ps/dnsserver/Set-DnsServerRecursion.md @@ -214,7 +214,7 @@ Accept wildcard characters: False ### -Timeout Determines the number of seconds that a DNS server waits before it stops trying to contact a remote server. The valid value is in the range of 0x1 to 0xFFFFFFFF (1 second to 15 seconds). -The default setting is 0xF (15 seconds). +The default setting is 0x8 (8 seconds). We recommend that you increase this value when recursion occurs over a slow link. ```yaml From cb75d924f0bc35f331f3ff1cfe13e219b5be109f Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Fri, 23 Jun 2023 17:34:20 +0530 Subject: [PATCH 845/965] Update docset/winserver2022-ps/appx/Remove-AppxPackageAutoUpdateSettings.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- .../appx/Remove-AppxPackageAutoUpdateSettings.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/appx/Remove-AppxPackageAutoUpdateSettings.md b/docset/winserver2022-ps/appx/Remove-AppxPackageAutoUpdateSettings.md index 0f8f8ab40c..de3a3272b6 100644 --- a/docset/winserver2022-ps/appx/Remove-AppxPackageAutoUpdateSettings.md +++ b/docset/winserver2022-ps/appx/Remove-AppxPackageAutoUpdateSettings.md @@ -28,7 +28,7 @@ The 'Remove-AppxPackageAutoUpdateSettings' PowerShell cmdlet removes the setting PS C:\> Remove-AppxPackageAutoUpdateSettings -PackageFullName publisher.package1_1.0.0.0_neutral__8wekyb3d8bbwe ``` -This will remove the Auto Update and Repair settings for a specific Windows App that has been installed and registered to the signed-in user. +This example removes the Auto Update and Repair settings for a specific Windows app that has been installed and registered to the signed-in user. ## PARAMETERS From 1b4c4cc91bc193306628ef100eab794d99348687 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Fri, 23 Jun 2023 17:34:33 +0530 Subject: [PATCH 846/965] Update docset/winserver2022-ps/appx/Remove-AppxPackageAutoUpdateSettings.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- .../appx/Remove-AppxPackageAutoUpdateSettings.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/appx/Remove-AppxPackageAutoUpdateSettings.md b/docset/winserver2022-ps/appx/Remove-AppxPackageAutoUpdateSettings.md index de3a3272b6..dee84739bf 100644 --- a/docset/winserver2022-ps/appx/Remove-AppxPackageAutoUpdateSettings.md +++ b/docset/winserver2022-ps/appx/Remove-AppxPackageAutoUpdateSettings.md @@ -9,7 +9,7 @@ title: Remove-AppxPackageAutoUpdateSettings # Remove-AppxPackageAutoUpdateSettings ## SYNOPSIS -Removes settings configured for a particular Windows App. +Removes settings configured for a particular Windows app. ## SYNTAX From 2a89dee8b0e8d310d4ee0c3d9b0fb9a7898e6ae8 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Fri, 23 Jun 2023 17:34:40 +0530 Subject: [PATCH 847/965] Update docset/winserver2022-ps/appx/Remove-AppxPackageAutoUpdateSettings.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- .../appx/Remove-AppxPackageAutoUpdateSettings.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/appx/Remove-AppxPackageAutoUpdateSettings.md b/docset/winserver2022-ps/appx/Remove-AppxPackageAutoUpdateSettings.md index dee84739bf..921490eff0 100644 --- a/docset/winserver2022-ps/appx/Remove-AppxPackageAutoUpdateSettings.md +++ b/docset/winserver2022-ps/appx/Remove-AppxPackageAutoUpdateSettings.md @@ -19,7 +19,7 @@ Remove-AppxPackageAutoUpdateSettings [-PackageFamilyName] [-UseSystemPo ``` ## DESCRIPTION -The 'Remove-AppxPackageAutoUpdateSettings' PowerShell cmdlet removes the settings configured for a specific or all installed Windows Apps in relation to Auto Update and Repair. +The 'Remove-AppxPackageAutoUpdateSettings' PowerShell cmdlet removes the settings configured for a specific or all installed Windows apps in relation to the Auto Update and Repair settings. ## EXAMPLES From fbc2f42be271c6d92f6e13c345df1f93bd9f67ec Mon Sep 17 00:00:00 2001 From: Mohit Patel <103079000+mohitp930@users.noreply.github.com> Date: Wed, 5 Jul 2023 16:51:04 -0400 Subject: [PATCH 848/965] Policheck update - Juy 5 | Bulk Update --- .../activedirectory/New-ADCentralAccessPolicy.md | 2 +- .../winserver2012-ps/activedirectory/Set-ADCentralAccessRule.md | 2 +- .../install-adcsnetworkdeviceenrollmentservice.md | 2 +- .../activedirectory/New-ADCentralAccessPolicy.md | 2 +- .../activedirectory/Set-ADCentralAccessRule.md | 2 +- .../install-adcsnetworkdeviceenrollmentservice.md | 2 +- .../activedirectory/New-ADCentralAccessPolicy.md | 2 +- .../winserver2016-ps/activedirectory/Set-ADCentralAccessRule.md | 2 +- .../Install-AdcsNetworkDeviceEnrollmentService.md | 2 +- .../activedirectory/New-ADCentralAccessPolicy.md | 2 +- .../winserver2019-ps/activedirectory/Set-ADCentralAccessRule.md | 2 +- .../Install-AdcsNetworkDeviceEnrollmentService.md | 2 +- .../activedirectory/New-ADCentralAccessPolicy.md | 2 +- .../winserver2022-ps/activedirectory/Set-ADCentralAccessRule.md | 2 +- .../Install-AdcsNetworkDeviceEnrollmentService.md | 2 +- 15 files changed, 15 insertions(+), 15 deletions(-) diff --git a/docset/winserver2012-ps/activedirectory/New-ADCentralAccessPolicy.md b/docset/winserver2012-ps/activedirectory/New-ADCentralAccessPolicy.md index 4b5a6d4adf..73b06e0b3d 100644 --- a/docset/winserver2012-ps/activedirectory/New-ADCentralAccessPolicy.md +++ b/docset/winserver2012-ps/activedirectory/New-ADCentralAccessPolicy.md @@ -61,7 +61,7 @@ Description Create a new central access rule named "Finance Documents Rule" with a new resource condition and new permissions. The new rule specifies that documents should only be read by members of the Finance department. -Members of the Finance department should only be able to access documents in their own country. +Members of the Finance department should only be able to access documents in their own country/region. Only Finance Administrators should have write access. The rule allows an exception for members of the FinanceException group. This group will have read access. diff --git a/docset/winserver2012-ps/activedirectory/Set-ADCentralAccessRule.md b/docset/winserver2012-ps/activedirectory/Set-ADCentralAccessRule.md index 11de817d6a..595d89790f 100644 --- a/docset/winserver2012-ps/activedirectory/Set-ADCentralAccessRule.md +++ b/docset/winserver2012-ps/activedirectory/Set-ADCentralAccessRule.md @@ -68,7 +68,7 @@ Description Set the central access rule named "Finance Documents Rule" with a new resource condition and new permissions. The new rule specifies that documents should only be read by members of the Finance department. -Members of the Finance department should only be able to access documents in their own country. +Members of the Finance department should only be able to access documents in their own country/region. Only Finance Administrators should have write access. The rule allows an exception for members of the FinanceException group. This group will have read access. diff --git a/docset/winserver2012-ps/adcsdeployment/install-adcsnetworkdeviceenrollmentservice.md b/docset/winserver2012-ps/adcsdeployment/install-adcsnetworkdeviceenrollmentservice.md index a54ffd8c8c..6f7876fafc 100644 --- a/docset/winserver2012-ps/adcsdeployment/install-adcsnetworkdeviceenrollmentservice.md +++ b/docset/winserver2012-ps/adcsdeployment/install-adcsnetworkdeviceenrollmentservice.md @@ -229,7 +229,7 @@ Accept wildcard characters: False ``` ### -RACountry -Specifies the country of the registration authority. +Specifies the country/region of the registration authority. ```yaml Type: String diff --git a/docset/winserver2012r2-ps/activedirectory/New-ADCentralAccessPolicy.md b/docset/winserver2012r2-ps/activedirectory/New-ADCentralAccessPolicy.md index 3f7a81d190..ff294099a9 100644 --- a/docset/winserver2012r2-ps/activedirectory/New-ADCentralAccessPolicy.md +++ b/docset/winserver2012r2-ps/activedirectory/New-ADCentralAccessPolicy.md @@ -52,7 +52,7 @@ PS C:\> Set-ADCentralAccessRule -Identity "Finance Documents Rule" -ResourceCond This command creates a central access rule named Finance Documents Rule with a new resource condition and new permissions. The new rule specifies that documents should only be read by members of the Finance department. -Members of the Finance department should only be able to access documents in their own country. +Members of the Finance department should only be able to access documents in their own country/region. Only Finance Administrators should have write access. The rule allows an exception for members of the FinanceException group. This group will have read access. diff --git a/docset/winserver2012r2-ps/activedirectory/Set-ADCentralAccessRule.md b/docset/winserver2012r2-ps/activedirectory/Set-ADCentralAccessRule.md index 78a9916e6a..085281ab17 100644 --- a/docset/winserver2012r2-ps/activedirectory/Set-ADCentralAccessRule.md +++ b/docset/winserver2012r2-ps/activedirectory/Set-ADCentralAccessRule.md @@ -59,7 +59,7 @@ PS C:\> Set-ADCentralAccessRule -Identity "Finance Documents Rule" -ResourceCond This example sets the central access rule named Finance Documents Rule with a new resource condition and new permissions. The new rule specifies that documents should only be read by members of the Finance department. -Members of the Finance department should only be able to access documents in their own country. +Members of the Finance department should only be able to access documents in their own country/region. Only Finance Administrators should have write access. The rule allows an exception for members of the FinanceException group. This group will have read access. diff --git a/docset/winserver2012r2-ps/adcsdeployment/install-adcsnetworkdeviceenrollmentservice.md b/docset/winserver2012r2-ps/adcsdeployment/install-adcsnetworkdeviceenrollmentservice.md index 7f20c5cf78..5a91ceb52b 100644 --- a/docset/winserver2012r2-ps/adcsdeployment/install-adcsnetworkdeviceenrollmentservice.md +++ b/docset/winserver2012r2-ps/adcsdeployment/install-adcsnetworkdeviceenrollmentservice.md @@ -230,7 +230,7 @@ Accept wildcard characters: False ``` ### -RACountry -Specifies the country of the registration authority. +Specifies the country/region of the registration authority. ```yaml Type: String diff --git a/docset/winserver2016-ps/activedirectory/New-ADCentralAccessPolicy.md b/docset/winserver2016-ps/activedirectory/New-ADCentralAccessPolicy.md index c1316a5295..391aa50e69 100644 --- a/docset/winserver2016-ps/activedirectory/New-ADCentralAccessPolicy.md +++ b/docset/winserver2016-ps/activedirectory/New-ADCentralAccessPolicy.md @@ -53,7 +53,7 @@ PS C:\> Set-ADCentralAccessRule -Identity "Finance Documents Rule" -ResourceCond This command creates a central access rule named Finance Documents Rule with a new resource condition and new permissions. The new rule specifies that documents should only be read by members of the Finance department. -Members of the Finance department should only be able to access documents in their own country. +Members of the Finance department should only be able to access documents in their own country/region. Only Finance Administrators should have write access. The rule allows an exception for members of the FinanceException group. This group will have read access. diff --git a/docset/winserver2016-ps/activedirectory/Set-ADCentralAccessRule.md b/docset/winserver2016-ps/activedirectory/Set-ADCentralAccessRule.md index 6fca1a1ef1..a6007577c4 100644 --- a/docset/winserver2016-ps/activedirectory/Set-ADCentralAccessRule.md +++ b/docset/winserver2016-ps/activedirectory/Set-ADCentralAccessRule.md @@ -60,7 +60,7 @@ PS C:\> Set-ADCentralAccessRule -Identity "Finance Documents Rule" -ResourceCond This example sets the central access rule named Finance Documents Rule with a new resource condition and new permissions. The new rule specifies that documents should only be read by members of the Finance department. -Members of the Finance department should only be able to access documents in their own country. +Members of the Finance department should only be able to access documents in their own country/region. Only Finance Administrators should have write access. The rule allows an exception for members of the FinanceException group. This group will have read access. diff --git a/docset/winserver2016-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md b/docset/winserver2016-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md index 48208d5718..87f49f4b58 100644 --- a/docset/winserver2016-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md +++ b/docset/winserver2016-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md @@ -226,7 +226,7 @@ Accept wildcard characters: False ``` ### -RACountry -Specifies the country of the registration authority. +Specifies the country/region of the registration authority. ```yaml Type: String diff --git a/docset/winserver2019-ps/activedirectory/New-ADCentralAccessPolicy.md b/docset/winserver2019-ps/activedirectory/New-ADCentralAccessPolicy.md index 269f96d7f0..27c434bdc1 100644 --- a/docset/winserver2019-ps/activedirectory/New-ADCentralAccessPolicy.md +++ b/docset/winserver2019-ps/activedirectory/New-ADCentralAccessPolicy.md @@ -53,7 +53,7 @@ PS C:\> Set-ADCentralAccessRule -Identity "Finance Documents Rule" -ResourceCond This command creates a central access rule named Finance Documents Rule with a new resource condition and new permissions. The new rule specifies that documents should only be read by members of the Finance department. -Members of the Finance department should only be able to access documents in their own country. +Members of the Finance department should only be able to access documents in their own country/region. Only Finance Administrators should have write access. The rule allows an exception for members of the FinanceException group. This group will have read access. diff --git a/docset/winserver2019-ps/activedirectory/Set-ADCentralAccessRule.md b/docset/winserver2019-ps/activedirectory/Set-ADCentralAccessRule.md index 1656216a39..222825d18a 100644 --- a/docset/winserver2019-ps/activedirectory/Set-ADCentralAccessRule.md +++ b/docset/winserver2019-ps/activedirectory/Set-ADCentralAccessRule.md @@ -60,7 +60,7 @@ PS C:\> Set-ADCentralAccessRule -Identity "Finance Documents Rule" -ResourceCond This example sets the central access rule named Finance Documents Rule with a new resource condition and new permissions. The new rule specifies that documents should only be read by members of the Finance department. -Members of the Finance department should only be able to access documents in their own country. +Members of the Finance department should only be able to access documents in their own country/region. Only Finance Administrators should have write access. The rule allows an exception for members of the FinanceException group. This group will have read access. diff --git a/docset/winserver2019-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md b/docset/winserver2019-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md index b9661cb06f..4c392bf825 100644 --- a/docset/winserver2019-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md +++ b/docset/winserver2019-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md @@ -226,7 +226,7 @@ Accept wildcard characters: False ``` ### -RACountry -Specifies the country of the registration authority. +Specifies the country/region of the registration authority. ```yaml Type: String diff --git a/docset/winserver2022-ps/activedirectory/New-ADCentralAccessPolicy.md b/docset/winserver2022-ps/activedirectory/New-ADCentralAccessPolicy.md index 9b0e229855..a884827549 100644 --- a/docset/winserver2022-ps/activedirectory/New-ADCentralAccessPolicy.md +++ b/docset/winserver2022-ps/activedirectory/New-ADCentralAccessPolicy.md @@ -53,7 +53,7 @@ PS C:\> Set-ADCentralAccessRule -Identity "Finance Documents Rule" -ResourceCond This command creates a central access rule named Finance Documents Rule with a new resource condition and new permissions. The new rule specifies that documents should only be read by members of the Finance department. -Members of the Finance department should only be able to access documents in their own country. +Members of the Finance department should only be able to access documents in their own country/region. Only Finance Administrators should have write access. The rule allows an exception for members of the FinanceException group. This group will have read access. diff --git a/docset/winserver2022-ps/activedirectory/Set-ADCentralAccessRule.md b/docset/winserver2022-ps/activedirectory/Set-ADCentralAccessRule.md index 6b87452760..0cda8e0aad 100644 --- a/docset/winserver2022-ps/activedirectory/Set-ADCentralAccessRule.md +++ b/docset/winserver2022-ps/activedirectory/Set-ADCentralAccessRule.md @@ -60,7 +60,7 @@ PS C:\> Set-ADCentralAccessRule -Identity "Finance Documents Rule" -ResourceCond This example sets the central access rule named Finance Documents Rule with a new resource condition and new permissions. The new rule specifies that documents should only be read by members of the Finance department. -Members of the Finance department should only be able to access documents in their own country. +Members of the Finance department should only be able to access documents in their own country/region. Only Finance Administrators should have write access. The rule allows an exception for members of the FinanceException group. This group will have read access. diff --git a/docset/winserver2022-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md b/docset/winserver2022-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md index 221e415954..512b93c3b8 100644 --- a/docset/winserver2022-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md +++ b/docset/winserver2022-ps/adcsdeployment/Install-AdcsNetworkDeviceEnrollmentService.md @@ -273,7 +273,7 @@ Accept wildcard characters: False ### -RACountry -Specifies the country of the registration authority. +Specifies the country/region of the registration authority. ```yaml Type: String From eebb2d282c6a7d0242f7ef0fbd00939692195d2b Mon Sep 17 00:00:00 2001 From: Christoph Petersen Date: Wed, 19 Jul 2023 15:18:52 +0200 Subject: [PATCH 849/965] Add missing -ManagementPointNetworkType parameter --- .../failoverclusters/New-Cluster.md | 25 +++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/New-Cluster.md b/docset/winserver2022-ps/failoverclusters/New-Cluster.md index 98a6c68fd7..7a82d8b4d2 100644 --- a/docset/winserver2022-ps/failoverclusters/New-Cluster.md +++ b/docset/winserver2022-ps/failoverclusters/New-Cluster.md @@ -17,8 +17,8 @@ Creates a new failover cluster. ``` New-Cluster [-Name] [-Node ] [-StaticAddress ] - [-IgnoreNetwork ] [-NoStorage] [-S2D] - [-AdministrativeAccessPoint ] [-Force] [] + [-IgnoreNetwork ] [-NoStorage] [-S2D] [-AdministrativeAccessPoint ] + [-Force] [-ManagementPointNetworkType ] [] ``` ## DESCRIPTION @@ -167,6 +167,27 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -ManagementPointNetworkType +Specifies the network configuration used to determine IP address settings. + +The acceptable values for this parameter are: + +- Automatic: Automatically detects the appropriate setting. If SQL Server is running in Azure, uses `Distributed`. If SQL Server is running on-premises, uses `Singleton`. (Default setting) +- Singleton: The traditional method of DHCP or static IP address. +- Distributed: Uses a Distributed Network Name by using Node IP addresses. + +```yaml +Type: AdminAccessPointResType +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: Automatic +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Name Specifies the name of the cluster to create. From 2fc937da25e72d9d1b1f9eaa2f35acf4e6c5a6d4 Mon Sep 17 00:00:00 2001 From: Tyler D Date: Wed, 19 Jul 2023 19:16:45 -0700 Subject: [PATCH 850/965] Fix typo CertStoreLocations -> CertStoreLocation --- docset/winserver2022-ps/pki/Import-Certificate.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/pki/Import-Certificate.md b/docset/winserver2022-ps/pki/Import-Certificate.md index 9f1f8e53e4..60081c85d3 100644 --- a/docset/winserver2022-ps/pki/Import-Certificate.md +++ b/docset/winserver2022-ps/pki/Import-Certificate.md @@ -31,7 +31,7 @@ The `Import-Certificate` cmdlet imports one or more certificates into a certific ```powershell $params = @{ FilePath = 'C:\Users\Xyz\Desktop\BackupCert.cer' - CertStoreLocations = 'Cert:\CurrentUser\Root' + CertStoreLocation = 'Cert:\CurrentUser\Root' } Import-Certificate @params ``` From 5c828f9d9776d00076f177710091aa14dffb721b Mon Sep 17 00:00:00 2001 From: Xelu86 <103963494+Xelu86@users.noreply.github.com> Date: Thu, 20 Jul 2023 16:08:08 -0400 Subject: [PATCH 851/965] Updated command --- docset/winserver2022-ps/hyper-v/New-VFD.md | 58 ++++++++++++++-------- 1 file changed, 36 insertions(+), 22 deletions(-) diff --git a/docset/winserver2022-ps/hyper-v/New-VFD.md b/docset/winserver2022-ps/hyper-v/New-VFD.md index 0c9af0b9a8..25e463aac6 100644 --- a/docset/winserver2022-ps/hyper-v/New-VFD.md +++ b/docset/winserver2022-ps/hyper-v/New-VFD.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V -ms.date: 12/20/2016 +ms.date: ms.date: 06/21/2023 online version: https://learn.microsoft.com/powershell/module/hyper-v/new-vfd?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VFD @@ -21,29 +21,33 @@ New-VFD [-Path] [-CimSession ] [-ComputerName New-VFD "c:\floppy.vfd" + +```powershell +New-VFD "C:\floppy.vfd" ``` -Creates a new virtual floppy drive at the specified path. -This can be then used in the **Set-VMFloppyDiskDrive** cmdlet to attach the virtual floppy disk to a virtual machine. +Creates a new virtual floppy drive at the specified path. This can be then used in the +`Set-VMFloppyDiskDrive` cmdlet to attach the virtual floppy disk to a virtual machine. ## PARAMETERS ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml Type: CimSession[] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -53,15 +57,15 @@ Accept wildcard characters: False ``` ### -ComputerName + Specifies one or more virtual machine hosts on which the virtual floppy disk is to be created. -NetBIOS names, IP addresses, and fully qualified domain names are allowable. -The default is the local computer. -Use localhost or a dot (.) to specify the local computer explicitly. +NetBIOS names, IP addresses, and fully qualified domain names are allowable. The default is the +local computer. Use localhost or a dot (.) to specify the local computer explicitly. ```yaml Type: String[] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -71,6 +75,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -86,13 +91,14 @@ Accept wildcard characters: False ``` ### -Credential -Specifies one or more user accounts that have permission to perform this action. -The default is the current user. + +Specifies one or more user accounts that have permission to perform this action. The default is the +current user. ```yaml Type: PSCredential[] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -102,12 +108,13 @@ Accept wildcard characters: False ``` ### -Path + Specifies the path to the new virtual floppy disk files to be created. ```yaml Type: String[] Parameter Sets: (All) -Aliases: +Aliases: Required: True Position: 0 @@ -117,8 +124,8 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet isn't run. ```yaml Type: SwitchParameter @@ -127,16 +134,22 @@ Aliases: wi Required: False Position: Named -Default value: False +Default value: None Accept pipeline input: False Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS +### System.String[] + ## OUTPUTS ### System.IO.FileInfo @@ -145,3 +158,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS +- [Set-VMFloppyDiskDrive](set-vmfloppydiskdrive.md) From 3d5b7abada4b05c0511450d93ff6dba9f997b74e Mon Sep 17 00:00:00 2001 From: Xelu86 <103963494+Xelu86@users.noreply.github.com> Date: Thu, 20 Jul 2023 16:31:46 -0400 Subject: [PATCH 852/965] Updated command set --- .../hyper-v/Get-VHDSnapshot.md | 78 +++++++++------- .../hyper-v/Remove-VHDSnapshot.md | 89 ++++++++++++------- 2 files changed, 99 insertions(+), 68 deletions(-) diff --git a/docset/winserver2022-ps/hyper-v/Get-VHDSnapshot.md b/docset/winserver2022-ps/hyper-v/Get-VHDSnapshot.md index 0ac2930603..9da2cc9c2b 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VHDSnapshot.md +++ b/docset/winserver2022-ps/hyper-v/Get-VHDSnapshot.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V -ms.date: 12/20/2016 +ms.date: ms.date: 06/21/2023 online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vhdsnapshot?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VHDSnapshot @@ -16,35 +16,42 @@ Gets information about a checkpoint in a VHD set. ## SYNTAX ``` -Get-VHDSnapshot [-Path] [-GetParentPaths] [-SnapshotId ] [-CimSession ] - [-ComputerName ] [-Credential ] [] +Get-VHDSnapshot [-Path] [-GetParentPaths] [-SnapshotId ] + [-CimSession ] [-ComputerName ] [-Credential ] + [] ``` ## DESCRIPTION -The **Get-VHDSnapshot** cmdlet gets information about a checkpoint in a virtual hard disk (VHD) set file. + +The `Get-VHDSnapshot` cmdlet gets information about a checkpoint in a virtual hard disk (VHD) set +file. Checkpoint replaces the previous term, snapshot. ## EXAMPLES ### Example 1: Get information about a checkpoint -``` -PS C:\> Get-VHDSnapshot -Path "Data01.vhds" -SnapshotId 6c87351a-a39a-4581-b231-6d693b26485d + +```powershell +Get-VHDSnapshot -Path "Data01.vhds" -SnapshotId 6c87351a-a39a-4581-b231-6d693b26485d ``` -This command gets information about the checkpoint that has the specified ID from the VHD set file named Data01.vhds in the current working folder. +This command gets information about the checkpoint that has the specified ID from the VHD set file +named Data01.vhds in the current working folder. ## PARAMETERS ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml Type: CimSession[] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -54,15 +61,15 @@ Accept wildcard characters: False ``` ### -ComputerName -Specifies one or more Hyper-V hosts that run this command. -NetBIOS names, IP addresses, and fully qualified domain names are allowable. -The default is the local computer. -Use localhost or a dot (.) to specify the local computer explicitly. + +Specifies one or more Hyper-V hosts that run this command. NetBIOS names, IP addresses, and fully +qualified domain names are allowable. The default is the local computer. Use localhost or a dot (.) +to specify the local computer explicitly. ```yaml Type: String[] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -72,13 +79,14 @@ Accept wildcard characters: False ``` ### -Credential -Specifies one or more user accounts that have permission to perform this action. -The default is the current user. + +Specifies one or more user accounts that have permission to perform this action. The default is the +current user. ```yaml Type: PSCredential[] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -88,12 +96,13 @@ Accept wildcard characters: False ``` ### -GetParentPaths + Gets the paths of all files on which this VHD checkpoint depends. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -103,8 +112,10 @@ Accept wildcard characters: False ``` ### -Path -Specifies an array of paths of VHD set files from which this cmdlet gets checkpoints. -If you specify a file name or relative path, the cmdlet determines the full path relative to the current working folder. + +Specifies an array of paths of VHD set files from which this cmdlet gets checkpoints. If you specify +a file name or relative path, the cmdlet determines the full path relative to the current working +folder. ```yaml Type: String[] @@ -119,12 +130,13 @@ Accept wildcard characters: False ``` ### -SnapshotId + Specifies an array of unique IDs of VHD checkpoints that this cmdlet gets from a VHD set file. ```yaml Type: Guid[] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -134,26 +146,24 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS +### System.String[] + ## OUTPUTS ### Microsoft.Vhd.PowerShell.VHDSnapshotInfo + This cmdlet returns a **VHDSnapshotInfo** object. ## NOTES ## RELATED LINKS -[Export-VMSnapshot](./Export-VMSnapshot.md) - -[Get-VMSnapshot](./Get-VMSnapshot.md) - -[Rename-VMSnapshot](./Rename-VMSnapshot.md) - -[Restore-VMSnapshot](./Restore-VMSnapshot.md) - -[Get-VHDSet](./Get-VHDSet.md) - +- [Remove-VHDSnapshot](remove-vhdsnapshot.md) diff --git a/docset/winserver2022-ps/hyper-v/Remove-VHDSnapshot.md b/docset/winserver2022-ps/hyper-v/Remove-VHDSnapshot.md index a7eade58cb..af961d272b 100644 --- a/docset/winserver2022-ps/hyper-v/Remove-VHDSnapshot.md +++ b/docset/winserver2022-ps/hyper-v/Remove-VHDSnapshot.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V -ms.date: 12/20/2016 +ms.date: ms.date: 06/21/2023 online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vhdsnapshot?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VHDSnapshot @@ -16,42 +16,49 @@ Removes a checkpoint from a VHD set file. ## SYNTAX ### Path (Default) + ``` Remove-VHDSnapshot [-Path] [-PersistReferencePoint] -SnapshotId [-AsJob] - [-CimSession ] [-ComputerName ] [-Credential ] [-WhatIf] [-Confirm] - [] + [-CimSession ] [-ComputerName ] [-Credential ] [-WhatIf] + [-Confirm] [] ``` ### VHDSnapshot + ``` Remove-VHDSnapshot [-PersistReferencePoint] [-VHDSnapshot] [-AsJob] - [-CimSession ] [-ComputerName ] [-Credential ] [-WhatIf] [-Confirm] - [] + [-CimSession ] [-ComputerName ] [-Credential ] [-WhatIf] + [-Confirm] [] ``` ## DESCRIPTION -The **Remove-VHDSnapshot** cmdlet removes a virtual hard disk (VHD) checkpoint from a VHD set file. + +The `Remove-VHDSnapshot` cmdlet removes a virtual hard disk (VHD) checkpoint from a VHD set file. Checkpoint replaces the previous term, snapshot. ## EXAMPLES + ### Example 1: Remove a checkpoint -``` -PS C:\> Remove-VHDSnapshot -Path "Data01.vhds" -SnapshotId 6c87351a-a39a-4581-b231-6d693b26485d + +```powershell +Remove-VHDSnapshot -Path "Data01.vhds" -SnapshotId 6c87351a-a39a-4581-b231-6d693b26485d ``` -This command removes the checkpoint that has the specified ID from the VHD set file named Data01.vhds. +This command removes the checkpoint that has the specified ID from the VHD set file named +Data01.vhds. ## PARAMETERS ### -AsJob + Runs the cmdlet as a background job. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -61,14 +68,16 @@ Accept wildcard characters: False ``` ### -CimSession -Runs the cmdlet in a remote session or on a remote computer. -Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. -The default is the current session on the local computer. + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. ```yaml Type: CimSession[] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -78,15 +87,15 @@ Accept wildcard characters: False ``` ### -ComputerName -Specifies one or more Hyper-V hosts that run this cmdlet. -NetBIOS names, IP addresses, and fully qualified domain names are allowable. -The default is the local computer. -Use localhost or a dot (.) to specify the local computer explicitly. + +Specifies one or more Hyper-V hosts that run this cmdlet. NetBIOS names, IP addresses, and fully +qualified domain names are allowable. The default is the local computer. Use localhost or a dot (.) +to specify the local computer explicitly. ```yaml Type: String[] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -96,6 +105,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -111,13 +121,14 @@ Accept wildcard characters: False ``` ### -Credential -Specifies one or more user accounts that have permission to perform this action. -The default is the current user. + +Specifies one or more user accounts that have permission to perform this action. The default is the +current user. ```yaml Type: PSCredential[] Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -127,9 +138,10 @@ Accept wildcard characters: False ``` ### -Path -Specifies an array of paths of VHD set files. -This cmdlet removes a checkpoint from the files that this parameter specifies. -If you specify a file name or relative path, the cmdlet determines the full path relative to the current working folder. + +Specifies an array of paths of VHD set files. This cmdlet removes a checkpoint from the files that +this parameter specifies. If you specify a file name or relative path, the cmdlet determines the +full path relative to the current working folder. ```yaml Type: String[] @@ -144,12 +156,13 @@ Accept wildcard characters: False ``` ### -PersistReferencePoint + Indicates that this cmdlet persists an RCT-only reference point after it deletes the checkpoint. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: +Aliases: Required: False Position: Named @@ -159,12 +172,13 @@ Accept wildcard characters: False ``` ### -SnapshotId + Specifies an array of unique IDs of VHD checkpoint that this cmdlet removes from the VHD set file. ```yaml Type: Guid[] Parameter Sets: Path -Aliases: +Aliases: Required: True Position: Named @@ -174,12 +188,13 @@ Accept wildcard characters: False ``` ### -VHDSnapshot + Specifies an array of VHD checkpoints that this cmdlet removes from a VHD set file. ```yaml Type: VHDSnapshotInfo[] Parameter Sets: VHDSnapshot -Aliases: +Aliases: Required: True Position: 0 @@ -189,8 +204,8 @@ Accept wildcard characters: False ``` ### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. + +Shows what would happen if the cmdlet runs. The cmdlet isn't run. ```yaml Type: SwitchParameter @@ -199,16 +214,23 @@ Aliases: wi Required: False Position: Named -Default value: False +Default value: None Accept pipeline input: False Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS +### System.String[] + +### Microsoft.Vhd.PowerShell.VHDSnapshotInfo[] + ## OUTPUTS ### Microsoft.Vhd.PowerShell.VHDSnapshotInfo[] @@ -217,5 +239,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Get-VHDSnapshot](./Get-VHDSnapshot.md) - +- [Get-VHDSnapshot](get-vhdsnapshot.md) From 9691340b50c58880904e944b8d97b52dcdbc2b34 Mon Sep 17 00:00:00 2001 From: Dimitriy Ryazantcev Date: Tue, 25 Jul 2023 11:34:58 +0300 Subject: [PATCH 853/965] Update Set-WinUserLanguageList.md --- .../winserver2019-ps/international/Set-WinUserLanguageList.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/international/Set-WinUserLanguageList.md b/docset/winserver2019-ps/international/Set-WinUserLanguageList.md index 3201b12f5e..739e153a83 100644 --- a/docset/winserver2019-ps/international/Set-WinUserLanguageList.md +++ b/docset/winserver2019-ps/international/Set-WinUserLanguageList.md @@ -144,7 +144,7 @@ The name of the language in the current Windows display language. The writing system of the language. - **Input methods** (READ/WRITE). A list of input method Tablet Input Panel (TIP) strings that are enabled for this language. -The enabled input methods are listed in the format `Language ID: Keyboard layout ID`. +The enabled input methods are listed in the format `Language ID: Keyboard layout ID`. See [Default input profiles (input locales) in Windows](/windows-hardware/manufacture/desktop/default-input-locales-for-windows-language-packs). - **Handwriting recognition input mode** (READ/WRITE). This value is either 0 (freehand) or 1 (write each character separately). From 8dd0a7a3533db4dab6e3ccfd9fe2e5ec479ce968 Mon Sep 17 00:00:00 2001 From: Dimitriy Ryazantcev Date: Tue, 25 Jul 2023 11:35:41 +0300 Subject: [PATCH 854/965] Update Set-WinUserLanguageList.md --- .../winserver2012r2-ps/international/Set-WinUserLanguageList.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2012r2-ps/international/Set-WinUserLanguageList.md b/docset/winserver2012r2-ps/international/Set-WinUserLanguageList.md index 59ccc89563..fbe71ab19a 100644 --- a/docset/winserver2012r2-ps/international/Set-WinUserLanguageList.md +++ b/docset/winserver2012r2-ps/international/Set-WinUserLanguageList.md @@ -122,7 +122,7 @@ The language object contains the following properties: --**English name** (LP database) (READ). The name of the language in English. --**Localized name** (LP database) (READ). The name of the language in the current Windows display language. --**Script** (LP database) (READ). The writing system of the language. ---**Input methods** (READ/WRITE). A list of input method Tablet Input Panel (TIP) strings that are enabled for this language. The enabled input methods are listed in the format Language ID: Keyboard layout ID. +--**Input methods** (READ/WRITE). A list of input method Tablet Input Panel (TIP) strings that are enabled for this language. The enabled input methods are listed in the format Language ID: Keyboard layout ID. See [Default input profiles (input locales) in Windows](/windows-hardware/manufacture/desktop/default-input-locales-for-windows-language-packs). --**Handwriting recognition input mode** (READ/WRITE). This value is either 0 (freehand) or 1 (write each character separately). ## OUTPUTS From 39c37f423b5c61eccf33ae476516b30253322299 Mon Sep 17 00:00:00 2001 From: Dimitriy Ryazantcev Date: Tue, 25 Jul 2023 11:36:39 +0300 Subject: [PATCH 855/965] Update Set-WinUserLanguageList.md --- .../winserver2016-ps/international/Set-WinUserLanguageList.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2016-ps/international/Set-WinUserLanguageList.md b/docset/winserver2016-ps/international/Set-WinUserLanguageList.md index 900dc4cc26..59fbb8dcfc 100644 --- a/docset/winserver2016-ps/international/Set-WinUserLanguageList.md +++ b/docset/winserver2016-ps/international/Set-WinUserLanguageList.md @@ -144,7 +144,7 @@ The name of the language in the current Windows display language. The writing system of the language. - **Input methods** (READ/WRITE). A list of input method Tablet Input Panel (TIP) strings that are enabled for this language. -The enabled input methods are listed in the format `Language ID: Keyboard layout ID`. +The enabled input methods are listed in the format `Language ID: Keyboard layout ID`. See [Default input profiles (input locales) in Windows](/windows-hardware/manufacture/desktop/default-input-locales-for-windows-language-packs). - **Handwriting recognition input mode** (READ/WRITE). This value is either 0 (freehand) or 1 (write each character separately). From 73fb2704c07e7bb524718cfb7d7032ebe7594e82 Mon Sep 17 00:00:00 2001 From: Dimitriy Ryazantcev Date: Tue, 25 Jul 2023 11:38:03 +0300 Subject: [PATCH 856/965] Update Set-WinUserLanguageList.md --- .../winserver2012-ps/international/Set-WinUserLanguageList.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2012-ps/international/Set-WinUserLanguageList.md b/docset/winserver2012-ps/international/Set-WinUserLanguageList.md index b89513e10b..3a3f9369ca 100644 --- a/docset/winserver2012-ps/international/Set-WinUserLanguageList.md +++ b/docset/winserver2012-ps/international/Set-WinUserLanguageList.md @@ -120,7 +120,7 @@ The language object contains the following properties: - English name (LP database) (READ). The name of the language in English. - Localized name (LP database) (READ). The name of the language in the current Windows display language. - Script (LP database) (READ). The writing system of the language. -- Input methods (READ/WRITE). A list of input method Tablet Input Panel (TIP) strings that are enabled for this language. The enabled input methods are listed in the format Language ID: Keyboard layout ID. +- Input methods (READ/WRITE). A list of input method Tablet Input Panel (TIP) strings that are enabled for this language. The enabled input methods are listed in the format `Language ID:Keyboard layout ID`. See [Default input profiles (input locales) in Windows](/windows-hardware/manufacture/desktop/default-input-locales-for-windows-language-packs). - Handwriting recognition input mode (READ/WRITE). This value is either 0 (freehand) or 1 (write each character separately). ## OUTPUTS From 8193f7f891a7440bfd3498ac2a8e94afead275b8 Mon Sep 17 00:00:00 2001 From: Dimitriy Ryazantcev Date: Tue, 25 Jul 2023 11:38:34 +0300 Subject: [PATCH 857/965] Update Set-WinUserLanguageList.md --- .../winserver2012r2-ps/international/Set-WinUserLanguageList.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2012r2-ps/international/Set-WinUserLanguageList.md b/docset/winserver2012r2-ps/international/Set-WinUserLanguageList.md index fbe71ab19a..1acc1a5fb5 100644 --- a/docset/winserver2012r2-ps/international/Set-WinUserLanguageList.md +++ b/docset/winserver2012r2-ps/international/Set-WinUserLanguageList.md @@ -122,7 +122,7 @@ The language object contains the following properties: --**English name** (LP database) (READ). The name of the language in English. --**Localized name** (LP database) (READ). The name of the language in the current Windows display language. --**Script** (LP database) (READ). The writing system of the language. ---**Input methods** (READ/WRITE). A list of input method Tablet Input Panel (TIP) strings that are enabled for this language. The enabled input methods are listed in the format Language ID: Keyboard layout ID. See [Default input profiles (input locales) in Windows](/windows-hardware/manufacture/desktop/default-input-locales-for-windows-language-packs). +--**Input methods** (READ/WRITE). A list of input method Tablet Input Panel (TIP) strings that are enabled for this language. The enabled input methods are listed in the format `Language ID:Keyboard layout ID`. See [Default input profiles (input locales) in Windows](/windows-hardware/manufacture/desktop/default-input-locales-for-windows-language-packs). --**Handwriting recognition input mode** (READ/WRITE). This value is either 0 (freehand) or 1 (write each character separately). ## OUTPUTS From a86f6b82a515344855949044197d4b45a66a30c1 Mon Sep 17 00:00:00 2001 From: Dimitriy Ryazantcev Date: Tue, 25 Jul 2023 11:38:57 +0300 Subject: [PATCH 858/965] Update Set-WinUserLanguageList.md --- .../winserver2016-ps/international/Set-WinUserLanguageList.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2016-ps/international/Set-WinUserLanguageList.md b/docset/winserver2016-ps/international/Set-WinUserLanguageList.md index 59fbb8dcfc..82f6d3a531 100644 --- a/docset/winserver2016-ps/international/Set-WinUserLanguageList.md +++ b/docset/winserver2016-ps/international/Set-WinUserLanguageList.md @@ -144,7 +144,7 @@ The name of the language in the current Windows display language. The writing system of the language. - **Input methods** (READ/WRITE). A list of input method Tablet Input Panel (TIP) strings that are enabled for this language. -The enabled input methods are listed in the format `Language ID: Keyboard layout ID`. See [Default input profiles (input locales) in Windows](/windows-hardware/manufacture/desktop/default-input-locales-for-windows-language-packs). +The enabled input methods are listed in the format `Language ID:Keyboard layout ID`. See [Default input profiles (input locales) in Windows](/windows-hardware/manufacture/desktop/default-input-locales-for-windows-language-packs). - **Handwriting recognition input mode** (READ/WRITE). This value is either 0 (freehand) or 1 (write each character separately). From 911c892a8e849fff612b56ba9f286d64928d7176 Mon Sep 17 00:00:00 2001 From: Dimitriy Ryazantcev Date: Tue, 25 Jul 2023 11:39:30 +0300 Subject: [PATCH 859/965] Update Set-WinUserLanguageList.md --- .../winserver2019-ps/international/Set-WinUserLanguageList.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/international/Set-WinUserLanguageList.md b/docset/winserver2019-ps/international/Set-WinUserLanguageList.md index 739e153a83..4b64e52328 100644 --- a/docset/winserver2019-ps/international/Set-WinUserLanguageList.md +++ b/docset/winserver2019-ps/international/Set-WinUserLanguageList.md @@ -144,7 +144,7 @@ The name of the language in the current Windows display language. The writing system of the language. - **Input methods** (READ/WRITE). A list of input method Tablet Input Panel (TIP) strings that are enabled for this language. -The enabled input methods are listed in the format `Language ID: Keyboard layout ID`. See [Default input profiles (input locales) in Windows](/windows-hardware/manufacture/desktop/default-input-locales-for-windows-language-packs). +The enabled input methods are listed in the format `Language ID:Keyboard layout ID`. See [Default input profiles (input locales) in Windows](/windows-hardware/manufacture/desktop/default-input-locales-for-windows-language-packs). - **Handwriting recognition input mode** (READ/WRITE). This value is either 0 (freehand) or 1 (write each character separately). From 4ca0c09c773408b28d4d4d548c298990b1fd8c6e Mon Sep 17 00:00:00 2001 From: Dimitriy Ryazantcev Date: Tue, 25 Jul 2023 11:39:59 +0300 Subject: [PATCH 860/965] Update Set-WinUserLanguageList.md --- .../winserver2012-ps/international/Set-WinUserLanguageList.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2012-ps/international/Set-WinUserLanguageList.md b/docset/winserver2012-ps/international/Set-WinUserLanguageList.md index 3a3f9369ca..7fc62816c3 100644 --- a/docset/winserver2012-ps/international/Set-WinUserLanguageList.md +++ b/docset/winserver2012-ps/international/Set-WinUserLanguageList.md @@ -115,7 +115,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable A list of **WinUserLanguage** objects that contain one or more languages and associated properties from the current user account's language list. The language object contains the following properties: -- BCP-47 (READ). A standard language tag that is used to identify languages. For more information, see the Internet Engineering Task Force (IETF) BCP 47 RFChttp://go.microsoft.com/fwlink/?LinkID=242207. +- BCP-47 (READ). A standard language tag that is used to identify languages. For more information, see the [Internet Engineering Task Force (IETF) BCP 47 RFC](https://go.microsoft.com/fwlink/?LinkID=242207). - Autonym (LP database) (READ). The name of the language in the language itself. - English name (LP database) (READ). The name of the language in English. - Localized name (LP database) (READ). The name of the language in the current Windows display language. From 0b5c9aacb292fd22272d3c2f67bf1613aa259c5d Mon Sep 17 00:00:00 2001 From: Dimitriy Ryazantcev Date: Tue, 25 Jul 2023 11:40:14 +0300 Subject: [PATCH 861/965] Update Set-WinUserLanguageList.md --- .../winserver2012r2-ps/international/Set-WinUserLanguageList.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2012r2-ps/international/Set-WinUserLanguageList.md b/docset/winserver2012r2-ps/international/Set-WinUserLanguageList.md index 1acc1a5fb5..ce7e13fd83 100644 --- a/docset/winserver2012r2-ps/international/Set-WinUserLanguageList.md +++ b/docset/winserver2012r2-ps/international/Set-WinUserLanguageList.md @@ -117,7 +117,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable A list of *WinUserLanguage* objects that contain one or more languages and associated properties from the current user account's language list. The language object contains the following properties: ---**BCP-47** (READ). A standard language tag that is used to identify languages. For more information, see the Internet Engineering Task Force (IETF) BCP 47 RFChttp://go.microsoft.com/fwlink/?LinkID=242207. +--**BCP-47** (READ). A standard language tag that is used to identify languages. For more information, see the [Internet Engineering Task Force (IETF) BCP 47 RFC](https://go.microsoft.com/fwlink/?LinkID=242207). --**Autonym** (LP database) (READ). The name of the language in the language itself. --**English name** (LP database) (READ). The name of the language in English. --**Localized name** (LP database) (READ). The name of the language in the current Windows display language. From a07d3f63bf84767e56bb9a63db60e35fd0ca27eb Mon Sep 17 00:00:00 2001 From: Christoph Petersen Date: Tue, 25 Jul 2023 11:50:40 +0200 Subject: [PATCH 862/965] Fixed copy review suggestions --- docset/winserver2022-ps/failoverclusters/New-Cluster.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/failoverclusters/New-Cluster.md b/docset/winserver2022-ps/failoverclusters/New-Cluster.md index 7a82d8b4d2..5dca9a2fbd 100644 --- a/docset/winserver2022-ps/failoverclusters/New-Cluster.md +++ b/docset/winserver2022-ps/failoverclusters/New-Cluster.md @@ -172,7 +172,7 @@ Specifies the network configuration used to determine IP address settings. The acceptable values for this parameter are: -- Automatic: Automatically detects the appropriate setting. If SQL Server is running in Azure, uses `Distributed`. If SQL Server is running on-premises, uses `Singleton`. (Default setting) +- Automatic: Automatically detects the appropriate setting. If SQL Server is running in Azure, it uses `Distributed`. If SQL Server is running on-premises, uses `Singleton`. (Default setting) - Singleton: The traditional method of DHCP or static IP address. - Distributed: Uses a Distributed Network Name by using Node IP addresses. From e0c74159e0dc41d677dd3a548bec76dbdc800ab5 Mon Sep 17 00:00:00 2001 From: Xelu86 <103963494+Xelu86@users.noreply.github.com> Date: Wed, 26 Jul 2023 09:47:03 -0400 Subject: [PATCH 863/965] Text formatting, removed duplicate text --- docset/winserver2022-ps/hyper-v/Get-VHDSnapshot.md | 2 +- docset/winserver2022-ps/hyper-v/Remove-VHDSnapshot.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/hyper-v/Get-VHDSnapshot.md b/docset/winserver2022-ps/hyper-v/Get-VHDSnapshot.md index 9da2cc9c2b..c47b011451 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VHDSnapshot.md +++ b/docset/winserver2022-ps/hyper-v/Get-VHDSnapshot.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V -ms.date: ms.date: 06/21/2023 +ms.date: 06/21/2023 online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vhdsnapshot?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-VHDSnapshot diff --git a/docset/winserver2022-ps/hyper-v/Remove-VHDSnapshot.md b/docset/winserver2022-ps/hyper-v/Remove-VHDSnapshot.md index af961d272b..63e7f440f7 100644 --- a/docset/winserver2022-ps/hyper-v/Remove-VHDSnapshot.md +++ b/docset/winserver2022-ps/hyper-v/Remove-VHDSnapshot.md @@ -39,7 +39,6 @@ Checkpoint replaces the previous term, snapshot. ## EXAMPLES - ### Example 1: Remove a checkpoint ```powershell @@ -220,6 +219,7 @@ Accept wildcard characters: False ``` ### CommonParameters + This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see From 41a76ed57874075e95ca9690b3002d2b34e67b5d Mon Sep 17 00:00:00 2001 From: Xelu86 <103963494+Xelu86@users.noreply.github.com> Date: Wed, 26 Jul 2023 09:48:20 -0400 Subject: [PATCH 864/965] Text formatting, removed duplicate text --- docset/winserver2022-ps/hyper-v/Remove-VHDSnapshot.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/hyper-v/Remove-VHDSnapshot.md b/docset/winserver2022-ps/hyper-v/Remove-VHDSnapshot.md index 63e7f440f7..fe999de171 100644 --- a/docset/winserver2022-ps/hyper-v/Remove-VHDSnapshot.md +++ b/docset/winserver2022-ps/hyper-v/Remove-VHDSnapshot.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V -ms.date: ms.date: 06/21/2023 +ms.date: 06/21/2023 online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vhdsnapshot?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-VHDSnapshot From ee2da282c34ab38f8b1641597925106b2a8a90a3 Mon Sep 17 00:00:00 2001 From: Xelu86 <103963494+Xelu86@users.noreply.github.com> Date: Wed, 26 Jul 2023 10:16:49 -0400 Subject: [PATCH 865/965] Text formatting, removed duplicate text --- docset/winserver2022-ps/hyper-v/New-VFD.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/hyper-v/New-VFD.md b/docset/winserver2022-ps/hyper-v/New-VFD.md index 25e463aac6..3b17bd1234 100644 --- a/docset/winserver2022-ps/hyper-v/New-VFD.md +++ b/docset/winserver2022-ps/hyper-v/New-VFD.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml Module Name: Hyper-V -ms.date: ms.date: 06/21/2023 +ms.date: 06/21/2023 online version: https://learn.microsoft.com/powershell/module/hyper-v/new-vfd?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-VFD From 87e80523f61ccdfa1ccffbdca90fa7b9031adcf8 Mon Sep 17 00:00:00 2001 From: Xelu86 <103963494+Xelu86@users.noreply.github.com> Date: Thu, 27 Jul 2023 19:34:48 -0400 Subject: [PATCH 866/965] Applied text formatting --- docset/winserver2022-ps/hyper-v/Get-VHDSnapshot.md | 6 +++--- .../winserver2022-ps/hyper-v/Remove-VHDSnapshot.md | 14 +++++++------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/docset/winserver2022-ps/hyper-v/Get-VHDSnapshot.md b/docset/winserver2022-ps/hyper-v/Get-VHDSnapshot.md index c47b011451..edce0c0128 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VHDSnapshot.md +++ b/docset/winserver2022-ps/hyper-v/Get-VHDSnapshot.md @@ -37,7 +37,7 @@ Get-VHDSnapshot -Path "Data01.vhds" -SnapshotId 6c87351a-a39a-4581-b231-6d693b26 ``` This command gets information about the checkpoint that has the specified ID from the VHD set file -named Data01.vhds in the current working folder. +named `Data01.vhds` in the current working folder. ## PARAMETERS @@ -63,8 +63,8 @@ Accept wildcard characters: False ### -ComputerName Specifies one or more Hyper-V hosts that run this command. NetBIOS names, IP addresses, and fully -qualified domain names are allowable. The default is the local computer. Use localhost or a dot (.) -to specify the local computer explicitly. +qualified domain names are allowable. The default is the local computer. Use `localhost` or a dot +(`.`) to specify the local computer explicitly. ```yaml Type: String[] diff --git a/docset/winserver2022-ps/hyper-v/Remove-VHDSnapshot.md b/docset/winserver2022-ps/hyper-v/Remove-VHDSnapshot.md index fe999de171..36931cc81a 100644 --- a/docset/winserver2022-ps/hyper-v/Remove-VHDSnapshot.md +++ b/docset/winserver2022-ps/hyper-v/Remove-VHDSnapshot.md @@ -19,16 +19,16 @@ Removes a checkpoint from a VHD set file. ``` Remove-VHDSnapshot [-Path] [-PersistReferencePoint] -SnapshotId [-AsJob] - [-CimSession ] [-ComputerName ] [-Credential ] [-WhatIf] - [-Confirm] [] + [-CimSession ] [-ComputerName ] [-Credential ] + [-WhatIf] [-Confirm] [] ``` ### VHDSnapshot ``` Remove-VHDSnapshot [-PersistReferencePoint] [-VHDSnapshot] [-AsJob] - [-CimSession ] [-ComputerName ] [-Credential ] [-WhatIf] - [-Confirm] [] + [-CimSession ] [-ComputerName ] [-Credential ] + [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -46,7 +46,7 @@ Remove-VHDSnapshot -Path "Data01.vhds" -SnapshotId 6c87351a-a39a-4581-b231-6d693 ``` This command removes the checkpoint that has the specified ID from the VHD set file named -Data01.vhds. +`Data01.vhds`. ## PARAMETERS @@ -88,8 +88,8 @@ Accept wildcard characters: False ### -ComputerName Specifies one or more Hyper-V hosts that run this cmdlet. NetBIOS names, IP addresses, and fully -qualified domain names are allowable. The default is the local computer. Use localhost or a dot (.) -to specify the local computer explicitly. +qualified domain names are allowable. The default is the local computer. Use `localhost` or a dot +(`.`) to specify the local computer explicitly. ```yaml Type: String[] From 8ba8aec3bb24d49fa5019ac659f4647cf1816b7d Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Fri, 16 Jun 2023 16:20:07 +0100 Subject: [PATCH 867/965] Initial commit --- .../Get-ClusterAffinityRule.md | 129 +++++++++++ .../New-ClusterAffinityRule.md | 145 +++++++++++++ .../Remove-ClusterAffinityRule.md | 199 +++++++++++++++++ .../Set-ClusterAffinityRule.md | 201 ++++++++++++++++++ 4 files changed, 674 insertions(+) create mode 100644 docset/winserver2022-ps/failoverclusters/Get-ClusterAffinityRule.md create mode 100644 docset/winserver2022-ps/failoverclusters/New-ClusterAffinityRule.md create mode 100644 docset/winserver2022-ps/failoverclusters/Remove-ClusterAffinityRule.md create mode 100644 docset/winserver2022-ps/failoverclusters/Set-ClusterAffinityRule.md diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterAffinityRule.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterAffinityRule.md new file mode 100644 index 0000000000..871f33b832 --- /dev/null +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterAffinityRule.md @@ -0,0 +1,129 @@ +--- +description: Get-ClusterAffinityRule +external help file: ClusterAffinityRule.cdxml-help.xml +Module Name: FailoverClusters +ms.date: 07/26/2022 +online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusteraffinityrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +title: Get-ClusterAffinityRule +--- + +# Get-ClusterAffinityRule + +## SYNOPSIS +This cmdlet is used to display the given rule and what type it is. + +## SYNTAX + +``` +Get-ClusterAffinityRule [[-Name] ] [-CimSession ] [-ThrottleLimit ] +[-AsJob] [] +``` + +## DESCRIPTION +This cmdlet is used to display the given rule and what type it is. If -Name is not specified, it +will list all rules. + +## EXAMPLES + +### Example 1 +```powershell +Get-ClusterAffinityRule -Name -Cluster Cluster1 +``` +## PARAMETERS + +### -AsJob +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. + +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. + +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CimSession +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. + +```yaml +Type: CimSession[] +Parameter Sets: (All) +Aliases: Session + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +The name of the desired affinity rule. if this is not provided, it will list all the rules. + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ThrottleLimit +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String[] + +## OUTPUTS + +### Microsoft.Management.Infrastructure.CimInstance + +### Microsoft.Management.Infrastructure.CimInstance#root/MSCLUSTER/MSCluster_AffinityRule + +## NOTES + +## RELATED LINKS diff --git a/docset/winserver2022-ps/failoverclusters/New-ClusterAffinityRule.md b/docset/winserver2022-ps/failoverclusters/New-ClusterAffinityRule.md new file mode 100644 index 0000000000..bdb22cebed --- /dev/null +++ b/docset/winserver2022-ps/failoverclusters/New-ClusterAffinityRule.md @@ -0,0 +1,145 @@ +--- +description: New-ClusterAffinityRule +external help file: ClusterAffinityRule.cdxml-help.xml +Module Name: FailoverClusters +ms.date: 07/26/2022 +online version: https://docs.microsoft.com/powershell/module/failoverclusters/new-clusteraffinityrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +title: New-ClusterAffinityRule +--- + +# New-ClusterAffinityRule + +## SYNOPSIS +Creates new affinity rules. + +## SYNTAX + +``` +New-ClusterAffinityRule [-Name] [-RuleType ] [-CimSession ] + [-ThrottleLimit ] [-AsJob] [] +``` + +## DESCRIPTION +This cmdlet allows the creation of new affinity rules. There are four main types when creating a new +rule: SameFaultDomain | SameNode | DifferentFaultDomain | DifferentNode + +## EXAMPLES + +### Example 1 +```powershell +New-ClusterAffinityRule -Name -RuleType SameFaultDomain -Cluster Cluster1 +``` +## PARAMETERS + +### -AsJob +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. + +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. + +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CimSession +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. + +```yaml +Type: CimSession[] +Parameter Sets: (All) +Aliases: Session + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +The name of the rule to be created. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -RuleType +The type of the rule to be created. + +```yaml +Type: RuleType +Parameter Sets: (All) +Aliases: +Accepted values: SameFaultDomain, SameNode, DifferentFaultDomain, DifferentNode + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ThrottleLimit +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None + +## OUTPUTS + +### Microsoft.Management.Infrastructure.CimInstance + +### Microsoft.Management.Infrastructure.CimInstance#root/MSCluster/MSCluster_AffinityRule + +## NOTES + +## RELATED LINKS diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterAffinityRule.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterAffinityRule.md new file mode 100644 index 0000000000..08823ad27b --- /dev/null +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterAffinityRule.md @@ -0,0 +1,199 @@ +--- +description: Remove-ClusterAffinityRule +external help file: ClusterAffinityRule.cdxml-help.xml +Module Name: FailoverClusters +ms.date: 07/26/2022 +online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clusteraffinityrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +title: Remove-ClusterAffinityRule +--- + +# Remove-ClusterAffinityRule + +## SYNOPSIS +Removes a specified affinity rule. + +## SYNTAX + +### Query (cdxml) (Default) +``` +Remove-ClusterAffinityRule [[-Name] ] [-CimSession ] [-ThrottleLimit ] [-AsJob] + [-PassThru] [-WhatIf] [-Confirm] [] +``` + +### InputObject (cdxml) +``` +Remove-ClusterAffinityRule -InputObject [-CimSession ] [-ThrottleLimit ] + [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Removes a specified affinity rule. + +## EXAMPLES + +### Example 1 +```powershell +Remove-ClusterAffinityRule -Name -Cluster Cluster1 +``` +## PARAMETERS + +### -AsJob +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. + +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. + +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CimSession +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. + +```yaml +Type: CimSession[] +Parameter Sets: (All) +Aliases: Session + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Specifies the input object that is used in a pipeline command. + +```yaml +Type: CimInstance[] +Parameter Sets: InputObject (cdxml) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +The name of the affinity rule to delete. + +```yaml +Type: String[] +Parameter Sets: Query (cdxml) +Aliases: + +Required: False +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -PassThru +Returns an object representing the item with which you are working. +By default, this cmdlet does not generate any output. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ThrottleLimit +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String[] + +### Microsoft.Management.Infrastructure.CimInstance[] + +## OUTPUTS + +### Microsoft.Management.Infrastructure.CimInstance + +### Microsoft.Management.Infrastructure.CimInstance#root/MSCLUSTER/MSCluster_AffinityRule + +## NOTES + +## RELATED LINKS diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterAffinityRule.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterAffinityRule.md new file mode 100644 index 0000000000..ccc0a5e24a --- /dev/null +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterAffinityRule.md @@ -0,0 +1,201 @@ +--- +description: Set-ClusterAffinityRule +external help file: ClusterAffinityRule.cdxml-help.xml +Module Name: FailoverClusters +ms.date: 07/26/2022 +online version: https://docs.microsoft.com/powershell/module/failoverclusters/set-clusteraffinityrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +title: Set-ClusterAffinityRule +--- + +# Set-ClusterAffinityRule + +## SYNOPSIS +Enabled or Disable an affinity rule, and update the rule type. + +## SYNTAX + +### Query (cdxml) (Default) +``` +Set-ClusterAffinityRule [[-Name] ] [-RuleType ] [-Enabled ] + [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [] +``` + +### InputObject (cdxml) +``` +Set-ClusterAffinityRule -InputObject [-RuleType ] [-Enabled ] + [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [] +``` + +## DESCRIPTION +This cmdlet is used to Enabled or Disable an affinity rule. This can also be used to change the +RuleType. + +## EXAMPLES + +### Example 1 +```powershell +Set-ClusterAffinityRule -Name MyRule -Enabled -Cluster MyCluster +``` + +## PARAMETERS + +### -AsJob +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. + +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. + +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CimSession +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. + +```yaml +Type: CimSession[] +Parameter Sets: (All) +Aliases: Session + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Enabled +Enables or disables the affinity rule. + +```yaml +Type: UInt32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Specifies the input object that is used in a pipeline command. + +```yaml +Type: CimInstance[] +Parameter Sets: InputObject (cdxml) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +The name of the affinity rule you want to either enable or disable. + +```yaml +Type: String[] +Parameter Sets: Query (cdxml) +Aliases: + +Required: False +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -PassThru +Returns an object representing the item with which you are working. +By default, this cmdlet does not generate any output. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -RuleType +The RuleType you want to set your affinity rule to. + +```yaml +Type: RuleType +Parameter Sets: (All) +Aliases: +Accepted values: SameFaultDomain, SameNode, DifferentFaultDomain, DifferentNode + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ThrottleLimit +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String[] + +### Microsoft.Management.Infrastructure.CimInstance[] + +## OUTPUTS + +### Microsoft.Management.Infrastructure.CimInstance + +### Microsoft.Management.Infrastructure.CimInstance#root/MSCLUSTER/MSCluster_AffinityRule + +## NOTES + +## RELATED LINKS From dfaa11773cea4d93f5446e550a8449d104acd620 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Tue, 11 Jul 2023 15:02:52 +0100 Subject: [PATCH 868/965] Updated examples and RuleType parameter text --- .../failoverclusters/Get-ClusterAffinityRule.md | 6 +++++- .../failoverclusters/New-ClusterAffinityRule.md | 14 ++++++++++++-- .../failoverclusters/Remove-ClusterAffinityRule.md | 2 +- .../failoverclusters/Set-ClusterAffinityRule.md | 10 ++++++++-- 4 files changed, 26 insertions(+), 6 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterAffinityRule.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterAffinityRule.md index 871f33b832..f8f7405d4c 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterAffinityRule.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterAffinityRule.md @@ -28,8 +28,12 @@ will list all rules. ### Example 1 ```powershell -Get-ClusterAffinityRule -Name -Cluster Cluster1 +Get-ClusterAffinityRule -Name AffinityRule1 -Cluster Cluster1 ``` + +This example returns information about the cluster affinity rule with the name `Rule1` from +`Cluster1`. + ## PARAMETERS ### -AsJob diff --git a/docset/winserver2022-ps/failoverclusters/New-ClusterAffinityRule.md b/docset/winserver2022-ps/failoverclusters/New-ClusterAffinityRule.md index bdb22cebed..b6a318347d 100644 --- a/docset/winserver2022-ps/failoverclusters/New-ClusterAffinityRule.md +++ b/docset/winserver2022-ps/failoverclusters/New-ClusterAffinityRule.md @@ -28,8 +28,12 @@ rule: SameFaultDomain | SameNode | DifferentFaultDomain | DifferentNode ### Example 1 ```powershell -New-ClusterAffinityRule -Name -RuleType SameFaultDomain -Cluster Cluster1 +New-ClusterAffinityRule -Name AffinityRule1 -RuleType SameFaultDomain -Cluster Cluster1 ``` + +This command creates a new affinity rule for `Cluster1` to ensure resources stay within the same +fault domain. + ## PARAMETERS ### -AsJob @@ -90,7 +94,13 @@ Accept wildcard characters: False ``` ### -RuleType -The type of the rule to be created. +The type of the rule you want to set your affinity rule to. The acceptable values for this parameter +are: + +- **SameFaultDomain**. Resources must stay within the same fault domain. +- **SameNode**. Resources must stay on the same cluster node. +- **DifferentFaultDomain**. Resources will always stay in different fault domain (anti-affinity). +- **DifferentNode**. Resources will always stay on different cluster nodes (anti-affinity). ```yaml Type: RuleType diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterAffinityRule.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterAffinityRule.md index 08823ad27b..af56ade30e 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterAffinityRule.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterAffinityRule.md @@ -34,7 +34,7 @@ Removes a specified affinity rule. ### Example 1 ```powershell -Remove-ClusterAffinityRule -Name -Cluster Cluster1 +Remove-ClusterAffinityRule -Name AffinityRule1 -Cluster Cluster1 ``` ## PARAMETERS diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterAffinityRule.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterAffinityRule.md index ccc0a5e24a..d982bfbb4b 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterAffinityRule.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterAffinityRule.md @@ -35,7 +35,7 @@ RuleType. ### Example 1 ```powershell -Set-ClusterAffinityRule -Name MyRule -Enabled -Cluster MyCluster +Set-ClusterAffinityRule -Name AffinityRule1 -Enabled -Cluster Cluster1 ``` ## PARAMETERS @@ -144,7 +144,13 @@ Accept wildcard characters: False ``` ### -RuleType -The RuleType you want to set your affinity rule to. +The type of the rule you want to set your affinity rule to. The acceptable values for this parameter +are: + +- **SameFaultDomain**. Resources must stay within the same fault domain. +- **SameNode**. Resources must stay on the same cluster node. +- **DifferentFaultDomain**. Resources will always stay in different fault domain (anti-affinity). +- **DifferentNode**. Resources will always stay on different cluster nodes (anti-affinity). ```yaml Type: RuleType From 940400336480910aa4c744014e8c92b6eb665184 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Thu, 27 Jul 2023 14:25:09 +0100 Subject: [PATCH 869/965] Formatting updates --- .../Get-ClusterAffinityRule.md | 15 ++++++--- .../New-ClusterAffinityRule.md | 12 +++++-- .../Remove-ClusterAffinityRule.md | 32 ++++++++++++++----- .../Set-ClusterAffinityRule.md | 21 ++++++++++-- 4 files changed, 63 insertions(+), 17 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterAffinityRule.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterAffinityRule.md index f8f7405d4c..220c68f51d 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterAffinityRule.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterAffinityRule.md @@ -3,7 +3,7 @@ description: Get-ClusterAffinityRule external help file: ClusterAffinityRule.cdxml-help.xml Module Name: FailoverClusters ms.date: 07/26/2022 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/get-clusteraffinityrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusteraffinityrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterAffinityRule --- @@ -17,16 +17,18 @@ This cmdlet is used to display the given rule and what type it is. ``` Get-ClusterAffinityRule [[-Name] ] [-CimSession ] [-ThrottleLimit ] -[-AsJob] [] + [-AsJob] [] ``` ## DESCRIPTION -This cmdlet is used to display the given rule and what type it is. If -Name is not specified, it + +This cmdlet is used to display the given rule and what type it is. If -Name isn't specified, it will list all rules. ## EXAMPLES ### Example 1 + ```powershell Get-ClusterAffinityRule -Name AffinityRule1 -Cluster Cluster1 ``` @@ -37,6 +39,7 @@ This example returns information about the cluster affinity rule with the name ` ## PARAMETERS ### -AsJob + Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. @@ -61,6 +64,7 @@ Accept wildcard characters: False ``` ### -CimSession + Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the @@ -79,7 +83,8 @@ Accept wildcard characters: False ``` ### -Name -The name of the desired affinity rule. if this is not provided, it will list all the rules. + +The name of the desired affinity rule. if this isn't provided, it will list all the rules. ```yaml Type: String[] @@ -94,6 +99,7 @@ Accept wildcard characters: False ``` ### -ThrottleLimit + Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the @@ -113,6 +119,7 @@ Accept wildcard characters: False ``` ### CommonParameters + This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see diff --git a/docset/winserver2022-ps/failoverclusters/New-ClusterAffinityRule.md b/docset/winserver2022-ps/failoverclusters/New-ClusterAffinityRule.md index b6a318347d..d6889f0674 100644 --- a/docset/winserver2022-ps/failoverclusters/New-ClusterAffinityRule.md +++ b/docset/winserver2022-ps/failoverclusters/New-ClusterAffinityRule.md @@ -3,7 +3,7 @@ description: New-ClusterAffinityRule external help file: ClusterAffinityRule.cdxml-help.xml Module Name: FailoverClusters ms.date: 07/26/2022 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/new-clusteraffinityrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/new-clusteraffinityrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ClusterAffinityRule --- @@ -11,7 +11,7 @@ title: New-ClusterAffinityRule # New-ClusterAffinityRule ## SYNOPSIS -Creates new affinity rules. +Creates new affinity rules. ## SYNTAX @@ -21,12 +21,14 @@ New-ClusterAffinityRule [-Name] [-RuleType ] [-CimSession ] [-CimSession ] [-ThrottleLimit ] [-AsJob] - [-PassThru] [-WhatIf] [-Confirm] [] +Remove-ClusterAffinityRule [[-Name] ] [-CimSession ] + [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] ``` ### InputObject (cdxml) + ``` -Remove-ClusterAffinityRule -InputObject [-CimSession ] [-ThrottleLimit ] - [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] +Remove-ClusterAffinityRule -InputObject [-CimSession ] + [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION + Removes a specified affinity rule. ## EXAMPLES ### Example 1 + ```powershell Remove-ClusterAffinityRule -Name AffinityRule1 -Cluster Cluster1 ``` + +This example removes the cluster affinity rule named AffinityRule1. + ## PARAMETERS ### -AsJob + Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. @@ -63,6 +71,7 @@ Accept wildcard characters: False ``` ### -CimSession + Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the @@ -81,6 +90,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the input object that is used in a pipeline command. ```yaml @@ -96,6 +106,7 @@ Accept wildcard characters: False ``` ### -Name + The name of the affinity rule to delete. ```yaml @@ -111,8 +122,9 @@ Accept wildcard characters: False ``` ### -PassThru -Returns an object representing the item with which you are working. -By default, this cmdlet does not generate any output. + +Returns an object representing the item with which you are working. By default, this cmdlet doesn't +generate any output. ```yaml Type: SwitchParameter @@ -127,6 +139,7 @@ Accept wildcard characters: False ``` ### -ThrottleLimit + Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the @@ -146,6 +159,7 @@ Accept wildcard characters: False ``` ### -Confirm + Prompts you for confirmation before running the cmdlet. ```yaml @@ -161,8 +175,9 @@ Accept wildcard characters: False ``` ### -WhatIf + Shows what would happen if the cmdlet runs. -The cmdlet is not run. +The cmdlet isn't run. ```yaml Type: SwitchParameter @@ -177,6 +192,7 @@ Accept wildcard characters: False ``` ### CommonParameters + This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterAffinityRule.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterAffinityRule.md index d982bfbb4b..e1bfa8a448 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterAffinityRule.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterAffinityRule.md @@ -3,7 +3,7 @@ description: Set-ClusterAffinityRule external help file: ClusterAffinityRule.cdxml-help.xml Module Name: FailoverClusters ms.date: 07/26/2022 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/set-clusteraffinityrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusteraffinityrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterAffinityRule --- @@ -16,31 +16,38 @@ Enabled or Disable an affinity rule, and update the rule type. ## SYNTAX ### Query (cdxml) (Default) + ``` Set-ClusterAffinityRule [[-Name] ] [-RuleType ] [-Enabled ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [] ``` ### InputObject (cdxml) + ``` Set-ClusterAffinityRule -InputObject [-RuleType ] [-Enabled ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [] ``` ## DESCRIPTION + This cmdlet is used to Enabled or Disable an affinity rule. This can also be used to change the RuleType. ## EXAMPLES ### Example 1 + ```powershell Set-ClusterAffinityRule -Name AffinityRule1 -Enabled -Cluster Cluster1 ``` +This example enables the cluster affinity rule named AffinityRule1. + ## PARAMETERS ### -AsJob + Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. @@ -65,6 +72,7 @@ Accept wildcard characters: False ``` ### -CimSession + Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the @@ -83,6 +91,7 @@ Accept wildcard characters: False ``` ### -Enabled + Enables or disables the affinity rule. ```yaml @@ -98,6 +107,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the input object that is used in a pipeline command. ```yaml @@ -113,6 +123,7 @@ Accept wildcard characters: False ``` ### -Name + The name of the affinity rule you want to either enable or disable. ```yaml @@ -128,8 +139,9 @@ Accept wildcard characters: False ``` ### -PassThru -Returns an object representing the item with which you are working. -By default, this cmdlet does not generate any output. + +Returns an object representing the item with which you are working. By default, this cmdlet doesn't +generate any output. ```yaml Type: SwitchParameter @@ -144,6 +156,7 @@ Accept wildcard characters: False ``` ### -RuleType + The type of the rule you want to set your affinity rule to. The acceptable values for this parameter are: @@ -166,6 +179,7 @@ Accept wildcard characters: False ``` ### -ThrottleLimit + Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the @@ -185,6 +199,7 @@ Accept wildcard characters: False ``` ### CommonParameters + This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see From 1910ca49ea32f56622e79c0a82dd143f035233cf Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Thu, 27 Jul 2023 14:46:39 +0100 Subject: [PATCH 870/965] Adding new commands to module file --- .../failoverclusters/FailoverClusters.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docset/winserver2022-ps/failoverclusters/FailoverClusters.md b/docset/winserver2022-ps/failoverclusters/FailoverClusters.md index 0884b5a781..6659968e2b 100644 --- a/docset/winserver2022-ps/failoverclusters/FailoverClusters.md +++ b/docset/winserver2022-ps/failoverclusters/FailoverClusters.md @@ -101,6 +101,9 @@ Gets information about one or more failover clusters in a given domain. ### [Get-ClusterAccess](./Get-ClusterAccess.md) Gets information about permissions that control access to a failover cluster. +### [Get-ClusterAffinityRule](./Get-ClusterAffinityRule.md) +This cmdlet is used to display the given rule and what type it is. + ### [Get-ClusterAvailableDisk](./Get-ClusterAvailableDisk.md) Gets information about the disks that can support Failover Clustering and are visible to all nodes, but aren't yet part of the set of clustered disks. @@ -192,6 +195,9 @@ Moves the ownership of a clustered virtual machine to a different node. ### [New-Cluster](./New-Cluster.md) Creates a new failover cluster. +### [New-ClusterAffinityRule](./New-ClusterAffinityRule.md) +Creates new affinity rules. + ### [New-ClusterFaultDomain](./New-ClusterFaultDomain.md) Creates a fault domain in the cluster. @@ -207,6 +213,9 @@ Destroys an existing failover cluster. ### [Remove-ClusterAccess](./Remove-ClusterAccess.md) Removes a user from the access list on the cluster. +### [Remove-ClusterAffinityRule](./Remove-ClusterAffinityRule.md) +Removes new affinity rules. + ### [Remove-ClusterCheckpoint](./Remove-ClusterCheckpoint.md) Removes a cryptographic key checkpoint or registry checkpoint for a resource. @@ -257,6 +266,9 @@ Resumes a node from the paused state or brings back drained workloads to the nod ### [Resume-ClusterResource](./Resume-ClusterResource.md) Turns off maintenance for a disk resource or Cluster Shared Volume within a failover cluster. +### [Set-ClusterAffinityRule](./Set-ClusterAffinityRule.md) +Enabled or Disable an affinity rule, and update the rule type. + ### [Set-ClusterFaultDomain](./Set-ClusterFaultDomain.md) Update an existing cluster fault domain. From c9a95a9f6434ede4eab8e4b9c043199b61e619e3 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Thu, 27 Jul 2023 14:53:26 +0100 Subject: [PATCH 871/965] Updating ms.date --- .../failoverclusters/Get-ClusterAffinityRule.md | 2 +- .../failoverclusters/New-ClusterAffinityRule.md | 2 +- .../failoverclusters/Remove-ClusterAffinityRule.md | 2 +- .../failoverclusters/Set-ClusterAffinityRule.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterAffinityRule.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterAffinityRule.md index 220c68f51d..ae4f9ad5a3 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterAffinityRule.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterAffinityRule.md @@ -2,7 +2,7 @@ description: Get-ClusterAffinityRule external help file: ClusterAffinityRule.cdxml-help.xml Module Name: FailoverClusters -ms.date: 07/26/2022 +ms.date: 07/27/2023 online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clusteraffinityrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-ClusterAffinityRule diff --git a/docset/winserver2022-ps/failoverclusters/New-ClusterAffinityRule.md b/docset/winserver2022-ps/failoverclusters/New-ClusterAffinityRule.md index d6889f0674..9fdcfa977c 100644 --- a/docset/winserver2022-ps/failoverclusters/New-ClusterAffinityRule.md +++ b/docset/winserver2022-ps/failoverclusters/New-ClusterAffinityRule.md @@ -2,7 +2,7 @@ description: New-ClusterAffinityRule external help file: ClusterAffinityRule.cdxml-help.xml Module Name: FailoverClusters -ms.date: 07/26/2022 +ms.date: 07/27/2023 online version: https://learn.microsoft.com/powershell/module/failoverclusters/new-clusteraffinityrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-ClusterAffinityRule diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterAffinityRule.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterAffinityRule.md index c030dd6044..fc7ce18c25 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterAffinityRule.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterAffinityRule.md @@ -2,7 +2,7 @@ description: Remove-ClusterAffinityRule external help file: ClusterAffinityRule.cdxml-help.xml Module Name: FailoverClusters -ms.date: 07/26/2022 +ms.date: 07/27/2023 online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clusteraffinityrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterAffinityRule diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterAffinityRule.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterAffinityRule.md index e1bfa8a448..8fbda4ecca 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterAffinityRule.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterAffinityRule.md @@ -2,7 +2,7 @@ description: Set-ClusterAffinityRule external help file: ClusterAffinityRule.cdxml-help.xml Module Name: FailoverClusters -ms.date: 07/26/2022 +ms.date: 07/27/2023 online version: https://learn.microsoft.com/powershell/module/failoverclusters/set-clusteraffinityrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-ClusterAffinityRule From 02773d698c6858b4da5eb469222511e5132442de Mon Sep 17 00:00:00 2001 From: Michael Lombardi Date: Mon, 31 Jul 2023 08:57:26 -0500 Subject: [PATCH 872/965] (MAINT) Fix `*-VHDSnapshot` for updateable help Prior to this change, the `*-VHDSnapshot` cmdlet reference docs included the links in the related links section as list items, which broke the updateable help build. This change returns the links to one-link-per-paragraph instead. --- docset/winserver2022-ps/hyper-v/Get-VHDSnapshot.md | 2 +- docset/winserver2022-ps/hyper-v/Remove-VHDSnapshot.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/hyper-v/Get-VHDSnapshot.md b/docset/winserver2022-ps/hyper-v/Get-VHDSnapshot.md index edce0c0128..465d0e5466 100644 --- a/docset/winserver2022-ps/hyper-v/Get-VHDSnapshot.md +++ b/docset/winserver2022-ps/hyper-v/Get-VHDSnapshot.md @@ -166,4 +166,4 @@ This cmdlet returns a **VHDSnapshotInfo** object. ## RELATED LINKS -- [Remove-VHDSnapshot](remove-vhdsnapshot.md) +[Remove-VHDSnapshot](remove-vhdsnapshot.md) diff --git a/docset/winserver2022-ps/hyper-v/Remove-VHDSnapshot.md b/docset/winserver2022-ps/hyper-v/Remove-VHDSnapshot.md index 36931cc81a..fdf96ea135 100644 --- a/docset/winserver2022-ps/hyper-v/Remove-VHDSnapshot.md +++ b/docset/winserver2022-ps/hyper-v/Remove-VHDSnapshot.md @@ -239,4 +239,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-VHDSnapshot](get-vhdsnapshot.md) +[Get-VHDSnapshot](get-vhdsnapshot.md) From 652a9c6689386e9d50dff769dbd9803c5eb41088 Mon Sep 17 00:00:00 2001 From: Xelu86 <103963494+Xelu86@users.noreply.github.com> Date: Mon, 31 Jul 2023 11:12:17 -0400 Subject: [PATCH 873/965] Additional text formatting --- docset/winserver2022-ps/hyper-v/New-VFD.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/hyper-v/New-VFD.md b/docset/winserver2022-ps/hyper-v/New-VFD.md index 3b17bd1234..47a4279312 100644 --- a/docset/winserver2022-ps/hyper-v/New-VFD.md +++ b/docset/winserver2022-ps/hyper-v/New-VFD.md @@ -60,7 +60,7 @@ Accept wildcard characters: False Specifies one or more virtual machine hosts on which the virtual floppy disk is to be created. NetBIOS names, IP addresses, and fully qualified domain names are allowable. The default is the -local computer. Use localhost or a dot (.) to specify the local computer explicitly. +local computer. Use `localhost` or a dot (`.`) to specify the local computer explicitly. ```yaml Type: String[] From 548f9659668a886a60eaa3b41ba6f4adeb2aee75 Mon Sep 17 00:00:00 2001 From: Xelu86 <103963494+Xelu86@users.noreply.github.com> Date: Mon, 31 Jul 2023 12:39:51 -0400 Subject: [PATCH 874/965] Related links formatting --- docset/winserver2022-ps/hyper-v/New-VFD.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/hyper-v/New-VFD.md b/docset/winserver2022-ps/hyper-v/New-VFD.md index 47a4279312..3716e82dfd 100644 --- a/docset/winserver2022-ps/hyper-v/New-VFD.md +++ b/docset/winserver2022-ps/hyper-v/New-VFD.md @@ -158,4 +158,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Set-VMFloppyDiskDrive](set-vmfloppydiskdrive.md) +[Set-VMFloppyDiskDrive](set-vmfloppydiskdrive.md) From 2d7554c8c44a870b8470f424b3678b6176d7bbae Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sun, 6 Aug 2023 06:36:06 +0530 Subject: [PATCH 875/965] Update Enable-WebCentralCertProvider.md Fixed description of Password --- .../webadministration/Enable-WebCentralCertProvider.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/webadministration/Enable-WebCentralCertProvider.md b/docset/winserver2022-ps/webadministration/Enable-WebCentralCertProvider.md index f103b0a664..b40ba39650 100644 --- a/docset/winserver2022-ps/webadministration/Enable-WebCentralCertProvider.md +++ b/docset/winserver2022-ps/webadministration/Enable-WebCentralCertProvider.md @@ -51,7 +51,7 @@ Accept wildcard characters: False ``` ### -Password -Specifies the name of the user account that is used to access the central certificate store. +Specifies the password of the user account that is used to access the central certificate store. ```yaml Type: String From 32f8d8519a4778028ec0b0faccf147e71946cd49 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sun, 6 Aug 2023 06:38:13 +0530 Subject: [PATCH 876/965] Update Enable-WebCentralCertProvider.md Fixes 2012 version --- .../webadministration/Enable-WebCentralCertProvider.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2012-ps/webadministration/Enable-WebCentralCertProvider.md b/docset/winserver2012-ps/webadministration/Enable-WebCentralCertProvider.md index 6d77260fa0..4d79e7d004 100644 --- a/docset/winserver2012-ps/webadministration/Enable-WebCentralCertProvider.md +++ b/docset/winserver2012-ps/webadministration/Enable-WebCentralCertProvider.md @@ -48,7 +48,7 @@ Accept wildcard characters: False ``` ### -Password -Name of the user account that is used to access the central certificate store. +Password of the user account that is used to access the central certificate store. ```yaml Type: String From d0f64da6f10aa527ec3d55739fe175d79ec97736 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sun, 6 Aug 2023 06:38:28 +0530 Subject: [PATCH 877/965] Update Enable-WebCentralCertProvider.md fixes 2016 --- .../webadministration/Enable-WebCentralCertProvider.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2016-ps/webadministration/Enable-WebCentralCertProvider.md b/docset/winserver2016-ps/webadministration/Enable-WebCentralCertProvider.md index 4785645ad1..5623848677 100644 --- a/docset/winserver2016-ps/webadministration/Enable-WebCentralCertProvider.md +++ b/docset/winserver2016-ps/webadministration/Enable-WebCentralCertProvider.md @@ -51,7 +51,7 @@ Accept wildcard characters: False ``` ### -Password -Specifies the name of the user account that is used to access the central certificate store. +Specifies the password of the user account that is used to access the central certificate store. ```yaml Type: String From 2f55d760c9e73273b8dd1cc80d9001690e4582ee Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sun, 6 Aug 2023 06:38:45 +0530 Subject: [PATCH 878/965] Update Enable-WebCentralCertProvider.md fixes 2019 --- .../webadministration/Enable-WebCentralCertProvider.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/webadministration/Enable-WebCentralCertProvider.md b/docset/winserver2019-ps/webadministration/Enable-WebCentralCertProvider.md index 803f80ec4d..a261f7e0b6 100644 --- a/docset/winserver2019-ps/webadministration/Enable-WebCentralCertProvider.md +++ b/docset/winserver2019-ps/webadministration/Enable-WebCentralCertProvider.md @@ -51,7 +51,7 @@ Accept wildcard characters: False ``` ### -Password -Specifies the name of the user account that is used to access the central certificate store. +Specifies the password of the user account that is used to access the central certificate store. ```yaml Type: String From 032a22446ed7ab34fd376811f09f089f85537c9c Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sun, 6 Aug 2023 06:39:03 +0530 Subject: [PATCH 879/965] Update Enable-WebCentralCertProvider.md fixes 2012 R2 --- .../webadministration/Enable-WebCentralCertProvider.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2012r2-ps/webadministration/Enable-WebCentralCertProvider.md b/docset/winserver2012r2-ps/webadministration/Enable-WebCentralCertProvider.md index a79d8c63b0..3874146972 100644 --- a/docset/winserver2012r2-ps/webadministration/Enable-WebCentralCertProvider.md +++ b/docset/winserver2012r2-ps/webadministration/Enable-WebCentralCertProvider.md @@ -50,7 +50,7 @@ Accept wildcard characters: False ``` ### -Password -Specifies the name of the user account that is used to access the central certificate store. +Specifies the password of the user account that is used to access the central certificate store. ```yaml Type: String From 67d8ff69a503b97ed3bd6223c1aa953fae095492 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sun, 6 Aug 2023 06:56:39 +0530 Subject: [PATCH 880/965] Update Set-MpPreference.md Added OobeEnableRtpAndSigUpdate --- .../defender/Set-MpPreference.md | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/docset/winserver2022-ps/defender/Set-MpPreference.md b/docset/winserver2022-ps/defender/Set-MpPreference.md index c141beece3..e2d0d26e5f 100644 --- a/docset/winserver2022-ps/defender/Set-MpPreference.md +++ b/docset/winserver2022-ps/defender/Set-MpPreference.md @@ -54,6 +54,7 @@ Set-MpPreference [-ExclusionPath ] [-ExclusionExtension ] [- [-AttackSurfaceReductionRules_Actions ] [-EnableLowCpuPriority ] [-EnableFileHashComputation ] [-EnableFullScanOnBatteryPower ] [-ProxyPacUrl ] [-ProxyServer ] [-ProxyBypass ] [-ForceUseProxyOnly ] + [-OobeEnableRtpAndSigUpdate ] [-DisableTlsParsing ] [-DisableHttpParsing ] [-DisableDnsParsing ] [-DisableDnsOverTcpParsing ] [-DisableSshParsing ] [-PlatformUpdatesChannel ] [-EngineUpdatesChannel ] @@ -1057,6 +1058,26 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -OobeEnableRtpAndSigUpdate + +This setting allows you to configure whether real-time protection and Security Intelligence Updates are enabled during OOBE (Out of Box experience). + +Valid values are: +True - If you enable this setting, real-time protection and Security Intelligence Updates are enabled during OOBE. +False - (Default) If you either disable or don't configure this setting, real-time protection and Security Intelligence Updates during OOBE aren't enabled. + +```yaml +Type: Boolean +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -PlatformUpdatesChannel Specifies when devices receive Microsoft Defender platform updates during the monthly gradual rollout. From a2a9bad877aa20d810502ac53a8c7b14f63882f2 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sun, 6 Aug 2023 06:58:48 +0530 Subject: [PATCH 881/965] Update Set-MpPreference.md Fixing 2016 version of the document --- .../defender/Set-MpPreference.md | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/docset/winserver2016-ps/defender/Set-MpPreference.md b/docset/winserver2016-ps/defender/Set-MpPreference.md index d1f05b02b8..2cdac54472 100644 --- a/docset/winserver2016-ps/defender/Set-MpPreference.md +++ b/docset/winserver2016-ps/defender/Set-MpPreference.md @@ -34,6 +34,7 @@ Set-MpPreference [-ExclusionPath ] [-ExclusionExtension ] [- [-DisableRealtimeMonitoring ] [-DisableScriptScanning ] [-DisableArchiveScanning ] [-DisableCatchupFullScan ] [-DisableCatchupQuickScan ] [-DisableCpuThrottleOnIdleScans ] [-DisableEmailScanning ] [-DisableRemovableDriveScanning ] [-DisableRestorePoint ] + [-OobeEnableRtpAndSigUpdate ] [-DisableScanningMappedNetworkDrivesForFullScan ] [-DisableScanningNetworkFiles ] [-UILockdown ] [-ThreatIDDefaultAction_Ids ] [-AllowSwitchToAsyncInspection ] [-ThreatIDDefaultAction_Actions ] [-UnknownThreatDefaultAction ] @@ -585,6 +586,26 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -OobeEnableRtpAndSigUpdate + +This setting allows you to configure whether real-time protection and Security Intelligence Updates are enabled during OOBE (Out of Box experience). + +Valid values are: +True - If you enable this setting, real-time protection and Security Intelligence Updates are enabled during OOBE. +False - (Default) If you either disable or don't configure this setting, real-time protection and Security Intelligence Updates during OOBE aren't enabled. + +```yaml +Type: Boolean +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -PUAProtection ```yaml From fa230e00ff2353372e7e07662edc0700de977349 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sun, 6 Aug 2023 06:59:38 +0530 Subject: [PATCH 882/965] Update Set-MpPreference.md Fixed 2019 version of the document --- .../defender/Set-MpPreference.md | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/docset/winserver2019-ps/defender/Set-MpPreference.md b/docset/winserver2019-ps/defender/Set-MpPreference.md index d40e8e5493..a7a2197fc3 100644 --- a/docset/winserver2019-ps/defender/Set-MpPreference.md +++ b/docset/winserver2019-ps/defender/Set-MpPreference.md @@ -37,6 +37,7 @@ Set-MpPreference [-ExclusionPath ] [-ExclusionExtension ] [- [-DisableEmailScanning ] [-DisableRemovableDriveScanning ] [-DisableRestorePoint ] [-DisableScanningMappedNetworkDrivesForFullScan ] [-DisableScanningNetworkFiles ] + [-OobeEnableRtpAndSigUpdate ] [-UILockdown ] [-ThreatIDDefaultAction_Ids ] [-ThreatIDDefaultAction_Actions ] [-UnknownThreatDefaultAction ] [-LowThreatDefaultAction ] [-ModerateThreatDefaultAction ] @@ -688,6 +689,26 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -OobeEnableRtpAndSigUpdate + +This setting allows you to configure whether real-time protection and Security Intelligence Updates are enabled during OOBE (Out of Box experience). + +Valid values are: +True - If you enable this setting, real-time protection and Security Intelligence Updates are enabled during OOBE. +False - (Default) If you either disable or don't configure this setting, real-time protection and Security Intelligence Updates during OOBE aren't enabled. + +```yaml +Type: Boolean +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -PUAProtection ```yaml From 56dcb3cd3a53b8d9d5b221cfa52287dbdb278502 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sun, 6 Aug 2023 07:03:10 +0530 Subject: [PATCH 883/965] Update Get-PrintJob.md made changes to the ID description as you cannot use wild card characters on Get-PrintJob -Id --- docset/winserver2022-ps/printmanagement/Get-PrintJob.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/printmanagement/Get-PrintJob.md b/docset/winserver2022-ps/printmanagement/Get-PrintJob.md index 4c787a7829..b248274e7c 100644 --- a/docset/winserver2022-ps/printmanagement/Get-PrintJob.md +++ b/docset/winserver2022-ps/printmanagement/Get-PrintJob.md @@ -107,7 +107,7 @@ Accept wildcard characters: False ### -ID Specifies the ID of the print job to retrieve. -You can use wildcard characters. +You cannot use wildcard characters. ```yaml Type: UInt32 From e424b662e6c4cde4a6497da82bc52a31f1544870 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sun, 6 Aug 2023 07:04:37 +0530 Subject: [PATCH 884/965] Update Get-PrintJob.md Fixes 2012 version --- docset/winserver2012-ps/printmanagement/Get-PrintJob.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2012-ps/printmanagement/Get-PrintJob.md b/docset/winserver2012-ps/printmanagement/Get-PrintJob.md index a9c378eb7b..d13c2c4f37 100644 --- a/docset/winserver2012-ps/printmanagement/Get-PrintJob.md +++ b/docset/winserver2012-ps/printmanagement/Get-PrintJob.md @@ -104,7 +104,7 @@ Accept wildcard characters: False ### -ID Specifies the ID of the print job to retrieve. -You can use wildcard characters. +You cannot use wildcard characters. ```yaml Type: UInt32 From 8157847f648724c217e996016514dba7290c6216 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sun, 6 Aug 2023 07:04:52 +0530 Subject: [PATCH 885/965] Update Get-PrintJob.md Fixes 2016 --- docset/winserver2016-ps/printmanagement/Get-PrintJob.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2016-ps/printmanagement/Get-PrintJob.md b/docset/winserver2016-ps/printmanagement/Get-PrintJob.md index bc5119cf1a..a13a99add7 100644 --- a/docset/winserver2016-ps/printmanagement/Get-PrintJob.md +++ b/docset/winserver2016-ps/printmanagement/Get-PrintJob.md @@ -107,7 +107,7 @@ Accept wildcard characters: False ### -ID Specifies the ID of the print job to retrieve. -You can use wildcard characters. +You cannot use wildcard characters. ```yaml Type: UInt32 From 56848c534afa400425be0af0a56d8016c460de56 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sun, 6 Aug 2023 07:05:10 +0530 Subject: [PATCH 886/965] Update Get-PrintJob.md Fixes 2019 --- docset/winserver2019-ps/printmanagement/Get-PrintJob.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/printmanagement/Get-PrintJob.md b/docset/winserver2019-ps/printmanagement/Get-PrintJob.md index 773a4f30fd..a971d566e3 100644 --- a/docset/winserver2019-ps/printmanagement/Get-PrintJob.md +++ b/docset/winserver2019-ps/printmanagement/Get-PrintJob.md @@ -107,7 +107,7 @@ Accept wildcard characters: False ### -ID Specifies the ID of the print job to retrieve. -You can use wildcard characters. +You cannot use wildcard characters. ```yaml Type: UInt32 From f6b838abb50da934ed29d6e40baafcd2622ce557 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sun, 6 Aug 2023 07:05:29 +0530 Subject: [PATCH 887/965] Update Get-PrintJob.md fixes 2102r2 --- docset/winserver2012r2-ps/printmanagement/Get-PrintJob.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2012r2-ps/printmanagement/Get-PrintJob.md b/docset/winserver2012r2-ps/printmanagement/Get-PrintJob.md index f81bc3b848..bbc1376b12 100644 --- a/docset/winserver2012r2-ps/printmanagement/Get-PrintJob.md +++ b/docset/winserver2012r2-ps/printmanagement/Get-PrintJob.md @@ -103,7 +103,7 @@ Accept wildcard characters: False ### -ID Specifies the ID of the print job to retrieve. -You can use wildcard characters. +You cannot use wildcard characters. ```yaml Type: UInt32 From fdd0d09404d819b986adaffba5e646d13f4f9569 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sun, 6 Aug 2023 07:17:40 +0530 Subject: [PATCH 888/965] Update Get-ADPrincipalGroupMembership.md Fixed partition parameter --- .../Get-ADPrincipalGroupMembership.md | 24 ++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) diff --git a/docset/winserver2016-ps/activedirectory/Get-ADPrincipalGroupMembership.md b/docset/winserver2016-ps/activedirectory/Get-ADPrincipalGroupMembership.md index 6afebebdef..2178eb3b8c 100644 --- a/docset/winserver2016-ps/activedirectory/Get-ADPrincipalGroupMembership.md +++ b/docset/winserver2016-ps/activedirectory/Get-ADPrincipalGroupMembership.md @@ -258,9 +258,27 @@ Accept wildcard characters: False ``` ### -Partition -The default authentication method is Negotiate. +Specifies the distinguished name of an Active Directory partition. +The distinguished name must be one of the naming contexts on the current directory server. +The cmdlet searches this partition to find the object defined by the **Identity** parameter. -A Secure Sockets Layer (SSL) connection is required for the Basic authentication method. +In many cases, a default value is used for the **Partition** parameter if no value is specified. +The rules for determining the default value are given below. +Note that rules listed first are evaluated first and once a default value can be determined, no further rules are evaluated. + +In Active Directory Domain Services (AD DS) environments, a default value for **Partition** is set in the following cases: + +- If the **Identity** parameter is set to a distinguished name, the default value of **Partition** is automatically generated from this distinguished name. +- If running cmdlets from an Active Directory provider drive, the default value of **Partition** is automatically generated from the current path in the drive. +- If none of the previous cases apply, the default value of **Partition** is set to the default partition or naming context of the target domain. + +In Active Directory Lightweight Directory Services (AD LDS) environments, a default value for **Partition** is set in the following cases: + +- If the **Identity** parameter is set to a distinguished name, the default value of **Partition** is automatically generated from this distinguished name. +- If running cmdlets from an Active Directory provider drive, the default value of **Partition** is automatically generated from the current path in the drive. +- If the target AD LDS instance has a default naming context, the default value of **Partition** is set to the default naming context. +To specify a default naming context for an AD LDS environment, set the **msDS-defaultNamingContext** property of the Active Directory directory service agent object (**nTDSDSA**) for the AD LDS instance. +- If none of the previous cases apply, the **Partition** parameter does not take any default value. ```yaml Type: String @@ -269,7 +287,7 @@ Aliases: Required: False Position: Named -Default value: None +Default value: DefaultNC; Provider: Default is to use the Partition that you are currently in. Else, use DefaultNC (IE: If you are in the RootDSE) Accept pipeline input: False Accept wildcard characters: False ``` From 5a7755bbd602b3bf537b564ca82e10b45fe852bf Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sun, 6 Aug 2023 07:19:27 +0530 Subject: [PATCH 889/965] Update Get-ADPrincipalGroupMembership.md Fixes 2019 --- .../Get-ADPrincipalGroupMembership.md | 25 ++++++++++++++++--- 1 file changed, 22 insertions(+), 3 deletions(-) diff --git a/docset/winserver2019-ps/activedirectory/Get-ADPrincipalGroupMembership.md b/docset/winserver2019-ps/activedirectory/Get-ADPrincipalGroupMembership.md index 11fe58e3b8..586c4d23f0 100644 --- a/docset/winserver2019-ps/activedirectory/Get-ADPrincipalGroupMembership.md +++ b/docset/winserver2019-ps/activedirectory/Get-ADPrincipalGroupMembership.md @@ -258,9 +258,27 @@ Accept wildcard characters: False ``` ### -Partition -The default authentication method is Negotiate. +Specifies the distinguished name of an Active Directory partition. +The distinguished name must be one of the naming contexts on the current directory server. +The cmdlet searches this partition to find the object defined by the **Identity** parameter. -A Secure Sockets Layer (SSL) connection is required for the Basic authentication method. +In many cases, a default value is used for the **Partition** parameter if no value is specified. +The rules for determining the default value are given below. +Note that rules listed first are evaluated first and once a default value can be determined, no further rules are evaluated. + +In Active Directory Domain Services (AD DS) environments, a default value for **Partition** is set in the following cases: + +- If the **Identity** parameter is set to a distinguished name, the default value of **Partition** is automatically generated from this distinguished name. +- If running cmdlets from an Active Directory provider drive, the default value of **Partition** is automatically generated from the current path in the drive. +- If none of the previous cases apply, the default value of **Partition** is set to the default partition or naming context of the target domain. + +In Active Directory Lightweight Directory Services (AD LDS) environments, a default value for **Partition** is set in the following cases: + +- If the **Identity** parameter is set to a distinguished name, the default value of **Partition** is automatically generated from this distinguished name. +- If running cmdlets from an Active Directory provider drive, the default value of **Partition** is automatically generated from the current path in the drive. +- If the target AD LDS instance has a default naming context, the default value of **Partition** is set to the default naming context. +To specify a default naming context for an AD LDS environment, set the **msDS-defaultNamingContext** property of the Active Directory directory service agent object (**nTDSDSA**) for the AD LDS instance. +- If none of the previous cases apply, the **Partition** parameter does not take any default value. ```yaml Type: String @@ -269,11 +287,12 @@ Aliases: Required: False Position: Named -Default value: None +Default value: DefaultNC; Provider: Default is to use the Partition that you are currently in. Else, use DefaultNC (IE: If you are in the RootDSE) Accept pipeline input: False Accept wildcard characters: False ``` + ### -ResourceContextPartition Specifies the distinguished name of the partition of an AD or AD LDS instance to search. Use this parameter with the *ResourceContextServer* parameter to specify a partition hosted by the specified server. From 7c95d9d2b03edf2a7cc1c58062845e0522431c26 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sun, 6 Aug 2023 07:19:48 +0530 Subject: [PATCH 890/965] Update Get-ADPrincipalGroupMembership.md Fixes 2022 --- .../Get-ADPrincipalGroupMembership.md | 24 ++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) diff --git a/docset/winserver2022-ps/activedirectory/Get-ADPrincipalGroupMembership.md b/docset/winserver2022-ps/activedirectory/Get-ADPrincipalGroupMembership.md index cb4a561a04..e43b8d8341 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADPrincipalGroupMembership.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADPrincipalGroupMembership.md @@ -258,9 +258,27 @@ Accept wildcard characters: False ``` ### -Partition -The default authentication method is Negotiate. +Specifies the distinguished name of an Active Directory partition. +The distinguished name must be one of the naming contexts on the current directory server. +The cmdlet searches this partition to find the object defined by the **Identity** parameter. -A Secure Sockets Layer (SSL) connection is required for the Basic authentication method. +In many cases, a default value is used for the **Partition** parameter if no value is specified. +The rules for determining the default value are given below. +Note that rules listed first are evaluated first and once a default value can be determined, no further rules are evaluated. + +In Active Directory Domain Services (AD DS) environments, a default value for **Partition** is set in the following cases: + +- If the **Identity** parameter is set to a distinguished name, the default value of **Partition** is automatically generated from this distinguished name. +- If running cmdlets from an Active Directory provider drive, the default value of **Partition** is automatically generated from the current path in the drive. +- If none of the previous cases apply, the default value of **Partition** is set to the default partition or naming context of the target domain. + +In Active Directory Lightweight Directory Services (AD LDS) environments, a default value for **Partition** is set in the following cases: + +- If the **Identity** parameter is set to a distinguished name, the default value of **Partition** is automatically generated from this distinguished name. +- If running cmdlets from an Active Directory provider drive, the default value of **Partition** is automatically generated from the current path in the drive. +- If the target AD LDS instance has a default naming context, the default value of **Partition** is set to the default naming context. +To specify a default naming context for an AD LDS environment, set the **msDS-defaultNamingContext** property of the Active Directory directory service agent object (**nTDSDSA**) for the AD LDS instance. +- If none of the previous cases apply, the **Partition** parameter does not take any default value. ```yaml Type: String @@ -269,7 +287,7 @@ Aliases: Required: False Position: Named -Default value: None +Default value: DefaultNC; Provider: Default is to use the Partition that you are currently in. Else, use DefaultNC (IE: If you are in the RootDSE) Accept pipeline input: False Accept wildcard characters: False ``` From 29271362415db6158baad6c0bb9f8db21369755a Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sun, 6 Aug 2023 08:06:30 +0530 Subject: [PATCH 891/965] Update Move-ADObject.md Added a statement about password when it moves within the object is moved across domains in the forest --- docset/winserver2022-ps/activedirectory/Move-ADObject.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docset/winserver2022-ps/activedirectory/Move-ADObject.md b/docset/winserver2022-ps/activedirectory/Move-ADObject.md index 066ed4638c..e724863cb8 100644 --- a/docset/winserver2022-ps/activedirectory/Move-ADObject.md +++ b/docset/winserver2022-ps/activedirectory/Move-ADObject.md @@ -37,6 +37,8 @@ You can also use the **Get-ADGroup**, **Get-ADUser**, **Get-ADComputer**, **Get- The *TargetPath* parameter must be specified. This parameter identifies the new location for the object or container. +The Cmdlet moves the password when a user or computer object is moved across domains within a forest. + ## EXAMPLES ### Example 1: Move an OU to a new location From f3de92b9df2fe0c42d20d7c3e34b0a125704d481 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sun, 6 Aug 2023 08:08:42 +0530 Subject: [PATCH 892/965] Update Move-ADObject.md Fixes 2012 --- docset/winserver2012-ps/activedirectory/Move-ADObject.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docset/winserver2012-ps/activedirectory/Move-ADObject.md b/docset/winserver2012-ps/activedirectory/Move-ADObject.md index ae03b78ae3..1f3725924b 100644 --- a/docset/winserver2012-ps/activedirectory/Move-ADObject.md +++ b/docset/winserver2012-ps/activedirectory/Move-ADObject.md @@ -30,6 +30,8 @@ You can also use the Get-ADGroup, Get-ADUser, Get-ADComputer, Get-ADServiceAccou The TargetPath parameter must be specified. This parameter identifies the new location for the object or container. +The Cmdlet also moves the password when a user or computer object is moved across domains within a forest. + ## EXAMPLES ### -------------------------- EXAMPLE 1 -------------------------- From 4c1d917b84658d9166cc00e2e3e1e84351900b37 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sun, 6 Aug 2023 08:08:55 +0530 Subject: [PATCH 893/965] Update Move-ADObject.md Fixes 2016 --- docset/winserver2016-ps/activedirectory/Move-ADObject.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docset/winserver2016-ps/activedirectory/Move-ADObject.md b/docset/winserver2016-ps/activedirectory/Move-ADObject.md index dac51dd5d7..0ed6ca07c1 100644 --- a/docset/winserver2016-ps/activedirectory/Move-ADObject.md +++ b/docset/winserver2016-ps/activedirectory/Move-ADObject.md @@ -37,6 +37,7 @@ You can also use the **Get-ADGroup**, **Get-ADUser**, **Get-ADComputer**, **Get- The *TargetPath* parameter must be specified. This parameter identifies the new location for the object or container. +The Cmdlet also moves the password when a user or computer object is moved across domains within a forest. ## EXAMPLES ### Example 1: Move an OU to a new location From b52334ab714af6db5a6ee8c98dd9e45c1ec09c70 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sun, 6 Aug 2023 08:09:09 +0530 Subject: [PATCH 894/965] Update Move-ADObject.md Fixes 2019 --- docset/winserver2019-ps/activedirectory/Move-ADObject.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docset/winserver2019-ps/activedirectory/Move-ADObject.md b/docset/winserver2019-ps/activedirectory/Move-ADObject.md index 3ea888d585..dfe91ae6cb 100644 --- a/docset/winserver2019-ps/activedirectory/Move-ADObject.md +++ b/docset/winserver2019-ps/activedirectory/Move-ADObject.md @@ -36,6 +36,7 @@ You can also use the **Get-ADGroup**, **Get-ADUser**, **Get-ADComputer**, **Get- The *TargetPath* parameter must be specified. This parameter identifies the new location for the object or container. +The Cmdlet also moves the password when a user or computer object is moved across domains within a forest. ## EXAMPLES From 08990724b6ecfdf8f23695f59c007cca0586bbd8 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sun, 6 Aug 2023 08:09:22 +0530 Subject: [PATCH 895/965] Update Move-ADObject.md --- docset/winserver2022-ps/activedirectory/Move-ADObject.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/activedirectory/Move-ADObject.md b/docset/winserver2022-ps/activedirectory/Move-ADObject.md index e724863cb8..9f275ee48c 100644 --- a/docset/winserver2022-ps/activedirectory/Move-ADObject.md +++ b/docset/winserver2022-ps/activedirectory/Move-ADObject.md @@ -37,7 +37,8 @@ You can also use the **Get-ADGroup**, **Get-ADUser**, **Get-ADComputer**, **Get- The *TargetPath* parameter must be specified. This parameter identifies the new location for the object or container. -The Cmdlet moves the password when a user or computer object is moved across domains within a forest. +The Cmdlet also moves the password when a user or computer object is moved across domains within a forest. + ## EXAMPLES From dcedd0b5bd839cd993b0c173783572ac6c2005a3 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sun, 6 Aug 2023 08:09:34 +0530 Subject: [PATCH 896/965] Update Move-ADObject.md Fixes 2012R2 --- docset/winserver2012r2-ps/activedirectory/Move-ADObject.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docset/winserver2012r2-ps/activedirectory/Move-ADObject.md b/docset/winserver2012r2-ps/activedirectory/Move-ADObject.md index 63bb5a8424..63134796dd 100644 --- a/docset/winserver2012r2-ps/activedirectory/Move-ADObject.md +++ b/docset/winserver2012r2-ps/activedirectory/Move-ADObject.md @@ -31,6 +31,7 @@ You can also use the Get-ADGroup, Get-ADUser, Get-ADComputer, Get-ADServiceAccou The **TargetPath** parameter must be specified. This parameter identifies the new location for the object or container. +The Cmdlet also moves the password when a user or computer object is moved across domains within a forest. ## EXAMPLES From d6ab22ad07a5b72dad6cb9507684b5d79c387ef4 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sun, 6 Aug 2023 08:11:44 +0530 Subject: [PATCH 897/965] Update Move-ADObject.md Fixed description --- docset/winserver2012-ps/activedirectory/Move-ADObject.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2012-ps/activedirectory/Move-ADObject.md b/docset/winserver2012-ps/activedirectory/Move-ADObject.md index 1f3725924b..a0e19916ac 100644 --- a/docset/winserver2012-ps/activedirectory/Move-ADObject.md +++ b/docset/winserver2012-ps/activedirectory/Move-ADObject.md @@ -19,7 +19,7 @@ Move-ADObject [-WhatIf] [-Confirm] [-AuthType ] [-Credential Date: Sun, 6 Aug 2023 08:12:07 +0530 Subject: [PATCH 898/965] Update Move-ADObject.md --- docset/winserver2016-ps/activedirectory/Move-ADObject.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2016-ps/activedirectory/Move-ADObject.md b/docset/winserver2016-ps/activedirectory/Move-ADObject.md index 0ed6ca07c1..c261e1005c 100644 --- a/docset/winserver2016-ps/activedirectory/Move-ADObject.md +++ b/docset/winserver2016-ps/activedirectory/Move-ADObject.md @@ -22,7 +22,7 @@ Move-ADObject [-WhatIf] [-Confirm] [-AuthType ] [-Credential Date: Sun, 6 Aug 2023 08:12:26 +0530 Subject: [PATCH 899/965] Update Move-ADObject.md --- docset/winserver2019-ps/activedirectory/Move-ADObject.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/activedirectory/Move-ADObject.md b/docset/winserver2019-ps/activedirectory/Move-ADObject.md index dfe91ae6cb..045510f106 100644 --- a/docset/winserver2019-ps/activedirectory/Move-ADObject.md +++ b/docset/winserver2019-ps/activedirectory/Move-ADObject.md @@ -22,7 +22,7 @@ Move-ADObject [-WhatIf] [-Confirm] [-AuthType ] [-Credential Date: Sun, 6 Aug 2023 08:12:34 +0530 Subject: [PATCH 900/965] Update Move-ADObject.md --- docset/winserver2016-ps/activedirectory/Move-ADObject.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2016-ps/activedirectory/Move-ADObject.md b/docset/winserver2016-ps/activedirectory/Move-ADObject.md index c261e1005c..440688f336 100644 --- a/docset/winserver2016-ps/activedirectory/Move-ADObject.md +++ b/docset/winserver2016-ps/activedirectory/Move-ADObject.md @@ -22,7 +22,7 @@ Move-ADObject [-WhatIf] [-Confirm] [-AuthType ] [-Credential Date: Sun, 6 Aug 2023 08:12:41 +0530 Subject: [PATCH 901/965] Update Move-ADObject.md --- docset/winserver2012-ps/activedirectory/Move-ADObject.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2012-ps/activedirectory/Move-ADObject.md b/docset/winserver2012-ps/activedirectory/Move-ADObject.md index a0e19916ac..7927036887 100644 --- a/docset/winserver2012-ps/activedirectory/Move-ADObject.md +++ b/docset/winserver2012-ps/activedirectory/Move-ADObject.md @@ -19,7 +19,7 @@ Move-ADObject [-WhatIf] [-Confirm] [-AuthType ] [-Credential Date: Sun, 6 Aug 2023 08:12:52 +0530 Subject: [PATCH 902/965] Update Move-ADObject.md --- docset/winserver2022-ps/activedirectory/Move-ADObject.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/activedirectory/Move-ADObject.md b/docset/winserver2022-ps/activedirectory/Move-ADObject.md index 9f275ee48c..56d2d32dbc 100644 --- a/docset/winserver2022-ps/activedirectory/Move-ADObject.md +++ b/docset/winserver2022-ps/activedirectory/Move-ADObject.md @@ -22,7 +22,7 @@ Move-ADObject [-WhatIf] [-Confirm] [-AuthType ] [-Credential Date: Sun, 6 Aug 2023 08:13:01 +0530 Subject: [PATCH 903/965] Update Move-ADObject.md --- docset/winserver2012r2-ps/activedirectory/Move-ADObject.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2012r2-ps/activedirectory/Move-ADObject.md b/docset/winserver2012r2-ps/activedirectory/Move-ADObject.md index 63134796dd..7d5546d75e 100644 --- a/docset/winserver2012r2-ps/activedirectory/Move-ADObject.md +++ b/docset/winserver2012r2-ps/activedirectory/Move-ADObject.md @@ -21,7 +21,7 @@ Move-ADObject [-WhatIf] [-Confirm] [-AuthType ] [-Credential Date: Sun, 6 Aug 2023 13:33:34 +0530 Subject: [PATCH 904/965] Update docset/winserver2019-ps/activedirectory/Move-ADObject.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2019-ps/activedirectory/Move-ADObject.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/activedirectory/Move-ADObject.md b/docset/winserver2019-ps/activedirectory/Move-ADObject.md index 045510f106..0b873feb60 100644 --- a/docset/winserver2019-ps/activedirectory/Move-ADObject.md +++ b/docset/winserver2019-ps/activedirectory/Move-ADObject.md @@ -36,7 +36,7 @@ You can also use the **Get-ADGroup**, **Get-ADUser**, **Get-ADComputer**, **Get- The *TargetPath* parameter must be specified. This parameter identifies the new location for the object or container. -The Cmdlet also moves the password when a user or computer object is moved across domains within a forest. +The cmdlet also moves the password when a user or computer object is moved across domains within a forest. ## EXAMPLES From 0299ca0798c8fceff2965a608569e68e6a24786c Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sun, 6 Aug 2023 13:33:40 +0530 Subject: [PATCH 905/965] Update docset/winserver2022-ps/activedirectory/Move-ADObject.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2022-ps/activedirectory/Move-ADObject.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/activedirectory/Move-ADObject.md b/docset/winserver2022-ps/activedirectory/Move-ADObject.md index 56d2d32dbc..13f2b980d7 100644 --- a/docset/winserver2022-ps/activedirectory/Move-ADObject.md +++ b/docset/winserver2022-ps/activedirectory/Move-ADObject.md @@ -37,7 +37,7 @@ You can also use the **Get-ADGroup**, **Get-ADUser**, **Get-ADComputer**, **Get- The *TargetPath* parameter must be specified. This parameter identifies the new location for the object or container. -The Cmdlet also moves the password when a user or computer object is moved across domains within a forest. +The cmdlet also moves the password when a user or computer object is moved across domains within a forest. ## EXAMPLES From 917655c2cbf834b5ec2dd69b197d8fc0fcfb9ad0 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sun, 6 Aug 2023 13:33:49 +0530 Subject: [PATCH 906/965] Update docset/winserver2012-ps/activedirectory/Move-ADObject.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2012-ps/activedirectory/Move-ADObject.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2012-ps/activedirectory/Move-ADObject.md b/docset/winserver2012-ps/activedirectory/Move-ADObject.md index 7927036887..d6a495824b 100644 --- a/docset/winserver2012-ps/activedirectory/Move-ADObject.md +++ b/docset/winserver2012-ps/activedirectory/Move-ADObject.md @@ -30,7 +30,7 @@ You can also use the Get-ADGroup, Get-ADUser, Get-ADComputer, Get-ADServiceAccou The TargetPath parameter must be specified. This parameter identifies the new location for the object or container. -The Cmdlet also moves the password when a user or computer object is moved across domains within a forest. +The cmdlet also moves the password when a user or computer object is moved across domains within a forest. ## EXAMPLES From 51dc8ff2490146cd10f6650ee60be64d61fe79da Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sun, 6 Aug 2023 13:34:04 +0530 Subject: [PATCH 907/965] Update docset/winserver2022-ps/defender/Set-MpPreference.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2022-ps/defender/Set-MpPreference.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docset/winserver2022-ps/defender/Set-MpPreference.md b/docset/winserver2022-ps/defender/Set-MpPreference.md index e2d0d26e5f..7193577162 100644 --- a/docset/winserver2022-ps/defender/Set-MpPreference.md +++ b/docset/winserver2022-ps/defender/Set-MpPreference.md @@ -1060,11 +1060,11 @@ Accept wildcard characters: False ### -OobeEnableRtpAndSigUpdate -This setting allows you to configure whether real-time protection and Security Intelligence Updates are enabled during OOBE (Out of Box experience). +This setting allows you to configure whether real-time protection and Security Intelligence Updates are enabled during Out of Box experience (OOBE). Valid values are: -True - If you enable this setting, real-time protection and Security Intelligence Updates are enabled during OOBE. -False - (Default) If you either disable or don't configure this setting, real-time protection and Security Intelligence Updates during OOBE aren't enabled. +True - If you enable this setting, real-time protection and Security Intelligence Updates are enabled during OOBE. +False (Default) - If you either disable or don't configure this setting, real-time protection and Security Intelligence Updates during OOBE aren't enabled. ```yaml Type: Boolean From cbf608d300728f8568b3b7899002a9703ff8ec19 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sun, 6 Aug 2023 13:34:10 +0530 Subject: [PATCH 908/965] Update docset/winserver2016-ps/defender/Set-MpPreference.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2016-ps/defender/Set-MpPreference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2016-ps/defender/Set-MpPreference.md b/docset/winserver2016-ps/defender/Set-MpPreference.md index 2cdac54472..981b5bbfc2 100644 --- a/docset/winserver2016-ps/defender/Set-MpPreference.md +++ b/docset/winserver2016-ps/defender/Set-MpPreference.md @@ -588,7 +588,7 @@ Accept wildcard characters: False ### -OobeEnableRtpAndSigUpdate -This setting allows you to configure whether real-time protection and Security Intelligence Updates are enabled during OOBE (Out of Box experience). +This setting allows you to configure whether real-time protection and Security Intelligence Updates are enabled during Out of Box experience (OOBE). Valid values are: True - If you enable this setting, real-time protection and Security Intelligence Updates are enabled during OOBE. From fb6c4a92309274493f55d88804ca4535f8acb364 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sun, 6 Aug 2023 13:34:16 +0530 Subject: [PATCH 909/965] Update docset/winserver2016-ps/defender/Set-MpPreference.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2016-ps/defender/Set-MpPreference.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2016-ps/defender/Set-MpPreference.md b/docset/winserver2016-ps/defender/Set-MpPreference.md index 981b5bbfc2..e4373df0c6 100644 --- a/docset/winserver2016-ps/defender/Set-MpPreference.md +++ b/docset/winserver2016-ps/defender/Set-MpPreference.md @@ -591,8 +591,8 @@ Accept wildcard characters: False This setting allows you to configure whether real-time protection and Security Intelligence Updates are enabled during Out of Box experience (OOBE). Valid values are: -True - If you enable this setting, real-time protection and Security Intelligence Updates are enabled during OOBE. -False - (Default) If you either disable or don't configure this setting, real-time protection and Security Intelligence Updates during OOBE aren't enabled. +True - If you enable this setting, real-time protection and Security Intelligence Updates are enabled during OOBE. +False (Default) - If you either disable or don't configure this setting, real-time protection and Security Intelligence Updates during OOBE aren't enabled. ```yaml Type: Boolean From 0aa477703209aa0c662ff2333658d1a3d9b21501 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Sun, 6 Aug 2023 13:34:21 +0530 Subject: [PATCH 910/965] Update docset/winserver2019-ps/defender/Set-MpPreference.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2019-ps/defender/Set-MpPreference.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docset/winserver2019-ps/defender/Set-MpPreference.md b/docset/winserver2019-ps/defender/Set-MpPreference.md index a7a2197fc3..a29438131f 100644 --- a/docset/winserver2019-ps/defender/Set-MpPreference.md +++ b/docset/winserver2019-ps/defender/Set-MpPreference.md @@ -691,11 +691,11 @@ Accept wildcard characters: False ### -OobeEnableRtpAndSigUpdate -This setting allows you to configure whether real-time protection and Security Intelligence Updates are enabled during OOBE (Out of Box experience). +This setting allows you to configure whether real-time protection and Security Intelligence Updates are enabled during Out of Box experience (OOBE). Valid values are: -True - If you enable this setting, real-time protection and Security Intelligence Updates are enabled during OOBE. -False - (Default) If you either disable or don't configure this setting, real-time protection and Security Intelligence Updates during OOBE aren't enabled. +True - If you enable this setting, real-time protection and Security Intelligence Updates are enabled during OOBE. +False (Default) - If you either disable or don't configure this setting, real-time protection and Security Intelligence Updates during OOBE aren't enabled. ```yaml Type: Boolean From c39c8ec28274f4c7a2e9c4398f87de1f043ff8e3 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Mon, 7 Aug 2023 11:46:17 +0530 Subject: [PATCH 911/965] Update docset/winserver2022-ps/activedirectory/Get-ADPrincipalGroupMembership.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- .../activedirectory/Get-ADPrincipalGroupMembership.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/activedirectory/Get-ADPrincipalGroupMembership.md b/docset/winserver2022-ps/activedirectory/Get-ADPrincipalGroupMembership.md index e43b8d8341..0b87fc8a50 100644 --- a/docset/winserver2022-ps/activedirectory/Get-ADPrincipalGroupMembership.md +++ b/docset/winserver2022-ps/activedirectory/Get-ADPrincipalGroupMembership.md @@ -287,7 +287,7 @@ Aliases: Required: False Position: Named -Default value: DefaultNC; Provider: Default is to use the Partition that you are currently in. Else, use DefaultNC (IE: If you are in the RootDSE) +Default value: DefaultNC; Provider: The default is to use the Partition that you are currently in. Otherwise, use DefaultNC (that is, if you are in the RootDSE) Accept pipeline input: False Accept wildcard characters: False ``` From 5a33f0f685a9036ebcaafb73854479ef045e4b70 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Mon, 7 Aug 2023 11:46:24 +0530 Subject: [PATCH 912/965] Update docset/winserver2016-ps/activedirectory/Get-ADPrincipalGroupMembership.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- .../activedirectory/Get-ADPrincipalGroupMembership.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2016-ps/activedirectory/Get-ADPrincipalGroupMembership.md b/docset/winserver2016-ps/activedirectory/Get-ADPrincipalGroupMembership.md index 2178eb3b8c..63722545a3 100644 --- a/docset/winserver2016-ps/activedirectory/Get-ADPrincipalGroupMembership.md +++ b/docset/winserver2016-ps/activedirectory/Get-ADPrincipalGroupMembership.md @@ -287,7 +287,7 @@ Aliases: Required: False Position: Named -Default value: DefaultNC; Provider: Default is to use the Partition that you are currently in. Else, use DefaultNC (IE: If you are in the RootDSE) +Default value: DefaultNC; Provider: The default is to use the Partition that you are currently in. Otherwise, use DefaultNC (that is, if you are in the RootDSE) Accept pipeline input: False Accept wildcard characters: False ``` From 06d6e3415562eda187fbaf2e5f04ad8dede60a05 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Mon, 7 Aug 2023 11:46:31 +0530 Subject: [PATCH 913/965] Update docset/winserver2019-ps/activedirectory/Get-ADPrincipalGroupMembership.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- .../activedirectory/Get-ADPrincipalGroupMembership.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/activedirectory/Get-ADPrincipalGroupMembership.md b/docset/winserver2019-ps/activedirectory/Get-ADPrincipalGroupMembership.md index 586c4d23f0..cd081f93bf 100644 --- a/docset/winserver2019-ps/activedirectory/Get-ADPrincipalGroupMembership.md +++ b/docset/winserver2019-ps/activedirectory/Get-ADPrincipalGroupMembership.md @@ -287,7 +287,7 @@ Aliases: Required: False Position: Named -Default value: DefaultNC; Provider: Default is to use the Partition that you are currently in. Else, use DefaultNC (IE: If you are in the RootDSE) +Default value: DefaultNC; Provider: The default is to use the Partition that you are currently in. Otherwise, use DefaultNC (that is, if you are in the RootDSE) Accept pipeline input: False Accept wildcard characters: False ``` From 659cc4588d110804f28e2cc46756860d8ef0f3d3 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Mon, 7 Aug 2023 11:58:03 +0530 Subject: [PATCH 914/965] Update docset/winserver2022-ps/defender/Set-MpPreference.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2022-ps/defender/Set-MpPreference.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/defender/Set-MpPreference.md b/docset/winserver2022-ps/defender/Set-MpPreference.md index 7193577162..88f49250a6 100644 --- a/docset/winserver2022-ps/defender/Set-MpPreference.md +++ b/docset/winserver2022-ps/defender/Set-MpPreference.md @@ -1063,8 +1063,8 @@ Accept wildcard characters: False This setting allows you to configure whether real-time protection and Security Intelligence Updates are enabled during Out of Box experience (OOBE). Valid values are: -True - If you enable this setting, real-time protection and Security Intelligence Updates are enabled during OOBE. -False (Default) - If you either disable or don't configure this setting, real-time protection and Security Intelligence Updates during OOBE aren't enabled. +- True - If you enable this setting, real-time protection and Security Intelligence Updates are enabled during OOBE. +- False (Default) - If you either disable or don't configure this setting, real-time protection and Security Intelligence Updates during OOBE aren't enabled. ```yaml Type: Boolean From f6f7ddb70be131ebff73161f8b1665582b596713 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Mon, 7 Aug 2023 11:58:12 +0530 Subject: [PATCH 915/965] Update docset/winserver2016-ps/defender/Set-MpPreference.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2016-ps/defender/Set-MpPreference.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2016-ps/defender/Set-MpPreference.md b/docset/winserver2016-ps/defender/Set-MpPreference.md index e4373df0c6..f9ec6dfa92 100644 --- a/docset/winserver2016-ps/defender/Set-MpPreference.md +++ b/docset/winserver2016-ps/defender/Set-MpPreference.md @@ -591,8 +591,8 @@ Accept wildcard characters: False This setting allows you to configure whether real-time protection and Security Intelligence Updates are enabled during Out of Box experience (OOBE). Valid values are: -True - If you enable this setting, real-time protection and Security Intelligence Updates are enabled during OOBE. -False (Default) - If you either disable or don't configure this setting, real-time protection and Security Intelligence Updates during OOBE aren't enabled. +- True - If you enable this setting, real-time protection and Security Intelligence Updates are enabled during OOBE. +- False (Default) - If you either disable or don't configure this setting, real-time protection and Security Intelligence Updates during OOBE aren't enabled. ```yaml Type: Boolean From 57d37dfefe6dddb13f483ea2ad3c42ba322f1a4e Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Mon, 7 Aug 2023 11:58:17 +0530 Subject: [PATCH 916/965] Update docset/winserver2019-ps/defender/Set-MpPreference.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2019-ps/defender/Set-MpPreference.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2019-ps/defender/Set-MpPreference.md b/docset/winserver2019-ps/defender/Set-MpPreference.md index a29438131f..54dcb71c9a 100644 --- a/docset/winserver2019-ps/defender/Set-MpPreference.md +++ b/docset/winserver2019-ps/defender/Set-MpPreference.md @@ -694,8 +694,8 @@ Accept wildcard characters: False This setting allows you to configure whether real-time protection and Security Intelligence Updates are enabled during Out of Box experience (OOBE). Valid values are: -True - If you enable this setting, real-time protection and Security Intelligence Updates are enabled during OOBE. -False (Default) - If you either disable or don't configure this setting, real-time protection and Security Intelligence Updates during OOBE aren't enabled. +- True - If you enable this setting, real-time protection and Security Intelligence Updates are enabled during OOBE. +- False (Default) - If you either disable or don't configure this setting, real-time protection and Security Intelligence Updates during OOBE aren't enabled. ```yaml Type: Boolean From be5d36151675777f562742df87ccb562bf2e4b6d Mon Sep 17 00:00:00 2001 From: Alex Buck Date: Sat, 19 Aug 2023 18:48:49 -0400 Subject: [PATCH 917/965] [BULK] DocuTune - Add ms.custom tag "has-azure-ad-ps-ref" to track Azure AD PowerShell references --- .../winserver2016-ps/adfs/New-AdfsAzureMfaTenantCertificate.md | 1 + docset/winserver2016-ps/adfs/Set-AdfsAzureMfaTenant.md | 2 +- .../winserver2019-ps/adfs/New-AdfsAzureMfaTenantCertificate.md | 1 + docset/winserver2019-ps/adfs/Set-AdfsAzureMfaTenant.md | 2 +- .../winserver2022-ps/adfs/New-AdfsAzureMfaTenantCertificate.md | 1 + docset/winserver2022-ps/adfs/Set-AdfsAzureMfaTenant.md | 2 +- 6 files changed, 6 insertions(+), 3 deletions(-) diff --git a/docset/winserver2016-ps/adfs/New-AdfsAzureMfaTenantCertificate.md b/docset/winserver2016-ps/adfs/New-AdfsAzureMfaTenantCertificate.md index d36cd22d05..88f4449005 100644 --- a/docset/winserver2016-ps/adfs/New-AdfsAzureMfaTenantCertificate.md +++ b/docset/winserver2016-ps/adfs/New-AdfsAzureMfaTenantCertificate.md @@ -3,6 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 +ms.custom: has-azure-ad-ps-ref online version: https://learn.microsoft.com/powershell/module/adfs/new-adfsazuremfatenantcertificate?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-AdfsAzureMfaTenantCertificate diff --git a/docset/winserver2016-ps/adfs/Set-AdfsAzureMfaTenant.md b/docset/winserver2016-ps/adfs/Set-AdfsAzureMfaTenant.md index b8516d17ee..7579d96ac1 100644 --- a/docset/winserver2016-ps/adfs/Set-AdfsAzureMfaTenant.md +++ b/docset/winserver2016-ps/adfs/Set-AdfsAzureMfaTenant.md @@ -3,6 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 +ms.custom: has-azure-ad-ps-ref online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsazuremfatenant?view=windowsserver2016-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsAzureMfaTenant @@ -121,4 +122,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS [New-AdfsAzureMfaTenantCertificate](./New-AdfsAzureMfaTenantCertificate.md) - diff --git a/docset/winserver2019-ps/adfs/New-AdfsAzureMfaTenantCertificate.md b/docset/winserver2019-ps/adfs/New-AdfsAzureMfaTenantCertificate.md index 4b491b8d92..d964ff8f73 100644 --- a/docset/winserver2019-ps/adfs/New-AdfsAzureMfaTenantCertificate.md +++ b/docset/winserver2019-ps/adfs/New-AdfsAzureMfaTenantCertificate.md @@ -3,6 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 +ms.custom: has-azure-ad-ps-ref online version: https://learn.microsoft.com/powershell/module/adfs/new-adfsazuremfatenantcertificate?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-AdfsAzureMfaTenantCertificate diff --git a/docset/winserver2019-ps/adfs/Set-AdfsAzureMfaTenant.md b/docset/winserver2019-ps/adfs/Set-AdfsAzureMfaTenant.md index d8e0a6c71b..5563a15d78 100644 --- a/docset/winserver2019-ps/adfs/Set-AdfsAzureMfaTenant.md +++ b/docset/winserver2019-ps/adfs/Set-AdfsAzureMfaTenant.md @@ -3,6 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 +ms.custom: has-azure-ad-ps-ref online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsazuremfatenant?view=windowsserver2019-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsAzureMfaTenant @@ -121,4 +122,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS [New-AdfsAzureMfaTenantCertificate](./New-AdfsAzureMfaTenantCertificate.md) - diff --git a/docset/winserver2022-ps/adfs/New-AdfsAzureMfaTenantCertificate.md b/docset/winserver2022-ps/adfs/New-AdfsAzureMfaTenantCertificate.md index ca5e889898..51749cf199 100644 --- a/docset/winserver2022-ps/adfs/New-AdfsAzureMfaTenantCertificate.md +++ b/docset/winserver2022-ps/adfs/New-AdfsAzureMfaTenantCertificate.md @@ -3,6 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 +ms.custom: has-azure-ad-ps-ref online version: https://learn.microsoft.com/powershell/module/adfs/new-adfsazuremfatenantcertificate?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-AdfsAzureMfaTenantCertificate diff --git a/docset/winserver2022-ps/adfs/Set-AdfsAzureMfaTenant.md b/docset/winserver2022-ps/adfs/Set-AdfsAzureMfaTenant.md index b1dc8e0757..292a669981 100644 --- a/docset/winserver2022-ps/adfs/Set-AdfsAzureMfaTenant.md +++ b/docset/winserver2022-ps/adfs/Set-AdfsAzureMfaTenant.md @@ -3,6 +3,7 @@ description: Use this topic to help manage Windows and Windows Server technologi external help file: Microsoft.IdentityServer.Management.dll-Help.xml Module Name: ADFS ms.date: 12/20/2016 +ms.custom: has-azure-ad-ps-ref online version: https://learn.microsoft.com/powershell/module/adfs/set-adfsazuremfatenant?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-AdfsAzureMfaTenant @@ -121,4 +122,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS [New-AdfsAzureMfaTenantCertificate](./New-AdfsAzureMfaTenantCertificate.md) - From 8bd17bbd3bb5fb203a097d34358c46007b85228f Mon Sep 17 00:00:00 2001 From: Matt Ige Date: Mon, 21 Aug 2023 10:18:58 -0700 Subject: [PATCH 918/965] update with profile --- .../Get-NetFirewallHyperVProfile.md | 195 +++++++++++++++ .../netsecurity/Get-NetFirewallHyperVRule.md | 6 +- .../Get-NetFirewallHyperVVMSetting.md | 8 +- .../New-NetFirewallHyperVProfile.md | 222 ++++++++++++++++++ .../netsecurity/New-NetFirewallHyperVRule.md | 42 +++- .../New-NetFirewallHyperVVMSetting.md | 59 ++++- .../Set-NetFirewallHyperVProfile.md | 222 ++++++++++++++++++ .../Set-NetFirewallHyperVVMSetting.md | 54 ++++- 8 files changed, 785 insertions(+), 23 deletions(-) create mode 100644 docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVProfile.md create mode 100644 docset/winserver2022-ps/netsecurity/New-NetFirewallHyperVProfile.md create mode 100644 docset/winserver2022-ps/netsecurity/Set-NetFirewallHyperVProfile.md diff --git a/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVProfile.md b/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVProfile.md new file mode 100644 index 0000000000..e2d21c70e5 --- /dev/null +++ b/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVProfile.md @@ -0,0 +1,195 @@ +--- +description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. +external help file: NetFirewallHyperVProfile.cmdletDefinition.cdxml-help.xml +Module Name: NetSecurity +ms.date: 12/27/2016 +online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewallhypervprofile?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +title: Get-NetFirewallHyperVProfile +--- + +# Get-NetFirewallHyperVProfile + +## SYNOPSIS +Retrieves Hyper-V firewall per-profile settings from the target computer. + +## SYNTAX + +``` +Get-NetFirewallHyperVProfile [-All] [-PolicyStore ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [] +``` + +``` +Get-NetFirewallHyperVProfile [[-Name] ] [-Profile {Any | Domain | Private | Public | NotApplicable}] [-CimSession ] [-ThrottleLimit ] [-AsJob] [] +``` + +## DESCRIPTION +The **Get-NetFirewallHyperVProfile** cmdlet returns the the Hyper-V firewall profile settings on the system. These settings are applicable to all Hyper-V firewall ports created by a specific Hyper-V firewall VM creator. These settings apply to the VM only when the profile is active. + +These settings are configurable on a per-store basis. By default, this cmdlet queries the local store. + +## EXAMPLES + +### EXAMPLE 1 +``` +PS C:\> Get-NetFirewallHyperVProfile +``` + +This retrieves all of the Hyper-V firewall profile settings. With no parameters, this cmdlet queries the settings in the local store. + +### EXAMPLE 2 +``` +PS C:\> Get-NetFirewallHyperVProfile -Name '{9E288F02-CE00-4D9E-BE2B-14CE463B0298}' +``` + +This retrieves all of the Hyper-V firewall profile settings for the specified VM creator Id. + +### EXAMPLE 3 +``` +PS C:\> Get-NetFirewallHyperVProfile -PolicyStore ActiveStore +``` + +This retrieves all of the Hyper-V firewall profile settings from the ActiveStore. + +## PARAMETERS + +### -All +Specifies that all Hyper-V firewall profile settings should be retrieved. + +```yaml +Type: SwitchParameter +Parameter Sets: GetAll +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AsJob +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CimSession +Runs the cmdlet in a remote session or on a remote computer. +Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +The default is the current session on the local computer. + +```yaml +Type: CimSession[] +Parameter Sets: (All) +Aliases: Session +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +Specifies that only matching Hyper-V firewall profile settings of the indicated Hyper-V firewall VM creator should be retrieved. +The format for this value is a GUID enclosed in brackets: '{9E288F02-CE00-4D9E-BE2B-14CE463B0298}'. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: VMCreatorId +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Profile +Specifies that only matching Hyper-V firewall profile settings of the indicated profile should be retrieved. +Acceptable values are: Any, Domain, Private, Public. + +```yaml +Type: String +Parameter Sets: (All) +Required: False +Position: Named +Default value: Any +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PolicyStore +Targets the policy store from which to retrieve the rules. +A policy store is a container for firewall policy. +The acceptable values for this parameter are: +- PersistentStore: Sometimes called static rules, this store contains the persistent policy for the local computer. +This policy is not from GPOs, and has been created manually or programmatically (during application installation) on the computer. +Rules created in this store are attached to the ActiveStore and activated on the computer immediately. +- ActiveStore: This store contains the currently active policy, which is the sum of all policy stores that apply to the computer. +- MDM: This store contains the rules configured via MDM. + +By default, the PersistentStore is queried. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ThrottleLimit +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. +If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. +The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None + +## OUTPUTS + +### Microsoft.Management.Infrastructure.CimInstance#root\StandardCimv2\NetFirewallHyperVProfile +The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. +The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. + +## NOTES + +## RELATED LINKS + +[Get-NetfirewallHyperVRule](./Get-NetFirewallHyperVRule.md) + +[Get-NetfirewallHyperVPort](./Get-NetFirewallHyperVPort.md) + +[Get-NetfirewallHyperVVMCreator](./Get-NetFirewallHyperVVMCreator.md) + +[New-NetFirewallHyperVVMSetting](./New-NetFirewallHyperVVMSetting.md) + +[Set-NetFirewallHyperVVMSetting](./Set-NetFirewallHyperVVMSetting.md) \ No newline at end of file diff --git a/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVRule.md b/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVRule.md index 4a6e162963..e996f90412 100644 --- a/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVRule.md +++ b/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVRule.md @@ -28,7 +28,7 @@ Get-NetFirewallHyperVRule -DisplayName [-PolicyStore ] [-CimS ``` ``` -Get-NetFirewallHyperVRule [-Direction {Inbound | Outbound}] [-VMCreatorId ] [-Protocol ] [-Action {NotConfigured | Allow | Block}] [-Enabled {True | False}] [-EnforcementStatus {Unknown | OK | PartiallyEnforced | NoApplicablePorts | ParsingError | Error}] [-PolicyStoreSourceType {None | Local | Dynamic | Hardcoded | MDM}] [-PolicyStore ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [] +Get-NetFirewallHyperVRule [-Direction {Inbound | Outbound}] [-VMCreatorId ] [-Protocol ] [-Action {NotConfigured | Allow | Block}] [-Enabled {True | False}] [-EnforcementStatus {Unknown | OK | PartiallyEnforced | NoApplicablePorts | ParsingError | Error}] [-PolicyStoreSourceType {None | Local | GroupPolicy | Dynamic | Generated | Hardcoded | MDM | HostFirewallLocal | HostFirewallGroupPolicy | HostFirewallDynamic | HostFirewallMDM}] [-PolicyStore ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [] ``` ## DESCRIPTION @@ -236,6 +236,10 @@ This parameter value is automatically generated and should not be modified. The acceptable values for this parameter are: - Local: The object originates from the local store. - MDM: The object originates from the MDM store. +- Dynamic: The object originates from the dynamic store. +- HostFirewallLocal: This object originates from the host windows firewall local store. +- HostFirewallGroupPolicy: This object originates from the host windows firewall group policy store. +- HostFirewallMDM: This object originates from the host windows firewall MDM store. By default, the Local store is queried. diff --git a/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVVMSetting.md b/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVVMSetting.md index 1323519fab..51a20d0078 100644 --- a/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVVMSetting.md +++ b/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVVMSetting.md @@ -178,4 +178,10 @@ The path after the pound sign (`#`) provides the namespace and class name for th [New-NetFirewallHyperVVMSetting](./New-NetFirewallHyperVVMSetting.md) -[Set-NetFirewallHyperVVMSetting](./Set-NetFirewallHyperVVMSetting.md) \ No newline at end of file +[Set-NetFirewallHyperVVMSetting](./Set-NetFirewallHyperVVMSetting.md) + +[Get-NetFirewallHyperVProfile](./Get-NetFirewallHyperVProfile.md) + +[New-NetFirewallHyperVProfile](./New-NetFirewallHyperVProfile.md) + +[Set-NetFirewallHyperVProfile](./Set-NetFirewallHyperVProfile.md) \ No newline at end of file diff --git a/docset/winserver2022-ps/netsecurity/New-NetFirewallHyperVProfile.md b/docset/winserver2022-ps/netsecurity/New-NetFirewallHyperVProfile.md new file mode 100644 index 0000000000..ddc7450503 --- /dev/null +++ b/docset/winserver2022-ps/netsecurity/New-NetFirewallHyperVProfile.md @@ -0,0 +1,222 @@ +--- +description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. +external help file: NetFirewallHyperVProfile.cmdletDefinition.cdxml-help.xml +Module Name: NetSecurity +ms.date: 12/27/2016 +online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netfirewallhypervprofile?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +title: New-NetFirewallHyperVProfile +--- + +# New-NetFirewallHyperVProfile + +## SYNOPSIS +Configures Hyper-V firewall profile settings settings on the target computer. + +## SYNTAX + +``` +New-NetFirewallHyperVProfile [-PolicyStore ] [-GPOSession ] [-Name ] [-Profile {Any | Domain | Private | Public | NotApplicable}] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **New-NetFirewallHyperVProfile** cmdlet configures the Hyper-V firewall profile settings on the system. These settings are applicable to all Hyper-V firewall ports created by a specific Hyper-V firewall VM creator. These settings apply to the VM only when the profile is active. + +This cmdlet should be used when none of the following are true: a Hyper-V VM creator has registered its VM creator ID with the system, when another Hyper-V setting is already configured for the specified VM creator ID, or when a Hyper-V firewall port is created with the specified VM creator ID. If any of the above are true, the Set-NetFirewallHyperVProfile cmdlet should be used. In other words, this cmdlet can be used to configure policy prior to the application corresponding to the specific VM creator ID has running on the system. + +## EXAMPLES + +### EXAMPLE 1 +``` +PS C:\> New-NetFirewallHyperVProfile -Name '{9E288F02-CE00-4D9E-BE2B-14CE463B0298}' -Profile Public -Enabled True +``` + +This configures the Enabled setting on the Public profile for all Hyper-V firewall ports created by the Hyper-V firewall VM creator specified. + +## PARAMETERS + +### -AsJob +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CimSession +Runs the cmdlet in a remote session or on a remote computer. +Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +The default is the current session on the local computer. + +```yaml +Type: CimSession[] +Parameter Sets: (All) +Aliases: Session +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultInboundAction +Specifies how to filter inbound traffic which does not match any Hyper-V firewall rules. +The acceptable values for this parameter are: NotConfigured, Allow, or Block. + +- Block: Blocks inbound network traffic that does not match an inbound rule. +- Allow: Allows all inbound network traffic, whether or not it matches an inbound rule. +- NotConfigured: Resets this value back to its default. + +The default setting is Block. + +```yaml +Type: Action +Parameter Sets: (All) +Aliases: +Accepted values: NotConfigured, Allow, Block + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultOutboundAction +Specifies how to filter outbound traffic which does not match any Hyper-V firewall rules. +The acceptable values for this parameter are: NotConfigured, Allow, or Block. + +- Block: Blocks outbound network traffic that does not match an outbound rule. +- Allow: Allows all outbound network traffic, whether or not it matches an outbound rule. +- NotConfigured: Resets this value back to its default. + +The default setting is Block. + +```yaml +Type: Action +Parameter Sets: (All) +Aliases: +Accepted values: NotConfigured, Allow, Block + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Enabled +Determines whether or not the Hyper-V firewall is active and enforced. +The acceptable values for this parameter are: False, True, or NotConfigured. + +- True: Enables Windows Hyper-V firewall. +- False: Disables Windows Hyper-V firewall. +- NotConfigured: Resets this value back to its default. + +The default setting is True. + +```yaml +Type: GpoBoolean +Parameter Sets: (All) +Aliases: +Accepted values: False, True, NotConfigured + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AllowLocalFirewallRules +Specifies that the local firewall rules should be merged into the effective policy. +The acceptable values for this parameter are: False, True, or NotConfigured. + +- True: The firewall rules defined by the local administrator are merged with firewall rules from MDM and are applied to the computer. +- False: The firewall rules defined by the local administrator are ignored, and only firewall rules from MDM are applied to the computer. +- NotConfigured: This resets the value back to the default. + +The default setting is True. + +```yaml +Type: GpoBoolean +Parameter Sets: (All) +Aliases: +Accepted values: False, True, NotConfigured + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +Specifies that the settings are applicable only to the Hyper-V firewall VM creator with the matching Id. +The format for this value is a GUID enclosed in brackets: '{9E288F02-CE00-4D9E-BE2B-14CE463B0298}'. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: VMCreatorId +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ThrottleLimit +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. +If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. +The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None + +## OUTPUTS + +### Microsoft.Management.Infrastructure.CimInstance#root\StandardCimv2\NetFirewallHyperVProfile +The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. +The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. + +## NOTES + +## RELATED LINKS + +[Get-NetfirewallHyperVRule](./Get-NetFirewallHyperVRule.md) + +[Get-NetfirewallHyperVPort](./Get-NetFirewallHyperVPort.md) + +[Get-NetfirewallHyperVVMCreator](./Get-NetFirewallHyperVVMCreator.md) + +[Get-NetFirewallHyperVVMSetting](./Get-NetFirewallHyperVVMSetting.md) + +[Set-NetFirewallHyperVVMSetting](./Set-NetFirewallHyperVVMSetting.md) + +[Get-NetFirewallHyperVProfile](./Get-NetFirewallHyperVProfile.md) + +[New-NetFirewallHyperVProfile](./New-NetFirewallHyperVProfile.md) + +[Set-NetFirewallHyperVProfile](./Set-NetFirewallHyperVProfile.md) \ No newline at end of file diff --git a/docset/winserver2022-ps/netsecurity/New-NetFirewallHyperVRule.md b/docset/winserver2022-ps/netsecurity/New-NetFirewallHyperVRule.md index c7debd3090..818e0fe9a8 100644 --- a/docset/winserver2022-ps/netsecurity/New-NetFirewallHyperVRule.md +++ b/docset/winserver2022-ps/netsecurity/New-NetFirewallHyperVRule.md @@ -16,7 +16,7 @@ Creates a new inbound or outbound Hyper-V firewall rule and adds the rule to the ## SYNTAX ``` -New-NetFirewallHyperVRule -DisplayName [-Name ] [-RulePriority ] [-Direction {Inbound | Outbound}] [-VMCreatorId ] [-Protocol ] [-LocalAddresses ] [-LocalPorts ] [-RemoteAddresses ] [-RemotePorts ] [-Action {NotConfigured | Allow | Block}] [-Enabled {True | False}] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] [] +New-NetFirewallHyperVRule -DisplayName [-Name ] [-RulePriority ] [-Direction {Inbound | Outbound}] [-VMCreatorId ] [-Protocol ] [-LocalAddresses ] [-LocalPorts ] [-RemoteAddresses ] [-RemotePorts ] [-Action {NotConfigured | Allow | Block}] [-Enabled {True | False}] [-Profiles {Any | Domain | Private | Public | NotApplicable}] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -315,13 +315,13 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. +### -VMCreatorId +Specifies that network packets originating from a VM matching this VMCreatorId matches this rule. The format for this value is a GUID enclosed in brackets: '{9E288F02-CE00-4D9E-BE2B-14CE463B0298}'. + +The default value is Any. ```yaml -Type: Int32 +Type: String Parameter Sets: (All) Aliases: Required: False @@ -331,13 +331,35 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -VMCreatorId -Specifies that network packets originating from a VM matching this VMCreatorId matches this rule. The format for this value is a GUID enclosed in brackets: '{9E288F02-CE00-4D9E-BE2B-14CE463B0298}'. - +### -Profiles +Specifies one or more profiles to which the hyper-v firewall rule is assigned. +The rule is active on the local computer only when the specified profile is currently active. +This relationship is many-to-many and can be indirectly modified by the user, by changing the Profiles field on instances of rules. +Only one profile is applied at a time. +The acceptable values for this parameter are: Any, Domain, Private, Public, or NotApplicable. The default value is Any. +Separate multiple entries with a comma and do not include any spaces. ```yaml -Type: String +Type: Profiles +Parameter Sets: (All) +Aliases: +Accepted values: Any, Domain, Private, Public, NotApplicable + +Required: False +Position: Named +Default value: Any +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ThrottleLimit +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. +If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. +The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +```yaml +Type: Int32 Parameter Sets: (All) Aliases: Required: False diff --git a/docset/winserver2022-ps/netsecurity/New-NetFirewallHyperVVMSetting.md b/docset/winserver2022-ps/netsecurity/New-NetFirewallHyperVVMSetting.md index 119ea03023..ecaca2f5be 100644 --- a/docset/winserver2022-ps/netsecurity/New-NetFirewallHyperVVMSetting.md +++ b/docset/winserver2022-ps/netsecurity/New-NetFirewallHyperVVMSetting.md @@ -16,19 +16,19 @@ Configures Hyper-V firewall per-VM settings on the target computer. ## SYNTAX ``` -New-NetFirewallHyperVVMSetting [-PolicyStore ] [-GPOSession ] [-Name ] [-Enabled {False | True | NotConfigured}] [-DefaultInboundAction {NotConfigured | Allow | Block}] [-DefaultOutboundAction {NotConfigured | Allow | Block}] [-LoopbackEnabled {False | True | NotConfigured}] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] [] +New-NetFirewallHyperVVMSetting [-PolicyStore ] [-GPOSession ] [-Name ] [-Enabled {False | True | NotConfigured}] [-DefaultInboundAction {NotConfigured | Allow | Block}] [-DefaultOutboundAction {NotConfigured | Allow | Block}] [-LoopbackEnabled {False | True | NotConfigured}] [-AllowHostPolicyMerge {False | True | NotConfigured}] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION The **New-NetFirewallHyperVVMSetting** cmdlet configures settings for the Hyper-V firewall per-VM settings on the system. These settings are applicable to all Hyper-V firewall ports created by a specific Hyper-V firewall VM creator. -This cmdlet should be used when none of the following are true: a Hyper-V VM creator has registered its VM creator ID with the system, when another Hyper-V per-VM setting is already configured for the specified VM creator ID, or when a Hyper-V firewall port is created with the specified VM creator ID. If any of the above are true, the Set-NetFirewallHyperVVMSetting cmdlet should be used. In other words, this cmdlet can be used to configure policy prior to the application corresponding to the specific VM creator ID has running on the system. +This cmdlet should be used when none of the following are true: a Hyper-V VM creator has registered its VM creator ID with the system, when another Hyper-V setting is already configured for the specified VM creator ID, or when a Hyper-V firewall port is created with the specified VM creator ID. If any of the above are true, the Set-NetFirewallHyperVVMSetting cmdlet should be used. In other words, this cmdlet can be used to configure policy prior to the application corresponding to the specific VM creator ID has running on the system. ## EXAMPLES ### EXAMPLE 1 ``` -PS C:\> New-NetFirewallHyperVVMSetting -Name '9E288F02-CE00-4D9E-BE2B-14CE463B0298}' -LoopbackEnabled True +PS C:\> New-NetFirewallHyperVVMSetting -Name '{9E288F02-CE00-4D9E-BE2B-14CE463B0298}' -LoopbackEnabled True ``` This configures the LoopbackEnabled setting for all Hyper-V firewall ports created by the Hyper-V firewall VM creator specified. @@ -69,6 +69,8 @@ Accept wildcard characters: False Specifies how to filter inbound traffic which does not match any Hyper-V firewall rules. The acceptable values for this parameter are: NotConfigured, Allow, or Block. +This setting applies the configuration to all profiles. For configuring at a per-profile granularity, use the `New-NetFirewallHyperVProfile` cmdlet. + - Block: Blocks inbound network traffic that does not match an inbound rule. - Allow: Allows all inbound network traffic, whether or not it matches an inbound rule. - NotConfigured: Resets this value back to its default. @@ -90,7 +92,9 @@ Accept wildcard characters: False ### -DefaultOutboundAction Specifies how to filter outbound traffic which does not match any Hyper-V firewall rules. -The acceptable values for this parameter are: NotConfigured, Allow, or Block. +The acceptable values for this parameter are: NotConfigured, Allow, or Block. + +This setting applies the configuration to all profiles. For configuring at a per-profile granularity, use the `New-NetFirewallHyperVProfile` cmdlet. - Block: Blocks outbound network traffic that does not match an outbound rule. - Allow: Allows all outbound network traffic, whether or not it matches an outbound rule. @@ -113,7 +117,9 @@ Accept wildcard characters: False ### -Enabled Determines whether or not the Hyper-V firewall is active and enforced. -The acceptable values for this parameter are: False, True, or NotConfigured. +The acceptable values for this parameter are: False, True, or NotConfigured. + +This setting applies the configuration to all profiles. For configuring at a per-profile granularity, use the `New-NetFirewallHyperVProfile` cmdlet. - True: Enables Windows Hyper-V firewall. - False: Disables Windows Hyper-V firewall. @@ -137,8 +143,6 @@ Accept wildcard characters: False ### -LoopbackEnabled Determines whether or not guest-host loopback traffic is allowed. -This setting is orthogonal to any existing Hyper-V firewall rules. That is, both this setting and the set of Hyper-V firewall rules must both be configured to allow guest-host communication. Furthermore, if either this setting or a Hyper-V firewall rule blocks the communication, it will be blocked. - The acceptable values for this parameter are: False, True, or NotConfigured. - True: Hyper-V firewall allows traffic between guest and host. @@ -160,6 +164,39 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -AllowHostPolicyMerge +Specifies that the host firewall policy should be merged into the effective policy. + +This setting controls whether host firewall profile settings (DefaultInboundAction, DefaultOutboundAction, Enabled, AllowLocalFirewallRules) as well as host firewall rules (only rules which are IP 5-tuple based, i.e, not having any local conditions such as application) should be applicable to Hyper-V firewall. + +Policy configurations may come from many stores. If this setting is True, the following order of precedence is used for determining the effective policy (highest priority to lowest priority): +- Host Firewall Group Policy +- Hyper-V Firewall MDM +- Host Firewall MDM +- Hyper-V Firewall Local +- Host Firewall Local + +The acceptable values for this parameter are: False, True, or NotConfigured. + +- True: Host firewall rules and settings are applied to Hyper-V Firewall. +- False: Host firewall rules and settings are not applied to Hyper-V firewall +- NotConfigured: Resets this value back to its default. + +The default setting is True. + +```yaml +Type: GpoBoolean +Parameter Sets: (All) +Aliases: +Accepted values: False, True, NotConfigured + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Name Specifies that the settings are applicable only to the Hyper-V firewall VM creator with the matching Id. The format for this value is a GUID enclosed in brackets: '{9E288F02-CE00-4D9E-BE2B-14CE463B0298}'. @@ -216,4 +253,10 @@ The path after the pound sign (`#`) provides the namespace and class name for th [Get-NetFirewallHyperVVMSetting](./Get-NetFirewallHyperVVMSetting.md) -[Set-NetFirewallHyperVVMSetting](./Set-NetFirewallHyperVVMSetting.md) \ No newline at end of file +[Set-NetFirewallHyperVVMSetting](./Set-NetFirewallHyperVVMSetting.md) + +[Get-NetFirewallHyperVProfile](./Get-NetFirewallHyperVProfile.md) + +[New-NetFirewallHyperVProfile](./New-NetFirewallHyperVProfile.md) + +[Set-NetFirewallHyperVProfile](./Set-NetFirewallHyperVProfile.md) \ No newline at end of file diff --git a/docset/winserver2022-ps/netsecurity/Set-NetFirewallHyperVProfile.md b/docset/winserver2022-ps/netsecurity/Set-NetFirewallHyperVProfile.md new file mode 100644 index 0000000000..6ede9e1388 --- /dev/null +++ b/docset/winserver2022-ps/netsecurity/Set-NetFirewallHyperVProfile.md @@ -0,0 +1,222 @@ +--- +description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. +external help file: NetFirewallHyperVProfile.cmdletDefinition.cdxml-help.xml +Module Name: NetSecurity +ms.date: 12/27/2016 +online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewallhypervprofile?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +title: Set-NetFirewallHyperVProfile +--- + +# Set-NetFirewallHyperVProfile + +## SYNOPSIS +Configures Hyper-V firewall profile settings settings on the target computer. + +## SYNTAX + +``` +Set-NetFirewallHyperVProfile [-PolicyStore ] [-GPOSession ] [-Name ] [-Profile {Any | Domain | Private | Public | NotApplicable}] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **Set-NetFirewallHyperVProfile** cmdlet configures the Hyper-V firewall profile settings on the system. These settings are applicable to all Hyper-V firewall ports created by a specific Hyper-V firewall VM creator. These settings apply to the VM only when the profile is active. + +This cmdlet should be used when a Hyper-V VM creator has registered its VM creator ID with the system, when another Hyper-V setting is already configured for the specified VM creator ID, or when a Hyper-V firewall port is created with the specified VM creator ID. If none of the above are true, then the New-NetFirewallHyperVProfile cmdlet should be used. + +## EXAMPLES + +### EXAMPLE 1 +``` +PS C:\> Set-NetFirewallHyperVProfile -Name '{9E288F02-CE00-4D9E-BE2B-14CE463B0298}' -Profile Public -Enabled True +``` + +This configures the Enabled setting on the Public profile for all Hyper-V firewall ports created by the Hyper-V firewall VM creator specified. + +## PARAMETERS + +### -AsJob +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CimSession +Runs the cmdlet in a remote session or on a remote computer. +Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. +The default is the current session on the local computer. + +```yaml +Type: CimSession[] +Parameter Sets: (All) +Aliases: Session +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultInboundAction +Specifies how to filter inbound traffic which does not match any Hyper-V firewall rules. +The acceptable values for this parameter are: NotConfigured, Allow, or Block. + +- Block: Blocks inbound network traffic that does not match an inbound rule. +- Allow: Allows all inbound network traffic, whether or not it matches an inbound rule. +- NotConfigured: Resets this value back to its default. + +The default setting is Block. + +```yaml +Type: Action +Parameter Sets: (All) +Aliases: +Accepted values: NotConfigured, Allow, Block + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultOutboundAction +Specifies how to filter outbound traffic which does not match any Hyper-V firewall rules. +The acceptable values for this parameter are: NotConfigured, Allow, or Block. + +- Block: Blocks outbound network traffic that does not match an outbound rule. +- Allow: Allows all outbound network traffic, whether or not it matches an outbound rule. +- NotConfigured: Resets this value back to its default. + +The default setting is Block. + +```yaml +Type: Action +Parameter Sets: (All) +Aliases: +Accepted values: NotConfigured, Allow, Block + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Enabled +Determines whether or not the Hyper-V firewall is active and enforced. +The acceptable values for this parameter are: False, True, or NotConfigured. + +- True: Enables Windows Hyper-V firewall. +- False: Disables Windows Hyper-V firewall. +- NotConfigured: Resets this value back to its default. + +The default setting is True. + +```yaml +Type: GpoBoolean +Parameter Sets: (All) +Aliases: +Accepted values: False, True, NotConfigured + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AllowLocalFirewallRules +Specifies that the local firewall rules should be merged into the effective policy. +The acceptable values for this parameter are: False, True, or NotConfigured. + +- True: The firewall rules defined by the local administrator are merged with firewall rules from MDM and are applied to the computer. +- False: The firewall rules defined by the local administrator are ignored, and only firewall rules from MDM are applied to the computer. +- NotConfigured: This resets the value back to the default. + +The default setting is True. + +```yaml +Type: GpoBoolean +Parameter Sets: (All) +Aliases: +Accepted values: False, True, NotConfigured + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +Specifies that the settings are applicable only to the Hyper-V firewall VM creator with the matching Id. +The format for this value is a GUID enclosed in brackets: '{9E288F02-CE00-4D9E-BE2B-14CE463B0298}'. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: VMCreatorId +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ThrottleLimit +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. +If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. +The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None + +## OUTPUTS + +### Microsoft.Management.Infrastructure.CimInstance#root\StandardCimv2\NetFirewallHyperVProfile +The `Microsoft.Management.Infrastructure.CimInstance` object is a wrapper class that displays Windows Management Instrumentation (WMI) objects. +The path after the pound sign (`#`) provides the namespace and class name for the underlying WMI object. + +## NOTES + +## RELATED LINKS + +[Get-NetfirewallHyperVRule](./Get-NetFirewallHyperVRule.md) + +[Get-NetfirewallHyperVPort](./Get-NetFirewallHyperVPort.md) + +[Get-NetfirewallHyperVVMCreator](./Get-NetFirewallHyperVVMCreator.md) + +[Get-NetFirewallHyperVVMSetting](./Get-NetFirewallHyperVVMSetting.md) + +[Set-NetFirewallHyperVVMSetting](./Set-NetFirewallHyperVVMSetting.md) + +[Get-NetFirewallHyperVProfile](./Get-NetFirewallHyperVProfile.md) + +[New-NetFirewallHyperVProfile](./New-NetFirewallHyperVProfile.md) + +[Set-NetFirewallHyperVProfile](./Set-NetFirewallHyperVProfile.md) \ No newline at end of file diff --git a/docset/winserver2022-ps/netsecurity/Set-NetFirewallHyperVVMSetting.md b/docset/winserver2022-ps/netsecurity/Set-NetFirewallHyperVVMSetting.md index 4cea4b68ce..0c7c1fbd8c 100644 --- a/docset/winserver2022-ps/netsecurity/Set-NetFirewallHyperVVMSetting.md +++ b/docset/winserver2022-ps/netsecurity/Set-NetFirewallHyperVVMSetting.md @@ -26,7 +26,7 @@ Set-NetFirewallHyperVVMSetting -InputObject Date: Mon, 21 Aug 2023 10:21:54 -0700 Subject: [PATCH 919/965] update rule set with profile arg --- .../netsecurity/Set-NetFirewallHyperVRule.md | 47 ++++++++++++++----- 1 file changed, 34 insertions(+), 13 deletions(-) diff --git a/docset/winserver2022-ps/netsecurity/Set-NetFirewallHyperVRule.md b/docset/winserver2022-ps/netsecurity/Set-NetFirewallHyperVRule.md index 201dd4e29f..e99e352d38 100644 --- a/docset/winserver2022-ps/netsecurity/Set-NetFirewallHyperVRule.md +++ b/docset/winserver2022-ps/netsecurity/Set-NetFirewallHyperVRule.md @@ -16,16 +16,15 @@ Modifies existing Hyper-V firewall rules. ## SYNTAX ``` -Set-NetFirewallHyperVRule [-Name] [-NewDisplayName ] [-RulePriority ] [-Direction {Inbound | Outbound}] [-VMCreatorId ] [-Protocol ] [-LocalAddresses ] [-LocalPorts ] [-RemoteAddresses ] [-RemotePorts ] [-Action {NotConfigured | Allow | Block}] [-Enabled {True | False}] [-CimSession ] [-ThrottleLimit -] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] +Set-NetFirewallHyperVRule [-Name] [-NewDisplayName ] [-RulePriority ] [-Direction {Inbound | Outbound}] [-VMCreatorId ] [-Protocol ] [-LocalAddresses ] [-LocalPorts ] [-RemoteAddresses ] [-RemotePorts ] [-Action {NotConfigured | Allow | Block}] [-Enabled {True | False}] [-Profiles {Any | Domain | Private | Public | NotApplicable}] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] ``` ``` -Set-NetFirewallHyperVRule -DisplayName [-NewDisplayName ] [-RulePriority ] [-Direction {Inbound | Outbound}] [-VMCreatorId ] [-Protocol ] [-LocalAddresses ] [-LocalPorts ] [-RemoteAddresses ] [-RemotePorts ] [-Action {NotConfigured | Allow | Block}] [-Enabled {True | False}] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] +Set-NetFirewallHyperVRule -DisplayName [-NewDisplayName ] [-RulePriority ] [-Direction {Inbound | Outbound}] [-VMCreatorId ] [-Protocol ] [-LocalAddresses ] [-LocalPorts ] [-RemoteAddresses ] [-RemotePorts ] [-Action {NotConfigured | Allow | Block}] [-Enabled {True | False}] [-Profiles {Any | Domain | Private | Public | NotApplicable}] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] ``` ``` -Set-NetFirewallHyperVRule -InputObject [-NewDisplayName ] [-RulePriority ] [-Direction {Inbound | Outbound}] [-VMCreatorId ] [-Protocol ] [-LocalAddresses ] [-LocalPorts ] [-RemoteAddresses ] [-RemotePorts ] [-Action {NotConfigured | Allow | Block}] [-Enabled {True | False}] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] +Set-NetFirewallHyperVRule -InputObject [-NewDisplayName ] [-RulePriority ] [-Direction {Inbound | Outbound}] [-VMCreatorId ] [-Protocol ] [-LocalAddresses ] [-LocalPorts ] [-RemoteAddresses ] [-RemotePorts ] [-Action {NotConfigured | Allow | Block}] [-Enabled {True | False}] [-Profiles {Any | Domain | Private | Public | NotApplicable}] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -308,13 +307,12 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -ThrottleLimit -Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. -The throttle limit applies only to the current cmdlet, not to the session or to the computer. +### -VMCreatorId +Updates the VMCreatorId value of the matching Hyper-V firewall rules. +This parameter specifies that network packets originating from a VM matching this VMCreatorId matches this rule. The format for this value is a GUID enclosed in brackets: '{9E288F02-CE00-4D9E-BE2B-14CE463B0298}'. ```yaml -Type: Int32 +Type: String Parameter Sets: (All) Aliases: Required: False @@ -324,12 +322,35 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -VMCreatorId -Updates the VMCreatorId value of the matching Hyper-V firewall rules. -This parameter specifies that network packets originating from a VM matching this VMCreatorId matches this rule. The format for this value is a GUID enclosed in brackets: '{9E288F02-CE00-4D9E-BE2B-14CE463B0298}'. +### -Profiles +Specifies one or more profiles to which the hyper-v firewall rule is assigned. +The rule is active on the local computer only when the specified profile is currently active. +This relationship is many-to-many and can be indirectly modified by the user, by changing the Profiles field on instances of rules. +Only one profile is applied at a time. +The acceptable values for this parameter are: Any, Domain, Private, Public, or NotApplicable. +The default value is Any. +Separate multiple entries with a comma and do not include any spaces. ```yaml -Type: String +Type: Profiles +Parameter Sets: (All) +Aliases: +Accepted values: Any, Domain, Private, Public, NotApplicable + +Required: False +Position: Named +Default value: Any +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ThrottleLimit +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. +If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. +The throttle limit applies only to the current cmdlet, not to the session or to the computer. + +```yaml +Type: Int32 Parameter Sets: (All) Aliases: Required: False From e728e136c388fc62e89a019fe104d595283c8d86 Mon Sep 17 00:00:00 2001 From: Matt Ige Date: Fri, 25 Aug 2023 16:28:58 -0700 Subject: [PATCH 920/965] Address CR --- .../netsecurity/Disable-NetFirewallHyperVRule.md | 9 +++++++-- .../netsecurity/Enable-NetFirewallHyperVRule.md | 7 ++++++- .../netsecurity/Get-NetFirewallHyperVPort.md | 5 +++-- .../netsecurity/Get-NetFirewallHyperVProfile.md | 4 +++- .../netsecurity/Get-NetFirewallHyperVRule.md | 6 +++++- .../netsecurity/Get-NetFirewallHyperVVMCreator.md | 3 ++- .../netsecurity/Get-NetFirewallHyperVVMSetting.md | 4 +++- .../netsecurity/New-NetFirewallHyperVProfile.md | 2 +- .../netsecurity/New-NetFirewallHyperVVMSetting.md | 2 +- .../netsecurity/Remove-NetFirewallHyperVRule.md | 7 ++++++- .../netsecurity/Rename-NetFirewallHyperVRule.md | 7 ++++++- .../netsecurity/Set-NetFirewallHyperVProfile.md | 3 ++- .../netsecurity/Set-NetFirewallHyperVRule.md | 5 ++++- .../netsecurity/Set-NetFirewallHyperVVMSetting.md | 4 +++- 14 files changed, 52 insertions(+), 16 deletions(-) diff --git a/docset/winserver2022-ps/netsecurity/Disable-NetFirewallHyperVRule.md b/docset/winserver2022-ps/netsecurity/Disable-NetFirewallHyperVRule.md index c68667216e..3914ed5ef1 100644 --- a/docset/winserver2022-ps/netsecurity/Disable-NetFirewallHyperVRule.md +++ b/docset/winserver2022-ps/netsecurity/Disable-NetFirewallHyperVRule.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: NetFirewallHyperVRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity -ms.date: 12/27/2016 +ms.date: 8/25/2023 online version: https://docs.microsoft.com/powershell/module/netsecurity/disable-netfirewallhypervrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Disable-NetFirewallHyperVRule @@ -15,22 +15,27 @@ Disables one or more Hyper-V firewall rules that match the specified criteria. ## SYNTAX +### GetAll (Default) ``` Disable-NetFirewallHyperVRule [-All] [-PolicyStore ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] ``` +### ByName ``` Disable-NetFirewallHyperVRule [-Name] [-PolicyStore ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] ``` +### ByDisplayName ``` Disable-NetFirewallHyperVRule -DisplayName [-PolicyStore ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] ``` +### ByQuery ``` Disable-NetFirewallHyperVRule [-Direction {Inbound | Outbound}] [-VMCreatorId ] [-Protocol ] [-Action {NotConfigured | Allow | Block}] [-Enabled {True | False}] [-EnforcementStatus {Unknown | OK | PartiallyEnforced | NoApplicablePorts | ParsingError | Error}] [-PolicyStoreSourceType {None | Local | MDM}] [-PolicyStore ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] ``` +### InputObject (cdxml) ``` Disable-NetFirewallHyperVRule -InputObject [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] ``` @@ -40,7 +45,7 @@ IMPORTANT NOTE: Running this cmdlet without parameters disables all Windows Hype The **Disable-NetFirewallHyperVRule** cmdlet disables a previously enabled Hyper-V firewall rule to be inactive. A Disabled rule will not actively modify system behavior, but the rule still exists on the computer so it can be re-enabled later. This is different from the Remove-NetFirewallHyperVRule cmdlet, which will permanently remove the rule. -This cmdlet gets disables one or more Hyper-V firewall rules with the Name parameter, DisplayName parameter, or rule properties. +This cmdlet disables one or more Hyper-V firewall rules with the Name parameter, DisplayName parameter, or rule properties. Disabling Hyper-V firewall rules can be useful for debugging Hyper-V firewall policy mismatch issues. diff --git a/docset/winserver2022-ps/netsecurity/Enable-NetFirewallHyperVRule.md b/docset/winserver2022-ps/netsecurity/Enable-NetFirewallHyperVRule.md index a167f68b52..e8a15000d7 100644 --- a/docset/winserver2022-ps/netsecurity/Enable-NetFirewallHyperVRule.md +++ b/docset/winserver2022-ps/netsecurity/Enable-NetFirewallHyperVRule.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: NetFirewallHyperVRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity -ms.date: 12/27/2016 +ms.date: 8/25/2023 online version: https://docs.microsoft.com/powershell/module/netsecurity/enable-netfirewallhypervrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Enable-NetFirewallHyperVRule @@ -15,22 +15,27 @@ Enables one or more Hyper-V firewall rules that match the specified criteria. ## SYNTAX +### GetAll (Default) ``` Enable-NetFirewallHyperVRule [-All] [-PolicyStore ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] ``` +### ByName ``` Enable-NetFirewallHyperVRule [-Name] [-PolicyStore ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] ``` +### ByDisplayName ``` Enable-NetFirewallHyperVRule -DisplayName [-PolicyStore ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] ``` +### ByQuery ``` Enable-NetFirewallHyperVRule [-Direction {Inbound | Outbound}] [-VMCreatorId ] [-Protocol ] [-Action {NotConfigured | Allow | Block}] [-Enabled {True | False}] [-EnforcementStatus {Unknown | OK | PartiallyEnforced | NoApplicablePorts | ParsingError | Error}] [-PolicyStoreSourceType {None | Local | MDM}] [-PolicyStore ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] ``` +### InputObject (cdxml) ``` Enable-NetFirewallHyperVRule -InputObject [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] ``` diff --git a/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVPort.md b/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVPort.md index 95c1575fb6..620010d8c8 100644 --- a/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVPort.md +++ b/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVPort.md @@ -2,19 +2,20 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: NetFirewallHyperVPort.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity -ms.date: 12/27/2016 +ms.date: 8/25/2023 online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewallhypervport?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetFirewallHyperVPort --- -# Get-NetFirewallHyperVRule +# Get-NetFirewallHyperVPort ## SYNOPSIS Retrieves Hyper-V firewall ports from the target computer. ## SYNTAX +### GetAll (Default) ``` Get-NetFirewallHyperVPort [-All] [-CimSession ] [-ThrottleLimit ] [-AsJob] [] ``` diff --git a/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVProfile.md b/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVProfile.md index e2d21c70e5..81203107d7 100644 --- a/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVProfile.md +++ b/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVProfile.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: NetFirewallHyperVProfile.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity -ms.date: 12/27/2016 +ms.date: 8/25/2023 online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewallhypervprofile?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetFirewallHyperVProfile @@ -15,10 +15,12 @@ Retrieves Hyper-V firewall per-profile settings from the target computer. ## SYNTAX +### GetAll (Default) ``` Get-NetFirewallHyperVProfile [-All] [-PolicyStore ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [] ``` +### ByName ``` Get-NetFirewallHyperVProfile [[-Name] ] [-Profile {Any | Domain | Private | Public | NotApplicable}] [-CimSession ] [-ThrottleLimit ] [-AsJob] [] ``` diff --git a/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVRule.md b/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVRule.md index e996f90412..07ccca8007 100644 --- a/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVRule.md +++ b/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVRule.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: NetFirewallHyperVRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity -ms.date: 12/27/2016 +ms.date: 8/25/2023 online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewallhypervrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetFirewallHyperVRule @@ -15,18 +15,22 @@ Retrieves Hyper-V firewall rules from the target computer. ## SYNTAX +### GetAll (Default) ``` Get-NetFirewallHyperVRule [-All] [-PolicyStore ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [] ``` +### ByName ``` Get-NetFirewallHyperVRule [-Name] [-PolicyStore ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [] ``` +### ByDisplayName ``` Get-NetFirewallHyperVRule -DisplayName [-PolicyStore ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [] ``` +### ByQuery ``` Get-NetFirewallHyperVRule [-Direction {Inbound | Outbound}] [-VMCreatorId ] [-Protocol ] [-Action {NotConfigured | Allow | Block}] [-Enabled {True | False}] [-EnforcementStatus {Unknown | OK | PartiallyEnforced | NoApplicablePorts | ParsingError | Error}] [-PolicyStoreSourceType {None | Local | GroupPolicy | Dynamic | Generated | Hardcoded | MDM | HostFirewallLocal | HostFirewallGroupPolicy | HostFirewallDynamic | HostFirewallMDM}] [-PolicyStore ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [] ``` diff --git a/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVVMCreator.md b/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVVMCreator.md index 663aa55dc9..926fc59829 100644 --- a/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVVMCreator.md +++ b/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVVMCreator.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: NetFirewallHyperVVMCreator.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity -ms.date: 12/27/2016 +ms.date: 8/25/2023 online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewallhypervvmcreator?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetFirewallHyperVVMCreator @@ -15,6 +15,7 @@ Retrieves Hyper-V firewall VM Creators from the target computer. ## SYNTAX +### GetAll (Default) ``` Get-NetFirewallHyperVVMCreator [-All] [-CimSession ] [-ThrottleLimit ] [-AsJob] [] ``` diff --git a/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVVMSetting.md b/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVVMSetting.md index 51a20d0078..7cae50c094 100644 --- a/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVVMSetting.md +++ b/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVVMSetting.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: NetFirewallHyperVVMSetting.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity -ms.date: 12/27/2016 +ms.date: 8/25/2023 online version: https://docs.microsoft.com/powershell/module/netsecurity/get-netfirewallhypervvmsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Get-NetFirewallHyperVVMSetting @@ -15,10 +15,12 @@ Retrieves Hyper-V firewall per-VM settings from the target computer. ## SYNTAX +### GetAll (Default) ``` Get-NetFirewallHyperVVMSetting [-All] [-PolicyStore ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [] ``` +### ByName ``` Get-NetFirewallHyperVVMSetting [-Name] [-PolicyStore ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [] ``` diff --git a/docset/winserver2022-ps/netsecurity/New-NetFirewallHyperVProfile.md b/docset/winserver2022-ps/netsecurity/New-NetFirewallHyperVProfile.md index ddc7450503..980261e8c4 100644 --- a/docset/winserver2022-ps/netsecurity/New-NetFirewallHyperVProfile.md +++ b/docset/winserver2022-ps/netsecurity/New-NetFirewallHyperVProfile.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: NetFirewallHyperVProfile.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity -ms.date: 12/27/2016 +ms.date: 8/25/2023 online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netfirewallhypervprofile?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetFirewallHyperVProfile diff --git a/docset/winserver2022-ps/netsecurity/New-NetFirewallHyperVVMSetting.md b/docset/winserver2022-ps/netsecurity/New-NetFirewallHyperVVMSetting.md index ecaca2f5be..47d1af30b7 100644 --- a/docset/winserver2022-ps/netsecurity/New-NetFirewallHyperVVMSetting.md +++ b/docset/winserver2022-ps/netsecurity/New-NetFirewallHyperVVMSetting.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: NetFirewallHyperVVMSetting.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity -ms.date: 12/27/2016 +ms.date: 8/25/2023 online version: https://docs.microsoft.com/powershell/module/netsecurity/new-netfirewallhypervvmsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: New-NetFirewallHyperVVMSetting diff --git a/docset/winserver2022-ps/netsecurity/Remove-NetFirewallHyperVRule.md b/docset/winserver2022-ps/netsecurity/Remove-NetFirewallHyperVRule.md index 3104d876f9..284f07ca98 100644 --- a/docset/winserver2022-ps/netsecurity/Remove-NetFirewallHyperVRule.md +++ b/docset/winserver2022-ps/netsecurity/Remove-NetFirewallHyperVRule.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: NetFirewallHyperVRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity -ms.date: 12/27/2016 +ms.date: 8/25/2023 online version: https://docs.microsoft.com/powershell/module/netsecurity/remove-netfirewallhypervrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-NetFirewallHyperVRule @@ -15,22 +15,27 @@ Deletes one or more Hyper-V firewall rules that match the specified criteria. ## SYNTAX +### GetAll (Default) ``` Remove-NetFirewallHyperVRule [-All] [-PolicyStore ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] ``` +### ByName ``` Remove-NetFirewallHyperVRule [-Name] [-PolicyStore ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] ``` +### ByDisplayName ``` Remove-NetFirewallHyperVRule -DisplayName [-PolicyStore ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] ``` +### ByQuery ``` Remove-NetFirewallHyperVRule [-Direction {Inbound | Outbound}] [-VMCreatorId ] [-Protocol ] [-Action {NotConfigured | Allow | Block}] [-Enabled {True | False}] [-EnforcementStatus {Unknown | OK | PartiallyEnforced | NoApplicablePorts | ParsingError | Error}] [-PolicyStoreSourceType {None | Local | MDM}] [-PolicyStore ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] ``` +### InputObject (cdxml) ``` Remove-NetFirewallHyperVRule -InputObject [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] ``` diff --git a/docset/winserver2022-ps/netsecurity/Rename-NetFirewallHyperVRule.md b/docset/winserver2022-ps/netsecurity/Rename-NetFirewallHyperVRule.md index 19a1c4e977..0c459fc3f0 100644 --- a/docset/winserver2022-ps/netsecurity/Rename-NetFirewallHyperVRule.md +++ b/docset/winserver2022-ps/netsecurity/Rename-NetFirewallHyperVRule.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: NetFirewallHyperVRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity -ms.date: 12/27/2016 +ms.date: 8/25/2023 online version: https://docs.microsoft.com/powershell/module/netsecurity/rename-netfirewallhypervrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Rename-NetFirewallHyperVRule @@ -15,22 +15,27 @@ Renames a single Hyper-V firewall rule. ## SYNTAX +### GetAll (Default) ``` Rename-NetFirewallHyperVRule -NewName [-All] [-PolicyStore ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] ``` +### ByName ``` Rename-NetFirewallHyperVRule [-Name] -NewName [-PolicyStore ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] ``` +### ByDisplayName ``` Rename-NetFirewallHyperVRule -DisplayName -NewName [-PolicyStore ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] ``` +### ByQuery ``` Rename-NetFirewallHyperVRule -NewName [-Direction {Inbound | Outbound}] [-VMCreatorId ] [-Protocol ] [-Action {NotConfigured | Allow | Block}] [-Enabled {True | False}] [-EnforcementStatus {Unknown | OK | PartiallyEnforced | NoApplicablePorts | ParsingError | Error}] [-PolicyStoreSourceType {None | Local | MDM}] [-PolicyStore ] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] ``` +### InputObject (cdxml) ``` Rename-NetFirewallHyperVRule -InputObject -NewName [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] ``` diff --git a/docset/winserver2022-ps/netsecurity/Set-NetFirewallHyperVProfile.md b/docset/winserver2022-ps/netsecurity/Set-NetFirewallHyperVProfile.md index 6ede9e1388..2c91bb8299 100644 --- a/docset/winserver2022-ps/netsecurity/Set-NetFirewallHyperVProfile.md +++ b/docset/winserver2022-ps/netsecurity/Set-NetFirewallHyperVProfile.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: NetFirewallHyperVProfile.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity -ms.date: 12/27/2016 +ms.date: 8/25/2023 online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewallhypervprofile?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetFirewallHyperVProfile @@ -15,6 +15,7 @@ Configures Hyper-V firewall profile settings settings on the target computer. ## SYNTAX +### Query (cdxml) (Default) ``` Set-NetFirewallHyperVProfile [-PolicyStore ] [-GPOSession ] [-Name ] [-Profile {Any | Domain | Private | Public | NotApplicable}] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] [] ``` diff --git a/docset/winserver2022-ps/netsecurity/Set-NetFirewallHyperVRule.md b/docset/winserver2022-ps/netsecurity/Set-NetFirewallHyperVRule.md index e99e352d38..d9290941fd 100644 --- a/docset/winserver2022-ps/netsecurity/Set-NetFirewallHyperVRule.md +++ b/docset/winserver2022-ps/netsecurity/Set-NetFirewallHyperVRule.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: NetFirewallHyperVRule.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity -ms.date: 12/27/2016 +ms.date: 8/25/2023 online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewallhypervrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetFirewallHyperVRule @@ -15,14 +15,17 @@ Modifies existing Hyper-V firewall rules. ## SYNTAX +### ByName ``` Set-NetFirewallHyperVRule [-Name] [-NewDisplayName ] [-RulePriority ] [-Direction {Inbound | Outbound}] [-VMCreatorId ] [-Protocol ] [-LocalAddresses ] [-LocalPorts ] [-RemoteAddresses ] [-RemotePorts ] [-Action {NotConfigured | Allow | Block}] [-Enabled {True | False}] [-Profiles {Any | Domain | Private | Public | NotApplicable}] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] ``` +### ByDisplayName ``` Set-NetFirewallHyperVRule -DisplayName [-NewDisplayName ] [-RulePriority ] [-Direction {Inbound | Outbound}] [-VMCreatorId ] [-Protocol ] [-LocalAddresses ] [-LocalPorts ] [-RemoteAddresses ] [-RemotePorts ] [-Action {NotConfigured | Allow | Block}] [-Enabled {True | False}] [-Profiles {Any | Domain | Private | Public | NotApplicable}] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] ``` +### InputObject (cdxml) ``` Set-NetFirewallHyperVRule -InputObject [-NewDisplayName ] [-RulePriority ] [-Direction {Inbound | Outbound}] [-VMCreatorId ] [-Protocol ] [-LocalAddresses ] [-LocalPorts ] [-RemoteAddresses ] [-RemotePorts ] [-Action {NotConfigured | Allow | Block}] [-Enabled {True | False}] [-Profiles {Any | Domain | Private | Public | NotApplicable}] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] ``` diff --git a/docset/winserver2022-ps/netsecurity/Set-NetFirewallHyperVVMSetting.md b/docset/winserver2022-ps/netsecurity/Set-NetFirewallHyperVVMSetting.md index 0c7c1fbd8c..a1214a630f 100644 --- a/docset/winserver2022-ps/netsecurity/Set-NetFirewallHyperVVMSetting.md +++ b/docset/winserver2022-ps/netsecurity/Set-NetFirewallHyperVVMSetting.md @@ -2,7 +2,7 @@ description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. external help file: NetFirewallHyperVVMSetting.cmdletDefinition.cdxml-help.xml Module Name: NetSecurity -ms.date: 12/27/2016 +ms.date: 8/25/2023 online version: https://docs.microsoft.com/powershell/module/netsecurity/set-netfirewallhypervvmsetting?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Set-NetFirewallHyperVVMSetting @@ -15,10 +15,12 @@ Configures Hyper-V firewall per-VM settings on the target computer. ## SYNTAX +### ByName ``` Set-NetFirewallHyperVVMSetting [-Name] [-Enabled {False | True | NotConfigured}] [-DefaultInboundAction {NotConfigured | Allow | Block}] [-DefaultOutboundAction {NotConfigured | Allow | Block}] [-LoopbackEnabled {False | True | NotConfigured}] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] ``` +### InputObject (cdxml) ``` Set-NetFirewallHyperVVMSetting -InputObject [-Enabled {False | True | NotConfigured}] [-DefaultInboundAction {NotConfigured | Allow | Block}] [-DefaultOutboundAction {NotConfigured | Allow | Block}] [-LoopbackEnabled {False | True | NotConfigured}] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [-WhatIf] [-Confirm] [] ``` From 36c41a69bf3e59b7ab6b7876775381651e99fa80 Mon Sep 17 00:00:00 2001 From: Becca Robins <35232346+beccarobins@users.noreply.github.com> Date: Mon, 28 Aug 2023 15:41:04 -0400 Subject: [PATCH 921/965] Replaces broken link --- docset/docs-conceptual/winserver2016-ps/get-started.md | 2 +- docset/docs-conceptual/winserver2019-ps/get-started.md | 2 +- docset/docs-conceptual/winserver2022-ps/get-started.md | 2 +- docset/winserver2016-ps/adfs/Remove-AdfsFarmNode.md | 3 +-- 4 files changed, 4 insertions(+), 5 deletions(-) diff --git a/docset/docs-conceptual/winserver2016-ps/get-started.md b/docset/docs-conceptual/winserver2016-ps/get-started.md index 634c6f0c5d..e50e724708 100644 --- a/docset/docs-conceptual/winserver2016-ps/get-started.md +++ b/docset/docs-conceptual/winserver2016-ps/get-started.md @@ -71,7 +71,7 @@ computer. For more information, see | Iscsi | [iSCSI](/powershell/module/iscsi) | | IscsiTarget | [iSCSI Target](/powershell/module/iscsitarget) | | KDS | [Key Distribution Server](/powershell/module/kds) | -| Microsoft.Windows.ServerManager.Migration | [Server Migration](/powershell/module/Microsoft.Windows.ServerManager.Migration) | +| Microsoft.Windows.ServerManager.Migration | [Server Migration](../docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration.md) | | MMAgent | [Memory Management Agent](/powershell/module/mmagent) | | Mpio | [MPIO](/powershell/module/mpio) | | MSDTC | [Distributed Transaction Coordinator](/powershell/module/msdtc) | diff --git a/docset/docs-conceptual/winserver2019-ps/get-started.md b/docset/docs-conceptual/winserver2019-ps/get-started.md index 144f471026..f8f1a6464d 100644 --- a/docset/docs-conceptual/winserver2019-ps/get-started.md +++ b/docset/docs-conceptual/winserver2019-ps/get-started.md @@ -70,7 +70,7 @@ computer. For more information, see | Iscsi | [iSCSI](/powershell/module/iscsi) | | IscsiTarget | [iSCSI Target](/powershell/module/iscsitarget) | | KDS | [Key Distribution Server](/powershell/module/kds) | -| Microsoft.Windows.ServerManager.Migration | [Server Migration](/powershell/module/Microsoft.Windows.ServerManager.Migration/) | +| Microsoft.Windows.ServerManager.Migration | [Server Migration](../docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration.md) | | MMAgent | [Memory Management Agent](/powershell/module/mmagent) | | Mpio | [MPIO](/powershell/module/mpio) | | MSDTC | [Distributed Transaction Coordinator](/powershell/module/msdtc) | diff --git a/docset/docs-conceptual/winserver2022-ps/get-started.md b/docset/docs-conceptual/winserver2022-ps/get-started.md index b4a9c83434..40ad4c2a91 100644 --- a/docset/docs-conceptual/winserver2022-ps/get-started.md +++ b/docset/docs-conceptual/winserver2022-ps/get-started.md @@ -70,7 +70,7 @@ computer. For more information, see | Iscsi | [iSCSI](/powershell/module/iscsi) | | IscsiTarget | [iSCSI Target](/powershell/module/iscsitarget) | | KDS | [Key Distribution Server](/powershell/module/kds) | -| Microsoft.Windows.ServerManager.Migration | [Server Migration](/powershell/module/Microsoft.Windows.ServerManager.Migration/) | +| Microsoft.Windows.ServerManager.Migration | [Server Migration](../docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration.md) | | MMAgent | [Memory Management Agent](/powershell/module/mmagent) | | Mpio | [MPIO](/powershell/module/mpio) | | MSDTC | [Distributed Transaction Coordinator](/powershell/module/msdtc) | diff --git a/docset/winserver2016-ps/adfs/Remove-AdfsFarmNode.md b/docset/winserver2016-ps/adfs/Remove-AdfsFarmNode.md index 3e9f2d3a69..f965045a2f 100644 --- a/docset/winserver2016-ps/adfs/Remove-AdfsFarmNode.md +++ b/docset/winserver2016-ps/adfs/Remove-AdfsFarmNode.md @@ -87,5 +87,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Uninstall-WindowsFeature](/powershell/module/microsoft.windows.servermanager.migration/uninstall-windowsfeature) - +[Uninstall-WindowsFeature](/powershell/module/servermanager/uninstall-windowsfeature) From 09d7627847f79f842ae088cbd3002a88fffddec1 Mon Sep 17 00:00:00 2001 From: Becca Robins <35232346+beccarobins@users.noreply.github.com> Date: Mon, 28 Aug 2023 15:53:49 -0400 Subject: [PATCH 922/965] Tests different syntax --- docset/docs-conceptual/winserver2016-ps/get-started.md | 2 +- docset/docs-conceptual/winserver2019-ps/get-started.md | 2 +- docset/docs-conceptual/winserver2022-ps/get-started.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docset/docs-conceptual/winserver2016-ps/get-started.md b/docset/docs-conceptual/winserver2016-ps/get-started.md index e50e724708..873e811c25 100644 --- a/docset/docs-conceptual/winserver2016-ps/get-started.md +++ b/docset/docs-conceptual/winserver2016-ps/get-started.md @@ -71,7 +71,7 @@ computer. For more information, see | Iscsi | [iSCSI](/powershell/module/iscsi) | | IscsiTarget | [iSCSI Target](/powershell/module/iscsitarget) | | KDS | [Key Distribution Server](/powershell/module/kds) | -| Microsoft.Windows.ServerManager.Migration | [Server Migration](../docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration.md) | +| Microsoft.Windows.ServerManager.Migration | [Server Migration](/docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration) | | MMAgent | [Memory Management Agent](/powershell/module/mmagent) | | Mpio | [MPIO](/powershell/module/mpio) | | MSDTC | [Distributed Transaction Coordinator](/powershell/module/msdtc) | diff --git a/docset/docs-conceptual/winserver2019-ps/get-started.md b/docset/docs-conceptual/winserver2019-ps/get-started.md index f8f1a6464d..974823471c 100644 --- a/docset/docs-conceptual/winserver2019-ps/get-started.md +++ b/docset/docs-conceptual/winserver2019-ps/get-started.md @@ -70,7 +70,7 @@ computer. For more information, see | Iscsi | [iSCSI](/powershell/module/iscsi) | | IscsiTarget | [iSCSI Target](/powershell/module/iscsitarget) | | KDS | [Key Distribution Server](/powershell/module/kds) | -| Microsoft.Windows.ServerManager.Migration | [Server Migration](../docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration.md) | +| Microsoft.Windows.ServerManager.Migration | [Server Migration](/docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration) | | MMAgent | [Memory Management Agent](/powershell/module/mmagent) | | Mpio | [MPIO](/powershell/module/mpio) | | MSDTC | [Distributed Transaction Coordinator](/powershell/module/msdtc) | diff --git a/docset/docs-conceptual/winserver2022-ps/get-started.md b/docset/docs-conceptual/winserver2022-ps/get-started.md index 40ad4c2a91..cf7e99810d 100644 --- a/docset/docs-conceptual/winserver2022-ps/get-started.md +++ b/docset/docs-conceptual/winserver2022-ps/get-started.md @@ -70,7 +70,7 @@ computer. For more information, see | Iscsi | [iSCSI](/powershell/module/iscsi) | | IscsiTarget | [iSCSI Target](/powershell/module/iscsitarget) | | KDS | [Key Distribution Server](/powershell/module/kds) | -| Microsoft.Windows.ServerManager.Migration | [Server Migration](../docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration.md) | +| Microsoft.Windows.ServerManager.Migration | [Server Migration](/docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration) | | MMAgent | [Memory Management Agent](/powershell/module/mmagent) | | Mpio | [MPIO](/powershell/module/mpio) | | MSDTC | [Distributed Transaction Coordinator](/powershell/module/msdtc) | From 6e06a93d21a7dbd31aacf9d506c9fbdf25c65187 Mon Sep 17 00:00:00 2001 From: Becca Robins <35232346+beccarobins@users.noreply.github.com> Date: Mon, 28 Aug 2023 16:29:01 -0400 Subject: [PATCH 923/965] Apply suggestions from code review --- docset/docs-conceptual/winserver2016-ps/get-started.md | 2 +- docset/docs-conceptual/winserver2022-ps/get-started.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/docs-conceptual/winserver2016-ps/get-started.md b/docset/docs-conceptual/winserver2016-ps/get-started.md index 873e811c25..634c6f0c5d 100644 --- a/docset/docs-conceptual/winserver2016-ps/get-started.md +++ b/docset/docs-conceptual/winserver2016-ps/get-started.md @@ -71,7 +71,7 @@ computer. For more information, see | Iscsi | [iSCSI](/powershell/module/iscsi) | | IscsiTarget | [iSCSI Target](/powershell/module/iscsitarget) | | KDS | [Key Distribution Server](/powershell/module/kds) | -| Microsoft.Windows.ServerManager.Migration | [Server Migration](/docset/winserver2016-ps/Microsoft.Windows.ServerManager.Migration) | +| Microsoft.Windows.ServerManager.Migration | [Server Migration](/powershell/module/Microsoft.Windows.ServerManager.Migration) | | MMAgent | [Memory Management Agent](/powershell/module/mmagent) | | Mpio | [MPIO](/powershell/module/mpio) | | MSDTC | [Distributed Transaction Coordinator](/powershell/module/msdtc) | diff --git a/docset/docs-conceptual/winserver2022-ps/get-started.md b/docset/docs-conceptual/winserver2022-ps/get-started.md index cf7e99810d..dda4eda97a 100644 --- a/docset/docs-conceptual/winserver2022-ps/get-started.md +++ b/docset/docs-conceptual/winserver2022-ps/get-started.md @@ -70,7 +70,7 @@ computer. For more information, see | Iscsi | [iSCSI](/powershell/module/iscsi) | | IscsiTarget | [iSCSI Target](/powershell/module/iscsitarget) | | KDS | [Key Distribution Server](/powershell/module/kds) | -| Microsoft.Windows.ServerManager.Migration | [Server Migration](/docset/winserver2022-ps/Microsoft.Windows.ServerManager.Migration) | +| Microsoft.Windows.ServerManager.Migration | [Server Migration](/powershell/module/Microsoft.Windows.ServerManager.Migration) | | MMAgent | [Memory Management Agent](/powershell/module/mmagent) | | Mpio | [MPIO](/powershell/module/mpio) | | MSDTC | [Distributed Transaction Coordinator](/powershell/module/msdtc) | From 3355b4950cec4f7283f34831d0f98bb70dabaf55 Mon Sep 17 00:00:00 2001 From: Becca Robins <35232346+beccarobins@users.noreply.github.com> Date: Mon, 28 Aug 2023 16:29:42 -0400 Subject: [PATCH 924/965] Update docset/docs-conceptual/winserver2019-ps/get-started.md --- docset/docs-conceptual/winserver2019-ps/get-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/docs-conceptual/winserver2019-ps/get-started.md b/docset/docs-conceptual/winserver2019-ps/get-started.md index 974823471c..833b3fd807 100644 --- a/docset/docs-conceptual/winserver2019-ps/get-started.md +++ b/docset/docs-conceptual/winserver2019-ps/get-started.md @@ -70,7 +70,7 @@ computer. For more information, see | Iscsi | [iSCSI](/powershell/module/iscsi) | | IscsiTarget | [iSCSI Target](/powershell/module/iscsitarget) | | KDS | [Key Distribution Server](/powershell/module/kds) | -| Microsoft.Windows.ServerManager.Migration | [Server Migration](/docset/winserver2019-ps/Microsoft.Windows.ServerManager.Migration) | +| Microsoft.Windows.ServerManager.Migration | [Server Migration](/powershell/module/Microsoft.Windows.ServerManager.Migration) | | MMAgent | [Memory Management Agent](/powershell/module/mmagent) | | Mpio | [MPIO](/powershell/module/mpio) | | MSDTC | [Distributed Transaction Coordinator](/powershell/module/msdtc) | From 0e357e0f1c452bcea6c74b46d9adde1560e7aebf Mon Sep 17 00:00:00 2001 From: Becca Robins <35232346+beccarobins@users.noreply.github.com> Date: Mon, 28 Aug 2023 16:38:48 -0400 Subject: [PATCH 925/965] Apply suggestions from code review --- docset/docs-conceptual/winserver2019-ps/get-started.md | 2 +- docset/docs-conceptual/winserver2022-ps/get-started.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/docs-conceptual/winserver2019-ps/get-started.md b/docset/docs-conceptual/winserver2019-ps/get-started.md index 833b3fd807..144f471026 100644 --- a/docset/docs-conceptual/winserver2019-ps/get-started.md +++ b/docset/docs-conceptual/winserver2019-ps/get-started.md @@ -70,7 +70,7 @@ computer. For more information, see | Iscsi | [iSCSI](/powershell/module/iscsi) | | IscsiTarget | [iSCSI Target](/powershell/module/iscsitarget) | | KDS | [Key Distribution Server](/powershell/module/kds) | -| Microsoft.Windows.ServerManager.Migration | [Server Migration](/powershell/module/Microsoft.Windows.ServerManager.Migration) | +| Microsoft.Windows.ServerManager.Migration | [Server Migration](/powershell/module/Microsoft.Windows.ServerManager.Migration/) | | MMAgent | [Memory Management Agent](/powershell/module/mmagent) | | Mpio | [MPIO](/powershell/module/mpio) | | MSDTC | [Distributed Transaction Coordinator](/powershell/module/msdtc) | diff --git a/docset/docs-conceptual/winserver2022-ps/get-started.md b/docset/docs-conceptual/winserver2022-ps/get-started.md index dda4eda97a..b4a9c83434 100644 --- a/docset/docs-conceptual/winserver2022-ps/get-started.md +++ b/docset/docs-conceptual/winserver2022-ps/get-started.md @@ -70,7 +70,7 @@ computer. For more information, see | Iscsi | [iSCSI](/powershell/module/iscsi) | | IscsiTarget | [iSCSI Target](/powershell/module/iscsitarget) | | KDS | [Key Distribution Server](/powershell/module/kds) | -| Microsoft.Windows.ServerManager.Migration | [Server Migration](/powershell/module/Microsoft.Windows.ServerManager.Migration) | +| Microsoft.Windows.ServerManager.Migration | [Server Migration](/powershell/module/Microsoft.Windows.ServerManager.Migration/) | | MMAgent | [Memory Management Agent](/powershell/module/mmagent) | | Mpio | [MPIO](/powershell/module/mpio) | | MSDTC | [Distributed Transaction Coordinator](/powershell/module/msdtc) | From 03bd1e38f4eae9c0b379d7c862144becf57a9463 Mon Sep 17 00:00:00 2001 From: Chandra Kumar Date: Tue, 29 Aug 2023 11:57:30 -0700 Subject: [PATCH 926/965] DevDrive: Update Format-Volume.md Add -DevDrive switch to the help --- .../winserver2022-ps/storage/Format-Volume.md | 27 ++++++++++++++----- 1 file changed, 21 insertions(+), 6 deletions(-) diff --git a/docset/winserver2022-ps/storage/Format-Volume.md b/docset/winserver2022-ps/storage/Format-Volume.md index d0dbb01fe0..128586be6d 100644 --- a/docset/winserver2022-ps/storage/Format-Volume.md +++ b/docset/winserver2022-ps/storage/Format-Volume.md @@ -19,7 +19,7 @@ Formats one or more existing volumes or a new volume on an existing partition. ``` Format-Volume [-DriveLetter] [-FileSystem ] [-NewFileSystemLabel ] [-AllocationUnitSize ] [-Full] [-Force] [-Compress] [-ShortFileNameSupport ] - [-SetIntegrityStreams ] [-UseLargeFRS] [-DisableHeatGathering] [-IsDAX ] + [-SetIntegrityStreams ] [-UseLargeFRS] [-DisableHeatGathering] [-IsDAX ] [-DevDrive] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] [] ``` @@ -27,7 +27,7 @@ Format-Volume [-DriveLetter] [-FileSystem ] [-NewFileSystemLabe ``` Format-Volume -ObjectId [-FileSystem ] [-NewFileSystemLabel ] [-AllocationUnitSize ] [-Full] [-Force] [-Compress] [-ShortFileNameSupport ] - [-SetIntegrityStreams ] [-UseLargeFRS] [-DisableHeatGathering] [-IsDAX ] + [-SetIntegrityStreams ] [-UseLargeFRS] [-DisableHeatGathering] [-IsDAX ] [-DevDrive] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] [] ``` @@ -35,7 +35,7 @@ Format-Volume -ObjectId [-FileSystem ] [-NewFileSystemLabel < ``` Format-Volume -Path [-FileSystem ] [-NewFileSystemLabel ] [-AllocationUnitSize ] [-Full] [-Force] [-Compress] [-ShortFileNameSupport ] - [-SetIntegrityStreams ] [-UseLargeFRS] [-DisableHeatGathering] [-IsDAX ] + [-SetIntegrityStreams ] [-UseLargeFRS] [-DisableHeatGathering] [-IsDAX ] [-DevDrive] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] [] ``` @@ -43,7 +43,7 @@ Format-Volume -Path [-FileSystem ] [-NewFileSystemLabel [-FileSystem ] [-NewFileSystemLabel ] [-AllocationUnitSize ] [-Full] [-Force] [-Compress] [-ShortFileNameSupport ] - [-SetIntegrityStreams ] [-UseLargeFRS] [-DisableHeatGathering] [-IsDAX ] + [-SetIntegrityStreams ] [-UseLargeFRS] [-DisableHeatGathering] [-IsDAX ] [-DevDrive] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] [] ``` @@ -51,7 +51,7 @@ Format-Volume -FileSystemLabel [-FileSystem ] [-NewFileSystem ``` Format-Volume [-Partition ] [-FileSystem ] [-NewFileSystemLabel ] [-AllocationUnitSize ] [-Full] [-Force] [-Compress] [-ShortFileNameSupport ] - [-SetIntegrityStreams ] [-UseLargeFRS] [-DisableHeatGathering] [-IsDAX ] + [-SetIntegrityStreams ] [-UseLargeFRS] [-DisableHeatGathering] [-IsDAX ] [-DevDrive] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] [] ``` @@ -59,7 +59,7 @@ Format-Volume [-Partition ] [-FileSystem ] [-NewFileSystemL ``` Format-Volume -InputObject [-FileSystem ] [-NewFileSystemLabel ] [-AllocationUnitSize ] [-Full] [-Force] [-Compress] [-ShortFileNameSupport ] - [-SetIntegrityStreams ] [-UseLargeFRS] [-DisableHeatGathering] [-IsDAX ] + [-SetIntegrityStreams ] [-UseLargeFRS] [-DisableHeatGathering] [-IsDAX ] [-DevDrive] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-WhatIf] [-Confirm] [] ``` @@ -192,6 +192,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -DevDrive +Formats the volume as a [dev drive](https://learn.microsoft.com/en-us/windows/dev-drive/). A dev drive is optimized for performance of developer scenarios and gives administators control over what minifilters are attached to the volume. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -DisableHeatGathering Indicates that the cmdlet does not gather file activity on the specified tiered volume. You can override file placement based on the desired storage tier. From 7d181758a224ed9a5184bc6482bc36000567a6db Mon Sep 17 00:00:00 2001 From: Sean Wheeler Date: Wed, 30 Aug 2023 13:51:23 -0500 Subject: [PATCH 927/965] Update docset/winserver2022-ps/storage/Format-Volume.md --- docset/winserver2022-ps/storage/Format-Volume.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/storage/Format-Volume.md b/docset/winserver2022-ps/storage/Format-Volume.md index 128586be6d..f40e73d22b 100644 --- a/docset/winserver2022-ps/storage/Format-Volume.md +++ b/docset/winserver2022-ps/storage/Format-Volume.md @@ -193,7 +193,7 @@ Accept wildcard characters: False ``` ### -DevDrive -Formats the volume as a [dev drive](https://learn.microsoft.com/en-us/windows/dev-drive/). A dev drive is optimized for performance of developer scenarios and gives administators control over what minifilters are attached to the volume. +Formats the volume as a [dev drive](/windows/dev-drive/). A dev drive is optimized for performance of developer scenarios and gives administators control over what minifilters are attached to the volume. ```yaml Type: SwitchParameter From cf5cf70b034b2dea13482a85fb44468d99f1410d Mon Sep 17 00:00:00 2001 From: Becca Robins <35232346+beccarobins@users.noreply.github.com> Date: Tue, 5 Sep 2023 09:07:48 -0400 Subject: [PATCH 928/965] Fixes broken links --- docset/docs-conceptual/winserver2016-ps/get-started.md | 2 +- docset/docs-conceptual/winserver2019-ps/get-started.md | 2 +- docset/docs-conceptual/winserver2022-ps/get-started.md | 2 +- docset/winserver2022-ps/adfs/Remove-AdfsFarmNode.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docset/docs-conceptual/winserver2016-ps/get-started.md b/docset/docs-conceptual/winserver2016-ps/get-started.md index 634c6f0c5d..b7b69e5ef1 100644 --- a/docset/docs-conceptual/winserver2016-ps/get-started.md +++ b/docset/docs-conceptual/winserver2016-ps/get-started.md @@ -71,7 +71,7 @@ computer. For more information, see | Iscsi | [iSCSI](/powershell/module/iscsi) | | IscsiTarget | [iSCSI Target](/powershell/module/iscsitarget) | | KDS | [Key Distribution Server](/powershell/module/kds) | -| Microsoft.Windows.ServerManager.Migration | [Server Migration](/powershell/module/Microsoft.Windows.ServerManager.Migration) | +| Microsoft.Windows.ServerManager.Migration | [Server Migration](../../../winserver2022-ps/Microsoft.Windows.ServerManager.Migration/Uninstall-WindowsFeature.md) | | MMAgent | [Memory Management Agent](/powershell/module/mmagent) | | Mpio | [MPIO](/powershell/module/mpio) | | MSDTC | [Distributed Transaction Coordinator](/powershell/module/msdtc) | diff --git a/docset/docs-conceptual/winserver2019-ps/get-started.md b/docset/docs-conceptual/winserver2019-ps/get-started.md index 144f471026..fa578576a3 100644 --- a/docset/docs-conceptual/winserver2019-ps/get-started.md +++ b/docset/docs-conceptual/winserver2019-ps/get-started.md @@ -70,7 +70,7 @@ computer. For more information, see | Iscsi | [iSCSI](/powershell/module/iscsi) | | IscsiTarget | [iSCSI Target](/powershell/module/iscsitarget) | | KDS | [Key Distribution Server](/powershell/module/kds) | -| Microsoft.Windows.ServerManager.Migration | [Server Migration](/powershell/module/Microsoft.Windows.ServerManager.Migration/) | +| Microsoft.Windows.ServerManager.Migration | [Server Migration](../../../winserver2022-ps/windowsupdate/WindowsUpdate.md) | | MMAgent | [Memory Management Agent](/powershell/module/mmagent) | | Mpio | [MPIO](/powershell/module/mpio) | | MSDTC | [Distributed Transaction Coordinator](/powershell/module/msdtc) | diff --git a/docset/docs-conceptual/winserver2022-ps/get-started.md b/docset/docs-conceptual/winserver2022-ps/get-started.md index b4a9c83434..d5855d5929 100644 --- a/docset/docs-conceptual/winserver2022-ps/get-started.md +++ b/docset/docs-conceptual/winserver2022-ps/get-started.md @@ -70,7 +70,7 @@ computer. For more information, see | Iscsi | [iSCSI](/powershell/module/iscsi) | | IscsiTarget | [iSCSI Target](/powershell/module/iscsitarget) | | KDS | [Key Distribution Server](/powershell/module/kds) | -| Microsoft.Windows.ServerManager.Migration | [Server Migration](/powershell/module/Microsoft.Windows.ServerManager.Migration/) | +| Microsoft.Windows.ServerManager.Migration | [Server Migration](../../../winserver2022-ps/windowsupdate/WindowsUpdate.md) | | MMAgent | [Memory Management Agent](/powershell/module/mmagent) | | Mpio | [MPIO](/powershell/module/mpio) | | MSDTC | [Distributed Transaction Coordinator](/powershell/module/msdtc) | diff --git a/docset/winserver2022-ps/adfs/Remove-AdfsFarmNode.md b/docset/winserver2022-ps/adfs/Remove-AdfsFarmNode.md index de4f79006f..27b4c89918 100644 --- a/docset/winserver2022-ps/adfs/Remove-AdfsFarmNode.md +++ b/docset/winserver2022-ps/adfs/Remove-AdfsFarmNode.md @@ -87,5 +87,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Uninstall-WindowsFeature](/powershell/module/Microsoft.Windows.ServerManager.Migration/Uninstall-WindowsFeature) +[Uninstall-WindowsFeature](../../ServerManager/Uninstall-WindowsFeature.md) From 0ddf3bc2243ada15756e53784e995d60c3848237 Mon Sep 17 00:00:00 2001 From: Becca Robins <35232346+beccarobins@users.noreply.github.com> Date: Tue, 5 Sep 2023 09:33:34 -0400 Subject: [PATCH 929/965] Update Remove-AdfsFarmNode.md --- docset/winserver2022-ps/adfs/Remove-AdfsFarmNode.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/adfs/Remove-AdfsFarmNode.md b/docset/winserver2022-ps/adfs/Remove-AdfsFarmNode.md index 27b4c89918..2e1730848e 100644 --- a/docset/winserver2022-ps/adfs/Remove-AdfsFarmNode.md +++ b/docset/winserver2022-ps/adfs/Remove-AdfsFarmNode.md @@ -87,5 +87,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Uninstall-WindowsFeature](../../ServerManager/Uninstall-WindowsFeature.md) +[Uninstall-WindowsFeature](../winserver2022-ps/Microsoft.Windows.ServerManager.Migration/Uninstall-WindowsFeature.md) From 2f5a6f5224d19703a0f1154a6d267c30bab2448c Mon Sep 17 00:00:00 2001 From: Becca Robins <35232346+beccarobins@users.noreply.github.com> Date: Tue, 5 Sep 2023 09:46:49 -0400 Subject: [PATCH 930/965] Update Remove-AdfsFarmNode.md --- docset/winserver2022-ps/adfs/Remove-AdfsFarmNode.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/adfs/Remove-AdfsFarmNode.md b/docset/winserver2022-ps/adfs/Remove-AdfsFarmNode.md index 2e1730848e..effe9104b9 100644 --- a/docset/winserver2022-ps/adfs/Remove-AdfsFarmNode.md +++ b/docset/winserver2022-ps/adfs/Remove-AdfsFarmNode.md @@ -87,5 +87,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Uninstall-WindowsFeature](../winserver2022-ps/Microsoft.Windows.ServerManager.Migration/Uninstall-WindowsFeature.md) +[Uninstall-WindowsFeature](../../winserver2022-ps/Microsoft.Windows.ServerManager.Migration/Uninstall-WindowsFeature.md) From 0fad28e7eb0d23904179fe83e776ee8d70ec2a49 Mon Sep 17 00:00:00 2001 From: Becca Robins <35232346+beccarobins@users.noreply.github.com> Date: Tue, 5 Sep 2023 10:09:35 -0400 Subject: [PATCH 931/965] Apply suggestions from code review --- docset/docs-conceptual/winserver2016-ps/get-started.md | 1 - docset/docs-conceptual/winserver2019-ps/get-started.md | 1 - docset/docs-conceptual/winserver2022-ps/get-started.md | 1 - docset/winserver2022-ps/adfs/Remove-AdfsFarmNode.md | 2 +- 4 files changed, 1 insertion(+), 4 deletions(-) diff --git a/docset/docs-conceptual/winserver2016-ps/get-started.md b/docset/docs-conceptual/winserver2016-ps/get-started.md index b7b69e5ef1..76e5b003b7 100644 --- a/docset/docs-conceptual/winserver2016-ps/get-started.md +++ b/docset/docs-conceptual/winserver2016-ps/get-started.md @@ -71,7 +71,6 @@ computer. For more information, see | Iscsi | [iSCSI](/powershell/module/iscsi) | | IscsiTarget | [iSCSI Target](/powershell/module/iscsitarget) | | KDS | [Key Distribution Server](/powershell/module/kds) | -| Microsoft.Windows.ServerManager.Migration | [Server Migration](../../../winserver2022-ps/Microsoft.Windows.ServerManager.Migration/Uninstall-WindowsFeature.md) | | MMAgent | [Memory Management Agent](/powershell/module/mmagent) | | Mpio | [MPIO](/powershell/module/mpio) | | MSDTC | [Distributed Transaction Coordinator](/powershell/module/msdtc) | diff --git a/docset/docs-conceptual/winserver2019-ps/get-started.md b/docset/docs-conceptual/winserver2019-ps/get-started.md index fa578576a3..c3f0015bc5 100644 --- a/docset/docs-conceptual/winserver2019-ps/get-started.md +++ b/docset/docs-conceptual/winserver2019-ps/get-started.md @@ -70,7 +70,6 @@ computer. For more information, see | Iscsi | [iSCSI](/powershell/module/iscsi) | | IscsiTarget | [iSCSI Target](/powershell/module/iscsitarget) | | KDS | [Key Distribution Server](/powershell/module/kds) | -| Microsoft.Windows.ServerManager.Migration | [Server Migration](../../../winserver2022-ps/windowsupdate/WindowsUpdate.md) | | MMAgent | [Memory Management Agent](/powershell/module/mmagent) | | Mpio | [MPIO](/powershell/module/mpio) | | MSDTC | [Distributed Transaction Coordinator](/powershell/module/msdtc) | diff --git a/docset/docs-conceptual/winserver2022-ps/get-started.md b/docset/docs-conceptual/winserver2022-ps/get-started.md index d5855d5929..8f42ff39ac 100644 --- a/docset/docs-conceptual/winserver2022-ps/get-started.md +++ b/docset/docs-conceptual/winserver2022-ps/get-started.md @@ -70,7 +70,6 @@ computer. For more information, see | Iscsi | [iSCSI](/powershell/module/iscsi) | | IscsiTarget | [iSCSI Target](/powershell/module/iscsitarget) | | KDS | [Key Distribution Server](/powershell/module/kds) | -| Microsoft.Windows.ServerManager.Migration | [Server Migration](../../../winserver2022-ps/windowsupdate/WindowsUpdate.md) | | MMAgent | [Memory Management Agent](/powershell/module/mmagent) | | Mpio | [MPIO](/powershell/module/mpio) | | MSDTC | [Distributed Transaction Coordinator](/powershell/module/msdtc) | diff --git a/docset/winserver2022-ps/adfs/Remove-AdfsFarmNode.md b/docset/winserver2022-ps/adfs/Remove-AdfsFarmNode.md index effe9104b9..6168c042cd 100644 --- a/docset/winserver2022-ps/adfs/Remove-AdfsFarmNode.md +++ b/docset/winserver2022-ps/adfs/Remove-AdfsFarmNode.md @@ -87,5 +87,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[Uninstall-WindowsFeature](../../winserver2022-ps/Microsoft.Windows.ServerManager.Migration/Uninstall-WindowsFeature.md) +[Uninstall-WindowsFeature](/powershell/module/servermanager/uninstall-windowsfeature) From 230275f436020e70c65fb333a13de767b3bcfcbe Mon Sep 17 00:00:00 2001 From: Matthew Ige Date: Wed, 6 Sep 2023 09:09:58 -0700 Subject: [PATCH 932/965] Apply suggestions from code review Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- .../Disable-NetFirewallHyperVRule.md | 22 ++++++++++----- .../Enable-NetFirewallHyperVRule.md | 24 ++++++++++------ .../netsecurity/Get-NetFirewallHyperVPort.md | 10 +++++-- .../Get-NetFirewallHyperVProfile.md | 9 +++--- .../netsecurity/Get-NetFirewallHyperVRule.md | 24 ++++++++++------ .../Get-NetFirewallHyperVVMCreator.md | 11 ++++++-- .../Get-NetFirewallHyperVVMSetting.md | 16 +++++++---- .../New-NetFirewallHyperVProfile.md | 9 +++--- .../netsecurity/New-NetFirewallHyperVRule.md | 11 ++++++-- .../New-NetFirewallHyperVVMSetting.md | 20 +++++++++---- .../Remove-NetFirewallHyperVRule.md | 28 +++++++++++++------ .../Rename-NetFirewallHyperVRule.md | 16 +++++++---- .../Set-NetFirewallHyperVProfile.md | 13 +++++---- .../netsecurity/Set-NetFirewallHyperVRule.md | 17 +++++++---- .../Set-NetFirewallHyperVVMSetting.md | 20 +++++++++---- 15 files changed, 168 insertions(+), 82 deletions(-) diff --git a/docset/winserver2022-ps/netsecurity/Disable-NetFirewallHyperVRule.md b/docset/winserver2022-ps/netsecurity/Disable-NetFirewallHyperVRule.md index 3914ed5ef1..58fbfd6eeb 100644 --- a/docset/winserver2022-ps/netsecurity/Disable-NetFirewallHyperVRule.md +++ b/docset/winserver2022-ps/netsecurity/Disable-NetFirewallHyperVRule.md @@ -41,9 +41,12 @@ Disable-NetFirewallHyperVRule -InputObject Disable-NetFirewallHyperVRule -PolicyStore ActiveStore ``` -This retrieves all of the Hyper-V firewall rules in the active store, which is a collection of all the policy stores that apply to the computer, and disables all of them. +This example retrieves all the Hyper-V firewall rules in the active store, which is a collection of all the policy stores that apply to the computer, and disables all of them. + ### EXAMPLE 2 ``` PS C:\> Disable-NetFirewallHyperVRule -DisplayName 'MyServerIPBlock' ``` -This retrieves all of the Hyper-V firewall rules with DisplayName 'MyServerIPBlock' and disables the rules. +This example retrieves all the Hyper-V firewall rules with DisplayName 'MyServerIPBlock' and disables the rules. + ## PARAMETERS @@ -155,7 +160,8 @@ The acceptable values for this parameter are: - True: Specifies the rule is currently enabled. - False: Specifies the rule is currently disabled. -Note, that the type of this parameter is not boolean, therefore `$true` and `$false` variables are not acceptable values here. Use "True" and "False" text strings instead. +Note that the type of this parameter is not Boolean, therefore `$true` and `$false` variables are not acceptable values here. Use "True" and "False" text strings instead. + A disabled rule will not actively modify computer behavior, but the management construct still exists on the computer so it can be re-enabled. @@ -275,7 +281,8 @@ Accept wildcard characters: False ### -ThrottleLimit Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. +If this parameter is omitted or a value of `0` is entered, Windows PowerShell calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. + The throttle limit applies only to the current cmdlet, not to the session or to the computer. ```yaml @@ -291,7 +298,8 @@ Accept wildcard characters: False ### -VMCreatorId Specifies that only matching Hyper-V firewall rules with the specified VMCreatorId are disabled. -The format for this value is a Guid enclosed in brackets, i.e '{9E288F02-CE00-4D9E-BE2B-14CE463B0298}' +The format for this value is a GUID enclosed in brackets, such as '{9E288F02-CE00-4D9E-BE2B-14CE463B0298}'. + ```yaml Type: String diff --git a/docset/winserver2022-ps/netsecurity/Enable-NetFirewallHyperVRule.md b/docset/winserver2022-ps/netsecurity/Enable-NetFirewallHyperVRule.md index e8a15000d7..543d1d47aa 100644 --- a/docset/winserver2022-ps/netsecurity/Enable-NetFirewallHyperVRule.md +++ b/docset/winserver2022-ps/netsecurity/Enable-NetFirewallHyperVRule.md @@ -41,9 +41,11 @@ Enable-NetFirewallHyperVRule -InputObject Enable-NetFirewallHyperVRule -PolicyStore ActiveStore ``` -This retrieves all of the Hyper-V firewall rules in the active store, which is a collection of all the policy stores that apply to the computer, and enables all of them. +This example retrieves all the Hyper-V firewall rules in the active store, which is a collection of all the policy stores that apply to the computer, and enables all of them. + ### EXAMPLE 2 ``` PS C:\> Enable-NetFirewallHyperVRule -DisplayName 'MyServerIPBlock' ``` -This retrieves all of the Hyper-V firewall rules with DisplayName 'MyServerIPBlock' and enables the rules. +This example retrieves all the Hyper-V firewall rules with DisplayName 'MyServerIPBlock' and enables the rules. + ## PARAMETERS @@ -153,7 +157,8 @@ The acceptable values for this parameter are: - True: Specifies the rule is currently enabled. - False: Specifies the rule is currently disabled. -Note, that the type of this parameter is not boolean, therefore `$true` and `$false` variables are not acceptable values here. Use "True" and "False" text strings instead. +Note, that the type of this parameter is not Boolean, therefore `$true` and `$false` variables are not acceptable values here. Use "True" and "False" text strings instead. + A disabled rule will not actively modify computer behavior, but the management construct still exists on the computer so it can be re-enabled. @@ -255,7 +260,8 @@ Accept wildcard characters: False ``` ### -Protocol -Specifies that only matching Hyper-V firewall rules with the indicated Protocol are enabled. +Specifies that only matching Hyper-V firewall rules with the indicated protocol are enabled. + The acceptable values for this parameter are: - Protocols by number: 0-255. - Protocols by name: TCP, UDP, ICMPv4, or ICMPv6. @@ -273,7 +279,8 @@ Accept wildcard characters: False ### -ThrottleLimit Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. +If this parameter is omitted or a value of `0` is entered, Windows PowerShell calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. + The throttle limit applies only to the current cmdlet, not to the session or to the computer. ```yaml @@ -289,7 +296,8 @@ Accept wildcard characters: False ### -VMCreatorId Specifies that only matching Hyper-V firewall rules with the specified VMCreatorId are enabled. -The format for this value is a Guid enclosed in brackets, i.e '{9E288F02-CE00-4D9E-BE2B-14CE463B0298}' +The format for this value is a GUID enclosed in brackets, such as '{9E288F02-CE00-4D9E-BE2B-14CE463B0298}'. + ```yaml Type: String diff --git a/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVPort.md b/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVPort.md index 620010d8c8..f1e6ed9c4f 100644 --- a/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVPort.md +++ b/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVPort.md @@ -21,7 +21,9 @@ Get-NetFirewallHyperVPort [-All] [-CimSession ] [-ThrottleLimit Get-NetFirewallHyperVPort ``` -This retrieves all of the Hyper-V firewall ports that are currently on the system. +This example retrieves all the Hyper-V firewall ports that are currently on the system. + ## PARAMETERS @@ -81,7 +84,8 @@ Accept wildcard characters: False ### -ThrottleLimit Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. +If this parameter is omitted or a value of `0` is entered, Windows PowerShell calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. + The throttle limit applies only to the current cmdlet, not to the session or to the computer. ```yaml diff --git a/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVProfile.md b/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVProfile.md index 81203107d7..280ca26ce1 100644 --- a/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVProfile.md +++ b/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVProfile.md @@ -26,6 +26,7 @@ Get-NetFirewallHyperVProfile [[-Name] ] [-Profile {Any | Domain | Priv ``` ## DESCRIPTION + The **Get-NetFirewallHyperVProfile** cmdlet returns the the Hyper-V firewall profile settings on the system. These settings are applicable to all Hyper-V firewall ports created by a specific Hyper-V firewall VM creator. These settings apply to the VM only when the profile is active. These settings are configurable on a per-store basis. By default, this cmdlet queries the local store. @@ -37,21 +38,21 @@ These settings are configurable on a per-store basis. By default, this cmdlet qu PS C:\> Get-NetFirewallHyperVProfile ``` -This retrieves all of the Hyper-V firewall profile settings. With no parameters, this cmdlet queries the settings in the local store. +This retrieves all the Hyper-V firewall profile settings. With no parameters, this cmdlet queries the settings in the local store. ### EXAMPLE 2 ``` PS C:\> Get-NetFirewallHyperVProfile -Name '{9E288F02-CE00-4D9E-BE2B-14CE463B0298}' ``` -This retrieves all of the Hyper-V firewall profile settings for the specified VM creator Id. +This example retrieves all the Hyper-V firewall profile settings for the specified VM creator ID. ### EXAMPLE 3 ``` PS C:\> Get-NetFirewallHyperVProfile -PolicyStore ActiveStore ``` -This retrieves all of the Hyper-V firewall profile settings from the ActiveStore. +This example retrieves all the Hyper-V firewall profile settings from the ActiveStore. ## PARAMETERS @@ -155,7 +156,7 @@ Accept wildcard characters: False ### -ThrottleLimit Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. +If this parameter is omitted or a value of `0` is entered, Windows PowerShell calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. The throttle limit applies only to the current cmdlet, not to the session or to the computer. ```yaml diff --git a/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVRule.md b/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVRule.md index 07ccca8007..3aebc9f03b 100644 --- a/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVRule.md +++ b/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVRule.md @@ -36,9 +36,11 @@ Get-NetFirewallHyperVRule [-Direction {Inbound | Outbound}] [-VMCreatorId Get-NetFirewallHyperVRule -PolicyStore ActiveStore ``` -This retrieves all of the Hyper-V firewall rules in the active store, which is a collection of all the policy stores that apply to the computer. Running this cmdlet without specifying the policy store retrieves the persistent store. +This example retrieves all the Hyper-V firewall rules in the active store, which is a collection of all the policy stores that apply to the computer. Running this cmdlet without specifying the policy store retrieves the persistent store. + ### EXAMPLE 2 ``` PS C:\> Get-NetFirewallHyperVRule -EnforcementStatus OK ``` -This retrieves all of the Hyper-V firewall rules with EnforcementStatus OK, which means that the rule is active and being enforced. +This example retrieves all the Hyper-V firewall rules with EnforcementStatus OK, which means that the rule is active and being enforced. + ### EXAMPLE 3 ``` PS C:\> Get-NetFirewallHyperVRule -Name 'MyRuleId' ``` -This retrieves the Hyper-V firewall rule with the Name 'MyRuleId' +This example retrieves the Hyper-V firewall rule with the Name 'MyRuleId' + ## PARAMETERS @@ -155,7 +160,8 @@ The acceptable values for this parameter are: - True: Specifies the rule is currently enabled. - False: Specifies the rule is currently disabled. -Note, that the type of this parameter is not boolean, therefore `$true` and `$false` variables are not acceptable values here. Use "True" and "False" text strings instead. +Note that the type of this parameter is not Boolean, therefore `$true` and `$false` variables are not acceptable values here. Use "True" and "False" text strings instead. + A disabled rule will not actively modify computer behavior, but the management construct still exists on the computer so it can be re-enabled. @@ -261,7 +267,8 @@ Accept wildcard characters: False ``` ### -Protocol -Specifies that only matching Hyper-V firewall rules with the indicated Protocol are retrieved. +Specifies that only matching Hyper-V firewall rules with the indicated protocol are retrieved. + The acceptable values for this parameter are: - Protocols by number: 0-255. - Protocols by name: TCP, UDP, ICMPv4, or ICMPv6. @@ -279,7 +286,8 @@ Accept wildcard characters: False ### -ThrottleLimit Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. +If this parameter is omitted or a value of `0` is entered, Windows PowerShell calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. + The throttle limit applies only to the current cmdlet, not to the session or to the computer. ```yaml diff --git a/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVVMCreator.md b/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVVMCreator.md index 926fc59829..3eee9bdc2b 100644 --- a/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVVMCreator.md +++ b/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVVMCreator.md @@ -21,11 +21,14 @@ Get-NetFirewallHyperVVMCreator [-All] [-CimSession ] [-ThrottleLim ``` ## DESCRIPTION + The **Get-NetFirewallHyperVVMCreator** cmdlet returns the instances of the Hyper-V firewall VM creators on the system. + A Hyper-V firewall rule can be scoped to apply only to Hyper-V firewall ports created by specific Hyper-V VM creators. This cmdlet is used to query the list of creators currently on the system. -A rule can scoped to a specific VM creator even if it is not yet on the system. This can be useful when configuring policy when a particular application may be installed at an unknown point in time. +A rule can be scoped to a specific VM creator even if it is not yet on the system. This can be useful when configuring policy when a particular application may be installed at an unknown point in time. + ## EXAMPLES @@ -34,7 +37,8 @@ A rule can scoped to a specific VM creator even if it is not yet on the system. PS C:\> Get-NetFirewallHyperVVMCreator ``` -This retrieves all of the Hyper-V firewall VM creators that are currently on the system. +This example retrieves all the Hyper-V firewall VM creators that are currently on the system. + ## PARAMETERS @@ -85,7 +89,8 @@ Accept wildcard characters: False ### -ThrottleLimit Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. +If this parameter is omitted or a value of `0` is entered, Windows PowerShell calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. + The throttle limit applies only to the current cmdlet, not to the session or to the computer. ```yaml diff --git a/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVVMSetting.md b/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVVMSetting.md index 7cae50c094..02b027ca39 100644 --- a/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVVMSetting.md +++ b/docset/winserver2022-ps/netsecurity/Get-NetFirewallHyperVVMSetting.md @@ -26,7 +26,9 @@ Get-NetFirewallHyperVVMSetting [-Name] [-PolicyStore ] [-CimS ``` ## DESCRIPTION -The **Get-NetFirewallHyperVVMSetting** cmdlet returns the the Hyper-V firewall per-VM settings on the system. These settings are applicable to all Hyper-V firewall ports created by a specific Hyper-V firewall VM creator. + +The **Get-NetFirewallHyperVVMSetting** cmdlet returns the Hyper-V firewall per-VM settings on the system. These settings are applicable to all Hyper-V firewall ports created by a specific Hyper-V firewall VM creator. + These settings are configurable on a per-store basis. By default, this cmdlet queries the local store. @@ -37,21 +39,24 @@ These settings are configurable on a per-store basis. By default, this cmdlet qu PS C:\> Get-NetFirewallHyperVVMSetting ``` -This retrieves all of the Hyper-V firewall per-VM settings. With no parameters, this cmdlet queries the settings in the local store. +This example retrieves all of the Hyper-V firewall per-VM settings. With no parameters, this cmdlet queries the settings in the local store. + ### EXAMPLE 2 ``` PS C:\> Get-NetFirewallHyperVVMSetting -Name '{9E288F02-CE00-4D9E-BE2B-14CE463B0298}' ``` -This retrieves all of the Hyper-V firewall per-VM settings for the specified VM creator Id. +This example retrieves all the Hyper-V firewall per-VM settings for the specified VM creator ID. + ### EXAMPLE 3 ``` PS C:\> Get-NetFirewallHyperVVMSetting -PolicyStore ActiveStore ``` -This retrieves all of the Hyper-V firewall per-VM settings from the ActiveStore. +This example retrieves all the Hyper-V firewall per-VM settings from the ActiveStore. + ## PARAMETERS @@ -141,7 +146,8 @@ Accept wildcard characters: False ### -ThrottleLimit Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. +If this parameter is omitted or a value of `0` is entered, Windows PowerShell calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. + The throttle limit applies only to the current cmdlet, not to the session or to the computer. ```yaml diff --git a/docset/winserver2022-ps/netsecurity/New-NetFirewallHyperVProfile.md b/docset/winserver2022-ps/netsecurity/New-NetFirewallHyperVProfile.md index 980261e8c4..f8b6083a38 100644 --- a/docset/winserver2022-ps/netsecurity/New-NetFirewallHyperVProfile.md +++ b/docset/winserver2022-ps/netsecurity/New-NetFirewallHyperVProfile.md @@ -20,9 +20,10 @@ New-NetFirewallHyperVProfile [-PolicyStore ] [-GPOSession ] [-Na ``` ## DESCRIPTION + The **New-NetFirewallHyperVProfile** cmdlet configures the Hyper-V firewall profile settings on the system. These settings are applicable to all Hyper-V firewall ports created by a specific Hyper-V firewall VM creator. These settings apply to the VM only when the profile is active. -This cmdlet should be used when none of the following are true: a Hyper-V VM creator has registered its VM creator ID with the system, when another Hyper-V setting is already configured for the specified VM creator ID, or when a Hyper-V firewall port is created with the specified VM creator ID. If any of the above are true, the Set-NetFirewallHyperVProfile cmdlet should be used. In other words, this cmdlet can be used to configure policy prior to the application corresponding to the specific VM creator ID has running on the system. +This cmdlet should be used when none of the following are true: a Hyper-V VM creator has registered its VM creator ID with the system, when another Hyper-V setting is already configured for the specified VM creator ID, or when a Hyper-V firewall port is created with the specified VM creator ID. If any of these is true, the Set-NetFirewallHyperVProfile cmdlet should be used. In other words, this cmdlet can be used to configure policy prior to the application corresponding to the specific VM creator ID is running on the system. ## EXAMPLES @@ -31,7 +32,7 @@ This cmdlet should be used when none of the following are true: a Hyper-V VM cre PS C:\> New-NetFirewallHyperVProfile -Name '{9E288F02-CE00-4D9E-BE2B-14CE463B0298}' -Profile Public -Enabled True ``` -This configures the Enabled setting on the Public profile for all Hyper-V firewall ports created by the Hyper-V firewall VM creator specified. +This example configures the enabled setting on the public profile for all Hyper-V firewall ports created by the Hyper-V firewall VM creator specified. ## PARAMETERS @@ -158,7 +159,7 @@ Accept wildcard characters: False ``` ### -Name -Specifies that the settings are applicable only to the Hyper-V firewall VM creator with the matching Id. +Specifies that the settings are applicable only to the Hyper-V firewall VM creator with the matching ID. The format for this value is a GUID enclosed in brackets: '{9E288F02-CE00-4D9E-BE2B-14CE463B0298}'. ```yaml @@ -174,7 +175,7 @@ Accept wildcard characters: False ### -ThrottleLimit Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. +If this parameter is omitted or a value of `0` is entered, Windows PowerShell calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. The throttle limit applies only to the current cmdlet, not to the session or to the computer. ```yaml diff --git a/docset/winserver2022-ps/netsecurity/New-NetFirewallHyperVRule.md b/docset/winserver2022-ps/netsecurity/New-NetFirewallHyperVRule.md index 818e0fe9a8..1f9a005a01 100644 --- a/docset/winserver2022-ps/netsecurity/New-NetFirewallHyperVRule.md +++ b/docset/winserver2022-ps/netsecurity/New-NetFirewallHyperVRule.md @@ -20,8 +20,10 @@ New-NetFirewallHyperVRule -DisplayName [-Name ] [-RulePriority ``` ## DESCRIPTION + The **New-NetFirewallHyperVRule** cmdlet creates an inbound or outbound Hyper-V firewall rule and adds the rule to the target computer. + Some parameters are used to specify the conditions that must be matched for the rule to apply, such as the *LocalAddress* and *RemoteAddress* parameters. Rules that already exist can be managed with the Get-NetFirewallHyperVRule and Set-NetFirewallHyperVRule cmdlets. @@ -156,7 +158,8 @@ The acceptable values for this parameter are: - True: Specifies the rule is currently enabled. - False: Specifies the rule is currently disabled. -Note, that the type of this parameter is not boolean, therefore `$true` and `$false` variables are not acceptable values here. Use "True" and "False" text strings instead. +Note that the type of this parameter is not Boolean, therefore `$true` and `$false` variables are not acceptable values here. Use "True" and "False" text strings instead. + A disabled rule will not actively modify computer behavior, but the management construct still exists on the computer so it can be re-enabled. @@ -302,7 +305,8 @@ Accept wildcard characters: False ### -RulePriority Specifies the order in which rules are evaluated. A lower priority rule is evaluated before a higher priority rule. -The default value is based on the Action of the rule. A rule with Action Allow is set to priority 2, and a rule with Action Block is 1. This configures, by default, Block rules to take precedence over Allow rules. +The default value is based on the action of the rule. A rule with Action Allow is set to priority 2, and a rule with Action Block is 1. This configures, by default, Block rules to take precedence over Allow rules. + ```yaml Type: uint16 @@ -355,7 +359,8 @@ Accept wildcard characters: False ### -ThrottleLimit Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. +If this parameter is omitted or a value of `0` is entered, Windows PowerShell calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. + The throttle limit applies only to the current cmdlet, not to the session or to the computer. ```yaml diff --git a/docset/winserver2022-ps/netsecurity/New-NetFirewallHyperVVMSetting.md b/docset/winserver2022-ps/netsecurity/New-NetFirewallHyperVVMSetting.md index 47d1af30b7..305465efce 100644 --- a/docset/winserver2022-ps/netsecurity/New-NetFirewallHyperVVMSetting.md +++ b/docset/winserver2022-ps/netsecurity/New-NetFirewallHyperVVMSetting.md @@ -20,9 +20,12 @@ New-NetFirewallHyperVVMSetting [-PolicyStore ] [-GPOSession ] [- ``` ## DESCRIPTION + The **New-NetFirewallHyperVVMSetting** cmdlet configures settings for the Hyper-V firewall per-VM settings on the system. These settings are applicable to all Hyper-V firewall ports created by a specific Hyper-V firewall VM creator. -This cmdlet should be used when none of the following are true: a Hyper-V VM creator has registered its VM creator ID with the system, when another Hyper-V setting is already configured for the specified VM creator ID, or when a Hyper-V firewall port is created with the specified VM creator ID. If any of the above are true, the Set-NetFirewallHyperVVMSetting cmdlet should be used. In other words, this cmdlet can be used to configure policy prior to the application corresponding to the specific VM creator ID has running on the system. + +This cmdlet should be used when none of the following are true: a Hyper-V VM creator has registered its VM creator ID with the system, when another Hyper-V setting is already configured for the specified VM creator ID, or when a Hyper-V firewall port is created with the specified VM creator ID. If any of these is true, the Set-NetFirewallHyperVVMSetting cmdlet should be used. In other words, this cmdlet can be used to configure policy prior to the application corresponding to the specific VM creator ID running on the system. + ## EXAMPLES @@ -31,7 +34,8 @@ This cmdlet should be used when none of the following are true: a Hyper-V VM cre PS C:\> New-NetFirewallHyperVVMSetting -Name '{9E288F02-CE00-4D9E-BE2B-14CE463B0298}' -LoopbackEnabled True ``` -This configures the LoopbackEnabled setting for all Hyper-V firewall ports created by the Hyper-V firewall VM creator specified. +This example configures the LoopbackEnabled setting for all Hyper-V firewall ports created by the Hyper-V firewall VM creator specified. + ## PARAMETERS @@ -167,7 +171,8 @@ Accept wildcard characters: False ### -AllowHostPolicyMerge Specifies that the host firewall policy should be merged into the effective policy. -This setting controls whether host firewall profile settings (DefaultInboundAction, DefaultOutboundAction, Enabled, AllowLocalFirewallRules) as well as host firewall rules (only rules which are IP 5-tuple based, i.e, not having any local conditions such as application) should be applicable to Hyper-V firewall. +This setting controls whether host firewall profile settings (DefaultInboundAction, DefaultOutboundAction, Enabled, AllowLocalFirewallRules) as well as host firewall rules (only rules that are IP 5-tuple based, that is, not having any local conditions such as application) should be applicable to Hyper-V firewall. + Policy configurations may come from many stores. If this setting is True, the following order of precedence is used for determining the effective policy (highest priority to lowest priority): - Host Firewall Group Policy @@ -178,7 +183,8 @@ Policy configurations may come from many stores. If this setting is True, the fo The acceptable values for this parameter are: False, True, or NotConfigured. -- True: Host firewall rules and settings are applied to Hyper-V Firewall. +- True: Host firewall rules and settings are applied to the Hyper-V firewall. + - False: Host firewall rules and settings are not applied to Hyper-V firewall - NotConfigured: Resets this value back to its default. @@ -198,7 +204,8 @@ Accept wildcard characters: False ``` ### -Name -Specifies that the settings are applicable only to the Hyper-V firewall VM creator with the matching Id. +Specifies that the settings are applicable only to the Hyper-V firewall VM creator with the matching ID. + The format for this value is a GUID enclosed in brackets: '{9E288F02-CE00-4D9E-BE2B-14CE463B0298}'. ```yaml @@ -214,7 +221,8 @@ Accept wildcard characters: False ### -ThrottleLimit Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. +If this parameter is omitted or a value of `0` is entered, Windows PowerShell calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. + The throttle limit applies only to the current cmdlet, not to the session or to the computer. ```yaml diff --git a/docset/winserver2022-ps/netsecurity/Remove-NetFirewallHyperVRule.md b/docset/winserver2022-ps/netsecurity/Remove-NetFirewallHyperVRule.md index 284f07ca98..c3dfb45dfa 100644 --- a/docset/winserver2022-ps/netsecurity/Remove-NetFirewallHyperVRule.md +++ b/docset/winserver2022-ps/netsecurity/Remove-NetFirewallHyperVRule.md @@ -41,11 +41,14 @@ Remove-NetFirewallHyperVRule -InputObject Remove-NetFirewallHyperVRule ``` -This retrieves all of the Hyper-V firewall rules in the local store and removes all of them. +This example retrieves all the Hyper-V firewall rules in the local store and removes them. + ### EXAMPLE 2 ``` PS C:\> Remove-NetFirewallHyperVRule -DisplayName 'MyServerIPBlock' ``` -This retrieves all of the Hyper-V firewall rules with DisplayName 'MyServerIPBlock' and removes them. +This example retrieves all the Hyper-V firewall rules with DisplayName 'MyServerIPBlock' and removes them. + ## PARAMETERS @@ -153,7 +158,8 @@ The acceptable values for this parameter are: - True: Specifies the rule is currently enabled. - False: Specifies the rule is currently disabled. -Note, that the type of this parameter is not boolean, therefore `$true` and `$false` variables are not acceptable values here. Use "True" and "False" text strings instead. +Note that the type of this parameter is not Boolean, therefore `$true` and `$false` variables are not acceptable values here. Use "True" and "False" text strings instead. + A disabled rule will not actively modify computer behavior, but the management construct still exists on the computer so it can be re-enabled. @@ -239,7 +245,8 @@ The acceptable values for this parameter are: - Local: The object originates from the local store. - MDM: The object originates from the MDM store. -By default, the Local store is queried. +By default, the local store is queried. + ```yaml Type: PolicyStoreType[] @@ -255,7 +262,8 @@ Accept wildcard characters: False ``` ### -Protocol -Specifies that only matching Hyper-V firewall rules with the indicated Protocol are removed. +Specifies that only matching Hyper-V firewall rules with the indicated protocol are removed. + The acceptable values for this parameter are: - Protocols by number: 0-255. - Protocols by name: TCP, UDP, ICMPv4, or ICMPv6. @@ -273,7 +281,8 @@ Accept wildcard characters: False ### -ThrottleLimit Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. +If this parameter is omitted or a value of `0` is entered, Windows PowerShell calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. + The throttle limit applies only to the current cmdlet, not to the session or to the computer. ```yaml @@ -289,7 +298,8 @@ Accept wildcard characters: False ### -VMCreatorId Specifies that only matching Hyper-V firewall rules with the specified VMCreatorId are removed. -The format for this value is a Guid enclosed in brackets, i.e '{9E288F02-CE00-4D9E-BE2B-14CE463B0298}' +The format for this value is a GUID enclosed in brackets, such as '{9E288F02-CE00-4D9E-BE2B-14CE463B0298}'. + ```yaml Type: String diff --git a/docset/winserver2022-ps/netsecurity/Rename-NetFirewallHyperVRule.md b/docset/winserver2022-ps/netsecurity/Rename-NetFirewallHyperVRule.md index 0c459fc3f0..0814065533 100644 --- a/docset/winserver2022-ps/netsecurity/Rename-NetFirewallHyperVRule.md +++ b/docset/winserver2022-ps/netsecurity/Rename-NetFirewallHyperVRule.md @@ -41,9 +41,11 @@ Rename-NetFirewallHyperVRule -InputObject ] [-GPOSession ] [-Na ``` ## DESCRIPTION + The **Set-NetFirewallHyperVProfile** cmdlet configures the Hyper-V firewall profile settings on the system. These settings are applicable to all Hyper-V firewall ports created by a specific Hyper-V firewall VM creator. These settings apply to the VM only when the profile is active. This cmdlet should be used when a Hyper-V VM creator has registered its VM creator ID with the system, when another Hyper-V setting is already configured for the specified VM creator ID, or when a Hyper-V firewall port is created with the specified VM creator ID. If none of the above are true, then the New-NetFirewallHyperVProfile cmdlet should be used. @@ -32,7 +33,7 @@ This cmdlet should be used when a Hyper-V VM creator has registered its VM creat PS C:\> Set-NetFirewallHyperVProfile -Name '{9E288F02-CE00-4D9E-BE2B-14CE463B0298}' -Profile Public -Enabled True ``` -This configures the Enabled setting on the Public profile for all Hyper-V firewall ports created by the Hyper-V firewall VM creator specified. +This example configures the Enabled setting on the Public profile for all Hyper-V firewall ports created by the Hyper-V firewall VM creator specified. ## PARAMETERS @@ -67,7 +68,7 @@ Accept wildcard characters: False ``` ### -DefaultInboundAction -Specifies how to filter inbound traffic which does not match any Hyper-V firewall rules. +Specifies how to filter inbound traffic that does not match any Hyper-V firewall rules. The acceptable values for this parameter are: NotConfigured, Allow, or Block. - Block: Blocks inbound network traffic that does not match an inbound rule. @@ -90,7 +91,7 @@ Accept wildcard characters: False ``` ### -DefaultOutboundAction -Specifies how to filter outbound traffic which does not match any Hyper-V firewall rules. +Specifies how to filter outbound traffic that does not match any Hyper-V firewall rules. The acceptable values for this parameter are: NotConfigured, Allow, or Block. - Block: Blocks outbound network traffic that does not match an outbound rule. @@ -159,7 +160,7 @@ Accept wildcard characters: False ``` ### -Name -Specifies that the settings are applicable only to the Hyper-V firewall VM creator with the matching Id. +Specifies that the settings are applicable only to the Hyper-V firewall VM creator with the matching ID. The format for this value is a GUID enclosed in brackets: '{9E288F02-CE00-4D9E-BE2B-14CE463B0298}'. ```yaml @@ -175,7 +176,7 @@ Accept wildcard characters: False ### -ThrottleLimit Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. +If this parameter is omitted or a value of `0` is entered, Windows PowerShell calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. The throttle limit applies only to the current cmdlet, not to the session or to the computer. ```yaml diff --git a/docset/winserver2022-ps/netsecurity/Set-NetFirewallHyperVRule.md b/docset/winserver2022-ps/netsecurity/Set-NetFirewallHyperVRule.md index d9290941fd..016e23e245 100644 --- a/docset/winserver2022-ps/netsecurity/Set-NetFirewallHyperVRule.md +++ b/docset/winserver2022-ps/netsecurity/Set-NetFirewallHyperVRule.md @@ -31,8 +31,10 @@ Set-NetFirewallHyperVRule -InputObject Set-NetFirewallHyperVVMSetting -Name '9E288F02-CE00-4D9E-BE2B-14CE463B0298}' -LoopbackEnabled True ``` -This updates the LoopbackEnabled setting for all Hyper-V firewall ports created by the Hyper-V firewall VM creator specified. +This example updates the LoopbackEnabled setting for all Hyper-V firewall ports created by the Hyper-V firewall VM creator specified. + ## PARAMETERS @@ -72,7 +75,8 @@ Accept wildcard characters: False ``` ### -DefaultInboundAction -Specifies how to filter inbound traffic which does not match any Hyper-V firewall rules. +Specifies how to filter inbound traffic that does not match any Hyper-V firewall rules. + This setting applies the configuration to all profiles. For configuring at a per-profile granularity, use the `Set-NetFirewallHyperVProfile` cmdlet. @@ -98,7 +102,8 @@ Accept wildcard characters: False ``` ### -DefaultOutboundAction -Specifies how to filter outbound traffic which does not match any Hyper-V firewall rules. +Specifies how to filter outbound traffic that does not match any Hyper-V firewall rules. + This setting applies the configuration to all profiles. For configuring at a per-profile granularity, use the `Set-NetFirewallHyperVProfile` cmdlet. @@ -178,7 +183,8 @@ Accept wildcard characters: False ### -AllowHostPolicyMerge Specifies that the host firewall policy should be merged into the effective policy. -This setting controls whether host firewall profile settings (DefaultInboundAction, DefaultOutboundAction, Enabled, AllowLocalFirewallRules) as well as host firewall rules (only rules which are IP 5-tuple based, i.e, not having any local conditions such as application) should be applicable to Hyper-V firewall. +This setting controls whether host firewall profile settings (DefaultInboundAction, DefaultOutboundAction, Enabled, and AllowLocalFirewallRules) as well as host firewall rules (only rules that are IP 5-tuple based, that is, not having any local conditions such as application) should be applicable to Hyper-V firewall. + Policy configurations may come from many stores. If this setting is True, the following order of precedence is used for determining the effective policy (highest priority to lowest priority): - Host Firewall Group Policy @@ -189,7 +195,8 @@ Policy configurations may come from many stores. If this setting is True, the fo The acceptable values for this parameter are: False, True, or NotConfigured. -- True: Host firewall rules and settings are applied to Hyper-V Firewall. +- True: Host firewall rules and settings are applied to Hyper-V firewall. + - False: Host firewall rules and settings are not applied to Hyper-V firewall - NotConfigured: Resets this value back to its default. @@ -225,7 +232,8 @@ Accept wildcard characters: False ### -ThrottleLimit Specifies the maximum number of concurrent operations that can be established to run the cmdlet. -If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. +If this parameter is omitted or a value of `0` is entered, Windows PowerShell calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. + The throttle limit applies only to the current cmdlet, not to the session or to the computer. ```yaml From d74ea5de0931642a43139c8a09fd1ad264b14722 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Mon, 11 Sep 2023 09:57:44 +0100 Subject: [PATCH 933/965] Editorial updates --- .../failoverclusters/Get-ClusterAffinityRule.md | 13 +++++++++---- .../failoverclusters/New-ClusterAffinityRule.md | 17 +++++++++++------ .../Remove-ClusterAffinityRule.md | 13 +++++++++---- .../failoverclusters/Set-ClusterAffinityRule.md | 13 +++++++++---- 4 files changed, 38 insertions(+), 18 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterAffinityRule.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterAffinityRule.md index ae4f9ad5a3..472dba7550 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterAffinityRule.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterAffinityRule.md @@ -101,10 +101,9 @@ Accept wildcard characters: False ### -ThrottleLimit Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If -this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an -optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the -computer. The throttle limit applies only to the current cmdlet, not to the session or to the -computer. +this parameter is omitted or a value of `0` is entered, then PowerShell calculates an optimum +throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. +The throttle limit applies only to the current cmdlet, not to the session or to the computer. ```yaml Type: Int32 @@ -138,3 +137,9 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS + +[New-ClusterAffinityRule](New-ClusterAffinityRule.md) + +[Remove-ClusterAffinityRule](Remove-ClusterAffinityRule.md) + +[Set-ClusterAffinityRule](Set-ClusterAffinityRule.md) diff --git a/docset/winserver2022-ps/failoverclusters/New-ClusterAffinityRule.md b/docset/winserver2022-ps/failoverclusters/New-ClusterAffinityRule.md index 9fdcfa977c..aabb06abda 100644 --- a/docset/winserver2022-ps/failoverclusters/New-ClusterAffinityRule.md +++ b/docset/winserver2022-ps/failoverclusters/New-ClusterAffinityRule.md @@ -22,8 +22,8 @@ New-ClusterAffinityRule [-Name] [-RuleType ] [-CimSession Date: Tue, 12 Sep 2023 14:29:33 +0100 Subject: [PATCH 934/965] Applied feedback suggestions --- .../Get-ClusterAffinityRule.md | 11 ++++---- .../New-ClusterAffinityRule.md | 18 +++++++------ .../Remove-ClusterAffinityRule.md | 10 ++++---- .../Set-ClusterAffinityRule.md | 25 +++++++++---------- 4 files changed, 33 insertions(+), 31 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterAffinityRule.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterAffinityRule.md index 472dba7550..29795b0d68 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterAffinityRule.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterAffinityRule.md @@ -22,12 +22,12 @@ Get-ClusterAffinityRule [[-Name] ] [-CimSession ] [-Thro ## DESCRIPTION -This cmdlet is used to display the given rule and what type it is. If -Name isn't specified, it -will list all rules. +This cmdlet is used to display the given rule and what type it is. The cmdlet lists all rules by +default. Use the **Name** parameter to return a specific rule or rules. ## EXAMPLES -### Example 1 +### Example 1 - Get a specific affinity rule ```powershell Get-ClusterAffinityRule -Name AffinityRule1 -Cluster Cluster1 @@ -48,7 +48,7 @@ prompt. You can continue to work in the session while the job completes. To mana `*-Job` cmdlets. To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. -For more information about Windows PowerShell background jobs, see +For more information about PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml @@ -84,7 +84,8 @@ Accept wildcard characters: False ### -Name -The name of the desired affinity rule. if this isn't provided, it will list all the rules. +The name of the desired affinity rule. When this parameter isn't specified, the cmdlet lists every +rule. ```yaml Type: String[] diff --git a/docset/winserver2022-ps/failoverclusters/New-ClusterAffinityRule.md b/docset/winserver2022-ps/failoverclusters/New-ClusterAffinityRule.md index aabb06abda..f53798ed04 100644 --- a/docset/winserver2022-ps/failoverclusters/New-ClusterAffinityRule.md +++ b/docset/winserver2022-ps/failoverclusters/New-ClusterAffinityRule.md @@ -27,7 +27,7 @@ domain, different fault domain, same node, and different node ## EXAMPLES -### Example 1 +### Example 1 - Create a new affinity rule ```powershell New-ClusterAffinityRule -Name AffinityRule1 -RuleType SameFaultDomain -Cluster Cluster1 @@ -48,7 +48,7 @@ prompt. You can continue to work in the session while the job completes. To mana `*-Job` cmdlets. To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. -For more information about Windows PowerShell background jobs, see +For more information about PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml @@ -84,7 +84,7 @@ Accept wildcard characters: False ### -Name -The name of the rule to be created. +The name of the rule to create. ```yaml Type: String @@ -100,13 +100,13 @@ Accept wildcard characters: False ### -RuleType -The type of the rule you want to set your affinity rule to. The acceptable values for this parameter -are: +The affinity type for the new rule. The valid values for this parameter are: - **SameFaultDomain**. Resources must stay within the same fault domain. -- **SameNode**. Resources must stay on the same cluster node. -- **DifferentFaultDomain**. Resources will always stay in different fault domain (anti-affinity). -- **DifferentNode**. Resources will always stay on different cluster nodes (anti-affinity). +- `SameFaultDomain`. Resources must stay within the same fault domain. +- `SameNode`. Resources must stay on the same cluster node. +- `DifferentFaultDomain`. Resources must stay in different fault domain (anti-affinity). +- `DifferentNode`. Resources must stay on different cluster nodes (anti-affinity). ```yaml Type: RuleType @@ -151,6 +151,8 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### None +This cmdlet doesn't accept any input from the pipeline. + ## OUTPUTS ### Microsoft.Management.Infrastructure.CimInstance diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterAffinityRule.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterAffinityRule.md index 2973d1aefe..b3919aa263 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterAffinityRule.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterAffinityRule.md @@ -31,17 +31,17 @@ Remove-ClusterAffinityRule -InputObject [-CimSession [-RuleType ] [-En ## DESCRIPTION -This cmdlet is used to Enabled or Disable an affinity rule. This can also be used to change the -RuleType. +The `Set-ClusterAffinityRule` command can enable or disable an existing affinity rule. It can also +change the **RuleType**. ## EXAMPLES -### Example 1 +### Example 1 - Enable an affinity rule ```powershell Set-ClusterAffinityRule -Name AffinityRule1 -Enabled -Cluster Cluster1 @@ -56,7 +56,7 @@ prompt. You can continue to work in the session while the job completes. To mana `*-Job` cmdlets. To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. -For more information about Windows PowerShell background jobs, see +For more information about PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml @@ -108,7 +108,7 @@ Accept wildcard characters: False ### -InputObject -Specifies the input object that is used in a pipeline command. +Specifies the affinity rule object that is used in a pipeline command. ```yaml Type: CimInstance[] @@ -124,7 +124,7 @@ Accept wildcard characters: False ### -Name -The name of the affinity rule you want to either enable or disable. +The name of the affinity rule you want to change. ```yaml Type: String[] @@ -157,13 +157,12 @@ Accept wildcard characters: False ### -RuleType -The type of the rule you want to set your affinity rule to. The acceptable values for this parameter -are: +The affinity type to set the rule to. The valid values for this parameter are: -- **SameFaultDomain**. Resources must stay within the same fault domain. -- **SameNode**. Resources must stay on the same cluster node. -- **DifferentFaultDomain**. Resources will always stay in different fault domain (anti-affinity). -- **DifferentNode**. Resources will always stay on different cluster nodes (anti-affinity). +- `SameFaultDomain`. Resources must stay within the same fault domain. +- `SameNode`. Resources must stay on the same cluster node. +- `DifferentFaultDomain`. Resources must stay in different fault domain (anti-affinity). +- `DifferentNode`. Resources must stay on different cluster nodes (anti-affinity). ```yaml Type: RuleType From a016dd823940beee7554526d14ac26402320533b Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Tue, 12 Sep 2023 19:24:55 +0530 Subject: [PATCH 935/965] Update Set-ProcessMitigation.md Updated accepted values for Enable and disable Fixes https://github.com/MicrosoftDocs/windows-powershell-docs/issues/3274 --- .../processmitigations/Set-ProcessMitigation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/processmitigations/Set-ProcessMitigation.md b/docset/winserver2022-ps/processmitigations/Set-ProcessMitigation.md index 22b0647786..e629021144 100644 --- a/docset/winserver2022-ps/processmitigations/Set-ProcessMitigation.md +++ b/docset/winserver2022-ps/processmitigations/Set-ProcessMitigation.md @@ -102,7 +102,7 @@ If specified in both, it will be disabled. Type: String[] Parameter Sets: ProcessPolicy, SystemMode Aliases: d -Accepted values: DEP, EmulateAtlThunks, SEHOP, ForceRelocate, RequireInfo, BottomUp, HighEntropy, StrictHandle, DisableWin32kSystemCalls, AuditSystemCall, ExtensionPoint, DynamicCode, AuditDynamicCode, CFG, SuppressExports, StrictCFG, BlockNonMicrosoftSigned, AllowStoreSigned, AuditMicrosoftSigned, AuditStoreSigned, EnforceModuleDepencySigning, DisableNonSystemFonts, FontAuditOnly, AuditFont, BlockRemoteImages, BlockLowLabel, PreferSystem32, AuditImageLoad, EnableExportAddressFilter, AuditEnableExportAddressFilter, EnableExportAddressFilterPlus, AuditEnableExportAddressFilterPlus, EnableImportAddressFilter, AuditEnableImportAddressFilter, EnableRopStackPivot, AuditEnableRopStackPivot, EnableRopCallerCheck, AuditEnableRopCallerCheck, EnableRopSimExec, AuditEnableRopSimExec, SEHOP, AuditSEHOP, SEHOPTelemetry, TerminateOnHeapError, DisallowChildProcessCreation, AuditChildProcess, UserShadowStack, UserShadowStackStrictMode, AuditUserShadowStack +Accepted values: DEP, EmulateAtlThunks, SEHOP, ForceRelocate, RequireInfo, BottomUp, HighEntropy, StrictHandle, DisableWin32kSystemCalls, AuditSystemCall, ExtensionPoint, DynamicCode, AuditDynamicCode, CFG, SuppressExports, StrictCFG, MicrosoftSignedOnly, AllowStoreSigned, AuditMicrosoftSigned, AuditStoreSigned, EnforceModuleDepencySigning, DisableNonSystemFonts, FontAuditOnly, AuditFont, BlockRemoteImages, BlockLowLabel, PreferSystem32, AuditImageLoad, EnableExportAddressFilter, AuditEnableExportAddressFilter, EnableExportAddressFilterPlus, AuditEnableExportAddressFilterPlus, EnableImportAddressFilter, AuditEnableImportAddressFilter, EnableRopStackPivot, AuditEnableRopStackPivot, EnableRopCallerCheck, AuditEnableRopCallerCheck, EnableRopSimExec, AuditEnableRopSimExec, SEHOP, AuditSEHOP, SEHOPTelemetry, TerminateOnHeapError, DisallowChildProcessCreation, AuditChildProcess, UserShadowStack, UserShadowStackStrictMode, AuditUserShadowStack Required: False Position: Named @@ -135,7 +135,7 @@ If specified in both, it will be disabled. Type: String[] Parameter Sets: ProcessPolicy, SystemMode Aliases: e -Accepted values: DEP, EmulateAtlThunks, SEHOP, ForceRelocate, RequireInfo, BottomUp, HighEntropy, StrictHandle, DisableWin32kSystemCalls, AuditSystemCall, ExtensionPoint, DynamicCode, AuditDynamicCode, CFG, SuppressExports, StrictCFG, BlockNonMicrosoftSigned, AllowStoreSigned, AuditMicrosoftSigned, AuditStoreSigned, EnforceModuleDepencySigning, DisableNonSystemFonts, FontAuditOnly, AuditFont, BlockRemoteImages, BlockLowLabel, PreferSystem32, AuditImageLoad, EnableExportAddressFilter, EnableExportAddressFilterPlus, EnableImportAddressFilter, EnableRopStackPivot, EnableRopCallerCheck, EnableRopSimExec, SEHOP, AuditSEHOP, SEHOPTelemetry, TerminateOnHeapError, DisallowChildProcessCreation, AuditChildProcess, UserShadowStack, UserShadowStackStrictMode, AuditUserShadowStack +Accepted values: DEP, EmulateAtlThunks, SEHOP, ForceRelocate, RequireInfo, BottomUp, HighEntropy, StrictHandle, DisableWin32kSystemCalls, AuditSystemCall, ExtensionPoint, DynamicCode, AuditDynamicCode, CFG, SuppressExports, StrictCFG, MicrosoftSignedOnly, AllowStoreSigned, AuditMicrosoftSigned, AuditStoreSigned, EnforceModuleDepencySigning, DisableNonSystemFonts, FontAuditOnly, AuditFont, BlockRemoteImages, BlockLowLabel, PreferSystem32, AuditImageLoad, EnableExportAddressFilter, EnableExportAddressFilterPlus, EnableImportAddressFilter, EnableRopStackPivot, EnableRopCallerCheck, EnableRopSimExec, SEHOP, AuditSEHOP, SEHOPTelemetry, TerminateOnHeapError, DisallowChildProcessCreation, AuditChildProcess, UserShadowStack, UserShadowStackStrictMode, AuditUserShadowStack Required: False Position: Named From c9a1b3561e1da469e7a3dd285d6843f6ea4d77e3 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Tue, 12 Sep 2023 19:28:12 +0530 Subject: [PATCH 936/965] Update Set-ProcessMitigation.md Updated values --- .../processmitigations/Set-ProcessMitigation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/processmitigations/Set-ProcessMitigation.md b/docset/winserver2022-ps/processmitigations/Set-ProcessMitigation.md index e629021144..39f2a5da75 100644 --- a/docset/winserver2022-ps/processmitigations/Set-ProcessMitigation.md +++ b/docset/winserver2022-ps/processmitigations/Set-ProcessMitigation.md @@ -102,7 +102,7 @@ If specified in both, it will be disabled. Type: String[] Parameter Sets: ProcessPolicy, SystemMode Aliases: d -Accepted values: DEP, EmulateAtlThunks, SEHOP, ForceRelocate, RequireInfo, BottomUp, HighEntropy, StrictHandle, DisableWin32kSystemCalls, AuditSystemCall, ExtensionPoint, DynamicCode, AuditDynamicCode, CFG, SuppressExports, StrictCFG, MicrosoftSignedOnly, AllowStoreSigned, AuditMicrosoftSigned, AuditStoreSigned, EnforceModuleDepencySigning, DisableNonSystemFonts, FontAuditOnly, AuditFont, BlockRemoteImages, BlockLowLabel, PreferSystem32, AuditImageLoad, EnableExportAddressFilter, AuditEnableExportAddressFilter, EnableExportAddressFilterPlus, AuditEnableExportAddressFilterPlus, EnableImportAddressFilter, AuditEnableImportAddressFilter, EnableRopStackPivot, AuditEnableRopStackPivot, EnableRopCallerCheck, AuditEnableRopCallerCheck, EnableRopSimExec, AuditEnableRopSimExec, SEHOP, AuditSEHOP, SEHOPTelemetry, TerminateOnHeapError, DisallowChildProcessCreation, AuditChildProcess, UserShadowStack, UserShadowStackStrictMode, AuditUserShadowStack +Accepted values: DEP, EmulateAtlThunks, SEHOP, ForceRelocateImages, RequireInfo, BottomUp, HighEntropy, StrictHandle, DisableWin32kSystemCalls, AuditSystemCall, DisableExtensionPoints, BlockDynamicCode, AllowThreadsToOptOut, AuditDynamicCode, CFG, SuppressExports, StrictCFG, MicrosoftSignedOnly, AllowStoreSignedBinaries, AuditMicrosoftSigned, AuditStoreSigned, EnforceModuleDependencySigning, DisableNonSystemFonts, AuditFont, BlockRemoteImageLoads, BlockLowLabelImageLoads, PreferSystem32, AuditRemoteImageLoads, AuditLowLabelImageLoads, AuditPreferSystem32, EnableExportAddressFilter, AuditEnableExportAddressFilter, EnableExportAddressFilterPlus, AuditEnableExportAddressFilterPlus, EnableImportAddressFilter, AuditEnableImportAddressFilter, EnableRopStackPivot, AuditEnableRopStackPivot, EnableRopCallerCheck, AuditEnableRopCallerCheck, EnableRopSimExec, AuditEnableRopSimExec, SEHOP, AuditSEHOP, SEHOPTelemetry, TerminateOnError, DisallowChildProcessCreation, AuditChildProcess Required: False Position: Named @@ -135,7 +135,7 @@ If specified in both, it will be disabled. Type: String[] Parameter Sets: ProcessPolicy, SystemMode Aliases: e -Accepted values: DEP, EmulateAtlThunks, SEHOP, ForceRelocate, RequireInfo, BottomUp, HighEntropy, StrictHandle, DisableWin32kSystemCalls, AuditSystemCall, ExtensionPoint, DynamicCode, AuditDynamicCode, CFG, SuppressExports, StrictCFG, MicrosoftSignedOnly, AllowStoreSigned, AuditMicrosoftSigned, AuditStoreSigned, EnforceModuleDepencySigning, DisableNonSystemFonts, FontAuditOnly, AuditFont, BlockRemoteImages, BlockLowLabel, PreferSystem32, AuditImageLoad, EnableExportAddressFilter, EnableExportAddressFilterPlus, EnableImportAddressFilter, EnableRopStackPivot, EnableRopCallerCheck, EnableRopSimExec, SEHOP, AuditSEHOP, SEHOPTelemetry, TerminateOnHeapError, DisallowChildProcessCreation, AuditChildProcess, UserShadowStack, UserShadowStackStrictMode, AuditUserShadowStack +Accepted values: DEP, EmulateAtlThunks, SEHOP, ForceRelocateImages, RequireInfo, BottomUp, HighEntropy, StrictHandle, DisableWin32kSystemCalls, AuditSystemCall, DisableExtensionPoints, BlockDynamicCode, AllowThreadsToOptOut, AuditDynamicCode, CFG, SuppressExports, StrictCFG, MicrosoftSignedOnly, AllowStoreSignedBinaries, AuditMicrosoftSigned, AuditStoreSigned, EnforceModuleDependencySigning, DisableNonSystemFonts, AuditFont, BlockRemoteImageLoads, BlockLowLabelImageLoads, PreferSystem32, AuditRemoteImageLoads, AuditLowLabelImageLoads, AuditPreferSystem32, EnableExportAddressFilter, AuditEnableExportAddressFilter, EnableExportAddressFilterPlus, AuditEnableExportAddressFilterPlus, EnableImportAddressFilter, AuditEnableImportAddressFilter, EnableRopStackPivot, AuditEnableRopStackPivot, EnableRopCallerCheck, AuditEnableRopCallerCheck, EnableRopSimExec, AuditEnableRopSimExec, SEHOP, AuditSEHOP, SEHOPTelemetry, TerminateOnError, DisallowChildProcessCreation, AuditChildProcess Required: False Position: Named From 768a4447a5b4e7563a693020acb05453dedb6cf9 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Tue, 19 Sep 2023 15:46:00 +0100 Subject: [PATCH 937/965] Edits after feedback --- .../Get-ClusterAffinityRule.md | 6 +++ .../New-ClusterAffinityRule.md | 3 ++ .../Remove-ClusterAffinityRule.md | 9 ++++ .../Set-ClusterAffinityRule.md | 44 ++++++++++++++++--- 4 files changed, 57 insertions(+), 5 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterAffinityRule.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterAffinityRule.md index 29795b0d68..45cc891cce 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterAffinityRule.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterAffinityRule.md @@ -129,12 +129,18 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### System.String[] +When a string is piped to this cmdlet, the value is use as the name of the affinity rule to remove. + ## OUTPUTS ### Microsoft.Management.Infrastructure.CimInstance ### Microsoft.Management.Infrastructure.CimInstance#root/MSCLUSTER/MSCluster_AffinityRule +The **Microsoft.Management.Infrastructure.CimInstance** object is a wrapper class that displays +Windows Management Instrumentation (WMI) objects. The command returns an object representing an +affinity rule as a CIM instance within the `root/MSCLUSTER/MSCluster_AffinityRule` path. + ## NOTES ## RELATED LINKS diff --git a/docset/winserver2022-ps/failoverclusters/New-ClusterAffinityRule.md b/docset/winserver2022-ps/failoverclusters/New-ClusterAffinityRule.md index f53798ed04..2c2a27ce42 100644 --- a/docset/winserver2022-ps/failoverclusters/New-ClusterAffinityRule.md +++ b/docset/winserver2022-ps/failoverclusters/New-ClusterAffinityRule.md @@ -158,6 +158,9 @@ This cmdlet doesn't accept any input from the pipeline. ### Microsoft.Management.Infrastructure.CimInstance ### Microsoft.Management.Infrastructure.CimInstance#root/MSCluster/MSCluster_AffinityRule +The **Microsoft.Management.Infrastructure.CimInstance** object is a wrapper class that displays +Windows Management Instrumentation (WMI) objects. The command returns an object representing an +affinity rule as a CIM instance within the `root/MSCLUSTER/MSCluster_AffinityRule` path. ## NOTES diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterAffinityRule.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterAffinityRule.md index b3919aa263..82b79a7a0b 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterAffinityRule.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterAffinityRule.md @@ -201,14 +201,23 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### System.String[] +When a string is piped to this cmdlet, the value is use as the name of the affinity rule to remove. + ### Microsoft.Management.Infrastructure.CimInstance[] +This cmdlet accepts CIM instance objects representing an affinity rule like those returned by the +[Get-ClusterAffinityRule](Get-ClusterAffinityRule.md) cmdlet. + ## OUTPUTS ### Microsoft.Management.Infrastructure.CimInstance ### Microsoft.Management.Infrastructure.CimInstance#root/MSCLUSTER/MSCluster_AffinityRule +The **Microsoft.Management.Infrastructure.CimInstance** object is a wrapper class that displays +Windows Management Instrumentation (WMI) objects. The command returns an object representing an +affinity rule as a CIM instance within the `root/MSCLUSTER/MSCluster_AffinityRule` path. + ## NOTES ## RELATED LINKS diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterAffinityRule.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterAffinityRule.md index 341ee701c4..6d46d45d99 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterAffinityRule.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterAffinityRule.md @@ -39,10 +39,28 @@ change the **RuleType**. ### Example 1 - Enable an affinity rule ```powershell -Set-ClusterAffinityRule -Name AffinityRule1 -Enabled -Cluster Cluster1 +Set-ClusterAffinityRule -Name AffinityRule1 -Enabled ``` -This example enables the cluster affinity rule named AffinityRule1. +This example enables the cluster affinity rule named `AffinityRule1`. + +### Example 2 - Disable an affinity rule + +```powershell +Set-ClusterAffinityRule -Name AffinityRule1 -Enabled:$false +``` + +This example disables the cluster affinity rule named `AffinityRule1`. + +### Example 3 - Change an affinity rule type + +```powershell +Get-ClusterAffinityRule -Name AffinityRule1 | Set-ClusterAffinityRule -RuleType DifferentNode +``` + +This example gets the affinity rule named `AffinityRule1` and pipes the affinity rule object to the +`Set-ClusterAffinityRule` cmdlet. The `Set-ClusterAffinityRule` cmdlet changes the affinity rule +type to `DifferentNode`. ## PARAMETERS @@ -92,7 +110,10 @@ Accept wildcard characters: False ### -Enabled -Enables or disables the affinity rule. +Enables or disables the affinity rule. The accepted values for this parameter are: + +- `0` or `$false`. The affinity rule is disabled. +- `1` or `$true`. The affinity rule is enabled. ```yaml Type: UInt32 @@ -140,8 +161,8 @@ Accept wildcard characters: False ### -PassThru -Returns an object representing the item with which you are working. By default, this cmdlet doesn't -generate any output. +Returns an the original object passed to the command. By default, this cmdlet doesn't generate any +output. ```yaml Type: SwitchParameter @@ -207,14 +228,27 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### System.String[] +When a string is piped to this cmdlet, the value is use as the name of the affinity rule to remove. + ### Microsoft.Management.Infrastructure.CimInstance[] +This cmdlet accepts CIM instance objects representing an affinity rule like those returned by the +[Get-ClusterAffinityRule](Get-ClusterAffinityRule.md) cmdlet. + ## OUTPUTS +### None + +The cmdlet doesn't generate any output unless you use the **PassThru** parameter. + ### Microsoft.Management.Infrastructure.CimInstance ### Microsoft.Management.Infrastructure.CimInstance#root/MSCLUSTER/MSCluster_AffinityRule +The **Microsoft.Management.Infrastructure.CimInstance** object is a wrapper class that displays +Windows Management Instrumentation (WMI) objects. The command returns an object representing an +affinity rule as a CIM instance within the `root/MSCLUSTER/MSCluster_AffinityRule` path. + ## NOTES ## RELATED LINKS From 1e556384fd7a38e5fe77bebf75c8f2b78f568edf Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Wed, 20 Sep 2023 11:56:08 +0100 Subject: [PATCH 938/965] Fixed typo --- .../failoverclusters/Remove-ClusterAffinityRule.md | 4 ++-- .../failoverclusters/Set-ClusterAffinityRule.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterAffinityRule.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterAffinityRule.md index 82b79a7a0b..bd0a9bf6b9 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterAffinityRule.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterAffinityRule.md @@ -123,8 +123,8 @@ Accept wildcard characters: False ### -PassThru -Returns an object representing the item with which you are working. By default, this cmdlet doesn't -generate any output. +Returns the original object passed to the command. By default, this cmdlet doesn't generate any +output. ```yaml Type: SwitchParameter diff --git a/docset/winserver2022-ps/failoverclusters/Set-ClusterAffinityRule.md b/docset/winserver2022-ps/failoverclusters/Set-ClusterAffinityRule.md index 6d46d45d99..97baebec3f 100644 --- a/docset/winserver2022-ps/failoverclusters/Set-ClusterAffinityRule.md +++ b/docset/winserver2022-ps/failoverclusters/Set-ClusterAffinityRule.md @@ -161,7 +161,7 @@ Accept wildcard characters: False ### -PassThru -Returns an the original object passed to the command. By default, this cmdlet doesn't generate any +Returns the original object passed to the command. By default, this cmdlet doesn't generate any output. ```yaml From aad18f558dc0ffa1d007e12aa7acf8f9401d1657 Mon Sep 17 00:00:00 2001 From: Robin Harwood <19212983+robinharwood@users.noreply.github.com> Date: Wed, 20 Sep 2023 12:24:26 +0100 Subject: [PATCH 939/965] Apply suggestions from code review Co-authored-by: Mikey Lombardi (He/Him) --- .../Get-ClusterAffinityRule.md | 7 ++--- .../New-ClusterAffinityRule.md | 24 ++++++++------- .../Remove-ClusterAffinityRule.md | 13 ++++----- .../Set-ClusterAffinityRule.md | 29 ++++++++++--------- 4 files changed, 38 insertions(+), 35 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/Get-ClusterAffinityRule.md b/docset/winserver2022-ps/failoverclusters/Get-ClusterAffinityRule.md index 45cc891cce..5a1383d11d 100644 --- a/docset/winserver2022-ps/failoverclusters/Get-ClusterAffinityRule.md +++ b/docset/winserver2022-ps/failoverclusters/Get-ClusterAffinityRule.md @@ -129,7 +129,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### System.String[] -When a string is piped to this cmdlet, the value is use as the name of the affinity rule to remove. +When a string is piped to this cmdlet, the value is used as the name of the affinity rule to get. ## OUTPUTS @@ -137,9 +137,8 @@ When a string is piped to this cmdlet, the value is use as the name of the affin ### Microsoft.Management.Infrastructure.CimInstance#root/MSCLUSTER/MSCluster_AffinityRule -The **Microsoft.Management.Infrastructure.CimInstance** object is a wrapper class that displays -Windows Management Instrumentation (WMI) objects. The command returns an object representing an -affinity rule as a CIM instance within the `root/MSCLUSTER/MSCluster_AffinityRule` path. +The cmdlet returns an object representing an affinity rule as a CIM instance within the +`root/MSCLUSTER/MSCluster_AffinityRule` path. ## NOTES diff --git a/docset/winserver2022-ps/failoverclusters/New-ClusterAffinityRule.md b/docset/winserver2022-ps/failoverclusters/New-ClusterAffinityRule.md index 2c2a27ce42..fd517af7a7 100644 --- a/docset/winserver2022-ps/failoverclusters/New-ClusterAffinityRule.md +++ b/docset/winserver2022-ps/failoverclusters/New-ClusterAffinityRule.md @@ -22,8 +22,13 @@ New-ClusterAffinityRule [-Name] [-RuleType ] [-CimSession [-RuleType ] [-En ## DESCRIPTION -The `Set-ClusterAffinityRule` command can enable or disable an existing affinity rule. It can also +The `Set-ClusterAffinityRule` cmdlet can enable or disable an existing affinity rule. It can also change the **RuleType**. ## EXAMPLES @@ -39,7 +39,7 @@ change the **RuleType**. ### Example 1 - Enable an affinity rule ```powershell -Set-ClusterAffinityRule -Name AffinityRule1 -Enabled +Set-ClusterAffinityRule -Name AffinityRule1 -Enabled $true ``` This example enables the cluster affinity rule named `AffinityRule1`. @@ -47,7 +47,7 @@ This example enables the cluster affinity rule named `AffinityRule1`. ### Example 2 - Disable an affinity rule ```powershell -Set-ClusterAffinityRule -Name AffinityRule1 -Enabled:$false +Set-ClusterAffinityRule -Name AffinityRule1 -Enabled $false ``` This example disables the cluster affinity rule named `AffinityRule1`. @@ -129,7 +129,8 @@ Accept wildcard characters: False ### -InputObject -Specifies the affinity rule object that is used in a pipeline command. +Specifies the affinity rule object to change. The value must be an object representing an affinity +rule, like the output that the `Get-ClusterAffinityRule` cmdlet returns. ```yaml Type: CimInstance[] @@ -145,7 +146,7 @@ Accept wildcard characters: False ### -Name -The name of the affinity rule you want to change. +The name of the affinity rule to change. ```yaml Type: String[] @@ -180,10 +181,10 @@ Accept wildcard characters: False The affinity type to set the rule to. The valid values for this parameter are: -- `SameFaultDomain`. Resources must stay within the same fault domain. -- `SameNode`. Resources must stay on the same cluster node. -- `DifferentFaultDomain`. Resources must stay in different fault domain (anti-affinity). -- `DifferentNode`. Resources must stay on different cluster nodes (anti-affinity). +- `SameFaultDomain` - Resources must stay within the same fault domain. +- `SameNode` - Resources must stay on the same cluster node. +- `DifferentFaultDomain` - Resources must stay in different fault domain (anti-affinity). +- `DifferentNode` - Resources must stay on different cluster nodes (anti-affinity). ```yaml Type: RuleType @@ -228,7 +229,8 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### System.String[] -When a string is piped to this cmdlet, the value is use as the name of the affinity rule to remove. +When a string is piped to this cmdlet, the value is used as the name of the affinity rule to +change. ### Microsoft.Management.Infrastructure.CimInstance[] @@ -239,15 +241,14 @@ This cmdlet accepts CIM instance objects representing an affinity rule like thos ### None -The cmdlet doesn't generate any output unless you use the **PassThru** parameter. +By default, the cmdlet doesn't return any output. ### Microsoft.Management.Infrastructure.CimInstance ### Microsoft.Management.Infrastructure.CimInstance#root/MSCLUSTER/MSCluster_AffinityRule -The **Microsoft.Management.Infrastructure.CimInstance** object is a wrapper class that displays -Windows Management Instrumentation (WMI) objects. The command returns an object representing an -affinity rule as a CIM instance within the `root/MSCLUSTER/MSCluster_AffinityRule` path. +When the **PassThru** parameter is specified, the cmdlet returns an object representing an affinity +rule as a CIM instance within the `root/MSCLUSTER/MSCluster_AffinityRule` path. ## NOTES From ce6dc6e87ebc4d6fa60eeee49e1b19445ed99dbb Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Thu, 27 Jul 2023 16:38:12 +0100 Subject: [PATCH 940/965] Adding new command the FailoverClusters module --- .../Add-ClusterGroupToAffinityRule.md | 200 ++++++++++++++++++ .../failoverclusters/FailoverClusters.md | 3 + 2 files changed, 203 insertions(+) create mode 100644 docset/winserver2022-ps/failoverclusters/Add-ClusterGroupToAffinityRule.md diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupToAffinityRule.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupToAffinityRule.md new file mode 100644 index 0000000000..80646cd9c1 --- /dev/null +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupToAffinityRule.md @@ -0,0 +1,200 @@ +--- +description: Add-ClusterGroupToAffinityRule +external help file: ClusterAffinityRule.cdxml-help.xml +Module Name: FailoverClusters +ms.date: 07/27/2023 +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustergrouptoaffinityrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +title: Add-ClusterGroupToAffinityRule +--- + +# Add-ClusterGroupToAffinityRule + +## SYNOPSIS +This cmdlet is used to add either a VM role or a group name to a cluster affinity rule. + +## SYNTAX + +### Query (cdxml) (Default) + +``` +Add-ClusterGroupToAffinityRule [[-Name] ] [-Groups] + [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [] +``` + +### InputObject (cdxml) + +``` +Add-ClusterGroupToAffinityRule -InputObject [-Groups] +[-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [] +``` + +## DESCRIPTION + +This cmdlet is used to add either a VM role or a group name to a cluster affinity rule. When using +this cmdlet we can use both **Name** and **Groups** parameters. The former is used to choose the +desired affinity rule and the latter is for the groups to be added. + +## EXAMPLES + +### Example 1 + +```powershell +Add-ClusterGroupToAffinityRule -Groups MyGroup -Name MyRule -Cluster MyCluster +``` + +This example adds the group named MyGroup to the affinity rule named MyRule on the cluster named. + +## PARAMETERS + +### -AsJob + +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. + +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. + +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CimSession + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. + +```yaml +Type: CimSession[] +Parameter Sets: (All) +Aliases: Session + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Groups + +This list of groups to be added to the affinity rule. + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject + +Specifies the input object that is used in a pipeline command. + +```yaml +Type: CimInstance[] +Parameter Sets: InputObject (cdxml) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name + +The Affinity rule in question that groups will be added to. + +```yaml +Type: String[] +Parameter Sets: Query (cdxml) +Aliases: + +Required: False +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -PassThru + +Returns an object representing the item with which you are working. By default, this cmdlet doesn't +generate any output. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ThrottleLimit + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String[] + +### Microsoft.Management.Infrastructure.CimInstance[] + +## OUTPUTS + +### Microsoft.Management.Infrastructure.CimInstance + +### Microsoft.Management.Infrastructure.CimInstance#root/MSCLUSTER/MSCluster_AffinityRule + +## NOTES + +## RELATED LINKS diff --git a/docset/winserver2022-ps/failoverclusters/FailoverClusters.md b/docset/winserver2022-ps/failoverclusters/FailoverClusters.md index 6659968e2b..6dfaaf601e 100644 --- a/docset/winserver2022-ps/failoverclusters/FailoverClusters.md +++ b/docset/winserver2022-ps/failoverclusters/FailoverClusters.md @@ -46,6 +46,9 @@ clustered resources to the group. ### [Add-ClusterGroupSetDependency](./Add-ClusterGroupSetDependency.md) Adds a dependency to a cluster set. +### [Add-ClusterGroupToAffinityRule](./Add-ClusterGroupToAffinityRule.md) +This command is used to add either a VM role or a group name to a cluster affinity rule. + ### [Add-ClusterGroupToSet](./Add-ClusterGroupToSet.md) Adds a group to a set. From 652be7270771ff94888232eb65888b9cc66f25a9 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Mon, 11 Sep 2023 09:33:49 +0100 Subject: [PATCH 941/965] Updating Add-ClusterGroupToAffinityRule synopsis and description --- .../failoverclusters/Add-ClusterGroupToAffinityRule.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupToAffinityRule.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupToAffinityRule.md index 80646cd9c1..349d4d466d 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupToAffinityRule.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupToAffinityRule.md @@ -11,7 +11,7 @@ title: Add-ClusterGroupToAffinityRule # Add-ClusterGroupToAffinityRule ## SYNOPSIS -This cmdlet is used to add either a VM role or a group name to a cluster affinity rule. +Adds a cluster group to an affinity rule. ## SYNTAX @@ -31,9 +31,7 @@ Add-ClusterGroupToAffinityRule -InputObject [-Groups] ## DESCRIPTION -This cmdlet is used to add either a VM role or a group name to a cluster affinity rule. When using -this cmdlet we can use both **Name** and **Groups** parameters. The former is used to choose the -desired affinity rule and the latter is for the groups to be added. +Adds a cluster group to a named affinity rule. ## EXAMPLES From 9f7b8bcddcde44a48b92abe94c2619f28bc57b60 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Tue, 11 Jul 2023 12:52:48 +0100 Subject: [PATCH 942/965] Introducing new command Remove-ClusterGroupFromAffinityRule --- .../Remove-ClusterGroupFromAffinityRule.md | 183 ++++++++++++++++++ 1 file changed, 183 insertions(+) create mode 100644 docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromAffinityRule.md diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromAffinityRule.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromAffinityRule.md new file mode 100644 index 0000000000..00ad8043fa --- /dev/null +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromAffinityRule.md @@ -0,0 +1,183 @@ +--- +description: Remove-ClusterGroupFromAffinityRule +external help file: ClusterAffinityRule.cdxml-help.xml +Module Name: FailoverClusters +ms.date: 07/26/2022 +online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clustergroupfromaffinityrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +title: Remove-ClusterGroupFromAffinityRule +--- + +# Remove-ClusterGroupFromAffinityRule + +## SYNOPSIS +Removes a cluster group from an affinity rule. + +## SYNTAX + +### Query (cdxml) (Default) +``` +Remove-ClusterGroupFromAffinityRule [[-Name] ] [-Groups] [-CimSession ] + [-ThrottleLimit ] [-AsJob] [-PassThru] [] +``` + +### InputObject (cdxml) +``` +Remove-ClusterGroupFromAffinityRule -InputObject [-Groups] + [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [] +``` + +## DESCRIPTION +Removes a cluster group from an affinity rule. This does not remove the rule itself + +## EXAMPLES + +### Example 1 +```powershell +Remove-ClusterGroupFromAffinityRule -Name MuRyle -Groups MyGroup -Cluster MyCluster +``` +## PARAMETERS + +### -AsJob +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. + +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. + +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CimSession +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. + +```yaml +Type: CimSession[] +Parameter Sets: (All) +Aliases: Session + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Groups +The groups to be removed from the affinity rule. + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Specifies the input object that is used in a pipeline command. + +```yaml +Type: CimInstance[] +Parameter Sets: InputObject (cdxml) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +The name of the affinity rule to remove groups from + +```yaml +Type: String[] +Parameter Sets: Query (cdxml) +Aliases: Set + +Required: False +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -PassThru +Returns an object representing the item with which you are working. +By default, this cmdlet does not generate any output. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ThrottleLimit +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String[] + +### Microsoft.Management.Infrastructure.CimInstance[] + +## OUTPUTS + +### Microsoft.Management.Infrastructure.CimInstance + +### Microsoft.Management.Infrastructure.CimInstance#root/MSCLUSTER/MSCluster_AffinityRule + +## NOTES + +## RELATED LINKS From cef84bab110aa6c03620859600ec52b16b3e21d2 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Thu, 27 Jul 2023 14:52:16 +0100 Subject: [PATCH 943/965] Updating text formatting and adding command to the module file --- .../failoverclusters/FailoverClusters.md | 3 ++ .../Remove-ClusterGroupFromAffinityRule.md | 29 ++++++++++++++----- 2 files changed, 25 insertions(+), 7 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/FailoverClusters.md b/docset/winserver2022-ps/failoverclusters/FailoverClusters.md index 6dfaaf601e..2ff4b52940 100644 --- a/docset/winserver2022-ps/failoverclusters/FailoverClusters.md +++ b/docset/winserver2022-ps/failoverclusters/FailoverClusters.md @@ -228,6 +228,9 @@ Removes a fault domain. ### [Remove-ClusterGroup](./Remove-ClusterGroup.md) Removes a clustered role, also called a resource group, from a failover cluster. +### [Remove-ClusterGroupFromAffinityRule](./Remove-ClusterGroupFromAffinityRule.md) +Removes a cluster group from an affinity rule. + ### [Remove-ClusterGroupFromSet](./Remove-ClusterGroupFromSet.md) Removes a group from a set. diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromAffinityRule.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromAffinityRule.md index 00ad8043fa..059cbd39f6 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromAffinityRule.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromAffinityRule.md @@ -2,8 +2,8 @@ description: Remove-ClusterGroupFromAffinityRule external help file: ClusterAffinityRule.cdxml-help.xml Module Name: FailoverClusters -ms.date: 07/26/2022 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/remove-clustergroupfromaffinityrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +ms.date: 07/27/2023 +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clustergroupfromaffinityrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterGroupFromAffinityRule --- @@ -16,29 +16,37 @@ Removes a cluster group from an affinity rule. ## SYNTAX ### Query (cdxml) (Default) + ``` -Remove-ClusterGroupFromAffinityRule [[-Name] ] [-Groups] [-CimSession ] - [-ThrottleLimit ] [-AsJob] [-PassThru] [] +Remove-ClusterGroupFromAffinityRule [[-Name] ] [-Groups] + [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [] ``` ### InputObject (cdxml) + ``` Remove-ClusterGroupFromAffinityRule -InputObject [-Groups] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [] ``` ## DESCRIPTION -Removes a cluster group from an affinity rule. This does not remove the rule itself + +Removes a cluster group from an affinity rule. This doesn't remove the rule itself ## EXAMPLES ### Example 1 + ```powershell Remove-ClusterGroupFromAffinityRule -Name MuRyle -Groups MyGroup -Cluster MyCluster ``` + +This example removes the cluster group MyGroup from the affinity rule named MyRule. + ## PARAMETERS ### -AsJob + Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. @@ -63,6 +71,7 @@ Accept wildcard characters: False ``` ### -CimSession + Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the @@ -81,6 +90,7 @@ Accept wildcard characters: False ``` ### -Groups + The groups to be removed from the affinity rule. ```yaml @@ -96,6 +106,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the input object that is used in a pipeline command. ```yaml @@ -111,6 +122,7 @@ Accept wildcard characters: False ``` ### -Name + The name of the affinity rule to remove groups from ```yaml @@ -126,8 +138,9 @@ Accept wildcard characters: False ``` ### -PassThru -Returns an object representing the item with which you are working. -By default, this cmdlet does not generate any output. + +Returns an object representing the item with which you are working. By default, this cmdlet doesn't +generate any output. ```yaml Type: SwitchParameter @@ -142,6 +155,7 @@ Accept wildcard characters: False ``` ### -ThrottleLimit + Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the @@ -161,6 +175,7 @@ Accept wildcard characters: False ``` ### CommonParameters + This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see From 00633de50f1d80463748efd9e0497f84b7fa8a8d Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Mon, 11 Sep 2023 09:35:45 +0100 Subject: [PATCH 944/965] Adding missing full stop --- .../failoverclusters/Remove-ClusterGroupFromAffinityRule.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromAffinityRule.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromAffinityRule.md index 059cbd39f6..38f015b77e 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromAffinityRule.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromAffinityRule.md @@ -31,7 +31,7 @@ Remove-ClusterGroupFromAffinityRule -InputObject [-Groups] Date: Mon, 11 Sep 2023 10:00:40 +0100 Subject: [PATCH 945/965] Adding remove command to PR --- .../failoverclusters/Add-ClusterGroupToAffinityRule.md | 2 ++ .../failoverclusters/Remove-ClusterGroupFromAffinityRule.md | 2 ++ 2 files changed, 4 insertions(+) diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupToAffinityRule.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupToAffinityRule.md index 349d4d466d..1a986a194e 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupToAffinityRule.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupToAffinityRule.md @@ -196,3 +196,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS + +[Remove-ClusterGroupFromAffinityRule](Remove-ClusterGroupFromAffinityRule.md) diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromAffinityRule.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromAffinityRule.md index 38f015b77e..62dd5635b4 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromAffinityRule.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromAffinityRule.md @@ -196,3 +196,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS + +[Add-ClusterGroupToAffinityRule](Add-ClusterGroupToAffinityRule.md) From 8a09997ede7eeb85db8388365d72e97f0a1fc67b Mon Sep 17 00:00:00 2001 From: Robin Harwood <19212983+robinharwood@users.noreply.github.com> Date: Tue, 12 Sep 2023 14:02:12 +0100 Subject: [PATCH 946/965] Apply suggestions from code review Co-authored-by: Mikey Lombardi (He/Him) --- .../failoverclusters/Add-ClusterGroupToAffinityRule.md | 8 ++++---- .../Remove-ClusterGroupFromAffinityRule.md | 10 +++++----- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupToAffinityRule.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupToAffinityRule.md index 1a986a194e..1b7020d1d5 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupToAffinityRule.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupToAffinityRule.md @@ -41,7 +41,7 @@ Adds a cluster group to a named affinity rule. Add-ClusterGroupToAffinityRule -Groups MyGroup -Name MyRule -Cluster MyCluster ``` -This example adds the group named MyGroup to the affinity rule named MyRule on the cluster named. +This example adds the group named `MyGroup` to the affinity rule named `MyRule` on the cluster named `MyCluster`. ## PARAMETERS @@ -55,7 +55,7 @@ prompt. You can continue to work in the session while the job completes. To mana `*-Job` cmdlets. To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. -For more information about Windows PowerShell background jobs, see +For more information about PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml @@ -123,7 +123,7 @@ Accept wildcard characters: False ### -Name -The Affinity rule in question that groups will be added to. +The Affinity rule to add the groups to. ```yaml Type: String[] @@ -157,7 +157,7 @@ Accept wildcard characters: False ### -ThrottleLimit Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If -this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +this parameter is omitted or a value of `0` is entered, then PowerShell calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. The throttle limit applies only to the current cmdlet, not to the session or to the computer. diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromAffinityRule.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromAffinityRule.md index 62dd5635b4..affe0626b8 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromAffinityRule.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromAffinityRule.md @@ -41,7 +41,7 @@ Removes a cluster group from an affinity rule. This doesn't remove the rule itse Remove-ClusterGroupFromAffinityRule -Name MuRyle -Groups MyGroup -Cluster MyCluster ``` -This example removes the cluster group MyGroup from the affinity rule named MyRule. +This example removes the cluster group `MyGroup` from the affinity rule named `MyRule`. ## PARAMETERS @@ -55,7 +55,7 @@ prompt. You can continue to work in the session while the job completes. To mana `*-Job` cmdlets. To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. -For more information about Windows PowerShell background jobs, see +For more information about PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml @@ -91,7 +91,7 @@ Accept wildcard characters: False ### -Groups -The groups to be removed from the affinity rule. +The groups to remove from the affinity rule. ```yaml Type: String[] @@ -123,7 +123,7 @@ Accept wildcard characters: False ### -Name -The name of the affinity rule to remove groups from +The name of the affinity rule to remove groups from. ```yaml Type: String[] @@ -157,7 +157,7 @@ Accept wildcard characters: False ### -ThrottleLimit Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If -this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +this parameter is omitted or a value of `0` is entered, then PowerShell calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. The throttle limit applies only to the current cmdlet, not to the session or to the computer. From d2e6d7efbe089801c8e662baaf5623f606676c03 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Tue, 12 Sep 2023 14:11:28 +0100 Subject: [PATCH 947/965] Updates post feedback --- .../failoverclusters/Add-ClusterGroupToAffinityRule.md | 7 ++++--- .../Remove-ClusterGroupFromAffinityRule.md | 4 ++-- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupToAffinityRule.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupToAffinityRule.md index 1b7020d1d5..5784cdfe30 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupToAffinityRule.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupToAffinityRule.md @@ -35,13 +35,14 @@ Adds a cluster group to a named affinity rule. ## EXAMPLES -### Example 1 +### Example 1 - Add a group to an affinity rule ```powershell Add-ClusterGroupToAffinityRule -Groups MyGroup -Name MyRule -Cluster MyCluster ``` -This example adds the group named `MyGroup` to the affinity rule named `MyRule` on the cluster named `MyCluster`. +This example adds the group named `MyGroup` to the affinity rule named `MyRule` on the cluster named +`MyCluster`. ## PARAMETERS @@ -107,7 +108,7 @@ Accept wildcard characters: False ### -InputObject -Specifies the input object that is used in a pipeline command. +Specifies the affinity rule object that is used in a pipeline command. ```yaml Type: CimInstance[] diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromAffinityRule.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromAffinityRule.md index affe0626b8..3d39cbc9e0 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromAffinityRule.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromAffinityRule.md @@ -35,7 +35,7 @@ Removes a cluster group from an affinity rule. This doesn't remove the rule itse ## EXAMPLES -### Example 1 +### Example 1 - Remove a group from an affinity rule ```powershell Remove-ClusterGroupFromAffinityRule -Name MuRyle -Groups MyGroup -Cluster MyCluster @@ -107,7 +107,7 @@ Accept wildcard characters: False ### -InputObject -Specifies the input object that is used in a pipeline command. +Specifies the affinity rule object that is used in a pipeline command. ```yaml Type: CimInstance[] From 181acf26c653d70c54113ae02a8eae656305062a Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Wed, 20 Sep 2023 14:45:00 +0100 Subject: [PATCH 948/965] Updated cluster group affinity rule commands after feedback --- .../Add-ClusterGroupToAffinityRule.md | 28 +++++++++++++++++-- .../Remove-ClusterGroupFromAffinityRule.md | 26 +++++++++++++++-- 2 files changed, 50 insertions(+), 4 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupToAffinityRule.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupToAffinityRule.md index 5784cdfe30..ace0a336e4 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupToAffinityRule.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterGroupToAffinityRule.md @@ -2,7 +2,7 @@ description: Add-ClusterGroupToAffinityRule external help file: ClusterAffinityRule.cdxml-help.xml Module Name: FailoverClusters -ms.date: 07/27/2023 +ms.date: 09/20/2023 online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustergrouptoaffinityrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterGroupToAffinityRule @@ -44,6 +44,17 @@ Add-ClusterGroupToAffinityRule -Groups MyGroup -Name MyRule -Cluster MyCluster This example adds the group named `MyGroup` to the affinity rule named `MyRule` on the cluster named `MyCluster`. +### Example 2 - Add a group to an affinity rule using pipeline + +```powershell +Get-ClusterAffinityRule -name Rule1 | + Add-ClusterGroupToAffinityRule -Groups MyGroup +``` + +The command gets the affinity rule `Rule1` object and passes it to the +`Add-ClusterGroupToAffinityRule` command. The command adds the cluster group `MyGroup` to the +affinity rule. + ## PARAMETERS ### -AsJob @@ -140,7 +151,7 @@ Accept wildcard characters: False ### -PassThru -Returns an object representing the item with which you are working. By default, this cmdlet doesn't +Returns the original affinity rule object passed to the command. By default, this cmdlet doesn't generate any output. ```yaml @@ -186,14 +197,27 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### System.String[] +When a string is piped to this cmdlet, the value is used as the name of the affinity rule to add the +cluster shared volume to. + ### Microsoft.Management.Infrastructure.CimInstance[] +This cmdlet accepts CIM instance objects representing an affinity rule like those returned by the +[Get-ClusterAffinityRule](Get-ClusterAffinityRule.md) cmdlet. + ## OUTPUTS +### None + +By default, the cmdlet doesn't return any output. + ### Microsoft.Management.Infrastructure.CimInstance ### Microsoft.Management.Infrastructure.CimInstance#root/MSCLUSTER/MSCluster_AffinityRule +When the **PassThru** parameter is specified, the cmdlet returns an object representing an affinity +rule as a CIM instance within the `root/MSCLUSTER/MSCluster_AffinityRule` path. + ## NOTES ## RELATED LINKS diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromAffinityRule.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromAffinityRule.md index 3d39cbc9e0..0b115171d3 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromAffinityRule.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromAffinityRule.md @@ -2,7 +2,7 @@ description: Remove-ClusterGroupFromAffinityRule external help file: ClusterAffinityRule.cdxml-help.xml Module Name: FailoverClusters -ms.date: 07/27/2023 +ms.date: 09/20/2023 online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clustergroupfromaffinityrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Remove-ClusterGroupFromAffinityRule @@ -43,6 +43,17 @@ Remove-ClusterGroupFromAffinityRule -Name MuRyle -Groups MyGroup -Cluster MyClus This example removes the cluster group `MyGroup` from the affinity rule named `MyRule`. +### Example 2 - Remove a group to an affinity rule using pipeline + +```powershell +Get-ClusterAffinityRule -name Rule1 | + Remove-ClusterGroupFromAffinityRule -Groups MyGroup +``` + +The command gets the affinity rule `Rule1` object and passes it to the +`Remove-ClusterGroupFromAffinityRule` command. The command removes the cluster group `MyGroup` from +the affinity rule. + ## PARAMETERS ### -AsJob @@ -139,7 +150,7 @@ Accept wildcard characters: False ### -PassThru -Returns an object representing the item with which you are working. By default, this cmdlet doesn't +Returns the original affinity rule object passed to the command. By default, this cmdlet doesn't generate any output. ```yaml @@ -185,14 +196,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### System.String[] +When a string is piped to this cmdlet, the value is used as the name of the affinity rule to remove +the cluster shared volume from. + ### Microsoft.Management.Infrastructure.CimInstance[] +Specifies the affinity rule object to remove, as returned by the +[Get-ClusterAffinityRule](Get-ClusterAffinityRule.md) cmdlet. + ## OUTPUTS +By default, the cmdlet doesn't return any output. + ### Microsoft.Management.Infrastructure.CimInstance ### Microsoft.Management.Infrastructure.CimInstance#root/MSCLUSTER/MSCluster_AffinityRule +When the **PassThru** parameter is specified, the cmdlet returns an object representing an affinity +rule as a CIM instance within the `root/MSCLUSTER/MSCluster_AffinityRule` path. + ## NOTES ## RELATED LINKS From 8fe24f3510cde80e8c0a4c396bce36512ef89f46 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Wed, 20 Sep 2023 14:56:04 +0100 Subject: [PATCH 949/965] Fixing build validation issue --- .../failoverclusters/Remove-ClusterGroupFromAffinityRule.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromAffinityRule.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromAffinityRule.md index 0b115171d3..2aeb0d3a55 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromAffinityRule.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterGroupFromAffinityRule.md @@ -206,6 +206,8 @@ Specifies the affinity rule object to remove, as returned by the ## OUTPUTS +### None + By default, the cmdlet doesn't return any output. ### Microsoft.Management.Infrastructure.CimInstance From d07e7fd6980bb11e9c20b414508e6d45c4571d84 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Tue, 11 Jul 2023 13:08:28 +0100 Subject: [PATCH 950/965] Introducing new Add-ClusterSharedVolumeToAffinityRule command --- .../Add-ClusterSharedVolumeToAffinityRule.md | 183 ++++++++++++++++++ 1 file changed, 183 insertions(+) create mode 100644 docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolumeToAffinityRule.md diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolumeToAffinityRule.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolumeToAffinityRule.md new file mode 100644 index 0000000000..45c2cb6b48 --- /dev/null +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolumeToAffinityRule.md @@ -0,0 +1,183 @@ +--- +description: Add-ClusterSharedVolumeToAffinityRule +external help file: ClusterAffinityRule.cdxml-help.xml +Module Name: FailoverClusters +ms.date: 07/26/2022 +online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clustersharedvolumetoaffinityrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +title: Add-ClusterSharedVolumeToAffinityRule +--- + +# Add-ClusterSharedVolumeToAffinityRule + +## SYNOPSIS +Adds a Cluster Shared Volume (CSV) to an existing Affinity Rule. + +## SYNTAX + +### Query (cdxml) (Default) +``` +Add-ClusterSharedVolumeToAffinityRule [[-Name] ] [-ClusterSharedVolumes] + [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [] +``` + +### InputObject (cdxml) +``` +Add-ClusterSharedVolumeToAffinityRule -InputObject [-ClusterSharedVolumes] + [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [] +``` + +## DESCRIPTION +This cmdlet gives the ability to keep VMs with the cluster shared volume(CSV) that contains its VHD. + +## EXAMPLES + +### Example 1 +```powershell +Add-ClusterSharedVolumeToAffinityRule -ClusterSharedVolumes MyVolume -Name MyRule -Cluster MyCluster +``` +## PARAMETERS + +### -AsJob +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. + +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. + +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CimSession +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. + +```yaml +Type: CimSession[] +Parameter Sets: (All) +Aliases: Session + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ClusterSharedVolumes +The cluster shared volumes to be added to the affinity rule. + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Specifies the input object that is used in a pipeline command. + +```yaml +Type: CimInstance[] +Parameter Sets: InputObject (cdxml) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +The affinity rule in question to add cluster shared volumes to. + +```yaml +Type: String[] +Parameter Sets: Query (cdxml) +Aliases: + +Required: False +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -PassThru +Returns an object representing the item with which you are working. +By default, this cmdlet does not generate any output. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ThrottleLimit +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String[] + +### Microsoft.Management.Infrastructure.CimInstance[] + +## OUTPUTS + +### Microsoft.Management.Infrastructure.CimInstance + +### Microsoft.Management.Infrastructure.CimInstance#root/MSCLUSTER/MSCluster_AffinityRule + +## NOTES + +## RELATED LINKS From 54b61d71eec0cd71c6ad3df77fe7fe597eef9a47 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Thu, 27 Jul 2023 14:58:57 +0100 Subject: [PATCH 951/965] Updating text formatting and adding command to the module file --- .../Add-ClusterSharedVolumeToAffinityRule.md | 26 ++++++++++++++----- .../failoverclusters/FailoverClusters.md | 3 +++ 2 files changed, 23 insertions(+), 6 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolumeToAffinityRule.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolumeToAffinityRule.md index 45c2cb6b48..2c21a50b35 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolumeToAffinityRule.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolumeToAffinityRule.md @@ -2,8 +2,8 @@ description: Add-ClusterSharedVolumeToAffinityRule external help file: ClusterAffinityRule.cdxml-help.xml Module Name: FailoverClusters -ms.date: 07/26/2022 -online version: https://docs.microsoft.com/powershell/module/failoverclusters/add-clustersharedvolumetoaffinityrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +ms.date: 07/27/2023 +online version: https://learn.microsoft.com/powershell/module/failoverclusters/add-clustersharedvolumetoaffinityrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp schema: 2.0.0 title: Add-ClusterSharedVolumeToAffinityRule --- @@ -16,29 +16,36 @@ Adds a Cluster Shared Volume (CSV) to an existing Affinity Rule. ## SYNTAX ### Query (cdxml) (Default) + ``` Add-ClusterSharedVolumeToAffinityRule [[-Name] ] [-ClusterSharedVolumes] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [] ``` ### InputObject (cdxml) + ``` -Add-ClusterSharedVolumeToAffinityRule -InputObject [-ClusterSharedVolumes] - [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [] +Add-ClusterSharedVolumeToAffinityRule -InputObject + [-ClusterSharedVolumes] [-CimSession ] [-ThrottleLimit ] [-AsJob] + [-PassThru] + [] ``` ## DESCRIPTION + This cmdlet gives the ability to keep VMs with the cluster shared volume(CSV) that contains its VHD. ## EXAMPLES ### Example 1 + ```powershell Add-ClusterSharedVolumeToAffinityRule -ClusterSharedVolumes MyVolume -Name MyRule -Cluster MyCluster ``` ## PARAMETERS ### -AsJob + Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete. @@ -63,6 +70,7 @@ Accept wildcard characters: False ``` ### -CimSession + Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the @@ -81,6 +89,7 @@ Accept wildcard characters: False ``` ### -ClusterSharedVolumes + The cluster shared volumes to be added to the affinity rule. ```yaml @@ -96,6 +105,7 @@ Accept wildcard characters: False ``` ### -InputObject + Specifies the input object that is used in a pipeline command. ```yaml @@ -111,6 +121,7 @@ Accept wildcard characters: False ``` ### -Name + The affinity rule in question to add cluster shared volumes to. ```yaml @@ -126,8 +137,9 @@ Accept wildcard characters: False ``` ### -PassThru -Returns an object representing the item with which you are working. -By default, this cmdlet does not generate any output. + +Returns an object representing the item with which you are working. By default, this cmdlet doesn't +generate any output. ```yaml Type: SwitchParameter @@ -142,6 +154,7 @@ Accept wildcard characters: False ``` ### -ThrottleLimit + Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the @@ -161,6 +174,7 @@ Accept wildcard characters: False ``` ### CommonParameters + This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see diff --git a/docset/winserver2022-ps/failoverclusters/FailoverClusters.md b/docset/winserver2022-ps/failoverclusters/FailoverClusters.md index 2ff4b52940..8da4a61570 100644 --- a/docset/winserver2022-ps/failoverclusters/FailoverClusters.md +++ b/docset/winserver2022-ps/failoverclusters/FailoverClusters.md @@ -75,6 +75,9 @@ Creates a clustered file server for scale-out application data. ### [Add-ClusterSharedVolume](./Add-ClusterSharedVolume.md) Makes a volume available in Cluster Shared Volumes in a failover cluster. +### [Add-ClusterSharedVolumeToAffinityRule](./Add-ClusterSharedVolumeToAffinityRule.md) +Adds a Cluster Shared Volume (CSV) to an existing Affinity Rule. + ### [Add-ClusterVirtualMachineRole](./Add-ClusterVirtualMachineRole.md) Creates a clustered virtual machine, that is, a virtual machine that can be failed over if necessary to a different server in the failover cluster. From dd227dc1ec7a54b3ee0e6b2905a4ea96da48ac21 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Mon, 11 Sep 2023 09:41:40 +0100 Subject: [PATCH 952/965] Updating Add-ClusterSharedVolumeToAffinityRule description --- .../Add-ClusterSharedVolumeToAffinityRule.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolumeToAffinityRule.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolumeToAffinityRule.md index 2c21a50b35..37599680e9 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolumeToAffinityRule.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolumeToAffinityRule.md @@ -11,7 +11,7 @@ title: Add-ClusterSharedVolumeToAffinityRule # Add-ClusterSharedVolumeToAffinityRule ## SYNOPSIS -Adds a Cluster Shared Volume (CSV) to an existing Affinity Rule. +Adds a Cluster Shared Volume (CSV) to an existing affinity rule. ## SYNTAX @@ -33,7 +33,8 @@ Add-ClusterSharedVolumeToAffinityRule -InputObject ## DESCRIPTION -This cmdlet gives the ability to keep VMs with the cluster shared volume(CSV) that contains its VHD. +This cmdlet allows you to add cluster shared volumes (CSVs) to an existing affinity rule, using +either the CSV name or object. ## EXAMPLES From d0602d40414013668a0656bf96393166cf4065ce Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Fri, 28 Jul 2023 13:48:02 +0100 Subject: [PATCH 953/965] Added new command to the FailoverCluster module --- ...ove-ClusterSharedVolumeFromAffinityRule.md | 167 ++++++++++++++++++ 1 file changed, 167 insertions(+) create mode 100644 docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolumeFromAffinityRule.md diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolumeFromAffinityRule.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolumeFromAffinityRule.md new file mode 100644 index 0000000000..65ab8526af --- /dev/null +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolumeFromAffinityRule.md @@ -0,0 +1,167 @@ +--- +description: Remove-ClusterSharedVolumeFromAffinityRule +external help file: ClusterAffinityRule.cdxml-help.xml +Module Name: FailoverClusters +ms.date: 07/28/2023 +online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clustersharedvolumefromaffinityrule?view=windowsserver2022-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +title: Remove-ClusterSharedVolumeFromAffinityRule +--- + +# Remove-ClusterSharedVolumeFromAffinityRule + +## SYNOPSIS +Remove a cluster shared volume from an affinity rule. + +## SYNTAX + +``` +Remove-ClusterSharedVolumeFromAffinityRule [[-Name] ] [-ClusterSharedVolumes] + [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [] +``` + +## DESCRIPTION + +## EXAMPLES + +```powershell +Remove-ClusterSharedVolumeFromAffinityRule -ClusterSharedVolumes Volume -Name Rule -Cluster Cluster +``` + +This command removes the cluster shared volume _Volume_ from the affinity rule _Rule_ for the +cluster _Cluster_. + +## PARAMETERS + +mplete. + +The cmdlet immediately returns an object that represents the job and then displays the command +prompt. You can continue to work in the session while the job completes. To manage the job, use the +`*-Job` cmdlets. To get the job results, use the +[Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. + +For more information about Windows PowerShell background jobs, see +[about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +uns the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +r [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +current session on the local computer. + +```yaml +Type: CimSession[] +Parameter Sets: (All) +Aliases: Session + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +he clustered shared volumes that should be added to the given affinity rule + +ype: String[] +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +pecifies the input object that is used in a pipeline command. + +```yaml +Type: CimInstance[] +Parameter Sets: InputObject (cdxml) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +he name of the affinity rule to add groups to. + +```yaml +Type: String[] +Parameter Sets: Query (cdxml) +Aliases: Set + +Required: False +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +Returns an object representing the item with which you are working. By default, this cmdlet doesn't +generate any output. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +pecifies the maximum number of concurrent operations that can be established to run the cmdlet. If +this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an +optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the +computer. The throttle limit applies only to the current cmdlet, not to the session or to the +computer. + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +his cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String[] + +### Microsoft.Management.Infrastructure.CimInstance[] + +## OUTPUTS + +### Microsoft.Management.Infrastructure.CimInstance + +### Microsoft.Management.Infrastructure.CimInstance#root/MSCLUSTER/MSCluster_AffinityRule + +## NOTES + +## RELATED LINKS From 0ff18c9bedb64f76f7e16cfa62340b99b4f2be74 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Fri, 28 Jul 2023 13:54:54 +0100 Subject: [PATCH 954/965] Added new command to the FailoverCluster module --- ...ove-ClusterSharedVolumeFromAffinityRule.md | 60 ++++++++++++++----- 1 file changed, 46 insertions(+), 14 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolumeFromAffinityRule.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolumeFromAffinityRule.md index 65ab8526af..b169a72595 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolumeFromAffinityRule.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolumeFromAffinityRule.md @@ -15,25 +15,41 @@ Remove a cluster shared volume from an affinity rule. ## SYNTAX +### Query (cdxml) (Default) + ``` Remove-ClusterSharedVolumeFromAffinityRule [[-Name] ] [-ClusterSharedVolumes] [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [] ``` +### InputObject (cdxml) + +``` +Remove-ClusterSharedVolumeFromAffinityRule -InputObject [-ClusterSharedVolumes] + [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [] +``` + ## DESCRIPTION +Remove a cluster shared volume from an affinity rule. + ## EXAMPLES +### Example 1 + ```powershell -Remove-ClusterSharedVolumeFromAffinityRule -ClusterSharedVolumes Volume -Name Rule -Cluster Cluster +Remove-ClusterSharedVolumeFromAffinityRule -ClusterSharedVolumes MyVolume -Name MyRule -Cluster MyCluster ``` -This command removes the cluster shared volume _Volume_ from the affinity rule _Rule_ for the -cluster _Cluster_. +This command removes the cluster shared volume _MyVolume_ from the affinity rule _MyRule_ for the +cluster _MyCluster_. ## PARAMETERS -mplete. +### -AsJob + +Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to +complete. The cmdlet immediately returns an object that represents the job and then displays the command prompt. You can continue to work in the session while the job completes. To manage the job, use the @@ -55,8 +71,11 @@ Accept pipeline input: False Accept wildcard characters: False ``` -uns the cmdlet in a remote session or on a remote computer. Enter a computer name or a session -r [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the +### -CimSession + +Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session +object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) +or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the current session on the local computer. ```yaml @@ -71,9 +90,12 @@ Accept pipeline input: False Accept wildcard characters: False ``` -he clustered shared volumes that should be added to the given affinity rule +### -ClusterSharedVolumes + +The clustered shared volumes that should be added to the given affinity rule -ype: String[] +```yaml +Type: String[] Parameter Sets: (All) Aliases: @@ -84,7 +106,9 @@ Accept pipeline input: False Accept wildcard characters: False ``` -pecifies the input object that is used in a pipeline command. +### -InputObject + +Specifies the input object that is used in a pipeline command. ```yaml Type: CimInstance[] @@ -98,7 +122,9 @@ Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` -he name of the affinity rule to add groups to. +### -Name + +The name of the affinity rule to add groups to. ```yaml Type: String[] @@ -112,8 +138,10 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` -Returns an object representing the item with which you are working. By default, this cmdlet doesn't -generate any output. +### -PassThru + +Returns an object representing the item with which you are working. +By default, this cmdlet does not generate any output. ```yaml Type: SwitchParameter @@ -127,7 +155,9 @@ Accept pipeline input: False Accept wildcard characters: False ``` -pecifies the maximum number of concurrent operations that can be established to run the cmdlet. If +### -ThrottleLimit + +Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. The throttle limit applies only to the current cmdlet, not to the session or to the @@ -145,7 +175,9 @@ Accept pipeline input: False Accept wildcard characters: False ``` -his cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). From 1e496ad49ffea6ebbffe7b7810f91f3660105a12 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Mon, 11 Sep 2023 09:45:04 +0100 Subject: [PATCH 955/965] Fixing FailoverCluster.md link issue --- docset/winserver2022-ps/failoverclusters/FailoverClusters.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docset/winserver2022-ps/failoverclusters/FailoverClusters.md b/docset/winserver2022-ps/failoverclusters/FailoverClusters.md index 8da4a61570..c706ae8ab0 100644 --- a/docset/winserver2022-ps/failoverclusters/FailoverClusters.md +++ b/docset/winserver2022-ps/failoverclusters/FailoverClusters.md @@ -259,6 +259,9 @@ Removes a resource type from a failover cluster. Removes a volume from the Cluster Shared Volumes in a failover cluster, and places it in Available Storage in the cluster. +### [Remove-ClusterSharedVolumeFromAffinityRule](./Remove-ClusterSharedVolumeFromAffinityRule.md) +Remove a cluster shared volume from an affinity rule. + ### [Remove-ClusterVMMonitoredItem](./Remove-ClusterVMMonitoredItem.md) Removes monitoring of a service or event that is currently being monitored on a virtual machine. From e34c9e67839b9e8c8b785c5cd69911dcb18367fe Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Mon, 11 Sep 2023 10:03:08 +0100 Subject: [PATCH 956/965] Added related links and consolidating PRs --- .../failoverclusters/Add-ClusterSharedVolumeToAffinityRule.md | 2 ++ .../Remove-ClusterSharedVolumeFromAffinityRule.md | 2 ++ 2 files changed, 4 insertions(+) diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolumeToAffinityRule.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolumeToAffinityRule.md index 37599680e9..a927446e43 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolumeToAffinityRule.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolumeToAffinityRule.md @@ -196,3 +196,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS + +[Remove-ClusterSharedVolumeFromAffinityRule](Remove-ClusterSharedVolumeFromAffinityRule.md) diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolumeFromAffinityRule.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolumeFromAffinityRule.md index b169a72595..e0bf71e330 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolumeFromAffinityRule.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolumeFromAffinityRule.md @@ -197,3 +197,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS + +[Add-ClusterSharedVolumeToAffinityRule](Add-ClusterSharedVolumeToAffinityRule.md) From 2efe1c95117710cc58bb816b608dd42a3d91fc9b Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Mon, 11 Sep 2023 10:07:09 +0100 Subject: [PATCH 957/965] Line formatting updates --- .../Add-ClusterSharedVolumeToAffinityRule.md | 7 +++---- ...move-ClusterSharedVolumeFromAffinityRule.md | 18 +++++++++--------- 2 files changed, 12 insertions(+), 13 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolumeToAffinityRule.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolumeToAffinityRule.md index a927446e43..389b1d3443 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolumeToAffinityRule.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolumeToAffinityRule.md @@ -157,10 +157,9 @@ Accept wildcard characters: False ### -ThrottleLimit Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If -this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an -optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the -computer. The throttle limit applies only to the current cmdlet, not to the session or to the -computer. +this parameter is omitted or a value of `0` is entered, then PowerShell calculates an optimum +throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. +The throttle limit applies only to the current cmdlet, not to the session or to the computer. ```yaml Type: Int32 diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolumeFromAffinityRule.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolumeFromAffinityRule.md index e0bf71e330..8a5d4cad8c 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolumeFromAffinityRule.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolumeFromAffinityRule.md @@ -25,8 +25,9 @@ Remove-ClusterSharedVolumeFromAffinityRule [[-Name] ] [-ClusterSharedV ### InputObject (cdxml) ``` -Remove-ClusterSharedVolumeFromAffinityRule -InputObject [-ClusterSharedVolumes] - [-CimSession ] [-ThrottleLimit ] [-AsJob] [-PassThru] [] +Remove-ClusterSharedVolumeFromAffinityRule -InputObject + [-ClusterSharedVolumes] [-CimSession ] [-ThrottleLimit ] [-AsJob] + [-PassThru] [] ``` ## DESCRIPTION @@ -38,11 +39,11 @@ Remove a cluster shared volume from an affinity rule. ### Example 1 ```powershell -Remove-ClusterSharedVolumeFromAffinityRule -ClusterSharedVolumes MyVolume -Name MyRule -Cluster MyCluster +Remove-ClusterSharedVolumeFromAffinityRule -ClusterSharedVolumes Volume -Name Rule -Cluster Cluster ``` -This command removes the cluster shared volume _MyVolume_ from the affinity rule _MyRule_ for the -cluster _MyCluster_. +This command removes the cluster shared volume _Volume_ from the affinity rule _Rule_ for the +cluster _Cluster_. ## PARAMETERS @@ -158,10 +159,9 @@ Accept wildcard characters: False ### -ThrottleLimit Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If -this parameter is omitted or a value of `0` is entered, then Windows PowerShell® calculates an -optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the -computer. The throttle limit applies only to the current cmdlet, not to the session or to the -computer. +this parameter is omitted or a value of `0` is entered, then PowerShell calculates an optimum +throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. +The throttle limit applies only to the current cmdlet, not to the session or to the computer. ```yaml Type: Int32 From cce97e0cdfdae431e2cf276387c888de724e14f2 Mon Sep 17 00:00:00 2001 From: Robin Harwood <19212983+robinharwood@users.noreply.github.com> Date: Tue, 12 Sep 2023 12:13:32 +0100 Subject: [PATCH 958/965] Apply suggestions from code review Co-authored-by: Mikey Lombardi (He/Him) --- .../Add-ClusterSharedVolumeToAffinityRule.md | 6 +++--- .../Remove-ClusterSharedVolumeFromAffinityRule.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolumeToAffinityRule.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolumeToAffinityRule.md index 389b1d3443..61b982f751 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolumeToAffinityRule.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolumeToAffinityRule.md @@ -55,7 +55,7 @@ prompt. You can continue to work in the session while the job completes. To mana `*-Job` cmdlets. To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. -For more information about Windows PowerShell background jobs, see +For more information about PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml @@ -91,7 +91,7 @@ Accept wildcard characters: False ### -ClusterSharedVolumes -The cluster shared volumes to be added to the affinity rule. +The cluster shared volumes to add to the affinity rule. ```yaml Type: String[] @@ -123,7 +123,7 @@ Accept wildcard characters: False ### -Name -The affinity rule in question to add cluster shared volumes to. +The affinity rule to add cluster shared volumes to. ```yaml Type: String[] diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolumeFromAffinityRule.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolumeFromAffinityRule.md index 8a5d4cad8c..6dd9b7be48 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolumeFromAffinityRule.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolumeFromAffinityRule.md @@ -57,7 +57,7 @@ prompt. You can continue to work in the session while the job completes. To mana `*-Job` cmdlets. To get the job results, use the [Receive-Job](https://go.microsoft.com/fwlink/?LinkID=113372) cmdlet. -For more information about Windows PowerShell background jobs, see +For more information about PowerShell background jobs, see [about_Jobs](https://go.microsoft.com/fwlink/?LinkID=113251). ```yaml From aec338b7dd727456b20e1de94bc5b9edd3ca19d3 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Tue, 12 Sep 2023 12:37:05 +0100 Subject: [PATCH 959/965] Updates post feedback --- .../Add-ClusterSharedVolumeToAffinityRule.md | 10 +++++++--- .../Remove-ClusterSharedVolumeFromAffinityRule.md | 6 +++--- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolumeToAffinityRule.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolumeToAffinityRule.md index 61b982f751..5a60e431a3 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolumeToAffinityRule.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolumeToAffinityRule.md @@ -38,11 +38,15 @@ either the CSV name or object. ## EXAMPLES -### Example 1 +### Example 1 - Add a CSV to an affinity rule ```powershell Add-ClusterSharedVolumeToAffinityRule -ClusterSharedVolumes MyVolume -Name MyRule -Cluster MyCluster ``` + +This command adds the cluster shared volume _MyVolume_ to the affinity rule _MyRule_ for the cluster +_MyCluster_. + ## PARAMETERS ### -AsJob @@ -107,7 +111,7 @@ Accept wildcard characters: False ### -InputObject -Specifies the input object that is used in a pipeline command. +Specifies the affinity rule object that is used in a pipeline command. ```yaml Type: CimInstance[] @@ -123,7 +127,7 @@ Accept wildcard characters: False ### -Name -The affinity rule to add cluster shared volumes to. +The name of affinity rule to add cluster shared volumes to. ```yaml Type: String[] diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolumeFromAffinityRule.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolumeFromAffinityRule.md index 6dd9b7be48..3f7f673a4c 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolumeFromAffinityRule.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolumeFromAffinityRule.md @@ -36,7 +36,7 @@ Remove a cluster shared volume from an affinity rule. ## EXAMPLES -### Example 1 +### Example 1 - Remove a CSV from an affinity rule ```powershell Remove-ClusterSharedVolumeFromAffinityRule -ClusterSharedVolumes Volume -Name Rule -Cluster Cluster @@ -93,7 +93,7 @@ Accept wildcard characters: False ### -ClusterSharedVolumes -The clustered shared volumes that should be added to the given affinity rule +The clustered shared volumes to add to the given affinity rule. ```yaml Type: String[] @@ -109,7 +109,7 @@ Accept wildcard characters: False ### -InputObject -Specifies the input object that is used in a pipeline command. +Specifies affinity rule input object that is used in a pipeline command. ```yaml Type: CimInstance[] From c2439d5ed10af6c3446af825af335574d2931fb9 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Wed, 20 Sep 2023 12:14:31 +0100 Subject: [PATCH 960/965] Updated after feedback --- .../Add-ClusterSharedVolumeToAffinityRule.md | 26 ++++++++++++++++- ...ove-ClusterSharedVolumeFromAffinityRule.md | 28 +++++++++++++++++-- 2 files changed, 51 insertions(+), 3 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolumeToAffinityRule.md b/docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolumeToAffinityRule.md index 5a60e431a3..843ea2740c 100644 --- a/docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolumeToAffinityRule.md +++ b/docset/winserver2022-ps/failoverclusters/Add-ClusterSharedVolumeToAffinityRule.md @@ -47,6 +47,17 @@ Add-ClusterSharedVolumeToAffinityRule -ClusterSharedVolumes MyVolume -Name MyRul This command adds the cluster shared volume _MyVolume_ to the affinity rule _MyRule_ for the cluster _MyCluster_. +### Example 2 - Add a CSV to an affinity rule using pipeline + +```powershell +Get-ClusterAffinityRule -name Rule1 | + Add-ClusterSharedVolumeToAffinityRule -ClusterSharedVolumes Volume1 +``` + +The command gets the affinity rule `Rule1` object and passes it to the +`Add-ClusterSharedVolumeToAffinityRule` command. The command adds the cluster shared volume +`Volume1` to the affinity rule. + ## PARAMETERS ### -AsJob @@ -143,7 +154,7 @@ Accept wildcard characters: False ### -PassThru -Returns an object representing the item with which you are working. By default, this cmdlet doesn't +Returns the original affinity rule object passed to the command. By default, this cmdlet doesn't generate any output. ```yaml @@ -188,14 +199,27 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### System.String[] +When a string is piped to this cmdlet, the value is used as the name of the affinity rule to add the +cluster shared volume to. + ### Microsoft.Management.Infrastructure.CimInstance[] +This cmdlet accepts CIM instance objects representing an affinity rule like those returned by the +[Get-ClusterAffinityRule](Get-ClusterAffinityRule.md) cmdlet. + ## OUTPUTS +### None + +By default, the cmdlet doesn't return any output. + ### Microsoft.Management.Infrastructure.CimInstance ### Microsoft.Management.Infrastructure.CimInstance#root/MSCLUSTER/MSCluster_AffinityRule +When the **PassThru** parameter is specified, the cmdlet returns an object representing an affinity +rule as a CIM instance within the `root/MSCLUSTER/MSCluster_AffinityRule` path. + ## NOTES ## RELATED LINKS diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolumeFromAffinityRule.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolumeFromAffinityRule.md index 3f7f673a4c..42400d9abd 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolumeFromAffinityRule.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolumeFromAffinityRule.md @@ -45,6 +45,17 @@ Remove-ClusterSharedVolumeFromAffinityRule -ClusterSharedVolumes Volume -Name Ru This command removes the cluster shared volume _Volume_ from the affinity rule _Rule_ for the cluster _Cluster_. +### Example 2 - Remove a CSV to an affinity rule using pipeline + +```powershell +Get-ClusterAffinityRule -name Rule1 | + Remove-ClusterSharedVolumeFromAffinityRule -ClusterSharedVolumes Volume1 +``` + +The command gets the affinity rule `Rule1` object and passes it to the +`Remove-ClusterSharedVolumeFromAffinityRule` command. The command adds the cluster shared volume +`Volume1` to the affinity rule. + ## PARAMETERS ### -AsJob @@ -141,8 +152,8 @@ Accept wildcard characters: False ### -PassThru -Returns an object representing the item with which you are working. -By default, this cmdlet does not generate any output. +Returns the original affinity rule object passed to the command. By default, this cmdlet doesn't +generate any output. ```yaml Type: SwitchParameter @@ -186,14 +197,27 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### System.String[] +When a string is piped to this cmdlet, the value is used as the name of the affinity rule to remove +the cluster shared volume from. + ### Microsoft.Management.Infrastructure.CimInstance[] +This cmdlet accepts CIM instance objects representing an affinity rule like those returned by the +[Get-ClusterAffinityRule](Get-ClusterAffinityRule.md) cmdlet. + ## OUTPUTS +### None + +By default, the cmdlet doesn't return any output. + ### Microsoft.Management.Infrastructure.CimInstance ### Microsoft.Management.Infrastructure.CimInstance#root/MSCLUSTER/MSCluster_AffinityRule +When the **PassThru** parameter is specified, the cmdlet returns an object representing an affinity +rule as a CIM instance within the `root/MSCLUSTER/MSCluster_AffinityRule` path. + ## NOTES ## RELATED LINKS From f80338b2d48101a3278c9b80b8a07e7c0a1f3cb4 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Wed, 20 Sep 2023 12:18:34 +0100 Subject: [PATCH 961/965] Updated Remove-ClusterSharedVolumeFromAffinityRule input description --- .../Remove-ClusterSharedVolumeFromAffinityRule.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolumeFromAffinityRule.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolumeFromAffinityRule.md index 42400d9abd..4f7d9d8886 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolumeFromAffinityRule.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolumeFromAffinityRule.md @@ -202,7 +202,7 @@ the cluster shared volume from. ### Microsoft.Management.Infrastructure.CimInstance[] -This cmdlet accepts CIM instance objects representing an affinity rule like those returned by the +Specifies the affinity rule object to remove, as returned by the [Get-ClusterAffinityRule](Get-ClusterAffinityRule.md) cmdlet. ## OUTPUTS From f22eaf3464141260cf3a1a0f1b6ba96d8d80cfd3 Mon Sep 17 00:00:00 2001 From: robinharwood <19212983+robinharwood@users.noreply.github.com> Date: Wed, 20 Sep 2023 14:45:46 +0100 Subject: [PATCH 962/965] Correcting example --- .../Remove-ClusterSharedVolumeFromAffinityRule.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolumeFromAffinityRule.md b/docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolumeFromAffinityRule.md index 4f7d9d8886..148fd5dc2a 100644 --- a/docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolumeFromAffinityRule.md +++ b/docset/winserver2022-ps/failoverclusters/Remove-ClusterSharedVolumeFromAffinityRule.md @@ -53,8 +53,8 @@ Get-ClusterAffinityRule -name Rule1 | ``` The command gets the affinity rule `Rule1` object and passes it to the -`Remove-ClusterSharedVolumeFromAffinityRule` command. The command adds the cluster shared volume -`Volume1` to the affinity rule. +`Remove-ClusterSharedVolumeFromAffinityRule` command. The command removes the cluster shared volume +`Volume1` from the affinity rule. ## PARAMETERS From b5c0eb2ba46b5fca17630a4691fac8522349b70b Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Mon, 2 Oct 2023 13:12:53 +0530 Subject: [PATCH 963/965] Update docset/winserver2016-ps/activedirectory/Move-ADObject.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2016-ps/activedirectory/Move-ADObject.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2016-ps/activedirectory/Move-ADObject.md b/docset/winserver2016-ps/activedirectory/Move-ADObject.md index 440688f336..5a5ab059aa 100644 --- a/docset/winserver2016-ps/activedirectory/Move-ADObject.md +++ b/docset/winserver2016-ps/activedirectory/Move-ADObject.md @@ -37,7 +37,7 @@ You can also use the **Get-ADGroup**, **Get-ADUser**, **Get-ADComputer**, **Get- The *TargetPath* parameter must be specified. This parameter identifies the new location for the object or container. -The Cmdlet also moves the password when a user or computer object is moved across domains within a forest. +The cmdlet also moves the password when a user or computer object is moved across domains within a forest. ## EXAMPLES ### Example 1: Move an OU to a new location From 0b2017f1328d7b3c2bd9523eb756282ea981a0a1 Mon Sep 17 00:00:00 2001 From: Sriraman M S <45987684+msbemba@users.noreply.github.com> Date: Mon, 2 Oct 2023 13:13:03 +0530 Subject: [PATCH 964/965] Update docset/winserver2012r2-ps/activedirectory/Move-ADObject.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2012r2-ps/activedirectory/Move-ADObject.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2012r2-ps/activedirectory/Move-ADObject.md b/docset/winserver2012r2-ps/activedirectory/Move-ADObject.md index 7d5546d75e..1234011f57 100644 --- a/docset/winserver2012r2-ps/activedirectory/Move-ADObject.md +++ b/docset/winserver2012r2-ps/activedirectory/Move-ADObject.md @@ -31,7 +31,7 @@ You can also use the Get-ADGroup, Get-ADUser, Get-ADComputer, Get-ADServiceAccou The **TargetPath** parameter must be specified. This parameter identifies the new location for the object or container. -The Cmdlet also moves the password when a user or computer object is moved across domains within a forest. +The cmdlet also moves the password when a user or computer object is moved across domains within a forest. ## EXAMPLES From 5868278112d8ef1d18b7a46a201ac75d9cdebbba Mon Sep 17 00:00:00 2001 From: Tina Burden Date: Mon, 2 Oct 2023 13:29:21 -0700 Subject: [PATCH 965/965] Update docset/winserver2019-ps/activedirectory/Set-ADUser.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- docset/winserver2019-ps/activedirectory/Set-ADUser.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2019-ps/activedirectory/Set-ADUser.md b/docset/winserver2019-ps/activedirectory/Set-ADUser.md index 80032c430f..337f0fb5e1 100644 --- a/docset/winserver2019-ps/activedirectory/Set-ADUser.md +++ b/docset/winserver2019-ps/activedirectory/Set-ADUser.md @@ -496,7 +496,7 @@ Accept wildcard characters: False Specifies the country or region code for the user's language of choice. This parameter sets the **Country** property of a user object. The LDAP display name (**ldapDisplayName**) of this property is c. -This value uses the ISO-3166 2-character code (see [Country-Name attribute](/windows/win32/adschema/a-c). +This value uses the ISO-3166 2-character code (see [Country-Name attribute](/windows/win32/adschema/a-c)). This value is not used by Windows 2000. ```yaml